Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/elliptics-eblob: elliptics-eblob-0.18.0.ebuild ChangeLog
Date: Mon, 28 Jan 2013 07:53:36
Message-Id: 20130128075333.9A0FD2171D@flycatcher.gentoo.org
1 patrick 13/01/28 07:53:33
2
3 Modified: ChangeLog
4 Added: elliptics-eblob-0.18.0.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.3 net-misc/elliptics-eblob/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/elliptics-eblob/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/elliptics-eblob/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/elliptics-eblob/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-misc/elliptics-eblob/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 24 Oct 2012 09:38:19 -0000 1.2
24 +++ ChangeLog 28 Jan 2013 07:53:33 -0000 1.3
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-misc/elliptics-eblob
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/elliptics-eblob/ChangeLog,v 1.2 2012/10/24 09:38:19 patrick Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-misc/elliptics-eblob/ChangeLog,v 1.3 2013/01/28 07:53:33 patrick Exp $
31 +
32 +*elliptics-eblob-0.18.0 (28 Jan 2013)
33 +
34 + 28 Jan 2013; Patrick Lauer <patrick@g.o>
35 + +elliptics-eblob-0.18.0.ebuild:
36 + Bump
37
38 24 Oct 2012; Patrick Lauer <patrick@g.o> elliptics-eblob-0.0.1.ebuild:
39 Fixing header
40
41
42
43 1.1 net-misc/elliptics-eblob/elliptics-eblob-0.18.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/elliptics-eblob/elliptics-eblob-0.18.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/elliptics-eblob/elliptics-eblob-0.18.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: elliptics-eblob-0.18.0.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-misc/elliptics-eblob/elliptics-eblob-0.18.0.ebuild,v 1.1 2013/01/28 07:53:33 patrick Exp $
53
54 EAPI=5
55 PYTHON_COMPAT="python2_7"
56
57 inherit eutils python-single-r1 flag-o-matic cmake-utils
58
59 DESCRIPTION="The elliptics network - eblob backend"
60 HOMEPAGE="http://www.ioremap.net/projects/elliptics"
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~x86 ~amd64"
64 IUSE="python"
65 RDEPEND="
66 app-arch/snappy
67 dev-libs/openssl
68 dev-libs/boost[python]"
69 DEPEND="${RDEPEND}"
70
71 MY_PN="eblob"
72 SRC_URI="http://dev.gentoo.org/~patrick/${MY_PN}-${PV}.tar.bz2"
73
74 S=${WORKDIR}/${MY_PN}-${PV}
75
76 src_configure(){
77 # 'checking trying to link with boost::python... no' due '-Wl,--as-needed'
78 use python && filter-ldflags -Wl,--as-needed
79 cmake-utils_src_configure
80 }
81
82 pkg_setup() {
83 python-single-r1_pkg_setup
84 }
85
86 src_install() {
87 cmake-utils_src_install
88 mkdir -p "${D}/$(python_get_sitedir)"
89 cp bindings/python/python/eblob.py "${D}/$(python_get_sitedir)" || die "Fail"
90 }