Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/silo/
Date: Sun, 27 Dec 2020 10:52:25
Message-Id: 1609066336.68e519077027a0913bdae771a80f7694c20b5e86.slyfox@gentoo
1 commit: 68e519077027a0913bdae771a80f7694c20b5e86
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 27 10:48:50 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 27 10:52:16 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68e51907
7
8 sys-boot/silo: drop old
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
12
13 sys-boot/silo/Manifest | 1 -
14 sys-boot/silo/silo-1.4.14_p20170829.ebuild | 66 ------------------------------
15 2 files changed, 67 deletions(-)
16
17 diff --git a/sys-boot/silo/Manifest b/sys-boot/silo/Manifest
18 index 08d80150537..21a7b23314e 100644
19 --- a/sys-boot/silo/Manifest
20 +++ b/sys-boot/silo/Manifest
21 @@ -1,2 +1 @@
22 -DIST silo-1.4.14_p20170829.tar.gz 183612 BLAKE2B 88fb4b0ce4e9b8fa9518bcb6226f4fe9ec7011bf3f73d9f0f1562ff837217ca8d54ee783eed0b50096b009fc56527be8e4211623f5b0e4ef5372c38c0fe304f1 SHA512 bda31084ba2ee5b01d331fd390cbccf039dc812debe25f3af97dd5d2855668cbe7e160dee4ca45c16af1fa4aa86224daf3b474fd49b22a8b7f453584a12f3c2b
23 DIST silo-1.4.14_p20200602.tar.gz 183668 BLAKE2B e229cdb9fbc5f0111aa49919f4b3b91c0770492fa06f91bda15c65af160b728b9409365c3ff0a93091b1e3011c60d0b0bec1101ffabaddbaef7e1083158830b1 SHA512 7a70fe25c1bb3ce655e4fbb85b00fe0d29fe0a6f98b80c1b8267b72bc9324ac0749cd050921163cc286e094f7d9bc81315d63ff02d2442b5c30ce350a537fcc1
24
25 diff --git a/sys-boot/silo/silo-1.4.14_p20170829.ebuild b/sys-boot/silo/silo-1.4.14_p20170829.ebuild
26 deleted file mode 100644
27 index 9fe244c7d56..00000000000
28 --- a/sys-boot/silo/silo-1.4.14_p20170829.ebuild
29 +++ /dev/null
30 @@ -1,66 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit mount-boot flag-o-matic toolchain-funcs vcs-snapshot
37 -
38 -MY_SNAPSHOT="${PN}-2506051d55dd5cb9fe10b4e978e22fa00363044b"
39 -
40 -DESCRIPTION="SPARC/UltraSPARC Improved Loader, a boot loader for sparc"
41 -SRC_URI="https://git.kernel.org/pub/scm/linux/kernel/git/davem/silo.git/snapshot/${MY_SNAPSHOT}.tar.gz -> ${P}.tar.gz"
42 -HOMEPAGE="https://git.kernel.org/?p=linux/kernel/git/davem/silo.git;a=summary"
43 -
44 -SLOT="0"
45 -LICENSE="GPL-2"
46 -KEYWORDS="-* sparc"
47 -IUSE=""
48 -
49 -DEPEND="sys-fs/e2fsprogs
50 - sys-apps/sparc-utils"
51 -RDEPEND=""
52 -
53 -ABI_ALLOW="sparc32"
54 -
55 -src_prepare() {
56 - default
57 -
58 - # Set the correct version
59 - sed -i -e "s/1.4.14/1.4.14_git20170829/g" Rules.make || die
60 -
61 - # Fix build failure
62 - # -fno-PIC is needed to shrink silo size back to manageable on
63 - # profiles where gcc has -fPIC default (via --enable-default-pie).
64 - sed -i -e "s/-fno-strict-aliasing/-fno-strict-aliasing -U_FORTIFY_SOURCE -mcpu=v9 -fno-PIC/g" Rules.make || die
65 -
66 - # Don't strip ieee32.b during compile
67 - sed -i -e '/^ $(STRIP) ieee32.b/d' first/Makefile || die
68 -}
69 -
70 -src_compile() {
71 - filter-flags "-fstack-protector"
72 -
73 - emake CC="$(tc-getCC)" \
74 - STRIP="$(tc-getSTRIP)" \
75 - NM="$(tc-getNM)" \
76 - LD="$(tc-getLD)"
77 -}
78 -
79 -src_install() {
80 - default
81 -
82 - dodoc first-isofs/README.SILO_ISOFS docs/README*
83 -
84 - # Fix maketilo manpage
85 - rm "${D}"/usr/share/man/man1/maketilo.1
86 - dosym tilo.1 /usr/share/man/man1/maketilo.1
87 -}
88 -
89 -pkg_postinst() {
90 - mount-boot_pkg_postinst
91 - ewarn "NOTE: If this is an upgrade to an existing SILO install,"
92 - ewarn " you will need to re-run silo as the /boot/second.b"
93 - ewarn " file has changed, else the system will fail to load"
94 - ewarn " SILO at the next boot."
95 - ewarn
96 -}