Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/lmctfy: lmctfy-0.3.1.ebuild ChangeLog
Date: Sun, 04 May 2014 08:50:15
Message-Id: 20140504085011.5E8092004C@flycatcher.gentoo.org
1 patrick 14/05/04 08:50:11
2
3 Modified: ChangeLog
4 Added: lmctfy-0.3.1.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.4 sys-apps/lmctfy/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/lmctfy/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/lmctfy/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/lmctfy/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/lmctfy/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 3 May 2014 04:12:15 -0000 1.3
24 +++ ChangeLog 4 May 2014 08:50:11 -0000 1.4
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-apps/lmctfy
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/lmctfy/ChangeLog,v 1.3 2014/05/03 04:12:15 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/lmctfy/ChangeLog,v 1.4 2014/05/04 08:50:11 patrick Exp $
30 +
31 +*lmctfy-0.3.1 (04 May 2014)
32 +
33 + 04 May 2014; Patrick Lauer <patrick@g.o> +lmctfy-0.3.1.ebuild:
34 + Bump
35
36 *lmctfy-0.3.0 (03 May 2014)
37
38
39
40
41 1.1 sys-apps/lmctfy/lmctfy-0.3.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/lmctfy/lmctfy-0.3.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/lmctfy/lmctfy-0.3.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: lmctfy-0.3.1.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-apps/lmctfy/lmctfy-0.3.1.ebuild,v 1.1 2014/05/04 08:50:11 patrick Exp $
51
52 EAPI=5
53
54 inherit eutils
55
56 DESCRIPTION="Linux application container management from Google"
57 HOMEPAGE="https://github.com/google/lmctfy"
58 SRC_URI="https://github.com/google/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
59
60 SLOT="0"
61 LICENSE="Apache-2.0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="test"
64
65 DEPEND="
66 dev-libs/protobuf
67 dev-cpp/gflags
68 dev-libs/re2
69 "
70 RDEPEND="${DEPEND}"
71
72 src_compile() {
73 # test deps take too long to compile
74 use test && emake || emake lmctfy liblmctfy.a
75 }
76
77 src_install() {
78 # silly upstream!
79 mkdir -p "${D}/usr/bin"
80 cp "${S}/bin/lmctfy/cli/lmctfy" "${D}/usr/bin/" || die "Failed to copy cli binary"
81 dolib.a "${S}/bin/liblmctfy.a" || die "Failed to copy library"
82 }