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/toybox: toybox-0.4.9.ebuild ChangeLog
Date: Wed, 09 Jul 2014 08:03:04
Message-Id: 20140709080301.2418B2004E@flycatcher.gentoo.org
1 patrick 14/07/09 08:03:01
2
3 Modified: ChangeLog
4 Added: toybox-0.4.9.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/toybox/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/toybox/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/toybox/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/toybox/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/toybox/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 21 Apr 2014 08:18:36 -0000 1.2
24 +++ ChangeLog 9 Jul 2014 08:03:00 -0000 1.3
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-apps/toybox
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/toybox/ChangeLog,v 1.2 2014/04/21 08:18:36 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/toybox/ChangeLog,v 1.3 2014/07/09 08:03:00 patrick Exp $
30 +
31 +*toybox-0.4.9 (09 Jul 2014)
32 +
33 + 09 Jul 2014; Patrick Lauer <patrick@g.o> +toybox-0.4.9.ebuild:
34 + Bump
35
36 *toybox-0.4.8 (21 Apr 2014)
37
38
39
40
41 1.1 sys-apps/toybox/toybox-0.4.9.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/toybox/toybox-0.4.9.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/toybox/toybox-0.4.9.ebuild?rev=1.1&content-type=text/plain
45
46 Index: toybox-0.4.9.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/toybox/toybox-0.4.9.ebuild,v 1.1 2014/07/09 08:03:00 patrick Exp $
51
52 EAPI=5
53
54 inherit eutils
55
56 # makefile is stupid
57 RESTRICT="test"
58
59 DESCRIPTION="Common linux commands in a multicall binary"
60 HOMEPAGE="http://landley.net/code/toybox/"
61 SRC_URI="http://landley.net/code/toybox/downloads/${P}.tar.bz2"
62
63 # The source code does not explicitly say that it's BSD, but the author has repeatedly said it
64 LICENSE="BSD-2"
65 SLOT="0"
66 KEYWORDS="~x86 ~amd64"
67 IUSE=""
68
69 src_configure() {
70 make defconfig
71 }
72
73 src_compile() {
74 emake toybox_unstripped
75 }
76
77 src_test() {
78 emake test
79 }
80
81 src_install() {
82 mkdir -p "${D}/usr/bin"
83 cp toybox "${D}/usr/bin" || die
84 }