public inbox for ipfire-scm@lists.ipfire.org
 help / color / mirror / Atom feed
From: git@ipfire.org
To: ipfire-scm@lists.ipfire.org
Subject: [IPFire-SCM] [git.ipfire.org] IPFire 3.x development tree branch, master, updated. 9586919148bb9cb379ef8f34ac520093ae4fe900
Date: Sat, 10 Mar 2012 13:39:01 +0100	[thread overview]
Message-ID: <20120310123901.DAC11200D5@argus.ipfire.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 4424 bytes --]

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  9586919148bb9cb379ef8f34ac520093ae4fe900 (commit)
      from  d137cccc3d39f9036ca5f02cecc5604a9f5a51bd (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 9586919148bb9cb379ef8f34ac520093ae4fe900
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date:   Sat Mar 10 13:37:29 2012 +0100

    pakfire: Add two more patches from upstream.
    
     * A fix the libs check which failed when there was garbage
       in some directories.
     * A check for nested buildroots. i.e. when make install DESTDIR=...
       messed up.

-----------------------------------------------------------------------

Summary of changes:
 pakfire/pakfire.nm                                 |    2 +-
 ...pakfire-0.9.20-check-for-nested-BUILDROOT.patch |   25 ++++++++++++++++++++
 .../pakfire-0.9.20-fix-ls-dir-listing.patch        |   25 ++++++++++++++++++++
 3 files changed, 51 insertions(+), 1 deletions(-)
 create mode 100644 pakfire/patches/pakfire-0.9.20-check-for-nested-BUILDROOT.patch
 create mode 100644 pakfire/patches/pakfire-0.9.20-fix-ls-dir-listing.patch

Difference in files:
diff --git a/pakfire/pakfire.nm b/pakfire/pakfire.nm
index c5b65e3..5ee0bc8 100644
--- a/pakfire/pakfire.nm
+++ b/pakfire/pakfire.nm
@@ -5,7 +5,7 @@
 
 name       = pakfire
 version    = 0.9.20
-release    = 3
+release    = 4
 
 maintainer = Michael Tremer <michael.tremer(a)ipfire.org>
 groups     = System/Packaging
diff --git a/pakfire/patches/pakfire-0.9.20-check-for-nested-BUILDROOT.patch b/pakfire/patches/pakfire-0.9.20-check-for-nested-BUILDROOT.patch
new file mode 100644
index 0000000..cadeaa6
--- /dev/null
+++ b/pakfire/patches/pakfire-0.9.20-check-for-nested-BUILDROOT.patch
@@ -0,0 +1,25 @@
+From cd37f1637dc038f2ebdfc514882e4b600d85a606 Mon Sep 17 00:00:00 2001
+From: Michael Tremer <michael.tremer(a)ipfire.org>
+Date: Sat, 10 Mar 2012 13:25:41 +0100
+Subject: [PATCH] QA: Check for nested $BUILDROOT.
+
+---
+ tools/quality-agent.d/095-directory-layout |    2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/tools/quality-agent.d/095-directory-layout b/tools/quality-agent.d/095-directory-layout
+index 3f946a1..d605fe9 100755
+--- a/tools/quality-agent.d/095-directory-layout
++++ b/tools/quality-agent.d/095-directory-layout
+@@ -4,7 +4,7 @@
+ 
+ DESC="The filelayout should comply to the FHS."
+ 
+-DIRS="/etc/init.d /etc/rc.d /lib/pkgconfig /usr/etc /usr/libexec /usr/local /usr/man /usr/usr /usr/var"
++DIRS="/etc/init.d /etc/rc.d /lib/pkgconfig /usr/etc /usr/libexec /usr/local /usr/man /usr/usr /usr/var ${BUILDROOT}"
+ 
+ function check() {
+ 	# Do nothing, if directory check was disabled.
+-- 
+1.7.3.4
+
diff --git a/pakfire/patches/pakfire-0.9.20-fix-ls-dir-listing.patch b/pakfire/patches/pakfire-0.9.20-fix-ls-dir-listing.patch
new file mode 100644
index 0000000..506778a
--- /dev/null
+++ b/pakfire/patches/pakfire-0.9.20-fix-ls-dir-listing.patch
@@ -0,0 +1,25 @@
+From 123f594fe738d6eb0a9238d094bbfbce7d4355b3 Mon Sep 17 00:00:00 2001
+From: Michael Tremer <michael.tremer(a)ipfire.org>
+Date: Sat, 10 Mar 2012 11:45:20 +0100
+Subject: [PATCH] QA: Don't use ls to list all directories in libs-location check.
+
+---
+ tools/quality-agent.d/003-libs-location |    2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/tools/quality-agent.d/003-libs-location b/tools/quality-agent.d/003-libs-location
+index ce5ba72..4c2e8ba 100755
+--- a/tools/quality-agent.d/003-libs-location
++++ b/tools/quality-agent.d/003-libs-location
+@@ -19,7 +19,7 @@ gcc_libdir=$(gcc -print-libgcc-file-name)
+ for i in 1 2; do
+ 	gcc_libdir=$(dirname ${gcc_libdir})
+ done
+-gcc_libdir=$(ls ${BUILDROOT}${gcc_libdir}/* 2>/dev/null | tail -n1)
++gcc_libdir=$(find ${BUILDROOT}${gcc_libdir}/* -type d -maxdepth 1 2>/dev/null | sort | head -n1)
+ 
+ function check() {
+ 	local failed=0
+-- 
+1.7.3.4
+


hooks/post-receive
--
IPFire 3.x development tree

                 reply	other threads:[~2012-03-10 12:39 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20120310123901.DAC11200D5@argus.ipfire.org \
    --to=git@ipfire.org \
    --cc=ipfire-scm@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox