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