remove outdated dev-python/impacket

This commit is contained in:
Anton Schubert 2021-07-24 13:07:19 +02:00
parent 1a7145279d
commit 7fbcda725b
2 changed files with 0 additions and 44 deletions

View file

@ -1,2 +0,0 @@
DIST impacket-0.9.12.tar.gz 975618 SHA256 e5e80d23919e37ff81824ed64701e558295c346f992808e5ab8ef010d0c0a274 SHA512 dc50e78f1d3899d1681856464b0d315cc28ce124f2fa57130a734a9a4716b6ccfcf41c42480da45705adbf55c02aba06c032d0687781e3a075be290a933bb98c WHIRLPOOL 28bb9c9c7f10ac6a837ac2e06f9ec3a8f0ab12a669b47c16988a65df88d3601adab38c4e8c8999ada14848a3874f9c7d96e72097a6d58bf13c2eb29e9c7b2169
EBUILD impacket-0.9.12-r2.ebuild 1103 SHA256 9e5ef6012fe5f1b7f17ac6e61846a5696b45f0dc936e9cad7617b6066c3be0ae SHA512 f381d66d1e604b4bc1dbc4e255221c5b798c9463c6115e0c123c52f76a47319509f423f8fcdea3a66b020fc71a6a1bc9100647b5eb7211076e913d30611fdcdf WHIRLPOOL a518cf52b6aaa4869db110633a4a9a25bccfb75ad18f771c8a3ad645c05bf7ed3b57583ad1d7e25381c8e0fbb1efb25f1cba08c74927444dd56b72e3295bf109

View file

@ -1,42 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="A collection of Python classes focused on providing access to network packets"
HOMEPAGE="https://github.com/CoreSecurity/impacket"
SRC_URI=""
if [[ ${PV} == "9999" ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/CoreSecurity/impacket.git"
KEYWORDS=""
else
SRC_URI="https://github.com/CoreSecurity/impacket/archive/impacket_${PV//./_}.tar.gz -> ${P}.tar.gz"
inherit versionator
S="${WORKDIR}"/${PN}-${PN}_$(replace_all_version_separators _)
KEYWORDS="~amd64 ~x86"
fi
LICENSE="BSD"
SLOT="0"
IUSE=""
RDEPEND="dev-python/pycrypto[${PYTHON_USEDEP}]
>=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}"
python_test() {
pushd impacket/testcases/dot11
for test in $(ls *.py); do
${PYTHON} ${test} || die "Tests fail with ${EPYTHON}"
done
popd
pushd impacket/testcases/ImpactPacket
for test in $(ls *.py); do
${PYTHON} ${test} || die "Tests fail with ${EPYTHON}"
done
popd
}