diff options
author | Masatomo Nakano <nakano@gentoo.org> | 2005-03-15 18:12:37 +0000 |
---|---|---|
committer | Masatomo Nakano <nakano@gentoo.org> | 2005-03-15 18:12:37 +0000 |
commit | 8e6e318b2034ed14c2cd8f745ccb6814d11bc745 (patch) | |
tree | f8b557825587c65f4703b925c35430ce7516ef52 /dev-db/pgasync | |
parent | New version (#82017). (diff) | |
download | historical-8e6e318b2034ed14c2cd8f745ccb6814d11bc745.tar.gz historical-8e6e318b2034ed14c2cd8f745ccb6814d11bc745.tar.bz2 historical-8e6e318b2034ed14c2cd8f745ccb6814d11bc745.zip |
version bump
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'dev-db/pgasync')
-rw-r--r-- | dev-db/pgasync/ChangeLog | 7 | ||||
-rw-r--r-- | dev-db/pgasync/Manifest | 4 | ||||
-rw-r--r-- | dev-db/pgasync/files/digest-pgasync-2.01 | 1 | ||||
-rw-r--r-- | dev-db/pgasync/pgasync-2.01.ebuild | 27 |
4 files changed, 37 insertions, 2 deletions
diff --git a/dev-db/pgasync/ChangeLog b/dev-db/pgasync/ChangeLog index ff6cb9104ab9..eca7c38c9dee 100644 --- a/dev-db/pgasync/ChangeLog +++ b/dev-db/pgasync/ChangeLog @@ -1,6 +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 $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/pgasync/ChangeLog,v 1.2 2005/03/15 18:12:37 nakano Exp $ + +*pgasync-2.01 (15 Mar 2005) + + 15 Mar 2005; Masatomo Nakano <nakano@gentoo.org> +pgasync-2.01.ebuild: + Version bump. *pgasync-1.15b (01 Mar 2005) diff --git a/dev-db/pgasync/Manifest b/dev-db/pgasync/Manifest index 9445d67175ee..eec47734efe8 100644 --- a/dev-db/pgasync/Manifest +++ b/dev-db/pgasync/Manifest @@ -1,4 +1,6 @@ +MD5 03b12b5099cb615ae5cbe07736da134f pgasync-2.01.ebuild 668 MD5 f4af31ed50b0e2045c22d6b9e96342bb pgasync-1.15b.ebuild 669 -MD5 3722a561e8d4538334dbad8207941859 ChangeLog 408 +MD5 36de36a274dc53b438236206645c56de ChangeLog 527 MD5 f8d3d207746da2a3cd14dcaab8daab76 metadata.xml 163 MD5 d642505d299d0662a7ab78b519a34f72 files/digest-pgasync-1.15b 64 +MD5 e47e6beacaa2f2bca3e02a9cc82e947d files/digest-pgasync-2.01 63 diff --git a/dev-db/pgasync/files/digest-pgasync-2.01 b/dev-db/pgasync/files/digest-pgasync-2.01 new file mode 100644 index 000000000000..c05e97ddf1b7 --- /dev/null +++ b/dev-db/pgasync/files/digest-pgasync-2.01 @@ -0,0 +1 @@ +MD5 0313aeedcb799257952a08def6775129 pgasync-2.01.tar.gz 22314 diff --git a/dev-db/pgasync/pgasync-2.01.ebuild b/dev-db/pgasync/pgasync-2.01.ebuild new file mode 100644 index 000000000000..490d02046ad0 --- /dev/null +++ b/dev-db/pgasync/pgasync-2.01.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-2.01.ebuild,v 1.1 2005/03/15 18:12:37 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 +} |