mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
impact: 0.9.17 bump with new dep
This commit is contained in:
parent
44ae9bd9b2
commit
eac9906a0c
5 changed files with 38 additions and 52 deletions
|
|
@ -1,3 +1,2 @@
|
|||
DIST impacket-0.9.13.tar.gz 1058262 SHA256 4987497cb9f4999bf2a7f5520d62e5a4b11fec85758bb424224f16ce800d16d0 SHA512 b00bdfd10f0e51970217d0c527694ebcdc46d8a89d9b9454b2d9e95aa2f5475d5b1a42774ea4928f5c23c43594d1c7398bbc2b01c5f15a38cc8ed4d0877f94f6 WHIRLPOOL 00f3e97427833a33429ddc8944f965d97f98af75dbe4fe3808ea37df9ad2fc057cafca6245dfe9b0c7bcc6b94869adddfb505dbc767dcae955d591fb13ad1a23
|
||||
DIST impacket-0.9.14.tar.gz 1047782 SHA256 21daec9db635194d7c20d7f3206c1a45a152f39ab1521c944e7887b4239bc3bb SHA512 8f2ac11ce2c76e11190c06868f80ceef588bbbfbb30f6574d093f371eb5d65af70ad04ee8fc2e5300c9b14c84d2f5ce6c46dc85ffe8e5003f8f8b9081c700854 WHIRLPOOL fbfed4b5e880dd0ea0ef7071ff03ecca49afca04c268b05d151969f7613c9b0193f18b5ed07d576a944458dc0cce427f0a577ec1aa875f07d95ceb60b05864c7
|
||||
DIST impacket-0.9.15.tar.gz 1088369 SHA256 ff7dbded698f8e7a106ee6411fa4c4e874a50cdd31250df9d9f14bd3fc6df8a3 SHA512 31b1b059d01071319bccfc9a57b23eed175bfba61961ec425553916e7d1940ff6ef53d79ef5e43963e1b4f6037f50489ad22cd6935a53f2cd82bc5b2c6d741ce WHIRLPOOL 15ab296c4c3c18ed0dcd493552b8b44ba527bf35a9e53de36f7eb93f297236c73a9e72258a90b00c47f4edf241ab81e255b928a2fc080b998527c71ca5b7b398
|
||||
DIST impacket-0.9.15.tar.gz 1088369 BLAKE2B 64c66ba87be321577d977b1ccada2b359c4083a727dce3b91a2a92bc29b302eae930c50db41c2dcecc82ad31b98272b9abd519f2e1cfbe7a0d4241d913f94d31 SHA512 31b1b059d01071319bccfc9a57b23eed175bfba61961ec425553916e7d1940ff6ef53d79ef5e43963e1b4f6037f50489ad22cd6935a53f2cd82bc5b2c6d741ce
|
||||
DIST impacket-0.9.17.tar.gz 1195867 BLAKE2B 29873c5639d8f9d7d673be2fa6f8001f34c6a7e1b3ff6c8d0376a5d8e3be9757ce8e498647bfdf1152eb3860aa819a740bcce2f3eb998a90f3997ffbfbc3b2ae SHA512 c6a84b5f3e0e08bc44c6648c0c65048c5b9ee63ce7706896f4f9a3c061b3bf64e5e68ca87794162cfc730144eff60c392eea2548edeaba61e04350c857e69c9b
|
||||
|
|
|
|||
|
|
@ -1,42 +0,0 @@
|
|||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
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="Apache-2.0"
|
||||
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
|
||||
}
|
||||
|
|
@ -1,8 +1,7 @@
|
|||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
inherit distutils-r1
|
||||
|
|
@ -16,16 +15,23 @@ if [[ ${PV} == "9999" ]] ; then
|
|||
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 _)
|
||||
# inherit versionator
|
||||
# S="${WORKDIR}"/${PN}-${PN}_$(replace_all_version_separators _)
|
||||
S="${WORKDIR}"/${PN}-${PN}_${PV//./_}
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="dev-python/pycrypto[${PYTHON_USEDEP}]
|
||||
>=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]"
|
||||
RDEPEND=">=dev-python/pyasn1-0.2.3[${PYTHON_USEDEP}]
|
||||
|| ( dev-python/pycryptodome[${PYTHON_USEDEP}] dev-python/pycrypto[${PYTHON_USEDEP}] )
|
||||
>=dev-python/pyopenssl-0.13.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/ldap3-2.5.0[${PYTHON_USEDEP}]
|
||||
dev-python/ldapdomaindump[${PYTHON_USEDEP}]
|
||||
dev-python/flask[${PYTHON_USEDEP}]
|
||||
dev-python/six[${PYTHON_USEDEP}]"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
python_test() {
|
||||
1
dev-python/ldapdomaindump/Manifest
Normal file
1
dev-python/ldapdomaindump/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
DIST ldapdomaindump-0.8.6.tar.gz 13317 BLAKE2B 22c38437d7753c92913ba83948cef2dc306583fe172dcbcd0c05cef40d5fc3a12c1084f0775fc986a41f0b2e45fe1d313adcf965b3cfb00c2e22e9c54a1a8437 SHA512 10868ffb77b439f7a7a0fd960b0da385acaaaba34c6fcd0172c43413c17eaed4891e88fc9dbed0a99aa229c73ca2b8bc35c6328304d8fd786a5e124a793794f9
|
||||
22
dev-python/ldapdomaindump/ldapdomaindump-0.8.6.ebuild
Normal file
22
dev-python/ldapdomaindump/ldapdomaindump-0.8.6.ebuild
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Active Directory information dumper via LDAP"
|
||||
HOMEPAGE="https://github.com/dirkjanm/ldapdomaindump"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="dev-python/dnspython[${PYTHON_USEDEP}]
|
||||
>=dev-python/ldap3-2.0[${PYTHON_USEDEP}]"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]"
|
||||
Loading…
Reference in a new issue