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