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.4.ebuild ChangeLog hyperdex-1.4.2.ebuild hyperdex-1.4.0.ebuild hyperdex-1.4.3.ebuild
Date: Mon, 01 Sep 2014 03:53:28
Message-Id: 20140901035323.3D2EC4673@oystercatcher.gentoo.org
1 patrick 14/09/01 03:53:23
2
3 Modified: ChangeLog
4 Added: hyperdex-1.4.4.ebuild
5 Removed: hyperdex-1.4.2.ebuild hyperdex-1.4.0.ebuild
6 hyperdex-1.4.3.ebuild
7 Log:
8 Bump
9
10 (Portage version: 2.2.12/cvs/Linux x86_64, unsigned Manifest commit)
11
12 Revision Changes Path
13 1.25 dev-db/hyperdex/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/ChangeLog?rev=1.25&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/ChangeLog?rev=1.25&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/ChangeLog?r1=1.24&r2=1.25
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/dev-db/hyperdex/ChangeLog,v
22 retrieving revision 1.24
23 retrieving revision 1.25
24 diff -u -r1.24 -r1.25
25 --- ChangeLog 26 Aug 2014 09:42:59 -0000 1.24
26 +++ ChangeLog 1 Sep 2014 03:53:23 -0000 1.25
27 @@ -1,6 +1,12 @@
28 # ChangeLog for dev-db/hyperdex
29 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/dev-db/hyperdex/ChangeLog,v 1.24 2014/08/26 09:42:59 patrick Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/dev-db/hyperdex/ChangeLog,v 1.25 2014/09/01 03:53:23 patrick Exp $
32 +
33 +*hyperdex-1.4.4 (01 Sep 2014)
34 +
35 + 01 Sep 2014; Patrick Lauer <patrick@g.o> +hyperdex-1.4.4.ebuild,
36 + -hyperdex-1.4.0.ebuild, -hyperdex-1.4.2.ebuild, -hyperdex-1.4.3.ebuild:
37 + Bump
38
39 *hyperdex-1.4.3 (26 Aug 2014)
40
41
42
43
44 1.1 dev-db/hyperdex/hyperdex-1.4.4.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/hyperdex-1.4.4.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/hyperdex-1.4.4.ebuild?rev=1.1&content-type=text/plain
48
49 Index: hyperdex-1.4.4.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-db/hyperdex/hyperdex-1.4.4.ebuild,v 1.1 2014/09/01 03:53:23 patrick Exp $
54 EAPI=5
55
56 PYTHON_COMPAT=( python2_7)
57 inherit eutils python-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="+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/json-c"
80 RDEPEND="${DEPEND}"
81
82 src_prepare() {
83 cp "${WORKDIR}/"*.m4 m4/
84 sed -i -e 's~json/json.h~json-c/json.h~' configure.ac common/datatype_document.cc daemon/index_document.cc || die "Blergh!"
85 eautoreconf
86 }
87 src_configure() {
88 econf --disable-static \
89 $(use_enable python python-bindings)
90 }
91
92 src_install() {
93 emake DESTDIR="${D}" install || die "Failed to install"
94 newinitd "${FILESDIR}/hyperdex.initd" hyperdex || die "Failed to install init script"
95 newconfd "${FILESDIR}/hyperdex.confd" hyperdex || die "Failed to install config file"
96 find "${D}" -name '*.la' -exec rm {} \; # bad buildsystem! bad!
97 }