Your message dated Sat, 28 Apr 2018 06:04:19 +0000
with message-id <[email protected]>
and subject line Bug#893104: fixed in astk 1.13.1-2.1
has caused the Debian Bug report #893104,
regarding code-aster-gui: depends on deprecated Tcl/Tk 8.5
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.)


-- 
893104: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=893104
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: code-aster-gui
Version: 1.13.1-2
Severity: important
Tags: patch

Dear Maintainer,

Your package depends on Tcl/Tk 8.5 which has reached its end-of-life and is to
be removed from Debian. So please, switch to more modern Tcl/Tk version.
I'd like to suggest the attached patch (possibly with NMU) which switches
code-aster-gui to the default Tcl/Tk version. It replaces tk8.5 and tcl8.5
by tk and tcl in dependencies, and removes a patch which replaced calls
to wish by calls to wish8.5.

-- System Information:
Debian Release: 9.4
  APT prefers stable-debug
  APT policy: (500, 'stable-debug'), (500, 'proposed-updates'), (500, 
'stable'), (500, 'oldstable'), (1, 'experimental'), (1, 'unstable'), (1, 
'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.14.0-0.bpo.3-amd64 (SMP w/12 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US:en (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages code-aster-gui depends on:
ii  debconf  1.5.61
ii  tcl8.5   8.5.19-2+b1
ii  tk8.5    8.5.19-1+b1
pn  tkpng    <none>

Versions of packages code-aster-gui recommends:
pn  code-aster-run  <none>

Versions of packages code-aster-gui suggests:
pn  ddd     <none>
pn  eficas  <none>
pn  gmsh    <none>
pn  grace   <none>
pn  nedit   <none>
diff -Nru astk-1.13.1/debian/changelog astk-1.13.1/debian/changelog
--- astk-1.13.1/debian/changelog        2014-05-13 12:09:45.000000000 +0400
+++ astk-1.13.1/debian/changelog        2018-03-16 13:56:20.000000000 +0300
@@ -1,3 +1,11 @@
+astk (1.13.1-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Switch to the default Tcl/Tk version from Tcl/Tk 8.5 which is to be
+    removed from Debian.
+
+ -- Sergei Golovan <[email protected]>  Fri, 16 Mar 2018 13:56:20 +0300
+
 astk (1.13.1-2) unstable; urgency=low
 
   [ Denis Laxalde ]
diff -Nru astk-1.13.1/debian/control astk-1.13.1/debian/control
--- astk-1.13.1/debian/control  2014-05-13 12:08:00.000000000 +0400
+++ astk-1.13.1/debian/control  2018-03-16 13:53:45.000000000 +0300
@@ -13,7 +13,7 @@
 
 Package: code-aster-gui
 Architecture: all
-Depends: tk8.5, tcl8.5, tkpng, debconf (>= 1.5.30), ${misc:Depends}
+Depends: tk, tcl, tkpng, debconf (>= 1.5.30), ${misc:Depends}
 Recommends: code-aster-run
 Replaces: astk, astk-server
 Conflicts: astk, astk-server
diff -Nru 
astk-1.13.1/debian/patches/0006-Call-wish8.5-not-wish-Closes-725685.patch 
astk-1.13.1/debian/patches/0006-Call-wish8.5-not-wish-Closes-725685.patch
--- astk-1.13.1/debian/patches/0006-Call-wish8.5-not-wish-Closes-725685.patch   
2014-05-13 12:08:00.000000000 +0400
+++ astk-1.13.1/debian/patches/0006-Call-wish8.5-not-wish-Closes-725685.patch   
1970-01-01 03:00:00.000000000 +0300
@@ -1,37 +0,0 @@
-From: Denis Laxalde <[email protected]>
-Date: Mon, 7 Apr 2014 10:05:45 +0200
-Subject: Call wish8.5, not wish (Closes #725685)
-
----
- ASTK_CLIENT/bin/astk |    2 +-
- ASTK_CLIENT/bin/bsf  |    4 ++--
- 2 files changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/ASTK_CLIENT/bin/astk b/ASTK_CLIENT/bin/astk
-index 1de34da..84e4baf 100755
---- a/ASTK_CLIENT/bin/astk
-+++ b/ASTK_CLIENT/bin/astk
-@@ -29,7 +29,7 @@ fi
- 
- # start tcl/tk interpreter
- if [ -z "$WISHEXECUTABLE" ]; then
--   WISHEXECUTABLE=wish
-+   WISHEXECUTABLE=wish8.5
- fi
- 
- $WISHEXECUTABLE /usr/share/astk/astk.tcl -- $* &
-diff --git a/ASTK_CLIENT/bin/bsf b/ASTK_CLIENT/bin/bsf
-index 64b50a2..81350f9 100755
---- a/ASTK_CLIENT/bin/bsf
-+++ b/ASTK_CLIENT/bin/bsf
-@@ -28,8 +28,8 @@ if [ -f $ASTER_ETC/codeaster/profile.sh ]; then
- fi
- 
- # start tcl/tk interpreter
--if [ -z "$WISHEXECUTABLE" ]; then
--   WISHEXECUTABLE=wish
-+if [ -z "$WISHEXECUTABE" ]; then
-+   WISHEXECUTABLE=wish8.5
- fi
- 
- $WISHEXECUTABLE /usr/share/astk/bsf.tcl -- $* &
diff -Nru astk-1.13.1/debian/patches/series astk-1.13.1/debian/patches/series
--- astk-1.13.1/debian/patches/series   2014-05-13 12:08:00.000000000 +0400
+++ astk-1.13.1/debian/patches/series   2018-03-16 13:56:20.000000000 +0300
@@ -3,4 +3,3 @@
 0003-debian-install.patch
 0004-parallel_cp.patch
 0005-Disable-check-and-removal-of-previous-installation-d.patch
-0006-Call-wish8.5-not-wish-Closes-725685.patch

--- End Message ---
--- Begin Message ---
Source: astk
Source-Version: 1.13.1-2.1

We believe that the bug you reported is fixed in the latest version of
astk, 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.
Sergei Golovan <[email protected]> (supplier of updated astk 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: SHA256

Format: 1.8
Date: Sat, 28 Apr 2018 08:38:00 +0300
Source: astk
Binary: code-aster-gui code-aster-run
Architecture: source all
Version: 1.13.1-2.1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Team 
<[email protected]>
Changed-By: Sergei Golovan <[email protected]>
Description:
 code-aster-gui - Graphical user interface for Code_Aster - client
 code-aster-run - Graphical user interface for Code_Aster - server
Closes: 893104
Changes:
 astk (1.13.1-2.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Switch to the default Tcl/Tk version from Tcl/Tk 8.5 which is to be
     removed from Debian (closes: #893104).
Checksums-Sha1:
 149572d14da1c3935f46678ee8a9d36668b62443 2122 astk_1.13.1-2.1.dsc
 3a668113c4559d5e1a9beedf769f08cc72ad771c 28104 astk_1.13.1-2.1.debian.tar.xz
 88ade8720c0a4ec2efea72f20804fe4f6e432a7c 6285 astk_1.13.1-2.1_amd64.buildinfo
 86fb5c7db7dae2d3bbb4be3932fd475374b58f79 312168 
code-aster-gui_1.13.1-2.1_all.deb
 e1df74d23f6ef4dc889de5ca7d7383fd6681287a 213036 
code-aster-run_1.13.1-2.1_all.deb
Checksums-Sha256:
 72931f27cae98af6e9a07018a32801a4eb3cea7ec41b6c62c7ae40f98c0bf566 2122 
astk_1.13.1-2.1.dsc
 93b37a4228670037cea367a11f11f9776c194607a82eb2efa48aa756a434dc8e 28104 
astk_1.13.1-2.1.debian.tar.xz
 dc5799d7f273e5aedc5494a8c982450047a9e3787f9d4fce6c65a4d86ea749dd 6285 
astk_1.13.1-2.1_amd64.buildinfo
 27a34d7e836ed7bdfa1ad17dee88320022075e891bc72967f599e02c0a0a6b7d 312168 
code-aster-gui_1.13.1-2.1_all.deb
 74b6172e29e1e711d88c5bed8903515d7fe6bd0abda7f1d12fed49204f0fc8d2 213036 
code-aster-run_1.13.1-2.1_all.deb
Files:
 b45d73e5e897319a373692a27a548fdd 2122 science extra astk_1.13.1-2.1.dsc
 4c5da4807125ff0f3522ddb856014e7a 28104 science extra 
astk_1.13.1-2.1.debian.tar.xz
 f74b3c7a6df754d9e37c4b9d991ce1e0 6285 science extra 
astk_1.13.1-2.1_amd64.buildinfo
 e3bc68206c3b324e0d899bb94aedf6cd 312168 science extra 
code-aster-gui_1.13.1-2.1_all.deb
 bbaf7b02845e98548510d55cfc2f901b 213036 science extra 
code-aster-run_1.13.1-2.1_all.deb

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCAAdFiEE/SYPsyDB+ShSnvc4Tyrk60tj54cFAlrkC1oACgkQTyrk60tj
54cAbRAAlHQsxutT4/PIqImdXj4D+yYAlJgy62ScR3UheSunWC/RYQPDYCO4n38y
Byz48zDCJSAFT9uMT22V4a4GU7JfJu6astmMiBM+ug0L3pJvSvjdnzrmhMSNCzFs
uOSCSRvnzYbLPv7/2/uxPzfuAmP+IwlziXgZwVY4RfRGiyGoFY5kz1K0yERT/Ls7
Les88v8wXfSqKqt5IoxKu2tcy6QuJ3HgOiCXYhtOzk6YWZ3oay2lKCtKkobzcSY5
gVQPOG2Fcz5l8LKoxDC9ep+HzfHoEfnJQvm3MDnHPmuIL0vgcIIZD8wJ336C6SY8
TsZcDlP14hYvagfBuVocubknxJW3kSUKaGjNB0ILB2NEn0StfsRyYOIfLZLUEcHt
2f5yPKvy9gZnkCqj7cojmCd2/SaUsuWlgUpcOujgb4/s8P9nJYycREK30MOOOxeY
pnFlzNb8cnYVRLerYtWRMoW/1LrdfIeIByKJjfynEODZKYufEbbGAVVvCbdowBmF
NByTRw0sP6D+sCe2KT+Ag4tv/pjGMz4859lrneiJ36sPnrFLfu3i/GlVQy9C8c+/
vDEhgdHY/xm6B+IkyJAo4rxWu+5M0y9wCtTffHuU/owmt1MLeJjXmuL4rmILnMWe
BM+NNP95V6RKA0mQW/NsTca0k/8WsUpj7D2w6c2X/KauI8ZpVBo=
=ehEA
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to