* [gentoo-commits] gentoo-x86 commit in sys-devel/sparse: metadata.xml sparse-9999.ebuild sparse-0.5.0.ebuild ChangeLog
@ 2014-10-16 19:25 Mike Frysinger (vapier)
0 siblings, 0 replies; only message in thread
From: Mike Frysinger (vapier) @ 2014-10-16 19:25 UTC (permalink / raw
To: gentoo-commits
vapier 14/10/16 19:25:30
Modified: metadata.xml sparse-9999.ebuild sparse-0.5.0.ebuild
ChangeLog
Log:
Backport USE=llvm support from live ebuild #524776 by Sebastian Pipping.
(Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Revision Changes Path
1.8 sys-devel/sparse/metadata.xml
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/sparse/metadata.xml?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/sparse/metadata.xml?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/sparse/metadata.xml?r1=1.7&r2=1.8
Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/sparse/metadata.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- metadata.xml 5 Sep 2013 09:17:49 -0000 1.7
+++ metadata.xml 16 Oct 2014 19:25:30 -0000 1.8
@@ -8,7 +8,7 @@
Build the test-inspect utility (requires
<pkg>x11-libs/gtk+</pkg> version 2)
</flag>
- <flag name='llvm'>support llvm</flag>
+ <flag name='llvm'>Build the sparse-llvm utility</flag>
<flag name='xml'>
Build the c2xml utility (requires <pkg>dev-libs/libxml2</pkg>).
</flag>
1.14 sys-devel/sparse/sparse-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/sparse/sparse-9999.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/sparse/sparse-9999.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/sparse/sparse-9999.ebuild?r1=1.13&r2=1.14
Index: sparse-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/sparse/sparse-9999.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- sparse-9999.ebuild 5 Sep 2013 09:17:49 -0000 1.13
+++ sparse-9999.ebuild 16 Oct 2014 19:25:30 -0000 1.14
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/sparse/sparse-9999.ebuild,v 1.13 2013/09/05 09:17:49 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/sparse/sparse-9999.ebuild,v 1.14 2014/10/16 19:25:30 vapier Exp $
EAPI="4"
@@ -17,7 +17,7 @@
SRC_URI=""
#KEYWORDS=""
else
- SRC_URI="mirror://kernel/software/devel/sparse/dist/${P}.tar.bz2"
+ SRC_URI="mirror://kernel/software/devel/sparse/dist/${P}.tar.xz"
KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
fi
1.2 sys-devel/sparse/sparse-0.5.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/sparse/sparse-0.5.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/sparse/sparse-0.5.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/sparse/sparse-0.5.0.ebuild?r1=1.1&r2=1.2
Index: sparse-0.5.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/sparse/sparse-0.5.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sparse-0.5.0.ebuild 27 Feb 2014 20:31:26 -0000 1.1
+++ sparse-0.5.0.ebuild 16 Oct 2014 19:25:30 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/sparse/sparse-0.5.0.ebuild,v 1.1 2014/02/27 20:31:26 gregkh Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/sparse/sparse-0.5.0.ebuild,v 1.2 2014/10/16 19:25:30 vapier Exp $
EAPI="4"
@@ -23,9 +23,10 @@
LICENSE="OSL-1.1"
SLOT="0"
-IUSE="gtk test xml"
+IUSE="gtk llvm test xml"
RDEPEND="gtk? ( x11-libs/gtk+:2 )
+ llvm? ( >=sys-devel/llvm-3.0 )
xml? ( dev-libs/libxml2 )"
DEPEND="${RDEPEND}
gtk? ( virtual/pkgconfig )
@@ -39,7 +40,7 @@
-e '/^CFLAGS =/{s:=:+= $(CPPFLAGS):;s:-O2 -finline-functions::}' \
-e "s:pkg-config:${PKG_CONFIG}:" \
Makefile || die
- export MAKEOPTS+=" V=1 AR=${AR} CC=${CC} HAVE_GTK2=$(usex gtk) HAVE_LIBXML=$(usex xml)"
+ export MAKEOPTS+=" V=1 AR=${AR} CC=${CC} HAVE_GTK2=$(usex gtk) HAVE_LLVM=$(usex llvm) HAVE_LIBXML=$(usex xml)"
}
src_compile() {
1.57 sys-devel/sparse/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/sparse/ChangeLog?rev=1.57&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/sparse/ChangeLog?rev=1.57&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/sparse/ChangeLog?r1=1.56&r2=1.57
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/sparse/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog 27 Feb 2014 20:31:26 -0000 1.56
+++ ChangeLog 16 Oct 2014 19:25:30 -0000 1.57
@@ -1,6 +1,10 @@
# ChangeLog for sys-devel/sparse
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/sparse/ChangeLog,v 1.56 2014/02/27 20:31:26 gregkh Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/sparse/ChangeLog,v 1.57 2014/10/16 19:25:30 vapier Exp $
+
+ 16 Oct 2014; Mike Frysinger <vapier@gentoo.org> metadata.xml,
+ sparse-0.5.0.ebuild, sparse-9999.ebuild:
+ Backport USE=llvm support from live ebuild #524776 by Sebastian Pipping.
*sparse-0.5.0 (27 Feb 2014)
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2014-10-16 19:25 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-16 19:25 [gentoo-commits] gentoo-x86 commit in sys-devel/sparse: metadata.xml sparse-9999.ebuild sparse-0.5.0.ebuild ChangeLog Mike Frysinger (vapier)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox