Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/statifier/
Date: Thu, 24 Sep 2020 20:20:32
Message-Id: 1600978808.912abc766edede6a7114f5d3a9cf0c60dd853eff.conikost@gentoo
1 commit: 912abc766edede6a7114f5d3a9cf0c60dd853eff
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 24 20:20:08 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 24 20:20:08 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=912abc76
7
8 dev-util/statifier: drop old version
9
10 Package-Manager: Portage-3.0.6, Repoman-3.0.1
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 dev-util/statifier/statifier-1.7.4.ebuild | 58 -------------------------------
14 1 file changed, 58 deletions(-)
15
16 diff --git a/dev-util/statifier/statifier-1.7.4.ebuild b/dev-util/statifier/statifier-1.7.4.ebuild
17 deleted file mode 100644
18 index 7ade05bbc42..00000000000
19 --- a/dev-util/statifier/statifier-1.7.4.ebuild
20 +++ /dev/null
21 @@ -1,58 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -MULTILIB_COMPAT=( abi_x86_{32,64} )
28 -
29 -inherit multilib-build toolchain-funcs
30 -
31 -DESCRIPTION="Statifier is a tool for creating portable, self-containing Linux executables"
32 -HOMEPAGE="http://statifier.sourceforge.net"
33 -SRC_URI="https://sourceforge.net/projects/${PN}/files/${PN}/${PV}/${P}.tar.gz"
34 -
35 -KEYWORDS="amd64 x86"
36 -SLOT="0"
37 -LICENSE="GPL-2"
38 -
39 -RDEPEND="
40 - app-shells/bash
41 - sys-apps/coreutils
42 - virtual/awk
43 -"
44 -
45 -PATCHES=(
46 - "${FILESDIR}"/${PN}-1.7.4-clang.patch
47 - "${FILESDIR}"/${PN}-1.7.4-fix-build-system.patch
48 - "${FILESDIR}"/${PN}-1.7.4-musl.patch
49 -)
50 -
51 -src_prepare() {
52 - default
53 -
54 - # Don't compile 32-bit on amd64 no-multilib profile
55 - if ! use abi_x86_32; then
56 - sed -i -e 's/ELF32 .*/ELF32 := no/g' configs/config.x86_64 || die
57 - fi
58 -}
59 -
60 -src_configure() {
61 - tc-export CC
62 -
63 - # Fix permissions, as configure is not marked executable
64 - chmod +x configure || die
65 - econf
66 -}
67 -
68 -src_compile() {
69 - # Package complains with MAKEOPTS > -j1
70 - emake -j1
71 -}
72 -
73 -src_install() {
74 - # Package complains with MAKEOPTS > -j1
75 - emake -j1 DESTDIR="${D}" install
76 -
77 - # Install docs
78 - einstalldocs
79 -}