diff options
author | Masatomo Nakano <nakano@gentoo.org> | 2005-03-01 17:39:16 +0000 |
---|---|---|
committer | Masatomo Nakano <nakano@gentoo.org> | 2005-03-01 17:39:16 +0000 |
commit | bbaab66720e6e019f412dd5155d429f3b35ae635 (patch) | |
tree | a89f21ba0a9dfbb079b9863b7b78e7e71379fe67 /dev-db/pgasync | |
parent | added (diff) | |
download | gentoo-2-bbaab66720e6e019f412dd5155d429f3b35ae635.tar.gz gentoo-2-bbaab66720e6e019f412dd5155d429f3b35ae635.tar.bz2 gentoo-2-bbaab66720e6e019f412dd5155d429f3b35ae635.zip |
initial import
(Portage version: 2.0.51.17)
Diffstat (limited to 'dev-db/pgasync')
-rw-r--r-- | dev-db/pgasync/ChangeLog | 11 | ||||
-rw-r--r-- | dev-db/pgasync/Manifest | 2 | ||||
-rw-r--r-- | dev-db/pgasync/files/digest-pgasync-1.15b | 1 | ||||
-rw-r--r-- | dev-db/pgasync/metadata.xml | 5 | ||||
-rw-r--r-- | dev-db/pgasync/pgasync-1.15b.ebuild | 27 |
5 files changed, 46 insertions, 0 deletions
diff --git a/dev-db/pgasync/ChangeLog b/dev-db/pgasync/ChangeLog new file mode 100644 index 000000000000..ff6cb9104ab9 --- /dev/null +++ b/dev-db/pgasync/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for dev-db/pgasync +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/pgasync/ChangeLog,v 1.1 2005/03/01 17:39:16 nakano Exp $ + +*pgasync-1.15b (01 Mar 2005) + + 01 Mar 2005; Masatomo Nakano <nakano@gentoo.org> +metadata.xml, + +pgasync-1.15b.ebuild: + Initial import. Ebuild submitted by Marien Zwart <m_zwart@123mail.org>. + (#83183) + diff --git a/dev-db/pgasync/Manifest b/dev-db/pgasync/Manifest new file mode 100644 index 000000000000..715e83b3464d --- /dev/null +++ b/dev-db/pgasync/Manifest @@ -0,0 +1,2 @@ +MD5 011b2f7e1107580a3df5c4e79bd6b936 pgasync-1.15b.ebuild 572 +MD5 d642505d299d0662a7ab78b519a34f72 files/digest-pgasync-1.15b 64 diff --git a/dev-db/pgasync/files/digest-pgasync-1.15b b/dev-db/pgasync/files/digest-pgasync-1.15b new file mode 100644 index 000000000000..d27b9373f654 --- /dev/null +++ b/dev-db/pgasync/files/digest-pgasync-1.15b @@ -0,0 +1 @@ +MD5 e383618ad9e1278a36b220713740ce00 pgasync-1.15b.tar.gz 21449 diff --git a/dev-db/pgasync/metadata.xml b/dev-db/pgasync/metadata.xml new file mode 100644 index 000000000000..309b51e9a965 --- /dev/null +++ b/dev-db/pgasync/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>postgresql</herd> +</pkgmetadata> diff --git a/dev-db/pgasync/pgasync-1.15b.ebuild b/dev-db/pgasync/pgasync-1.15b.ebuild new file mode 100644 index 000000000000..7c2e5d6fbd81 --- /dev/null +++ b/dev-db/pgasync/pgasync-1.15b.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/pgasync/pgasync-1.15b.ebuild,v 1.1 2005/03/01 17:39:16 nakano Exp $ + +inherit distutils + +DESCRIPTION="An asynchronous api to postgres for twisted." +HOMEPAGE="http://www.jamwt.com/pgasync/" +SRC_URI="http://www.jamwt.com/pgasync/files/${P}.tar.gz" +LICENSE="pgasync" +SLOT="0" + +KEYWORDS="~x86" +IUSE="doc" + +DEPEND=">=dev-python/twisted-1.3 + >=dev-lang/python-2.3" + +DOCS="CHANGELOG LICENSE PKG-INFO README TODO" + +src_install() { + distutils_src_install + if use doc; then + insinto /usr/share/doc/${PF} + doins -r examples + fi +} |