Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/hyperdex: hyperdex-1.7.0.ebuild ChangeLog
Date: Fri, 29 May 2015 02:10:11
Message-Id: 20150529021004.A35C8A10@oystercatcher.gentoo.org
1 patrick 15/05/29 02:10:04
2
3 Modified: ChangeLog
4 Added: hyperdex-1.7.0.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.31 dev-db/hyperdex/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/ChangeLog?rev=1.31&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/ChangeLog?rev=1.31&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/ChangeLog?r1=1.30&r2=1.31
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-db/hyperdex/ChangeLog,v
20 retrieving revision 1.30
21 retrieving revision 1.31
22 diff -u -r1.30 -r1.31
23 --- ChangeLog 15 Jan 2015 06:41:51 -0000 1.30
24 +++ ChangeLog 29 May 2015 02:10:04 -0000 1.31
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-db/hyperdex
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-db/hyperdex/ChangeLog,v 1.30 2015/01/15 06:41:51 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-db/hyperdex/ChangeLog,v 1.31 2015/05/29 02:10:04 patrick Exp $
30 +
31 +*hyperdex-1.7.0 (29 May 2015)
32 +
33 + 29 May 2015; Patrick Lauer <patrick@g.o> +hyperdex-1.7.0.ebuild:
34 + Bump
35
36 *hyperdex-1.6.0-r1 (15 Jan 2015)
37
38
39
40
41 1.1 dev-db/hyperdex/hyperdex-1.7.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/hyperdex-1.7.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/hyperdex-1.7.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: hyperdex-1.7.0.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-db/hyperdex/hyperdex-1.7.0.ebuild,v 1.1 2015/05/29 02:10:04 patrick Exp $
51 EAPI=5
52
53 # Tests fail, again
54 RESTRICT="test"
55
56 PYTHON_COMPAT=( python2_7)
57 inherit eutils python-single-r1 autotools
58
59 DESCRIPTION="A searchable distributed Key-Value Store"
60
61 HOMEPAGE="http://hyperdex.org"
62 SRC_URI="http://hyperdex.org/src/${P}.tar.gz
63 http://dev.gentooexperimental.org/~patrick/autotools-java.tar"
64 LICENSE="BSD"
65 SLOT="0"
66 KEYWORDS="~amd64"
67
68 IUSE="test +python"
69 # need to add ruby and java useflags too
70
71 DEPEND="dev-cpp/glog
72 dev-cpp/sparsehash
73 dev-libs/cityhash
74 dev-libs/libpo6
75 dev-libs/libe
76 dev-libs/busybee
77 dev-libs/popt
78 dev-libs/replicant
79 dev-libs/libmacaroons
80 dev-libs/libtreadstone
81 dev-libs/json-c"
82 RDEPEND="${DEPEND}"
83
84 REQUIRED_USE="test? ( python )"
85
86 src_prepare() {
87 cp "${WORKDIR}/"*.m4 m4/
88 sed -i -e 's~json/json.h~json-c/json.h~' configure.ac common/datatype_document.cc daemon/index_document.cc || die "Blergh!"
89 eautoreconf
90 use python && python-single-r1_pkg_setup
91 }
92 src_configure() {
93 econf --disable-static \
94 $(use_enable python python-bindings)
95 }
96
97 src_install() {
98 emake DESTDIR="${D}" install || die "Failed to install"
99 newinitd "${FILESDIR}/hyperdex.initd" hyperdex || die "Failed to install init script"
100 newconfd "${FILESDIR}/hyperdex.confd" hyperdex || die "Failed to install config file"
101 find "${D}" -name '*.la' -exec rm {} \; # bad buildsystem! bad!
102 }