Gentoo Archives: gentoo-commits

From: "Jakov Smolić" <jsmolic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/pgmemcache/
Date: Sat, 23 Oct 2021 15:00:08
Message-Id: 1635001151.f22e5d7dffdaea7d844f11380465403d7e7e0136.jsmolic@gentoo
1 commit: f22e5d7dffdaea7d844f11380465403d7e7e0136
2 Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 23 14:16:54 2021 +0000
4 Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 23 14:59:11 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f22e5d7d
7
8 dev-db/pgmemcache: Port to EAPI 8
9
10 Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
11
12 dev-db/pgmemcache/pgmemcache-2.3.0.ebuild | 9 ++++-----
13 1 file changed, 4 insertions(+), 5 deletions(-)
14
15 diff --git a/dev-db/pgmemcache/pgmemcache-2.3.0.ebuild b/dev-db/pgmemcache/pgmemcache-2.3.0.ebuild
16 index 1e794204e9a..b2815416834 100644
17 --- a/dev-db/pgmemcache/pgmemcache-2.3.0.ebuild
18 +++ b/dev-db/pgmemcache/pgmemcache-2.3.0.ebuild
19 @@ -1,23 +1,22 @@
20 -# Copyright 1999-2015 Gentoo Foundation
21 +# Copyright 1999-2021 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=5
25 +EAPI=8
26
27 DESCRIPTION="A PostgreSQL API based on libmemcached to interface with memcached"
28 HOMEPAGE="http://pgfoundry.org/projects/pgmemcache https://github.com/ohmu/pgmemcache"
29 SRC_URI="https://github.com/ohmu/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
30 +
31 LICENSE="MIT"
32 SLOT="0"
33 KEYWORDS="~amd64 ~x86"
34 -IUSE=""
35
36 DEPEND="dev-db/postgresql
37 dev-libs/cyrus-sasl
38 >=dev-libs/libmemcached-1.0.18[sasl]"
39 RDEPEND="${DEPEND}"
40
41 -DOCS=( NEWS README TODO )
42 -
43 src_install() {
44 emake -j1 DESTDIR="${D}" install
45 + einstalldocs
46 }