https://bugzilla.redhat.com/show_bug.cgi?id=1524133



--- Comment #3 from Robert-AndrĂ© Mauchin <[email protected]> ---
 - Bump to 1.0.2.

 - This:

sed -i 's|=lupdate|=lupdate-qt5|;s|=lrelease|=lrelease-qt5|' %{name}.pro

   doesn't work as there is no lupdate/lrelease in the pro file. Thus
translation fails. There's a script here: translations/translate_generation.sh
which contains lrelease that you could replace:

sed -i 's|lrelease|lrelease-qt5|' translations/translate_generation.sh


 - This scriplet is not needed anymore, it has been automated:

%post
/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null ||:
/usr/bin/update-desktop-database -q ||:

%postun
if [ $1 -eq 0 ]; then
    /bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null ||:
    /usr/bin/gtk-update-icon-cache -f -t -q %{_datadir}/icons/hicolor ||:
fi
/usr/bin/update-desktop-database -q ||:

%posttrans
/usr/bin/gtk-update-icon-cache -f -t -q %{_datadir}/icons/hicolor ||:

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
_______________________________________________
package-review mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to