commit 3a871977c18097c288e95a1003fa50fea066508ad123a69c3bff4b6ce1c65556 Author: Michal Suchanek Date: Tue Dec 14 12:00:25 2021 +0000 Accepting request 940397 from home:jirislaby Dumps information about drm devices. Now with better tar name and formatted spec. OBS-URL: https://build.opensuse.org/request/show/940397 OBS-URL: https://build.opensuse.org/package/show/hardware/drm_info?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/drm_info-2.3.0.tar.gz b/drm_info-2.3.0.tar.gz new file mode 100644 index 0000000..c3cae6b --- /dev/null +++ b/drm_info-2.3.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb7e060f8f3e444cfbeb56480ad991ab13cc13bf43af6fbff576ffa54746500c +size 15777 diff --git a/drm_info.changes b/drm_info.changes new file mode 100644 index 0000000..b2e96d8 --- /dev/null +++ b/drm_info.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Mon Dec 13 06:56:21 UTC 2021 - Jiri Slaby + +- initial package (2.3.0) diff --git a/drm_info.spec b/drm_info.spec new file mode 100644 index 0000000..f381191 --- /dev/null +++ b/drm_info.spec @@ -0,0 +1,53 @@ +# +# spec file for package drm_info +# +# Copyright (c) 2021 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/ +# + + +Name: drm_info +Version: 2.3.0 +Release: 0 +Summary: Small utility to dump info about DRM devices +License: MIT +URL: https://github.com/ascent12/drm_info +Source0: https://github.com/ascent12/drm_info/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}.tar.gz +BuildRequires: gcc +BuildRequires: libdrm-devel +BuildRequires: libjson-c-devel +BuildRequires: meson +BuildRequires: ninja +BuildRequires: pciutils-devel +BuildRequires: pkg-config +BuildRequires: python3-base + +%description +Small utility to dump info about DRM devices. + +%prep +%autosetup -p1 + +%build +%meson +%meson_build + +%install +%meson_install + +%files +%doc README.md +%license LICENSE +%{_bindir}/drm_info + +%changelog