diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..86d6835 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/warble-*.tar.gz diff --git a/README.md b/README.md new file mode 100644 index 0000000..c616c78 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# warble + +The warble package diff --git a/dead.package b/dead.package deleted file mode 100644 index d035a64..0000000 --- a/dead.package +++ /dev/null @@ -1 +0,0 @@ -Retired: Fails to install: https://forge.fedoraproject.org/releng/tickets/issues/13473 diff --git a/sources b/sources new file mode 100644 index 0000000..5e7cfd8 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (warble-1.4.0.tar.gz) = 026355face1fcd3f986ced5a3d3defae517b8837aeba624ab1e4120ec0db0fff47dbce70413df5816c97fac6fb170567291afbd6b50aa39043f254fab11e4977 diff --git a/warble.spec b/warble.spec new file mode 100644 index 0000000..c9cad42 --- /dev/null +++ b/warble.spec @@ -0,0 +1,62 @@ +%global appname com.github.avojak.warble + +Name: warble +Version: 1.4.0 +Release: 1%{?dist} +Summary: The word-guessing game + +License: GPLv3+ +URL: https://github.com/avojak/warble +Source: https://github.com/avojak/%{name}/archive/%{version}/%{name}-%{version}.tar.gz + +BuildRequires: gcc +BuildRequires: cmake +BuildRequires: meson +BuildRequires: pkgconfig(gee-0.8) +BuildRequires: pkgconfig(granite) +BuildRequires: pkgconfig(gtk+-3.0) +BuildRequires: pkgconfig(libhandy-1) +BuildRequires: vala +BuildRequires: /usr/bin/appstream-util +BuildRequires: /usr/bin/desktop-file-validate + +%description +Native Linux word-guessing game built in Vala and Gtk. +Warble is inspired by the recently popular online game Wordle. + +%prep +%autosetup + +%build +%meson +%meson_build + +%install +%meson_install + +%check +appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/%{appname}.appdata.xml +desktop-file-validate %{buildroot}%{_datadir}/applications/%{appname}.desktop + +%files +%license COPYING LICENSE +%doc CONTRIBUTING.md README.md +%{_bindir}/%{appname} +%{_datadir}/%{appname} +%{_datadir}/applications/%{appname}.desktop +%{_datadir}/glib-2.0/schemas/%{appname}.gschema.xml +%{_datadir}/icons/hicolor/*/*/*.svg +%{_datadir}/metainfo/%{appname}.appdata.xml + +%changelog +* Tue Jun 14 2022 Ali Erdinc Koroglu - 1.4.0-1 +- Update to 1.4.0 and Hi-DPI directories fix + +* Fri Apr 1 2022 Ali Erdinc Koroglu - 1.3.1-1 +- new upstream release 1.3.1 + +* Tue Feb 15 2022 Ali Erdinc Koroglu - 1.2.0-2 +- Hi-DPI directories removed (rhbz#1537318) + +* Thu Feb 10 2022 Ali Erdinc Koroglu - 1.2.0-1 +- Initial build.