Compare commits

..

No commits in common. "rawhide" and "f35" have entirely different histories.

5 changed files with 67 additions and 1 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/warble-*.tar.gz

3
README.md Normal file
View file

@ -0,0 +1,3 @@
# warble
The warble package

View file

@ -1 +0,0 @@
Retired: Fails to install: https://forge.fedoraproject.org/releng/tickets/issues/13473

1
sources Normal file
View file

@ -0,0 +1 @@
SHA512 (warble-1.4.0.tar.gz) = 026355face1fcd3f986ced5a3d3defae517b8837aeba624ab1e4120ec0db0fff47dbce70413df5816c97fac6fb170567291afbd6b50aa39043f254fab11e4977

62
warble.spec Normal file
View file

@ -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 <aekoroglu@fedoraproject.org> - 1.4.0-1
- Update to 1.4.0 and Hi-DPI directories fix
* Fri Apr 1 2022 Ali Erdinc Koroglu <aekoroglu@fedoraproject.org> - 1.3.1-1
- new upstream release 1.3.1
* Tue Feb 15 2022 Ali Erdinc Koroglu <ali.erdinc.koroglu@intel.com> - 1.2.0-2
- Hi-DPI directories removed (rhbz#1537318)
* Thu Feb 10 2022 Ali Erdinc Koroglu <ali.erdinc.koroglu@intel.com> - 1.2.0-1
- Initial build.