openstep_parser: cleanup

This commit is contained in:
Anton Bolshakov 2023-08-30 10:09:35 +08:00
parent 5086a5d5cb
commit b01276ed22
No known key found for this signature in database
GPG key ID: 32BDCED870788F04
4 changed files with 20 additions and 32 deletions

View file

@ -1,2 +1 @@
DIST openstep_parser-1.5.3.tar.gz 3343 BLAKE2B 6ab9d13d95b9ce791748d55d94149f76d92f7b99379ef3a6da281a191071c32bbbbe222299b024f84808896d8ed3e9740df07a0f305dded82a5f430565a10ddc SHA512 739d7790ef6e9132da33fce8310b72cb022dcdb766598f88d8bd559f9bdca0d2de1ec81aa78fc6eff352241a2751a3dfeb5a1905cae1e49c42e402a592beff30
DIST openstep_parser-1.5.4.tar.gz 4121 BLAKE2B 80716b513c104819a4e0409c5e20b27c6736a5022b14d22fc403713aa6a6a8d38b8e142c0e4974c13ebe65b5acc5580eb7ca52e5fed451321147659cdc6ed00b SHA512 95d6050a365ab96550caf19bbef02c08e4f8923d52f67404c5092768c9af50f7d5709aa4272bafe6486f06fb2c04fc64caac5f5aeb3068793b40c8e5898a5571

View file

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>blshkv@pentoo.ch</email>
<name>Anton Bolshakov</name>
</maintainer>
<upstream>
<remote-id type="github">kronenthaler/openstep-parser</remote-id>
<remote-id type="pypi">openstep_parser</remote-id>
</upstream>
</pkgmetadata>

View file

@ -1,25 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..11} )
inherit distutils-r1 pypi
DESCRIPTION="OpenStep plist reader into python objects"
HOMEPAGE="https://github.com/kronenthaler/openstep-parser"
#SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="amd64 ~arm64 x86"
IUSE="test"
RDEPEND="dev-python/nose[${PYTHON_USEDEP}]
dev-python/coverage[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
#distutils_enable_tests pytest

View file

@ -1,4 +1,4 @@
# Copyright 1999-2022 Gentoo Authors
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@ -10,16 +10,18 @@ inherit distutils-r1 pypi
DESCRIPTION="OpenStep plist reader into python objects"
HOMEPAGE="https://github.com/kronenthaler/openstep-parser"
#SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="amd64 ~arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="dev-python/nose[${PYTHON_USEDEP}]
dev-python/coverage[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}"
RDEPEND="dev-python/coverage[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
test? ( dev-python/nose[${PYTHON_USEDEP}] )"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
#distutils_enable_tests pytest
src_test() {
esetup.py test
}