diff options
author | Bryan Østergaard <kloeri@gentoo.org> | 2004-01-30 01:42:56 +0000 |
---|---|---|
committer | Bryan Østergaard <kloeri@gentoo.org> | 2004-01-30 01:42:56 +0000 |
commit | 4318b4a35f1b9ef451d520181704135c0342cc1a (patch) | |
tree | ef08096dd08f66cc8770905acc20c15c78673253 /dev-python | |
parent | HOMEPAGE fix #39823 (diff) | |
download | historical-4318b4a35f1b9ef451d520181704135c0342cc1a.tar.gz historical-4318b4a35f1b9ef451d520181704135c0342cc1a.tar.bz2 historical-4318b4a35f1b9ef451d520181704135c0342cc1a.zip |
New version
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/pysqlite/ChangeLog | 9 | ||||
-rw-r--r-- | dev-python/pysqlite/Manifest | 6 | ||||
-rw-r--r-- | dev-python/pysqlite/files/digest-pysqlite-0.5.0 | 1 | ||||
-rw-r--r-- | dev-python/pysqlite/pysqlite-0.5.0.ebuild | 31 |
4 files changed, 43 insertions, 4 deletions
diff --git a/dev-python/pysqlite/ChangeLog b/dev-python/pysqlite/ChangeLog index a71829b99324..eb1a6378d117 100644 --- a/dev-python/pysqlite/ChangeLog +++ b/dev-python/pysqlite/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/pysqlite -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pysqlite/ChangeLog,v 1.10 2003/06/25 23:18:40 liquidx Exp $ +# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pysqlite/ChangeLog,v 1.11 2004/01/30 01:42:46 kloeri Exp $ + +*pysqlite-0.5.0 (30 Jan 2004) + + 30 Jan 2004; Bryan Østergaard,,, <kloeri@gentoo.org> pysqlite-0.5.0.ebuild: + New version *pysqlite-0.4.3 (26 Jun 2003) diff --git a/dev-python/pysqlite/Manifest b/dev-python/pysqlite/Manifest index ff4e50a7193b..02aa787d3391 100644 --- a/dev-python/pysqlite/Manifest +++ b/dev-python/pysqlite/Manifest @@ -1,8 +1,10 @@ -MD5 8ba4f9e2cff0cf5bdeeca7e32d4533ea ChangeLog 1219 -MD5 71c4638c9c88af75b58e5f5cb54fe008 metadata.xml 159 +MD5 060ba4d5d316348455cee08e46cac983 pysqlite-0.5.0.ebuild 851 MD5 52f03069ffa68c4e74dd0d7064f233a3 pysqlite-0.3.1.ebuild 760 MD5 68c0b031e5cef334fa548a2d9e8b2813 pysqlite-0.4.1.ebuild 761 MD5 452b16e931627336476cd676f1f12bf7 pysqlite-0.4.3.ebuild 764 +MD5 53f74bded61e7ea26f7f86d6b23f5190 ChangeLog 1342 +MD5 71c4638c9c88af75b58e5f5cb54fe008 metadata.xml 159 MD5 e553eec3bb40bcfc1ace7fc8f2e60806 files/digest-pysqlite-0.3.1 129 MD5 2358ec1e5d6c50a9b165a50d31c0e5a8 files/digest-pysqlite-0.4.1 65 MD5 0ea822314660e8462fb5eeb937ce2310 files/digest-pysqlite-0.4.3 65 +MD5 e22e181d47f5ba13aea53db0690bb08e files/digest-pysqlite-0.5.0 65 diff --git a/dev-python/pysqlite/files/digest-pysqlite-0.5.0 b/dev-python/pysqlite/files/digest-pysqlite-0.5.0 new file mode 100644 index 000000000000..c53a266b650a --- /dev/null +++ b/dev-python/pysqlite/files/digest-pysqlite-0.5.0 @@ -0,0 +1 @@ +MD5 ecda08cd4e6d8c2af774a0f74a183122 pysqlite-0.5.0.tar.gz 47362 diff --git a/dev-python/pysqlite/pysqlite-0.5.0.ebuild b/dev-python/pysqlite/pysqlite-0.5.0.ebuild new file mode 100644 index 000000000000..57e8deb173aa --- /dev/null +++ b/dev-python/pysqlite/pysqlite-0.5.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pysqlite/pysqlite-0.5.0.ebuild,v 1.1 2004/01/30 01:42:46 kloeri Exp $ + +inherit distutils + +IUSE="" +DESCRIPTION="Python wrapper for the local database Sqlite" +SRC_URI="mirror://sourceforge/pysqlite/pysqlite-${PV}.tar.gz" +HOMEPAGE="http://pysqlite.sourceforge.net/" + +KEYWORDS="~x86" +LICENSE="pysqlite" +SLOT="0" + +DEPEND="virtual/python + dev-db/sqlite" + +src_unpack() { + unpack ${A} + # distutils expects to find setup.py in ${S} + mv ${WORKDIR}/pysqlite ${S} +} + +src_install() { + distutils_src_install + # Need to do the examples explicitly since dodoc + # doesn't do directories properly + dodir /usr/share/doc/${PF}/examples || die + cp -r ${S}/examples/* ${D}/usr/share/doc/${PF}/examples || die +} |