diff options
author | A. Wilcox <awilcox@wilcox-tech.com> | 2018-06-03 23:38:22 +0000 |
---|---|---|
committer | A. Wilcox <awilcox@wilcox-tech.com> | 2018-06-03 23:38:22 +0000 |
commit | 824584f136206c13732db9958beed4c6918e0ce1 (patch) | |
tree | 8a93a45848c063391ad95351e3538430cdbc0155 /user/py3-setuptools | |
parent | c201ddecae188890079cac20a53232c7f361e393 (diff) | |
parent | f7e0c638da74c1b7fb54bb850b36991898cb3c89 (diff) | |
download | packages-824584f136206c13732db9958beed4c6918e0ce1.tar.gz packages-824584f136206c13732db9958beed4c6918e0ce1.tar.bz2 packages-824584f136206c13732db9958beed4c6918e0ce1.tar.xz packages-824584f136206c13732db9958beed4c6918e0ce1.zip |
Merge branch 'python-updates' into 'master'
Various python package updates
See merge request !36
Diffstat (limited to 'user/py3-setuptools')
-rw-r--r-- | user/py3-setuptools/APKBUILD | 17 | ||||
-rw-r--r-- | user/py3-setuptools/pythonpath.patch | 19 |
2 files changed, 18 insertions, 18 deletions
diff --git a/user/py3-setuptools/APKBUILD b/user/py3-setuptools/APKBUILD index ba5e1aebf..6bee60420 100644 --- a/user/py3-setuptools/APKBUILD +++ b/user/py3-setuptools/APKBUILD @@ -2,19 +2,18 @@ # Maintainer: Max Rees <maxcrees@me.com> pkgname=py3-setuptools _pkgname=setuptools -pkgver=38.4.0 -pkgrel=1 +pkgver=39.1.0 +pkgrel=0 pkgdesc="A collection of enhancements to the Python distutils" -url="http://pypi.python.org/pypi/setuptools" +url="http://pypi.python.org/project/setuptools" arch="noarch" license="MIT" depends="python3" makedepends="python3-dev" -#checkdepends="py3-tox" -options="!check" # Circular dependency with py3-tox. Passes on x86_64 +checkdepends="py3-tox" +options="net" # Circular dependency with py3-tox. Passes on x86_64 subpackages="py3-easy_install:easy_install" -# Note: PyPI download is missing tests/requirements.txt -source="$pkgname-$pkgver.tar.gz::https://github.com/pypa/$_pkgname/archive/v$pkgver.tar.gz +source="$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz pythonpath.patch" builddir="$srcdir/$_pkgname-$pkgver" @@ -41,5 +40,5 @@ easy_install() { mv "$pkgdir"/usr/bin/easy_install* "$subpkgdir/usr/bin" } -sha512sums="81903ee7ecb19715bbafe7b4e6878d3af5f801a9ff3334e82a599a81a8e6430443c4b765180c53c3c9cdcea338b3fff0bdf26245bc9d2da7d5d41b745de73a24 py3-setuptools-38.4.0.tar.gz -0c80433534dbb715829f48713690a72a68f6cb7e337215c9aa507df0fbb2a2a242f54d42fab848c6f03729f155dfe0ccb819a6f5d5230e2195e94e20094eec0b pythonpath.patch" +sha512sums="9fa00930a1923782c2f6356bf992410d42b3dd81b5a673e2957eaf8941787fbea324851c5df48e37601641d004ee900c88a1cfa97ef9df374879586a36efa5c6 py3-setuptools-39.1.0.tar.gz +ee248df4174240e90a35190e0a47bf0fa4cc5601adc64eff5fd585c8919e47c3a2bb6191b8333800016567d8a0f0f71b7c2306779ea7e4ab7c8951bdee28ef5e pythonpath.patch" diff --git a/user/py3-setuptools/pythonpath.patch b/user/py3-setuptools/pythonpath.patch index 371804f55..d9d78a861 100644 --- a/user/py3-setuptools/pythonpath.patch +++ b/user/py3-setuptools/pythonpath.patch @@ -1,10 +1,11 @@ ---- setuptools-38.4.0/tox.ini 2018-01-05 13:17:02.000000000 +0000 -+++ setuptools-38.4.0/tox.ini 2018-01-11 01:50:05.810000000 +0000 -@@ -6,6 +6,6 @@ - - [testenv] - deps=-rtests/requirements.txt --passenv=APPDATA USERPROFILE HOMEDRIVE HOMEPATH windir APPVEYOR -+passenv=APPDATA USERPROFILE HOMEDRIVE HOMEPATH windir APPVEYOR PYTHONPATH - commands=py.test {posargs} +--- setuptools-39.1.0/tox.ini 2018-04-28 07:07:00.000000000 -0400 ++++ setuptools-39.1.0/tox.ini 2018-05-22 00:25:02.969163171 -0400 +@@ -12,7 +12,7 @@ + setenv=COVERAGE_FILE={toxworkdir}/.coverage.{envname} + # TODO: The passed environment variables came from copying other tox.ini files + # These should probably be individually annotated to explain what needs them. +-passenv=APPDATA HOMEDRIVE HOMEPATH windir APPVEYOR APPVEYOR_* CI CODECOV_* TRAVIS TRAVIS_* ++passenv=APPDATA HOMEDRIVE HOMEPATH windir APPVEYOR APPVEYOR_* CI CODECOV_* TRAVIS TRAVIS_* PYTHONPATH + commands=pytest --cov-config={toxinidir}/tox.ini --cov-report= {posargs} usedevelop=True + |