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.3.0.ebuild ChangeLog
Date: Thu, 22 May 2014 08:35:53
Message-Id: 20140522083549.CF99A2004C@flycatcher.gentoo.org
1 patrick 14/05/22 08:35:49
2
3 Modified: ChangeLog
4 Added: hyperdex-1.3.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.20 dev-db/hyperdex/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/ChangeLog?rev=1.20&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/ChangeLog?rev=1.20&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/ChangeLog?r1=1.19&r2=1.20
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-db/hyperdex/ChangeLog,v
20 retrieving revision 1.19
21 retrieving revision 1.20
22 diff -u -r1.19 -r1.20
23 --- ChangeLog 7 May 2014 03:59:38 -0000 1.19
24 +++ ChangeLog 22 May 2014 08:35:49 -0000 1.20
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.19 2014/05/07 03:59:38 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-db/hyperdex/ChangeLog,v 1.20 2014/05/22 08:35:49 patrick Exp $
30 +
31 +*hyperdex-1.3.0 (22 May 2014)
32 +
33 + 22 May 2014; Patrick Lauer <patrick@g.o> +hyperdex-1.3.0.ebuild:
34 + Bump
35
36 *hyperdex-9999 (07 May 2014)
37
38
39
40
41 1.1 dev-db/hyperdex/hyperdex-1.3.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/hyperdex-1.3.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/hyperdex-1.3.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: hyperdex-1.3.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.3.0.ebuild,v 1.1 2014/05/22 08:35:49 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 }