GNU bug report logs - #58142
[PATCH 0/7] Update tealdeer.

Previous Next

Package: guix-patches;

Reported by: Greg Hogan <code <at> greghogan.com>

Date: Wed, 28 Sep 2022 13:02:01 UTC

Severity: normal

Tags: moreinfo, patch

Done: Greg Hogan <code <at> greghogan.com>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 58142 in the body.
You can then email your comments to 58142 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#58142; Package guix-patches. (Wed, 28 Sep 2022 13:02:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Greg Hogan <code <at> greghogan.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 28 Sep 2022 13:02:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Greg Hogan <code <at> greghogan.com>
To: guix-patches <at> gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [PATCH 0/7] Update tealdeer.
Date: Wed, 28 Sep 2022 13:00:53 +0000
tealdeer is broken on master. I have not been able to build this
upgraded version of tealdeer without using the exact version match for
rust-clap. Guix currently packages the beta version of clap v3, with
tealdeer depending on the release candiate (the current release of clap
is v3.2.22).

Greg Hogan (7):
  gnu: Add rust-pager-0.16.
  gnu: rust-pager-0.15: Inherit from rust-pager-0.16.
  gnu: Add rust-textwrap-0.14.
  gnu: rust-textwrap-0.12: Inherit from rust-textwrap-0.14.
  gnu: Add rust-clap-derive-3.0.0-rc.11.
  gnu: Add rust-clap-3.0.0-rc.11.
  gnu: tealdeer: Update to 1.5.0.

 gnu/packages/crates-io.scm | 123 +++++++++++++++++++++++++++++--------
 gnu/packages/rust-apps.scm |  23 +++----
 2 files changed, 111 insertions(+), 35 deletions(-)

-- 
2.37.3





Information forwarded to guix-patches <at> gnu.org:
bug#58142; Package guix-patches. (Wed, 28 Sep 2022 13:04:02 GMT) Full text and rfc822 format available.

Message #8 received at 58142 <at> debbugs.gnu.org (full text, mbox):

From: Greg Hogan <code <at> greghogan.com>
To: 58142 <at> debbugs.gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [PATCH 1/7] gnu: Add rust-pager-0.16.
Date: Wed, 28 Sep 2022 13:03:19 +0000
* gnu/packages/crates-io.scm (rust-pager-0.16): New variable.
---
 gnu/packages/crates-io.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index f83d7fff6d..a8cf5e5444 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -41692,6 +41692,28 @@ (define-public rust-page-size-0.4
 memory page size.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-pager-0.16
+  (package
+    (name "rust-pager")
+    (version "0.16.1")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "pager" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "10188qgnsz988g30fvl4whkljh2zl4gpbp6kc48bpywpbhd23695"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs
+       (("rust-errno" ,rust-errno-0.2)
+        ("rust-libc" ,rust-libc-0.2))))
+    (home-page "https://gitlab.com/imp/pager-rs.git")
+    (synopsis "Helps pipe your output through an external pager")
+    (description
+     "This package pipes your Rust output through an external pager.")
+    (license (list license:asl2.0 license:expat))))
+
 (define-public rust-pager-0.15
   (package
     (name "rust-pager")
-- 
2.37.3





Information forwarded to guix-patches <at> gnu.org:
bug#58142; Package guix-patches. (Wed, 28 Sep 2022 13:04:02 GMT) Full text and rfc822 format available.

Message #11 received at 58142 <at> debbugs.gnu.org (full text, mbox):

From: Greg Hogan <code <at> greghogan.com>
To: 58142 <at> debbugs.gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [PATCH 2/7] gnu: rust-pager-0.15: Inherit from rust-pager-0.16.
Date: Wed, 28 Sep 2022 13:03:20 +0000
* gnu/packages/crates-io.scm (rust-pager-0.15): Inherit from
rust-pager-0.16.
---
 gnu/packages/crates-io.scm | 13 ++-----------
 1 file changed, 2 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index a8cf5e5444..1cda57c42e 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -41716,6 +41716,7 @@ (define-public rust-pager-0.16
 
 (define-public rust-pager-0.15
   (package
+    (inherit rust-pager-0.16)
     (name "rust-pager")
     (version "0.15.0")
     (source
@@ -41726,17 +41727,7 @@ (define-public rust-pager-0.15
         (string-append name "-" version ".tar.gz"))
        (sha256
         (base32
-         "0a35mg68s0p63ya2k5hsg620c4llkjw2fx1sfi0laz4pz8myv75n"))))
-    (build-system cargo-build-system)
-    (arguments
-     `(#:cargo-inputs
-       (("rust-errno" ,rust-errno-0.2)
-        ("rust-libc" ,rust-libc-0.2))))
-    (home-page "https://gitlab.com/imp/pager-rs.git")
-    (synopsis "Helps pipe your output through an external pager")
-    (description
-     "This package pipes your Rust output through an external pager.")
-    (license (list license:asl2.0 license:expat))))
+         "0a35mg68s0p63ya2k5hsg620c4llkjw2fx1sfi0laz4pz8myv75n"))))))
 
 (define-public rust-palette-0.5
   (package
-- 
2.37.3





Information forwarded to guix-patches <at> gnu.org:
bug#58142; Package guix-patches. (Wed, 28 Sep 2022 13:04:02 GMT) Full text and rfc822 format available.

Message #14 received at 58142 <at> debbugs.gnu.org (full text, mbox):

From: Greg Hogan <code <at> greghogan.com>
To: 58142 <at> debbugs.gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [PATCH 3/7] gnu: Add rust-textwrap-0.14.
Date: Wed, 28 Sep 2022 13:03:21 +0000
* gnu/packages/crates-io.scm (rust-textwrap-0.14): New variable.
---
 gnu/packages/crates-io.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 1cda57c42e..a1b94bf957 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -64605,6 +64605,35 @@ (define-public rust-text-size-1
     (description "This package provides a newtypes for text offsets")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-textwrap-0.14
+  (package
+    (name "rust-textwrap")
+    (version "0.14.2")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "textwrap" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "106xjfzfpk3nj51fx9slf9kyir7xjwvpqm003v9ardgq5b8whrh0"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:skip-build? #t
+       #:cargo-inputs
+       (("rust-hyphenation" ,rust-hyphenation-0.8)
+        ("rust-smawk" ,rust-smawk-0.3)
+        ("rust-terminal-size" ,rust-terminal-size-0.1)
+        ("rust-unicode-linebreak" ,rust-unicode-linebreak-0.1)
+        ("rust-unicode-width" ,rust-unicode-width-0.1))))
+    (home-page "https://github.com/mgeisler/textwrap")
+    (synopsis "Library for word wrapping, indenting, and dedenting strings")
+    (description
+     "Textwrap is a small library for word wrapping, indenting, and dedenting
+strings.  You can use it to format strings (such as help and error messages)
+for display in commandline applications.  It is designed to be efficient and
+handle Unicode characters correctly.")
+    (license license:expat)))
+
 (define-public rust-textwrap-0.12
   (package
     (name "rust-textwrap")
-- 
2.37.3





Information forwarded to guix-patches <at> gnu.org:
bug#58142; Package guix-patches. (Wed, 28 Sep 2022 13:04:03 GMT) Full text and rfc822 format available.

Message #17 received at 58142 <at> debbugs.gnu.org (full text, mbox):

From: Greg Hogan <code <at> greghogan.com>
To: 58142 <at> debbugs.gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [PATCH 4/7] gnu: rust-textwrap-0.12: Inherit from rust-textwrap-0.14.
Date: Wed, 28 Sep 2022 13:03:22 +0000
* gnu/packages/crates-io.scm (rust-textwrap-0.12): Inherit from
rust-textwrap-0.14.
---
 gnu/packages/crates-io.scm | 16 +++-------------
 1 file changed, 3 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index a1b94bf957..8c8e958418 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -64636,6 +64636,7 @@ (define-public rust-textwrap-0.14
 
 (define-public rust-textwrap-0.12
   (package
+    (inherit rust-textwrap-0.14)
     (name "rust-textwrap")
     (version "0.12.1")
     (source
@@ -64647,22 +64648,11 @@ (define-public rust-textwrap-0.12
        (sha256
         (base32
          "12978qmkl5gcp94lxndpvp9qxq8mxp7hm9xbrw3422dgikchhc10"))))
-    (build-system cargo-build-system)
     (arguments
-     `(#:skip-build? #t
-       #:cargo-inputs
+     `(#:cargo-inputs
        (("rust-hyphenation" ,rust-hyphenation-0.8)
         ("rust-terminal-size" ,rust-terminal-size-0.1)
-        ("rust-unicode-width" ,rust-unicode-width-0.1))))
-    (home-page
-     "https://github.com/mgeisler/textwrap")
-    (synopsis "Library for word wrapping, indenting, and dedenting strings")
-    (description
-     "Textwrap is a small library for word wrapping, indenting, and dedenting
-strings.  You can use it to format strings (such as help and error messages)
-for display in commandline applications.  It is designed to be efficient and
-handle Unicode characters correctly.")
-    (license license:expat)))
+        ("rust-unicode-width" ,rust-unicode-width-0.1))))))
 
 (define-public rust-textwrap-0.11
   (package
-- 
2.37.3





Information forwarded to guix-patches <at> gnu.org:
bug#58142; Package guix-patches. (Wed, 28 Sep 2022 13:04:03 GMT) Full text and rfc822 format available.

Message #20 received at 58142 <at> debbugs.gnu.org (full text, mbox):

From: Greg Hogan <code <at> greghogan.com>
To: 58142 <at> debbugs.gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [PATCH 5/7] gnu: Add rust-clap-derive-3.0.0-rc.11.
Date: Wed, 28 Sep 2022 13:03:23 +0000
* gnu/packages/crates-io.scm (rust-clap-derive-3.0.0-rc.11): New
variable.
---
 gnu/packages/crates-io.scm | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 8c8e958418..557298bcdd 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -11550,6 +11550,19 @@ (define-public rust-clap-derive-3
 derive crate.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-clap-derive-3.0.0-rc.11
+  (package
+    (inherit rust-clap-derive-3)
+    (name "rust-clap-derive")
+    (version "3.0.0-rc.11")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "clap_derive" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0c4rfzx4sczyajgishwbp9231i7a6p9ai2ahacillykp74krkncc"))))))
+
 (define-public rust-clap-3
   (package
     (name "rust-clap")
-- 
2.37.3





Information forwarded to guix-patches <at> gnu.org:
bug#58142; Package guix-patches. (Wed, 28 Sep 2022 13:04:04 GMT) Full text and rfc822 format available.

Message #23 received at 58142 <at> debbugs.gnu.org (full text, mbox):

From: Greg Hogan <code <at> greghogan.com>
To: 58142 <at> debbugs.gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [PATCH 6/7] gnu: Add rust-clap-3.0.0-rc.11.
Date: Wed, 28 Sep 2022 13:03:24 +0000
* gnu/packages/crates-io.scm (rust-clap-3.0.0-rc.11) New variable.
---
 gnu/packages/crates-io.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 557298bcdd..025e30d184 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -11603,6 +11603,36 @@ (define-public rust-clap-3
 Command Line Argument Parser.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-clap-3.0.0-rc.11
+  (package
+    (inherit rust-clap-3)
+    (name "rust-clap")
+    (version "3.0.0-rc.11")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "clap" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "19qihvgiczr8nwrbpkc42ijk24q9f965c2iahpnzy2cz4z3l7wp6"))))
+    (arguments
+     `(#:cargo-inputs
+       (("rust-atty" ,rust-atty-0.2)
+        ("rust-backtrace" ,rust-backtrace-0.3)
+        ("rust-bitflags" ,rust-bitflags-1)
+        ("rust-clap-derive" ,rust-clap-derive-3.0.0-rc.11)
+        ("rust-indexmap" ,rust-indexmap-1)
+        ("rust-os-str-bytes" ,rust-os-str-bytes-6)
+        ("rust-strsim" ,rust-strsim-0.10)
+        ("rust-termcolor" ,rust-termcolor-1)
+        ("rust-terminal-size" ,rust-terminal-size-0.1)
+        ("rust-textwrap" ,rust-textwrap-0.14)
+        ("rust-unicase" ,rust-unicase-2)
+        ("rust-yaml-rust" ,rust-yaml-rust-0.4))
+       #:cargo-development-inputs
+       (("rust-lazy-static" ,rust-lazy-static-1)
+        ("rust-regex" ,rust-regex-1))))))
+
 (define-public rust-clap-2
   (package
     (inherit rust-clap-3)
-- 
2.37.3





Information forwarded to guix-patches <at> gnu.org:
bug#58142; Package guix-patches. (Wed, 28 Sep 2022 13:04:04 GMT) Full text and rfc822 format available.

Message #26 received at 58142 <at> debbugs.gnu.org (full text, mbox):

From: Greg Hogan <code <at> greghogan.com>
To: 58142 <at> debbugs.gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [PATCH 7/7] gnu: tealdeer: Update to 1.5.0.
Date: Wed, 28 Sep 2022 13:03:25 +0000
* gnu/packages/rust-apps.scm (tealdeer): Update to 1.5.0.
[arguments]<#:cargo-test-flags>: Skip new network tests.
<#:cargo-inputs>: Add rust-clap, rust-zip; update rust-env-logger,
rust-pager, rust-reqwest.
<#:cargo-development-inputs>: Update rust-assert-cmd, rust-predicates;
remove rust-remove-dir-all.
---
 gnu/packages/rust-apps.scm | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
index 74581bc1e5..d68a83d015 100644
--- a/gnu/packages/rust-apps.scm
+++ b/gnu/packages/rust-apps.scm
@@ -1739,7 +1739,7 @@ (define-public swayhide
 (define-public tealdeer
   (package
     (name "tealdeer")
-    (version "1.4.1")
+    (version "1.5.0")
     (source
      (origin
        (method url-fetch)
@@ -1748,7 +1748,7 @@ (define-public tealdeer
         (string-append name "-" version ".tar.gz"))
        (sha256
         (base32
-         "0cwf46k2rszcpydrqajnm4dvhggr3ms7sjma0jx02ch4fjicxch7"))))
+         "118hmrz58x1s0cgsg2dka7mq9rb01p5ivrd4njd03dnabhndihs6"))))
     (build-system cargo-build-system)
     (arguments
      `(#:phases
@@ -1775,31 +1775,32 @@ (define-public tealdeer
          "--skip=test_markdown_rendering"
          "--skip=test_spaces_find_command"
          "--skip=test_autoupdate_cache"
+         "--skip=test_cache_location_not_a_directory"
+         "--skip=test_create_cache_directory_path"
          "--skip=test_update_cache")
        #:cargo-inputs
        (("rust-ansi-term" ,rust-ansi-term-0.12)
         ("rust-app-dirs2" ,rust-app-dirs2-2)
         ("rust-atty" ,rust-atty-0.2)
+        ("rust-clap" ,rust-clap-3.0.0-rc.11)
         ("rust-docopt" ,rust-docopt-1)
-        ("rust-env-logger" ,rust-env-logger-0.7)
+        ("rust-env-logger" ,rust-env-logger-0.9)
         ("rust-flate2" ,rust-flate2-1)
         ("rust-log" ,rust-log-0.4)
-        ("rust-pager" ,rust-pager-0.15)
-        ("rust-reqwest" ,rust-reqwest-0.10)
+        ("rust-pager" ,rust-pager-0.16)
+        ("rust-reqwest" ,rust-reqwest-0.11)
         ("rust-serde" ,rust-serde-1)
         ("rust-serde-derive" ,rust-serde-derive-1)
         ("rust-tar" ,rust-tar-0.4)
         ("rust-toml" ,rust-toml-0.5)
         ("rust-walkdir" ,rust-walkdir-2)
-        ("rust-xdg" ,rust-xdg-2))
+        ("rust-xdg" ,rust-xdg-2)
+        ("rust-zip" ,rust-zip-0.5))
        #:cargo-development-inputs
-       (("rust-assert-cmd" ,rust-assert-cmd-1)
+       (("rust-assert-cmd" ,rust-assert-cmd-2)
         ("rust-escargot" ,rust-escargot-0.5)
         ("rust-filetime" ,rust-filetime-0.2)
-        ("rust-predicates" ,rust-predicates-1)
-        ;; This earlier version is required to fix a bug.
-        ;; Remove rust-remove-dir-all-0.5.2 when tealdeer gets upgraded
-        ("rust-remove-dir-all" ,rust-remove-dir-all-0.5.2)
+        ("rust-predicates" ,rust-predicates-2)
         ("rust-tempfile" ,rust-tempfile-3))))
     (native-inputs
      (list pkg-config))
-- 
2.37.3





Information forwarded to guix-patches <at> gnu.org:
bug#58142; Package guix-patches. (Wed, 28 Sep 2022 18:10:03 GMT) Full text and rfc822 format available.

Message #29 received at 58142 <at> debbugs.gnu.org (full text, mbox):

From: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
To: Greg Hogan <code <at> greghogan.com>
Cc: 58142 <at> debbugs.gnu.org
Subject: Re: bug#58142: [PATCH 0/7] Update tealdeer.
Date: Wed, 28 Sep 2022 14:09:51 -0400
Hi Greg,

Greg Hogan <code <at> greghogan.com> writes:

> * gnu/packages/crates-io.scm (rust-clap-derive-3.0.0-rc.11): New
> variable.
> ---
>  gnu/packages/crates-io.scm | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index 8c8e958418..557298bcdd 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -11550,6 +11550,19 @@ (define-public rust-clap-derive-3
>  derive crate.")
>      (license (list license:expat license:asl2.0))))
>  
> +(define-public rust-clap-derive-3.0.0-rc.11
> +  (package
> +    (inherit rust-clap-derive-3)
> +    (name "rust-clap-derive")
> +    (version "3.0.0-rc.11")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (crate-uri "clap_derive" version))
> +              (file-name (string-append name "-" version ".tar.gz"))
> +              (sha256
> +               (base32
> +                "0c4rfzx4sczyajgishwbp9231i7a6p9ai2ahacillykp74krkncc"))))))
> +

Not only is 3.0.0-rc.11 old, but 3.0.0 was released since, which ought
to be compatible.  Can't we use a newer version, or at least 3.0.0?  If
not, please report the issue to tealdeer, as it's silly to hard-peg
dependencies on old RC releases.

Thanks,

Maxim




Information forwarded to guix-patches <at> gnu.org:
bug#58142; Package guix-patches. (Wed, 28 Sep 2022 18:12:01 GMT) Full text and rfc822 format available.

Message #32 received at 58142 <at> debbugs.gnu.org (full text, mbox):

From: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
To: Greg Hogan <code <at> greghogan.com>
Cc: 58142 <at> debbugs.gnu.org
Subject: Re: bug#58142: [PATCH 0/7] Update tealdeer.
Date: Wed, 28 Sep 2022 14:10:59 -0400
Hi,

Greg Hogan <code <at> greghogan.com> writes:

> * gnu/packages/crates-io.scm (rust-clap-3.0.0-rc.11) New variable.

Same comment as my previous one here; new versions are available and
should be used, or at least the stable one that followed the RCs.

Thanks,

Maxim




Added tag(s) moreinfo. Request was from Maxim Cournoyer <maxim.cournoyer <at> gmail.com> to control <at> debbugs.gnu.org. (Sat, 08 Oct 2022 04:39:02 GMT) Full text and rfc822 format available.

Reply sent to Greg Hogan <code <at> greghogan.com>:
You have taken responsibility. (Mon, 07 Nov 2022 17:59:02 GMT) Full text and rfc822 format available.

Notification sent to Greg Hogan <code <at> greghogan.com>:
bug acknowledged by developer. (Mon, 07 Nov 2022 17:59:02 GMT) Full text and rfc822 format available.

Message #39 received at 58142-done <at> debbugs.gnu.org (full text, mbox):

From: Greg Hogan <code <at> greghogan.com>
To: 58142-done <at> debbugs.gnu.org
Subject: Re: bug#58142: [PATCH 0/7] Update tealdeer.
Date: Mon, 7 Nov 2022 12:57:46 -0500




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 06 Dec 2022 12:24:08 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 135 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.