From 0e8b6a91403b7abbdd0c9622c890d04b2e261ac2 Mon Sep 17 00:00:00 2001 From: Zack Weinberg Date: Sun, 4 Nov 2018 13:48:21 -0500 Subject: [PATCH] Change package version number from 0.8.3 to 0.996.1. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There are two reasons for this change. Most important, the SWIG definitions we ship are copied out of the MeCab library’s source tree (see ). This makes clear which version of those definitions we have. Also, Debian already ships a version of these bindings that are numbered mostly consistently with the MeCab library (python-mecab, currently version 0.99.6-2) but are stuck without Python 3 support. I would like to try to replace them with this package, but if we stick to version 0.8.3, they will have to put an “epoch” on their package numbering in order to do that, and they prefer to avoid that whenever possible. --- debian/changelog | 9 ++++----- setup.py | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/debian/changelog b/debian/changelog index 6d4c5b7..21e6e3a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,10 +1,9 @@ -python-mecab (1:0.8.3-1) unstable; urgency=medium +python-mecab (0.996.1-1) unstable; urgency=medium [ Zack Weinberg ] - * Switch upstream to “mecab-python3” PyPI package, which runs SWIG - at build time rather than embedding SWIG-generated code, and (therefore) - supports Python 3. This package is versioned independently from - MeCab itself, which requires an epoch. + * Switch upstream to “mecab-python3” PyPI package, which runs + SWIG at build time rather than embedding SWIG-generated code, + and therefore supports Python 3. * Build using pybuild. * Add python3 binary packages. * Remove obsolete Provides: lines. diff --git a/setup.py b/setup.py index 91c1cb1..ab7e7d2 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ def mecab_config(arg): swig_opts.extend("-I"+d for d in inc_dir) setup(name = "mecab-python3", - version = '0.8.3', + version = '0.996.1', description = 'python wrapper for mecab: Morphological Analysis engine', long_description = read_file('README.rst'), maintainer = 'Tatsuro Yasukawa',