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 0302fa63709ea9e906a0cada4c2b1cd5ebbbc2d7 (commit) via 2b715a47b3e6035e872db81067406e829358ce8d (commit) via c2a35394ba71c9420446fa5ba0b880713389b2b6 (commit) via db92b05e823baafc39ba67073b2ca127160d4272 (commit) from 347a982fccd536e8d0ec78f6a9e312eee56a8ec4 (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 0302fa63709ea9e906a0cada4c2b1cd5ebbbc2d7 Author: Michael Tremer michael.tremer@ipfire.org Date: Thu Mar 22 12:11:28 2012 +0100
gcc: Move libgcc_s* to /usr/lib.
commit 2b715a47b3e6035e872db81067406e829358ce8d Author: Michael Tremer michael.tremer@ipfire.org Date: Thu Mar 22 00:05:52 2012 +0100
udev: Update to version 182.
commit c2a35394ba71c9420446fa5ba0b880713389b2b6 Author: Michael Tremer michael.tremer@ipfire.org Date: Thu Mar 22 00:03:20 2012 +0100
kmod: Update to version 7.
Comes with minor bugfixes and improvements on the build system.
commit db92b05e823baafc39ba67073b2ca127160d4272 Author: Michael Tremer michael.tremer@ipfire.org Date: Sun Mar 18 22:55:33 2012 +0100
dracut: Update to 017.
-----------------------------------------------------------------------
Summary of changes: dracut/dracut.nm | 2 +- gcc/gcc.nm | 50 ++++++++++++++++++++++++-------------------------- kmod/kmod.nm | 2 +- udev/udev.nm | 4 ++-- 4 files changed, 28 insertions(+), 30 deletions(-)
Difference in files: diff --git a/dracut/dracut.nm b/dracut/dracut.nm index 792d155..8c0f9c7 100644 --- a/dracut/dracut.nm +++ b/dracut/dracut.nm @@ -4,7 +4,7 @@ ###############################################################################
name = dracut -version = 016 +version = 017 release = 1 arch = noarch
diff --git a/gcc/gcc.nm b/gcc/gcc.nm index e25258c..bfe183f 100644 --- a/gcc/gcc.nm +++ b/gcc/gcc.nm @@ -8,7 +8,7 @@ build_cloog_ppl = 1
name = gcc version = 4.6.3 -release = 1 +release = 2
maintainer = Michael Tremer michael.tremer@ipfire.org groups = Development/Compilers @@ -226,10 +226,8 @@ build ln -sfv ../usr/bin/cpp %{BUILDROOT}/lib/cpp ln -sfv gcc %{BUILDROOT}/usr/bin/cc
- # Move libgcc_s to /lib + # Fix libgcc_s symlinks. rm -f ${FULLPATH}/libgcc_s.so %{BUILDROOT}%{libdir}/libgcc_s.so - mkdir -pv %{BUILDROOT}/%{lib} - mv -vf %{BUILDROOT}%{libdir}/libgcc_s.so.1 %{BUILDROOT}/%{lib}/ case "%{DISTRO_ARCH}" in arm*) cat <<EOF >${FULLPATH}/libgcc_s.so @@ -237,11 +235,11 @@ build Use the shared library, but some functions are only in the static library, so try that secondarily. */ OUTPUT_FORMAT(elf32-littlearm) - GROUP ( /%{lib}/libgcc_s.so.1 libgcc.a ) + GROUP ( %{libdir}/libgcc_s.so.1 libgcc.a ) EOF ;; *) - ln -svf ../../../../../%{lib}/libgcc_s.so.1 ${FULLPATH}/libgcc_s.so + ln -svf ../../../../../%{libdir}/libgcc_s.so.1 ${FULLPATH}/libgcc_s.so ;; esac
@@ -289,20 +287,20 @@ packages groups += Build
requires - binutils>=%{required_binutils_version} + binutils >= %{required_binutils_version} glibc-devel gmp-devel - cpp=%{thisver} - libgcc=%{thisver} - libgomp=%{thisver} + cpp = %{thisver} + libgcc = %{thisver} + libgomp = %{thisver} end
# We do not ship libgcc-devel anymore. - provides += libgcc-devel=%{thisver} - obsoletes += libgcc-devel<%{thisver} + provides += libgcc-devel = %{thisver} + obsoletes += libgcc-devel < %{thisver}
if "%{build_cloog_ppl}" == "1" - requires += cloog-ppl>=0.15 + requires += cloog-ppl >= 0.15 end end
@@ -315,9 +313,9 @@ packages end
requires - gcc=%{thisver} - libstdc++=%{thisver} - libstdc++-devel=%{thisver} + gcc = %{thisver} + libstdc++ = %{thisver} + libstdc++-devel = %{thisver} end
files @@ -354,7 +352,7 @@ packages group = Development/Languages
files - /%{lib}/cpp + /lib/cpp /usr/bin/cpp /usr/share/man/man1/cpp.1* %{libdir}/gcc/%{DISTRO_BUILDTARGET}/%{version}/cc1 @@ -369,7 +367,7 @@ packages end
files - /%{lib}/libgcc*.so.* + %{libdir}/libgcc*.so.* end end
@@ -394,7 +392,7 @@ packages end
requires - libstdc++=%{thisver} + libstdc++ = %{thisver} end
files @@ -438,7 +436,7 @@ packages end
requires - libmudflap=%{thisver} + libmudflap = %{thisver} end
files @@ -469,8 +467,8 @@ packages end
requires - gcc=%{thisver} - libquadmath=%{thisver} + gcc = %{thisver} + libquadmath = %{thisver} end
files @@ -490,10 +488,10 @@ packages end
requires - gcc=%{thisver} - gmp-devel>=4.1.2-8 - mpfr-devel>=2.2.1 - libmpc-devel>=0.8.1 + gcc = %{thisver} + gmp-devel >= 4.1.2-8 + mpfr-devel >= 2.2.1 + libmpc-devel >= 0.8.1 end
files diff --git a/kmod/kmod.nm b/kmod/kmod.nm index 00233cf..1801775 100644 --- a/kmod/kmod.nm +++ b/kmod/kmod.nm @@ -4,7 +4,7 @@ ###############################################################################
name = kmod -version = 6 +version = 7 release = 1
maintainer = Michael Tremer michael.tremer@ipfire.org diff --git a/udev/udev.nm b/udev/udev.nm index 8552dfe..5ca210e 100644 --- a/udev/udev.nm +++ b/udev/udev.nm @@ -4,8 +4,8 @@ ###############################################################################
name = udev -version = 181 -release = 2 +version = 182 +release = 1
groups = System/Base url = ftp://ftp.kernel.org/pub/linux/utils/kernel/hotplug/
hooks/post-receive -- IPFire 3.x development tree