Gentoo Archives: gentoo-commits

From: "Aaron W. Swenson" <titanofold@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pygresql/
Date: Thu, 14 Feb 2019 11:34:27
Message-Id: 1550144049.d1fffdd56d8db669e24c2c45616434a20322799b.titanofold@gentoo
1 commit: d1fffdd56d8db669e24c2c45616434a20322799b
2 Author: Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 14 11:34:04 2019 +0000
4 Commit: Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 14 11:34:09 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1fffdd5
7
8 dev-python/pygresql: Bump to 5.0.6
9
10 Package-Manager: Portage-2.3.51, Repoman-2.3.11
11 Signed-off-by: Aaron W. Swenson <titanofold <AT> gentoo.org>
12
13 dev-python/pygresql/Manifest | 1 +
14 dev-python/pygresql/pygresql-5.0.6.ebuild | 32 +++++++++++++++++++++++++++++++
15 2 files changed, 33 insertions(+)
16
17 diff --git a/dev-python/pygresql/Manifest b/dev-python/pygresql/Manifest
18 index 62d3219b757..413fdbc0e3d 100644
19 --- a/dev-python/pygresql/Manifest
20 +++ b/dev-python/pygresql/Manifest
21 @@ -1 +1,2 @@
22 DIST PyGreSQL-5.0.4.tar.gz 637569 BLAKE2B 3f7bddb8b5e455ca4f181d254d4d125b89a64d7aaa1440b9ab5d916c395b9d93fc9814269992c134b6fd8a81f436752dbe4d7c06125e683a5257361d428c6a6f SHA512 f177ca3b023c007dafe80369b86a1742ff334137e493c3c19ac8bda0181d2543cd2431b8ab8d2d43f30d681121324bc4f236a9ebbddf1e927b071db7c9b34ea6
23 +DIST PyGreSQL-5.0.6.tar.gz 648481 BLAKE2B 7e1d96b5c09a3d2f0e412504be27fcfa557804ace8a4c24d657f586a8e647f5001da943543d49f6d2bdec48a34017b7379305fb760436065ba7f36ce981d85c2 SHA512 fb42f462d749f824f52dd424464ecc3591e615e7e0d220a63a217797aeb3f05379fab071480946d09779dbdb9028351a596160989066589dde1be18f7d320ac8
24
25 diff --git a/dev-python/pygresql/pygresql-5.0.6.ebuild b/dev-python/pygresql/pygresql-5.0.6.ebuild
26 new file mode 100644
27 index 00000000000..1647a3dc50c
28 --- /dev/null
29 +++ b/dev-python/pygresql/pygresql-5.0.6.ebuild
30 @@ -0,0 +1,32 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +POSTGRES_COMPAT=( 9.{3..6} 10 )
37 +PYTHON_COMPAT=( python2_7 python3_{4..7} )
38 +
39 +inherit distutils-r1 postgres
40 +
41 +MY_P="PyGreSQL-${PV}"
42 +
43 +DESCRIPTION="A Python interface for the PostgreSQL database"
44 +HOMEPAGE="http://www.pygresql.org/"
45 +SRC_URI="mirror://pypi/P/PyGreSQL/${MY_P}.tar.gz"
46 +
47 +LICENSE="POSTGRESQL"
48 +SLOT="0"
49 +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86"
50 +IUSE=""
51 +
52 +DEPEND="${POSTGRES_DEP}"
53 +
54 +RDEPEND="${DEPEND}"
55 +
56 +S="${WORKDIR}/${MY_P}"
57 +
58 +python_install_all() {
59 + local DOCS=( docs/*.rst docs/community/* docs/contents/tutorial.rst )
60 +
61 + distutils-r1_python_install_all
62 +}