Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 22 Apr 2023 14:45:26 GMT
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 2d7d9f7ed9d7 - main - security/authenticator: mark BROKEN on i386 after 8cc97869cbf5
Message-ID:  <202304221445.33MEjQvc039853@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by jbeich:

URL: https://cgit.FreeBSD.org/ports/commit/?id=2d7d9f7ed9d73fe13c25f8d9ea67dc447295f880

commit 2d7d9f7ed9d73fe13c25f8d9ea67dc447295f880
Author:     Jan Beich <jbeich@FreeBSD.org>
AuthorDate: 2023-04-22 14:38:49 +0000
Commit:     Jan Beich <jbeich@FreeBSD.org>
CommitDate: 2023-04-22 14:40:04 +0000

    security/authenticator: mark BROKEN on i386 after 8cc97869cbf5
    
    error[E0277]: the trait bound `[core::arch::x86::__m128i; 11]: Zeroize` is not satisfied
       --> cargo-crates/aes-0.8.2/src/ni.rs:195:43
        |
    195 |                   zeroize::Zeroize::zeroize(&mut self.round_keys);
        |                   ------------------------- ^^^^^^^^^^^^^^^^^^^^ the trait `Zeroize` is not implemented for `[core::arch::x86::__m128i; 11]`
        |                   |
        |                   required by a bound introduced by this call
    ...
    330 | / define_aes_impl!(
    331 | |     Aes128,
    332 | |     Aes128Enc,
    333 | |     Aes128Dec,
    ...   |
    338 | |     "AES-128",
    339 | | );
        | |_- in this macro invocation
        |
        = help: the following other types implement trait `Zeroize`:
                  [MaybeUninit<Z>]
                  [Z; N]
                  [Z]
        = note: this error originates in the macro `define_aes_impl` (in Nightly builds, run with -Z macro-backtrace for more info)
    
    error[E0277]: the trait bound `[core::arch::x86::__m128i; 11]: Zeroize` is not satisfied
       --> cargo-crates/aes-0.8.2/src/ni.rs:269:43
        |
    269 |                   zeroize::Zeroize::zeroize(&mut self.round_keys);
        |                   ------------------------- ^^^^^^^^^^^^^^^^^^^^ the trait `Zeroize` is not implemented for `[core::arch::x86::__m128i; 11]`
        |                   |
        |                   required by a bound introduced by this call
    ...
    330 | / define_aes_impl!(
    331 | |     Aes128,
    332 | |     Aes128Enc,
    333 | |     Aes128Dec,
    ...   |
    338 | |     "AES-128",
    339 | | );
        | |_- in this macro invocation
        |
        = help: the following other types implement trait `Zeroize`:
                  [MaybeUninit<Z>]
                  [Z; N]
                  [Z]
        = note: this error originates in the macro `define_aes_impl` (in Nightly builds, run with -Z macro-backtrace for more info)
    
    error[E0277]: the trait bound `[core::arch::x86::__m128i; 13]: Zeroize` is not satisfied
       --> cargo-crates/aes-0.8.2/src/ni.rs:195:43
        |
    195 |                   zeroize::Zeroize::zeroize(&mut self.round_keys);
        |                   ------------------------- ^^^^^^^^^^^^^^^^^^^^ the trait `Zeroize` is not implemented for `[core::arch::x86::__m128i; 13]`
        |                   |
        |                   required by a bound introduced by this call
    ...
    341 | / define_aes_impl!(
    342 | |     Aes192,
    343 | |     Aes192Enc,
    344 | |     Aes192Dec,
    ...   |
    349 | |     "AES-192",
    350 | | );
        | |_- in this macro invocation
        |
        = help: the following other types implement trait `Zeroize`:
                  [MaybeUninit<Z>]
                  [Z; N]
                  [Z]
        = note: this error originates in the macro `define_aes_impl` (in Nightly builds, run with -Z macro-backtrace for more info)
    
    error[E0277]: the trait bound `[core::arch::x86::__m128i; 13]: Zeroize` is not satisfied
       --> cargo-crates/aes-0.8.2/src/ni.rs:269:43
        |
    269 |                   zeroize::Zeroize::zeroize(&mut self.round_keys);
        |                   ------------------------- ^^^^^^^^^^^^^^^^^^^^ the trait `Zeroize` is not implemented for `[core::arch::x86::__m128i; 13]`
        |                   |
        |                   required by a bound introduced by this call
    ...
    341 | / define_aes_impl!(
    342 | |     Aes192,
    343 | |     Aes192Enc,
    344 | |     Aes192Dec,
    ...   |
    349 | |     "AES-192",
    350 | | );
        | |_- in this macro invocation
        |
        = help: the following other types implement trait `Zeroize`:
                  [MaybeUninit<Z>]
                  [Z; N]
                  [Z]
        = note: this error originates in the macro `define_aes_impl` (in Nightly builds, run with -Z macro-backtrace for more info)
    
    error[E0277]: the trait bound `[core::arch::x86::__m128i; 15]: Zeroize` is not satisfied
       --> cargo-crates/aes-0.8.2/src/ni.rs:195:43
        |
    195 |                   zeroize::Zeroize::zeroize(&mut self.round_keys);
        |                   ------------------------- ^^^^^^^^^^^^^^^^^^^^ the trait `Zeroize` is not implemented for `[core::arch::x86::__m128i; 15]`
        |                   |
        |                   required by a bound introduced by this call
    ...
    352 | / define_aes_impl!(
    353 | |     Aes256,
    354 | |     Aes256Enc,
    355 | |     Aes256Dec,
    ...   |
    360 | |     "AES-256",
    361 | | );
        | |_- in this macro invocation
        |
        = help: the following other types implement trait `Zeroize`:
                  [MaybeUninit<Z>]
                  [Z; N]
                  [Z]
        = note: this error originates in the macro `define_aes_impl` (in Nightly builds, run with -Z macro-backtrace for more info)
    
    error[E0277]: the trait bound `[core::arch::x86::__m128i; 15]: Zeroize` is not satisfied
       --> cargo-crates/aes-0.8.2/src/ni.rs:269:43
        |
    269 |                   zeroize::Zeroize::zeroize(&mut self.round_keys);
        |                   ------------------------- ^^^^^^^^^^^^^^^^^^^^ the trait `Zeroize` is not implemented for `[core::arch::x86::__m128i; 15]`
        |                   |
        |                   required by a bound introduced by this call
    ...
    352 | / define_aes_impl!(
    353 | |     Aes256,
    354 | |     Aes256Enc,
    355 | |     Aes256Dec,
    ...   |
    360 | |     "AES-256",
    361 | | );
        | |_- in this macro invocation
        |
        = help: the following other types implement trait `Zeroize`:
                  [MaybeUninit<Z>]
                  [Z; N]
                  [Z]
        = note: this error originates in the macro `define_aes_impl` (in Nightly builds, run with -Z macro-backtrace for more info)
    
    For more information about this error, try `rustc --explain E0277`.
    error: could not compile `aes` due to 6 previous errors
---
 security/authenticator/Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/security/authenticator/Makefile b/security/authenticator/Makefile
index 54a4c6175f2f..697385afcbdd 100644
--- a/security/authenticator/Makefile
+++ b/security/authenticator/Makefile
@@ -9,6 +9,8 @@ WWW=		https://gitlab.gnome.org/World/Authenticator
 LICENSE=	GPLv3+
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
+BROKEN_i386=	fails to build in aes crate
+
 LIB_DEPENDS=	libgraphene-1.0.so:graphics/graphene \
 		libzbar.so:graphics/zbar \
 		libpipewire-0.3.so:multimedia/pipewire



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202304221445.33MEjQvc039853>