From mboxrd@z Thu Jan 1 00:00:00 1970 From: git@ipfire.org To: ipfire-scm@lists.ipfire.org Subject: [IPFire-SCM] [git.ipfire.org] IPFire 3.x development tree branch, master, updated. 4e8b2c0697da6c0a96e7d4559a97315883f6c516 Date: Sun, 24 Jun 2012 15:14:56 +0200 Message-ID: <20120624131457.2E706200A3@argus.ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1346823700824156779==" List-Id: --===============1346823700824156779== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 3.x development tree". The branch, master has been updated via 4e8b2c0697da6c0a96e7d4559a97315883f6c516 (commit) via b0fdf1902418360a57acb8cfd12da6aeb9c430fd (commit) via 62f274aaed5396e5e740fcf5d3ce34f79f032856 (commit) via 4b31eaddadd313c047b87ddd8a26c7e2ed60319a (commit) via 5924dccf0489ab924b3065ee11010e29b56fb04f (commit) via 17fdd6ece7a8c97914a2511ae2ac3929170addce (commit) via db4581cb4088b69f44ba2fb7d1c87fc77c8e684f (commit) via 3650d2d589cad1a29bc45d90b616e252099349be (commit) from e8addcea91d9029d4c05de29188d30b3fbba4ece (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 4e8b2c0697da6c0a96e7d4559a97315883f6c516 Author: Michael Tremer Date: Sun Jun 24 15:14:37 2012 +0200 tcl: Fix library permissions. commit b0fdf1902418360a57acb8cfd12da6aeb9c430fd Author: Michael Tremer Date: Sun Jun 24 15:11:07 2012 +0200 gettext: Fix library permissions. commit 62f274aaed5396e5e740fcf5d3ce34f79f032856 Author: Michael Tremer Date: Sun Jun 24 15:08:44 2012 +0200 gcc: Fix library permissions. commit 4b31eaddadd313c047b87ddd8a26c7e2ed60319a Author: Michael Tremer Date: Sun Jun 24 14:14:33 2012 +0200 glibc: Fix library permissions. commit 5924dccf0489ab924b3065ee11010e29b56fb04f Author: Michael Tremer Date: Sun Jun 24 13:52:12 2012 +0200 nettle: Fix library permissions. commit 17fdd6ece7a8c97914a2511ae2ac3929170addce Author: Michael Tremer Date: Sun Jun 24 13:48:39 2012 +0200 pcre: Fix library permissions. commit db4581cb4088b69f44ba2fb7d1c87fc77c8e684f Merge: 3650d2d e8addce Author: Michael Tremer Date: Sun Jun 24 13:44:46 2012 +0200 Merge branch 'master' of ssh://git.ipfire.org/pub/git/ipfire-3.x commit 3650d2d589cad1a29bc45d90b616e252099349be Author: Michael Tremer Date: Sat Jun 23 23:19:03 2012 +0200 kmod: Update to 9. ----------------------------------------------------------------------- Summary of changes: gcc/gcc.nm | 6 ++++-- gettext/gettext.nm | 5 ++++- glibc/glibc.nm | 5 ++++- kmod/kmod.nm | 8 +++++--- nettle/nettle.nm | 8 +++++++- pcre/pcre.nm | 4 ++-- tcl/tcl.nm | 5 ++++- 7 files changed, 30 insertions(+), 11 deletions(-) Difference in files: diff --git a/gcc/gcc.nm b/gcc/gcc.nm index c2a04c3..dbd1fcb 100644 --- a/gcc/gcc.nm +++ b/gcc/gcc.nm @@ -8,7 +8,7 @@ build_cloog_ppl =3D 1 =20 name =3D gcc version =3D 4.7.1 -release =3D 1 +release =3D 2 =20 maintainer =3D Michael Tremer groups =3D Development/Compilers @@ -243,9 +243,10 @@ build EOF ;; *) - ln -svf ../../../../../%{libdir}/libgcc_s.so.1 ${FULLPATH}/libgcc_s.so + ln -svf ../../../../..%{libdir}/libgcc_s.so.1 ${FULLPATH}/libgcc_s.so ;; esac + chmod 755 %{BUILDROOT}%{libdir}/libgcc_s.so.1 =20 # Remove some GNU debugger stuff. rm -vf %{BUILDROOT}%{libdir}/lib*.py @@ -369,6 +370,7 @@ packages end =20 provides =3D /lib/cpp + requires =3D gcc-c++ =3D %{thisver} end =20 package libgcc diff --git a/gettext/gettext.nm b/gettext/gettext.nm index 3416a0a..5a9f367 100644 --- a/gettext/gettext.nm +++ b/gettext/gettext.nm @@ -5,7 +5,7 @@ =20 name =3D gettext version =3D 0.18.1.1 -release =3D 7 +release =3D 8 =20 groups =3D System/Base url =3D http://www.gnu.org/software/gettext/ @@ -51,6 +51,9 @@ build chrpath -l ${i} && chrpath --delete ${i} fi done + + # Fix library permissions. + chmod 755 %{BUILDROOT}%{libdir}/preloadable_libintl.so end end =20 diff --git a/glibc/glibc.nm b/glibc/glibc.nm index e5a6aa0..c9264c5 100644 --- a/glibc/glibc.nm +++ b/glibc/glibc.nm @@ -5,7 +5,7 @@ =20 name =3D glibc version =3D 2.15 -release =3D 3 +release =3D 4 thisapp =3D %{name}-2.15-a316c1f =20 maintainer =3D Michael Tremer @@ -233,6 +233,9 @@ build =20 # Move some libs to correct place mv -v %{BUILDROOT}/%{lib}/lib{memusage,pcprofile}.so %{BUILDROOT}%{libdir} + + # Fix library permissions. + chmod 755 %{BUILDROOT}%{libdir}/lib*.so* end =20 keep_libraries diff --git a/kmod/kmod.nm b/kmod/kmod.nm index 4996d40..de953e9 100644 --- a/kmod/kmod.nm +++ b/kmod/kmod.nm @@ -4,8 +4,8 @@ ############################################################################= ### =20 name =3D kmod -version =3D 7 -release =3D 3 +version =3D 9 +release =3D 1 =20 maintainer =3D Michael Tremer groups =3D System/Kernel @@ -33,7 +33,9 @@ build --with-xz \ --with-zlib =20 - # The testsuite does generate lots of errors. + test + make check + end =20 install_cmds mkdir -pv %{BUILDROOT}%{prefix}/lib/modprobe.d diff --git a/nettle/nettle.nm b/nettle/nettle.nm index af0a929..df0e73a 100644 --- a/nettle/nettle.nm +++ b/nettle/nettle.nm @@ -5,7 +5,7 @@ =20 name =3D nettle version =3D 2.4 -release =3D 1 +release =3D 2 =20 groups =3D System/Libraries url =3D http://www.lysator.liu.se/~nisse/nettle/ @@ -34,6 +34,12 @@ build test make check end + + install_cmds + # Fix library permissions. + chmod 755 %{BUILDROOT}%{libdir}/libhogweed.so.* + chmod 755 %{BUILDROOT}%{libdir}/libnettle.so.* + end end =20 packages diff --git a/pcre/pcre.nm b/pcre/pcre.nm index 9615bb3..3493b61 100644 --- a/pcre/pcre.nm +++ b/pcre/pcre.nm @@ -5,7 +5,7 @@ =20 name =3D pcre version =3D 8.30 -release =3D 1 +release =3D 2 =20 compat_version =3D 8.21 =20 @@ -50,7 +50,7 @@ build =20 install_cmds cd %{DIR_SRC}/%{name}-%{compat_version} - install -m 644 .libs/libpcre.so.0.0.1 %{BUILDROOT}%{libdir} + install -m 755 .libs/libpcre.so.0.0.1 %{BUILDROOT}%{libdir} ln -svf libpcre.so.0.0.1 %{BUILDROOT}%{libdir}/libprce.so.0 end end diff --git a/tcl/tcl.nm b/tcl/tcl.nm index 11a9287..86eda72 100644 --- a/tcl/tcl.nm +++ b/tcl/tcl.nm @@ -6,7 +6,7 @@ name =3D tcl major_ver =3D 8.5 version =3D %{major_ver}.11 -release =3D 1 +release =3D 2 thisapp =3D tcl%{version} =20 groups =3D Development/Languages @@ -77,6 +77,9 @@ build # remove buildroot traces sed -i -e "s|$PWD/unix|%{libdir}|; s|$PWD|%{includedir}/%{name}-private|" = %{BUILDROOT}%{libdir}/%{name}Config.sh rm -rf %{BUILDROOT}%{datadir}/%{name}%{major_ver}/ldAix + + # Fix library permissions. + chmod 755 %{BUILDROOT}%{libdir}/libtcl*.so* end =20 # Keep libtclstub*.a. hooks/post-receive -- IPFire 3.x development tree --===============1346823700824156779==--