mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
responder-3.1.5.0.ebuild
This commit is contained in:
parent
7b88a4199c
commit
6444baaf53
4 changed files with 4 additions and 107 deletions
|
|
@ -1,3 +1 @@
|
|||
DIST responder-3.1.2.0.tar.gz 760324 BLAKE2B 6d5d201a19bf289f927cda3b30e5ce03ae2125078c1752dc838b1433e486a99c24990c9262769513e82409b06e2e2d6ca2e372c27ee4b7a95c064028e3c351b0 SHA512 6434f2b323ce5ce597ea04da30476215577fb9e9ad705506ee96db11e75d0a545be9f034520b0bfaa347d0a57597b8ffd75e18d46d288c1db4cd6a09d1960b4e
|
||||
DIST responder-3.1.3.0.tar.gz 760287 BLAKE2B 2aac82da0d2ab648c76c0052b0e4566be705422009eb257ab0c6933c6945b5615c915c12454263c62e691d9b595e17c1526af819590c1b28e362d9512d4e84c1 SHA512 cdc802507410563a702102b6192b489fe356127260126c5462e19cc24649c1dd22051366f46a621125be4efb7d6769e9779fc5faf6c2219013b2a117fdffc06c
|
||||
DIST responder-3.1.4.0.tar.gz 767717 BLAKE2B 162064f567fb7577ed3c3dd6c934d54c8edd036a408ddb0d4cd1acb9fe85b20c5701d455dc51d9e8e1f356957a4078e417f6e3469d88a177139603167c64635c SHA512 1a6b5fb3409015e1d23f5f8afd2b4963ab4cedb4b2697f7976df3570c021b8a22bc861a364c6df5467ccf785cebefb9039e95c7ee7ec0392753e8384fe6ef711
|
||||
DIST responder-3.1.5.0.tar.gz 778892 BLAKE2B 6e1d2c74cac9be542843a4cf0f6e571491e4f46179e5bd0e3569174ca7ca04f066e1b9a81c3053fc1ffc77a05a3aca2909389cdfbadaf7f70f8b03b2c340cdf4 SHA512 5e44c34901ce1de4e55b477c11ccfb6acd681b64e56c51807ccb352340cb838888ee2bdbdf3bb4bb011e0c2d15c9baadecba24896d4c641059ba87551ce35057
|
||||
|
|
|
|||
|
|
@ -1,50 +0,0 @@
|
|||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
PYTHON_REQ_USE="sqlite"
|
||||
|
||||
inherit python-single-r1
|
||||
|
||||
DESCRIPTION="LLMNR, NBT-NS and MDNS poisoner, HTTP/SMB/MSSQL/FTP/LDAP rogue authentication"
|
||||
HOMEPAGE="https://github.com/lgandx/Responder"
|
||||
SRC_URI="https://github.com/lgandx/Responder/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~arm64 x86"
|
||||
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
DEPEND="${PYTHON_DEPS}"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
S="${WORKDIR}/Responder-${PV}"
|
||||
|
||||
pkg_setup() {
|
||||
python-single-r1_pkg_setup
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
python_fix_shebang "${S}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dodir /usr/$(get_libdir)/${PN}
|
||||
cp -R * "${ED}"/usr/$(get_libdir)/${PN} || die "Copy files failed"
|
||||
|
||||
# dosym "${EPREFIX}"/usr/$(get_libdir)/${PN}/Responder.py /usr/sbin/responder
|
||||
dosym "${EPREFIX}"/usr/$(get_libdir)/${PN}/Report.py /usr/bin/responder_report
|
||||
dosym "${EPREFIX}"/usr/$(get_libdir)/${PN}/DumpHash.py /usr/bin/responder_dumphash
|
||||
|
||||
newsbin - responder <<-EOF
|
||||
#!/bin/sh
|
||||
cd /usr/$(get_libdir)/responder
|
||||
${EPYTHON} ./Responder.py \${@}
|
||||
EOF
|
||||
|
||||
python_optimize "${ED}/usr/$(get_libdir)/${PN}"
|
||||
}
|
||||
|
|
@ -1,50 +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} )
|
||||
PYTHON_REQ_USE="sqlite"
|
||||
|
||||
inherit python-single-r1
|
||||
|
||||
DESCRIPTION="LLMNR, NBT-NS and MDNS poisoner, HTTP/SMB/MSSQL/FTP/LDAP rogue authentication"
|
||||
HOMEPAGE="https://github.com/lgandx/Responder"
|
||||
SRC_URI="https://github.com/lgandx/Responder/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~arm64 x86"
|
||||
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
DEPEND="${PYTHON_DEPS}"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
S="${WORKDIR}/Responder-${PV}"
|
||||
|
||||
pkg_setup() {
|
||||
python-single-r1_pkg_setup
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
python_fix_shebang "${S}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dodir /usr/$(get_libdir)/${PN}
|
||||
cp -R * "${ED}"/usr/$(get_libdir)/${PN} || die "Copy files failed"
|
||||
|
||||
# dosym "${EPREFIX}"/usr/$(get_libdir)/${PN}/Responder.py /usr/sbin/responder
|
||||
dosym "${EPREFIX}"/usr/$(get_libdir)/${PN}/Report.py /usr/bin/responder_report
|
||||
dosym "${EPREFIX}"/usr/$(get_libdir)/${PN}/DumpHash.py /usr/bin/responder_dumphash
|
||||
|
||||
newsbin - responder <<-EOF
|
||||
#!/bin/sh
|
||||
cd /usr/$(get_libdir)/responder
|
||||
${EPYTHON} ./Responder.py \${@}
|
||||
EOF
|
||||
|
||||
python_optimize "${ED}/usr/$(get_libdir)/${PN}"
|
||||
}
|
||||
|
|
@ -11,6 +11,7 @@ inherit python-single-r1
|
|||
DESCRIPTION="LLMNR, NBT-NS and MDNS poisoner, HTTP/SMB/MSSQL/FTP/LDAP rogue authentication"
|
||||
HOMEPAGE="https://github.com/lgandx/Responder"
|
||||
SRC_URI="https://github.com/lgandx/Responder/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/Responder-${PV}"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
|
@ -21,8 +22,6 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|||
DEPEND="${PYTHON_DEPS}"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
S="${WORKDIR}/Responder-${PV}"
|
||||
|
||||
pkg_setup() {
|
||||
python-single-r1_pkg_setup
|
||||
}
|
||||
|
|
@ -37,8 +36,8 @@ src_install() {
|
|||
cp -R * "${ED}"/usr/$(get_libdir)/${PN} || die "Copy files failed"
|
||||
|
||||
# dosym "${EPREFIX}"/usr/$(get_libdir)/${PN}/Responder.py /usr/sbin/responder
|
||||
dosym "${EPREFIX}"/usr/$(get_libdir)/${PN}/Report.py /usr/bin/responder_report
|
||||
dosym "${EPREFIX}"/usr/$(get_libdir)/${PN}/DumpHash.py /usr/bin/responder_dumphash
|
||||
dosym -r "${EPREFIX}"/usr/$(get_libdir)/${PN}/Report.py /usr/bin/responder_report
|
||||
dosym -r "${EPREFIX}"/usr/$(get_libdir)/${PN}/DumpHash.py /usr/bin/responder_dumphash
|
||||
|
||||
newsbin - responder <<-EOF
|
||||
#!/bin/sh
|
||||
Loading…
Reference in a new issue