[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#771655: marked as done (unblock: phlipple/0.8.5-2)



Your message dated Mon, 01 Dec 2014 13:11:02 +0000
with message-id <beb78983ff82402dfddeafe5a4984de3@mail.adsl.funky-badger.org>
and subject line Re: Bug#771655: unblock: phlipple/0.8.5-2
has caused the Debian Bug report #771655,
regarding unblock: phlipple/0.8.5-2
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 owner@bugs.debian.org
immediately.)


-- 
771655: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=771655
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian.org@packages.debian.org
Usertags: unblock

Please unblock package phlipple.

The 0.8.5-2 upload fixes an RC bug present in jessie - #768741: FTBFS
because libvorbis no longer exposes the symbols from libm, so phlipple
needs to explicitly link against libm for its functions.

phlipple (0.8.5-2) unstable; urgency=medium

  [ Peter Pentchev ]
  * Team upload.
  * Add the libm patch to link with -lm for cos(3).  Closes: #768741

  [ Miriam Ruiz ]
  * Upgraded Standards-Version from 3.9.4 to 3.9.6
  * Added Peter Pentchev <roam@ringlet.net> to Uploaders.

 -- Peter Pentchev <roam@ringlet.net>  Mon, 10 Nov 2014 11:23:55 +0200

Full debdiff attached.

unblock phlipple/0.8.5-2

-- System Information:
Debian Release: jessie/sid
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=bg_BG.UTF-8, LC_CTYPE=bg_BG.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru phlipple-0.8.5/debian/changelog phlipple-0.8.5/debian/changelog
--- phlipple-0.8.5/debian/changelog	2013-08-14 03:10:38.000000000 +0300
+++ phlipple-0.8.5/debian/changelog	2014-11-26 18:10:56.000000000 +0200
@@ -1,3 +1,15 @@
+phlipple (0.8.5-2) unstable; urgency=medium
+
+  [ Peter Pentchev ]
+  * Team upload.
+  * Add the libm patch to link with -lm for cos(3).  Closes: #768741
+
+  [ Miriam Ruiz ]
+  * Upgraded Standards-Version from 3.9.4 to 3.9.6
+  * Added Peter Pentchev <roam@ringlet.net> to Uploaders.
+
+ -- Peter Pentchev <roam@ringlet.net>  Mon, 10 Nov 2014 11:23:55 +0200
+
 phlipple (0.8.5-1) unstable; urgency=low
 
   [ Miriam Ruiz ]
diff -Nru phlipple-0.8.5/debian/control phlipple-0.8.5/debian/control
--- phlipple-0.8.5/debian/control	2013-08-14 02:39:16.000000000 +0300
+++ phlipple-0.8.5/debian/control	2014-11-26 18:10:32.000000000 +0200
@@ -2,11 +2,11 @@
 Section: games
 Priority: optional
 Maintainer: Debian Games Team <pkg-games-devel@lists.alioth.debian.org>
-Uploaders: Miriam Ruiz <miriam@debian.org>
+Uploaders: Miriam Ruiz <miriam@debian.org>, Peter Pentchev <roam@ringlet.net>
 Build-Depends: debhelper (>= 9), dh-buildinfo, quilt, autotools-dev,
  libsdl1.2-dev, libsdl-image1.2-dev, libsdl-mixer1.2-dev,
  libglew1.6-dev | libglew1.5-dev
-Standards-Version: 3.9.4
+Standards-Version: 3.9.6
 Vcs-Svn: svn://anonscm.debian.org/pkg-games/packages/trunk/phlipple/
 Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-games/packages/trunk/phlipple/
 Homepage: http://sourceforge.net/projects/phlipple/
diff -Nru phlipple-0.8.5/debian/patches/libm.patch phlipple-0.8.5/debian/patches/libm.patch
--- phlipple-0.8.5/debian/patches/libm.patch	1970-01-01 02:00:00.000000000 +0200
+++ phlipple-0.8.5/debian/patches/libm.patch	2014-11-26 18:11:43.000000000 +0200
@@ -0,0 +1,28 @@
+Description: Link with libm for cos().
+ This is fallout from the fact that other libraries in Debian, such as
+ libvorbisfile, no longer include their own dependencies in the pkg-config
+ output.  Until now, phlipple built just fine because -lm was added by
+ other libraries; now it has to add it on its own.
+ .
+ This bug should really be fixed upstream by adding an explicit check for
+ cos(3) in configure.ac, something like AC_CHECK_LIB([m], [cos])
+ I do intend to do that in a future upload, but IMHO this minimal patch
+ ought to be suitable for the Jessie freeze.
+Debian-Bug: https://bugs.debian.org/768741
+Author: Peter Pentchev <roam@ringlet.net>
+Forwarded: not-yet
+Last-Update: 2014-11-10
+
+Index: phlipple-0.8.5/src/Makefile.in
+===================================================================
+--- phlipple-0.8.5.orig/src/Makefile.in
++++ phlipple-0.8.5/src/Makefile.in
+@@ -211,7 +211,7 @@ phlipple_SOURCES = \
+ 	vertex.h
+ 
+ phlipple_LDFLAGS = 
+-phlipple_LDADD = $(PHLIPPLE_LIBS) $(GL_LIBS) 
++phlipple_LDADD = $(PHLIPPLE_LIBS) $(GL_LIBS) -lm
+ all: all-am
+ 
+ .SUFFIXES:
diff -Nru phlipple-0.8.5/debian/patches/series phlipple-0.8.5/debian/patches/series
--- phlipple-0.8.5/debian/patches/series	2013-08-14 02:14:57.000000000 +0300
+++ phlipple-0.8.5/debian/patches/series	2014-11-26 18:10:19.000000000 +0200
@@ -1 +1,2 @@
 support_us.patch
+libm.patch

Attachment: signature.asc
Description: Digital signature


--- End Message ---
--- Begin Message ---
On 2014-12-01 9:18, Peter Pentchev wrote:
Please unblock package phlipple.

The 0.8.5-2 upload fixes an RC bug present in jessie - #768741: FTBFS
because libvorbis no longer exposes the symbols from libm, so phlipple
needs to explicitly link against libm for its functions.

Already unblocked by Niels.

Regards,

Adam

--- End Message ---

Reply to: