Merge lp:~noskcaj/ubuntu/trusty/gnome-themes-standard/merge into lp:ubuntu/trusty/gnome-themes-standard

Proposed by Jackson Doak
Status: Merged
Merged at revision: 25
Proposed branch: lp:~noskcaj/ubuntu/trusty/gnome-themes-standard/merge
Merge into: lp:ubuntu/trusty/gnome-themes-standard
Diff against target: 187 lines (+26/-104)
6 files modified
.pc/01_gtk-update-icon-cache_name.patch/configure.ac (+0/-92)
.pc/applied-patches (+0/-2)
.pc/ubuntu_a11y_fallback.patch/themes/HighContrast/icons/index.theme.in (+0/-7)
configure.ac (+2/-2)
debian/changelog (+23/-0)
themes/HighContrast/icons/index.theme.in (+1/-1)
To merge this branch: bzr merge lp:~noskcaj/ubuntu/trusty/gnome-themes-standard/merge
Reviewer Review Type Date Requested Status
Daniel Holbach (community) Approve
Review via email: mp+199558@code.launchpad.net

Description of the change

Merge from debian

To post a comment you must log in.
Revision history for this message
Daniel Holbach (dholbach) wrote :

This merge does not make too much change - it doesn't amount to much more than a rebuild (only changes in d/changelog). Still sponsoring it as it's in the sponsoring queue.

review: Approve
Revision history for this message
Jackson Doak (noskcaj) wrote :

I'm just trying to have all the gnome packages merged for ease of work in
the future.

On Sat, Dec 21, 2013 at 3:36 AM, Daniel Holbach
<email address hidden>wrote:

> Review: Approve
>
> This merge does not make too much change - it doesn't amount to much more
> than a rebuild (only changes in d/changelog). Still sponsoring it as it's
> in the sponsoring queue.
> --
>
> https://code.launchpad.net/~noskcaj/ubuntu/trusty/gnome-themes-standard/merge/+merge/199558
> You are the owner of lp:~noskcaj/ubuntu/trusty/gnome-themes-standard/merge.
>

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== removed directory '.pc/01_gtk-update-icon-cache_name.patch'
2=== removed file '.pc/01_gtk-update-icon-cache_name.patch/configure.ac'
3--- .pc/01_gtk-update-icon-cache_name.patch/configure.ac 2013-09-07 16:25:06 +0000
4+++ .pc/01_gtk-update-icon-cache_name.patch/configure.ac 1970-01-01 00:00:00 +0000
5@@ -1,92 +0,0 @@
6-dnl Process this file with autoconf to produce a configure script.
7-AC_PREREQ(2.53)
8-
9-AC_INIT([gnome-themes-standard], [3.8.4],
10- [http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-themes-standard])
11-
12-AM_INIT_AUTOMAKE([1.9 tar-ustar foreign dist-xz no-dist-gzip])
13-m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
14-
15-PKG_PROG_PKG_CONFIG([0.19])
16-
17-AC_PROG_SED
18-AC_PROG_CC
19-AC_PROG_INSTALL
20-AC_PROG_MAKE_SET
21-AM_PATH_GLIB_2_0
22-
23-dnl Initialize libtool
24-AM_DISABLE_STATIC
25-AC_LIBTOOL_WIN32_DLL
26-AM_PROG_LIBTOOL
27-
28-dnl Initialize intltool
29-IT_PROG_INTLTOOL([0.40.0])
30-
31-GETTEXT_PACKAGE="${PACKAGE}"
32-AC_SUBST(GETTEXT_PACKAGE)
33-
34-AC_ARG_ENABLE([gtk3-engine],
35- AC_HELP_STRING([--disable-gtk3-engine],
36- [Disable Gtk+ 3.x engine [default=no]]),
37- enable_gtk3_engine=$enableval,
38- enable_gtk3_engine=yes)
39-AC_MSG_CHECKING([building gtk3 engine])
40-AM_CONDITIONAL(GTK3_ENGINE, test "x$enable_gtk3_engine" = "xyes")
41-AC_MSG_RESULT([$enable_gtk3_engine])
42-
43-GTK_VERSION_REQUIRED=3.6.2
44-if test "x$enable_gtk3_engine" = "xyes"; then
45- PKG_CHECK_MODULES([GTK3_ENGINE], [gtk+-3.0 >= $GTK_VERSION_REQUIRED librsvg-2.0])
46- PKG_CHECK_MODULES([HIGHCONTRAST], [cairo gio-2.0 gdk-pixbuf-2.0 gdk-3.0])
47-fi
48-
49-GTK3_VERSION=`$PKG_CONFIG --variable=gtk_binary_version gtk+-3.0`
50-AC_SUBST(GTK3_VERSION)
51-
52-AC_ARG_ENABLE([gtk2-engine],
53- AC_HELP_STRING([--disable-gtk2-engine],
54- [Disable Gtk+-2 engine [default=no]]),
55- enable_gtk2_engine=$enableval,
56- enable_gtk2_engine=yes)
57-AC_MSG_CHECKING([building gtk2 engine])
58-AM_CONDITIONAL(GTK2_ENGINE, test "x$enable_gtk2_engine" = "xyes")
59-AC_MSG_RESULT([$enable_gtk2_engine])
60-
61-GTK2_VERSION_REQUIRED=2.24.15
62-if test "x$enable_gtk2_engine" = "xyes"; then
63- PKG_CHECK_MODULES([GTK2_ENGINE], [gtk+-2.0 >= $GTK2_VERSION_REQUIRED gdk-2.0 >= $GTK2_VERSION_REQUIRED])
64-fi
65-
66-GTK2_VERSION=`$PKG_CONFIG --variable=gtk_binary_version gtk+-2.0`
67-AC_SUBST(GTK2_VERSION)
68-
69-GLIB_COMPILE_RESOURCES=`$PKG_CONFIG --variable glib_compile_resources gio-2.0`
70-AC_SUBST(GLIB_COMPILE_RESOURCES)
71-
72-AC_PATH_PROG(GTK_UPDATE_ICON_CACHE, gtk-update-icon-cache)
73-if test -z "$GTK_UPDATE_ICON_CACHE"; then
74- AC_MSG_ERROR([Could not find gtk-update-icon-cache])
75-fi
76-
77-# Workaround to make aclocal get the right flags
78-AC_SUBST(ACLOCAL_AMFLAGS, "\${ACLOCAL_FLAGS}")
79-
80-AC_CONFIG_FILES([
81-Makefile
82-themes/Makefile
83-themes/Adwaita/Makefile
84-themes/Adwaita/backgrounds/Makefile
85-themes/Adwaita/cursors/Makefile
86-themes/Adwaita/gtk-2.0/Makefile
87-themes/Adwaita/gtk-3.0/Makefile
88-themes/Adwaita/metacity-1/Makefile
89-themes/HighContrast/Makefile
90-themes/HighContrast/gtk-2.0/Makefile
91-themes/HighContrast/gtk-3.0/Makefile
92-themes/HighContrast/icons/Makefile
93-themes/HighContrast/metacity-1/Makefile
94-po/Makefile.in
95-])
96-
97-AC_OUTPUT
98
99=== removed file '.pc/applied-patches'
100--- .pc/applied-patches 2013-05-27 12:41:28 +0000
101+++ .pc/applied-patches 1970-01-01 00:00:00 +0000
102@@ -1,2 +0,0 @@
103-01_gtk-update-icon-cache_name.patch
104-ubuntu_a11y_fallback.patch
105
106=== removed directory '.pc/ubuntu_a11y_fallback.patch'
107=== removed directory '.pc/ubuntu_a11y_fallback.patch/themes'
108=== removed directory '.pc/ubuntu_a11y_fallback.patch/themes/HighContrast'
109=== removed directory '.pc/ubuntu_a11y_fallback.patch/themes/HighContrast/icons'
110=== removed file '.pc/ubuntu_a11y_fallback.patch/themes/HighContrast/icons/index.theme.in'
111--- .pc/ubuntu_a11y_fallback.patch/themes/HighContrast/icons/index.theme.in 2013-05-27 12:41:28 +0000
112+++ .pc/ubuntu_a11y_fallback.patch/themes/HighContrast/icons/index.theme.in 1970-01-01 00:00:00 +0000
113@@ -1,7 +0,0 @@
114-[Icon Theme]
115-Name=HighContrast
116-Comment=High contrast scalable icons with black borders
117-Inherits=gnome
118-Example=folder
119-
120-Directories=@THEME_DIRS@
121
122=== modified file 'configure.ac'
123--- configure.ac 2013-09-07 16:25:06 +0000
124+++ configure.ac 2013-12-18 20:56:06 +0000
125@@ -64,9 +64,9 @@
126 GLIB_COMPILE_RESOURCES=`$PKG_CONFIG --variable glib_compile_resources gio-2.0`
127 AC_SUBST(GLIB_COMPILE_RESOURCES)
128
129-AC_PATH_PROG(GTK_UPDATE_ICON_CACHE, gtk-update-icon-cache-3.0)
130+AC_PATH_PROG(GTK_UPDATE_ICON_CACHE, gtk-update-icon-cache)
131 if test -z "$GTK_UPDATE_ICON_CACHE"; then
132- AC_MSG_ERROR([Could not find gtk-update-icon-cache-3.0])
133+ AC_MSG_ERROR([Could not find gtk-update-icon-cache])
134 fi
135
136 # Workaround to make aclocal get the right flags
137
138=== modified file 'debian/changelog'
139--- debian/changelog 2013-09-07 16:25:06 +0000
140+++ debian/changelog 2013-12-18 20:56:06 +0000
141@@ -1,3 +1,20 @@
142+gnome-themes-standard (3.8.4-1ubuntu1) trusty; urgency=medium
143+
144+ * Merge from debian. Remaining changes:
145+ - debian/control.in:
146+ + Have gnome-themes-standard recommend gnome-icon-theme-full
147+ - debian/patches/ubuntu_a11y_fallback.patch:
148+ + Also have HighContrast inheirit from the Humanity icon theme
149+ - Backport new blinds background from 3.10
150+
151+ -- Jackson Doak <noskcaj@ubuntu.com> Thu, 19 Dec 2013 07:39:40 +1100
152+
153+gnome-themes-standard (3.8.4-1) unstable; urgency=low
154+
155+ * New upstream release.
156+
157+ -- Michael Biebl <biebl@debian.org> Tue, 17 Sep 2013 02:15:38 +0200
158+
159 gnome-themes-standard (3.8.4-0ubuntu1) saucy; urgency=low
160
161 * New upstream release.
162@@ -6,6 +23,12 @@
163
164 -- Jeremy Bicha <jbicha@ubuntu.com> Sat, 07 Sep 2013 16:25:06 -0400
165
166+gnome-themes-standard (3.8.3-1) unstable; urgency=low
167+
168+ * New upstream release.
169+
170+ -- Michael Biebl <biebl@debian.org> Thu, 01 Aug 2013 02:54:20 +0200
171+
172 gnome-themes-standard (3.8.3-0ubuntu1) saucy; urgency=low
173
174 [ Jeremy Bicha ]
175
176=== modified file 'themes/HighContrast/icons/index.theme.in'
177--- themes/HighContrast/icons/index.theme.in 2013-05-27 12:41:28 +0000
178+++ themes/HighContrast/icons/index.theme.in 2013-12-18 20:56:06 +0000
179@@ -1,7 +1,7 @@
180 [Icon Theme]
181 Name=HighContrast
182 Comment=High contrast scalable icons with black borders
183-Inherits=gnome,Humanity
184+Inherits=gnome
185 Example=folder
186
187 Directories=@THEME_DIRS@

Subscribers

People subscribed via source and target branches

to all changes: