public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog gnome-python-common.eclass
@ 2012-01-03 12:18 Nirbheek Chauhan (nirbheek)
  0 siblings, 0 replies; 3+ messages in thread
From: Nirbheek Chauhan (nirbheek) @ 2012-01-03 12:18 UTC (permalink / raw
  To: gentoo-commits

nirbheek    12/01/03 12:18:17

  Modified:             ChangeLog gnome-python-common.eclass
  Log:
  New automake uses $(SHELL) py-compile, which fails if py-compile is a symlink to /bin/true. Make it an executable empty file instead.

Revision  Changes    Path
1.70                 eclass/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.70&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.70&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.69&r2=1.70

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog	3 Jan 2012 08:59:01 -0000	1.69
+++ ChangeLog	3 Jan 2012 12:18:17 -0000	1.70
@@ -1,6 +1,11 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.69 2012/01/03 08:59:01 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.70 2012/01/03 12:18:17 nirbheek Exp $
+
+  03 Jan 2012; Nirbheek Chauhan <nirbheek@gentoo.org>
+  gnome-python-common.eclass:
+  New automake uses $(SHELL) py-compile, which fails if py-compile is a symlink
+  to /bin/true. Make it an executable empty file instead.
 
   03 Jan 2012; Justin Lecher <jlec@gentoo.org> eutils.eclass:
   Convert make_desktop_entry() comment block to be eclass-manpages conform,



1.14                 eclass/gnome-python-common.eclass

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gnome-python-common.eclass?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gnome-python-common.eclass?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gnome-python-common.eclass?r1=1.13&r2=1.14

Index: gnome-python-common.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/gnome-python-common.eclass,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- gnome-python-common.eclass	27 Dec 2011 17:55:12 -0000	1.13
+++ gnome-python-common.eclass	3 Jan 2012 12:18:17 -0000	1.14
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/gnome-python-common.eclass,v 1.13 2011/12/27 17:55:12 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/gnome-python-common.eclass,v 1.14 2012/01/03 12:18:17 nirbheek Exp $
 
 # Original Author: Arun Raghavan <ford_prefect@gentoo.org> (based on the
 #		   gnome-python-desktop eclass by Jim Ramsay <lack@gentoo.org>)
@@ -89,7 +89,8 @@
 	# disable pyc compiling
 	if [[ -f py-compile ]]; then
 		rm py-compile
-		ln -s $(type -P true) py-compile
+		echo > py-compile
+		chmod +x py-compile
 	fi
 
 	# The .pc file is installed by respective gnome-python*-base package






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

* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog gnome-python-common.eclass
@ 2012-03-25 15:31 Gilles Dartiguelongue (eva)
  0 siblings, 0 replies; 3+ messages in thread
From: Gilles Dartiguelongue (eva) @ 2012-03-25 15:31 UTC (permalink / raw
  To: gentoo-commits

eva         12/03/25 15:31:01

  Modified:             ChangeLog gnome-python-common.eclass
  Log:
  Replace old py-compile trick by the one from python eclass.

Revision  Changes    Path
1.185                eclass/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.185&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.185&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.184&r2=1.185

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.184
retrieving revision 1.185
diff -u -r1.184 -r1.185
--- ChangeLog	24 Mar 2012 20:44:51 -0000	1.184
+++ ChangeLog	25 Mar 2012 15:31:01 -0000	1.185
@@ -1,6 +1,10 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.184 2012/03/24 20:44:51 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.185 2012/03/25 15:31:01 eva Exp $
+
+  25 Mar 2012; Gilles Dartiguelongue <eva@gentoo.org>
+  gnome-python-common.eclass:
+  Replace old py-compile trick by the one from python eclass.
 
   24 Mar 2012; Andreas K. Huettel <dilfridge@gentoo.org> kde4-meta.eclass:
   Make opengl dependency soft in kde-workspace (except kwin)



1.16                 eclass/gnome-python-common.eclass

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gnome-python-common.eclass?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gnome-python-common.eclass?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gnome-python-common.eclass?r1=1.15&r2=1.16

Index: gnome-python-common.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/gnome-python-common.eclass,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- gnome-python-common.eclass	24 Feb 2012 09:10:16 -0000	1.15
+++ gnome-python-common.eclass	25 Mar 2012 15:31:01 -0000	1.16
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/gnome-python-common.eclass,v 1.15 2012/02/24 09:10:16 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/gnome-python-common.eclass,v 1.16 2012/03/25 15:31:01 eva Exp $
 
 # Original Author: Arun Raghavan <ford_prefect@gentoo.org> (based on the
 #		   gnome-python-desktop eclass by Jim Ramsay <lack@gentoo.org>)
@@ -84,13 +84,7 @@
 
 gnome-python-common_src_prepare() {
 	gnome2_src_prepare
-
-	# disable pyc compiling
-	if [[ -f py-compile ]]; then
-		rm py-compile
-		echo > py-compile
-		chmod +x py-compile
-	fi
+	python_clean_py-compile_files
 
 	# The .pc file is installed by respective gnome-python*-base package
 	sed -i '/^pkgconfig_DATA/d' Makefile.in || die "sed failed"






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

* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog gnome-python-common.eclass
@ 2015-06-13 17:24 Alexandre Rostovtsev (tetromino)
  0 siblings, 0 replies; 3+ messages in thread
From: Alexandre Rostovtsev (tetromino) @ 2015-06-13 17:24 UTC (permalink / raw
  To: gentoo-commits

tetromino    15/06/13 17:24:25

  Modified:             ChangeLog
  Removed:              gnome-python-common.eclass
  Log:
  Punt obsolete, unused eclass; it had a fixed set of users all of which have migrated to gnome-python-common-r1 (bug #551914, thanks to Michał Górny).

Revision  Changes    Path
1.1658               eclass/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1658&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1658&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1657&r2=1.1658

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1657
retrieving revision 1.1658
diff -u -r1.1657 -r1.1658
--- ChangeLog	13 Jun 2015 16:10:09 -0000	1.1657
+++ ChangeLog	13 Jun 2015 17:24:25 -0000	1.1658
@@ -1,6 +1,12 @@
 # ChangeLog for eclass directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1657 2015/06/13 16:10:09 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1658 2015/06/13 17:24:25 tetromino Exp $
+
+  13 Jun 2015; Alexandre Rostovtsev <tetromino@gentoo.org>
+  -gnome-python-common.eclass:
+  Punt obsolete, unused eclass; it had a fixed set of users all of which
+  have migrated to gnome-python-common-r1 (bug #551914, thanks to Michał
+  Górny).
 
   13 Jun 2015; Davide Pesavento <pesa@gentoo.org> qt4-build-multilib.eclass:
   Simplify move of .pc files.





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

end of thread, other threads:[~2015-06-13 17:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-25 15:31 [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog gnome-python-common.eclass Gilles Dartiguelongue (eva)
  -- strict thread matches above, loose matches on Subject: below --
2015-06-13 17:24 Alexandre Rostovtsev (tetromino)
2012-01-03 12:18 Nirbheek Chauhan (nirbheek)

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