Gentoo Archives: gentoo-commits

From: "Alex Brandt (alunduil)" <alunduil@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/ghp-import: ghp-import-0.4.1-r1.ebuild ChangeLog
Date: Thu, 02 Apr 2015 17:34:10
Message-Id: 20150402173403.B822815130@oystercatcher.gentoo.org
1 alunduil 15/04/02 17:34:02
2
3 Modified: ChangeLog
4 Added: ghp-import-0.4.1-r1.ebuild
5 Log:
6 add non-UTF-8 patch
7
8 Installation was failing on non-UTF8 locales. This bump adds the patching that
9 has been submitted upstream (https://github.com/davisp/ghp-import/pull/36) to
10 circumvent this issue.
11
12 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 11A8217C!)
13
14 Revision Changes Path
15 1.2 dev-python/ghp-import/ChangeLog
16
17 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ghp-import/ChangeLog?rev=1.2&view=markup
18 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ghp-import/ChangeLog?rev=1.2&content-type=text/plain
19 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ghp-import/ChangeLog?r1=1.1&r2=1.2
20
21 Index: ChangeLog
22 ===================================================================
23 RCS file: /var/cvsroot/gentoo-x86/dev-python/ghp-import/ChangeLog,v
24 retrieving revision 1.1
25 retrieving revision 1.2
26 diff -u -r1.1 -r1.2
27 --- ChangeLog 28 Feb 2015 17:08:08 -0000 1.1
28 +++ ChangeLog 2 Apr 2015 17:34:02 -0000 1.2
29 @@ -1,6 +1,13 @@
30 # ChangeLog for dev-python/ghp-import
31 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
32 -# $Header: /var/cvsroot/gentoo-x86/dev-python/ghp-import/ChangeLog,v 1.1 2015/02/28 17:08:08 alunduil Exp $
33 +# $Header: /var/cvsroot/gentoo-x86/dev-python/ghp-import/ChangeLog,v 1.2 2015/04/02 17:34:02 alunduil Exp $
34 +
35 +*ghp-import-0.4.1-r1 (02 Apr 2015)
36 +
37 + 02 Apr 2015; Alex Brandt <alunduil@g.o> +ghp-import-0.4.1-r1.ebuild:
38 + add non-UTF-8 patch Installation was failing on non-UTF8 locales. This bump
39 + adds the patching that has been submitted upstream (https://github.com/davisp
40 + /ghp-import/pull/36) to circumvent this issue.
41
42 *ghp-import-0.4.1 (28 Feb 2015)
43
44
45
46
47 1.1 dev-python/ghp-import/ghp-import-0.4.1-r1.ebuild
48
49 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
50 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
51
52 Index: ghp-import-0.4.1-r1.ebuild
53 ===================================================================
54 # Copyright 1999-2015 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $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 $
57
58 EAPI=5
59 PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
60
61 inherit distutils-r1
62
63 DESCRIPTION="Copy your docs directly to the gh-pages branch"
64 HOMEPAGE="http://github.com/davisp/ghp-import"
65 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
66
67 LICENSE="tumbolia"
68 SLOT="0"
69 KEYWORDS="~amd64"
70 IUSE=""
71
72 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
73 RDEPEND=""
74
75 python_prepare_all() {
76 ebegin 'patching setup.py'
77 sed \
78 -e '4ifrom codecs import open\n' \
79 -e '/LONG_DESC/s/))/), encoding = "utf-8")/' \
80 -i setup.py
81 STATUS=${?}
82 eend ${STATUS}
83 [[ ${STATUS} -gt 0 ]] && die
84
85 distutils-r1_python_prepare_all
86 }