Your message dated Wed, 30 Jul 2008 21:17:06 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#443393: fixed in expect-tcl8.3 5.43.0-6
has caused the Debian Bug report #443393,
regarding [ia64] expect-tcl8.3 FTBFS
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.)


-- 
443393: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=443393
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: expect-tcl8.3
Version: 5.43.0-5
Fixed: 5.43.0-5.1

expect-tcl8.3 fails to buidl from source on ia64.  The attached diff is
for the -5.1 NMU, and fixes the issue.

lamont
diff -urN t/expect-tcl8.3-5.43.0/debian/changelog expect-tcl8.3-5.43.0/debian/changelog
--- t/expect-tcl8.3-5.43.0/debian/changelog	2007-09-20 19:05:17.000000000 -0600
+++ expect-tcl8.3-5.43.0/debian/changelog	2007-09-20 19:04:22.000000000 -0600
@@ -1,3 +1,9 @@
+expect-tcl8.3 (5.43.0-5.1) unstable; urgency=low
+
+  *  Merge in changes from expect 5.43.0-13.1
+
+ -- LaMont Jones <[EMAIL PROTECTED]>  Thu, 20 Sep 2007 19:04:00 -0600
+
 expect-tcl8.3 (5.43.0-5) unstable; urgency=low
 
   * Merge the Debian packaging and patches from expect_5.43.0-13.
diff -urN t/expect-tcl8.3-5.43.0/debian/patches/00list expect-tcl8.3-5.43.0/debian/patches/00list
--- t/expect-tcl8.3-5.43.0/debian/patches/00list	2007-09-20 19:05:17.000000000 -0600
+++ expect-tcl8.3-5.43.0/debian/patches/00list	2007-09-20 19:03:44.000000000 -0600
@@ -10,3 +10,4 @@
 10-manpage.dpatch
 11-ttyname.dpatch
 12-fdout.dpatch
+13-implicit-defs.dpatch
diff -urN t/expect-tcl8.3-5.43.0/debian/patches/13-implicit-defs.dpatch expect-tcl8.3-5.43.0/debian/patches/13-implicit-defs.dpatch
--- t/expect-tcl8.3-5.43.0/debian/patches/13-implicit-defs.dpatch	1969-12-31 17:00:00.000000000 -0700
+++ expect-tcl8.3-5.43.0/debian/patches/13-implicit-defs.dpatch	2007-09-20 19:03:16.000000000 -0600
@@ -0,0 +1,414 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 13-implict-defs.dpatch by LaMont Jones <[EMAIL PROTECTED]>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: No description.
+
[EMAIL PROTECTED]@
+diff -urNad expect-5.43.0~/Dbg.c expect-5.43.0/Dbg.c
+--- expect-5.43.0~/Dbg.c	2002-03-22 21:11:54.000000000 -0700
++++ expect-5.43.0/Dbg.c	2007-09-20 12:07:20.000000000 -0600
+@@ -8,6 +8,7 @@
+ 
+ */
+ 
++#include <unistd.h>
+ #include <stdio.h>
+ 
+ #include "tcldbgcf.h"
+diff -urNad expect-5.43.0~/exp_chan.c expect-5.43.0/exp_chan.c
+--- expect-5.43.0~/exp_chan.c	2007-09-20 12:07:20.000000000 -0600
++++ expect-5.43.0/exp_chan.c	2007-09-20 12:07:20.000000000 -0600
+@@ -31,9 +31,11 @@
+ 
+ #include "string.h"
+ 
++#include "expect.h"
+ #include "exp_rename.h"
+ #include "exp_prog.h"
+ #include "exp_command.h"
++#include "exp_event.h"
+ #include "exp_log.h"
+ 
+ static int		ExpBlockModeProc _ANSI_ARGS_((ClientData instanceData,
+diff -urNad expect-5.43.0~/exp_clib.c expect-5.43.0/exp_clib.c
+--- expect-5.43.0~/exp_clib.c	2007-09-20 12:07:20.000000000 -0600
++++ expect-5.43.0/exp_clib.c	2007-09-20 12:07:20.000000000 -0600
+@@ -7,6 +7,8 @@
+ would appreciate credit if this program or parts of it are used.
+ */
+ 
++#include <unistd.h>
++
+ #include "expect_cf.h"
+ #include <stdio.h>
+ #include <setjmp.h>
+@@ -116,7 +118,9 @@
+ #include <stdlib.h>		/* for malloc */
+ #endif
+ 
++#include "tcl.h"
+ #include "expect.h"
++#include "exp_command.h"
+ #define TclRegError exp_TclRegError
+ 
+ /*
+@@ -1463,6 +1467,7 @@
+  * end of regexp definitions and code
+  */
+ 
++#if 0
+ /*
+  * following stolen from tcl8.0.4/generic/tclPosixStr.c
+  */
+@@ -1919,6 +1924,7 @@
+ #endif
+     }
+ }
++#endif
+ 
+ /*
+  * end of excerpt from tcl8.0.X/generic/tclPosixStr.c
+diff -urNad expect-5.43.0~/exp_command.c expect-5.43.0/exp_command.c
+--- expect-5.43.0~/exp_command.c	2007-09-20 12:07:20.000000000 -0600
++++ expect-5.43.0/exp_command.c	2007-09-20 12:07:20.000000000 -0600
+@@ -29,7 +29,6 @@
+ #  include <fcntl.h>
+ #endif
+ #include <sys/file.h>
+-#include "exp_tty.h"
+ 
+ #include <errno.h>
+ #include <signal.h>
+@@ -64,6 +63,7 @@
+ /*				objects to including varargs.h twice, just */
+ /*				omit this one. */
+ 
++#include "expect.h"
+ #include "tcl.h"
+ #include "string.h"
+ #include "expect_tcl.h"
+@@ -72,6 +72,7 @@
+ #include "exp_command.h"
+ #include "exp_log.h"
+ #include "exp_event.h"
++#include "exp_tty_in.h"
+ #include "exp_pty.h"
+ #ifdef TCL_DEBUGGER
+ #include "tcldbg.h"
+diff -urNad expect-5.43.0~/exp_command.h expect-5.43.0/exp_command.h
+--- expect-5.43.0~/exp_command.h	2007-09-20 12:07:20.000000000 -0600
++++ expect-5.43.0/exp_command.h	2007-09-20 12:17:17.000000000 -0600
+@@ -7,6 +7,9 @@
+ would appreciate credit if this program or parts of it are used.
+ */
+ 
++#ifndef __EXP_COMMAND_H
++#define __EXP_COMMAND_H
++
+ #ifdef HAVE_SYS_WAIT_H
+   /* ISC doesn't def WNOHANG unless _POSIX_SOURCE is def'ed */
+ # ifdef WNOHANG_REQUIRES_POSIX_SOURCE
+@@ -23,7 +26,7 @@
+ # undef panic
+ #endif
+ 
+-#include <tclPort.h>
++#include "tclPort.h"
+ 
+ #define EXP_CHANNELNAMELEN (16 + TCL_INTEGER_SPACE)
+ 
+@@ -89,11 +92,11 @@
+     char name[EXP_CHANNELNAMELEN+1]; /* expect and interact set variables
+ 				   to channel name, so for efficiency
+ 				   cache it here */
+-    int fdin;		/* input fd */
+-    int fdout;		/* output fd - usually the same as fdin, although
++    long fdin;		/* input fd - may be used for storing ClientData, a pointer */
++    long fdout;		/* output fd - usually the same as fdin, although
+ 			   may be different if channel opened by tcl::open */
+     Tcl_Channel channel_orig;   /* If opened by someone else, i.e. tcl::open */
+-    int fd_slave;	/* slave fd if "spawn -pty" used */
++    long fd_slave;	/* slave fd if "spawn -pty" used */
+ 
+     /* this may go away if we find it is not needed */
+     /* it might be needed by inherited channels */
+@@ -231,6 +234,7 @@
+ EXTERN void		exp_init_send _ANSI_ARGS_((void));
+ EXTERN void		exp_init_unit_random _ANSI_ARGS_((void));
+ EXTERN void		exp_init_sig _ANSI_ARGS_((void));
++EXTERN void		exp_ecmd_remove_state_direct_and_indirect _ANSI_ARGS_((Tcl_Interp *interp,ExpState *esPtr));
+ EXTERN void		expChannelInit _ANSI_ARGS_((void));
+ EXTERN int		expChannelCountGet _ANSI_ARGS_((void));
+ 
+@@ -323,9 +327,13 @@
+ EXTERN int		expStateAnyIs _ANSI_ARGS_((ExpState *));
+ EXTERN int		expDevttyIs _ANSI_ARGS_((ExpState *));
+ EXTERN int		expStdinOutIs _ANSI_ARGS_((ExpState *));
++EXTERN int		expStdinoutIs _ANSI_ARGS_((ExpState *esPtr));
+ EXTERN ExpState *	expStdinoutGet _ANSI_ARGS_((void));
+ EXTERN ExpState *	expDevttyGet _ANSI_ARGS_((void));
+ 
++EXTERN int		Exp_StringCaseMatch _ANSI_ARGS_((char *string, char *pattern, int nocase, int *offset));
++
+ /* generic functions that really should be provided by Tcl */
+ EXTERN int		expSizeGet _ANSI_ARGS_((ExpState *));
+ EXTERN int		expSizeZero _ANSI_ARGS_((ExpState *));
++#endif /* __EXP_COMMAND_H */
+diff -urNad expect-5.43.0~/exp_glob.c expect-5.43.0/exp_glob.c
+--- expect-5.43.0~/exp_glob.c	2002-03-22 21:11:54.000000000 -0700
++++ expect-5.43.0/exp_glob.c	2007-09-20 12:07:20.000000000 -0600
+@@ -11,10 +11,17 @@
+ 
+ */
+ 
++#include <string.h>
++
+ #include "expect_cf.h"
+ #include "tcl.h"
+ #include "exp_int.h"
+ 
++int Exp_StringCaseMatch2(
++	register CONST char *string,
++	register CONST char *pattern,
++	int nocase);
++
+ /* The following functions implement expect's glob-style string matching */
+ /* Exp_StringMatch allow's implements the unanchored front (or conversely */
+ /* the '^') feature.  Exp_StringMatch2 does the rest of the work. */
+diff -urNad expect-5.43.0~/exp_inter.c expect-5.43.0/exp_inter.c
+--- expect-5.43.0~/exp_inter.c	2004-08-17 20:03:00.000000000 -0600
++++ expect-5.43.0/exp_inter.c	2007-09-20 12:07:20.000000000 -0600
+@@ -42,6 +42,7 @@
+ #include "exp_rename.h"
+ #include "exp_prog.h"
+ #include "exp_command.h"
++#include "exp_event.h"
+ #include "exp_log.h"
+ 
+ typedef struct ThreadSpecificData {
+diff -urNad expect-5.43.0~/exp_main_exp.c expect-5.43.0/exp_main_exp.c
+--- expect-5.43.0~/exp_main_exp.c	2007-09-20 12:07:20.000000000 -0600
++++ expect-5.43.0/exp_main_exp.c	2007-09-20 12:07:20.000000000 -0600
+@@ -12,6 +12,7 @@
+ 
+ #include "expect_cf.h"
+ #include <stdio.h>
++#include <stdlib.h>
+ #include "tcl.h"
+ #include "expect_tcl.h"
+ 
+diff -urNad expect-5.43.0~/exp_main_sub.c expect-5.43.0/exp_main_sub.c
+--- expect-5.43.0~/exp_main_sub.c	2007-09-20 12:07:20.000000000 -0600
++++ expect-5.43.0/exp_main_sub.c	2007-09-20 12:07:20.000000000 -0600
+@@ -2,6 +2,7 @@
+ 
+ #include "expect_cf.h"
+ #include <stdio.h>
++#include <getopt.h>
+ #include <errno.h>
+ #ifdef HAVE_INTTYPES_H
+ #  include <inttypes.h>
+diff -urNad expect-5.43.0~/exp_main_tk.c expect-5.43.0/exp_main_tk.c
+--- expect-5.43.0~/exp_main_tk.c	2007-09-20 12:07:20.000000000 -0600
++++ expect-5.43.0/exp_main_tk.c	2007-09-20 12:07:20.000000000 -0600
+@@ -38,11 +38,19 @@
+ #include <ctype.h>
+ #include <string.h>  /* strrchr(3) */
+ 
++#include	"tclInt.h"	/* Internal definitions for Tcl. */
++#include "tcl.h"
++
+ #include "tk.h"
++#include "tkInt.h"
+ 
+ #include "expect_tcl.h"
+ #include "tcldbg.h"
+ 
++#include "expect.h"
++#include "exp_command.h"
++#include "exp_log.h"
++
+ #if (TCL_MAJOR_VERSION < 8) || ((TCL_MAJOR_VERSION == 8) && (TCL_MINOR_VERSION < 4))
+ /*
+  * The following variable is a special hack that is needed in order for
+@@ -56,6 +64,8 @@
+ #ifdef TK_TEST
+ EXTERN int		Tktest_Init _ANSI_ARGS_((Tcl_Interp *interp));
+ #endif /* TK_TEST */
++int Tk_Init2(Tcl_Interp *interp);
++
+ 
+ /*
+  *----------------------------------------------------------------------
+@@ -386,7 +396,7 @@
+      * Invoke platform-specific initialization.
+      */
+ 
+-    code = TkpInit(interp, 0);
++    code = TkpInit(interp);
+ 
+     done:
+     if (argv != NULL) {
+diff -urNad expect-5.43.0~/exp_trap.c expect-5.43.0/exp_trap.c
+--- expect-5.43.0~/exp_trap.c	2007-09-20 12:07:20.000000000 -0600
++++ expect-5.43.0/exp_trap.c	2007-09-20 12:07:20.000000000 -0600
+@@ -28,6 +28,7 @@
+ #include "exp_prog.h"
+ #include "exp_command.h"
+ #include "exp_log.h"
++#include "exp_event.h"
+ 
+ #ifdef TCL_DEBUGGER
+ #include "tcldbg.h"
+diff -urNad expect-5.43.0~/exp_tty.c expect-5.43.0/exp_tty.c
+--- expect-5.43.0~/exp_tty.c	2004-05-07 10:23:26.000000000 -0600
++++ expect-5.43.0/exp_tty.c	2007-09-20 12:07:20.000000000 -0600
+@@ -36,6 +36,7 @@
+ #include "exp_tty_in.h"
+ #include "exp_command.h"
+ #include "exp_log.h"
++#include "exp_win.h"
+ 
+ static int is_raw = FALSE;
+ static int is_noecho = FALSE;
+diff -urNad expect-5.43.0~/exp_tty.h expect-5.43.0/exp_tty.h
+--- expect-5.43.0~/exp_tty.h	2002-02-11 19:00:55.000000000 -0700
++++ expect-5.43.0/exp_tty.h	2007-09-20 12:07:20.000000000 -0600
+@@ -21,6 +21,7 @@
+ int exp_tty_raw_noecho();
+ int exp_israw();
+ int exp_isecho();
++EXTERN int exp_tty_cooked_echo _ANSI_ARGS_((Tcl_Interp *interp, exp_tty *tty_old, int *was_raw, int *was_echo));
+ 
+ void exp_tty_set();
+ int exp_tty_set_simple();
+diff -urNad expect-5.43.0~/exp_tty_in.h expect-5.43.0/exp_tty_in.h
+--- expect-5.43.0~/exp_tty_in.h	2002-02-11 19:00:55.000000000 -0700
++++ expect-5.43.0/exp_tty_in.h	2007-09-20 12:07:20.000000000 -0600
+@@ -11,6 +11,8 @@
+ #define __EXP_TTY_IN_H__
+ 
+ #include "expect_cf.h"
++#include "expect.h"
++#include "tcl.h"
+ 
+ #ifdef __MACHTEN__
+ #include "sys/types.h"
+diff -urNad expect-5.43.0~/exp_win.c expect-5.43.0/exp_win.c
+--- expect-5.43.0~/exp_win.c	2002-02-11 19:00:55.000000000 -0700
++++ expect-5.43.0/exp_win.c	2007-09-20 12:07:20.000000000 -0600
+@@ -51,7 +51,8 @@
+ #   include <sys/ptem.h>
+ #endif /* HAVE_SYS_PTEM_H */
+ 
+-#include "exp_tty.h"
++#include "expect.h"
++#include "exp_tty_in.h"
+ #include "exp_win.h"
+ 
+ #ifdef TIOCGWINSZ
+diff -urNad expect-5.43.0~/exp_win.h expect-5.43.0/exp_win.h
+--- expect-5.43.0~/exp_win.h	2002-02-11 19:00:56.000000000 -0700
++++ expect-5.43.0/exp_win.h	2007-09-20 12:07:20.000000000 -0600
+@@ -1,3 +1,5 @@
++#ifndef __EXP_WIN_H
++#define __EXP_WIN_H
+ /* exp_win.h - window support
+ 
+ Written by: Don Libes, NIST, 10/25/93
+@@ -6,15 +8,17 @@
+ would appreciate credit if you use this file or parts of it.
+ */
+ 
+-int exp_window_size_set();
+-int exp_window_size_get();
++EXTERN int exp_window_size_set _ANSI_ARGS_((int fd));
++EXTERN int exp_window_size_get _ANSI_ARGS_((int fd));
+ 
+-void exp_win_rows_set();
+-void exp_win_rows_get();
+-void exp_win_columns_set();
+-void exp_win_columns_get();
++EXTERN void exp_win_rows_set _ANSI_ARGS_((char *rows));
++EXTERN void exp_win_rows_get _ANSI_ARGS_((char *rows));
++EXTERN void exp_win_columns_set _ANSI_ARGS_((char *columns));
++EXTERN void exp_win_columns_get _ANSI_ARGS_((char *columns));
+ 
+-void exp_win2_rows_set();
+-void exp_win2_rows_get();
+-void exp_win2_columns_set();
+-void exp_win2_columns_get();
++EXTERN void exp_win2_rows_set _ANSI_ARGS_((int fd, char *rows));
++EXTERN void exp_win2_rows_get _ANSI_ARGS_((int fd, char *rows));
++EXTERN void exp_win2_columns_set _ANSI_ARGS_((int fd, char *columns));
++EXTERN void exp_win2_columns_get _ANSI_ARGS_((int fd, char *columns));
++
++#endif /* __EXP_WIN_H */
+diff -urNad expect-5.43.0~/expect.c expect-5.43.0/expect.c
+--- expect-5.43.0~/expect.c	2007-09-20 12:07:20.000000000 -0600
++++ expect-5.43.0/expect.c	2007-09-20 12:07:20.000000000 -0600
+@@ -10,6 +10,8 @@
+ 
+ #include <sys/types.h>
+ #include <stdio.h>
++#include <stdarg.h>
++#include <string.h>
+ #include <signal.h>
+ #include <errno.h>
+ #include <ctype.h>	/* for isspace */
+@@ -29,12 +31,13 @@
+ 
+ #include "string.h"
+ 
++#include "expect.h"
++#include "exp_tty_in.h"
+ #include "exp_rename.h"
+ #include "exp_prog.h"
+ #include "exp_command.h"
+ #include "exp_log.h"
+ #include "exp_event.h"
+-#include "exp_tty.h"
+ #include "exp_tstamp.h"	/* this should disappear when interact */
+ 			/* loses ref's to it */
+ #ifdef TCL_DEBUGGER
+diff -urNad expect-5.43.0~/pty_termios.c expect-5.43.0/pty_termios.c
+--- expect-5.43.0~/pty_termios.c	2007-09-20 12:07:20.000000000 -0600
++++ expect-5.43.0/pty_termios.c	2007-09-20 12:07:20.000000000 -0600
+@@ -9,13 +9,18 @@
+ 
+ #include <stdio.h>
+ #include <signal.h>
++#include <string.h>
++#include <pty.h>
++#include <utmp.h>
+ 
+ #if defined(SIGCLD) && !defined(SIGCHLD)
+ #define SIGCHLD SIGCLD
+ #endif
+ 
+-#include "expect.h"
+ #include "expect_cf.h"
++#include "tcl.h"
++#include "expect.h"
++#include "exp_tty_in.h"
+ #include "exp_int.h"  /* expErrnoMsg() prototype */
+ 
+ /*
+@@ -98,7 +103,6 @@
+ 
+ #include "exp_win.h"
+ 
+-#include "exp_tty_in.h"
+ #include "exp_rename.h"
+ #include "exp_pty.h"
+ 
+@@ -368,7 +372,7 @@
+ #define W_OK 02
+ #endif
+ 
+-static int ttyname_checked(int fd) {
++static char * ttyname_checked(int fd) {
+ 	const char *result;
+ 	result= ttyname(fd);
+ 	if (!result) {
diff -urN t/expect-tcl8.3-5.43.0/debian/rules expect-tcl8.3-5.43.0/debian/rules
--- t/expect-tcl8.3-5.43.0/debian/rules	2007-09-20 19:05:17.000000000 -0600
+++ expect-tcl8.3-5.43.0/debian/rules	2007-09-20 19:03:00.000000000 -0600
@@ -10,7 +10,7 @@
 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
 
-CFLAGS = -Wall -g
+CFLAGS = -Wall -g -D_BSD_SOURCE
 
 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
 	CFLAGS += -O0

--- End Message ---
--- Begin Message ---
Source: expect-tcl8.3
Source-Version: 5.43.0-6

We believe that the bug you reported is fixed in the latest version of
expect-tcl8.3, which is due to be installed in the Debian FTP archive:

expect-tcl8.3-dev_5.43.0-6_i386.deb
  to pool/main/e/expect-tcl8.3/expect-tcl8.3-dev_5.43.0-6_i386.deb
expect-tcl8.3_5.43.0-6.diff.gz
  to pool/main/e/expect-tcl8.3/expect-tcl8.3_5.43.0-6.diff.gz
expect-tcl8.3_5.43.0-6.dsc
  to pool/main/e/expect-tcl8.3/expect-tcl8.3_5.43.0-6.dsc
expect-tcl8.3_5.43.0-6_i386.deb
  to pool/main/e/expect-tcl8.3/expect-tcl8.3_5.43.0-6_i386.deb
expectk-tk8.3_5.43.0-6_i386.deb
  to pool/main/e/expect-tcl8.3/expectk-tk8.3_5.43.0-6_i386.deb



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.
Matthias Klose <[EMAIL PROTECTED]> (supplier of updated expect-tcl8.3 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: SHA1

Format: 1.8
Date: Wed, 30 Jul 2008 22:33:52 +0200
Source: expect-tcl8.3
Binary: expect-tcl8.3 expectk-tk8.3 expect-tcl8.3-dev
Architecture: source i386
Version: 5.43.0-6
Distribution: unstable
Urgency: low
Maintainer: Matthias Klose <[EMAIL PROTECTED]>
Changed-By: Matthias Klose <[EMAIL PROTECTED]>
Description: 
 expect-tcl8.3 - A program that can automate interactive applications
 expect-tcl8.3-dev - A program that can automate interactive applications 
(development
 expectk-tk8.3 - A program that can automate interactive applications (Tk hooks)
Closes: 443393 461357 492288
Changes: 
 expect-tcl8.3 (5.43.0-6) unstable; urgency=low
 .
   * Install expectk in expectk-tk8.3. Closes: #492288.
   * Include expect scripts in expect-tcl8.3-dev as binaries, not as
     examples. Closes: #461357.
   * expect-tcl8.3-dev: Depend on tk8.3-dev.
   * Acknowledge NMU. Closes: #443393.
Checksums-Sha1: 
 2e4efba86a1c1f12970f781a26432c5e9e9329e9 1092 expect-tcl8.3_5.43.0-6.dsc
 c796a6fdf920e2718399a4ad534b9336522134b2 43060 expect-tcl8.3_5.43.0-6.diff.gz
 e8be3315dfb4045913ec787634090de85728dcfe 314164 expect-tcl8.3_5.43.0-6_i386.deb
 877e8fc16e637eef6f9376453ed280354b8bca16 69788 expectk-tk8.3_5.43.0-6_i386.deb
 c4b6e5787a6f69f544886ebf907526e1fbeafbde 236484 
expect-tcl8.3-dev_5.43.0-6_i386.deb
Checksums-Sha256: 
 5f47e05bea35a6a2b42e3a933f5d63e24c86bfe322721e5218fd131b6a14a330 1092 
expect-tcl8.3_5.43.0-6.dsc
 96f8aa7f8b2dacb0cbc863e174dbf5db9549aca666b24377d3d296c3f20a60ec 43060 
expect-tcl8.3_5.43.0-6.diff.gz
 34de7aabbb51adc3f8768440b99fee5d5a9539578ce9362b617626cfb659a628 314164 
expect-tcl8.3_5.43.0-6_i386.deb
 a1d3ab818abf05b89bafef862f97a30852772986f99a8996f9b196245789c63a 69788 
expectk-tk8.3_5.43.0-6_i386.deb
 6c9a69ba7517977443637ca143bd6bb5bef7e1dbbf73e0fc9f0e0ec1283356e8 236484 
expect-tcl8.3-dev_5.43.0-6_i386.deb
Files: 
 fa636008b87db550c88335ba40ec93c7 1092 interpreters optional 
expect-tcl8.3_5.43.0-6.dsc
 1669a7939671f10d5f0e0444484ae879 43060 interpreters optional 
expect-tcl8.3_5.43.0-6.diff.gz
 1af90452dccef7d29e04e8ec7c52215c 314164 interpreters optional 
expect-tcl8.3_5.43.0-6_i386.deb
 7235d54c562f68abca993339e4e01258 69788 interpreters optional 
expectk-tk8.3_5.43.0-6_i386.deb
 56f94a164c9678aa3ffbc91a159e2de7 236484 interpreters optional 
expect-tcl8.3-dev_5.43.0-6_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkiQ1jIACgkQStlRaw+TLJxZ+QCdFuiSbBm3Y46CDY5J8FYetLq0
kAYAnRtJNMODQ+vEzVT2hZqiqbsjzjxY
=tpr2
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to