Compare commits

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

5 commits

Author SHA1 Message Date
Matthias Clasen
c22214cb48 Fix a crash when clicking on the statusicon 2012-12-02 21:54:36 -05:00
Richard Hughes
d3141fabaa Update to 3.4.2 2012-05-14 22:30:51 +01:00
Kalev Lember
0a954ce04e Silence rpm scriptlet output
Redirect it to /dev/null; end users aren't supposed to see the warnings
generated by e.g. glib-compile-schemas.

http://fedoraproject.org/wiki/Packaging:ScriptletSnippets
2012-04-24 20:15:13 +03:00
Kalev Lember
2c2dabdf15 Update to 3.4.1 2012-04-17 01:24:31 +03:00
Debarshi Ray
3ec0f59148 Update to 3.4.0 2012-03-27 14:23:14 +02:00
3 changed files with 26 additions and 7 deletions

3
.gitignore vendored
View file

@ -19,3 +19,6 @@ vino-2.31.4.tar.bz2
/vino-3.3.1.tar.xz
/vino-3.3.3.tar.xz
/vino-3.3.92.tar.xz
/vino-3.4.0.tar.xz
/vino-3.4.1.tar.xz
/vino-3.4.2.tar.xz

View file

@ -1 +1 @@
e6919bf1ffdbf2f41d9908ed685e67eb vino-3.3.92.tar.xz
d397ec56c9a819b5893a5eae4f66b55d vino-3.4.2.tar.xz

View file

@ -4,11 +4,11 @@
Summary: A remote desktop system for GNOME
Name: vino
Version: 3.3.92
Release: 1%{?dist}
Version: 3.4.2
Release: 2%{?dist}
URL: http://www.gnome.org
#VCS: git:git://git.gnome.org/vino
Source0: http://download.gnome.org/sources/vino/3.3/%{name}-%{version}.tar.xz
Source0: http://download.gnome.org/sources/vino/3.4/%{name}-%{version}.tar.xz
License: GPLv2+
Group: User Interface/Desktops
@ -57,7 +57,7 @@ make %{?_smp_mflags}
%install
make install DESTDIR=$RPM_BUILD_ROOT
desktop-file-install --vendor gnome --delete-original \
desktop-file-install --delete-original \
--dir $RPM_BUILD_ROOT%{_datadir}/applications \
--add-only-show-in GNOME \
$RPM_BUILD_ROOT%{_datadir}/applications/vino-preferences.desktop
@ -74,12 +74,12 @@ touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
if [ $1 -eq 0 ]; then
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
glib-compile-schemas %{_datadir}/glib-2.0/schemas || :
glib-compile-schemas %{_datadir}/glib-2.0/schemas &>/dev/null || :
fi
%posttrans
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
glib-compile-schemas %{_datadir}/glib-2.0/schemas || :
glib-compile-schemas %{_datadir}/glib-2.0/schemas &>/dev/null || :
%files -f %{name}.lang
@ -96,6 +96,22 @@ glib-compile-schemas %{_datadir}/glib-2.0/schemas || :
%{_datadir}/GConf/gsettings/org.gnome.Vino.convert
%changelog
* Sun Dec 2 2012 Matthias Clasen <mclasen@redhat.com> - 3.4.2-2
- Don't add a vendor prefix to the desktop file, that breaks
activating the preferences from the statusicon (#827913)
* Mon May 14 2012 Richard Hughes <hughsient@gmail.com> - 3.4.2-1
- Update to 3.4.2
* Tue Apr 24 2012 Kalev Lember <kalevlember@gmail.com> - 3.4.1-2
- Silence rpm scriptlet output
* Tue Apr 17 2012 Kalev Lember <kalevlember@gmail.com> - 3.4.1-1
- Update to 3.4.1
* Tue Mar 27 2012 Debarshi Ray <rishi@fedoraproject.org> - 3.4.0-1
- Update to 3.4.0
* Wed Mar 21 2012 Kalev Lember <kalevlember@gmail.com> - 3.3.92-1
- Update to 3.3.92
- Don't BR unique-devel; vino doesn't use libunique any more