summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog4
-rwxr-xr-xpkgkde-vcs4
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 1cf37d8..ff89bb9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,10 @@ pkg-kde-tools (0.15.25) UNRELEASED; urgency=medium
[ Maximiliano Curia ]
* (l10n-packages.mk) Add missing ast and eo langs
+ [ Dmitry Shachnev ]
+ * pkgkde-vcs: Add jessie and stretch to supported distributions (Closes:
+ #873243). Thanks to Sandro Knauß for the initial patch.
+
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Tue, 27 Jun 2017 15:44:05 +0300
pkg-kde-tools (0.15.24) unstable; urgency=medium
diff --git a/pkgkde-vcs b/pkgkde-vcs
index 5ddb4f5..98f5368 100755
--- a/pkgkde-vcs
+++ b/pkgkde-vcs
@@ -153,7 +153,9 @@ is_distribution_valid()
{
local distro
test -n "$1" || distro="$DEB_DISTRIBUTION"
- if [ "$(expr match "$distro" '^\(\(stable\|testing\)\(-security\|-proposed-updates\)\|\(squeeze\|wheezy\)-backports\|stable\|unstable\|experimental\)$')" = "$distro" ]; then
+ if [ "$(expr match "$distro" '^\(\(wheezy\|jessie\|stretch\)\(-security\|-backports\|-backports-sloppy\)\?\)$')" = "$distro" ]; then
+ return 0
+ elif [ "$(expr match "$distro" '^\(testing\(-proposed-updates\)\?\|unstable\|experimental\)$')" = "$distro" ]; then
return 0
fi
return 1