forked from pool/gnome-shell-extensions
Accepting request 78352 from home:dimstar:branches:GNOME:Factory
Update to 3.1.4 OBS-URL: https://build.opensuse.org/request/show/78352 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-shell-extensions?expand=0&rev=17
This commit is contained in:
parent
3a9cf5df3d
commit
af202b1ddf
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:59a6d42f7bc761574870090350d613dcc055633610ddd3e1628ecf663c19b46f
|
||||
size 111823
|
3
gnome-shell-extensions-3.1.4.tar.bz2
Normal file
3
gnome-shell-extensions-3.1.4.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:eac92d805a63991dfa1f0c9f4200ef918ae55d754cf8f99719e2272230afe81c
|
||||
size 118559
|
@ -1,3 +1,25 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 9 10:20:16 CEST 2011 - dimstar@opensuse.org
|
||||
|
||||
- Update to version 3.1.4:
|
||||
+ New: A menu for changing workspace (workspace-indicator)
|
||||
+ systemMonitor: lower the requirement on libgtop
|
||||
+ auto-move-windows: open overview when last window on last
|
||||
workspace is closed
|
||||
+ dock: implement autohiding, with various configurable effects
|
||||
+ alternate-tab: more configurable implementations available
|
||||
+ native-window-placement: don't rearrange the windows when the
|
||||
workspace switcher is shown/hidden
|
||||
+ update for gnome-shell 3.1.4 API changes.
|
||||
- Re-enable the systemMonitor extension, as the requirements were
|
||||
lowered. Remove build_systemMonitor define as the issue has been
|
||||
resolved.
|
||||
- Add new recommended sub-package for workspace-indicator.
|
||||
- Add pkgconfig(libgtop-2.0) BuildRequires for systemMonitor.
|
||||
- Add gobject-introspection BuildRequires in order to get typelib()
|
||||
Requires for the packages.
|
||||
- Remove bogus libgtop Requires from the systemMonitor package.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 21 09:25:54 CEST 2011 - vuntz@opensuse.org
|
||||
|
||||
|
@ -17,12 +17,9 @@
|
||||
#
|
||||
|
||||
|
||||
# libgtop-2.0 >= 2.28.4 is required for systemMonitor
|
||||
%define build_systemMonitor 0
|
||||
|
||||
Name: gnome-shell-extensions
|
||||
Version: 3.1.3
|
||||
Release: 3
|
||||
Version: 3.1.4
|
||||
Release: 1
|
||||
License: GPL-2.0+
|
||||
Summary: A collection of extensions for GNOME Shell
|
||||
Url: http://live.gnome.org/GnomeShell/Extensions
|
||||
@ -35,7 +32,10 @@ Patch0: gnome-shell-extensions-fix-zero-length-warning-for-stylesheets.p
|
||||
BuildRequires: gnome-common
|
||||
# Needed for directory ownership
|
||||
BuildRequires: gnome-shell
|
||||
# gobject-introspection is needed for the typelib() rpm magic.
|
||||
BuildRequires: gobject-introspection
|
||||
BuildRequires: pkgconfig(gnome-desktop-3.0)
|
||||
BuildRequires: pkgconfig(libgtop-2.0) >= 2.28.3
|
||||
Requires: gnome-shell
|
||||
Recommends: gnome-shell-extension-alt-status-menu
|
||||
Recommends: gnome-shell-extension-alternate-tab
|
||||
@ -46,11 +46,10 @@ Recommends: gnome-shell-extension-drive-menu
|
||||
Recommends: gnome-shell-extension-gajim
|
||||
Recommends: gnome-shell-extension-native-window-placement
|
||||
Recommends: gnome-shell-extension-places-menu
|
||||
%if 0%{?build_systemMonitor}
|
||||
Recommends: gnome-shell-extension-systemMonitor
|
||||
%endif
|
||||
Recommends: gnome-shell-extension-user-theme
|
||||
Recommends: gnome-shell-extension-windows-navigator
|
||||
Recommends: gnome-shell-extension-workspace-indicator
|
||||
Recommends: gnome-shell-extension-xrandr-indicator
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildArch: noarch
|
||||
@ -166,7 +165,6 @@ Summary: GNOME Shell Extension -- System Monitor
|
||||
Group: System/GUI/GNOME
|
||||
License: GPL-2.0+
|
||||
Requires: gnome-shell
|
||||
Requires: libgtop >= 2.28.4
|
||||
Recommends: %{name}-lang
|
||||
|
||||
%description -n gnome-shell-extension-systemMonitor
|
||||
@ -196,6 +194,17 @@ Recommends: %{name}-lang
|
||||
This GNOME Shell extension enables keyboard selection of windows
|
||||
and workspaces in overlay mode, by pressing the alt key.
|
||||
|
||||
%package -n gnome-shell-extension-workspace-indicator
|
||||
Summary: GNOME Shell Extension -- Workspace Indicator
|
||||
Group: System/GUI/GNOME
|
||||
License: GPL-2.0+
|
||||
Requires: gnome-shell
|
||||
Recommends: %{name}-lang
|
||||
|
||||
%description -n gnome-shell-extension-workspace-indicator
|
||||
This GNOME Shell extension add a system status menu for quickly
|
||||
changing workspaces.
|
||||
|
||||
%package -n gnome-shell-extension-xrandr-indicator
|
||||
Summary: GNOME Shell Extension -- Status Menu for Rotating Monitors
|
||||
Group: System/GUI/GNOME
|
||||
@ -228,6 +237,12 @@ rm -r %{buildroot}%{_datadir}/gnome-shell/extensions/example@gnome-shell-extensi
|
||||
%clean
|
||||
%{?buildroot:%__rm -rf %{buildroot}}
|
||||
|
||||
%post -n gnome-shell-extension-alternate-tab
|
||||
%glib2_gsettings_schema_post
|
||||
|
||||
%postun -n gnome-shell-extension-alternate-tab
|
||||
%glib2_gsettings_schema_postun
|
||||
|
||||
%post -n gnome-shell-extension-auto-move-windows
|
||||
%glib2_gsettings_schema_post
|
||||
|
||||
@ -264,6 +279,7 @@ rm -r %{buildroot}%{_datadir}/gnome-shell/extensions/example@gnome-shell-extensi
|
||||
%files -n gnome-shell-extension-alternate-tab
|
||||
%defattr(-,root,root)
|
||||
%doc COPYING
|
||||
%{_datadir}/glib-2.0/schemas/org.gnome.shell.extensions.alternate-tab.gschema.xml
|
||||
%{_datadir}/gnome-shell/extensions/alternate-tab@gnome-shell-extensions.gnome.org/
|
||||
|
||||
%files -n gnome-shell-extension-apps-menu
|
||||
@ -304,15 +320,11 @@ rm -r %{buildroot}%{_datadir}/gnome-shell/extensions/example@gnome-shell-extensi
|
||||
%doc COPYING
|
||||
%{_datadir}/gnome-shell/extensions/places-menu@gnome-shell-extensions.gnome.org/
|
||||
|
||||
%if 0%{?build_systemMonitor}
|
||||
|
||||
%files -n gnome-shell-extension-systemMonitor
|
||||
%defattr(-,root,root)
|
||||
%doc COPYING
|
||||
%{_datadir}/gnome-shell/extensions/systemMonitor@gnome-shell-extensions.gnome.org/
|
||||
|
||||
%endif
|
||||
|
||||
%files -n gnome-shell-extension-user-theme
|
||||
%defattr(-,root,root)
|
||||
%doc COPYING
|
||||
@ -324,6 +336,11 @@ rm -r %{buildroot}%{_datadir}/gnome-shell/extensions/example@gnome-shell-extensi
|
||||
%doc COPYING
|
||||
%{_datadir}/gnome-shell/extensions/windowsNavigator@gnome-shell-extensions.gnome.org/
|
||||
|
||||
%files -n gnome-shell-extension-workspace-indicator
|
||||
%defattr(-,root,root)
|
||||
%doc COPYING
|
||||
%{_datadir}/gnome-shell/extensions/workspace-indicator@gnome-shell-extensions.gnome.org/
|
||||
|
||||
%files -n gnome-shell-extension-xrandr-indicator
|
||||
%defattr(-,root,root)
|
||||
%doc COPYING
|
||||
|
Loading…
Reference in New Issue
Block a user