dev-python/structlog: treeclean
This commit is contained in:
parent
3d01ed27a3
commit
54e4773f06
@ -1,5 +0,0 @@
|
||||
DIST structlog-20.1.0.tar.gz 332376 BLAKE2B 7481c924d7c4cb35bf451a441f66a018ffef2e435d3df6620637578718c689b1bea7e6f5f6f022d600e9256696f7c5a49f04f636a747e1ea54513cd697ef019b SHA512 87e4909e4a8cee396cc9b78212f13819632c303448bea28e78d574b981435aa29dc5620d59785788ae165af805761cbf97fa4d1ec49a3bf3b887ae76c91b18f3
|
||||
DIST structlog-21.1.0.tar.gz 371729 BLAKE2B f5d7a33a8d2f6c74a18454e5f4965dfff93a86694c92a264d0c552a0d0e0775775e36c81e7809f628a66eb5bd059a7ae83c1932a67b75fdd8ad8a9f8bbee9dbf SHA512 1540dc8c3682bb428fe64bbc9494eaf59b78a49c13ae4de1338e0bfbb2f4e70a00aab7aa8c45008879087deb0c8cef5412d5323292d5f968c8d613cb74f40802
|
||||
EBUILD structlog-20.1.0-r1.ebuild 678 BLAKE2B 07bf438ecf4b4e5c3c922aef03f925363b7eafa7c53aa8a7a85aa9907e6b6c4ea523157cd6aeb1c9bc1359ec6d013e83a9a1835cb647480b95e7211852057e71 SHA512 678d3b026fe5dcfff80db0283e861f27d78639f533545f04a5e9ee9ee132af2973f98f9edaca6379a9c3b302a0d343c877dd19755e89e9a9e3aa35171cd93c79
|
||||
EBUILD structlog-21.1.0.ebuild 692 BLAKE2B 1e684c71dfa5664ccdb8d501cfe5207beda03ec45c82f563c28f1c9e3d5745ee02eb322037bd38a50f456c9aa35d6f52eab04f23b6ad3c8a7747da328f789cf1 SHA512 6df695ed4e2a89d18e20e3837b2b2aa4299c1905c0cb4a9d4205367adaf4bfe0ad20dcb4e06b729536e3fa9b07074cc7bf9349f936ed1ae9983f026b59eaa8ba
|
||||
MISC metadata.xml 445 BLAKE2B 61d7f2970cafc06c58fb960bba79420ab5de3983754e2a4e878bb6ca36577dcd7dddcbdfde5543715a9b867201f80488cc573f8567e2417e2de8f1b558283565 SHA512 59dc964b2167bca9298e74b336903ebf79149da8f7a49cdda7e5c3be7bd29b1b5c84e2b5fe9a86ebb0a9ddb57d2b6ab9feeb6cb82c460e97199ec58473d31d4e
|
@ -1,15 +0,0 @@
|
||||
<?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">structlog</remote-id>
|
||||
<maintainer status="unknown">
|
||||
<email>hs@ox.cx</email>
|
||||
<name>Hynek Schlawack</name>
|
||||
</maintainer>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
@ -1,30 +0,0 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Structured Logging for Python"
|
||||
HOMEPAGE="https://www.structlog.org/ https://pypi.org/project/structlog/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="|| ( MIT Apache-2.0 )"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm64 ~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
|
||||
}
|
@ -1,32 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Structured Logging for Python"
|
||||
HOMEPAGE="https://www.structlog.org/ https://pypi.org/project/structlog/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="|| ( MIT Apache-2.0 )"
|
||||
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
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user