Debian Package Tracker
Register | Log in
Subscribe

libxaw

Choose email to subscribe with

general
  • source: libxaw (main)
  • version: 2:1.0.16-1
  • maintainer: Debian X Strike Force (archive) (DMD)
  • arch: all any
  • std-ver: 4.6.0
  • VCS: Git (Browse, QA)
versions [more versions can be listed by madison] [old versions available from snapshot.debian.org]
[pool directory]
  • o-o-stable: 2:1.0.13-1
  • oldstable: 2:1.0.13-1.1
  • stable: 2:1.0.14-1
  • testing: 2:1.0.16-1
  • unstable: 2:1.0.16-1
versioned links
  • 2:1.0.13-1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 2:1.0.13-1.1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 2:1.0.14-1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 2:1.0.16-1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
binaries
  • libxaw-doc
  • libxaw7 (1 bugs: 0, 1, 0, 0)
  • libxaw7-dev
action needed
lintian reports 10 errors and 5 warnings high
Lintian reports 10 errors and 5 warnings about this package. You should make the package lintian clean getting rid of them.
Created: 2022-01-01 Last update: 2024-10-31 04:33
55 new commits since last upload, is it time to release? normal
vcswatch reports that this package seems to have new commits in its VCS but has not yet updated debian/changelog. You should consider updating the Debian changelog and uploading this new version into the archive.

Here are the relevant commit logs:
commit 5619594f850bca10ecd3122d055912d0b884d87c
Author: Julien Cristau <jcristau@debian.org>
Date:   Fri Nov 1 17:51:33 2024 +0100

    Bump changelog and update patch

commit 8093dce686abe1baaeb909a68a35d13d93aaadd9
Author: Julien Cristau <jcristau@debian.org>
Date:   Fri Nov 1 17:31:52 2024 +0100

    Stop tracking upstream git changelog

commit 4acb6181e3eec01a949f24f4ec0e01320446bb2c
Merge: e5618f8 f14ba54
Author: Julien Cristau <jcristau@debian.org>
Date:   Fri Nov 1 17:31:43 2024 +0100

    Merge tag 'libXaw-1.0.16' into debian-unstable
    
    libXaw-1.0.16

commit e5618f807374f090afe2c514f7c85f2efcb2d995
Author: Julien Cristau <jcristau@debian.org>
Date:   Fri Nov 1 17:31:34 2024 +0100

    Add Thomas Dickey's pgp key to d/upstream/signing-key.asc.

commit f14ba54e9c7e415a05e33dd0b3b5f96e5de05c8b
Author: Thomas E. Dickey <dickey@his.com>
Date:   Sun Mar 10 16:25:47 2024 +0000

    libXaw 1.0.16:  amends XawListChange() prototype, plus code-cleanup

commit 254e1f657496d21aef0c5e0a14ecca076a9ebcd5
Author: Thomas E. Dickey <dickey@his.com>
Date:   Sun Mar 10 14:31:35 2024 +0000

    delete code which is never used

commit c07b1728e38529ff8177e2075c2bae4724d3abe7
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Sun Mar 10 10:03:25 2024 -0400

    make the examples configurable as (interactive) unit-tests
    
    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>

commit d0fcbd9722ad691ca0b5873c98e8e9c236fa718b
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Sun Mar 3 20:21:40 2024 -0500

    amend change to XawListChange()
    
    My previous commit in July 2019
    
      build-fixes when _CONST_X_STRING is defined
    
    modified the interface of XawListChange() to use "_Xconst char *"
    to fix builds when the Xt symbol _CONST_X_STRING is defined (which
    makes the String typedef "const").
    
    While this fixed building Xaw, clients which use Xaw were impacted.
    Changing that function to use String resolves both problems.
    
    (report by Karl Berry).
    
    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>

commit b116d033a5b4daf75a10ad959e42aac398036ef9
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Sun Mar 3 19:04:21 2024 -0500

    clang/gcc warnings about undefined behavior (minor bug-fix)
    
    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>

commit fd4b2ce63feae01744a850fa6f1809ff15361a8b
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Sun Mar 3 18:51:46 2024 -0500

    fix clang/gcc warnings for undefined behavior, also fix a bug
    
    XtConvertAndStore may update the XrmValue value, changing its size.
    clang and gcc warn about undefined behavior in the case-statement
    following the call (which uses the size), but do not explain what
    the problem is.  Since this code is not intended to handle changes
    of the size, simply reject that case.  That quiets the gcc warnings
    and is actually all that is needed for correctness.  clang still
    complains (neither knows what the call does), but can be quieted
    by initializing the variable before calling the function.
    
    The code happens to work without the fix as long as it is not
    used to convert between resource types which would increase the
    size.
    
    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>

commit d33708e30f102f6ab278d6f809eeaa18e65d0716
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Sun Mar 3 15:13:27 2024 -0500

    scan-build(clang-17) reports possible null dereference, add checks
    
    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>

commit 9aba0a9212e0bb3ad010fff569bce95c20c3ebfa
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Sun Mar 3 14:50:21 2024 -0500

    split-up assignments which give unnecessary compiler-warnings
    
    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>

commit ce94a168f6a10455e98e2be7bd905bb9fb7f7fc1
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Fri Mar 1 20:32:17 2024 -0500

    add check for null pointer, avoid dereferencing
    
    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>

commit 95e93cfd56c8dec57a3bb2627d7714944713c37a
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Fri Mar 1 20:32:01 2024 -0500

    add check for null pointer, avoid dereferencing
    
    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>

commit 28b5ce87555b5c85f240895c64818015d134b3b7
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Fri Mar 1 20:31:43 2024 -0500

    add check for null pointer, avoid dereferencing
    
    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>

commit 96e4ac3ae1afdeafb16ea0e147364d15e7bfd549
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Fri Mar 1 20:31:26 2024 -0500

    add check for null pointer, avoid dereferencing
    
    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>

commit 5815fc38a12e5ac7f8bd391ce8f04f13b8178e69
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Fri Mar 1 20:31:09 2024 -0500

    add check for null pointer, avoid dereferencing
    
    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>

commit a3fb321330ccb6d9dcd6fd3d41971cda3987527a
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Fri Mar 1 20:30:50 2024 -0500

    add check for null pointer, avoid dereferencing
    
    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>

commit 3841474f3ba6914b6909e29c5cf0c5e7207a69a7
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Fri Mar 1 20:30:28 2024 -0500

    add check for null pointer, avoid dereferencing
    
    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>

commit f4906b8a4fc09eb3ce971272f993be81885f602f
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Fri Mar 1 19:30:22 2024 -0500

    delete unused assignments
    
    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>

commit 1b1d164cdcd3b30d1effb4a07a40ae1cf08d0419
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Fri Mar 1 18:47:16 2024 -0500

    reduce variable-length argument lists to match the existing code
    
    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>

commit ff9312d99940be2d81d91601ad6c1688da1016bd
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Fri Mar 1 17:01:07 2024 -0500

    fix references to uninitialized data when constructing argument-lists
    
    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>

commit cc1e73a85d437ebd0d5c8efbe14a7f398c1b9fcc
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Thu Feb 29 20:19:25 2024 -0500

    manpage: improve formatting consistency of bold/italics
    
    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>

commit 080e6e49825c2e03adb0c5dd8dad53767ec41ce6
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Thu Feb 29 18:12:40 2024 -0500

    manpage: assume .EX/.EE macros
    
    Branden Robinson says macros have to go after ".TH"; the existing macros did
    not match the format used in groff, etc., and can be simply removed.  The
    ".TQ" macro is used only without a parameter, causing an extra space to be
    emitted (and fixed that by dropping the parameter).
    
    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>

commit d696cf912efb884af1a73952f3bd70bd28a9a942
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Thu Feb 29 17:54:04 2024 -0500

    manpage: adjust line-breaks to avoid embedded full-stops
    
    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>

commit 6ded4c0487220253a2cb2fefc4983ff31e486dd4
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Thu Feb 29 16:45:23 2024 -0500

    cppcheck scope and assignment warnings

commit f181d10b934c85a30f27de6aa0b71c94e68d2293
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Wed Feb 28 20:46:24 2024 -0500

    reduce compiler-warnings using casts
    
    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>

commit 785ba6f4ee7677f395252daf9c1de30fb80a179d
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Wed Feb 28 20:18:34 2024 -0500

    provide fallback for deprecated isascii/toascii
    
    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>

commit 36ac433450b7e0b260e44b4320c4b6af0ba12a8f
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Wed Feb 28 19:43:50 2024 -0500

    quiet conversion-warnings with casts
    
    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>

commit eb5cbbd6f8056b3008c0f8e7e603b10a3ff4cbb2
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Wed Feb 28 18:04:28 2024 -0500

    fix missing-initializer warnings
    
    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>

commit 5c23a1f5e5b0961a0938a8f3da1c9ad01fe67af7
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Wed Feb 28 16:30:11 2024 -0500

    build-fix
    
    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>

commit 239a9d1f8fa2655a5ebc53de00e3311ae1413e33
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Feb 17 14:48:34 2024 -0800

    unifdef ISC
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 6bbdea682c9c0064895e1619815a8d116f197c3f
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Feb 13 17:59:23 2024 -0800

    Remove unused sharedlib.c
    
    It was only built by Imake if SUNSHLIB was defined.
    SUNSHLIB was only set in the Imake configs for SunOS versions < 5
    (i.e. before Solaris 2.0).
    
    It has never been used in the autoconf builds.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 84f62d9c2a37366661332b8218c842f5af98356d
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Feb 13 17:54:47 2024 -0800

    unifdef __UNIXOS2__
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit bce0fc281e883f4ffa53e47cd5fa96ea04ea4227
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Feb 13 17:53:49 2024 -0800

    unifdef __osf__
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit b6de2199357cdbde852a9caea1ed752d3c236d65
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Feb 13 17:51:04 2024 -0800

    unifdef AIXV3 || __SCO__
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit dbd28c703175051e0d20df664c4423317ed556a3
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Feb 13 17:48:19 2024 -0800

    unifdef QNX4
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 04a5e1a7d8cb1446e4fe2bb4a823d9795254fecb
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Feb 13 17:47:21 2024 -0800

    unifdef sony
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit a6cd58c90cf5e47678fd50932d6fc2fdbffb2605
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Feb 13 17:46:44 2024 -0800

    unifdef NCR
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 74b3c3550390dc7e234b9ec8addca0b71256b9f0
Author: Emilio Pozuelo Monfort <pochu@debian.org>
Date:   Tue Nov 14 11:31:20 2023 +0100

    Move doc build-deps to Build-Depends-Indep
    
    Thanks to Samuel Thibault.

commit 1b5fe7cf8b5e7ed3f214b43b9f7e081c82df5b1d
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Sep 23 09:46:16 2023 -0700

    gitlab CI: add xz-utils to container for "make distcheck"
    
    Also update to latest ci-templates
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit e1b030770a2d489ff832b619ba646aa96e0bfb5c
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Feb 28 19:19:13 2023 -0800

    Use C99 designated initializers where appropriate
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 77533b88018c2923075562e106ef2970c7e6c6a9
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Feb 28 17:49:59 2023 -0800

    Handle redundantInitialization warnings from cppcheck
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit c5a5fcea941e4ee7c4c68ae090601d6282f0a5cb
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Feb 28 16:10:19 2023 -0800

    Variable scope reductions as suggested by cppcheck
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 571c764ace3d4415531641db3dee0c2b066edc10
Author: Walter Harms <wharms@bfs.de>
Date:   Sun Jun 18 21:05:34 2023 +0200

    expand for simple widget demo

commit 55c2ab7cd46efb17f59f18d22307fcf5b26f3692
Author: Walter Harms <wharms@bfs.de>
Date:   Sun Jun 18 21:04:43 2023 +0200

    add simple widget demo

commit e67c7ff2bd6bff84edd70c224bc672535e4b41a4
Author: Walter Harms <wharms@bfs.de>
Date:   Sat May 13 19:08:12 2023 +0200

    add xawhisto

commit 2f99a415913b6be4ed2955a3e30694c2216aafbd
Author: Walter Harms <wharms@bfs.de>
Date:   Fri May 12 23:03:32 2023 +0200

    add examples
    
    provide some examples to support the documentation

commit 324358180ddeaae482c5f66bb5647a4918710296
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Mar 28 12:08:41 2023 -0700

    Set close-on-exec when opening files
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 78eb3c75688a1e92ec435e5bc3ded063cd339a73
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Mar 15 16:29:53 2023 -0700

    libXaw 1.0.15
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit ebf701e9752a2c85f2fcfcce32b97f47d2546f47
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Mar 4 10:44:45 2023 -0800

    configure: Use LT_INIT from libtool 2 instead of deprecated AC_PROG_LIBTOOL
    
    AC_PROG_LIBTOOL was replaced by LT_INIT in libtool 2 in 2008,
    so it's time to rely on it.
    
    Clears autoconf warnings:
    
    configure.ac:13: warning: The macro `AC_PROG_LIBTOOL' is obsolete.
    configure.ac:13: You should run autoupdate.
    aclocal.m4:3465: AC_PROG_LIBTOOL is expanded from...
    configure.ac:13: the top level
    
    libtoolize: Consider adding 'AC_CONFIG_MACRO_DIRS([m4])' to configure.ac,
    libtoolize: and rerunning libtoolize and aclocal.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit f7246b984c287b64eb73ee0c303f1b61ee51caf2
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Feb 28 14:12:09 2023 -0800

    Replace calls to index() with strchr()
    
    Use C standard API instead of old BSD equivalent
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 02d6fcb26ee1c77c26d98372898d0e48542da5cb
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Feb 28 11:50:15 2023 -0800

    Add .git-blame-ignore-revs to hide whitespace commits from git blame
    
    To use this in your local repo clone, you will need to either run
    `git blame --ignore-revs-file .git-blame-ignore-revs`
    or set it permanently with
    `git config blame.ignoreRevsFile .git-blame-ignore-revs`
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit c37efe7e63ce7be18238590b25042a8d7184f86c
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Feb 25 09:21:46 2023 -0800

    Remove "All rights reserved" from Oracle copyright notices
    
    Oracle no longer includes this term in our copyright & license notices.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 9129b6dbca53afe7e1876ce11bb0386d91bcd589
Author: Thomas E. Dickey <dickey@invisible-island.net>
Date:   Mon Jul 4 08:46:04 2022 -0400

    issue #6: fix typo in XawMax parameter in GetBlockBoundaries
    
    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
Created: 2023-11-14 Last update: 2025-05-14 18:01
Standards version of the package is outdated. wishlist
The package should be updated to follow the last version of Debian Policy (Standards-Version 4.7.2 instead of 4.6.0).
Created: 2022-05-11 Last update: 2025-02-27 13:25
news
[rss feed]
  • [2024-11-08] libxaw 2:1.0.16-1 MIGRATED to testing (Debian testing watch)
  • [2024-11-01] Accepted libxaw 2:1.0.16-1 (source) into unstable (Julien Cristau)
  • [2022-03-10] libxaw 2:1.0.14-1 MIGRATED to testing (Debian testing watch)
  • [2022-03-04] Accepted libxaw 2:1.0.14-1 (source) into unstable (Timo Aaltonen)
  • [2020-12-24] libxaw 2:1.0.13-1.1 MIGRATED to testing (Debian testing watch)
  • [2020-12-18] Accepted libxaw 2:1.0.13-1.1 (source) into unstable (Holger Levsen)
  • [2015-08-07] libxaw 2:1.0.13-1 MIGRATED to testing (Britney)
  • [2015-08-01] Accepted libxaw 2:1.0.13-1 (all source) into unstable (Julien Cristau)
  • [2014-07-18] libxaw 2:1.0.12-2 MIGRATED to testing (Britney)
  • [2014-07-12] Accepted libxaw 2:1.0.12-2 (source amd64 all) (Julien Cristau)
  • [2014-01-26] libxaw 2:1.0.12-1 MIGRATED to testing (Debian testing watch)
  • [2014-01-20] Accepted libxaw 2:1.0.12-1 (source all amd64) (Julien Cristau)
  • [2013-06-27] libxaw 2:1.0.11-1 MIGRATED to testing (Debian testing watch)
  • [2013-06-16] Accepted libxaw 2:1.0.11-1 (source all amd64) (Julien Cristau)
  • [2012-04-23] libxaw 2:1.0.10-2 MIGRATED to testing (Debian testing watch)
  • [2012-04-12] Accepted libxaw 2:1.0.10-2 (source all amd64) (Julien Cristau)
  • [2012-04-12] Accepted libxaw 2:1.0.10-1 (source all amd64) (Julien Cristau)
  • [2011-11-01] libxaw 2:1.0.9-3 MIGRATED to testing (Debian testing watch)
  • [2011-10-21] Accepted libxaw 2:1.0.9-3 (source amd64) (Steve Langasek)
  • [2011-02-17] libxaw 2:1.0.9-2 MIGRATED to testing (Debian testing watch)
  • [2011-02-07] Accepted libxaw 2:1.0.9-2 (source amd64) (Julien Cristau)
  • [2011-02-06] libxaw 2:1.0.8-2 MIGRATED to testing (Debian testing watch)
  • [2011-01-12] Accepted libxaw 2:1.0.9-1 (source amd64) (Cyril Brulebois)
  • [2010-11-06] Accepted libxaw 2:1.0.8-2 (source amd64) (Cyril Brulebois)
  • [2010-11-06] Accepted libxaw 2:1.0.8-1 (source amd64) (Cyril Brulebois)
  • [2009-12-07] libxaw 2:1.0.7-1 MIGRATED to testing (Debian testing watch)
  • [2009-11-25] Accepted libxaw 2:1.0.7-1 (source i386) (Julien Cristau)
  • [2009-08-07] libxaw 2:1.0.6-1 MIGRATED to testing (Debian testing watch)
  • [2009-07-27] Accepted libxaw 2:1.0.6-1 (source i386) (Brice Goglin)
  • [2009-02-27] libxaw 2:1.0.5-2 MIGRATED to testing (Debian testing watch)
  • 1
  • 2
bugs [bug history graph]
  • all: 1
  • RC: 0
  • I&N: 1
  • M&W: 0
  • F&P: 0
  • patch: 0
links
  • lintian (10, 5)
  • buildd: logs, reproducibility, cross
  • popcon
  • browse source code
  • edit tags
  • other distros
ubuntu Ubuntu logo [Information about Ubuntu for Debian Developers]
  • version: 2:1.0.16-1

Debian Package Tracker — Copyright 2013-2025 The Distro Tracker Developers
Report problems to the tracker.debian.org pseudo-package in the Debian BTS.
Documentation — Bugs — Git Repository — Contributing