Your message dated Sat, 06 Sep 2014 21:37:05 +0000
with message-id <[email protected]>
and subject line Bug#757782: fixed in libgksu 2.0.13~pre1-8
has caused the Debian Bug report #757782,
regarding libgksu: autoreconf during build and automake errors fixes to fix 
FTBFS on ppc64el arch
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
757782: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=757782
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: libgksu
Version: 2.0.13~pre1
Severity: normal
Tags: patch
User: [email protected]
Usertags: autotools_dev ppc64el

Dear Maintainer,

In Ubuntu, the attached patches were applied to avoid FTBFS on ppc64el arch. We have also verified building "libgksu" source package on ppc64el build machine after applying attached patches.

Thanks for considering the patch.

-Ravindran.

-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: ppc64el (ppc64le)

Kernel: Linux 3.13-1-powerpc64le (SMP w/16 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

--===============6721854637079236454==
Content-Type: text/x-diff; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="autoreconf.debpatch"

>From c1ff76b2a148c1f40af9a01a4af3d1ffe501d9ac Mon Sep 17 00:00:00 2001
From: Ravindran Arani <[email protected]>
Date: Mon, 11 Aug 2014 09:35:22 +0000
Subject: [PATCH] autoreconf

---
 debian/control | 2 +-
 debian/rules   | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index 8fed15b..2157a02 100644
--- a/debian/control
+++ b/debian/control
@@ -15,7 +15,7 @@ Build-Depends: cdbs,
                libstartup-notification0-dev,
                libgnome-keyring-dev,
                gettext,
-               autotools-dev,
+               dh-autoreconf,
                gtk-doc-tools,
                gnome-pkg-tools (>= 0.10),
                libgtop2-dev,
diff --git a/debian/rules b/debian/rules
index d97398e..785d9a4 100755
--- a/debian/rules
+++ b/debian/rules
@@ -6,12 +6,15 @@ ALLOWED_DISTS += unstable

 include /usr/share/cdbs/1/rules/buildcore.mk
 include /usr/share/cdbs/1/class/autotools.mk
+include /usr/share/cdbs/1/rules/autoreconf.mk
 include /usr/share/cdbs/1/rules/debhelper.mk
 include /usr/share/cdbs/1/class/gnome.mk
 -include /usr/share/gnome-pkg-tools/1/rules/gnome-get-source.mk
 include /usr/share/gnome-pkg-tools/1/rules/check-dist.mk
 include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk

+export AUTOMAKE := automake --foreign
+
 DEB_CONFIGURE_EXTRA_FLAGS := --disable-gtk-doc --enable-gnome-keyring

 clean::
--
2.1.0.rc1


--===============6721854637079236454==
Content-Type: text/x-diff; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="automake_errors.patch"

Description: Fix various errors with current automake
Author: Colin Watson <[email protected]>

--- libgksu-2.0.13~pre1.orig/configure.ac
+++ libgksu-2.0.13~pre1/configure.ac
@@ -40,8 +40,12 @@ AM_CONDITIONAL(USE_VERSION_SCRIPT, test
 AC_PATH_PROG(GCONFTOOL, gconftool-2)
 AM_GCONF_SOURCE_2

+PKG_CHECK_MODULES(GLIB, [glib-2.0])
+PKG_CHECK_MODULES(GTK, [gtk+-2.0])
PKG_CHECK_MODULES(LIBGKSU, [gtk+-2.0 >= 2.4.0, gconf-2.0, libstartup-notification-1.0, gnome-keyring-1, libgtop-2.0])
 PKG_CHECK_MODULES(GKSU_PROPERTIES, [gtk+-2.0 >= 2.12, gconf-2.0])
+PKG_CHECK_MODULES(LIBGKSUUI, [gtk+-2.0, gconf-2.0, x11])
+PKG_CHECK_MODULES(TEST_GKSUUI, [glib-2.0, x11])

 # Checks for library functions.
ALL_LINGUAS="ca cs da de es eu fr hu it ko lt pl pt_BR ro ru sk sv nb nl th zh_CN"


--- libgksu-2.0.13~pre1.orig/libgksu/Makefile.am
+++ libgksu-2.0.13~pre1/libgksu/Makefile.am
@@ -26,15 +26,15 @@ includedir = ${prefix}/include/${PACKAGE
 pkgconfigdir = ${libdir}/pkgconfig
 pkgconfig_DATA = libgksu2.pc

-pkglibdir = ${libdir}/${PACKAGE}
-pkglib_PROGRAMS = gksu-run-helper
+pkglibexecdir = ${libdir}/${PACKAGE}
+pkglibexec_PROGRAMS = gksu-run-helper
 gksu_run_helper_LDFLAGS =
-gksu_run_helper_LDADD = `pkg-config --libs glib-2.0`
+gksu_run_helper_LDADD = $(GLIB_LIBS)
 gksu_run_helper_SOURCES = gksu-run-helper.c

 noinst_PROGRAMS = test-gksu
 test_gksu_SOURCES = test-gksu.c
-test_gksu_LDADD = libgksu2.la `pkg-config --libs gtk+-2.0`
+test_gksu_LDADD = libgksu2.la $(GTK_LIBS)
 test_gksu_LDFLAGS =

 EXTRA_DIST = libgksu.ver


--- libgksu-2.0.13~pre1.orig/libgksuui/Makefile.am
+++ libgksu-2.0.13~pre1/libgksuui/Makefile.am
@@ -5,12 +5,12 @@ AM_CPPFLAGS = -DLOCALEDIR=\"$(datadir)/l
 noinst_LTLIBRARIES = libgksuui1.0.la
 libgksuui1_0_la_SOURCES = gksuui-dialog.c
 libgksuui1_0_la_LDFLAGS = -Wl,-O1
-libgksuui1_0_la_LIBADD = `pkg-config --libs gtk+-2.0 gconf-2.0 x11`
+libgksuui1_0_la_LIBADD = $(LIBGKSUUI_LIBS) -lm

 noinst_HEADERS = defines.h gksuui.h gksuui-dialog.h
 includedir = ${prefix}/include/$(PACKAGE)

 noinst_PROGRAMS = test-gksuui
 test_gksuui_SOURCES = test-gksuui.c
-test_gksuui_LDADD = libgksuui1.0.la `pkg-config --libs glib-2.0 x11`
+test_gksuui_LDADD = libgksuui1.0.la $(TEST_GKSUUI) -lm
 test_gksuui_LDFLAGS =

--===============6721854637079236454==--

--
Ravindran
IBM LinuxTechnologyCenter

--- End Message ---
--- Begin Message ---
Source: libgksu
Source-Version: 2.0.13~pre1-8

We believe that the bug you reported is fixed in the latest version of
libgksu, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Balint Reczey <[email protected]> (supplier of updated libgksu package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Sat, 06 Sep 2014 19:30:49 +0200
Source: libgksu
Binary: libgksu2-0 libgksu2-dev
Architecture: source amd64
Version: 2.0.13~pre1-8
Distribution: unstable
Urgency: medium
Maintainer: Gustavo Noronha Silva <[email protected]>
Changed-By: Balint Reczey <[email protected]>
Description:
 libgksu2-0 - library providing su and sudo functionality
 libgksu2-dev - library providing su and sudo functionality (development files)
Closes: 503461 537718 561379 749167 757782
Changes:
 libgksu (2.0.13~pre1-8) unstable; urgency=medium
 .
   * Adding myself to uploaders
   * Convert packaging to Debhelper
   * Build-depend on dh-autoreconf
   * Regenerate makefile structure (Closes: #749167, #757782)
   * Drop (build-)dependency on cdbs and xbase-clients to keep lintian happy
   * Use canonical VCS URLs to keep Lintian happy
 .
   [Cody Russell]
   * Fix crash with RGBA colormap (Closes: #561379)
 .
   [Hideki Yamane]
   * Add Japanese translation (Closes: #503461)
 .
   [Roland Clobus]
   * Fix unguarded variable (Closes: #537718)
Checksums-Sha1:
 a4396b41c7a1aa04fd68748ba989574140bf4439 2400 libgksu_2.0.13~pre1-8.dsc
 c8b9a83d845b47dc453462bfecd576f98849cdcb 28036 
libgksu_2.0.13~pre1-8.debian.tar.xz
 928fa20d721a80a02c35c4d4b5bccefa7198a47c 96502 
libgksu2-0_2.0.13~pre1-8_amd64.deb
 1fbb810111fdbfabd70d7b0febfe9708920f81a0 56584 
libgksu2-dev_2.0.13~pre1-8_amd64.deb
Checksums-Sha256:
 86f32cbb02a48e2be091f20e2e2bc2e641dac708fe1d160622a3d801c9e7d8c2 2400 
libgksu_2.0.13~pre1-8.dsc
 55e616a7d3081ba6f9baa617d24949ecf9f0c53f8d26e679694aa2e23df0254f 28036 
libgksu_2.0.13~pre1-8.debian.tar.xz
 d74bd1367536d8ab917831611a259cc3fd3301382772720192b81ba5c945521c 96502 
libgksu2-0_2.0.13~pre1-8_amd64.deb
 36abff24c33394ac888c91ef3e4958eaf3fcad06d8d6b7cbe6ffcdc141ae2cd1 56584 
libgksu2-dev_2.0.13~pre1-8_amd64.deb
Files:
 d4e52bff0a7235d75dcf72be3eb2684e 96502 libs optional 
libgksu2-0_2.0.13~pre1-8_amd64.deb
 1fd6a4bb62630eddb40cfdc85890e5ae 56584 libdevel optional 
libgksu2-dev_2.0.13~pre1-8_amd64.deb
 39901dce93215af47f5738f3341f7298 2400 admin optional libgksu_2.0.13~pre1-8.dsc
 9fdbea972c170e82d47c1782173b3330 28036 admin optional 
libgksu_2.0.13~pre1-8.debian.tar.xz

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBAgAGBQJUC325AAoJEPZk0la0aRp96j8P/3eBWq4IaPCQU2ktczp77fDR
HpU5CVSDAKXFd6PsMi71bnId/1ymmAEt4taS/6uufcfiQ04UDThjR5cQ8/EhkCcY
olXBpr+J+dyAL55SH8apXateESkXs9cagLRy4zqhsPbt59rMk5gEx9VM4sxUKJRJ
+UVDohYSY5lsjhlo6xjrTPvz88kVDxvuGgxwYVuI+pQLRvcSMKVYJaDfWTZkfTZ9
BeoFCFm68HWUVtMw3GAEjUZ8d3vKTW6gwpfPDHsz1wJDS1faqs5Pe+QGF0DNIrIz
N1v1bmVK39O4mV8mKLA9v9OTT9F9c5RHVT8ytuZ/vuW4gpdwpRfEeFLsAFHm5LWJ
cbhAPL3ZjQQoQzwlJQPEUVh7vYQ7DNdHa8y3X+uBEJHEwYop3Tjb1QP2q8MqTdko
y9zRtVLH570vbvLviBWM9UqQbmoiJE1VeKpYWBTl6d5Ak4wlmsTsUkkPXMssBObX
qGCAj268Nzs62joUQq3LaKRen3Vp7VCPXixYbFuOo+tQ6RyQP01JxttXWH5WNaxz
pQd2aSzEUbtFLITljbhhG6dr/bCc3hmSi6oIHHR95ageo2+URVGHaElhL/FmaE2d
LxZzkms+kO4kadJPbnSzAUgnrpb7kOJJ8HzBeUC+vk+ND1qOgurquJMmt3GTfRU+
iUEMPIoYsK+sMZ7pzRgK
=isu9
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to