Compare commits

...
Sign in to create a new pull request.

4 commits

Author SHA1 Message Date
Fabio Valentini
767935e3c7
update to version 2.2.0 2018-04-23 19:57:08 +02:00
Fabio Valentini
a354e8dca5
update to version 2.1.6 2018-01-30 19:39:39 +01:00
Fabio Valentini
7bd0e258ff
remove icon cache scriptlets, replaced by file triggers 2018-01-06 14:05:55 +01:00
Fabio Valentini
82222339ad
update to version 2.1.0 2017-12-30 22:22:18 +01:00
3 changed files with 26 additions and 22 deletions

4
.gitignore vendored
View file

@ -1,2 +1,6 @@
/vocal-2.0.19.tar.gz
/vocal-2.0.20.tar.gz
/vocal-2.1.0.tar.gz
/vocal-2.1.5.tar.gz
/vocal-2.1.6.tar.gz
/vocal-2.2.0.tar.gz

View file

@ -1 +1 @@
SHA512 (vocal-2.0.20.tar.gz) = b3feae010bacf1702d5339a5afcdee2146378304f88f851787151bfea52fb1bf0845bd1c694cf736ddd96972105358a763e61b2262be324abc450c3bcc9c3a30
SHA512 (vocal-2.2.0.tar.gz) = 103d9b7fd6988d12aeba52559af1439421e2b86f05acfd4f4d37d51fb43d8fa371867fae64e2d0ef0fd3bb9b1719aa1778d7e8858e5d21165ee4e02ebb659a93

View file

@ -2,7 +2,7 @@
Name: vocal
Summary: Powerful, beautiful, and simple podcast client
Version: 2.0.20
Version: 2.2.0
Release: 1%{?dist}
License: GPLv3
@ -34,6 +34,8 @@ BuildRequires: pkgconfig(sqlite3)
BuildRequires: pkgconfig(unity)
BuildRequires: pkgconfig(webkit2gtk-4.0)
Requires: hicolor-icon-theme
%description
Vocal is a powerful, fast, and intuitive application that helps users
@ -52,10 +54,6 @@ skip intervals.
%build
# mark sources files and docs as NOT executable
for i in $(find -name "*.vala"); do chmod a-x $i; done
chmod a-x AUTHORS README.md COPYING
mkdir build && pushd build
%cmake ..
%make_build
@ -75,36 +73,38 @@ desktop-file-validate \
%{buildroot}/%{_datadir}/applications/%{appname}.desktop
appstream-util validate-relax --nonet \
%{buildroot}/%{_datadir}/appdata/%{appname}.appdata.xml
%post
/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
%postun
if [ $1 -eq 0 ] ; then
/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
fi
%posttrans
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
%{buildroot}/%{_datadir}/metainfo/%{appname}.appdata.xml
%files -f vocal.lang
%doc AUTHORS README.md
%license COPYING
%{_bindir}/vocal
%{_bindir}/%{appname}
%{_datadir}/appdata/%{appname}.appdata.xml
%{_datadir}/applications/%{appname}.desktop
%{_datadir}/glib-2.0/schemas/%{appname}.gschema.xml
%{_datadir}/icons/hicolor/*/apps/%{appname}*.svg
%{_datadir}/metainfo/%{appname}.appdata.xml
%{_datadir}/vocal/
%changelog
* Mon Apr 23 2018 Fabio Valentini <decathorpe@gmail.com> - 2.2.0-1
- Update to version 2.2.0.
* Tue Jan 30 2018 Fabio Valentini <decathorpe@gmail.com> - 2.1.6-1
- Update to version 2.1.6.
* Tue Jan 16 2018 Fabio Valentini <decathorpe@gmail.com> - 2.1.5-1
- Update to version 2.1.5.
* Sat Jan 06 2018 Fabio Valentini <decathorpe@gmail.com> - 2.1.0-2
- Remove icon cache scriptlets, replaced by file triggers.
* Sat Dec 30 2017 Fabio Valentini <decathorpe@gmail.com> - 2.1.0-1
- Update to version 2.1.0.
* Sat Jun 10 2017 Fabio Valentini <decathorpe@gmail.com> - 2.0.20-1
- Update to version 2.0.20.