Skip to content
Commits on Source (5)
......@@ -176,19 +176,19 @@ target-release = experimental
# alias
[oldoldstable]
distribution = wheezy
distribution = jessie
# alias
[oldstable]
distribution = jessie
distribution = stretch
# alias
[stable]
distribution = stretch
distribution = buster
# alias
[testing]
distribution = buster
distribution = bullseye
# It's also possible to have "virtual" entries by setting uri to
......
......@@ -111,8 +111,7 @@ if [ "$PIUPARTS_DISTRIBUTION_PREV" = "stretch" ]; then
fi
if [ "$PIUPARTS_DISTRIBUTION" = "buster" ] || \
[ "$PIUPARTS_DISTRIBUTION" = "sid" -a "$PIUPARTS_DISTRIBUTION_PREV" = "stretch" ]; then
if [ "$PIUPARTS_DISTRIBUTION" = "buster" ]; then
# libc-bin only upgrades pristine /etc/nsswitch.conf
if grep -q '^passwd:.*compat' /etc/nsswitch.conf ; then
......
......@@ -8,7 +8,7 @@ then
jessie)
dpkg --purge gcc-4.8-base
;;
sid|stretch)
stretch)
dpkg --purge lsb-base tzdata
;;
esac
......
......@@ -56,7 +56,7 @@ case "$PIUPARTS_DISTRIBUTION_NEXT" in
CANDIDATES="$CANDIDATES mariadb-server-10.3"
CANDIDATES="$CANDIDATES postgresql-11"
;;
sid)
bullseye|sid)
CANDIDATES="$CANDIDATES mariadb-server-10.3"
CANDIDATES="$CANDIDATES postgresql-11"
;;
......@@ -164,7 +164,10 @@ case "${PIUPARTS_DISTRIBUTION}:${PIUPARTS_DISTRIBUTION_NEXT}" in
stretch*:buster)
upgrade_pg_cluster 9.6 11
;;
stretch:sid)
buster*:bullseye)
upgrade_pg_cluster 9.6 11
;;
buster:sid)
upgrade_pg_cluster 9.6 11
;;
esac
......
piuparts (1.0.1) UNRELEASED; urgency=medium
piuparts (1.0.1) unstable; urgency=medium
[ Andreas Beckmann ]
* piuparts.conf, distros.conf: Update for buster release.
* piuparts.py:
- Add '--max-command-output-size' option to allow overriding the default
of 8 MB for debugging runs.
- Run pre_remove scripts before computing packages to be removed.
- Fix spurious failure to remove packages with names ending with '+'.
* piuparts.conf.anbe: Add some more example sections.
* piupartslib/packagesdb.py:
- Remove stale .kpr files after receiving new logs.
* piuparts-slave.py:
......@@ -16,11 +16,13 @@ piuparts (1.0.1) UNRELEASED; urgency=medium
- Clean up stale temporary and empty files.
* master-bin/rotate_master_logs: Delete master logs older than 90 days.
* slave-bin/slave_reexec: New, send SIGUSR1 to all running slaves.
* custom-scripts: Add and update several exceptions.
* piuparts.conf.anbe: Add some more example sections.
[ Holger Levsen ]
* generate_daily_report: improve statistics.
-- Holger Levsen <holger@debian.org> Sat, 04 May 2019 21:53:16 +0200
-- Holger Levsen <holger@debian.org> Tue, 18 Jun 2019 14:48:59 +0200
piuparts (1.0.0) unstable; urgency=medium
......
......@@ -230,7 +230,7 @@ sections =
squeeze2squeeze-lts
squeeze
lenny2squeeze
testing-suite = buster
testing-suite = bullseye
mirror = @MIRROR@
master-host = pejacevic.debian.org
master-user = piupartsm
......
......@@ -426,7 +426,7 @@ sections =
lenny2squeeze/non-free
lenny2squeeze_i386/non-free
#
testing-suite = buster
testing-suite = bullseye
#
json-sections = none
#
......