Gentoo Archives: gentoo-commits

From: Devan Franchini <twitch153@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/webapp-config/
Date: Thu, 22 Jun 2017 23:34:29
Message-Id: 1498174389.2ae9900b7310a643423546b3ee3bb847c55ffefe.twitch153@gentoo
1 commit: 2ae9900b7310a643423546b3ee3bb847c55ffefe
2 Author: Devan Franchini <twitch153 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 22 23:26:56 2017 +0000
4 Commit: Devan Franchini <twitch153 <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 22 23:33:09 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ae9900b
7
8 app-admin/webapp-config: Deletes 1.54-r1 ebuild
9
10 .../webapp-config/webapp-config-1.54-r1.ebuild | 64 ----------------------
11 1 file changed, 64 deletions(-)
12
13 diff --git a/app-admin/webapp-config/webapp-config-1.54-r1.ebuild b/app-admin/webapp-config/webapp-config-1.54-r1.ebuild
14 deleted file mode 100644
15 index 2141c27bac3..00000000000
16 --- a/app-admin/webapp-config/webapp-config-1.54-r1.ebuild
17 +++ /dev/null
18 @@ -1,64 +0,0 @@
19 -# Copyright 1999-2016 Gentoo Foundation
20 -# Distributed under the terms of the GNU General Public License v2
21 -
22 -EAPI="5"
23 -
24 -PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy )
25 -
26 -inherit distutils-r1
27 -
28 -SRC_URI="https://dev.gentoo.org/~twitch153/${PN}/${P}.tar.bz2"
29 -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd"
30 -
31 -DESCRIPTION="Gentoo's installer for web-based applications"
32 -HOMEPAGE="https://sourceforge.net/projects/webapp-config/"
33 -
34 -LICENSE="GPL-2"
35 -SLOT="0"
36 -IUSE="+portage"
37 -
38 -DEPEND="app-text/xmlto
39 - sys-apps/gentoo-functions"
40 -RDEPEND="portage? ( sys-apps/portage[${PYTHON_USEDEP}] )"
41 -
42 -python_prepare() {
43 - epatch "${FILESDIR}/${P}-pvr-check.patch"
44 -}
45 -python_compile_all() {
46 - emake -C doc/
47 -}
48 -
49 -python_install() {
50 - # According to this discussion:
51 - # http://mail.python.org/pipermail/distutils-sig/2004-February/003713.html
52 - # distutils does not provide for specifying two different script install
53 - # locations. Since we only install one script here the following should
54 - # be ok
55 - distutils-r1_python_install --install-scripts="${EPREFIX}/usr/sbin"
56 -}
57 -
58 -python_install_all() {
59 - distutils-r1_python_install_all
60 -
61 - insinto /etc/vhosts
62 - doins config/webapp-config
63 -
64 - keepdir /usr/share/webapps
65 - keepdir /var/db/webapps
66 -
67 - dodoc AUTHORS
68 - doman doc/*.[58]
69 - dohtml doc/*.[58].html
70 -}
71 -
72 -python_test() {
73 - PYTHONPATH="." "${PYTHON}" WebappConfig/tests/external.py \
74 - || die "Testing failed with ${EPYTHON}"
75 -}
76 -
77 -pkg_postinst() {
78 - elog "webapp-config now requires that all -I/-U/-C commands be followed"
79 - elog "by the package name and package version of the webapp"
80 - elog "eg.) 'webapp-config -d drupal -I drupal 8.0.0_beta10'"
81 - elog "See 'man 8 webapp-config' for more information"
82 -}