Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-boot/efibootmgr: efibootmgr-0.12.ebuild ChangeLog
Date: Mon, 29 Jun 2015 01:22:19
Message-Id: 20150629012207.5278473D@oystercatcher.gentoo.org
1 floppym 15/06/29 01:22:07
2
3 Modified: ChangeLog
4 Added: efibootmgr-0.12.ebuild
5 Log:
6 Version bump, bug 553222.
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
9
10 Revision Changes Path
11 1.36 sys-boot/efibootmgr/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/efibootmgr/ChangeLog?rev=1.36&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/efibootmgr/ChangeLog?rev=1.36&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/efibootmgr/ChangeLog?r1=1.35&r2=1.36
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-boot/efibootmgr/ChangeLog,v
20 retrieving revision 1.35
21 retrieving revision 1.36
22 diff -u -r1.35 -r1.36
23 --- ChangeLog 7 Apr 2015 14:46:38 -0000 1.35
24 +++ ChangeLog 29 Jun 2015 01:22:07 -0000 1.36
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-boot/efibootmgr
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/efibootmgr/ChangeLog,v 1.35 2015/04/07 14:46:38 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/efibootmgr/ChangeLog,v 1.36 2015/06/29 01:22:07 floppym Exp $
30 +
31 +*efibootmgr-0.12 (29 Jun 2015)
32 +
33 + 29 Jun 2015; Mike Gilbert <floppym@g.o> +efibootmgr-0.12.ebuild:
34 + Version bump, bug 553222.
35
36 28 Feb 2015; Agostino Sarubbo <ago@g.o> efibootmgr-0.11.0.ebuild:
37 Stable for ia64, wrt bug #537620
38
39
40
41 1.1 sys-boot/efibootmgr/efibootmgr-0.12.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/efibootmgr/efibootmgr-0.12.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/efibootmgr/efibootmgr-0.12.ebuild?rev=1.1&content-type=text/plain
45
46 Index: efibootmgr-0.12.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-boot/efibootmgr/efibootmgr-0.12.ebuild,v 1.1 2015/06/29 01:22:07 floppym Exp $
51
52 EAPI=5
53
54 inherit toolchain-funcs
55
56 DESCRIPTION="User-space application to modify the EFI boot manager"
57 HOMEPAGE="https://github.com/rhinstaller/efibootmgr"
58 SRC_URI="https://github.com/rhinstaller/${PN}/releases/download/${P}/${P}.tar.bz2"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ia64 ~x86"
63 IUSE=""
64
65 RDEPEND="sys-apps/pciutils
66 >=sys-libs/efivar-0.19"
67 DEPEND="${RDEPEND}"
68
69 src_prepare() {
70 sed -i -e s/-Werror// Makefile || die
71 }
72
73 src_configure() {
74 tc-export CC
75 export EXTRA_CFLAGS=${CFLAGS}
76 }
77
78 src_install() {
79 # build system uses perl, so just do it ourselves
80 dosbin src/efibootmgr/efibootmgr
81 doman src/man/man8/efibootmgr.8
82 dodoc AUTHORS README doc/ChangeLog doc/TODO
83 }