Gentoo Archives: gentoo-commits

From: "William Hubbs (williamh)" <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/lmctfy: lmctfy-0.5.0-r1.ebuild ChangeLog
Date: Wed, 08 Jul 2015 16:14:42
Message-Id: 20150708161429.4BE3A75B@oystercatcher.gentoo.org
1 williamh 15/07/08 16:14:29
2
3 Modified: ChangeLog
4 Added: lmctfy-0.5.0-r1.ebuild
5 Log:
6 Go is only a build time dependency, and we need a slot dep so a rebuild will happen when Go is updated.
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0x30C46538)
9
10 Revision Changes Path
11 1.8 sys-apps/lmctfy/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/lmctfy/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/lmctfy/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/lmctfy/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/lmctfy/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 26 Apr 2015 23:29:48 -0000 1.7
24 +++ ChangeLog 8 Jul 2015 16:14:29 -0000 1.8
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sys-apps/lmctfy
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/lmctfy/ChangeLog,v 1.7 2015/04/26 23:29:48 mrueg Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/lmctfy/ChangeLog,v 1.8 2015/07/08 16:14:29 williamh Exp $
30 +
31 +*lmctfy-0.5.0-r1 (08 Jul 2015)
32 +
33 + 08 Jul 2015; William Hubbs <williamh@g.o> +lmctfy-0.5.0-r1.ebuild:
34 + Go is only a build time dependency, and we need a slot dep so a rebuild will
35 + happen when Go is updated.
36
37 26 Apr 2015; Manuel RĂ¼ger <mrueg@g.o> -lmctfy-0.1.0.ebuild:
38 Remove old.
39
40
41
42 1.1 sys-apps/lmctfy/lmctfy-0.5.0-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/lmctfy/lmctfy-0.5.0-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/lmctfy/lmctfy-0.5.0-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: lmctfy-0.5.0-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2015 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.5.0-r1.ebuild,v 1.1 2015/07/08 16:14:29 williamh 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 LICENSE="Apache-2.0"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="test"
65
66 COMMON_DEPEND="
67 dev-libs/protobuf
68 >=dev-cpp/gflags-2.1.1
69 dev-libs/re2
70 sys-libs/libapparmor
71 "
72 DEPEND="
73 ${COMMON_DEPEND}
74 dev-lang/go:=
75 "
76 RDEPEND="${COMMON_DEPEND}"
77
78 src_compile() {
79 # test deps take too long to compile
80 use test && emake || emake lmctfy liblmctfy.a
81 }
82
83 src_install() {
84 dobin bin/lmctfy/cli/lmctfy
85 dolib.a bin/liblmctfy.a
86 }