Gentoo Archives: gentoo-commits

From: Marius Brehler <marbre@××××××××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/bloom/
Date: Mon, 28 Nov 2016 21:22:13
Message-Id: 1480367867.66faa0bbd46fe1618bb298f1278186a898f72e47.marbre@gentoo
1 commit: 66faa0bbd46fe1618bb298f1278186a898f72e47
2 Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
3 AuthorDate: Mon Nov 28 21:17:47 2016 +0000
4 Commit: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
5 CommitDate: Mon Nov 28 21:17:47 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=66faa0bb
7
8 sci-libs/bloom: Move SRC_URI from google code to github; Fix compilation
9
10 Still broken, since the Makefile provides no install phase
11
12 Package-Manager: portage-2.3.0
13
14 sci-libs/bloom/bloom-9999.ebuild | 10 +++++-----
15 1 file changed, 5 insertions(+), 5 deletions(-)
16
17 diff --git a/sci-libs/bloom/bloom-9999.ebuild b/sci-libs/bloom/bloom-9999.ebuild
18 index 095d336..495d101 100644
19 --- a/sci-libs/bloom/bloom-9999.ebuild
20 +++ b/sci-libs/bloom/bloom-9999.ebuild
21 @@ -1,15 +1,15 @@
22 -# Copyright 1999-2015 Gentoo Foundation
23 +# Copyright 1999-2016 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 # $Id$
26
27 EAPI=5
28
29 -[ "$PV" == "9999" ] && inherit subversion
30 +[ "$PV" == "9999" ] && inherit git-r3
31
32 DESCRIPTION="C++ Bloom Filter Library"
33 -HOMEPAGE="https://code.google.com/p/bloom"
34 +HOMEPAGE="https://github.com/arashpartow/bloom"
35 if [ "$PV" == "9999" ]; then
36 - ESVN_REPO_URI="http://bloom.googlecode.com/svn/trunk"
37 + EGIT_REPO_URI="https://github.com/ArashPartow/bloom.git"
38 else
39 SRC_URI=""
40 fi
41 @@ -23,6 +23,6 @@ DEPEND=""
42 RDEPEND="${DEPEND}"
43
44 src_prepare(){
45 - sed -e "s#-c++#$(tc-getCC)#;s#-O3#${CXXFLAGS}#" -i Makefile || die
46 + sed -e "s#-c++#$(tc-getCXX)#;s#-O3#${CXXFLAGS}#" -i Makefile || die
47 sed -e "s#-pedantic-errors -ansi -Wall -Wextra -Werror -Wno-long-long##" -i Makefile || die
48 }