diff options
author | CoprDistGit <infra@openeuler.org> | 2023-06-09 05:46:28 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-06-09 05:46:28 +0000 |
commit | 53de2ed063c2e8baf63263050fbc47f69866179d (patch) | |
tree | 950cd847e2efbf37fcecde66d12b316880ad19a8 | |
parent | 5b0d1090b5f10db85d39344ac2c797f0020fc93b (diff) |
automatic import of python-adafruit-circuitpython-charlcdopeneuler20.03
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-adafruit-circuitpython-charlcd.spec | 86 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 88 insertions, 0 deletions
@@ -0,0 +1 @@ +/adafruit-circuitpython-charlcd-3.4.8.tar.gz diff --git a/python-adafruit-circuitpython-charlcd.spec b/python-adafruit-circuitpython-charlcd.spec new file mode 100644 index 0000000..23b183b --- /dev/null +++ b/python-adafruit-circuitpython-charlcd.spec @@ -0,0 +1,86 @@ +%global _empty_manifest_terminate_build 0 +Name: python-adafruit-circuitpython-charlcd +Version: 3.4.8 +Release: 1 +Summary: CircuitPython library for standard character LCDs. +License: MIT +URL: https://github.com/adafruit/Adafruit_CircuitPython_CharLCD +Source0: https://mirrors.aliyun.com/pypi/web/packages/35/8b/4b17dec0975a200ac31a7fd81dde940e152dbc0205177f5ee7eb98214f50/adafruit-circuitpython-charlcd-3.4.8.tar.gz +BuildArch: noarch + +Requires: python3-Adafruit-Blinka +Requires: python3-adafruit-circuitpython-mcp230xx +Requires: python3-adafruit-circuitpython-busdevice +Requires: python3-adafruit-circuitpython-74hc595 +Requires: python3-adafruit-circuitpython-typing + +%description +This library is compatible with standard Character LCDs such as: +* `Adafruit Standard LCD 16x2 <https://www.adafruit.com/product/181>`_ +* `Adafruit RGB backlight negative LCD 16x2 <https://www.adafruit.com/product/399>`_ +* `Adafruit RGB backlight negative LCD 20x4 <https://www.adafruit.com/product/498>`_ + +%package -n python3-adafruit-circuitpython-charlcd +Summary: CircuitPython library for standard character LCDs. +Provides: python-adafruit-circuitpython-charlcd +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-adafruit-circuitpython-charlcd +This library is compatible with standard Character LCDs such as: +* `Adafruit Standard LCD 16x2 <https://www.adafruit.com/product/181>`_ +* `Adafruit RGB backlight negative LCD 16x2 <https://www.adafruit.com/product/399>`_ +* `Adafruit RGB backlight negative LCD 20x4 <https://www.adafruit.com/product/498>`_ + +%package help +Summary: Development documents and examples for adafruit-circuitpython-charlcd +Provides: python3-adafruit-circuitpython-charlcd-doc +%description help +This library is compatible with standard Character LCDs such as: +* `Adafruit Standard LCD 16x2 <https://www.adafruit.com/product/181>`_ +* `Adafruit RGB backlight negative LCD 16x2 <https://www.adafruit.com/product/399>`_ +* `Adafruit RGB backlight negative LCD 20x4 <https://www.adafruit.com/product/498>`_ + +%prep +%autosetup -n adafruit-circuitpython-charlcd-3.4.8 + +%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-adafruit-circuitpython-charlcd -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Fri Jun 09 2023 Python_Bot <Python_Bot@openeuler.org> - 3.4.8-1 +- Package Spec generated @@ -0,0 +1 @@ +f5564dc802e395b7f44cbd1921ab09d5 adafruit-circuitpython-charlcd-3.4.8.tar.gz |