summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--python-siphash.spec120
-rw-r--r--sources1
3 files changed, 122 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..6d45143 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/siphash-0.0.1.tar.gz
diff --git a/python-siphash.spec b/python-siphash.spec
new file mode 100644
index 0000000..05830b5
--- /dev/null
+++ b/python-siphash.spec
@@ -0,0 +1,120 @@
+%global _empty_manifest_terminate_build 0
+Name: python-siphash
+Version: 0.0.1
+Release: 1
+Summary: siphash - python siphash implementation
+License: MIT
+URL: http://github.com/majek/pysiphash#readme
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/8a/ff/203e8bf26c5658f4df97a966c32f21dd9125d740e7c92795ca1055b45772/siphash-0.0.1.tar.gz
+BuildArch: noarch
+
+
+%description
+A Python implementation of [SipHash](https://131002.net/siphash/), a
+fast short-input PRF.
+Extract from the description:
+```
+SipHash is a family of pseudorandom functions (a.k.a. keyed hash
+functions) optimized for speed on short messages.
+Target applications include network traffic authentication and defense
+against hash-flooding DoS attacks.
+SipHash is secure, fast, and simple (for real):
+* SipHash is simpler and faster than previous cryptographic algorithms
+ (e.g. MACs based on universal hashing)
+* SipHash is competitive in performance with insecure
+ non-cryptographic algorithms (e.g. MurmurHash)
+* We propose that hash tables switch to SipHash as a hash
+ function. Users of SipHash already include OpenDNS, Perl 5, Ruby, or
+ Rust.
+```
+
+%package -n python3-siphash
+Summary: siphash - python siphash implementation
+Provides: python-siphash
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-siphash
+A Python implementation of [SipHash](https://131002.net/siphash/), a
+fast short-input PRF.
+Extract from the description:
+```
+SipHash is a family of pseudorandom functions (a.k.a. keyed hash
+functions) optimized for speed on short messages.
+Target applications include network traffic authentication and defense
+against hash-flooding DoS attacks.
+SipHash is secure, fast, and simple (for real):
+* SipHash is simpler and faster than previous cryptographic algorithms
+ (e.g. MACs based on universal hashing)
+* SipHash is competitive in performance with insecure
+ non-cryptographic algorithms (e.g. MurmurHash)
+* We propose that hash tables switch to SipHash as a hash
+ function. Users of SipHash already include OpenDNS, Perl 5, Ruby, or
+ Rust.
+```
+
+%package help
+Summary: Development documents and examples for siphash
+Provides: python3-siphash-doc
+%description help
+A Python implementation of [SipHash](https://131002.net/siphash/), a
+fast short-input PRF.
+Extract from the description:
+```
+SipHash is a family of pseudorandom functions (a.k.a. keyed hash
+functions) optimized for speed on short messages.
+Target applications include network traffic authentication and defense
+against hash-flooding DoS attacks.
+SipHash is secure, fast, and simple (for real):
+* SipHash is simpler and faster than previous cryptographic algorithms
+ (e.g. MACs based on universal hashing)
+* SipHash is competitive in performance with insecure
+ non-cryptographic algorithms (e.g. MurmurHash)
+* We propose that hash tables switch to SipHash as a hash
+ function. Users of SipHash already include OpenDNS, Perl 5, Ruby, or
+ Rust.
+```
+
+%prep
+%autosetup -n siphash-0.0.1
+
+%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-siphash -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Thu Mar 09 2023 Python_Bot <Python_Bot@openeuler.org> - 0.0.1-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..46c53a8
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+09b9964ee3b0aff3f7a15b157473f4e7 siphash-0.0.1.tar.gz