summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-11 05:42:50 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-11 05:42:50 +0000
commitccdab2e090fe45aa53e39ce58b48a3013ce4468f (patch)
tree20b22eef3370ed198fb7b8531a8e5e947026d8da
parent6c7061e74343f23aaca0ec40dfa4151f80403ee9 (diff)
automatic import of python-aioblescan
-rw-r--r--.gitignore1
-rw-r--r--python-aioblescan.spec79
-rw-r--r--sources1
3 files changed, 81 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..5055c0a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/aioblescan-0.2.14.tar.gz
diff --git a/python-aioblescan.spec b/python-aioblescan.spec
new file mode 100644
index 0000000..e492914
--- /dev/null
+++ b/python-aioblescan.spec
@@ -0,0 +1,79 @@
+%global _empty_manifest_terminate_build 0
+Name: python-aioblescan
+Version: 0.2.14
+Release: 1
+Summary: Scanning Bluetooth for advertised info with asyncio.
+License: MIT
+URL: http://github.com/frawau/aioblescan
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/45/15/faf503083bc5a2d81f1b17fbbe30d15f35217b6c5e944c771c8760354d59/aioblescan-0.2.14.tar.gz
+BuildArch: noarch
+
+Requires: python3-pytest
+
+%description
+aioblescan is a Python 3/asyncio library to listen for BLE advertized
+packets.
+|PyPI version fury.io| |MIT license| |GITHUB-BADGE| |Downloads|
+
+%package -n python3-aioblescan
+Summary: Scanning Bluetooth for advertised info with asyncio.
+Provides: python-aioblescan
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-aioblescan
+aioblescan is a Python 3/asyncio library to listen for BLE advertized
+packets.
+|PyPI version fury.io| |MIT license| |GITHUB-BADGE| |Downloads|
+
+%package help
+Summary: Development documents and examples for aioblescan
+Provides: python3-aioblescan-doc
+%description help
+aioblescan is a Python 3/asyncio library to listen for BLE advertized
+packets.
+|PyPI version fury.io| |MIT license| |GITHUB-BADGE| |Downloads|
+
+%prep
+%autosetup -n aioblescan-0.2.14
+
+%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-aioblescan -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 0.2.14-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..bbdf3b1
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+10014cfd24b8f9f54099bbf7e2ea528a aioblescan-0.2.14.tar.gz