Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/elt-patches/
Date: Tue, 15 Aug 2017 07:25:36
Message-Id: 1502781921.6e4e568125f19049cb4ec9b30710244616dde8ec.mgorny@gentoo
1 commit: 6e4e568125f19049cb4ec9b30710244616dde8ec
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 15 07:21:57 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 15 07:25:21 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e4e5681
7
8 app-portage/elt-patches: Bump to fix Prefix, #627824
9
10 Fix the Gentoo functions.sh file path to include EPREFIX.
11
12 app-portage/elt-patches/Manifest | 1 +
13 .../elt-patches/elt-patches-20170815.ebuild | 24 ++++++++++++++++++++++
14 2 files changed, 25 insertions(+)
15
16 diff --git a/app-portage/elt-patches/Manifest b/app-portage/elt-patches/Manifest
17 index a9b526074ec..b28be85a1f9 100644
18 --- a/app-portage/elt-patches/Manifest
19 +++ b/app-portage/elt-patches/Manifest
20 @@ -1,2 +1,3 @@
21 DIST elt-patches-20170317.tar.xz 23356 SHA256 24d2665ba560d01160b955ecf46a17433ee879960e3d914698be170b6698dad4 SHA512 28da9a214cd2bccebad45f464a414fedf80fc6b497d1f6b8f30a0a67570a614065ef67ce43316872d94a144de1a154ecd164a47009ebcd7d39128ccc2dd39618 WHIRLPOOL 944e2a1a92485a93b1b236047d8c6394c76b8b68242f8bf3f683511c0357ee351a2823e77707e2737ea247873fd88287120c3fc3af4ed28488bfafb13a0b163b
22 DIST elt-patches-20170422.tar.xz 27864 SHA256 56c5391b8c6958bca081d1eead516917ac6571da283862b2468fe0e2eb33682c SHA512 90867925f797ec815cfd8f45655cbc0bdc5f46e1a84792988ca76aaed97489907a926acf8f50c0499c56f6e70ea7081732f71c74a8d49bf24a6d265a0a4202dc WHIRLPOOL 11e2aa4f74e8648730e7d541d6061ec72f4f2ef40c205a863a381f972931e9441cc2110c7e8d3f71899ffc08d9857a5afa01438d2d2080cc9f2d394cf84c00f5
23 +DIST elt-patches-20170815.tar.xz 27864 SHA256 caf05e2b3bdf1dfc4188a27c703dc68d66d51ea4274edc6a6ebf9918cf1b2340 SHA512 deba10767b6a8cb5e8139e6f47a30e6f8a4a9312adb1d3e0199df24321d89601915fc91003da2d14fda679e7cbd30a4d4cf39d94ba57bce06432eefc168650dd WHIRLPOOL dcf892154407238cbe7874a1d2b976b8bf8260ab47a18cd8d6e543d98fa47442d83cfefca9431a2e4eebae5156f5e31e4d976831558faff8a79da251d45686f2
24
25 diff --git a/app-portage/elt-patches/elt-patches-20170815.ebuild b/app-portage/elt-patches/elt-patches-20170815.ebuild
26 new file mode 100644
27 index 00000000000..84ee7fc5780
28 --- /dev/null
29 +++ b/app-portage/elt-patches/elt-patches-20170815.ebuild
30 @@ -0,0 +1,24 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +DESCRIPTION="Collection of patches for libtool.eclass"
37 +HOMEPAGE="https://gitweb.gentoo.org/proj/elt-patches.git/"
38 +SRC_URI="https://dev.gentoo.org/~mgorny/dist/${P}.tar.xz"
39 +
40 +LICENSE="GPL-2"
41 +SLOT="0"
42 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~x86-cygwin ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~arm64-linux ~ppc64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
43 +IUSE=""
44 +
45 +RDEPEND="sys-apps/gentoo-functions"
46 +DEPEND="app-arch/xz-utils"
47 +
48 +src_compile() {
49 + emake rootprefix="${EPREFIX%/}" libdirname="$(get_libdir)"
50 +}
51 +
52 +src_install() {
53 + emake DESTDIR="${D}" rootprefix="${EPREFIX%/}" install
54 +}