add pymsteams-0.1.12

This commit is contained in:
Andreas Billmeier 2019-11-23 15:23:45 +01:00
parent 93a6248a23
commit e3e9c26d73
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -1,5 +1,6 @@
2019-11-22 (reverse added today)
*
* add pymsteams-0.1.12
* add python-mpd2-1.0.0
* add motorparts-1.1.0
* add pymonoprice-0.3

View File

@ -0,0 +1,3 @@
DIST pymsteams-0.1.12.tar.gz 6452 BLAKE2B 9fe9d0dbd12f64eddddc9f9851b7500e3cc2de8c735c4a47fb5b725f69d7cb0d47ab5688d53716a6b353240238bda84d305b13de4504d3ae71f44281ed94a687 SHA512 aeb06b6788cbf3f45f249cdbfe5ddbb00ae2d2798c0ba8f93bb0402d46171314832423acec3d26ca1c1a5216197a8cdc5cb3eafd25872c6b462a802b6fbd0ec0
EBUILD pymsteams-0.1.12.ebuild 730 BLAKE2B 7b78e9b691796742dd3368cc7c7bbe1b7693165d398c7d0f4b8f22f8dc970aceaf35612703df30d147235384f0e857115c5713725b7310abc22012668642e4ff SHA512 a1c1c1df336b8e7b70c678883c16d583c4a24b7a9f8c9590248d7ea95aa56c88bd89b88a5f8d564ba767f70540d6b553c13f450e06b7631459104ab26caec67c
MISC metadata.xml 455 BLAKE2B a35ea27cdf210661d7d9f58b440ec29d6a42236053e8d0a1d035c7fbc7bd3184874f676080ffc5e36753f941174b2f6609a857efe038a796e89da2c71c15f9c9 SHA512 a481e1532024e208da50e0616d3170aef2499bd8d2a28f2eb085e90b690ea11b0473106f90f48a7a20681fc8adfb5b6d896f3db781b7f36ac5f3c3f56e6888fb

View 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">pymsteams</remote-id>
<maintainer status="unknown">
<email>rveach@gmail.com</email>
<name>Ryan Veach</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -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="Format messages and post to Microsoft Teams."
HOMEPAGE="https://github.com/rveachkc/pymsteams https://pypi.org/project/pymsteams/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/requests-2.20.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
}