diff --git a/CHANGELOG.txt b/CHANGELOG.txt index c7931fec7..1fde671d2 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -78,6 +78,7 @@ * python-family-hub-local-0.0.2 * add fastdotcom-0.0.3 * add fints-2.2.0, mt_940-4.19.0, sepaxml-2.2.0 + * add fixerio-1.0.0_alpha0 & fixerio-0.1.1 2019-11-21 homeassistant-0.102.0 * bump homeassistant-0.102.0 diff --git a/dev-python/fixerio/Manifest b/dev-python/fixerio/Manifest new file mode 100644 index 000000000..0b8772aeb --- /dev/null +++ b/dev-python/fixerio/Manifest @@ -0,0 +1,5 @@ +DIST fixerio-0.1.1.tar.gz 16063 BLAKE2B 904799297a8fdfbae18cd4151464602e0b23f2cef626733ee77e99ba6cd99471c1b482648912967af02bcc574d59321efe755bb0ada4456f7559bb33671431b7 SHA512 e3babf41020adf1375d3b8532820714ab5464c33a175c273e2fed5177f77de42bc3c9f278732254d3d250a3a992311df0987a969b6606ea9d53428dffeafdf59 +DIST fixerio-1.0.0_alpha0.tar.gz 15616 BLAKE2B ab2b97e5b49c1c3aae89bd03105345072daf74c980b6f7e1c245edc13faa5a04c70c2cc55ec46778f634afb5e92e8973d5f9afbfd5c1a2fbf81153771a641d44 SHA512 0cb7c5e8bd75ee1f959efead7b8abf82007fcade2d5bef3f1671f3b5fd77d28f8909b3f350054964a7f19c38e5febf9380f645b9e3f91ff1acc536b5a8679a44 +EBUILD fixerio-0.1.1.ebuild 703 BLAKE2B 70220960187c33fe6fa1fbe6b13bdff4f86e90ae254ef3535f53f6d27759d944eca7521ad621470c9c1981268bed6b6f5ecfa872c4691333f58d135a17a8a24b SHA512 f4536f2269773c17adff97defa76952fa332f4a475bff91a7c49b3d20190a80fef71e0a5da32ba224f57dfda23d8aea4aa1e2e1e95ff2fe60f317cb3600f0582 +EBUILD fixerio-1.0.0_alpha0.ebuild 780 BLAKE2B e12a94c509c19cb4fef01802c2bc2a1c01d52d2b3e97f3ff03a7bbe6fc54eb70fa830f804ee44a84c61ff6e42c0f89d29ca2725a6641082d8d61b86bd3d146fc SHA512 8c0b2131a78f9084f16ae5ce98c478564bbeb8b73e6353649bf47a2c9916c06b59b5b7a937cd709887e773df61085db1976060f75dc73dcb0766776b5e1dc722 +MISC metadata.xml 470 BLAKE2B 667ec3724464b31fed7bd2d944a34a620f7ca6b1cf745d815cb80ec292b0ad3a935d4de4d1a5ad66f2a60266388007f5592f7aa6eaa794a50eec1d7183a790d3 SHA512 cb25eb862eba138b24829b3a361213019558565c4dfaf65d74dd4b2a071327985f1ca73a2a0a027f26d056e122beaa79ee081ba473ad9802c702f5402366e5b1 diff --git a/dev-python/fixerio/fixerio-0.1.1.ebuild b/dev-python/fixerio/fixerio-0.1.1.ebuild new file mode 100644 index 000000000..741ae9d9d --- /dev/null +++ b/dev-python/fixerio/fixerio-0.1.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{6,7} ) + +inherit distutils-r1 + +DESCRIPTION="A Python client for Fixer.io" +HOMEPAGE="https://github.com/amatellanes/fixerio https://pypi.org/project/fixerio/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND=">=dev-python/requests-2.0[${PYTHON_USEDEP}]" +DEPEND="${REDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_test() { + nosetests --verbose || die + py.test -v -v || die +} diff --git a/dev-python/fixerio/fixerio-1.0.0_alpha0.ebuild b/dev-python/fixerio/fixerio-1.0.0_alpha0.ebuild new file mode 100644 index 000000000..99f64d323 --- /dev/null +++ b/dev-python/fixerio/fixerio-1.0.0_alpha0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{6,7} ) + +inherit distutils-r1 + +MY_PV=${PV/_alpha/a} +DESCRIPTION="A Python client for Fixer.io" +HOMEPAGE="https://github.com/amatellanes/fixerio https://pypi.org/project/fixerio/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${PN}-${MY_PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND=">=dev-python/requests-2.0[${PYTHON_USEDEP}]" +DEPEND="${REDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + )" + +S="${WORKDIR}/${PN}-${MY_PV}" + +python_test() { + nosetests --verbose || die + py.test -v -v || die +} diff --git a/dev-python/fixerio/metadata.xml b/dev-python/fixerio/metadata.xml new file mode 100644 index 000000000..7cfc85ee2 --- /dev/null +++ b/dev-python/fixerio/metadata.xml @@ -0,0 +1,16 @@ + + + + + b@edevau.net + Andreas Billmeier + + python + + fixerio + + matellanesadrian@gmail.com + Adrian Matellanes + + +