jlec        15/06/15 19:58:05

  Modified:             metadata.xml ChangeLog
  Added:                paste-2.0.2.ebuild
  Log:
  Version Bump, bug #549776
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
E9402A79B03529A2!)

Revision  Changes    Path
1.5                  dev-python/paste/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/paste/metadata.xml?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/paste/metadata.xml?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/paste/metadata.xml?r1=1.4&r2=1.5

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/paste/metadata.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- metadata.xml        31 Mar 2012 17:02:37 -0000      1.4
+++ metadata.xml        15 Jun 2015 19:58:05 -0000      1.5
@@ -7,7 +7,7 @@
                wgsi servers and middleware)</flag>
                <flag name="openid">enable OpenID support</flag>
        </use>
-       <longdescription lang="en">This package provides several pieces of 
&quot;middleware&quot; (or filters) that can
+       <longdescription lang="en">This package provides several pieces of 
"middleware" (or filters) that can
        be nested to build web applications. Each piece of middleware uses the 
WSGI
        (PEP 333) interface, and should be compatible with other middleware 
based on
        those interfaces.</longdescription>



1.29                 dev-python/paste/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/paste/ChangeLog?rev=1.29&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/paste/ChangeLog?rev=1.29&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/paste/ChangeLog?r1=1.28&r2=1.29

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/paste/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog   8 Apr 2015 08:05:09 -0000       1.28
+++ ChangeLog   15 Jun 2015 19:58:05 -0000      1.29
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/paste
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/paste/ChangeLog,v 1.28 
2015/04/08 08:05:09 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/paste/ChangeLog,v 1.29 
2015/06/15 19:58:05 jlec Exp $
+
+*paste-2.0.2 (15 Jun 2015)
+
+  15 Jun 2015; Justin Lecher <[email protected]>
+  +files/paste-2.0.2-unbundle-tempita.patch, +paste-2.0.2.ebuild, metadata.xml:
+  Version Bump, bug #549776
 
   08 Apr 2015; Michał Górny <[email protected]> paste-1.7.5.1-r1.ebuild,
   paste-1.7.5.1-r2.ebuild:



1.1                  dev-python/paste/paste-2.0.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/paste/paste-2.0.2.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/paste/paste-2.0.2.ebuild?rev=1.1&content-type=text/plain

Index: paste-2.0.2.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/paste/paste-2.0.2.ebuild,v 1.1 
2015/06/15 19:58:05 jlec Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 python3_{3,4} )

inherit distutils-r1

MY_PN="Paste"
MY_P="${MY_PN}-${PV}"

DESCRIPTION="Tools for using a Web Server Gateway Interface stack"
HOMEPAGE="http://pythonpaste.org http://pypi.python.org/pypi/Paste";
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-interix ~amd64-linux ~x86-linux 
~x64-macos ~x86-macos ~sparc-solaris"
IUSE="doc flup openid"

RDEPEND="
        dev-python/six[${PYTHON_USEDEP}]
        >=dev-python/tempita-0.5.2_pre20130828[${PYTHON_USEDEP}]
        flup? ( dev-python/flup[$(python_gen_usedep 'python2*')] )
        openid? ( dev-python/python-openid[$(python_gen_usedep 'python2*')] )"
DEPEND="${RDEPEND}
        dev-python/setuptools[${PYTHON_USEDEP}]
        doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"

S="${WORKDIR}/${MY_P}"

python_prepare_all() {
        # Disable failing tests.
        rm -f tests/test_cgiapp.py || die
        sed \
                -e "s/test_find_file/_&/" \
                -e "s/test_deep/_&/" \
                -e "s/test_static_parser/_&/" \
                -i tests/test_urlparser.py || die "sed failed"

        # Remove a test that runs against the paste website.
        rm -f tests/test_proxy.py || die

        local PATCHES=(
                "${FILESDIR}"/${PN}-1.7.5.1-fix-tests-for-pypy.patch
                "${FILESDIR}"/${P}-unbundle-tempita.patch
                )

        distutils-r1_python_prepare_all
}

python_compile() {
        distutils-r1_python_compile egg_info --egg-base "${BUILD_DIR}/lib"
}

python_compile_all() {
        use doc && esetup.py build_sphinx
}

python_test() {
        nosetests -P -v || die "Tests fail with ${EPYTHON}"
}

python_install() {
        distutils-r1_python_install egg_info --egg-base "${BUILD_DIR}/lib"
}

python_install_all() {
        use doc && local HTML_DOCS=( "${BUILD_DIR}"/sphinx/html/. )
        distutils-r1_python_install_all
}




Reply via email to