Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Lawrence Amer authored Aug 25, 2018
1 parent 560fa09 commit a897639
Show file tree
Hide file tree
Showing 37 changed files with 627 additions and 0 deletions.
1 change: 1 addition & 0 deletions dev-python/pyDes/Manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DIST pyDes-2.0.1.tar.gz 9878 BLAKE2B 45a2d0575519afc389abe080f2c3a6751c5ee1f973e9e4370f24c5dbf9d85882e875682005eae3d749a2e11bffc3cd46868f83baa58f9e7e4feb7a25db641a14 SHA512 9d2a048dd6f629713d93d5cfcf5eaccb45a28fd3942f6837baf492bc6d9f0fcd16a1611e467231e9abfa6756d1684b0848c2190195e9e772bed2e6574327885c
19 changes: 19 additions & 0 deletions dev-python/pyDes/pyDes-2.0.1.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
inherit distutils-r1

DESCRIPTION="Pure python implementation of DES and TRIPLE DES encryption algorithm"
HOMEPAGE="http://twhiteman.netfirms.com/des.html"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="MIT"
SLOT="0"
IUSE="test"
KEYWORDS="~amd64"

#DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
#PDEPEND=""
3 changes: 3 additions & 0 deletions dev-python/pyasn1-modules/Manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
DIST pyasn1-modules-0.0.11.tar.gz 63610 SHA256 60d5c80bfee9b79b492d5d8a934b3ecfc523f2f83aaab4ffafa2bbb651d3c67a SHA512 0c9943f1fe49453a97ede8aa14248340dc1e331d0d80fa948b507743d3f30fe61d99323b99ca43930d22c863611ae4a2bd9859726620756f345ff2d5873efb8d WHIRLPOOL 7f2ada3cfd13c3cca8baf6d2f3b5169c8629ef8fe9dd436a44ceee135c101d3505eeeb77e189696fb3ccd7e8e31f2ff6f3809fa6cfae48aa5bed1638d90d8f74
DIST pyasn1-modules-0.1.4.tar.gz 65552 SHA256 b07c17bdb34d6f64aafea6269f2e8fb306a57473f0f38d9a6ca389d6ab30ac4a SHA512 29467aa9fff15b7a7ef999389db01fe696350e29910397f0c867685689a9fa8e5df8128a7703ae0de095804ae20c3759b24656467cec8d086d07a1014ccf5d65 WHIRLPOOL 99ff13b3d4b5749360f9ae9845ccce228e6c1835b3cf692216c4dee49b0ab834ae11aef256e869b18a3517114707ae5eb1b13aaf068c1610bf5c5ad8102a0467
DIST pyasn1-modules-0.1.5.tar.gz 65690 SHA256 1d303eed5aa54cafeca209d16b8c7ea2c6064735fb61f1bee2e0ed63a0816988 SHA512 0d7f631fdbcb4c89ccf65b91c106483f536daadd099f5b3fb9b144bbcfcb0619bf818fa18715b8f61baf10699421a1af80f003781a5ebac28ebb4f4e7f677c1a WHIRLPOOL 24f1f20b23bca1327ed554463f5dca5d3ed374878a0cc60327050c46c01918980401f7569039660e515d508de61136e1117a1fefa3801f1919b8c9d1d45df1d9
12 changes: 12 additions & 0 deletions dev-python/pyasn1-modules/metadata.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>python@gentoo.org</email>
<name>Python</name>
</maintainer>
<upstream>
<remote-id type="pypi">pyasn1-modules</remote-id>
<remote-id type="sourceforge">pyasn1</remote-id>
</upstream>
</pkgmetadata>
37 changes: 37 additions & 0 deletions dev-python/pyasn1-modules/pyasn1-modules-0.0.11.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=5

PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )

inherit distutils-r1

DESCRIPTION="pyasn1 modules"
HOMEPAGE="http://pyasn1.sourceforge.net/ https://pypi.python.org/pypi/pyasn1-modules"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE=""

RDEPEND=">=dev-python/pyasn1-0.1.8[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]"

python_test() {
echoit() { echo "$@"; "$@"; }
local exit_status=0 test
cd tools || die
for test in ../test/*.sh; do
echoit sh "${test}" || exit_status=1
done
return ${exit_status}
}

python_install_all() {
distutils-r1_python_install_all
insinto /usr/share/${P}
doins -r tools
}
37 changes: 37 additions & 0 deletions dev-python/pyasn1-modules/pyasn1-modules-0.1.4.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=5

PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )

inherit distutils-r1

DESCRIPTION="pyasn1 modules"
HOMEPAGE="http://pyasn1.sourceforge.net/ https://pypi.python.org/pypi/pyasn1-modules"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE=""

RDEPEND=">=dev-python/pyasn1-0.1.8[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]"

python_test() {
echoit() { echo "$@"; "$@"; }
local exit_status=0 test
cd tools || die
for test in ../test/*.sh; do
echoit sh "${test}" || exit_status=1
done
return ${exit_status}
}

python_install_all() {
distutils-r1_python_install_all
insinto /usr/share/${P}
doins -r tools
}
37 changes: 37 additions & 0 deletions dev-python/pyasn1-modules/pyasn1-modules-0.1.5.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=5

PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )

inherit distutils-r1

DESCRIPTION="pyasn1 modules"
HOMEPAGE="http://pyasn1.sourceforge.net/ https://pypi.python.org/pypi/pyasn1-modules"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE=""

RDEPEND=">=dev-python/pyasn1-0.1.8[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]"

python_test() {
echoit() { echo "$@"; "$@"; }
local exit_status=0 test
cd tools || die
for test in ../test/*.sh; do
echoit sh "${test}" || exit_status=1
done
return ${exit_status}
}

python_install_all() {
distutils-r1_python_install_all
insinto /usr/share/${P}
doins -r tools
}
3 changes: 3 additions & 0 deletions dev-python/pyasn1/Manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
DIST pyasn1-0.3.2.tar.gz 112391 SHA256 973ababe407bd60084b9692b6b058c5e7f2d92e019e09fce8353918ffe027d51 SHA512 575e8ddf3193a07446a721cec5849e25801f59350c1f14d70d43e17e94e5c93203254397c75e0863e41479c8b77dc7d1d49c373fe3c8f40b19cbf49415b9c00f WHIRLPOOL 275f2edaf5eca6ed0d16e8f44099af65a8de6f1a5cf043ffbe58cfd8588591b07c72128cfde91ce3bc99e16014ea3604a5d1682c705bdc12f3277137a68595ea
DIST pyasn1-0.3.6.tar.gz 117506 SHA256 3a263cea3e15f459b1e97b1f7d3840b890eeb29eddaf480203a2929a651c5968 SHA512 0857b957bd29f999858869e02ee84ec86aae6362229da14b47f4c54f1358632d161e417325e0e2cec8a3fa293f52156d703481dac872e7f323e317cf14197dce WHIRLPOOL 84fe36d176482ea296e9434ae17faf6b1bc58667fb7102855e51c8427da81777e80ad3306e50d35ef95b03f15460ff1cf38c83e5adbe436f5588778a023f57f7
DIST pyasn1-0.3.7.tar.gz 117643 SHA256 0d7d36536c593f5043949cc073bc721c6db3ec01915c6babc61851fb79c3e7aa SHA512 85735ecb5b83979e51c9f663e2e0dcfbc317ba7e22474d78998f97c40a3487fd06ade9a259d1a4a8de5f4e70e5521a060af127799b92931ceb26abd384ec5807 WHIRLPOOL fc0099a114e207edcc35f9858dce50cbc20246d8060143496a206c206abbc55180dd313ce0b48109918bece4205ccd1400ca4b81d3737b6d572b05f659e1b695
13 changes: 13 additions & 0 deletions dev-python/pyasn1/metadata.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>python@gentoo.org</email>
<name>Python</name>
</maintainer>
<upstream>
<remote-id type="pypi">pyasn1</remote-id>
<remote-id type="sourceforge">pyasn1</remote-id>
<remote-id type="github">etingof/pyasn1</remote-id>
</upstream>
</pkgmetadata>
43 changes: 43 additions & 0 deletions dev-python/pyasn1/pyasn1-0.3.2.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )

inherit distutils-r1

DESCRIPTION="ASN.1 library for Python"
HOMEPAGE="http://pyasn1.sourceforge.net/ https://pypi.python.org/pypi/pyasn1"
SRC_URI="https://github.com/etingof/pyasn1/archive/v${PV}.tar.gz -> ${P}.tar.gz"
# The required doc/source/conf.py file is missing from the pypi:
# https://github.com/etingof/pyasn1/issues/35
#SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="doc"

RDEPEND=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"

python_test() {
esetup.py test || die "Tests fail with ${EPYTHON}"
}

src_compile() {
if use doc; then
python_setup
esetup.py build_sphinx
fi
distutils-r1_src_compile
}

src_install() {
local HTML_DOCS
use doc && HTML_DOCS=( build/sphinx/html/. )

distutils-r1_src_install
}
43 changes: 43 additions & 0 deletions dev-python/pyasn1/pyasn1-0.3.6.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )

inherit distutils-r1

DESCRIPTION="ASN.1 library for Python"
HOMEPAGE="http://pyasn1.sourceforge.net/ https://pypi.python.org/pypi/pyasn1"
SRC_URI="https://github.com/etingof/pyasn1/archive/v${PV}.tar.gz -> ${P}.tar.gz"
# The required doc/source/conf.py file is missing from the pypi:
# https://github.com/etingof/pyasn1/issues/35
#SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="doc"

RDEPEND=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"

python_test() {
esetup.py test || die "Tests fail with ${EPYTHON}"
}

src_compile() {
if use doc; then
python_setup
esetup.py build_sphinx
fi
distutils-r1_src_compile
}

src_install() {
local HTML_DOCS
use doc && HTML_DOCS=( build/sphinx/html/. )

distutils-r1_src_install
}
43 changes: 43 additions & 0 deletions dev-python/pyasn1/pyasn1-0.3.7.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )

inherit distutils-r1

DESCRIPTION="ASN.1 library for Python"
HOMEPAGE="http://pyasn1.sourceforge.net/ https://pypi.python.org/pypi/pyasn1"
SRC_URI="https://github.com/etingof/pyasn1/archive/v${PV}.tar.gz -> ${P}.tar.gz"
# The required doc/source/conf.py file is missing from the pypi:
# https://github.com/etingof/pyasn1/issues/35
#SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="doc"

RDEPEND=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"

python_test() {
esetup.py test || die "Tests fail with ${EPYTHON}"
}

src_compile() {
if use doc; then
python_setup
esetup.py build_sphinx
fi
distutils-r1_src_compile
}

src_install() {
local HTML_DOCS
use doc && HTML_DOCS=( build/sphinx/html/. )

distutils-r1_src_install
}
1 change: 1 addition & 0 deletions dev-python/pyaxmlparser/Manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DIST pyaxmlparser-0.3.7.tar.gz 28475 SHA256 b95f9f06cdf5c26b83835011da234c08758c06fe428ade301bcc19a691c8fcea SHA512 67e8bac54a25f05ba4a3b5c59e247772c98dd5fdabf414670a8829a7d5f054d080e6fbe79cadce5343210cb11a5753195b28b1db8460070180c8c98477d2520d WHIRLPOOL a018ab995d3f485f34dd9fbaf337f4048d1970a0b32b51af8dc19726f198f4cd283198d8398983ffa5614ef0f6841626959bb97cd493c3b7c883aeafc9df6bef
20 changes: 20 additions & 0 deletions dev-python/pyaxmlparser/pyaxmlparser-0.3.7.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

PYTHON_COMPAT=( python3_{4,5,6} )
inherit distutils-r1

DESCRIPTION="Parser for Android XML file and get Application Name without using Androguard"
HOMEPAGE="https://github.com/appknox/pyaxmlparser"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="MIT"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE=""

RDEPEND=""
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]"
1 change: 1 addition & 0 deletions dev-python/pybonjour/Manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DIST pybonjour-1.1.1.tar.gz 18672 SHA256 006175b0fa6ef555fe8970132db81332827662a680d5f64dcb005bfcc80299ad SHA512 4d2d8d51f37c600d123ad0d2bb83b55b1c07faa1bf0a336e28dadd715234a3c2ed30082f7b1c49dcaa8cb469223932520086275e3151bcd796d70118af9aff1f WHIRLPOOL 1626568a9a3127b3707f0ea2405d5b3a6a05c5d0bb09920aeff7b0e5c41fb3cb59394cc4a126be8355fa2d97c08aaa8d4207141a664996406c18ba47b028b13f
22 changes: 22 additions & 0 deletions dev-python/pybonjour/pybonjour-1.1.1.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="5"

PYTHON_COMPAT=( python{2_6,2_7} )

inherit distutils-r1

DESCRIPTION="Python interface to Apple Bonjour and compatible DNS-SD libraries (Avahi)"
HOMEPAGE="http://code.google.com/p/pybonjour/"
SRC_URI="http://pybonjour.googlecode.com/files/${P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

RDEPEND="dev-python/setuptools
net-dns/avahi[mdnsresponder-compat]"
DEPEND=""
1 change: 1 addition & 0 deletions dev-python/pygtail/Manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DIST pygtail-0.7.0.tar.gz 5171 SHA256 1888a04f630b1a78548373241eed89192842487eeeaccad64ccd3eef57a4a67b SHA512 b12b9a54981b886440e00cfd62923adf671c3edd024308aa4f22efbcddb75ddb2c2f73a48a8e673da8fe53d254855f70b19726145397a9f3a8bc96a7707da265 WHIRLPOOL fbfa24e53f64ddf2c2797c042734853ae68b1bf74167c694b10ad87d48da8a16eb040c6ce8fa79fe917f288d3b5e82c1e9a80a9b69246771d8a5f74d08da0fcd
20 changes: 20 additions & 0 deletions dev-python/pygtail/pygtail-0.7.0.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=5

PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
inherit distutils-r1

DESCRIPTION="Reads log file lines that have not been read"
HOMEPAGE="https://github.com/bgreenlee/pygtail"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

RDEPEND=""
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]"
1 change: 1 addition & 0 deletions dev-python/pynetfilter_conntrack/Manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DIST pynetfilter_conntrack-0.4.2.tar.gz 21160 SHA256 18b2abdb3a2087cfd0602f28ceff3c735b2bb38f13eec50ca49e7eeaf6d7bc59 SHA512 7d886a0ed47028e74f9d520f2970279d7744b6346b4b1a609a52a5c3255e578eb4731d490c52878688e87b6e7c51e13e9e16a8acf068802f25f8d33fdd3d10ec WHIRLPOOL b41603f553ed48158d9ca8cf81be77e60b0fde54bee3bb9e6ccb2ff0705807f08aa5ae1f6fb37feb7a3bfdbb737f9e19c977b2a6767a1b44ab3346b6aeb39ca3
Loading

0 comments on commit a897639

Please sign in to comment.