commit mwic for openSUSE:Factory

2020-04-07 Thread root
Hello community,

here is the log from the commit of package mwic for openSUSE:Factory checked in 
at 2020-04-07 10:31:26

Comparing /work/SRC/openSUSE:Factory/mwic (Old)
 and  /work/SRC/openSUSE:Factory/.mwic.new.3248 (New)


Package is "mwic"

Tue Apr  7 10:31:26 2020 rev:6 rq:791821 version:0.7.8

Changes:

--- /work/SRC/openSUSE:Factory/mwic/mwic.changes2018-12-04 
20:57:49.892619914 +0100
+++ /work/SRC/openSUSE:Factory/.mwic.new.3248/mwic.changes  2020-04-07 
10:32:25.714585136 +0200
@@ -1,0 +2,14 @@
+Mon Mar 30 16:35:53 UTC 2020 - Sebastian Wagner 
+
+- update to version 0.7.8:
+  * Add new multi-word misspellings to the dictionary.
+  * Use the \e[90m sequence for dark gray.
+  * Improve the build system:
++ Check Python version on install.
++ Byte-compile Python code on install.
+  https://github.com/jwilk/mwic/issues/9
++ Don't require GNU install(1).
+  * Rephrase descriptions of --help and --version in help messages.
+  * Improve the test suite.
+
+---

Old:

  mwic-0.7.7.tar.gz
  mwic-0.7.7.tar.gz.asc

New:

  mwic-0.7.8.tar.gz
  mwic-0.7.8.tar.gz.asc



Other differences:
--
++ mwic.spec ++
--- /var/tmp/diff_new_pack.mD1W4z/_old  2020-04-07 10:32:26.834586595 +0200
+++ /var/tmp/diff_new_pack.mD1W4z/_new  2020-04-07 10:32:26.834586595 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package mwic
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,12 +18,12 @@
 
 %{!?license: %global license %doc}
 Name:   mwic
-Version:0.7.7
+Version:0.7.8
 Release:0
 Summary:A spellchecker with grouping support
 License:MIT
 Group:  Productivity/Office/Other
-Url:http://jwilk.net/software/mwic
+URL:http://jwilk.net/software/mwic
 Source: 
https://github.com/jwilk/mwic/releases/download/%{version}/mwic-%{version}.tar.gz
 Source1:
https://github.com/jwilk/mwic/releases/download/%{version}/mwic-%{version}.tar.gz.asc
 Source2:%{name}.keyring

++ mwic-0.7.7.tar.gz -> mwic-0.7.8.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mwic-0.7.7/.pylintrc new/mwic-0.7.8/.pylintrc
--- old/mwic-0.7.7/.pylintrc2018-11-12 17:42:35.0 +0100
+++ new/mwic-0.7.8/.pylintrc2019-11-16 18:11:55.0 +0100
@@ -5,10 +5,12 @@
 disable =
 bad-builtin,
 bad-continuation,
+bad-option-value,
 fixme,
 inconsistent-return-statements,
 invalid-name,
 locally-disabled,
+no-else-continue,
 no-self-use,
 redefined-variable-type,
 similarities,
@@ -23,7 +25,7 @@
 [REPORTS]
 reports = no
 score = no
-msg-template = {C}: {path}:{line}: {symbol} [{obj}] {msg}
+msg-template = {path}:{line}: {C}: {symbol} [{obj}] {msg}
 
 [FORMAT]
 max-line-length = 120
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mwic-0.7.7/Makefile new/mwic-0.7.8/Makefile
--- old/mwic-0.7.7/Makefile 2018-11-12 17:42:35.0 +0100
+++ new/mwic-0.7.8/Makefile 2019-11-16 18:11:55.0 +0100
@@ -1,4 +1,4 @@
-# Copyright © 2012-2018 Jakub Wilk 
+# Copyright © 2012-2019 Jakub Wilk 
 #
 # Permission is hereby granted, free of charge, to any person obtaining a copy
 # of this software and associated documentation files (the “Software”), to deal
@@ -19,34 +19,42 @@
 # SOFTWARE.
 
 PYTHON = python3
-INSTALL = $(if $(shell command -v ginstall;),ginstall,install)
 
 PREFIX = /usr/local
 DESTDIR =
 
-exe = mwic
-
 bindir = $(PREFIX)/bin
-basedir = $(PREFIX)/share/$(exe)
+basedir = $(PREFIX)/share/mwic
 mandir = $(PREFIX)/share/man
 
 .PHONY: all
 all: ;
 
+python_exe = $(shell $(PYTHON) -c 'import sys; print(sys.executable)')
+
 .PHONY: install
-install:
-   # binary:
-   $(INSTALL) -d -m755 $(DESTDIR)$(bindir)
-   sed -e "s#^basedir = .*#basedir = '$(basedir)/'#" $(exe) > 
$(DESTDIR)$(bindir)/$(exe)
-   chmod 0755 $(DESTDIR)$(bindir)/$(exe)
+install: mwic
+   $(PYTHON) - < lib/__init__.py  # Python version check
+   # executable:
+   install -d $(DESTDIR)$(bindir)
+   sed \
+   -e "1 s@^#!.*@#!$(python_exe)@" \
+   -e "s#^basedir = .*#basedir = '$(basedir)/'#" \
+   $(<) > $(<).tmp
+   install $(<).tmp $(DESTDIR)$(bindir)/$(<)
+   rm $(<).tmp
# library + data:
-   ( find lib dict -type f ! -name '*.py[co]' ) \
-   | xargs -t -I {} $(INSTALL) -p -D -m644 {} 

commit mwic for openSUSE:Factory

2018-12-04 Thread root
Hello community,

here is the log from the commit of package mwic for openSUSE:Factory checked in 
at 2018-12-04 20:57:42

Comparing /work/SRC/openSUSE:Factory/mwic (Old)
 and  /work/SRC/openSUSE:Factory/.mwic.new.19453 (New)


Package is "mwic"

Tue Dec  4 20:57:42 2018 rev:5 rq:653731 version:0.7.7

Changes:

--- /work/SRC/openSUSE:Factory/mwic/mwic.changes2018-10-22 
11:25:39.571017703 +0200
+++ /work/SRC/openSUSE:Factory/.mwic.new.19453/mwic.changes 2018-12-04 
20:57:49.892619914 +0100
@@ -1,0 +2,7 @@
+Tue Nov 13 19:32:04 UTC 2018 - Sebastian Wagner 
+
+- remove reproducible-manpage.patch
+- update to version 0.7.7:
+ * no upstream changelog available
+
+---

Old:

  mwic-0.7.6.tar.gz
  mwic-0.7.6.tar.gz.asc
  reproducible-manpage.patch

New:

  mwic-0.7.7.tar.gz
  mwic-0.7.7.tar.gz.asc



Other differences:
--
++ mwic.spec ++
--- /var/tmp/diff_new_pack.4ebMG8/_old  2018-12-04 20:57:50.380619376 +0100
+++ /var/tmp/diff_new_pack.4ebMG8/_new  2018-12-04 20:57:50.380619376 +0100
@@ -18,15 +18,13 @@
 
 %{!?license: %global license %doc}
 Name:   mwic
-Version:0.7.6
+Version:0.7.7
 Release:0
 Summary:A spellchecker with grouping support
 License:MIT
 Group:  Productivity/Office/Other
 Url:http://jwilk.net/software/mwic
 Source: 
https://github.com/jwilk/mwic/releases/download/%{version}/mwic-%{version}.tar.gz
-# PATH-FIX-UPSTREAM reproducible-manpage.patch --  make manpage reproducible 
https://github.com/jwilk/mwic/issues/8
-Patch0: 
https://github.com/jwilk/mwic/commit/b34ec23082995ef7d59fc43eb9b708c25560fb47.patch#/reproducible-manpage.patch
 Source1:
https://github.com/jwilk/mwic/releases/download/%{version}/mwic-%{version}.tar.gz.asc
 Source2:%{name}.keyring
 BuildRequires:  python3-devel >= 3.2
@@ -43,7 +41,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 sed -i '1s%^#!.*%#!/usr/bin/python3%' mwic

++ mwic-0.7.6.tar.gz -> mwic-0.7.7.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mwic-0.7.6/.pylintrc new/mwic-0.7.7/.pylintrc
--- old/mwic-0.7.6/.pylintrc2018-09-06 21:23:55.0 +0200
+++ new/mwic-0.7.7/.pylintrc2018-11-12 17:42:35.0 +0100
@@ -17,8 +17,12 @@
 too-many-locals,
 too-many-statements,
 
+[BASIC]
+no-docstring-rgx = .*
+
 [REPORTS]
 reports = no
+score = no
 msg-template = {C}: {path}:{line}: {symbol} [{obj}] {msg}
 
 [FORMAT]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mwic-0.7.6/doc/changelog new/mwic-0.7.7/doc/changelog
--- old/mwic-0.7.6/doc/changelog2018-09-06 21:23:55.0 +0200
+++ new/mwic-0.7.7/doc/changelog2018-11-12 17:42:35.0 +0100
@@ -1,3 +1,11 @@
+mwic (0.7.7) unstable; urgency=low
+
+  * Don't die with exception when a file cannot be opened.
+(If there are many input files, it's helpful to continue when one of them
+cannot be opened.)
+
+ -- Jakub Wilk   Mon, 12 Nov 2018 17:42:25 +0100
+
 mwic (0.7.6) unstable; urgency=low
 
   * Improve documentation:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mwic-0.7.6/doc/manpage.rst 
new/mwic-0.7.7/doc/manpage.rst
--- old/mwic-0.7.6/doc/manpage.rst  2018-09-06 21:23:55.0 +0200
+++ new/mwic-0.7.7/doc/manpage.rst  2018-11-12 17:42:35.0 +0100
@@ -7,8 +7,8 @@
 ---
 
 :manual section: 1
-:version: mwic 0.7.6
-:date: |date|
+:version: mwic 0.7.7
+:date: 2018-10-02
 
 Synopsis
 
@@ -160,6 +160,4 @@
 
 by Justin B Rye
 
-.. |date| date:: %Y-%m-%d
-
 .. vim:ts=3 sts=3 sw=3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mwic-0.7.6/doc/mwic.1 new/mwic-0.7.7/doc/mwic.1
--- old/mwic-0.7.6/doc/mwic.1   2018-09-06 21:24:08.0 +0200
+++ new/mwic-0.7.7/doc/mwic.1   2018-11-12 17:42:38.0 +0100
@@ -1,6 +1,6 @@
 .\" Man page generated from reStructuredText.
 .
-.TH MWIC 1 "2018-09-06" "mwic 0.7.6" ""
+.TH MWIC 1 "2018-10-02" "mwic 0.7.7" ""
 .SH NAME
 mwic \- Misspelled Words In Context
 .
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mwic-0.7.6/lib/cli.py new/mwic-0.7.7/lib/cli.py
--- old/mwic-0.7.6/lib/cli.py   2018-09-06 21:23:55.0 +0200
+++ new/mwic-0.7.7/lib/cli.py   2018-11-12 17:42:35.0 +0100
@@ -39,7 +39,7 @@
 from . import pager
 from . import text
 
-__version__ = '0.7.6'
+__version__ = '0.7.7'
 
 class VersionAction(argparse.Action):
 
@@ -100,6 +100,7 @@
 

commit mwic for openSUSE:Factory

2018-10-22 Thread root
Hello community,

here is the log from the commit of package mwic for openSUSE:Factory checked in 
at 2018-10-22 11:25:31

Comparing /work/SRC/openSUSE:Factory/mwic (Old)
 and  /work/SRC/openSUSE:Factory/.mwic.new (New)


Package is "mwic"

Mon Oct 22 11:25:31 2018 rev:4 rq:643328 version:0.7.6

Changes:

--- /work/SRC/openSUSE:Factory/mwic/mwic.changes2018-08-24 
17:01:16.609870259 +0200
+++ /work/SRC/openSUSE:Factory/.mwic.new/mwic.changes   2018-10-22 
11:25:39.571017703 +0200
@@ -1,0 +2,7 @@
+Sat Oct 13 07:55:26 UTC 2018 - Sebastian Wagner 
+
+- add reproducible-manpage.patch
+- update to version 0.7.6:
+ * no upstream changelog available
+
+---

Old:

  mwic-0.7.5.tar.gz
  mwic-0.7.5.tar.gz.asc

New:

  mwic-0.7.6.tar.gz
  mwic-0.7.6.tar.gz.asc
  reproducible-manpage.patch



Other differences:
--
++ mwic.spec ++
--- /var/tmp/diff_new_pack.C0bW2u/_old  2018-10-22 11:25:41.023016275 +0200
+++ /var/tmp/diff_new_pack.C0bW2u/_new  2018-10-22 11:25:41.023016275 +0200
@@ -12,22 +12,25 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 %{!?license: %global license %doc}
 Name:   mwic
-Version:0.7.5
+Version:0.7.6
 Release:0
 Summary:A spellchecker with grouping support
 License:MIT
 Group:  Productivity/Office/Other
 Url:http://jwilk.net/software/mwic
 Source: 
https://github.com/jwilk/mwic/releases/download/%{version}/mwic-%{version}.tar.gz
+# PATH-FIX-UPSTREAM reproducible-manpage.patch --  make manpage reproducible 
https://github.com/jwilk/mwic/issues/8
+Patch0: 
https://github.com/jwilk/mwic/commit/b34ec23082995ef7d59fc43eb9b708c25560fb47.patch#/reproducible-manpage.patch
 Source1:
https://github.com/jwilk/mwic/releases/download/%{version}/mwic-%{version}.tar.gz.asc
 Source2:%{name}.keyring
 BuildRequires:  python3-devel >= 3.2
+BuildRequires:  python3-docutils
 Requires:   python3-pyenchant
 Requires:   python3-regex
 BuildArch:  noarch
@@ -40,6 +43,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 sed -i '1s%^#!.*%#!/usr/bin/python3%' mwic

++ mwic-0.7.5.tar.gz -> mwic-0.7.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mwic-0.7.5/.pylintrc new/mwic-0.7.6/.pylintrc
--- old/mwic-0.7.5/.pylintrc2018-04-26 15:52:56.0 +0200
+++ new/mwic-0.7.6/.pylintrc2018-09-06 21:23:55.0 +0200
@@ -1,3 +1,6 @@
+[MASTER]
+load-plugins = pylint.extensions.check_elif
+
 [MESSAGES CONTROL]
 disable =
 bad-builtin,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mwic-0.7.5/Makefile new/mwic-0.7.6/Makefile
--- old/mwic-0.7.5/Makefile 2018-04-26 15:52:56.0 +0200
+++ new/mwic-0.7.6/Makefile 2018-09-06 21:23:55.0 +0200
@@ -19,7 +19,7 @@
 # SOFTWARE.
 
 PYTHON = python3
-INSTALL = install
+INSTALL = $(if $(shell command -v ginstall;),ginstall,install)
 
 PREFIX = /usr/local
 DESTDIR =
@@ -59,4 +59,6 @@
find . -type d -name '__pycache__' -delete
rm -f .coverage
 
+.error = GNU make is required
+
 # vim:ts=4 sts=4 sw=4 noet
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mwic-0.7.5/doc/Makefile new/mwic-0.7.6/doc/Makefile
--- old/mwic-0.7.5/doc/Makefile 2018-04-26 15:52:56.0 +0200
+++ new/mwic-0.7.6/doc/Makefile 2018-09-06 21:23:55.0 +0200
@@ -1,4 +1,4 @@
-# Copyright © 2014-2017 Jakub Wilk 
+# Copyright © 2014-2018 Jakub Wilk 
 #
 # Permission is hereby granted, free of charge, to any person obtaining a copy
 # of this software and associated documentation files (the “Software”), to deal
@@ -20,7 +20,7 @@
 
 export LC_ALL=C
 
-rst2man = $(or $(shell which rst2man),rst2man.py)
+rst2man = $(notdir $(shell command -v rst2man || echo rst2man.py))
 exe = mwic
 
 .PHONY: all
@@ -37,4 +37,6 @@
 clean:
rm -f $(exe).1 *.tmp
 
+.error = GNU make is required
+
 # vim:ts=4 sts=4 sw=4 noet
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mwic-0.7.5/doc/README new/mwic-0.7.6/doc/README
--- old/mwic-0.7.5/doc/README   2018-04-26 15:52:56.0 +0200
+++ new/mwic-0.7.6/doc/README   2018-09-06 21:24:08.0 +0200
@@ -2,9 +2,10 @@
 
 
 **mwic** is a spell-checker that groups possible misspellings and shows them in
-their contexts. This is useful for checking technical documents that often
+their 

commit mwic for openSUSE:Factory

2018-08-24 Thread root
Hello community,

here is the log from the commit of package mwic for openSUSE:Factory checked in 
at 2018-08-24 17:00:48

Comparing /work/SRC/openSUSE:Factory/mwic (Old)
 and  /work/SRC/openSUSE:Factory/.mwic.new (New)


Package is "mwic"

Fri Aug 24 17:00:48 2018 rev:3 rq:628242 version:0.7.5

Changes:

--- /work/SRC/openSUSE:Factory/mwic/mwic.changes2018-05-29 
10:48:32.432476662 +0200
+++ /work/SRC/openSUSE:Factory/.mwic.new/mwic.changes   2018-08-24 
17:01:16.609870259 +0200
@@ -1,0 +2,6 @@
+Wed Aug  8 16:30:57 UTC 2018 - jeng...@inai.de
+
+- Update summary so it's a bit more useful in lists like yast's.
+- Wrap description.
+
+---



Other differences:
--
++ mwic.spec ++
--- /var/tmp/diff_new_pack.c0kBBR/_old  2018-08-24 17:01:17.161870913 +0200
+++ /var/tmp/diff_new_pack.c0kBBR/_new  2018-08-24 17:01:17.165870918 +0200
@@ -20,7 +20,7 @@
 Name:   mwic
 Version:0.7.5
 Release:0
-Summary:Misspelled Words In Context
+Summary:A spellchecker with grouping support
 License:MIT
 Group:  Productivity/Office/Other
 Url:http://jwilk.net/software/mwic
@@ -33,7 +33,10 @@
 BuildArch:  noarch
 
 %description
-mwic is a spell-checker that groups possible misspellings and shows them in 
their contexts. This is useful for checking technical documents that often 
contain words that are not included in standard dictionaries.
+mwic is a spell-checker that groups possible misspellings and shows
+them in their contexts. This is useful for checking technical
+documents that often contain words that are not included in standard
+dictionaries.
 
 %prep
 %setup -q





commit mwic for openSUSE:Factory

2018-05-29 Thread root
Hello community,

here is the log from the commit of package mwic for openSUSE:Factory checked in 
at 2018-05-29 10:48:31

Comparing /work/SRC/openSUSE:Factory/mwic (Old)
 and  /work/SRC/openSUSE:Factory/.mwic.new (New)


Package is "mwic"

Tue May 29 10:48:31 2018 rev:2 rq:612514 version:0.7.5

Changes:

--- /work/SRC/openSUSE:Factory/mwic/mwic.changes2018-01-31 
19:54:25.242420672 +0100
+++ /work/SRC/openSUSE:Factory/.mwic.new/mwic.changes   2018-05-29 
10:48:32.432476662 +0200
@@ -1,0 +2,7 @@
+Wed May  2 07:19:07 UTC 2018 - sebix+novell@sebix.at
+
+- update to version 0.7.5:
+ * Update PyPI URLs in documentation.
+ * Update Lintian URLs in the manual page.
+
+---

Old:

  mwic-0.7.4.tar.gz
  mwic-0.7.4.tar.gz.asc

New:

  mwic-0.7.5.tar.gz
  mwic-0.7.5.tar.gz.asc



Other differences:
--
++ mwic.spec ++
--- /var/tmp/diff_new_pack.1dmiec/_old  2018-05-29 10:48:32.992456002 +0200
+++ /var/tmp/diff_new_pack.1dmiec/_new  2018-05-29 10:48:32.996455855 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package mwic
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %{!?license: %global license %doc}
 Name:   mwic
-Version:0.7.4
+Version:0.7.5
 Release:0
 Summary:Misspelled Words In Context
 License:MIT

++ mwic-0.7.4.tar.gz -> mwic-0.7.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mwic-0.7.4/Makefile new/mwic-0.7.5/Makefile
--- old/mwic-0.7.4/Makefile 2018-01-24 16:08:00.0 +0100
+++ new/mwic-0.7.5/Makefile 2018-04-26 15:52:56.0 +0200
@@ -1,4 +1,4 @@
-# Copyright © 2012-2016 Jakub Wilk 
+# Copyright © 2012-2018 Jakub Wilk 
 #
 # Permission is hereby granted, free of charge, to any person obtaining a copy
 # of this software and associated documentation files (the “Software”), to deal
@@ -42,7 +42,7 @@
# library + data:
( find lib dict -type f ! -name '*.py[co]' ) \
| xargs -t -I {} $(INSTALL) -p -D -m644 {} $(DESTDIR)$(basedir)/{}
-ifeq "$(wildcard .git doc/$(exe).1)" ".git"
+ifeq "$(wildcard doc/$(exe).1)" ""
# run "$(MAKE) -C doc" to build the manpage
 else
# manual page:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mwic-0.7.4/doc/LICENSE new/mwic-0.7.5/doc/LICENSE
--- old/mwic-0.7.4/doc/LICENSE  2018-01-24 16:08:00.0 +0100
+++ new/mwic-0.7.5/doc/LICENSE  2018-04-26 15:52:56.0 +0200
@@ -1,4 +1,4 @@
-Copyright © 2012-2017 Jakub Wilk 
+Copyright © 2012-2018 Jakub Wilk 
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the “Software”), to deal
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mwic-0.7.4/doc/README new/mwic-0.7.5/doc/README
--- old/mwic-0.7.4/doc/README   2018-01-24 16:08:00.0 +0100
+++ new/mwic-0.7.5/doc/README   2018-04-26 15:52:56.0 +0200
@@ -10,7 +10,7 @@
 
 The following software is needed to run mwic:
 
-* Python ≥ 3.2;
+* Python ≥ 3.3;
 
 * PyEnchant_, Python bindings for the Enchant_ spellchecking system;
 
@@ -34,9 +34,9 @@
 
 
 .. _regex:
-   https://pypi.python.org/pypi/regex
+   https://pypi.org/project/regex/
 .. _pyenchant:
-   https://pypi.python.org/pypi/pyenchant
+   https://pypi.org/project/pyenchant/
 .. _Enchant:
https://abiword.github.io/enchant/
 .. _docutils:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mwic-0.7.4/doc/changelog new/mwic-0.7.5/doc/changelog
--- old/mwic-0.7.4/doc/changelog2018-01-24 16:08:00.0 +0100
+++ new/mwic-0.7.5/doc/changelog2018-04-26 15:52:56.0 +0200
@@ -1,3 +1,11 @@
+mwic (0.7.5) unstable; urgency=low
+
+  * Drop support for Python 3.2.
+  * Update PyPI URLs in documentation.
+  * Update Lintian URLs in the manual page.
+
+ -- Jakub Wilk   Thu, 26 Apr 2018 15:51:37 +0200
+
 mwic (0.7.4) unstable; urgency=low
 
   * Update Linux kernel URL in the manual page.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mwic-0.7.4/doc/manpage.rst 
new/mwic-0.7.5/doc/manpage.rst
--- old/mwic-0.7.4/doc/manpage.rst  2018-01-24 16:08:00.0 +0100
+++ new/mwic-0.7.5/doc/manpage.rst  2018-04-26 15:52:56.0 +0200
@@ -7,7 +7,7 @@
 ---
 
 :manual section: 1