From 0c24d951c77c57c6cbc50f2f3cc9a8a78862ca8f Mon Sep 17 00:00:00 2001 From: EnumDev Date: Fri, 5 Sep 2025 14:42:37 +0300 Subject: [PATCH] Update URL and download --- check-version.sh | 10 +++++----- pkg.info | 5 +++-- source.sh | 6 +++--- 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/check-version.sh b/check-version.sh index 30b588b..14462af 100644 --- a/check-version.sh +++ b/check-version.sh @@ -1,9 +1,9 @@ #!/bin/bash -# Gitea repository -REPO="EnumDev/enit" +# Github repository +REPO="EnumeratedDev/enit" -# Get version from tag name using Gitea Rest API -VERSION=$(curl -s -L https://git.enumerated.dev/api/v1/repos/$REPO/tags/ | jq -r '.[0]'.name) +# Get tag name using Github Rest API +TAG_NAME=$(curl -s -L -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" https://api.github.com/repos/"$REPO"/tags | jq -r '.[0].name') -echo "$VERSION" +echo "$TAG_NAME" diff --git a/pkg.info b/pkg.info index 606dc59..b84fa8c 100644 --- a/pkg.info +++ b/pkg.info @@ -1,7 +1,8 @@ name: enit -description: EnumDev's init system +description: The official init system for Tide Linux version: 0.2.0 -url: https://git.enumerated.dev/EnumDev/enit +revision: 2 +url: https://github.com/EnumeratedDev/enit license: MIT architecture: any dependencies: ["util-linux"] diff --git a/source.sh b/source.sh index 363ba2d..012d44c 100644 --- a/source.sh +++ b/source.sh @@ -2,13 +2,12 @@ # BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE # BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT -REPO="https://git.enumerated.dev/EnumDev/enit.git" +REPO="https://github.com/EnumeratedDev/enit.git" # The prepare function is executed in the root of the temp directory # This function is used for downloading files and putting them into the correct location prepare() { - git clone "$REPO" --branch "${BPM_PKG_VERSION}" --single-branch "$BPM_SOURCE" - cd "$BPM_SOURCE" + git clone --depth 1 --branch "${BPM_PKG_VERSION}" "$REPO" "$BPM_SOURCE" } # The build function is executed in the source directory @@ -31,5 +30,6 @@ package() { # Symlink enit to /sbin/init ln -sf /sbin/enit "$BPM_OUTPUT"/usr/sbin/init + # Install package license install -Dm644 LICENSE "$BPM_OUTPUT"/usr/share/licenses/enit/LICENSE }