aboutsummaryrefslogtreecommitdiffstats
path: root/devel
diff options
context:
space:
mode:
authorrm <rm@FreeBSD.org>2013-03-07 01:41:01 +0800
committerrm <rm@FreeBSD.org>2013-03-07 01:41:01 +0800
commitb27c16da481699b24e2b44bd26f5c821b62611f6 (patch)
tree87a552d431bc67e52c34da96f4375753c9d2d18a /devel
parent67add62c6b94cb62f657ba76dd73335a03f39e01 (diff)
downloadfreebsd-ports-gnome-b27c16da481699b24e2b44bd26f5c821b62611f6.tar.gz
freebsd-ports-gnome-b27c16da481699b24e2b44bd26f5c821b62611f6.tar.zst
freebsd-ports-gnome-b27c16da481699b24e2b44bd26f5c821b62611f6.zip
Adios, setuptools.
Diffstat (limited to 'devel')
-rw-r--r--devel/Makefile1
-rw-r--r--devel/py-setuptools/Makefile44
-rw-r--r--devel/py-setuptools/distinfo2
-rw-r--r--devel/py-setuptools/files/pkg-install.in24
-rw-r--r--devel/py-setuptools/pkg-descr6
-rw-r--r--devel/py-setuptools/pkg-plist17
6 files changed, 0 insertions, 94 deletions
diff --git a/devel/Makefile b/devel/Makefile
index f5f6d1a44da2..7b2a29b2b9dd 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -3627,7 +3627,6 @@
SUBDIR += py-ruledispatch
SUBDIR += py-sanetime
SUBDIR += py-setproctitle
- SUBDIR += py-setuptools
SUBDIR += py-setuptools-git
SUBDIR += py-setuptools_darcs
SUBDIR += py-setuptools_hg
diff --git a/devel/py-setuptools/Makefile b/devel/py-setuptools/Makefile
deleted file mode 100644
index 4af0097935a6..000000000000
--- a/devel/py-setuptools/Makefile
+++ /dev/null
@@ -1,44 +0,0 @@
-# Created by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
-# $FreeBSD$
-
-PORTNAME= setuptools
-PORTVERSION= 0.6c11
-PORTREVISION= 3
-CATEGORIES= devel python
-MASTER_SITES= CHEESESHOP
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-
-MAINTAINER= python@FreeBSD.org
-COMMENT= Download, build, install, upgrade, and uninstall Python packages
-
-DIST_SUBDIR= python
-USE_PYTHON= -2.7
-USE_PYDISTUTILS= yes
-PYDISTUTILS_NOEGGINFO= yes # XXX convert easy_install support to bsd.python.mk's
-PLIST_SUB= VERSION=${PORTVERSION} PYVER=${PYTHON_VERSION:S/python//}
-
-.include <bsd.port.pre.mk>
-
-SUB_FILES= pkg-install
-SUB_LIST= EASYINSTALL_PTH=${EASYINSTALL_PTH}
-
-EASYINSTALL_PTH= ${PYTHON_SITELIBDIR}/easy-install.pth
-
-pre-install:
- PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
-
-post-install:
- ${INSTALL_DATA} ${WRKSRC}/site.py ${PYTHON_SITELIBDIR}
-.for opt in -Qold -O
- ${PYTHON_CMD} ${opt} -m compileall -l -x \
- '^[^s][^i]?[^t]?[^e]?[^.][^p][^y]$$' ${PYTHON_SITELIBDIR}
-.endfor
- ${CP} ${EASYINSTALL_PTH} ${EASYINSTALL_PTH}.dist
- PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
-
-.if !defined(NOPORTDOCS)
- @${MKDIR} ${DOCSDIR}
- ${INSTALL_DATA} ${WRKSRC}/*.txt ${DOCSDIR}
-.endif
-
-.include <bsd.port.post.mk>
diff --git a/devel/py-setuptools/distinfo b/devel/py-setuptools/distinfo
deleted file mode 100644
index 698c4dd81611..000000000000
--- a/devel/py-setuptools/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (python/setuptools-0.6c11.tar.gz) = 630fea9b726320b73ee3ca6ff61732cb32675b0389be658080fe46383b87a1d3
-SIZE (python/setuptools-0.6c11.tar.gz) = 256862
diff --git a/devel/py-setuptools/files/pkg-install.in b/devel/py-setuptools/files/pkg-install.in
deleted file mode 100644
index 4c6fd4c865b3..000000000000
--- a/devel/py-setuptools/files/pkg-install.in
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-
-EASYINSTALL_PTH=%%EASYINSTALL_PTH%%
-
-if [ $# -ne 2 ]; then
- echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
- exit 1
-fi
-
-case $2 in
- PRE-INSTALL)
- if [ -f ${EASYINSTALL_PTH} ]; then
- mv ${EASYINSTALL_PTH} ${EASYINSTALL_PTH}.tmp
- fi
- ;;
- POST-INSTALL)
- if [ -f ${EASYINSTALL_PTH}.tmp ]; then
- mv ${EASYINSTALL_PTH}.tmp ${EASYINSTALL_PTH}
- fi
- ;;
-esac
-
-exit 0
-
diff --git a/devel/py-setuptools/pkg-descr b/devel/py-setuptools/pkg-descr
deleted file mode 100644
index 91532d7b303e..000000000000
--- a/devel/py-setuptools/pkg-descr
+++ /dev/null
@@ -1,6 +0,0 @@
-Setuptools is a collection of enhancements to the Python distutils (for Python
-2.3.5 and up on most platforms; 64-bit platforms require a minimum of Python
-2.4) that allow you to more easily build and distribute Python packages,
-especially ones that have dependencies on other packages.
-
-WWW: http://peak.telecommunity.com/DevCenter/setuptools
diff --git a/devel/py-setuptools/pkg-plist b/devel/py-setuptools/pkg-plist
deleted file mode 100644
index b1daaa4542ec..000000000000
--- a/devel/py-setuptools/pkg-plist
+++ /dev/null
@@ -1,17 +0,0 @@
-@comment $FreeBSD$
-bin/easy_install
-bin/easy_install-%%PYVER%%
-%%PYTHON_SITELIBDIR%%/setuptools.pth
-@unexec if cmp -s %B/easy-install.pth %B/easy-install.pth.dist; then rm %B/easy-install.pth; fi
-%%PYTHON_SITELIBDIR%%/easy-install.pth.dist
-@exec if [ ! -f %B/easy-install.pth ]; then cp %B/%f %B/easy-install.pth; fi
-%%PYTHON_SITELIBDIR%%/site.py
-%%PYTHON_SITELIBDIR%%/site.pyc
-%%PYTHON_SITELIBDIR%%/site.pyo
-%%PYTHON_SITELIBDIR%%/setuptools-%%VERSION%%-py%%PYVER%%.egg
-%%PORTDOCS%%%%DOCSDIR%%/EasyInstall.txt
-%%PORTDOCS%%%%DOCSDIR%%/README.txt
-%%PORTDOCS%%%%DOCSDIR%%/api_tests.txt
-%%PORTDOCS%%%%DOCSDIR%%/pkg_resources.txt
-%%PORTDOCS%%%%DOCSDIR%%/setuptools.txt
-%%PORTDOCS%%@dirrm %%DOCSDIR%%