public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Devan Franchini" <twitch153@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/webapp-config/
Date: Thu, 22 Jun 2017 23:34:23 +0000 (UTC)	[thread overview]
Message-ID: <1498174391.bc687464acfaadd0c8dbde354f7d5d1d1f1f7d31.twitch153@gentoo> (raw)

commit:     bc687464acfaadd0c8dbde354f7d5d1d1f1f7d31
Author:     Devan Franchini <twitch153 <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 22 23:31:18 2017 +0000
Commit:     Devan Franchini <twitch153 <AT> gentoo <DOT> org>
CommitDate: Thu Jun 22 23:33:11 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc687464

app-admin/webapp-config: Adds 1.55 ebuild to the tree

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-admin/webapp-config/Manifest                  |  1 +
 app-admin/webapp-config/webapp-config-1.55.ebuild | 66 +++++++++++++++++++++++
 2 files changed, 67 insertions(+)

diff --git a/app-admin/webapp-config/Manifest b/app-admin/webapp-config/Manifest
index 4c6c0ac1933..49de5cd1bdf 100644
--- a/app-admin/webapp-config/Manifest
+++ b/app-admin/webapp-config/Manifest
@@ -1,3 +1,4 @@
 DIST webapp-config-1.52.tar.bz2 62951 SHA256 b8295bbc518f68f60913fe2ee9232d77f1a10e21fcddffb8c4370546ba96a2a5 SHA512 ec616067588e6ab306af067e70bab9d17961aa675f387ee67a2291235ce81638b49a784d9a6c31891b7c78a712f276c3e62c6681a5e496a52c7e6fe7753922ea WHIRLPOOL ca6484871e26acff6d14510a4a925672258f58c1c8c05c5207b78350b1cc787e29c6ea68c1af05b5c5aaebed12ce545e023f54acbdc7215678b30a2f14708eee
 DIST webapp-config-1.53.tar.bz2 63429 SHA256 4d45b1452feb730cc55bfdce686277183acfd64ab6aef5fab82992d1a508263d SHA512 7d2fc7197d537f2264c26b68b61e69273d2fcd3eec93657db54ba685c8383e7b8245cf05ed2ddd8b72453bf3fbf8f4bc4867e53d608331799df2e6162be14820 WHIRLPOOL f12ca0f3fcee31de6e2ead3cd3685fa32c697d258324bf40fc2bfc2f1787c4e7cbd7290bbb5f5523515bff29cb78bece35fcad390e419cf5dd619e5efdafc1dc
 DIST webapp-config-1.54.tar.bz2 58954 SHA256 7663c4f7ae0d4e7206e349f3bf79fed479c9971365363929f431c92ebd622d17 SHA512 fa61e88696eaed130575e5ae9a17ec827aa14aece359e5ba43fa723ad00083def22e44fb02d99fc5ba6000a5949c5ce7aecea9307d2bfae333e202ef111dcd31 WHIRLPOOL 417944147e0bdc7eb1575b10102230306f6c76652beeb0e2866d0fbe41b12bcdeb31421dd7551961db55f4fe4544ca5600c072cb74083621745c7c74fbfeec2e
+DIST webapp-config-1.55.tar.bz2 72583 SHA256 222c41ac71b2991b078352fb8d09a0d458ff30b9c9729a2429165835c38c564b SHA512 44294b276fd036908438cd984ebf70433639caa18d8330bab348433b4f39ea2c42c57fa8de4f0a6198f7875429a3ef9ebe61321c288d910f9be8b3414865f438 WHIRLPOOL 80d577e4398f6872129544221d58003beb5b5ce972c181a241ec96cfe0fe34975e7bef5a96acc40977320ad71cd4370ee58216c0517d78c1765f000a42d8ea56

diff --git a/app-admin/webapp-config/webapp-config-1.55.ebuild b/app-admin/webapp-config/webapp-config-1.55.ebuild
new file mode 100644
index 00000000000..d1f94e21cf1
--- /dev/null
+++ b/app-admin/webapp-config/webapp-config-1.55.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
+
+inherit distutils-r1 prefix
+
+SRC_URI="https://dev.gentoo.org/~twitch153/${PN}/${P}.tar.bz2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
+
+DESCRIPTION="Gentoo's installer for web-based applications"
+HOMEPAGE="https://sourceforge.net/projects/webapp-config/"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+portage"
+
+DEPEND="app-text/xmlto
+	!dev-python/configparser
+	sys-apps/gentoo-functions"
+RDEPEND="portage? ( sys-apps/portage[${PYTHON_USEDEP}] )"
+
+python_prepare_all() {
+	distutils-r1_python_prepare_all
+	eprefixify WebappConfig/eprefix.py config/webapp-config
+}
+
+python_compile_all() {
+	emake -C doc/
+}
+
+python_install() {
+	# According to this discussion:
+	# http://mail.python.org/pipermail/distutils-sig/2004-February/003713.html
+	# distutils does not provide for specifying two different script install
+	# locations. Since we only install one script here the following should
+	# be ok
+	distutils-r1_python_install --install-scripts="${EPREFIX}/usr/sbin"
+}
+
+python_install_all() {
+	distutils-r1_python_install_all
+
+	insinto /etc/vhosts
+	doins config/webapp-config
+
+	keepdir /usr/share/webapps
+	keepdir /var/db/webapps
+
+	dodoc AUTHORS
+	doman doc/*.[58]
+	dohtml doc/*.[58].html
+}
+
+python_test() {
+	PYTHONPATH="." "${PYTHON}" WebappConfig/tests/external.py \
+		|| die "Testing failed with ${EPYTHON}"
+}
+
+pkg_postinst() {
+	elog "Now that you have upgraded webapp-config, you **must** update your"
+	elog "config files in /etc/vhosts/webapp-config before you emerge any"
+	elog "packages that use webapp-config."
+}


             reply	other threads:[~2017-06-22 23:34 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-22 23:34 Devan Franchini [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-04-19 18:28 [gentoo-commits] repo/gentoo:master commit in: app-admin/webapp-config/ Viorel Munteanu
2024-05-25 17:36 Viorel Munteanu
2024-05-25 17:31 Arthur Zamarin
2024-05-20  8:42 Sam James
2024-05-20  8:42 Sam James
2024-05-20  8:19 Sam James
2024-05-20  8:18 Sam James
2024-05-20  8:18 Sam James
2024-05-20  8:18 Sam James
2023-08-27  5:59 Viorel Munteanu
2023-08-26 18:13 Sam James
2023-08-26 18:11 Sam James
2023-08-26 18:09 Sam James
2023-08-26 18:09 Sam James
2023-08-26 18:09 Sam James
2023-08-26 18:09 Sam James
2023-08-26 18:09 Sam James
2023-07-08  7:45 Viorel Munteanu
2023-03-07 11:53 Sam James
2023-03-07 11:39 Sam James
2023-03-04  5:47 Arthur Zamarin
2022-10-01  1:02 Sam James
2022-09-14 15:30 Jakov Smolić
2022-02-02 13:15 Craig Andrews
2021-09-18 19:16 Anthony G. Basile
2021-04-07  8:06 Michał Górny
2021-03-08 20:40 Matt Turner
2021-02-18 20:14 Sam James
2020-04-18 17:55 Craig Andrews
2020-03-19  9:41 Michał Górny
2019-03-23  9:11 Anthony G. Basile
2018-06-12 15:32 Mikle Kolyada
2018-03-26  6:54 Sergei Trofimovich
2017-07-11  4:45 Markus Meier
2017-06-30  8:16 Sergei Trofimovich
2017-06-26 20:18 Tobias Klausmann
2017-06-25 16:32 Agostino Sarubbo
2017-06-24  3:59 Devan Franchini
2017-06-24  3:59 Devan Franchini
2017-06-22 23:34 Devan Franchini
2017-05-23  6:05 Michał Górny
2017-05-16 23:03 Manuel Rüger
2017-05-16 23:03 Manuel Rüger
2017-02-16  3:29 Devan Franchini
2016-10-09  7:47 Pacho Ramos
2015-11-01 15:14 Tobias Klausmann
2015-10-30 10:15 Agostino Sarubbo
2015-10-17 11:13 Markus Meier
2015-10-10 15:10 Mikle Kolyada
2015-10-02 11:05 Mikle Kolyada
2015-09-30  3:54 Jeroen Roovers
2015-09-30  3:50 Jeroen Roovers
2015-09-28 10:04 Mikle Kolyada
2015-09-28  9:31 Agostino Sarubbo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1498174391.bc687464acfaadd0c8dbde354f7d5d1d1f1f7d31.twitch153@gentoo \
    --to=twitch153@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox