add datapoint
This commit is contained in:
parent
64e4de6399
commit
665b0786e8
@ -1,5 +1,6 @@
|
||||
2019-11-22 (reverse added today)
|
||||
*
|
||||
* add datapoint-0.9.5 and datapoint-0.4.3
|
||||
* add messagebird-1.5.0
|
||||
* add py-melissa-climate-2.1.3
|
||||
* add matrix-client-0.3.2 and matrix-client-0.2.0
|
||||
|
||||
5
dev-python/datapoint/Manifest
Normal file
5
dev-python/datapoint/Manifest
Normal file
@ -0,0 +1,5 @@
|
||||
DIST datapoint-0.4.3.tar.gz 6138 BLAKE2B d06647f0167b0afa86361b6bcc3a448b4b1d0ef8eb959ff82c533675a237c2cf44d916d9a13a7ed15c6d170ab8232a4f0b6a284ad6323b8af48104349462e9b7 SHA512 1e55ad82eb72220a2719ec56569061aa61c40d4b75f1d06313fe5986750ff45dcc91f937467e3a5a502a769f72ef9f1744a78d0a7c4c74a7c9b86d6019a2a964
|
||||
DIST datapoint-0.9.5.tar.gz 29442 BLAKE2B d6222f24172536aaef3e1dd4631b0f66fecbc8a3aa717476ac8bde182e5239d6ce20fe14d4d9a21cf7d9e83325c6f2faa65e30d57697262ad5b6b77f03000826 SHA512 0f96ae1a77ee4bcf521c40e2f334fa402192316458676a62340772777a197de0f06a4670994c4b3e6b84a0e52a83c1c5c1e6d7ac8cc3e76747581cb48c5bf53a
|
||||
EBUILD datapoint-0.4.3.ebuild 807 BLAKE2B 280fbbb49a3cc5adea61c8b3f9debabc06032a2f94771fc137bf23be6920c9609c0d48ae7982620bfc362307183cf332ed48f731801913c2101585931b250736 SHA512 ce33bd1056b3fabb772c9e2ccbe15ba57a59f40bb9e66b9a0568da82fcf471168f045055b6a2d2e285b13d1fb49ee096cf56f6d044d65305455b688f82f9d8f1
|
||||
EBUILD datapoint-0.9.5.ebuild 807 BLAKE2B 280fbbb49a3cc5adea61c8b3f9debabc06032a2f94771fc137bf23be6920c9609c0d48ae7982620bfc362307183cf332ed48f731801913c2101585931b250736 SHA512 ce33bd1056b3fabb772c9e2ccbe15ba57a59f40bb9e66b9a0568da82fcf471168f045055b6a2d2e285b13d1fb49ee096cf56f6d044d65305455b688f82f9d8f1
|
||||
MISC metadata.xml 464 BLAKE2B 9cca3f07ac44d6477192bc6a5b4d68fe716397c4039fedb7a3614938e0f77c5687c4069547d719a1d225c6e9f578e7dc0f97a148ab36eb8b1d558e3e296f9e42 SHA512 44d3ab2e017ea9de4aed110aca9559db8601715784729137715d90170bc5ae1d22a5d5f467ab67b734a32849f9755e2d1002cfa5278c101c1d1f7de49789f486
|
||||
32
dev-python/datapoint/datapoint-0.4.3.ebuild
Normal file
32
dev-python/datapoint/datapoint-0.4.3.ebuild
Normal file
@ -0,0 +1,32 @@
|
||||
# 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="Python interface to the Met Office's Datapoint API"
|
||||
HOMEPAGE="https://github.com/ejep/datapoint-python https://pypi.org/project/datapoint/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND="dev-python/pytz[${PYTHON_USEDEP}]
|
||||
>=dev-python/requests-2.20.0[${PYTHON_USEDEP}]
|
||||
dev-python/appdirs[${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
|
||||
}
|
||||
32
dev-python/datapoint/datapoint-0.9.5.ebuild
Normal file
32
dev-python/datapoint/datapoint-0.9.5.ebuild
Normal file
@ -0,0 +1,32 @@
|
||||
# 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="Python interface to the Met Office's Datapoint API"
|
||||
HOMEPAGE="https://github.com/ejep/datapoint-python https://pypi.org/project/datapoint/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND="dev-python/pytz[${PYTHON_USEDEP}]
|
||||
>=dev-python/requests-2.20.0[${PYTHON_USEDEP}]
|
||||
dev-python/appdirs[${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
|
||||
}
|
||||
16
dev-python/datapoint/metadata.xml
Normal file
16
dev-python/datapoint/metadata.xml
Normal file
@ -0,0 +1,16 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer>
|
||||
<email>b@edevau.net</email>
|
||||
<name>Andreas Billmeier</name>
|
||||
</maintainer>
|
||||
<herd>python</herd>
|
||||
<upstream>
|
||||
<remote-id type="pypi">datapoint</remote-id>
|
||||
<maintainer status="unknown">
|
||||
<email>emlyn.je.price@gmail.com</email>
|
||||
<name>Emlyn Price</name>
|
||||
</maintainer>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
Loading…
x
Reference in New Issue
Block a user