Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/bdelta/
Date: Mon, 02 May 2016 13:59:39
Message-Id: 1462197516.f3476b3f26fb9209c9ca6d3ee4fb3cd2e1839c2c.slyfox@gentoo
1 commit: f3476b3f26fb9209c9ca6d3ee4fb3cd2e1839c2c
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 2 13:58:36 2016 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Mon May 2 13:58:36 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3476b3f
7
8 dev-util/bdelta: drop live ebuild
9
10 Package-Manager: portage-2.2.28
11
12 dev-util/bdelta/bdelta-9999.ebuild | 41 --------------------------------------
13 1 file changed, 41 deletions(-)
14
15 diff --git a/dev-util/bdelta/bdelta-9999.ebuild b/dev-util/bdelta/bdelta-9999.ebuild
16 deleted file mode 100644
17 index a7cdf5a..0000000
18 --- a/dev-util/bdelta/bdelta-9999.ebuild
19 +++ /dev/null
20 @@ -1,41 +0,0 @@
21 -# Copyright 1999-2013 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=4
26 -
27 -if [[ ${PV} = *9999* ]]; then
28 - EGIT_REPO_URI="git://github.com/jjwhitney/BDelta.git"
29 - UNPACKER_ECLASS="git-2"
30 - LIVE_EBUILD=yes
31 -else
32 - UNPACKER_ECLASS="vcs-snapshot"
33 -fi
34 -
35 -inherit multilib toolchain-funcs ${UNPACKER_ECLASS}
36 -
37 -if [[ -z ${LIVE_EBUILD} ]]; then
38 - KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~x86-linux"
39 - SRC_URI="https://github.com/jjwhitney/BDelta/tarball/v${PV} -> ${P}.tar.gz"
40 -fi
41 -
42 -DESCRIPTION="Binary Delta - Efficient difference algorithm and format"
43 -HOMEPAGE="http://bdelta.org"
44 -
45 -SLOT="0"
46 -LICENSE="MPL-2.0"
47 -IUSE=""
48 -
49 -src_compile() {
50 - emake -C src \
51 - CXX="$(tc-getCXX)" \
52 - CXXFLAGS="${CXXFLAGS}"
53 -}
54 -
55 -src_install() {
56 - emake -C src install \
57 - DESTDIR="${D}" \
58 - PREFIX="${EPREFIX}/usr" \
59 - LIBDIR="${EPREFIX}/usr/$(get_libdir)"
60 - dodoc README
61 -}