Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/expat/
Date: Sun, 20 Feb 2022 17:58:03
Message-Id: 1645379676.d81dcbd9bb7da73dc8bd98d6ce7f6ab5d0aebd83.sping@gentoo
1 commit: d81dcbd9bb7da73dc8bd98d6ce7f6ab5d0aebd83
2 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 20 17:54:36 2022 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 20 17:54:36 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d81dcbd9
7
8 dev-libs/expat: 2.4.6
9
10 Bug: https://bugs.gentoo.org/833431
11 Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
12 Package-Manager: Portage-3.0.30, Repoman-3.0.3
13
14 dev-libs/expat/Manifest | 1 +
15 dev-libs/expat/expat-2.4.6.ebuild | 94 +++++++++++++++++++++++++++++++++++++++
16 2 files changed, 95 insertions(+)
17
18 diff --git a/dev-libs/expat/Manifest b/dev-libs/expat/Manifest
19 index 5949cdf6fb95..4178503ef8c9 100644
20 --- a/dev-libs/expat/Manifest
21 +++ b/dev-libs/expat/Manifest
22 @@ -1,2 +1,3 @@
23 DIST expat-2.4.4.tar.xz 449448 BLAKE2B 20b2cfb27746c24e56580478c933b3ca9e9ff19aed13561bc07e8ad879daff575882b8940fdca00f8c99b146067438a4a680238728098b10e4d08303ffa00119 SHA512 c88a82f4732e27340eb9480c082bcc909b0284e16b368ee9feeb4e2dd058e8f7c42fd48feacd5272cc76cb78bd183df33eb5d0b135fdd1d3c493cb156572ab76
24 DIST expat-2.4.5.tar.xz 451976 BLAKE2B d4ef7dda9da0f0f0be112b1aab551b10414e27692a5d83de67ba53298f60ea2a08872de4a9baee3596eff56f275866dbe18cb93a927bbf43952ceff633d9e28f SHA512 9e010e8959b9182db0fdcd3453c06d5b892db85da0d9f2db19384cc9a05d70066dc927c40fc98ada430e0548a47fa863866985193062af9bd243de9bdac417f5
25 +DIST expat-2.4.6.tar.xz 452468 BLAKE2B 8b30acc2628e3ce67ee57a4c9bee232f89f49ee70901588f7f5a34844e459cbc447fd225a734078100e52c96a73aa1f016e4f2d51d9a079128d661d97b2213c0 SHA512 830b00dbdfb92ef5cab69d783762a78443cd7d834bccda072d103c6178327cf480bde579089b1c3be884e67ddb862178fa734bd7e1f992f6f0ca29d83e21d737
26
27 diff --git a/dev-libs/expat/expat-2.4.6.ebuild b/dev-libs/expat/expat-2.4.6.ebuild
28 new file mode 100644
29 index 000000000000..f397e99485c2
30 --- /dev/null
31 +++ b/dev-libs/expat/expat-2.4.6.ebuild
32 @@ -0,0 +1,94 @@
33 +# Copyright 1999-2022 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +AUTOTOOLS_AUTO_DEPEND=no
38 +AT_NOEAUTOHEADER=yes # because expat_config.h.in would need post-processing
39 +inherit autotools multilib-minimal
40 +
41 +DESCRIPTION="Stream-oriented XML parser library"
42 +HOMEPAGE="https://libexpat.github.io/"
43 +SRC_URI="https://github.com/libexpat/libexpat/releases/download/R_${PV//\./_}/expat-${PV}.tar.xz"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
48 +IUSE="examples static-libs unicode"
49 +BDEPEND="unicode? ( ${AUTOTOOLS_DEPEND} )"
50 +
51 +DOCS=( README.md )
52 +
53 +src_prepare() {
54 + default
55 +
56 + # fix interpreter to be a recent/good shell
57 + sed -i -e "1s:/bin/sh:${BASH}:" conftools/get-version.sh || die
58 + if use unicode; then
59 + cp -R "${S}" "${S}"w || die
60 + pushd "${S}"w >/dev/null
61 + find -name Makefile.am \
62 + -exec sed \
63 + -e 's,libexpat\.la,libexpatw.la,' \
64 + -e 's,libexpat_la,libexpatw_la,' \
65 + -i {} + || die
66 + eautoreconf
67 + popd >/dev/null
68 + fi
69 +}
70 +
71 +multilib_src_configure() {
72 + local myconf="$(use_enable static-libs static) --without-docbook"
73 +
74 + mkdir -p "${BUILD_DIR}"w || die
75 +
76 + if use unicode; then
77 + pushd "${BUILD_DIR}"w >/dev/null
78 + CPPFLAGS="${CPPFLAGS} -DXML_UNICODE" ECONF_SOURCE="${S}"w econf ${myconf}
79 + popd >/dev/null
80 + fi
81 +
82 + ECONF_SOURCE="${S}" econf ${myconf}
83 +}
84 +
85 +multilib_src_compile() {
86 + emake
87 +
88 + if use unicode; then
89 + pushd "${BUILD_DIR}"w >/dev/null
90 + emake -C lib
91 + popd >/dev/null
92 + fi
93 +}
94 +
95 +multilib_src_install() {
96 + emake install DESTDIR="${D}"
97 +
98 + if use unicode; then
99 + pushd "${BUILD_DIR}"w >/dev/null
100 + emake -C lib install DESTDIR="${D}"
101 + popd >/dev/null
102 +
103 + pushd "${ED}"/usr/$(get_libdir)/pkgconfig >/dev/null
104 + cp expat.pc expatw.pc
105 + sed -i -e '/^Libs/s:-lexpat:&w:' expatw.pc || die
106 + popd >/dev/null
107 + fi
108 +}
109 +
110 +multilib_src_install_all() {
111 + einstalldocs
112 +
113 + doman doc/xmlwf.1
114 +
115 + # Note: Use of HTML_DOCS would add unwanted "doc" subfolder
116 + docinto html
117 + dodoc doc/*.{css,html}
118 +
119 + if use examples; then
120 + docinto examples
121 + dodoc examples/*.c
122 + docompress -x usr/share/doc/${PF}/examples
123 + fi
124 +
125 + find "${D}" -name '*.la' -type f -delete || die
126 +}