You've already forked open-video-downloader-bin
Compare commits
4 Commits
6d37d7d140
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 85f199c076 | |||
| fd421ebd1a | |||
| 5146f33bdd | |||
| 4c53f01174 |
2
.SRCINFO
2
.SRCINFO
@@ -1,7 +1,7 @@
|
||||
pkgbase = open-video-downloader-bin
|
||||
pkgdesc = A cross-platform GUI for youtube-dl made in Rust with Tauri and Vue + Typescript
|
||||
pkgver = 3.2.0
|
||||
pkgrel = 1
|
||||
pkgrel = 2
|
||||
url = https://github.com/jely2002/youtube-dl-gui
|
||||
arch = x86_64
|
||||
license = AGPL3
|
||||
|
||||
@@ -1,32 +0,0 @@
|
||||
---
|
||||
name: Update Package Version
|
||||
concurrency:
|
||||
group: update-package-version
|
||||
cancel-in-progress: false
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 0 * * *"
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
jobs:
|
||||
update:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- run: |
|
||||
git config --global user.name "${GIT_NAME}"
|
||||
git config --global user.email "${GIT_EMAIL}"
|
||||
git config --global credential.helper store
|
||||
echo "https://${GIT_EMAIL//@/%40}:${GIT_TOKEN}@git.bjphoster.com" > ~/.git-credentials
|
||||
source PKGBUILD
|
||||
./push.sh $(curl -L -H "Accept: application/vnd.github+json" https://api.github.com/repos/${_srcmntr}/${_srcname}/releases/latest | jq ".tag_name" | sed 's|"||g;s|app-v||')
|
||||
env:
|
||||
GIT_NAME: ${{ secrets.GIT_NAME }}
|
||||
GIT_EMAIL: ${{ secrets.GIT_EMAIL }}
|
||||
GIT_TOKEN: ${{ secrets.GIT_TOKEN }}
|
||||
2
PKGBUILD
2
PKGBUILD
@@ -6,7 +6,7 @@ _srcmntr="jely2002"
|
||||
|
||||
pkgname="${_pkgname}-bin"
|
||||
pkgver="3.2.0"
|
||||
pkgrel="1"
|
||||
pkgrel="2"
|
||||
pkgdesc="A cross-platform GUI for youtube-dl made in Rust with Tauri and Vue + Typescript"
|
||||
url="https://github.com/${_srcmntr}/${_srcname}"
|
||||
arch=("x86_64")
|
||||
|
||||
18
push.sh
18
push.sh
@@ -38,28 +38,27 @@ else
|
||||
fi
|
||||
|
||||
# Perform variable substitution
|
||||
url="${url//\$\{pkgname\}/$pkgname}"
|
||||
url="${url//\$\{_pkgname\}/$_pkgname}"
|
||||
url="${url//\$\{_srcname\}/$_srcname}"
|
||||
url="${url//\$\{_srcmntr\}/$_srcmntr}"
|
||||
url="${url//\$\{pkgver\}/$pkgver}"
|
||||
_archive="${_archive//\$\{pkgname\}/$pkgname}"
|
||||
_archive="${_archive//\$\{_pkgname\}/$_pkgname}"
|
||||
_archive="${_archive//\$\{pkgver\}/$pkgver}"
|
||||
aur_url="${aur_url//\$\{_pkgname\}/$_pkgname}"
|
||||
pkgname="${pkgname//\$\{_pkgname\}/$_pkgname}"
|
||||
|
||||
# Download archive
|
||||
wget -O ${_archive} "${url}"
|
||||
wget -qO ${_archive} "${url}"
|
||||
# Extract icon / .desktop files if appimage
|
||||
if printf '%s' "${_archive,,}" | grep -qi "appimage"; then
|
||||
chmod +x "${_archive}"
|
||||
"./${_archive}" --appimage-extract
|
||||
"./${_archive}" --appimage-extract >/dev/null
|
||||
cp "squashfs-root/${desktop}" "${newdesktop}"
|
||||
cp "squashfs-root/${icon}" "${newicon}"
|
||||
if [ -L "squashfs-root" ]; then
|
||||
sed -i "/^X-AppImage-/d;/^$/d" "${newdesktop}"
|
||||
sed -i "s/^Exec=.*/Exec=${_pkgname} %U/" "${newdesktop}"
|
||||
rm -rf $(readlink -f squashfs-root) squashfs-root
|
||||
fi
|
||||
fi
|
||||
# Calculate checksums
|
||||
sha256bin=$(sha256sum ${_archive} | awk '{print $1}')
|
||||
if [ "${gui}" = "true" ]; then
|
||||
@@ -79,7 +78,10 @@ sha256sums=(\
|
||||
"'"$sha256ico"'"\
|
||||
)' PKGBUILD
|
||||
else
|
||||
sed -i -E "s|^sha256sums=.*|sha256sums=(\"$sha256bin\")|" PKGBUILD
|
||||
sed -i -E "s/^sha256sums=\(\"[^\"]+\"\)/sha256sums=(\"$sha256bin\")/" PKGBUILD
|
||||
fi
|
||||
if [ "${pkgver}" != "${oldver}" ] && [ -n "${FORCE_REBUILD}" ]; then
|
||||
sed -i -E "s/^pkgrel=\"[^\"]+\"/pkgrel=\"1\"/" PKGBUILD
|
||||
fi
|
||||
# Update .SRCINFO
|
||||
makepkg --printsrcinfo > .SRCINFO
|
||||
@@ -94,7 +96,7 @@ fi
|
||||
if [ -z "${NO_GIT_PUSH}" ]; then
|
||||
# In case of fire, git commit, git push, leave building
|
||||
git add .
|
||||
git commit -m "Updated ${pkgname} to ${pkgver}-${pkgrel}"
|
||||
git commit -m "${commit_msg}"
|
||||
git remote add aur ${aur_url}
|
||||
git push origin main
|
||||
git push aur main:master
|
||||
|
||||
Reference in New Issue
Block a user