diff options
Diffstat (limited to 'python-adafruit-circuitpython-charlcd.spec')
-rw-r--r-- | python-adafruit-circuitpython-charlcd.spec | 86 |
1 files changed, 86 insertions, 0 deletions
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 |