dev-python/xonsh: Version Bump
authorJustin Lecher <jlec@gentoo.org>
Fri, 22 Jan 2016 08:42:36 +0000 (09:42 +0100)
committerJustin Lecher <jlec@gentoo.org>
Fri, 22 Jan 2016 08:42:50 +0000 (09:42 +0100)
Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec@gentoo.org>
dev-python/xonsh/Manifest
dev-python/xonsh/metadata.xml
dev-python/xonsh/xonsh-0.2.4.ebuild
dev-python/xonsh/xonsh-0.2.5.ebuild [new file with mode: 0644]

index 47f23134f662b2ee34ef891ca34298c2437d0da5..e3b581b67337a65b5b89e6d9976bca631d901401 100644 (file)
@@ -1,2 +1,3 @@
 DIST xonsh-0.2.3.tar.gz 135218 SHA256 e54f045bbcb2c49f8bf67812bc1c1428628745d0b4dd9880c32b4703e51c4a4d SHA512 78cd577765e3116d0b0060a4db6e3e9aaa5bd870fce2e35241eaa00ca1600039d71b4f0ee011f20c959bf72f33ed09a69b4149c8daf377b9151ae0157259c700 WHIRLPOOL d1660a9f0571c8819560412033399cea4d80ee25707b87d84d852d26a7fcb392e0cf8d57f9084e2a3a36eb2ffffa38ae706b5da540cb2015c816efdd52148caf
 DIST xonsh-0.2.4.tar.gz 169491 SHA256 6fa02a32bdc1692992258f26f5bc31c5497143c1c8bd0a8fc279da219122f168 SHA512 17ef284ff57df517e5fc932816fb1ea800107f81aa42a5299d7ed6b2cc46eeaf176c9745b0e70524c0b92c582753b8b6dd586288a4db0ac95e3c4d7b20080cea WHIRLPOOL e472b10f73e785563e4ab457e60bf1702654a6fe2e6bdd35f4972a14485e100bcfb35b5ccbd93c6a55b228a9bd432f0c05287bb4b573bf6727d3e9cf6d8ed976
+DIST xonsh-0.2.5.tar.gz 188798 SHA256 a7bdc9d906cb800c271e3808293d27f4513e48e5f6f687241e7f90502c17769f SHA512 b3a3ec39dc9a4df3771bc9d12ce9658cc8740b043b09c7ff5f4b47a3d0d0424e6912c3811c07e7d76c612b09a7aa06dac18323ab8154fdf4b97b84785d9aea55 WHIRLPOOL 4d2467fc0585a889ec352c5c7d997a28d9807886539fdf92780d15af199f76c2f7201b1214fd101eebbd822f636b20aaa10915a203d852802a15bd9f18c85db9
index fbe9e8a50ba0089e73e363f0a693ec30a8b2869c..aaf1facdfe824b16bb5dddcc7897cd5bdff9d3f4 100644 (file)
@@ -1,4 +1,4 @@
-<?xml version='1.0' encoding='UTF-8'?>
+<?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
   <herd>python</herd>
index 0f078e1838e591e246d5f52095f5b3b219e804d3..e69e070c8bfaf2537c9403c4b4cd0530428d11ff 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -29,11 +29,6 @@ DEPEND="${RDEPEND}
                dev-python/nose[${PYTHON_USEDEP}]
        )"
 
-_PATCHES=(
-       "${FILESDIR}"/${P}-kernel-backport.patch
-       "${FILESDIR}"/${P}-${PN}.bat-backport.patch
-)
-
 python_prepare_all() {
        sed \
                -e "/install_kernel_spec/s:prefix=None:prefix=u\"${ED}/usr\":g" \
diff --git a/dev-python/xonsh/xonsh-0.2.5.ebuild b/dev-python/xonsh/xonsh-0.2.5.ebuild
new file mode 100644 (file)
index 0000000..ae04e7e
--- /dev/null
@@ -0,0 +1,47 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{4,5} )
+
+inherit distutils-r1 eutils
+
+DESCRIPTION="An exotic, usable shell"
+HOMEPAGE="
+       http://xonsh.readthedocs.org/
+       https://github.com/scopatz/xonsh
+       http://pypi.python.org/pypi/xonsh"
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="
+       dev-python/ply[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+       dev-python/setuptools[${PYTHON_USEDEP}]
+       test? (
+               dev-python/nose[${PYTHON_USEDEP}]
+       )"
+
+python_prepare_all() {
+       sed \
+               -e "/install_kernel_spec/s:prefix=None:prefix=u\"${ED}/usr\":g" \
+               -i setup.py || die
+
+       distutils-r1_python_prepare_all
+}
+
+python_test() {
+       nosetests --verbose || die
+}
+
+pkg_postinst() {
+       optfeature "Jupyter kernel support" dev-python/jupyter
+       optfeature "Alternative to readline backend" dev-python/prompt_toolkit
+}