add add matrix-client-0.3.2 and matrix-client-0.2.0
This commit is contained in:
parent
ec236b10be
commit
fb9246df6a
@ -1,5 +1,6 @@
|
||||
2019-11-22 (reverse added today)
|
||||
*
|
||||
* add matrix-client-0.3.2 and matrix-client-0.2.0
|
||||
* add magicseaweed-1.0.3
|
||||
* add lyft_rides-0.2
|
||||
* add lw12-0.9.2
|
||||
|
5
dev-python/matrix-client/Manifest
Normal file
5
dev-python/matrix-client/Manifest
Normal file
@ -0,0 +1,5 @@
|
||||
DIST matrix-client-0.2.0.tar.gz 34867 BLAKE2B 32c0c849a027d7885291f53a47d815c062fff3b9131d9bb0149c385f53bc55ba943b2bef78fbc22ba471ca2fb30c638701c69660fbaa9ff3e3782da4405684dc SHA512 77c4ad477cd101164034e4e680a33830eef8533488606e11ae75761d1fcf850f03f9ed8ce8155aa25353f75e1730d9a57d7a2b5469d5188500b0f2c5f6e89f3b
|
||||
DIST matrix-client-0.3.2.tar.gz 38878 BLAKE2B f4d7f67119a881d4fcbd2907c7987c738c4596c42be183ef3034b54601c8bc312a7a113fdedbf99fca12ea55cd081f55768160296bcef735374f8c7638b495c7 SHA512 303d2e3a7e5847618393af7c9ae487436ffe7e376cda0b2af108743f99789836c5cb3d70a3a33ec7b609286c46f758d1d2c23245b8182b0e50ab5c7009e34855
|
||||
EBUILD matrix-client-0.2.0.ebuild 836 BLAKE2B a17f2bb187f0c3d01c11509216473e3a0c7fd350b607884eecc031603b52d080551f4d9aaede844e9282ab1f0708924396853943fa50f7f1ca5fdb5a851630a4 SHA512 c4c03b86807d53d0cacf2f56b9eb6ed9b13ca818c18db0b783a8746d04ebcf6982d9bbb7d76e4476c4a8340eaf0ec0db65e8efcb9aaa8239c7e94955773dc5a9
|
||||
EBUILD matrix-client-0.3.2.ebuild 836 BLAKE2B a17f2bb187f0c3d01c11509216473e3a0c7fd350b607884eecc031603b52d080551f4d9aaede844e9282ab1f0708924396853943fa50f7f1ca5fdb5a851630a4 SHA512 c4c03b86807d53d0cacf2f56b9eb6ed9b13ca818c18db0b783a8746d04ebcf6982d9bbb7d76e4476c4a8340eaf0ec0db65e8efcb9aaa8239c7e94955773dc5a9
|
||||
MISC metadata.xml 467 BLAKE2B 78523cd573e39420efd96fd25af8830b540151ae20be16134e751bf5e1ab6650fae24dd7a31f1a09fdb2b4681973bf7bdd523ea93509435b65ed34d247db4c9e SHA512 06618f9ce4945dcc9d77316c81589b9dedcde0a1e499ab1d74bf60cbf91ca10ac7532ae6a98ba9e2bd21b63285d681ba4e27e9c8f92deed1b8d06d7f7a5ce129
|
34
dev-python/matrix-client/matrix-client-0.2.0.ebuild
Normal file
34
dev-python/matrix-client/matrix-client-0.2.0.ebuild
Normal file
@ -0,0 +1,34 @@
|
||||
# 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_PN=${PN/-/_}
|
||||
DESCRIPTION="Client-Server SDK for Matrix"
|
||||
HOMEPAGE="https://github.com/matrix-org/matrix-python-sdk https://pypi.org/project/matrix-client/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND=">=dev-python/requests-2.22[${PYTHON_USEDEP}]
|
||||
dev-python/urllib3[${PYTHON_USEDEP}]"
|
||||
DEPEND="${REDEPEND}
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/nose[${PYTHON_USEDEP}]
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
S="${WORKDIR}/${MY_PN}-${PV}"
|
||||
|
||||
python_test() {
|
||||
nosetests --verbose || die
|
||||
py.test -v -v || die
|
||||
}
|
34
dev-python/matrix-client/matrix-client-0.3.2.ebuild
Normal file
34
dev-python/matrix-client/matrix-client-0.3.2.ebuild
Normal file
@ -0,0 +1,34 @@
|
||||
# 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_PN=${PN/-/_}
|
||||
DESCRIPTION="Client-Server SDK for Matrix"
|
||||
HOMEPAGE="https://github.com/matrix-org/matrix-python-sdk https://pypi.org/project/matrix-client/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND=">=dev-python/requests-2.22[${PYTHON_USEDEP}]
|
||||
dev-python/urllib3[${PYTHON_USEDEP}]"
|
||||
DEPEND="${REDEPEND}
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/nose[${PYTHON_USEDEP}]
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
S="${WORKDIR}/${MY_PN}-${PV}"
|
||||
|
||||
python_test() {
|
||||
nosetests --verbose || die
|
||||
py.test -v -v || die
|
||||
}
|
16
dev-python/matrix-client/metadata.xml
Normal file
16
dev-python/matrix-client/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">matrix-client</remote-id>
|
||||
<maintainer status="unknown">
|
||||
<email>team@matrix.org</email>
|
||||
<name>The Matrix.org Team</name>
|
||||
</maintainer>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
Loading…
x
Reference in New Issue
Block a user