Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/ucpp/
Date: Sun, 27 Oct 2019 16:26:02
Message-Id: 1572193519.6d1c8f4c4581ae6ebdabdd5615745c646910d062.asturm@gentoo
1 commit: 6d1c8f4c4581ae6ebdabdd5615745c646910d062
2 Author: William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
3 AuthorDate: Thu Aug 8 03:37:15 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 27 16:25:19 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d1c8f4c
7
8 sys-devel/ucpp: Bump to version 1.3.5
9
10 Closes: https://bugs.gentoo.org/691656
11 Package-Manager: Portage-2.3.76, Repoman-2.3.17
12 Signed-off-by: William Breathitt Gray <vilhelm.gray <AT> gmail.com>
13 Closes: https://github.com/gentoo/gentoo/pull/12640
14 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
15
16 sys-devel/ucpp/Manifest | 1 +
17 sys-devel/ucpp/ucpp-1.3.5.ebuild | 26 ++++++++++++++++++++++++++
18 2 files changed, 27 insertions(+)
19
20 diff --git a/sys-devel/ucpp/Manifest b/sys-devel/ucpp/Manifest
21 index 98decdb51e0..d8c1bac0241 100644
22 --- a/sys-devel/ucpp/Manifest
23 +++ b/sys-devel/ucpp/Manifest
24 @@ -1 +1,2 @@
25 DIST ucpp-1.3.4.tar.xz 274488 BLAKE2B be43b8c88de2cd32514ecf7dc429c0ca5e88150594c9868fd6d8c3d90a0aabfc6e0f0741d75e4f558de426df7d6c54a3bc7e8e362c5066672f5fe9096cbedc18 SHA512 f9ea88e8f53e728a5b0fcb9084d6d6e140737b00fe350a9c6bc53ef2bb5f7b09d3c9d9a4a2147f635d796247e1b920fd3fea0cdce3ec3f4578694162c2f4c2a6
26 +DIST ucpp-1.3.5.tar.xz 289468 BLAKE2B 6a038cc5d02f080747a321a55af66f2072503a5c0a554492ea8aed34ff9c3b7b85e3778114e18c3e09f06f1472a1479f39c96997404e0345153a1f84e3f9daee SHA512 3ded8f7bc2b238adb6e7f4162aee48e039dfe7cee31b700c38e8f147634d47cd1ceaf39c343549b0d4a58358e6b9743f7e84f87b253dc19c05e543d68ade24ce
27
28 diff --git a/sys-devel/ucpp/ucpp-1.3.5.ebuild b/sys-devel/ucpp/ucpp-1.3.5.ebuild
29 new file mode 100644
30 index 00000000000..6382f1c7fa3
31 --- /dev/null
32 +++ b/sys-devel/ucpp/ucpp-1.3.5.ebuild
33 @@ -0,0 +1,26 @@
34 +# Copyright 1999-2019 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +DESCRIPTION="A C preprocessor compliant to ISO-C99"
40 +HOMEPAGE="https://gitlab.com/scarabeusiv/ucpp"
41 +SRC_URI="https://gitlab.com/scarabeusiv/${PN}/uploads/79f08e39c676f15ed8a59335f6c9b924/${P}.tar.xz"
42 +
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux"
46 +IUSE="static-libs"
47 +
48 +src_configure() {
49 + econf \
50 + --disable-werror \
51 + $(use_enable static-libs static)
52 +}
53 +
54 +src_install() {
55 + default
56 +
57 + # package provides .pc files
58 + find "${D}" -name '*.la' -delete || die
59 +}