summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-12 03:24:38 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-12 03:24:38 +0000
commitdeee6913b8c608d6faff4124da0432a535c85c1a (patch)
tree5ae5606f7505f108e984da52bd342ed0742bacb0
parent39eea79a9c82c99987170e4d08a43eb160800812 (diff)
automatic import of python-bitbox02
-rw-r--r--.gitignore1
-rw-r--r--python-bitbox02.spec130
-rw-r--r--sources1
3 files changed, 132 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..03ec9e0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/bitbox02-6.1.1.tar.gz
diff --git a/python-bitbox02.spec b/python-bitbox02.spec
new file mode 100644
index 0000000..5112355
--- /dev/null
+++ b/python-bitbox02.spec
@@ -0,0 +1,130 @@
+%global _empty_manifest_terminate_build 0
+Name: python-bitbox02
+Version: 6.1.1
+Release: 1
+Summary: Python library for bitbox02 communication
+License: Apache Software License
+URL: https://github.com/digitalbitbox/bitbox02-firmware
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/5e/2b/efabf9a1cb1f6fe9a9c0d56ebc3af78c02bbb3fcd8aa006fdca989b086c6/bitbox02-6.1.1.tar.gz
+BuildArch: noarch
+
+Requires: python3-hidapi
+Requires: python3-noiseprotocol
+Requires: python3-protobuf
+Requires: python3-ecdsa
+Requires: python3-semver
+Requires: python3-typing-extensions
+Requires: python3-base58
+
+%description
+# BitBox02 python API
+
+This repository contains two packages
+
+* u2fhid
+* bitbox02
+
+## u2fhid
+
+This is a small package that contains read/write primitives for u2fhid devices such as the
+bitbox02.
+
+## bitbox02
+
+In this folder is the Python API for communicating with the BitBox02 device.
+
+The folder `generated` contains files generated by `python-protobuf`. Regenerate with `make`.
+
+
+%package -n python3-bitbox02
+Summary: Python library for bitbox02 communication
+Provides: python-bitbox02
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-bitbox02
+# BitBox02 python API
+
+This repository contains two packages
+
+* u2fhid
+* bitbox02
+
+## u2fhid
+
+This is a small package that contains read/write primitives for u2fhid devices such as the
+bitbox02.
+
+## bitbox02
+
+In this folder is the Python API for communicating with the BitBox02 device.
+
+The folder `generated` contains files generated by `python-protobuf`. Regenerate with `make`.
+
+
+%package help
+Summary: Development documents and examples for bitbox02
+Provides: python3-bitbox02-doc
+%description help
+# BitBox02 python API
+
+This repository contains two packages
+
+* u2fhid
+* bitbox02
+
+## u2fhid
+
+This is a small package that contains read/write primitives for u2fhid devices such as the
+bitbox02.
+
+## bitbox02
+
+In this folder is the Python API for communicating with the BitBox02 device.
+
+The folder `generated` contains files generated by `python-protobuf`. Regenerate with `make`.
+
+
+%prep
+%autosetup -n bitbox02-6.1.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-bitbox02 -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Wed Apr 12 2023 Python_Bot <Python_Bot@openeuler.org> - 6.1.1-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..7141656
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+e0d9c3bd0461fd462c87de7242f934e1 bitbox02-6.1.1.tar.gz