Your message dated Sun, 03 Jul 2005 03:17:19 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#308813: fixed in pbuilder 0.128
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--------------------------------------
Received: (at submit) by bugs.debian.org; 12 May 2005 14:24:12 +0000
>From [EMAIL PROTECTED] Thu May 12 07:24:12 2005
Return-path: <[EMAIL PROTECTED]>
Received: from smtp1.libero.it [193.70.192.51]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DWEbk-0007Um-00; Thu, 12 May 2005 07:24:12 -0700
Received: from localhost (172.16.1.80) by smtp1.libero.it (7.0.027-DD01)
id 41BDB2AB020F5A74 for [EMAIL PROTECTED]; Thu, 12 May 2005 16:23:37
+0200
Received: from localhost (151.42.84.23) by smtp0.libero.it (7.0.027-DD01)
id 41BF5F480752F2BB for [EMAIL PROTECTED]; Thu, 12 May 2005 16:23:40
+0200
Received: by localhost (Postfix, from userid 1000)
id E5FAF8565D; Thu, 12 May 2005 16:23:49 +0200 (CEST)
Date: Thu, 12 May 2005 16:23:46 +0200
From: Emanuele Rocca <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: pbuilder: Please add support for experimental
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="bp/iNruPH9dso1Pn"
Content-Disposition: inline
X-Reportbug-Version: 3.11
User-Agent: Mutt/1.5.9i
X-Virus-Scanned: by amavisd-new at libero.it serv2
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.1 required=4.0 tests=BAYES_00,HAS_PACKAGE,
REMOVE_REMOVAL_2WORD autolearn=no
version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
--bp/iNruPH9dso1Pn
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Package: pbuilder
Version: 0.127
Severity: wishlist
Tags: patch
The attached patch adds the possibility to create an experimental chroot
with pbuilder.
pbuilder create --distribution experimental
Thanks.
ciao,
ema
--bp/iNruPH9dso1Pn
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="pbuilder-experimental.diff"
diff -Nur pbuilder-0.127/examples/pbuilder-distribution.sh
pbuilder-0.128/examples/pbuilder-distribution.sh
--- pbuilder-0.127/examples/pbuilder-distribution.sh 2004-11-17
00:51:38.000000000 +0100
+++ pbuilder-0.128/examples/pbuilder-distribution.sh 2005-05-12
15:59:25.000000000 +0200
@@ -1,6 +1,6 @@
#!/bin/sh
# script from Jamin W. Collins BTS: #255165
-# name this script 'pbuilder-woody', 'pbuilder-sid', 'pbuilder-sarge' etc.
+# name this script 'pbuilder-woody', 'pbuilder-sid', 'pbuilder-sarge',
'pbuilder-experimental' etc.
OPERATION=$1
DISTRIBUTION=`basename $0 | cut -f2 -d '-'`
diff -Nur pbuilder-0.127/pbuilder.8 pbuilder-0.128/pbuilder.8
--- pbuilder-0.127/pbuilder.8 2005-04-06 01:05:02.000000000 +0200
+++ pbuilder-0.128/pbuilder.8 2005-05-12 15:58:36.000000000 +0200
@@ -180,8 +180,9 @@
Specifies the distribution used. Currently the supported values are
.B "sid"
.B "sarge"
+.B "woody"
and
-.B "woody".
+.B "experimental".
This option is only effective for
.B "pbuilder create"
diff -Nur pbuilder-0.127/pbuilder-createbuildenv
pbuilder-0.128/pbuilder-createbuildenv
--- pbuilder-0.127/pbuilder-createbuildenv 2004-12-02 00:41:32.000000000
+0100
+++ pbuilder-0.128/pbuilder-createbuildenv 2005-05-12 15:44:54.000000000
+0200
@@ -53,6 +53,10 @@
echo " -> Applying user distribution dist build script
$DEBOOTSTRAPSCRIPT"
fi
fi
+if [ "$DISTRIBUTION" = "experimental" ]; then
+ DISTRIBUTION=sid
+ EXPERIMENTAL="true"
+fi
if ! ( cd "$BUILDPLACE" && debootstrap "[EMAIL PROTECTED]" "$DISTRIBUTION" .
"$MIRRORSITE" "$DEBOOTSTRAPSCRIPT" ) ; then
echo "pbuilder: debootstrap failed" >&2
exit 1
@@ -66,6 +70,10 @@
copy_local_configuration
installaptlines
+
+if [ -n "$EXPERIMENTAL" ]; then
+ installexppreferences
+fi
echo "Refreshing the base.tgz "
echo " -> upgrading packages"
@@ -76,8 +84,8 @@
$CHROOTEXEC /usr/bin/dpkg --purge $REMOVEPACKAGES
fi
recover_aptcache
-$CHROOTEXEC /usr/bin/apt-get -y dist-upgrade
-$CHROOTEXEC /usr/bin/apt-get -y install build-essential dpkg-dev apt
$EXTRAPACKAGES
+$CHROOTEXEC /usr/bin/apt-get -y --force-yes dist-upgrade
+$CHROOTEXEC /usr/bin/apt-get -y --force-yes install build-essential dpkg-dev
apt $EXTRAPACKAGES
save_aptcache
$CHROOTEXEC /usr/bin/apt-get clean
diff -Nur pbuilder-0.127/pbuilder-modules pbuilder-0.128/pbuilder-modules
--- pbuilder-0.127/pbuilder-modules 2005-04-20 00:39:50.000000000 +0200
+++ pbuilder-0.128/pbuilder-modules 2005-05-12 15:45:16.000000000 +0200
@@ -27,10 +27,10 @@
pdebuild [pbuilder-options]
command lines:
-pbuilder create [--basetgz base.tgz-path] [--distribution
potato|woody|sarge|sid]
+pbuilder create [--basetgz base.tgz-path] [--distribution
potato|woody|sarge|sid|experimental]
Creates a base.tgz
-pbuilder update [--basetgz base.tgz-path] [--distribution
potato|woody|sarge|sid]
+pbuilder update [--basetgz base.tgz-path] [--distribution
potato|woody|sarge|sid|experimental]
Updates a base.tgz
pbuilder build [--basetgz base.tgz-path] pbuilder_2.2.0-1.dsc
@@ -53,7 +53,7 @@
--nonusmirror [non-US mirror location]
--othermirror [other mirror location in apt deb-line format, delimited with |
signs]
--http-proxy [proxy]
- --distribution [distribution(potato/woody/sarge/sid)]
+ --distribution [distribution(potato/woody/sarge/sid/experimental)]
--buildresult [location-to-copy-build-result]
--aptcache [location of retrieved package files]
--removepackages [packages-to-remove on pbuilder create]
@@ -244,6 +244,19 @@
fi
}
+function installexppreferences (){
+ echo " -> Installing apt-lines and pinning for experimental"
+ if [ -n "$MIRRORSITE" ] ; then
+ echo "deb $MIRRORSITE ../project/experimental main" >>
"$BUILDPLACE"/etc/apt/sources.list
+ echo "#deb-src $MIRRORSITE ../project/experimental main" >>
"$BUILDPLACE"/etc/apt/sources.list
+ fi
+ cat >> "$BUILDPLACE"/etc/apt/preferences << EOF
+Package: *
+Pin: release o=Debian,a=experimental,l=Debian,c=main
+Pin-Priority: 500
+EOF
+}
+
function copy_local_configuration () {
echo " -> copying local configuration"
for a in hosts hostname resolv.conf; do
--bp/iNruPH9dso1Pn--
---------------------------------------
Received: (at 308813-close) by bugs.debian.org; 3 Jul 2005 07:22:50 +0000
>From [EMAIL PROTECTED] Sun Jul 03 00:22:50 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DoyoU-0007iG-00; Sun, 03 Jul 2005 00:22:50 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1Doyj9-0003ku-00; Sun, 03 Jul 2005 03:17:19 -0400
From: Junichi Uekawa <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#308813: fixed in pbuilder 0.128
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sun, 03 Jul 2005 03:17:19 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
X-CrossAssassin-Score: 4
Source: pbuilder
Source-Version: 0.128
We believe that the bug you reported is fixed in the latest version of
pbuilder, which is due to be installed in the Debian FTP archive:
pbuilder_0.128.dsc
to pool/main/p/pbuilder/pbuilder_0.128.dsc
pbuilder_0.128.tar.gz
to pool/main/p/pbuilder/pbuilder_0.128.tar.gz
pbuilder_0.128_all.deb
to pool/main/p/pbuilder/pbuilder_0.128_all.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Junichi Uekawa <[EMAIL PROTECTED]> (supplier of updated pbuilder package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Sat, 2 Jul 2005 13:20:23 +0900
Source: pbuilder
Binary: pbuilder
Architecture: source all
Version: 0.128
Distribution: unstable
Urgency: low
Maintainer: Junichi Uekawa <[EMAIL PROTECTED]>
Changed-By: Junichi Uekawa <[EMAIL PROTECTED]>
Description:
pbuilder - personal package builder for Debian packages
Closes: 185227 305944 306448 308813 310656 312153 312913 316281
Changes:
pbuilder (0.128) unstable; urgency=low
.
* Add example framework to test package inside chroot
- B92test-pkg
- add debian/pbuilder-test/ directory to test pbuilder itself.
* Documentation/pbuilder-doc.xml:
- add reference on directory structure on pbuilder.
- Add note on pbuilder-test
* Support '--distribution experimental'.
"pbuilder: Please add support for experimental", thanks to
Emanuele Rocca (Closes: #308813).
and also support working with new apt-get by using --force-yes.
(closes: 316281).
* Feature enhancement: "pbuilder: Clean apt cache ", thanks to Daniel
Schepler
implement --autocleanaptcache option.
(Closes: #185227).
* pdebuild now checks for unsupported command-line options.
Bug fix: "pbuilder: pdebuild does not warn about --basetgz or
--distribution", thanks to Matt Kraai (Closes: #305944).
* man pages fixup: add \% for non-hyphenation (closes: #310656)
* Fix find options -xdev location. (closes: #312913)
* Bug fix: "pbuilder: Please document proper format of OTHERMIRROR",
thanks to Roberto C. Sanchez (Closes: #312153).
* Bug fix: "pbuilder: Support for preserving environment PATH", thanks
to Brian Nelson (Closes: #306448).
* work around debootstrap 3.0.0 bug which fails to build sid chroot
with --variant=buildd, by not passing --variant=buildd,
see 314858
Files:
1e568dce1d19e7701ba24f01b83bc471 557 devel extra pbuilder_0.128.dsc
3e0f004dcd16a8538203af8585a258ee 208783 devel extra pbuilder_0.128.tar.gz
3e924b03a24a0d0ff9fac58c0ff41657 68590 devel extra pbuilder_0.128_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFCxjXsPfwsYq950p4RAoI0AKCCDkRpGi7l/5sIM62mLGUbtTfhDQCdEU7G
VoPoJWhTmMswedqIO3YWNUI=
=OKmr
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]