* [gentoo-commits] gentoo-x86 commit in app-admin/webapp-config: webapp-config-9999.ebuild ChangeLog
@ 2013-07-05 0:29 Anthony G. Basile (blueness)
0 siblings, 0 replies; 4+ messages in thread
From: Anthony G. Basile (blueness) @ 2013-07-05 0:29 UTC (permalink / raw
To: gentoo-commits
blueness 13/07/05 00:29:10
Modified: webapp-config-9999.ebuild ChangeLog
Log:
Add intelligent dependency on portage to -9999
(Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Revision Changes Path
1.2 app-admin/webapp-config/webapp-config-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/webapp-config-9999.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/webapp-config-9999.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/webapp-config-9999.ebuild?r1=1.1&r2=1.2
Index: webapp-config-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/webapp-config/webapp-config-9999.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- webapp-config-9999.ebuild 18 Feb 2013 17:44:32 -0000 1.1
+++ webapp-config-9999.ebuild 5 Jul 2013 00:29:10 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/webapp-config-9999.ebuild,v 1.1 2013/02/18 17:44:32 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/webapp-config-9999.ebuild,v 1.2 2013/07/05 00:29:10 blueness Exp $
EAPI="5"
@@ -27,22 +27,33 @@
LICENSE="GPL-2"
SLOT="0"
-IUSE=""
DEPEND="app-text/xmlto"
-RDEPEND=""
-PYTHON_MODNAME="WebappConfig"
-src_compile() {
- BUILD_DIR="${WORKDIR}/${P}_build"
- distutils-r1_python_compile
+# We can't use-dep on portage for 9999 else we make repoman angry!
+if [[ ${PV} = 9999* ]]
+then
+ IUSE=""
+ RDEPEND=""
+else
+ IUSE="+portage"
+ RDEPEND="portage? ( sys-apps/portage[${PYTHON_USEDEP}] )"
+fi
+
+python_compile_all() {
emake -C doc/
}
-src_install() {
- python_export_best
+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="/usr/sbin"
+}
+python_install_all() {
insinto /etc/vhosts
doins config/webapp-config
@@ -56,12 +67,10 @@
python_test() {
PYTHONPATH="." "${PYTHON}" WebappConfig/tests/dtest.py \
- || die "Tests fail with ${EPYTHON}";
+ || die "Testing failed with ${EPYTHON}"
}
pkg_postinst() {
- distutils-r1_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."
1.89 app-admin/webapp-config/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/ChangeLog?rev=1.89&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/ChangeLog?rev=1.89&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/ChangeLog?r1=1.88&r2=1.89
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/webapp-config/ChangeLog,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- ChangeLog 5 Jul 2013 00:22:39 -0000 1.88
+++ ChangeLog 5 Jul 2013 00:29:10 -0000 1.89
@@ -1,6 +1,10 @@
# ChangeLog for app-admin/webapp-config
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/ChangeLog,v 1.88 2013/07/05 00:22:39 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/ChangeLog,v 1.89 2013/07/05 00:29:10 blueness Exp $
+
+ 05 Jul 2013; Anthony G. Basile <blueness@gentoo.org>
+ webapp-config-9999.ebuild:
+ Add intelligent dependency on portage to -9999
*webapp-config-1.50.19-r1 (05 Jul 2013)
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-admin/webapp-config: webapp-config-9999.ebuild ChangeLog
@ 2015-04-25 16:08 Mike Gilbert (floppym)
0 siblings, 0 replies; 4+ messages in thread
From: Mike Gilbert (floppym) @ 2015-04-25 16:08 UTC (permalink / raw
To: gentoo-commits
floppym 15/04/25 16:08:03
Modified: webapp-config-9999.ebuild ChangeLog
Log:
Replace links pointing at git.overlays.gentoo.org.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
Revision Changes Path
1.12 app-admin/webapp-config/webapp-config-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/webapp-config-9999.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/webapp-config-9999.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/webapp-config-9999.ebuild?r1=1.11&r2=1.12
Index: webapp-config-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/webapp-config/webapp-config-9999.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- webapp-config-9999.ebuild 8 Apr 2015 07:30:31 -0000 1.11
+++ webapp-config-9999.ebuild 25 Apr 2015 16:08:03 -0000 1.12
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/webapp-config-9999.ebuild,v 1.11 2015/04/08 07:30:31 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/webapp-config-9999.ebuild,v 1.12 2015/04/25 16:08:03 floppym Exp $
EAPI="5"
@@ -10,7 +10,7 @@
if [[ ${PV} = 9999* ]]
then
- EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/${PN}.git"
+ EGIT_REPO_URI="git://anongit.gentoo.org/proj/${PN}.git"
inherit git-2
KEYWORDS=""
else
1.124 app-admin/webapp-config/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/ChangeLog?rev=1.124&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/ChangeLog?rev=1.124&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/ChangeLog?r1=1.123&r2=1.124
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/webapp-config/ChangeLog,v
retrieving revision 1.123
retrieving revision 1.124
diff -u -r1.123 -r1.124
--- ChangeLog 8 Apr 2015 07:30:31 -0000 1.123
+++ ChangeLog 25 Apr 2015 16:08:03 -0000 1.124
@@ -1,6 +1,9 @@
# ChangeLog for app-admin/webapp-config
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/ChangeLog,v 1.123 2015/04/08 07:30:31 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/ChangeLog,v 1.124 2015/04/25 16:08:03 floppym Exp $
+
+ 25 Apr 2015; Mike Gilbert <floppym@gentoo.org> webapp-config-9999.ebuild:
+ Replace links pointing at git.overlays.gentoo.org.
08 Apr 2015; Michał Górny <mgorny@gentoo.org> webapp-config-1.52-r1.ebuild,
webapp-config-9999.ebuild:
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-admin/webapp-config: webapp-config-9999.ebuild ChangeLog
@ 2015-06-19 23:11 Devan Franchini (twitch153)
0 siblings, 0 replies; 4+ messages in thread
From: Devan Franchini (twitch153) @ 2015-06-19 23:11 UTC (permalink / raw
To: gentoo-commits
twitch153 15/06/19 23:11:06
Modified: webapp-config-9999.ebuild ChangeLog
Log:
Changes test suite file to external.py
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key A8C8FBCF)
Revision Changes Path
1.13 app-admin/webapp-config/webapp-config-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/webapp-config-9999.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/webapp-config-9999.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/webapp-config-9999.ebuild?r1=1.12&r2=1.13
Index: webapp-config-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/webapp-config/webapp-config-9999.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- webapp-config-9999.ebuild 25 Apr 2015 16:08:03 -0000 1.12
+++ webapp-config-9999.ebuild 19 Jun 2015 23:11:06 -0000 1.13
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/webapp-config-9999.ebuild,v 1.12 2015/04/25 16:08:03 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/webapp-config-9999.ebuild,v 1.13 2015/06/19 23:11:06 twitch153 Exp $
EAPI="5"
@@ -58,7 +58,7 @@
}
python_test() {
- PYTHONPATH="." "${PYTHON}" WebappConfig/tests/dtest.py \
+ PYTHONPATH="." "${PYTHON}" WebappConfig/tests/external.py \
|| die "Testing failed with ${EPYTHON}"
}
1.132 app-admin/webapp-config/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/ChangeLog?rev=1.132&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/ChangeLog?rev=1.132&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/ChangeLog?r1=1.131&r2=1.132
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/webapp-config/ChangeLog,v
retrieving revision 1.131
retrieving revision 1.132
diff -u -r1.131 -r1.132
--- ChangeLog 2 Jun 2015 05:23:25 -0000 1.131
+++ ChangeLog 19 Jun 2015 23:11:06 -0000 1.132
@@ -1,6 +1,9 @@
# ChangeLog for app-admin/webapp-config
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/ChangeLog,v 1.131 2015/06/02 05:23:25 jmorgan Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/ChangeLog,v 1.132 2015/06/19 23:11:06 twitch153 Exp $
+
+ 19 Jun 2015; Devan Franchini <twitch153@gentoo.org> webapp-config-9999.ebuild:
+ Changes test suite file to external.py
02 Jun 2015; Jack Morgan <jmorgan@gentoo.org> webapp-config-1.53-r2.ebuild:
sparc stable wrt bug #530260
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-admin/webapp-config: webapp-config-9999.ebuild ChangeLog
@ 2015-06-22 19:24 Devan Franchini (twitch153)
0 siblings, 0 replies; 4+ messages in thread
From: Devan Franchini (twitch153) @ 2015-06-22 19:24 UTC (permalink / raw
To: gentoo-commits
twitch153 15/06/22 19:24:29
Modified: webapp-config-9999.ebuild ChangeLog
Log:
Updates to git-r3 eclass
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key A8C8FBCF)
Revision Changes Path
1.14 app-admin/webapp-config/webapp-config-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/webapp-config-9999.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/webapp-config-9999.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/webapp-config-9999.ebuild?r1=1.13&r2=1.14
Index: webapp-config-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/webapp-config/webapp-config-9999.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- webapp-config-9999.ebuild 19 Jun 2015 23:11:06 -0000 1.13
+++ webapp-config-9999.ebuild 22 Jun 2015 19:24:29 -0000 1.14
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/webapp-config-9999.ebuild,v 1.13 2015/06/19 23:11:06 twitch153 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/webapp-config-9999.ebuild,v 1.14 2015/06/22 19:24:29 twitch153 Exp $
EAPI="5"
@@ -11,7 +11,7 @@
if [[ ${PV} = 9999* ]]
then
EGIT_REPO_URI="git://anongit.gentoo.org/proj/${PN}.git"
- inherit git-2
+ inherit git-r3
KEYWORDS=""
else
SRC_URI="http://dev.gentoo.org/~blueness/${PN}/${P}.tar.bz2"
1.134 app-admin/webapp-config/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/ChangeLog?rev=1.134&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/ChangeLog?rev=1.134&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/webapp-config/ChangeLog?r1=1.133&r2=1.134
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/webapp-config/ChangeLog,v
retrieving revision 1.133
retrieving revision 1.134
diff -u -r1.133 -r1.134
--- ChangeLog 21 Jun 2015 20:14:50 -0000 1.133
+++ ChangeLog 22 Jun 2015 19:24:29 -0000 1.134
@@ -1,6 +1,9 @@
# ChangeLog for app-admin/webapp-config
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/ChangeLog,v 1.133 2015/06/21 20:14:50 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/ChangeLog,v 1.134 2015/06/22 19:24:29 twitch153 Exp $
+
+ 22 Jun 2015; Devan Franchini <twitch153@gentoo.org> webapp-config-9999.ebuild:
+ Updates to git-r3 eclass
21 Jun 2015; Mikle Kolyada <zlogene@gentoo.org> webapp-config-1.53-r2.ebuild:
alpha stable wrt bug #530260
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-06-22 19:24 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-19 23:11 [gentoo-commits] gentoo-x86 commit in app-admin/webapp-config: webapp-config-9999.ebuild ChangeLog Devan Franchini (twitch153)
-- strict thread matches above, loose matches on Subject: below --
2015-06-22 19:24 Devan Franchini (twitch153)
2015-04-25 16:08 Mike Gilbert (floppym)
2013-07-05 0:29 Anthony G. Basile (blueness)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox