summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Bronder <jsbronder@gentoo.org>2019-09-04 10:06:04 -0400
committerJustin Bronder <jsbronder@gentoo.org>2019-09-04 10:20:51 -0400
commit87202cb4c3401cc31165592a2bd348ad69ecfec6 (patch)
tree576e7d89f44c982bd6cf21c2939886093ee0f05a
parentdev-python/simplecv: remove (diff)
downloadgentoo-87202cb4c3401cc31165592a2bd348ad69ecfec6.tar.gz
gentoo-87202cb4c3401cc31165592a2bd348ad69ecfec6.tar.bz2
gentoo-87202cb4c3401cc31165592a2bd348ad69ecfec6.zip
dev-python/yenc: remove
Only consumer was net-nntp/sabnzbd which uses its own fork, dev-python/sabyenc now. Signed-off-by: Justin Bronder <jsbronder@gentoo.org>
-rw-r--r--dev-python/yenc/Manifest1
-rw-r--r--dev-python/yenc/files/yenc-remove-cflags.patch11
-rw-r--r--dev-python/yenc/metadata.xml7
-rw-r--r--dev-python/yenc/yenc-0.4.0-r1.ebuild24
4 files changed, 0 insertions, 43 deletions
diff --git a/dev-python/yenc/Manifest b/dev-python/yenc/Manifest
deleted file mode 100644
index bb0c0bf9d548..000000000000
--- a/dev-python/yenc/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST yenc-0.4.0.tar.gz 63156 BLAKE2B 1f33aa66cda2646ac8bfcfd94f9ab904defd3e712ac450a961cc73a56ca2c887eb834f20ade6b9a711110a4c58c42171f4891182175813f317239456eb1e29d1 SHA512 06adf10daa3eb56d1960e48c4a42c432821b8c25fcf6c703560efb9d902dc7619b79509a409f436790506f12f172fe0f0c6c1bf6bff7ab5ce3856b272c62c4d9
diff --git a/dev-python/yenc/files/yenc-remove-cflags.patch b/dev-python/yenc/files/yenc-remove-cflags.patch
deleted file mode 100644
index 27721c727db3..000000000000
--- a/dev-python/yenc/files/yenc-remove-cflags.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- setup.py 2011-09-06 09:04:33.000000000 +0200
-+++ setup.py.NEW 2012-07-07 15:33:13.295906002 +0200
-@@ -33,7 +33,7 @@
- platforms = ["Unix"],
- package_dir = { '': 'lib' },
- py_modules = ["yenc"],
-- ext_modules = [Extension("_yenc",["src/_yenc.c"],extra_compile_args=["-O2","-g"])],
-+ ext_modules = [Extension("_yenc",["src/_yenc.c"])],
- classifiers = [
- "Programming Language :: Python",
- "Programming Language :: Python :: 2.5",
diff --git a/dev-python/yenc/metadata.xml b/dev-python/yenc/metadata.xml
deleted file mode 100644
index 664b1a9c9e03..000000000000
--- a/dev-python/yenc/metadata.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>jsbronder@gentoo.org</email>
- </maintainer>
-</pkgmetadata>
diff --git a/dev-python/yenc/yenc-0.4.0-r1.ebuild b/dev-python/yenc/yenc-0.4.0-r1.ebuild
deleted file mode 100644
index bd25cb3982c7..000000000000
--- a/dev-python/yenc/yenc-0.4.0-r1.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-DESCRIPTION="Module providing raw yEnc encoding/decoding"
-HOMEPAGE="http://www.golug.it/yenc.html"
-SRC_URI="http://www.golug.it/pub/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-# Remove forced CFLAG on setup.py
-PATCHES=( "${FILESDIR}"/${PN}-remove-cflags.patch )
-DOCS=( README TODO CHANGES doc/${PN}-draft.1.3.txt )
-
-python_test() {
- "${PYTHON}" test/test.py || die "Test failed."
-}