idella4     15/06/16 05:06:18

  Modified:             metadata.xml ChangeLog
  Added:                foolscap-0.8.0.ebuild
  Removed:              foolscap-0.6.5.ebuild
  Log:
  bump rewrite doc build, upgrade test phase
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xB8072B0D)

Revision  Changes    Path
1.2                  dev-python/foolscap/metadata.xml

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

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/foolscap/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml        17 Sep 2008 18:29:56 -0000      1.1
+++ metadata.xml        16 Jun 2015 05:06:18 -0000      1.2
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
 <pkgmetadata>
-<herd>python</herd>
+       <herd>python</herd>
 <longdescription>
 This is a ground-up rewrite of Perspective Broker, which itself is Twisted's
 native RPC/RMI protocol (Remote Procedure Call / Remote Method Invocation).
@@ -19,4 +19,7 @@
 (unguessable) FURL. You can of course publish world-visible objects that
 have well-known FURLs.
 </longdescription>
+        <upstream>
+                <remote-id type="pypi">foolscap</remote-id>
+        </upstream>
 </pkgmetadata>



1.56                 dev-python/foolscap/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/foolscap/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog   8 Apr 2015 08:05:11 -0000       1.55
+++ ChangeLog   16 Jun 2015 05:06:18 -0000      1.56
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/foolscap
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/foolscap/ChangeLog,v 1.55 
2015/04/08 08:05:11 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/foolscap/ChangeLog,v 1.56 
2015/06/16 05:06:18 idella4 Exp $
+
+*foolscap-0.8.0 (16 Jun 2015)
+
+  16 Jun 2015; Ian Delaney <[email protected]> +foolscap-0.8.0.ebuild,
+  -foolscap-0.6.5.ebuild, metadata.xml:
+  bump rewrite doc build, upgrade test phase
 
   08 Apr 2015; Michał Górny <[email protected]> foolscap-0.6.4-r1.ebuild:
   Drop old Python implementations



1.1                  dev-python/foolscap/foolscap-0.8.0.ebuild

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

Index: foolscap-0.8.0.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/foolscap/foolscap-0.8.0.ebuild,v 
1.1 2015/06/16 05:06:18 idella4 Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )

inherit distutils-r1

DESCRIPTION="RPC protocol for Twisted"
HOMEPAGE="http://foolscap.lothar.com/trac http://pypi.python.org/pypi/foolscap";
SRC_URI="http://${PN}.lothar.com/releases/${P}.tar.gz";

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
IUSE="doc +ssl test"

# setup.py stipulates >=twisted-core-2.5.0 but failures occur in testsuite 
under -15.x
RDEPEND="
        >=dev-python/twisted-core-2.5.0[${PYTHON_USEDEP}]
        <dev-python/twisted-core-15.0.0[${PYTHON_USEDEP}]
        >=dev-python/twisted-web-2.5.0[${PYTHON_USEDEP}]
        <dev-python/twisted-web-15.0.0[${PYTHON_USEDEP}]
        dev-python/service_identity[${PYTHON_USEDEP}]
        ssl? ( dev-python/pyopenssl[${PYTHON_USEDEP}] )
        "
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
        test? ( ${RDEPEND} )"

python_test() {
        trial ${PN} || die "Tests fail for ${EPYTHON}"
}

python_compile_all() {
        local i;
        if use doc; then
                pushd doc > /dev/null
                mkdir build || die
                for i in ./*.rst
                do
                        rst2html.py $i > ./build/${i/rst/html} || die
                done
                popd > /dev/null
        fi
}

python_test() {
        trial ${PN} || die "Tests fail for ${EPYTHON}"
}

python_install_all() {
        use doc && local HTML_DOCS=( doc/build/. )
        distutils-r1_python_install_all
}




Reply via email to