Please sync libccscript3 (universe) from Debian unstable (main)

Bug #121974 reported by Lionel Le Folgoc
4
Affects Status Importance Assigned to Milestone
libccscript3 (Debian)
Fix Released
Unknown
libccscript3 (Ubuntu)
Fix Released
Wishlist
Unassigned

Bug Description

 affects ubuntu/libccscript3
 status confirmed
 subscribe ubuntu-archive

Please sync libccscript3 (universe) from Debian unstable (main).

This would fix FTBFS on amd64.

Changelog since current gutsy version 1.1.6-1:

libccscript3 (1.1.6-2) unstable; urgency=low

  * Reapply dbug326756 patch
    - FTBFS (amd64): cannot convert 'long int*' to 'SQLINTEGER*' for
    argument '2' to 'SQLRETURN SQLRowCount(void*, SQLINTEGER*)' (Closes:
    #326756)
  * linitan-cleanup: substvar-source-version-is-deprecated

 -- Mark Purcell <email address hidden> Fri, 22 Jun 2007 12:05:13 +0100

Revision history for this message
In , Mark Purcell (msp) wrote : Re: Bug#326756: libccscript3: FTBFS (amd64): cannot convert 'long int*' to 'SQLINTEGER*' for argument '2' to 'SQLRETURN SQLRowCount(void*, SQLINTEGER*)'

David,

Find enclosed a patch for libccscript3 to build under amd64.

Mark

On Monday 05 September 2005 15:01, Andreas Jochens wrote:
> Package: libccscript3
> Version: 0.7.0-1
> Severity: serious
> Tags: patch
>
> When building 'libccscript3' on amd64/unstable,
> I get the following error:
>
> x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I../../src -I./../../src
> -fPIC -DPIC -g -O2 -D_GNU_SOURCE -I/usr/include/cc++2 -c thread.cpp
> thread.cpp: In member function 'virtual void
> ccscript3Database::SQLThread::run()': thread.cpp:121: error: cannot convert
> 'long int*' to 'SQLINTEGER*' for argument '2' to 'SQLRETURN
> SQLRowCount(void*, SQLINTEGER*)' thread.cpp:149: error: cannot convert
> 'long int*' to 'SQLINTEGER*' for argument '6' to 'SQLRETURN
> SQLGetData(void*, SQLUSMALLINT, SQLSMALLINT, void*, SQLINTEGER,
> SQLINTEGER*)' make[3]: *** [thread.o] Error 1
> make[3]: Leaving directory `/libccscript3-0.7.0/optional/odbc'
>
> With the attached patch 'libccscript3' can be compiled
> on amd64 using gcc-4.0.
>
> Regards
> Andreas Jochens
>
> diff -urN ../tmp-orig/libccscript3-0.7.0/optional/odbc/thread.cpp
> ./optional/odbc/thread.cpp ---
> ../tmp-orig/libccscript3-0.7.0/optional/odbc/thread.cpp 2005-04-30
> 14:55:20.000000000 +0000 +++ ./optional/odbc/thread.cpp 2005-09-05
> 13:52:56.000000000 +0000 @@ -63,7 +63,7 @@
> SQLCHAR stat[10];
> SQLCHAR errmsg[128];
> SQLSMALLINT mlen, col, cols;
> - long int rowcnt;
> + SQLINTEGER rowcnt;
> char buf[1024];
> char nbuf[12];
> unsigned row = 0, len = 0;

Revision history for this message
In , David Sugar (dyfet-ostel) wrote :

Hmm...I will probably get this into the next release.

Mark Purcell wrote:
> David,
>
> Find enclosed a patch for libccscript3 to build under amd64.
>
> Mark
>
> On Monday 05 September 2005 15:01, Andreas Jochens wrote:
>
>>Package: libccscript3
>>Version: 0.7.0-1
>>Severity: serious
>>Tags: patch
>>
>>When building 'libccscript3' on amd64/unstable,
>>I get the following error:
>>
>>x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I../../src -I./../../src
>>-fPIC -DPIC -g -O2 -D_GNU_SOURCE -I/usr/include/cc++2 -c thread.cpp
>>thread.cpp: In member function 'virtual void
>>ccscript3Database::SQLThread::run()': thread.cpp:121: error: cannot convert
>>'long int*' to 'SQLINTEGER*' for argument '2' to 'SQLRETURN
>>SQLRowCount(void*, SQLINTEGER*)' thread.cpp:149: error: cannot convert
>>'long int*' to 'SQLINTEGER*' for argument '6' to 'SQLRETURN
>>SQLGetData(void*, SQLUSMALLINT, SQLSMALLINT, void*, SQLINTEGER,
>>SQLINTEGER*)' make[3]: *** [thread.o] Error 1
>>make[3]: Leaving directory `/libccscript3-0.7.0/optional/odbc'
>>
>>With the attached patch 'libccscript3' can be compiled
>>on amd64 using gcc-4.0.
>>
>>Regards
>>Andreas Jochens
>>
>>diff -urN ../tmp-orig/libccscript3-0.7.0/optional/odbc/thread.cpp
>>./optional/odbc/thread.cpp ---
>>../tmp-orig/libccscript3-0.7.0/optional/odbc/thread.cpp 2005-04-30
>>14:55:20.000000000 +0000 +++ ./optional/odbc/thread.cpp 2005-09-05
>>13:52:56.000000000 +0000 @@ -63,7 +63,7 @@
>> SQLCHAR stat[10];
>> SQLCHAR errmsg[128];
>> SQLSMALLINT mlen, col, cols;
>>- long int rowcnt;
>>+ SQLINTEGER rowcnt;
>> char buf[1024];
>> char nbuf[12];
>> unsigned row = 0, len = 0;

Revision history for this message
In , David Sugar (dyfet-ostel) wrote :

Making that a SQLINTEGER gives me errors on other platform builds with
gcc 4! Appearently not all the SQLxxx unixODBC functions are prototyped
correctly, at least not in the version of unixODBC I just tested with.
That was probably why I made it a long int instead of SQLINTEGER in the
first place.

thread.cpp: In member function 'virtual void
ccscript3Database::SQLThread::run()':
thread.cpp:121: error: invalid conversion from 'SQLINTEGER*' to 'long int*'
thread.cpp:121: error: initializing argument 2 of 'SQLRETURN
SQLRowCount(void*, long int*)'

Mark Purcell wrote:
> David,
>
> Find enclosed a patch for libccscript3 to build under amd64.
>
> Mark
>
> On Monday 05 September 2005 15:01, Andreas Jochens wrote:
>
>>Package: libccscript3
>>Version: 0.7.0-1
>>Severity: serious
>>Tags: patch
>>
>>When building 'libccscript3' on amd64/unstable,
>>I get the following error:
>>
>>x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I../../src -I./../../src
>>-fPIC -DPIC -g -O2 -D_GNU_SOURCE -I/usr/include/cc++2 -c thread.cpp
>>thread.cpp: In member function 'virtual void
>>ccscript3Database::SQLThread::run()': thread.cpp:121: error: cannot convert
>>'long int*' to 'SQLINTEGER*' for argument '2' to 'SQLRETURN
>>SQLRowCount(void*, SQLINTEGER*)' thread.cpp:149: error: cannot convert
>>'long int*' to 'SQLINTEGER*' for argument '6' to 'SQLRETURN
>>SQLGetData(void*, SQLUSMALLINT, SQLSMALLINT, void*, SQLINTEGER,
>>SQLINTEGER*)' make[3]: *** [thread.o] Error 1
>>make[3]: Leaving directory `/libccscript3-0.7.0/optional/odbc'
>>
>>With the attached patch 'libccscript3' can be compiled
>>on amd64 using gcc-4.0.
>>
>>Regards
>>Andreas Jochens
>>
>>diff -urN ../tmp-orig/libccscript3-0.7.0/optional/odbc/thread.cpp
>>./optional/odbc/thread.cpp ---
>>../tmp-orig/libccscript3-0.7.0/optional/odbc/thread.cpp 2005-04-30
>>14:55:20.000000000 +0000 +++ ./optional/odbc/thread.cpp 2005-09-05
>>13:52:56.000000000 +0000 @@ -63,7 +63,7 @@
>> SQLCHAR stat[10];
>> SQLCHAR errmsg[128];
>> SQLSMALLINT mlen, col, cols;
>>- long int rowcnt;
>>+ SQLINTEGER rowcnt;
>> char buf[1024];
>> char nbuf[12];
>> unsigned row = 0, len = 0;

Revision history for this message
In , Mark Purcell (msp) wrote : Bug#326756: fixed in libccscript3 0.8.1-1

Source: libccscript3
Source-Version: 0.8.1-1

We believe that the bug you reported is fixed in the latest version of
libccscript3, which is due to be installed in the Debian FTP archive:

libccscript3-0.8-0_0.8.1-1_i386.deb
  to pool/main/libc/libccscript3/libccscript3-0.8-0_0.8.1-1_i386.deb
libccscript3-dev_0.8.1-1_i386.deb
  to pool/main/libc/libccscript3/libccscript3-dev_0.8.1-1_i386.deb
libccscript3_0.8.1-1.diff.gz
  to pool/main/libc/libccscript3/libccscript3_0.8.1-1.diff.gz
libccscript3_0.8.1-1.dsc
  to pool/main/libc/libccscript3/libccscript3_0.8.1-1.dsc
libccscript3_0.8.1.orig.tar.gz
  to pool/main/libc/libccscript3/libccscript3_0.8.1.orig.tar.gz

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 address hidden>,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Mark Purcell <email address hidden> (supplier of updated libccscript3 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 address hidden>)

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Mon, 5 Sep 2005 17:55:44 +0100
Source: libccscript3
Binary: libccscript3-0.8-0 libccscript3-dev
Architecture: source i386
Version: 0.8.1-1
Distribution: unstable
Urgency: low
Maintainer: Mark Purcell <email address hidden>
Changed-By: Mark Purcell <email address hidden>
Description:
 libccscript3-0.8-0 - GNU Common C++ framework for embedded scripting
 libccscript3-dev - GNU Common C++ framework for embedded scripting
Closes: 326756
Changes:
 libccscript3 (0.8.1-1) unstable; urgency=low
 .
   * New upstream release
   * Disable, as its optional, Build-Depends: unixodbc-dev, until it
     tranisitions see
   * Apply patch from Andreas
     - FTBFS (amd64): cannot convert 'long int*' to 'SQLINTEGER*' for
     argument '2' to 'SQLRETURN SQLRowCount(void*, SQLINTEGER*)' (Closes:
     #326756)
   * fix old-fsf-address-in-copyright-file
   * Bump package due to soname change
   * Update debian/watch
Files:
 36fe5ddf8b0b35afe57df73646c505fc 670 libs optional libccscript3_0.8.1-1.dsc
 04dbf61b8486f1cf239fca7ca38c72b1 368600 libs optional libccscript3_0.8.1.orig.tar.gz
 df6f3fe6b8e54d843b0ea27940ad39cb 3199 libs optional libccscript3_0.8.1-1.diff.gz
 2f0340126dd31026afc84ff83a77ec5b 85250 libdevel optional libccscript3-dev_0.8.1-1_i386.deb
 2dfbafe6562cdfa29d80c82d7eea9c12 62476 libs optional libccscript3-0.8-0_0.8.1-1_i386.deb

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

iD8DBQFDHHj1oCzanz0IthIRAu2AAJ0ehk2hrPYjb1KuIvBKlcJV0kzLvQCcDG4I
t0tt6Ce6BY63ACatGT+tvOk=
=0FaP
-----END PGP SIGNATURE-----

Revision history for this message
In , Kurt Roeckx (kurt-roeckx) wrote : Re: libccscript3: FTBFS: error: cannot convert 'SQLINTEGER*' to 'SQLLEN*' for argument '2' to 'SQLRETURN SQLRowCount(void*, SQLLEN*)'

found 326756 1.0.8-1
thanks

Hi,

It's still failing to build with the same error:
x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I../../src -I./../../src -fPIC -DPIC -g -O2 -D_GNU_SOURCE -I/usr/include/cc++2 -c -o thread.o thread.cpp
thread.cpp: In member function 'virtual void ccscript3Database::SQLThread::run()':
thread.cpp:125: error: cannot convert 'SQLINTEGER*' to 'SQLLEN*' for argument '2' to 'SQLRETURN SQLRowCount(void*, SQLLEN*)'
thread.cpp:153: error: cannot convert 'SQLINTEGER*' to 'SQLLEN*' for argument '6' to 'SQLRETURN SQLGetData(void*, SQLUSMALLINT, SQLSMALLINT, void*, SQLLEN, SQLLEN*)'
make[3]: *** [thread.o] Error 1

Kurt

Revision history for this message
In , Thomas Girard (thomas-g-girard) wrote : About to merge #326756 and #365518

Package: libccscript3
Version: 1.0.9-1.1
Tags: fixed

Hello,

I believe this bug was fixed in the NMU along with #365518. Indeed,
libccscript3 was successfully compiled on ia64. They are actually the
very same bug report.

Thomas

Revision history for this message
In , Thomas Girard (thomas-g-girard) wrote : Tagging and merging #326756

tags 326756 + fixed
merge 326756 365518
thanks

Hello,

I believe this bug was fixed in the NMU along with #365518. Indeed,
libccscript3 1.0.9-1.1 was successfully compiled on ia64 and amd64.

I'm merging this bug with #365518 since they were reporting the very
same error.

Thomas

Revision history for this message
In , Thomas Girard (thomas-g-girard) wrote : Merging #326756 with #365518

forcemerge 365518 326756
thanks

Hello,

I believe this bug was fixed in the NMU along with #365518. Indeed,
libccscript3 1.0.9-1.1 was successfully compiled on ia64 and amd64.

I'm merging this bug with #365518 since they were reporting the very
same error.

Thomas

Revision history for this message
In , Adam D. Barratt (debian-bts-adam-barratt) wrote : Bugs fixed in NMU, documenting versions

# Hi,
#
# These bugs were fixed in an NMU, but have not been acknowledged by the
# maintainers. With version tracking in the Debian BTS, it is important
# to know which version of a package fixes each bug so that they can be
# tracked for release status, so I'm closing these bugs with the
#relevant version information now

close 271427 8.14+v8.11+urw-0.1
close 314698 0.35-2.1
close 325635 0.35-2.1
close 328017 0.35-2.1
close 320115 2.0-4.2
close 320284 1.11
close 320899 11.4.1870-7.1
close 327078 11.4.1870-7.1
close 327349 11.4.1870-7.1
close 320903 1:0.71-1.2
close 327946 1:0.71-1.2
close 320941 2.0.3-1.1
close 321126 2.6.3.2
close 321545 0.1.3b-1.1
close 341341 0.1.3b-1.1
close 321553 0.1.12-2.2
close 321644 2:1.7.12-1.1
close 346013 2:1.7.12-1.1
close 321816 2.61-2.1
close 321967 4.0.0-2.1
close 330024 4.0.0-2.1
close 321998 0.9.21-0.1
close 322583 0.3.8.1-4
close 322853 0.7.1-3.1
close 356739 0.7.1-3.1
close 322961 0.4.3.1.dfsg-0.1
close 322972 9.4.2-2.4
close 323084 0.4.5+cvs20030824-1.4
close 323160 0.1.10-0.1
close 323355 1.2.11-0.2
close 323725 0.18.2-10.1
close 323942 0.4.0-4.1
close 324371 4.3-18.1
close 324553 2.9.5.0.37.5.2
close 324558 1.2-release-2.1
close 324579 1.11-6.2
close 324606 1.2-release-2.2
close 324908 0.12.4-4.1
close 325210 2.6.0-1.1
close 325490 0.7.1-1.1
close 325514 0.8.6-1.1
close 326468 0.8.6-1.1
close 325532 2:1.7.12-1
close 327366 2:1.7.12-1
close 329778 2:1.7.12-1
close 332480 2:1.7.12-1
close 325635 0.35-2.1
close 328017 0.35-2.1
close 325835 0.1.12-7.1
close 325851 2:1.7.8-1sarge2
close 325938 0.9.8beta2-4.1
close 327930 0.9.8beta2-4.1
close 326285 0.99.3-5.1
close 326295 0.8.2-5.1
close 373110 0.8.2-5.1
close 379331 0.8.2-5.1
close 379334 0.8.2-5.1
close 326298 0.2.12-2.1
close 326311 0.3.5-1pre1.1
close 326355 2.1.8-2.1
close 326362 0.6-7.2
close 326371 0.90beta1-10.1
close 326372 1.0-0.1
close 326378 0.1.17-4.3
close 326466 6.3.2-2.1
close 347129 6.3.2-2.1
close 347205 6.3.2-2.1
close 326489 0.3.7-2.1
close 326756 1.0.9-1.1
close 365518 1.0.9-1.1
close 327429 1.2-1.1
close 350429 1.2-1.1
close 327911 2.3.5-1.1
close 327718 0.6.0-8.2
close 327933 0.9.2-1.1
close 327936 0.8.5-1.1
close 327970 0.5.1-2.1
close 327984 1.3-2.1
close 327986 0.2.36-4.1
close 291328 0.2.36-4.1
close 327996 1.0-1.1
close 328002 1.0.0-9.1
close 328018 2.1.3-2.1
close 328039 1.18A-2.1
close 328172 1.002-0.2
close 328333 4.1.2-1.1
close 328334 1.34-7.1
close 328335 0.8.2-2.1
close 328352 0.13-3.1
close 328364 0.4.0-test5-2.1
close 329467 1.3.1
close 330446 0.1.83
close 333857 0.1.83
close 330666 6:6.2.4.5-0.2
close 330938 0.5.1-2.2

Revision history for this message
In , Anibal Monsalve Salazar (anibal) wrote : tagging bugs that are closed by packages in NEW as pending

# the following bugs are closed by packages in NEW
#
tags 205589 pending
tags 259761 pending
tags 305878 pending
tags 332598 pending
tags 365518 pending
tags 392828 pending
thanks

Anibal Monsalve Salazar
--
http://v7w.com/anibal

Revision history for this message
In , Steve Langasek (vorlon) wrote : reassign 326756 to libccscript3, found 326756 in 0.7.0-1, closing 326756, found 326756 in 1.0.8-1 ...

# Automatically generated email from bts, devscripts version 2.9.21
# do the reassign dance :(
reassign 326756 libccscript3
found 326756 0.7.0-1
close 326756 0.8.1-1
found 326756 1.0.8-1
close 326756 1.0.9-1.1

Revision history for this message
In , Kurt Roeckx (kurt-roeckx) wrote : ibccscript3: FTBFS (amd64): cannot convert 'long int*' to 'SQLINTEGER*' for argument '2' to 'SQLRETURN SQLRowCount(void*, SQLINTEGER*)'

found 326756 1.1.6-1
thanks

Hi,

It seems it's back again in 1.1.6-1:
thread.cpp: In member function 'virtual void ccscript3Database::SQLThread::run()':
thread.cpp:125: error: cannot convert 'SQLINTEGER*' to 'SQLLEN*' for argument '2' to 'SQLRETURN SQLRowCount(void*, SQLLEN*)'
thread.cpp:153: error: cannot convert 'SQLINTEGER*' to 'SQLLEN*' for argument '6' to 'SQLRETURN SQLGetData(void*, SQLUSMALLINT, SQLSMALLINT, void*, SQLLEN, SQLLEN*)'
make[3]: *** [thread.o] Error 1

Kurt

Revision history for this message
In , Steve Langasek (vorlon) wrote : found 326756 in 1.1.6-1

# Automatically generated email from bts, devscripts version 2.10.4
found 326756 1.1.6-1

Revision history for this message
In , Mark Purcell (msp) wrote : reopen 326756

reopen 326756

Revision history for this message
In , Mark Purcell (msp) wrote : Bug#326756: fixed in libccscript3 1.1.6-2

Source: libccscript3
Source-Version: 1.1.6-2

We believe that the bug you reported is fixed in the latest version of
libccscript3, which is due to be installed in the Debian FTP archive:

libccscript3-1.1-0_1.1.6-2_i386.deb
  to pool/main/libc/libccscript3/libccscript3-1.1-0_1.1.6-2_i386.deb
libccscript3-dev_1.1.6-2_i386.deb
  to pool/main/libc/libccscript3/libccscript3-dev_1.1.6-2_i386.deb
libccscript3_1.1.6-2.diff.gz
  to pool/main/libc/libccscript3/libccscript3_1.1.6-2.diff.gz
libccscript3_1.1.6-2.dsc
  to pool/main/libc/libccscript3/libccscript3_1.1.6-2.dsc

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 address hidden>,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Mark Purcell <email address hidden> (supplier of updated libccscript3 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 address hidden>)

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Fri, 22 Jun 2007 12:05:13 +0100
Source: libccscript3
Binary: libccscript3-1.1-0 libccscript3-dev
Architecture: source i386
Version: 1.1.6-2
Distribution: unstable
Urgency: low
Maintainer: Debian VoIP Team <email address hidden>
Changed-By: Mark Purcell <email address hidden>
Description:
 libccscript3-1.1-0 - GNU Common C++ framework for embedded scripting
 libccscript3-dev - GNU Common C++ framework for embedded scripting
Closes: 326756
Changes:
 libccscript3 (1.1.6-2) unstable; urgency=low
 .
   * Reapply dbug326756 patch
     - FTBFS (amd64): cannot convert 'long int*' to 'SQLINTEGER*' for
     argument '2' to 'SQLRETURN SQLRowCount(void*, SQLINTEGER*)' (Closes:
     #326756)
   * linitan-cleanup: substvar-source-version-is-deprecated
Files:
 8392c1cf9761b11e9cf14d0f3437d4e3 765 libs optional libccscript3_1.1.6-2.dsc
 b0c79414d2a073015f62c2c9c6cc7b7e 3094 libs optional libccscript3_1.1.6-2.diff.gz
 847990c236dc5f1985a46fa1840a53c8 95736 libdevel optional libccscript3-dev_1.1.6-2_i386.deb
 1b50635e29ddb5468cac37eca18927af 130642 libs optional libccscript3-1.1-0_1.1.6-2_i386.deb

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

iD8DBQFGe60+oCzanz0IthIRAvtsAJ4zMqIDRMzQ/g/Cp/cdGkg8kLd/uQCglbcj
0O/BOlMWwltT8j66DxG9Cqw=
=/6Y8
-----END PGP SIGNATURE-----

Revision history for this message
Lionel Le Folgoc (mrpouit) wrote :

 affects ubuntu/libccscript3
 status confirmed
 subscribe ubuntu-archive

Please sync libccscript3 (universe) from Debian unstable (main).

This would fix FTBFS on amd64.

Changelog since current gutsy version 1.1.6-1:

libccscript3 (1.1.6-2) unstable; urgency=low

  * Reapply dbug326756 patch
    - FTBFS (amd64): cannot convert 'long int*' to 'SQLINTEGER*' for
    argument '2' to 'SQLRETURN SQLRowCount(void*, SQLINTEGER*)' (Closes:
    #326756)
  * linitan-cleanup: substvar-source-version-is-deprecated

 -- Mark Purcell <email address hidden> Fri, 22 Jun 2007 12:05:13 +0100

Emmet Hikory (persia)
Changed in libccscript3:
importance: Undecided → Wishlist
Changed in libccscript3:
status: Unknown → Fix Released
Revision history for this message
Sebastien Bacher (seb128) wrote :

[Updating] libccscript3 (1.1.6-1 [Ubuntu] < 1.1.6-2 [Debian])
 * Trying to add libccscript3...
  - <libccscript3_1.1.6-2.diff.gz: downloading from http://ftp.debian.org/debian/>
  - <libccscript3_1.1.6.orig.tar.gz: already in distro - downloading from librarian>
  - <libccscript3_1.1.6-2.dsc: downloading from http://ftp.debian.org/debian/>
I: libccscript3 [universe] -> libccscript3-dev_1.1.6-1 [universe].
I: libccscript3 [universe] -> libccscript3-1.1-0_1.1.6-1 [universe].

Changed in libccscript3:
status: Confirmed → Fix Released
Revision history for this message
In , Steve Langasek (vorlon) wrote : tagging 429064, tagging 420982, tagging 420984, fixed 326756 in 1.0.9-1.1

# Automatically generated email from bts, devscripts version 2.10.4
tags 429064 lenny sid
tags 420982 lenny sid
tags 420984 lenny sid
fixed 326756 1.0.9-1.1

Revision history for this message
In , Debbugs Internal Request (owner-bugs) wrote : Internal Control

# A New Hope
# A log time ago, in a galaxy far, far away
# something happened.
#
# Magically this resulted in the following
# action being taken, but this fake control
# message doesn't tell you why it happened
#
# The action:
# Bug archived.
thanks
# This fakemail brought to you by your local debbugs
# administrator

To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.