alunduil 15/04/02 17:34:02 Modified: ChangeLog Added: ghp-import-0.4.1-r1.ebuild Log: add non-UTF-8 patch Installation was failing on non-UTF8 locales. This bump adds the patching that has been submitted upstream (https://github.com/davisp/ghp-import/pull/36) to circumvent this issue. (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 11A8217C!)
Revision Changes Path 1.2 dev-python/ghp-import/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ghp-import/ChangeLog?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ghp-import/ChangeLog?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ghp-import/ChangeLog?r1=1.1&r2=1.2 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/ghp-import/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- ChangeLog 28 Feb 2015 17:08:08 -0000 1.1 +++ ChangeLog 2 Apr 2015 17:34:02 -0000 1.2 @@ -1,6 +1,13 @@ # ChangeLog for dev-python/ghp-import # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/ghp-import/ChangeLog,v 1.1 2015/02/28 17:08:08 alunduil Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/ghp-import/ChangeLog,v 1.2 2015/04/02 17:34:02 alunduil Exp $ + +*ghp-import-0.4.1-r1 (02 Apr 2015) + + 02 Apr 2015; Alex Brandt <[email protected]> +ghp-import-0.4.1-r1.ebuild: + add non-UTF-8 patch Installation was failing on non-UTF8 locales. This bump + adds the patching that has been submitted upstream (https://github.com/davisp + /ghp-import/pull/36) to circumvent this issue. *ghp-import-0.4.1 (28 Feb 2015) 1.1 dev-python/ghp-import/ghp-import-0.4.1-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ghp-import/ghp-import-0.4.1-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ghp-import/ghp-import-0.4.1-r1.ebuild?rev=1.1&content-type=text/plain Index: ghp-import-0.4.1-r1.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/ghp-import/ghp-import-0.4.1-r1.ebuild,v 1.1 2015/04/02 17:34:02 alunduil Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 python3_3 python3_4 ) inherit distutils-r1 DESCRIPTION="Copy your docs directly to the gh-pages branch" HOMEPAGE="http://github.com/davisp/ghp-import" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="tumbolia" SLOT="0" KEYWORDS="~amd64" IUSE="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" RDEPEND="" python_prepare_all() { ebegin 'patching setup.py' sed \ -e '4ifrom codecs import open\n' \ -e '/LONG_DESC/s/))/), encoding = "utf-8")/' \ -i setup.py STATUS=${?} eend ${STATUS} [[ ${STATUS} -gt 0 ]] && die distutils-r1_python_prepare_all }
