Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pgspecial/
Date: Wed, 30 Sep 2020 07:54:17
Message-Id: 1601452441.5d889cccc4e2ea1e0a4ab96af8f66790fefaf259.juippis@gentoo
1 commit: 5d889cccc4e2ea1e0a4ab96af8f66790fefaf259
2 Author: Andrea Cerisara <andreacerisara <AT> gmail <DOT> com>
3 AuthorDate: Thu Sep 3 21:26:18 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 30 07:54:01 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d889ccc
7
8 dev-python/pgspecial-1.11.10: version bump
9
10 Signed-off-by: Andrea Cerisara <andreacerisara <AT> gmail.com>
11 Bug: https://bugs.gentoo.org/739652
12 Package-Manager: Portage-3.0.4, Repoman-2.3.23
13 Closes: https://github.com/gentoo/gentoo/pull/17405
14 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
15
16 dev-python/pgspecial/Manifest | 1 +
17 dev-python/pgspecial/metadata.xml | 13 ++++++++++++-
18 dev-python/pgspecial/pgspecial-1.11.10.ebuild | 24 ++++++++++++++++++++++++
19 3 files changed, 37 insertions(+), 1 deletion(-)
20
21 diff --git a/dev-python/pgspecial/Manifest b/dev-python/pgspecial/Manifest
22 index 4da6ac0294c..de95da9f449 100644
23 --- a/dev-python/pgspecial/Manifest
24 +++ b/dev-python/pgspecial/Manifest
25 @@ -1 +1,2 @@
26 +DIST pgspecial-1.11.10.tar.gz 45560 BLAKE2B f4554eb812fadad984f746e8035a7a91f22480321df920bd15b96239c571c13cdf397ea38ea122f0a73167924a902955a1eb50dc865ba1e4445324358c3e3cef SHA512 452f217055873d3d1acff6b9b5016a3e721bffd4349aaa975aefe3ae1e25ca576f90eab13e7f913ebbfb796ac7b81dd8ed63c8e6d055c2ad7f8fd9d72ca8c21a
27 DIST pgspecial-1.11.9.tar.gz 45009 BLAKE2B 3ae53d4225d448c3291d6701caf7388023d140678461a5811673c7cc7ed242fb0c18ea38427210366f58f1886894def348051469c23aff20be7abc5e5c96622f SHA512 b07083ed715a6ac3d1b32ac954b83852fcb154f4b2757fae91ce7c35524576fa8caef5cb7201d313eac783bc956ea89c9d68f099a11c332486d677dfb185caca
28
29 diff --git a/dev-python/pgspecial/metadata.xml b/dev-python/pgspecial/metadata.xml
30 index 7afccfdce85..aa7641b8040 100644
31 --- a/dev-python/pgspecial/metadata.xml
32 +++ b/dev-python/pgspecial/metadata.xml
33 @@ -1,7 +1,18 @@
34 <?xml version="1.0" encoding="UTF-8"?>
35 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
36 <pkgmetadata>
37 - <!-- maintainer-needed -->
38 + <maintainer type="person">
39 + <email>andreacerisara@×××××.com</email>
40 + <name>Andrea Cerisara</name>
41 + </maintainer>
42 + <maintainer type="project">
43 + <email>proxy-maint@g.o</email>
44 + <name>Proxy Maintainers</name>
45 + </maintainer>
46 + <longdescription>
47 + PGSpecial provides an API to execute meta-commands
48 + (AKA "special", or "backslash commands") on PostgreSQL.
49 + </longdescription>
50 <upstream>
51 <remote-id type="github">dbcli/pgspecial</remote-id>
52 </upstream>
53
54 diff --git a/dev-python/pgspecial/pgspecial-1.11.10.ebuild b/dev-python/pgspecial/pgspecial-1.11.10.ebuild
55 new file mode 100644
56 index 00000000000..c35d1714c4d
57 --- /dev/null
58 +++ b/dev-python/pgspecial/pgspecial-1.11.10.ebuild
59 @@ -0,0 +1,24 @@
60 +# Copyright 1999-2020 Gentoo Authors
61 +# Distributed under the terms of the GNU General Public License v2
62 +
63 +EAPI=7
64 +
65 +PYTHON_COMPAT=( python3_{7,8,9} )
66 +inherit distutils-r1
67 +
68 +DESCRIPTION="Python implementation of PostgreSQL meta commands"
69 +HOMEPAGE="https://github.com/dbcli/pgspecial"
70 +SRC_URI="https://github.com/dbcli/pgspecial/archive/v${PV}.tar.gz -> ${P}.tar.gz"
71 +
72 +LICENSE="BSD MIT"
73 +SLOT="0"
74 +KEYWORDS="~amd64 ~x86"
75 +
76 +RDEPEND="
77 + >=dev-python/click-4.1[${PYTHON_USEDEP}]
78 + >=dev-python/psycopg-2.7.4[${PYTHON_USEDEP}]
79 + >=dev-python/sqlparse-0.1.19[${PYTHON_USEDEP}]
80 +"
81 +
82 +distutils_enable_tests pytest
83 +DOCS=( License.txt README.rst changelog.rst )