GNU bug report logs -
#63824
[PATCH 0/3] gnu: openocd: Update to 0.12.0.
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 63824 in the body.
You can then email your comments to 63824 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
efraim <at> flashner.co.il, ludo <at> gnu.org, vagrant <at> debian.org, guix-patches <at> gnu.org
:
bug#63824
; Package
guix-patches
.
(Thu, 01 Jun 2023 13:31:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Jean-Pierre De Jesus DIAZ <jean <at> foundationdevices.com>
:
New bug report received and forwarded. Copy sent to
efraim <at> flashner.co.il, ludo <at> gnu.org, vagrant <at> debian.org, guix-patches <at> gnu.org
.
(Thu, 01 Jun 2023 13:31:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Updates OpenOCD to 0.12.0 and its dependencies to newer versions used by
OpenOCD.
Also jimtcl now requires OpenSSL and the failed tests section was
updated. Also changed the arguments section to use G-Expressions.
Jean-Pierre De Jesus DIAZ (3):
gnu: libjaylink: Update to 0.3.1.
gnu: jimtcl: Update to 0.82.
gnu: openocd: Update to 0.12.0.
gnu/packages/embedded.scm | 44 +++++++++++++++++++--------------------
1 file changed, 22 insertions(+), 22 deletions(-)
--
2.34.1
Information forwarded
to
efraim <at> flashner.co.il, ludo <at> gnu.org, vagrant <at> debian.org, guix-patches <at> gnu.org
:
bug#63824
; Package
guix-patches
.
(Thu, 01 Jun 2023 13:33:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 63824 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/embedded (libjaylink): Update to 0.3.1.
Signed-off-by: Jean-Pierre De Jesus DIAZ <jean <at> foundationdevices.com>
---
gnu/packages/embedded.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/embedded.scm b/gnu/packages/embedded.scm
index 50a3abd1fd..2a90ca22d0 100644
--- a/gnu/packages/embedded.scm
+++ b/gnu/packages/embedded.scm
@@ -511,7 +511,7 @@ (define-public gdb-arm-none-eabi
(define-public libjaylink
(package
(name "libjaylink")
- (version "0.2.0")
+ (version "0.3.1")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -520,7 +520,7 @@ (define-public libjaylink
(file-name (git-file-name name version))
(sha256
(base32
- "0ndyfh51hiqyv2yscpj6qd091w7myxxjid3a6rx8f6k233vy826q"))))
+ "1wps72ir2kwdr7dphx4vp6cy0d46dm3nkwbk0mpryn9la09l7lm1"))))
(build-system gnu-build-system)
(native-inputs
(list autoconf automake libtool pkg-config))
--
2.34.1
Information forwarded
to
efraim <at> flashner.co.il, ludo <at> gnu.org, vagrant <at> debian.org, guix-patches <at> gnu.org
:
bug#63824
; Package
guix-patches
.
(Thu, 01 Jun 2023 13:33:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 63824 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/embedded (jimtcl): Update to 0.82.
[arguments]: Use G-Expressions and update failing test, TTY test
doesn't fail anymore.
[inputs]: Add openssl as an input as now by default jimtcl enables the
SSL configuration option.
* gnu/packages/embedded (openocd): Support jimtcl 0.82.
[arguments]: Link against libssl and libcrypto.
[inputs]: Add openssl.
Signed-off-by: Jean-Pierre De Jesus DIAZ <jean <at> foundationdevices.com>
---
gnu/packages/embedded.scm | 36 ++++++++++++++++++------------------
1 file changed, 18 insertions(+), 18 deletions(-)
diff --git a/gnu/packages/embedded.scm b/gnu/packages/embedded.scm
index 2a90ca22d0..6efecf9700 100644
--- a/gnu/packages/embedded.scm
+++ b/gnu/packages/embedded.scm
@@ -69,6 +69,7 @@ (define-module (gnu packages embedded)
#:use-module (gnu packages readline)
#:use-module (gnu packages swig)
#:use-module (gnu packages texinfo)
+ #:use-module (gnu packages tls)
#:use-module (gnu packages version-control)
#:use-module (gnu packages xorg)
#:use-module (srfi srfi-1))
@@ -535,7 +536,7 @@ (define-public libjaylink
(define-public jimtcl
(package
(name "jimtcl")
- (version "0.80")
+ (version "0.82")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -544,23 +545,22 @@ (define-public jimtcl
(file-name (git-file-name name version))
(sha256
(base32
- "06rn60cx9sapc175vxvan87b8j5rkhh5gvvz7343xznzwlr0wcgk"))))
+ "01nxqzn41797ypph1vpwjfh3zqgks0l8ihh6932b4kb83apy6f08"))))
(build-system gnu-build-system)
(arguments
- `(#:phases
- (modify-phases %standard-phases
- (replace 'configure
- ;; This package doesn't use autoconf.
- (lambda* (#:key outputs #:allow-other-keys)
- (let ((out (assoc-ref outputs "out")))
- (invoke "./configure"
- (string-append "--prefix=" out)))))
- (add-before 'check 'delete-failing-tests
- (lambda _
- ;; XXX All but 1 TTY tests fail (Inappropriate ioctl for device).
- (delete-file "tests/tty.test")
- #t))
- )))
+ (list #:phases
+ #~(modify-phases %standard-phases
+ (replace 'configure
+ ;; This package doesn't use autoconf.
+ (lambda _
+ (invoke "./configure"
+ (string-append "--prefix=" #$output))))
+ (add-before 'check 'delete-failing-tests
+ (lambda _
+ ;; XXX All but 1 SSL tests fail (tries connecting to Google
+ ;; servers).
+ (delete-file "tests/ssl.test"))))))
+ (inputs (list openssl))
(native-inputs
;; For tests.
(list inetutils)) ; for hostname
@@ -592,10 +592,10 @@ (define-public openocd
pkg-config
texinfo))
(inputs
- (list hidapi jimtcl libftdi libjaylink libusb-compat))
+ (list hidapi jimtcl libftdi libjaylink libusb-compat openssl))
(arguments
'(#:configure-flags
- (append (list "LIBS=-lutil"
+ (append (list "LIBS=-lutil -lcrypto -lssl"
"--disable-werror"
"--enable-sysfsgpio"
"--disable-internal-jimtcl"
--
2.34.1
Information forwarded
to
efraim <at> flashner.co.il, ludo <at> gnu.org, vagrant <at> debian.org, guix-patches <at> gnu.org
:
bug#63824
; Package
guix-patches
.
(Thu, 01 Jun 2023 13:33:02 GMT)
Full text and
rfc822 format available.
Message #14 received at 63824 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/embedded.scm (openocd): Update to 0.12.0.
[inputs]: Remove libusb-compat as openocd dropped support for libusb0.
Signed-off-by: Jean-Pierre De Jesus DIAZ <jean <at> foundationdevices.com>
---
gnu/packages/embedded.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/embedded.scm b/gnu/packages/embedded.scm
index 6efecf9700..215007dd31 100644
--- a/gnu/packages/embedded.scm
+++ b/gnu/packages/embedded.scm
@@ -573,7 +573,7 @@ (define-public jimtcl
(define-public openocd
(package
(name "openocd")
- (version "0.11.0")
+ (version "0.12.0")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -582,7 +582,7 @@ (define-public openocd
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
- "0qi4sixwvw1i7c64sy221fsjs82qf3asmdk86g74ds2jjm3f8pzp"))))
+ "09wb11zlmrw6rx1bql3kafgi3ilzp9mhvb6j6rql216by06csing"))))
(build-system gnu-build-system)
(native-inputs
(list autoconf
@@ -592,7 +592,7 @@ (define-public openocd
pkg-config
texinfo))
(inputs
- (list hidapi jimtcl libftdi libjaylink libusb-compat openssl))
+ (list hidapi jimtcl libftdi libjaylink openssl))
(arguments
'(#:configure-flags
(append (list "LIBS=-lutil -lcrypto -lssl"
--
2.34.1
Reply sent
to
Efraim Flashner <efraim <at> flashner.co.il>
:
You have taken responsibility.
(Tue, 06 Jun 2023 06:59:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Jean-Pierre De Jesus DIAZ <jean <at> foundationdevices.com>
:
bug acknowledged by developer.
(Tue, 06 Jun 2023 06:59:02 GMT)
Full text and
rfc822 format available.
Message #19 received at 63824-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Looks good. Patch pushed!
--
Efraim Flashner <efraim <at> flashner.co.il> רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[signature.asc (application/pgp-signature, inline)]
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Tue, 04 Jul 2023 11:24:07 GMT)
Full text and
rfc822 format available.
This bug report was last modified 1 year and 348 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.