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