mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-08 20:43:38 +02:00
inguma: version bump, just for fun
This commit is contained in:
parent
cd04762d88
commit
525c6ec7c7
2 changed files with 45 additions and 0 deletions
|
|
@ -4,6 +4,8 @@ AUX ingumagui 50 RMD160 bdcb9fbbae77c64bd78fd77fa3aa188738ff6bb3 SHA1 8eb522e8a2
|
|||
DIST inguma-0.0.9.1.tar.gz 5024865 RMD160 2304ecc33b59841c089fad10e859ed6c8e8e95aa SHA1 514729be6670a7cfdd5b0373ef68d0d2650782bd SHA256 e5c56aed374969acc0d9b93fac8849bb83482705761f98a010ffad11047b6ca6
|
||||
DIST inguma-0.1.1.tar.gz 5635817 RMD160 adbf95279cd7766186e5b404c6c2f5b835fe5e26 SHA1 d9e59c5e11e5cf4aa7f4cd5b188023cf6fe9bca6 SHA256 8d2c9670ee8b7e32c24e719d2f3be71a7d66596177066c10ed4d9db6063ef761
|
||||
DIST inguma-0.2.tar.gz 5895361 RMD160 e8729cd0c30a6f54d9e82c8d8f619c37a64cf2ef SHA1 28c6c60283e5b2b1e0f0eb3fb1dc6806fc716e4e SHA256 b6c33e8e556264b87873c8b33ac0897cf65a83d584982751c3737b747fd272e4
|
||||
DIST inguma-0.4.tar.gz 6808833 RMD160 c160bfeec130e5e780d4e2ec7e880c29ac035261 SHA1 67fbc02c992d5cd1e120e768934a36545f7e155c SHA256 f48a110d44e8ccc5c2738b9a72cefed741fbba562ce39e42a6327c9a8b103be6
|
||||
EBUILD inguma-0.0.9.1.ebuild 1096 RMD160 a7c6564ef098e38a7b1534f2b3d19a026d49f999 SHA1 92ef1557813414c25e9134979bffdea99524025a SHA256 fb93c3fc221d23f99fea81ac8c17d4f34b315c63c4bf51ca8755ddae963dd51d
|
||||
EBUILD inguma-0.1.1.ebuild 1070 RMD160 8ae8e52330fdefc1f60abdee59baf33c1cd32039 SHA1 e342f6740a9d13111d63f607216aad9e6c942f3d SHA256 f38f1aacbe0726186b6458ebb4ab4be53b06be77016e0524c4919fe845cf982d
|
||||
EBUILD inguma-0.2.ebuild 962 RMD160 9b054e68349aa9dfc1d44665e600700df6a02b17 SHA1 d56d61ec0557ccb9a333f2ced7d19fa30b421db1 SHA256 ba2def62aa7136989fcbcdac3c3e6b1dabf583fc28d65b049e79c7825029ea0f
|
||||
EBUILD inguma-0.4.ebuild 980 RMD160 bc8906cbe15f6755f65e7dd2c929e4065895e399 SHA1 dd4aecee664f2eea92f66d29902b15742def49c0 SHA256 bdb7db52e53513deda607472d5314e13e03626709dab481ff67dad442f65ffc0
|
||||
|
|
|
|||
43
net-analyzer/inguma/inguma-0.4.ebuild
Normal file
43
net-analyzer/inguma/inguma-0.4.ebuild
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
# Copyright 1999-2006 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI="4"
|
||||
|
||||
DESCRIPTION="Inguma is an open source penetration testing toolkit written completely in Python"
|
||||
HOMEPAGE="http://inguma.eu/projects/inguma"
|
||||
SRC_URI="http://inguma.eu/attachments/download/105/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
KEYWORDS="~amd64 ~ppc ~x86"
|
||||
IUSE="bluetooth gtk oracle"
|
||||
SLOT="0"
|
||||
RDEPEND="dev-python/Impacket
|
||||
dev-python/paramiko
|
||||
dev-python/pycrypto
|
||||
dev-python/pygtksourceview
|
||||
dev-python/pysnmp
|
||||
net-analyzer/nmap
|
||||
net-analyzer/scapy
|
||||
bluetooth? ( dev-python/pybluez )
|
||||
gtk? ( dev-python/pygtk )
|
||||
oracle? ( dev-python/cxoracle )"
|
||||
|
||||
src_compile() {
|
||||
einfo "Nothing to compile"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
if ! use gtk; then
|
||||
rm ginguma.py
|
||||
else
|
||||
dosbin ${FILESDIR}/ginguma
|
||||
fi
|
||||
dodir /usr/lib/${PN}
|
||||
dodoc doc/*
|
||||
rm -rf doc
|
||||
rm -rf scapy* debian*
|
||||
cp -pPR ${S}/* ${D}usr/lib/${PN} || die
|
||||
chown -R root:0 ${D}
|
||||
dosbin ${FILESDIR}/inguma
|
||||
}
|
||||
Loading…
Reference in a new issue