dev-python/xstatic-jquery: new package.
authorPatrice Clement <monsieurp@gentoo.org>
Tue, 19 Jun 2018 19:09:25 +0000 (21:09 +0200)
committerPatrice Clement <monsieurp@gentoo.org>
Tue, 19 Jun 2018 19:13:17 +0000 (21:13 +0200)
Dependency of ARA.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

dev-python/xstatic-jquery/Manifest [new file with mode: 0644]
dev-python/xstatic-jquery/metadata.xml [new file with mode: 0644]
dev-python/xstatic-jquery/xstatic-jquery-1.10.2.1.ebuild [new file with mode: 0644]

diff --git a/dev-python/xstatic-jquery/Manifest b/dev-python/xstatic-jquery/Manifest
new file mode 100644 (file)
index 0000000..8029dd5
--- /dev/null
@@ -0,0 +1 @@
+DIST xstatic-jquery-1.10.2.1.tar.gz 116458 BLAKE2B cc02edfbbab45bbf397923188f163df8c6567789d9c0704947804047f0067bbee9ddf0b1b96d477d25d79bc65bc4bf5891e2a88beeac1ae92279c0eecc842304 SHA512 1f77c82d0025ba0fe56934d76fb5dfc0929bd91b18e6141023246e5ed1358600cb10a9b69be806bdfac29df83e42572ab8c8aa8da40b688d02711aadff393270
diff --git a/dev-python/xstatic-jquery/metadata.xml b/dev-python/xstatic-jquery/metadata.xml
new file mode 100644 (file)
index 0000000..8768d46
--- /dev/null
@@ -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 Project</name>
+  </maintainer>
+  <upstream>
+    <remote-id type="pypi">XStatic</remote-id>
+  </upstream>
+</pkgmetadata>
diff --git a/dev-python/xstatic-jquery/xstatic-jquery-1.10.2.1.ebuild b/dev-python/xstatic-jquery/xstatic-jquery-1.10.2.1.ebuild
new file mode 100644 (file)
index 0000000..6b3ba86
--- /dev/null
@@ -0,0 +1,33 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1
+
+MY_PN="XStatic-jQuery"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="XStatic jQuery package"
+HOMEPAGE="https://pypi.org/project/XStatic-jQuery"
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/xstatic[${PYTHON_USEDEP}]"
+
+DEPEND="
+       ${RDEPEND}
+       dev-python/setuptools[${PYTHON_USEDEP}]"
+
+S="${WORKDIR}/${MY_P}"
+
+python_install() {
+       distutils-r1_python_install
+       find "${ED}" -name '*.pth' -delete || die
+}