aboutsummaryrefslogtreecommitdiff
path: root/converters/py-iconv
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2020-01-27 15:34:18 +0000
committerRene Ladan <rene@FreeBSD.org>2020-01-27 15:34:18 +0000
commitaa2769119334a5045d38419995aca597ea24b1f1 (patch)
tree46f389d2a7bc016aa58737ba87b33fe1dfdfd3fe /converters/py-iconv
parentad735287aef46d649c1c08ea3d049288113148cb (diff)
downloadports-aa2769119334a5045d38419995aca597ea24b1f1.tar.gz
ports-aa2769119334a5045d38419995aca597ea24b1f1.zip
Notes
Diffstat (limited to 'converters/py-iconv')
-rw-r--r--converters/py-iconv/Makefile36
-rw-r--r--converters/py-iconv/distinfo2
-rw-r--r--converters/py-iconv/files/patch-iconvcodec.py15
-rw-r--r--converters/py-iconv/pkg-descr3
4 files changed, 0 insertions, 56 deletions
diff --git a/converters/py-iconv/Makefile b/converters/py-iconv/Makefile
deleted file mode 100644
index 3cc8574183f1..000000000000
--- a/converters/py-iconv/Makefile
+++ /dev/null
@@ -1,36 +0,0 @@
-# Created by: Hye-Shik Chang <perky@python.or.kr>
-# $FreeBSD$
-
-PORTNAME= iconv
-PORTVERSION= 1.0
-PORTREVISION= 3
-CATEGORIES= converters python
-MASTER_SITES= LOCAL/perky
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-DIST_SUBDIR= python
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Iconv wrapper with Unicode codec for Python
-
-DEPRECATED= Unmaintained, uses EOLed python27
-EXPIRATION_DATE= 2020-01-27
-
-USES= iconv python:2.7
-USE_PYTHON= autoplist distutils
-
-.if empty(ICONV_LIB)
-SETUPINFO= ,library_dirs=["${LOCALBASE}/lib"],\
- include_dirs=["${LOCALBASE}/include"]
-.else
-SETUPINFO= ,libraries=["iconv"],library_dirs=["${LOCALBASE}/lib"],\
- include_dirs=["${LOCALBASE}/include"]
-.endif
-
-post-patch:
- ${REINPLACE_CMD} 's!^\(.*ext_mod.*\)\()]\)$$!\1${SETUPINFO}\2!g'\
- ${WRKSRC}/setup.py
-
-post-install:
- ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/iconv.so
-
-.include <bsd.port.mk>
diff --git a/converters/py-iconv/distinfo b/converters/py-iconv/distinfo
deleted file mode 100644
index caf0ada22dcd..000000000000
--- a/converters/py-iconv/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (python/iconv-1.0.tar.gz) = 9a6b8bdb21a16745e64f32e98a03b43b8298daeec01e1ee00ce4e7797fd034b1
-SIZE (python/iconv-1.0.tar.gz) = 3443
diff --git a/converters/py-iconv/files/patch-iconvcodec.py b/converters/py-iconv/files/patch-iconvcodec.py
deleted file mode 100644
index 17d8681a4191..000000000000
--- a/converters/py-iconv/files/patch-iconvcodec.py
+++ /dev/null
@@ -1,15 +0,0 @@
---- iconvcodec.py.orig Sat Dec 22 08:04:10 2001
-+++ iconvcodec.py Sat Dec 22 08:04:31 2001
-@@ -3,11 +3,7 @@
- # First we need to find out what the Unicode code set name is
- # in this iconv implementation
-
--if sys.platform.startswith("linux"):
-- unicodename = "unicode"+sys.byteorder
--else:
-- # may need to try UCS-2, UCS-2-LE/BE, Unicode, ...
-- raise ImportError,"cannot establish name of 2-byte Unicode"
-+unicodename = "ucs-2-internal"
-
- class Codec(codecs.Codec):
- def __init__(self):
diff --git a/converters/py-iconv/pkg-descr b/converters/py-iconv/pkg-descr
deleted file mode 100644
index 87331bca9c01..000000000000
--- a/converters/py-iconv/pkg-descr
+++ /dev/null
@@ -1,3 +0,0 @@
-This is an iconv wrapper with unicode codec for Python.
-
-WWW: https://sourceforge.net/projects/python-codecs/