Hello community,

here is the log from the commit of package cinnamon-control-center for 
openSUSE:Factory checked in at 2016-11-15 17:59:58
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/cinnamon-control-center (Old)
 and      /work/SRC/openSUSE:Factory/.cinnamon-control-center.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "cinnamon-control-center"

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/cinnamon-control-center/cinnamon-control-center.changes
  2016-06-26 23:52:33.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.cinnamon-control-center.new/cinnamon-control-center.changes
     2016-11-15 17:59:58.000000000 +0100
@@ -1,0 +2,12 @@
+Tue Nov  8 13:01:41 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 3.2.0:
+  * Migrate away from gnome-common deprecated vars and macros.
+  * Remove unused configure options.
+  * network: Don't try to get secrets for new connections.
+  * Generate additional files.
+  * region widget: Add keyboard layout display options.
+  * l10n: Update POT file.
+- Add cinnamon-control-center-3.2.0-fix-build.patch: fix building.
+
+-------------------------------------------------------------------

Old:
----
  cinnamon-control-center-3.0.1.tar.gz

New:
----
  cinnamon-control-center-3.2.0-fix-build.patch
  cinnamon-control-center-3.2.0.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ cinnamon-control-center.spec ++++++
--- /var/tmp/diff_new_pack.zDkYiC/_old  2016-11-15 17:59:59.000000000 +0100
+++ /var/tmp/diff_new_pack.zDkYiC/_new  2016-11-15 17:59:59.000000000 +0100
@@ -19,26 +19,31 @@
 %define soname  libcinnamon-control-center
 %define sover   1
 Name:           cinnamon-control-center
-Version:        3.0.1
+Version:        3.2.0
 Release:        0
 Summary:        Utilities to configure the Cinnamon desktop
 License:        GPL-2.0 and GPL-3.0+ and MIT
 Group:          System/GUI/Other
 Url:            https://github.com/linuxmint/cinnamon-control-center
 Source:         
https://github.com/linuxmint/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM cinnamon-control-center-3.2.0-fix-build.patch -- Fix 
building.
+Patch0:         cinnamon-control-center-3.2.0-fix-build.patch
+BuildRequires:  autoconf
+BuildRequires:  autoconf-archive
+BuildRequires:  automake
 BuildRequires:  cups-devel
 BuildRequires:  desktop-data
 BuildRequires:  fdupes
-BuildRequires:  gnome-common
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  intltool
+BuildRequires:  libtool
 BuildRequires:  pkgconfig
 BuildRequires:  systemd-devel
 BuildRequires:  update-desktop-files
 BuildRequires:  xsltproc
 BuildRequires:  pkgconfig(NetworkManager) >= 0.9.8
 BuildRequires:  pkgconfig(cinnamon-desktop) >= 1.0.0
-BuildRequires:  pkgconfig(cinnamon-settings-daemon) >= 1.0.0
+BuildRequires:  pkgconfig(cinnamon-settings-daemon)
 BuildRequires:  pkgconfig(colord) >= 0.1.14
 BuildRequires:  pkgconfig(dbus-glib-1)
 BuildRequires:  pkgconfig(fontconfig)
@@ -47,7 +52,7 @@
 BuildRequires:  pkgconfig(glib-2.0) >= 2.31.0
 BuildRequires:  pkgconfig(gmodule-2.0)
 BuildRequires:  pkgconfig(gthread-2.0)
-BuildRequires:  pkgconfig(gtk+-3.0) >= 3.8.0
+BuildRequires:  pkgconfig(gtk+-3.0) >= 3.10.0
 BuildRequires:  pkgconfig(iso-codes)
 BuildRequires:  pkgconfig(libcanberra-gtk3) >= 0.13
 BuildRequires:  pkgconfig(libcinnamon-menu-3.0)
@@ -86,6 +91,8 @@
 and background, user interface properties, screen resolution, and
 other Cinnamon parameters.
 
+%lang_package
+
 %package common
 Summary:        Common files for the Cinnamon configuration utilities
 Group:          System/GUI/Other
@@ -109,27 +116,23 @@
 Summary:        Include Files and Libraries mandatory for Development
 Group:          Development/Libraries/C and C++
 Requires:       %{soname}%{sover} = %{version}
-Requires:       pkgconfig
-Requires:       pkgconfig(gtk+-3.0) >= 3.8.0
 
 %description devel
 This package contains all necessary include files and libraries
 needed to develop applications that require these.
 
-%lang_package
-
 %prep
 %setup -q
+%patch0 -p1
 
 %build
-NOCONFIGURE=1 gnome-autogen.sh
+NOCONFIGURE=1 ./autogen.sh
 %configure \
   --disable-static        \
   --disable-update-mimedb \
   --with-libsocialweb     \
-  --enable-systemd        \
-  --enable-documentation
-make %{?_smp_mflags}
+  --enable-systemd
+make %{?_smp_mflags} V=1
 
 %install
 %make_install

++++++ cinnamon-control-center-3.2.0-fix-build.patch ++++++
--- a/autogen.sh
+++ b/autogen.sh
@@ -24,7 +24,6 @@ fi
 
 aclocal --install || exit 1
 glib-gettextize --force --copy || exit 1
-gtkdocize --copy || exit 1
 intltoolize --force --copy --automake || exit 1
 autoreconf --verbose --force --install || exit 1
 
--- a/configure.ac
+++ b/configure.ac
@@ -6,14 +6,16 @@ AC_CONFIG_SRCDIR([shell])
 AC_CONFIG_HEADERS([config.h])
 AC_CONFIG_MACRO_DIR([m4])
 
-AX_IS_RELEASE([always])
+m4_ifdef([AX_IS_RELEASE], [AX_IS_RELEASE([always])])
 
 AM_INIT_AUTOMAKE([1.11 no-dist-gzip dist-xz tar-ustar check-news])
 AM_MAINTAINER_MODE([enable])
 m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
 
-AX_CHECK_ENABLE_DEBUG([yes])
-AX_COMPILER_FLAGS([WARN_CFLAGS],[WARN_LDFLAGS])
+m4_ifdef([AX_CHECK_ENABLE_DEBUG],
+         [AX_CHECK_ENABLE_DEBUG([yes])])
+m4_ifdef([AX_COMPILER_FLAGS],
+         [AX_COMPILER_FLAGS([WARN_CFLAGS],[WARN_LDFLAGS])])
 
 # Check for programs
 AC_PROG_CC
++++++ cinnamon-control-center-3.0.1.tar.gz -> 
cinnamon-control-center-3.2.0.tar.gz ++++++
++++ 1739 lines of diff (skipped)


Reply via email to