diff options
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | README | 1 | ||||
-rw-r--r-- | debian/changelog | 5 | ||||
-rwxr-xr-x | pbuilder-buildpackage | 2 | ||||
-rw-r--r-- | pbuilder-buildpackage-funcs | 2 | ||||
-rwxr-xr-x | pbuilder-satisfydepends | 2 | ||||
-rwxr-xr-x | pbuilder-satisfydepends-aptitude | 2 | ||||
-rwxr-xr-x | pbuilder-satisfydepends-experimental | 2 | ||||
-rw-r--r-- | pdebuild-internal | 2 |
10 files changed, 12 insertions, 13 deletions
@@ -10,4 +10,3 @@ Daniel Schepler <schepler@math.berkeley.edu> -- many patches, --preserve-buildpl Sam Hartman <hartmans@debian.org> -- bind-mount patch Mattia Dongili <malattia@linux.it> -- user-mode-linux support -$Id$
\ No newline at end of file @@ -1,3 +1,7 @@ +2007-04-11 Junichi Uekawa <dancer@debian.org> + + * AUTHORS, etc: remove $Id$, which is CVS specific + 2007-04-10 Junichi Uekawa <dancer@debian.org> * Documentation/pbuilder-doc.xml: update documentation @@ -3310,6 +3314,6 @@ 14 Jan 2002 Junichi Uekawa <dancer@debian.org> Copyright (c) 2001-2006 Junichi Uekawa - $Id$ + @@ -16,4 +16,3 @@ Junichi Uekawa. Initially, 30 Sep 2001 Midnight. Updated on 11 Jan 2004 -$Id$
\ No newline at end of file diff --git a/debian/changelog b/debian/changelog index 11833d8..75e21b3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,12 +7,13 @@ pbuilder (0.166) UNRELEASED; urgency=low (Closes: #416920). * Manual page SEE ALSO fix, '.RI'->'.BR' (closes: #409135) * minor update to documentation. + * remove CVS Id banners since they have no meaning on git trees. [ Loic Minier ] * New pbuilder-satisfydepends-aptitude resolver based on aptitude; based on an idea by Mike Hommey; closes: #337015. - - -- Junichi Uekawa <dancer@debian.org> Tue, 10 Apr 2007 08:50:37 +0900 + + -- Junichi Uekawa <dancer@debian.org> Wed, 11 Apr 2007 09:00:29 +0900 pbuilder (0.165) unstable; urgency=low diff --git a/pbuilder-buildpackage b/pbuilder-buildpackage index 0dff8f0..08c4c66 100755 --- a/pbuilder-buildpackage +++ b/pbuilder-buildpackage @@ -50,7 +50,6 @@ BUILDRESULTGID="${BUILDRESULTGID:-${SUDO_GID:-0}}" export HOME="/tmp/buildd" -showbuildbanner '$Id$' echobacktime extractbuildplace trap umountproc_cleanbuildplace exit @@ -75,7 +74,6 @@ if [ -z "${PBUILDER_BUILD_LOGFILE}" ]; then exec 2>&1 PBUILDER_BUILD_LOGFILE=$(readlink -f "${PBUILDER_BUILD_LOGFILE}") echo "I: Using pkgname logfile" - showbuildbanner '$Id$' echobacktime fi fi diff --git a/pbuilder-buildpackage-funcs b/pbuilder-buildpackage-funcs index ab554a8..0619802 100644 --- a/pbuilder-buildpackage-funcs +++ b/pbuilder-buildpackage-funcs @@ -61,7 +61,7 @@ function echobacktime () { function showbuildbanner () { # show some banners for building - echo "pbuilder-buildpackage/"$(dpkg --print-architecture) '$Id$' + echo "pbuilder-buildpackage/"$(dpkg --print-architecture) echo "$1" echo } diff --git a/pbuilder-satisfydepends b/pbuilder-satisfydepends index e0f7659..dfd6850 100755 --- a/pbuilder-satisfydepends +++ b/pbuilder-satisfydepends @@ -31,7 +31,7 @@ function checkbuilddep_internal () { local INSTALLPKGMULTI local CURRENTREALPKGNAME local SATISFIED - echo " -> Attempting to parse the build-deps $Id$" + echo " -> Attempting to parse the build-deps " for INSTALLPKGMULTI in $(get_control_re "$DEBIAN_CONTROL" "$BD_REGEXP" | tr " " "/" | \ awk 'BEGIN{RS=","} {print}'); do diff --git a/pbuilder-satisfydepends-aptitude b/pbuilder-satisfydepends-aptitude index 14d50de..94418b7 100755 --- a/pbuilder-satisfydepends-aptitude +++ b/pbuilder-satisfydepends-aptitude @@ -61,7 +61,7 @@ function checkbuilddep_internal () { local BUILD_DEP_DEB_CONTROL local DEPENDS local CONFLICTS - echo " -> Attempting to satisfy build-dependencies $Id$" + echo " -> Attempting to satisfy build-dependencies" DEPENDS="$(get_control_re "$DEBIAN_CONTROL" "$BD_REGEXP" | filter_arch_deps "$ARCH")" CONFLICTS="$(get_control_re "$DEBIAN_CONTROL" "$BC_REGEXP" | filter_arch_deps "$ARCH")" echo " -> Creating pbuilder-satisfydepends-dummy package" diff --git a/pbuilder-satisfydepends-experimental b/pbuilder-satisfydepends-experimental index 39a3a2b..c0e7ca2 100755 --- a/pbuilder-satisfydepends-experimental +++ b/pbuilder-satisfydepends-experimental @@ -33,7 +33,7 @@ function checkbuilddep_internal () { local SATISFIED local PACKAGEVERSIONS local CANDIDATE_VERSION - echo " -> Attempting to parse the build-deps $Id$" + echo " -> Attempting to parse the build-deps" for INSTALLPKGMULTI in $(get_control_re "$DEBIAN_CONTROL" "$BD_REGEXP" | tr " " "/" | \ awk 'BEGIN{RS=","} {print}'); do diff --git a/pdebuild-internal b/pdebuild-internal index 64448d0..a60fbad 100644 --- a/pdebuild-internal +++ b/pdebuild-internal @@ -28,8 +28,6 @@ set -e -echo "Using: $Id$" - # I am probably running as root; make sure I have pbuilder installed here. # passwd is needed as well because of useradd and groupadd calls. apt-get install -y --force-yes pbuilder passwd |