Hello community, here is the log from the commit of package rubygem-passenger for openSUSE:Factory checked in at 2013-06-18 10:21:09 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-passenger (Old) and /work/SRC/openSUSE:Factory/.rubygem-passenger.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-passenger" Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-passenger/rubygem-passenger.changes 2013-06-09 17:05:03.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.rubygem-passenger.new/rubygem-passenger.changes 2013-06-18 10:21:10.000000000 +0200 @@ -1,0 +2,7 @@ +Sun Jun 16 19:49:46 UTC 2013 - [email protected] + +- add config-guess-sub-update.diff +- add rubygem-passenger-aarch64-support.patch +- add zlib-devel buildrequires + +------------------------------------------------------------------- New: ---- config-guess-sub-update.diff rubygem-passenger-aarch64-support.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-passenger.spec ++++++ --- /var/tmp/diff_new_pack.DQwbGB/_old 2013-06-18 10:21:11.000000000 +0200 +++ /var/tmp/diff_new_pack.DQwbGB/_new 2013-06-18 10:21:11.000000000 +0200 @@ -51,6 +51,7 @@ %else BuildRequires: curl-devel %endif +BuildRequires: zlib-devel %if 0%{?use_system_libev} BuildRequires: libev-devel %endif @@ -69,6 +70,8 @@ Source6: nginx_passenger.conf Source7: nginx_passenger_root.include Source11: rubygem-passenger-3.0.12_boost_threads.patch +Source12: rubygem-passenger-aarch64-support.patch +Source13: config-guess-sub-update.diff # Summary: Easy and robust Ruby web application deployment License: MIT and GPL-2.0 @@ -139,6 +142,8 @@ export PATH="%{_sbindir}:$PATH" patch --no-backup-if-mismatch -p0 --fuzz=0 -i %{S:11} + patch --no-backup-if-mismatch -p0 --fuzz=0 -i %{S:12} + patch --no-backup-if-mismatch -p0 --fuzz=0 -i %{S:13} #compiling nginx stuff rake nginx:clean nginx CACHING=no ++++++ config-guess-sub-update.diff ++++++ ++++ 3055 lines (skipped) ++++++ rubygem-passenger-aarch64-support.patch ++++++ --- ext/common/Utils.cpp +++ ext/common/Utils.cpp @@ -967,7 +967,11 @@ pid_t asyncFork() { #if defined(__linux__) + #if defined(SYS_fork) return (pid_t) syscall(SYS_fork); + #else + return syscall(SYS_clone, SIGCHLD, 0, 0, 0, 0); + #endif #else return fork(); #endif -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
