Gentoo Archives: gentoo-commits

From: Ben Kohler <bkohler@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/discount/
Date: Fri, 27 May 2022 14:08:25
Message-Id: 1653660483.09983d4d443f6a3ec1213261d3a301ed0e98c75c.bkohler@gentoo
1 commit: 09983d4d443f6a3ec1213261d3a301ed0e98c75c
2 Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 27 13:55:28 2022 +0000
4 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
5 CommitDate: Fri May 27 14:08:03 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09983d4d
7
8 Revert "app-text/discount: drop 2.2.7b"
9
10 This reverts commit 9718c1a27e32c11a10b2321a69a2f02e72a74a55.
11
12 Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
13
14 app-text/discount/Manifest | 1 +
15 app-text/discount/discount-2.2.7b.ebuild | 67 ++++++++++++++++++++++++++++++++
16 2 files changed, 68 insertions(+)
17
18 diff --git a/app-text/discount/Manifest b/app-text/discount/Manifest
19 index da7336021400..9bab7d77019f 100644
20 --- a/app-text/discount/Manifest
21 +++ b/app-text/discount/Manifest
22 @@ -1 +1,2 @@
23 DIST discount-2.2.7.tar.bz2 102277 BLAKE2B 58ec3bce2b8fc41a090d9b81b4326cbf54e36bf774f4f9ef63c2a2b1d34ba464e9f0a021f19b4fef165da426742af3045a631af005371d1a8a4cd81dc0be3367 SHA512 1b61eb7c625bb50da0dbe97350a0ccbb15930ccaef449c4b4659950907bce3c0564dabf20578379a7fdd0e375f5d4d5b61acd34db474a85e942b60373688bd08
24 +DIST discount-2.2.7b.tar.bz2 102685 BLAKE2B 1af4d47248e4a65ea1517b03d0b1a0b15eb79bdb7d1f00779515e2a1113b2a923f5d9e5d0a93d63cfc6c7257f11d3825d9baa55c7f2252fe3d2513785ab67ae3 SHA512 d68ffb85ae3e6d6ce8a2e506609bd4cb042617e350d113dd632a1ed81adb0b076df75ca4e70e97d43f3a3a2907555a9f28087a3762f41806289c526af3c55806
25
26 diff --git a/app-text/discount/discount-2.2.7b.ebuild b/app-text/discount/discount-2.2.7b.ebuild
27 new file mode 100644
28 index 000000000000..e53c8e7547af
29 --- /dev/null
30 +++ b/app-text/discount/discount-2.2.7b.ebuild
31 @@ -0,0 +1,67 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +inherit toolchain-funcs
38 +
39 +DESCRIPTION="A Markdown-to HTML translator written in C"
40 +HOMEPAGE="http://www.pell.portland.or.us/~orc/Code/discount/"
41 +SRC_URI="http://www.pell.portland.or.us/~orc/Code/${PN}/${P}.tar.bz2"
42 +
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ppc ppc64 ~riscv sparc x86"
46 +IUSE="minimal test"
47 +RESTRICT="!test? ( test )"
48 +
49 +src_prepare() {
50 + default
51 +
52 + # for QA, we remove the Makefile’s usage of install -s.
53 + # Drop ldconfig invocation.
54 + # Force “librarian.sh” to respect LDFLAGS ($FLAGS should have CFLAGS
55 + # at that point).
56 + sed -i \
57 + -e '/INSTALL_PROGRAM/s,\$_strip ,,' \
58 + -e 's/\(LDCONFIG=\).*/\1:/' \
59 + -e 's/\(.\)\$FLAGS/& \1$LDFLAGS/' \
60 + configure.inc || die "sed configure.inc failed"
61 +}
62 +
63 +src_configure() {
64 + local configure_call=(
65 + ./configure.sh
66 + --libdir="${EPREFIX}/usr/$(get_libdir)"
67 + --prefix="${EPREFIX}/usr"
68 + --mandir="${EPREFIX}/usr/share/man"
69 + --shared
70 + --pkg-config
71 + $(usex minimal '' --enable-all-features)
72 + # Enable deterministic HTML generation behavior. Otherwise, will
73 + # actually call rand() as part of its serialization code...
74 + --debian-glitch
75 + )
76 + einfo "Running ${configure_call[@]}"
77 + CC="$(tc-getCC)" AR="$(tc-getAR)" \
78 + "${configure_call[@]}" || die
79 +}
80 +
81 +src_compile() {
82 + emake libmarkdown
83 + emake
84 +}
85 +
86 +src_install() {
87 + emake \
88 + DESTDIR="${D}" \
89 + $(usex minimal install install.everything) \
90 + SAMPLE_PFX="${PN}-"
91 +}
92 +
93 +pkg_postinst() {
94 + if ! use minimal; then
95 + elog 'Sample binaries with overly-generic names have been'
96 + elog "prefixed with \"${PN}-\"."
97 + fi
98 +}