summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-03-09 15:18:04 +0000
committerCoprDistGit <infra@openeuler.org>2023-03-09 15:18:04 +0000
commitdf515f28830c46afe38e8fb93733e18324dd0224 (patch)
tree566adf725f44475237cf428ef5395a86b1eafd8c
parent4e32c3de08d8f8c62aecc7008fa318674c07cae9 (diff)
automatic import of python-py-bcrypt
-rw-r--r--.gitignore1
-rw-r--r--python-py-bcrypt.spec108
-rw-r--r--sources1
3 files changed, 110 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..cc5bbc1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/py-bcrypt-0.4.tar.gz
diff --git a/python-py-bcrypt.spec b/python-py-bcrypt.spec
new file mode 100644
index 0000000..5eaed85
--- /dev/null
+++ b/python-py-bcrypt.spec
@@ -0,0 +1,108 @@
+%global _empty_manifest_terminate_build 0
+Name: python-py-bcrypt
+Version: 0.4
+Release: 1
+Summary: bcrypt password hashing and key derivation
+License: BSD
+URL: https://code.google.com/p/py-bcrypt
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/68/b1/1c3068c5c4d2e35c48b38dcc865301ebfdf45f54507086ac65ced1fd3b3d/py-bcrypt-0.4.tar.gz
+BuildArch: noarch
+
+
+%description
+py-bcrypt is an implementation the OpenBSD Blowfish password hashing
+algorithm, as described in "A Future-Adaptable Password Scheme" by
+Niels Provos and David Mazieres and related bcrypt-based key derivation
+function implemented in OpenBSD libutil.
+
+This system hashes passwords using a version of Bruce Schneier's
+Blowfish block cipher with modifications designed to raise the cost
+of off-line password cracking. The computation cost of the algorithm
+is parametised, so it can be increased as computers get faster.
+
+Two interfaces are supported: a classic password hashing interface and
+a key derivation function (KDF) intended for generating cryptographic
+keys.
+
+%package -n python3-py-bcrypt
+Summary: bcrypt password hashing and key derivation
+Provides: python-py-bcrypt
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-py-bcrypt
+py-bcrypt is an implementation the OpenBSD Blowfish password hashing
+algorithm, as described in "A Future-Adaptable Password Scheme" by
+Niels Provos and David Mazieres and related bcrypt-based key derivation
+function implemented in OpenBSD libutil.
+
+This system hashes passwords using a version of Bruce Schneier's
+Blowfish block cipher with modifications designed to raise the cost
+of off-line password cracking. The computation cost of the algorithm
+is parametised, so it can be increased as computers get faster.
+
+Two interfaces are supported: a classic password hashing interface and
+a key derivation function (KDF) intended for generating cryptographic
+keys.
+
+%package help
+Summary: Development documents and examples for py-bcrypt
+Provides: python3-py-bcrypt-doc
+%description help
+py-bcrypt is an implementation the OpenBSD Blowfish password hashing
+algorithm, as described in "A Future-Adaptable Password Scheme" by
+Niels Provos and David Mazieres and related bcrypt-based key derivation
+function implemented in OpenBSD libutil.
+
+This system hashes passwords using a version of Bruce Schneier's
+Blowfish block cipher with modifications designed to raise the cost
+of off-line password cracking. The computation cost of the algorithm
+is parametised, so it can be increased as computers get faster.
+
+Two interfaces are supported: a classic password hashing interface and
+a key derivation function (KDF) intended for generating cryptographic
+keys.
+
+%prep
+%autosetup -n py-bcrypt-0.4
+
+%build
+%py3_build
+
+%install
+%py3_install
+install -d -m755 %{buildroot}/%{_pkgdocdir}
+if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
+if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
+if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
+if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
+pushd %{buildroot}
+if [ -d usr/lib ]; then
+ find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/lib64 ]; then
+ find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/bin ]; then
+ find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/sbin ]; then
+ find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+touch doclist.lst
+if [ -d usr/share/man ]; then
+ find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
+fi
+popd
+mv %{buildroot}/filelist.lst .
+mv %{buildroot}/doclist.lst .
+
+%files -n python3-py-bcrypt -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Thu Mar 09 2023 Python_Bot <Python_Bot@openeuler.org> - 0.4-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..d4529a7
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+dd8b367d6b716a2ea2e72392525f4e36 py-bcrypt-0.4.tar.gz