summaryrefslogtreecommitdiff
path: root/dev-python/pgasync
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-08-25 07:36:27 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-08-25 07:36:27 +0100
commit43793fab84041cfc5c60c0151d1591b8a69fb24a (patch)
tree6208a7f4fc744684fce0f55acbb47511acace498 /dev-python/pgasync
parent28e3d252dc8ac8a5635206dfefe1cfe05058d1db (diff)
gentoo resync : 25.08.2018
Diffstat (limited to 'dev-python/pgasync')
-rw-r--r--dev-python/pgasync/Manifest3
-rw-r--r--dev-python/pgasync/metadata.xml12
-rw-r--r--dev-python/pgasync/pgasync-2.01-r1.ebuild31
3 files changed, 0 insertions, 46 deletions
diff --git a/dev-python/pgasync/Manifest b/dev-python/pgasync/Manifest
deleted file mode 100644
index add1d0e2892b..000000000000
--- a/dev-python/pgasync/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST pgasync-2.01.tar.gz 22314 BLAKE2B f38dd79aaacc5dcab815a575664c0052a95e2c9ecba6ff5849f787ed7ee3061a8edd60bd67fa2d33c7f01bdd9e1541281f5972ac14b667775fc6cfc814c155d9 SHA512 36916ce3dcebf82367eace8fd689e0d300ffc040250869794191bfb723053050c9766fa5ce251341c317f7fbab418ace4dc36345d5c73eea92c1d04d36e802af
-EBUILD pgasync-2.01-r1.ebuild 623 BLAKE2B 9f58cb8c109fd0674a51f2bd3baf01a7b0afeef9f434931bc33e705e860692df17cb7da32c8acf9c66058492958134e201d5ff256334fc0d1d1ab0b5285cb0b0 SHA512 a963e57dcc424672fafb86e8f63ebf277112b6da97dcce0021915c20bc037d50b2a78b5822df5d11894a9e459e1962b2795edcf44d12387cd4db3f1f4eafbe55
-MISC metadata.xml 380 BLAKE2B a8661b9c25a221b3605faebdc6ff1e45e72774ffd4f4fbd56a03c959b4c2fc83623db8bfebc2c2d5f4d2247bd9bc9d3e668145157c936145078494d4333e3ec4 SHA512 1ccdbd9de1596dbb5bafcbedc1dee8cf7c7fb422d62cf9b52579e132d2ef59f400c70e94b4c2ae4d669e131ab9ecc8c72189394a313115251b638b3cfb050fb2
diff --git a/dev-python/pgasync/metadata.xml b/dev-python/pgasync/metadata.xml
deleted file mode 100644
index 2f5f34d7943f..000000000000
--- a/dev-python/pgasync/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>pgsql-bugs@gentoo.org</email>
- <name>PostgreSQL and Related Package Development</name>
- </maintainer>
-<maintainer type="project">
- <email>python@gentoo.org</email>
- <name>Python</name>
- </maintainer>
-</pkgmetadata>
diff --git a/dev-python/pgasync/pgasync-2.01-r1.ebuild b/dev-python/pgasync/pgasync-2.01-r1.ebuild
deleted file mode 100644
index 272afddb3b93..000000000000
--- a/dev-python/pgasync/pgasync-2.01-r1.ebuild
+++ /dev/null
@@ -1,31 +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="An asynchronous API to PostgreSQL for twisted"
-HOMEPAGE="https://github.com/jamwt/pgasync"
-SRC_URI="http://www.jamwt.com/pgasync/files/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc"
-
-DEPEND="dev-python/twisted-core[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}"
-
-DOCS="CHANGELOG PKG-INFO README TODO"
-
-src_install() {
- distutils-r1_python_install_all
-
- if use doc; then
- insinto /usr/share/doc/${PF}
- doins -r examples
- fi
-}