jlec        15/03/03 15:03:41

  Modified:             ChangeLog
  Added:                bpython-0.14.1.ebuild
  Log:
  Version Bump
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 
B9D4F231BD1558AB!)

Revision  Changes    Path
1.50                 dev-python/bpython/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/bpython/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog   19 Feb 2015 09:14:50 -0000      1.49
+++ ChangeLog   3 Mar 2015 15:03:41 -0000       1.50
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/bpython
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/bpython/ChangeLog,v 1.49 
2015/02/19 09:14:50 grozin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/bpython/ChangeLog,v 1.50 
2015/03/03 15:03:41 jlec Exp $
+
+*bpython-0.14.1 (03 Mar 2015)
+
+  03 Mar 2015; Justin Lecher <j...@gentoo.org> +bpython-0.14.1.ebuild:
+  Version Bump
 
   19 Feb 2015; Andrey Grozin <gro...@gentoo.org> bpython-0.14.ebuild:
   Cleanup, closing #540574



1.1                  dev-python/bpython/bpython-0.14.1.ebuild

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

Index: bpython-0.14.1.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/bpython/bpython-0.14.1.ebuild,v 
1.1 2015/03/03 15:03:41 jlec Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 python3_{3,4} )

PYTHON_REQ_USE="ncurses"

inherit distutils-r1

DESCRIPTION="Syntax highlighting and autocompletion for the Python interpreter"
HOMEPAGE="http://www.bpython-interpreter.org/ 
https://bitbucket.org/bobf/bpython/ http://pypi.python.org/pypi/bpython";
SRC_URI="
        http://www.bpython-interpreter.org/releases/${P}.tar.gz
        mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
        "

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc test"

RDEPEND="
        dev-python/curtsies[${PYTHON_USEDEP}]
        dev-python/greenlet[${PYTHON_USEDEP}]
        dev-python/jedi[${PYTHON_USEDEP}]
        dev-python/pygments[${PYTHON_USEDEP}]
        dev-python/requests[${PYTHON_USEDEP}]
        dev-python/setuptools[${PYTHON_USEDEP}]
        >=dev-python/six-1.5[${PYTHON_USEDEP}]
        dev-python/urwid[${PYTHON_USEDEP}]
        dev-python/watchdog[${PYTHON_USEDEP}]
        "
DEPEND="${RDEPEND}
        doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
        test? ( dev-python/mock[${PYTHON_USEDEP}] )"

DOCS=( AUTHORS CHANGELOG sample.theme light.theme )

# Req'd for clean build by each impl
DISTUTILS_IN_SOURCE_BUILD=1

python_compile_all() {
        if use doc; then
                sphinx-build -b html -c doc/sphinx/source/ \
                        doc/sphinx/source/ doc/sphinx/source/html || die "docs 
build failed"
        fi
}

python_test() {
        pushd build/lib > /dev/null
        "${PYTHON}" -m unittest discover || die
        popd > /dev/null
}

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




Reply via email to