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 c10853e28e061cbbcac0539d79e9922379fb971f (commit)
via 1ade5905134ee764ae868d7e739a29c0d1dcfa9e (commit)
via 3fab797933d4d88881a948638787ba3c0be496bb (commit)
via 4c113bd2b3b8e2f847113786eb461783aa3db48f (commit)
from 6ea175e4b3ca6ae193ec3ba83351678b566d4476 (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 c10853e28e061cbbcac0539d79e9922379fb971f
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date: Sun Mar 13 21:40:33 2011 +0100
build-essentials: Get rid of perl requirement.
commit 1ade5905134ee764ae868d7e739a29c0d1dcfa9e
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date: Sun Mar 13 21:27:14 2011 +0100
xorg-x11-server: Some changes on makefile syntax for capabilities.
commit 3fab797933d4d88881a948638787ba3c0be496bb
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date: Sun Mar 13 21:27:00 2011 +0100
util-linux-ng: Some changes on makefile syntax for capabilities.
commit 4c113bd2b3b8e2f847113786eb461783aa3db48f
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date: Sun Mar 13 21:26:16 2011 +0100
shadow: Some changes on makefile syntax for capabilities.
-----------------------------------------------------------------------
Summary of changes:
pkgs/build-essentials/build-essentials.nm | 2 +-
.../buildsystem-tools/functions-packager-find | 4 ++--
pkgs/shadow/shadow.nm | 4 +++-
pkgs/util-linux-ng/util-linux-ng.nm | 4 +++-
pkgs/xorg-x11-server/xorg-x11-server.nm | 4 +++-
5 files changed, 12 insertions(+), 6 deletions(-)
mode change 100755 => 100644 pkgs/build-essentials/buildsystem-tools/perl.prov
mode change 100755 => 100644 pkgs/build-essentials/buildsystem-tools/perl.req
Difference in files:
diff --git a/pkgs/build-essentials/build-essentials.nm b/pkgs/build-essentials/build-essentials.nm
index 9d4de3a..4bd680a 100644
--- a/pkgs/build-essentials/build-essentials.nm
+++ b/pkgs/build-essentials/build-essentials.nm
@@ -26,7 +26,7 @@ include $(PKGROOT)/Include
PKG_NAME = build-essentials
PKG_VER = $(DISTRO_VERSION)
-PKG_REL = 7
+PKG_REL = 8
PKG_EPOCH = 1
PKG_ARCH = noarch
diff --git a/pkgs/build-essentials/buildsystem-tools/functions-packager-find b/pkgs/build-essentials/buildsystem-tools/functions-packager-find
index 246c248..f78eddb 100644
--- a/pkgs/build-essentials/buildsystem-tools/functions-packager-find
+++ b/pkgs/build-essentials/buildsystem-tools/functions-packager-find
@@ -180,12 +180,12 @@ function find_perl_files() {
function find_perl_provides() {
[ -x "/usr/bin/perl" ] || return 0
- ${BASEDIR}/perl.prov $(find_perl_files $@) | sort -u
+ perl ${BASEDIR}/perl.prov $(find_perl_files $@) | sort -u
}
function find_perl_requires() {
[ -x "/usr/bin/perl" ] || return 0
- ${BASEDIR}/perl.req $(find_perl_files $@) | sort -u
+ perl ${BASEDIR}/perl.req $(find_perl_files $@) | sort -u
}
function find_pkgconfig_provides() {
diff --git a/pkgs/build-essentials/buildsystem-tools/perl.prov b/pkgs/build-essentials/buildsystem-tools/perl.prov
old mode 100755
new mode 100644
diff --git a/pkgs/build-essentials/buildsystem-tools/perl.req b/pkgs/build-essentials/buildsystem-tools/perl.req
old mode 100755
new mode 100644
diff --git a/pkgs/shadow/shadow.nm b/pkgs/shadow/shadow.nm
index e8c8f55..d9e1e40 100644
--- a/pkgs/shadow/shadow.nm
+++ b/pkgs/shadow/shadow.nm
@@ -26,7 +26,7 @@ include $(PKGROOT)/Include
PKG_NAME = shadow
PKG_VER = 4.1.4.3
-PKG_REL = 3
+PKG_REL = 4
PKG_MAINTAINER =
PKG_GROUP = System/Base
@@ -74,7 +74,9 @@ endef
define STAGE_INSTALL_CMDS
# Remove man pages in other languages
rm -rfv $(BUILDROOT)/usr/share/man/{cs,de,fi,fr,hu,id,it,ja,pl,pt_BR,ru,sv,tr}
+endef
+define STAGE_INSTALL_POST
# Capabilities
chmod u-s $(BUILDROOT)/usr/bin/chage
setcap cap_dac_read_search+ep $(BUILDROOT)/usr/bin/chage
diff --git a/pkgs/util-linux-ng/util-linux-ng.nm b/pkgs/util-linux-ng/util-linux-ng.nm
index fd803fc..821c848 100644
--- a/pkgs/util-linux-ng/util-linux-ng.nm
+++ b/pkgs/util-linux-ng/util-linux-ng.nm
@@ -26,7 +26,7 @@ include $(PKGROOT)/Include
PKG_NAME = util-linux-ng
PKG_VER = 2.18
-PKG_REL = 1
+PKG_REL = 2
PKG_MAINTAINER =
PKG_GROUP = System/Base
@@ -153,7 +153,9 @@ define STAGE_INSTALL_CMDS
$(BUILDROOT)/usr/bin/chkdupexe $(BUILDROOT)/usr/bin/vi{gr,pw} \
$(BUILDROOT)/sbin/{sln,shutdown} $(BUILDROOT)/bin/{line,newgrp,pg}
rm -fv $(BUILDROOT)/usr/share/getopt/*.tcsh
+endef
+define STAGE_INSTALL_POST
# Set capabilities
chmod -v -s $(BUILDROOT)/bin/mount
setcap CAP_DAC_OVERRIDE,CAP_SYS_ADMIN=ep $(BUILDROOT)/bin/mount
diff --git a/pkgs/xorg-x11-server/xorg-x11-server.nm b/pkgs/xorg-x11-server/xorg-x11-server.nm
index 27c8f22..4b4acdb 100644
--- a/pkgs/xorg-x11-server/xorg-x11-server.nm
+++ b/pkgs/xorg-x11-server/xorg-x11-server.nm
@@ -26,7 +26,7 @@ include $(PKGROOT)/Include
PKG_NAME = xorg-x11-server
PKG_VER = 1.8.2
-PKG_REL = 2
+PKG_REL = 3
PKG_MAINTAINER = Stefan Schantl <stefan.schantl(a)ipfire.org>
PKG_GROUP = X/Server
@@ -128,7 +128,9 @@ define STAGE_INSTALL
$(BUILDROOT)/usr/share/xorg/
cd $(DIR_APP) && install -m 644 $(DIR_SOURCE)/10-quirks.conf \
$(BUILDROOT)/usr/share/X11/xorg.conf.d
+endef
+define STAGE_INSTALL_POST
# Capabilities
chmod u-s $(BUILDROOT)/usr/bin/Xorg
setcap cap_chown,cap_dac_override,cap_sys_rawio,cap_sys_admin+ep \
hooks/post-receive
--
IPFire 3.x development tree