summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikle Kolyada <zlogene@gentoo.org>2020-01-04 12:51:08 +0300
committerMikle Kolyada <zlogene@gentoo.org>2020-01-04 12:51:08 +0300
commit07df74f05b8fe228a49a2b25ae4b8c553a329e54 (patch)
tree32f6c439b20db5980185557919479c5158d988b0 /dev-python
parentdev-python/simplesettings: remove last-rited pkg (diff)
downloadgentoo-07df74f05b8fe228a49a2b25ae4b8c553a329e54.tar.gz
gentoo-07df74f05b8fe228a49a2b25ae4b8c553a329e54.tar.bz2
gentoo-07df74f05b8fe228a49a2b25ae4b8c553a329e54.zip
dev-python/sclapp: remove last-rited pkg
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/sclapp/Manifest1
-rw-r--r--dev-python/sclapp/files/sclapp-0.5.3-testsuite-fix-from-r235.patch40
-rw-r--r--dev-python/sclapp/metadata.xml8
-rw-r--r--dev-python/sclapp/sclapp-0.5.3-r1.ebuild28
4 files changed, 0 insertions, 77 deletions
diff --git a/dev-python/sclapp/Manifest b/dev-python/sclapp/Manifest
deleted file mode 100644
index 85ec58049da6..000000000000
--- a/dev-python/sclapp/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST sclapp-0.5.3.tar.gz 47646 BLAKE2B 7c36d675c38d9ff79cc7a84d88da0ceb1872d882e997a366c11dd4098172420d691ea2e953197f9a664ceeed337b21a247cb680a40c272e400fea7f5eb58719b SHA512 e615310b2ede517717cf8ef70aca02c070676d71fb8880e381e3cc66d5c6006e47b4dd7c4355dbcb34e76898ce7a7a2e4522454490353970ac185c5d1963e49f
diff --git a/dev-python/sclapp/files/sclapp-0.5.3-testsuite-fix-from-r235.patch b/dev-python/sclapp/files/sclapp-0.5.3-testsuite-fix-from-r235.patch
deleted file mode 100644
index 45965f01b1de..000000000000
--- a/dev-python/sclapp/files/sclapp-0.5.3-testsuite-fix-from-r235.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-=== modified file 'NEWS'
---- NEWS 2009-01-14 11:11:28 +0000
-+++ NEWS 2009-12-21 14:12:02 +0000
-@@ -25,6 +25,9 @@
-
- (Forest Bond)
-
-+ * Fixed output protection test that was failing on some systems.
-+ (Forest Bond)
-+
-
- sclapp 0.5.3 2008-07-21
- =======================
-
-=== modified file 'tests/output_protection.py'
---- tests/output_protection.py 2008-05-18 21:46:03 +0000
-+++ tests/output_protection.py 2009-12-21 14:12:02 +0000
-@@ -109,8 +109,10 @@
- exceptions = ()):
- def test_fn():
- pid = failure_fn(main_fn)
-- assertLogFileContainsExactly('foo', foos)
-- assertLogFileContainsExactly('bar', bars)
-+ if foos is not None:
-+ assertLogFileContainsExactly('foo', foos)
-+ if bars is not None:
-+ assertLogFileContainsExactly('bar', bars)
- for signal in signals:
- assertSignalCaught(signal, pid)
- for exception in exceptions:
-@@ -171,7 +173,7 @@
- 'test_stdout_fails_without_signal_handling_without_output_protection',
- _stdout_fails,
- main_without_signal_handling_without_output_protection,
-- 2, 2, ()
-+ 2, None, ()
- )))
- test_stdout_stderr_fail_without_signal_handling_without_output_protection = (
- staticmethod(_make_test_fn(
-
diff --git a/dev-python/sclapp/metadata.xml b/dev-python/sclapp/metadata.xml
deleted file mode 100644
index 6d2298876faa..000000000000
--- a/dev-python/sclapp/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>sping@gentoo.org</email>
- <name>Sebastian Pipping</name>
- </maintainer>
-</pkgmetadata>
diff --git a/dev-python/sclapp/sclapp-0.5.3-r1.ebuild b/dev-python/sclapp/sclapp-0.5.3-r1.ebuild
deleted file mode 100644
index 9e2c41922be7..000000000000
--- a/dev-python/sclapp/sclapp-0.5.3-r1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-DESCRIPTION="Framework for writing simple command-line applications"
-HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
-SRC_URI="http://www.alittletooquiet.net/media/release/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="dev-python/pexpect[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
- "${FILESDIR}/${P}-testsuite-fix-from-r235.patch"
-)
-
-python_test() {
- esetup.py test
-}