commit 277b06e5fbf4173938ce746efb371d5339a8862757448074941e5ecf45eccd95 Author: Matej Cepl Date: Sun May 29 21:33:10 2022 +0000 New py moudle RPi.GPIO - interact with Raspberry Pi OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-RPi.GPIO?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/RPi.GPIO-0.7.1.tar.gz b/RPi.GPIO-0.7.1.tar.gz new file mode 100644 index 0000000..c021d7f --- /dev/null +++ b/RPi.GPIO-0.7.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd61c4b03c37b62bba4a5acfea9862749c33c618e0295e7e90aa4713fb373b70 +size 29090 diff --git a/python-RPi.GPIO.changes b/python-RPi.GPIO.changes new file mode 100644 index 0000000..2f72d46 --- /dev/null +++ b/python-RPi.GPIO.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Wed May 25 14:49:35 UTC 2022 - Dominique Leuenberger + +- Initial package, version 0.7.1. diff --git a/python-RPi.GPIO.spec b/python-RPi.GPIO.spec new file mode 100644 index 0000000..e19d972 --- /dev/null +++ b/python-RPi.GPIO.spec @@ -0,0 +1,49 @@ +# +# spec file for package python-RPi.GPIO +# +# Copyright (c) 2022 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +%define modname RPi.GPIO +Name: python-%{modname} +Version: 0.7.1 +Release: 0 +Summary: A module to control Raspberry Pi GPIO channels +# FIXME: Select a correct license from https://github.com/openSUSE/spec-cleaner#spdx-licenses +License: MIT +URL: https://sourceforge.net/projects/raspberry-gpio-python/ +Source: https://files.pythonhosted.org/packages/source/R/%{_modname}/%{modname}-%{version}.tar.gz +BuildRequires: python-rpm-macros +BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module devel} +%python_subpackages + +%description +This package provides a Python module to control the GPIO on a Raspberry Pi. + +%prep +%autosetup -p1 -n %{modname}-%{version} + +%build +%python_build + +%install +%python_install + +%files %{python_files} +%{python_sitearch}/RPi/ +%{python_sitearch}/%{modname}-%{version}-py3.*.egg-info/ + +%changelog