Skip to content
Commits on Source (5)
......@@ -4,7 +4,7 @@ Contributing code to this project
It's helpful to track fixes or new features via wishlist bugs against the
'piuparts' package, eg with the 'reportbug' tool ('devscripts' package).
The BTS will ensure the developers' mailing list
piuparts-devel@lists.alioth.debian.org
piuparts-devel@alioth-lists.debian.net
is notified.
Patches can be submitted by mail (git format-patch, see below)
......
piuparts (0.87) unstable; urgency=medium
[ Philipp Hahn ]
* piuparts.py: use `apt-cache show --no-all-versions` to prevent generating
a "piuparts-depends-dummy" package with multiple dependencies on the same
package with different versions. (Closes: #898606)
[ Holger Levsen ]
* Update all occurrences of piuparts-devel@lists.alioth.debian.org with
piuparts-devel@alioth-lists.debian.net.
* Drop X-Python-Version header from debian/control.
-- Holger Levsen <holger@debian.org> Sat, 02 Jun 2018 11:36:36 +0000
piuparts (0.86) unstable; urgency=medium
* debian/control: switch packaging to salsa.debian.org. Thanks to the alioth
......
Source: piuparts
Maintainer: piuparts developers team <piuparts-devel@lists.alioth.debian.org>
Maintainer: piuparts developers team <piuparts-devel@alioth-lists.debian.net>
Uploaders:
Holger Levsen <holger@debian.org>
Section: devel
......@@ -26,7 +26,6 @@ Build-Depends-Indep:
Homepage: https://piuparts.debian.org
Vcs-Git: https://salsa.debian.org/debian/piuparts.git
Vcs-Browser: https://salsa.debian.org/debian/piuparts.git
X-Python-Version: >= 2.7
Package: piuparts
Architecture: all
......
......@@ -77,7 +77,7 @@
</tr>
<tr class="normalrow">
<td class="contentcell2">
Please take care when filing bugs to file meaningful bugs and to not annoy maintainers. Don't nitpick or insist on severities, the important thing is to get the bug fixed, not the right severity. Optionally you can also send copies to the piuparts-devel mailinglist by adding <i>X-debbugs-cc: piuparts-devel@lists.alioth.debian.org</i> pseudo-headers.
Please take care when filing bugs to file meaningful bugs and to not annoy maintainers. Don't nitpick or insist on severities, the important thing is to get the bug fixed, not the right severity. Optionally you can also send copies to the piuparts-devel mailinglist by adding <i>X-debbugs-cc: piuparts-devel@alioth-lists.debian.net</i> pseudo-headers.
</td>
</tr>
<tr class="normalrow">
......
......@@ -165,7 +165,7 @@ sections =
mirror = @MIRROR@
master-host = pejacevic.debian.org
master-user = piupartsm
bts-from = piuparts-devel@lists.alioth.debian.org
bts-from = piuparts-devel@alioth-lists.debian.net
master-command = /srv/piuparts.debian.org/share/piuparts/piuparts-master
piuparts-command =
sudo
......
......@@ -6,5 +6,5 @@ WHERE='pass fail bugged affected'
ISSUE=1
HEADER='Packages which have logs with the string "Found unknown tags running adequate"'
HELPTEXT='
<p>Sometimes new types of problems are detected by <a href="https://packages.debian.org/adequate" target="_blank">adequate</a>, which classifies them using tags. When this happens these new tags need to be made known to piuparts. Please notify <a href="piuparts-devel@lists.alioth.debian.org">piuparts-devel@lists.alioth.debian.org</a>.</p>
<p>Sometimes new types of problems are detected by <a href="https://packages.debian.org/adequate" target="_blank">adequate</a>, which classifies them using tags. When this happens these new tags need to be made known to piuparts. Please notify <a href="piuparts-devel@alioth-lists.debian.net">piuparts-devel@alioth-lists.debian.net</a>.</p>
'
......@@ -127,7 +127,7 @@ HTML_HEADER = """<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
</tr>
<tr class="normalrow">
<td class="contentcell">
<a href="mailto:piuparts-devel@lists.alioth.debian.org" target="_blank">Contact us</a>
<a href="mailto:piuparts-devel@alioth-lists.debian.net" target="_blank">Contact us</a>
</td>
</tr>
<tr class="titlerow">
......@@ -248,7 +248,7 @@ HTML_FOOTER = """
<a href="mailto:anbe@debian.org">Andreas Beckmann</a> and
<a href="mailto:holger@layer-acht.org">Holger Levsen</a> and
<a href="mailto:piuparts-devel@lists.alioth.debian.org">others</a> using
<a href="mailto:piuparts-devel@alioth-lists.debian.net">others</a> using
<a href="https://salsa.debian.org/debian/piuparts.git" target="_blank">piuparts.git</a>.
Ditto for this website.
Weather icons are from the <a href="http://tango.freedesktop.org/Tango_Icon_Library" target="_blank">Tango Icon Library</a>.
......
......@@ -646,7 +646,7 @@ def make_metapackage(name, depends, conflicts, arch='all'):
control['Version'] = '0.invalid.0'
control['Architecture'] = arch
control['Maintainer'] = ('piuparts developers team '
'<piuparts-devel@lists.alioth.debian.org>')
'<piuparts-devel@alioth-lists.debian.net>')
control['Description'] = ('Dummy package to satisfy dependencies - '
'created by piuparts\n'
' This package was created automatically by '
......@@ -1180,7 +1180,7 @@ class Chroot:
known_packages = []
new_packages = []
for name in packages:
(status, output) = self.run(["apt-cache", "show", name],
(status, output) = self.run(["apt-cache", "show", "--no-all-versions", name],
ignore_errors=True)
# apt-cache reports status for some virtual packages and packages
# in status config-files-remaining state without installation
......@@ -2292,7 +2292,7 @@ def install_purge_test(chroot, chroot_state, package_files, packages, extra_pack
else:
# We have package names. Use apt to get all their control
# information.
apt_cache_args = ["apt-cache", "show"]
apt_cache_args = ["apt-cache", "show", "--no-all-versions"]
if os.environ["PIUPARTS_DISTRIBUTION"] in ["lenny"]:
# apt-cache in lenny does not accept version-qualified packages
apt_cache_args.extend(unqualify(packages))
......