summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--debian/changelog6
-rw-r--r--debian/control2
3 files changed, 10 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 9a05d4b..78073a5 100644
--- a/NEWS
+++ b/NEWS
@@ -4,6 +4,8 @@ NEWS for cliapp
Version 1.20180121+git, not yet released
----------------------------------------
+* Fix file conflict between python3 and old versions of python2
+ versions of the Debian package.
Version 1.20180121, released 2018-01-21
----------------------------------------
diff --git a/debian/changelog b/debian/changelog
index c172bb6..cc5f8d3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,12 @@
python-cliapp (1.20180121+git-1) UNRELEASED; urgency=medium
* New upstream version.
+ * Add Breaks and Replaces on the python-cliapp version prior to
+ buster to python3-cliapp, because the python3-cliapp package
+ now has the cliapp(5) manpage. It used to be in python-cliapp.
+ Having the manpage at all was probably a mistake, since it seems
+ no-one in the history of the world has read it without being
+ forced to. (Closes: #874421)
-- Lars Wirzenius <liw@liw.fi> Sun, 21 Jan 2018 17:20:16 +0200
diff --git a/debian/control b/debian/control
index f06b5d6..63bca4d 100644
--- a/debian/control
+++ b/debian/control
@@ -28,6 +28,8 @@ Homepage: http://liw.fi/cliapp/
Package: python3-cliapp
Architecture: all
Depends: ${python3:Depends}, ${misc:Depends}, python3 (>= 3.4), python3-yaml
+Breaks: python-cliapp (<< 1.20170827-1)
+Replaces: python-cliapp (<< 1.20170827-1)
Suggests: python3-xdg
Description: Python framework for Unix command line programs
cliapp makes it easier to write typical Unix command line programs,