This commit is contained in:
Anton Bolshakov 2024-06-25 17:45:50 +08:00
parent dce7fa762d
commit 57e2e71e80
No known key found for this signature in database
GPG key ID: 32BDCED870788F04
4 changed files with 8 additions and 31 deletions

View file

@ -1,2 +1 @@
DIST tls_parser-2.0.0.tar.gz 20780 BLAKE2B 74aab616cca21bcf80c0eff75535b30ee9be4993a652866c683978e2927dd00e7a718614e35479c3e0b22391f857509904f1bfa1e5806a558d677cf9366228a5 SHA512 788e18cda10336aea1b6c8665bd8e06b98304c3afc0c1fb36dbcf878045281d6c3e4cfaa0eddc0489d4f84afcc41643e86adae82c8f4ddef0f863799aaebc74c
DIST tls_parser-2.0.1.tar.gz 20822 BLAKE2B 33168cab35b3ae1cfc90a89239af2c0da4bafd47303af6709d0ed5743a302454f5d3d0fb1f1a9b12911e5edfa35683c23d21abe59a01cf93fa34587d965a4765 SHA512 fee59c572dee8b2d9ae94cbd9117e3668d570bebd3e47edac369c06eb32c415d48ccbfbfd3568be76c20cd27cf6400681dd654adc07af121d0c472251107acf3

View file

@ -5,4 +5,8 @@
<email>unknown@pentoo.ch</email>
<name>Author Unknown</name>
</maintainer>
<upstream>
<remote-id type="github">nabla-c0d3/tls_parser</remote-id>
<remote-id type="pypi">tls_parser</remote-id>
</upstream>
</pkgmetadata>

View file

@ -1,24 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{10..12} )
inherit distutils-r1
DESCRIPTION="Small library to parse TLS records."
HOMEPAGE="https://github.com/nabla-c0d3/tls_parser"
SRC_URI="https://github.com/nabla-c0d3/tls_parser/archive/${PV}.tar.gz -> ${P}.tar.gz"
#SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm64 x86"
IUSE="test"
RDEPEND=""
DEPEND="${RDEPEND}
test? ( dev-python/pytest )"
distutils_enable_tests pytest

View file

@ -1,23 +1,21 @@
# Copyright 1999-2022 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..12} )
inherit distutils-r1
inherit distutils-r1 pypi
DESCRIPTION="Small library to parse TLS records."
HOMEPAGE="https://github.com/nabla-c0d3/tls_parser"
SRC_URI="https://github.com/nabla-c0d3/tls_parser/archive/${PV}.tar.gz -> ${P}.tar.gz"
#SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm64 x86"
IUSE="test"
RDEPEND=""
DEPEND="${RDEPEND}
test? ( dev-python/pytest )"