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

Changelog

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

  * No-change rebuild for CVE-2024-3094

 -- William Grant <email address hidden>  Mon, 01 Apr 2024 18:56:50 +1100

Upload details

Uploaded by:
William Grant
Uploaded to:
Noble
Original maintainer:
Ubuntu Developers
Architectures:
any
Section:
ruby
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe ruby
Noble release universe ruby

Downloads

File Size SHA-256 Checksum
ruby-posix-spawn_0.3.15.orig.tar.gz 25.0 KiB 1a51c52ef2140041f38bf9fd431fe040ddf6d8f1e165a5674ab33867d39fad8c
ruby-posix-spawn_0.3.15-1build1.debian.tar.xz 4.7 KiB 16357d5bd204ae5af5bad6db7f64f8b8e6267d2ebd65f8043da3531f4d932ab1
ruby-posix-spawn_0.3.15-1build1.dsc 2.1 KiB cbe33eea6eb2c549947333a6b8f4424da04283de1a2c7ca288457e66d1be821c

View changes file

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