Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-doc/halibut/, app-doc/halibut/files/
Date: Thu, 18 Aug 2022 14:59:43
Message-Id: 1660834755.655ce4a88d6bf47b135c364a8b0a233265d2fb8f.asturm@gentoo
1 commit: 655ce4a88d6bf47b135c364a8b0a233265d2fb8f
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 16 20:56:13 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 18 14:59:15 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=655ce4a8
7
8 app-doc/halibut: drop 1.2, EAPI-6--
9
10 Closes: https://bugs.gentoo.org/848528
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-doc/halibut/Manifest | 1 -
14 app-doc/halibut/files/halibut-1.2-fno-common.patch | 22 -----------
15 app-doc/halibut/halibut-1.2.ebuild | 46 ----------------------
16 3 files changed, 69 deletions(-)
17
18 diff --git a/app-doc/halibut/Manifest b/app-doc/halibut/Manifest
19 index 20f9a931aeb7..f285e42d4109 100644
20 --- a/app-doc/halibut/Manifest
21 +++ b/app-doc/halibut/Manifest
22 @@ -1,2 +1 @@
23 -DIST halibut-1.2.tar.gz 991975 BLAKE2B e5751d2f90968240825e3ddadbc070de856f6a340e832bcf0977fb8d31f7b7c8eefa776f3bba4df58641d22cca7e9ac562eef236069e1d9a8e9cdb41324a7376 SHA512 b04cc5c52f2d7cd2bb9a36a1aa896c6a4fd11bcfc5fad3d9c74576bf2576ce237cd7ac3ceeff3bd10dfd5a229614d06d23323509d3a83ff74b4a1965e1d726fc
24 DIST halibut-1.3.tar.gz 995916 BLAKE2B 78a4409ff1f787134f7cd4eb307e77c81865a2591b55b359b0ef7a45b303cd361f85d344972714dfe8b3e823345de715d99ea542bf3cdf63d6d92548d027c27b SHA512 872f0cdb398002843d7e1b19f6eaf80ff848ce5ffee8653fa88da63c57e89efcbfaadc09b476280d25d38136f7d8af286fa98b9b36598515e0eb50f1945ee34a
25
26 diff --git a/app-doc/halibut/files/halibut-1.2-fno-common.patch b/app-doc/halibut/files/halibut-1.2-fno-common.patch
27 deleted file mode 100644
28 index e547e304d9c3..000000000000
29 --- a/app-doc/halibut/files/halibut-1.2-fno-common.patch
30 +++ /dev/null
31 @@ -1,22 +0,0 @@
32 ---- a/bk_paper.c
33 -+++ b/bk_paper.c
34 -@@ -75,6 +75,8 @@
35 - #include "halibut.h"
36 - #include "paper.h"
37 -
38 -+font_info *all_fonts;
39 -+
40 - typedef struct paper_conf_Tag paper_conf;
41 - typedef struct paper_idx_Tag paper_idx;
42 -
43 ---- a/paper.h
44 -+++ b/paper.h
45 -@@ -78,7 +78,7 @@ struct ligature_Tag {
46 - * metrics are read in.
47 - */
48 -
49 --font_info *all_fonts;
50 -+extern font_info *all_fonts;
51 -
52 - struct font_info_Tag {
53 - font_info *next;
54
55 diff --git a/app-doc/halibut/halibut-1.2.ebuild b/app-doc/halibut/halibut-1.2.ebuild
56 deleted file mode 100644
57 index 087a75224d41..000000000000
58 --- a/app-doc/halibut/halibut-1.2.ebuild
59 +++ /dev/null
60 @@ -1,46 +0,0 @@
61 -# Copyright 1999-2021 Gentoo Authors
62 -# Distributed under the terms of the GNU General Public License v2
63 -
64 -EAPI="6"
65 -
66 -inherit toolchain-funcs
67 -
68 -DESCRIPTION="yet another free document preparation system"
69 -HOMEPAGE="https://www.chiark.greenend.org.uk/~sgtatham/halibut/"
70 -SRC_URI="https://www.chiark.greenend.org.uk/~sgtatham/${PN}/${P}/${P}.tar.gz"
71 -
72 -LICENSE="MIT"
73 -SLOT="0"
74 -KEYWORDS="amd64 ppc ~riscv x86"
75 -
76 -PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )
77 -
78 -src_compile() {
79 - tc-export CC
80 - CFLAGS="${CFLAGS}" \
81 - CPPFLAGS="${CPPFLAGS}" \
82 - LFLAGS="${LDFLAGS}" \
83 - BUILDDIR="${S}/build" \
84 - VERSION="${PV}" \
85 - emake
86 - emake -C doc
87 -}
88 -
89 -DOCS=( doc/halibut.txt )
90 -HTML_DOCS=(
91 - doc/index.html
92 - doc/IndexPage.html
93 - doc/input.html
94 - doc/intro.html
95 - doc/licence.html
96 - doc/manpage.html
97 - doc/output.html
98 - doc/running.html
99 -)
100 -
101 -src_install() {
102 - dobin build/halibut
103 - doman doc/halibut.1
104 - doinfo doc/halibut.info
105 - einstalldocs
106 -}