Your message dated Thu, 29 Jan 2015 20:02:25 +0100
with message-id <[email protected]>
and subject line Re: Bug#776507: (pre-approval) unblock: gnuplot/4.6.6-2
has caused the Debian Bug report #776507,
regarding (pre-approval) unblock: gnuplot/4.6.6-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 [email protected]
immediately.)


-- 
776507: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=776507
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: [email protected]
Usertags: unblock

Dear release team,

please consider an approving an upload of a package gnuplot.

Though it fixes an important bug #776434,  I think it should
be fixed in Jessie. There was a mistake in update-alternatives
handling. After installing gnuplot and gnuplot5, the help
for gnuplot disappeared.

Gnuplot has a very large popcon value (>71k). I think it is
important to have a working help for this package.

Proposed diff is attached.

unblock gnuplot/4.6.6-2

Thank you

Anton
diff --git a/debian/changelog b/debian/changelog
index 3112a8b..6212bb3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+gnuplot (4.6.6-2) unstable; urgency=medium
+
+  * [e141e1d] Move update-alternatives for gnuplot.gih from 
+              gnuplot to gnuplot4. (Closes: #776434)
+
+ -- Anton Gladky <[email protected]>  Wed, 28 Jan 2015 20:48:39 +0100
+
 gnuplot (4.6.6-1) unstable; urgency=medium
 
   * [5b5e9cd] Imported Upstream version 4.6.6
diff --git a/debian/gnuplot-nox.postinst b/debian/gnuplot-nox.postinst
index fb9ec9a..a54feba 100644
--- a/debian/gnuplot-nox.postinst
+++ b/debian/gnuplot-nox.postinst
@@ -5,13 +5,13 @@ set -e
 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then
     update-alternatives --install /usr/bin/gnuplot gnuplot /usr/bin/gnuplot4-nox 20 \
       --slave /usr/share/man/man1/gnuplot.1.gz gnuplot.1.gz \
-      /usr/share/man/man1/gnuplot4-nox.1.gz \
-      --slave /usr/share/gnuplot/gnuplot.gih gnuplot4.gih \
-      /usr/share/gnuplot/gnuplot4-nox.gih
+      /usr/share/man/man1/gnuplot4-nox.1.gz
 
     update-alternatives --install /usr/bin/gnuplot4 gnuplot4 /usr/bin/gnuplot4-nox 20 \
       --slave /usr/share/man/man1/gnuplot4.1.gz gnuplot4.1.gz \
-      /usr/share/man/man1/gnuplot4-nox.1.gz
+      /usr/share/man/man1/gnuplot4-nox.1.gz \
+      --slave /usr/share/gnuplot/gnuplot.gih gnuplot4.gih \
+      /usr/share/gnuplot/gnuplot4-nox.gih
 fi
 
 #DEBHELPER#
diff --git a/debian/gnuplot-qt.postinst b/debian/gnuplot-qt.postinst
index f90b733..ce17e61 100644
--- a/debian/gnuplot-qt.postinst
+++ b/debian/gnuplot-qt.postinst
@@ -5,13 +5,13 @@ set -e
 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then
     update-alternatives --install /usr/bin/gnuplot gnuplot /usr/bin/gnuplot4-qt 40 \
       --slave /usr/share/man/man1/gnuplot.1.gz gnuplot.1.gz \
-      /usr/share/man/man1/gnuplot4-qt.1.gz \
-      --slave /usr/share/gnuplot/gnuplot.gih gnuplot4.gih \
-      /usr/share/gnuplot/gnuplot4-qt.gih
+      /usr/share/man/man1/gnuplot4-qt.1.gz
 
     update-alternatives --install /usr/bin/gnuplot4 gnuplot4 /usr/bin/gnuplot4-qt 40 \
       --slave /usr/share/man/man1/gnuplot4.1.gz gnuplot4.1.gz \
-      /usr/share/man/man1/gnuplot4-qt.1.gz
+      /usr/share/man/man1/gnuplot4-qt.1.gz \
+      --slave /usr/share/gnuplot/gnuplot.gih gnuplot4.gih \
+      /usr/share/gnuplot/gnuplot4-qt.gih
 fi
 
 #DEBHELPER#
diff --git a/debian/gnuplot-x11.postinst b/debian/gnuplot-x11.postinst
index 0a771f9..9fa2db2 100644
--- a/debian/gnuplot-x11.postinst
+++ b/debian/gnuplot-x11.postinst
@@ -5,13 +5,13 @@ set -e
 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then
     update-alternatives --install /usr/bin/gnuplot gnuplot /usr/bin/gnuplot4-x11 30 \
       --slave /usr/share/man/man1/gnuplot.1.gz gnuplot.1.gz \
-      /usr/share/man/man1/gnuplot4-x11.1.gz \
-      --slave /usr/share/gnuplot/gnuplot.gih gnuplot4.gih \
-      /usr/share/gnuplot/gnuplot4-x11.gih
+      /usr/share/man/man1/gnuplot4-x11.1.gz
 
     update-alternatives --install /usr/bin/gnuplot4 gnuplot4 /usr/bin/gnuplot4-x11 30 \
       --slave /usr/share/man/man1/gnuplot4.1.gz gnuplot4.1.gz \
-      /usr/share/man/man1/gnuplot4-x11.1.gz
+      /usr/share/man/man1/gnuplot4-x11.1.gz \
+      --slave /usr/share/gnuplot/gnuplot.gih gnuplot4.gih \
+      /usr/share/gnuplot/gnuplot4-x11.gih
 fi
 
 #DEBHELPER#

--- End Message ---
--- Begin Message ---
On 2015-01-29 18:59, Niels Thykier wrote:
> Control: tags -1 confirmed moreinfo
> 
> [...]
> 
> Ack, please upload this package and remove the moreinfo tag from this
> bug once gnuplot has been accepted into unstable.
> 
> Thanks,
> ~Niels
> 
> 

Unblocked, thanks.

~Niels

--- End Message ---

Reply via email to