commit 34542b3eb434bbcfb48b83da32f4fc9377145ad0a6ccc1c41262917420a587b6 Author: Jan Engelhardt Date: Thu Sep 28 05:46:05 2023 +0000 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 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/waycheck-v0.1.3.tar.gz b/waycheck-v0.1.3.tar.gz new file mode 100644 index 0000000..46d2265 --- /dev/null +++ b/waycheck-v0.1.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e7fa30ef7ff65f2bd8fe6036a6d035f564311c275461fc39c3480722252b674 +size 11223 diff --git a/waycheck.changes b/waycheck.changes new file mode 100644 index 0000000..a1aa842 --- /dev/null +++ b/waycheck.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Thu Sep 28 02:39:45 UTC 2023 - Neal Gompa + +- Initial packaging based on Fedora package diff --git a/waycheck.spec b/waycheck.spec new file mode 100644 index 0000000..5653410 --- /dev/null +++ b/waycheck.spec @@ -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