From b0c91f7c670a35d06e526ef2e1ecaf75b053e522ff74506b94896b4362db448a Mon Sep 17 00:00:00 2001 From: OBS User buildservice-autocommit Date: Sat, 23 Apr 2022 18:56:23 +0000 Subject: [PATCH] Accepting request 971937 from devel:languages:python baserev update by copy to link target OBS-URL: https://build.opensuse.org/request/show/971937 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pylibfdt?expand=0&rev=3 --- .gitattributes | 23 +++++++++++++++++ .gitignore | 1 + pylibfdt-1.6.1.tar.gz | 3 +++ python-pylibfdt.changes | 4 +++ python-pylibfdt.spec | 57 +++++++++++++++++++++++++++++++++++++++++ 5 files changed, 88 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 pylibfdt-1.6.1.tar.gz create mode 100644 python-pylibfdt.changes create mode 100644 python-pylibfdt.spec 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/pylibfdt-1.6.1.tar.gz b/pylibfdt-1.6.1.tar.gz new file mode 100644 index 0000000..919a9f2 --- /dev/null +++ b/pylibfdt-1.6.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90c667c5adf44c6ab2f13bdc566598897784c7b781bed91064e7373bd270b778 +size 50316 diff --git a/python-pylibfdt.changes b/python-pylibfdt.changes new file mode 100644 index 0000000..7519da3 --- /dev/null +++ b/python-pylibfdt.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Thu Apr 21 22:45:38 UTC 2022 - Dirk Müller + +- Initial package (1.6.1) diff --git a/python-pylibfdt.spec b/python-pylibfdt.spec new file mode 100644 index 0000000..c93a670 --- /dev/null +++ b/python-pylibfdt.spec @@ -0,0 +1,57 @@ +# +# spec file for package python-pylibfdt +# +# 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/ +# + + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} +Name: python-pylibfdt +Version: 1.6.1 +Release: 0 +Summary: Python binding for libfdt +License: BSD-2-Clause AND GPL-2.0-only +Group: Development/Languages/Python +URL: https://pypi.org/project/pylibfdt/ +Source: pylibfdt-%{version}.tar.gz +BuildRequires: %{python_module devel} +BuildRequires: %{python_module setuptools_scm} +BuildRequires: %{python_module setuptools} +BuildRequires: python-rpm-macros +BuildRequires: swig +%python_subpackages + +%description +libfdt is a library to process Open Firmware style device trees on various +architectures. + +Python binding part. + +%prep +%setup -q -n pylibfdt-%{version} + +%build +%python_build + +%install +%python_install + +%files %{python_files} +%license BSD-2-Clause GPL +%{python_sitearch}/libfdt.py +%{python_sitearch}/_libfdt.*.so +%{python_sitearch}/__pycache__ +%{python_sitearch}/pylibfdt*.egg-info + +%changelog