ruby-posix-spawn 0.3.15-1 source package in Ubuntu

Changelog

ruby-posix-spawn (0.3.15-1) unstable; urgency=medium

  * Team upload.

  [ Debian Janitor ]
  * Update watch file format version to 4.
  * Bump debhelper from old 12 to 13.
  * Update standards version to 4.5.1, no changes needed.
  * Update standards version to 4.6.1, no changes needed.

  [ Lucas Kanashiro ]
  * New upstream release.
  * Declare compliance with Debian Policy 4.6.2
  * Remove patch applied by upstream
  * d/control: depend on ${ruby:Depends} instead of the ruby interpreter

 -- Lucas Kanashiro <email address hidden>  Mon, 26 Feb 2024 19:22:49 -0300

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.15-1.dsc 2.1 KiB 0fb84992e6e075e278c4158464281f4c6824ec2dd9ac7df357379a2b5c53685b
ruby-posix-spawn_0.3.15.orig.tar.gz 25.0 KiB 1a51c52ef2140041f38bf9fd431fe040ddf6d8f1e165a5674ab33867d39fad8c
ruby-posix-spawn_0.3.15-1.debian.tar.xz 4.6 KiB 065b6a80302a978526f3de7cb91c319186bd54fd37cd6434d7da8eaeeff019dd

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