Skip to content

Commit

Permalink
Drop 32-bit environments from some rust-based packages
Browse files Browse the repository at this point in the history
  • Loading branch information
MehdiChinoune committed Jan 8, 2024
1 parent fd6c570 commit 4dcc9c1
Show file tree
Hide file tree
Showing 28 changed files with 81 additions and 104 deletions.
6 changes: 3 additions & 3 deletions mingw-w64-bat/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ pkgver=0.24.0
pkgrel=2
pkgdesc="Cat clone with syntax highlighting and git integration (mingw-w64)"
arch=('any')
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clangarm64' 'clang32')
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
url='https://github.com/sharkdp/bat'
msys2_references=(
'archlinux: bat'
)
url='https://github.com/sharkdp/bat'
license=('spdx:MIT OR Apache-2.0')
depends=(
"${MINGW_PACKAGE_PREFIX}-libgit2"
Expand All @@ -21,7 +21,7 @@ depends=(
makedepends=(
"${MINGW_PACKAGE_PREFIX}-rust"
)
source=("${_realname}-${pkgver}.tar.gz::https://github.com/sharkdp/bat/archive/refs/tags/v${pkgver}.tar.gz")
source=("https://github.com/sharkdp/bat/archive/v${pkgver}/${_realname}-${pkgver}.tar.gz")
sha256sums=('907554a9eff239f256ee8fe05a922aad84febe4fe10a499def72a4557e9eedfb')

prepare() {
Expand Down
6 changes: 3 additions & 3 deletions mingw-w64-bottom/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ pkgname=$MINGW_PACKAGE_PREFIX-$_realname
pkgver=0.9.6
pkgrel=1
pkgdesc="A graphical process/system monitor (mingw-w64)"
url="https://github.com/ClementTsang/bottom"
arch=(any)
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32' 'clangarm64')
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
url="https://github.com/ClementTsang/bottom"
license=('spdx:MIT')
makedepends=($MINGW_PACKAGE_PREFIX-rust tree)
makedepends=("$MINGW_PACKAGE_PREFIX-rust" "tree")
source=("$url/archive/$pkgver/$_realname-$pkgver.tar.gz"
"$url/releases/download/$pkgver/completion.tar.gz"
"$url/releases/download/$pkgver/manpage.tar.gz"
Expand Down
6 changes: 3 additions & 3 deletions mingw-w64-cargo-generate/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ pkgver=0.19.0
pkgrel=1
pkgdesc="Use pre-existing git repositories as templates (mingw-w64)"
arch=('any')
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32' 'clangarm64')
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
url="https://github.com/cargo-generate/cargo-generate"
license=('spdx:MIT' 'spdx:Apache-2.0')
license=('spdx:MIT OR Apache-2.0')
makedepends=("${MINGW_PACKAGE_PREFIX}-rust"
"${MINGW_PACKAGE_PREFIX}-mdbook")
source=("$_realname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
source=("$url/archive/v$pkgver/$_realname-$pkgver.tar.gz")
sha256sums=('520e7a98bf82f368e911c14e774f8ef16a4c8ffd785d492c9d518ee563dc3864')

prepare() {
Expand Down
7 changes: 3 additions & 4 deletions mingw-w64-cargo-local-registry/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,11 @@ pkgver=0.2.6
pkgrel=2
pkgdesc="A cargo subcommand to manage local registries (mingw-w64)"
arch=('any')
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clangarm64' 'clang32')
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
url="https://github.com/dhovart/cargo-local-registry"
license=('MIT' 'Apache')
license=('spdx:MIT OR Apache-2.0')
makedepends=("${MINGW_PACKAGE_PREFIX}-rust")
options=('staticlibs' 'strip')
source=("$_realname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
source=("$url/archive/$pkgver/$_realname-$pkgver.tar.gz")
sha256sums=('b42e4904e4db100c27d81cf94a034438b20ae6dbb34d0fee39012f2d548680ca')

prepare() {
Expand Down
7 changes: 3 additions & 4 deletions mingw-w64-cargo-tauri/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@ pkgver=1.5.9
pkgrel=1
pkgdesc="Command line interface for building Tauri apps (mingw-w64)"
arch=('any')
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32' 'clangarm64')
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
url="https://github.com/tauri-apps/tauri"
license=('MIT' 'Apache')
license=('spdx:MIT OR Apache-2.0')
makedepends=("${MINGW_PACKAGE_PREFIX}-rust")
options=('staticlibs' 'strip')
source=("${_basename}-${_basename}-cli-v${pkgver}.tar.gz::${url}/archive/${_basename}-cli-v${pkgver}.tar.gz")
source=("${url}/archive/${_basename}-cli-v${pkgver}/${_basename}-${_basename}-cli-v${pkgver}.tar.gz")
noextract=("${_basename}-${_basename}-cli-v${pkgver}.tar.gz")
sha256sums=('292d7ffb7ba70d34281688888532375fe90e0349eafe68ff9b74d942e6bbe30e')

Expand Down
4 changes: 2 additions & 2 deletions mingw-w64-czkawka/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ pkgname=("${MINGW_PACKAGE_PREFIX}-${_realname}-cli"
pkgver=6.1.0
pkgrel=1
pkgdesc="Multi functional app to find duplicates, empty folders, similar images etc (mingw-w64)"
url='https://github.com/qarmin/czkawka'
arch=('any')
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang32' 'clang64' 'clangarm64')
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
url='https://github.com/qarmin/czkawka'
license=('spdx:MIT')
depends=("${MINGW_PACKAGE_PREFIX}-bzip2"
"${MINGW_PACKAGE_PREFIX}-cairo"
Expand Down
6 changes: 3 additions & 3 deletions mingw-w64-delta/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ pkgver=0.16.5
pkgrel=1
pkgdesc='A syntax-highlighting pager for git and diff output (mingw-w64)'
arch=('any')
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32' 'clangarm64')
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
url="https://github.com/dandavison/delta"
license=('spdx:MIT')
msys2_references=(
'archlinux: git-delta'
'aur'
'cygwin'
)
license=('spdx:MIT')
depends=('git')
makedepends=("${MINGW_PACKAGE_PREFIX}-rust")
source=("https://github.com/dandavison/delta/archive/refs/tags/$pkgver.tar.gz"
source=("https://github.com/dandavison/delta/archive/$pkgver/${_realname}-${pkgver}.tar.gz"
"ntapi-link-ntdll-arm64.patch")
sha256sums=('00d4740e9da4f543f34a2a0503615f8190d307d1180dfb753b6911aa6940197f'
'c17674896bd2cd559fdf48812200096e5dcd93160874c05a46f21585d8202f16')
Expand Down
4 changes: 2 additions & 2 deletions mingw-w64-dust/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ pkgver=0.8.6
pkgrel=2
pkgdesc="A more intuitive version of du in rust (mingw-w64)"
arch=('any')
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32' 'clangarm64')
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
url='https://github.com/bootandy/dust'
license=(spdx:Apache-2.0)
makedepends=(
"${MINGW_PACKAGE_PREFIX}-rust"
)
depends=("${MINGW_PACKAGE_PREFIX}-gcc-libs")
source=("${_realname}-${pkgver}.tar.gz::${url}/archive/refs/tags/v${pkgver}.tar.gz"
source=("${url}/archive/v${pkgver}/${_realname}-${pkgver}.tar.gz"
"ntapi-link-ntdll-arm64.patch")
sha256sums=('feede818e814011207c5bfeaf06dd9fc95825c59ab70942aa9b9314791c5d6b6'
'4a6a64884fd7e3da96b1df71adfe12fc909cd85470eb382d6282f5e2b5645fe1')
Expand Down
4 changes: 2 additions & 2 deletions mingw-w64-helix/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ pkgver=23.10
pkgrel=1
pkgdesc="A post-modern modal text editor (mingw-w64)"
arch=('any')
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clangarm64')
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
url="https://github.com/helix-editor/helix"
license=('spdx:MPL-2.0')
makedepends=("${MINGW_PACKAGE_PREFIX}-rust"
"${MINGW_PACKAGE_PREFIX}-mdbook"
"git")
source=("$_realname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz"
source=("$url/archive/$pkgver/${_realname}-${pkgver}.tar.gz"
'helix.sh')
noextract=("${_realname}-${pkgver}.tar.gz")
sha256sums=('a1a98b24692ba8fc648245bebc3511b27eb4edf9eb97d97d8aed7157316d01e8'
Expand Down
8 changes: 4 additions & 4 deletions mingw-w64-hyperfine/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# Maintainer: Wu Zhenyu <[email protected]>
_realname=hyperfine

_realname=hyperfine
pkgbase=mingw-w64-$_realname
pkgname=$MINGW_PACKAGE_PREFIX-$_realname
pkgver=1.18.0
pkgrel=1
pkgdesc='A command-line benchmarking tool (mingw-w64)'
arch=(any)
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32' 'clangarm64')
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
url='https://github.com/sharkdp/hyperfine'
makedepends=($MINGW_PACKAGE_PREFIX-rust)
license=('spdx:MIT OR Apache-2.0')
source=("$url/archive/v$pkgver.tar.gz")
makedepends=($MINGW_PACKAGE_PREFIX-rust)
source=("$url/archive/v$pkgver/${_realname}-${pkgver}.tar.gz")
sha256sums=('fea7b92922117ed04b9c84bb9998026264346768804f66baa40743c5528bed6b')

prepare() {
Expand Down
6 changes: 3 additions & 3 deletions mingw-w64-keepawake/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ pkgver=0.4.5
pkgrel=1
pkgdesc="Keep your computer awake (mingw-w64)"
arch=('any')
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang32' 'clang64' 'clangarm64')
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
url="https://github.com/segevfiner/keepawake-rs"
license=('spdx:MIT')
msys2_references=(
'aur'
)
license=('spdx:MIT')
makedepends=("${MINGW_PACKAGE_PREFIX}-rust")
options=('!strip') # upstream strips while building
source=("https://github.com/segevfiner/keepawake-rs/archive/refs/tags/v${pkgver}/${_realname}-rs-${pkgver}.tar.gz")
source=("https://github.com/segevfiner/keepawake-rs/archive/v${pkgver}/${_realname}-rs-${pkgver}.tar.gz")
sha256sums=('bb3960e4aea90ae8a9fc6a0044d820d1c8443e29dc9f7936c26012999d5f0365')

prepare() {
Expand Down
5 changes: 2 additions & 3 deletions mingw-w64-mdbook-pikchr/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,11 @@ pkgver=0.1.7
pkgrel=1
pkgdesc="A mdbook preprocessor to render pikchr code blocks as images in your book (mingw-w64)"
arch=('any')
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32' 'clangarm64')
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
url="https://github.com/podsvirov/mdbook-pikchr"
license=('MIT')
license=('spdx:MIT')
depends=("${MINGW_PACKAGE_PREFIX}-mdbook")
makedepends=("${MINGW_PACKAGE_PREFIX}-rust")
options=('staticlibs' 'strip')
source=("${_realname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
sha256sums=('e3f1bcba19db94fa66ea12152e7082de0e1ad6171b1fd6638f2b65a9cfbb5b60')

Expand Down
5 changes: 2 additions & 3 deletions mingw-w64-mdbook/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,12 @@ pkgver=0.4.36
pkgrel=1
pkgdesc="Create book from markdown files, like Gitbook but implemented in Rust (mingw-w64)"
arch=('any')
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32' 'clangarm64')
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
url="https://github.com/rust-lang/mdBook"
license=('spdx:MPL-2.0')
makedepends=("${MINGW_PACKAGE_PREFIX}-rust")
optdepends=("${MINGW_PACKAGE_PREFIX}-mdbook-pikchr: To render pikchr code blocks as image")
options=('staticlibs' 'strip')
source=("$_realName-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
source=("$url/archive/v$pkgver/$_realName-$pkgver.tar.gz")
sha256sums=('dd47214172ecf95e1b2cbcbebb8428d0b029e0de5dce74204b3c3a91f26223a1')

prepare() {
Expand Down
4 changes: 2 additions & 2 deletions mingw-w64-minidump-stackwalk/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ pkgver=0.19.1
pkgrel=1
pkgdesc="Provides both machine-readable and human-readable digests of a minidump, with backtraces and symbolication (mingw-w64)"
arch=('any')
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32' 'clangarm64')
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
url='https://github.com/rust-minidump/rust-minidump/tree/main/minidump-stackwalk'
license=('spdx:MIT')
makedepends=(
"${MINGW_PACKAGE_PREFIX}-rust"
)
source=("${_realname}-${pkgver}.tar.gz::https://github.com/rust-minidump/rust-minidump/archive/v${pkgver}.tar.gz")
source=("https://github.com/rust-minidump/rust-minidump/archive/v${pkgver}/${_realname}-${pkgver}.tar.gz")
sha256sums=('bf8d8f69318ff5687c48bd51623bd434a3210ed16c708a02be797c1f3003fe3f')

prepare() {
Expand Down
8 changes: 4 additions & 4 deletions mingw-w64-onefetch/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ pkgname=$MINGW_PACKAGE_PREFIX-$_realname
pkgver=2.19.0
pkgrel=1
pkgdesc="Git repository summary on your terminal (mingw-w64)"
arch=(any)
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
url="https://github.com/o2sh/onefetch"
license=('spdx:MIT')
msys2_references=(
'archlinux: onefetch'
)
arch=(any)
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32' 'clangarm64')
license=('spdx:MIT')
depends=("$MINGW_PACKAGE_PREFIX-libgit2")
makedepends=("$MINGW_PACKAGE_PREFIX-rust"
"$MINGW_PACKAGE_PREFIX-cmake")
source=("$_realname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
source=("$url/archive/$pkgver/$_realname-$pkgver.tar.gz")
sha256sums=('e6aa7504730de86f307d6c3671875b11a447a4088daf74df280c8f644dea4819')

prepare() {
Expand Down
4 changes: 2 additions & 2 deletions mingw-w64-python-jellyfish/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ pkgver=1.0.3
pkgrel=1
pkgdesc='A python library for doing approximate and phonetic matching of strings (mingw-w64)'
arch=('any')
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32' 'clangarm64')
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
url='https://github.com/jamesturk/jellyfish'
msys2_references=(
'pypi: jellyfish'
)
license=('spdx:MIT')
url='https://github.com/jamesturk/jellyfish'
depends=("${MINGW_PACKAGE_PREFIX}-python")
makedepends=("${MINGW_PACKAGE_PREFIX}-python-build"
"${MINGW_PACKAGE_PREFIX}-python-installer"
Expand Down

This file was deleted.

16 changes: 4 additions & 12 deletions mingw-w64-python-maturin/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ pkgname=${MINGW_PACKAGE_PREFIX}-python-${_realname}
pkgver=1.4.0
pkgrel=1
pkgdesc='Build and publish crates with pyo3, rust-cpython and cffi bindings as well as rust binaries as python packages (mingw-w64)'
url='https://github.com/pyo3/maturin'
arch=('any')
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32' 'clangarm64')
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
url='https://github.com/pyo3/maturin'
msys2_references=(
'pypi: maturin'
)
Expand All @@ -21,16 +21,8 @@ makedepends=(
"${MINGW_PACKAGE_PREFIX}-python-wheel"
"${MINGW_PACKAGE_PREFIX}-python-setuptools-rust")
options=(!strip)
source=("https://pypi.io/packages/source/${_realname:0:1}/${_realname}/${_realname}-${pkgver}.tar.gz"
"001-fix-default-target-on-mingw-32bit.patch")
sha256sums=('ed12e1768094a7adeafc3a74ebdb8dc2201fa64c4e7e31f14cfc70378bf93790'
'5d363f2540f84651439f47782c9d60ababde58f7187b09945040f3795745bf45')

prepare() {
cd "${srcdir}/${_realname}-${pkgver}"

patch -Np1 -i "${srcdir}/001-fix-default-target-on-mingw-32bit.patch"
}
source=("https://pypi.io/packages/source/${_realname:0:1}/${_realname}/${_realname}-${pkgver}.tar.gz")
sha256sums=('ed12e1768094a7adeafc3a74ebdb8dc2201fa64c4e7e31f14cfc70378bf93790')

build() {
cp -r "${_realname}-${pkgver}" "python-build-${MSYSTEM}" && cd "python-build-${MSYSTEM}"
Expand Down
6 changes: 3 additions & 3 deletions mingw-w64-python-pywinpty/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ pkgver=2.0.12
pkgrel=1
pkgdesc="Pseudo terminal support for Windows from Python. (mingw-w64)"
arch=('any')
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32' 'clangarm64')
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
url='https://github.com/andfoy/pywinpty'
msys2_references=(
'pypi: pywinpty'
)
url='https://github.com/andfoy/pywinpty'
license=('MIT')
license=('spdx:MIT')
depends=("${MINGW_PACKAGE_PREFIX}-python")
makedepends=("${MINGW_PACKAGE_PREFIX}-python-build"
"${MINGW_PACKAGE_PREFIX}-python-installer"
Expand Down
2 changes: 1 addition & 1 deletion mingw-w64-python-rpds-py/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pkgver=0.16.2
pkgrel=1
pkgdesc='Python bindings to the Rust rpds crate for persistent data structures (mingw-w64)'
arch=('any')
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32' 'clangarm64')
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
url='https://github.com/crate-py/rpds'
msys2_references=(
'archlinux: python-rpds-py'
Expand Down
6 changes: 3 additions & 3 deletions mingw-w64-python-terminado/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ pkgver=0.18.0
pkgrel=1
pkgdesc="Terminals served to term.js using Tornado websockets (mingw-w64)"
arch=('any')
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32' 'clangarm64')
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
url='https://github.com/jupyter/terminado'
msys2_documentation_url='https://terminado.readthedocs.io/'
msys2_references=(
'archlinux: python-terminado'
'pypi: terminado'
)
msys2_documentation_url='https://terminado.readthedocs.io/'
url='https://github.com/jupyter/terminado'
license=('spdx:BSD-2-Clause')
depends=("${MINGW_PACKAGE_PREFIX}-python"
"${MINGW_PACKAGE_PREFIX}-python-tornado"
Expand Down
6 changes: 3 additions & 3 deletions mingw-w64-python-watchfiles/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@ pkgver=0.21.0
pkgrel=1
pkgdesc="Simple, modern and high performance file watching and code reload in python (mingw-w64)"
arch=('any')
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32')
mingw_arch=('mingw64' 'ucrt64' 'clang64')
url='https://github.com/samuelcolvin/watchfiles'
license=('MIT')
options=('!strip')
license=('spdx:MIT')
depends=(
"${MINGW_PACKAGE_PREFIX}-python"
"${MINGW_PACKAGE_PREFIX}-python-anyio"
Expand All @@ -20,6 +19,7 @@ makedepends=(
"${MINGW_PACKAGE_PREFIX}-python-maturin"
"${MINGW_PACKAGE_PREFIX}-python-installer"
)
options=('!strip')
source=("https://pypi.org/packages/source/${_realname::1}/${_realname}/${_realname}-${pkgver}.tar.gz")
sha256sums=('c76c635fabf542bb78524905718c39f736a98e5ab25b23ec6d4abede1a85a6a3')

Expand Down
Loading

0 comments on commit 4dcc9c1

Please sign in to comment.