summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/mother')
-rw-r--r--dev-python/mother/ChangeLog24
-rw-r--r--dev-python/mother/Manifest4
-rw-r--r--dev-python/mother/metadata.xml5
-rw-r--r--dev-python/mother/mother-0.6.4-r5.ebuild41
4 files changed, 0 insertions, 74 deletions
diff --git a/dev-python/mother/ChangeLog b/dev-python/mother/ChangeLog
deleted file mode 100644
index 9e7c1f459..000000000
--- a/dev-python/mother/ChangeLog
+++ /dev/null
@@ -1,24 +0,0 @@
-# ChangeLog for dev-python/mother
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
- 20 Jul 2010; Johan Bergström (jbergstroem) <bugs@bergstroem.nu>
- -mother-0.5.5.ebuild, +mother-0.6.4-r5.ebuild:
- Version bump, add use flags and switch to new python ebuild syntax
-
- 19 Jun 2007; Ali Polatel (hawking) <polatel@gmail.com>
- -mother-0.5.2.ebuild, +mother-0.5.5.ebuild:
- version bump
-
- 26 Apr 2007; Ali Polatel (hawking) <polatel@gmail.com>
- -mother-0.4.6.ebuild, +mother-0.5.2.ebuild:
- version bump
-
- 26 Apr 2007; Ali Polatel (hawking) <polatel@gmail.com>
- mother-0.4.6.ebuild:
- Remove inherit eutils
-
- 13 Feb 2007; Federico Tomassini (efphe) <effetom@gmail.com>
- mother-0.4.6.ebuild, +metadata.xml:
- Correct (i hope) Ebuild for bug 166248
-
diff --git a/dev-python/mother/Manifest b/dev-python/mother/Manifest
deleted file mode 100644
index d0fc6a697..000000000
--- a/dev-python/mother/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-DIST mother-0.6.4-r5.tgz 91825 RMD160 d2444022fa2592d3aa6d0056a1252509831d6e91 SHA1 4e5a3cdd91c752115267d97a8d27c4a0057266fb SHA256 38f149cfc7d4c9aecd0baeb4ae6031007f6f43dbbff57eb3862d00e338438351
-EBUILD mother-0.6.4-r5.ebuild 802 RMD160 34c8e4ac319beed4b9243426b34e6d8f45b7018e SHA1 125dc055c8e128c7d39ffa81345abec9a2b78fbd SHA256 228ba82132b6c69b9042748bfe999a93ce7ba6502ff8973b5e580211580a7f1d
-MISC ChangeLog 789 RMD160 2ea2fede278b31953aa9200d3ec4874ac51e1ecb SHA1 690253b81d50427a477300583c799f958f2d757b SHA256 803a7e32263b2826458c581d20e71353f1a9c625825923cabcaba286bef829d0
-MISC metadata.xml 208 RMD160 c18611400760e42bdd001905be0a63c2e963bcea SHA1 595816105cac477cb85792a182e15888029118a1 SHA256 c4841c87f0c2b9b5e679a27dc72180be8d508fb3f5df0fbab2ec2c805c0a6d82
diff --git a/dev-python/mother/metadata.xml b/dev-python/mother/metadata.xml
deleted file mode 100644
index 31dc017fa..000000000
--- a/dev-python/mother/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer><email>maintainer-wanted@gentoo.org</email></maintainer>
-</pkgmetadata>
diff --git a/dev-python/mother/mother-0.6.4-r5.ebuild b/dev-python/mother/mother-0.6.4-r5.ebuild
deleted file mode 100644
index e8ecb97f3..000000000
--- a/dev-python/mother/mother-0.6.4-r5.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="2"
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-
-inherit distutils
-
-DESCRIPTION="An Object Relational Mapper with strong introspection"
-HOMEPAGE="http://www.dbmother.org/"
-SRC_URI="http://www.dbmother.org/download/${PF}.tgz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc examples +postgres sqlite"
-
-RDEPEND="
- sqlite? ( dev-python/apsw )
- postgres? ( >=dev-python/psycopg-2.0 )"
-DEPEND="${RDEPEND}"
-RESTRICT_PYTHON_ABIS="3.*"
-
-S=${WORKDIR}/${PF}
-
-src_install() {
- distutils_src_install
-
- doman doc/mothermapper.1 || die
-
- if use examples; then
- insinto /usr/share/doc/${PF}/examples
- doins examples/* || die
- fi
-
- if use doc; then
- dodoc doc/manual.* || die
- fi
-}