summaryrefslogtreecommitdiff
path: root/dev-python/shm
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-01-15 15:51:32 +0000
committerV3n3RiX <venerix@redcorelinux.org>2020-01-15 15:51:32 +0000
commit21435953e16cda318a82334ddbadb3b5c36d9ea7 (patch)
treee1810a4b135afce04b34862ef0fab2bfaeb8aeca /dev-python/shm
parent7bc9c63c9da678a7e6fceb095d56c634afd22c56 (diff)
gentoo resync : 15.01.2020
Diffstat (limited to 'dev-python/shm')
-rw-r--r--dev-python/shm/Manifest4
-rw-r--r--dev-python/shm/files/shm-1.2.2-compiler.patch11
-rw-r--r--dev-python/shm/metadata.xml8
-rw-r--r--dev-python/shm/shm-1.2.2-r1.ebuild27
4 files changed, 0 insertions, 50 deletions
diff --git a/dev-python/shm/Manifest b/dev-python/shm/Manifest
deleted file mode 100644
index 0df81e1c70a6..000000000000
--- a/dev-python/shm/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-AUX shm-1.2.2-compiler.patch 464 BLAKE2B 3512f44816c1bdb13ef876ce657ff43695814f9fd0ac1639a6585790531f006e3d643817fbfef1c5e7e6ee133ad93565ae5aea001faa4f420a9d2a5e1775bacf SHA512 165d898892eca56abd410ab0c70879055eefe1429afce42df2b0af48f0182c8f926e08772013efbb4551d2a684d425c7c6ea9f280af51ed5745b9ecd860d9ad2
-DIST shm-1.2.2.tar.gz 25258 BLAKE2B 6adc3dd1aa8e5510029b48210e87dba672415bd142cef312717f3c8e6537eda8553adad7054c0fcea5c6226633729ed1cb416384f5aca1cd7d967e03ba1e62d1 SHA512 d3da728d7c314b208b235490ae45b9f9ed4e7ac5c233867844b842ee511e50b684c52e75cc9258d0f65aa93ff2b10bca6a4bebfa6aef9b43d07ab284c0cab2a6
-EBUILD shm-1.2.2-r1.ebuild 662 BLAKE2B dae5a213aa54140666ea9b6d833021e3874676e5d05cb8c7ebaea473700c7ed985b78958274efa20257d2051d3bab54eed5a2298e51484c3121bd236281c81a1 SHA512 457cbd2b5ad0c9357297e9b83ff2ecafead74befa755fea99cc2d326cc179833a89a555d512c16b8bf166af40a16ae20112d9e15b5bfc1abd16d2a4800b68522
-MISC metadata.xml 236 BLAKE2B 167eb58da19caba0e03167e2f209e118ce8a468851bca2790a0353112848fffcd72522497e5f951bf5c6eafa9691fa2a1ad980843cb4170a8194f3b8178ebe16 SHA512 0f2c2a0401b53543eac90eafdd4d11c5913be07f47b968e2892ca92c265adbd9564f02a491ff2607d7031194ba3e50c7720851537341b1541120821c487147a3
diff --git a/dev-python/shm/files/shm-1.2.2-compiler.patch b/dev-python/shm/files/shm-1.2.2-compiler.patch
deleted file mode 100644
index e9e1bd22a3a1..000000000000
--- a/dev-python/shm/files/shm-1.2.2-compiler.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- setup.py 2010-06-26 03:29:30.000000000 +0200
-+++ setup.py 2010-06-26 03:30:10.000000000 +0200
-@@ -84,7 +84,7 @@
- filename = "%d.c" % i
- file(path + filename, "w").write(src % ('_' * i))
-
-- cmd = ["cc", "-c", "-o", "/dev/null", "%s" % path + filename]
-+ cmd = [os.environ.get("CC", "cc"), "-c", "-o", "/dev/null", "%s" % path + filename]
-
- po = popen2.Popen4(cmd)
- if not po.wait(): underscores[i] = True
diff --git a/dev-python/shm/metadata.xml b/dev-python/shm/metadata.xml
deleted file mode 100644
index 9e5274c5b4ae..000000000000
--- a/dev-python/shm/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="project">
- <email>python@gentoo.org</email>
- <name>Python</name>
-</maintainer>
-</pkgmetadata>
diff --git a/dev-python/shm/shm-1.2.2-r1.ebuild b/dev-python/shm/shm-1.2.2-r1.ebuild
deleted file mode 100644
index 5a0f1e3388bd..000000000000
--- a/dev-python/shm/shm-1.2.2-r1.ebuild
+++ /dev/null
@@ -1,27 +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="Python modules to access System V shared memory and semaphores"
-HOMEPAGE="http://nikitathespider.com/python/shm/"
-SRC_URI="http://nikitathespider.com/python/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
-IUSE="examples"
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND=""
-
-PATCHES=( "${FILESDIR}"/${P}-compiler.patch )
-
-python_install_all() {
- dohtml ReadMe.html
- use examples && local EXAMPLES=( demo/. )
- distutils-r1_python_install_all
-}