diff options
| author | Palica <palica+gitlab@liguros.net> | 2020-06-23 22:35:08 +0200 |
|---|---|---|
| committer | Palica <palica+gitlab@liguros.net> | 2020-06-23 22:35:08 +0200 |
| commit | ecdac123787b96ce6649f0f91da12ea6458cc2b1 (patch) | |
| tree | b89c74d9e6fe6e8aebc4c77bcbeb4ab73214127d /dev-python/wstools | |
| parent | 1be72aa41cf41dedadeecf59dca9f01de6381f5e (diff) | |
| download | baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.tar.gz baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.tar.xz baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.zip | |
Updating liguros repo
Diffstat (limited to 'dev-python/wstools')
| -rw-r--r-- | dev-python/wstools/Manifest | 2 | ||||
| -rw-r--r-- | dev-python/wstools/files/wstools-0.4.5-setup.patch | 46 | ||||
| -rw-r--r-- | dev-python/wstools/files/wstools-0.4.8-setup.patch | 25 | ||||
| -rw-r--r-- | dev-python/wstools/metadata.xml | 14 | ||||
| -rw-r--r-- | dev-python/wstools/wstools-0.4.5-r1.ebuild | 35 | ||||
| -rw-r--r-- | dev-python/wstools/wstools-0.4.8.ebuild | 31 |
6 files changed, 153 insertions, 0 deletions
diff --git a/dev-python/wstools/Manifest b/dev-python/wstools/Manifest new file mode 100644 index 000000000000..57722218cc9b --- /dev/null +++ b/dev-python/wstools/Manifest @@ -0,0 +1,2 @@ +DIST wstools-0.4.5.tar.gz 201047 BLAKE2B 34c8d2c52ce9d1d67749ef6d0e1d5684a60718ef613688466d0992306f446b153d681b802fb142d1594bccaf37390495fb59e765f662e7550432d8866e038110 SHA512 24779bc2c2f3e32a515bc5690038e3f8e487fd45c1b7822d587e1bfd0bda660b837e3d5cbf8248459e06d7606e6d1c404dcee4de35b1f0d353bd5213e197d83a +DIST wstools-0.4.8.tar.gz 199688 BLAKE2B 3b5137dd135ec8f0e6d69f94275d45367e609adb9763624fcabb899f84c6215c2df26485dcf32d44d6683bd97cd00e2d283cf9096b6f58414f2eacd9e8b93a4a SHA512 0f86e91a2de7333aaf5a58558a715edd6a0cf97150f6d0cae4ecf8e0702648a98e610aa6d3295444079bd616656efcb2823ae7c02c5c3ffcb4789548ac40cd0a diff --git a/dev-python/wstools/files/wstools-0.4.5-setup.patch b/dev-python/wstools/files/wstools-0.4.5-setup.patch new file mode 100644 index 000000000000..9de7c159c972 --- /dev/null +++ b/dev-python/wstools/files/wstools-0.4.5-setup.patch @@ -0,0 +1,46 @@ +Avoid pulling in a lot of unnecessary test and setup deps. + +--- wstools-0.4.5/setup.py ++++ wstools-0.4.5/setup.py +@@ -9,7 +9,7 @@ + + from setuptools import setup, find_packages, Command + from setuptools.command.test import test as TestCommand +-from pip.req import parse_requirements ++#from pip.req import parse_requirements + + NAME = "wstools" + url = "https://github.com/pycontribs/wstools.git" +@@ -55,13 +55,13 @@ + + def run_tests(self): + # before running tests we need to run autopep8 +- try: +- subprocess.check_call( +- "python -m autopep8 -r --in-place wstools/ tests/", +- shell=True) +- except subprocess.CalledProcessError: +- logging.getLogger().warn('autopep8 is not installed so ' +- 'it will not be run') ++ # try: ++ # subprocess.check_call( ++ # "python -m autopep8 -r --in-place wstools/ tests/", ++ # shell=True) ++ # except subprocess.CalledProcessError: ++ # logging.getLogger().warn('autopep8 is not installed so ' ++ # 'it will not be run') + # import here, cause outside the eggs aren't loaded + import pytest # noqa + errno = pytest.main(self.pytest_args) +@@ -136,9 +136,9 @@ + cmdclass={'test': PyTest, 'release': Release, 'prerelease': PreRelease}, + packages=find_packages(exclude=['tests']), + include_package_data=True, +- tests_require=get_requirements(base_path, 'requirements-dev.txt'), ++ #tests_require=get_requirements(base_path, 'requirements-dev.txt'), + setup_requires=['setuptools'], +- install_requires=get_requirements(base_path, 'requirements.txt'), ++ install_requires=['six'], + + license='BSD', + description="WSDL parsing services package for Web Services for Python. see" + url, diff --git a/dev-python/wstools/files/wstools-0.4.8-setup.patch b/dev-python/wstools/files/wstools-0.4.8-setup.patch new file mode 100644 index 000000000000..3d8c168037a8 --- /dev/null +++ b/dev-python/wstools/files/wstools-0.4.8-setup.patch @@ -0,0 +1,25 @@ +From eb57ef5ad6abeaf8d9daf4914f95bcd86670340a Mon Sep 17 00:00:00 2001 +From: Sebastian Pipping <sebastian@pipping.org> +Date: Mon, 6 Apr 2020 13:00:31 +0200 +Subject: [PATCH] Drop dependency on pytest-runner + +--- + setup.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/setup.py b/setup.py +index d9887a8..8a63a13 100644 +--- a/setup.py ++++ b/setup.py +@@ -29,7 +29,7 @@ class PyTest(TestCommand): + + + setuptools.setup( +- setup_requires=['pbr>=1.10', 'setuptools>=17.1', 'pytest-runner'], ++ setup_requires=['pbr>=1.10', 'setuptools>=17.1'], + pbr=True, + cmdclass={'test': PyTest}, + test_suite='tests') +-- +2.24.1 + diff --git a/dev-python/wstools/metadata.xml b/dev-python/wstools/metadata.xml new file mode 100644 index 000000000000..40c983a85939 --- /dev/null +++ b/dev-python/wstools/metadata.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>python@gentoo.org</email> + <name>Python</name> + </maintainer> + <stabilize-allarches/> + <upstream> + <remote-id type="pypi">wstools</remote-id> + <remote-id type="github">pycontribs/wstools</remote-id> + </upstream> + <origin>gentoo-staging</origin> +</pkgmetadata> diff --git a/dev-python/wstools/wstools-0.4.5-r1.ebuild b/dev-python/wstools/wstools-0.4.5-r1.ebuild new file mode 100644 index 000000000000..8774c5f79d31 --- /dev/null +++ b/dev-python/wstools/wstools-0.4.5-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_6,3_7} ) +PYTHON_REQ_USE="xml(+)" + +inherit distutils-r1 + +DESCRIPTION="WSDL parsing services package for Web Services for Python" +HOMEPAGE="https://github.com/kiorky/wstools https://pypi.org/project/wstools/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-python/six[${PYTHON_USEDEP}] +" +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + ${RDEPEND} + dev-python/pytest[${PYTHON_USEDEP}] + )" + +PATCHES=( "${FILESDIR}"/${P}-setup.patch ) + +python_test() { + esetup.py test +} diff --git a/dev-python/wstools/wstools-0.4.8.ebuild b/dev-python/wstools/wstools-0.4.8.ebuild new file mode 100644 index 000000000000..857203dfd07d --- /dev/null +++ b/dev-python/wstools/wstools-0.4.8.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python{2_7,3_{6,7,8}} ) +PYTHON_REQ_USE="xml(+)" + +inherit distutils-r1 + +DESCRIPTION="WSDL parsing services package for Web Services for Python" +HOMEPAGE="https://github.com/pycontribs/wstools https://pypi.org/project/wstools/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-python/six[${PYTHON_USEDEP}] +" +DEPEND=" + ${RDEPEND} + dev-python/pbr[${PYTHON_USEDEP}] +" + +PATCHES=( "${FILESDIR}"/${PN}-0.4.8-setup.patch ) + +distutils_enable_tests pytest |
