15
0

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
This commit is contained in:
2022-05-29 21:33:10 +00:00
committed by Git OBS Bridge
commit 277b06e5fb
5 changed files with 80 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@@ -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

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.osc

3
RPi.GPIO-0.7.1.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cd61c4b03c37b62bba4a5acfea9862749c33c618e0295e7e90aa4713fb373b70
size 29090

4
python-RPi.GPIO.changes Normal file
View File

@@ -0,0 +1,4 @@
-------------------------------------------------------------------
Wed May 25 14:49:35 UTC 2022 - Dominique Leuenberger <dimstar@opensuse.org>
- Initial package, version 0.7.1.

49
python-RPi.GPIO.spec Normal file
View File

@@ -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