ruby-posix-spawn 0.3.13-2 source package in Ubuntu

Changelog

ruby-posix-spawn (0.3.13-2) unstable; urgency=medium

  * Team upload.
  * Fix build on 32bit archs, with patch from upstream PR 83.
    Thanks to Matthias Klose <email address hidden>. Closes: #890042
  * Update Vcs-* URLs to salsa.debian.org.
  * Bump Standards-Version to 4.1.3

 -- Chris Hofstaedtler <email address hidden>  Fri, 16 Feb 2018 13:23:29 +0000

Upload details

Uploaded by:
Debian Ruby Extras Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Ruby Extras Maintainers
Architectures:
any
Section:
ruby
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
ruby-posix-spawn_0.3.13-2.dsc 2.0 KiB 6ebc38d3708f356a2e5f5b1945fe73c5c2200117f584314dd8fc68a2c7741d9f
ruby-posix-spawn_0.3.13.orig.tar.gz 24.0 KiB ae216bbd1f915c63fb1a00bbe483d0c343e5b822f305fcd0c958bc0c03782321
ruby-posix-spawn_0.3.13-2.debian.tar.xz 4.4 KiB b4b430ac0d3d23e0bd542996878512c1fb745befe8a1e8cf694d59cc4fa5c7ac

No changes file available.

Binary packages built by this source

ruby-posix-spawn: Ruby Implementation of posix_spawn(2) for faster process spawning

 The posix-spawn library aims to implement a subset of the Ruby 1.9
 `Process::spawn` interface in a way that takes advantage of fast
 process spawning interfaces when available and provides sane fallbacks
 on systems that do not.
 .
 `fork(2)` calls slow down as the parent process uses more memory due to
 the need to copy page tables. In many common uses of fork(), where it
 is followed by one of the exec family of functions to spawn child
 processes (`Kernel#system`,`IO::popen`, `Process::spawn`, etc.), it's
 possible to remove this overhead by using the use of special process
 spawning interfaces (`posix_spawn()`, `vfork()`, etc.)

ruby-posix-spawn-dbgsym: debug symbols for ruby-posix-spawn