Update package version to 0.16.0
This commit is contained in:
+6
-3
@@ -1,9 +1,12 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Github repository
|
||||
# Codeberg repository
|
||||
REPO="ziglang/zig"
|
||||
|
||||
# Get tag name using Github Rest API
|
||||
VERSION=$(curl -s -L -H "X-GitHub-Api-Version: 2022-11-28" -H "Authorization: token ${GITHUB_API_TOKEN}" https://api.github.com/repos/"$REPO"/tags | jq -r '.[0].name')
|
||||
# Get version from tag name using Codeberg Rest API
|
||||
VERSION=$(curl -s -L https://codeberg.org/api/v1/repos/$REPO/tags/ | jq -r '.[0]'.name)
|
||||
|
||||
# Remove 'v'
|
||||
VERSION=${VERSION//v/}
|
||||
|
||||
echo "$VERSION"
|
||||
|
||||
@@ -1,20 +1,22 @@
|
||||
name: zig
|
||||
description: A general-purpose programming language and toolchain for maintaining robust, optimal and reusable software
|
||||
version: 0.15.2
|
||||
revision: 2
|
||||
version: 0.16.0
|
||||
revision: 1
|
||||
url: https://ziglang.org/
|
||||
license: MIT
|
||||
maintainers:
|
||||
- [email protected]
|
||||
architecture: any
|
||||
type: source
|
||||
depends:
|
||||
- clang20
|
||||
- lld20
|
||||
- llvm20-libs
|
||||
- clang21
|
||||
- lld21
|
||||
- llvm21-libs
|
||||
make_depends:
|
||||
- cmake
|
||||
- llvm20
|
||||
- llvm21
|
||||
downloads:
|
||||
- url: https://github.com/ziglang/zig/archive/refs/tags/${BPM_PKG_VERSION}.tar.gz
|
||||
- url: https://codeberg.org/ziglang/zig/archive/${BPM_PKG_VERSION}.tar.gz
|
||||
extract_to: ${BPM_SOURCE}
|
||||
extract_strip_components: 1
|
||||
checksum: ebe6eb7006f6bbb72e54bd25d0675f2794084909d63a95aa315f2dcf2af5fd99
|
||||
checksum: 095d7483008e885e65d8c6a57fb97c57344f995408a648b8d50f61278ad85d7f
|
||||
|
||||
Reference in New Issue
Block a user