diff options
author | Jakov Smolic <jakov.smolic@sartura.hr> | 2021-02-28 10:27:36 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-02-28 10:27:36 +0100 |
commit | ec943e73f3532e70f9ada1933b417deaba06d7f8 (patch) | |
tree | 6f07c55daf3508d915cd3106aae6db1bd4c7164f /dev-python | |
parent | www-client/chromium: beta channel bump to 89.0.4389.69 (diff) | |
download | gentoo-ec943e73f3532e70f9ada1933b417deaba06d7f8.tar.gz gentoo-ec943e73f3532e70f9ada1933b417deaba06d7f8.tar.bz2 gentoo-ec943e73f3532e70f9ada1933b417deaba06d7f8.zip |
dev-python/xdg: Python implementation of the XDG Base Directory Specification
* New dependency of app-misc/goobook
Bug: https://bugs.gentoo.org/773250
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/xdg/Manifest | 1 | ||||
-rw-r--r-- | dev-python/xdg/metadata.xml | 17 | ||||
-rw-r--r-- | dev-python/xdg/xdg-5.0.1.ebuild | 15 |
3 files changed, 33 insertions, 0 deletions
diff --git a/dev-python/xdg/Manifest b/dev-python/xdg/Manifest new file mode 100644 index 000000000000..5f9065e74805 --- /dev/null +++ b/dev-python/xdg/Manifest @@ -0,0 +1 @@ +DIST xdg-5.0.1.tar.gz 4120 BLAKE2B f80ca1ec0ac064d64a2603f101301d427e7b64133eede1ff0770db0b7ba4368c8640b2d2eea8f1d28a52874a6b632ce83d969c38a036c970e20c2abba3a1f98c SHA512 c6da757cf0fd11a03d97506f7b898b902f560cb74cd9a90ed55550d89bf60eef5e32abe2aca19816279621e6ad0ad7899c7326b126a777231c67cc6cb30b766f diff --git a/dev-python/xdg/metadata.xml b/dev-python/xdg/metadata.xml new file mode 100644 index 000000000000..bd98a9488610 --- /dev/null +++ b/dev-python/xdg/metadata.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <name>Kalin KOZHUHAROV</name> + <email>kalin@thinrope.net</email> + </maintainer> + <maintainer type="project"> + <email>proxy-maint@gentoo.org</email> + <name>Proxy Maintainers</name> + </maintainer> + <stabilize-allarches/> + <upstream> + <remote-id type="pypi">xdg</remote-id> + <remote-id type="github">srstevenson/xdg</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-python/xdg/xdg-5.0.1.ebuild b/dev-python/xdg/xdg-5.0.1.ebuild new file mode 100644 index 000000000000..688a5a44d199 --- /dev/null +++ b/dev-python/xdg/xdg-5.0.1.ebuild @@ -0,0 +1,15 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) +inherit distutils-r1 + +DESCRIPTION="Implementation of the XDG Base Directory Specification in Python" +HOMEPAGE="https://github.com/srstevenson/xdg https://pypi.org/project/xdg" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~x86" |