Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/OpenSRF/
Date: Thu, 10 May 2018 19:09:49
Message-Id: 1525979379.0fd0ad6a87e5030e8a61d465a348525bc2ee7ccd.zlogene@gentoo
1 commit: 0fd0ad6a87e5030e8a61d465a348525bc2ee7ccd
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 10 19:06:59 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Thu May 10 19:09:39 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fd0ad6a
7
8 dev-libs/OpenSRF: switch to libmemcached; Minor touchups
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 dev-libs/OpenSRF/OpenSRF-2.1.1.ebuild | 16 ++++++++--------
13 1 file changed, 8 insertions(+), 8 deletions(-)
14
15 diff --git a/dev-libs/OpenSRF/OpenSRF-2.1.1.ebuild b/dev-libs/OpenSRF/OpenSRF-2.1.1.ebuild
16 index 66eff92d51a..7080fd53a10 100644
17 --- a/dev-libs/OpenSRF/OpenSRF-2.1.1.ebuild
18 +++ b/dev-libs/OpenSRF/OpenSRF-2.1.1.ebuild
19 @@ -1,23 +1,23 @@
20 -# Copyright 1999-2016 Gentoo Foundation
21 +# Copyright 1999-2018 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 EAPI=5
25 inherit eutils multilib flag-o-matic apache-module autotools perl-module
26
27 DESCRIPTION="Framework for the high-level development of the Evergreen ILS software"
28 -HOMEPAGE="http://open-ils.org/"
29 +HOMEPAGE="https://open-ils.org/"
30 MY_PN="opensrf" # upstream lowercased the tarball in 2.x
31 MY_P="${MY_PN}-${PV}"
32 -SRC_URI="http://open-ils.org/downloads/${MY_P}.tar.gz"
33 +SRC_URI="https://open-ils.org/downloads/${MY_P}.tar.gz"
34 LICENSE="GPL-2"
35 SLOT="0"
36 -KEYWORDS="~x86 ~amd64"
37 +KEYWORDS="~amd64 ~x86"
38 IUSE="postgres +sqlite"
39 DEPEND=">=www-servers/apache-2.2.9
40 >=dev-db/libdbi-drivers-0.8.2
41 >=dev-db/libdbi-0.8.2
42 net-im/ejabberd
43 - dev-libs/libmemcache
44 + dev-libs/libmemcached
45 dev-perl/Cache-Memcached
46 dev-perl/Class-DBI-AbstractSearch
47 sqlite? ( dev-perl/DBD-SQLite )
48 @@ -86,14 +86,14 @@ src_configure() {
49 }
50
51 src_compile() {
52 - emake || die "main emake failed"
53 + emake
54 cd "${PERL_S}" && S="${PERL_S}" perl-module_src_compile || die "perl-module_src_compile failed"
55 }
56
57 src_install() {
58 einfo "Doing src_install"
59 #emake install-verbose DESTDIR="${D}" || die "Failed to install"
60 - emake install DESTDIR="${D}" APXS2_INSTALL="-i" || die "Failed to install"
61 + emake install DESTDIR="${D}" APXS2_INSTALL="-i"
62 apache-module_src_install || die "apache-module_src_install failed"
63 cd "${PERL_S}" && S="${PERL_S}" perl-module_src_install || die "perl-module_src_install failed"
64 cd "${S}"
65 @@ -103,7 +103,7 @@ src_install() {
66 }
67
68 src_test() {
69 - emake check || die "emake check failed"
70 + emake check
71 cd "${PERL_S}" && S="${PERL_S}" perl-module_src_test || die "perl-module_src_test failed"
72 }