pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/textproc/py-Unidecode unidecode 0.04.21



details:   https://anonhg.NetBSD.org/pkgsrc/rev/d3b5b7a1f5ed
branches:  trunk
changeset: 365695:d3b5b7a1f5ed
user:      adam <adam%pkgsrc.org@localhost>
date:      Sun Jul 23 18:52:03 2017 +0000

description:
unidecode 0.04.21
* Add U+2116 NUMERO SIGN
* Add U+05BE HEBREW PUNCTUATION MAQAF

unidecode 0.04.20:
* Fixed transliteration of circled Latin letters and numbers
* Add square unit symbols.
* Add Latin variants in U+20xx and U+21xx pages.
* Fix U+02B1 MODIFIER LETTER SMALL H WITH HOOK.
* Fix U+205F MEDIUM MATHEMATICAL SPACE.
* Add "DIGIT ... COMMA" and "PARANTHESIZED LATIN CAPITAL LETTER"
  in U+1F1xx page.
* Add missing vulgar fractions and a/c, a/s, c/o, c/u symbols.
* Add universal Wheel release

diffstat:

 textproc/py-Unidecode/ALTERNATIVES |   1 +
 textproc/py-Unidecode/Makefile     |  11 +++++++----
 textproc/py-Unidecode/PLIST        |  21 +++++++++++++++++++--
 textproc/py-Unidecode/distinfo     |  10 +++++-----
 4 files changed, 32 insertions(+), 11 deletions(-)

diffs (87 lines):

diff -r 47e23c351ca6 -r d3b5b7a1f5ed textproc/py-Unidecode/ALTERNATIVES
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/py-Unidecode/ALTERNATIVES        Sun Jul 23 18:52:03 2017 +0000
@@ -0,0 +1,1 @@
+bin/unidecode @PREFIX@/bin/unidecode-@PYVERSSUFFIX@
diff -r 47e23c351ca6 -r d3b5b7a1f5ed textproc/py-Unidecode/Makefile
--- a/textproc/py-Unidecode/Makefile    Sun Jul 23 18:47:09 2017 +0000
+++ b/textproc/py-Unidecode/Makefile    Sun Jul 23 18:52:03 2017 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.3 2016/06/08 17:43:40 wiz Exp $
-#
+# $NetBSD: Makefile,v 1.4 2017/07/23 18:52:03 adam Exp $
 
-DISTNAME=      Unidecode-0.04.9
+DISTNAME=      Unidecode-0.04.21
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    textproc
 MASTER_SITES=  ${MASTER_SITE_PYPI:=U/Unidecode/}
@@ -12,6 +11,10 @@
 LICENSE=       gnu-gpl-v2 # or newer
 
 USE_LANGUAGES= # none
+EGG_NAME=      ${DISTNAME:S/0.04/0.4/}
 
-.include "../../lang/python/distutils.mk"
+post-install:
+       cd ${DESTDIR}${PREFIX}/bin && ${MV} unidecode unidecode${PYVERSSUFFIX} || ${TRUE}
+
+.include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 47e23c351ca6 -r d3b5b7a1f5ed textproc/py-Unidecode/PLIST
--- a/textproc/py-Unidecode/PLIST       Sun Jul 23 18:47:09 2017 +0000
+++ b/textproc/py-Unidecode/PLIST       Sun Jul 23 18:52:03 2017 +0000
@@ -1,8 +1,16 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2012/05/30 11:03:50 wiz Exp $
-${PYSITELIB}/${EGG_FILE}
+@comment $NetBSD: PLIST,v 1.2 2017/07/23 18:52:03 adam Exp $
+bin/unidecode${PYVERSSUFFIX}
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
 ${PYSITELIB}/unidecode/__init__.py
 ${PYSITELIB}/unidecode/__init__.pyc
 ${PYSITELIB}/unidecode/__init__.pyo
+${PYSITELIB}/unidecode/util.py
+${PYSITELIB}/unidecode/util.pyc
+${PYSITELIB}/unidecode/util.pyo
 ${PYSITELIB}/unidecode/x000.py
 ${PYSITELIB}/unidecode/x000.pyc
 ${PYSITELIB}/unidecode/x000.pyo
@@ -111,6 +119,12 @@
 ${PYSITELIB}/unidecode/x028.py
 ${PYSITELIB}/unidecode/x028.pyc
 ${PYSITELIB}/unidecode/x028.pyo
+${PYSITELIB}/unidecode/x029.py
+${PYSITELIB}/unidecode/x029.pyc
+${PYSITELIB}/unidecode/x029.pyo
+${PYSITELIB}/unidecode/x02a.py
+${PYSITELIB}/unidecode/x02a.pyc
+${PYSITELIB}/unidecode/x02a.pyo
 ${PYSITELIB}/unidecode/x02c.py
 ${PYSITELIB}/unidecode/x02c.pyc
 ${PYSITELIB}/unidecode/x02c.pyo
@@ -561,3 +575,6 @@
 ${PYSITELIB}/unidecode/x1d7.py
 ${PYSITELIB}/unidecode/x1d7.pyc
 ${PYSITELIB}/unidecode/x1d7.pyo
+${PYSITELIB}/unidecode/x1f1.py
+${PYSITELIB}/unidecode/x1f1.pyc
+${PYSITELIB}/unidecode/x1f1.pyo
diff -r 47e23c351ca6 -r d3b5b7a1f5ed textproc/py-Unidecode/distinfo
--- a/textproc/py-Unidecode/distinfo    Sun Jul 23 18:47:09 2017 +0000
+++ b/textproc/py-Unidecode/distinfo    Sun Jul 23 18:52:03 2017 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.2 2015/11/04 02:00:01 agc Exp $
+$NetBSD: distinfo,v 1.3 2017/07/23 18:52:03 adam Exp $
 
-SHA1 (Unidecode-0.04.9.tar.gz) = c705b71ea08978012b5800f038b1de1a3ba81426
-RMD160 (Unidecode-0.04.9.tar.gz) = 8ca1c7bb80dcb313b93d3bb6d47576c106e7a14e
-SHA512 (Unidecode-0.04.9.tar.gz) = 37b8a04d88925333a392696c9b23325b2fc7a9df2dd77320ce3bc3ae9d2592cc256e020fce79cc5b142d872140f7f28e73c179ae3d13c79239d085dacc6e7d50
-Size (Unidecode-0.04.9.tar.gz) = 196659 bytes
+SHA1 (Unidecode-0.04.21.tar.gz) = a6c0f413bfc5d9de7bf7807b7b7589cea55f7b6b
+RMD160 (Unidecode-0.04.21.tar.gz) = 2c30cc6d15f2761ce7874710c9920968f270605f
+SHA512 (Unidecode-0.04.21.tar.gz) = 33fc546b3eefc4ba5feee90d584e49ccd81dd0ae00671f7e44f43cc3dc8a458b86ed6dbfacba6dac7539112408137fc1db6329cc42f31ee250755d841c7c29c2
+Size (Unidecode-0.04.21.tar.gz) = 205931 bytes



Home | Main Index | Thread Index | Old Index