dg to todoist-python-8.0.0.ebuild

This commit is contained in:
Andreas Billmeier 2019-11-24 18:37:22 +01:00
parent ce1f91dd5d
commit be92ef30e9
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 35 additions and 1 deletions

View File

@ -1,5 +1,5 @@
2019-11 23 (reverse added today)
* add tikteck-0.4
* add tikteck-0.4, dg to todoist-python-8.0.0
* add pytfiac-0.4, tellsticknet-0.1.2, pythinkingcleaner-0.0.3
* add tensorflow-1.13.2.ebuild, tensorflow-2.0.0.ebuild
* add tellcore-net-0.4, tellcore-py-1.1.3, temperusb-1.5.3

View File

@ -1,3 +1,5 @@
DIST 8.0.0.tar.gz 23176 BLAKE2B fb1a1ee41437da5067c675994188f0e5484072f5dda6763df3e069f9941b63e638eee51354c3b02aec448a026d5d747fe0d0d37a46b55bc5525d38888805737c SHA512 77103896682276f4deaaef7d9269932a8ca124d543b21376d3447f7f76c4277137757497f3f34de2759496931974659ab57a10a96863a9d3afcd3e373ad3ee65
DIST 8.0.2.tar.gz 23187 BLAKE2B 7d5897b8ff3d07754473c8bf95482fb83bf412b76a55d45598e99634d9a6f491ab1c1b0d335a2ecffe91e749cb691a8b807390314091cb0cb9646327d9ff58fd SHA512 d1944e931e5e2e50061ac1b1e345c75afabbd3788ddfe2467c3302cb83532785d6c626c2c446c105a15b1d62e249759dfe79e8af85bc1b54c183c0b1b67d44a7
EBUILD todoist-python-8.0.0.ebuild 692 BLAKE2B aeec1c4795af6d8396c130c0708001d9bf3e25e515b88d239708a4802d708b5664d53ff7d2dd032bb8c2575cf89cf1a123616832b0cb6f5153b1c96dfd66ac37 SHA512 696df86f382b0672d11fda4b6ba02f7e087ea4517491263b7a31bad4a05310968ca0ed408f3cd62e32295d76d309faac977d52ed288d8f21d06ba281e5cf38d3
EBUILD todoist-python-8.0.2.ebuild 692 BLAKE2B aeec1c4795af6d8396c130c0708001d9bf3e25e515b88d239708a4802d708b5664d53ff7d2dd032bb8c2575cf89cf1a123616832b0cb6f5153b1c96dfd66ac37 SHA512 696df86f382b0672d11fda4b6ba02f7e087ea4517491263b7a31bad4a05310968ca0ed408f3cd62e32295d76d309faac977d52ed288d8f21d06ba281e5cf38d3
MISC metadata.xml 460 BLAKE2B b962e1cbb88728a4b5a2c9bebf332b7c3e8515643c198735f86781b6ab1048037f8c4eec4c01511983e5268abcba080cb3a2371b3f861ee7252e7147653bc310 SHA512 d37a8b903541d70c4f59aaf398291025c8b93954b3c3b7341b1908ec590f33b37d13053ca360f2bc7abb1f766e47e041cb69190fa0d121c758d16bd373486363

View 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_{5,6,7} )
inherit distutils-r1
MY_P=${PN/-/_}-${PV}
DESCRIPTION="todoist-python - The official Todoist Python API library"
HOMEPAGE=" https://pypi.org/project/todoist-python/"
SRC_URI="https://github.com/Doist/${PN}/archive/${PV}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
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
}