add titlecase-2.3

This commit is contained in:
Andreas Billmeier 2021-12-04 23:51:28 +01:00 committed by Andreas Billmeier
parent f1ca9364c5
commit 83f2109c2e
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST titlecase-2.3.tar.gz 13795 BLAKE2B ffa6f45f5d74f9ea936efbf859c8f39a8ac62785336755bdbd9d57eb27b50a19af62a1c1e0d6c6e39f1bb15ebfe08d289cd3662f29c418a72ac236e5402b98c4 SHA512 0175c332ef987ed02fe415ae8fad62701894c3494fa9f82cfd82f304cd47eb37e919ee7f24146e045faefe2d6364bf87f06bc58032a880a139ce877a0a9c0dfa
EBUILD titlecase-2.3.ebuild 702 BLAKE2B 781a33edf715eff8a612287991ef6878f4817a56b0bcd3400c41c51b69d36bf7cfc982afbd3852426741e15ea5b65d3644d479b52366dd7d28cf44ccd77a0de4 SHA512 81951406a2a9e2fc2153742ac3724e264c8a9dc9e7009d4ff473c44698cd9a0fce2596f77ffe4234dc05ef74a850671cd302cfc6f28e2a944ea34f94eb0a851f
MISC metadata.xml 464 BLAKE2B a31d1fea259de421e710f2eff981bfe743bc34b63f3c39290b88d5c8c52cf0594f39bcc2bde84a14aadf2ef2c257bd9b8d23c88d167226d98523ead014f68e60 SHA512 a5926166cfda21798281a1e7b626e79a357d4a005b1198fb532af9b0a73db57391b8b58d49a7e58cb1887bf127478caad3fd93cb3605be8fc33d95ce83a459be

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">titlecase</remote-id>
<maintainer status="unknown">
<email>pat.pannuto+titlecase@gmail.com</email>
<name>Pat Pannuto</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Python Port of John Gruber's titlecase.pl"
HOMEPAGE="https://github.com/ppannuto/python-titlecase https://pypi.org/project/titlecase/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.rst"
RDEPEND=""
BDEPEND="
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
}