public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-tv/mythtv: mythtv-0.25.2_p20120716.ebuild mythtv-0.25.1_p20120715.ebuild mythtv-0.25.1_p20120708.ebuild ChangeLog
@ 2012-07-23 16:31 Mike Gilbert (floppym)
  0 siblings, 0 replies; 2+ messages in thread
From: Mike Gilbert (floppym) @ 2012-07-23 16:31 UTC (permalink / raw
  To: gentoo-commits

floppym     12/07/23 16:31:26

  Modified:             mythtv-0.25.2_p20120716.ebuild
                        mythtv-0.25.1_p20120715.ebuild
                        mythtv-0.25.1_p20120708.ebuild ChangeLog
  Log:
  Do not call python_convert_shebangs() on files, which are not Python scripts. Patch by Arfrever.
  
  (Portage version: 2.2.0_alpha120/cvs/Linux x86_64)

Revision  Changes    Path
1.8                  media-tv/mythtv/mythtv-0.25.2_p20120716.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/mythtv-0.25.2_p20120716.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/mythtv-0.25.2_p20120716.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/mythtv-0.25.2_p20120716.ebuild?r1=1.7&r2=1.8

Index: mythtv-0.25.2_p20120716.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-tv/mythtv/mythtv-0.25.2_p20120716.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- mythtv-0.25.2_p20120716.ebuild	21 Jul 2012 21:47:20 -0000	1.7
+++ mythtv-0.25.2_p20120716.ebuild	23 Jul 2012 16:31:26 -0000	1.8
@@ -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/media-tv/mythtv/mythtv-0.25.2_p20120716.ebuild,v 1.7 2012/07/21 21:47:20 cardoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/mythtv-0.25.2_p20120716.ebuild,v 1.8 2012/07/23 16:31:26 floppym Exp $
 
 EAPI=4
 
@@ -287,14 +287,16 @@
 		newins "${FILESDIR}"/xinitrc-r1 .xinitrc
 	fi
 
-	# Make Python files executable and ensure they are executed by Python 2
+	# Make Python files executable
 	find "${ED}/usr/share/mythtv" -type f -name '*.py' | while read file; do
 		if [[ ! "${file##*/}" = "__init__.py" ]]; then
 			chmod a+x "${file}"
-			python_convert_shebangs -q 2 "${file}"
 		fi
 	done
 
+	# Ensure that Python scripts are executed by Python 2
+	python_convert_shebangs -q -r 2 "${ED}/usr/share/mythtv"
+
 	# Make shell & perl scripts executable
 	find "${ED}" -type f -name '*.sh' -o -type f -name '*.pl' | \
 		while read file; do



1.2                  media-tv/mythtv/mythtv-0.25.1_p20120715.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120715.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120715.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120715.ebuild?r1=1.1&r2=1.2

Index: mythtv-0.25.1_p20120715.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120715.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mythtv-0.25.1_p20120715.ebuild	15 Jul 2012 22:40:09 -0000	1.1
+++ mythtv-0.25.1_p20120715.ebuild	23 Jul 2012 16:31:26 -0000	1.2
@@ -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/media-tv/mythtv/mythtv-0.25.1_p20120715.ebuild,v 1.1 2012/07/15 22:40:09 cardoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120715.ebuild,v 1.2 2012/07/23 16:31:26 floppym Exp $
 
 EAPI=4
 
@@ -262,14 +262,16 @@
 		newins "${FILESDIR}"/xinitrc-r1 .xinitrc
 	fi
 
-	# Make Python files executable and ensure they are executed by Python 2
+	# Make Python files executable
 	find "${ED}/usr/share/mythtv" -type f -name '*.py' | while read file; do
 		if [[ ! "${file##*/}" = "__init__.py" ]]; then
 			chmod a+x "${file}"
-			python_convert_shebangs -q 2 "${file}"
 		fi
 	done
 
+	# Ensure that Python scripts are executed by Python 2
+	python_convert_shebangs -q -r 2 "${ED}/usr/share/mythtv"
+
 	# Make shell & perl scripts executable
 	find "${ED}" -type f -name '*.sh' -o -type f -name '*.pl' | \
 		while read file; do



1.11                 media-tv/mythtv/mythtv-0.25.1_p20120708.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120708.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120708.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120708.ebuild?r1=1.10&r2=1.11

Index: mythtv-0.25.1_p20120708.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120708.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- mythtv-0.25.1_p20120708.ebuild	12 Jul 2012 03:03:14 -0000	1.10
+++ mythtv-0.25.1_p20120708.ebuild	23 Jul 2012 16:31:26 -0000	1.11
@@ -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/media-tv/mythtv/mythtv-0.25.1_p20120708.ebuild,v 1.10 2012/07/12 03:03:14 cardoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120708.ebuild,v 1.11 2012/07/23 16:31:26 floppym Exp $
 
 EAPI=4
 
@@ -266,14 +266,16 @@
 		newins "${FILESDIR}"/xinitrc-r1 .xinitrc
 	fi
 
-	# Make Python files executable and ensure they are executed by Python 2
+	# Make Python files executable
 	find "${ED}/usr/share/mythtv" -type f -name '*.py' | while read file; do
 		if [[ ! "${file##*/}" = "__init__.py" ]]; then
 			chmod a+x "${file}"
-			python_convert_shebangs -q 2 "${file}"
 		fi
 	done
 
+	# Ensure that Python scripts are executed by Python 2
+	python_convert_shebangs -q -r 2 "${ED}/usr/share/mythtv"
+
 	# Make shell & perl scripts executable
 	find "${ED}" -type f -name '*.sh' -o -type f -name '*.pl' | \
 		while read file; do



1.375                media-tv/mythtv/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/ChangeLog?rev=1.375&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/ChangeLog?rev=1.375&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/ChangeLog?r1=1.374&r2=1.375

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-tv/mythtv/ChangeLog,v
retrieving revision 1.374
retrieving revision 1.375
diff -u -r1.374 -r1.375
--- ChangeLog	21 Jul 2012 21:47:20 -0000	1.374
+++ ChangeLog	23 Jul 2012 16:31:26 -0000	1.375
@@ -1,6 +1,11 @@
 # ChangeLog for media-tv/mythtv
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/ChangeLog,v 1.374 2012/07/21 21:47:20 cardoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/ChangeLog,v 1.375 2012/07/23 16:31:26 floppym Exp $
+
+  23 Jul 2012; Mike Gilbert <floppym@gentoo.org> mythtv-0.25.1_p20120708.ebuild,
+  mythtv-0.25.1_p20120715.ebuild, mythtv-0.25.2_p20120716.ebuild:
+  Do not call python_convert_shebangs() on files, which are not Python scripts.
+  Patch by Arfrever.
 
   21 Jul 2012; Doug Goldstein <cardoe@gentoo.org>
   mythtv-0.25.2_p20120716.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in media-tv/mythtv: mythtv-0.25.2_p20120716.ebuild mythtv-0.25.1_p20120715.ebuild mythtv-0.25.1_p20120708.ebuild ChangeLog
@ 2012-07-27 15:11 Michael Palimaka (kensington)
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Palimaka (kensington) @ 2012-07-27 15:11 UTC (permalink / raw
  To: gentoo-commits

kensington    12/07/27 15:11:16

  Modified:             mythtv-0.25.2_p20120716.ebuild
                        mythtv-0.25.1_p20120715.ebuild
                        mythtv-0.25.1_p20120708.ebuild ChangeLog
  Log:
  Add missing slot dependencies on Qt.
  
  (Portage version: 2.1.11.9/cvs/Linux x86_64)

Revision  Changes    Path
1.10                 media-tv/mythtv/mythtv-0.25.2_p20120716.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/mythtv-0.25.2_p20120716.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/mythtv-0.25.2_p20120716.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/mythtv-0.25.2_p20120716.ebuild?r1=1.9&r2=1.10

Index: mythtv-0.25.2_p20120716.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-tv/mythtv/mythtv-0.25.2_p20120716.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- mythtv-0.25.2_p20120716.ebuild	23 Jul 2012 19:19:03 -0000	1.9
+++ mythtv-0.25.2_p20120716.ebuild	27 Jul 2012 15:11:16 -0000	1.10
@@ -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/media-tv/mythtv/mythtv-0.25.2_p20120716.ebuild,v 1.9 2012/07/23 19:19:03 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/mythtv-0.25.2_p20120716.ebuild,v 1.10 2012/07/27 15:11:16 kensington Exp $
 
 EAPI=4
 
@@ -40,7 +40,7 @@
 	x11-libs/libXrandr
 	x11-libs/libXxf86vm
 	>=x11-libs/qt-core-4.7.2:4
-	>=x11-libs/qt-dbus-4.7.2
+	>=x11-libs/qt-dbus-4.7.2:4
 	>=x11-libs/qt-gui-4.7.2:4
 	>=x11-libs/qt-script-4.7.2:4
 	>=x11-libs/qt-sql-4.7.2:4[mysql]



1.4                  media-tv/mythtv/mythtv-0.25.1_p20120715.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120715.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120715.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120715.ebuild?r1=1.3&r2=1.4

Index: mythtv-0.25.1_p20120715.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120715.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mythtv-0.25.1_p20120715.ebuild	23 Jul 2012 19:19:03 -0000	1.3
+++ mythtv-0.25.1_p20120715.ebuild	27 Jul 2012 15:11:16 -0000	1.4
@@ -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/media-tv/mythtv/mythtv-0.25.1_p20120715.ebuild,v 1.3 2012/07/23 19:19:03 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120715.ebuild,v 1.4 2012/07/27 15:11:16 kensington Exp $
 
 EAPI=4
 
@@ -37,7 +37,7 @@
 	x11-libs/libXrandr
 	x11-libs/libXxf86vm
 	>=x11-libs/qt-core-4.7.2:4
-	>=x11-libs/qt-dbus-4.7.2
+	>=x11-libs/qt-dbus-4.7.2:4
 	>=x11-libs/qt-gui-4.7.2:4
 	>=x11-libs/qt-sql-4.7.2:4[mysql]
 	>=x11-libs/qt-opengl-4.7.2:4



1.12                 media-tv/mythtv/mythtv-0.25.1_p20120708.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120708.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120708.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120708.ebuild?r1=1.11&r2=1.12

Index: mythtv-0.25.1_p20120708.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120708.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- mythtv-0.25.1_p20120708.ebuild	23 Jul 2012 16:31:26 -0000	1.11
+++ mythtv-0.25.1_p20120708.ebuild	27 Jul 2012 15:11:16 -0000	1.12
@@ -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/media-tv/mythtv/mythtv-0.25.1_p20120708.ebuild,v 1.11 2012/07/23 16:31:26 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/mythtv-0.25.1_p20120708.ebuild,v 1.12 2012/07/27 15:11:16 kensington Exp $
 
 EAPI=4
 
@@ -37,7 +37,7 @@
 	x11-libs/libXrandr
 	x11-libs/libXxf86vm
 	>=x11-libs/qt-core-4.7.2:4
-	>=x11-libs/qt-dbus-4.7.2
+	>=x11-libs/qt-dbus-4.7.2:4
 	>=x11-libs/qt-gui-4.7.2:4
 	>=x11-libs/qt-sql-4.7.2:4[mysql]
 	>=x11-libs/qt-opengl-4.7.2:4



1.377                media-tv/mythtv/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/ChangeLog?rev=1.377&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/ChangeLog?rev=1.377&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/mythtv/ChangeLog?r1=1.376&r2=1.377

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-tv/mythtv/ChangeLog,v
retrieving revision 1.376
retrieving revision 1.377
diff -u -r1.376 -r1.377
--- ChangeLog	23 Jul 2012 19:19:03 -0000	1.376
+++ ChangeLog	27 Jul 2012 15:11:16 -0000	1.377
@@ -1,6 +1,11 @@
 # ChangeLog for media-tv/mythtv
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/ChangeLog,v 1.376 2012/07/23 19:19:03 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/ChangeLog,v 1.377 2012/07/27 15:11:16 kensington Exp $
+
+  27 Jul 2012; Michael Palimaka <kensington@gentoo.org>
+  mythtv-0.25.1_p20120708.ebuild, mythtv-0.25.1_p20120715.ebuild,
+  mythtv-0.25.2_p20120716.ebuild:
+  Add missing slot dependencies on Qt.
 
   23 Jul 2012; Mike Gilbert <floppym@gentoo.org> mythtv-0.25.1_p20120715.ebuild,
   mythtv-0.25.2_p20120716.ebuild:





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

end of thread, other threads:[~2012-07-27 15:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-23 16:31 [gentoo-commits] gentoo-x86 commit in media-tv/mythtv: mythtv-0.25.2_p20120716.ebuild mythtv-0.25.1_p20120715.ebuild mythtv-0.25.1_p20120708.ebuild ChangeLog Mike Gilbert (floppym)
  -- strict thread matches above, loose matches on Subject: below --
2012-07-27 15:11 Michael Palimaka (kensington)

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