Received: from mail-pj1-f45.google.com (mail-pj1-f45.google.com [209.85.216.45]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 72C087807A5 for <~alpine/aports@lists.alpinelinux.org>; Fri, 3 Jun 2022 20:54:37 +0000 (UTC) Received: by mail-pj1-f45.google.com with SMTP id gd1so8201530pjb.2 for <~alpine/aports@lists.alpinelinux.org>; Fri, 03 Jun 2022 13:54:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=lCBfw7XS3MW9Oxd/EaJtQz04zEtSniWgoRcF34/WeSA=; b=Mi42/MqG6o5KMRLsYuyPbQqIox8bEKcXAesE3+yk1h/17a5lbOHElKvuJNmQPzQKIM iU/Ch1CZ6M/kGFhwUQHz0N5ZSQhKVFlXDlAB2UI5ipanHexgERB/dNyKzLeY288/+ao8 bBRS6Vv1Q4F1NjRmuoUbeO8tSKTEqXHTu9NA0VvGbWUE3gU0XtSqsK0uYTzbW7LpWGrS buIGR+KL2oSR34YgNDAq1WCWKji1NMCcxiwgIAWox5HA5kU2IlLS8E1vVDirrvq34+Ef t9rOVSqvbycy8YABNTittDgp9zO802ZcIkqg0Wsxcpe4qCZM+4XHdPaV6uepedTwboBA jsjQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=lCBfw7XS3MW9Oxd/EaJtQz04zEtSniWgoRcF34/WeSA=; b=Jeeh35kT8UHtZKUTykY8tLcV5NUvFESqMwBwPvQWFRvGyomsJoByZF51t92NMXjU5o nC4Os+a+FMfGuGuX2dimrM+A4y/NWL7IPIpz+9mdpUhdJMFNtDqEVanQh9/LpR482586 hjXvwk3i3eT2LFp6C30dtmgViOJ25UbXl3zQ9SOH0dlNHQp1laaWmpbrFmBzGbE7gj6G vtovwz35uq8XhhHTiYuNTRdNoqyBfVc5K8KFf72GJNM5dkqIuFtChyMw5taPwpbIxV8N bXOMijVZtSraXWk4qxf8/h333Tm1RFMVzw7L5L3VUqGhq2c+cCwzyv+5P/zcY9l/2hdK 0DZA== X-Gm-Message-State: AOAM533Ym7sUk/maBuxuTsjhi7BMnAncyKIAxRZIBC0CBqHrCkLPGAji WdgfHwYGg+TYHEVWfCo1EE9aUtn3YLc= X-Google-Smtp-Source: ABdhPJxMIIl6jSB1Xe0yEqsQDv4l2qiyGePAVD5xzg6xwMVcOdWgDmzY5jldF621jITgJ7WrCtNGqQ== X-Received: by 2002:a17:90a:14a5:b0:1e0:af2a:50ee with SMTP id k34-20020a17090a14a500b001e0af2a50eemr48125294pja.66.1654289675095; Fri, 03 Jun 2022 13:54:35 -0700 (PDT) Received: from mitulo.lan ([2601:645:8700:2a8b:ba27:ebff:fe5d:3bf5]) by smtp.gmail.com with ESMTPSA id n9-20020a170902968900b0016372486febsm5764938plp.297.2022.06.03.13.54.33 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 03 Jun 2022 13:54:34 -0700 (PDT) From: Eric Roshan-Eisner To: ~alpine/aports@lists.alpinelinux.org Cc: thinkabit.ukim@gmail.com, Eric Roshan-Eisner Subject: [PATCH] testing/b3sum: enable for armhf Date: Fri, 3 Jun 2022 13:54:18 -0700 Message-Id: <20220603205419.15813-1-eric.d.eisner@gmail.com> X-Mailer: git-send-email 2.36.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Previously the APKBUILD enabled neon instructions which are not supported for armv6. Upstream has since added broken auto-detection of arm version, which unintentionally ignores the neon flag for armv6. https://github.com/BLAKE3-team/BLAKE3/commit/0a0bb7126e9207d3bb3d9af0f0b5ae646d532cf2 Don't set the flag for armhf in case they "fix" this bug. --- testing/b3sum/APKBUILD | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/testing/b3sum/APKBUILD b/testing/b3sum/APKBUILD index 4b365727a2..93f6e7e846 100644 --- a/testing/b3sum/APKBUILD +++ b/testing/b3sum/APKBUILD @@ -2,17 +2,16 @@ # Maintainer: pkgname=b3sum pkgver=1.3.1 -pkgrel=0 +pkgrel=1 pkgdesc="Command line implementation of the BLAKE3 hash function" url="https://blake3.io" -# armhf: 'vaddq_u32': target specific option mismatch -arch="all !s390x !armhf !riscv64" +arch="all !s390x !riscv64" license="CC0-1.0 OR Apache-2.0" makedepends="cargo" source="b3sum-$pkgver.tar.gz::https://crates.io/api/v1/crates/b3sum/$pkgver/download" case "$CARCH" in - arm*) _features="neon" ;; + armv7) _features="neon" ;; esac build() { -- 2.36.1