diff options
| author | Palica <palica+gitlab@liguros.net> | 2020-06-23 22:35:08 +0200 |
|---|---|---|
| committer | Palica <palica+gitlab@liguros.net> | 2020-06-23 22:35:08 +0200 |
| commit | ecdac123787b96ce6649f0f91da12ea6458cc2b1 (patch) | |
| tree | b89c74d9e6fe6e8aebc4c77bcbeb4ab73214127d /dev-python/pbkdf2 | |
| parent | 1be72aa41cf41dedadeecf59dca9f01de6381f5e (diff) | |
| download | baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.tar.gz baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.tar.xz baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.zip | |
Updating liguros repo
Diffstat (limited to 'dev-python/pbkdf2')
| -rw-r--r-- | dev-python/pbkdf2/Manifest | 1 | ||||
| -rw-r--r-- | dev-python/pbkdf2/metadata.xml | 16 | ||||
| -rw-r--r-- | dev-python/pbkdf2/pbkdf2-1.3-r1.ebuild | 21 | ||||
| -rw-r--r-- | dev-python/pbkdf2/pbkdf2-1.3.ebuild | 21 |
4 files changed, 59 insertions, 0 deletions
diff --git a/dev-python/pbkdf2/Manifest b/dev-python/pbkdf2/Manifest new file mode 100644 index 000000000000..8be1951078f3 --- /dev/null +++ b/dev-python/pbkdf2/Manifest @@ -0,0 +1 @@ +DIST pbkdf2-1.3.tar.gz 6360 BLAKE2B 0a449b593fb1dddd604db687dab1fcdbeae37819dc17d7a875d8f592b1a45ac16903a77de46b72d87fbc2d41217f044046c4b4cf3a10b579e4f21e151d8512d0 SHA512 1297950d045f9b56f5eb9f771fe65091802c1f12f090a8a80fb5e36bfa10f1c1ac3b9dc8088f4a640b840fb7073aadd3fdf39f3979118046ba5cde477d071244 diff --git a/dev-python/pbkdf2/metadata.xml b/dev-python/pbkdf2/metadata.xml new file mode 100644 index 000000000000..515fc1256e58 --- /dev/null +++ b/dev-python/pbkdf2/metadata.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>luke-jr+gentoobugs@utopios.org</email> + <name>Luke Dashjr</name> + </maintainer> + <maintainer type="project"> + <email>proxy-maint@gentoo.org</email> + <name>Proxy Maintainers</name> + </maintainer> + <upstream> + <remote-id type="pypi">pbkdf2</remote-id> + </upstream> + <origin>gentoo-staging</origin> +</pkgmetadata> diff --git a/dev-python/pbkdf2/pbkdf2-1.3-r1.ebuild b/dev-python/pbkdf2/pbkdf2-1.3-r1.ebuild new file mode 100644 index 000000000000..619eb7f07504 --- /dev/null +++ b/dev-python/pbkdf2/pbkdf2-1.3-r1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python{3_6,3_7} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Implementation of PBKDF2, specified in RSA PKCS#5 v2.0" +HOMEPAGE="https://www.dlitz.net/software/python-pbkdf2/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux" +IUSE="" + +python_test() { + "${EPYTHON}" test/test_pbkdf2.py -v || die "Tests failed with ${EPYTHON}" +} diff --git a/dev-python/pbkdf2/pbkdf2-1.3.ebuild b/dev-python/pbkdf2/pbkdf2-1.3.ebuild new file mode 100644 index 000000000000..340f42749de4 --- /dev/null +++ b/dev-python/pbkdf2/pbkdf2-1.3.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +PYTHON_COMPAT=( python{3_6,3_7} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Implementation of the password-based key derivation function, PBKDF2, specified in RSA PKCS#5 v2.0" +HOMEPAGE="https://www.dlitz.net/software/python-pbkdf2/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 x86 ~amd64-linux" +IUSE="" + +python_test() { + "${PYTHON}" test/test_pbkdf2.py || die "Tests failed with ${EPYTHON}" +} |
