diff options
author | 2014-08-15 05:48:55 +0000 | |
---|---|---|
committer | 2014-08-15 05:48:55 +0000 | |
commit | c88e66b49a2452aee52a0cdf9b04fbceeb34c966 (patch) | |
tree | a73dc26bcd671fd9ca7ed54c31dbe79edf8aba9e /dev-python/setuptools | |
parent | bump; add IUSE doc, doc build, update test phase (diff) | |
download | gentoo-2-c88e66b49a2452aee52a0cdf9b04fbceeb34c966.tar.gz gentoo-2-c88e66b49a2452aee52a0cdf9b04fbceeb34c966.tar.bz2 gentoo-2-c88e66b49a2452aee52a0cdf9b04fbceeb34c966.zip |
Version bump.
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'dev-python/setuptools')
-rw-r--r-- | dev-python/setuptools/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/setuptools/setuptools-5.6.ebuild | 42 |
2 files changed, 48 insertions, 1 deletions
diff --git a/dev-python/setuptools/ChangeLog b/dev-python/setuptools/ChangeLog index 916d4c00b2ae..74323c266f1d 100644 --- a/dev-python/setuptools/ChangeLog +++ b/dev-python/setuptools/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/setuptools # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/setuptools/ChangeLog,v 1.238 2014/08/01 11:31:47 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/setuptools/ChangeLog,v 1.239 2014/08/15 05:48:55 radhermit Exp $ + +*setuptools-5.6 (15 Aug 2014) + + 15 Aug 2014; Tim Harder <radhermit@gentoo.org> +setuptools-5.6.ebuild: + Version bump. 01 Aug 2014; Raúl Porcel <armin76@gentoo.org> setuptools-2.2.ebuild: sparc stable wrt #508416 diff --git a/dev-python/setuptools/setuptools-5.6.ebuild b/dev-python/setuptools/setuptools-5.6.ebuild new file mode 100644 index 000000000000..bb135cbf95d9 --- /dev/null +++ b/dev-python/setuptools/setuptools-5.6.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/setuptools/setuptools-5.6.ebuild,v 1.1 2014/08/15 05:48:55 radhermit Exp $ + +EAPI="5" +PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy ) + +inherit distutils-r1 + +DESCRIPTION="a collection of extensions to Distutils" +HOMEPAGE="http://pypi.python.org/pypi/setuptools" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="PSF-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="test" + +DEPEND="test? ( dev-python/pytest[${PYTHON_USEDEP}] )" + +# Force in-source build because build system modifies sources. +DISTUTILS_IN_SOURCE_BUILD=1 + +DOCS=( README.txt docs/{easy_install.txt,pkg_resources.txt,setuptools.txt} ) + +python_prepare_all() { + # Disable tests requiring network connection. + rm -f setuptools/tests/test_packageindex.py + + distutils-r1_python_prepare_all +} + +python_test() { + # test_easy_install raises a SandboxViolation due to ${HOME}/.pydistutils.cfg + # It tries to sandbox the test in a tempdir + HOME="${PWD}" esetup.py test +} + +python_install() { + export DISTRIBUTE_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT=1 + distutils-r1_python_install +} |