Bug#683976: unblock: libpgjava/9.1-901-2

2012-08-14 Thread Andrew Ross
On 11/08/12 13:18, Niels Thykier wrote:
 On 2012-08-05 23:48, Andrew Ross wrote:
 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: unblock


 Please unblock package libpgjava

 Version 9.1-901-2 has been uploaded to unstable to address bug #659324 
 by providing transitional packages. These transitional packages are 
 needed in Wheezy to support upgrading since the binary packages have 
 been renamed. A full debdiff is provided below.

 Note that the new version is currently (as of 5th August 2012) in the 
 new queue, due to the new binary packages.

 Thanks,
 Andy

 unblock libpgjava/9.1-901-2


 [...]
 Seems fine at first glance; please let us know when it has been accepted.

 ~Niels


OK, it's been accepted now and is in the pool.

Thanks,
Andy


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/502ab3ff.4020...@rossfamily.co.uk



Bug#684372: Freeze exception for plplot

2012-08-09 Thread Andrew Ross

Package: release.debian.org
Severity: normal

Please consider a release exception for the packages built from the
plplot source (plplot 5.9.9-5). These are currently in unstable. The
only differences from version 5.9.9-4 in testing are 3 bug fixes.

#680841 (serious), #683135 (normal): This FTBFS was a result of
changes in the new version of cmake which affected the ada build. Fixed 
by this release.

#683878 (normal): Rebuilding with the latest gfortran closes this bug.

A further FTBFS was identified as part of the testing of the fix to
#680841 which related to cmake and lua. The patch also fixes this.

No other changes are included. A debdiff patch is attached for
reference.

Many thanks

Andrew


diff -Nru plplot-5.9.9/debian/changelog plplot-5.9.9/debian/changelog
--- plplot-5.9.9/debian/changelog	2012-04-04 21:45:15.0 +0100
+++ plplot-5.9.9/debian/changelog	2012-08-08 09:35:31.0 +0100
@@ -1,3 +1,16 @@
+plplot (5.9.9-5) unstable; urgency=low
+
+  * debian/patches/series, debian/patches/fix-cmake-ada-support.diff:
+Add patch from upstream to fix cmake ada support with cmake 2.8.9 and later
+(closes: #680841).
+  * debian/patches/series, debian/patches/fix-lua-includes.diff:
+Add patch to work around problem with lua cmake support. Debian now requires 
+multiple include paths which were not found correctly. This prevents a FTBFS 
+with recent versions of lua5.1.
+  * Recompile with latest version of gfortran (closes: #683878). 
+
+ -- Andrew Ross andrewr...@users.sourceforge.net  Wed, 08 Aug 2012 09:34:10 +0100
+
 plplot (5.9.9-4) unstable; urgency=low
 
   * debian/rules: 
diff -Nru plplot-5.9.9/debian/patches/fix-cmake-ada-support.diff plplot-5.9.9/debian/patches/fix-cmake-ada-support.diff
--- plplot-5.9.9/debian/patches/fix-cmake-ada-support.diff	1970-01-01 01:00:00.0 +0100
+++ plplot-5.9.9/debian/patches/fix-cmake-ada-support.diff	2012-07-19 23:06:14.0 +0100
@@ -0,0 +1,25 @@
+Description: Fix up cmake Ada support for compatibility with cmake 2.8.9 
+Author: Andrew Ross andrewr...@users.sourceforge.net
+Last-Update: 2012-07-19
+
+--- plplot-5.9.9.orig/cmake/modules/language_support/cmake/CMakeAdaInformation.cmake	2011-10-13 01:43:01.0 +0100
 plplot-5.9.9/cmake/modules/language_support/cmake/CMakeAdaInformation.cmake	2012-07-19 23:03:27.835197249 +0100
+@@ -29,6 +29,18 @@
+   SET(CMAKE_SHARED_LIBRARY_CREATE_Ada_FLAGS ${CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS})
+ ENDIF(NOT CMAKE_SHARED_LIBRARY_CREATE_Ada_FLAGS)
+ 
++IF(NOT CMAKE_Ada_COMPILE_OPTIONS_PIC)
++  SET(CMAKE_Ada_COMPILE_OPTIONS_PIC ${CMAKE_C_COMPILE_OPTIONS_PIC})
++ENDIF(NOT CMAKE_Ada_COMPILE_OPTIONS_PIC)
++
++IF(NOT CMAKE_Ada_COMPILE_OPTIONS_PIE)
++  SET(CMAKE_Ada_COMPILE_OPTIONS_PIE ${CMAKE_C_COMPILE_OPTIONS_PIE})
++ENDIF(NOT CMAKE_Ada_COMPILE_OPTIONS_PIE)
++
++IF(NOT CMAKE_Ada_COMPILE_OPTIONS_DLL)
++  SET(CMAKE_Ada_COMPILE_OPTIONS_DLL ${CMAKE_C_COMPILE_OPTIONS_DLL})
++ENDIF(NOT CMAKE_Ada_COMPILE_OPTIONS_DLL)
++
+ IF(NOT CMAKE_SHARED_LIBRARY_Ada_FLAGS)
+   SET(CMAKE_SHARED_LIBRARY_Ada_FLAGS ${CMAKE_SHARED_LIBRARY_C_FLAGS})
+ ENDIF(NOT CMAKE_SHARED_LIBRARY_Ada_FLAGS)
diff -Nru plplot-5.9.9/debian/patches/fix-lua-includes.diff plplot-5.9.9/debian/patches/fix-lua-includes.diff
--- plplot-5.9.9/debian/patches/fix-lua-includes.diff	1970-01-01 01:00:00.0 +0100
+++ plplot-5.9.9/debian/patches/fix-lua-includes.diff	2012-07-20 00:12:02.0 +0100
@@ -0,0 +1,21 @@
+Description: Fix for cmake lua support to work around problem that lua needs multiple include directories on Debian
+Author: Andrew Ross andrewr...@users.sourceforge.net
+Last-Update: 2012-07-19
+
+===
+Index: plplot-5.9.9/cmake/modules/lua.cmake
+===
+--- plplot-5.9.9.orig/cmake/modules/lua.cmake	2011-10-13 01:43:01.0 +0100
 plplot-5.9.9/cmake/modules/lua.cmake	2012-07-20 00:11:55.295075888 +0100
+@@ -118,3 +118,11 @@
+ set(LUA_DIR ${LIB_DIR}/lua/50/plplot)
+   endif(LUA51_FOUND)
+ endif(ENABLE_lua)
++
++if(ENABLE_lua AND LUA51_FOUND)
++  pkg_check_pkgconfig(lua5.1 includedir libdir linkflags1 cflags1 version1 _LUA)
++  if(linkflags1)
++set(LUA_INCLUDE_DIR ${includedir})
++  endif(linkflags1)
++endif(ENABLE_lua AND LUA51_FOUND)
++
diff -Nru plplot-5.9.9/debian/patches/series plplot-5.9.9/debian/patches/series
--- plplot-5.9.9/debian/patches/series	2012-04-02 14:02:23.0 +0100
+++ plplot-5.9.9/debian/patches/series	2012-07-19 23:39:51.0 +0100
@@ -5,3 +5,5 @@
 replace-deprecated-split.diff
 proper-path-handling.diff
 fix-boolean-operators.diff
+fix-cmake-ada-support.diff
+fix-lua-includes.diff


Bug#683976: unblock: libpgjava/9.1-901-2

2012-08-05 Thread Andrew Ross
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock


Please unblock package libpgjava

Version 9.1-901-2 has been uploaded to unstable to address bug #659324 
by providing transitional packages. These transitional packages are 
needed in Wheezy to support upgrading since the binary packages have 
been renamed. A full debdiff is provided below.

Note that the new version is currently (as of 5th August 2012) in the 
new queue, due to the new binary packages.

Thanks,
Andy

unblock libpgjava/9.1-901-2


debdiff libpgjava_9.1-901-1.dsc libpgjava_9.1-901-2.dsc

diff -Nru libpgjava-9.1-901/debian/changelog libpgjava-9.1-901/debian/changelog
--- libpgjava-9.1-901/debian/changelog  2012-01-03 22:46:10.0 +
+++ libpgjava-9.1-901/debian/changelog  2012-07-30 22:55:34.0 +0100
@@ -1,3 +1,10 @@
+libpgjava (9.1-901-2) unstable; urgency=low
+
+  * Provide transitional package libpg-java (closes: #659324)
+  * Bump standards version to 3.9.3 (no changes).
+
+ -- Andrew Ross ubu...@rossfamily.co.uk  Fri, 20 Jul 2012 21:09:40 -0400
+
 libpgjava (9.1-901-1) unstable; urgency=low
 
   * New upstream release. (closes: #645854)
diff -Nru libpgjava-9.1-901/debian/control libpgjava-9.1-901/debian/control
--- libpgjava-9.1-901/debian/control2012-01-06 17:56:16.0 +
+++ libpgjava-9.1-901/debian/control2012-07-21 15:20:17.0 +0100
@@ -6,7 +6,7 @@
  Andrew Ross ubu...@rossfamily.co.uk
 Build-Depends: debhelper (= 7.0.50~), java-gcj-compat-dev, ant, javahelper 
(=0.32~) 
 Build-Depends-Indep: libxerces2-java, default-jdk, default-jdk-doc
-Standards-Version: 3.9.2
+Standards-Version: 3.9.3
 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libpgjava
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libpgjava
 Homepage: http://jdbc.postgresql.org/
@@ -16,9 +16,9 @@
 Depends: ${java:Depends}, ${misc:Depends}
 Recommends: ${java:Recommends}
 Suggests: postgresql (= 8.2)
-Conflicts: libpgjava (= 7.4.7-3), libpg-java (= 8.4-702-1)
+Conflicts: libpgjava (= 7.4.7-3), libpg-java (= 9.1-901-1)
 Provides: libpgjava, libpg-java
-Replaces: libpgjava, libpg-java
+Replaces: libpgjava, libpg-java (= 9.1-901-1)
 Description: Java database (JDBC) driver for PostgreSQL
  Java classes for communication with the PostgreSQL 7.2 up to 9.1 database
  backend (local or remote) using JDBC. This package contains two Java archives
@@ -40,3 +40,13 @@
  supports JDBC 4.0 and SSL (for JDK 1.6 and up).
  .
  This package contains the documentation.
+
+Package: libpg-java
+Architecture: all
+Section: oldlibs
+Priority: extra
+Depends: libpostgresql-jdbc-java, ${misc:Depends}
+Description: Transitional package for libpostgresql-jdbc-java
+ This is a transitional package for libpg-java, and can be safely removed
+ after the installation is complete.
+


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120805214841.2974.45687.reportbug@dolomite



Re: swt-gtk migration to testing

2011-06-07 Thread Andrew Ross
On 07/06/11 19:52, Mehdi Dogguy wrote:
 On 06/07/2011 08:23 PM, Andrew Ross wrote:
 Hi,

 We're trying to migrate to swt-gtk 3.6.1, and have updated all
 dependant packages in unstable. However, it seems the migration is
 stalled, probably because the binary packages have changed name. My
 guess is that it needs some intervention to cause all the packages
 to transition at the same time:

 trying: swt-gtk skipped: swt-gtk (163- 10) got: 21+0: i-21 * i386:
 azureus, libflamingo-java, libtrident-java, tuxguitar,
 tuxguitar-alsa, tuxguitar-fluidsynth, tuxguitar-jack, tuxguitar-jsa,
  tuxguitar-oss, vuze, zekr

 All the dependant packages appear to be ready to transition. How
 should we go about achieving the transition?

 
 First, try to fix the RC bug on azureus. The latter depends on
 libswt-gtk-3.6-java in sid, and on libswt-gtk-3.5-java in testing. So,
 we can't move swt-gtk in testing without breaking azureus, for now.
 
 Once azureus is fixed, we can probably add a hint to make the whole set
 migrate together.
 
 Kind Regards,
 

Thanks Mehdi, I hadn't noticed the RC bug on azureus. I'll look at
fixing that in the next few days and post back once the updated package
is a candidate for transition to testing.

Thanks,
Andy


-- 
To UNSUBSCRIBE, email to debian-release-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4deea4bd.7060...@rossfamily.co.uk