diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 02:15:33 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 02:15:33 +0000 |
commit | 8482f74c2aab81b489180e9598206c7bc1ae7f4d (patch) | |
tree | a89199ef66c53336ed87e2ca9125527a1156ed96 | |
parent | Releasing progress-linux version 20240420-1progress5u1. (diff) | |
download | progress-linux-8482f74c2aab81b489180e9598206c7bc1ae7f4d.tar.xz progress-linux-8482f74c2aab81b489180e9598206c7bc1ae7f4d.zip |
Merging debian version 20240420-2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rw-r--r-- | debian/changelog | 7 | ||||
-rwxr-xr-x | debian/progress-linux.postinst | 6 |
2 files changed, 10 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index ae8e068..93647a7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +progress-linux (20240420-2) sid; urgency=medium + + * Uploading to sid. + * Using all archive areas for test repositories. + + -- Daniel Baumann <daniel.baumann@progress-linux.org> Sat, 20 Apr 2024 17:37:06 +0200 + progress-linux (20240420-1progress5u1) engywuck; urgency=medium * Initial reupload to engywuck. diff --git a/debian/progress-linux.postinst b/debian/progress-linux.postinst index 180770e..c44a254 100755 --- a/debian/progress-linux.postinst +++ b/debian/progress-linux.postinst @@ -39,7 +39,7 @@ Configure_apt_sources () for ARCHIVE in ${ARCHIVES} do case "${ARCHIVE}" in - *-extras) + *-extras|*-test) ;; *) @@ -58,13 +58,13 @@ Configure_apt_sources () Configure_apt_sources_stanza "${SUITES}" "${COMPONENTS}" fi - # Configure repositories: ${release}-extras, ${release}-backports-extras + # Configure repositories: ${release}-extras, ${release}-test, ${release}-backports-extras, ${release}-backports-test SUITES="" for ARCHIVE in ${ARCHIVES} do case "${ARCHIVE}" in - *-extras) + *-extras|*-test) SUITES="${SUITES} ${ARCHIVE}" Configure_apt_preferences ${ARCHIVE} |