From e3edd0080921f5ca8053e2cf6c422c0291f622cd Mon Sep 17 00:00:00 2001 From: GitLab CI Date: Fri, 19 Apr 2024 07:37:51 +0000 Subject: [PATCH] chore(packages): update packages --- .ci/config | 2 +- .ci/create-pr.sh | 20 +++++----- .ci/on-schedule.sh | 54 +++++++++++++++++++++++---- .ci/schedule-packages.sh | 1 + .ci/util.shlib | 55 +++++++++++++++++++--------- alacritty-git/.CI/config | 2 +- btrfs-assistant-git/.CI/config | 2 +- cachyos-ananicy-rules-git/.CI/config | 2 +- candy-icons-git/.CI/config | 2 +- garuda-hyprland-settings/.SRCINFO | 4 +- garuda-hyprland-settings/PKGBUILD | 4 +- jamesdsp/.CI/config | 2 +- jamesdsp/.SRCINFO | 3 -- jamesdsp/PKGBUILD | 3 +- pamac-aur/.CI/config | 2 +- pamac-aur/.SRCINFO | 19 +++++----- pamac-aur/PKGBUILD | 18 ++++----- paru-git/.CI/config | 4 +- paru-git/.SRCINFO | 6 +-- paru-git/PKGBUILD | 6 +-- paru/.CI/config | 2 +- paru/.SRCINFO | 9 +++-- paru/PKGBUILD | 8 ++-- prismlauncher/.CI/config | 2 +- prismlauncher/.SRCINFO | 6 +-- prismlauncher/PKGBUILD | 4 +- spotify/.CI/config | 2 +- spotify/.SRCINFO | 16 ++++---- spotify/PKGBUILD | 13 ++++--- visual-studio-code-bin/.CI/config | 2 +- visual-studio-code-bin/.SRCINFO | 17 ++++----- visual-studio-code-bin/PKGBUILD | 13 +++---- whoogle-git/.CI/config | 2 +- 33 files changed, 180 insertions(+), 127 deletions(-) diff --git a/.ci/config b/.ci/config index ce87700..dd02ec2 100644 --- a/.ci/config +++ b/.ci/config @@ -5,5 +5,5 @@ REDIS_SSH_HOST=builds.garudalinux.org REDIS_SSH_PORT=400 REDIS_SSH_USER=package-deployer REPO_NAME=garuda -CI_HUMAN_REVIEW=false +CI_HUMAN_REVIEW=true TEMPLATE_ENABLE_UPDATES=false diff --git a/.ci/create-pr.sh b/.ci/create-pr.sh index a412a51..7ffc2de 100755 --- a/.ci/create-pr.sh +++ b/.ci/create-pr.sh @@ -3,6 +3,8 @@ set -euo pipefail # $1: pkgbase +source .ci/util.shlib + if [ -z "${ACCESS_TOKEN:-}" ]; then UTIL_PRINT_ERROR "ACCESS_TOKEN is not set. Please set it to a valid access token to use human review or disable CI_HUMAN_REVIEW." exit 0 @@ -119,27 +121,27 @@ function manage_branch() { local target_branch="$2" local pkgbase="$3" - git stash + git stash -q if git show-ref --quiet "origin/$branch"; then - git switch "$branch" - git checkout stash -- "$pkgbase" + git switch -q "$branch" + git checkout -q stash -- "$pkgbase" # Branch already exists, let's see if it's up to date # Also check if previous parent commit is no longer ancestor of target_branch if ! git diff --staged --exit-code --quiet || ! git merge-base --is-ancestor HEAD^ "origin/$target_branch"; then # Not up to date - git reset --hard "origin/$target_branch" - git checkout stash -- "$pkgbase" + git reset -q --hard "origin/$target_branch" + git checkout stash -q -- "$pkgbase" git commit -q -m "chore($1): PKGBUILD modified" git push --force-with-lease origin "$CHANGE_BRANCH" fi else # Branch does not exist, let's create it - git switch -C "$branch" "origin/$target_branch" - git checkout stash -- "$pkgbase" + git switch -q -C "$branch" "origin/$target_branch" + git checkout stash -q -- "$pkgbase" git commit -q -m "chore($1): PKGBUILD modified" git push --force-with-lease origin "$CHANGE_BRANCH" fi - git stash drop + git stash drop -q } PKGBASE="$1" @@ -168,4 +170,4 @@ else fi # Switch back to the original branch -git -c advice.detachedHead=false checkout "$ORIGINAL_REF" +git -c advice.detachedHead=false checkout -q "$ORIGINAL_REF" diff --git a/.ci/on-schedule.sh b/.ci/on-schedule.sh index 50badc3..d2f763b 100755 --- a/.ci/on-schedule.sh +++ b/.ci/on-schedule.sh @@ -1,4 +1,5 @@ #!/usr/bin/env bash +set -x set -euo pipefail # This script is triggered by a scheduled pipeline @@ -51,6 +52,31 @@ MODIFIED_PACKAGES=() DELETE_BRANCHES=() UTIL_GET_PACKAGES PACKAGES COMMIT="${COMMIT:-false}" +PUSH=false + +# Manage the .state worktree to confine the state of packages to a separate branch +# The goal is to keep the commit history clean +function manage_state() { + if git show-ref --quiet "origin/state"; then + git worktree add .state origin/state --detach + fi + git worktree add .newstate -B state --orphan +} + +# Check if the current commit is already an automatic commit +# If it is, check if we should overwrite it +function manage_commit() { + if [ -v CI_OVERWRITE_COMMITS ] && [ "$CI_OVERWRITE_COMMITS" == "true" ]; then + local COMMIT_MSG="" + local REGEX="^chore\(packages\): update packages( \[skip ci\])?$" + if COMMIT_MSG="$(git log -1 --pretty=%s)"; then + if [[ "$COMMIT_MSG" =~ $REGEX ]]; then + # Signal that we should not only append to the commit, but also force push the branch + COMMIT=force + fi + fi + fi +} # Loop through all packages to do optimized aur RPC calls # $1 = Output associative array @@ -137,7 +163,7 @@ function update_via_git() { if package_changed "$TMPDIR/aur-pulls/$pkgbase" "$pkgbase"; then if [ -v CI_HUMAN_REVIEW ] && [ "$CI_HUMAN_REVIEW" == "true" ] && package_major_change "$TMPDIR/aur-pulls/$pkgbase" "$pkgbase"; then - UTIL_PRINT_INFO "$pkgbase: Major change detected in." + UTIL_PRINT_INFO "$pkgbase: Major change detected." VARIABLES_VIA_GIT[CI_REQUIRES_REVIEW]=true fi # Rsync: delete files in the destination that are not in the source. Exclude deleting .CI, exclude copying .git @@ -281,6 +307,12 @@ function update_vcs() { fi } +# Create .state and .newstate worktrees +manage_state + +# Reduce history pollution from automatic commits +manage_commit + # Collect last modified timestamps from AUR in an efficient way collect_aur_timestamps AUR_TIMESTAMPS @@ -293,19 +325,20 @@ fi for package in "${PACKAGES[@]}"; do unset VARIABLES declare -A VARIABLES - UTIL_READ_MANAGED_PACAKGE "$package" VARIABLES || VARIABLES[CI_NO_CONFIG]=true + UTIL_READ_MANAGED_PACAKGE "$package" VARIABLES || true update_pkgbuild VARIABLES update_vcs VARIABLES UTIL_LOAD_CUSTOM_HOOK "./${package}" "./${package}/.CI/update.sh" - if [ ! -v VARIABLES[CI_NO_CONFIG] ]; then - UTIL_WRITE_KNOWN_VARIABLES_TO_FILE "./${package}/.CI/config" VARIABLES - fi + UTIL_WRITE_MANAGED_PACKAGE "$package" VARIABLES if ! git diff --exit-code --quiet; then if [[ -v VARIABLES[CI_REQUIRES_REVIEW] ]] && [ "${VARIABLES[CI_REQUIRES_REVIEW]}" == "true" ]; then + # The updated state of the package will still be written to the state branch, even if the main content goes onto the PR branch + # This is okay, because merging the PR branch will trigger a build, so that behavior is expected and prevents a double execution .ci/create-pr.sh "$package" + PUSH=true else - git add . + git add "$package" if [ "$COMMIT" == "false" ]; then COMMIT=true [ -v GITLAB_CI ] && git commit -q -m "chore(packages): update packages" @@ -313,6 +346,7 @@ for package in "${PACKAGES[@]}"; do else git commit -q --amend --no-edit fi + PUSH=true MODIFIED_PACKAGES+=("$package") if [ -v CI_HUMAN_REVIEW ] && [ "$CI_HUMAN_REVIEW" == "true" ] && git show-ref --quiet "origin/update-$package"; then DELETE_BRANCHES+=("update-$package") @@ -321,17 +355,21 @@ for package in "${PACKAGES[@]}"; do fi done +git -C .newstate add -A +git -C .newstate commit -q -m "chore(state): update state" --allow-empty + if [ ${#MODIFIED_PACKAGES[@]} -ne 0 ]; then .ci/schedule-packages.sh schedule "${MODIFIED_PACKAGES[@]}" .ci/manage-aur.sh "${MODIFIED_PACKAGES[@]}" fi -if [ "$COMMIT" = true ]; then +if [ "$PUSH" = true ]; then git tag -f scheduled git_push_args=() for branch in "${DELETE_BRANCHES[@]}"; do git_push_args+=(":$branch") done [ -v GITLAB_CI ] && git_push_args+=("-o" "ci.skip") - git push --atomic origin HEAD:main +refs/tags/scheduled "${git_push_args[@]}" + [ "$COMMIT" == "force" ] && git_push_args+=("--force-with-lease=main") + git push --atomic origin HEAD:main +refs/tags/scheduled +state "${git_push_args[@]}" fi diff --git a/.ci/schedule-packages.sh b/.ci/schedule-packages.sh index 956c30e..481ae39 100755 --- a/.ci/schedule-packages.sh +++ b/.ci/schedule-packages.sh @@ -63,6 +63,7 @@ function generate_deptree() { fi deptree+="$i:$PKGNAMES:$DEPS" done + echo "$deptree" } if [ "$COMMAND" == "schedule" ]; then diff --git a/.ci/util.shlib b/.ci/util.shlib index 6300a2b..976f613 100644 --- a/.ci/util.shlib +++ b/.ci/util.shlib @@ -2,7 +2,8 @@ # shellcheck disable=2034 KNOWN_VARIABLE_LIST=(CI_PKGBUILD_SOURCE CI_GIT_COMMIT CI_PKGBUILD_TIMESTAMP CI_PACKAGE_BUMP CI_ON_TRIGGER CI_MANAGE_AUR) -declare -A KNOWN_CONFIG_LIST=([BUILD_REPO]="chaotic-aur" [GIT_AUTHOR_EMAIL]="ci@example.com" [GIT_AUTHOR_NAME]="chaotic-aur" [REDIS_SSH_HOST]="localhost" [REDIS_SSH_PORT]="22" [REDIS_SSH_USER]="redis" [REDIS_PORT]="6379" [REPO_NAME]="chaotic-aur" [CI_HUMAN_REVIEW]="false" [TEMPLATE_REPO]="https://github.com/chaotic-cx/chaotic-repository-template" [TEMPLATE_ENABLE_UPDATES]="true" [CI_MANAGE_AUR]="false") +KNOWN_STATE_VARIABLE_LIST=(CI_GIT_COMMIT CI_PKGBUILD_TIMESTAMP) +declare -A KNOWN_CONFIG_LIST=([BUILD_REPO]="chaotic-aur" [GIT_AUTHOR_EMAIL]="ci@example.com" [GIT_AUTHOR_NAME]="chaotic-aur" [REDIS_SSH_HOST]="localhost" [REDIS_SSH_PORT]="22" [REDIS_SSH_USER]="redis" [REDIS_PORT]="6379" [REPO_NAME]="chaotic-aur" [CI_HUMAN_REVIEW]="true" [TEMPLATE_REPO]="https://github.com/chaotic-cx/chaotic-repository-template" [TEMPLATE_ENABLE_UPDATES]="true" [CI_MANAGE_AUR]="false" [CI_OVERWRITE_COMMITS]="true") EXCLUDE_FILES=(.CI .git .gitignore) @@ -13,28 +14,27 @@ function UTIL_GET_PACKAGES() { mapfile -t GET_PACKAGES_ARRAY < <(find . -mindepth 1 -maxdepth 1 -type d -not -path '*/.*' -printf '%P\n') } -function UTIL_PRUNE_UNKNOWN_VARIABLES() { - set -euo pipefail - local -n PRUNE_VARIABLES=${1:-VARIABLES} - local -n PRUNE_VARIABLES_KNOWN=${2:-KNOWN_VARIABLE_LIST} - for key in "${!PRUNE_VARIABLES[@]}"; do - if [[ ! " ${PRUNE_VARIABLES_KNOWN[*]} " == *" ${key} "* ]]; then - unset "PRUNE_VARIABLES[$key]" - fi - done -} -function UTIL_READ_VARIABLES_FROM_FILE() { +# $1: File to read variables from +# $2: Output associative array +# $3: array of known variables +function UTIL_READ_KNOWN_VARIABLES_FROM_FILE() { set -euo pipefail local file=$1 local -n READ_ASSOC_ARRAY=${2:-VARIABLES} + if [ -v 3 ]; then + local -n READ_KNOWN_ARRAY=${3} + fi while IFS= read -r line || [ -n "$line" ]; do if [[ "$line" =~ ^[[:space:]]*([a-zA-Z0-9_]+)[[:space:]]*=[[:space:]]*(.*)[[:space:]]*$ ]]; then + # Make sure the key is in the known variable list + if [[ -v READ_KNOWN_ARRAY[@] ]] && [[ " ${READ_KNOWN_ARRAY[*]} " != *" ${BASH_REMATCH[1]} "* ]]; then + continue + fi READ_ASSOC_ARRAY["${BASH_REMATCH[1]}"]="${BASH_REMATCH[2]}" fi done < "$file" } - function UTIL_WRITE_VARIABLES_TO_FILE() { set -euo pipefail local file=$1 @@ -70,15 +70,24 @@ function UTIL_WRITE_KNOWN_VARIABLES_TO_FILE() { function UTIL_READ_MANAGED_PACAKGE() { set -euo pipefail local target_file="./${1}/.CI/config" + local target_state_file="./.state/${1}" local ret=1 local -n READ_MANAGED_ASSOC_ARRAY=${2:-VARIABLES} if [ -f "$target_file" ]; then - UTIL_READ_VARIABLES_FROM_FILE "$target_file" READ_MANAGED_ASSOC_ARRAY + UTIL_READ_KNOWN_VARIABLES_FROM_FILE "$target_file" READ_MANAGED_ASSOC_ARRAY KNOWN_VARIABLE_LIST # Check if any variable at all was read if [ ${#READ_MANAGED_ASSOC_ARRAY[@]} -ne 0 ]; then - UTIL_PRUNE_UNKNOWN_VARIABLES READ_MANAGED_ASSOC_ARRAY ret=0 + else + READ_MANAGED_ASSOC_ARRAY[CI_NO_CONFIG]=true fi + else + READ_MANAGED_ASSOC_ARRAY[CI_NO_CONFIG]=true + fi + + # This file might or might not exist depending on the current state of the application + if [ -f "$target_state_file" ]; then + UTIL_READ_KNOWN_VARIABLES_FROM_FILE "$target_state_file" READ_MANAGED_ASSOC_ARRAY KNOWN_STATE_VARIABLE_LIST fi # shellcheck disable=2153 @@ -86,6 +95,17 @@ function UTIL_READ_MANAGED_PACAKGE() { return $ret } +function UTIL_WRITE_MANAGED_PACKAGE() { + set -euo pipefail + local target_file="./${1}/.CI/config" + local target_state_file="./.newstate/${1}" + local -n WRITE_MANAGED_ASSOC_ARRAY=${2:-VARIABLES} + if [[ ! -v WRITE_MANAGED_ASSOC_ARRAY[CI_NO_CONFIG] ]]; then + UTIL_WRITE_KNOWN_VARIABLES_TO_FILE "$target_file" WRITE_MANAGED_ASSOC_ARRAY KNOWN_VARIABLE_LIST + fi + UTIL_WRITE_KNOWN_VARIABLES_TO_FILE "$target_state_file" WRITE_MANAGED_ASSOC_ARRAY KNOWN_STATE_VARIABLE_LIST +} + # Extract both the normal url and the fragment function UTIL_GET_URI_PARTS() { set -euo pipefail @@ -248,8 +268,7 @@ function UTIL_READ_CONFIG_FILE() { set -euo pipefail local -a UTIL_READ_CONFIG_FILE_KNOWN_VARIABLES=("${!KNOWN_CONFIG_LIST[@]}") declare -A UTIL_READ_CONFIG_FILE_ARRAY - UTIL_READ_VARIABLES_FROM_FILE ".ci/config" UTIL_READ_CONFIG_FILE_ARRAY - UTIL_PRUNE_UNKNOWN_VARIABLES UTIL_READ_CONFIG_FILE_ARRAY UTIL_READ_CONFIG_FILE_KNOWN_VARIABLES + UTIL_READ_KNOWN_VARIABLES_FROM_FILE ".ci/config" UTIL_READ_CONFIG_FILE_ARRAY UTIL_READ_CONFIG_FILE_KNOWN_VARIABLES # Set all variables as global variables for key in "${!UTIL_READ_CONFIG_FILE_ARRAY[@]}"; do @@ -297,4 +316,4 @@ function UTIL_PRINT_ERROR() { function UTIL_PRINT_INFO() { set -euo pipefail printf '\e[1;34mInfo:\e[0m %s\n' "$1" -} \ No newline at end of file +} diff --git a/alacritty-git/.CI/config b/alacritty-git/.CI/config index d507256..9f2f050 100644 --- a/alacritty-git/.CI/config +++ b/alacritty-git/.CI/config @@ -1,3 +1,3 @@ CI_PKGBUILD_TIMESTAMP=1703994102 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=4c0c368e7ac8233b3fca848a25b42f0875a2494b +CI_GIT_COMMIT=d28868855afd769209a7ac81692cdbaa67be2905 diff --git a/btrfs-assistant-git/.CI/config b/btrfs-assistant-git/.CI/config index 4e5dad8..da7bfc3 100644 --- a/btrfs-assistant-git/.CI/config +++ b/btrfs-assistant-git/.CI/config @@ -1,3 +1,3 @@ CI_PKGBUILD_TIMESTAMP=1705267394 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=2373f4f3c8a2a42074ea644b016caaabfcc3b89c +CI_GIT_COMMIT=be68a51f4689bb2de15553b35fe5f5b5a55b8541 diff --git a/cachyos-ananicy-rules-git/.CI/config b/cachyos-ananicy-rules-git/.CI/config index 33372d3..ba611b7 100644 --- a/cachyos-ananicy-rules-git/.CI/config +++ b/cachyos-ananicy-rules-git/.CI/config @@ -1,3 +1,3 @@ CI_PKGBUILD_TIMESTAMP=1697091397 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=83b9755993e39d3e46578bdef27180d37618c6b4 +CI_GIT_COMMIT=7abaddd5cac23d9fd7a0f0aeccb7a0287456802b diff --git a/candy-icons-git/.CI/config b/candy-icons-git/.CI/config index 58941ad..6a2c857 100644 --- a/candy-icons-git/.CI/config +++ b/candy-icons-git/.CI/config @@ -1,3 +1,3 @@ CI_PKGBUILD_TIMESTAMP=1622479548 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=252601a26feed3e19f5cde6c3dfc1ac35086e49c +CI_GIT_COMMIT=700085e4396f4005ca3cd54a0cd5e0b036a1972e diff --git a/garuda-hyprland-settings/.SRCINFO b/garuda-hyprland-settings/.SRCINFO index 3e07cc5..2061fc6 100644 --- a/garuda-hyprland-settings/.SRCINFO +++ b/garuda-hyprland-settings/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = garuda-hyprland-settings pkgdesc = Garuda Linux Hyprland settings - pkgver = 0.4.103 + pkgver = 0.4.123 pkgrel = 1 url = https://gitlab.com/garuda-linux/themes-and-settings/settings/garuda-hyprland-settings install = garuda-hyprland-settings.install @@ -19,7 +19,7 @@ pkgbase = garuda-hyprland-settings depends = qt5ct provides = garuda-desktop-settings conflicts = garuda-desktop-settings - source = https://gitlab.com/garuda-linux/themes-and-settings/settings/garuda-hyprland-settings/-/archive/1b2647c0a37331335a9fe4cd54359bc84f4dc7df/garuda-hyprland-settings-1b2647c0a37331335a9fe4cd54359bc84f4dc7df.tar.gz + source = https://gitlab.com/garuda-linux/themes-and-settings/settings/garuda-hyprland-settings/-/archive/b1734e60e294779d06be68d9caa98fe17b2f43b3/garuda-hyprland-settings-b1734e60e294779d06be68d9caa98fe17b2f43b3.tar.gz sha256sums = SKIP pkgname = garuda-hyprland-settings diff --git a/garuda-hyprland-settings/PKGBUILD b/garuda-hyprland-settings/PKGBUILD index f0cb205..33952dd 100644 --- a/garuda-hyprland-settings/PKGBUILD +++ b/garuda-hyprland-settings/PKGBUILD @@ -3,8 +3,8 @@ # Co-Maintainer: Ankur pkgname=garuda-hyprland-settings -pkgver="0.4.103" -_commit='1b2647c0a37331335a9fe4cd54359bc84f4dc7df' +pkgver="0.4.123" +_commit='b1734e60e294779d06be68d9caa98fe17b2f43b3' pkgrel=1 arch=('any') license=('GPL') diff --git a/jamesdsp/.CI/config b/jamesdsp/.CI/config index 4930981..20f1197 100644 --- a/jamesdsp/.CI/config +++ b/jamesdsp/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1705793787 +CI_PKGBUILD_TIMESTAMP=1711910807 CI_PKGBUILD_SOURCE=aur diff --git a/jamesdsp/.SRCINFO b/jamesdsp/.SRCINFO index 0e8944c..f86644e 100644 --- a/jamesdsp/.SRCINFO +++ b/jamesdsp/.SRCINFO @@ -14,9 +14,6 @@ pkgbase = jamesdsp conflicts = jdsp4linux conflicts = jdsp4linux-gui conflicts = gst-plugin-jamesdsp - replaces = jdsp4linux - replaces = jdsp4linux-gui - replaces = gst-plugin-jamesdsp options = !strip source = git+https://github.com/Audio4Linux/JDSP4Linux.git#commit=30a30aa5ce90f97ea2c93bc372c0a67c8e3c54c8 source = git+https://github.com/ThePBone/GraphicEQWidget.git diff --git a/jamesdsp/PKGBUILD b/jamesdsp/PKGBUILD index 085edaa..ce0f28e 100644 --- a/jamesdsp/PKGBUILD +++ b/jamesdsp/PKGBUILD @@ -3,14 +3,13 @@ pkgname=jamesdsp _app_id=me.timschneeberger.jdsp4linux pkgver=2.7.0 pkgrel=1 -pkgdesc="An audio effect processor for PipeWire clientss" +pkgdesc="An audio effect processor for PipeWire clients" arch=('x86_64') url="https://github.com/Audio4Linux/JDSP4Linux" license=('GPL-3.0-or-later') depends=('glibmm' 'hicolor-icon-theme' 'libarchive' 'libpipewire' 'qt6-svg') makedepends=('git') conflicts=('jdsp4linux' 'jdsp4linux-gui' 'gst-plugin-jamesdsp') -replaces=('jdsp4linux' 'jdsp4linux-gui' 'gst-plugin-jamesdsp') options=('!strip') _commit=30a30aa5ce90f97ea2c93bc372c0a67c8e3c54c8 # tags/2.7.0^0 source=("git+https://github.com/Audio4Linux/JDSP4Linux.git#commit=$_commit" diff --git a/pamac-aur/.CI/config b/pamac-aur/.CI/config index 6c6269a..a922d1a 100644 --- a/pamac-aur/.CI/config +++ b/pamac-aur/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1702886397 +CI_PKGBUILD_TIMESTAMP=1711792164 CI_PKGBUILD_SOURCE=aur diff --git a/pamac-aur/.SRCINFO b/pamac-aur/.SRCINFO index c0ae36f..67ef17d 100644 --- a/pamac-aur/.SRCINFO +++ b/pamac-aur/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = pamac-aur - pkgdesc = A Gtk3 frontend, Package Manager based on libalpm with AUR and Appstream support + pkgdesc = A Gtk frontend, Package Manager based on libalpm with AUR and Appstream support pkgver = 11.7.1 - pkgrel = 1 + pkgrel = 4 url = https://gitlab.manjaro.org/applications/pamac install = pamac.install arch = i686 @@ -10,7 +10,7 @@ pkgbase = pamac-aur arch = armv6h arch = armv7h arch = aarch64 - license = GPL3 + license = GPL-3.0-or-later makedepends = gettext makedepends = itstool makedepends = vala @@ -20,6 +20,7 @@ pkgbase = pamac-aur makedepends = xorgproto makedepends = asciidoc makedepends = git + makedepends = systemd depends = libnotify depends = libhandy depends = libadwaita @@ -30,16 +31,16 @@ pkgbase = pamac-aur depends = git optdepends = polkit-gnome: needed for authentification in Cinnamon, Gnome optdepends = lxsession: needed for authentification in Xfce, LXDE etc. - provides = pamac=11.7.1-1 - provides = pamac-cli=11.6.0-3 + provides = pamac=11.7.1-4 + provides = pamac-cli=11.6.0-5 conflicts = pamac conflicts = pamac-tray-appindicator conflicts = pamac-cli options = !emptydirs options = !strip - source = pamac-11.7.1-1.tar.gz::https://gitlab.manjaro.org/applications/pamac/-/archive/73cef1dc85695a0e5b498e86b40ff047c9a8048f/pamac-73cef1dc85695a0e5b498e86b40ff047c9a8048f.tar.gz - source = pamac-cli-11.6.0-3.tar.gz::https://gitlab.manjaro.org/applications/pamac-cli/-/archive/177fb231b1e2494a696db9eb0629364bb1dc6753/pamac-cli-177fb231b1e2494a696db9eb0629364bb1dc6753.tar.gz - sha256sums = 8ad0f52b088818a8d9401984ba3e30d5ecfdc49d89fe89b65af9491a3f9f6c69 - sha256sums = bd98a58276eaeee0c1671ab6c18a8947eeb23e9fb6ae6507f627f9714d3aee4e + source = pamac-11.7.1-4.tar.gz::https://gitlab.manjaro.org/applications/pamac/-/archive/61b7570aace3def9b048668fa23a52f08423ecf1/pamac-61b7570aace3def9b048668fa23a52f08423ecf1.tar.gz + source = pamac-cli-11.6.0-5.tar.gz::https://gitlab.manjaro.org/applications/pamac-cli/-/archive/3985c4d7e95312f79bb2a7f33766912c329f4697/pamac-cli-3985c4d7e95312f79bb2a7f33766912c329f4697.tar.gz + sha256sums = 5202a72287aaaf83530448cacd13940d779e3fe12c0a2dd62eaada9721de9ed0 + sha256sums = 95b192d8bc71764e50f73394b068e78159d2b1d976a2ae22f943c51cfdd7b9ca pkgname = pamac-aur diff --git a/pamac-aur/PKGBUILD b/pamac-aur/PKGBUILD index c37c7a7..8aca1f6 100644 --- a/pamac-aur/PKGBUILD +++ b/pamac-aur/PKGBUILD @@ -5,25 +5,25 @@ ENABLE_FAKE_GNOME_SOFTWARE=0 pkgname=pamac-aur pkgver=11.7.1 -pkgrel=1 +pkgrel=4 _pkgfixver=$pkgver _pkgfixvercli=11.6.0 -_pkgrelcli=3 +_pkgrelcli=5 -_commit='73cef1dc85695a0e5b498e86b40ff047c9a8048f' -_commitcli='177fb231b1e2494a696db9eb0629364bb1dc6753' -sha256sums=('8ad0f52b088818a8d9401984ba3e30d5ecfdc49d89fe89b65af9491a3f9f6c69' - 'bd98a58276eaeee0c1671ab6c18a8947eeb23e9fb6ae6507f627f9714d3aee4e') +_commit='61b7570aace3def9b048668fa23a52f08423ecf1' +_commitcli='3985c4d7e95312f79bb2a7f33766912c329f4697' +sha256sums=('5202a72287aaaf83530448cacd13940d779e3fe12c0a2dd62eaada9721de9ed0' + '95b192d8bc71764e50f73394b068e78159d2b1d976a2ae22f943c51cfdd7b9ca') -pkgdesc="A Gtk3 frontend, Package Manager based on libalpm with AUR and Appstream support" +pkgdesc="A Gtk frontend, Package Manager based on libalpm with AUR and Appstream support" arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') url="https://gitlab.manjaro.org/applications/pamac" -license=('GPL3') +license=('GPL-3.0-or-later') depends=('libnotify' 'libhandy' 'libadwaita' 'gtk4' 'desktop-file-utils' 'libpamac-aur>=11.6' 'gnutls>=3.4' 'git') optdepends=('polkit-gnome: needed for authentification in Cinnamon, Gnome' 'lxsession: needed for authentification in Xfce, LXDE etc.') -makedepends=('gettext' 'itstool' 'vala' 'meson' 'ninja' 'gobject-introspection' 'xorgproto' 'asciidoc' 'git') +makedepends=('gettext' 'itstool' 'vala' 'meson' 'ninja' 'gobject-introspection' 'xorgproto' 'asciidoc' 'git' 'systemd') conflicts=('pamac' 'pamac-tray-appindicator' 'pamac-cli') provides=("pamac=$_pkgfixver-$pkgrel" "pamac-cli=$_pkgfixvercli-$_pkgrelcli") options=(!emptydirs !strip) diff --git a/paru-git/.CI/config b/paru-git/.CI/config index c9dfd51..e7cc91f 100644 --- a/paru-git/.CI/config +++ b/paru-git/.CI/config @@ -1,3 +1,3 @@ -CI_PKGBUILD_TIMESTAMP=1701469819 +CI_PKGBUILD_TIMESTAMP=1711427405 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=ae60105567930b4c13ea6d88080459558023ca03 +CI_GIT_COMMIT=5355012aa3529014145b8940dd0c62b21e53095a diff --git a/paru-git/.SRCINFO b/paru-git/.SRCINFO index 22df1a3..beab4d0 100644 --- a/paru-git/.SRCINFO +++ b/paru-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = paru-git pkgdesc = Feature packed AUR helper - pkgver = 2.0.1.r1.g584fb75 + pkgver = 2.0.3.rebuild.1.r0.g5355012 pkgrel = 1 url = https://github.com/morganamilo/paru arch = i686 @@ -10,11 +10,11 @@ pkgbase = paru-git arch = armv7h arch = armv6h arch = aarch64 - license = GPL3 + license = GPL-3.0-or-later makedepends = cargo - depends = glibc depends = git depends = pacman + depends = libalpm.so>=14 optdepends = bat: colored pkgbuild printing optdepends = devtools: build in chroot and downloading pkgbuilds provides = paru diff --git a/paru-git/PKGBUILD b/paru-git/PKGBUILD index 7ccc3fb..1b9b3b5 100644 --- a/paru-git/PKGBUILD +++ b/paru-git/PKGBUILD @@ -1,16 +1,16 @@ # Maintainer: Morgan pkgname=paru-git _pkgname=paru -pkgver=2.0.1.r1.g584fb75 +pkgver=2.0.3.rebuild.1.r0.g5355012 pkgrel=1 pkgdesc='Feature packed AUR helper' url='https://github.com/morganamilo/paru' source=("git+https://github.com/morganamilo/paru") backup=("etc/paru.conf") arch=('i686' 'pentium4' 'x86_64' 'arm' 'armv7h' 'armv6h' 'aarch64') -license=('GPL3') +license=('GPL-3.0-or-later') makedepends=('cargo') -depends=('glibc' 'git' 'pacman') +depends=('git' 'pacman' 'libalpm.so>=14') optdepends=('bat: colored pkgbuild printing' 'devtools: build in chroot and downloading pkgbuilds') conflicts=('paru') provides=('paru') diff --git a/paru/.CI/config b/paru/.CI/config index 276b161..ce741ed 100644 --- a/paru/.CI/config +++ b/paru/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1701469337 +CI_PKGBUILD_TIMESTAMP=1711427281 CI_PKGBUILD_SOURCE=aur diff --git a/paru/.SRCINFO b/paru/.SRCINFO index 75b3526..fc21685 100644 --- a/paru/.SRCINFO +++ b/paru/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = paru pkgdesc = Feature packed AUR helper - pkgver = 2.0.1 + pkgver = 2.0.3 pkgrel = 1 url = https://github.com/morganamilo/paru arch = i686 @@ -10,14 +10,15 @@ pkgbase = paru arch = armv7h arch = armv6h arch = aarch64 - license = GPL3 + license = GPL-3.0-or-later makedepends = cargo depends = git depends = pacman + depends = libalpm.so>=14 optdepends = bat: colored pkgbuild printing optdepends = devtools: build in chroot and downloading pkgbuilds backup = etc/paru.conf - source = paru-2.0.1.tar.gz::https://github.com/Morganamilo/paru/archive/v2.0.1.tar.gz - sha256sums = 47cae94d227cc08f86706408d234444af6dda192ba24309c251a0b43a8aa7980 + source = paru-2.0.3.tar.gz::https://github.com/Morganamilo/paru/archive/v2.0.3.tar.gz + sha256sums = ccf6defc4884d580a4b813cc40323a0389ffc9aa4bdc55f3764a46b235dfe1e0 pkgname = paru diff --git a/paru/PKGBUILD b/paru/PKGBUILD index 3af9653..fb82f27 100644 --- a/paru/PKGBUILD +++ b/paru/PKGBUILD @@ -1,17 +1,17 @@ # Maintainer: Morgan pkgname=paru -pkgver=2.0.1 +pkgver=2.0.3 pkgrel=1 pkgdesc='Feature packed AUR helper' url='https://github.com/morganamilo/paru' source=("$pkgname-$pkgver.tar.gz::https://github.com/Morganamilo/paru/archive/v$pkgver.tar.gz") backup=("etc/paru.conf") arch=('i686' 'pentium4' 'x86_64' 'arm' 'armv7h' 'armv6h' 'aarch64') -license=('GPL3') +license=('GPL-3.0-or-later') makedepends=('cargo') -depends=('git' 'pacman') +depends=('git' 'pacman' 'libalpm.so>=14') optdepends=('bat: colored pkgbuild printing' 'devtools: build in chroot and downloading pkgbuilds') -sha256sums=('47cae94d227cc08f86706408d234444af6dda192ba24309c251a0b43a8aa7980') +sha256sums=('ccf6defc4884d580a4b813cc40323a0389ffc9aa4bdc55f3764a46b235dfe1e0') prepare() { cd "$pkgname-$pkgver" diff --git a/prismlauncher/.CI/config b/prismlauncher/.CI/config index 2ab2a5d..b9426d6 100644 --- a/prismlauncher/.CI/config +++ b/prismlauncher/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1699388085 +CI_PKGBUILD_TIMESTAMP=1709502398 CI_PKGBUILD_SOURCE=aur diff --git a/prismlauncher/.SRCINFO b/prismlauncher/.SRCINFO index 53d1ca0..ba21c48 100644 --- a/prismlauncher/.SRCINFO +++ b/prismlauncher/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = prismlauncher pkgdesc = Minecraft launcher with ability to manage multiple instances. - pkgver = 8.0 + pkgver = 8.2 pkgrel = 1 url = https://prismlauncher.org arch = i686 @@ -30,7 +30,7 @@ pkgbase = prismlauncher optdepends = visualvm: Profiling support optdepends = xorg-xrandr: for older minecraft versions optdepends = java-runtime=8: for older minecraft versions - source = https://github.com/PrismLauncher/PrismLauncher/releases/download/8.0/PrismLauncher-8.0.tar.gz - sha256sums = 462f35eeda6e107b5f23a97500accf43e4227a0fb40145b29d0895bcfe3372b0 + source = https://github.com/PrismLauncher/PrismLauncher/releases/download/8.2/PrismLauncher-8.2.tar.gz + sha256sums = 80bc2f7657d9432c11039799fe85a31c284affa84a41cafb758ac32a96bd10fe pkgname = prismlauncher diff --git a/prismlauncher/PKGBUILD b/prismlauncher/PKGBUILD index 11d8b62..c1f18c1 100644 --- a/prismlauncher/PKGBUILD +++ b/prismlauncher/PKGBUILD @@ -8,7 +8,7 @@ # Contributor: dada513 pkgname=prismlauncher -pkgver=8.0 +pkgver=8.2 pkgrel=1 pkgdesc="Minecraft launcher with ability to manage multiple instances." arch=('i686' 'x86_64' 'aarch64') @@ -22,7 +22,7 @@ optdepends=('glfw: to use system GLFW libraries' 'xorg-xrandr: for older minecraft versions' 'java-runtime=8: for older minecraft versions') source=("https://github.com/PrismLauncher/PrismLauncher/releases/download/${pkgver}/PrismLauncher-${pkgver}.tar.gz") -sha256sums=('462f35eeda6e107b5f23a97500accf43e4227a0fb40145b29d0895bcfe3372b0') +sha256sums=('80bc2f7657d9432c11039799fe85a31c284affa84a41cafb758ac32a96bd10fe') prepare() { cd "PrismLauncher-${pkgver}" diff --git a/spotify/.CI/config b/spotify/.CI/config index 04817bc..cf9acda 100644 --- a/spotify/.CI/config +++ b/spotify/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1701880911 +CI_PKGBUILD_TIMESTAMP=1708557612 CI_PKGBUILD_SOURCE=aur diff --git a/spotify/.SRCINFO b/spotify/.SRCINFO index 6b0ae6a..1735812 100644 --- a/spotify/.SRCINFO +++ b/spotify/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = spotify pkgdesc = A proprietary music streaming service - pkgver = 1.2.26.1187 - pkgrel = 1 + pkgver = 1.2.31.1205 + pkgrel = 2 epoch = 1 url = https://www.spotify.com arch = x86_64 @@ -20,15 +20,15 @@ pkgbase = spotify optdepends = zenity: Adds support for importing local files optdepends = libnotify: Desktop notifications options = !strip - source = spotify-1.2.26.1187-g36b715a1-x86_64.deb::http://repository.spotify.com/pool/non-free/s/spotify-client/spotify-client_1.2.26.1187.g36b715a1_amd64.deb + source = spotify-1.2.31.1205-g4d59ad7c-x86_64.deb::http://repository.spotify.com/pool/non-free/s/spotify-client/spotify-client_1.2.31.1205.g4d59ad7c_amd64.deb source = spotify.sh source = spotify.protocol source = LICENSE - source = spotify-1.2.26.1187-1-Release::http://repository.spotify.com/dists/testing/Release - source = spotify-1.2.26.1187-1-Release.sig::http://repository.spotify.com/dists/testing/Release.gpg - source = spotify-1.2.26.1187-1-x86_64-Packages::http://repository.spotify.com/dists/testing/non-free/binary-amd64/Packages - validpgpkeys = E27409F51D1B66337F2D2F417A3A762FAFD4A51F - sha512sums = e7acc8e8558546e22cf9fc201ea21fc67bbc48543fed86c5a438e29309d9b55991a116cbffea639c43f65c6eb6616d0d8abdd7b8b5ae44f3d6dbf37b3f0e41f6 + source = spotify-1.2.31.1205-2-Release::http://repository.spotify.com/dists/testing/Release + source = spotify-1.2.31.1205-2-Release.sig::http://repository.spotify.com/dists/testing/Release.gpg + source = spotify-1.2.31.1205-2-x86_64-Packages::http://repository.spotify.com/dists/testing/non-free/binary-amd64/Packages + validpgpkeys = 63CBEEC9006602088F9B19326224F9941A8AA6D1 + sha512sums = 76babfbe40ab7b7c82d83a3ae40ab3dbc85e73b4a412aeaa8aa758c01c7cf69bd78df4ee222c4c5add84668f552212bed15049a8f8cd1025dc04a87f84c79f88 sha512sums = da48b628a4ea925dd8521133ebf364b261b11aed252d264dde6605d915cdb631919ffe672c58534bcdb60869e5d87a49a60a8198780b99517123f0031e83fdb1 sha512sums = 999abe46766a4101e27477f5c9f69394a4bb5c097e2e048ec2c6cb93dfa1743eb436bde3768af6ba1b90eaac78ea8589d82e621f9cbe7d9ab3f41acee6e8ca20 sha512sums = 2e16f7c7b09e9ecefaa11ab38eb7a792c62ae6f33d95ab1ff46d68995316324d8c5287b0d9ce142d1cf15158e61f594e930260abb8155467af8bc25779960615 diff --git a/spotify/PKGBUILD b/spotify/PKGBUILD index a2c6e4d..2cc0a17 100644 --- a/spotify/PKGBUILD +++ b/spotify/PKGBUILD @@ -6,10 +6,10 @@ # Contributor: Eothred pkgname=spotify -pkgver='1.2.26.1187' +pkgver='1.2.31.1205' epoch=1 -_commit=g36b715a1 -pkgrel=1 +_commit=g4d59ad7c +pkgrel=2 pkgdesc='A proprietary music streaming service' arch=('x86_64') license=('custom') @@ -34,7 +34,7 @@ source=("${pkgname}-${pkgver}-${_commit}-x86_64.deb::http://repository.spotify.c "${pkgname}-${pkgver}-${pkgrel}-Release::http://repository.spotify.com/dists/testing/Release" "${pkgname}-${pkgver}-${pkgrel}-Release.sig::http://repository.spotify.com/dists/testing/Release.gpg" "${pkgname}-${pkgver}-${pkgrel}-x86_64-Packages::http://repository.spotify.com/dists/testing/non-free/binary-amd64/Packages") -sha512sums=('e7acc8e8558546e22cf9fc201ea21fc67bbc48543fed86c5a438e29309d9b55991a116cbffea639c43f65c6eb6616d0d8abdd7b8b5ae44f3d6dbf37b3f0e41f6' +sha512sums=('76babfbe40ab7b7c82d83a3ae40ab3dbc85e73b4a412aeaa8aa758c01c7cf69bd78df4ee222c4c5add84668f552212bed15049a8f8cd1025dc04a87f84c79f88' 'da48b628a4ea925dd8521133ebf364b261b11aed252d264dde6605d915cdb631919ffe672c58534bcdb60869e5d87a49a60a8198780b99517123f0031e83fdb1' '999abe46766a4101e27477f5c9f69394a4bb5c097e2e048ec2c6cb93dfa1743eb436bde3768af6ba1b90eaac78ea8589d82e621f9cbe7d9ab3f41acee6e8ca20' '2e16f7c7b09e9ecefaa11ab38eb7a792c62ae6f33d95ab1ff46d68995316324d8c5287b0d9ce142d1cf15158e61f594e930260abb8155467af8bc25779960615' @@ -43,9 +43,10 @@ sha512sums=('e7acc8e8558546e22cf9fc201ea21fc67bbc48543fed86c5a438e29309d9b55991a 'SKIP') # Import key with: -# curl -sS https://download.spotify.com/debian/pubkey_7A3A762FAFD4A51F.gpg | gpg --import - -validpgpkeys=('E27409F51D1B66337F2D2F417A3A762FAFD4A51F') # Spotify Public Repository Signing Key +# curl -sS https://download.spotify.com/debian/pubkey_6224F9941A8AA6D1.gpg | gpg --import - +validpgpkeys=('63CBEEC9006602088F9B19326224F9941A8AA6D1') # Spotify Public Repository Signing Key # Old Keys: +# E27409F51D1B66337F2D2F417A3A762FAFD4A51F # F9A211976ED662F00E59361E5E3C45D7B312C643 # 8FD3D9A8D3800305A9FFF259D1742AD60D811D58 # 931FF8E79F0876134EDDBDCCA87FF9DF48BF1C90 diff --git a/visual-studio-code-bin/.CI/config b/visual-studio-code-bin/.CI/config index 9984868..fd05dae 100644 --- a/visual-studio-code-bin/.CI/config +++ b/visual-studio-code-bin/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1705604650 +CI_PKGBUILD_TIMESTAMP=1713016989 CI_PKGBUILD_SOURCE=aur diff --git a/visual-studio-code-bin/.SRCINFO b/visual-studio-code-bin/.SRCINFO index 501d23e..502171e 100644 --- a/visual-studio-code-bin/.SRCINFO +++ b/visual-studio-code-bin/.SRCINFO @@ -1,11 +1,10 @@ pkgbase = visual-studio-code-bin pkgdesc = Visual Studio Code (vscode): Editor for building and debugging modern web and cloud applications (official binary version) - pkgver = 1.85.2 + pkgver = 1.88.1 pkgrel = 1 url = https://code.visualstudio.com/ install = visual-studio-code-bin.install arch = x86_64 - arch = i686 arch = aarch64 arch = armv7h license = custom: commercial @@ -37,13 +36,11 @@ pkgbase = visual-studio-code-bin sha256sums = 2264dd138b77358709aa49fb3a7fe7d1b05b7ab0715760d66958000107bdd3dc sha256sums = 24ba09a6398c9781ed7cb6f1a9f6f38ec204899ba1f33db92638bf6d3cb0aed6 sha256sums = 8257a5ad82fa1f7dec11dfa064217b80df4cfec24f50cec7ca0ad62cf8295bfe - source_x86_64 = code_x64_1.85.2.tar.gz::https://update.code.visualstudio.com/1.85.2/linux-x64/stable - sha256sums_x86_64 = 8a9395d42c744647036bf1c406b0022f8626b40f22ddfcc2e6399cb4b715e06c - source_i686 = code_ia32_1.85.2.tar.gz::https://update.code.visualstudio.com/latest/linux-ia32/stable - sha256sums_i686 = 64360439cc2fa596838062f7e6f9757b79d4b775a564f18bad6cbad154bf850c - source_aarch64 = code_arm64_1.85.2.tar.gz::https://update.code.visualstudio.com/1.85.2/linux-arm64/stable - sha256sums_aarch64 = fd1218078a51bf45fa1471162e90714ad21ed12cd8e4515a8e944366cf8eed2d - source_armv7h = code_armhf_1.85.2.tar.gz::https://update.code.visualstudio.com/1.85.2/linux-armhf/stable - sha256sums_armv7h = 10ae33f6d06be4b838e4db5e3aa0ece94e1d5fa7eb2acebd7d1e38e8783d1e41 + source_x86_64 = code_x64_1.88.1.tar.gz::https://update.code.visualstudio.com/1.88.1/linux-x64/stable + sha256sums_x86_64 = 6272a8e634d68ae95cf2d98d9b45cf8b36fe4df48634d2ae22e08437f9e1a992 + source_aarch64 = code_arm64_1.88.1.tar.gz::https://update.code.visualstudio.com/1.88.1/linux-arm64/stable + sha256sums_aarch64 = 352b367383bdc23f7dd268b65a1ee7acb5b2300a7c9ffa42c8a81646626dd903 + source_armv7h = code_armhf_1.88.1.tar.gz::https://update.code.visualstudio.com/1.88.1/linux-armhf/stable + sha256sums_armv7h = 7ba0f07fe52a223fa9b3e4c227a4b9f6d6f135eaf9dee54bbab598addd60adc9 pkgname = visual-studio-code-bin diff --git a/visual-studio-code-bin/PKGBUILD b/visual-studio-code-bin/PKGBUILD index da11734..2e0d1a5 100644 --- a/visual-studio-code-bin/PKGBUILD +++ b/visual-studio-code-bin/PKGBUILD @@ -2,10 +2,10 @@ pkgname=visual-studio-code-bin _pkgname=visual-studio-code -pkgver=1.85.2 +pkgver=1.88.1 pkgrel=1 pkgdesc="Visual Studio Code (vscode): Editor for building and debugging modern web and cloud applications (official binary version)" -arch=('x86_64' 'i686' 'aarch64' 'armv7h') +arch=('x86_64' 'aarch64' 'armv7h') url="https://code.visualstudio.com/" license=('custom: commercial') provides=('code' 'vscode') @@ -24,17 +24,14 @@ source_x86_64=(code_x64_${pkgver}.tar.gz::https://update.code.visualstudio.com/$ source_aarch64=(code_arm64_${pkgver}.tar.gz::https://update.code.visualstudio.com/${pkgver}/linux-arm64/stable) source_armv7h=(code_armhf_${pkgver}.tar.gz::https://update.code.visualstudio.com/${pkgver}/linux-armhf/stable) -# i686 uses "latest" instead of a specific version as it's not always updated in a timely manner -source_i686=(code_ia32_${pkgver}.tar.gz::https://update.code.visualstudio.com/latest/linux-ia32/stable) # This generates cleaner checksums sha256sums=('10a5ee77a89fc934bcbd3e2a41a2ec4bd51d3cd048702f6d739ecec9eb3a7c4b' '2264dd138b77358709aa49fb3a7fe7d1b05b7ab0715760d66958000107bdd3dc' '24ba09a6398c9781ed7cb6f1a9f6f38ec204899ba1f33db92638bf6d3cb0aed6' '8257a5ad82fa1f7dec11dfa064217b80df4cfec24f50cec7ca0ad62cf8295bfe') -sha256sums_x86_64=('8a9395d42c744647036bf1c406b0022f8626b40f22ddfcc2e6399cb4b715e06c') -sha256sums_i686=('64360439cc2fa596838062f7e6f9757b79d4b775a564f18bad6cbad154bf850c') -sha256sums_aarch64=('fd1218078a51bf45fa1471162e90714ad21ed12cd8e4515a8e944366cf8eed2d') -sha256sums_armv7h=('10ae33f6d06be4b838e4db5e3aa0ece94e1d5fa7eb2acebd7d1e38e8783d1e41') +sha256sums_x86_64=('6272a8e634d68ae95cf2d98d9b45cf8b36fe4df48634d2ae22e08437f9e1a992') +sha256sums_aarch64=('352b367383bdc23f7dd268b65a1ee7acb5b2300a7c9ffa42c8a81646626dd903') +sha256sums_armv7h=('7ba0f07fe52a223fa9b3e4c227a4b9f6d6f135eaf9dee54bbab598addd60adc9') package() { _pkg=VSCode-linux-x64 diff --git a/whoogle-git/.CI/config b/whoogle-git/.CI/config index 90f1356..7f9cdad 100644 --- a/whoogle-git/.CI/config +++ b/whoogle-git/.CI/config @@ -1,3 +1,3 @@ CI_PKGBUILD_TIMESTAMP=1703262544 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=aaf90b52bb919fa3c6146c807a6419f676301ca6 +CI_GIT_COMMIT=7a1ebfe97519bf6bb7deba7ba664a81eaccdeff7