public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in www-apache/mod_python: mod_python-3.5.0.ebuild metadata.xml ChangeLog
@ 2014-09-20 13:14 Michael Weber (xmw)
  0 siblings, 0 replies; only message in thread
From: Michael Weber (xmw) @ 2014-09-20 13:14 UTC (permalink / raw
  To: gentoo-commits

xmw         14/09/20 13:14:45

  Modified:             metadata.xml ChangeLog
  Added:                mod_python-3.5.0.ebuild
  Log:
  Version bump (bug 516034), taking maint.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)

Revision  Changes    Path
1.7                  www-apache/mod_python/metadata.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_python/metadata.xml?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_python/metadata.xml?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_python/metadata.xml?r1=1.6&r2=1.7

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_python/metadata.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- metadata.xml	20 Jul 2014 16:45:58 -0000	1.6
+++ metadata.xml	20 Sep 2014 13:14:45 -0000	1.7
@@ -1,7 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer><email>maintainer-needed@gentoo.org</email></maintainer>
+	<maintainer>
+		<email>xmw@gentoo.org</email>
+		<name>Michael Weber</name>
+	</maintainer>
 	<longdescription>
 		Mod_python is an Apache module that embeds the Python interpreter within
 		the server. With mod_python you can write web-based applications in Python



1.28                 www-apache/mod_python/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_python/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_python/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_python/ChangeLog?r1=1.27&r2=1.28

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_python/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	10 Aug 2014 20:17:28 -0000	1.27
+++ ChangeLog	20 Sep 2014 13:14:45 -0000	1.28
@@ -1,6 +1,13 @@
 # ChangeLog for www-apache/mod_python
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_python/ChangeLog,v 1.27 2014/08/10 20:17:28 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_python/ChangeLog,v 1.28 2014/09/20 13:14:45 xmw Exp $
+
+*mod_python-3.5.0 (20 Sep 2014)
+
+  20 Sep 2014; Michael Weber <xmw@gentoo.org>
+  +files/mod_python-3.5.0-buildsystem.patch, +mod_python-3.5.0.ebuild,
+  metadata.xml:
+  Version bump (bug 516034), taking maint.
 
   10 Aug 2014; Sergei Trofimovich <slyfox@gentoo.org>
   mod_python-3.3.1-r1.ebuild:



1.1                  www-apache/mod_python/mod_python-3.5.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_python/mod_python-3.5.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_python/mod_python-3.5.0.ebuild?rev=1.1&content-type=text/plain

Index: mod_python-3.5.0.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_python/mod_python-3.5.0.ebuild,v 1.1 2014/09/20 13:14:45 xmw Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 python3_3 python3_4 )

inherit apache-module eutils python-single-r1

DESCRIPTION="An Apache2 module providing an embedded Python interpreter"
HOMEPAGE="http://modpython.org/"
SRC_URI="http://dist.modpython.org/dist/${P}.tgz"

LICENSE="Apache-2.0"
KEYWORDS="~alpha ~amd64 ~ia64 ~mips ~ppc ~sparc ~x86"
IUSE="doc test"
SLOT="0"

APACHE2_MOD_CONF="16_${PN}"
APACHE2_MOD_DEFINE="PYTHON"
need_apache2_2

RDEPEND="${RDEPEND}"
DEPEND="${DEPEND}
	test? (
		app-admin/apache-tools
		net-misc/curl
	)"

src_prepare() {
	epatch "${FILESDIR}"/${P}-buildsystem.patch

	export CFLAGS="$(apxs2 -q CFLAGS)"
	export LDFLAGS="$(apxs2 -q LDFLAGS)"
}

src_compile() {
	default
}

src_test() {
	cd test || die
	PYTHONPATH="$(ls -d ${S}/dist/build/lib.*)" ${PYTHON} test.py || die
}

src_install() {
	default

	use doc && dohtml -r doc-html/*

	apache-module_src_install
}





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2014-09-20 13:14 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-20 13:14 [gentoo-commits] gentoo-x86 commit in www-apache/mod_python: mod_python-3.5.0.ebuild metadata.xml ChangeLog Michael Weber (xmw)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox