|
From: <and...@us...> - 2013-11-05 11:31:49
|
Revision: 12651
http://sourceforge.net/p/plplot/code/12651
Author: andrewross
Date: 2013-11-05 11:31:45 +0000 (Tue, 05 Nov 2013)
Log Message:
-----------
Updates to Debian packages for 5.9.10
Modified Paths:
--------------
trunk/debian/changelog
trunk/debian/compat
trunk/debian/control
trunk/debian/control.in
trunk/debian/rules
Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog 2013-11-05 08:11:15 UTC (rev 12650)
+++ trunk/debian/changelog 2013-11-05 11:31:45 UTC (rev 12651)
@@ -1,5 +1,17 @@
-plplot (5.9.10-1) unstable; urgency=low
+plplot (5.9.10-2) experimental; urgency=low
+ * debian/changelog: Upload to experimental not unstable.
+ * debian/compat, debian/control.in: Update to compatibility version 9
+ for debhelper to remove lintian warning.
+ * debian/rules: Fix bug in rules for case where ada is not supported.
+ * debian/control.in: Fix short description for plplot-tcl-bin package.
+ * debian/rules: For tcl scripts in the tk examples then make symlinks rather
+ than duplicating files in the tck examples.
+
+ -- Andrew Ross <and...@us...> Tue, 05 Nov 2013 08:56:45 +0000
+
+plplot (5.9.10-1) UNRELEASED; urgency=low
+
* New upstream release
* debian/patches/series: Remove backported patches no longer need with
current release and update remaining patches.
Modified: trunk/debian/compat
===================================================================
--- trunk/debian/compat 2013-11-05 08:11:15 UTC (rev 12650)
+++ trunk/debian/compat 2013-11-05 11:31:45 UTC (rev 12651)
@@ -1 +1 @@
-7
+9
Modified: trunk/debian/control
===================================================================
--- trunk/debian/control 2013-11-05 08:11:15 UTC (rev 12650)
+++ trunk/debian/control 2013-11-05 11:31:45 UTC (rev 12651)
@@ -238,7 +238,7 @@
Package: plplot-tcl-bin
Architecture: any
Depends: plplot-tcl, ${shlibs:Depends}, ${misc:Depends}
-Description: Tcl/Tk support for PLplot, a plotting library
+Description: Tcl/Tk tools for PLplot, a plotting library
PLplot is relatively small, portable, freely distributable, and is rich
enough to satisfy most users. It has a wide range of plot types including
line (linear, log), contour, 3D, fill, and almost 1000 characters
Modified: trunk/debian/control.in
===================================================================
--- trunk/debian/control.in 2013-11-05 08:11:15 UTC (rev 12650)
+++ trunk/debian/control.in 2013-11-05 11:31:45 UTC (rev 12651)
@@ -238,7 +238,7 @@
Package: plplot-tcl-bin
Architecture: any
Depends: plplot-tcl, ${shlibs:Depends}, ${misc:Depends}
-Description: Tcl/Tk support for PLplot, a plotting library
+Description: Tcl/Tk tools for PLplot, a plotting library
PLplot is relatively small, portable, freely distributable, and is rich
enough to satisfy most users. It has a wide range of plot types including
line (linear, log), contour, 3D, fill, and almost 1000 characters
Modified: trunk/debian/rules
===================================================================
--- trunk/debian/rules 2013-11-05 08:11:15 UTC (rev 12650)
+++ trunk/debian/rules 2013-11-05 11:31:45 UTC (rev 12651)
@@ -86,7 +86,7 @@
control:
ifeq ($(BUILD_ADA),no)
- slice -o UNDEF+ADA:debian/control debian/control.in
+ slice -o UNDEF:debian/control debian/control.in
else
slice -o UNDEF+ADA:debian/control debian/control.in
endif
@@ -244,6 +244,10 @@
-l $(debbase)/$(libpkg)/usr/lib/$(DEB_HOST_MULTIARCH):$(debbase)/plplot-tcl/usr/lib/$(DEB_HOST_MULTIARCH)
dpkg-shlibdeps -Tdebian/octave-plplot.substvars -S$(debbase)/$(libpkg)/usr/lib/*.so* -S/usr/lib/$(octver)/*.so* $(debbase)/octave-plplot/$(OCTDIR)/plplot_octave.oct
dh_installdeb -a
+
+ # Replace tk copied files with symlinks
+ (cd $(debbase)/plplot-tcl-dev/usr/share/doc/${libpkg}/examples/tk ; for file in x??.tcl plgrid.tcl ; do rm -f $${file} ; ln -s ../tcl/$${file} . ; done)
+
dh_lintian -a
dh_gencontrol -a -- -VF:OCamlABI="$(OCAMLABI)"
dh_md5sums -a
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|