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_rc3.ebuild ChangeLog
Date: Mon, 25 Feb 2013 05:48:43
Message-Id: 20130225054839.AA5C32171D@flycatcher.gentoo.org
1 patrick 13/02/25 05:48:39
2
3 Modified: ChangeLog
4 Added: hyperdex-1.0_rc3.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.7 dev-db/hyperdex/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-db/hyperdex/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 10 Feb 2013 08:05:41 -0000 1.6
24 +++ ChangeLog 25 Feb 2013 05:48:39 -0000 1.7
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.6 2013/02/10 08:05:41 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-db/hyperdex/ChangeLog,v 1.7 2013/02/25 05:48:39 patrick Exp $
30 +
31 +*hyperdex-1.0_rc3 (25 Feb 2013)
32 +
33 + 25 Feb 2013; Patrick Lauer <patrick@g.o> +hyperdex-1.0_rc3.ebuild:
34 + Bump
35
36 *hyperdex-1.0_rc2 (10 Feb 2013)
37
38
39
40
41 1.1 dev-db/hyperdex/hyperdex-1.0_rc3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/hyperdex-1.0_rc3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/hyperdex/hyperdex-1.0_rc3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: hyperdex-1.0_rc3.ebuild
47 ===================================================================
48 # Copyright 1999-2013 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.0_rc3.ebuild,v 1.1 2013/02/25 05:48:39 patrick Exp $
51 EAPI=4
52
53 PYTHON_DEPEND="2:2.6"
54 inherit eutils python
55
56 DESCRIPTION="A searchable distributed Key-Value Store"
57
58 MY_P="${P/_/.}"
59 S="${WORKDIR}/${MY_P}"
60
61 HOMEPAGE="http://hyperdex.org"
62 SRC_URI="http://hyperdex.org/src/${MY_P}.tar.gz"
63 LICENSE="BSD"
64 SLOT="0"
65 KEYWORDS="~amd64"
66
67 IUSE="+python"
68 # need to add coverage and java useflags too
69
70 DEPEND="dev-cpp/glog
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 RDEPEND="${DEPEND}"
78
79 pkg_setup() {
80 python_set_active_version 2
81 }
82
83 src_configure() {
84 econf --disable-static \
85 $(use_enable python python-bindings)
86 }
87
88 src_install() {
89 emake DESTDIR="${D}" install || die "Failed to install"
90 newinitd "${FILESDIR}/hyperdex.initd" hyperdex || die "Failed to install init script"
91 newconfd "${FILESDIR}/hyperdex.confd" hyperdex || die "Failed to install config file"
92 find ${D} -name '*.la' -exec rm {} \; # bad buildsystem! bad!
93 }