Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pychroot: pychroot-9999.ebuild ChangeLog
Date: Sun, 02 Aug 2015 03:51:23
Message-Id: 20150802035109.85ABA111@oystercatcher.gentoo.org
1 radhermit 15/08/02 03:51:09
2
3 Modified: pychroot-9999.ebuild ChangeLog
4 Log:
5 Use make to install docs.
6
7 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
8
9 Revision Changes Path
10 1.6 dev-python/pychroot/pychroot-9999.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pychroot/pychroot-9999.ebuild?rev=1.6&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pychroot/pychroot-9999.ebuild?rev=1.6&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pychroot/pychroot-9999.ebuild?r1=1.5&r2=1.6
15
16 Index: pychroot-9999.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pychroot/pychroot-9999.ebuild,v
19 retrieving revision 1.5
20 retrieving revision 1.6
21 diff -u -r1.5 -r1.6
22 --- pychroot-9999.ebuild 2 Aug 2015 01:42:51 -0000 1.5
23 +++ pychroot-9999.ebuild 2 Aug 2015 03:51:09 -0000 1.6
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2015 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pychroot/pychroot-9999.ebuild,v 1.5 2015/08/02 01:42:51 radhermit Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pychroot/pychroot-9999.ebuild,v 1.6 2015/08/02 03:51:09 radhermit Exp $
29
30 EAPI=5
31 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
32 @@ -33,10 +33,7 @@
33 [[ ${PV} == *9999 ]] && DEPEND+=" dev-python/sphinx[${PYTHON_USEDEP}]"
34
35 python_compile_all() {
36 - if [[ ${PV} == *9999 ]]; then
37 - emake -C doc man
38 - ln -s doc/_build/man || die
39 - fi
40 + [[ ${PV} == *9999 ]] && emake -C doc man
41 }
42
43 python_test() {
44 @@ -45,5 +42,5 @@
45
46 python_install_all() {
47 distutils-r1_python_install_all
48 - doman man/*
49 + emake -C doc PREFIX=/usr DESTDIR="${D}" install_man
50 }
51
52
53
54 1.11 dev-python/pychroot/ChangeLog
55
56 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pychroot/ChangeLog?rev=1.11&view=markup
57 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pychroot/ChangeLog?rev=1.11&content-type=text/plain
58 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pychroot/ChangeLog?r1=1.10&r2=1.11
59
60 Index: ChangeLog
61 ===================================================================
62 RCS file: /var/cvsroot/gentoo-x86/dev-python/pychroot/ChangeLog,v
63 retrieving revision 1.10
64 retrieving revision 1.11
65 diff -u -r1.10 -r1.11
66 --- ChangeLog 2 Aug 2015 01:42:51 -0000 1.10
67 +++ ChangeLog 2 Aug 2015 03:51:09 -0000 1.11
68 @@ -1,6 +1,9 @@
69 # ChangeLog for dev-python/pychroot
70 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
71 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pychroot/ChangeLog,v 1.10 2015/08/02 01:42:51 radhermit Exp $
72 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pychroot/ChangeLog,v 1.11 2015/08/02 03:51:09 radhermit Exp $
73 +
74 + 02 Aug 2015; Tim Harder <radhermit@g.o> pychroot-9999.ebuild:
75 + Use make to install docs.
76
77 02 Aug 2015; Tim Harder <radhermit@g.o> pychroot-9999.ebuild:
78 Add support for building and installing man pages.