Hello community,

here is the log from the commit of package lxpanel for openSUSE:Factory checked 
in at 2012-06-12 07:24:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/lxpanel (Old)
 and      /work/SRC/openSUSE:Factory/.lxpanel.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "lxpanel", Maintainer is ""

Changes:
--------
--- /work/SRC/openSUSE:Factory/lxpanel/lxpanel.changes  2011-09-26 
17:05:00.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.lxpanel.new/lxpanel.changes     2012-06-12 
07:24:33.000000000 +0200
@@ -1,0 +2,25 @@
+Mon Jun 11 11:35:38 UTC 2012 - [email protected]
+
+- lxpanel includes code from Suxpanel which is GPL 2.0 only, the
+  resulting binary is thus also GPL 2.0 only and not GPL 2.0 or
+  later (bnc#766371)
+
+-------------------------------------------------------------------
+Thu Jun  7 07:07:11 UTC 2012 - [email protected]
+
+- build with automake 1.12
+  * automake-1.12.patch
+
+-------------------------------------------------------------------
+Tue Jan 17 12:24:13 UTC 2012 - [email protected]
+
+- added lxpanel-0.5.8-fix-libgmodule-underlinking.patch in order to
+  explicitly link against libgmodule
+- removed unecessary build dependencies
+
+-------------------------------------------------------------------
+Thu Jan 12 11:30:47 UTC 2012 - [email protected]
+
+- change license to be in spdx.org format
+
+-------------------------------------------------------------------

New:
----
  lxpanel-0.5.8-automake-1.12.patch
  lxpanel-0.5.8-fix-libgmodule-underlinking.patch

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

Other differences:
------------------
++++++ lxpanel.spec ++++++
--- /var/tmp/diff_new_pack.iMRzsr/_old  2012-06-12 07:24:35.000000000 +0200
+++ /var/tmp/diff_new_pack.iMRzsr/_new  2012-06-12 07:24:35.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package lxpanel
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,25 +15,32 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:           lxpanel
 Version:        0.5.8
-Release:        6
+Release:        0
 Summary:        Lightweight X11 desktop panel based on fbpanel
+License:        GPL-2.0
 Group:          System/GUI/LXDE
-License:        GPL
 Url:            http://www.lxde.org/
 Source0:        %name-%version.tar.bz2
+# PATCH-FIX-UPSTREAM lxpanel-0.5.8-fix-libgmodule-underlinking.patch 
[email protected] -- Link explicitly against libgmodule
+Patch0:         lxpanel-0.5.8-fix-libgmodule-underlinking.patch
+Patch1:         lxpanel-0.5.8-automake-1.12.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  alsa-devel intltool pkg-config update-desktop-files
-BuildRequires:  docbook-utils gtk2-devel menu-cache-devel python-xml
-BuildRequires:  docbook-xsl-stylesheets libxslt-devel python-devel 
wireless-tools
+BuildRequires:  alsa-devel
+BuildRequires:  autoconf
+BuildRequires:  automake
 BuildRequires:  fdupes
+BuildRequires:  gtk2-devel
+BuildRequires:  intltool
+BuildRequires:  libtool
+BuildRequires:  menu-cache-devel
+BuildRequires:  pkg-config
+BuildRequires:  update-desktop-files
+BuildRequires:  wireless-tools
 Provides:       %name-plugins >= %version
 Obsoletes:      %name-plugins < %version
-%{py_requires}
 Recommends:     %name-lang
 
 %description
@@ -51,10 +58,11 @@
 will show the application menu. This is useful in key bindings provided by 
window managers.
 
 %package devel
-License:        GPL
-Group:          Development/Libraries/C and C++
 Summary:        Devel files for %name
-Requires:       glib2-devel menu-cache-devel %name
+Group:          Development/Libraries/C and C++
+Requires:       %name
+Requires:       glib2-devel
+Requires:       menu-cache-devel
 
 %description devel
 Headers and development %name files.
@@ -63,8 +71,11 @@
 %lang_package
 %prep
 %setup -q
+%patch0 -p1
+%patch1 -p1
 
 %build
+AUTOPOINT='intltoolize --automake -c' autoreconf -fi
 %configure \
        --enable-man \
        --with-plugins=all

++++++ lxpanel-0.5.8-automake-1.12.patch ++++++
Index: lxpanel-0.5.8/configure.ac
===================================================================
--- lxpanel-0.5.8.orig/configure.ac
+++ lxpanel-0.5.8/configure.ac
@@ -16,6 +16,7 @@ AC_PROG_INSTALL
 AC_PROG_LN_S
 AC_PROG_INTLTOOL(, [no-xml])
 AM_PROG_CC_C_O
+AM_PROG_AR
 
 #Initialize libtool
 LT_PREREQ([2.2])
++++++ lxpanel-0.5.8-fix-libgmodule-underlinking.patch ++++++
Index: lxpanel-0.5.8/configure.ac
===================================================================
--- lxpanel-0.5.8.orig/configure.ac
+++ lxpanel-0.5.8/configure.ac
@@ -24,7 +24,8 @@ LT_INIT
 # Checks for libraries.
 pkg_modules="gtk+-2.0 >= 2.12.0 \
              gio-unix-2.0 \
-             gthread-2.0"
+             gthread-2.0 \
+             gmodule-2.0"
 #             libstartup-notification-1.0"
 PKG_CHECK_MODULES(PACKAGE, [$pkg_modules])
 AC_SUBST(PACKAGE_CFLAGS)
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to