summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-03-09 15:22:02 +0000
committerCoprDistGit <infra@openeuler.org>2023-03-09 15:22:02 +0000
commiteb8605cce07f7e766f7fa59019724bc120abaedf (patch)
tree505424292906471c837fa1a0fe26c9deefa25547
parentc98d85ac981ee7218fe92cf5313d03d1ea20b100 (diff)
automatic import of python-pyaes
-rw-r--r--.gitignore1
-rw-r--r--python-pyaes.spec81
-rw-r--r--sources1
3 files changed, 83 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..0eef213 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/pyaes-1.6.1.tar.gz
diff --git a/python-pyaes.spec b/python-pyaes.spec
new file mode 100644
index 0000000..c57914f
--- /dev/null
+++ b/python-pyaes.spec
@@ -0,0 +1,81 @@
+%global _empty_manifest_terminate_build 0
+Name: python-pyaes
+Version: 1.6.1
+Release: 1
+Summary: Pure-Python Implementation of the AES block-cipher and common modes of operation
+License: License :: OSI Approved :: MIT License
+URL: https://github.com/ricmoo/pyaes
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/44/66/2c17bae31c906613795711fc78045c285048168919ace2220daa372c7d72/pyaes-1.6.1.tar.gz
+BuildArch: noarch
+
+
+%description
+A pure-Python implementation of the AES (FIPS-197)
+block-cipher algorithm and common modes of operation (CBC, CFB, CTR, ECB,
+OFB) with no dependencies beyond standard Python libraries. See README.md
+for API reference and details.
+
+%package -n python3-pyaes
+Summary: Pure-Python Implementation of the AES block-cipher and common modes of operation
+Provides: python-pyaes
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-pyaes
+A pure-Python implementation of the AES (FIPS-197)
+block-cipher algorithm and common modes of operation (CBC, CFB, CTR, ECB,
+OFB) with no dependencies beyond standard Python libraries. See README.md
+for API reference and details.
+
+%package help
+Summary: Development documents and examples for pyaes
+Provides: python3-pyaes-doc
+%description help
+A pure-Python implementation of the AES (FIPS-197)
+block-cipher algorithm and common modes of operation (CBC, CFB, CTR, ECB,
+OFB) with no dependencies beyond standard Python libraries. See README.md
+for API reference and details.
+
+%prep
+%autosetup -n pyaes-1.6.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-pyaes -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Thu Mar 09 2023 Python_Bot <Python_Bot@openeuler.org> - 1.6.1-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..39c391e
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+20fd5c6e29dcfdd08098e85a859a54ec pyaes-1.6.1.tar.gz