Update to 3.5.2

This commit is contained in:
Mohamed El Morabity 2012-07-18 03:54:37 +02:00
parent 451ca18ad0
commit 4719fe856d
3 changed files with 18 additions and 22 deletions

1
.gitignore vendored
View File

@ -6,3 +6,4 @@
/gnome-shell-extensions-3.3.90.tar.xz
/gnome-shell-extensions-3.3.92.tar.xz
/gnome-shell-extensions-3.4.0.tar.xz
/gnome-shell-extensions-3.5.2.tar.xz

View File

@ -3,7 +3,7 @@
%global min_gs_version %{major_version}.0
Name: gnome-shell-extensions
Version: 3.4.0
Version: 3.5.2
Release: 1%{?dist}
Summary: Modify and extend GNOME Shell functionality and behavior
@ -51,8 +51,6 @@ Summary: Files common to GNOME Shell Extensions
Group: User Interface/Desktops
License: GPLv2+
Requires: gnome-shell >= %{min_gs_version}
Provides: %{name}-common = %{version}-%{release}
Obsoletes: %{name}-common < %{version}-%{release}
%description -n %{pkg_prefix}-common
GNOME Shell Extensions is a collection of extensions providing additional
@ -64,8 +62,6 @@ needed by extensions are provided here.
Summary: Classic Alt+Tab behavior. Window based instead of app based
Group: User Interface/Desktops
License: GPLv2+
Provides: %{name}-alternate-tab = %{version}-%{release}
Obsoletes: %{name}-alternate-tab < %{version}-%{release}
Requires: %{pkg_prefix}-common = %{version}-%{release}
%description -n %{pkg_prefix}-alternate-tab
@ -78,8 +74,6 @@ This extension disables grouping.
Summary: For those who want a power off item visible at all the time
Group: User Interface/Desktops
License: GPLv2+
Provides: %{name}-alternative-status-menu = %{version}-%{release}
Obsoletes: %{name}-alternative-status-menu < %{version}-%{release}
Requires: %{pkg_prefix}-common = %{version}-%{release}
%description -n %{pkg_prefix}-alternative-status-menu
@ -102,8 +96,6 @@ Add a GNOME 2.x style menu for applications.
Summary: Assign specific workspaces to applications
Group: User Interface/Desktops
License: GPLv2+
Provides: %{name}-auto-move-windows = %{version}-%{release}
Obsoletes: %{name}-auto-move-windows < %{version}-%{release}
Requires: %{pkg_prefix}-common = %{version}-%{release}
%description -n %{pkg_prefix}-auto-move-windows
@ -116,8 +108,6 @@ GSettings key.
Summary: Shows a dock-style task switcher permanently
Group: User Interface/Desktops
License: GPLv2+
Provides: %{name}-dock = %{version}-%{release}
Obsoletes: %{name}-dock < %{version}-%{release}
Requires: %{pkg_prefix}-common = %{version}-%{release}
%description -n %{pkg_prefix}-dock
@ -128,8 +118,6 @@ Shows a dock-style task switcher on the right side of the screen permanently.
Summary: Disk device manager in the system status area
Group: User Interface/Desktops
License: GPLv2+
Provides: %{name}-drive-menu = %{version}-%{release}
Obsoletes: %{name}-drive-menu < %{version}-%{release}
Requires: %{pkg_prefix}-common = %{version}-%{release}
%description -n %{pkg_prefix}-drive-menu
@ -153,8 +141,6 @@ attached and offers to browse them and eject/unmount them.
Summary: Arrange windows in overview in a more native way
Group: User Interface/Desktops
License: GPLv2+
Provides: %{name}-native-window-placement = %{version}-%{release}
Obsoletes: %{name}-native-window-placement < %{version}-%{release}
Requires: %{pkg_prefix}-common = %{version}-%{release}
%description -n %{pkg_prefix}-native-window-placement
@ -167,8 +153,6 @@ sizes of the actual windows, instead of using a fixed grid.
Summary: Places menu indicator in the system status area
Group: User Interface/Desktops
License: GPLv2+
Provides: %{name}-places-menu = %{version}-%{release}
Obsoletes: %{name}-places-menu < %{version}-%{release}
Requires: %{pkg_prefix}-common = %{version}-%{release}
%description -n %{pkg_prefix}-places-menu
@ -193,8 +177,6 @@ Monitor your system status
Summary: Lets the user select a custom theme for the shell
Group: User Interface/Desktops
License: GPLv2+
Provides: %{name}-user-theme = %{version}-%{release}
Obsoletes: %{name}-user-theme < %{version}-%{release}
Requires: %{pkg_prefix}-common = %{version}-%{release}
%description -n %{pkg_prefix}-user-theme
@ -206,8 +188,6 @@ apply a style from /.themes/[themeName]/gnome-shell/gnome-shell.css
Summary: Keyboard selection of windows and work-spaces in overlay mode
Group: User Interface/Desktops
License: GPLv2+
Provides: %{name}-windowsNavigator = %{version}-%{release}
Obsoletes: %{name}-windowsNavigator < %{version}-%{release}
Requires: %{pkg_prefix}-common = %{version}-%{release}
%description -n %{pkg_prefix}-windowsNavigator
@ -269,6 +249,7 @@ make install DESTDIR=$RPM_BUILD_ROOT
%files -n %{pkg_prefix}-alternative-status-menu
%{_datadir}/glib-2.0/schemas/org.gnome.shell.extensions.alternative-status-menu.gschema.xml
%{_datadir}/gnome-shell/extensions/alternative-status-menu*
@ -289,6 +270,7 @@ make install DESTDIR=$RPM_BUILD_ROOT
%files -n %{pkg_prefix}-drive-menu
%{_datadir}/gnome-shell/extensions/drive-menu*
# TODO: uncomment when enabling gajim
# %files -n %{pkg_prefix}-gajim
# %{_datadir}/gnome-shell/extensions/gajim*
@ -333,6 +315,15 @@ fi
/usr/bin/glib-compile-schemas %{_datadir}/glib-2.0/schemas/ &>/dev/null || :
%postun -n %{pkg_prefix}-alternative-status-menu
if [ $1 -eq 0 ]; then
/usr/bin/glib-compile-schemas %{_datadir}/glib-2.0/schemas/ &>/dev/null || :
fi
%posttrans -n %{pkg_prefix}-alternative-status-menu
/usr/bin/glib-compile-schemas %{_datadir}/glib-2.0/schemas/ &>/dev/null || :
%postun -n %{pkg_prefix}-auto-move-windows
if [ $1 -eq 0 ]; then
/usr/bin/glib-compile-schemas %{_datadir}/glib-2.0/schemas/ &>/dev/null || :
@ -370,6 +361,10 @@ fi
%changelog
* Wed Jul 18 2012 Mohamed El Morabity <melmorabity@fedoraproject.org> - 3.5.2-1
- Update to 3.5.2
- Drop useless Provides/Obsoletes
* Sat Mar 24 2012 Mohamed El Morabity <melmorabity@fedoraproject.org> - 3.4.0-1
- Update to 3.4.0
- Minor spec fixes

View File

@ -1 +1 @@
34e8cbf848fe3eab860da4b1bffc3e6b gnome-shell-extensions-3.4.0.tar.xz
fa8ac4fd1461bcd9939aeacbcaeb1dfb gnome-shell-extensions-3.5.2.tar.xz