jlec 15/01/04 19:03:50 Modified: ChangeLog uniconvertor-2.0_pre379-r1.ebuild Log: media-gfx/uniconvertor: Strip leading and trailing spaces from pkg-config call, #FL-1917 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Revision Changes Path 1.24 media-gfx/uniconvertor/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/uniconvertor/ChangeLog?rev=1.24&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/uniconvertor/ChangeLog?rev=1.24&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/uniconvertor/ChangeLog?r1=1.23&r2=1.24 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-gfx/uniconvertor/ChangeLog,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- ChangeLog 4 Jan 2015 12:35:46 -0000 1.23 +++ ChangeLog 4 Jan 2015 19:03:50 -0000 1.24 @@ -1,6 +1,10 @@ # ChangeLog for media-gfx/uniconvertor # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/uniconvertor/ChangeLog,v 1.23 2015/01/04 12:35:46 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/uniconvertor/ChangeLog,v 1.24 2015/01/04 19:03:50 jlec Exp $ + + 04 Jan 2015; Justin Lecher <[email protected]> + uniconvertor-2.0_pre379-r1.ebuild: + Strip leading and trailing spaces from pkg-config call, #FL-1917 *uniconvertor-2.0_pre379-r1 (04 Jan 2015) 1.2 media-gfx/uniconvertor/uniconvertor-2.0_pre379-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/uniconvertor/uniconvertor-2.0_pre379-r1.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/uniconvertor/uniconvertor-2.0_pre379-r1.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/uniconvertor/uniconvertor-2.0_pre379-r1.ebuild?r1=1.1&r2=1.2 Index: uniconvertor-2.0_pre379-r1.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-gfx/uniconvertor/uniconvertor-2.0_pre379-r1.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- uniconvertor-2.0_pre379-r1.ebuild 4 Jan 2015 12:35:46 -0000 1.1 +++ uniconvertor-2.0_pre379-r1.ebuild 4 Jan 2015 19:03:50 -0000 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/uniconvertor/uniconvertor-2.0_pre379-r1.ebuild,v 1.1 2015/01/04 12:35:46 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/uniconvertor/uniconvertor-2.0_pre379-r1.ebuild,v 1.2 2015/01/04 19:03:50 jlec Exp $ EAPI=5 @@ -34,7 +34,7 @@ python_prepare_all() { local wand - wand=$(pkg-config --libs Wand | sed -e "s:-l:\':g" -e "s: :',:g" -e "s:$:':g" -e "s:,'$::g") + wand=$(pkg-config --libs Wand | sed -e "s:^ *::g" -e "s: *$::g" -e "s:-l:\':g" -e "s: :',:g" -e "s:$:':g" -e "s:,'$::g") distutils-r1_python_prepare_all
