Gentoo Archives: gentoo-commits

From: "Devan Franchini (twitch153)" <twitch153@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/webapp-config: webapp-config-1.54.ebuild ChangeLog
Date: Fri, 03 Jul 2015 20:29:26
Message-Id: 20150703202917.ACC8774D@oystercatcher.gentoo.org
1 twitch153 15/07/03 20:29:17
2
3 Modified: ChangeLog
4 Added: webapp-config-1.54.ebuild
5 Log:
6 Adds webapp-config version 1.54
7
8 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key A8C8FBCF)
9
10 Revision Changes Path
11 1.135 app-admin/webapp-config/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/ChangeLog?rev=1.135&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/ChangeLog?rev=1.135&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/ChangeLog?r1=1.134&r2=1.135
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-admin/webapp-config/ChangeLog,v
20 retrieving revision 1.134
21 retrieving revision 1.135
22 diff -u -r1.134 -r1.135
23 --- ChangeLog 22 Jun 2015 19:24:29 -0000 1.134
24 +++ ChangeLog 3 Jul 2015 20:29:17 -0000 1.135
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-admin/webapp-config
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/ChangeLog,v 1.134 2015/06/22 19:24:29 twitch153 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/ChangeLog,v 1.135 2015/07/03 20:29:17 twitch153 Exp $
30 +
31 +*webapp-config-1.54 (03 Jul 2015)
32 +
33 + 03 Jul 2015; Devan Franchini <twitch153@g.o>
34 + +webapp-config-1.54.ebuild:
35 + Adds webapp-config version 1.54
36
37 22 Jun 2015; Devan Franchini <twitch153@g.o> webapp-config-9999.ebuild:
38 Updates to git-r3 eclass
39
40
41
42 1.1 app-admin/webapp-config/webapp-config-1.54.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/webapp-config-1.54.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/webapp-config-1.54.ebuild?rev=1.1&content-type=text/plain
46
47 Index: webapp-config-1.54.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/webapp-config-1.54.ebuild,v 1.1 2015/07/03 20:29:17 twitch153 Exp $
52
53 EAPI="5"
54
55 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
56
57 inherit distutils-r1
58
59 SRC_URI="http://dev.gentoo.org/~twitch153/${PN}/${P}.tar.bz2"
60 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
61
62 DESCRIPTION="Gentoo's installer for web-based applications"
63 HOMEPAGE="http://sourceforge.net/projects/webapp-config/"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 IUSE="+portage"
68
69 DEPEND="app-text/xmlto
70 sys-apps/gentoo-functions"
71 RDEPEND="portage? ( sys-apps/portage[${PYTHON_USEDEP}] )"
72
73 python_compile_all() {
74 emake -C doc/
75 }
76
77 python_install() {
78 # According to this discussion:
79 # http://mail.python.org/pipermail/distutils-sig/2004-February/003713.html
80 # distutils does not provide for specifying two different script install
81 # locations. Since we only install one script here the following should
82 # be ok
83 distutils-r1_python_install --install-scripts="/usr/sbin"
84 }
85
86 python_install_all() {
87 distutils-r1_python_install_all
88
89 insinto /etc/vhosts
90 doins config/webapp-config
91
92 keepdir /usr/share/webapps
93 keepdir /var/db/webapps
94
95 dodoc AUTHORS
96 doman doc/*.[58]
97 dohtml doc/*.[58].html
98 }
99
100 python_test() {
101 PYTHONPATH="." "${PYTHON}" WebappConfig/tests/external.py \
102 || die "Testing failed with ${EPYTHON}"
103 }
104
105 pkg_postinst() {
106 elog "webapp-config now requires that all -I/-U/-C commands be followed"
107 elog "by the package name and package version of the webapp"
108 elog "eg.) 'webapp-config -d drupal -I drupal 8.0.0_beta10'"
109 elog "See 'man 8 webapp-config' for more information"
110 }