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.2.0.ebuild ChangeLog
Date: Tue, 06 May 2014 07:55:29
Message-Id: 20140506075525.2CC002004C@flycatcher.gentoo.org
1 patrick 14/05/06 07:55:25
2
3 Modified: ChangeLog
4 Added: hyperdex-1.2.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.17 dev-db/hyperdex/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/ChangeLog?rev=1.17&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/ChangeLog?rev=1.17&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/ChangeLog?r1=1.16&r2=1.17
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-db/hyperdex/ChangeLog,v
20 retrieving revision 1.16
21 retrieving revision 1.17
22 diff -u -r1.16 -r1.17
23 --- ChangeLog 21 Feb 2014 03:34:49 -0000 1.16
24 +++ ChangeLog 6 May 2014 07:55:25 -0000 1.17
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.16 2014/02/21 03:34:49 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-db/hyperdex/ChangeLog,v 1.17 2014/05/06 07:55:25 patrick Exp $
30 +
31 +*hyperdex-1.2.0 (06 May 2014)
32 +
33 + 06 May 2014; Patrick Lauer <patrick@g.o> +hyperdex-1.2.0.ebuild:
34 + Bump
35
36 *hyperdex-1.1.0 (21 Feb 2014)
37
38
39
40
41 1.1 dev-db/hyperdex/hyperdex-1.2.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/hyperdex-1.2.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/hyperdex-1.2.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: hyperdex-1.2.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.2.0.ebuild,v 1.1 2014/05/06 07:55:25 patrick Exp $
51 EAPI=5
52
53 RESTRICT="test"
54 PYTHON_DEPEND="2:2.6"
55 inherit eutils python autotools
56
57 DESCRIPTION="A searchable distributed Key-Value Store"
58
59 HOMEPAGE="http://hyperdex.org"
60 SRC_URI="http://hyperdex.org/src/${P}.tar.gz
61 http://dev.gentooexperimental.org/~patrick/autotools-java.tar"
62 LICENSE="BSD"
63 SLOT="0"
64 KEYWORDS="~amd64"
65
66 IUSE="+python"
67 # need to add ruby and java useflags too
68
69 DEPEND="dev-cpp/glog
70 dev-cpp/sparsehash
71 dev-libs/cityhash
72 dev-libs/libpo6
73 dev-libs/libe
74 dev-libs/busybee
75 dev-libs/popt
76 dev-libs/replicant
77 dev-libs/json-c"
78 RDEPEND="${DEPEND}"
79
80 pkg_setup() {
81 python_set_active_version 2
82 }
83
84 src_prepare() {
85 cp "${WORKDIR}/"*.m4 m4/
86 sed -i -e 's~json/json.h~json-c/json.h~' configure.ac common/datatype_document.cc daemon/index_document.cc || die "Blergh!"
87 eautoreconf
88 }
89 src_configure() {
90 econf --disable-static \
91 $(use_enable python python-bindings)
92 }
93
94 src_install() {
95 emake DESTDIR="${D}" install || die "Failed to install"
96 newinitd "${FILESDIR}/hyperdex.initd" hyperdex || die "Failed to install init script"
97 newconfd "${FILESDIR}/hyperdex.confd" hyperdex || die "Failed to install config file"
98 find "${D}" -name '*.la' -exec rm {} \; # bad buildsystem! bad!
99 }