Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/sparse/
Date: Wed, 26 Feb 2020 13:43:00
Message-Id: 1582724554.67e02a1ba8aa9f38bae2bde574beed1a8e1ff8b2.slyfox@gentoo
1 commit: 67e02a1ba8aa9f38bae2bde574beed1a8e1ff8b2
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 26 13:42:34 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 26 13:42:34 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67e02a1b
7
8 sys-devel/sparse: bump up to 0.6.1
9
10 Package-Manager: Portage-2.3.89, Repoman-2.3.20
11 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
12
13 sys-devel/sparse/Manifest | 1 +
14 sys-devel/sparse/sparse-0.6.1.ebuild | 64 ++++++++++++++++++++++++++++++++++++
15 2 files changed, 65 insertions(+)
16
17 diff --git a/sys-devel/sparse/Manifest b/sys-devel/sparse/Manifest
18 index 894cb6a6750..0b6c7726fdd 100644
19 --- a/sys-devel/sparse/Manifest
20 +++ b/sys-devel/sparse/Manifest
21 @@ -1,3 +1,4 @@
22 DIST sparse-0.5.1.tar.xz 215144 BLAKE2B 209aa7cf34a9135dae38466a0ba41ff4fb888c363ed59a68a5820d4b6ef1636d717b8172a6d638d9dbc61197efb7a3e06ef85830b6f1c359737520b4b3aa0fbe SHA512 f7fc516ef8343a4153b9bda1b50b326dcd55a77fce5acccd9aa4c5636d6510573c7e26b0a7ca1df847082faf2be2d292336ad1cec855e395703a6b1e04d3a8a1
23 DIST sparse-0.5.2-rc1.tar.gz 282810 BLAKE2B 74d06230ceb06dac427984c365223633ef795b2f6329c69da5183b9f3444457ee05d74b04b18cf400b4d813026a746218edbf9bc0b2aa371c8a3681ac10ce19b SHA512 b58458b97e91b7d02d032a946d9870a3fd227959608fb7847864ad1a92258aeb0461da513f4d6d3b37791ed8d5fc41ac01cfef0fcaf34b229090ff078672ef40
24 DIST sparse-0.6.0.tar.xz 284668 BLAKE2B 9bb568fe23ac96d6e179e5c5927ff34e9fc88909d367f6ab49c8862a8e599df83602ba72bc42ba3bf63823b024340f101128c528ebf767f4e29da7f5324a1f40 SHA512 5c6c88f203c941bf0efd28802ef91641c96e7d4b4688a5176d091ff0fd6a650d9147e590b631602a8bd08994a35261977569367861a6d605ccdd25e4a07debf9
25 +DIST sparse-0.6.1.tar.xz 287880 BLAKE2B 026e7770460ab576b91e8c401c642e95269ddd7c90c0f855b0246448ca653b95a899b4bf647134c090c06c802757b6415dcc89bc214fb7ff124c2ce3888fccb0 SHA512 2faad9b3263f19f941cd6a5891960d2c7d1066c664d3ef68e722d461785aeed2d4a9539df3556bbd98c022e7ee965b8030c49272ab6003113ba3b36f73c00187
26
27 diff --git a/sys-devel/sparse/sparse-0.6.1.ebuild b/sys-devel/sparse/sparse-0.6.1.ebuild
28 new file mode 100644
29 index 00000000000..8828d2b9230
30 --- /dev/null
31 +++ b/sys-devel/sparse/sparse-0.6.1.ebuild
32 @@ -0,0 +1,64 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit eutils multilib toolchain-funcs
39 +
40 +DESCRIPTION="C semantic parser"
41 +HOMEPAGE="https://sparse.wiki.kernel.org/index.php/Main_Page"
42 +
43 +if [[ ${PV} == "9999" ]] ; then
44 + inherit git-r3
45 + EGIT_REPO_URI="https://git.kernel.org/pub/scm/devel/${PN}/${PN}.git"
46 + KEYWORDS=""
47 +else
48 + SRC_URI="https://www.kernel.org/pub/software/devel/${PN}/dist/${P}.tar.xz"
49 + KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
50 +fi
51 +
52 +LICENSE="MIT"
53 +SLOT="0"
54 +IUSE="gtk llvm test xml"
55 +RESTRICT="!test? ( test )"
56 +
57 +RDEPEND="gtk? ( x11-libs/gtk+:2 )
58 + llvm? ( >=sys-devel/llvm-3.0 )
59 + xml? ( dev-libs/libxml2 )"
60 +DEPEND="${RDEPEND}
61 + gtk? ( virtual/pkgconfig )
62 + xml? ( virtual/pkgconfig )"
63 +
64 +_emake() {
65 + # Makefile does not allow for an easy override of flags.
66 + # Collect them here and override default phases.
67 + emake \
68 + CC="$(tc-getCC)" \
69 + LD="$(tc-getCC)" \
70 + AR="$(tc-getAR)" \
71 + CFLAGS="${CFLAGS}" \
72 + PKG_CONFIG="$(tc-getPKG_CONFIG)" \
73 + \
74 + HAVE_GTK=$(usex gtk) \
75 + HAVE_LLVM=$(usex llvm) \
76 + HAVE_LIBXML=$(usex xml) \
77 + \
78 + V=1 \
79 + PREFIX="${EPREFIX}/usr" \
80 + \
81 + "$@"
82 +}
83 +
84 +src_compile() {
85 + _emake
86 +}
87 +
88 +src_test() {
89 + _emake check
90 +}
91 +
92 +src_install() {
93 + _emake DESTDIR="${D}" install
94 +
95 + dodoc FAQ README
96 +}