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: sys-boot/syslinux/
Date: Thu, 07 Nov 2019 07:19:33
Message-Id: 1573111139.77f18d32f3f0b60cb4329ae55dc9766f226faece.mgorny@gentoo
1 commit: 77f18d32f3f0b60cb4329ae55dc9766f226faece
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 7 07:18:59 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 7 07:18:59 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77f18d32
7
8 sys-boot/syslinux: Drop old (EAPI 0)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 sys-boot/syslinux/Manifest | 1 -
13 sys-boot/syslinux/syslinux-4.07.ebuild | 70 ----------------------------------
14 2 files changed, 71 deletions(-)
15
16 diff --git a/sys-boot/syslinux/Manifest b/sys-boot/syslinux/Manifest
17 index f247daa7748..b9ab5dc8f24 100644
18 --- a/sys-boot/syslinux/Manifest
19 +++ b/sys-boot/syslinux/Manifest
20 @@ -1,4 +1,3 @@
21 -DIST syslinux-4.07.tar.bz2 5761877 BLAKE2B 2fe28f268f896601a045564b1e3dde618d57ebf4098d007f7e45119ad019fa88221658608f88e55d4d09cd297140427cdeaf03a40a2341d732064a0630fe92b5 SHA512 8efbd14803ec74c5ee699a754b4727e4b975c08afd4dbb39f4b7ccdb90743e4459cd4609c6f1065c7b7efaa26c9d465806254891795d363758f35a2fe5704ae5
22 DIST syslinux-5.10.tar.xz 5315660 BLAKE2B 19d6861bb6220fe57e12d8d6118d37b197c3c771e4d2e7a51ce7db39219e3c837e6d1543d7a3927820f3a34da34ce849f9badbaf9cd83cb5ee24fd5ed7b705f2 SHA512 56422e14b4aa53ca1a5811da0582dbbb349aa52b9e78868bbedc24c67ef2420c4d0ac63fd68c7f0adc2c22606196276265d503b5b6f9d3d796d9ce42845bbdb5
23 DIST syslinux-6.03.tar.xz 6855224 BLAKE2B 9caccf8bed4e3c3e87393c9dc8f3b3d267c14469bbf8135a648ea41d8a43a4aedbf2b007c6b9a6853de8866152f5bc33e5ea85fca1db86c5f2fac88d97189b0f SHA512 dd2b2916962b9e93bc1e714182e3ca2a727a229b8afabe913050bcfdd43ee2af51ee3acf79121d8c20caf434583efaa7f3196871e0e07c04d82191323a50fe31
24 DIST syslinux-6.04-pre1.tar.xz 5283272 BLAKE2B 800e5977ed13b26a1756c33d8625e850631b642e26a86e3328196ddd998596693c3a26db0ada4c0ba78a4ba692a1cc01886b6eb693d877ddafcfb325ecdeb639 SHA512 7927dd39be8e2dcf4138a6fea33def67d19d938379d694f15b48fdd2f5924c028b7a9e7bd71d0c7c6630c203e9e2a54296628e530632ad5e6f55b1ebefe8fc98
25
26 diff --git a/sys-boot/syslinux/syslinux-4.07.ebuild b/sys-boot/syslinux/syslinux-4.07.ebuild
27 deleted file mode 100644
28 index 021f559c7eb..00000000000
29 --- a/sys-boot/syslinux/syslinux-4.07.ebuild
30 +++ /dev/null
31 @@ -1,70 +0,0 @@
32 -# Copyright 1999-2019 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=0
36 -
37 -inherit eutils toolchain-funcs
38 -
39 -DESCRIPTION="SYSLINUX, PXELINUX, ISOLINUX, EXTLINUX and MEMDISK bootloaders"
40 -HOMEPAGE="https://syslinux.zytor.com/"
41 -SRC_URI="https://www.kernel.org/pub/linux/utils/boot/syslinux/${PV:0:1}.xx/${P/_/-}.tar.bz2"
42 -
43 -LICENSE="GPL-2"
44 -SLOT="0"
45 -KEYWORDS="-* amd64 x86"
46 -IUSE="custom-cflags"
47 -
48 -RDEPEND="sys-fs/mtools
49 - dev-perl/Crypt-PasswdMD5
50 - dev-perl/Digest-SHA1"
51 -DEPEND="${RDEPEND}
52 - dev-lang/nasm
53 - virtual/os-headers"
54 -
55 -S=${WORKDIR}/${P/_/-}
56 -
57 -# This ebuild is a departure from the old way of rebuilding everything in syslinux
58 -# This departure is necessary since hpa doesn't support the rebuilding of anything other
59 -# than the installers.
60 -
61 -# removed all the unpack/patching stuff since we aren't rebuilding the core stuff anymore
62 -
63 -src_unpack() {
64 - unpack ${A}
65 - cd "${S}"
66 - # Fix building on hardened
67 - epatch "${FILESDIR}"/${PN}-4.05-nopie.patch
68 -
69 - rm -f gethostip #bug 137081
70 -
71 - # Don't prestrip or override user LDFLAGS, bug #305783
72 - local SYSLINUX_MAKEFILES="extlinux/Makefile linux/Makefile mtools/Makefile \
73 - sample/Makefile utils/Makefile"
74 - sed -i ${SYSLINUX_MAKEFILES} -e '/^LDFLAGS/d' || die "sed failed"
75 -
76 - if use custom-cflags; then
77 - sed -i ${SYSLINUX_MAKEFILES} \
78 - -e 's|-g -Os||g' \
79 - -e 's|-Os||g' \
80 - -e 's|CFLAGS[[:space:]]\+=|CFLAGS +=|g' \
81 - || die "sed custom-cflags failed"
82 - else
83 - QA_FLAGS_IGNORED="
84 - /sbin/extlinux
85 - /usr/bin/memdiskfind
86 - /usr/bin/gethostip
87 - /usr/bin/isohybrid
88 - /usr/bin/syslinux
89 - "
90 - fi
91 -
92 -}
93 -
94 -src_compile() {
95 - emake CC="$(tc-getCC)" installer || die
96 -}
97 -
98 -src_install() {
99 - emake INSTALLSUBDIRS=utils INSTALLROOT="${D}" MANDIR=/usr/share/man install || die
100 - dodoc README NEWS doc/*.txt || die
101 -}