GNU bug report logs - #45079
[PATCH 1/3] gnu: Add rust-aom-sys-0.2.

Previous Next

Package: guix-patches;

Reported by: Antoine Côté <antoine.cote <at> posteo.net>

Date: Sun, 6 Dec 2020 16:41:03 UTC

Severity: normal

Tags: patch

Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>

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 45079 in the body.
You can then email your comments to 45079 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#45079; Package guix-patches. (Sun, 06 Dec 2020 16:41:03 GMT) Full text and rfc822 format available.

Acknowledgement sent to Antoine Côté <antoine.cote <at> posteo.net>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 06 Dec 2020 16:41:03 GMT) Full text and rfc822 format available.

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

From: Antoine Côté <antoine.cote <at> posteo.net>
To: guix-patches <at> gnu.org
Subject: [PATCH 1/3] gnu: Add rust-aom-sys-0.2.
Date: Sun, 6 Dec 2020 09:45:50 -0500
[Message part 1 (text/plain, inline)]
* gnu/packages/crates-graphics.scm (rust-aom-sys-0.2): New variable.
(rust-aom-sys-0.1): Inherit from rust-aom-sys-0.2.
---
gnu/packages/crates-graphics.scm | 37 +++++++++++++++++++++++++++-----
1 file changed, 32 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/crates-graphics.scm
b/gnu/packages/crates-graphics.scm
index 9a755d46b4..02bf7b27a4 100644
--- a/gnu/packages/crates-graphics.scm
+++ b/gnu/packages/crates-graphics.scm
@@ -9,6 +9,7 @@
;;; Copyright © 2020 Tobias Geerinckx-Rice <me <at> tobias.gr>
;;; Copyright © 2020 Leo Famulari <leo <at> famulari.name>
;;; Copyright © 2020 Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
+;;; Copyright © 2020 Antoine Côté <antoine.cote <at> posteo.net>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -167,8 +168,38 @@ text or blue underlined text, on ANSI terminals.")
"1xif1bh938qpfc3d0f9xgidibpm65xix11w9gszwqnia00q7rb13"))))
(arguments `())))
+(define-public rust-aom-sys-0.2
+ (package
+ (name "rust-aom-sys")
+ (version "0.2.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "aom-sys" version))
+ (file-name
+ (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "03a0xhaafjn0hlpcf9ba73hv557m0jqnmj9wl57wzrcnka96zvgj"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs
+ (("rust-bindgen" ,rust-bindgen-0.54)
+ ("rust-metadeps" ,rust-metadeps-1.1))))
+ (native-inputs
+ `(("pkg-config" ,pkg-config)))
+ (inputs
+ `(("libaom" ,libaom)
+ ("clang" ,clang)
+ ("llvm" ,llvm)))
+ (home-page "https://github.com/rust-av/aom-rs")
+ (synopsis "FFI bindings to aom")
+ (description "This package provides FFI bindings to aom.")
+ (license license:expat)))
+
(define-public rust-aom-sys-0.1
(package
+ (inherit rust-aom-sys-0.2)
(name "rust-aom-sys")
(version "0.1.4")
(source
@@ -190,11 +221,7 @@ text or blue underlined text, on ANSI terminals.")
(inputs
`(("libaom" ,libaom)
("clang" ,clang)
- ("llvm" ,llvm)))
- (home-page "https://github.com/rust-av/aom-rs")
- (synopsis "FFI bindings to aom")
- (description "This package provides FFI bindings to aom.")
- (license license:expat)))
+ ("llvm" ,llvm)))))
(define-public rust-ascii-canvas-2
(package

-- 
2.29.2


[signature.asc (application/pgp-signature, attachment)]

Information forwarded to guix-patches <at> gnu.org:
bug#45079; Package guix-patches. (Sun, 06 Dec 2020 17:23:02 GMT) Full text and rfc822 format available.

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

From: Antoine Côté <antoine.cote <at> posteo.net>
To: 45079 <at> debbugs.gnu.org
Subject: [PATCH 2/3] gnu: Add rust-nasm-rs-0.2.
Date: Sun, 6 Dec 2020 12:21:34 -0500
[Message part 1 (text/plain, inline)]
* gnu/packages/crate-io.scm (rust-nasm-rs-0.2): New variable.
(rust-nasm-rs-0.1): Inherit from rust-nasm-rs-0.2.
---
gnu/packages/crates-io.scm | 31 ++++++++++++++++++++++++++-----
1 file changed, 26 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index eb39a04e23..09a4dfdccc 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -11,6 +11,7 @@
;;; Copyright © 2020 Gabriel Arazas <foo.dogsquared <at> gmail.com>
;;; Copyright © 2020 André Batista <nandre <at> riseup.net>
;;; Copyright © 2020 Arun Isaac <arunisaac <at> systemreboot.net>
+;;; Copyright © 2020 Antoine Côté <antoine.cote <at> posteo.net>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -16177,8 +16178,32 @@ a default trait implementation you've defined.")
libmysqlclient.")
(license (list license:expat license:asl2.0))))
+(define-public rust-nasm-rs-0.2
+ (package
+ (name "rust-nasm-rs")
+ (version "0.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "nasm-rs" version))
+ (file-name
+ (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1lgc3gg32hj4pcbfp07vzwy013smdm27469fyy4rqgyil3x46vx7"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs
+ (("rust-arrayvec" ,rust-arrayvec-0.5)
+ ("rust-rayon" ,rust-rayon-1))))
+ (home-page "https://github.com/medek/nasm-rs")
+ (synopsis "Run NASM during your Cargo build")
+ (description "Run NASM during your Cargo build.")
+ (license (list license:expat license:asl2.0))))
+
(define-public rust-nasm-rs-0.1
(package
+ (inherit rust-nasm-rs-0.2)
(name "rust-nasm-rs")
(version "0.1.7")
(source
@@ -16194,11 +16219,7 @@ libmysqlclient.")
(arguments
`(#:skip-build? #t
#:cargo-inputs
- (("rust-rayon" ,rust-rayon-1))))
- (home-page "https://github.com/medek/nasm-rs")
- (synopsis "Run NASM during your Cargo build")
- (description "Run NASM during your Cargo build.")
- (license (list license:expat license:asl2.0))))
+ (("rust-rayon" ,rust-rayon-1))))))
(define-public rust-nalgebra-0.21
(package

-- 
2.29.2






[signature.asc (application/pgp-signature, attachment)]

Information forwarded to guix-patches <at> gnu.org:
bug#45079; Package guix-patches. (Sun, 06 Dec 2020 17:24:02 GMT) Full text and rfc822 format available.

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

From: Antoine Côté <antoine.cote <at> posteo.net>
To: 45079 <at> debbugs.gnu.org
Subject: [PATCH 3/3] gnu: rav1e: Update to 0.3.4.
Date: Sun, 6 Dec 2020 12:23:36 -0500
[Message part 1 (text/plain, inline)]
* gnu/packages/video.scm (rav1e): Update to 0.3.4.
[arguments]: In cargo-inputs replace rust-aom-sys-0.1 with 0.2,
rust-nasm-rs-0.1 with 0.2.
---
gnu/packages/video.scm | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 4a8ff1d40d..56c2b244a0 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -46,6 +46,7 @@
;;; Copyright © 2020 Brett Gilio <brettg <at> gnu.org>
;;; Copyright © 2020 Alexandru-Sergiu Marton <brown121407 <at> posteo.ro>
;;; Copyright © 2020 Ivan Kozlov <kanichos <at> yandex.ru>
+;;; Copyright © 2020 Antoine Côté <antoine.cote <at> posteo.net>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -4637,7 +4638,7 @@ result in several formats:
(define-public rav1e
(package
(name "rav1e")
- (version "0.3.3")
+ (version "0.3.4")
(source
(origin
(method url-fetch)
@@ -4646,17 +4647,18 @@ result in several formats:
(string-append name "-" version ".tar.gz"))
(sha256
(base32
- "053bh8hc6jj81ydq4gcak01b0ady59hvkl7d87im3y8nafg7xzb4"))))
+ "1mx6jlx2rdhmyh68h9h34kn9ssa7lv0y97j8fd9qm7qhs2q1n0cj"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
- (("rust-aom-sys" ,rust-aom-sys-0.1)
+ (("rust-aom-sys" ,rust-aom-sys-0.2)
("rust-arbitrary" ,rust-arbitrary-0.2)
("rust-arg-enum-proc-macro" ,rust-arg-enum-proc-macro-0.3)
("rust-arrayvec" ,rust-arrayvec-0.5)
("rust-backtrace" ,rust-backtrace-0.3)
("rust-bitstream-io" ,rust-bitstream-io-0.8)
("rust-byteorder" ,rust-byteorder-1)
+ ("rust-cc" ,rust-cc-1)
("rust-cfg-if" ,rust-cfg-if-0.1)
("rust-clap" ,rust-clap-2)
("rust-console" ,rust-console-0.11)
@@ -4668,6 +4670,7 @@ result in several formats:
("rust-ivf" ,rust-ivf-0.1)
("rust-libc" ,rust-libc-0.2)
("rust-log" ,rust-log-0.4)
+ ("rust-nasm-rs" ,rust-nasm-rs-0.2)
("rust-noop-proc-macro" ,rust-noop-proc-macro-0.2)
("rust-num-derive" ,rust-num-derive-0.3)
("rust-num-traits" ,rust-num-traits-0.2)
@@ -4676,17 +4679,15 @@ result in several formats:
("rust-rand-chacha" ,rust-rand-chacha-0.2)
("rust-rayon" ,rust-rayon-1)
("rust-rust-hawktracer" ,rust-rust-hawktracer-0.7)
+ ("rust-rustc-version" ,rust-rustc-version-0.2)
("rust-scan-fmt" ,rust-scan-fmt-0.2)
("rust-serde" ,rust-serde-1)
("rust-signal-hook" ,rust-signal-hook-0.1)
("rust-simd-helpers" ,rust-simd-helpers-0.1)
("rust-thiserror" ,rust-thiserror-1)
("rust-toml" ,rust-toml-0.5)
- ("rust-y4m" ,rust-y4m-0.5)
- ("rust-cc" ,rust-cc-1)
- ("rust-nasm-rs" ,rust-nasm-rs-0.1)
- ("rust-rustc-version" ,rust-rustc-version-0.2)
- ("rust-vergen" ,rust-vergen-3.1))
+ ("rust-vergen" ,rust-vergen-3.1)
+ ("rust-y4m" ,rust-y4m-0.5))
#:cargo-development-inputs
(("rust-assert-cmd" ,rust-assert-cmd-1)
("rust-criterion" ,rust-criterion-0.3)

-- 
2.29.2


[signature.asc (application/pgp-signature, attachment)]

Reply sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
You have taken responsibility. (Mon, 07 Dec 2020 08:51:02 GMT) Full text and rfc822 format available.

Notification sent to Antoine Côté <antoine.cote <at> posteo.net>:
bug acknowledged by developer. (Mon, 07 Dec 2020 08:51:02 GMT) Full text and rfc822 format available.

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

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: Antoine Côté <antoine.cote <at> posteo.net>
Cc: 45079-done <at> debbugs.gnu.org
Subject: Re: [bug#45079] [PATCH 3/3] gnu: rav1e: Update to 0.3.4.
Date: Mon, 07 Dec 2020 09:50:38 +0100
Hello,

Antoine Côté <antoine.cote <at> posteo.net> writes:

> * gnu/packages/video.scm (rav1e): Update to 0.3.4.
> [arguments]: In cargo-inputs replace rust-aom-sys-0.1 with 0.2,
> rust-nasm-rs-0.1 with 0.2.

Applied from another bug report.

Regards,




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Mon, 04 Jan 2021 12:24:13 GMT) Full text and rfc822 format available.

This bug report was last modified 4 years and 171 days ago.

Previous Next


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