public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-devel/clang: clang-9999.ebuild clang-3.2.ebuild ChangeLog
@ 2013-02-02 23:28 Michal Gorny (mgorny)
  0 siblings, 0 replies; 3+ messages in thread
From: Michal Gorny (mgorny) @ 2013-02-02 23:28 UTC (permalink / raw
  To: gentoo-commits

mgorny      13/02/02 23:28:27

  Modified:             clang-9999.ebuild clang-3.2.ebuild ChangeLog
  Log:
  Migrate to python-r1.
  
  (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key 42B9401D)

Revision  Changes    Path
1.34                 sys-devel/clang/clang-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/clang-9999.ebuild?rev=1.34&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/clang-9999.ebuild?rev=1.34&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/clang-9999.ebuild?r1=1.33&r2=1.34

Index: clang-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/clang/clang-9999.ebuild,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- clang-9999.ebuild	3 Jan 2013 23:36:58 -0000	1.33
+++ clang-9999.ebuild	2 Feb 2013 23:28:27 -0000	1.34
@@ -1,13 +1,12 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/clang-9999.ebuild,v 1.33 2013/01/03 23:36:58 voyageur Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/clang-9999.ebuild,v 1.34 2013/02/02 23:28:27 mgorny Exp $
 
-EAPI=4
+EAPI=5
 
-RESTRICT_PYTHON_ABIS="3.*"
-SUPPORT_PYTHON_ABIS="1"
+PYTHON_COMPAT=( python{2_6,2_7} pypy{1_9,2_0} )
 
-inherit subversion eutils multilib python
+inherit subversion eutils multilib python-r1
 
 DESCRIPTION="C language family frontend for LLVM"
 HOMEPAGE="http://clang.llvm.org/"
@@ -17,10 +16,12 @@
 LICENSE="UoI-NCSA"
 SLOT="0"
 KEYWORDS=""
-IUSE="debug multitarget +static-analyzer test"
+IUSE="debug multitarget python +static-analyzer test"
 
-DEPEND="static-analyzer? ( dev-lang/perl )"
-RDEPEND="~sys-devel/llvm-${PV}[debug=,multitarget=]"
+DEPEND="static-analyzer? ( dev-lang/perl )
+	${PYTHON_DEPS}"
+RDEPEND="~sys-devel/llvm-${PV}[debug=,multitarget=]
+	${PYTHON_DEPS}"
 
 S="${WORKDIR}/llvm"
 
@@ -53,10 +54,6 @@
 	sed -e "/LLVMgold.so/s#lib/#$(get_libdir)/llvm/#" \
 		-i  tools/clang/lib/Driver/Tools.cpp \
 		|| die "gold plugin path sed failed"
-	# Specify python version
-	python_convert_shebangs 2 tools/clang/tools/scan-view/scan-view
-	python_convert_shebangs -r 2 test/Scripts
-	python_convert_shebangs 2 projects/compiler-rt/lib/asan/scripts/asan_symbolize.py
 
 	# From llvm src_prepare
 	einfo "Fixing install dirs"
@@ -115,13 +112,12 @@
 
 	echo ">>> Test phase [test]: ${CATEGORY}/${PF}"
 
-	testing() {
-		if ! emake -j1 VERBOSE=1 test; then
-			has test $FEATURES && die "Make test failed. See above for details."
-			has test $FEATURES || eerror "Make test failed. See above for details."
-		fi
-	}
-	python_execute_function testing
+	python_export_best
+
+	if ! emake -j1 VERBOSE=1 test; then
+		has test $FEATURES && die "Make test failed. See above for details."
+		has test $FEATURES || eerror "Make test failed. See above for details."
+	fi
 }
 
 src_install() {
@@ -136,19 +132,34 @@
 		insinto /usr/share/${PN}
 		doins tools/scan-build/scanview.css
 		doins tools/scan-build/sorttable.js
-
-		cd tools/scan-view || die "cd scan-view failed"
-		dobin scan-view
-		install-scan-view() {
-			insinto "$(python_get_sitedir)"/clang
-			doins Reporter.py Resources ScanView.py startfile.py
-			touch "${ED}"/"$(python_get_sitedir)"/clang/__init__.py
-		}
-		python_execute_function install-scan-view
 	fi
 
-	# AddressSanitizer symbolizer (currently separate)
-	dobin "${S}"/projects/compiler-rt/lib/asan/scripts/asan_symbolize.py
+	python_inst() {
+		if use static-analyzer ; then
+			pushd tools/scan-view >/dev/null || die
+
+			python_doscript scan-view
+
+			touch __init__.py || die
+			python_moduleinto clang
+			python_domodule __init__.py Reporter.py Resources ScanView.py startfile.py
+
+			popd >/dev/null || die
+		fi
+
+		if use python ; then
+			pushd bindings/python/clang >/dev/null || die
+
+			python_moduleinto clang
+			python_domodule __init__.py cindex.py enumerations.py
+
+			popd >/dev/null || die
+		fi
+
+		# AddressSanitizer symbolizer (currently separate)
+		python_doscript "${S}"/projects/compiler-rt/lib/asan/scripts/asan_symbolize.py
+	}
+	python_foreach_impl python_inst
 
 	# Fix install_names on Darwin.  The build system is too complicated
 	# to just fix this, so we correct it post-install
@@ -173,11 +184,3 @@
 		done
 	fi
 }
-
-pkg_postinst() {
-	python_mod_optimize clang
-}
-
-pkg_postrm() {
-	python_mod_cleanup clang
-}



1.4                  sys-devel/clang/clang-3.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/clang-3.2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/clang-3.2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/clang-3.2.ebuild?r1=1.3&r2=1.4

Index: clang-3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/clang/clang-3.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- clang-3.2.ebuild	11 Jan 2013 07:01:44 -0000	1.3
+++ clang-3.2.ebuild	2 Feb 2013 23:28:27 -0000	1.4
@@ -1,13 +1,12 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/clang-3.2.ebuild,v 1.3 2013/01/11 07:01:44 ryao Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/clang-3.2.ebuild,v 1.4 2013/02/02 23:28:27 mgorny Exp $
 
 EAPI=5
 
-RESTRICT_PYTHON_ABIS="3.*"
-SUPPORT_PYTHON_ABIS="1"
+PYTHON_COMPAT=( python{2_6,2_7} pypy{1_9,2_0} )
 
-inherit eutils multilib python
+inherit eutils multilib python-r1
 
 DESCRIPTION="C language family frontend for LLVM"
 HOMEPAGE="http://clang.llvm.org/"
@@ -19,10 +18,12 @@
 LICENSE="UoI-NCSA"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
-IUSE="debug kernel_FreeBSD multitarget +static-analyzer test"
+IUSE="debug kernel_FreeBSD multitarget python +static-analyzer test"
 
-DEPEND="static-analyzer? ( dev-lang/perl )"
-RDEPEND="~sys-devel/llvm-${PV}[debug=,multitarget=]"
+DEPEND="static-analyzer? ( dev-lang/perl )
+	${PYTHON_DEPS}"
+RDEPEND="~sys-devel/llvm-${PV}[debug=,multitarget=]
+	${PYTHON_DEPS}"
 
 S=${WORKDIR}/llvm-${PV}.src
 
@@ -55,10 +56,6 @@
 	sed -e "/LLVMgold.so/s#lib/#$(get_libdir)/llvm/#" \
 		-i  tools/clang/lib/Driver/Tools.cpp \
 		|| die "gold plugin path sed failed"
-	# Specify python version
-	python_convert_shebangs 2 tools/clang/tools/scan-view/scan-view
-	python_convert_shebangs -r 2 test/Scripts
-	python_convert_shebangs 2 projects/compiler-rt/lib/asan/scripts/asan_symbolize.py
 
 	# From llvm src_prepare
 	einfo "Fixing install dirs"
@@ -127,13 +124,12 @@
 
 	echo ">>> Test phase [test]: ${CATEGORY}/${PF}"
 
-	testing() {
-		if ! emake -j1 VERBOSE=1 test; then
-			has test $FEATURES && die "Make test failed. See above for details."
-			has test $FEATURES || eerror "Make test failed. See above for details."
-		fi
-	}
-	python_execute_function testing
+	python_export_best
+
+	if ! emake -j1 VERBOSE=1 test; then
+		has test $FEATURES && die "Make test failed. See above for details."
+		has test $FEATURES || eerror "Make test failed. See above for details."
+	fi
 }
 
 src_install() {
@@ -148,19 +144,34 @@
 		insinto /usr/share/${PN}
 		doins tools/scan-build/scanview.css
 		doins tools/scan-build/sorttable.js
-
-		cd tools/scan-view || die "cd scan-view failed"
-		dobin scan-view
-		install-scan-view() {
-			insinto "$(python_get_sitedir)"/clang
-			doins Reporter.py Resources ScanView.py startfile.py
-			touch "${ED}"/"$(python_get_sitedir)"/clang/__init__.py
-		}
-		python_execute_function install-scan-view
 	fi
 
-	# AddressSanitizer symbolizer (currently separate)
-	dobin "${S}"/projects/compiler-rt/lib/asan/scripts/asan_symbolize.py
+	python_inst() {
+		if use static-analyzer ; then
+			pushd tools/scan-view >/dev/null || die
+
+			python_doscript scan-view
+
+			touch __init__.py || die
+			python_moduleinto clang
+			python_domodule __init__.py Reporter.py Resources ScanView.py startfile.py
+
+			popd >/dev/null || die
+		fi
+
+		if use python ; then
+			pushd bindings/python/clang >/dev/null || die
+
+			python_moduleinto clang
+			python_domodule __init__.py cindex.py enumerations.py
+
+			popd >/dev/null || die
+		fi
+
+		# AddressSanitizer symbolizer (currently separate)
+		python_doscript "${S}"/projects/compiler-rt/lib/asan/scripts/asan_symbolize.py
+	}
+	python_foreach_impl python_inst
 
 	# Fix install_names on Darwin.  The build system is too complicated
 	# to just fix this, so we correct it post-install
@@ -188,11 +199,3 @@
 	# Remove unnecessary headers on FreeBSD, bug #417171
 	use kernel_FreeBSD && rm "${ED}"usr/$(get_libdir)/clang/${PV}/include/{arm_neon,std,float,iso,limits,tgmath,varargs}*.h
 }
-
-pkg_postinst() {
-	python_mod_optimize clang
-}
-
-pkg_postrm() {
-	python_mod_cleanup clang
-}



1.84                 sys-devel/clang/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/ChangeLog?rev=1.84&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/ChangeLog?rev=1.84&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/ChangeLog?r1=1.83&r2=1.84

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/clang/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog	15 Jan 2013 12:31:55 -0000	1.83
+++ ChangeLog	2 Feb 2013 23:28:27 -0000	1.84
@@ -1,6 +1,10 @@
 # ChangeLog for sys-devel/clang
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/ChangeLog,v 1.83 2013/01/15 12:31:55 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/ChangeLog,v 1.84 2013/02/02 23:28:27 mgorny Exp $
+
+  02 Feb 2013; Michał Górny <mgorny@gentoo.org> clang-3.2.ebuild,
+  clang-9999.ebuild:
+  Migrate to python-r1.
 
   15 Jan 2013; Jeroen Roovers <jer@gentoo.org> metadata.xml:
   Switch to UTF8.





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-devel/clang: clang-9999.ebuild clang-3.2.ebuild ChangeLog
@ 2013-02-04  8:50 Michal Gorny (mgorny)
  0 siblings, 0 replies; 3+ messages in thread
From: Michal Gorny (mgorny) @ 2013-02-04  8:50 UTC (permalink / raw
  To: gentoo-commits

mgorny      13/02/04 08:50:49

  Modified:             clang-9999.ebuild clang-3.2.ebuild ChangeLog
  Log:
  Use supported Python implementation during build. Fixes bug #455260.
  
  (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key 42B9401D)

Revision  Changes    Path
1.35                 sys-devel/clang/clang-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/clang-9999.ebuild?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/clang-9999.ebuild?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/clang-9999.ebuild?r1=1.34&r2=1.35

Index: clang-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/clang/clang-9999.ebuild,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- clang-9999.ebuild	2 Feb 2013 23:28:27 -0000	1.34
+++ clang-9999.ebuild	4 Feb 2013 08:50:49 -0000	1.35
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/clang-9999.ebuild,v 1.34 2013/02/02 23:28:27 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/clang-9999.ebuild,v 1.35 2013/02/04 08:50:49 mgorny Exp $
 
 EAPI=5
 
@@ -98,6 +98,9 @@
 		CONF_FLAGS="${CONF_FLAGS} --enable-pic"
 	fi
 
+	# build with a suitable Python version
+	python_export_best
+
 	# clang prefers clang over gcc, so we may need to force that
 	tc-export CC CXX
 	econf ${CONF_FLAGS}
@@ -112,8 +115,6 @@
 
 	echo ">>> Test phase [test]: ${CATEGORY}/${PF}"
 
-	python_export_best
-
 	if ! emake -j1 VERBOSE=1 test; then
 		has test $FEATURES && die "Make test failed. See above for details."
 		has test $FEATURES || eerror "Make test failed. See above for details."



1.5                  sys-devel/clang/clang-3.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/clang-3.2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/clang-3.2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/clang-3.2.ebuild?r1=1.4&r2=1.5

Index: clang-3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/clang/clang-3.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- clang-3.2.ebuild	2 Feb 2013 23:28:27 -0000	1.4
+++ clang-3.2.ebuild	4 Feb 2013 08:50:49 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/clang-3.2.ebuild,v 1.4 2013/02/02 23:28:27 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/clang-3.2.ebuild,v 1.5 2013/02/04 08:50:49 mgorny Exp $
 
 EAPI=5
 
@@ -110,6 +110,9 @@
 		CONF_FLAGS="${CONF_FLAGS} --enable-pic"
 	fi
 
+	# build with a suitable Python version
+	python_export_best
+
 	# clang prefers clang over gcc, so we may need to force that
 	tc-export CC CXX
 	econf ${CONF_FLAGS}
@@ -124,8 +127,6 @@
 
 	echo ">>> Test phase [test]: ${CATEGORY}/${PF}"
 
-	python_export_best
-
 	if ! emake -j1 VERBOSE=1 test; then
 		has test $FEATURES && die "Make test failed. See above for details."
 		has test $FEATURES || eerror "Make test failed. See above for details."



1.85                 sys-devel/clang/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/ChangeLog?rev=1.85&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/ChangeLog?rev=1.85&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/ChangeLog?r1=1.84&r2=1.85

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/clang/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog	2 Feb 2013 23:28:27 -0000	1.84
+++ ChangeLog	4 Feb 2013 08:50:49 -0000	1.85
@@ -1,6 +1,10 @@
 # ChangeLog for sys-devel/clang
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/ChangeLog,v 1.84 2013/02/02 23:28:27 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/ChangeLog,v 1.85 2013/02/04 08:50:49 mgorny Exp $
+
+  04 Feb 2013; Michał Górny <mgorny@gentoo.org> clang-3.2.ebuild,
+  clang-9999.ebuild:
+  Use supported Python implementation during build. Fixes bug #455260.
 
   02 Feb 2013; Michał Górny <mgorny@gentoo.org> clang-3.2.ebuild,
   clang-9999.ebuild:





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-devel/clang: clang-9999.ebuild clang-3.2.ebuild ChangeLog
@ 2015-04-08 18:25 Michal Gorny (mgorny)
  0 siblings, 0 replies; 3+ messages in thread
From: Michal Gorny (mgorny) @ 2015-04-08 18:25 UTC (permalink / raw
  To: gentoo-commits

mgorny      15/04/08 18:25:48

  Modified:             clang-9999.ebuild clang-3.2.ebuild ChangeLog
  Log:
  Drop old Python implementations
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.41                 sys-devel/clang/clang-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/clang-9999.ebuild?rev=1.41&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/clang-9999.ebuild?rev=1.41&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/clang-9999.ebuild?r1=1.40&r2=1.41

Index: clang-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/clang/clang-9999.ebuild,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- clang-9999.ebuild	31 Mar 2014 21:20:04 -0000	1.40
+++ clang-9999.ebuild	8 Apr 2015 18:25:48 -0000	1.41
@@ -1,10 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/clang-9999.ebuild,v 1.40 2014/03/31 21:20:04 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/clang-9999.ebuild,v 1.41 2015/04/08 18:25:48 mgorny Exp $
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_6,2_7} pypy pypy2_0 )
+PYTHON_COMPAT=( python2_7 pypy )
 
 inherit subversion eutils multilib python-r1
 



1.10                 sys-devel/clang/clang-3.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/clang-3.2.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/clang-3.2.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/clang-3.2.ebuild?r1=1.9&r2=1.10

Index: clang-3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/clang/clang-3.2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- clang-3.2.ebuild	31 Mar 2014 21:20:04 -0000	1.9
+++ clang-3.2.ebuild	8 Apr 2015 18:25:48 -0000	1.10
@@ -1,10 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/clang-3.2.ebuild,v 1.9 2014/03/31 21:20:04 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/clang-3.2.ebuild,v 1.10 2015/04/08 18:25:48 mgorny Exp $
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_6,2_7} pypy pypy2_0 )
+PYTHON_COMPAT=( python2_7 pypy )
 
 inherit eutils multilib python-r1
 



1.123                sys-devel/clang/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/ChangeLog?rev=1.123&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/ChangeLog?rev=1.123&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/clang/ChangeLog?r1=1.122&r2=1.123

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/clang/ChangeLog,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -r1.122 -r1.123
--- ChangeLog	3 Apr 2015 09:03:03 -0000	1.122
+++ ChangeLog	8 Apr 2015 18:25:48 -0000	1.123
@@ -1,6 +1,10 @@
 # ChangeLog for sys-devel/clang
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/ChangeLog,v 1.122 2015/04/03 09:03:03 voyageur Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/clang/ChangeLog,v 1.123 2015/04/08 18:25:48 mgorny Exp $
+
+  08 Apr 2015; Michał Górny <mgorny@gentoo.org> clang-3.2.ebuild,
+  clang-9999.ebuild:
+  Drop old Python implementations
 
 *clang-3.5.2-r100 (03 Apr 2015)
 





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-04-08 18:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-08 18:25 [gentoo-commits] gentoo-x86 commit in sys-devel/clang: clang-9999.ebuild clang-3.2.ebuild ChangeLog Michal Gorny (mgorny)
  -- strict thread matches above, loose matches on Subject: below --
2013-02-04  8:50 Michal Gorny (mgorny)
2013-02-02 23:28 Michal Gorny (mgorny)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox