Gentoo Archives: gentoo-commits

From: "Anthony G. Basile (blueness)" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/webapp-config: ChangeLog webapp-config-1.50.19.ebuild
Date: Thu, 28 Jun 2012 00:56:03
Message-Id: 20120628005552.C8B7A2004B@flycatcher.gentoo.org
1 blueness 12/06/28 00:55:52
2
3 Modified: ChangeLog
4 Added: webapp-config-1.50.19.ebuild
5 Log:
6 Version bump, incorporate patches from FILESDIR, address bug #243260
7
8 (Portage version: 2.1.10.65/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.80 app-admin/webapp-config/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/ChangeLog?rev=1.80&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/ChangeLog?rev=1.80&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/ChangeLog?r1=1.79&r2=1.80
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-admin/webapp-config/ChangeLog,v
20 retrieving revision 1.79
21 retrieving revision 1.80
22 diff -u -r1.79 -r1.80
23 --- ChangeLog 27 Jun 2012 11:56:05 -0000 1.79
24 +++ ChangeLog 28 Jun 2012 00:55:52 -0000 1.80
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-admin/webapp-config
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/ChangeLog,v 1.79 2012/06/27 11:56:05 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/ChangeLog,v 1.80 2012/06/28 00:55:52 blueness Exp $
30 +
31 +*webapp-config-1.50.19 (28 Jun 2012)
32 +
33 + 28 Jun 2012; Anthony G. Basile <blueness@g.o>
34 + +webapp-config-1.50.19.ebuild:
35 + Version bump, incorporate patches from FILESDIR, address bug #243260
36
37 27 Jun 2012; Agostino Sarubbo <ago@g.o>
38 webapp-config-1.50.16-r4.ebuild:
39
40
41
42 1.1 app-admin/webapp-config/webapp-config-1.50.19.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/webapp-config-1.50.19.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/webapp-config-1.50.19.ebuild?rev=1.1&content-type=text/plain
46
47 Index: webapp-config-1.50.19.ebuild
48 ===================================================================
49 # Copyright 1999-2012 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.50.19.ebuild,v 1.1 2012/06/28 00:55:52 blueness Exp $
52
53 EAPI="3"
54
55 PYTHON_DEPEND="2"
56 SUPPORT_PYTHON_ABIS="1"
57
58 inherit distutils
59
60 DESCRIPTION="Gentoo's installer for web-based applications"
61 HOMEPAGE="http://sourceforge.net/projects/webapp-config/"
62 SRC_URI="http://dev.gentoo.org/~blueness/${PN}/${P}.tar.bz2"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
67 IUSE=""
68
69 DEPEND=""
70 RDEPEND=""
71 RESTRICT_PYTHON_ABIS="3.*"
72
73 PYTHON_MODNAME="WebappConfig"
74
75 src_compile() {
76 distutils_src_compile
77 emake -C doc/
78 }
79
80 src_install() {
81 # According to this discussion:
82 # http://mail.python.org/pipermail/distutils-sig/2004-February/003713.html
83 # distutils does not provide for specifying two different script install
84 # locations. Since we only install one script here the following should
85 # be ok
86 distutils_src_install --install-scripts="/usr/sbin"
87
88 insinto /etc/vhosts
89 doins config/webapp-config
90
91 keepdir /usr/share/webapps
92 keepdir /var/db/webapps
93
94 dodoc AUTHORS TODO
95 doman doc/*.[58]
96 dohtml doc/*.[58].html
97 }
98
99 src_test() {
100 testing() {
101 PYTHONPATH="." "$(PYTHON)" WebappConfig/tests/dtest.py
102 }
103 python_execute_function testing
104 }
105
106 pkg_postinst() {
107 distutils_pkg_postinst
108
109 elog "Now that you have upgraded webapp-config, you **must** update your"
110 elog "config files in /etc/vhosts/webapp-config before you emerge any"
111 elog "packages that use webapp-config."
112 }