pkgsrc-Changes archive

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

CVS commit: pkgsrc/textproc/py-Unidecode



Module Name:    pkgsrc
Committed By:   adam
Date:           Sun Jul 23 18:52:03 UTC 2017

Modified Files:
        pkgsrc/textproc/py-Unidecode: Makefile PLIST distinfo
Added Files:
        pkgsrc/textproc/py-Unidecode: ALTERNATIVES

Log Message:
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


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/py-Unidecode/ALTERNATIVES
cvs rdiff -u -r1.3 -r1.4 pkgsrc/textproc/py-Unidecode/Makefile
cvs rdiff -u -r1.1.1.1 -r1.2 pkgsrc/textproc/py-Unidecode/PLIST
cvs rdiff -u -r1.2 -r1.3 pkgsrc/textproc/py-Unidecode/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/textproc/py-Unidecode/Makefile
diff -u pkgsrc/textproc/py-Unidecode/Makefile:1.3 pkgsrc/textproc/py-Unidecode/Makefile:1.4
--- pkgsrc/textproc/py-Unidecode/Makefile:1.3   Wed Jun  8 17:43:40 2016
+++ pkgsrc/textproc/py-Unidecode/Makefile       Sun Jul 23 18:52:03 2017
@@ -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 @@ COMMENT=     ASCII transliterations of Unico
 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"

Index: pkgsrc/textproc/py-Unidecode/PLIST
diff -u pkgsrc/textproc/py-Unidecode/PLIST:1.1.1.1 pkgsrc/textproc/py-Unidecode/PLIST:1.2
--- pkgsrc/textproc/py-Unidecode/PLIST:1.1.1.1  Wed May 30 11:03:50 2012
+++ pkgsrc/textproc/py-Unidecode/PLIST  Sun Jul 23 18:52:03 2017
@@ -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/x027.pyo
 ${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/x1d6.pyo
 ${PYSITELIB}/unidecode/x1d7.py
 ${PYSITELIB}/unidecode/x1d7.pyc
 ${PYSITELIB}/unidecode/x1d7.pyo
+${PYSITELIB}/unidecode/x1f1.py
+${PYSITELIB}/unidecode/x1f1.pyc
+${PYSITELIB}/unidecode/x1f1.pyo

Index: pkgsrc/textproc/py-Unidecode/distinfo
diff -u pkgsrc/textproc/py-Unidecode/distinfo:1.2 pkgsrc/textproc/py-Unidecode/distinfo:1.3
--- pkgsrc/textproc/py-Unidecode/distinfo:1.2   Wed Nov  4 02:00:01 2015
+++ pkgsrc/textproc/py-Unidecode/distinfo       Sun Jul 23 18:52:03 2017
@@ -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

Added files:

Index: pkgsrc/textproc/py-Unidecode/ALTERNATIVES
diff -u /dev/null pkgsrc/textproc/py-Unidecode/ALTERNATIVES:1.1
--- /dev/null   Sun Jul 23 18:52:04 2017
+++ pkgsrc/textproc/py-Unidecode/ALTERNATIVES   Sun Jul 23 18:52:03 2017
@@ -0,0 +1 @@
+bin/unidecode @PREFIX@/bin/unidecode-@PYVERSSUFFIX@



Home | Main Index | Thread Index | Old Index