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