Accepting request 1113953 from home:Pharaoh_Atem:Waycheck

Initial package for openSUSE Factory

OBS-URL: https://build.opensuse.org/request/show/1113953
OBS-URL: https://build.opensuse.org/package/show/X11:Wayland/waycheck?expand=0&rev=1
This commit is contained in:
Jan Engelhardt 2023-09-28 05:46:05 +00:00 committed by Git OBS Bridge
commit 34542b3eb4
5 changed files with 95 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
waycheck-v0.1.3.tar.gz Normal file
View File

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

4
waycheck.changes Normal file
View File

@ -0,0 +1,4 @@
-------------------------------------------------------------------
Thu Sep 28 02:39:45 UTC 2023 - Neal Gompa <ngompa@opensuse.org>
- Initial packaging based on Fedora package

64
waycheck.spec Normal file
View File

@ -0,0 +1,64 @@
#
# spec file for package waycheck
#
# Copyright (c) 2023 Neal Gompa
#
# 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/
#
%global qt6_minver 6.5
Name: waycheck
Version: 0.1.3
Release: 0
Summary: Simple GUI that displays protocols implemented by a Wayland compositor
License: Apache-2.0
URL: https://gitlab.freedesktop.org/serebit/waycheck
Source0: %{url}/-/archive/v%{version}/%{name}-v%{version}.tar.gz
BuildRequires: meson
BuildRequires: gcc-c++
BuildRequires: pkgconfig(Qt6Core) >= %{qt6_minver}
BuildRequires: pkgconfig(Qt6Gui) >= %{qt6_minver}
BuildRequires: pkgconfig(Qt6WaylandClient) >= %{qt6_minver}
BuildRequires: pkgconfig(Qt6Widgets) >= %{qt6_minver}
BuildRequires: pkgconfig(wayland-client)
Requires: hicolor-icon-theme
%description
%{summary}.
%prep
%autosetup -n %{name}-v%{version}
%build
%meson
%meson_build
%install
%meson_install
%files
%license LICENSE.txt
%doc README.md
%{_bindir}/waycheck
%{_datadir}/applications/dev.serebit.Waycheck.desktop
%{_datadir}/metainfo/dev.serebit.Waycheck.metainfo.xml
%{_datadir}/icons/hicolor/scalable/apps/dev.serebit.Waycheck.svg
%changelog