add local overlay
This commit is contained in:
commit
4883c62e9a
68 changed files with 2719 additions and 0 deletions
2
dev-python/impacket/Manifest
Normal file
2
dev-python/impacket/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
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
|
||||
42
dev-python/impacket/impacket-0.9.12-r2.ebuild
Normal file
42
dev-python/impacket/impacket-0.9.12-r2.ebuild
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
# 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
|
||||
}
|
||||
2
dev-python/netzob/Manifest
Normal file
2
dev-python/netzob/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
DIST Netzob-0.4.1.tar.gz 1102566 SHA256 f3b03410fdb11d74fbf08ce3e8bbe50d66ab4885564a4d1e3038648079df1e71 SHA512 315d651072b984520949a161169108503969c32db118f292e6a6c09d68e354add37201a9fb783f11141e7f70ba90ab00b30f5a014f4935d08da96e02d2ece29e WHIRLPOOL 44f96ecc1e4d9b4f180cc21e1103d788cd0b83a8e341f75767fc0a2c42ae25d3ae18a55f0a5dae6821f22e1dae34c67fd96531a617490bfd61e0d6753c505bd2
|
||||
EBUILD netzob-0.4.1.ebuild 1360 SHA256 89d68ee0845b2ce60cb9fa904f2ed16a6171e434cffe24f701e4140980fc2659 SHA512 c7bb0fec9c55e13ef95109c95a46bab322337bbc31a018354ca12e78c10fdcf92de5d97261664dc7a8c2ced30989c56d65529edad3bb187581bae49346915d25 WHIRLPOOL 580ead856b7269458c8177bedcbc3bd5f4c546c7406eb08f7837f8bc487bf32cda1ee2b7406c071de9fb961fec7ee1d06dad37f76988f4d2df1234e612036364
|
||||
59
dev-python/netzob/netzob-0.4.1.ebuild
Normal file
59
dev-python/netzob/netzob-0.4.1.ebuild
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI=5
|
||||
PYTHON_COMPAT=( python{2_6,2_7} )
|
||||
|
||||
inherit eutils distutils-r1 python-r1
|
||||
|
||||
MY_PN="Netzob"
|
||||
MY_P="${MY_PN}-${PV}"
|
||||
|
||||
DESCRIPTION="Network protocol modelization by reverse engineering"
|
||||
HOMEPAGE="http://www.netzob.org/"
|
||||
SRC_URI="http://www.netzob.org/repository/${PV}/${MY_P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86 ~amd64"
|
||||
IUSE="doc debug"
|
||||
|
||||
RDEPEND="
|
||||
x11-libs/gtk+:3
|
||||
dev-python/impacket
|
||||
dev-util/strace
|
||||
sys-process/lsof
|
||||
>=dev-python/lxml-2.3
|
||||
dev-python/bitarray
|
||||
dev-python/Babel
|
||||
dev-python/pygobject:3
|
||||
dev-python/pcapy
|
||||
dev-python/python-ptrace
|
||||
>=dev-python/httplib2-0.7.0
|
||||
media-gfx/graphviz"
|
||||
DEPEND="${RDEPEND}
|
||||
>=dev-python/setuptools-0.6.30-r1
|
||||
doc? ( >=dev-python/sphinx-1.1.3 )"
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
DOCS=( README.rst AUTHORS.txt NEWS.rst COPYING.txt )
|
||||
|
||||
src_compile() {
|
||||
use debug && NETZOB_COMPILE_PROFILE="debug ${NETZOB_COMPILE_PROFILE}"
|
||||
export NETZOB_COMPILE_PROFILE
|
||||
distutils-r1_src_compile
|
||||
|
||||
if use doc; then
|
||||
einfo "Generation of documentation"
|
||||
pushd doc/documentation >/dev/null
|
||||
sphinx-build -b html source html || die "Generation of documentation failed"
|
||||
popd >/dev/null
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
distutils-r1_src_install
|
||||
use doc && HTML_DOCS=( doc/documentation/html/ )
|
||||
doman doc/netzob.1
|
||||
}
|
||||
2
dev-python/pcapy/Manifest
Normal file
2
dev-python/pcapy/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
DIST pcapy-0.10.8.tar.gz 26134 SHA256 b0a3b97e84489f4f0cac82a8cdb2ccdbbd5279dc0b55d3ef4866f7df3e7d4bd3 SHA512 94d5ef53d069df938205770223a03d4ae753e7c53a1905687b8cb3b308d58c01cf22b340ff6b9f77225b0c733ad5f2d9d0b57a766163832efbaf216b0125554b WHIRLPOOL 0894947503b3bb31837c769e1e885168d1f4f15d889dbe9b98e4b9fdc4f9db3b0eb2b1912bf2384cb2a8b7f0309a1dc74f6c555c76525bbb02a36ac407b11b4e
|
||||
EBUILD pcapy-0.10.8.ebuild 514 SHA256 9f8fc3ed10cb7789578ddc18d7c6a18eb3f1a600a3b445c5a3d1705b0e6bed60 SHA512 b8ac73b562782832fc49c619859c7f770888997ac28621f60df40574488aec617829433da90794c3e87cb9ec05d21e3eb6949a854f22ab2a9f4653f252c68ee8 WHIRLPOOL 3f9417a0ffcf122b8bae9cd12a2505ed7b901643a3b83848e4efbbd02fe3c2238f373c783185195b41d5384731bfec2991c1bfa0b3a2202ad52eda515066f669
|
||||
25
dev-python/pcapy/pcapy-0.10.8.ebuild
Normal file
25
dev-python/pcapy/pcapy-0.10.8.ebuild
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI=4
|
||||
|
||||
PYTHON_DEPEND="2"
|
||||
SUPPORT_PYTHON_ABIS="1"
|
||||
RESTRICT_PYTHON_ABIS="3.*"
|
||||
|
||||
RDEPEND="${DEPEND}
|
||||
net-libs/libpcap"
|
||||
|
||||
inherit distutils
|
||||
|
||||
DESCRIPTION="Python pcap extension"
|
||||
HOMEPAGE="http://oss.coresecurity.com/projects/pcapy.html"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
|
||||
http://oss.coresecurity.com/repo/${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-1.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
3
dev-python/python-osc/Manifest
Normal file
3
dev-python/python-osc/Manifest
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
DIST python-osc-1.5.tar.gz 17630 SHA256 0f93991bd4f27362e39a233cfd682ecf8fd19b281223b2180fb0ce44d7ec1f67 SHA512 3f7ef3feef4623cbe3257f0082cc1a469099fe7864f62ded5de209a9f0e963612cd77b7e576dac1009232292455b2dbce0637e7a53700703b85136be93b10aad WHIRLPOOL 67445c5cc0f7fecfc9dbe1f0ef0b06c412dd1dd91f82bcf22e89bd717a5a24422ba3d9caa329f0865c328c9f96a2bec4ad8b95db3c6b5e6a86b60037495a4484
|
||||
EBUILD python-osc-1.5.ebuild 440 SHA256 c03e9564097a106fe6d04d87586b13408f7f93adedc9c5652b9983d9dfbf8b6d SHA512 14830fa3ca11061e96bc48eedd3ed684dd75d823ecb67a659420340c2d9a51a698a786dbf093ae055d260f8a4bce2f0fdda5ec32cf8ef0145aeac40050760f29 WHIRLPOOL 347bf9944d386dbd6b4dbc1d0583824c7a540a8cb28a738ef83f5898f64ab76e060677c5e5f88123987ec5e56583d3704e227c3256f42dddc5baeb8755111b51
|
||||
MISC metadata.xml 236 SHA256 959661d8bd603a96922b2b967aae5e286e47008591ddaceec6f9028d65ed47c8 SHA512 2ecd45f1ba40d6a22a11497a95d818800c2dcce8cde872a673971235384ad1979bf08c526f22677ac2decd9f00aa50fc1401cb54042032735f4989f481c174b9 WHIRLPOOL 378657edf144c06e4acf4b89136c9983651c13ca3d0bf815dc0bc08097aa3d728efcd5c4338154dfd03f89b7ea16adb776d882f56a4c0f29744be96f529ffc5f
|
||||
8
dev-python/python-osc/metadata.xml
Normal file
8
dev-python/python-osc/metadata.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer>
|
||||
<email>ischluff@mailbox.org</email>
|
||||
<name>Anton Schubert</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
21
dev-python/python-osc/python-osc-1.5.ebuild
Normal file
21
dev-python/python-osc/python-osc-1.5.ebuild
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python3_{4,5} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Open Sound Control server and client implementations in pure Python"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
HOMEPAGE="https://github.com/attwad/python-osc"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="${DEPEND}"
|
||||
Loading…
Add table
Add a link
Reference in a new issue