summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2018-09-10 23:20:16 +0200
committerPatrice Clement <monsieurp@gentoo.org>2018-09-10 23:54:09 +0200
commit64ad000e5da6ab8cfe6e9616d2ebe95427552cde (patch)
tree6c1deb313d99a026ff68498cc18e13ff49958fd0 /dev-python/ushlex
parentsys-libs/efivar: bump per fwupd testing (diff)
downloadgentoo-64ad000e5da6ab8cfe6e9616d2ebe95427552cde.tar.gz
gentoo-64ad000e5da6ab8cfe6e9616d2ebe95427552cde.tar.bz2
gentoo-64ad000e5da6ab8cfe6e9616d2ebe95427552cde.zip
dev-python/ushlex: new package.
ushlex is a replacement for shlex (that works with unicode) for Python 2.X. Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'dev-python/ushlex')
-rw-r--r--dev-python/ushlex/Manifest1
-rw-r--r--dev-python/ushlex/metadata.xml11
-rw-r--r--dev-python/ushlex/ushlex-0.99.1.ebuild18
3 files changed, 30 insertions, 0 deletions
diff --git a/dev-python/ushlex/Manifest b/dev-python/ushlex/Manifest
new file mode 100644
index 000000000000..810b90ec85d1
--- /dev/null
+++ b/dev-python/ushlex/Manifest
@@ -0,0 +1 @@
+DIST ushlex-0.99.1.tar.gz 4712 BLAKE2B e38a61465cc93f8e7a50a314e3832baf67ab5141213ffa94255f0092fe533da96723c313a2458cf9075a263582d1fc0fce9361c074d71d2387351639205d5645 SHA512 6ae138a9159886e47d7464bad170cb5abae15c67341280a60613fa0c81407ac8b84b4078bca8b3b60e9731cc6b168a3364c9122c9f0cd39c8354caefd32303d1
diff --git a/dev-python/ushlex/metadata.xml b/dev-python/ushlex/metadata.xml
new file mode 100644
index 000000000000..b1cc92cb96c6
--- /dev/null
+++ b/dev-python/ushlex/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>python@gentoo.org</email>
+ <name>Python</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="pypi">ushlex</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-python/ushlex/ushlex-0.99.1.ebuild b/dev-python/ushlex/ushlex-0.99.1.ebuild
new file mode 100644
index 000000000000..0e0ffb36f51f
--- /dev/null
+++ b/dev-python/ushlex/ushlex-0.99.1.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1
+
+DESCRIPTION="Replacement for shlex for Python 2.X"
+HOMEPAGE="https://pypi.org/project/ushlex"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"