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.0.5.ebuild ChangeLog
Date: Mon, 10 Feb 2014 05:53:24
Message-Id: 20140210055319.45D3A2004C@flycatcher.gentoo.org
1 patrick 14/02/10 05:53:19
2
3 Modified: ChangeLog
4 Added: hyperdex-1.0.5.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.14 dev-db/hyperdex/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/ChangeLog?rev=1.14&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/ChangeLog?rev=1.14&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/ChangeLog?r1=1.13&r2=1.14
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-db/hyperdex/ChangeLog,v
20 retrieving revision 1.13
21 retrieving revision 1.14
22 diff -u -r1.13 -r1.14
23 --- ChangeLog 12 Dec 2013 02:46:31 -0000 1.13
24 +++ ChangeLog 10 Feb 2014 05:53:19 -0000 1.14
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-db/hyperdex
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-db/hyperdex/ChangeLog,v 1.13 2013/12/12 02:46:31 patrick Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-db/hyperdex/ChangeLog,v 1.14 2014/02/10 05:53:19 patrick Exp $
31 +
32 +*hyperdex-1.0.5 (10 Feb 2014)
33 +
34 + 10 Feb 2014; Patrick Lauer <patrick@g.o> +hyperdex-1.0.5.ebuild:
35 + Bump
36
37 12 Dec 2013; Patrick Lauer <patrick@g.o> metadata.xml:
38 Remove unneeded useflag from metadata.xml
39
40
41
42 1.1 dev-db/hyperdex/hyperdex-1.0.5.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/hyperdex-1.0.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/hyperdex-1.0.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: hyperdex-1.0.5.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-db/hyperdex/hyperdex-1.0.5.ebuild,v 1.1 2014/02/10 05:53:18 patrick Exp $
52 EAPI=5
53
54 # compile failure in tests, waiting for patch from upstream
55 RESTRICT="test"
56
57 PYTHON_DEPEND="2:2.6"
58 inherit eutils python
59
60 DESCRIPTION="A searchable distributed Key-Value Store"
61
62 HOMEPAGE="http://hyperdex.org"
63 SRC_URI="http://hyperdex.org/src/${P}.tar.gz"
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 RDEPEND="${DEPEND}"
80
81 pkg_setup() {
82 python_set_active_version 2
83 }
84
85 src_configure() {
86 econf --disable-static \
87 $(use_enable python python-bindings)
88 }
89
90 src_install() {
91 emake DESTDIR="${D}" install || die "Failed to install"
92 newinitd "${FILESDIR}/hyperdex.initd" hyperdex || die "Failed to install init script"
93 newconfd "${FILESDIR}/hyperdex.confd" hyperdex || die "Failed to install config file"
94 find "${D}" -name '*.la' -exec rm {} \; # bad buildsystem! bad!
95 }