Accepting request 84223 from home:vuntz:branches:GNOME:Factory
Update to 3.1.92 OBS-URL: https://build.opensuse.org/request/show/84223 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-shell?expand=0&rev=80
This commit is contained in:
parent
1b5ac9775c
commit
b328e64c08
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cce104623bbd087314e3ecb220ee1349161f112f8b8196be7ef2c008c52d0ea5
|
||||
size 1244880
|
3
gnome-shell-3.1.92.tar.bz2
Normal file
3
gnome-shell-3.1.92.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:643b24068f5488958b62af47a01b058ec54a5f18ccda7d64266c1d49a557510c
|
||||
size 1257983
|
@ -1,23 +0,0 @@
|
||||
commit 80a79c88bc32a01034680eb6f4afd6730edd635a
|
||||
Author: Vincent Untz <vuntz@gnome.org>
|
||||
Date: Thu Sep 15 13:43:01 2011 +0200
|
||||
|
||||
build: Fix rule to create .service files
|
||||
|
||||
It was always taking the first .service.in file to create all .service
|
||||
files: org.gnome.Shell.CalendarServer.service.in was the only one being
|
||||
used.
|
||||
|
||||
diff --git a/src/Makefile.am b/src/Makefile.am
|
||||
index 11449ea..d19f0fe 100644
|
||||
--- a/src/Makefile.am
|
||||
+++ b/src/Makefile.am
|
||||
@@ -19,7 +19,7 @@ typelib_DATA = $(INTROSPECTION_GIRS:.gir=.typelib)
|
||||
servicedir = $(datadir)/dbus-1/services
|
||||
service_DATA = $(service_in_files:.service.in=.service)
|
||||
|
||||
-$(service_DATA): $(service_in_files) Makefile
|
||||
+%.service: %.service.in Makefile
|
||||
$(AM_V_GEN) \
|
||||
[ -d $(@D) ] || $(mkdir_p) $(@D) ; \
|
||||
sed -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@.tmp && mv $@.tmp $@
|
@ -1,37 +0,0 @@
|
||||
commit b8d136b2142cd26b8249bbb73c580f5abdc41b8f
|
||||
Author: Vincent Untz <vuntz@gnome.org>
|
||||
Date: Thu Sep 15 07:42:43 2011 +0200
|
||||
|
||||
browser-plugin: Add support for BROWSER_PLUGIN_DIR environment variable
|
||||
|
||||
This makes it easy to override where the plugin should be installed.
|
||||
|
||||
This is based on what totem does.
|
||||
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=659123
|
||||
|
||||
diff --git a/browser-plugin/Makefile.am b/browser-plugin/Makefile.am
|
||||
index 4bfb350..0dc7da1 100644
|
||||
--- a/browser-plugin/Makefile.am
|
||||
+++ b/browser-plugin/Makefile.am
|
||||
@@ -1,5 +1,5 @@
|
||||
|
||||
-mozillalibdir = $(libdir)/mozilla/plugins
|
||||
+mozillalibdir = $(BROWSER_PLUGIN_DIR)
|
||||
|
||||
mozillalib_LTLIBRARIES = libgnome-shell-browser-plugin.la
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index a7493c9..93dd0a0 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -235,6 +235,9 @@ else
|
||||
fi
|
||||
AC_SUBST(SHELL_SYSTEM_CA_FILE,["$with_ca_certificates"])
|
||||
|
||||
+BROWSER_PLUGIN_DIR="${BROWSER_PLUGIN_DIR:-"\${libdir}/mozilla/plugins"}"
|
||||
+AC_ARG_VAR([BROWSER_PLUGIN_DIR],[Where to install the plugin to])
|
||||
+
|
||||
AC_CONFIG_FILES([
|
||||
Makefile
|
||||
data/Makefile
|
@ -1,3 +1,54 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 21 11:20:56 UTC 2011 - vuntz@opensuse.org
|
||||
|
||||
- Update to version 3.1.92:
|
||||
+ Login screen
|
||||
- Add the ability to set a logo at the top of the user list
|
||||
[bgo#658062]
|
||||
- Add fingerprint reader support [bgo#657823]
|
||||
- Add a power button offering the choice of
|
||||
Suspend/Restart/Power off [bgo#657822]
|
||||
- Remove the option to view the current keyboad layout
|
||||
[bgo#659164]
|
||||
- Make Control-Alt-Tab work for full keyboard access
|
||||
[bgo#659177]
|
||||
+ Frequently initiate a full garbage collection; Spidermonkey
|
||||
isn't very good at tracking the amount of resources we have
|
||||
allocated so this hopefully will improve memory usage without
|
||||
affecting performance too much [bgo#659254]
|
||||
+ Stop adding a notification when the network connection is lost
|
||||
[bgo#658954]
|
||||
+ When disabling notifications; display a notification "Your chat
|
||||
status will be set to busy" [bgo#652718]
|
||||
+ Fix keynav in network dialogs [bgo#659133]
|
||||
+ Improve calendar styling [bgo#641135, bgo#651299]
|
||||
+ Shrink padding around panel buttons for narrow screens
|
||||
[bgo#651299]
|
||||
+ Allow enabling the onscreen keyboard through the accessibility
|
||||
menu [bgo#612662]
|
||||
+ Fix problem that was causing VPN secret dialogs to be delayed
|
||||
before showing [bgo#658484]
|
||||
+ Make custom-keybindings for the window switcher that don't use
|
||||
alt work correctly [bgo#645200]
|
||||
+ Fix duplicate application icons in the Activities Overview
|
||||
[bgo#659351]
|
||||
+ Bug fixes for dimming windows with attached modal dialogs
|
||||
[bgo#659302, bgo#659634]
|
||||
+ Add build-time support for BROWSER_PLUGIN_DIR environment
|
||||
variable [bgo#659123]
|
||||
+ Build fixes [bgo#659194]
|
||||
+ Code cleanups and test cases [bgo#651299, bgo#658092,
|
||||
bgo#658939]
|
||||
+ Misc bug fixes [bgo#651299, bgo#652837, bgo#657249, bgo#658004,
|
||||
bgo#658150, bgo#658239, bgo#658469, bgo#658598, bgo#658605,
|
||||
bgo#659050, bgo#659159, bgo#659210, bgo#659270, bgo#659370,
|
||||
bgo#659633]
|
||||
+ Updated translations.
|
||||
- Drop gnome-shell-fix-service.patch: fixed upstream.
|
||||
- Drop gnome-shell-plugin-dir.patch: fixed upstream.
|
||||
- Remove gnome-common BuildRequires and call to gnome-autogen.sh:
|
||||
those were needed only for the patches above.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 15 05:09:01 UTC 2011 - vuntz@opensuse.org
|
||||
|
||||
|
@ -18,19 +18,13 @@
|
||||
|
||||
|
||||
Name: gnome-shell
|
||||
Version: 3.1.91.1
|
||||
Version: 3.1.92
|
||||
Release: 1
|
||||
License: GPLv2+
|
||||
Summary: GNOME Shell
|
||||
Group: System/GUI/GNOME
|
||||
Url: http://live.gnome.org/GnomeShell
|
||||
Source: http://download.gnome.org/sources/gnome-shell/3.1/%{name}-%{version}.tar.bz2
|
||||
# PATCH-FIX-UPSTREAM gnome-shell-plugin-dir.patch bgo#659123 vuntz@opensuse.org -- Specify where the browser plugin should get installed
|
||||
Patch0: gnome-shell-plugin-dir.patch
|
||||
# PATCH-FIX-UPSTREAM gnome-shell-fix-service.patch vuntz@opensuse.org -- Correctly build .service files
|
||||
Patch1: gnome-shell-fix-service.patch
|
||||
# needed for patch0 & patch1
|
||||
BuildRequires: gnome-common
|
||||
BuildRequires: intltool
|
||||
BuildRequires: translation-update-upstream
|
||||
BuildRequires: update-desktop-files
|
||||
@ -115,12 +109,8 @@ to enable, disable and install them.
|
||||
%prep
|
||||
%setup -q
|
||||
translation-update-upstream
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
|
||||
%build
|
||||
# needed for patch0 & patch1
|
||||
NOCONFIGURE=1 gnome-autogen.sh
|
||||
export BROWSER_PLUGIN_DIR=%{_libdir}/browser-plugins
|
||||
%configure \
|
||||
--disable-static \
|
||||
|
Loading…
x
Reference in New Issue
Block a user