public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Doug Goldstein" <cardoe@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/gnu-efi/
Date: Wed, 19 Aug 2015 04:24:28 +0000 (UTC)	[thread overview]
Message-ID: <1439958245.71c47a97b9a6f9ecf03c150f0d64b2ed19aa5d56.cardoe@gentoo> (raw)

commit:     71c47a97b9a6f9ecf03c150f0d64b2ed19aa5d56
Author:     Doug Goldstein <cardoe <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 19 04:24:05 2015 +0000
Commit:     Doug Goldstein <cardoe <AT> gentoo <DOT> org>
CommitDate: Wed Aug 19 04:24:05 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71c47a97

sys-boot/gnu-efi: version bump

Package-Manager: portage-2.2.20.1

 sys-boot/gnu-efi/Manifest             |  1 +
 sys-boot/gnu-efi/gnu-efi-3.0.3.ebuild | 49 +++++++++++++++++++++++++++++++++++
 2 files changed, 50 insertions(+)

diff --git a/sys-boot/gnu-efi/Manifest b/sys-boot/gnu-efi/Manifest
index acc5cc9..6c99f90 100644
--- a/sys-boot/gnu-efi/Manifest
+++ b/sys-boot/gnu-efi/Manifest
@@ -1,4 +1,5 @@
 DIST gnu-efi-3.0.2.tar.bz2 136134 SHA256 194b580ecdb1fad0e41914845ba064c279afb687855960b58693459e5537b4d7 SHA512 960dc0374dd63dea5eb25e2bf6670d3f7474ebeca2090514c2895b28ff6e058a852958d028eadbe156df4645bd04d1a93ffaae1153861fce6e7da72f8f9dbeec WHIRLPOOL 3e692058a74f3f42867f84fe6af41cc0911280b2a295c441b2c4e27d116f162e0d166fe713b8eb15a6c6a8184037bae34db6ee1f0fdf7c2f9e53ee8215b2cfdb
+DIST gnu-efi-3.0.3.tar.bz2 142229 SHA256 c530f21a15fd9c214dd92d29a6caa20fac989289267512020b6da1f5e6f5b4cb SHA512 0b0582e22344ea8a544aba540b56dc36364febfeb5bb655e87277e638fd4e549214a0cd2079a852d15ee376cd51c33794f65a7efb23be9a7a929e889cd616c8c WHIRLPOOL 79796e2f46086b3cae100cda1f1ace48af0e743d5b0129246b4ebf8fd7b46392550a834085c73798e59163cbcc8778251ed7e1d9c1a9036f888e1de265387f16
 DIST gnu-efi-3.0a.tar.gz 119079 SHA256 661b94996c184216dfd678b8a1ab82bd6afb82c55320841ba9c74db7aebb828a
 DIST gnu-efi_3.0g.orig.tar.gz 272150 SHA256 531971707640faeb994c0b102b9ccf2e1920b97d080e4cb2b6e55ea2318d6af0
 DIST gnu-efi_3.0i-2.diff.gz 4838 SHA256 4488db1978215e06a6e859fb75491d7f5bd5a6821e70be0ba604f0de628a442f SHA512 c4c141f976bc3178b0df44c23b0210eb629007862e7d0333c98ea58d5bc13d9ae523012399097175d916c4159870f50bcd6c282647996bde6619d35b9e9658e0 WHIRLPOOL 2a5f1737dd245332facf7386ff406498ccb417d3ec1ab74dd793e9074b537bee6249620fb92ee76ff54855531fa21ac70ff3d4b06187d89e195bcf03197a24cf

diff --git a/sys-boot/gnu-efi/gnu-efi-3.0.3.ebuild b/sys-boot/gnu-efi/gnu-efi-3.0.3.ebuild
new file mode 100644
index 0000000..508f0a9
--- /dev/null
+++ b/sys-boot/gnu-efi/gnu-efi-3.0.3.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit multilib
+
+DESCRIPTION="Library for build EFI Applications"
+HOMEPAGE="http://gnu-efi.sourceforge.net/"
+SRC_URI="mirror://sourceforge/gnu-efi/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~arm ~arm64 ~ia64 ~x86"
+IUSE=""
+
+DEPEND="sys-apps/pciutils"
+RDEPEND=""
+
+# These objects get run early boot (i.e. not inside of Linux),
+# so doing these QA checks on them doesn't make sense.
+QA_EXECSTACK="usr/*/lib*efi.a:* usr/*/crt*.o"
+
+_emake() {
+	emake \
+		prefix=${CHOST}- \
+		ARCH=${iarch} \
+		PREFIX="${EPREFIX}/usr" \
+		LIBDIR='$(PREFIX)/'"$(get_libdir)" \
+		"$@"
+}
+
+src_compile() {
+	case ${ARCH} in
+		ia64)  iarch=ia64 ;;
+		x86)   iarch=ia32 ;;
+		amd64) iarch=x86_64 ;;
+		*)     die "unknown architecture: $ARCH" ;;
+	esac
+	# The lib subdir uses unsafe archive targets, and
+	# the apps subdir needs gnuefi subdir
+	_emake -j1
+}
+
+src_install() {
+	_emake install PREFIX=/usr INSTALLROOT="${D}"
+	dodoc README* ChangeLog
+}


             reply	other threads:[~2015-08-19  4:24 UTC|newest]

Thread overview: 81+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-19  4:24 Doug Goldstein [this message]
  -- strict thread matches above, loose matches on Subject: below --
2015-09-05 19:32 [gentoo-commits] repo/gentoo:master commit in: sys-boot/gnu-efi/ Mike Gilbert
2015-09-06  2:29 Mike Gilbert
2015-10-23  9:05 Agostino Sarubbo
2015-11-08 19:29 Mikle Kolyada
2015-11-08 19:43 Mike Gilbert
2016-01-16  8:17 Mike Frysinger
2016-01-16  8:17 Mike Frysinger
2016-06-03 16:15 Mike Gilbert
2016-11-18 19:17 Mike Gilbert
2017-02-05  4:23 Mike Gilbert
2017-02-05  4:23 Mike Gilbert
2017-02-05  4:25 Mike Gilbert
2017-02-05  4:39 Mike Gilbert
2017-04-25 23:30 Mike Gilbert
2017-07-02 11:08 Sergei Trofimovich
2017-07-02 11:08 Sergei Trofimovich
2017-07-09 15:14 Mike Gilbert
2017-07-09 15:14 Mike Gilbert
2018-01-27 17:46 Sergei Trofimovich
2018-05-02  6:59 Sergei Trofimovich
2018-07-19 15:22 Mike Gilbert
2019-07-06 19:22 Mike Gilbert
2019-11-25  0:57 Mike Gilbert
2019-11-25  0:57 Mike Gilbert
2020-02-05 14:18 Agostino Sarubbo
2020-02-06  8:26 Sergei Trofimovich
2020-02-07 12:12 Agostino Sarubbo
2020-02-07 13:16 Agostino Sarubbo
2020-04-01 21:14 Sergei Trofimovich
2020-04-07 10:21 Mart Raudsepp
2020-06-24  0:10 Mike Gilbert
2020-06-24  0:10 Mike Gilbert
2020-09-26  9:05 Sergei Trofimovich
2021-08-28 13:47 Mike Gilbert
2021-08-28 13:47 Mike Gilbert
2022-02-09  5:52 Yixun Lan
2022-05-30 20:52 Mike Gilbert
2022-05-30 20:52 Mike Gilbert
2022-08-12 18:16 Mike Gilbert
2022-08-13  5:05 Arthur Zamarin
2022-08-13  6:58 Agostino Sarubbo
2022-08-13  7:08 Agostino Sarubbo
2022-08-14 13:30 Sam James
2023-06-01 20:04 Sam James
2023-06-01 20:05 Sam James
2023-06-01 20:12 Sam James
2023-06-01 20:12 Sam James
2023-09-05 20:49 David Seifert
2023-09-05 20:49 David Seifert
2023-09-06  8:02 David Seifert
2023-11-27 19:22 Sam James
2023-11-27 19:22 Sam James
2023-11-27 20:22 Arthur Zamarin
2023-11-27 20:22 Arthur Zamarin
2024-04-23 19:42 Sam James
2024-04-23 19:42 Sam James
2024-04-23 20:30 Mike Gilbert
2024-05-28 22:01 Sam James
2024-05-29  5:37 Joonas Niilola
2024-05-29 12:15 Sam James
2024-06-17  5:52 Viorel Munteanu
2024-06-17 19:01 Viorel Munteanu
2024-07-25 11:41 Sam James
2024-07-25 11:41 Sam James
2024-07-25 11:47 Sam James
2024-07-25 11:47 Sam James
2024-07-29  6:04 Viorel Munteanu
2024-08-02  4:53 Viorel Munteanu
2024-08-26  4:34 Viorel Munteanu
2024-08-28 15:14 Viorel Munteanu
2024-09-05 12:11 Sam James
2024-09-05 12:11 Sam James
2024-09-05 12:11 Sam James
2024-09-09 18:08 Viorel Munteanu
2024-09-27 17:08 Viorel Munteanu
2024-10-15  4:54 Viorel Munteanu
2024-11-01 17:30 Sam James
2024-11-01 17:38 Arthur Zamarin
2024-11-01 17:38 Arthur Zamarin
2024-11-01 20:42 Sam James

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1439958245.71c47a97b9a6f9ecf03c150f0d64b2ed19aa5d56.cardoe@gentoo \
    --to=cardoe@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox