[oe-commits] Michael 'Mickey' Lauer : gst-plugins.inc: the 'string' module is deprecated in favour of calling methods on string objects.

GIT User account git at amethyst.openembedded.net
Thu Jan 15 16:51:28 UTC 2009


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 555d831d2b137d0fd55516070fce31bf685daea8
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=555d831d2b137d0fd55516070fce31bf685daea8

Author: Michael 'Mickey' Lauer <mickey at vanille-media.de>
Date:   Thu Jan 15 17:50:24 2009 +0100

gst-plugins.inc: the 'string' module is deprecated in favour of calling methods on string objects.

---

 packages/gstreamer/gst-plugins.inc |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/packages/gstreamer/gst-plugins.inc b/packages/gstreamer/gst-plugins.inc
index 843ee69..c0b15ef 100644
--- a/packages/gstreamer/gst-plugins.inc
+++ b/packages/gstreamer/gst-plugins.inc
@@ -17,7 +17,6 @@ OE_LT_RPATH_ALLOW[export]="1"
 LIBV = "0.10"
 
 python populate_packages_prepend () {
-	import string
 	gst_libdir = bb.data.expand('${libdir}/gstreamer-${LIBV}', d)
 	postinst = bb.data.getVar('plugin_postinst', d, 1)
 
@@ -32,7 +31,7 @@ python populate_packages_prepend () {
 	metapkg_rdepends = []
 	packages = bb.data.getVar('PACKAGES', d, 1).split()
 	for pkg in packages[1:]:
-		if not pkg in blacklist and not pkg in metapkg_rdepends and not string.count(pkg, 'dev') and not string.count(pkg,'locale'):
+		if not pkg in blacklist and not pkg in metapkg_rdepends and not pkg.count('dev') and not pkg.count( 'locale' ):
 			metapkg_rdepends.append(pkg)
 	bb.data.setVar('RDEPENDS_' + metapkg, ' '.join(metapkg_rdepends), d)
 	bb.data.setVar('DESCRIPTION_' + metapkg, pn + ' meta package', d)





More information about the Openembedded-commits mailing list