Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 28 Jul 2018 12:03:06 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r475529 - in head/converters: . py-text-unidecode
Message-ID:  <201807281203.w6SC36uF065997@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: miwi
Date: Sat Jul 28 12:03:06 2018
New Revision: 475529
URL: https://svnweb.freebsd.org/changeset/ports/475529

Log:
  text-unidecode is the most basic port of the Text::Unidecode Perl library. There
  are other Python ports of Text::Unidecode (unidecode and isounidecode).
  
  unidecode is GPL, isounidecode uses too much memory, and it didn't support
  Python 3 when this package was created.
  
  WWW: https://github.com/kmike/text-unidecode
  
  PR:		229439
  Submitted by:	freebsd_ports@k-worx.org
  Sponsored by:	iXsystems Inc.

Added:
  head/converters/py-text-unidecode/
  head/converters/py-text-unidecode/Makefile   (contents, props changed)
  head/converters/py-text-unidecode/distinfo   (contents, props changed)
  head/converters/py-text-unidecode/pkg-descr   (contents, props changed)
Modified:
  head/converters/Makefile

Modified: head/converters/Makefile
==============================================================================
--- head/converters/Makefile	Sat Jul 28 12:01:50 2018	(r475528)
+++ head/converters/Makefile	Sat Jul 28 12:03:06 2018	(r475529)
@@ -162,6 +162,7 @@
     SUBDIR += py-iconv
     SUBDIR += py-pint
     SUBDIR += py-rencode
+    SUBDIR += py-text-unidecode
     SUBDIR += py-unidecode
     SUBDIR += py-webencodings
     SUBDIR += py-zfec

Added: head/converters/py-text-unidecode/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/converters/py-text-unidecode/Makefile	Sat Jul 28 12:03:06 2018	(r475529)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME=	text-unidecode
+DISTVERSION=	1.2
+CATEGORIES=	converters python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	freebsd_ports@k-worx.org
+COMMENT=	Most basic port of Perl's Text::Unidecode module
+
+LICENSE=	ART10
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/converters/py-text-unidecode/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/converters/py-text-unidecode/distinfo	Sat Jul 28 12:03:06 2018	(r475529)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1530183792
+SHA256 (text-unidecode-1.2.tar.gz) = 5a1375bb2ba7968740508ae38d92e1f889a0832913cb1c447d5e2046061a396d
+SIZE (text-unidecode-1.2.tar.gz) = 76872

Added: head/converters/py-text-unidecode/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/converters/py-text-unidecode/pkg-descr	Sat Jul 28 12:03:06 2018	(r475529)
@@ -0,0 +1,7 @@
+text-unidecode is the most basic port of the Text::Unidecode Perl library. There
+are other Python ports of Text::Unidecode (unidecode and isounidecode).
+
+unidecode is GPL, isounidecode uses too much memory, and it didn't support
+Python 3 when this package was created.
+
+WWW: https://github.com/kmike/text-unidecode



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201807281203.w6SC36uF065997>