summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2015-11-05 20:59:46 +0100
committerPacho Ramos <pacho@gentoo.org>2015-11-05 21:00:39 +0100
commit02276cbb920a4a58bf94ddb46575cb2a334c3c39 (patch)
treefe6142a65dd2fe10091c43fdd2a7b356c5fa8ecf /dev-python
parentdev-lang/php: don't depend on versions of sys-libs/db that won't be detected. (diff)
downloadgentoo-02276cbb920a4a58bf94ddb46575cb2a334c3c39.tar.gz
gentoo-02276cbb920a4a58bf94ddb46575cb2a334c3c39.tar.bz2
gentoo-02276cbb920a4a58bf94ddb46575cb2a334c3c39.zip
Remove hard masked package
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/twistedsnmp/Manifest1
-rw-r--r--dev-python/twistedsnmp/metadata.xml11
-rw-r--r--dev-python/twistedsnmp/twistedsnmp-0.3.13-r1.ebuild50
3 files changed, 0 insertions, 62 deletions
diff --git a/dev-python/twistedsnmp/Manifest b/dev-python/twistedsnmp/Manifest
deleted file mode 100644
index 9bc56516e459..000000000000
--- a/dev-python/twistedsnmp/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST TwistedSNMP-0.3.13.tar.gz 56256 SHA256 4e3d20110a3083bf4c602b57c5bcf447182bb0effcb8b0603f5da0314a804cce SHA512 547f7d20d473c11ae26d45c1ceee4670ee7445a18c52038336b00a79edaeb48f2f397e00ef0f5e9293c6334faa16edb8af3c17be124e1c862cc28f9bb4d7ba03 WHIRLPOOL 8b5456e5ee6e01a9429d6ad986bd31bfa973fefedfdc09cbf34234b45927e06b2f1c2dbd7a2d4519b3ff92cb9c9a4032ded3f9e97e353e092efdd17d93b8f71c
diff --git a/dev-python/twistedsnmp/metadata.xml b/dev-python/twistedsnmp/metadata.xml
deleted file mode 100644
index ccc5e3285490..000000000000
--- a/dev-python/twistedsnmp/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <herd>python</herd>
- <maintainer>
- <email>lordvan@gentoo.org</email>
- </maintainer>
- <upstream>
- <remote-id type="sourceforge">twistedsnmp</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/twistedsnmp/twistedsnmp-0.3.13-r1.ebuild b/dev-python/twistedsnmp/twistedsnmp-0.3.13-r1.ebuild
deleted file mode 100644
index 9c15832b622b..000000000000
--- a/dev-python/twistedsnmp/twistedsnmp-0.3.13-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-DISTUTILS_SINGLE_IMPL=1
-
-inherit distutils-r1
-
-MY_PN="TwistedSNMP"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="SNMP protocols and APIs for use with the Twisted networking framework"
-HOMEPAGE="http://twistedsnmp.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="examples test"
-
-RDEPEND="=dev-python/pysnmp-3*[${PYTHON_USEDEP}]
- >=dev-python/twisted-core-1.3[${PYTHON_USEDEP}]"
-DEPEND="test? ( ${RDEPEND} )"
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_setup() {
- python-single-r1_pkg_setup
-}
-
-python_prepare_all() {
- # Disable broken test.
- sed -e "s/test_tableGetWithStart/_&/" -i test/test_get.py || die "sed failed"
- distutils-r1_python_prepare_all
-}
-
-python_test() {
- "${PYTHON}" test/test.py || die "tests failed"
-}
-
-src_install() {
- local HTML_DOCS=( doc/index.html )
- use examples && local EXAMPLES=( doc/examples/. )
- distutils-r1_src_install
- insinto /usr/share/doc/${PF}/html/style/
- doins doc/style/sitestyle.css
-}