From bb61a5ad18d387fe9f00907dfff41dfadfeaedd5 Mon Sep 17 00:00:00 2001 From: "Liguros - Gitlab CI/CD [feature/flatten]" Date: Tue, 25 Aug 2020 00:30:15 +0000 Subject: Updating liguros repo --- .../configargparse/configargparse-1.2.3.ebuild | 6 +-- dev-python/consonance/consonance-0.1.3-r1.ebuild | 39 +++++++++++++++++++ dev-python/consonance/consonance-0.1.3.ebuild | 42 -------------------- dev-python/dissononce/dissononce-0.34.3-r1.ebuild | 35 +++++++++++++++++ dev-python/dissononce/dissononce-0.34.3.ebuild | 45 ---------------------- .../python-axolotl-curve25519-0.4.1_p2-r1.ebuild | 3 +- .../python-axolotl/python-axolotl-0.2.3-r1.ebuild | 26 +++++++++++++ .../python-axolotl/python-axolotl-0.2.3.ebuild | 28 -------------- .../python-sense-hat-2.2.0-r1.ebuild | 25 ------------ .../python-sense-hat-2.2.0-r2.ebuild | 25 ++++++++++++ dev-python/transitions/transitions-0.8.2-r1.ebuild | 43 +++++++++++++++++++++ dev-python/transitions/transitions-0.8.2.ebuild | 45 ---------------------- 12 files changed, 172 insertions(+), 190 deletions(-) create mode 100644 dev-python/consonance/consonance-0.1.3-r1.ebuild delete mode 100644 dev-python/consonance/consonance-0.1.3.ebuild create mode 100644 dev-python/dissononce/dissononce-0.34.3-r1.ebuild delete mode 100644 dev-python/dissononce/dissononce-0.34.3.ebuild create mode 100644 dev-python/python-axolotl/python-axolotl-0.2.3-r1.ebuild delete mode 100644 dev-python/python-axolotl/python-axolotl-0.2.3.ebuild delete mode 100644 dev-python/python-sense-hat/python-sense-hat-2.2.0-r1.ebuild create mode 100644 dev-python/python-sense-hat/python-sense-hat-2.2.0-r2.ebuild create mode 100644 dev-python/transitions/transitions-0.8.2-r1.ebuild delete mode 100644 dev-python/transitions/transitions-0.8.2.ebuild (limited to 'dev-python') diff --git a/dev-python/configargparse/configargparse-1.2.3.ebuild b/dev-python/configargparse/configargparse-1.2.3.ebuild index 332ac58b7ed8..44974f68d724 100644 --- a/dev-python/configargparse/configargparse-1.2.3.ebuild +++ b/dev-python/configargparse/configargparse-1.2.3.ebuild @@ -13,7 +13,6 @@ inherit distutils-r1 DESCRIPTION="Drop-in replacement for argparse supporting config files and env variables" HOMEPAGE="https://github.com/bw2/ConfigArgParse https://pypi.org/project/ConfigArgParse/" SRC_URI="https://github.com/bw2/ConfigArgParse/archive/${PV}.tar.gz -> ${MY_P}.gh.tar.gz" -S="${WORKDIR}/${MY_P}" LICENSE="MIT" SLOT="0" @@ -21,8 +20,9 @@ KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86" IUSE="test" RESTRICT="!test? ( test )" -BDEPEND=" - test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )" +BDEPEND="test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )" + +S="${WORKDIR}/${MY_P}" python_test() { local -x COLUMNS=80 diff --git a/dev-python/consonance/consonance-0.1.3-r1.ebuild b/dev-python/consonance/consonance-0.1.3-r1.ebuild new file mode 100644 index 000000000000..1d6420425b85 --- /dev/null +++ b/dev-python/consonance/consonance-0.1.3-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS="bdepend" +PYTHON_COMPAT=( python3_{5,6,7,8,9} ) + +inherit distutils-r1 + +DESCRIPTION="WhatsApp's handshake implementation using Noise Protocol" +HOMEPAGE="https://github.com/tgalal/consonance" +SRC_URI="https://github.com/tgalal/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="examples" + +# Tests require an active internet connection +RESTRICT="test" + +RDEPEND=" + dev-python/cryptography[${PYTHON_USEDEP}] + dev-python/dissononce[${PYTHON_USEDEP}] + dev-python/protobuf-python[${PYTHON_USEDEP}] + dev-python/python-axolotl-curve25519[${PYTHON_USEDEP}] + dev-python/transitions[${PYTHON_USEDEP}] +" + +DEPEND="${RDEPEND}" + +distutils_enable_tests pytest + +src_install() { + distutils-r1_src_install + + use examples && dodoc examples/*.py +} diff --git a/dev-python/consonance/consonance-0.1.3.ebuild b/dev-python/consonance/consonance-0.1.3.ebuild deleted file mode 100644 index 9e3c607eb91e..000000000000 --- a/dev-python/consonance/consonance-0.1.3.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{5,6,7,8,9} ) - -inherit distutils-r1 - -DESCRIPTION="WhatsApp's handshake implementation using Noise Protocol" -HOMEPAGE="https://github.com/tgalal/consonance" -SRC_URI="https://github.com/tgalal/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="examples" - -# Tests require an active internet connection -RESTRICT="test" - -RDEPEND=" - dev-python/cryptography[${PYTHON_USEDEP}] - dev-python/dissononce[${PYTHON_USEDEP}] - dev-python/protobuf-python[${PYTHON_USEDEP}] - dev-python/python-axolotl-curve25519[${PYTHON_USEDEP}] - dev-python/transitions[${PYTHON_USEDEP}] -" - -DEPEND="${RDEPEND}" - -BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - -python_test() { - esetup.py test -} - -src_install() { - distutils-r1_src_install - - use examples && dodoc examples/*.py -} diff --git a/dev-python/dissononce/dissononce-0.34.3-r1.ebuild b/dev-python/dissononce/dissononce-0.34.3-r1.ebuild new file mode 100644 index 000000000000..40e73b1dacfc --- /dev/null +++ b/dev-python/dissononce/dissononce-0.34.3-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS="bdepend" +PYTHON_COMPAT=( python3_{5,6,7,8,9} ) + +inherit distutils-r1 + +DESCRIPTION="A python implementation for Noise Protocol Framework" +HOMEPAGE="https://github.com/tgalal/dissononce" +SRC_URI="https://github.com/tgalal/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="examples test" + +RDEPEND=" + dev-python/cryptography[${PYTHON_USEDEP}] + dev-python/transitions[${PYTHON_USEDEP}] +" + +DEPEND="${RDEPEND}" + +PATCHES=( "${FILESDIR}/${P}-fix-test-requirements.patch" ) + +distutils_enable_tests pytest + +src_install() { + distutils-r1_src_install + + use examples && dodoc examples/patterns/*.py +} diff --git a/dev-python/dissononce/dissononce-0.34.3.ebuild b/dev-python/dissononce/dissononce-0.34.3.ebuild deleted file mode 100644 index 3df651aa70e6..000000000000 --- a/dev-python/dissononce/dissononce-0.34.3.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{5,6,7,8,9} ) - -inherit distutils-r1 - -DESCRIPTION="A python implementation for Noise Protocol Framework" -HOMEPAGE="https://github.com/tgalal/dissononce" -SRC_URI="https://github.com/tgalal/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="examples test" - -# Currently no tests are available, -# they will be added in future by upstream. -RESTRICT="test" - -RDEPEND=" - dev-python/cryptography[${PYTHON_USEDEP}] - dev-python/transitions[${PYTHON_USEDEP}] -" - -DEPEND=" - ${RDEPEND} - test? ( dev-python/pytest[${PYTHON_USEDEP}] ) -" - -BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - -PATCHES=( "${FILESDIR}/${P}-fix-test-requirements.patch" ) - -python_test() { - esetup.py test -} - -src_install() { - distutils-r1_src_install - - use examples && dodoc examples/patterns/*.py -} diff --git a/dev-python/python-axolotl-curve25519/python-axolotl-curve25519-0.4.1_p2-r1.ebuild b/dev-python/python-axolotl-curve25519/python-axolotl-curve25519-0.4.1_p2-r1.ebuild index 706fbda0600a..c8869f219b32 100644 --- a/dev-python/python-axolotl-curve25519/python-axolotl-curve25519-0.4.1_p2-r1.ebuild +++ b/dev-python/python-axolotl-curve25519/python-axolotl-curve25519-0.4.1_p2-r1.ebuild @@ -3,6 +3,7 @@ EAPI=7 +DISTUTILS_USE_SETUPTOOLS="bdepend" PYTHON_COMPAT=( python3_{5,6,7,8,9} ) inherit distutils-r1 @@ -17,6 +18,4 @@ LICENSE="BSD GPL-3" SLOT="0" KEYWORDS="amd64 x86" -BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - S="${WORKDIR}/${PN}-${MY_PV}" diff --git a/dev-python/python-axolotl/python-axolotl-0.2.3-r1.ebuild b/dev-python/python-axolotl/python-axolotl-0.2.3-r1.ebuild new file mode 100644 index 000000000000..ddc0ff136947 --- /dev/null +++ b/dev-python/python-axolotl/python-axolotl-0.2.3-r1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS="bdepend" +PYTHON_COMPAT=( python3_{5,6,7,8,9} ) + +inherit distutils-r1 + +DESCRIPTION="A python module for the axolotl protocol" +HOMEPAGE="https://github.com/tgalal/python-axolotl" +SRC_URI="https://github.com/tgalal/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="amd64 x86" + +RDEPEND=" + dev-python/cryptography[${PYTHON_USEDEP}] + dev-python/protobuf-python[${PYTHON_USEDEP}] + dev-python/python-axolotl-curve25519[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND}" + +distutils_enable_tests pytest diff --git a/dev-python/python-axolotl/python-axolotl-0.2.3.ebuild b/dev-python/python-axolotl/python-axolotl-0.2.3.ebuild deleted file mode 100644 index c29a3f9906b7..000000000000 --- a/dev-python/python-axolotl/python-axolotl-0.2.3.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{5,6,7,8,9} ) - -inherit distutils-r1 - -DESCRIPTION="A python module for the axolotl protocol" -HOMEPAGE="https://github.com/tgalal/python-axolotl" -SRC_URI="https://github.com/tgalal/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 x86" - -RDEPEND=" - dev-python/cryptography[${PYTHON_USEDEP}] - dev-python/protobuf-python[${PYTHON_USEDEP}] - dev-python/python-axolotl-curve25519[${PYTHON_USEDEP}] -" -DEPEND="${RDEPEND}" -BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - -python_test() { - esetup.py test -} diff --git a/dev-python/python-sense-hat/python-sense-hat-2.2.0-r1.ebuild b/dev-python/python-sense-hat/python-sense-hat-2.2.0-r1.ebuild deleted file mode 100644 index bf4ad2db2df1..000000000000 --- a/dev-python/python-sense-hat/python-sense-hat-2.2.0-r1.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{5,6,7,8,9} ) - -inherit distutils-r1 - -DESCRIPTION="Raspberry Pi Sense HAT python library" -HOMEPAGE="https://github.com/RPi-Distro/python-sense-hat" -SRC_URI="https://github.com/RPi-Distro/python-sense-hat/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="arm arm64" - -RDEPEND=" - dev-python/numpy[${PYTHON_USEDEP}] - dev-python/pillow[${PYTHON_USEDEP}] - dev-python/rtimulib[${PYTHON_USEDEP}] -" - -DEPEND="${RDEPEND}" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" diff --git a/dev-python/python-sense-hat/python-sense-hat-2.2.0-r2.ebuild b/dev-python/python-sense-hat/python-sense-hat-2.2.0-r2.ebuild new file mode 100644 index 000000000000..85d9944ae4dd --- /dev/null +++ b/dev-python/python-sense-hat/python-sense-hat-2.2.0-r2.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS="bdepend" +PYTHON_COMPAT=( python3_{5,6,7,8,9} ) + +inherit distutils-r1 + +DESCRIPTION="Raspberry Pi Sense HAT python library" +HOMEPAGE="https://github.com/RPi-Distro/python-sense-hat" +SRC_URI="https://github.com/RPi-Distro/python-sense-hat/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="arm arm64" + +RDEPEND=" + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/pillow[${PYTHON_USEDEP}] + dev-python/rtimulib[${PYTHON_USEDEP}] +" + +DEPEND="${RDEPEND}" diff --git a/dev-python/transitions/transitions-0.8.2-r1.ebuild b/dev-python/transitions/transitions-0.8.2-r1.ebuild new file mode 100644 index 000000000000..186042544662 --- /dev/null +++ b/dev-python/transitions/transitions-0.8.2-r1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS="bdepend" +PYTHON_COMPAT=( python3_{5,6,7,8,9} ) + +inherit distutils-r1 + +DESCRIPTION="A lightweight, object-oriented state machine implementation in Python" +HOMEPAGE="https://github.com/pytransitions/transitions" +SRC_URI="https://github.com/pytransitions/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="examples test" + +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-python/graphviz[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] +" + +DEPEND=" + ${RDEPEND} + test? ( + dev-python/dill[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pycodestyle[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +src_install() { + distutils-r1_src_install + + use examples && dodoc examples/*.ipynb +} diff --git a/dev-python/transitions/transitions-0.8.2.ebuild b/dev-python/transitions/transitions-0.8.2.ebuild deleted file mode 100644 index c22d1ea5dc1a..000000000000 --- a/dev-python/transitions/transitions-0.8.2.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{5,6,7,8,9} ) - -inherit distutils-r1 - -DESCRIPTION="A lightweight, object-oriented state machine implementation in Python" -HOMEPAGE="https://github.com/pytransitions/transitions" -SRC_URI="https://github.com/pytransitions/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="examples test" - -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-python/graphviz[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] -" - -DEPEND=" - ${RDEPEND} - test? ( - dev-python/dill[${PYTHON_USEDEP}] - dev-python/mock[${PYTHON_USEDEP}] - dev-python/nose[${PYTHON_USEDEP}] - dev-python/pycodestyle[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - ) -" - -BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - -distutils_enable_tests pytest - -src_install() { - distutils-r1_src_install - - use examples && dodoc examples/*.ipynb -} -- cgit v1.3.1