diff --git a/.ci/aur-state b/.ci/aur-state new file mode 100644 index 0000000000..62a2d370df --- /dev/null +++ b/.ci/aur-state @@ -0,0 +1 @@ +1732311038 diff --git a/.ci/config b/.ci/config index 90fe822602..57a0d76d7c 100644 --- a/.ci/config +++ b/.ci/config @@ -8,4 +8,6 @@ REDIS_SSH_PORT=400 REDIS_SSH_USER=package-deployer REPO_NAME=chaotic-aur TEMPLATE_ENABLE_UPDATES=true -CI_CODE_SKIP=123 \ No newline at end of file +CI_CODE_SKIP=123 +CI_DEFAULT_CLASS=5 +CI_REBUILD_BLACKLIST="glibc:gcc-libs" \ No newline at end of file diff --git a/.ci/on-commit.sh b/.ci/on-commit.sh index 260ec7fe88..872f33b750 100755 --- a/.ci/on-commit.sh +++ b/.ci/on-commit.sh @@ -82,7 +82,7 @@ function parse_changed_files() { fi # Extract the root folder of the changed file - if [[ "$file" =~ ^([a-z0-9_-]+)/ ]]; then + if [[ "$file" =~ ^([a-z0-9\._-]+)/ ]]; then local folder="${BASH_REMATCH[1]}" if [ -d "$folder" ]; then CHANGED_ROOT_FOLDERS["$folder"]=1 diff --git a/.ci/on-schedule.sh b/.ci/on-schedule.sh index c6a3cfeb96..75f4886bd2 100755 --- a/.ci/on-schedule.sh +++ b/.ci/on-schedule.sh @@ -136,22 +136,24 @@ function collect_changed_libs() { function generate-commit() { set -euo pipefail - local COMMIT_MESSAGE="chore(packages): update packages" + local COMMIT_MESSAGE + if ((${#COMMIT_MESSAGE_PACKAGES[@]} > 0)) && ((${#COMMIT_MESSAGE_PACKAGES[@]} < 4)); then + local packages="$(printf "%s, " "${COMMIT_MESSAGE_PACKAGES[@]}")" + COMMIT_MESSAGE="chore(update): ${packages%, }" + elif ((${#COMMIT_MESSAGE_PACKAGES[@]} > 3)); then + COMMIT_MESSAGE="chore(update): update packages (${#COMMIT_MESSAGE_PACKAGES[@]})" + else + COMMIT_MESSAGE="chore(update): update packages" + fi + if [ -v GITHUB_ACTIONS ]; then COMMIT_MESSAGE+=" [skip ci]" fi if [ "$1" == ".final" ]; then - local COMMIT_DESCRIPTION="" packages="" - if (( ${#COMMIT_MESSAGE_PACKAGES[@]} > 0 )); then - packages="$(printf "%s, " "${COMMIT_MESSAGE_PACKAGES[@]}")" - COMMIT_DESCRIPTION="Package files were changed for the following package" - if (( ${#COMMIT_MESSAGE_PACKAGES[@]} > 1 )); then - COMMIT_DESCRIPTION+=$'s:\n' - else - COMMIT_DESCRIPTION+=$':\n' - fi - COMMIT_DESCRIPTION+="${packages%, }" - COMMIT_DESCRIPTION+=$'\n\nNote: This is not the same as the list of packages that were scheduled for a rebuild. Certain packages listed here may be built on a different schedule.' + local COMMIT_DESCRIPTION="" + if ((${#COMMIT_MESSAGE_PACKAGES[@]} > 3)); then + local packages="$(printf "%s, " "${COMMIT_MESSAGE_PACKAGES[@]}")" + COMMIT_DESCRIPTION+="changed: ${packages%, }" fi git commit -q --amend -m "$COMMIT_MESSAGE" -m "$COMMIT_DESCRIPTION" else @@ -201,7 +203,7 @@ function update-lib-bump() { # If the version we except matches the version in the database if [ "$(vercmp "${_PKGVER}" "${_PKGVER_IN_DB}")" = "0" ]; then # Increment the bump count - _BUMPCOUNT=$(( _BUMPCOUNT + 1 )) + _BUMPCOUNT=$((_BUMPCOUNT + 1)) else # Otherwise, set the bump count to 1 _BUMPCOUNT=1 @@ -384,7 +386,7 @@ function update_pkgbuild() { fi local NEW_TIMESTAMP="${AUR_TIMESTAMPS[$pkgbase]}" - if (( NEW_TIMESTAMP <= LAST_AUR_TIMESTAMP )); then + if ((NEW_TIMESTAMP <= LAST_AUR_TIMESTAMP)); then return 0 fi http_proxy="$CI_AUR_PROXY" https_proxy="$CI_AUR_PROXY" update_via_git VARIABLES_UPDATE_PKGBUILD "$git_url" @@ -476,7 +478,11 @@ for package in "${PACKAGES[@]}"; do fi # We also need to check the worktree for changes, because we might have an updated git hash elif ! UTIL_CHECK_STATE_DIFF "$package"; then - MODIFIED_PACKAGES+=("$package") + if [[ -v "VARIABLES[CI_ON_TRIGGER]" ]]; then + UTIL_PRINT_INFO "Will not schedule $package because it has trigger ${VARIABLES[CI_ON_TRIGGER]} set." + else + MODIFIED_PACKAGES+=("$package") + fi fi done diff --git a/.ci/schedule-packages.sh b/.ci/schedule-packages.sh index 125407fec8..641d93c60f 100755 --- a/.ci/schedule-packages.sh +++ b/.ci/schedule-packages.sh @@ -12,6 +12,7 @@ PACKAGES=("$@") # shellcheck source=./util.shlib source .ci/util.shlib +UTIL_READ_CONFIG_FILE if [ -v "PACKAGES[0]" ] && [ "${PACKAGES[0]}" == "all" ] && [ "$COMMAND" == "schedule" ]; then UTIL_PRINT_INFO "Rebuild of all packages requested." @@ -70,7 +71,19 @@ if [ "$COMMAND" == "schedule" ]; then # Write dep tree to file so it can be transferred as file. # This is necessary because the output of the function turned out too large for the command line. generate_deptree >.ci/deptree.txt - PARAMS+=("${PACKAGES[@]}") + for package in "${PACKAGES[@]}"; do + unset VARIABLES + declare -A VARIABLES=() + UTIL_READ_MANAGED_PACAKGE "$package" VARIABLES || true + PACKAGE_PASSED_STRING="$package" + # Append the build class (e.g. a package that requires a lot of compute resources will be class 2) + if [ -v "VARIABLES[BUILDER_CLASS]" ]; then + PACKAGE_PASSED_STRING+="/${VARIABLES[BUILDER_CLASS]}" + elif [ "$CI_DEFAULT_CLASS" != "" ]; then + PACKAGE_PASSED_STRING+="/${CI_DEFAULT_CLASS}" + fi + PARAMS+=("${PACKAGE_PASSED_STRING}") + done elif [ "$COMMAND" == "auto-repo-remove" ]; then PARAMS+=("${PACKAGES[@]}") fi diff --git a/.ci/util.shlib b/.ci/util.shlib index fbfb2329ff..de34d96a8b 100644 --- a/.ci/util.shlib +++ b/.ci/util.shlib @@ -1,9 +1,29 @@ #!/usr/bin/env bash # shellcheck disable=2034 -KNOWN_VARIABLE_LIST=(CI_PKGBUILD_SOURCE CI_PACKAGE_BUMP CI_ON_TRIGGER CI_MANAGE_AUR BUILDER_CACHE_SOURCES BUILDER_EXTRA_TIMEOUT CI_REBUILD_TRIGGERS) +KNOWN_VARIABLE_LIST=(CI_PKGBUILD_SOURCE CI_PACKAGE_BUMP CI_ON_TRIGGER CI_MANAGE_AUR CI_REBUILD_TRIGGERS BUILDER_CACHE_SOURCES BUILDER_EXTRA_TIMEOUT BUILDER_CLASS) KNOWN_STATE_VARIABLE_LIST=(CI_GIT_COMMIT) -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" [CI_CLONE_DELAY]="0" [CI_AUR_PROXY]="" [CI_LIB_DB]="" [CI_CODE_SKIP]=123) +declare -A KNOWN_CONFIG_LIST=([BUILD_REPO]="chaotic-aur" + [CI_AUR_PROXY]="" + [CI_CLONE_DELAY]="0" + [CI_CLONE_DELAY]="0" + [CI_CODE_SKIP]=123 + [CI_DEFAULT_CLASS]="" + [CI_HUMAN_REVIEW]="false" + [CI_LIB_DB]="" + [CI_MANAGE_AUR]="false" + [CI_REBUILD_BLACKLIST]="" + [CI_REBUILD_TRIGGERS]="" + [GIT_AUTHOR_EMAIL]="ci@example.com" + [GIT_AUTHOR_NAME]="chaotic-aur" + [REDIS_PORT]="6379" + [REDIS_SSH_HOST]="localhost" + [REDIS_SSH_PORT]="22" + [REDIS_SSH_USER]="redis" + [REPO_NAME]="chaotic-aur" + [TEMPLATE_ENABLE_UPDATES]="true" + [TEMPLATE_REPO]="https://github.com/chaotic-cx/chaotic-repository-template" +) EXCLUDE_FILES=(.CI .git .gitignore) @@ -355,4 +375,4 @@ function UTIL_CHECK_STATE_DIFF() { else return 0 fi -} \ No newline at end of file +} diff --git a/1password/.CI/config b/1password/.CI/config index 64d951edbe..66bee94775 100644 --- a/1password/.CI/config +++ b/1password/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1725396956 CI_PKGBUILD_SOURCE=aur diff --git a/1password/.SRCINFO b/1password/.SRCINFO index 7f1bbd577e..3faef2a7ff 100644 --- a/1password/.SRCINFO +++ b/1password/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = 1password pkgdesc = Password manager and secure wallet - pkgver = 8.10.44 - pkgrel = 34 + pkgver = 8.10.52 + pkgrel = 25 url = https://1password.com install = 1password.install arch = x86_64 @@ -9,11 +9,11 @@ pkgbase = 1password conflicts = 1password-beta conflicts = 1password-beta-bin options = !strip - source = https://downloads.1password.com/linux/tar/stable/x86_64/1password-8.10.44.x64.tar.gz - source = https://downloads.1password.com/linux/tar/stable/x86_64/1password-8.10.44.x64.tar.gz.sig + source = https://downloads.1password.com/linux/tar/stable/x86_64/1password-8.10.52.x64.tar.gz + source = https://downloads.1password.com/linux/tar/stable/x86_64/1password-8.10.52.x64.tar.gz.sig validpgpkeys = 3FEF9748469ADBE15DA7CA80AC2D62742012EA22 - sha256sums = 3b86a637884e7151eb40b1b07e446c17d462d3c32b1c8eb794e3a70e23a5bb2b - sha256sums = eedeec00015c0f2f5664f022d3b3c52c70e48af37e9962971936b803d912d3f5 + sha256sums = d0de8db13016a92aa14400afe1441a30f2a557be4ea03df84f199e00d58e6328 + sha256sums = 3fcb8859c856131168e6a5aa5564740f51ca843d1681fb3430eed57ba09ded44 pkgname = 1password depends = hicolor-icon-theme diff --git a/1password/PKGBUILD b/1password/PKGBUILD index 3081849ead..69514c77be 100644 --- a/1password/PKGBUILD +++ b/1password/PKGBUILD @@ -1,9 +1,9 @@ pkgname=1password -_tarver=8.10.44 +_tarver=8.10.52 _tar="1password-${_tarver}.x64.tar.gz" pkgver=${_tarver//-/_} -pkgrel=34 +pkgrel=25 conflicts=('1password-beta' '1password-beta-bin') pkgdesc="Password manager and secure wallet" arch=('x86_64') @@ -12,8 +12,8 @@ license=('LicenseRef-1Password-Proprietary') options=(!strip) install="1password.install" source=(https://downloads.1password.com/linux/tar/stable/${CARCH}/${_tar}{,.sig}) -sha256sums=('3b86a637884e7151eb40b1b07e446c17d462d3c32b1c8eb794e3a70e23a5bb2b' - 'eedeec00015c0f2f5664f022d3b3c52c70e48af37e9962971936b803d912d3f5' +sha256sums=('d0de8db13016a92aa14400afe1441a30f2a557be4ea03df84f199e00d58e6328' + '3fcb8859c856131168e6a5aa5564740f51ca843d1681fb3430eed57ba09ded44' ) validpgpkeys=('3FEF9748469ADBE15DA7CA80AC2D62742012EA22') diff --git a/2bwm-git/.CI/config b/2bwm-git/.CI/config index a69ef2f7e8..8471e6a8af 100644 --- a/2bwm-git/.CI/config +++ b/2bwm-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1567322784 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=3ef4149e60f71c74bae5f6b983dbec2fda7cfbab diff --git a/64gram-desktop/.CI/config b/64gram-desktop/.CI/config index 22ebe498b2..d503698f8a 100644 --- a/64gram-desktop/.CI/config +++ b/64gram-desktop/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1726784283 +CI_PACKAGE_BUMP=1:1.1.46-1/1 CI_PKGBUILD_SOURCE=aur diff --git a/64gram-desktop/.SRCINFO b/64gram-desktop/.SRCINFO index 0a3baad99c..b2026dc9fd 100644 --- a/64gram-desktop/.SRCINFO +++ b/64gram-desktop/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = 64gram-desktop pkgdesc = Unofficial desktop version of Telegram messaging app - pkgver = 1.1.39 + pkgver = 1.1.49 pkgrel = 1 epoch = 1 url = https://github.com/TDesktop-x64/tdesktop @@ -55,12 +55,12 @@ pkgbase = 64gram-desktop depends = openh264 optdepends = webkit2gtk: embedded browser features optdepends = xdg-desktop-portal: desktop integration - noextract = 64Gram-1.1.39-full.tar.gz - source = https://github.com/TDesktop-x64/tdesktop/releases/download/v1.1.39/64Gram-1.1.39-full.tar.gz + noextract = 64Gram-1.1.49-full.tar.gz + source = https://github.com/TDesktop-x64/tdesktop/releases/download/v1.1.49/64Gram-1.1.49-full.tar.gz source = block-sponsored_messages.patch source = fix-lzma-link.patch source = io.github.tdesktop_x64.TDesktop.desktop - sha512sums = 928be9f3771763a22dec0441b47bec2e57ec7ed7910c0d09cf40abac7d8b59d2535be2290d40fe0690b58be98155ff82d0f6f4f1acbaec055c093cce97fce18d + sha512sums = 9b31f891e73f0bcea6f44d5221f341a1e6c31df8bde547775fb66eeedfbe498c8b013553692f3abd27f64653e91f3a8e06192e952856d172f6a94e647b0b0c9c sha512sums = 0e0f0dcb99ed6c7566e7a75404e39e16c27658eb5999e041a82aa975447ce8719ce6703cc36efc039e16a3ff3721f4a7c76df24f0ead9aa48ce5e23001142072 sha512sums = d813a5ac6ff2208b693ecf494d7bf036087e223662f9f34aaaeafea0afe0fe798e867b9610f7221ea80319865502c20b61310d5a31634b888793873d63322463 sha512sums = ea027bc2d40c74507adf32380444207210a8c31cdba57f3f468d23d8e9c7376647cc8c713f188660f9b1dacd9041227aafd5a27c7889f47ea3985712b6b74b8b diff --git a/64gram-desktop/PKGBUILD b/64gram-desktop/PKGBUILD index b60f5bafe6..5209fc9e9a 100644 --- a/64gram-desktop/PKGBUILD +++ b/64gram-desktop/PKGBUILD @@ -4,7 +4,7 @@ # Contributor: Daniil Kovalev pkgname=64gram-desktop _pkgname=64Gram -pkgver=1.1.39 +pkgver=1.1.49 pkgrel=1 epoch=1 pkgdesc='Unofficial desktop version of Telegram messaging app' @@ -30,7 +30,7 @@ source=("https://github.com/TDesktop-x64/tdesktop/releases/download/v${pkgver}/$ noextract=("${_pkgname}-${pkgver}-full.tar.gz") -sha512sums=('928be9f3771763a22dec0441b47bec2e57ec7ed7910c0d09cf40abac7d8b59d2535be2290d40fe0690b58be98155ff82d0f6f4f1acbaec055c093cce97fce18d' +sha512sums=('9b31f891e73f0bcea6f44d5221f341a1e6c31df8bde547775fb66eeedfbe498c8b013553692f3abd27f64653e91f3a8e06192e952856d172f6a94e647b0b0c9c' '0e0f0dcb99ed6c7566e7a75404e39e16c27658eb5999e041a82aa975447ce8719ce6703cc36efc039e16a3ff3721f4a7c76df24f0ead9aa48ce5e23001142072' 'd813a5ac6ff2208b693ecf494d7bf036087e223662f9f34aaaeafea0afe0fe798e867b9610f7221ea80319865502c20b61310d5a31634b888793873d63322463' 'ea027bc2d40c74507adf32380444207210a8c31cdba57f3f468d23d8e9c7376647cc8c713f188660f9b1dacd9041227aafd5a27c7889f47ea3985712b6b74b8b') @@ -38,7 +38,7 @@ sha512sums=('928be9f3771763a22dec0441b47bec2e57ec7ed7910c0d09cf40abac7d8b59d2535 prepare() { LANG=C.UTF-8 bsdtar -xf ${_pkgname}-${pkgver}-full.tar.gz cd $_pkgname-$pkgver-full - patch -Np1 --binary -i ../block-sponsored_messages.patch + #patch -Np1 --binary -i ../block-sponsored_messages.patch patch -p1 --binary < ../fix-lzma-link.patch find "${srcdir}"/ -type f -exec dos2unix {} \; } diff --git a/7-zip-full/.CI/config b/7-zip-full/.CI/config index 95f5851726..66bee94775 100644 --- a/7-zip-full/.CI/config +++ b/7-zip-full/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1723480960 CI_PKGBUILD_SOURCE=aur diff --git a/7-zip/.CI/config b/7-zip/.CI/config index 06630a77e7..66bee94775 100644 --- a/7-zip/.CI/config +++ b/7-zip/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1723499049 CI_PKGBUILD_SOURCE=aur diff --git a/8188eu-aircrack-dkms-git/.CI/config b/8188eu-aircrack-dkms-git/.CI/config index 51333d2cc0..66bee94775 100644 --- a/8188eu-aircrack-dkms-git/.CI/config +++ b/8188eu-aircrack-dkms-git/.CI/config @@ -1,4 +1 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1720078365 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=f969c544ab6100da3d80a5709e077f920f2df698 diff --git a/8188eu-aircrack-dkms-git/.SRCINFO b/8188eu-aircrack-dkms-git/.SRCINFO index fb6ea758d6..0fdd694bf4 100644 --- a/8188eu-aircrack-dkms-git/.SRCINFO +++ b/8188eu-aircrack-dkms-git/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = 8188eu-aircrack-dkms-git pkgdesc = Realtek RTL8188EUS and RTL8188ETV Wi-Fi driver with monitor mode & frame injection support - pkgver = 5.3.9.r196.3fae723 - pkgrel = 5 + pkgver = 5.3.9.r198.f969c54 + pkgrel = 1 url = https://github.com/aircrack-ng/rtl8188eus arch = x86_64 arch = i686 @@ -14,10 +14,8 @@ pkgbase = 8188eu-aircrack-dkms-git conflicts = 8188eu-dkms conflicts = 8188eu-dkms-git source = 8188eu::git+https://github.com/aircrack-ng/rtl8188eus#branch=v5.3.9 - source = https://github.com/aircrack-ng/rtl8188eus/pull/275.patch source = blacklist-r8188eu.conf md5sums = SKIP - md5sums = e1f3e805276fb68aaf359442dd57f764 md5sums = 8af5df9ed717b3bb48df59dac0c8a9c8 pkgname = 8188eu-aircrack-dkms-git diff --git a/8188eu-aircrack-dkms-git/PKGBUILD b/8188eu-aircrack-dkms-git/PKGBUILD index d622e582a4..f67f51fe07 100644 --- a/8188eu-aircrack-dkms-git/PKGBUILD +++ b/8188eu-aircrack-dkms-git/PKGBUILD @@ -3,8 +3,8 @@ _pkgname=8188eu _pkgver=5.3.9 pkgname=8188eu-aircrack-dkms-git -pkgver=5.3.9.r196.3fae723 -pkgrel=5 +pkgver=5.3.9.r198.f969c54 +pkgrel=1 pkgdesc="Realtek RTL8188EUS and RTL8188ETV Wi-Fi driver with monitor mode & frame injection support" arch=('x86_64' 'i686' 'pentium4' 'aarch64') url="https://github.com/aircrack-ng/rtl8188eus" @@ -14,10 +14,8 @@ makedepends=('git') provides=('8188eu-dkms') conflicts=('8188eu-dkms' '8188eu-dkms-git') source=("${_pkgname}::git+${url}#branch=v${_pkgver}" - 'https://github.com/aircrack-ng/rtl8188eus/pull/275.patch' 'blacklist-r8188eu.conf') md5sums=('SKIP' - 'e1f3e805276fb68aaf359442dd57f764' '8af5df9ed717b3bb48df59dac0c8a9c8') pkgver() { @@ -25,10 +23,6 @@ pkgver() { printf "${_pkgver}.r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" } -prepare() { - patch -p1 -d $srcdir/8188eu/ < 275.patch -} - package() { # Blacklist in-kernel r8188eu install -Dm644 blacklist-r8188eu.conf "${pkgdir}/etc/modprobe.d/r8188eu.conf" diff --git a/86box-git/.CI/config b/86box-git/.CI/config index ff5f50b48e..8471e6a8af 100644 --- a/86box-git/.CI/config +++ b/86box-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1725208312 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=d6a01a102b6dfc5ca91542e88120b30101145db3 diff --git a/86box/.CI/config b/86box/.CI/config index 71270c78a5..66bee94775 100644 --- a/86box/.CI/config +++ b/86box/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1725207991 CI_PKGBUILD_SOURCE=aur diff --git a/README.md b/README.md index 370aa6b2a8..025bccd200 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,122 @@ -# Chaotic Repository Template +# Chaotic-AUR PKGBUILDs -This repository contains the template for Chaotic-AUR's infra 4.0. -It supersedes Infra 3.0, taking a different approach to distributing and executing builds. +This is the right place to submit package requests, bug reports, or outdated packages +of [Chaotic-AUR](https://aur.chaotic.cx) 📜 -## Reasoning +⚠️ We switched to our entirely [new infra 4.0 on October 18](https://gitlab.com/chaotic-aur/pkgbuilds), which means we +now operate on GitLab CI! +While we still accept issues and bug reports on our previous `packages` repo, on GitHub, +all the pipelines, updates and insights in general ongoings will majorly be happening on the other side. +Still, the old repo will be kept around as a push-only mirror. + +![Chaotic-AUR](https://avatars.githubusercontent.com/u/66071775?s=400&u=99bc0536e7e77fe3e58839996600848f2d930ed5&v=4) + +#### Some packages we have already built + +- Variations of the Linux kernel such as + - [Cachyos](https://aur.archlinux.org/packages/linux-cachyos) / [Cachyos-BORE](https://aur.archlinux.org/packages/linux-cachyos-bore), + - [Clear](https://aur.archlinux.org/packages/linux-clear), + - [Nitrous](https://aur.archlinux.org/packages/linux-nitrous), + - [VFIO](https://aur.archlinux.org/packages/linux-vfio), + - [XanMod](https://aur.archlinux.org/packages/linux-xanmod) / [XanMod-RT](https://aur.archlinux.org/packages/linux-xanmod-rt) / [XanMod-LTS](https://aur.archlinux.org/packages/linux-xanmod-lts), + - [Mainline](https://aur.archlinux.org/packages/linux-mainline), + - [LQX](https://aur.archlinux.org/packages/linux-lqx) + - and a few architecture-specific variants of the previously mentioned kernels +- Emulators and gaming utilities +- A lot of browsers like + [Firedragon](https://github.com/dr460nf1r3/firedragon-browser), + [Firefox-wayland-hg](https://aur.archlinux.org/packages/firefox-wayland-hg), + [Floorp](https://floorp.app/), + [Icecat](http://www.gnu.org/software/gnuzilla/), + and [Ungoogled Chromium](https://github.com/Eloston/ungoogled-chromium) +- ... a lot more ... + +Every folder in this repository will be built by our build system, +for information about currently queued up packages and build logs +check out our [build status page](https://aur.chaotic.cx/status)! +🕵️‍♀️ + +A complete list of packages with their current versions is additionally +available [here](https://aur.chaotic.cx/package-list). + +#### Modified packages + +While we would prefer to build AUR packages without modification, doing so is often not practical or possible. + +- Depends, options or commands may be missing. +- Erroneous options or commands may be present. +- Packages may not build or function without changes. +- Packages may not meet packaging standards. + +To address such issues: + +- [Toolbox](https://github.com/chaotic-aur/toolbox) automatically corrects some common errors. +- Manual corrections may be applied with [Interfere](https://github.com/chaotic-aur/interfere). +- The original package may be forked as a custom package. + +#### Special packages + +- `chaotic-keyring`: Public keys to verify the Chaotic-AUR package signatures. +- `chaotic-mirrorlist`: List of servers mirroring Chaotic-AUR packages. +- `chaotic-interfere`: Marker indicating manually applied interferes. This package is _not_ intended to be installed. + +#### Banished and rejected packages 📑 + +This is a list of packages that we will reject for good reasons: + +- **snapd**: We didn't know how to help our users with it since it breaks _A LOT_. We recommend using native packages + or [FlatPak](https://wiki.archlinux.org/title/Flatpak) instead. + Also, [there are a lot of other reasons to not use Snaps](https://old.reddit.com/r/linuxmemes/comments/ppyz0g/damn_you_ubuntu/hd7jg1p/). + +- **lib32-\***: The difficulty of maintaining 32-bit packages is increasing as their usefulness decreases. They may be + considered to keep existing packages working, like `wine-*`. Otherwise, use 64-bit packages when available. + +- **gst-plugins-{ugly,bad}**: These need to be rebuilt too frequently, which can't be dealt with as we don't control the + packages pkgrel. Ultimately this would result in a bad user experience. + +- **ffmpeg-{full,headless}**: These need to be rebuilt too frequently, which can't be dealt with as we don't + control the packages pkgrel. Ultimately this would result in a bad user experience. + +- **mpv-amd, ffmpeg-amd**: This is just MPV/FFMPEG without CUDA and NVENC to achieve shorter build times without actual + end-user benefit. + +- **unreal-engine (and -git)**: Some mirrors don't have sufficient storage space. + +- **python2**: Has been EOL for a couple of years and + was [removed from Arch repositories](https://archlinux.org/news/removing-python2-from-the-repositories/). Requests for + packages that depend on it in any way will be rejected ( + see [#1958](https://github.com/chaotic-aur/packages/issues/1958)). + +- **linux-ck**: Other kernels contain the same optimizations, and official pre-built binaries are available + from [repo-ck](https://wiki.archlinux.org/title/Unofficial_user_repositories#repo-ck). + +- Packages that use EOL, non-standard, or modified versions of Electron. Packages that use Electron as a web browser. + The consecutive cluster of Electron versions available from the `extra` repository are acceptable. + +- Dependencies without any dependents: Such packages are useless by themselves. Maintaining them wastes effort that is + better spent elsewhere. + +#### Banned due to licensing issues 🛑 + +- **AMDGPU PRO** Drivers. Redistribution of both software and documentation is prohibited. + +- **aseprite{-git}**: Redistribution is explicitly prohibited in + its [FAQ](https://www.aseprite.org/faq/#can-i-redistribute-aseprite). + +- **feishu**: Unauthorized redistribution of their applications is explicitly prohibited + per [ToS](https://www.feishu.cn/en/terms). + +- **multimc\***: Redistribution of custom binaries that include their API keys and trademarked assets + is [explicitly prohibited](https://multimc.org/#Branding). + +- **rider**: Redistribution disallowed per [ToS](https://www.jetbrains.com/legal/docs/toolbox/user). + +- **tlauncher**: Legal gray area, as it potentially allows playing Minecraft in a reduced capacity without a license. + +### Build system details Our previous build tools, the so-called [toolbox](https://github.com/chaotic-aur/toolbox) was initially created by -@pedrohlc to deal with one issue: having a lot of packages to compile while not having many maintainers for all of the +@pedrohlc to deal with one issue: having a lot of packages to compile while not having many maintainers for all the packages. Additionally, Chaotic-AUR has quite inhomogeneous builders: servers, personal devices, and one HPC which all need to be integrated somehow. @@ -22,7 +132,7 @@ A few key ideas about this new setup: - The tools should be available as Docker containers to make them easy to use on other systems than Arch. - All logic besides the scheduler (which is written in TypeScript using BullMQ) should be written in Bash -## How it works +### How it works The new system consists of three integral parts: @@ -37,7 +147,7 @@ Compared to Infra 3.0, this means we have the following key differences: - We no longer have package lists but a repository full of PKGBUILD folders. These PKGBUILDs are getting pulled either from AUR once a package has been updated or updated manually in case a Git repository and its tags serve as a source. -- No more dedicated builders (might change in the future, eg. for heavy builds?) but a common build queue. +- No more dedicated builders (might change in the future, e.g. for heavy builds?) but a common build queue. - Routines are no longer necessary - CI determines and adds packages to the schedule as needed. The only "routine-like" thing we have is the CI schedule, executing tasks like PKGBUILD or version updates. - The actual logic behind the build process (like `interfere.sh` or database management) was moved to @@ -45,7 +155,7 @@ Compared to Infra 3.0, this means we have the following key differences: this one updates daily/on-commit and gets pulled regularly by the Manager instance. - Live-updating build logs will be available via CI - multiple revisions instead of only the latest. - The interfere repo is no longer needed, instead, package builds can be configured via the `.CI` folder in their - respective PKGBUILD folders. All known interfere types can be put here (eg. `PKGBUILD.append` or `prepare.sh`), + respective PKGBUILD folders. All known interfere types can be put here (e.g. `PKGBUILD.append` or `prepare.sh`), keeping existing interferes working. - The CI's behavior concerning each package can be configured via a `config` file in the `.CI` folder: this file stores information like PKGBUILD source (it can be AUR or something different), PKGBUILD timestamp on AUR, most recent Git @@ -55,9 +165,12 @@ Compared to Infra 3.0, this means we have the following key differences: - Adding and removing packages is entirely controlled via Git - after adding a new PKGBUILD folder via commit, the corresponding package will automatically be deployed. Removing it has the opposite effect. -## Workflows and information +The following will contain information to understand how it all works together, the full build system API documentation +can be found [here](https://chaotic-manager.pages.dev/). -### Adding packages +### Workflows and information + +#### Adding packages Adding packages is as easy as creating a new folder named after the `$pkgbase` of the package. Put the PKGBUILD and all other required files in here. @@ -76,14 +189,14 @@ so ([cz-cli](https://github.com/commitizen/cz-cli) can help with that!). This me This not only helps with having a uniform commit history, it also allows automatic changelog generation. -### Removing packages +#### Removing packages This can be done by removing the folder containing a package's PKGBUILD. A cleanup job will then automatically remove any obsolete package via the `on-commit` pipeline run. This will also consider any split packages that a package might produce. Renaming folders does also count as removing packages. -### On-commit pipeline +#### On-commit pipeline Whenever pushing a new commit, the CI pipeline will carry out the following actions: @@ -97,11 +210,11 @@ Whenever pushing a new commit, the CI pipeline will carry out the following acti all obsolete packages in case an earlier step is detected. - In case all of these actions succeed, the `scheduled` tag gets updated, so we can refer to it on a later pipeline run. -### On-schedule pipeline +#### On-schedule pipelines -#### Half-hourly +##### Hourly -Every half an hour, the on-schedule pipeline will carry out a few tasks: +Every hour, the on-schedule pipeline will carry out a few tasks: - Updating the CI template from the template repository (in case this is enabled via `.ci/config`) - Check if the scheduled tag does not exist or scheduled does not point to HEAD (in this case abort mission!) @@ -137,14 +250,14 @@ Every half an hour, the on-schedule pipeline will carry out a few tasks: - Obsolete branches (eg. merged review PRs) are getting pruned - The scheduled tag gets updated again -#### Daily +##### Daily A daily pipeline schedule has been added for specific packages which generate their `pkgver` dynamically. To make use of it, set `CI_ON_TRIGGER=daily` inside the `.CI/config` file of the package. -### Manual scheduling +#### Manual scheduling -#### Scheduling packages without git commits +##### Scheduling packages without git commits Packages can be added to the schedule manually by going to the [pipeline runs](https://gitlab.com/chaotic-aur/pkgbuilds/-/pipelines) page, selecting "Run pipeline" and @@ -153,13 +266,13 @@ schedule them. `PACKAGES` can also be set to `all` to schedule all packages. In case one or many packages are getting scheduled, it needs to follow the format `pkgname1:pkgname2:pkgname3`. -#### Running scheduled pipelines on-demand +##### Running scheduled pipelines on-demand This can be done by going to the [pipeline runs](https://gitlab.com/chaotic-aur/pkgbuilds/-/pipeline_schedules) page, selecting "Run pipeline" (the play symbol). A link to the pipeline page will be provided, where the pipeline logs can be obtained. -### Adding interfere +#### Adding interfere Put the required interfere file in the `.CI` folder of a PKGBUILD folder: @@ -178,17 +291,18 @@ Put the required interfere file in the `.CI` folder of a PKGBUILD folder: - `on-failure.sh`: A script that is being executed if the build fails. - `on-success.sh`: A script that is being executed if the build succeeds. -### Bumping pkgrel +#### Bumping pkgrel -This is now carried out by adding the required variable `CI_PACKAGE_BUMP` to `.CI/config`. See below for more information. +This is now carried out by adding the required variable `CI_PACKAGE_BUMP` to `.CI/config`. See below for more +information. -### Dependency trees +#### Dependency trees The CI builds dependency trees automatically. They are passed to the Chaotic manager as a CI artifact and read whenever a schedule command is being executed. No manual intervention is needed. -### .CI/config +#### .CI/config The `.CI/config` file inside each package directory contains additional flags to control the pipelines and build processes with. @@ -196,8 +310,10 @@ processes with. - `CI_MANAGE_AUR`: By setting this variable to `true`, the CI will update the corresponding AUR repository at the end of a pipeline run if changes occur (omitting CI-related files) -- `CI_PACKAGE_BUMP`: Controls package bumps for all packages which don't have `CI_MANAGE_AUR` set to `true`. The format this needs - to follow is either `1:1.2.3-1/1` (full current version and bump count after the slash) or `1.2.3` (full current package version, +- `CI_PACKAGE_BUMP`: Controls package bumps for all packages which don't have `CI_MANAGE_AUR` set to `true`. The format + this needs + to follow is either `1:1.2.3-1/1` (full current version and bump count after the slash) or `1.2.3` (full current + package version, resolves to bump count `1`). - `CI_PKGBUILD_SOURCE`: Sets the source for all PKGBUILD-related files, used for pulling updated files from remote repositories. @@ -211,15 +327,20 @@ processes with. Since this checks whether "$TRIGGER == $CI_ON_TRIGGER", any custom schedule can be created using pipeline schedules and setting `TRIGGER` to `midnight`, adding a fitting schedule and setting `CI_ON_TRIGGER` for any affected package to `midnight`. - Packages having this variable set will **not** be scheduled via the regular on-schedule pipeline, hence this one can also be used to prevent wasting builder resources, e.g. useful for huge `-git` packages with a lot of commit activity, like `llvm-git`. -- `CI_REBUILD_TRIGGERS`: Add packages known to be causing rebuilds to this variable. A list of repositories to track package versions for is provided via the repositories' `CI_LIB_DB` parameter. Each package version is hashed and dumped to `.ci/lib.state`. Each scheduled pipeline run compares versions by checking hash mismatches and will bump each each affected package via `CI_PACKAGE_BUMP`. + Packages having this variable set will **not** be scheduled via the regular on-schedule pipeline, hence this one can + also be used to prevent wasting builder resources, e.g. useful for huge `-git` packages with a lot of commit activity, + like `llvm-git`. +- `CI_REBUILD_TRIGGERS`: Add packages known to be causing rebuilds to this variable. A list of repositories to track + package versions for is provided via the repositories' `CI_LIB_DB` parameter. Each package version is hashed and + dumped to `.ci/lib.state`. Each scheduled pipeline run compares versions by checking hash mismatches and will bump + each affected package via `CI_PACKAGE_BUMP`. It needs to follow the format `package1:package2:package3`. - `BUILDER_CACHE_SOURCES`: Can be set to `true` in case the sources should be cached between builds. This can be useful in case of slow sources or sources that are not available all the time. Sources will be cleared automatically after 1 month, which is important in case packages are getting removed or the source changes. - `BUILDER_EXTRA_TIMEOUT`: If set, will multiply the global `BUILDER_TIMEOUT` value with the given multiplier. If e.g., the default timeout value of `3600` is used, setting this to `2` would increase the build timeout to `7200`. -### Known state variables +#### Known state variables State will be kept in the .state worktree. It can be viewed by browsing the `state` branch of a PKGBUILD repository. Each package will have their own file named after the package name. The following variables are known to be stored: @@ -230,25 +351,7 @@ Each package will have their own file named after the package name. The followin build. -`CI_PKGBUILD_TIMESTAMP`: The last modified date of the PKGBUILD on AUR. This is used to determine whether the PKGBUILD has changed. If it differs, schedule a build. Will be maintained automatically. -### CI pipeline variables - -These variables can be set in in the repo root's`.ci/config` to configure the pipeline behavior globally as follows: - -- `BUILD_REPO`: The target repository that will be the deploy target -- `GIT_AUTHOR_EMAIL`: The email of the user that will be used to commit -- `GIT_AUTHOR_NAME`: The name of the user that will be used to commit -- `REDIS_SSH_HOST`: The Redis SSH host for the target repository (for SSH tunneling) -- `REDIS_SSH_PORT`: The Redis SSH port for the target repository (for SSH tunneling) -- `REDIS_SSH_USER`: The Redis SSH user for the target repository (for SSH tunneling) -- `REDIS_PORT`: The redis port for the target repository (inside the SSH tunnel) -- `REPO_NAME`: The name that this repository is referred to in Chaotic Manager's config -- `CI_HUMAN_REVIEW`: If merge/pull requests should be created for non pkgver changes -- `CI_MANAGE_AUR`: This should be set to true in case select AUR repositories should be managed by CI -- `CI_OVERWRITE_COMMITS`: If we should overwrite existing automated commits to reduce the size of the git history -- `CI_CLONE_DELAY`: How long to wait between every executed git clone command for rate limits -- `CI_AUR_PROXY`: Proxy to use for AUR requests - -### Managing AUR packages +#### Managing AUR packages AUR packages can also be managed via this repository in an automated way using `.CI_CONFIG`. This means that after each scheduled and on-commit pipeline, the AUR repository will be updated to reflect the changes @@ -257,7 +360,7 @@ Files not relevant to AUR maintenance (e.g. `.CI` folders) will be omitted. The commit message reflects the fact that the commit was created by a CI pipeline and contains the link to the source repository's commit history and the pipeline run which triggered the update commit. -### Updating the CI's scripts +#### Updating the CI's scripts This is done automatically via the CI pipeline. Once changes have been detected on the template repository, all files will be updated to the current version. @@ -280,309 +383,8 @@ This has been a design decision to prevent failures from being overlooked. #### Resetting the build queue There might be rare cases in which a reset of the build queue is needed. This can be done by shutting down the central -Redis instance, removing its dump, and restarting its service. - -### Deploying to different repos using the same infrastructure - -This is now an officially supported use case. The only thing required is to use another repository that is going to -store PKGBUILDs and execute CI pipelines. -The environment variables passed to the main Chaotic Manager instance control which repositories are available to use -while scheduling packages. See below for more information. - -## Chaotic Manager - -This tool is distributed as Docker containers and consists of a pair of manager and builder instances. - -- Manager: `registry.gitlab.com/garuda-linux/tools/chaotic-manager/manager` - - Manages builds by adding them to the schedule, used e.g. in the schedule step of CI pipelines - - Provides log management and the live-updating logs - - Manages any existing builds by spinning up build containers, picking from the available BullMQ builder / database - queues - - Picks up already built package archives from the landing zone (builder containers push finished build archives here) - to add them to the database of the target repository -- Builder: `registry.gitlab.com/garuda-linux/tools/chaotic-manager/builder` - - This one contains the actual logic behind package builds ( - seen [here](https://gitlab.com/garuda-linux/tools/chaotic-manager/-/tree/main/builder-container?ref_type=heads)) - known from infra 3.0 like `interfere.sh`, `database.sh` etc. - - This one is used by an executing manager instance to run the build processes with. It runs jobs present in the - builder BullMQ queue. - -An example of a valid config can be found in -the [Garuda Linux infrastructure repository](https://gitlab.com/garuda-linux/infra-nix/-/blob/main/docker-compose/chaotic-v4/docker-compose.yml?ref_type=heads#L38). -The following variables can be set in Docker environment: - -- `DATABASE_HOST`: database address published to the outside world -- `DATABASE_PORT`: the port behind packages can be deployed to -- `DATABASE_USER`: the user to use to deploy packages -- `GPG_PATH`: where the `.gnupg` folder resides (holding the key for signing packages) -- `LANDING_ZONE_PATH`: where the landing zone is (here packages get deployed and later picked up by the database job - before getting into the final repository) -- `LOGS_URL`: the URL that serves the logfiles (we get sent here when clicking CI's external stages) -- `PACKAGE_REPOS_NOTIFIERS`: needed configs to provide external CI stages for GitLab CI/GitHub Actions -- `PACKAGE_REPOS`: the source repositories containing PKGBUILD folders -- `PACKAGE_TARGET_REPOS`: the repository a package is getting deployed to (including its URL and extra keyrings/repos - needed) -- `REDIS_PASSWORD`: password for accessing the Redis instance -- `REDIS_SSH_HOST`: where to access the Redis instance -- `REDIS_SSH_USER`: the user who can access the Redis instance -- `REPO_PATH`: the path where the final package deployment happens -- `TELEGRAM_BOT_TOKEN`: the token for the Telegram bot, used for notifications -- `TELEGRAM_CHAT_ID`: the chat ID for the Telegram bot to send deployment or failure notifications to - -The following variables are only relevant for builder instances: - -- `BUILDER_HOSTNAME`: the hostname of the builder will be displayed in package logs to determine which builder built a - package -- `BUILDER_TIMEOUT`: the timeout for a package build, 3600 seconds by default. Should be increased on slow builders - -### Setting up - -#### Requirements - -The base requirements for running this kind of setup are as follows: - -- Docker/Podman must be installed in the target system, docker-/podman-compose are good to have as well. We will use it - in our following examples. -- A Redis instance must be available, e.g. installed on the host system or added to ´docker-compose.yml`: - - ```yml - chaotic-redis: - image: redis:alpine - container_name: chaotic-redis - restart: always - ports: - - "6379:6379" - command: redis-server --save 60 1 --loglevel warning --requirepass verysecurepassword - volumes: - - ./redis-data:/data - ``` - - The following examples assume Redis to be installed on the host system. In case it is added to `docker-compose.yml`, - replace any occurances of `host.docker.internal` with `chaotic-redis`. - -- A reverse proxy like Nginx to expose the Chaotic Manager's logs to the public in a secure way should be available. - E.g., using Nginx it is sufficient to `proxy_pass` the specified `--web-port` value to the Manager instance container. - Additionally, the following settings might be usedful: - - ```ǹginx - proxy_buffering off; - proxy_read_timeout 330s; - ``` - -#### Repository setup - -The repository needs to be derived from the [repository template](https://github.com/chaotic-cx/chaotic-repository-template). On GitHub, the ["Use this template"](https://github.com/new?template_name=chaotic-repository-template&template_owner=chaotic-cx) feature may be used. -Afterward, customize the `.ci/config` file according to your needs. This file contains global configuration for pipeline runs and CI behaviour. -The following options exist as of today: - -- `BUILD_REPO`: The target repository that will be the deploy target -- `GIT_AUTHOR_EMAIL`: The email of the user that will be used to commit -- `GIT_AUTHOR_NAME`: The name of the user that will be used to commit -- `REDIS_SSH_HOST`: The redis host for the target repository -- `REDIS_SSH_PORT`: The redis port for the target repository -- `REDIS_SSH_USER`: The redis user for the target repository -- `REDIS_PORT`: The redis port for the target repository -- `REPO_NAME`: The name that this repository is referred to in chaotic-manager's config -- `CI_HUMAN_REVIEW`: Whether merge/pull requests should be created for non pkgver changes (false/true) -- `CI_MANAGE_AUR`: This should be set to true in case select AUR repositories should be managed by CI. A fitting SSH key needs to be deployed as AUR_KEY via secret CI variable. -- `CI_OVERWRITE_COMMITS`: Whether we should overwrite existing automated commits to reduce the size of the git history (false/true) -- `CI_CLONE_DELAY`: How long to wait between every executed git clone command for ratelimits (false/true) -- `CI_AUR_PROXY`: Proxy to use for AUR requests -- `CI_LIB_DB`: Archlinux / Chaotic-AUR repo mirror to use for pulling db files from, in the following format: `https://arch.mirror.constant.com/core/os/x86_64/core.db https://arch.mirror.constant.com/community/os/x86_64/community.db ...` - -#### Exemplary manager instance setup - -```yaml -chaotic-manager: - image: registry.gitlab.com/garuda-linux/tools/chaotic-manager/manager:latest - container_name: chaotic-manager - command: database --web-port 8080 - environment: - DATABASE_HOST: sub.domain.tld - DATABASE_PORT: 22 - DATABASE_USER: package-deployer - GPG_PATH: /var/awesome-repo/gnupg - LANDING_ZONE_PATH: /var/awesome-repo/landing-zone - LOGS_URL: https://sub.domain.tld/logs/logs.html - REDIS_PASSWORD: verysecurepassword - REDIS_SSH_HOST: host.docker.internal - REDIS_SSH_USER: package-deployer - REPO_PATH: /srv/http/repos - TELEGRAM_BOT_TOKEN: 1234567890 - TELEGRAM_CHAT_ID: 0987654321 - PACKAGE_REPOS: >- - { - "awesome-repo": { - "url": "https://gitlab.com/awesome-repo/pkgbuilds" - } - } - PACKAGE_TARGET_REPOS: >- - { - "awesome-repo": { - "extra_repos": [ - { - "name": "awesome-repo", - "servers": [ - "https://sub.domain.tld/awesome-repo/x86_64" - ] - } - ], - "extra_keyrings": [ - "https://sub.domain.tld/awesome-repo/awesome-keyring.pkg.tar.zst" - ] - } - } - PACKAGE_REPOS_NOTIFIERS: >- - { - "awesome-repo": { - "id": "123456", - "token": "GITLABAPITOKENWITHAPIACCESS", - "check_name": "awesome-repo: %pkgbase%" - } - } - volumes: - - ./sshkey:/app/sshkey - - /var/run/docker.sock:/var/run/docker.sock - - /srv/http/repos:/repo_root - extra_hosts: - - "host.docker.internal:host-gateway" - ports: [8080:8080] -``` - -The following things are to note: - -- `PACKAGE_REPOS`, `PACKAGE_TARGET_REPOS` and `PACKAGE_REPOS_NOTIFIERS` are JSON values and need to be valid JSON in - order to be processed. -- The above setup assumes the docker-compose.yml to be present in `var/awesome-repo`. -- `LOGS_URL` needs to match the address which the reverse proxy publishes `--web-port 8080` to the outside world. -- `REPO_PATH` is the path of the repository _on the Docker host_. The same path must be mapped to `/repo_root` inside - the container via volumes. -- `/app/sshkey` is assumed to be the private SSH key -- Ports don't have to explicitly exposed if using an Nginx Docker container, in this setup however, our Nginx and Redis - instance are present on the host system. -- `PACKAGE_REPOS_NOTIFIERS` and `TELEGRAM_*` variables are optional but provide additional functionality of they are - set. -- `DATABASE_HOST` refers to the address published to the outside world, e.g. for additional builders an other servers. - -#### Examplary builder instance setup - -```yaml ---- -services: - chaotic-builder: - image: registry.gitlab.com/garuda-linux/tools/chaotic-manager/manager:latest - container_name: chaotic-builder - command: builder - environment: - BUILDER_TIMEOUT: 7200 - BUILDER_HOSTNAME: awesome-builder - REDIS_PASSWORD: verysecurepassword - REDIS_SSH_HOST: host.docker.internal - REDIS_SSH_USER: package-deployer - SHARED_PATH: /var/chaotic/shared - DATABASE_HOST: host.docker.internal - DATABASE_PORT: 22 - volumes: - - ./shared:/shared - - ./sshkey:/app/sshkey - - /var/run/docker.sock:/var/run/docker.sock - extra_hosts: - - "host.docker.internal:host-gateway" -``` - -The following things are to note: - -- The above setup assumes the docker-compose.yml to be present in `var/awesome-repo`. -- The `SHARED_PATH` variable needs to match the directory mapped to `/shared` inside the container. -- `DATABASE_HOST` can in theory be any other host, but can be set to `host.docker.internal` in case the Redis instance - runs on the Docker host. -- The Docker socket needs to be mounted as the builder instance will use it to spin up build container instances. -- `/app/sshkey` is assumed to be the private SSH key used for pushing finished package builds to the manager instance's - landing zone. -- `BUILDER_TIMEOUT` only needs to be set in case it is a slower build machine which does not finish heaver tasks in one - hour. -- As many instances of this container can be added the setup as wanted. Each of them will allow processing another build - at the same time in total. - -### Features - -#### Chaotic-Manager container commands - -- `schedule`: Schedules a new package build by adding it to the Redis instance. It takes the following arguments: - - `arch`: The architecture to build the package for - - `target-repo`: The target repository to deploy the package to, referring to the `PACKAGE_TARGET_REPOS` variable set - in the Docker environment variables. - - `source-repo`: The source repository to pull the package from, referring to the `PACKAGE_REPOS` variable set in the - Docker environment variables. - - `commit`: The commit hash which the schedule call originates from - - `deptree`: the dependency tree built by the CI pipeline. This parameter is omitted in CI pipelines and instead - passed as file, reading from `/.ci/deptree.txt`. The reason is that the parameter will be to huge to be processed by - the shell if 100+ packages are - scheduled at the same time. - It contains information about the build order of packages and their dependencies. -- `builder`: Starts the build job, which then grabs any available build jobs from the build queue. -- `auto-repo-remove`: Removes obsolete packages from the target repository. Further parameters must include the pkgbases - to be removed. -- `database`: Starts the manager instance, which is responsible for managing queues, logs and database jobs. It - additionally spins up a web server to serve logs from if `--web-port` is passed as argument. -- `web`: Starts the web server to serve logs from. This is only needed in case the manager instance does not run the web - server. - -#### Web server - -Available routes on the port set up be the `--web-port` parameter are as follows: - -- `/api/logs/:id/:timestamp`: Returns the log file of a package build. The `id` is the package's ID, the `timestamp` is - the timestamp of the build. -- `/api/logs/:id`: Returns the latest log file of a package build. The `id` is the package's ID. -- `/api/queue/stats`: Returns a JSON object containing the current queue stats. -- `/api/queue/packages`: Returns a JSON object containing information the currently scheduled packages. -- `/metrics`: Returns collected Prometheus metrics. - -#### Notifications - -Notifications about relevant events can be sent to a Telegram channel or chat via a Bot. -This requires a valid Bot token and the Chat ID to be set. -The following events are currently supported: - -- Build failures: additionally contains links to full build logs and the originating commit. - - ```text - 🚨 Failed deploying to awesome-repo: - > freecad-git - logs- commit - ``` - -- Build success: - - ```text - 📣 New deployment to awesome-repo: - > freecad-git - ``` - -- Timed out build: Contains links to full build logs and the originating commit. - - ```text - ⏳ Build for awesome-repo failed due to a timeout: - > freecad-git - logs - commit - ``` - -- Successful repo-remove jobs: - - ```text - ✅ Repo-remove job for awesome-repo finished successfully - ``` - -- Failed repo-remove jobs: - - ```text - 🚫 Repo-remove job for awesome-repo failed - ``` - -#### Build order - -The build order is determined by the dependency tree built by the CI pipeline. -This tree is passed to the manager and is then used to determine the correct build order automatically. -No further intervention is needed to achieve this. +Redis instance, removing its dump, and restarting its service. This will, however, also wipe any logs stored inside +Redis. #### Live-updating logs @@ -597,7 +399,7 @@ Currently, we collect default `prom-client` metrics as well as statistics about (failed, successful, already-built, timed out) as well as metrics about overall build times. These can be collected via a Prometheus instance and then be visualized using Grafana. -## Development setup +### Development setup This repository features a NixOS flake, which may be used to set up the needed things like pre-commit hooks and checks, as well as needed utilities, automatically via [direnv](https://direnv.net/). This includes checking PKGBUILDs diff --git a/a2ln/.CI/config b/a2ln/.CI/config index ec32e5cfbe..b322beecab 100644 --- a/a2ln/.CI/config +++ b/a2ln/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1702231928 +CI_PACKAGE_BUMP=1.1.14-4/1 CI_PKGBUILD_SOURCE=aur diff --git a/abaddon-git/.CI/config b/abaddon-git/.CI/config index b075c83040..8471e6a8af 100644 --- a/abaddon-git/.CI/config +++ b/abaddon-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1694606293 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=fc89b4d6971c1a4d0c73f166bfd091b50422eec5 diff --git a/abseil-cpp11/.CI/config b/abseil-cpp11/.CI/config index 8be19133fa..66bee94775 100644 --- a/abseil-cpp11/.CI/config +++ b/abseil-cpp11/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1705851787 CI_PKGBUILD_SOURCE=aur diff --git a/absolutely-proprietary/.CI/config b/absolutely-proprietary/.CI/config index 8bbbec2c75..66bee94775 100644 --- a/absolutely-proprietary/.CI/config +++ b/absolutely-proprietary/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1721715516 CI_PKGBUILD_SOURCE=aur diff --git a/acestream-launcher/.CI/config b/acestream-launcher/.CI/config index 7e01b050db..95a89f7a62 100644 --- a/acestream-launcher/.CI/config +++ b/acestream-launcher/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1710063751 +CI_PACKAGE_BUMP=2.1.0-4/1 CI_PKGBUILD_SOURCE=aur diff --git a/acidrip/.CI/config b/acidrip/.CI/config index 9c22ba1bc6..4081883957 100644 --- a/acidrip/.CI/config +++ b/acidrip/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1435501330 +CI_PACKAGE_BUMP=0.14-10/6 CI_PKGBUILD_SOURCE=aur diff --git a/aconfmgr-git/.CI/config b/aconfmgr-git/.CI/config index 8f95e31025..8471e6a8af 100644 --- a/aconfmgr-git/.CI/config +++ b/aconfmgr-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1629530754 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=1195f3a1b8173bb8ef7d6fd6c18ffb1570e74a4e diff --git a/across/.CI/config b/across/.CI/config index c1fd648f7a..ce1f5c7e09 100644 --- a/across/.CI/config +++ b/across/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1719268212 +CI_PACKAGE_BUMP=0.1.3-4/1 CI_PKGBUILD_SOURCE=aur diff --git a/across/.SRCINFO b/across/.SRCINFO index 9905cc3ef0..d8d05d7bf6 100644 --- a/across/.SRCINFO +++ b/across/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = across pkgdesc = The next GUI client for v2ray core pkgver = 0.1.3 - pkgrel = 3 + pkgrel = 4 url = https://github.com/ArkToria/ACross arch = x86_64 license = GPL-3.0-only @@ -20,7 +20,7 @@ pkgbase = across depends = protobuf depends = qt6-5compat depends = qt6-base - depends = qt6-quickcontrols2 + depends = qt6-declarative depends = spdlog depends = zxing-cpp optdepends = v2ray: use system v2ray core. diff --git a/across/.nvchecker.toml b/across/.nvchecker.toml new file mode 100644 index 0000000000..2ba6744e6f --- /dev/null +++ b/across/.nvchecker.toml @@ -0,0 +1,4 @@ +[across] +source = "git" +git = "https://github.com/ArkToria/ACross.git" +prefix = "v" diff --git a/across/PKGBUILD b/across/PKGBUILD index b06937eb71..8edd72c6b9 100644 --- a/across/PKGBUILD +++ b/across/PKGBUILD @@ -4,7 +4,7 @@ _pkgname="across" pkgname="$_pkgname" pkgver=0.1.3 -pkgrel=3 +pkgrel=4 pkgdesc="The next GUI client for v2ray core" url="https://github.com/ArkToria/ACross" license=('GPL-3.0-only') @@ -18,7 +18,7 @@ depends=( 'protobuf' 'qt6-5compat' 'qt6-base' - 'qt6-quickcontrols2' + 'qt6-declarative' 'spdlog' 'zxing-cpp' ) diff --git a/activitywatch-bin/.CI/config b/activitywatch-bin/.CI/config index c9cb6d19c5..66bee94775 100644 --- a/activitywatch-bin/.CI/config +++ b/activitywatch-bin/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1718033746 CI_PKGBUILD_SOURCE=aur diff --git a/activitywatch-bin/.SRCINFO b/activitywatch-bin/.SRCINFO index c1d9452e5a..ef8e739203 100644 --- a/activitywatch-bin/.SRCINFO +++ b/activitywatch-bin/.SRCINFO @@ -1,13 +1,13 @@ pkgbase = activitywatch-bin pkgdesc = Track how you spend time on your computer. Simple, extensible, no third parties. - pkgver = 0.13.1 + pkgver = 0.13.2 pkgrel = 1 url = https://github.com/ActivityWatch/activitywatch arch = x86_64 license = MPL2 provides = activitywatch conflicts = activitywatch - source = https://github.com/ActivityWatch/activitywatch/releases/download/v0.13.1/activitywatch-v0.13.1-linux-x86_64.zip - md5sums = 31561b479c36cef84eee77b9f89853b9 + source = https://github.com/ActivityWatch/activitywatch/releases/download/v0.13.2/activitywatch-v0.13.2-linux-x86_64.zip + md5sums = 663501b3a59a874d549142d78c77f6d3 pkgname = activitywatch-bin diff --git a/activitywatch-bin/PKGBUILD b/activitywatch-bin/PKGBUILD index 2b69dbf220..e8b66c9da9 100644 --- a/activitywatch-bin/PKGBUILD +++ b/activitywatch-bin/PKGBUILD @@ -4,7 +4,7 @@ # PRs welcome at: https://github.com/ActivityWatch/aur-activitywatch-bin pkgname=activitywatch-bin -pkgver='0.13.1' +pkgver='0.13.2' pkgrel=1 epoch= pkgdesc="Track how you spend time on your computer. Simple, extensible, no third parties." @@ -20,7 +20,7 @@ depends=( #'openssl-1.0' ) source=("https://github.com/ActivityWatch/activitywatch/releases/download/v${pkgver}/activitywatch-v${pkgver}-linux-x86_64.zip") -md5sums=('31561b479c36cef84eee77b9f89853b9') +md5sums=('663501b3a59a874d549142d78c77f6d3') package() { # Install into /opt/activitywatch diff --git a/adbmanager/.CI/config b/adbmanager/.CI/config index d88125863e..dfb4242169 100644 --- a/adbmanager/.CI/config +++ b/adbmanager/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1705781374 +CI_PACKAGE_BUMP=3.1-1/2 CI_PKGBUILD_SOURCE=aur diff --git a/adms-git/.CI/config b/adms-git/.CI/config index 39805f0d71..8471e6a8af 100644 --- a/adms-git/.CI/config +++ b/adms-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1698768867 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=cadf421b2f645cc2bbd144f49edd588f59d565c5 diff --git a/advancecomp/.CI/config b/advancecomp/.CI/config index d832619132..66bee94775 100644 --- a/advancecomp/.CI/config +++ b/advancecomp/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1714842129 CI_PKGBUILD_SOURCE=aur diff --git a/advcpmv/.CI/config b/advcpmv/.CI/config index c787ed76fb..66bee94775 100644 --- a/advcpmv/.CI/config +++ b/advcpmv/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1714213282 CI_PKGBUILD_SOURCE=aur diff --git a/adw-gtk-theme-git/.CI/config b/adw-gtk-theme-git/.CI/config deleted file mode 100644 index ec6cf4fb56..0000000000 --- a/adw-gtk-theme-git/.CI/config +++ /dev/null @@ -1,4 +0,0 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1726256900 -CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=8589395c45829dbab4615e150e98ce98f7a6d301 diff --git a/adw-gtk-theme-git/.CI/info b/adw-gtk-theme-git/.CI/info deleted file mode 100644 index e63e85b00b..0000000000 --- a/adw-gtk-theme-git/.CI/info +++ /dev/null @@ -1,2 +0,0 @@ -REQ_ORIGIN=github/1352 -REQ_REASON=request diff --git a/adw-gtk-theme-git/.SRCINFO b/adw-gtk-theme-git/.SRCINFO deleted file mode 100644 index 1f6834987d..0000000000 --- a/adw-gtk-theme-git/.SRCINFO +++ /dev/null @@ -1,19 +0,0 @@ -pkgbase = adw-gtk-theme-git - pkgdesc = The theme from libadwaita ported to GTK-3 - pkgver = 5.3.r13.g91aac01 - pkgrel = 1 - url = https://github.com/lassekongo83/adw-gtk3 - arch = any - license = LGPL-2.1-or-later - makedepends = git - makedepends = meson - makedepends = sassc - provides = adw-gtk-theme - conflicts = adw-gtk-theme - conflicts = adw-gtk3 - source = git+https://github.com/lassekongo83/adw-gtk3.git - source = git+https://gitlab.gnome.org/GNOME/libadwaita.git#tag=1.6.0 - sha256sums = SKIP - sha256sums = 0f7eaf661fc3a7976207726eecf93c93c79744ff8428e322a16b55f12a4ee22d - -pkgname = adw-gtk-theme-git diff --git a/adw-gtk-theme-git/PKGBUILD b/adw-gtk-theme-git/PKGBUILD deleted file mode 100644 index a310a1191d..0000000000 --- a/adw-gtk-theme-git/PKGBUILD +++ /dev/null @@ -1,61 +0,0 @@ -# Maintainer: Mark Wagie -# Contributor: Dušan Simić -pkgname=adw-gtk-theme-git -_pkgname=adw-gtk3 -pkgver=5.3.r13.g91aac01 -pkgrel=1 -pkgdesc="The theme from libadwaita ported to GTK-3" -arch=('any') -url="https://github.com/lassekongo83/adw-gtk3" -license=('LGPL-2.1-or-later') -makedepends=('git' 'meson' 'sassc') -provides=("${pkgname%-git}") -conflicts=("${pkgname%-git}" "${_pkgname}") -_adw_tag=1.6.0 -source=("git+https://github.com/lassekongo83/adw-gtk3.git" - "git+https://gitlab.gnome.org/GNOME/libadwaita.git#tag=${_adw_tag}") -sha256sums=('SKIP' - '0f7eaf661fc3a7976207726eecf93c93c79744ff8428e322a16b55f12a4ee22d') - -pkgver() { - cd "${_pkgname}" - git describe --long --tags --abbrev=7 | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' -} - -build() { - - # Update GTK4 theme: .github/workflows/update-gtk4-theme.yml - - # Compile scss - pushd libadwaita/src/stylesheet - sassc -a -M -t compact base.scss libadwaita.css - sassc -a -M -t compact defaults-light.scss gtk.css - sassc -a -M -t compact defaults-dark.scss gtk-dark.css - popd - - # Copy css files - cp libadwaita/src/stylesheet/libadwaita.css "${_pkgname}/gtk/src/${_pkgname}/gtk-3.0/libadwaita.css" - cp libadwaita/src/stylesheet/gtk.css "${_pkgname}/gtk/src/${_pkgname}/gtk-4.0/gtk.css" - cp libadwaita/src/stylesheet/gtk-dark.css "${_pkgname}/gtk/src/${_pkgname}/gtk-4.0/gtk-dark.css" - cp libadwaita/src/stylesheet/gtk-dark.css "${_pkgname}/gtk/src/${_pkgname}-dark/gtk-4.0/gtk.css" - cp libadwaita/src/stylesheet/gtk-dark.css "${_pkgname}/gtk/src/${_pkgname}-dark/gtk-4.0/gtk-dark.css" - - # Add libadwaita to the gtk.css files - pushd "${_pkgname}" - echo "@import '../gtk-3.0/libadwaita.css';" >> ./"gtk/src/${_pkgname}/gtk-4.0/gtk.css" - echo "@import '../gtk-3.0/libadwaita-tweaks.css';" >> ./"gtk/src/${_pkgname}/gtk-4.0/gtk.css" - echo "@import '../gtk-3.0/libadwaita.css';" >> ./"gtk/src/${_pkgname}/gtk-4.0/gtk-dark.css" - echo "@import '../gtk-3.0/libadwaita-tweaks.css';" >> ./"gtk/src/${_pkgname}/gtk-4.0/gtk-dark.css" - echo "@import '../gtk-3.0/libadwaita.css';" >> ./"gtk/src/${_pkgname}-dark/gtk-4.0/gtk.css" - echo "@import '../gtk-3.0/libadwaita-tweaks.css';" >> ./"gtk/src/${_pkgname}-dark/gtk-4.0/gtk.css" - echo "@import '../gtk-3.0/libadwaita.css';" >> ./gtk/src/"${_pkgname}-dark/gtk-4.0/gtk-dark.css" - echo "@import '../gtk-3.0/libadwaita-tweaks.css';" >> ./"gtk/src/${_pkgname}-dark/gtk-4.0/gtk-dark.css" - popd - - arch-meson "${_pkgname}" build - meson compile -C build -} - -package() { - meson install -C build --destdir "$pkgdir" -} diff --git a/adwaita-icon-theme-git/.CI/config b/adwaita-icon-theme-git/.CI/config deleted file mode 100644 index 3a898529ce..0000000000 --- a/adwaita-icon-theme-git/.CI/config +++ /dev/null @@ -1,4 +0,0 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1685142868 -CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=4a5238759d24434a7811c36a48185b2c2a1f7783 diff --git a/adwaita-icon-theme-git/.CI/info b/adwaita-icon-theme-git/.CI/info deleted file mode 100644 index 25b3724be8..0000000000 --- a/adwaita-icon-theme-git/.CI/info +++ /dev/null @@ -1,2 +0,0 @@ -REQ_ORIGIN=github/720 -REQ_REASON=request diff --git a/adwaita-icon-theme-git/.SRCINFO b/adwaita-icon-theme-git/.SRCINFO deleted file mode 100644 index ad661411c5..0000000000 --- a/adwaita-icon-theme-git/.SRCINFO +++ /dev/null @@ -1,29 +0,0 @@ -pkgbase = adwaita-icon-theme-git - pkgdesc = GNOME standard icons - pkgver = 44.0.r44.ge1528589b - pkgrel = 1 - url = https://gitlab.gnome.org/GNOME/adwaita-icon-theme - arch = any - license = LGPL3 - license = CCPL:by-sa - makedepends = git - makedepends = gtk3 - makedepends = meson - depends = gtk-update-icon-cache - depends = hicolor-icon-theme - depends = librsvg - source = git+https://gitlab.gnome.org/GNOME/adwaita-icon-theme.git - b2sums = SKIP - -pkgname = adwaita-icon-theme-git - depends = gtk-update-icon-cache - depends = hicolor-icon-theme - depends = librsvg - depends = adwaita-cursors - provides = adwaita-icon-theme - conflicts = adwaita-icon-theme - -pkgname = adwaita-cursors-git - pkgdesc = GNOME standard cursors - provides = adwaita-cursors - conflicts = adwaita-cursors diff --git a/adwaita-icon-theme-git/PKGBUILD b/adwaita-icon-theme-git/PKGBUILD deleted file mode 100644 index 90a7494f92..0000000000 --- a/adwaita-icon-theme-git/PKGBUILD +++ /dev/null @@ -1,47 +0,0 @@ -# Maintainer: éclairevoyant -# Contributor: Philip Goto - -_pkgname=adwaita-icon-theme -pkgbase="$_pkgname-git" -pkgname=("$pkgbase" adwaita-cursors-git) -pkgver=44.0.r44.ge1528589b -pkgrel=1 -pkgdesc='GNOME standard icons' -arch=(any) -url="https://gitlab.gnome.org/GNOME/$_pkgname" -license=(LGPL3 CCPL:by-sa) -depends=(gtk-update-icon-cache hicolor-icon-theme librsvg) -makedepends=(git gtk3 meson) -source=("git+$url.git") -b2sums=('SKIP') - -pkgver() { - git -C $_pkgname describe --long --tags | sed 's/[^-]*-g/r&/;s/-/./g' -} - -prepare() { - arch-meson $_pkgname build -} - -build() { - meson compile -C build -} - -package_adwaita-icon-theme-git() { - depends+=('adwaita-cursors') - provides=("$_pkgname") - conflicts=("$_pkgname") - - meson install -C build --destdir "$pkgdir" - rm -rf "$pkgdir/usr/share/icons/Adwaita/cursors/" -} - -package_adwaita-cursors-git() { - pkgdesc='GNOME standard cursors' - unset depends - provides=('adwaita-cursors') - conflicts=('adwaita-cursors') - - install -dm755 "$pkgdir/usr/share/icons/Adwaita/" - cp -r --no-preserve=ownership $_pkgname/Adwaita/cursors "$pkgdir/usr/share/icons/Adwaita/" -} diff --git a/adwaita-qt-git/.CI/config b/adwaita-qt-git/.CI/config index a98b0cc2ee..e8bc87d3bb 100644 --- a/adwaita-qt-git/.CI/config +++ b/adwaita-qt-git/.CI/config @@ -1,3 +1,2 @@ BUILDER_CACHE_SOURCES=true CI_PKGBUILD_SOURCE=https://aur.archlinux.org/adwaita-qt-git.git -CI_GIT_COMMIT=0a774368916def5c9889de50f3323dec11de781e diff --git a/afdko/.CI/config b/afdko/.CI/config index bb86d3c2fb..66bee94775 100644 --- a/afdko/.CI/config +++ b/afdko/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1714221254 CI_PKGBUILD_SOURCE=aur diff --git a/afdko/.SRCINFO b/afdko/.SRCINFO index 049bbb8273..a0e6fbb9e0 100644 --- a/afdko/.SRCINFO +++ b/afdko/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = afdko pkgdesc = Adobe Font Development Kit for OpenType - pkgver = 4.0.1 - pkgrel = 3 + pkgver = 4.0.2 + pkgrel = 1 url = https://github.com/adobe-type-tools/afdko arch = x86_64 license = Apache-2.0 @@ -32,7 +32,7 @@ pkgbase = afdko depends = python-unicodedata2 depends = python-zopfli conflicts = spot-client - source = https://github.com/adobe-type-tools/afdko/releases/download/4.0.1/afdko-4.0.1.tar.gz - sha256sums = 22dd90f0f7b4bc6eacbe8cddb0d72a484cf3f2d6cb474b0e3496de161177f019 + source = https://github.com/adobe-type-tools/afdko/releases/download/4.0.2/afdko-4.0.2.tar.gz + sha256sums = e1a31e871e83dd022635b852297c433c8e9c9d9d4f0c0f634e8d55dde28ad930 pkgname = afdko diff --git a/afdko/.nvchecker.toml b/afdko/.nvchecker.toml index 83a160bf19..c7f85190bf 100644 --- a/afdko/.nvchecker.toml +++ b/afdko/.nvchecker.toml @@ -2,3 +2,4 @@ source = "github" github = "adobe-type-tools/afdko" use_max_tag = true +include_regex = '\d+\.\d+\.\d+' diff --git a/afdko/PKGBUILD b/afdko/PKGBUILD index 3da38026f1..d4ee17f339 100644 --- a/afdko/PKGBUILD +++ b/afdko/PKGBUILD @@ -2,8 +2,8 @@ # Contributor: William Turner pkgname=afdko -pkgver=4.0.1 -pkgrel=3 +pkgver=4.0.2 +pkgrel=1 pkgdesc='Adobe Font Development Kit for OpenType' arch=(x86_64) url="https://github.com/adobe-type-tools/$pkgname" @@ -36,7 +36,7 @@ checkdepends=(python-pytest) conflicts=(spot-client) _archive="$pkgname-$pkgver" source=("$url/releases/download/$pkgver/$_archive.tar.gz") -sha256sums=('22dd90f0f7b4bc6eacbe8cddb0d72a484cf3f2d6cb474b0e3496de161177f019') +sha256sums=('e1a31e871e83dd022635b852297c433c8e9c9d9d4f0c0f634e8d55dde28ad930') prepare() { cd "$_archive" diff --git a/agenda-git/.CI/config b/agenda-git/.CI/config index 62e732b9ff..8471e6a8af 100644 --- a/agenda-git/.CI/config +++ b/agenda-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1586040808 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=73e3f9331af7f52a56896c6c7cecf36dde216975 diff --git a/agenda/.CI/config b/agenda/.CI/config index d339e52e3e..41b628cfca 100644 --- a/agenda/.CI/config +++ b/agenda/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1643217977 +CI_PACKAGE_BUMP=1.1.2-1/4 CI_PKGBUILD_SOURCE=aur diff --git a/agg-2.6-git/.CI/config b/agg-2.6-git/.CI/config deleted file mode 100644 index 58a1f16c8a..0000000000 --- a/agg-2.6-git/.CI/config +++ /dev/null @@ -1,4 +0,0 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1670107160 -CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=c4f36b4432142f22c0bf82c6fbdb41567a236be2 diff --git a/agg-2.6-git/.CI/info b/agg-2.6-git/.CI/info deleted file mode 100644 index fcc25834df..0000000000 --- a/agg-2.6-git/.CI/info +++ /dev/null @@ -1,2 +0,0 @@ -REQ_ORIGIN=github/2224 -REQ_REASON=request diff --git a/agg-2.6-git/.SRCINFO b/agg-2.6-git/.SRCINFO deleted file mode 100644 index 7b8a0cecd7..0000000000 --- a/agg-2.6-git/.SRCINFO +++ /dev/null @@ -1,23 +0,0 @@ -pkgbase = agg-2.6-git - pkgdesc = High Quality Rendering Engine for C++ - pkgver = r151.e7db22b - pkgrel = 1 - url = https://github.com/ghaerr/agg-2.6 - arch = x86_64 - license = BSD - license = custom:Anti-Grain Geometry Public License - makedepends = git - depends = gcc-libs - depends = sdl - depends = freetype2 - provides = agg - conflicts = agg - replaces = antigrain - source = git+https://github.com/ghaerr/agg-2.6.git - source = AGG-2.6-Anti-Grain-Geometry-Public-License.txt - source = AGG-2.6-Modified-BSD-License.txt - sha256sums = SKIP - sha256sums = 74449c3b7082b77d63a23aba1c17ecc85c9dd292b3c6254f636746915d2c27b8 - sha256sums = 308c93912836bb56fdd52c308bec06a5d3fe2b05947e35a89bab0bb52ce03d91 - -pkgname = agg-2.6-git diff --git a/agg-2.6-git/AGG-2.6-Anti-Grain-Geometry-Public-License.txt b/agg-2.6-git/AGG-2.6-Anti-Grain-Geometry-Public-License.txt deleted file mode 100644 index d53f36e116..0000000000 --- a/agg-2.6-git/AGG-2.6-Anti-Grain-Geometry-Public-License.txt +++ /dev/null @@ -1,8 +0,0 @@ -Anti-Grain Geometry Public License -Anti-Grain Geometry - Version 2.4 -Copyright (C) 2002-2004 Maxim Shemanarev (McSeem) - -Permission to copy, use, modify, sell and distribute this software -is granted provided this copyright notice appears in all copies. -This software is provided "as is" without express or implied -warranty, and with no claim as to its suitability for any purpose. diff --git a/agg-2.6-git/AGG-2.6-Modified-BSD-License.txt b/agg-2.6-git/AGG-2.6-Modified-BSD-License.txt deleted file mode 100644 index bf9169cb25..0000000000 --- a/agg-2.6-git/AGG-2.6-Modified-BSD-License.txt +++ /dev/null @@ -1,32 +0,0 @@ -Modified BSD License -Anti-Grain Geometry - Version 2.4 -Copyright (C) 2002-2005 Maxim Shemanarev (McSeem) - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - 3. The name of the author may not be used to endorse or promote - products derived from this software without specific prior - written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING -IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. -Please mention the authors in any work derived from Anti-Grain Geometry. diff --git a/agg-2.6-git/PKGBUILD b/agg-2.6-git/PKGBUILD deleted file mode 100644 index f2d25b8c4f..0000000000 --- a/agg-2.6-git/PKGBUILD +++ /dev/null @@ -1,64 +0,0 @@ -# Maintainer: Clemmitt Sigler - -pkgname=agg-2.6-git -_pkgname=agg -pkgver=r151.e7db22b -_pkgver=2.6 -pkgrel=1 -pkgdesc='High Quality Rendering Engine for C++' -arch=('x86_64') -url='https://github.com/ghaerr/agg-2.6' -license=('BSD' 'custom:Anti-Grain Geometry Public License') -depends=('gcc-libs' 'sdl' 'freetype2') -makedepends=('git') -provides=('agg') -conflicts=('agg') -replaces=('antigrain') -source=("git+https://github.com/ghaerr/agg-2.6.git" - 'AGG-2.6-Anti-Grain-Geometry-Public-License.txt' - 'AGG-2.6-Modified-BSD-License.txt') -sha256sums=('SKIP' - '74449c3b7082b77d63a23aba1c17ecc85c9dd292b3c6254f636746915d2c27b8' - '308c93912836bb56fdd52c308bec06a5d3fe2b05947e35a89bab0bb52ce03d91') - -pkgver() { - cd "$_pkgname-$_pkgver" - ( - set -o pipefail - git describe --long 2> /dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' \ - || printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" - ) -} - -prepare() { - cd "$_pkgname-$_pkgver/agg-src" - - autoupdate - aclocal - autoheader - autoconf - libtoolize -f - automake --foreign -a -i -} - -build() { - cd "$_pkgname-$_pkgver/agg-src" - - # Do not use/remove GPC code to remove dependency on GPC license - # See https://github.com/ghaerr/agg-2.6/blob/master/agg-web/license/index.html - ./configure --prefix=/usr --disable-gpc --disable-static --disable-examples - make -} - -package() { - make -C "$_pkgname-$_pkgver/agg-src" DESTDIR="$pkgdir" install - - # Do not use/remove GPC code to remove dependency on GPC license - # See https://github.com/ghaerr/agg-2.6/blob/master/agg-web/license/index.html - rm -f ./include/agg_conv_gpc.h "$pkgdir/usr/include/agg2/agg_conv_gpc.h" - - install -Dm644 AGG-2.6-Anti-Grain-Geometry-Public-License.txt -t "$pkgdir/usr/share/licenses/$pkgname" - install -Dm644 AGG-2.6-Modified-BSD-License.txt -t "$pkgdir/usr/share/licenses/$pkgname" -} - -# vim:set ts=2 sw=2 et: diff --git a/aic94xx-firmware/.CI/config b/aic94xx-firmware/.CI/config index d961c0ee04..66bee94775 100644 --- a/aic94xx-firmware/.CI/config +++ b/aic94xx-firmware/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1690188013 CI_PKGBUILD_SOURCE=aur diff --git a/airshipper/.CI/config b/airshipper/.CI/config index 6bf00de457..66bee94775 100644 --- a/airshipper/.CI/config +++ b/airshipper/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1726501108 CI_PKGBUILD_SOURCE=aur diff --git a/airspy-git/.AURINFO b/airspy-git/.AURINFO deleted file mode 100644 index 64a091745b..0000000000 --- a/airspy-git/.AURINFO +++ /dev/null @@ -1,18 +0,0 @@ -pkgbase = airspy-git - pkgdesc = Host code for Airspy SDR. - pkgver = 20141216 - pkgrel = 1 - url = http://www.airspy.com - arch = i686 - arch = x86_64 - license = GPL2 - makedepends = git - makedepends = cmake - depends = libusb>=1.0 - provides = airspy - conflicts = airspy - source = git+https://github.com/airspy/host - source = airspy.conf - -pkgname = airspy-git - diff --git a/airspy-git/.CI/config b/airspy-git/.CI/config index 5d9d460859..66bee94775 100644 --- a/airspy-git/.CI/config +++ b/airspy-git/.CI/config @@ -1,4 +1 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1434169929 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=43570b63de90dacd2c5fc6500a538617fdb406ff diff --git a/airspy-git/.SRCINFO b/airspy-git/.SRCINFO index 651f5110d5..d93092ebf2 100644 --- a/airspy-git/.SRCINFO +++ b/airspy-git/.SRCINFO @@ -1,20 +1,20 @@ pkgbase = airspy-git - pkgdesc = Host code for Airspy SDR. - pkgver = 20141216 + pkgdesc = Host code for Airspy SDR + pkgver = 1.0.10.r24.g43570b6 pkgrel = 1 - url = http://www.airspy.com + url = https://github.com/airspy/host arch = i686 arch = x86_64 - license = GPL2 - makedepends = git + license = GPL-2.0-or-later makedepends = cmake - depends = libusb>=1.0 + makedepends = git + makedepends = ninja + depends = libusb provides = airspy conflicts = airspy - source = git+https://github.com/airspy/host + source = airspyone_host::git+https://github.com/airspy/host.git source = airspy.conf - md5sums = SKIP - md5sums = 29e481d56bfc56cface4f1457ca6df23 + sha256sums = SKIP + sha256sums = b210dd0698c3bb8ad59f0393c12a74e1ed8fe1b16a2faabc38467f68ebed0120 pkgname = airspy-git - diff --git a/airspy-git/PKGBUILD b/airspy-git/PKGBUILD index def891d9d8..9b2f3296d3 100644 --- a/airspy-git/PKGBUILD +++ b/airspy-git/PKGBUILD @@ -1,41 +1,60 @@ -# Maintainer: Kyle Keen +# Maintainer: +# Contributor: Kyle Keen -pkgname=airspy-git -pkgver=20141216 +_pkgname="airspy" +pkgname="$_pkgname-git" +pkgver=1.0.10.r24.g43570b6 pkgrel=1 -pkgdesc="Host code for Airspy SDR." +pkgdesc="Host code for Airspy SDR" +url="https://github.com/airspy/host" +license=('GPL-2.0-or-later') arch=('i686' 'x86_64') -url="http://www.airspy.com" -license=('GPL2') -depends=('libusb>=1.0') -provides=('airspy') -conflicts=('airspy') -makedepends=('git' 'cmake') -source=("git+https://github.com/airspy/host" - "airspy.conf") -md5sums=('SKIP' - '29e481d56bfc56cface4f1457ca6df23') - -_gitname="host" + +depends=( + 'libusb' +) +makedepends=( + 'cmake' + 'git' + 'ninja' +) + +provides=("$_pkgname") +conflicts=("$_pkgname") + +_pkgsrc="airspyone_host" +source=( + "$_pkgsrc"::"git+$url.git" + "airspy.conf" +) +sha256sums=( + 'SKIP' + 'b210dd0698c3bb8ad59f0393c12a74e1ed8fe1b16a2faabc38467f68ebed0120' +) pkgver() { - cd "$srcdir/$_gitname" - git show -s --format="%ci" HEAD | sed -e 's/-//g' -e 's/ .*//' + cd "$_pkgsrc" + git describe --long --tags --abbrev=7 --exclude='*[a-zA-Z][a-zA-Z]*' \ + | sed -E 's/^[^0-9]*//;s/([^-]*-g)/r\1/;s/-/./g' } build() { - cd "$srcdir/$_gitname" - mkdir -p build - cd build - cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -Wno-dev ../ - make + local _cmake_options=( + -B build + -S "$_pkgsrc" + -G Ninja + -DCMAKE_BUILD_TYPE=None + -DCMAKE_INSTALL_PREFIX='/usr' + -Wno-dev + ) + + cmake "${_cmake_options[@]}" + cmake --build build } package() { - cd "$srcdir/$_gitname/build" - make DESTDIR="$pkgdir" install - install -Dm644 "../airspy-tools/52-airspy.rules" "$pkgdir/usr/lib/udev/rules.d/52-airspy.rules" - install -Dm644 "$srcdir/airspy.conf" "$pkgdir/etc/modprobe.d/airspy.conf" -} + DESTDIR="$pkgdir" cmake --install build -# vim:set ts=2 sw=2 et: + install -Dm644 "$_pkgsrc/airspy-tools/52-airspy.rules" -t "$pkgdir/usr/lib/udev/rules.d/" + install -Dm644 "airspy.conf" -t "$pkgdir/etc/modprobe.d/" +} diff --git a/airspyhf-git/.CI/config b/airspyhf-git/.CI/config index a25adb2284..8471e6a8af 100644 --- a/airspyhf-git/.CI/config +++ b/airspyhf-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1681087282 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=39f06a4934a0707a35496cfabce45cfaf5c60d92 diff --git a/akira-git/.CI/config b/akira-git/.CI/config index f4239dd48a..8471e6a8af 100644 --- a/akira-git/.CI/config +++ b/akira-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1616330927 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=3b6c58ab4376f0c40cf647164354a65ba2b15a3f diff --git a/akira/.CI/config b/akira/.CI/config index 0f920330d8..e50fe9e257 100644 --- a/akira/.CI/config +++ b/akira/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1711581142 +CI_PACKAGE_BUMP=0.0.16-1/5 CI_PKGBUILD_SOURCE=aur diff --git a/akvcam-dkms/.CI/config b/akvcam-dkms/.CI/config index 12732688d1..66bee94775 100644 --- a/akvcam-dkms/.CI/config +++ b/akvcam-dkms/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1711398517 CI_PKGBUILD_SOURCE=aur diff --git a/alacritty-git/.CI/config b/alacritty-git/.CI/config deleted file mode 100644 index 0cda12fa96..0000000000 --- a/alacritty-git/.CI/config +++ /dev/null @@ -1,4 +0,0 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1703994102 -CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=4a7728bf7fac06a35f27f6c4f31e0d9214e5152b diff --git a/alacritty-git/.SRCINFO b/alacritty-git/.SRCINFO deleted file mode 100644 index 63e0e179e1..0000000000 --- a/alacritty-git/.SRCINFO +++ /dev/null @@ -1,34 +0,0 @@ -pkgbase = alacritty-git - pkgdesc = A cross-platform, GPU-accelerated terminal emulator - pkgver = 0.14.0.2261.g2786683e - pkgrel = 1 - epoch = 1 - url = https://github.com/alacritty/alacritty - arch = x86_64 - arch = i686 - arch = aarch64 - license = Apache - checkdepends = ttf-dejavu - makedepends = rust - makedepends = cargo - makedepends = cmake - makedepends = fontconfig - makedepends = ncurses - makedepends = desktop-file-utils - makedepends = gdb - makedepends = libxcb - makedepends = libxkbcommon-x11 - makedepends = git - makedepends = scdoc - makedepends = gzip - depends = freetype2 - depends = fontconfig - depends = libxi - depends = libxcursor - depends = libxrandr - provides = alacritty - conflicts = alacritty - source = alacritty::git+https://github.com/alacritty/alacritty.git - sha256sums = SKIP - -pkgname = alacritty-git diff --git a/alacritty-git/PKGBUILD b/alacritty-git/PKGBUILD deleted file mode 100644 index 77094dd81c..0000000000 --- a/alacritty-git/PKGBUILD +++ /dev/null @@ -1,51 +0,0 @@ -pkgname='alacritty-git' -_pkgname="alacritty" -pkgver=0.14.0.2261.g2786683e -pkgrel=1 -epoch=1 -arch=('x86_64' 'i686' 'aarch64') -url="https://github.com/alacritty/alacritty" -pkgdesc="A cross-platform, GPU-accelerated terminal emulator" -license=('Apache') -depends=('freetype2' 'fontconfig' 'libxi' 'libxcursor' 'libxrandr') -makedepends=('rust' 'cargo' 'cmake' 'fontconfig' 'ncurses' 'desktop-file-utils' 'gdb' 'libxcb' 'libxkbcommon-x11' 'git' 'scdoc' 'gzip') -checkdepends=('ttf-dejavu') # for monospace fontconfig test -provides=('alacritty') -conflicts=('alacritty') -source=("$_pkgname::git+https://github.com/alacritty/alacritty.git") -sha256sums=('SKIP') - -pkgver() { - cd $_pkgname/alacritty - echo "$(grep '^version =' Cargo.toml | head -n1 | cut -d\" -f2 | cut -d\- -f1).$(git rev-list --count HEAD).g$(git rev-parse --short HEAD)" -} - -build() { - cd "$_pkgname" - env CARGO_INCREMENTAL=0 cargo build --release --locked -} - -check() { - cd "$_pkgname" - env CARGO_INCREMENTAL=0 cargo test --release -} - -package_alacritty-git() { - cd $_pkgname - - desktop-file-install -m 644 --dir "$pkgdir/usr/share/applications/" "$srcdir/$_pkgname/extra/linux/Alacritty.desktop" - - mkdir -p "$pkgdir/usr/share/man/man1" "$pkgdir/usr/share/man/man5" - scdoc < extra/man/alacritty.1.scd | gzip -c | tee "$pkgdir/usr/share/man/man1/alacritty.1.gz" > /dev/null - scdoc < extra/man/alacritty.5.scd | gzip -c | tee "$pkgdir/usr/share/man/man5/alacritty.5.gz" > /dev/null - scdoc < extra/man/alacritty-msg.1.scd | gzip -c | tee "$pkgdir/usr/share/man/man1/alacritty-msg.1.gz" > /dev/null - scdoc < extra/man/alacritty-bindings.5.scd | gzip -c | tee "$pkgdir/usr/share/man/man5/alacritty-bindings.5.gz" > /dev/null - - install -D -m755 "target/release/alacritty" "$pkgdir/usr/bin/alacritty" - install -D -m644 "extra/linux/org.alacritty.Alacritty.appdata.xml" "$pkgdir/usr/share/appdata/org.alacritty.Alacritty.appdata.xml" - install -D -m644 "extra/completions/alacritty.bash" "$pkgdir/usr/share/bash-completion/completions/alacritty" - install -D -m644 "extra/completions/_alacritty" "$pkgdir/usr/share/zsh/site-functions/_alacritty" - install -D -m644 "extra/completions/alacritty.fish" "$pkgdir/usr/share/fish/vendor_completions.d/alacritty.fish" - install -D -m644 "extra/logo/alacritty-term.svg" "$pkgdir/usr/share/pixmaps/Alacritty.svg" - install -D -m644 "extra/logo/compat/alacritty-term.png" "$pkgdir/usr/share/pixmaps/Alacritty.png" -} diff --git a/albert/.CI/config b/albert/.CI/config index edea302b27..66bee94775 100644 --- a/albert/.CI/config +++ b/albert/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1725882617 CI_PKGBUILD_SOURCE=aur diff --git a/albert/.SRCINFO b/albert/.SRCINFO index 15f0639d3e..6fd8207e80 100644 --- a/albert/.SRCINFO +++ b/albert/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = albert pkgdesc = A sophisticated standalone keyboard launcher - pkgver = 0.26.3 + pkgver = 0.26.7 pkgrel = 1 url = https://github.com/albertlauncher arch = x86_64 @@ -20,7 +20,7 @@ pkgbase = albert optdepends = libarchive: documentation plugin optdepends = libqalculate: calculator plugin optdepends = python: python extension - source = https://github.com/albertlauncher/albert/releases/download/v0.26.3/v0.26.3.tar.gz - sha512sums = f3367226a78937607aa2feb9bf0ff3cb453d5213d141af501f858b8d7f57dc81024a261ba5feaf52219a03718895cc3551eeab337163fb07c0339ada7c0b0519 + source = https://github.com/albertlauncher/albert/releases/download/v0.26.7/v0.26.7.tar.gz + sha512sums = 6ea43920ad4a87625c1616b1819f98672eff58b86b4099fa97826a8ac80fcc97f903465018dec55da8ef05d6d2c1a4da893d7de5771e695ec64a458ca3adb329 pkgname = albert diff --git a/albert/PKGBUILD b/albert/PKGBUILD index b67f94d806..57afaebb72 100644 --- a/albert/PKGBUILD +++ b/albert/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: Manuel Schneider pkgname=albert -pkgver=0.26.3 +pkgver=0.26.7 pkgrel=1 pkgdesc="A sophisticated standalone keyboard launcher" arch=('x86_64') @@ -27,6 +27,7 @@ build() { -DCMAKE_FIND_PACKAGE_RESOLVE_SYMLINKS=ON \ -DQHOTKEY_INSTALL=OFF \ -DBUILD_PLUGIN_APPLICATIONS=ON \ + -DBUILD_PLUGIN_CAFFEINE=ON \ -DBUILD_PLUGIN_CALCULATOR_QALCULATE=ON \ -DBUILD_PLUGIN_CHROMIUM=ON \ -DBUILD_PLUGIN_CLIPBOARD=ON \ @@ -38,7 +39,6 @@ build() { -DBUILD_PLUGIN_MPRIS=ON \ -DBUILD_PLUGIN_PATH=ON \ -DBUILD_PLUGIN_PYTHON=ON \ - -DBUILD_PLUGIN_QMLBOXMODEL=ON \ -DBUILD_PLUGIN_SNIPPETS=ON \ -DBUILD_PLUGIN_SSH=ON \ -DBUILD_PLUGIN_SYSTEM=ON \ @@ -59,4 +59,4 @@ package() { install -Dm644 "$srcdir/$pkgname/LICENSE.md" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } -sha512sums=('f3367226a78937607aa2feb9bf0ff3cb453d5213d141af501f858b8d7f57dc81024a261ba5feaf52219a03718895cc3551eeab337163fb07c0339ada7c0b0519') +sha512sums=('6ea43920ad4a87625c1616b1819f98672eff58b86b4099fa97826a8ac80fcc97f903465018dec55da8ef05d6d2c1a4da893d7de5771e695ec64a458ca3adb329') diff --git a/alhp-keyring/.CI/config b/alhp-keyring/.CI/config index de3f3c4a28..66bee94775 100644 --- a/alhp-keyring/.CI/config +++ b/alhp-keyring/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1714142502 CI_PKGBUILD_SOURCE=aur diff --git a/alhp-mirrorlist/.CI/config b/alhp-mirrorlist/.CI/config index 432c97c6e7..66bee94775 100644 --- a/alhp-mirrorlist/.CI/config +++ b/alhp-mirrorlist/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1721844837 CI_PKGBUILD_SOURCE=aur diff --git a/all-repository-fonts/.CI/config b/all-repository-fonts/.CI/config index 34f4044df7..66bee94775 100644 --- a/all-repository-fonts/.CI/config +++ b/all-repository-fonts/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1712859790 CI_PKGBUILD_SOURCE=aur diff --git a/alpm_octopi_utils/.CI/config b/alpm_octopi_utils/.CI/config index 79018ab1c3..f7f5c49b87 100644 --- a/alpm_octopi_utils/.CI/config +++ b/alpm_octopi_utils/.CI/config @@ -1,3 +1,3 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1725386686 +CI_PACKAGE_BUMP=1.0.2-7/1 CI_PKGBUILD_SOURCE=aur diff --git a/alsi/.CI/config b/alsi/.CI/config index ff0e88bbae..66bee94775 100644 --- a/alsi/.CI/config +++ b/alsi/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1602509170 CI_PKGBUILD_SOURCE=aur diff --git a/alvr/.CI/config b/alvr/.CI/config index c1916d73d4..5ddd9d00e6 100644 --- a/alvr/.CI/config +++ b/alvr/.CI/config @@ -1,3 +1,4 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1726069645 +CI_PACKAGE_BUMP=20.11.1-1/3 CI_PKGBUILD_SOURCE=aur +BUILDER_CLASS=catbuilder diff --git a/alvr/.SRCINFO b/alvr/.SRCINFO index 068dd60e3b..799feb1d1d 100644 --- a/alvr/.SRCINFO +++ b/alvr/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = alvr pkgdesc = Experimental Linux version of ALVR. Stream VR games from your PC to your headset via Wi-Fi. - pkgver = 20.11.0 + pkgver = 20.11.1 pkgrel = 1 url = https://github.com/alvr-org/ALVR arch = x86_64 @@ -28,9 +28,9 @@ pkgbase = alvr provides = alvr conflicts = alvr options = !lto - source = alvr::git+https://github.com/alvr-org/ALVR.git#tag=v20.11.0 + source = alvr::git+https://github.com/alvr-org/ALVR.git#tag=v20.11.1 source = git+https://github.com/ValveSoftware/openvr.git - md5sums = b30ea19375aa6e2989ca8c721ef56392 + md5sums = a32d15dc357bffb25dc52b9f4b800d7f md5sums = SKIP pkgname = alvr diff --git a/alvr/PKGBUILD b/alvr/PKGBUILD index 7006a51cc0..63175ae62d 100644 --- a/alvr/PKGBUILD +++ b/alvr/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: m00nw4tch3r pkgname=alvr -pkgver=20.11.0 +pkgver=20.11.1 pkgrel=1 pkgdesc="Experimental Linux version of ALVR. Stream VR games from your PC to your headset via Wi-Fi." arch=('x86_64') @@ -14,7 +14,7 @@ conflicts=("${pkgname}") source=("${pkgname}"::"git+https://github.com/alvr-org/ALVR.git#tag=v$pkgver" "git+https://github.com/ValveSoftware/openvr.git" ) -md5sums=('b30ea19375aa6e2989ca8c721ef56392' +md5sums=('a32d15dc357bffb25dc52b9f4b800d7f' 'SKIP') options=('!lto') diff --git a/amarok/.CI/config b/amarok/.CI/config index 30a1dda814..16a193cff0 100644 --- a/amarok/.CI/config +++ b/amarok/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1722683468 +CI_PACKAGE_BUMP=3.1.1-1/1 CI_PKGBUILD_SOURCE=aur diff --git a/amarok/.SRCINFO b/amarok/.SRCINFO index 2744b80a57..a112733478 100644 --- a/amarok/.SRCINFO +++ b/amarok/.SRCINFO @@ -1,8 +1,8 @@ pkgbase = amarok pkgdesc = The powerful music player for KDE - pkgver = 3.1.0 + pkgver = 3.1.1 pkgrel = 1 - url = https://apps.kde.org/de/amarok/ + url = https://apps.kde.org/amarok/ arch = x86_64 license = FDL license = GPL2 @@ -61,7 +61,7 @@ pkgbase = amarok depends = solid5 optdepends = qt5-webengine: wikipedia optdepends = loudmouth: backend needed by mp3tunes for syncing - source = https://invent.kde.org/multimedia/amarok/-/archive/v3.1.0/amarok-v3.1.0.tar.gz - sha256sums = 68738e2b34aef89f6a1620d8bed502596c81522428e4b0a58c37e19218084978 + source = https://invent.kde.org/multimedia/amarok/-/archive/v3.1.1/amarok-v3.1.1.tar.gz + sha256sums = 1bd96711a9b0848509e95ec99dc5caff830755d086a0b7d2b9b6016f193390c2 pkgname = amarok diff --git a/amarok/PKGBUILD b/amarok/PKGBUILD index f634561dbc..19a2b3f3a1 100644 --- a/amarok/PKGBUILD +++ b/amarok/PKGBUILD @@ -6,11 +6,11 @@ # Contributor: damir pkgname=amarok -pkgver=3.1.0 +pkgver=3.1.1 pkgrel=1 pkgdesc="The powerful music player for KDE" arch=(x86_64) -url="https://apps.kde.org/de/amarok/" +url="https://apps.kde.org/amarok/" license=(FDL GPL2 LGPL2.1) depends=(kcmutils5 kdnssd5 kirigami2 kirigami-addons5 ktexteditor5 liblastfm-qt5 libofa phonon-qt5 threadweaver5 taglib libmygpo-qt5 libmtp mariadb mariadb-libs gdk-pixbuf2 knotifyconfig5 @@ -26,7 +26,7 @@ optdepends=( "loudmouth: backend needed by mp3tunes for syncing" ) source=("https://invent.kde.org/multimedia/amarok/-/archive/v${pkgver}/amarok-v${pkgver}.tar.gz") -sha256sums=('68738e2b34aef89f6a1620d8bed502596c81522428e4b0a58c37e19218084978') +sha256sums=('1bd96711a9b0848509e95ec99dc5caff830755d086a0b7d2b9b6016f193390c2') build() { cmake -B build -S "amarok-v${pkgver}" -Wno-dev \ diff --git a/amber-theme-git/.CI/config b/amber-theme-git/.CI/config index 68d23ddf81..8471e6a8af 100644 --- a/amber-theme-git/.CI/config +++ b/amber-theme-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1545848899 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=257f65745c589f7753dd628613afd245d822c801 diff --git a/amdctl/.CI/config b/amdctl/.CI/config index 71256f1aed..fab0ec9c13 100644 --- a/amdctl/.CI/config +++ b/amdctl/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1668454289 CI_PKGBUILD_SOURCE=aur +BUILDER_CLASS=catbuilder diff --git a/amdfand-bin/.CI/config b/amdfand-bin/.CI/config index 7459444bd2..66bee94775 100644 --- a/amdfand-bin/.CI/config +++ b/amdfand-bin/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1715624228 CI_PKGBUILD_SOURCE=aur diff --git a/amdgpu-fan/.CI/config b/amdgpu-fan/.CI/config index e9d1877298..66bee94775 100644 --- a/amdgpu-fan/.CI/config +++ b/amdgpu-fan/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1714306952 CI_PKGBUILD_SOURCE=aur diff --git a/amdguid-glow-bin/.CI/config b/amdguid-glow-bin/.CI/config index 07f93dc947..66bee94775 100644 --- a/amdguid-glow-bin/.CI/config +++ b/amdguid-glow-bin/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1655370661 CI_PKGBUILD_SOURCE=aur diff --git a/amdguid-glow-bin/.SRCINFO b/amdguid-glow-bin/.SRCINFO index 89a820347f..53f78e243a 100644 --- a/amdguid-glow-bin/.SRCINFO +++ b/amdguid-glow-bin/.SRCINFO @@ -1,15 +1,19 @@ pkgbase = amdguid-glow-bin pkgdesc = AMDGPU temperature and fan speed monitoring tool - pkgver = 1.0.11 - pkgrel = 3 + pkgver = 1.0.13 + pkgrel = 4 url = https://github.com/Eraden/amdgpud arch = x86_64 license = MIT license = Apache-2.0 - depends = amdfand-bin - optdepends = amdmond-bin - optdepends = amdvold-bin - source = https://github.com/Eraden/amdgpud/releases/download/v1.0.11/amdguid-glow-1.0.11.tar.gz - md5sums = f9918f75f1cb96febe531a027ff2df27 + depends = amdfand + optdepends = amdmond + optdepends = amdvold + provides = amdguid-glow + provides = amdguid + conflicts = amdguid-glow + conflicts = amdguid + source = amdguid-glow-1.0.13.zip::https://github.com/Eraden/amdgpud/releases/download/v1.0.12/amdguid-glow-archlinux-latest-1.0.13.zip + md5sums = 75a62a7c5e083334a3b236c907ee600e pkgname = amdguid-glow-bin diff --git a/amdguid-glow-bin/PKGBUILD b/amdguid-glow-bin/PKGBUILD index 4e4a318672..a7137c850c 100644 --- a/amdguid-glow-bin/PKGBUILD +++ b/amdguid-glow-bin/PKGBUILD @@ -1,31 +1,25 @@ -# Maintainer Adrian Woźniak - -pkgbase=amdguid-glow-bin -pkgname=amdguid-glow-bin -pkgver=1.0.11 -pkgrel=3 +# Maintainer: Adam Perkowski +# https://github.com/adamperkowski/PKGBUILDs +_pkgname=amdguid-glow +pkgname="$_pkgname-bin" +_pkgver=1.0.12 +pkgver=1.0.13 +pkgrel=4 pkgdesc="AMDGPU temperature and fan speed monitoring tool" url="https://github.com/Eraden/amdgpud" license=('MIT' 'Apache-2.0') -source=("https://github.com/Eraden/amdgpud/releases/download/v${pkgver}/amdguid-glow-1.0.11.tar.gz") +source=("$_pkgname-$pkgver.zip::$url/releases/download/v$_pkgver/$_pkgname-archlinux-latest-$pkgver.zip") arch=('x86_64') -md5sums=('f9918f75f1cb96febe531a027ff2df27') -keywords=('amdgpu' 'controller' 'fan', 'overclocking', 'voltage') -depends=('amdfand-bin') -optdepends=('amdmond-bin' 'amdvold-bin') - -build() { - cd $srcdir/ - tar -xvf $srcdir/amdguid-glow-1.0.11.tar.gz -} +md5sums=('75a62a7c5e083334a3b236c907ee600e') +keywords=('amdgpu' 'controller' 'fan' 'overclocking' 'voltage') +depends=('amdfand') +optdepends=('amdmond' 'amdvold') +provides=("$_pkgname" 'amdguid') +conflicts=("$_pkgname" 'amdguid') package() { - cd $srcdir/ - mkdir -p $pkgdir/usr/bin/ - mkdir -p "$pkgdir/usr/lib/systemd/system" - install -m 0755 $srcdir/amdguid $pkgdir/usr/bin - install -m 0755 $srcdir/amdgui-helper $pkgdir/usr/bin - install -m 0755 $srcdir/amdgui-helper.service "$pkgdir/usr/lib/systemd/system/amdgui-helper.service" + cd "$srcdir" + install -Dm0755 "target/release/$_pkgname" -t "$pkgdir/usr/bin" + install -Dm0755 "target/release/amdgui-helper" -t "$pkgdir/usr/bin" + install -Dm0755 "services/amdgui-helper.service" -t "$pkgdir/usr/lib/systemd/system" } - -#vim: syntax=sh diff --git a/amdguid-wayland-bin/.CI/config b/amdguid-wayland-bin/.CI/config index 08c8d828e0..66bee94775 100644 --- a/amdguid-wayland-bin/.CI/config +++ b/amdguid-wayland-bin/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1655312967 CI_PKGBUILD_SOURCE=aur diff --git a/amdguid-wayland-bin/.SRCINFO b/amdguid-wayland-bin/.SRCINFO index 8d1378703f..561fda1e57 100644 --- a/amdguid-wayland-bin/.SRCINFO +++ b/amdguid-wayland-bin/.SRCINFO @@ -1,15 +1,19 @@ pkgbase = amdguid-wayland-bin pkgdesc = AMDGPU temperature and fan speed monitoring tool - pkgver = 1.0.11 + pkgver = 1.0.13 pkgrel = 2 url = https://github.com/Eraden/amdgpud arch = x86_64 license = MIT license = Apache-2.0 - depends = amdfand-bin - optdepends = amdmond-bin - optdepends = amdvold-bin - source = https://github.com/Eraden/amdgpud/releases/download/v1.0.11/amdguid-wayland.tar.gz - md5sums = 27db95bb6c493658a65c9f50b46dac02 + depends = amdfand + optdepends = amdmond + optdepends = amdvold + provides = amdguid-wayland + provides = amdguid + conflicts = amdguid-wayland + conflicts = amdguid + source = amdguid-wayland-bin-1.0.13.tar.gz::https://github.com/Eraden/amdgpud/releases/download/v1.0.12/amdguid-wayland-archlinux-latest-1.0.13.zip + md5sums = ce25a6c319f0cf839e20a70547619622 pkgname = amdguid-wayland-bin diff --git a/amdguid-wayland-bin/PKGBUILD b/amdguid-wayland-bin/PKGBUILD index 21af9631e7..e88679e5d7 100644 --- a/amdguid-wayland-bin/PKGBUILD +++ b/amdguid-wayland-bin/PKGBUILD @@ -1,31 +1,25 @@ -# Maintainer Adrian Woźniak - -pkgbase=amdguid-wayland-bin -pkgname=amdguid-wayland-bin -pkgver=1.0.11 +# Maintainer Adam Perkowski +# https://github.com/adamperkowski/PKGBUILDs +_pkgname=amdguid-wayland +pkgname="$_pkgname-bin" +_pkgver=1.0.12 +pkgver=1.0.13 pkgrel=2 pkgdesc="AMDGPU temperature and fan speed monitoring tool" url="https://github.com/Eraden/amdgpud" license=('MIT' 'Apache-2.0') -source=("https://github.com/Eraden/amdgpud/releases/download/v${pkgver}/amdguid-wayland.tar.gz") +source=("$pkgname-$pkgver.tar.gz::$url/releases/download/v$_pkgver/$_pkgname-archlinux-latest-$pkgver.zip") arch=('x86_64') -md5sums=('27db95bb6c493658a65c9f50b46dac02') -keywords=('amdgpu' 'controller' 'fan', 'overclocking', 'voltage') -depends=('amdfand-bin') -optdepends=('amdmond-bin' 'amdvold-bin') - -build() { - cd $srcdir/ - tar -xvf $srcdir/amdguid-wayland.tar.gz -} +md5sums=('ce25a6c319f0cf839e20a70547619622') +keywords=('amdgpu' 'controller' 'fan' 'overclocking' 'voltage') +depends=('amdfand') +optdepends=('amdmond' 'amdvold') +provides=("$_pkgname" 'amdguid') +conflicts=("$_pkgname" 'amdguid') package() { - cd $srcdir/ - mkdir -p $pkgdir/usr/bin/ - mkdir -p "$pkgdir/usr/lib/systemd/system" - install -m 0755 $srcdir/amdguid $pkgdir/usr/bin - install -m 0755 $srcdir/amdgui-helper $pkgdir/usr/bin - install -m 0755 $srcdir/amdgui-helper.service "$pkgdir/usr/lib/systemd/system/amdgui-helper.service" + cd "$srcdir" + install -Dm0755 "target/release/$_pkgname" -t "$pkgdir/usr/bin" + install -Dm0755 "target/release/amdgui-helper" -t "$pkgdir/usr/bin" + install -Dm0755 "services/amdgui-helper.service" -t "$pkgdir/usr/lib/systemd/system" } - -#vim: syntax=sh diff --git a/ame/.CI/config b/ame/.CI/config index f4a3d8fb05..66bee94775 100644 --- a/ame/.CI/config +++ b/ame/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1726412858 CI_PKGBUILD_SOURCE=aur diff --git a/amule-git/.CI/config b/amule-git/.CI/config index 90c6cb903c..8471e6a8af 100644 --- a/amule-git/.CI/config +++ b/amule-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1720354898 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=e26d06a6eeaf37c716a88a47890cb85b931a0538 diff --git a/amule-git/.SRCINFO b/amule-git/.SRCINFO index d9ecfaffda..c89b89572e 100644 --- a/amule-git/.SRCINFO +++ b/amule-git/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = amule-git pkgdesc = Client for the eD2k and Kad networks - pkgver = 2.3.3.r42.e26d06a6e - pkgrel = 4 + pkgver = 2.3.3.r46.be22aea36 + pkgrel = 1 url = https://amule.org/ arch = x86_64 license = GPL2 @@ -16,13 +16,11 @@ pkgbase = amule-git provides = amule-daemon conflicts = amule source = git+https://github.com/amule-project/amule.git - source = amule-dlp-wx3.2.patch::https://github.com/persmule/amule-dlp/commit/7b3a07ab554d95267cca0c4a819b26d8474d6b3b.patch source = amuled.systemd source = amuleweb.systemd source = amule.sysusers source = amule.tmpfiles sha256sums = SKIP - sha256sums = c5b49fa0c17accc37fb1ac3df2060382f5db4069ffa67ee3a4733d0db93559a4 sha256sums = 20ac6b60c5f3bf49c0b080dfc02409da3c9d01b154344188008c6a75ca69681e sha256sums = f4f43b1154ddccc9036a4291a58c6715f097b171fec62ea7aead0c9d9fa654f2 sha256sums = c4ca658ab4105b3b90e0bb3efcc8121eca1c4d873787db1ed4f637925c16d502 diff --git a/amule-git/PKGBUILD b/amule-git/PKGBUILD index 3939e18711..a94fe09da2 100644 --- a/amule-git/PKGBUILD +++ b/amule-git/PKGBUILD @@ -3,8 +3,8 @@ # Contributor: lukpod pkgname=amule-git -pkgver=2.3.3.r42.e26d06a6e -pkgrel=4 +pkgver=2.3.3.r46.be22aea36 +pkgrel=1 pkgdesc="Client for the eD2k and Kad networks" arch=(x86_64) url="https://amule.org/" @@ -15,20 +15,13 @@ provides=(amule amule-daemon) conflicts=(amule) source=("git+https://github.com/amule-project/amule.git" #git+https://repo.or.cz/amule.git - "amule-dlp-wx3.2.patch::https://github.com/persmule/amule-dlp/commit/7b3a07ab554d95267cca0c4a819b26d8474d6b3b.patch" amuled.systemd amuleweb.systemd amule.sysusers amule.tmpfiles) sha256sums=('SKIP' - 'c5b49fa0c17accc37fb1ac3df2060382f5db4069ffa67ee3a4733d0db93559a4' '20ac6b60c5f3bf49c0b080dfc02409da3c9d01b154344188008c6a75ca69681e' 'f4f43b1154ddccc9036a4291a58c6715f097b171fec62ea7aead0c9d9fa654f2' 'c4ca658ab4105b3b90e0bb3efcc8121eca1c4d873787db1ed4f637925c16d502' 'e9d1b7019c7075b0f8616c6507a767b87de8f899936680e9ff5829d8cbba224d') -prepare() { - cd amule - patch -Np1 -i ../amule-dlp-wx3.2.patch -} - pkgver() { cd amule git describe --tags | sed 's/-/.r/; s/-g/./' diff --git a/anaconda/.CI/config b/anaconda/.CI/config index 7d43d8c28d..66bee94775 100644 --- a/anaconda/.CI/config +++ b/anaconda/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1719909289 CI_PKGBUILD_SOURCE=aur diff --git a/anaconda/.SRCINFO b/anaconda/.SRCINFO index 01811e8f60..f033e4faed 100644 --- a/anaconda/.SRCINFO +++ b/anaconda/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = anaconda pkgdesc = Simplifies package management and deployment of Anaconda - pkgver = 2024.06.1 + pkgver = 2024.10.1 pkgrel = 1 url = https://anaconda.com install = anaconda.install @@ -27,9 +27,9 @@ pkgbase = anaconda options = staticlibs source = anaconda-navigator.desktop sha512sums = 5822dd55b1668b166134ec6dc414b3ad13f34c4271e9dba8d2d4adb34440c8b664ce5b6f2b6bb9752f5ec115d8671015fca035f2f94c92d5ce8aba2a1782a9d5 - source_x86_64 = https://repo.anaconda.com/archive/Anaconda3-2024.06-1-Linux-x86_64.sh - sha512sums_x86_64 = 0f287ada6cc11f1043c7776fdcc585aefa3afabe07bc17f95f3fb12917bb49932e6951f19203f14ec884ede7c010ad40e7ec8892605f5de440db60d87d8a3d67 - source_aarch64 = https://repo.anaconda.com/archive/Anaconda3-2024.06-1-Linux-aarch64.sh - sha512sums_aarch64 = f38bdcf7ac4571a659b0e03cb2e0e5b681c95f618ec9d90d096bd37a9f910cffb3636b1db3c663eff459b6588bbb5db256b17aa4e06549ef9a0f6b4f498e520c + source_x86_64 = https://repo.anaconda.com/archive/Anaconda3-2024.10-1-Linux-x86_64.sh + sha512sums_x86_64 = cd9af4f8e31527d81f0a8308ae5395a35bf9bf9b56f697b1b81c9e8742ae1a0bb83f6ceb049e785e8144b9cbd13329fd292cdfbdaace3450b2457922e0a59508 + source_aarch64 = https://repo.anaconda.com/archive/Anaconda3-2024.10-1-Linux-aarch64.sh + sha512sums_aarch64 = 8bc77ea0b701d3b87ccff06d4f4a08ab9f13a20f7f3c5ab32a24852335ad31c59693febe39b684af5e4f3427bd5e631a3931ed2d5fe36d3600fe22815c1acbbc pkgname = anaconda diff --git a/anaconda/PKGBUILD b/anaconda/PKGBUILD index 5acc1efa01..42c698e065 100644 --- a/anaconda/PKGBUILD +++ b/anaconda/PKGBUILD @@ -4,7 +4,7 @@ # Contributor: Ismaël Bouya # Contributor: Martin Wimpress pkgname=anaconda -pkgver=2024.06.1 +pkgver=2024.10.1 _pkgver=${pkgver%.*}-${pkgver##*.} pkgrel=1 pkgdesc="Simplifies package management and deployment of Anaconda" @@ -31,8 +31,8 @@ source_x86_64=(https://repo.${pkgname}.com/archive/Anaconda3-${_pkgver}-Linux-x8 source_aarch64=(https://repo.${pkgname}.com/archive/Anaconda3-${_pkgver}-Linux-aarch64.sh) options=(!strip libtool staticlibs) sha512sums=('5822dd55b1668b166134ec6dc414b3ad13f34c4271e9dba8d2d4adb34440c8b664ce5b6f2b6bb9752f5ec115d8671015fca035f2f94c92d5ce8aba2a1782a9d5') -sha512sums_x86_64=('0f287ada6cc11f1043c7776fdcc585aefa3afabe07bc17f95f3fb12917bb49932e6951f19203f14ec884ede7c010ad40e7ec8892605f5de440db60d87d8a3d67') -sha512sums_aarch64=('f38bdcf7ac4571a659b0e03cb2e0e5b681c95f618ec9d90d096bd37a9f910cffb3636b1db3c663eff459b6588bbb5db256b17aa4e06549ef9a0f6b4f498e520c') +sha512sums_x86_64=('cd9af4f8e31527d81f0a8308ae5395a35bf9bf9b56f697b1b81c9e8742ae1a0bb83f6ceb049e785e8144b9cbd13329fd292cdfbdaace3450b2457922e0a59508') +sha512sums_aarch64=('8bc77ea0b701d3b87ccff06d4f4a08ab9f13a20f7f3c5ab32a24852335ad31c59693febe39b684af5e4f3427bd5e631a3931ed2d5fe36d3600fe22815c1acbbc') install="${pkgname}.install" package() { diff --git a/ananicy-cpp-git/.CI/config b/ananicy-cpp-git/.CI/config index 2347941a45..72868a1463 100644 --- a/ananicy-cpp-git/.CI/config +++ b/ananicy-cpp-git/.CI/config @@ -1,4 +1,2 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1697528514 +CI_PACKAGE_BUMP=1.1.1.r5.g097d79f-1/1 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=097d79fd14607d3bce1021aa8b08a49c82c3222d diff --git a/ananicy-cpp/.CI/config b/ananicy-cpp/.CI/config deleted file mode 100644 index a4ce4d7fc2..0000000000 --- a/ananicy-cpp/.CI/config +++ /dev/null @@ -1,2 +0,0 @@ -CI_PKGBUILD_TIMESTAMP=1726169877 -CI_PKGBUILD_SOURCE=aur diff --git a/ananicy-cpp/.SRCINFO b/ananicy-cpp/.SRCINFO deleted file mode 100644 index 9c2e260da5..0000000000 --- a/ananicy-cpp/.SRCINFO +++ /dev/null @@ -1,29 +0,0 @@ -pkgbase = ananicy-cpp - pkgdesc = Ananicy Cpp is a full rewrite of Ananicy in C++, featuring lower CPU and RAM usage. - pkgver = 1.1.1 - pkgrel = 2 - url = https://gitlab.com/ananicy-cpp/ananicy-cpp - arch = x86_64 - arch = x86_64_v3 - arch = i386 - arch = armv7h - arch = aarch64 - arch = pentium4 - license = GPL3 - makedepends = cmake - makedepends = ninja - makedepends = clang - makedepends = git - makedepends = nlohmann-json - makedepends = bpf - depends = fmt - depends = systemd - depends = libelf - depends = zlib - depends = libbpf - optdepends = ananicy-rules-git: community rules - optdepends = ananicy-rules: Rules based for ananicy-cpp - source = https://gitlab.com/ananicy-cpp/ananicy-cpp/-/archive/v1.1.1/ananicy-cpp-v1.1.1.tar.gz - sha512sums = 61fe40a2da09b7d6a6a92ca6a2c7ba273200a83e893e5c5156edfbeb2fdfa0bdb4cdae402d6b1b4a1d12c5ea820e3d2e1a6d287d1314e8daf1889c3f0e7aa5ce - -pkgname = ananicy-cpp diff --git a/ananicy-cpp/PKGBUILD b/ananicy-cpp/PKGBUILD deleted file mode 100644 index f168455f7d..0000000000 --- a/ananicy-cpp/PKGBUILD +++ /dev/null @@ -1,50 +0,0 @@ -# Maintainer: Antoine Viallon - -pkgname=ananicy-cpp -_pkgver=1.1.1 -pkgver=${_pkgver//-/.} -pkgrel=2 -pkgdesc="Ananicy Cpp is a full rewrite of Ananicy in C++, featuring lower CPU and RAM usage." -arch=(x86_64 x86_64_v3 i386 armv7h aarch64 pentium4) -url="https://gitlab.com/ananicy-cpp/ananicy-cpp" -license=('GPL3') -depends=(fmt systemd libelf zlib libbpf) -makedepends=(cmake ninja clang git nlohmann-json bpf) -optdepends=("ananicy-rules-git: community rules" - "ananicy-rules: Rules based for ananicy-cpp") -source=("https://gitlab.com/ananicy-cpp/${pkgname}/-/archive/v${_pkgver}/${pkgname}-v${_pkgver}.tar.gz") -sha512sums=('61fe40a2da09b7d6a6a92ca6a2c7ba273200a83e893e5c5156edfbeb2fdfa0bdb4cdae402d6b1b4a1d12c5ea820e3d2e1a6d287d1314e8daf1889c3f0e7aa5ce') - -build() { - cd "${srcdir}/${pkgname}-v${_pkgver}" - - _cpuCount=$(grep -c -w ^processor /proc/cpuinfo) - - export CFLAGS="${CFLAGS}" - export CXXFLAGS="${CXXFLAGS}" - export LDFLAGS="${LDFLAGS}" - - # disable system spdlog - cmake -S . -Bbuild \ - -GNinja \ - -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DUSE_EXTERNAL_SPDLOG=OFF \ - -DUSE_EXTERNAL_JSON=ON \ - -DUSE_EXTERNAL_FMTLIB=ON \ - -DENABLE_SYSTEMD=ON \ - -DUSE_BPF_PROC_IMPL=ON \ - -DBPF_BUILD_LIBBPF=OFF \ - -DVERSION=${_pkgver} - - cmake --build build --target ananicy-cpp --parallel $_cpuCount -} - -package() { - cd "${srcdir}/${pkgname}-v${_pkgver}" - DESTDIR="${pkgdir}" cmake --install build --component Runtime - - install -m755 -d "${pkgdir}/etc/ananicy.d" -} - -# vim:set sw=2 sts=2 et: diff --git a/ananicy-rules-git/.CI/config b/ananicy-rules-git/.CI/config index cb0780c2c6..a353dfd028 100644 --- a/ananicy-rules-git/.CI/config +++ b/ananicy-rules-git/.CI/config @@ -1,3 +1,2 @@ BUILDER_CACHE_SOURCES=true CI_PKGBUILD_SOURCE=https://aur.archlinux.org/ananicy-rules-git.git -CI_GIT_COMMIT=1568890f9e2830ca24476b650313d13d97e9f6b2 diff --git a/ananicy/.CI/config b/ananicy/.CI/config index 5c605434bb..a5063492e9 100644 --- a/ananicy/.CI/config +++ b/ananicy/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1611951032 +CI_PACKAGE_BUMP=2.2.1-1/5 CI_PKGBUILD_SOURCE=aur diff --git a/android-emulator/.CI/config b/android-emulator/.CI/config index caa4a2e776..9753e750fa 100644 --- a/android-emulator/.CI/config +++ b/android-emulator/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1712809651 +CI_PACKAGE_BUMP=35.2.10-1/2 CI_PKGBUILD_SOURCE=aur diff --git a/android-emulator/.SRCINFO b/android-emulator/.SRCINFO index f8919ec294..78462e8532 100644 --- a/android-emulator/.SRCINFO +++ b/android-emulator/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = android-emulator pkgdesc = Google Android Emulator - pkgver = 35.1.4 + pkgver = 35.2.10 pkgrel = 1 url = https://developer.android.com/studio/releases/emulator.html install = android-emulator.install @@ -26,13 +26,13 @@ pkgbase = android-emulator depends = nspr depends = nss depends = zlib - source = https://dl.google.com/android/repository/emulator-linux_x64-11672324.zip + source = https://dl.google.com/android/repository/emulator-linux_x64-12414864.zip source = android-emulator.sh source = android-emulator.csh source = package.xml - sha1sums = 28c76739fbca9f2c879eb51f960aeaffacfd2ecd + sha1sums = 41dd213d120f727d8c3840347d234b135793ba10 sha1sums = 80c9b3ffc8865b5f8e55b1ffed36c08ee7a9d8ad sha1sums = e1485ef14463f275005cae43a0a1e43ce52354ca - sha1sums = 86a23f64ab168961b6b609bc1845a93b3ebf4163 + sha1sums = 38ccf71b058bcbe1d13120ab0392ad1895d7e63a pkgname = android-emulator diff --git a/android-emulator/PKGBUILD b/android-emulator/PKGBUILD index 5ad10520e8..2f14e4a3fa 100644 --- a/android-emulator/PKGBUILD +++ b/android-emulator/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Hai Zhang pkgname=android-emulator -pkgver=35.1.4 +pkgver=35.2.10 pkgrel=1 pkgdesc='Google Android Emulator' arch=('x86_64') @@ -12,14 +12,14 @@ depends=('alsa-lib' 'dbus' 'expat' 'gcc-libs' 'glibc' 'libpulse' 'libxdamage' 'libxext' 'libxfixes' 'libxi' 'libxrender' 'libxtst' 'nspr' 'nss' 'zlib') install="${pkgname}.install" -source=('https://dl.google.com/android/repository/emulator-linux_x64-11672324.zip' +source=('https://dl.google.com/android/repository/emulator-linux_x64-12414864.zip' "${pkgname}.sh" "${pkgname}.csh" 'package.xml') -sha1sums=('28c76739fbca9f2c879eb51f960aeaffacfd2ecd' +sha1sums=('41dd213d120f727d8c3840347d234b135793ba10' '80c9b3ffc8865b5f8e55b1ffed36c08ee7a9d8ad' 'e1485ef14463f275005cae43a0a1e43ce52354ca' - '86a23f64ab168961b6b609bc1845a93b3ebf4163') + '38ccf71b058bcbe1d13120ab0392ad1895d7e63a') package() { install -Dm755 "${pkgname}.sh" "${pkgdir}/etc/profile.d/${pkgname}.sh" diff --git a/android-emulator/package.xml b/android-emulator/package.xml index ccbf32dc79..5ccd7e41bc 100644 --- a/android-emulator/package.xml +++ b/android-emulator/package.xml @@ -1,4 +1,4 @@ -Terms and Conditions +Terms and Conditions This is the Android Software Development Kit License Agreement @@ -138,4 +138,4 @@ This is the Android Software Development Kit License Agreement 14.7 The License Agreement, and your relationship with Google under the License Agreement, shall be governed by the laws of the State of California without regard to its conflict of laws provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located within the county of Santa Clara, California to resolve any legal matter arising from the License Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction. -January 16, 20193514Android Emulator \ No newline at end of file +January 16, 201935210Android Emulator \ No newline at end of file diff --git a/android-ndk/.CI/config b/android-ndk/.CI/config index 12e472acff..66bee94775 100644 --- a/android-ndk/.CI/config +++ b/android-ndk/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1723022839 CI_PKGBUILD_SOURCE=aur diff --git a/android-platform/.CI/config b/android-platform/.CI/config index 85a6730e62..66bee94775 100644 --- a/android-platform/.CI/config +++ b/android-platform/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1720478470 CI_PKGBUILD_SOURCE=aur diff --git a/android-sdk-build-tools/.CI/config b/android-sdk-build-tools/.CI/config index ae276c29b8..0dc0729e68 100644 --- a/android-sdk-build-tools/.CI/config +++ b/android-sdk-build-tools/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1718646733 +CI_PACKAGE_BUMP=r34.0.0-2/2 CI_PKGBUILD_SOURCE=aur diff --git a/android-sdk-cmdline-tools-latest/.CI/config b/android-sdk-cmdline-tools-latest/.CI/config index 9779cbacd7..66bee94775 100644 --- a/android-sdk-cmdline-tools-latest/.CI/config +++ b/android-sdk-cmdline-tools-latest/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1725252719 CI_PKGBUILD_SOURCE=aur diff --git a/android-sdk-cmdline-tools-latest/.SRCINFO b/android-sdk-cmdline-tools-latest/.SRCINFO index f67be94a59..bb3923fd92 100644 --- a/android-sdk-cmdline-tools-latest/.SRCINFO +++ b/android-sdk-cmdline-tools-latest/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = android-sdk-cmdline-tools-latest pkgdesc = Android SDK Command-line Tools (latest) - pkgver = 13.0 - pkgrel = 3 + pkgver = 16.0 + pkgrel = 1 url = https://developer.android.com/studio install = android-sdk-cmdline-tools-latest.install arch = x86_64 @@ -12,13 +12,13 @@ pkgbase = android-sdk-cmdline-tools-latest optdepends = android-sdk-platform-tools: adb, aapt, aidl, dexdump and dx optdepends = android-udev: udev rules for Android devices provides = android-sdk - source = https://dl.google.com/android/repository/commandlinetools-linux-11479570_latest.zip + source = https://dl.google.com/android/repository/commandlinetools-linux-12266719_latest.zip source = android-sdk-cmdline-tools-latest.sh source = android-sdk-cmdline-tools-latest.csh source = package.xml - sha1sums = 2e1a11866ce7146dee1456152ff64d6c8158b2c0 + sha1sums = 47e61d3bb57b5e907a74f225a767a767a8b4d7a5 sha1sums = cbcfb844067eb40d7cab029c481f3f94f31f0518 sha1sums = f71b94781633743850c760322dc3b370bc63fcaa - sha1sums = cef8723380ccd54110d3f7058a3cbb054d5ba54f + sha1sums = df030d6a69c9a502c01dae9041de4f6fc582ee5d pkgname = android-sdk-cmdline-tools-latest diff --git a/android-sdk-cmdline-tools-latest/PKGBUILD b/android-sdk-cmdline-tools-latest/PKGBUILD index f47b1f6d9b..46b35e7b9e 100644 --- a/android-sdk-cmdline-tools-latest/PKGBUILD +++ b/android-sdk-cmdline-tools-latest/PKGBUILD @@ -1,8 +1,8 @@ # Maintainer: Hai Zhang pkgname=android-sdk-cmdline-tools-latest -pkgver=13.0 -pkgrel=3 +pkgver=16.0 +pkgrel=1 pkgdesc='Android SDK Command-line Tools (latest)' arch=('x86_64' 'i686') url='https://developer.android.com/studio' @@ -12,14 +12,14 @@ optdepends=('android-sdk-platform-tools: adb, aapt, aidl, dexdump and dx' 'android-udev: udev rules for Android devices') provides=('android-sdk') install="${pkgname}.install" -source=('https://dl.google.com/android/repository/commandlinetools-linux-11479570_latest.zip' +source=('https://dl.google.com/android/repository/commandlinetools-linux-12266719_latest.zip' "${pkgname}.sh" "${pkgname}.csh" 'package.xml') -sha1sums=('2e1a11866ce7146dee1456152ff64d6c8158b2c0' +sha1sums=('47e61d3bb57b5e907a74f225a767a767a8b4d7a5' 'cbcfb844067eb40d7cab029c481f3f94f31f0518' 'f71b94781633743850c760322dc3b370bc63fcaa' - 'cef8723380ccd54110d3f7058a3cbb054d5ba54f') + 'df030d6a69c9a502c01dae9041de4f6fc582ee5d') package() { mkdir -p "${pkgdir}/opt/android-sdk/cmdline-tools/" diff --git a/android-sdk-cmdline-tools-latest/package.xml b/android-sdk-cmdline-tools-latest/package.xml index c3a2a2699b..3e0be07558 100644 --- a/android-sdk-cmdline-tools-latest/package.xml +++ b/android-sdk-cmdline-tools-latest/package.xml @@ -1,4 +1,4 @@ -Terms and Conditions +Terms and Conditions This is the Android Software Development Kit License Agreement @@ -138,4 +138,4 @@ This is the Android Software Development Kit License Agreement 14.7 The License Agreement, and your relationship with Google under the License Agreement, shall be governed by the laws of the State of California without regard to its conflict of laws provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located within the county of Santa Clara, California to resolve any legal matter arising from the License Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction. -January 16, 2019130Android SDK Command-line Tools (latest) \ No newline at end of file +January 16, 2019160Android SDK Command-line Tools (latest) \ No newline at end of file diff --git a/android-sdk-platform-tools/.CI/config b/android-sdk-platform-tools/.CI/config index 0e258f6032..66bee94775 100644 --- a/android-sdk-platform-tools/.CI/config +++ b/android-sdk-platform-tools/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1711155279 CI_PKGBUILD_SOURCE=aur diff --git a/android-sdk-platform-tools/.SRCINFO b/android-sdk-platform-tools/.SRCINFO index 1c652861a6..b2b9915f2d 100644 --- a/android-sdk-platform-tools/.SRCINFO +++ b/android-sdk-platform-tools/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = android-sdk-platform-tools pkgdesc = Platform-Tools for Google Android SDK (adb and fastboot) - pkgver = 35.0.1 + pkgver = 35.0.2 pkgrel = 1 url = http://developer.android.com/sdk/index.html install = android-sdk-platform-tools.install @@ -11,13 +11,13 @@ pkgbase = android-sdk-platform-tools provides = adb provides = android-tools conflicts = adb - source = https://dl.google.com/android/repository/platform-tools_r35.0.1-linux.zip + source = https://dl.google.com/android/repository/platform-tools_r35.0.2-linux.zip source = adb.service source = license.html source = package.xml - sha1sums = 959bf20c19ab1c82861ae4a7e7fdb293f4f1fe75 + sha1sums = f6406982a79d67e40b1ca3cb9e5e2cc783c0f232 sha1sums = 49a40c129199844603afe71fce69c0908e062393 sha1sums = bfb91be7e0b602d765b7a1fcaf0ce1b7e1a93faa - sha1sums = 54427f6c19d99ba090e525d41767e6ea2e61853b + sha1sums = 18ff9550098c8ad30d2ed773652916895aa2a32b pkgname = android-sdk-platform-tools diff --git a/android-sdk-platform-tools/PKGBUILD b/android-sdk-platform-tools/PKGBUILD index 0390bb9c7b..be70b880cb 100644 --- a/android-sdk-platform-tools/PKGBUILD +++ b/android-sdk-platform-tools/PKGBUILD @@ -4,7 +4,7 @@ # Contributor: Christoph Bayer pkgname=android-sdk-platform-tools -pkgver=35.0.1 +pkgver=35.0.2 pkgrel=1 pkgdesc='Platform-Tools for Google Android SDK (adb and fastboot)' arch=('x86_64') @@ -18,10 +18,10 @@ source=("https://dl.google.com/android/repository/platform-tools_r${pkgver}-linu 'adb.service' 'license.html' 'package.xml') -sha1sums=('959bf20c19ab1c82861ae4a7e7fdb293f4f1fe75' +sha1sums=('f6406982a79d67e40b1ca3cb9e5e2cc783c0f232' '49a40c129199844603afe71fce69c0908e062393' 'bfb91be7e0b602d765b7a1fcaf0ce1b7e1a93faa' - '54427f6c19d99ba090e525d41767e6ea2e61853b') + '18ff9550098c8ad30d2ed773652916895aa2a32b') package() { install -Dm644 "${srcdir}/adb.service" "${pkgdir}/usr/lib/systemd/system/adb.service" diff --git a/android-sdk-platform-tools/package.xml b/android-sdk-platform-tools/package.xml index 127968c424..c7a002920e 100644 --- a/android-sdk-platform-tools/package.xml +++ b/android-sdk-platform-tools/package.xml @@ -1,4 +1,4 @@ -Terms and Conditions +Terms and Conditions This is the Android Software Development Kit License Agreement @@ -138,4 +138,4 @@ This is the Android Software Development Kit License Agreement 14.7 The License Agreement, and your relationship with Google under the License Agreement, shall be governed by the laws of the State of California without regard to its conflict of laws provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located within the county of Santa Clara, California to resolve any legal matter arising from the License Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction. -January 16, 20193501Android SDK Platform-Tools \ No newline at end of file +January 16, 20193502Android SDK Platform-Tools \ No newline at end of file diff --git a/android-sdk/.CI/config b/android-sdk/.CI/config index b43924595d..ddc57aca1c 100644 --- a/android-sdk/.CI/config +++ b/android-sdk/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1647982720 +CI_PACKAGE_BUMP=26.1.1-2/2 CI_PKGBUILD_SOURCE=aur diff --git a/android-studio/.CI/config b/android-studio/.CI/config index 22b9dcfe8c..056317d0bb 100644 --- a/android-studio/.CI/config +++ b/android-studio/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1727028018 +CI_PACKAGE_BUMP=2024.2.1.11-1/3 CI_PKGBUILD_SOURCE=aur diff --git a/android-studio/.SRCINFO b/android-studio/.SRCINFO index 325f5ef29c..563f986060 100644 --- a/android-studio/.SRCINFO +++ b/android-studio/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = android-studio pkgdesc = The official Android IDE (Stable branch) - pkgver = 2024.1.2.13 + pkgver = 2024.2.1.11 pkgrel = 1 url = https://developer.android.com/ arch = i686 @@ -15,10 +15,10 @@ pkgbase = android-studio optdepends = libgl: emulator support optdepends = ncurses5-compat-libs: native debugger support options = !strip - source = https://dl.google.com/dl/android/studio/ide-zips/2024.1.2.13/android-studio-2024.1.2.13-linux.tar.gz + source = https://dl.google.com/dl/android/studio/ide-zips/2024.2.1.11/android-studio-2024.2.1.11-linux.tar.gz source = android-studio.desktop source = license.html - sha256sums = 688c655c230f29867a12ae382cc26ec6706bf7f30bd4d97f2f15c8f960cb1b9b + sha256sums = 81f2fa5da72ab6f6afacca4a5327de5191e133ad02706e3ee440dc8658b8cdc3 sha256sums = 73cd2dde1d0f99aaba5baad1e2b91c834edd5db3c817f6fb78868d102360d3c4 sha256sums = 9a7563f7fb88c9a83df6cee9731660dc73a039ab594747e9e774916275b2e23e diff --git a/android-studio/PKGBUILD b/android-studio/PKGBUILD index 03b5f64330..a1b5056ae1 100644 --- a/android-studio/PKGBUILD +++ b/android-studio/PKGBUILD @@ -10,7 +10,7 @@ # Maintainer: Kordian Bruck pkgname=android-studio -pkgver=2024.1.2.13 +pkgver=2024.2.1.11 pkgrel=1 pkgdesc="The official Android IDE (Stable branch)" arch=('i686' 'x86_64') @@ -25,7 +25,7 @@ options=('!strip') source=("https://dl.google.com/dl/android/studio/ide-zips/$pkgver/android-studio-$pkgver-linux.tar.gz" "$pkgname.desktop" "license.html") -sha256sums=('688c655c230f29867a12ae382cc26ec6706bf7f30bd4d97f2f15c8f960cb1b9b' +sha256sums=('81f2fa5da72ab6f6afacca4a5327de5191e133ad02706e3ee440dc8658b8cdc3' '73cd2dde1d0f99aaba5baad1e2b91c834edd5db3c817f6fb78868d102360d3c4' '9a7563f7fb88c9a83df6cee9731660dc73a039ab594747e9e774916275b2e23e') @@ -39,7 +39,7 @@ package() { # Install the application install -d $pkgdir/{opt/$pkgname,usr/bin} cp -a bin lib jbr plugins license LICENSE.txt build.txt product-info.json $pkgdir/opt/$pkgname - ln -s /opt/android-studio/bin/studio.sh $pkgdir/usr/bin/$pkgname + ln -s /opt/android-studio/bin/studio $pkgdir/usr/bin/$pkgname # Copy licenses install -Dm644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt" diff --git a/angryoxide/.CI/config b/angryoxide/.CI/config index 30efa85ba4..66bee94775 100644 --- a/angryoxide/.CI/config +++ b/angryoxide/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1726047821 CI_PKGBUILD_SOURCE=aur diff --git a/ani-cli/.CI/config b/ani-cli/.CI/config index 33b5c2efa1..9a9ca2a54e 100644 --- a/ani-cli/.CI/config +++ b/ani-cli/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1724690131 +CI_PACKAGE_BUMP=4.9-1/1 CI_PKGBUILD_SOURCE=aur diff --git a/anime-games-launcher-bin/.CI/config b/anime-games-launcher-bin/.CI/config index 64d14bafb9..66bee94775 100644 --- a/anime-games-launcher-bin/.CI/config +++ b/anime-games-launcher-bin/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1705791931 CI_PKGBUILD_SOURCE=aur diff --git a/anime4k-git/.CI/config b/anime4k-git/.CI/config index 2827da6607..8471e6a8af 100644 --- a/anime4k-git/.CI/config +++ b/anime4k-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1701831551 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=7684e9586f8dcc738af08a1cdceb024cc184f426 diff --git a/ankama-launcher/.CI/config b/ankama-launcher/.CI/config index bc071bf814..66bee94775 100644 --- a/ankama-launcher/.CI/config +++ b/ankama-launcher/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1725288866 CI_PKGBUILD_SOURCE=aur diff --git a/ankama-launcher/.SRCINFO b/ankama-launcher/.SRCINFO index 05f9e4aa92..86356a1db6 100644 --- a/ankama-launcher/.SRCINFO +++ b/ankama-launcher/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = ankama-launcher pkgdesc = A multi-game portal for all Ankama games. - pkgver = 3.12.20 + pkgver = 3.12.22 pkgrel = 1 url = https://www.ankama.com/en/launcher install = ankama-launcher.install @@ -15,7 +15,7 @@ pkgbase = ankama-launcher options = !strip source = ankama-launcher sha512sums = 0b9d72c460dd22acc0d2d2b0ab312bc609501c8c7fb8eaef2bd93092fd4ac849152b0e9163253066536ea4169079e5bc424bea37ee005c48a2047721142f876b - source_x86_64 = ankama-launcher-3.12.20-x86_64.AppImage::https://launcher.cdn.ankama.com/installers/production/Ankama%20Launcher-Setup-x86_64.AppImage - sha512sums_x86_64 = c160d9f9323134c3a1e024ddfaec08814f33f10a2cd8a67f45d6196e356772071baa1ede5a7b664bd4ed828afbf50389fb8489ca99bac7f65e54efec43a35023 + source_x86_64 = ankama-launcher-3.12.22-x86_64.AppImage::https://launcher.cdn.ankama.com/installers/production/Ankama%20Launcher-Setup-x86_64.AppImage + sha512sums_x86_64 = ce041a2f0379c8271857850a529aa759c9b1cc59cd7a7f118ba4254d15802afa78b2d7e15d61b6ae471ee3a5f02f9312dcd6467cadd779a038b0e40046e9b5d4 pkgname = ankama-launcher diff --git a/ankama-launcher/PKGBUILD b/ankama-launcher/PKGBUILD index c4ccc5009e..fd4b5ced64 100644 --- a/ankama-launcher/PKGBUILD +++ b/ankama-launcher/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Genesis pkgname=ankama-launcher -pkgver=3.12.20 +pkgver=3.12.22 pkgrel=1 pkgdesc='A multi-game portal for all Ankama games.' url='https://www.ankama.com/en/launcher' @@ -17,7 +17,7 @@ options=('!strip') source=('ankama-launcher') source_x86_64=("${pkgname}-${pkgver}-x86_64.AppImage::https://launcher.cdn.ankama.com/installers/production/Ankama%20Launcher-Setup-x86_64.AppImage") sha512sums=('0b9d72c460dd22acc0d2d2b0ab312bc609501c8c7fb8eaef2bd93092fd4ac849152b0e9163253066536ea4169079e5bc424bea37ee005c48a2047721142f876b') -sha512sums_x86_64=('c160d9f9323134c3a1e024ddfaec08814f33f10a2cd8a67f45d6196e356772071baa1ede5a7b664bd4ed828afbf50389fb8489ca99bac7f65e54efec43a35023') +sha512sums_x86_64=('ce041a2f0379c8271857850a529aa759c9b1cc59cd7a7f118ba4254d15802afa78b2d7e15d61b6ae471ee3a5f02f9312dcd6467cadd779a038b0e40046e9b5d4') prepare() { cd "${srcdir}" diff --git a/anki/.CI/config b/anki/.CI/config index c388652e14..d571337056 100644 --- a/anki/.CI/config +++ b/anki/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1722593315 +CI_PACKAGE_BUMP=24.06.3-2/2 CI_PKGBUILD_SOURCE=aur diff --git a/annotator-git/.CI/config b/annotator-git/.CI/config index e3a7ef7bdf..8471e6a8af 100644 --- a/annotator-git/.CI/config +++ b/annotator-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1709406404 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=77c352e334e7f8841be27ec0f1ff3b49df499536 diff --git a/annotator-git/.SRCINFO b/annotator-git/.SRCINFO index 7b13f39080..bf3fea70a1 100644 --- a/annotator-git/.SRCINFO +++ b/annotator-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = annotator-git pkgdesc = Image annotation for Elementary OS - pkgver = 1.2.1.r55.g8c3d3cce + pkgver = 2.0.0.r0.g4c953af pkgrel = 1 url = https://github.com/phase1geo/Annotator arch = aarch64 @@ -9,14 +9,13 @@ pkgbase = annotator-git arch = i686 arch = x86_64 license = GPL-3.0-or-later - makedepends = cmake makedepends = git + makedepends = gtk3 makedepends = meson makedepends = vala depends = granite7 - depends = libhandy depends = libportal-gtk4 - provides = annotator=1.2.1 + provides = annotator=2.0.0 conflicts = annotator source = annotator::git+https://github.com/phase1geo/Annotator.git sha256sums = SKIP diff --git a/annotator-git/PKGBUILD b/annotator-git/PKGBUILD index b1971652a6..9722596bd6 100644 --- a/annotator-git/PKGBUILD +++ b/annotator-git/PKGBUILD @@ -2,7 +2,7 @@ _pkgname="annotator" pkgname="$_pkgname-git" -pkgver=1.2.1.r55.g8c3d3cce +pkgver=2.0.0.r0.g4c953af pkgrel=1 pkgdesc="Image annotation for Elementary OS" url='https://github.com/phase1geo/Annotator' @@ -11,12 +11,11 @@ arch=('aarch64' 'armv6h' 'armv7h' 'i686' 'x86_64') depends=( 'granite7' - 'libhandy' 'libportal-gtk4' ) makedepends=( - 'cmake' 'git' + 'gtk3' 'meson' 'vala' ) @@ -30,20 +29,16 @@ sha256sums=('SKIP') pkgver() { cd "$_pkgsrc" - git describe --long --tags --abbrev=8 --exclude='*[a-zA-Z][a-zA-Z]*' \ + git describe --long --tags --abbrev=7 --exclude='*[a-zA-Z][a-zA-Z]*' \ | sed -E 's/^v//;s/([^-]*-g)/r\1/;s/-/./g' } build() { - cd "$_pkgsrc" - meson build --prefix=/usr - ninja -C build + arch-meson "$_pkgsrc" build + meson compile -C build } package() { - cd "$_pkgsrc" - DESTDIR="$pkgdir" ninja -C build install - - # symlink + meson install -C build --destdir "$pkgdir" ln -sf "com.github.phase1geo.annotator" "$pkgdir/usr/bin/annotator" } diff --git a/anope/.CI/config b/anope/.CI/config index 786ff9915a..66bee94775 100644 --- a/anope/.CI/config +++ b/anope/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1721569507 CI_PKGBUILD_SOURCE=aur diff --git a/anydesk-bin/.CI/config b/anydesk-bin/.CI/config index 489e7586f2..66bee94775 100644 --- a/anydesk-bin/.CI/config +++ b/anydesk-bin/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1727099547 CI_PKGBUILD_SOURCE=aur diff --git a/anydesk-bin/.SRCINFO b/anydesk-bin/.SRCINFO index b085ee903e..1a98c89cf5 100644 --- a/anydesk-bin/.SRCINFO +++ b/anydesk-bin/.SRCINFO @@ -1,15 +1,14 @@ pkgbase = anydesk-bin pkgdesc = The Fast Remote Desktop Application - pkgver = 6.3.3 - pkgrel = 1 + pkgver = 6.4.0 + pkgrel = 3 url = https://anydesk.com arch = x86_64 license = custom depends = fakeroot depends = minizip - depends = gtkglext depends = libglvnd - depends = gtk2 + depends = gtk3 depends = libx11 depends = glibc depends = glib2 @@ -33,7 +32,7 @@ pkgbase = anydesk-bin provides = anydesk conflicts = anydesk options = !strip - source = https://download.anydesk.com/linux/anydesk-6.3.3-amd64.tar.gz - sha256sums = b92a2d9053a9b82d9adac4536a063d285c771765499a0aec9fe7416b9c9c75c9 + source = https://download.anydesk.com/linux/anydesk-6.4.0-amd64.tar.gz + sha256sums = c86cd3a9bbf74904fa57f0dc63c1af4435e2958ad95d5b2640e9eacbfe7e7aff pkgname = anydesk-bin diff --git a/anydesk-bin/PKGBUILD b/anydesk-bin/PKGBUILD index 4419bc2e5c..d6f4334c31 100644 --- a/anydesk-bin/PKGBUILD +++ b/anydesk-bin/PKGBUILD @@ -1,18 +1,18 @@ # Maintainer: Nico pkgname=anydesk-bin -pkgver=6.3.3 -pkgrel=1 +pkgver=6.4.0 +pkgrel=3 pkgdesc="The Fast Remote Desktop Application" arch=('x86_64') url="https://anydesk.com" license=('custom') -depends=('fakeroot' 'minizip' 'gtkglext' 'libglvnd' 'gtk2' 'libx11' 'glibc' 'glib2' 'gdk-pixbuf2' 'libxcb' 'cairo' 'pango' 'libxi' 'libxrender' 'libxrandr' 'libxtst' 'libxext' 'libxfixes' 'libxdamage' 'libxkbfile' 'gcc-libs' 'lsb-release' 'polkit') +depends=('fakeroot' 'minizip' 'libglvnd' 'gtk3' 'libx11' 'glibc' 'glib2' 'gdk-pixbuf2' 'libxcb' 'cairo' 'pango' 'libxi' 'libxrender' 'libxrandr' 'libxtst' 'libxext' 'libxfixes' 'libxdamage' 'libxkbfile' 'gcc-libs' 'lsb-release' 'polkit') optdepends=('libpulse: audio support' 'gnome-themes-extra: adwaita theme') conflicts=('anydesk') provides=('anydesk') options=('!strip') source=("https://download.anydesk.com/linux/anydesk-${pkgver}-amd64.tar.gz") -sha256sums=('b92a2d9053a9b82d9adac4536a063d285c771765499a0aec9fe7416b9c9c75c9') +sha256sums=('c86cd3a9bbf74904fa57f0dc63c1af4435e2958ad95d5b2640e9eacbfe7e7aff') package() { # install binary diff --git a/anyrun-git/.CI/config b/anyrun-git/.CI/config index b45cc0ea07..8471e6a8af 100644 --- a/anyrun-git/.CI/config +++ b/anyrun-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1706087455 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=c6101a31a80b51e32e96f6a77616b609770172e0 diff --git a/app-icon-preview/.CI/config b/app-icon-preview/.CI/config deleted file mode 100644 index 1857a4ad54..0000000000 --- a/app-icon-preview/.CI/config +++ /dev/null @@ -1,3 +0,0 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1713267504 -CI_PKGBUILD_SOURCE=aur diff --git a/app-icon-preview/.CI/info b/app-icon-preview/.CI/info deleted file mode 100644 index e234963b3b..0000000000 --- a/app-icon-preview/.CI/info +++ /dev/null @@ -1,2 +0,0 @@ -REQ_ORIGIN=github/1723 -REQ_REASON=request diff --git a/app-icon-preview/.SRCINFO b/app-icon-preview/.SRCINFO deleted file mode 100644 index 2c36906140..0000000000 --- a/app-icon-preview/.SRCINFO +++ /dev/null @@ -1,28 +0,0 @@ -pkgbase = app-icon-preview - pkgdesc = Tool for designing applications icons - pkgver = 3.4.0 - pkgrel = 1 - url = https://gitlab.gnome.org/World/design/app-icon-preview - arch = x86_64 - arch = aarch64 - license = GPL-3.0-or-later - checkdepends = appstream - makedepends = git - makedepends = meson - makedepends = cargo - depends = glibc - depends = gcc-libs - depends = cairo - depends = dconf - depends = gdk-pixbuf2 - depends = glib2 - depends = graphene - depends = gtk4 - depends = hicolor-icon-theme - depends = libadwaita - depends = libxml2 - depends = pango - source = git+https://gitlab.gnome.org/World/design/app-icon-preview.git#commit=37b35ed3780c1b6d015b91990724d7ffed9b9c57 - b2sums = SKIP - -pkgname = app-icon-preview diff --git a/app-icon-preview/PKGBUILD b/app-icon-preview/PKGBUILD deleted file mode 100644 index 830f93e581..0000000000 --- a/app-icon-preview/PKGBUILD +++ /dev/null @@ -1,32 +0,0 @@ -# Maintainer: tytan652 -# Contributor: Igor Dyatlov -# Contributor: Philip Goto -# Contributor: Caltlgin Stsodaat -# Contributor: Nahuel Gomez Castro - -pkgname=app-icon-preview -pkgver=3.4.0 -pkgrel=1 -pkgdesc='Tool for designing applications icons' -arch=('x86_64' 'aarch64') -url='https://gitlab.gnome.org/World/design/app-icon-preview' -license=(GPL-3.0-or-later) -depends=('glibc' 'gcc-libs' 'cairo' 'dconf' 'gdk-pixbuf2' 'glib2' 'graphene' 'gtk4' 'hicolor-icon-theme' 'libadwaita' 'libxml2' 'pango') -makedepends=('git' 'meson' 'cargo') -checkdepends=('appstream') -_commit=37b35ed3780c1b6d015b91990724d7ffed9b9c57 # tags/3.4.0^0 -source=("git+https://gitlab.gnome.org/World/design/app-icon-preview.git#commit=$_commit") -b2sums=('SKIP') - -build() { - arch-meson $pkgname build - meson compile -C build -} - -check() { - meson test -C build --print-errorlogs || : -} - -package() { - meson install -C build --no-rebuild --destdir "$pkgdir" -} diff --git a/app-outlet-bin/.CI/config b/app-outlet-bin/.CI/config index ea10d57ebf..66bee94775 100644 --- a/app-outlet-bin/.CI/config +++ b/app-outlet-bin/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1683330497 CI_PKGBUILD_SOURCE=aur diff --git a/shattered-pixel-dungeon-git/.CI/config b/app2unit-git/.CI/config similarity index 100% rename from shattered-pixel-dungeon-git/.CI/config rename to app2unit-git/.CI/config diff --git a/elixir-stable/.CI/info b/app2unit-git/.CI/info similarity index 100% rename from elixir-stable/.CI/info rename to app2unit-git/.CI/info diff --git a/app2unit-git/.SRCINFO b/app2unit-git/.SRCINFO new file mode 100644 index 0000000000..cb041e6eeb --- /dev/null +++ b/app2unit-git/.SRCINFO @@ -0,0 +1,17 @@ +pkgbase = app2unit-git + pkgdesc = Utility to launch commands as systemd user units + pkgver = r5.7a88a4a + pkgrel = 2 + url = https://github.com/Vladimir-csp/app2unit + arch = any + license = GPL-3.0-only + makedepends = git + depends = libnotify + depends = sh + depends = systemd + provides = app2unit + conflicts = app2unit + source = app2unit::git+https://github.com/Vladimir-csp/app2unit.git + sha256sums = SKIP + +pkgname = app2unit-git diff --git a/app2unit-git/PKGBUILD b/app2unit-git/PKGBUILD new file mode 100644 index 0000000000..7298242d51 --- /dev/null +++ b/app2unit-git/PKGBUILD @@ -0,0 +1,38 @@ +# Maintainer: + +_pkgname="app2unit" +pkgname="$_pkgname-git" +pkgver=r5.7a88a4a +pkgrel=2 +pkgdesc="Utility to launch commands as systemd user units" +url="https://github.com/Vladimir-csp/app2unit" +license=('GPL-3.0-only') +arch=('any') + +depends=( + libnotify + sh + systemd +) +makedepends=( + git +) + +provides=("$_pkgname") +conflicts=("$_pkgname") + +_pkgsrc="$_pkgname" +source=("$_pkgsrc"::"git+$url.git") +sha256sums=('SKIP') + +pkgver() { + cd "$_pkgsrc" + printf "r%s.%s" \ + "$(git rev-list --count HEAD)" \ + "$(git rev-parse --short=7 HEAD)" +} + +package() { + install -Dm755 "$_pkgsrc/app2unit" -t "$pkgdir/usr/bin/" + install -Dm644 "$_pkgsrc/README.md" -t "$pkgdir/usr/share/doc/$_pkgname/" +} diff --git a/apparmor.d-git/.CI/config b/apparmor.d-git/.CI/config index a8b01ae270..8471e6a8af 100644 --- a/apparmor.d-git/.CI/config +++ b/apparmor.d-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1700756448 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=91fc3adb632105617527a791182243cee3b41033 diff --git a/apparmor.d-git/.SRCINFO b/apparmor.d-git/.SRCINFO index 12b06d8461..586ac66199 100644 --- a/apparmor.d-git/.SRCINFO +++ b/apparmor.d-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = apparmor.d-git pkgdesc = Full set of apparmor profiles - pkgver = 0.1633 + pkgver = 0.2957 pkgrel = 1 url = https://github.com/roddhjav/apparmor.d arch = x86_64 diff --git a/apparmor.d-git/PKGBUILD b/apparmor.d-git/PKGBUILD index 793e9335a5..b7165041f5 100644 --- a/apparmor.d-git/PKGBUILD +++ b/apparmor.d-git/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Alexandre Pujol pkgname=apparmor.d-git -pkgver=0.1633 +pkgver=0.2957 pkgrel=1 pkgdesc="Full set of apparmor profiles" arch=("x86_64") diff --git a/appcsxcad-git/.CI/config b/appcsxcad-git/.CI/config index 8a953f74fd..f27f77e39f 100644 --- a/appcsxcad-git/.CI/config +++ b/appcsxcad-git/.CI/config @@ -1,4 +1,2 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1723370281 +CI_PACKAGE_BUMP=0.2.3.r0.g047ca6d-1/1 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=047ca6de19826ccb60ca24d421060017141ce03e diff --git a/appflowy-bin/.CI/config b/appflowy-bin/.CI/config index ba975b2ad1..66bee94775 100644 --- a/appflowy-bin/.CI/config +++ b/appflowy-bin/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1725970193 CI_PKGBUILD_SOURCE=aur diff --git a/appflowy-bin/.SRCINFO b/appflowy-bin/.SRCINFO index e529a56fe3..b0782a2f37 100644 --- a/appflowy-bin/.SRCINFO +++ b/appflowy-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = appflowy-bin pkgdesc = AppFlowy is an open-source alternative to Notion. You are in charge of your data and customizations. - pkgver = 0.6.9 + pkgver = 0.7.4 pkgrel = 1 url = https://appflowy.io arch = x86_64 @@ -11,9 +11,9 @@ pkgbase = appflowy-bin depends = libnotify provides = appflowy conflicts = appflowy - source = https://github.com/AppFlowy-IO/AppFlowy/raw/0.6.9/LICENSE - source = https://github.com/AppFlowy-IO/AppFlowy/releases/download/0.6.9/AppFlowy-0.6.9-linux-x86_64.deb + source = https://github.com/AppFlowy-IO/AppFlowy/raw/0.7.4/LICENSE + source = https://github.com/AppFlowy-IO/AppFlowy/releases/download/0.7.4/AppFlowy-0.7.4-linux-x86_64.deb b2sums = 6fa2a6adf165a614637f4aae5b323c427b99c2d13f9ab55eefae012dc3dbeebe5957cd2e2497e4c38426088a41dac89f6ac6284af6cf6a4a67a6780f409e8237 - b2sums = 1953e0abd5bb684d7347740133eed7bcc0f3ebef349e683e1535d94ba15dd65b4352ce4af5ea42043c72fce075e089deb3fd862ccbd8eb0bddb443d8949fbfc3 + b2sums = dbd78afa4985379f0af0a6f65bb2a2780877cb4cec9c0930abaf5a6fc6466b184425fd4e7713edde5a88af0b373b7254afe8aff1cc345301a2a67ba35cb3b351 pkgname = appflowy-bin diff --git a/appflowy-bin/PKGBUILD b/appflowy-bin/PKGBUILD index 530886c735..4e134ce20a 100644 --- a/appflowy-bin/PKGBUILD +++ b/appflowy-bin/PKGBUILD @@ -3,7 +3,7 @@ pkgname=appflowy-bin _pkgname=appflowy -pkgver=0.6.9 +pkgver=0.7.4 pkgrel=1 pkgdesc="AppFlowy is an open-source alternative to Notion. You are in charge of your data and customizations." arch=(x86_64) @@ -17,7 +17,7 @@ source=( "$_src/raw/$pkgver/LICENSE" "$_src/releases/download/$pkgver/AppFlowy-$pkgver-linux-$arch.deb") b2sums=('6fa2a6adf165a614637f4aae5b323c427b99c2d13f9ab55eefae012dc3dbeebe5957cd2e2497e4c38426088a41dac89f6ac6284af6cf6a4a67a6780f409e8237' - '1953e0abd5bb684d7347740133eed7bcc0f3ebef349e683e1535d94ba15dd65b4352ce4af5ea42043c72fce075e089deb3fd862ccbd8eb0bddb443d8949fbfc3') + 'dbd78afa4985379f0af0a6f65bb2a2780877cb4cec9c0930abaf5a6fc6466b184425fd4e7713edde5a88af0b373b7254afe8aff1cc345301a2a67ba35cb3b351') package() { cd "$pkgdir" diff --git a/appimagelauncher/.CI/config b/appimagelauncher/.CI/config index fe3f2c6658..24ebe69ab3 100644 --- a/appimagelauncher/.CI/config +++ b/appimagelauncher/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1716643881 +CI_PACKAGE_BUMP=2.2.0-8/1 CI_PKGBUILD_SOURCE=aur diff --git a/appimagepool-appimage/.CI/config b/appimagepool-appimage/.CI/config index 78b1df6f26..66bee94775 100644 --- a/appimagepool-appimage/.CI/config +++ b/appimagepool-appimage/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1677699041 CI_PKGBUILD_SOURCE=aur diff --git a/apple-fonts/.CI/config b/apple-fonts/.CI/config index 01e173bb2e..66bee94775 100644 --- a/apple-fonts/.CI/config +++ b/apple-fonts/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1718443539 CI_PKGBUILD_SOURCE=aur diff --git a/apple-fonts/.SRCINFO b/apple-fonts/.SRCINFO index f3fd901576..fc8e4dc34b 100644 --- a/apple-fonts/.SRCINFO +++ b/apple-fonts/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = apple-fonts pkgdesc = Fonts for Apple platforms, including San Francisco and New York typefaces pkgver = 6 - pkgrel = 1 + pkgrel = 2 url = https://developer.apple.com/fonts/ arch = any license = custom @@ -23,10 +23,10 @@ pkgbase = apple-fonts source = LICENSE.THE-APPLE-SF-COMPACT-FONT source = LICENSE.THE-APPLE-SF-MONO-FONT source = LICENSE.THE-APPLE-NEW-YORK-FONT - sha256sums = 07cc658c102a3a84455ef48e90e2830d679851e6ed32640b27c945d398859d79 - sha256sums = 2f8a0b437e04a70d7fc0b7a153db1743051efcb69e2a31d1c50005eaeda97d3a - sha256sums = 51aaf1d5328eee0e725415c0c7a6248b4eb9af3ff046e6221cfcf38ba7134e5f - sha256sums = c98caa928c76c7d9d0f38da56970aa0375303a9506c887d4ba9ad7f7be4eb0b0 + sha256sums = 21c701d2e5967cf0a2747617eac02eb2e1195fdd3a755628f086aa797eff3bcf + sha256sums = 3e5ada33a4b01fcb13c67541a3a2eab7d07ab406430bffd508fc2bfcf35c9e59 + sha256sums = 6d4a0b78e3aacd06f913f642cead1c7db4af34ed48856d7171a2e0b55d9a7945 + sha256sums = 1c2eedb4526cc0f326f8b7ea978f5a433756476a2c8c56072537608edb88f8f4 sha256sums = 18273048eee4851c929531c954a5c36bbd897404e49c69309a3fc452973c3885 sha256sums = a3c5661529d654e92e7310fc2572eae7f6a165db54be918e2bee35afb39159f1 sha256sums = 079512256688e048803fedeb087eaaf8a3109448f160c6f84c6561f4eb763296 diff --git a/apple-fonts/PKGBUILD b/apple-fonts/PKGBUILD index 735b589b9e..18a8070679 100644 --- a/apple-fonts/PKGBUILD +++ b/apple-fonts/PKGBUILD @@ -2,7 +2,7 @@ # Co-Maintainer: Cp Dong pkgname=apple-fonts pkgver=6 -pkgrel=1 +pkgrel=2 pkgdesc='Fonts for Apple platforms, including San Francisco and New York typefaces' arch=(any) url='https://developer.apple.com/fonts/' @@ -18,10 +18,10 @@ source=('https://devimages-cdn.apple.com/design/resources/download/SF-Pro.dmg' 'LICENSE.THE-APPLE-SF-COMPACT-FONT' 'LICENSE.THE-APPLE-SF-MONO-FONT' 'LICENSE.THE-APPLE-NEW-YORK-FONT') -sha256sums=('07cc658c102a3a84455ef48e90e2830d679851e6ed32640b27c945d398859d79' - '2f8a0b437e04a70d7fc0b7a153db1743051efcb69e2a31d1c50005eaeda97d3a' - '51aaf1d5328eee0e725415c0c7a6248b4eb9af3ff046e6221cfcf38ba7134e5f' - 'c98caa928c76c7d9d0f38da56970aa0375303a9506c887d4ba9ad7f7be4eb0b0' +sha256sums=('21c701d2e5967cf0a2747617eac02eb2e1195fdd3a755628f086aa797eff3bcf' + '3e5ada33a4b01fcb13c67541a3a2eab7d07ab406430bffd508fc2bfcf35c9e59' + '6d4a0b78e3aacd06f913f642cead1c7db4af34ed48856d7171a2e0b55d9a7945' + '1c2eedb4526cc0f326f8b7ea978f5a433756476a2c8c56072537608edb88f8f4' '18273048eee4851c929531c954a5c36bbd897404e49c69309a3fc452973c3885' 'a3c5661529d654e92e7310fc2572eae7f6a165db54be918e2bee35afb39159f1' '079512256688e048803fedeb087eaaf8a3109448f160c6f84c6561f4eb763296' diff --git a/appmenu-glib-translator-git/.CI/config b/appmenu-glib-translator-git/.CI/config index a84d122f05..66bee94775 100644 --- a/appmenu-glib-translator-git/.CI/config +++ b/appmenu-glib-translator-git/.CI/config @@ -1,4 +1 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1719074537 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=89767e372a2fdc67b03c98f11e3c4161a2ef6bcc diff --git a/appmenu-gtk-module-git/.CI/config b/appmenu-gtk-module-git/.CI/config deleted file mode 100644 index 6f81545fe0..0000000000 --- a/appmenu-gtk-module-git/.CI/config +++ /dev/null @@ -1,4 +0,0 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1709068195 -CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=89767e372a2fdc67b03c98f11e3c4161a2ef6bcc diff --git a/appmenu-gtk-module-git/.CI/info b/appmenu-gtk-module-git/.CI/info deleted file mode 100644 index 805dfcdb98..0000000000 --- a/appmenu-gtk-module-git/.CI/info +++ /dev/null @@ -1,2 +0,0 @@ -REQ_ORIGIN=github/1946 -REQ_REASON=request diff --git a/appmenu-gtk-module-git/.SRCINFO b/appmenu-gtk-module-git/.SRCINFO deleted file mode 100644 index abb3b32d36..0000000000 --- a/appmenu-gtk-module-git/.SRCINFO +++ /dev/null @@ -1,22 +0,0 @@ -pkgbase = appmenu-gtk-module-git - pkgdesc = Gtk module for exporting menus - pkgver = 24.02 - pkgrel = 2 - url = https://gitlab.com/vala-panel-project/vala-panel-appmenu - arch = i686 - arch = x86_64 - license = LGPL3 - makedepends = meson - makedepends = gtk3 - makedepends = gtk2 - makedepends = git - depends = gtk3 - depends = gtk2 - provides = appmenu-gtk-module - conflicts = appmenu-gtk-module - source = git+https://gitlab.com/vala-panel-project/vala-panel-appmenu.git - source = 80-appmenu-gtk-module.sh - sha256sums = SKIP - sha256sums = 4c006c4ea7b8556070ad6d35529d3a9e23da8033429e34d1824c25942d969fbc - -pkgname = appmenu-gtk-module-git diff --git a/appmenu-gtk-module-git/80-appmenu-gtk-module.sh b/appmenu-gtk-module-git/80-appmenu-gtk-module.sh deleted file mode 100755 index feef2240e0..0000000000 --- a/appmenu-gtk-module-git/80-appmenu-gtk-module.sh +++ /dev/null @@ -1,12 +0,0 @@ -if [ -n "$GTK_MODULES" ]; then - GTK_MODULES="${GTK_MODULES}:appmenu-gtk-module" -else - GTK_MODULES="appmenu-gtk-module" -fi - -if [ -z "$UBUNTU_MENUPROXY" ]; then - UBUNTU_MENUPROXY=1 -fi - -export GTK_MODULES -export UBUNTU_MENUPROXY diff --git a/appmenu-gtk-module-git/PKGBUILD b/appmenu-gtk-module-git/PKGBUILD deleted file mode 100755 index f94ca909b7..0000000000 --- a/appmenu-gtk-module-git/PKGBUILD +++ /dev/null @@ -1,40 +0,0 @@ -# Maintainer: rilian-la-te - -makedepends=('meson' 'gtk3' 'gtk2' 'git') - -_pkgbase=vala-panel-appmenu -pkgname=appmenu-gtk-module-git -_path=subprojects/appmenu-gtk-module -pkgver=24.02 -pkgrel=2 -pkgdesc="Gtk module for exporting menus" -depends=('gtk3' 'gtk2') -provides=(appmenu-gtk-module) -conflicts=(appmenu-gtk-module) -url="https://gitlab.com/vala-panel-project/vala-panel-appmenu" -arch=('i686' 'x86_64') -license=('LGPL3') - -source=("git+https://gitlab.com/vala-panel-project/${_pkgbase}.git" - 80-appmenu-gtk-module.sh) -sha256sums=('SKIP' - '4c006c4ea7b8556070ad6d35529d3a9e23da8033429e34d1824c25942d969fbc') - -pkgver() { - cd "${srcdir}/${_pkgbase}" - ( - set -o pipefail - git describe --long --tags 2> /dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' \ - || printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" - ) -} - -build() { - meson build "${srcdir}/${_pkgbase}/${_path}" --prefix=/usr --libexecdir=lib - meson compile -C build -} - -package() { - DESTDIR="$pkgdir" meson install -C build --no-rebuild - install -Dm755 80-appmenu-gtk-module.sh -t "$pkgdir"/etc/X11/xinit/xinitrc.d/ -} diff --git a/aptpac/.CI/config b/aptpac/.CI/config index c581b7fa78..66bee94775 100644 --- a/aptpac/.CI/config +++ b/aptpac/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1655387009 CI_PKGBUILD_SOURCE=aur diff --git a/aqemu/.CI/config b/aqemu/.CI/config index bb5b3faca5..76880c750a 100644 --- a/aqemu/.CI/config +++ b/aqemu/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1590565124 +CI_PACKAGE_BUMP=0.9.4-2/5 CI_PKGBUILD_SOURCE=aur diff --git a/aquamarine-git/.CI/PKGBUILD.append b/aquamarine-git/.CI/PKGBUILD.append index be08b5d36f..ac51750f8b 100644 --- a/aquamarine-git/.CI/PKGBUILD.append +++ b/aquamarine-git/.CI/PKGBUILD.append @@ -31,15 +31,3 @@ package() { DESTDIR="$pkgdir" cmake --install build install -Dm644 "$_pkgname"/LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/" } - -_bump_pkgrel() { - local _pkgver_old="${1%-*}" - local _pkgrel_old="${1##*-}" - local _bump="${2}" - - if [[ "$pkgver" == "$_pkgver_old" ]] && [[ "$pkgrel" == "$_pkgrel_old" ]]; then - pkgrel+=".$_bump" - fi -} - -_bump_pkgrel 0.4.1.r0.ge4a1320-1 2 diff --git a/aquamarine-git/.CI/config b/aquamarine-git/.CI/config index 3c304fc39a..8471e6a8af 100644 --- a/aquamarine-git/.CI/config +++ b/aquamarine-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1725828674 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=b82fdaff917582a9d568969e15e61b398c71e990 diff --git a/aquamarine-git/.SRCINFO b/aquamarine-git/.SRCINFO index 64989062ee..4714ab31d3 100644 --- a/aquamarine-git/.SRCINFO +++ b/aquamarine-git/.SRCINFO @@ -1,16 +1,17 @@ pkgbase = aquamarine-git pkgdesc = a very light linux rendering backend library - pkgver = 0.4.0_r213.ga8eb8ae + pkgver = 0.4.1_r220.gb82fdaf pkgrel = 1 - url = https://github.com/hyprwm/aquamarine-git + url = https://github.com/hyprwm/aquamarine arch = x86_64 - arch = aarch64 license = BSD-3-Clause + makedepends = git makedepends = cmake + makedepends = gcc depends = gcc-libs depends = glibc - depends = hyprutils - depends = hyprwayland-scanner + depends = hyprutils-git + depends = hyprwayland-scanner-git depends = libdisplay-info depends = libdrm depends = libglvnd @@ -23,7 +24,8 @@ pkgbase = aquamarine-git depends = systemd-libs depends = wayland depends = wayland-protocols - provides = libaquamarine-git.so + provides = aquamarine + conflicts = aquamarine source = aquamarine::git+https://github.com/hyprwm/aquamarine.git sha256sums = SKIP diff --git a/aquamarine-git/PKGBUILD b/aquamarine-git/PKGBUILD index 13b3fdf552..225b8bf70b 100644 --- a/aquamarine-git/PKGBUILD +++ b/aquamarine-git/PKGBUILD @@ -3,16 +3,16 @@ _pkgname="aquamarine" pkgname="${_pkgname}-git" -pkgver=0.4.0_r213.ga8eb8ae -pkgrel=1 +pkgver=0.4.1_r220.gb82fdaf +pkgrel=2 pkgdesc='a very light linux rendering backend library' arch=(x86_64) url="https://github.com/hyprwm/$_pkgname" license=(BSD-3-Clause) depends=(gcc-libs glibc - hyprutils - hyprwayland-scanner + hyprutils-git + hyprwayland-scanner-git libdisplay-info libdrm libglvnd @@ -25,7 +25,9 @@ depends=(gcc-libs systemd-libs wayland wayland-protocols) -makedepends=('git' 'cmake' 'gcc' 'hyprwayland-scanner-git') +makedepends=('git' 'cmake' 'gcc') +conflicts=($_pkgname) +provides=($_pkgname) source=("${_pkgname}::git+https://github.com/hyprwm/aquamarine.git") sha256sums=('SKIP') diff --git a/aravis/.CI/config b/aravis/.CI/config index de744c2477..66bee94775 100644 --- a/aravis/.CI/config +++ b/aravis/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1725502325 CI_PKGBUILD_SOURCE=aur diff --git a/arc-gtk-theme-git/.CI/config b/arc-gtk-theme-git/.CI/config deleted file mode 100644 index d43ca969e3..0000000000 --- a/arc-gtk-theme-git/.CI/config +++ /dev/null @@ -1,4 +0,0 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1709351423 -CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=b99424e909e722a1f976df09744fd2dadbead24f diff --git a/arc-gtk-theme-git/.CI/info b/arc-gtk-theme-git/.CI/info deleted file mode 100644 index f87cc4da26..0000000000 --- a/arc-gtk-theme-git/.CI/info +++ /dev/null @@ -1,2 +0,0 @@ -REQ_ORIGIN=github/418 -REQ_REASON=request diff --git a/arc-gtk-theme-git/.SRCINFO b/arc-gtk-theme-git/.SRCINFO deleted file mode 100644 index e116d02fee..0000000000 --- a/arc-gtk-theme-git/.SRCINFO +++ /dev/null @@ -1,22 +0,0 @@ -pkgbase = arc-gtk-theme-git - pkgdesc = A flat theme suite with transparent elements. - pkgver = 20220405.r43.ga76102bb - pkgrel = 1 - url = https://github.com/jnsh/arc-theme - arch = any - license = GPL3 - makedepends = meson - makedepends = sassc - makedepends = inkscape - makedepends = git - optdepends = gtk-engine-murrine: GTK2 support - optdepends = gnome-themes-extra: GTK2 support - source = arc-theme::git+https://github.com/jnsh/arc-theme.git - md5sums = SKIP - -pkgname = arc-gtk-theme-git - conflicts = arc-gtk-theme - -pkgname = arc-solid-gtk-theme-git - pkgdesc = A flat theme suite without transparent elements. - conflicts = arc-solid-gtk-theme diff --git a/arc-gtk-theme-git/PKGBUILD b/arc-gtk-theme-git/PKGBUILD deleted file mode 100644 index 3a1283864c..0000000000 --- a/arc-gtk-theme-git/PKGBUILD +++ /dev/null @@ -1,61 +0,0 @@ -# Maintainer: Joonas Henriksson -# Contributor: NicoHood -# Contributor: zach -# Contributor: Gordian Edenhofer - -pkgbase=arc-gtk-theme-git -_pkgname=arc-theme -pkgname=('arc-gtk-theme-git' 'arc-solid-gtk-theme-git') -pkgver=20220405.r43.ga76102bb -pkgrel=1 -pkgdesc="A flat theme suite with transparent elements." -arch=('any') -url="https://github.com/jnsh/arc-theme" -license=('GPL3') -makedepends=('meson' 'sassc' 'inkscape' 'git') -optdepends=('gtk-engine-murrine: GTK2 support' - 'gnome-themes-extra: GTK2 support') -source=("${_pkgname}::git+https://github.com/jnsh/${_pkgname}.git") -md5sums=('SKIP') - -# Latest stable Arch package versions -_cinnamonver=6.0 -_gnomeshellver=45 - -pkgver() { - cd "${_pkgname}" - git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g' -} - -build() { - cd "${_pkgname}" - - meson --prefix=/usr build \ - -Dgnome_shell_gresource=true \ - -Dcinnamon_version="${_cinnamonver}" \ - -Dgnome_shell_version="${_gnomeshellver}" - meson compile -C build - - meson --prefix=/usr build-solid \ - -Dtransparency=false \ - -Dgnome_shell_gresource=true \ - -Dcinnamon_version="${_cinnamonver}" \ - -Dgnome_shell_version="${_gnomeshellver}" - meson compile -C build-solid -} - -package_arc-gtk-theme-git() { - conflicts=('arc-gtk-theme') - - cd "${_pkgname}" - DESTDIR="$pkgdir" meson install -C build -} - -package_arc-solid-gtk-theme-git() { - pkgdesc="A flat theme suite without transparent elements." - conflicts=('arc-solid-gtk-theme') - - cd "${_pkgname}" - DESTDIR="$pkgdir" meson install -C build-solid -} diff --git a/arch-update/.CI/config b/arch-update/.CI/config index 4e90eff798..8e9d064b7c 100644 --- a/arch-update/.CI/config +++ b/arch-update/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1727301109 +CI_PACKAGE_BUMP=3.4.0-1/1 CI_PKGBUILD_SOURCE=aur diff --git a/arch-update/.SRCINFO b/arch-update/.SRCINFO index 16260f4594..fda128609e 100644 --- a/arch-update/.SRCINFO +++ b/arch-update/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = arch-update - pkgdesc = An update notifier/applier that assists you with important pre/post update tasks. - pkgver = 3.1.0 + pkgdesc = An update notifier & applier that assists you with important pre / post update tasks + pkgver = 3.4.1 pkgrel = 1 url = https://github.com/Antiz96/arch-update arch = any @@ -18,15 +18,16 @@ pkgbase = arch-update depends = python-pyqt6 depends = qt6-svg depends = glib2 - optdepends = yay: AUR Packages support optdepends = paru: AUR Packages support + optdepends = yay: AUR Packages support + optdepends = pikaur: AUR Packages support optdepends = flatpak: Flatpak Packages support optdepends = libnotify: Desktop notifications support on new available updates optdepends = vim: Default merge program for pacdiff optdepends = qt6-wayland: Systray applet support on Wayland optdepends = sudo: Privilege elevation optdepends = doas: Privilege elavation - source = arch-update-3.1.0.tar.gz::https://github.com/Antiz96/arch-update/archive/v3.1.0.tar.gz - sha256sums = b06f6db50a75b5ca79d4c2a06c6aaaead32b2d8d51593c3a8542ff0a32557449 + source = arch-update-3.4.1.tar.gz::https://github.com/Antiz96/arch-update/archive/v3.4.1.tar.gz + sha256sums = 39a261fd0cb5e21908750554412f6a4562c4d6d2b5027bc39429f74dd0e756d1 pkgname = arch-update diff --git a/arch-update/PKGBUILD b/arch-update/PKGBUILD index e229a7d2a2..1c564f8465 100644 --- a/arch-update/PKGBUILD +++ b/arch-update/PKGBUILD @@ -1,16 +1,17 @@ # Maintainer: Robin Candau pkgname=arch-update -pkgver=3.1.0 +pkgver=3.4.1 pkgrel=1 -pkgdesc="An update notifier/applier that assists you with important pre/post update tasks." +pkgdesc="An update notifier & applier that assists you with important pre / post update tasks" url="https://github.com/Antiz96/arch-update" arch=('any') license=('GPL-3.0-or-later') depends=('bash' 'pacman-contrib' 'archlinux-contrib' 'curl' 'fakeroot' 'htmlq' 'diffutils' 'hicolor-icon-theme' 'python' 'python-pyqt6' 'qt6-svg' 'glib2') checkdepends=('bats') -optdepends=('yay: AUR Packages support' - 'paru: AUR Packages support' +optdepends=('paru: AUR Packages support' + 'yay: AUR Packages support' + 'pikaur: AUR Packages support' 'flatpak: Flatpak Packages support' 'libnotify: Desktop notifications support on new available updates' 'vim: Default merge program for pacdiff' @@ -18,7 +19,7 @@ optdepends=('yay: AUR Packages support' 'sudo: Privilege elevation' 'doas: Privilege elavation') source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz") -sha256sums=('b06f6db50a75b5ca79d4c2a06c6aaaead32b2d8d51593c3a8542ff0a32557449') +sha256sums=('39a261fd0cb5e21908750554412f6a4562c4d6d2b5027bc39429f74dd0e756d1') check() { cd "${pkgname}-${pkgver}" diff --git a/archiso-git/.CI/config b/archiso-git/.CI/config deleted file mode 100644 index 598a820fc7..0000000000 --- a/archiso-git/.CI/config +++ /dev/null @@ -1,4 +0,0 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1722062000 -CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=691c57fc2e6345d0a2fbfffd7b6689b14bb87f7b diff --git a/archiso-git/.CI/info b/archiso-git/.CI/info deleted file mode 100644 index 85bb157e66..0000000000 --- a/archiso-git/.CI/info +++ /dev/null @@ -1,2 +0,0 @@ -REQ_ORIGIN=github/2517 -REQ_REASON=request diff --git a/archiso-git/.SRCINFO b/archiso-git/.SRCINFO deleted file mode 100644 index 93088a3fce..0000000000 --- a/archiso-git/.SRCINFO +++ /dev/null @@ -1,32 +0,0 @@ -pkgbase = archiso-git - pkgdesc = Tools for creating Arch Linux live and install iso images - pkgver = 79.r0.gfa3aba3 - pkgrel = 1 - url = https://gitlab.archlinux.org/archlinux/archiso - arch = any - license = GPL-3.0-or-later - checkdepends = shellcheck - makedepends = git - makedepends = python-docutils - depends = arch-install-scripts - depends = bash - depends = dosfstools - depends = e2fsprogs - depends = erofs-utils - depends = libarchive - depends = libisoburn - depends = mtools - depends = squashfs-tools - optdepends = edk2-ovmf: for emulating UEFI with run_archiso - optdepends = gnupg: for PGP signature verification of rootfs over PXE - optdepends = grub: for grub support in the ISO - optdepends = openssl: for CMS signature verification of PXE artifacts and rootfs over PXE - optdepends = qemu-desktop: for run_archiso - provides = archiso=79.r0.gfa3aba3 - conflicts = archiso - source = git+https://gitlab.archlinux.org/archlinux/archiso.git?signed - validpgpkeys = 991F6E3F0765CF6295888586139B09DA5BF0D338 - validpgpkeys = BB8E6F1B81CF0BB301D74D1CBF425A01E68B38EF - sha512sums = SKIP - -pkgname = archiso-git diff --git a/archiso-git/PKGBUILD b/archiso-git/PKGBUILD deleted file mode 100644 index 600f3fc13d..0000000000 --- a/archiso-git/PKGBUILD +++ /dev/null @@ -1,47 +0,0 @@ -# Maintainer: David Runge -# Maintainer: nl6720 -# Contributor: Sebastian Lau -# Contributor: Sven-Hendrik Haase -# Contributor: Pierre Schmitz -# Contributor: Gerardo Exequiel Pozzi - -pkgname=archiso-git -pkgver=79.r0.gfa3aba3 -pkgrel=1 -pkgdesc='Tools for creating Arch Linux live and install iso images' -arch=('any') -url='https://gitlab.archlinux.org/archlinux/archiso' -license=('GPL-3.0-or-later') -depends=('arch-install-scripts' 'bash' 'dosfstools' 'e2fsprogs' 'erofs-utils' 'libarchive' 'libisoburn' 'mtools' 'squashfs-tools') -makedepends=('git' 'python-docutils') -checkdepends=('shellcheck') -optdepends=( - 'edk2-ovmf: for emulating UEFI with run_archiso' - 'gnupg: for PGP signature verification of rootfs over PXE' - 'grub: for grub support in the ISO' - 'openssl: for CMS signature verification of PXE artifacts and rootfs over PXE' - 'qemu-desktop: for run_archiso' -) -conflicts=("${pkgname%-git}") -provides=("${pkgname%-git}=${pkgver}") -source=("git+https://gitlab.archlinux.org/archlinux/${pkgname%-git}.git?signed") -sha512sums=('SKIP') -validpgpkeys=( - '991F6E3F0765CF6295888586139B09DA5BF0D338' # David Runge - 'BB8E6F1B81CF0BB301D74D1CBF425A01E68B38EF' # nl6720 -) - -pkgver() { - cd "${pkgname%-git}" - git describe --long --abbrev=7 | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' -} - -check() { - cd "${pkgname%-git}" - make -k check -} - -package() { - cd "${pkgname%-git}" - make DESTDIR="${pkgdir}/" PREFIX='/usr' install -} diff --git a/archlinux-java-run/.CI/config b/archlinux-java-run/.CI/config new file mode 100644 index 0000000000..66bee94775 --- /dev/null +++ b/archlinux-java-run/.CI/config @@ -0,0 +1 @@ +CI_PKGBUILD_SOURCE=aur diff --git a/archlinux-java-run/.CI/info b/archlinux-java-run/.CI/info new file mode 100644 index 0000000000..b3ba8c9459 --- /dev/null +++ b/archlinux-java-run/.CI/info @@ -0,0 +1,2 @@ +REQ_ORIGIN=github/1920 +REQ_REASON=depends diff --git a/archlinux-java-run/.SRCINFO b/archlinux-java-run/.SRCINFO new file mode 100644 index 0000000000..812720a967 --- /dev/null +++ b/archlinux-java-run/.SRCINFO @@ -0,0 +1,13 @@ +pkgbase = archlinux-java-run + pkgdesc = Java Application Launcher for Arch Linux + pkgver = 10 + pkgrel = 1 + url = https://github.com/michaellass/archlinux-java-run + arch = any + license = MIT + depends = bash + depends = java-runtime-common + source = https://github.com/michaellass/archlinux-java-run/archive/v10.tar.gz + sha256sums = 2720310cde4ed064c4387d52d381079479bc8b7390b7cf3333239c4552ae6f80 + +pkgname = archlinux-java-run diff --git a/archlinux-java-run/PKGBUILD b/archlinux-java-run/PKGBUILD new file mode 100644 index 0000000000..57fb5f5c9f --- /dev/null +++ b/archlinux-java-run/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer: Michael Lass + +# This PKGBUILD is maintained on github: +# https://github.com/michaellass/AUR + +pkgname=archlinux-java-run +pkgver=10 +pkgrel=1 +pkgdesc="Java Application Launcher for Arch Linux" +arch=(any) +url="https://github.com/michaellass/archlinux-java-run" +license=('MIT') +depends=(bash java-runtime-common) +source=(https://github.com/michaellass/${pkgname}/archive/v${pkgver}.tar.gz) +sha256sums=('2720310cde4ed064c4387d52d381079479bc8b7390b7cf3333239c4552ae6f80') + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make PREFIX=/usr DESTDIR="${pkgdir}" install +} diff --git a/ares-emu-avx-git/.CI/config b/ares-emu-avx-git/.CI/config index a0d467ed81..8471e6a8af 100644 --- a/ares-emu-avx-git/.CI/config +++ b/ares-emu-avx-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1717970949 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=025fc6450a2cf259afe7281944f0c0190ebd6479 diff --git a/ares-emu-git/.CI/config b/ares-emu-git/.CI/config index e87675a351..92b2945ef5 100644 --- a/ares-emu-git/.CI/config +++ b/ares-emu-git/.CI/config @@ -1,3 +1,2 @@ BUILDER_CACHE_SOURCES=true CI_PKGBUILD_SOURCE=https://aur.archlinux.org/ares-emu-avx-git.git -CI_GIT_COMMIT=025fc6450a2cf259afe7281944f0c0190ebd6479 diff --git a/arkenfox-user.js-git/.CI/config b/arkenfox-user.js-git/.CI/config index 1c70b5cc69..8471e6a8af 100644 --- a/arkenfox-user.js-git/.CI/config +++ b/arkenfox-user.js-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1724679853 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=f906f7f3b41fe3f6aaa744980431f4fdcd086379 diff --git a/arp-scan-git/.CI/config b/arp-scan-git/.CI/config index 83320d0623..8471e6a8af 100644 --- a/arp-scan-git/.CI/config +++ b/arp-scan-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1600104055 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=89ae57e1e0f059fdb066f08f10d78852839f5ab3 diff --git a/arrpc/.CI/config b/arrpc/.CI/config index d57ca7584d..fab0ec9c13 100644 --- a/arrpc/.CI/config +++ b/arrpc/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1725091004 CI_PKGBUILD_SOURCE=aur +BUILDER_CLASS=catbuilder diff --git a/arrpc/.SRCINFO b/arrpc/.SRCINFO index 163e368b75..097ec8f63f 100644 --- a/arrpc/.SRCINFO +++ b/arrpc/.SRCINFO @@ -1,15 +1,13 @@ pkgbase = arrpc pkgdesc = Open Discord RPC server for atypical setups pkgver = 3.5.0 - pkgrel = 1 + pkgrel = 2 url = https://arrpc.openasar.dev/ install = arrpc.install - arch = x86_64 - arch = x86_64_v3 + arch = any license = MIT makedepends = npm - depends = glibc - depends = gcc-libs + depends = nodejs options = !strip source = arrpc-3.5.0.tar.gz::https://github.com/OpenAsar/arrpc/archive/refs/tags/3.5.0.tar.gz source = arrpc.service diff --git a/arrpc/PKGBUILD b/arrpc/PKGBUILD index f70c7ec2fe..59114f6643 100644 --- a/arrpc/PKGBUILD +++ b/arrpc/PKGBUILD @@ -2,12 +2,12 @@ # Contributor: Scarlett Veldt pkgname=arrpc pkgver=3.5.0 -pkgrel=1 +pkgrel=2 pkgdesc="Open Discord RPC server for atypical setups" -arch=('x86_64' 'x86_64_v3') +arch=('any') url="https://arrpc.openasar.dev/" license=('MIT') -depends=("glibc" "gcc-libs") +depends=('nodejs') makedepends=("npm") # for some reason stripping the binary breaks it options=(!strip) diff --git a/art-rawconverter/.SRCINFO b/art-rawconverter/.SRCINFO index c21cf6fe78..b32e70b76b 100644 --- a/art-rawconverter/.SRCINFO +++ b/art-rawconverter/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = art-rawconverter pkgdesc = Raw image converter forked from RawTherapee with ease of use in mind - pkgver = 1.23 - pkgrel = 1 + pkgver = 1.24.1 + pkgrel = 2 url = https://bitbucket.org/agriggio/art arch = x86_64 license = GPL-3.0-or-later @@ -25,11 +25,10 @@ pkgbase = art-rawconverter depends = mimalloc depends = opencolorio depends = openmp - optdepends = chaotic-interfere: chaotic-aur interference tracker optdepends = art-rawconverter-imageio: add support for additional image formats optdepends = lcms2-ff: lcms2 with fast-float plugin for improved export speed optdepends = perl-image-exiftool: metadata support for CR3 images - source = art-rawconverter::git+https://bitbucket.org/agriggio/art.git#tag=1.23 + source = art-rawconverter::git+https://bitbucket.org/agriggio/art.git#tag=1.24.1 sha256sums = SKIP pkgname = art-rawconverter diff --git a/art-rawconverter/PKGBUILD b/art-rawconverter/PKGBUILD index a799c18a29..4fee9234cb 100644 --- a/art-rawconverter/PKGBUILD +++ b/art-rawconverter/PKGBUILD @@ -1,4 +1,4 @@ -# Maintainer: +# Maintainer: aur.chaotic.cx ## options if [ -z "$_srcinfo" ] && [ -z "$_pkgver" ]; then @@ -17,8 +17,8 @@ unset _pkgtype ## basic info _pkgname="art-rawconverter" pkgname="$_pkgname${_pkgtype:-}" -pkgver=1.23 -pkgrel=1 +pkgver=1.24.1 +pkgrel=2 pkgdesc="Raw image converter forked from RawTherapee with ease of use in mind" url="https://bitbucket.org/agriggio/art" license=('GPL-3.0-or-later') @@ -46,7 +46,6 @@ makedepends=( 'pkgconf' ) optdepends=( - 'chaotic-interfere: chaotic-aur interference tracker' 'art-rawconverter-imageio: add support for additional image formats' 'lcms2-ff: lcms2 with fast-float plugin for improved export speed' 'perl-image-exiftool: metadata support for CR3 images' diff --git a/artemis-manual/.CI/config b/artemis-manual/.CI/config index bc598d8e7f..66bee94775 100644 --- a/artemis-manual/.CI/config +++ b/artemis-manual/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1718727255 CI_PKGBUILD_SOURCE=aur diff --git a/asbru-cm-git/.CI/config b/asbru-cm-git/.CI/config index b9dc2e7b93..8471e6a8af 100644 --- a/asbru-cm-git/.CI/config +++ b/asbru-cm-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1653338442 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=f428765d9e0d46375b7f2bfde77b6ea1845eaf0b diff --git a/asciinema-agg/.CI/config b/asciinema-agg/.CI/config index 0657826754..66bee94775 100644 --- a/asciinema-agg/.CI/config +++ b/asciinema-agg/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1720689545 CI_PKGBUILD_SOURCE=aur diff --git a/asciinema-agg/.SRCINFO b/asciinema-agg/.SRCINFO index 95f5ab3f83..54dc83bd0d 100644 --- a/asciinema-agg/.SRCINFO +++ b/asciinema-agg/.SRCINFO @@ -1,14 +1,14 @@ pkgbase = asciinema-agg pkgdesc = asciinema gif generator - pkgver = 1.4.3 - pkgrel = 2 + pkgver = 1.5.0 + pkgrel = 1 url = https://github.com/asciinema/agg arch = x86_64 license = Apache-2.0 makedepends = cargo depends = gcc-libs options = !lto - source = https://github.com/asciinema/agg/archive/v1.4.3/agg-1.4.3.tar.gz - sha256sums = 1089e47a8e6ca7f147f74b2347e6b29d94311530a8b817c2f30f19744e4549c1 + source = https://github.com/asciinema/agg/archive/v1.5.0/agg-1.5.0.tar.gz + sha256sums = 4bfbd0cc02f416ce868f0209b659a87e333de8f0b5edad19810e152ac6e7fc55 pkgname = asciinema-agg diff --git a/asciinema-agg/PKGBUILD b/asciinema-agg/PKGBUILD index f9011aafb7..3131f6e8a9 100644 --- a/asciinema-agg/PKGBUILD +++ b/asciinema-agg/PKGBUILD @@ -1,8 +1,8 @@ # Maintainer: Mario Finelli pkgname=asciinema-agg -pkgver=1.4.3 -pkgrel=2 +pkgver=1.5.0 +pkgrel=1 pkgdesc="asciinema gif generator" arch=(x86_64) url=https://github.com/asciinema/agg @@ -11,7 +11,7 @@ depends=(gcc-libs) makedepends=(cargo) options=(!lto) source=(https://github.com/asciinema/agg/archive/v$pkgver/agg-$pkgver.tar.gz) -sha256sums=('1089e47a8e6ca7f147f74b2347e6b29d94311530a8b817c2f30f19744e4549c1') +sha256sums=('4bfbd0cc02f416ce868f0209b659a87e333de8f0b5edad19810e152ac6e7fc55') build() { cd agg-$pkgver diff --git a/asdf-vm/.CI/config b/asdf-vm/.CI/config index 87ea538c8c..34ed291aea 100644 --- a/asdf-vm/.CI/config +++ b/asdf-vm/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1724098187 +CI_PACKAGE_BUMP=0.14.1-1/1 CI_PKGBUILD_SOURCE=aur diff --git a/asf/.CI/config b/asf/.CI/config index a0af1bba6f..66bee94775 100644 --- a/asf/.CI/config +++ b/asf/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1725207623 CI_PKGBUILD_SOURCE=aur diff --git a/asf/.SRCINFO b/asf/.SRCINFO index e705d3e3f6..07082d9a1f 100644 --- a/asf/.SRCINFO +++ b/asf/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = asf - pkgver = 6.0.6.4 + pkgver = 6.0.8.7 pkgrel = 1 url = https://github.com/JustArchiNET/ArchiSteamFarm install = install @@ -11,7 +11,7 @@ pkgbase = asf makedepends = git makedepends = dotnet-sdk>=8.0 makedepends = aspnet-runtime>=8.0 - source = asf::git+https://github.com/JustArchiNET/ArchiSteamFarm.git#tag=6.0.6.4?signed + source = asf::git+https://github.com/JustArchiNET/ArchiSteamFarm.git#tag=6.0.8.7?signed source = service.patch source = asf.env source = ASF.json diff --git a/asf/PKGBUILD b/asf/PKGBUILD index 0222c4b3d1..a22da0e39a 100644 --- a/asf/PKGBUILD +++ b/asf/PKGBUILD @@ -9,7 +9,7 @@ pkgname=('asf-plugin-steamtokendumper' 'asf-plugin-periodicgc' 'asf-plugin-signinwithsteam' 'asf') -pkgver="6.0.6.4" +pkgver="6.0.8.7" pkgrel=1 arch=('x86_64' 'armv7h' 'aarch64') url="https://github.com/JustArchiNET/ArchiSteamFarm" diff --git a/asf/changelog b/asf/changelog index e550e5e796..86b00da9a2 100644 --- a/asf/changelog +++ b/asf/changelog @@ -1,3 +1,26 @@ +2024-10-29 Gilrain + * 6.0.8.7-1: + Added new redeempoints command with its rp alias (@JustArchi #3299). + Added AutoUnpackBoosterPacks to FarmingPreferences (@JustArchi #3304). + ASF will no longer escape certain characters in JSON files upon migration (@Abrynos #3302 #3301). + Removed deprecated in the previous release functionalities (@JustArchi). + Fixed stale cache of CM servers, which previously made connection with Steam servers harder than usual (@JustArchi). + Fixed some rare race conditions in bot start/stop logic (@JustArchi). + Fixed ASF getting stuck for 30 seconds during processing update from ASF API (@JustArchi). + Latest ASF-ui with new features, improvements and bugfixes (@MrBurrBurr). + Updated localization provided by our community (@JustArchi-ArchiBot). + Usual amount of other core improvements, optimizations and bugfixes (@JustArchi). +2024-09-28 Gilrain + * 6.0.7.5-1: + Added new loot& and transfer& commands (@dm1tz #3287). + Added new bgrclear command (@JustArchi #3294). + Renamed Experimental update channel to PreRelease. This change affects only update command under the hood (@JustArchi). + Improved STM trades processing in a way it's no longer possible to accept together-conflicting trade offers (@JustArchi #3291). + Fixed regression introduced around V6.0.6.1 which caused ASF to sometimes not reconnect the bots after heartbeat failure (@JustArchi). + ASF now takes into account OnlyAllowRunInCountries extended property, which effectively fixes cards farming process sometimes getting stuck at impossible to play run-locked games. Since this requires cache update, it might take up to a week for old data to get invalidated - you can optionally speed up that process by manually deleting ASF.db, although best if you can just wait it out (@JustArchi). + Latest ASF-ui with new features, improvements and bugfixes (@MrBurrBurr). + Updated localization provided by our community (@JustArchi-ArchiBot). + Usual amount of other core improvements, optimizations and bugfixes (@JustArchi). 2024-08-26 Gilrain * 6.0.6.4-1: Added OnlinePreferences bot config property, which right now allows you to enable Steam Deck presence (@JustArchi #3261). diff --git a/ast-firmware/.CI/config b/ast-firmware/.CI/config index ac6484118b..66bee94775 100644 --- a/ast-firmware/.CI/config +++ b/ast-firmware/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1671726435 CI_PKGBUILD_SOURCE=aur diff --git a/asus-fan-dkms-git/.CI/config b/asus-fan-dkms-git/.CI/config index ca68f555b5..66bee94775 100644 --- a/asus-fan-dkms-git/.CI/config +++ b/asus-fan-dkms-git/.CI/config @@ -1,4 +1 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1500672411 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=955389110c59c72db9673df429dc296a246d4880 diff --git a/asus-kbd-backlight/.CI/config b/asus-kbd-backlight/.CI/config index 5aadd12cc5..66bee94775 100644 --- a/asus-kbd-backlight/.CI/config +++ b/asus-kbd-backlight/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1440877644 CI_PKGBUILD_SOURCE=aur diff --git a/asus-n551-hda-fix/.CI/config b/asus-n551-hda-fix/.CI/config index bbe20630bf..66bee94775 100644 --- a/asus-n551-hda-fix/.CI/config +++ b/asus-n551-hda-fix/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1435418901 CI_PKGBUILD_SOURCE=aur diff --git a/asusctl/.CI/config b/asusctl/.CI/config index 72177999f5..8471e6a8af 100644 --- a/asusctl/.CI/config +++ b/asusctl/.CI/config @@ -1,3 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1725140061 CI_PKGBUILD_SOURCE=aur diff --git a/athenaeum-git/.CI/config b/athenaeum-git/.CI/config index 132042a92e..dc36b3c199 100644 --- a/athenaeum-git/.CI/config +++ b/athenaeum-git/.CI/config @@ -1,4 +1,3 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1683997575 +CI_PACKAGE_BUMP=2.3.3.r0.g8e917a5-1/1 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=8e917a51cf54701cd87f7c4df034e8f8d8a8b096 diff --git a/atlauncher-bin/.CI/config b/atlauncher-bin/.CI/config index 651f06ee00..66bee94775 100644 --- a/atlauncher-bin/.CI/config +++ b/atlauncher-bin/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1725670754 CI_PKGBUILD_SOURCE=aur diff --git a/atlauncher-bin/.SRCINFO b/atlauncher-bin/.SRCINFO index addb53ded6..06ae518447 100644 --- a/atlauncher-bin/.SRCINFO +++ b/atlauncher-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = atlauncher-bin pkgdesc = A launcher for Minecraft which integrates multiple different modpacks to allow you to download and install modpacks easily and quickly. - pkgver = 3.4.37.3 + pkgver = 3.4.38.0 pkgrel = 1 url = https://atlauncher.com/ arch = any @@ -10,13 +10,13 @@ pkgbase = atlauncher-bin depends = openal provides = atlauncher conflicts = atlauncher - noextract = atlauncher-3.4.37.3-1.jar - source = atlauncher-3.4.37.3-1.jar::https://github.com/ATLauncher/ATLauncher/releases/download/v3.4.37.3/ATLauncher-3.4.37.3.jar + noextract = atlauncher-3.4.38.0-1.jar + source = atlauncher-3.4.38.0-1.jar::https://github.com/ATLauncher/ATLauncher/releases/download/v3.4.38.0/ATLauncher-3.4.38.0.jar source = atlauncher source = atlauncher.desktop source = atlauncher.png source = atlauncher.svg - sha256sums = 42f9591873dda6bd3945004bce6b8adf6fe24f5d60c4548a238d990ce73362e1 + sha256sums = 2f8c2e3e34a8001f1331899410e1996a372ba1e589f3ac64e00ddb928efe02f9 sha256sums = 9cfb56200cc85f78df173f6775ae045b43c467b4e6cce1dcc0c50d42a90b42d5 sha256sums = 2e7eed9ae7174e0c94ff0a71d3735b73b6742f911033dccd6b52853d511d766c sha256sums = dd370888c78fdb652d656d97e4a7f7e8c90aa8d75d4f4d01d0bd32e95c327c47 diff --git a/atlauncher-bin/PKGBUILD b/atlauncher-bin/PKGBUILD index 5c25ac2d3f..41660a0e11 100644 --- a/atlauncher-bin/PKGBUILD +++ b/atlauncher-bin/PKGBUILD @@ -5,7 +5,7 @@ pkgname=atlauncher-bin _upstreamname=ATLauncher pkgrel=1 -pkgver=3.4.37.3 +pkgver=3.4.38.0 pkgdesc="A launcher for Minecraft which integrates multiple different modpacks to allow you to download and install modpacks easily and quickly." arch=('any') @@ -23,7 +23,7 @@ source=("atlauncher-${pkgver}-${pkgrel}.jar::https://github.com/ATLauncher/ATLau "atlauncher.svg") noextract=("atlauncher-${pkgver}-${pkgrel}.jar") -sha256sums=('42f9591873dda6bd3945004bce6b8adf6fe24f5d60c4548a238d990ce73362e1' +sha256sums=('2f8c2e3e34a8001f1331899410e1996a372ba1e589f3ac64e00ddb928efe02f9' '9cfb56200cc85f78df173f6775ae045b43c467b4e6cce1dcc0c50d42a90b42d5' '2e7eed9ae7174e0c94ff0a71d3735b73b6742f911033dccd6b52853d511d766c' 'dd370888c78fdb652d656d97e4a7f7e8c90aa8d75d4f4d01d0bd32e95c327c47' diff --git a/atomicwallet/.CI/config b/atomicwallet/.CI/config index 54930229bd..66bee94775 100644 --- a/atomicwallet/.CI/config +++ b/atomicwallet/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1727212161 CI_PKGBUILD_SOURCE=aur diff --git a/audio-recorder/.CI/config b/audio-recorder/.CI/config index 19120c64e5..66bee94775 100644 --- a/audio-recorder/.CI/config +++ b/audio-recorder/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1713971921 CI_PKGBUILD_SOURCE=aur diff --git a/audio-sharing/.CI/config b/audio-sharing/.CI/config deleted file mode 100644 index ab1ec18f12..0000000000 --- a/audio-sharing/.CI/config +++ /dev/null @@ -1,2 +0,0 @@ -CI_PKGBUILD_TIMESTAMP=1722012765 -CI_PKGBUILD_SOURCE=aur diff --git a/audio-sharing/.CI/info b/audio-sharing/.CI/info deleted file mode 100644 index 79ee391332..0000000000 --- a/audio-sharing/.CI/info +++ /dev/null @@ -1,2 +0,0 @@ -REQ_ORIGIN=github/1977 -REQ_REASON=request diff --git a/audio-sharing/.SRCINFO b/audio-sharing/.SRCINFO deleted file mode 100644 index 05fafd4372..0000000000 --- a/audio-sharing/.SRCINFO +++ /dev/null @@ -1,17 +0,0 @@ -pkgbase = audio-sharing - pkgdesc = Share your computer audio - pkgver = 0.2.4 - pkgrel = 1 - url = https://apps.gnome.org/AudioSharing - arch = x86_64 - arch = aarch64 - license = GPL-3.0-or-later - makedepends = cargo - makedepends = git - makedepends = meson - depends = gst-rtsp-server - depends = libadwaita - source = https://gitlab.gnome.org/World/AudioSharing/-/archive/0.2.4/AudioSharing-0.2.4.tar.gz - sha256sums = 9d8eb56a92addc866c5ef6fe257e664f19cbf0282894cdb1163e6b70db83dc9d - -pkgname = audio-sharing diff --git a/audio-sharing/PKGBUILD b/audio-sharing/PKGBUILD deleted file mode 100644 index bc963237f6..0000000000 --- a/audio-sharing/PKGBUILD +++ /dev/null @@ -1,33 +0,0 @@ -# Maintainer: Mark Wagie -# Contributor: Philip Goto -pkgname=audio-sharing -pkgver=0.2.4 -pkgrel=1 -pkgdesc="Share your computer audio" -arch=('x86_64' 'aarch64') -url="https://apps.gnome.org/AudioSharing" -license=('GPL-3.0-or-later') -depends=('gst-rtsp-server' 'libadwaita') -makedepends=('cargo' 'git' 'meson') -source=("https://gitlab.gnome.org/World/AudioSharing/-/archive/$pkgver/AudioSharing-$pkgver.tar.gz") -sha256sums=('9d8eb56a92addc866c5ef6fe257e664f19cbf0282894cdb1163e6b70db83dc9d') - -prepare() { - cd "AudioSharing-$pkgver" - export RUSTUP_TOOLCHAIN=stable - cargo fetch --target "$CARCH-unknown-linux-gnu" -} - -build() { - export RUSTUP_TOOLCHAIN=stable - arch-meson "AudioSharing-$pkgver" build - meson compile -C build -} - -check() { - meson test -C build --print-errorlogs -} - -package() { - meson install -C build --destdir "$pkgdir" -} diff --git a/audiorelay/.CI/config b/audiorelay/.CI/config index 825b293043..66bee94775 100644 --- a/audiorelay/.CI/config +++ b/audiorelay/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1707645363 CI_PKGBUILD_SOURCE=aur diff --git a/audiorelay/.SRCINFO b/audiorelay/.SRCINFO index 4c4dbcba3a..e2fae35e85 100644 --- a/audiorelay/.SRCINFO +++ b/audiorelay/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = audiorelay pkgdesc = Stream your PC audio to your phone pkgver = 0.27.5 - pkgrel = 5 + pkgrel = 6 url = https://audiorelay.net install = audiorelay.install arch = x86_64 @@ -23,6 +23,6 @@ pkgbase = audiorelay source = audiorelay.desktop sha256sums = c4854139a4bd21e7bf7881a7b6e21ebc4cfe823286783d4fb9ad4bf4edf8e8c7 sha256sums = 4fd8aece2656e8bd8baabcc24b9b15325efeba07d45d840f96d1fb2d72c31762 - sha256sums = 5c3ffedcae814a0e83f06445b13db3944ac9970bd44226b02587a7bacf6e479f + sha256sums = 069110739a70e19412280315eed84ccca59702ed3791daeda3cb9aa45f8bf030 pkgname = audiorelay diff --git a/audiorelay/PKGBUILD b/audiorelay/PKGBUILD index 6e55ff47d9..7da671c170 100644 --- a/audiorelay/PKGBUILD +++ b/audiorelay/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Mark Wagie pkgname=audiorelay pkgver=0.27.5 -pkgrel=5 +pkgrel=6 _jre_ver=17 pkgdesc="Stream your PC audio to your phone" arch=('x86_64') @@ -15,7 +15,7 @@ install='audiorelay.install' _install_path="/usr/share/java/audiorelay" sha256sums=('c4854139a4bd21e7bf7881a7b6e21ebc4cfe823286783d4fb9ad4bf4edf8e8c7' '4fd8aece2656e8bd8baabcc24b9b15325efeba07d45d840f96d1fb2d72c31762' - '5c3ffedcae814a0e83f06445b13db3944ac9970bd44226b02587a7bacf6e479f') + '069110739a70e19412280315eed84ccca59702ed3791daeda3cb9aa45f8bf030') package() { # install assets diff --git a/audiorelay/audiorelay.desktop b/audiorelay/audiorelay.desktop index 56548040b2..c4c98db5af 100644 --- a/audiorelay/audiorelay.desktop +++ b/audiorelay/audiorelay.desktop @@ -9,4 +9,4 @@ Icon=audiorelay Terminal=false StartupNotify=true Categories=Audio;AudioVideo;Utility -StartupWMClass=com-azefsw-audioconnect-desktop-app-mainkt +StartupWMClass=com-azefsw-audioconnect-desktop-app-MainKt diff --git a/audiowide-font/.CI/config b/audiowide-font/.CI/config index cc9bb606c2..66bee94775 100644 --- a/audiowide-font/.CI/config +++ b/audiowide-font/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1660469992 CI_PKGBUILD_SOURCE=aur diff --git a/aura-git/.CI/config b/aura-git/.CI/config index c6a6862628..63af03221f 100644 --- a/aura-git/.CI/config +++ b/aura-git/.CI/config @@ -1,4 +1,2 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1726354816 +CI_PACKAGE_BUMP=4.0.8.r0.g446c12e-1/1 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=cdebca1f48254ebb8286d8e38591bf644282866f diff --git a/aura-git/.SRCINFO b/aura-git/.SRCINFO index e21feec5c5..f494d3536d 100644 --- a/aura-git/.SRCINFO +++ b/aura-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = aura-git pkgdesc = A package manager for Arch Linux and its AUR - pkgver = 4.0.7.r0.gcdebca1 + pkgver = 4.0.8.r0.g446c12e pkgrel = 1 url = https://github.com/fosskers/aura arch = x86_64 diff --git a/aura-git/PKGBUILD b/aura-git/PKGBUILD index 3556304e4b..971bbfe87d 100644 --- a/aura-git/PKGBUILD +++ b/aura-git/PKGBUILD @@ -3,7 +3,7 @@ # Maintainer: Colin Woodbury pkgname="aura-git" -pkgver=4.0.7.r0.gcdebca1 +pkgver=4.0.8.r0.g446c12e pkgrel=1 pkgdesc="A package manager for Arch Linux and its AUR" arch=("x86_64") diff --git a/aura/.CI/config b/aura/.CI/config index f62c736ca1..38421f15b6 100644 --- a/aura/.CI/config +++ b/aura/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1726354754 +CI_PACKAGE_BUMP=4.0.8-1/1 CI_PKGBUILD_SOURCE=aur diff --git a/aura/.SRCINFO b/aura/.SRCINFO index b90605941d..19af6dc243 100644 --- a/aura/.SRCINFO +++ b/aura/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = aura pkgdesc = A package manager for Arch Linux and its AUR - pkgver = 4.0.7 + pkgver = 4.0.8 pkgrel = 1 url = https://github.com/fosskers/aura arch = x86_64 @@ -22,7 +22,7 @@ pkgbase = aura conflicts = aura-git conflicts = aura3-bin options = strip - source = aura-4.0.7.tar.gz::https://github.com/fosskers/aura/archive/refs/tags/v4.0.7.tar.gz - sha256sums = 4c0f472c197eec518e649ca4fa79278fff3cacfd01ff3ff206f176f4764f0b0a + source = aura-4.0.8.tar.gz::https://github.com/fosskers/aura/archive/refs/tags/v4.0.8.tar.gz + sha256sums = 04d1919ad6a89b13ea618827af6678f298c70447ffa6d3f55635c231123b75ca pkgname = aura diff --git a/aura/PKGBUILD b/aura/PKGBUILD index f0a0e567e5..4436b4996c 100644 --- a/aura/PKGBUILD +++ b/aura/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Colin Woodbury pkgname=aura -pkgver=4.0.7 +pkgver=4.0.8 pkgrel=1 pkgdesc="A package manager for Arch Linux and its AUR" url="https://github.com/fosskers/aura" @@ -21,7 +21,7 @@ optdepends=( conflicts=("aura-bin" "aura-git" "aura3-bin") options=("strip") source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz") -sha256sums=('4c0f472c197eec518e649ca4fa79278fff3cacfd01ff3ff206f176f4764f0b0a') +sha256sums=('04d1919ad6a89b13ea618827af6678f298c70447ffa6d3f55635c231123b75ca') prepare() { cd "${pkgname}-${pkgver}/rust" diff --git a/auracle-git/.CI/config b/auracle-git/.CI/config index b4b964f9be..c27f467843 100644 --- a/auracle-git/.CI/config +++ b/auracle-git/.CI/config @@ -1,4 +1,3 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1724059822 +CI_PACKAGE_BUMP=r420.f4cebb5-1/1 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=f4cebb56780057ac1fdb2105a3b70d689bfe6ff2 diff --git a/auracle-git/.SRCINFO b/auracle-git/.SRCINFO index 94924fa195..a72ed44758 100644 --- a/auracle-git/.SRCINFO +++ b/auracle-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = auracle-git pkgdesc = A flexible client for the AUR - pkgver = r408.3889e6f + pkgver = r420.f4cebb5 pkgrel = 1 url = https://github.com/falconindy/auracle arch = x86_64 diff --git a/auracle-git/PKGBUILD b/auracle-git/PKGBUILD index 61ecd46ac3..ec5b16a993 100644 --- a/auracle-git/PKGBUILD +++ b/auracle-git/PKGBUILD @@ -2,7 +2,7 @@ pkgname=auracle-git _pkgname="${pkgname%-git}" -pkgver=r408.3889e6f +pkgver=r420.f4cebb5 pkgrel=1 pkgdesc='A flexible client for the AUR' arch=('x86_64' 'i686') diff --git a/aurum/.CI/config b/aurum/.CI/config index 9a84514416..be6b71a673 100644 --- a/aurum/.CI/config +++ b/aurum/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1681740136 +CI_PACKAGE_BUMP=0.2-1/1 CI_PKGBUILD_SOURCE=aur diff --git a/aurutils/.CI/config b/aurutils/.CI/config index 1ddcdf66fb..567f72ce6c 100644 --- a/aurutils/.CI/config +++ b/aurutils/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1726995185 +CI_PACKAGE_BUMP=20.3-1/1 CI_PKGBUILD_SOURCE=aur diff --git a/aurutils/.SRCINFO b/aurutils/.SRCINFO index 6d88097eb8..57ddffad14 100644 --- a/aurutils/.SRCINFO +++ b/aurutils/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = aurutils pkgdesc = helper tools for the arch user repository - pkgver = 20.1 + pkgver = 20.3 pkgrel = 1 url = https://github.com/AladW/aurutils install = aurutils.install @@ -21,7 +21,7 @@ pkgbase = aurutils optdepends = bat: view-delta example script optdepends = git-delta: view-delta example script optdepends = python-srcinfo: sync-rebuild example script - source = aurutils-20.1.tar.gz::https://github.com/AladW/aurutils/archive/refs/tags/20.1.tar.gz - sha256sums = 8a7fa24e0c8f17ffa95e4028c901aab1fe41a343d2a3eb7c25d3490e00fcd401 + source = aurutils-20.3.tar.gz::https://github.com/AladW/aurutils/archive/refs/tags/20.3.tar.gz + sha256sums = 2732390934d27ce33b1f15792eec32ead64604b0cce728025690253b6183787b pkgname = aurutils diff --git a/aurutils/PKGBUILD b/aurutils/PKGBUILD index c40e1b6140..3c6ba84384 100644 --- a/aurutils/PKGBUILD +++ b/aurutils/PKGBUILD @@ -3,7 +3,7 @@ # Co-Maintainer: zoorat pkgname=aurutils -pkgver=20.1 +pkgver=20.3 pkgrel=1 pkgdesc='helper tools for the arch user repository' url='https://github.com/AladW/aurutils' @@ -12,7 +12,7 @@ license=('ISC') source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/$pkgver.tar.gz") changelog=aurutils.changelog install=aurutils.install -sha256sums=('8a7fa24e0c8f17ffa95e4028c901aab1fe41a343d2a3eb7c25d3490e00fcd401') +sha256sums=('2732390934d27ce33b1f15792eec32ead64604b0cce728025690253b6183787b') depends=('git' 'pacutils' 'curl' 'perl' 'perl-json-xs' 'bash') optdepends=('bash-completion: bash completion' 'zsh: zsh completion' diff --git a/aurutils/aurutils.changelog b/aurutils/aurutils.changelog index 6b42bab94e..2109fb9c3d 100644 --- a/aurutils/aurutils.changelog +++ b/aurutils/aurutils.changelog @@ -1,3 +1,25 @@ +## 20.3 + +* `perl` + + recursively remove targets with `Depends::prune` (#1184) + +## 20.2 + +* `aur-build` + + add `AUR_MAKEPKG_GNUPGHOME`, `--makepkg-gnupghome` + + propagate `LOGDEST` to `aur-chroot` + +* `aur-sync` + + add `--auto-key-retrieve` + - retrieve PGP keys to `AUR_SYNC_GNUPGHOME` keyring + - keyring defaults to `$XDG_DATA_HOME/aurutils/sync/gnupg` + + add diagnostic for tsort failure (#1039) + +## 20.1 + +* `aur-chroot` + + avoid triggering `--status` when `--path` is given (#1181) + ## 20 * `aur-chroot` diff --git a/ausweisapp2/.CI/config b/ausweisapp2/.CI/config index b3ad98e409..66bee94775 100644 --- a/ausweisapp2/.CI/config +++ b/ausweisapp2/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1726042425 CI_PKGBUILD_SOURCE=aur diff --git a/ausweisapp2/.SRCINFO b/ausweisapp2/.SRCINFO index 950b4d4e9b..b621fc4a71 100644 --- a/ausweisapp2/.SRCINFO +++ b/ausweisapp2/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = ausweisapp2 pkgdesc = A software application that you install on your computer to use your national identity card or your electronic residence permit for online identification - pkgver = 2.2.1 + pkgver = 2.2.2 pkgrel = 1 url = https://www.ausweisapp.bund.de/ arch = i686 @@ -21,10 +21,10 @@ pkgbase = ausweisapp2 optdepends = ccid optdepends = acsccid optdepends = pcsc-cyberjack - source = https://github.com/Governikus/AusweisApp2/releases/download/2.2.1/AusweisApp-2.2.1.tar.gz - source = https://github.com/Governikus/AusweisApp2/releases/download/2.2.1/AusweisApp-2.2.1.tar.gz.asc + source = https://github.com/Governikus/AusweisApp2/releases/download/2.2.2/AusweisApp-2.2.2.tar.gz + source = https://github.com/Governikus/AusweisApp2/releases/download/2.2.2/AusweisApp-2.2.2.tar.gz.asc validpgpkeys = 699BF3055B0A49224EFDE7C72D7479A531451088 - sha256sums = f5dc11a12fe1888a84fd2489ab58162067e429b5c2612e8827dabbfb37ab9999 + sha256sums = ee9774b20ce645119b448f4bc9b4f3eda31b9a05372b8da00e5eed08527e6be5 sha256sums = SKIP pkgname = ausweisapp2 diff --git a/ausweisapp2/PKGBUILD b/ausweisapp2/PKGBUILD index 932514dbab..3faf4c584e 100644 --- a/ausweisapp2/PKGBUILD +++ b/ausweisapp2/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: A. Klitzing pkgname=ausweisapp2 -pkgver=2.2.1 +pkgver=2.2.2 pkgrel=1 pkgdesc="A software application that you install on your computer to use your national identity card or your electronic residence permit for online identification" arch=('i686' 'x86_64' 'aarch64') @@ -12,7 +12,7 @@ makedepends=('cmake' 'qt6-tools' 'qt6-shadertools' 'ninja' 'pkgconf') optdepends=('ccid' 'acsccid' 'pcsc-cyberjack') source=("https://github.com/Governikus/AusweisApp2/releases/download/${pkgver}/AusweisApp-${pkgver}.tar.gz"{,.asc}) validpgpkeys=('699BF3055B0A49224EFDE7C72D7479A531451088') -sha256sums=('f5dc11a12fe1888a84fd2489ab58162067e429b5c2612e8827dabbfb37ab9999' +sha256sums=('ee9774b20ce645119b448f4bc9b4f3eda31b9a05372b8da00e5eed08527e6be5' 'SKIP') prepare() { diff --git a/authenticator/.CI/config b/authenticator/.CI/config deleted file mode 100644 index b4ce769b3a..0000000000 --- a/authenticator/.CI/config +++ /dev/null @@ -1,2 +0,0 @@ -CI_PKGBUILD_TIMESTAMP=1726969334 -CI_PKGBUILD_SOURCE=aur diff --git a/authenticator/.CI/info b/authenticator/.CI/info deleted file mode 100644 index 32eb49d125..0000000000 --- a/authenticator/.CI/info +++ /dev/null @@ -1,2 +0,0 @@ -REQ_ORIGIN=github/1728 -REQ_REASON=request diff --git a/authenticator/.SRCINFO b/authenticator/.SRCINFO deleted file mode 100644 index 65a9e631b3..0000000000 --- a/authenticator/.SRCINFO +++ /dev/null @@ -1,23 +0,0 @@ -pkgbase = authenticator - pkgdesc = 2FA code generator for GNOME - pkgver = 4.5.0 - pkgrel = 1 - url = https://gitlab.gnome.org/World/Authenticator - arch = any - license = GPL3 - checkdepends = appstream-glib - makedepends = cargo - makedepends = clang - makedepends = git - makedepends = meson - depends = gst-plugins-bad - depends = gst-plugin-pipewire - depends = libadwaita - depends = libsecret - depends = pipewire - depends = zbar - options = !lto - source = https://gitlab.gnome.org/World/Authenticator/-/archive/4.5.0/Authenticator-4.5.0.tar.gz - sha256sums = 195d61084f41a90b3ef5dfa433309a5b86beef76ea6cd36e3329b72181eb23a1 - -pkgname = authenticator diff --git a/authenticator/PKGBUILD b/authenticator/PKGBUILD deleted file mode 100644 index 9a5963bb32..0000000000 --- a/authenticator/PKGBUILD +++ /dev/null @@ -1,40 +0,0 @@ -# Maintainer: Titouan (Stalone) S. -# Maintainer: torculus <20175597+torculus@users.noreply.github.com> -# Contributor: Igor Dyatlov -# Contributor: Mark (yochananmarqos) Wagie - -pkgname=authenticator -_pkgname=Authenticator -pkgver=4.5.0 -pkgrel=1 -pkgdesc="2FA code generator for GNOME" -arch=('any') -url="https://gitlab.gnome.org/World/Authenticator" -license=('GPL3') -depends=('gst-plugins-bad' 'gst-plugin-pipewire' 'libadwaita' 'libsecret' 'pipewire' 'zbar') -makedepends=('cargo' 'clang' 'git' 'meson') -checkdepends=('appstream-glib') -source=($url/-/archive/$pkgver/$_pkgname-$pkgver.tar.gz) -sha256sums=('195d61084f41a90b3ef5dfa433309a5b86beef76ea6cd36e3329b72181eb23a1') -options=('!lto') - -prepare() { - cd "$srcdir/$_pkgname-$pkgver" - export RUSTUP_TOOLCHAIN=stable - cargo update - cargo fetch --locked --target "$CARCH-unknown-linux-gnu" -} - -build() { - export RUSTUP_TOOLCHAIN=stable - arch-meson $_pkgname-$pkgver build - meson compile -C build -} - -check() { - meson test -C build --print-errorlogs || : -} - -package() { - meson install -C build --destdir "$pkgdir" -} diff --git a/authpass-bin/.CI/config b/authpass-bin/.CI/config index ac90db0a31..66bee94775 100644 --- a/authpass-bin/.CI/config +++ b/authpass-bin/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1724928322 CI_PKGBUILD_SOURCE=aur diff --git a/authpass-bin/.SRCINFO b/authpass-bin/.SRCINFO index e7944b4250..075263da49 100644 --- a/authpass-bin/.SRCINFO +++ b/authpass-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = authpass-bin pkgdesc = Password Manager based on Flutter for all platforms. Keepass 2.x (kdbx 3.x) compatible. - pkgver = 1.9.11 + pkgver = 1.9.12 pkgrel = 3 url = https://authpass.app/ arch = x86_64 @@ -8,11 +8,11 @@ pkgbase = authpass-bin depends = gtk3 depends = libsecret depends = libkeybinder3 - provides = authpass=1.9.11 + provides = authpass=1.9.12 conflicts = authpass - source = authpass-1.9.11.deb::https://github.com/authpass/authpass/releases/download/v1.9.11/authpass-linux-1.9.11_2007.deb + source = authpass-1.9.12.deb::https://authpass-data.codeux.design/data/artifacts/authpass-linux-1.9.12_2031.deb source = authpass.sh - sha256sums = f464b6d5610de4c9d17cbbb5906625c272e8c5ac0ebf8e45b2a3007bbc9c246b - sha256sums = 2ce176a5c3aec15df075bb898c0c82f8a10c51fee35c24a5c0c795775a4b05f9 + sha256sums = dc704989ee2a82038db8b69def6715d92d7f42aacbeedb616bac47be5fac3da0 + sha256sums = 97155fcff09b03405209fd5bb1f341d0d0d92e83ca9cf96c219d19214456e9b1 pkgname = authpass-bin diff --git a/authpass-bin/PKGBUILD b/authpass-bin/PKGBUILD index 072e9cb7b8..c456720a3b 100644 --- a/authpass-bin/PKGBUILD +++ b/authpass-bin/PKGBUILD @@ -2,13 +2,14 @@ # Contributor: Luis Martinez # Contributor: Caltlgin Stsodaat pkgname=authpass-bin -pkgver=1.9.11 -_subver=2007 +pkgver=1.9.12 +_subver=2031 pkgrel=3 pkgdesc='Password Manager based on Flutter for all platforms. Keepass 2.x (kdbx 3.x) compatible.' arch=('x86_64') url="https://authpass.app/" _ghurl="https://github.com/authpass/authpass" +_dlurl="https://authpass-data.codeux.design/data/artifacts" license=('GPL-3.0-only') provides=("${pkgname%-bin}=${pkgver}") conflicts=("${pkgname%-bin}") @@ -18,23 +19,26 @@ depends=( 'libkeybinder3' ) source=( - "${pkgname%-bin}-${pkgver}.deb::${_ghurl}/releases/download/v${pkgver}/${pkgname%-bin}-linux-${pkgver}_${_subver}.deb" + "${pkgname%-bin}-${pkgver}.deb::${_dlurl}/${pkgname%-bin}-linux-${pkgver}_${_subver}.deb" "${pkgname%-bin}.sh" ) -sha256sums=('f464b6d5610de4c9d17cbbb5906625c272e8c5ac0ebf8e45b2a3007bbc9c246b' - '2ce176a5c3aec15df075bb898c0c82f8a10c51fee35c24a5c0c795775a4b05f9') +sha256sums=('dc704989ee2a82038db8b69def6715d92d7f42aacbeedb616bac47be5fac3da0' + '97155fcff09b03405209fd5bb1f341d0d0d92e83ca9cf96c219d19214456e9b1') build() { - sed -e "s|@appname@|${pkgname%-bin}|g" \ - -e "s|@runname@|${pkgname%-bin}|g" \ - -i "${srcdir}/${pkgname%-bin}.sh" + sed -e " + s/@appname@/${pkgname%-bin}/g + s/@runname@/${pkgname%-bin}/g + " -i "${srcdir}/${pkgname%-bin}.sh" bsdtar -xf "${srcdir}/data."* - sed "s|/opt/${pkgname%-bin}/icon.svg|${pkgname%-bin}|g;s|Network|Network;Utility|g" \ - -i "${srcdir}/usr/share/applications/${pkgname%-bin}.desktop" + sed -e " + s/\/opt\/${pkgname%-bin}\/icon\.svg/${pkgname%-bin}/g + s/Network/Network;Utility/g + " -i "${srcdir}/usr/share/applications/${pkgname%-bin}.desktop" } package() { install -Dm755 "${srcdir}/${pkgname%-bin}.sh" "${pkgdir}/usr/bin/${pkgname%-bin}" install -Dm755 -d "${pkgdir}/usr/lib" - cp -r "${srcdir}/opt/${pkgname%-bin}" "${pkgdir}/usr/lib" + cp -Pr --no-preserve=ownership "${srcdir}/opt/${pkgname%-bin}" "${pkgdir}/usr/lib" install -Dm644 "${srcdir}/usr/share/applications/${pkgname%-bin}.desktop" -t "${pkgdir}/usr/share/applications" - install -Dm644 "${srcdir}/opt/${pkgname%-bin}/icon.svg" "${pkgdir}/usr/share/hicolor/scalable/apps/${pkgname%-bin}" + install -Dm644 "${srcdir}/opt/${pkgname%-bin}/icon.svg" "${pkgdir}/usr/share/icons/hicolor/scalable/apps/${pkgname%-bin}.svg" } diff --git a/authpass-bin/authpass.sh b/authpass-bin/authpass.sh index 46364d18a9..c0c9bed10b 100644 --- a/authpass-bin/authpass.sh +++ b/authpass-bin/authpass.sh @@ -4,5 +4,5 @@ _APPDIR=/usr/lib/@appname@ _RUNNAME="${_APPDIR}/@runname@" export PATH="${_APPDIR}:${PATH}" export LD_LIBRARY_PATH="${_APPDIR}/lib:${LD_LIBRARY_PATH}" -cd "${_APPDIR}" +cd "${_APPDIR}" || { echo "Failed to change directory to ${_APPDIR}"; exit 1; } exec "${_RUNNAME}" "$@" || exit $? \ No newline at end of file diff --git a/auto-cpufreq/.CI/config b/auto-cpufreq/.CI/config index 6897abd497..66bee94775 100644 --- a/auto-cpufreq/.CI/config +++ b/auto-cpufreq/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1725915583 CI_PKGBUILD_SOURCE=aur diff --git a/autoconf-git/.CI/config b/autoconf-git/.CI/config index eb00dd26c2..8471e6a8af 100644 --- a/autoconf-git/.CI/config +++ b/autoconf-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1680765158 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=f73d74d453194f280da6aa94b3e8db7bcef2cfbd diff --git a/autojump/.CI/config b/autojump/.CI/config index ceea633d98..184389aeaf 100644 --- a/autojump/.CI/config +++ b/autojump/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1651774611 +CI_PACKAGE_BUMP=22.5.3-9/4 CI_PKGBUILD_SOURCE=aur diff --git a/autokey/.CI/config b/autokey/.CI/config index a25b36b691..8b63a4c51c 100644 --- a/autokey/.CI/config +++ b/autokey/.CI/config @@ -1 +1,2 @@ +CI_PACKAGE_BUMP=0.96.0-6/2 CI_PKGBUILD_SOURCE=https://aur.archlinux.org/autokey.git diff --git a/autotrace/.CI/config b/autotrace/.CI/config deleted file mode 100644 index 2c718f53c5..0000000000 --- a/autotrace/.CI/config +++ /dev/null @@ -1,2 +0,0 @@ -CI_PKGBUILD_TIMESTAMP=1717104357 -CI_PKGBUILD_SOURCE=aur diff --git a/autotrace/.CI/info b/autotrace/.CI/info deleted file mode 100644 index e6b8a6ad35..0000000000 --- a/autotrace/.CI/info +++ /dev/null @@ -1,2 +0,0 @@ -REQ_ORIGIN=github/2023 -REQ_REASON=depends diff --git a/autotrace/.SRCINFO b/autotrace/.SRCINFO deleted file mode 100644 index 9ddf89ab05..0000000000 --- a/autotrace/.SRCINFO +++ /dev/null @@ -1,21 +0,0 @@ -pkgbase = autotrace - pkgdesc = A program for converting bitmap to vector graphics - pkgver = 0.31.10 - pkgrel = 2 - url = https://github.com/autotrace/autotrace/ - arch = x86_64 - license = GPL-2.0-or-later - license = LGPL-2.1-or-later - checkdepends = procps-ng - makedepends = intltool - depends = glib2 - depends = imagemagick - depends = libpng - depends = ming - depends = pstoedit - source = https://github.com/autotrace/autotrace/archive/0.31.10/autotrace-0.31.10.tar.gz - source = 010-autotrace-fix-swf-output.patch - sha256sums = 14627f93bb02fe14eeda0163434a7cb9b1f316c0f1727f0bdf6323a831ffe80d - sha256sums = c0698678cb37b4a82d732f113ad4829d1b453d9db18001ffbe3044697b4852bc - -pkgname = autotrace diff --git a/autotrace/010-autotrace-fix-swf-output.patch b/autotrace/010-autotrace-fix-swf-output.patch deleted file mode 100644 index e2d31aa113..0000000000 --- a/autotrace/010-autotrace-fix-swf-output.patch +++ /dev/null @@ -1,26 +0,0 @@ -http://bugs.gentoo.org/122035 - ---- a/src/output-swf.c -+++ b/src/output-swf.c -@@ -24,7 +24,6 @@ - #include "spline.h" - #include "color.h" - #include "output-swf.h" --#include - - #define FPS 24.0 - #define IMGID 1 - ---- a/src/output-swf.h -+++ b/src/output-swf.h -@@ -23,7 +23,10 @@ - #define OUTPUTSWF_H - - #include "output.h" -+#include - - int output_swf_writer(FILE * file, gchar * name, int llx, int lly, int urx, int ury, at_output_opts_type * opts, at_spline_list_array_type shape, at_msg_func msg_func, gpointer msg_data, gpointer user_data); - -+void fileOutputMethod(byte b, void *data); -+ - #endif /* Not def: OUTPUTSWF_H */ diff --git a/autotrace/PKGBUILD b/autotrace/PKGBUILD deleted file mode 100644 index 6d9d950a2a..0000000000 --- a/autotrace/PKGBUILD +++ /dev/null @@ -1,47 +0,0 @@ -# Maintainer: Daniel Bermond - -pkgname=autotrace -pkgver=0.31.10 -pkgrel=2 -pkgdesc='A program for converting bitmap to vector graphics' -arch=('x86_64') -url='https://github.com/autotrace/autotrace/' -license=('GPL-2.0-or-later' 'LGPL-2.1-or-later') -depends=('glib2' 'imagemagick' 'libpng' 'ming' 'pstoedit') -makedepends=('intltool') -checkdepends=('procps-ng') -source=("https://github.com/autotrace/autotrace/archive/${pkgver}/autotrace-${pkgver}.tar.gz" - '010-autotrace-fix-swf-output.patch') -sha256sums=('14627f93bb02fe14eeda0163434a7cb9b1f316c0f1727f0bdf6323a831ffe80d' - 'c0698678cb37b4a82d732f113ad4829d1b453d9db18001ffbe3044697b4852bc') - -prepare() { - cd "autotrace-${pkgver}" - patch -Np1 -i "${srcdir}/010-autotrace-fix-swf-output.patch" - ./autogen.sh -} - -build() { - cd "autotrace-${pkgver}" - - # fix build with gcc 14 - export CFLAGS+=' -Wno-incompatible-pointer-types' - - ./configure \ - --prefix='/usr' \ - --disable-static \ - --with-magick \ - --with-png \ - --with-pstoedit - make - sed -i "s|@MAGICK_LIBS@|$(pkg-config --libs ImageMagick)|" autotrace.pc - sed -i "s|@MAGICK_CFLAGS@|$(pkg-config --cflags ImageMagick)|" autotrace.pc -} - -check() { - make -C "autotrace-${pkgver}" check -} - -package() { - make -C "autotrace-${pkgver}" DESTDIR="$pkgdir" install -} diff --git a/avaloniailspy-git/.CI/config b/avaloniailspy-git/.CI/config index 15990fdeee..8471e6a8af 100644 --- a/avaloniailspy-git/.CI/config +++ b/avaloniailspy-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1704069375 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=bc00df42767ee22d93366af122dee5c0faaa6ed5 diff --git a/avvie/.CI/config b/avvie/.CI/config index ad661e4b50..8471e6a8af 100644 --- a/avvie/.CI/config +++ b/avvie/.CI/config @@ -1,3 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1689851621 CI_PKGBUILD_SOURCE=aur diff --git a/awesome-git/.CI/PKGBUILD.append b/awesome-git/.CI/PKGBUILD.append new file mode 100644 index 0000000000..5fc70e547b --- /dev/null +++ b/awesome-git/.CI/PKGBUILD.append @@ -0,0 +1,7 @@ +_pkgsrc="$pkgname" +pkgver() { + cd "$_pkgsrc" + + git describe --long --tags --abbrev=7 --exclude='*[a-zA-Z][a-zA-Z]*' \ + | sed -E 's/^[^0-9]*//;s/([^-]*-g)/r\1/;s/-/./g' +} diff --git a/awesome-git/.CI/config b/awesome-git/.CI/config index 6b89d37153..66bee94775 100644 --- a/awesome-git/.CI/config +++ b/awesome-git/.CI/config @@ -1,4 +1 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1643843708 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=d53eb1be67f594f62fb6134fe40928e8ca17304a diff --git a/aws2-wrap/.CI/config b/aws2-wrap/.CI/config index 15aba1b488..fe4276b6f7 100644 --- a/aws2-wrap/.CI/config +++ b/aws2-wrap/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1704618814 +CI_PACKAGE_BUMP=1.4.0-1/1 CI_PKGBUILD_SOURCE=aur diff --git a/ayatana-indicator-application/.CI/config b/ayatana-indicator-application/.CI/config index 507792cb5c..851cf22875 100644 --- a/ayatana-indicator-application/.CI/config +++ b/ayatana-indicator-application/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1721359974 +CI_PACKAGE_BUMP=22.2.0-1/4 CI_PKGBUILD_SOURCE=aur diff --git a/ayatana-indicator-bluetooth/.CI/config b/ayatana-indicator-bluetooth/.CI/config index efeeaa76d9..66bee94775 100644 --- a/ayatana-indicator-bluetooth/.CI/config +++ b/ayatana-indicator-bluetooth/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1719408793 CI_PKGBUILD_SOURCE=aur diff --git a/ayatana-indicator-datetime/.CI/config b/ayatana-indicator-datetime/.CI/config index 134ff7850c..66bee94775 100644 --- a/ayatana-indicator-datetime/.CI/config +++ b/ayatana-indicator-datetime/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1721378658 CI_PKGBUILD_SOURCE=aur diff --git a/ayatana-indicator-keyboard/.CI/config b/ayatana-indicator-keyboard/.CI/config index 71c2f99d40..66bee94775 100644 --- a/ayatana-indicator-keyboard/.CI/config +++ b/ayatana-indicator-keyboard/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1720610903 CI_PKGBUILD_SOURCE=aur diff --git a/ayatana-indicator-messages/.CI/config b/ayatana-indicator-messages/.CI/config index f86ba739b6..66bee94775 100644 --- a/ayatana-indicator-messages/.CI/config +++ b/ayatana-indicator-messages/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1721359745 CI_PKGBUILD_SOURCE=aur diff --git a/ayatana-indicator-notifications/.CI/config b/ayatana-indicator-notifications/.CI/config index 9067cef612..66bee94775 100644 --- a/ayatana-indicator-notifications/.CI/config +++ b/ayatana-indicator-notifications/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1721378969 CI_PKGBUILD_SOURCE=aur diff --git a/ayatana-indicator-power/.CI/config b/ayatana-indicator-power/.CI/config index 1b5482155d..02f91d3769 100644 --- a/ayatana-indicator-power/.CI/config +++ b/ayatana-indicator-power/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1721360133 +CI_PACKAGE_BUMP=24.5.1-1/1 CI_PKGBUILD_SOURCE=aur diff --git a/ayatana-indicator-session/.CI/config b/ayatana-indicator-session/.CI/config index 2e887a8e85..a18c07632b 100644 --- a/ayatana-indicator-session/.CI/config +++ b/ayatana-indicator-session/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1721360301 +CI_PACKAGE_BUMP=24.5.0-1/1 CI_PKGBUILD_SOURCE=aur diff --git a/ayatana-indicator-sound/.CI/config b/ayatana-indicator-sound/.CI/config index 10722881d5..66bee94775 100644 --- a/ayatana-indicator-sound/.CI/config +++ b/ayatana-indicator-sound/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1716548157 CI_PKGBUILD_SOURCE=aur diff --git a/aylurs-gtk-shell-git/.CI/config b/aylurs-gtk-shell-git/.CI/config index e8aa9ee4a2..66bee94775 100644 --- a/aylurs-gtk-shell-git/.CI/config +++ b/aylurs-gtk-shell-git/.CI/config @@ -1,4 +1 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1722586812 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=cd543afec4d9ed708990e5ba52184716809bf248 diff --git a/aylurs-gtk-shell-git/.SRCINFO b/aylurs-gtk-shell-git/.SRCINFO index 04f60828b3..2d00b8226b 100644 --- a/aylurs-gtk-shell-git/.SRCINFO +++ b/aylurs-gtk-shell-git/.SRCINFO @@ -1,36 +1,20 @@ pkgbase = aylurs-gtk-shell-git pkgdesc = Aylurs's Gtk Shell (AGS), An eww inspired gtk widget system. - pkgver = 1.8.2.r10.g344ea72 - pkgrel = 1 + pkgver = 2.0.1.r0.gd8c2748 + pkgrel = 2 url = https://github.com/Aylur/ags arch = x86_64 license = GPL-3.0-only makedepends = git - makedepends = gobject-introspection - makedepends = glib2-devel - makedepends = meson - makedepends = npm - makedepends = typescript + makedepends = go + depends = blueprint-compiler + depends = dart-sass depends = gjs - depends = glib2 - depends = glibc - depends = gtk3 - depends = gtk-layer-shell - depends = libpulse - depends = pam - optdepends = gnome-bluetooth-3.0: required for bluetooth service - optdepends = greetd: required for greetd service - optdepends = libdbusmenu-gtk3: required for systemtray service - optdepends = libsoup3: required for the Utils.fetch feature - optdepends = libnotify: required for sending notifications - optdepends = networkmanager: required for network service - optdepends = power-profiles-daemon: required for powerprofiles service - optdepends = upower: required for battery service + depends = libastal-gjs + depends = libastal-meta + depends = npm conflicts = aylurs-gtk-shell - backup = etc/pam.d/ags source = git+https://github.com/Aylur/ags.git - source = git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git - sha256sums = SKIP sha256sums = SKIP pkgname = aylurs-gtk-shell-git diff --git a/aylurs-gtk-shell-git/PKGBUILD b/aylurs-gtk-shell-git/PKGBUILD index f4664a23b5..ef872b95d2 100644 --- a/aylurs-gtk-shell-git/PKGBUILD +++ b/aylurs-gtk-shell-git/PKGBUILD @@ -1,50 +1,39 @@ # Maintainer: kotontrion pkgname=aylurs-gtk-shell-git _pkgname=ags -pkgver=1.8.2.r10.g344ea72 -pkgrel=1 +pkgver=2.0.1.r0.gd8c2748 +pkgrel=2 pkgdesc="Aylurs's Gtk Shell (AGS), An eww inspired gtk widget system." arch=('x86_64') url="https://github.com/Aylur/ags" license=('GPL-3.0-only') -makedepends=('git' 'gobject-introspection' 'glib2-devel' 'meson' 'npm' 'typescript') -depends=('gjs' 'glib2' 'glibc' 'gtk3' 'gtk-layer-shell' 'libpulse' 'pam') -optdepends=('gnome-bluetooth-3.0: required for bluetooth service' - 'greetd: required for greetd service' - 'libdbusmenu-gtk3: required for systemtray service' - 'libsoup3: required for the Utils.fetch feature' - 'libnotify: required for sending notifications' - 'networkmanager: required for network service' - 'power-profiles-daemon: required for powerprofiles service' - 'upower: required for battery service') +makedepends=('git' 'go') +depends=('blueprint-compiler' + 'dart-sass' + 'gjs' + 'libastal-gjs' + 'libastal-meta' + 'npm') +source=("git+${url}.git") +sha256sums=('SKIP') conflicts=('aylurs-gtk-shell') -backup=('etc/pam.d/ags') -source=("git+${url}.git" - "git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git") -sha256sums=('SKIP' - 'SKIP') pkgver() { cd $srcdir/$_pkgname git describe --long --tags --abbrev=7 | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' } -prepare() { - cd $srcdir/$_pkgname - git submodule init - git config submodule.subprojects/gvc.url "$srcdir/libgnome-volume-control" - git -c protocol.file.allow=always submodule update -} - build() { cd $srcdir/$_pkgname - npm install - arch-meson build --libdir "lib/$_pkgname" -Dbuild_types=true - meson compile -C build + export CGO_CPPFLAGS="${CPPFLAGS}" + export CGO_CFLAGS="${CFLAGS}" + export CGO_CXXFLAGS="${CXXFLAGS}" + export CGO_LDFLAGS="${LDFLAGS}" + export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw" + go build -o ${_pkgname} } package() { cd $srcdir/$_pkgname - meson install -C build --destdir "$pkgdir" - ln -sf /usr/share/com.github.Aylur.ags/com.github.Aylur.ags ${pkgdir}/usr/bin/ags + install -Dm755 ${_pkgname} "$pkgdir"/usr/bin/${_pkgname} } diff --git a/aylurs-gtk-shell/.CI/config b/aylurs-gtk-shell/.CI/config index 77ce802332..66bee94775 100644 --- a/aylurs-gtk-shell/.CI/config +++ b/aylurs-gtk-shell/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1722586835 CI_PKGBUILD_SOURCE=aur diff --git a/aylurs-gtk-shell/.SRCINFO b/aylurs-gtk-shell/.SRCINFO index cbe6ade693..413104271c 100644 --- a/aylurs-gtk-shell/.SRCINFO +++ b/aylurs-gtk-shell/.SRCINFO @@ -1,33 +1,20 @@ pkgbase = aylurs-gtk-shell pkgdesc = Aylurs's Gtk Shell (AGS), An eww inspired gtk widget system. - pkgver = 1.8.2 - pkgrel = 3 + pkgver = 2.0.1 + pkgrel = 2 url = https://github.com/Aylur/ags + install = ags.install arch = x86_64 license = GPL-3.0-only - makedepends = gobject-introspection - makedepends = meson - makedepends = glib2-devel - makedepends = npm - makedepends = typescript + makedepends = go + depends = blueprint-compiler + depends = dart-sass depends = gjs - depends = glib2 - depends = glibc - depends = gtk3 - depends = gtk-layer-shell - depends = libpulse - depends = pam - optdepends = gnome-bluetooth-3.0: required for bluetooth service - optdepends = greetd: required for greetd service - optdepends = libdbusmenu-gtk3: required for systemtray service - optdepends = libsoup3: required for the Utils.fetch feature - optdepends = libnotify: required for sending notifications - optdepends = networkmanager: required for network service - optdepends = power-profiles-daemon: required for powerprofiles service - optdepends = upower: required for battery service + depends = libastal-gjs + depends = libastal-meta + depends = npm conflicts = aylurs-gtk-shell-git - backup = etc/pam.d/ags - source = aylurs-gtk-shell-1.8.2.tar.gz::https://github.com/Aylur/ags/releases/download/v1.8.2/ags-v1.8.2.tar.gz - sha256sums = ea0a706bef99578b30d40a2d0474b7a251364bfcf3a18cdc9b1adbc04af54773 + source = aylurs-gtk-shell-2.0.1.tar.gz::https://github.com/Aylur/ags/archive/refs/tags/v2.0.1.tar.gz + sha256sums = 1ea1e80b626e3fa69ca11f1fa2149f5ad3aae2c1cffc7d549d44728236c2daf6 pkgname = aylurs-gtk-shell diff --git a/aylurs-gtk-shell/PKGBUILD b/aylurs-gtk-shell/PKGBUILD index b078d9d460..57a8670cbd 100644 --- a/aylurs-gtk-shell/PKGBUILD +++ b/aylurs-gtk-shell/PKGBUILD @@ -1,36 +1,35 @@ # Maintainer: kotontrion pkgname=aylurs-gtk-shell _pkgname=ags -pkgver=1.8.2 -pkgrel=3 +pkgver=2.0.1 +pkgrel=2 pkgdesc="Aylurs's Gtk Shell (AGS), An eww inspired gtk widget system." arch=('x86_64') url="https://github.com/Aylur/ags" license=('GPL-3.0-only') -makedepends=('gobject-introspection' 'meson' 'glib2-devel' 'npm' 'typescript') -depends=('gjs' 'glib2' 'glibc' 'gtk3' 'gtk-layer-shell' 'libpulse' 'pam') -optdepends=('gnome-bluetooth-3.0: required for bluetooth service' - 'greetd: required for greetd service' - 'libdbusmenu-gtk3: required for systemtray service' - 'libsoup3: required for the Utils.fetch feature' - 'libnotify: required for sending notifications' - 'networkmanager: required for network service' - 'power-profiles-daemon: required for powerprofiles service' - 'upower: required for battery service') +makedepends=('go') +depends=('blueprint-compiler' + 'dart-sass' + 'gjs' + 'libastal-gjs' + 'libastal-meta' + 'npm') +source=("$pkgname-$pkgver.tar.gz::https://github.com/Aylur/ags/archive/refs/tags/v${pkgver}.tar.gz") +sha256sums=('1ea1e80b626e3fa69ca11f1fa2149f5ad3aae2c1cffc7d549d44728236c2daf6') conflicts=('aylurs-gtk-shell-git') -backup=('etc/pam.d/ags') -source=("$pkgname-$pkgver.tar.gz::https://github.com/Aylur/ags/releases/download/v${pkgver}/ags-v${pkgver}.tar.gz") -sha256sums=('ea0a706bef99578b30d40a2d0474b7a251364bfcf3a18cdc9b1adbc04af54773') +install=ags.install build() { - cd $srcdir/$_pkgname - npm install - arch-meson build --libdir "lib/$_pkgname" -Dbuild_types=true - meson compile -C build + cd "$srcdir/$_pkgname-$pkgver" + export CGO_CPPFLAGS="${CPPFLAGS}" + export CGO_CFLAGS="${CFLAGS}" + export CGO_CXXFLAGS="${CXXFLAGS}" + export CGO_LDFLAGS="${LDFLAGS}" + export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw" + go build -o ${_pkgname} } package() { - cd $srcdir/$_pkgname - meson install -C build --destdir "$pkgdir" - ln -sf /usr/share/com.github.Aylur.ags/com.github.Aylur.ags ${pkgdir}/usr/bin/ags + cd "$srcdir/$_pkgname-$pkgver" + install -Dm755 ${_pkgname} "$pkgdir"/usr/bin/${_pkgname} } diff --git a/aylurs-gtk-shell/ags.install b/aylurs-gtk-shell/ags.install new file mode 100644 index 0000000000..f966f65158 --- /dev/null +++ b/aylurs-gtk-shell/ags.install @@ -0,0 +1,15 @@ + +## arg 1: the new package version +## arg 2: the old package version +post_upgrade() { + if [ "$(vercmp $2 2.0.0)" -lt 0 ]; then + echo "" + echo "ags v2 includes many breaking changes." + echo "" + echo "If your ags config is large, I recommend installing this:" + echo "https://github.com/kotontrion/PKGBUILDS/blob/main/agsv1/PKGBUILD" + echo "alongside this package. So you can use your old config while migrating." + echo "" + fi + +} diff --git a/ayugram-desktop/.CI/config b/ayugram-desktop/.CI/config new file mode 100644 index 0000000000..66bee94775 --- /dev/null +++ b/ayugram-desktop/.CI/config @@ -0,0 +1 @@ +CI_PKGBUILD_SOURCE=aur diff --git a/ayugram-desktop/.CI/info b/ayugram-desktop/.CI/info new file mode 100644 index 0000000000..f298e85d93 --- /dev/null +++ b/ayugram-desktop/.CI/info @@ -0,0 +1,2 @@ +REQ_ORIGIN=chaotic/dr460nf1r3 +REQ_REASON=request diff --git a/ayugram-desktop/.SRCINFO b/ayugram-desktop/.SRCINFO new file mode 100644 index 0000000000..f42f07480b --- /dev/null +++ b/ayugram-desktop/.SRCINFO @@ -0,0 +1,132 @@ +pkgbase = ayugram-desktop + pkgdesc = Desktop Telegram client with good customization and Ghost mode. + pkgver = 5.6.3 + pkgrel = 2 + url = https://github.com/AyuGram/AyuGramDesktop + arch = x86_64 + license = GPL-3.0-only + makedepends = cmake + makedepends = python + makedepends = range-v3 + makedepends = tl-expected + makedepends = microsoft-gsl + makedepends = meson + makedepends = extra-cmake-modules + makedepends = wayland-protocols + makedepends = plasma-wayland-protocols + makedepends = libtg_owt + makedepends = gobject-introspection + makedepends = boost + makedepends = fmt + makedepends = mm-common + makedepends = perl-xml-parser + makedepends = python-packaging + makedepends = glib2-devel + depends = hunspell + depends = ffmpeg + depends = hicolor-icon-theme + depends = lz4 + depends = minizip + depends = openal + depends = qt6-imageformats + depends = qt6-svg + depends = qt6-wayland + depends = xxhash + depends = ada + depends = rnnoise + depends = pipewire + depends = libxtst + depends = libxrandr + depends = libxcomposite + depends = libxdamage + depends = abseil-cpp + depends = libdispatch + depends = openssl + depends = protobuf + depends = glib2 + depends = libsigc++-3.0 + depends = kcoreaddons + depends = openh264 + depends = jemalloc + optdepends = webkit2gtk: embedded browser features + optdepends = xdg-desktop-portal: desktop integration + source = AyuGram-v5.6.3.tar.gz::https://github.com/AyuGram/AyuGramDesktop/archive/refs/tags/v5.6.3.tar.gz + source = cld3-b48dc46512566f5a2d41118c8c1116c4f96dc661.tar.gz::https://github.com/google/cld3/archive/b48dc46512566f5a2d41118c8c1116c4f96dc661.tar.gz + source = lib_webrtc-8751e27d50d2f26b5d20673e5ddba38e90953570.tar.gz::https://github.com/desktop-app/lib_webrtc/archive/8751e27d50d2f26b5d20673e5ddba38e90953570.tar.gz + source = lib_rpl-8b1015d1bd57ef03fcd07a3eeddd3f5a9b688ade.tar.gz::https://github.com/desktop-app/lib_rpl/archive/8b1015d1bd57ef03fcd07a3eeddd3f5a9b688ade.tar.gz + source = rlottie-8c69fc20cf2e150db304311f1233a4b55a8892d7.tar.gz::https://github.com/desktop-app/rlottie/archive/8c69fc20cf2e150db304311f1233a4b55a8892d7.tar.gz + source = hunspell-22c3381e2066bed616250d373fc5c935598b564a.tar.gz::https://github.com/hunspell/hunspell/archive/22c3381e2066bed616250d373fc5c935598b564a.tar.gz + source = lib_lottie-1a700e5a0d7c3e2f617530354ff2a47c5c72bb4a.tar.gz::https://github.com/desktop-app/lib_lottie/archive/1a700e5a0d7c3e2f617530354ff2a47c5c72bb4a.tar.gz + source = lib_ui-7c3c03c878baa5d84aa6603593bc5618500f38f9.tar.gz::https://github.com/AyuGram/lib_ui/archive/7c3c03c878baa5d84aa6603593bc5618500f38f9.tar.gz + source = swift-corelibs-libdispatch-542b7f32311680b11b6fc8fcb2576955460ba7da.tar.gz::https://github.com/apple/swift-corelibs-libdispatch/archive/542b7f32311680b11b6fc8fcb2576955460ba7da.tar.gz + source = cmake_helpers-3ca8fb8c91fdf5b52565a8294f6cb33e8b6d6852.tar.gz::https://github.com/desktop-app/cmake_helpers/archive/3ca8fb8c91fdf5b52565a8294f6cb33e8b6d6852.tar.gz + source = range-v3-2dae74bb693e42d850fb0adcc9045c5b71fbdeae.tar.gz::https://github.com/ericniebler/range-v3/archive/2dae74bb693e42d850fb0adcc9045c5b71fbdeae.tar.gz + source = jemalloc-54eaed1d8b56b1aa528be3bdd1877e59c56fa90c.tar.gz::https://github.com/jemalloc/jemalloc/archive/54eaed1d8b56b1aa528be3bdd1877e59c56fa90c.tar.gz + source = xxHash-bbb27a5efb85b92a0486cf361a8635715a53f6ba.tar.gz::https://github.com/Cyan4973/xxHash/archive/bbb27a5efb85b92a0486cf361a8635715a53f6ba.tar.gz + source = lz4-5ff839680134437dbf4678f3d0c7b371d84f4964.tar.gz::https://github.com/lz4/lz4/archive/5ff839680134437dbf4678f3d0c7b371d84f4964.tar.gz + source = GSL-09938e870420b69a01f55c755207c871bc20b4e5.tar.gz::https://github.com/desktop-app/GSL/archive/09938e870420b69a01f55c755207c871bc20b4e5.tar.gz + source = expected-292eff8bd8ee230a7df1d6a1c00c4ea0eb2f0362.tar.gz::https://github.com/TartanLlama/expected/archive/292eff8bd8ee230a7df1d6a1c00c4ea0eb2f0362.tar.gz + source = kimageformats-106279d32ec4b93ccf5e29a92616e0f0cc8d2382.tar.gz::https://github.com/KDE/kimageformats/archive/106279d32ec4b93ccf5e29a92616e0f0cc8d2382.tar.gz + source = libtgvoip-2d2592860478e60d972b96e67ee034b8a71bb57a.tar.gz::https://github.com/telegramdesktop/libtgvoip/archive/2d2592860478e60d972b96e67ee034b8a71bb57a.tar.gz + source = Implib.so-0ddaa715d2572b100f8248c0fa4450fbf895be14.tar.gz::https://github.com/yugr/Implib.so/archive/0ddaa715d2572b100f8248c0fa4450fbf895be14.tar.gz + source = lib_qr-6fdf60461444ba150e13ac36009c0ffce72c4c83.tar.gz::https://github.com/desktop-app/lib_qr/archive/6fdf60461444ba150e13ac36009c0ffce72c4c83.tar.gz + source = cppgir-c8bb1c6017a6f7f2e47bd10543aea6b3ec69a966.tar.gz::https://gitlab.com/mnauw/cppgir/-/archive/c8bb1c6017a6f7f2e47bd10543aea6b3ec69a966/cppgir-c8bb1c6017a6f7f2e47bd10543aea6b3ec69a966.tar.gz + source = range-v3-a81477931a8aa2ad025c6bda0609f38e09e4d7ec.tar.gz::https://github.com/ericniebler/range-v3/archive/a81477931a8aa2ad025c6bda0609f38e09e4d7ec.tar.gz + source = lib_tl-669b16f8c4bcfd357d96bf5044789bdea39b1e1c.tar.gz::https://github.com/AyuGram/lib_tl/archive/669b16f8c4bcfd357d96bf5044789bdea39b1e1c.tar.gz + source = lib_base-21d1ac8bfcca03f67d7f6df75e265cd5597dc101.tar.gz::https://github.com/desktop-app/lib_base/archive/21d1ac8bfcca03f67d7f6df75e265cd5597dc101.tar.gz + source = tgcalls-9bf4065ea00cbed5e63cec348457ed13143459d0.tar.gz::https://github.com/TelegramMessenger/tgcalls/archive/9bf4065ea00cbed5e63cec348457ed13143459d0.tar.gz + source = QR-Code-generator-720f62bddb7226106071d4728c292cb1df519ceb.tar.gz::https://github.com/nayuki/QR-Code-generator/archive/720f62bddb7226106071d4728c292cb1df519ceb.tar.gz + source = libprisma-23b0d70f9709da9b38561d5706891a134d18df76.tar.gz::https://github.com/desktop-app/libprisma/archive/23b0d70f9709da9b38561d5706891a134d18df76.tar.gz + source = cmake_helpers-39aa77999e4b3cdec080f8e7eec9a4a45ccf6fc3.tar.gz::https://github.com/desktop-app/cmake_helpers/archive/39aa77999e4b3cdec080f8e7eec9a4a45ccf6fc3.tar.gz + source = kcoreaddons-fd84da51b554eac25e35b1e3f373edaab3029b15.tar.gz::https://github.com/KDE/kcoreaddons/archive/fd84da51b554eac25e35b1e3f373edaab3029b15.tar.gz + source = hime-9b3e6f9ab59d1fe4d9de73d3bf0fed7789f921c5.tar.gz::https://github.com/hime-ime/hime/archive/9b3e6f9ab59d1fe4d9de73d3bf0fed7789f921c5.tar.gz + source = nimf-498ec7ffab3ac140c2469638a14451788f03e798.tar.gz::https://github.com/hamonikr/nimf/archive/498ec7ffab3ac140c2469638a14451788f03e798.tar.gz + source = lib_crl-c1d6b0273653095b10b4d0f4f7c30b614b690fd5.tar.gz::https://github.com/desktop-app/lib_crl/archive/c1d6b0273653095b10b4d0f4f7c30b614b690fd5.tar.gz + source = xdg-desktop-portal-11c8a96b147aeae70e3f770313f93b367d53fedd.tar.gz::https://github.com/flatpak/xdg-desktop-portal/archive/11c8a96b147aeae70e3f770313f93b367d53fedd.tar.gz + source = lib_webview-e9e85a10e6864e18ffd540df04d7965d0af39500.tar.gz::https://github.com/desktop-app/lib_webview/archive/e9e85a10e6864e18ffd540df04d7965d0af39500.tar.gz + source = lib_storage-ccdc72548a5065b5991b4e06e610d76bc4f6023e.tar.gz::https://github.com/desktop-app/lib_storage/archive/ccdc72548a5065b5991b4e06e610d76bc4f6023e.tar.gz + source = codegen-4155b9ae2d4c5a37b9738afa8ef9fa20d8fdcb44.tar.gz::https://github.com/desktop-app/codegen/archive/4155b9ae2d4c5a37b9738afa8ef9fa20d8fdcb44.tar.gz + source = lib_spellcheck-e76981e133a1d29f3ceb557f53850a8d822f439a.tar.gz::https://github.com/desktop-app/lib_spellcheck/archive/e76981e133a1d29f3ceb557f53850a8d822f439a.tar.gz + source = expected-lite-95b9cb015fa17baa749c2b396b335906e1596a9e.tar.gz::https://github.com/martinmoene/expected-lite/archive/95b9cb015fa17baa749c2b396b335906e1596a9e.tar.gz + source = fcitx5-qt-c743b12e6780edf1dcfe9071531c80f050cacb95.tar.gz::https://github.com/fcitx/fcitx5-qt/archive/c743b12e6780edf1dcfe9071531c80f050cacb95.tar.gz + sha256sums = cdeae96c59c001b3b4962e206b3e36240998c3137654f664a2914e53dbb1b74f + sha256sums = d0d4ea2fddcbc7d10ace2c37309feb09da87e8ce7ced6ce73592da1359f4765f + sha256sums = 72ecdcd66728a073ca9bfaa3662155c28530b8f61d2241c193c04d6f2ae3a8c6 + sha256sums = 8b4ba7258685e49c9b7f2c60925264c3b2713805ad21304404d5f6b77cd5582b + sha256sums = cbc1f4bf8c28ffeb89852eda7056ff6aa80d49cb45736a583c931d5ceeccdcdd + sha256sums = 3e7253b2cc31bdf68fa50d105715158e649812e5ad6b4f1f6e5fd1e89b3ffdfd + sha256sums = c9aa4e32eb5e475d0826154055ff4749c07bb46d83b12f1641d31557e944a16f + sha256sums = db1ed1e745349410c217ef8998d42333cfe6dda3043fa0aa64760a0983ab8f84 + sha256sums = e9b050279a52e48f1fed56e76ed3995329b2f99518b6afba4f97ecb13088f935 + sha256sums = 3e164fe8ab04bbad3e7ea9e4dc38ae10bec10eb16a34c3222dbbc874c5f93839 + sha256sums = 8569c9bf5495b19b76ce6e2e53f40604c8618429ce728bf73b2406d1382fdc94 + sha256sums = 9b1afca339bd4e0579e73e92478ea26bb0c845dca7231de031e66c2f1a4ea5d9 + sha256sums = 716fbe4fc85ecd36488afbbc635b59b5ab6aba5ed3b69d4a32a46eae5a453d38 + sha256sums = 11b926f9605b258c35bd9ed806a10cab7ef5edd673ad53a014427b1c71d24a9e + sha256sums = 29bcc3c359378b83fda299ef1a0930886cb7937b893856ca476c47f90002ffa7 + sha256sums = fe3b18aecb849029b6af94922be0c25eee1b7b86565b1c8350692ed776cf42fb + sha256sums = d1159a816ce96092b543f6ed421d84adaa9bc4853ab55f37383f78cdb2068bcd + sha256sums = 66dc8c843d99fb636b7bfe196f3038c7567c7395a698c820ca8c0d18a03ad497 + sha256sums = 15a9981ab5e6a01f301609017aee11e000c22880d38b3be4e3da58c338f9b2fc + sha256sums = dd9b92f8bb26cf5eb543d4e9c5c1c62e17449588caa9eaf2500db09b5f3aed25 + sha256sums = ae53e57d6674cf8776708d724f63d2f6646c6deeafd923b8e13e5bd6c6766fc5 + sha256sums = 612b5d89f58a578240b28a1304ffb0d085686ebe0137adf175ed0e3382b7ed58 + sha256sums = 0b58fb605995613f997363c72154eedc7bffcab5ac3400d0f2c77f63d135e49f + sha256sums = af093039e74d08fe626c71734f8dc40e3e54837ba07d6a30bb774ce4e80df2a3 + sha256sums = 976909135282818237954bce77b5b21f6c88f1bf34f749ef0be6ea2058ded207 + sha256sums = d80795686f3e58448c7b76830bb5c40847b7eaae1996c28f0422a029b66c2bb0 + sha256sums = aba69c97d466e82a13ae6c1d52628c7f7ec8f85c5224f8634fa26a313ebcc95f + sha256sums = d0752fbb2ef6dc9dd1484252fe1027282019c74168da9ed7852abdf94fc5d73e + sha256sums = 2eaf5f6976f4c990ea2c2f8f8cd0f4ec22a935f799d6f901f10088845707a946 + sha256sums = 52a2e052beb67492225a38213108f1d7edd1940fd025cad3a4ae28c57d428419 + sha256sums = 41641c1a7e927662a6722a1d7df4c5f60d67fed9cc1f555b6be7d13d14542a68 + sha256sums = 3d2eef00fd1739a652ef22f2d081497bc9ae71008ff6736945f2d2676cc6bba9 + sha256sums = 73e639df3c73136eeb1890fc54acd603849fba01443005fd3c1a288539885792 + sha256sums = 1354038d0a39a507eb3a0868fd6d10f59c42901f448a1d8ba85f722f43de30ab + sha256sums = 2736d6f36f9f90323f2a0ed6fa59f52b8be71f50939708dffb0eb9f8155bbde1 + sha256sums = d42cec07e547b97143b2cb0b830d3198788c737071b35a0658e95d0d670efbd5 + sha256sums = d275027662ee6cd9b253d1a9b23fe757bab127c25dc2f1ec671e1387c768761e + sha256sums = 7238a966ee6b93fdbf2669736ddd35a6103967eb9d5369af8b740bff2401615c + sha256sums = 0bb1ac2b495bf7056a57a1b9bd6020007041eb7b6cc85467ae55d0eb5c8254e8 + +pkgname = ayugram-desktop diff --git a/ayugram-desktop/.gitignore b/ayugram-desktop/.gitignore new file mode 100644 index 0000000000..76c60a1333 --- /dev/null +++ b/ayugram-desktop/.gitignore @@ -0,0 +1,5 @@ +pkg +src +*.pkg.tar.* +*.log +*.tar.gz diff --git a/ayugram-desktop/PKGBUILD b/ayugram-desktop/PKGBUILD new file mode 100644 index 0000000000..c4d141472d --- /dev/null +++ b/ayugram-desktop/PKGBUILD @@ -0,0 +1,200 @@ +# Use environment variable MAKEPKG_AYUGRAM_API_ID and MAKEPKG_AYUGRAM_API_HASH to override default values + +pkgname=ayugram-desktop +pkgver=5.6.3 +pkgrel=2 +pkgdesc="Desktop Telegram client with good customization and Ghost mode." +arch=("x86_64") +url="https://github.com/AyuGram/AyuGramDesktop" +license=("GPL-3.0-only") +depends=( + "hunspell" "ffmpeg" "hicolor-icon-theme" "lz4" "minizip" "openal" + "qt6-imageformats" "qt6-svg" "qt6-wayland" "xxhash" "ada" + "rnnoise" "pipewire" "libxtst" "libxrandr" "libxcomposite" "libxdamage" "abseil-cpp" "libdispatch" + "openssl" "protobuf" "glib2" "libsigc++-3.0" "kcoreaddons" "openh264" + # libtgvoip nimf rlottie in aur + # Ayugram reverted that change https://github.com/telegramdesktop/tdesktop/commit/960761ef37fb7db57c40df6211164ae002f1063a + "jemalloc" +) +makedepends=( + "cmake" "python" "range-v3" "tl-expected" "microsoft-gsl" "meson" + "extra-cmake-modules" "wayland-protocols" "plasma-wayland-protocols" "libtg_owt" + "gobject-introspection" "boost" "fmt" "mm-common" "perl-xml-parser" "python-packaging" + "glib2-devel" +) +optdepends=( + "webkit2gtk: embedded browser features" + "xdg-desktop-portal: desktop integration" +) +source=( + "AyuGram-v$pkgver.tar.gz::https://github.com/AyuGram/AyuGramDesktop/archive/refs/tags/v$pkgver.tar.gz" +) +declare -rAg _modules_name_map=( + [cmake]=https://github.com/desktop-app/cmake_helpers/archive/3ca8fb8c91fdf5b52565a8294f6cb33e8b6d6852.tar.gz + [cmake/external/Implib.so]=https://github.com/yugr/Implib.so/archive/0ddaa715d2572b100f8248c0fa4450fbf895be14.tar.gz + [cmake/external/glib/cppgir]=https://gitlab.com/mnauw/cppgir/-/archive/c8bb1c6017a6f7f2e47bd10543aea6b3ec69a966/cppgir-c8bb1c6017a6f7f2e47bd10543aea6b3ec69a966.tar.gz + [cmake/external/glib/cppgir/expected-lite]=https://github.com/martinmoene/expected-lite/archive/95b9cb015fa17baa749c2b396b335906e1596a9e.tar.gz + [Telegram/codegen]=https://github.com/desktop-app/codegen/archive/4155b9ae2d4c5a37b9738afa8ef9fa20d8fdcb44.tar.gz + [Telegram/lib_base]=https://github.com/desktop-app/lib_base/archive/21d1ac8bfcca03f67d7f6df75e265cd5597dc101.tar.gz + [Telegram/lib_crl]=https://github.com/desktop-app/lib_crl/archive/c1d6b0273653095b10b4d0f4f7c30b614b690fd5.tar.gz + [Telegram/lib_lottie]=https://github.com/desktop-app/lib_lottie/archive/1a700e5a0d7c3e2f617530354ff2a47c5c72bb4a.tar.gz + [Telegram/lib_qr]=https://github.com/desktop-app/lib_qr/archive/6fdf60461444ba150e13ac36009c0ffce72c4c83.tar.gz + [Telegram/lib_rpl]=https://github.com/desktop-app/lib_rpl/archive/8b1015d1bd57ef03fcd07a3eeddd3f5a9b688ade.tar.gz + [Telegram/lib_spellcheck]=https://github.com/desktop-app/lib_spellcheck/archive/e76981e133a1d29f3ceb557f53850a8d822f439a.tar.gz + [Telegram/lib_storage]=https://github.com/desktop-app/lib_storage/archive/ccdc72548a5065b5991b4e06e610d76bc4f6023e.tar.gz + [Telegram/lib_tl]=https://github.com/AyuGram/lib_tl/archive/669b16f8c4bcfd357d96bf5044789bdea39b1e1c.tar.gz + [Telegram/lib_ui]=https://github.com/AyuGram/lib_ui/archive/7c3c03c878baa5d84aa6603593bc5618500f38f9.tar.gz + [Telegram/lib_webrtc]=https://github.com/desktop-app/lib_webrtc/archive/8751e27d50d2f26b5d20673e5ddba38e90953570.tar.gz + [Telegram/lib_webview]=https://github.com/desktop-app/lib_webview/archive/e9e85a10e6864e18ffd540df04d7965d0af39500.tar.gz + [Telegram/ThirdParty/GSL]=https://github.com/desktop-app/GSL/archive/09938e870420b69a01f55c755207c871bc20b4e5.tar.gz + [Telegram/ThirdParty/QR]=https://github.com/nayuki/QR-Code-generator/archive/720f62bddb7226106071d4728c292cb1df519ceb.tar.gz + [Telegram/ThirdParty/cld3]=https://github.com/google/cld3/archive/b48dc46512566f5a2d41118c8c1116c4f96dc661.tar.gz + [Telegram/ThirdParty/dispatch]=https://github.com/apple/swift-corelibs-libdispatch/archive/542b7f32311680b11b6fc8fcb2576955460ba7da.tar.gz + [Telegram/ThirdParty/expected]=https://github.com/TartanLlama/expected/archive/292eff8bd8ee230a7df1d6a1c00c4ea0eb2f0362.tar.gz + [Telegram/ThirdParty/fcitx5-qt]=https://github.com/fcitx/fcitx5-qt/archive/c743b12e6780edf1dcfe9071531c80f050cacb95.tar.gz + [Telegram/ThirdParty/hime]=https://github.com/hime-ime/hime/archive/9b3e6f9ab59d1fe4d9de73d3bf0fed7789f921c5.tar.gz + [Telegram/ThirdParty/hunspell]=https://github.com/hunspell/hunspell/archive/22c3381e2066bed616250d373fc5c935598b564a.tar.gz + [Telegram/ThirdParty/jemalloc]=https://github.com/jemalloc/jemalloc/archive/54eaed1d8b56b1aa528be3bdd1877e59c56fa90c.tar.gz + [Telegram/ThirdParty/kcoreaddons]=https://github.com/KDE/kcoreaddons/archive/fd84da51b554eac25e35b1e3f373edaab3029b15.tar.gz + [Telegram/ThirdParty/kimageformats]=https://github.com/KDE/kimageformats/archive/106279d32ec4b93ccf5e29a92616e0f0cc8d2382.tar.gz + [Telegram/ThirdParty/libprisma]=https://github.com/desktop-app/libprisma/archive/23b0d70f9709da9b38561d5706891a134d18df76.tar.gz + [Telegram/ThirdParty/libtgvoip]=https://github.com/telegramdesktop/libtgvoip/archive/2d2592860478e60d972b96e67ee034b8a71bb57a.tar.gz + [Telegram/ThirdParty/libtgvoip/cmake]=https://github.com/desktop-app/cmake_helpers/archive/39aa77999e4b3cdec080f8e7eec9a4a45ccf6fc3.tar.gz + [Telegram/ThirdParty/lz4]=https://github.com/lz4/lz4/archive/5ff839680134437dbf4678f3d0c7b371d84f4964.tar.gz + [Telegram/ThirdParty/nimf]=https://github.com/hamonikr/nimf/archive/498ec7ffab3ac140c2469638a14451788f03e798.tar.gz + [Telegram/ThirdParty/range-v3]=https://github.com/ericniebler/range-v3/archive/a81477931a8aa2ad025c6bda0609f38e09e4d7ec.tar.gz + [Telegram/ThirdParty/range-v3/doc/gh-pages]=https://github.com/ericniebler/range-v3/archive/2dae74bb693e42d850fb0adcc9045c5b71fbdeae.tar.gz + [Telegram/ThirdParty/rlottie]=https://github.com/desktop-app/rlottie/archive/8c69fc20cf2e150db304311f1233a4b55a8892d7.tar.gz + [Telegram/ThirdParty/tgcalls]=https://github.com/TelegramMessenger/tgcalls/archive/9bf4065ea00cbed5e63cec348457ed13143459d0.tar.gz + [Telegram/ThirdParty/xdg-desktop-portal]=https://github.com/flatpak/xdg-desktop-portal/archive/11c8a96b147aeae70e3f770313f93b367d53fedd.tar.gz + [Telegram/ThirdParty/xxHash]=https://github.com/Cyan4973/xxHash/archive/bbb27a5efb85b92a0486cf361a8635715a53f6ba.tar.gz +) + +_get_source_name_string() { + local host filename name commit + host=$(echo "$1" | cut -d / -f 3) + name=$(echo "$1" | cut -d / -f 5) + filename=${1##*/} + commit=${filename%%.*} + case "$host" in + gitlab.com) + # It contains $name in $commit + echo "$commit" + ;; + *) + echo "$name-$commit" + ;; + esac +} + +_fill_gitmodules_recursively() { + local gitmodule + find "${1:-.}" -type f -name .gitmodules | while read -r gitmodule + do + if [[ "$gitmodule" =~ ^\.\/ ]] + then + gitmodule=${gitmodule#*\.\/} + fi + local prefix + prefix=$(dirname "$gitmodule")"/" + if [[ "$prefix" =~ ^\.\/ ]] + then + prefix=${prefix#*\.\/} + fi + echo "Parsing $gitmodule to fill submodules..." + local p + grep path "$gitmodule" | awk '{print $3}' | while read -r p + do + p=${p%$'\r'} # Remove control characters + if [[ -n "$p" ]] + then + local target url name commit fname + target="$prefix$p" + url="${_modules_name_map[$target]}" + fname=$(_get_source_name_string "$url") + echo "Filling $target with $srcdir/$fname..." + cp -r "$srcdir/$fname/." "$target" + _fill_gitmodules_recursively "$target" + fi + done + done +} +declare _source_str _uri +for _uri in "${_modules_name_map[@]}" +do + _source_str="$(_get_source_name_string "$_uri").tar.gz::$_uri" + if [[ "${source[*]/$_source_str/}" == "${source[*]}" ]] + then + source+=("$_source_str") + fi +done +unset _source_str _uri + +sha256sums=('cdeae96c59c001b3b4962e206b3e36240998c3137654f664a2914e53dbb1b74f' + 'd0d4ea2fddcbc7d10ace2c37309feb09da87e8ce7ced6ce73592da1359f4765f' + '72ecdcd66728a073ca9bfaa3662155c28530b8f61d2241c193c04d6f2ae3a8c6' + '8b4ba7258685e49c9b7f2c60925264c3b2713805ad21304404d5f6b77cd5582b' + 'cbc1f4bf8c28ffeb89852eda7056ff6aa80d49cb45736a583c931d5ceeccdcdd' + '3e7253b2cc31bdf68fa50d105715158e649812e5ad6b4f1f6e5fd1e89b3ffdfd' + 'c9aa4e32eb5e475d0826154055ff4749c07bb46d83b12f1641d31557e944a16f' + 'db1ed1e745349410c217ef8998d42333cfe6dda3043fa0aa64760a0983ab8f84' + 'e9b050279a52e48f1fed56e76ed3995329b2f99518b6afba4f97ecb13088f935' + '3e164fe8ab04bbad3e7ea9e4dc38ae10bec10eb16a34c3222dbbc874c5f93839' + '8569c9bf5495b19b76ce6e2e53f40604c8618429ce728bf73b2406d1382fdc94' + '9b1afca339bd4e0579e73e92478ea26bb0c845dca7231de031e66c2f1a4ea5d9' + '716fbe4fc85ecd36488afbbc635b59b5ab6aba5ed3b69d4a32a46eae5a453d38' + '11b926f9605b258c35bd9ed806a10cab7ef5edd673ad53a014427b1c71d24a9e' + '29bcc3c359378b83fda299ef1a0930886cb7937b893856ca476c47f90002ffa7' + 'fe3b18aecb849029b6af94922be0c25eee1b7b86565b1c8350692ed776cf42fb' + 'd1159a816ce96092b543f6ed421d84adaa9bc4853ab55f37383f78cdb2068bcd' + '66dc8c843d99fb636b7bfe196f3038c7567c7395a698c820ca8c0d18a03ad497' + '15a9981ab5e6a01f301609017aee11e000c22880d38b3be4e3da58c338f9b2fc' + 'dd9b92f8bb26cf5eb543d4e9c5c1c62e17449588caa9eaf2500db09b5f3aed25' + 'ae53e57d6674cf8776708d724f63d2f6646c6deeafd923b8e13e5bd6c6766fc5' + '612b5d89f58a578240b28a1304ffb0d085686ebe0137adf175ed0e3382b7ed58' + '0b58fb605995613f997363c72154eedc7bffcab5ac3400d0f2c77f63d135e49f' + 'af093039e74d08fe626c71734f8dc40e3e54837ba07d6a30bb774ce4e80df2a3' + '976909135282818237954bce77b5b21f6c88f1bf34f749ef0be6ea2058ded207' + 'd80795686f3e58448c7b76830bb5c40847b7eaae1996c28f0422a029b66c2bb0' + 'aba69c97d466e82a13ae6c1d52628c7f7ec8f85c5224f8634fa26a313ebcc95f' + 'd0752fbb2ef6dc9dd1484252fe1027282019c74168da9ed7852abdf94fc5d73e' + '2eaf5f6976f4c990ea2c2f8f8cd0f4ec22a935f799d6f901f10088845707a946' + '52a2e052beb67492225a38213108f1d7edd1940fd025cad3a4ae28c57d428419' + '41641c1a7e927662a6722a1d7df4c5f60d67fed9cc1f555b6be7d13d14542a68' + '3d2eef00fd1739a652ef22f2d081497bc9ae71008ff6736945f2d2676cc6bba9' + '73e639df3c73136eeb1890fc54acd603849fba01443005fd3c1a288539885792' + '1354038d0a39a507eb3a0868fd6d10f59c42901f448a1d8ba85f722f43de30ab' + '2736d6f36f9f90323f2a0ed6fa59f52b8be71f50939708dffb0eb9f8155bbde1' + 'd42cec07e547b97143b2cb0b830d3198788c737071b35a0658e95d0d670efbd5' + 'd275027662ee6cd9b253d1a9b23fe757bab127c25dc2f1ec671e1387c768761e' + '7238a966ee6b93fdbf2669736ddd35a6103967eb9d5369af8b740bff2401615c' + '0bb1ac2b495bf7056a57a1b9bd6020007041eb7b6cc85467ae55d0eb5c8254e8') + +prepare() { + cd "$srcdir/AyuGramDesktop-$pkgver" + _fill_gitmodules_recursively + #/usr/bin/ld: /usr/lib/libprotobuf-lite.so: undefined reference to symbol '_ZN4absl12lts_2023080212log_internal17MakeCheckOpStringIllEEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEET_T0_PKc' + #/usr/bin/ld: /usr/lib/libabsl_log_internal_check_op.so.2308.0.0: error adding symbols: DSO missing from command line + #collect2: error: ld returned 1 exit status + # + #https://github.com/telegramdesktop/tdesktop/issues/26489#issuecomment-1627535022 + sed -i 's/find_package(protobuf REQUIRED)/find_package(protobuf REQUIRED CONFIG)/' \ + Telegram/ThirdParty/cld3/CMakeLists.txt + #https://github.com/telegramdesktop/tdesktop/issues/26489#issuecomment-1627555107 + #CMAKE_BUILD_TYPE must match libtg_owt's +} +build() { + CXXFLAGS+=' -ffat-lto-objects' + # https://github.com/AyuGram/AyuGramDesktop/blob/dev/docs/building-linux.md#building-the-project + # for API_ID and API_HASH + cmake -B build -S AyuGramDesktop-$pkgver \ + -DCMAKE_INSTALL_PREFIX="/usr" \ + -DCMAKE_BUILD_TYPE=Release \ + -DTDESKTOP_API_ID="${MAKEPKG_AYUGRAM_API_ID:-2040}" \ + -DTDESKTOP_API_HASH="${MAKEPKG_AYUGRAM_API_HASH:-b18441a1ff607e10a989891a5462e627}" \ + -DDESKTOP_APP_DISABLE_AUTOUPDATE=True + cmake --build build +} +package() { + DESTDIR="$pkgdir" cmake --install build +} diff --git a/azpainter/.CI/config b/azpainter/.CI/config index 3101ea6e54..66bee94775 100644 --- a/azpainter/.CI/config +++ b/azpainter/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1720851515 CI_PKGBUILD_SOURCE=aur diff --git a/azpainter/.SRCINFO b/azpainter/.SRCINFO index 241b1c34e7..c290d51a7b 100644 --- a/azpainter/.SRCINFO +++ b/azpainter/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = azpainter pkgdesc = Painting software - pkgver = 3.0.8 + pkgver = 3.0.10 pkgrel = 1 url = http://azsky2.html.xdomain.jp/soft/azpainter.html arch = i686 @@ -14,7 +14,7 @@ pkgbase = azpainter depends = libxcursor depends = libwebp options = !makeflags - source = https://gitlab.com/azelpg/azpainter/-/archive/v3.0.8/azpainter-v3.0.8.tar.bz2 - sha256sums = c5af10bd3a94c3997d2f9860af3816e9fd799eeb89436a3f996c741e357b1c43 + source = https://gitlab.com/azelpg/azpainter/-/archive/v3.0.10/azpainter-v3.0.10.tar.bz2 + sha256sums = 1804f8894fd2c3441d4316be309742f7eddb7afbb683020a988c8ddc7c84cb9c pkgname = azpainter diff --git a/azpainter/PKGBUILD b/azpainter/PKGBUILD index 728c34d640..ddb69f6c6a 100644 --- a/azpainter/PKGBUILD +++ b/azpainter/PKGBUILD @@ -2,7 +2,7 @@ # pkgname=azpainter -pkgver=3.0.8 +pkgver=3.0.10 pkgrel=1 pkgdesc='Painting software' arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ depends=('hicolor-icon-theme' 'fontconfig' 'libjpeg-turbo' 'libxi' 'libxcursor' makedepends=('ninja') options=('!makeflags') source=("https://gitlab.com/azelpg/${pkgname}/-/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.bz2") -sha256sums=('c5af10bd3a94c3997d2f9860af3816e9fd799eeb89436a3f996c741e357b1c43') +sha256sums=('1804f8894fd2c3441d4316be309742f7eddb7afbb683020a988c8ddc7c84cb9c') build() { cd "${pkgname}-v${pkgver}" diff --git a/azure-functions-core-tools-bin/.CI/config b/azure-functions-core-tools-bin/.CI/config index 0d37a8459d..66bee94775 100644 --- a/azure-functions-core-tools-bin/.CI/config +++ b/azure-functions-core-tools-bin/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1725921057 CI_PKGBUILD_SOURCE=aur diff --git a/azure-functions-core-tools-bin/.SRCINFO b/azure-functions-core-tools-bin/.SRCINFO index aee83dbc3d..32fb253046 100644 --- a/azure-functions-core-tools-bin/.SRCINFO +++ b/azure-functions-core-tools-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = azure-functions-core-tools-bin pkgdesc = Command line tools for Azure Functions - pkgver = 4.0.6280 + pkgver = 4.0.6610 pkgrel = 1 url = https://github.com/Azure/azure-functions-core-tools arch = x86_64 @@ -9,7 +9,7 @@ pkgbase = azure-functions-core-tools-bin provides = azure-functions-core-tools conflicts = azure-functions-core-tools options = staticlibs - source = https://github.com/Azure/azure-functions-core-tools/releases/download/4.0.6280/Azure.Functions.Cli.linux-x64.4.0.6280.zip - b2sums = 0dc78376f58bc55cffbb090541d0faa7c758b2d320e9be8e2b62f14cf5fdd6fe0f40eb92d6ac02f4b52989d2db30b51e045db811bdca1e2834532d01d3105a1b + source = https://github.com/Azure/azure-functions-core-tools/releases/download/4.0.6610/Azure.Functions.Cli.linux-x64.4.0.6610.zip + b2sums = 38f4de303101719329e274385bb3c2c270881ed9a393144c9475be14b72ce6b474f88c6e391c0c34b4b46bc2cbb945c98d3b240f9700735359f60d47fda62ac0 pkgname = azure-functions-core-tools-bin diff --git a/azure-functions-core-tools-bin/PKGBUILD b/azure-functions-core-tools-bin/PKGBUILD index 8e038cab17..48d6481761 100644 --- a/azure-functions-core-tools-bin/PKGBUILD +++ b/azure-functions-core-tools-bin/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Jamie Magee _name=azure-functions-core-tools pkgname=$_name-bin -pkgver=4.0.6280 # renovate: datasource=github-tags depName=Azure/azure-functions-core-tools +pkgver=4.0.6610 # renovate: datasource=github-tags depName=Azure/azure-functions-core-tools pkgrel=1 pkgdesc="Command line tools for Azure Functions" arch=('x86_64') @@ -12,7 +12,7 @@ conflicts=($_name) optdepends=('dotnet-runtime: to install extensions') # https://github.com/Azure/azure-functions-core-tools/issues/367 options=('staticlibs') source=("https://github.com/Azure/${_name}/releases/download/${pkgver}/Azure.Functions.Cli.linux-x64.${pkgver}.zip") -b2sums=('0dc78376f58bc55cffbb090541d0faa7c758b2d320e9be8e2b62f14cf5fdd6fe0f40eb92d6ac02f4b52989d2db30b51e045db811bdca1e2834532d01d3105a1b') +b2sums=('38f4de303101719329e274385bb3c2c270881ed9a393144c9475be14b72ce6b474f88c6e391c0c34b4b46bc2cbb945c98d3b240f9700735359f60d47fda62ac0') package() { install -dm 755 "${pkgdir}/usr/lib/${_name}/" diff --git a/b43-firmware/.CI/config b/b43-firmware/.CI/config index 92d1ebc046..4c65550b58 100644 --- a/b43-firmware/.CI/config +++ b/b43-firmware/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1451597417 +CI_PACKAGE_BUMP=6.30.163.46-1/1 CI_PKGBUILD_SOURCE=aur diff --git a/babashka-bin/.CI/config b/babashka-bin/.CI/config index 12d1a33671..66bee94775 100644 --- a/babashka-bin/.CI/config +++ b/babashka-bin/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1726212126 CI_PKGBUILD_SOURCE=aur diff --git a/babashka-bin/.SRCINFO b/babashka-bin/.SRCINFO index 5ae9051f3b..fb01a94c3f 100644 --- a/babashka-bin/.SRCINFO +++ b/babashka-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = babashka-bin pkgdesc = A Clojure babashka for the grey areas of Bash. - pkgver = 1.4.192 + pkgver = 1.12.195 pkgrel = 1 url = https://github.com/borkdude/babashka arch = x86_64 @@ -10,9 +10,9 @@ pkgbase = babashka-bin depends = zlib provides = babashka conflicts = babashka - source_x86_64 = babashka-bin-1.4.192-linux-amd64-static.tar.gz::https://github.com/borkdude/babashka/releases/download/v1.4.192/babashka-1.4.192-linux-amd64-static.tar.gz - sha256sums_x86_64 = d8371697a727495749f9481414a2fdba5fe702dfc1b74a8ec58195f0a646abd5 - source_aarch64 = babashka-bin-1.4.192-linux-aarch64-static.tar.gz::https://github.com/borkdude/babashka/releases/download/v1.4.192/babashka-1.4.192-linux-aarch64-static.tar.gz - sha256sums_aarch64 = da4a7660ba5449922db46bc74966f2bb1041340edaf1b107fd6af66464764e97 + source_x86_64 = babashka-bin-1.12.195-linux-amd64-static.tar.gz::https://github.com/borkdude/babashka/releases/download/v1.12.195/babashka-1.12.195-linux-amd64-static.tar.gz + sha256sums_x86_64 = 8308e6bc4dc951e4becc9803790b3df505e3890843943e413a2bbbb471288d92 + source_aarch64 = babashka-bin-1.12.195-linux-aarch64-static.tar.gz::https://github.com/borkdude/babashka/releases/download/v1.12.195/babashka-1.12.195-linux-aarch64-static.tar.gz + sha256sums_aarch64 = 86c64b6cc42f191a522cf1d1d588bcb29e00644f87df949780d8face4231e119 pkgname = babashka-bin diff --git a/babashka-bin/PKGBUILD b/babashka-bin/PKGBUILD index 5c661dd25b..3d9e0bb123 100644 --- a/babashka-bin/PKGBUILD +++ b/babashka-bin/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Rohan Jain pkgname=babashka-bin -pkgver=1.4.192 +pkgver=1.12.195 pkgrel=1 pkgdesc='A Clojure babashka for the grey areas of Bash.' arch=('x86_64' 'aarch64') @@ -15,8 +15,8 @@ conflicts=("${pkgname%-bin}") source_aarch64=("${pkgname}-${pkgver}-linux-aarch64-static.tar.gz::${url}/releases/download/v${pkgver}/${pkgname%-bin}-${pkgver}-linux-aarch64-static.tar.gz") source_x86_64=("${pkgname}-${pkgver}-linux-amd64-static.tar.gz::${url}/releases/download/v${pkgver}/${pkgname%-bin}-${pkgver}-linux-amd64-static.tar.gz") -sha256sums_x86_64=('d8371697a727495749f9481414a2fdba5fe702dfc1b74a8ec58195f0a646abd5') -sha256sums_aarch64=('da4a7660ba5449922db46bc74966f2bb1041340edaf1b107fd6af66464764e97') +sha256sums_x86_64=('8308e6bc4dc951e4becc9803790b3df505e3890843943e413a2bbbb471288d92') +sha256sums_aarch64=('86c64b6cc42f191a522cf1d1d588bcb29e00644f87df949780d8face4231e119') package() { install -Dm755 "${srcdir}/bb" "${pkgdir}/usr/bin/bb" diff --git a/babl-git/.CI/config b/babl-git/.CI/config index 566ce7b7fe..66bee94775 100644 --- a/babl-git/.CI/config +++ b/babl-git/.CI/config @@ -1,4 +1 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1725364187 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=6ecbee3c6ef0a018c31063879a5f25ff1ffca974 diff --git a/baca-ereader-git/.CI/config b/baca-ereader-git/.CI/config index 4ba5d1058e..8471e6a8af 100644 --- a/baca-ereader-git/.CI/config +++ b/baca-ereader-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1719353351 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=13ee794b08a4852f63002e7b0ca6a5c82b4239d4 diff --git a/backintime-git/.CI/config b/backintime-git/.CI/config index 5e75ee0237..66bee94775 100644 --- a/backintime-git/.CI/config +++ b/backintime-git/.CI/config @@ -1,4 +1 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1717577304 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=525da073c6648b17f0acf25a61d7661ee0a53864 diff --git a/backintime/.CI/config b/backintime/.CI/config index 71039bf6d2..66bee94775 100644 --- a/backintime/.CI/config +++ b/backintime/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1723060501 CI_PKGBUILD_SOURCE=aur diff --git a/backintime/.SRCINFO b/backintime/.SRCINFO index 99bdb022cf..0fcb45e2cf 100644 --- a/backintime/.SRCINFO +++ b/backintime/.SRCINFO @@ -1,18 +1,17 @@ pkgbase = backintime - pkgver = 1.5.2 - pkgrel = 1 + pkgver = 1.5.3 + pkgrel = 2 url = https://github.com/bit-team/backintime arch = any license = GPL makedepends = python - source = backintime-1.5.2.tar.gz::https://github.com/bit-team/backintime/archive/refs/tags/v1.5.2.tar.gz - sha256sums = 884fb4ac7299c7bcd016922aa60784d17cc0af7661f0177439c70440ebc346bd + source = backintime-1.5.3.tar.gz::https://github.com/bit-team/backintime/archive/refs/tags/v1.5.3.tar.gz + sha256sums = ba4b28bd9b2f4dd0dae90a1a990ac352880546bb82db3a6176568be3f9de4f46 pkgname = backintime pkgdesc = Simple backup system inspired from the Flyback Project and TimeVault. Qt5 GUI version. install = backintime.install - depends = backintime-cli=1.5.2 - depends = libnotify + depends = backintime-cli=1.5.3 depends = polkit depends = python-dbus depends = python-pyqt6 diff --git a/backintime/PKGBUILD b/backintime/PKGBUILD index 8f072606a3..04c977e49a 100644 --- a/backintime/PKGBUILD +++ b/backintime/PKGBUILD @@ -3,19 +3,19 @@ pkgname=(backintime backintime-cli) _pkgname="backintime" -pkgver=1.5.2 -pkgrel=1 +pkgver=1.5.3 +pkgrel=2 arch=(any) url="https://github.com/bit-team/backintime" license=(GPL) makedepends=(python) #checkdepends=(openssh python-dbus rsync systemd python-pyfakefs oxygen-icons python-pylint) source=("$_pkgname-$pkgver.tar.gz::https://github.com/bit-team/$_pkgname/archive/refs/tags/v$pkgver.tar.gz") -sha256sums=('884fb4ac7299c7bcd016922aa60784d17cc0af7661f0177439c70440ebc346bd') +sha256sums=('ba4b28bd9b2f4dd0dae90a1a990ac352880546bb82db3a6176568be3f9de4f46') -prepare() { - cd "$_pkgname-$pkgver" -} +#prepare() {i +# cd "$_pkgname-$pkgver" +#} build() { cd "$_pkgname-$pkgver/common" @@ -45,7 +45,7 @@ package_backintime-cli() { package_backintime() { pkgdesc="Simple backup system inspired from the Flyback Project and TimeVault. Qt5 GUI version." - depends=("backintime-cli=$pkgver" libnotify polkit python-dbus python-pyqt6 xorg-xdpyinfo sshfs) + depends=("backintime-cli=$pkgver" polkit python-dbus python-pyqt6 xorg-xdpyinfo sshfs) # note users can optionally install EITHER kompare OR meld but not both! optdepends=('kompare: diff/patch frontend' 'meld: diff/patch frontend' diff --git a/backintime/fix.patch b/backintime/fix.patch deleted file mode 100644 index e6b7fd430a..0000000000 --- a/backintime/fix.patch +++ /dev/null @@ -1,21 +0,0 @@ -From 3b6de69e076ebeed6421312575c06dc8f762a335 Mon Sep 17 00:00:00 2001 -From: aryoda -Date: Fri, 2 Feb 2024 19:00:51 +0100 -Subject: [PATCH] Fix bug #1630: "make install" ignored $(DEST) in file - migration part - -PR #1633 ---- -diff --git a/qt/configure b/qt/configure -index 0c4d3297..ac6cc873 100755 ---- a/qt/configure -+++ b/qt/configure -@@ -149,7 +149,7 @@ printf "install:\n" >> ${MAKEFILE} - - # Migration - printf "\t#clean-up installed old files that were renamed or moved in later BiT versions\n" >> ${MAKEFILE} --printf "\trm -f /etc/dbus-1/system.d/net.launchpad.backintime.serviceHelper.conf\n" >> ${MAKEFILE} -+printf "\trm -f \$(DEST)/etc/dbus-1/system.d/net.launchpad.backintime.serviceHelper.conf\n" >> ${MAKEFILE} - printf "\trm -f \$(DEST)/share/backintime/plugins/qt4plugin.py\n" >> ${MAKEFILE} - addNewline - diff --git a/badwolf/.CI/config b/badwolf/.CI/config index 62cb73f2d4..66bee94775 100644 --- a/badwolf/.CI/config +++ b/badwolf/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1695151222 CI_PKGBUILD_SOURCE=aur diff --git a/balena-etcher/.CI/config b/balena-etcher/.CI/config index 85334f0fa6..8e83b31262 100644 --- a/balena-etcher/.CI/config +++ b/balena-etcher/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1721562827 +CI_PACKAGE_BUMP=2:1.19.25-3/3 CI_PKGBUILD_SOURCE=aur diff --git a/balena-etcher/.SRCINFO b/balena-etcher/.SRCINFO index 024dfb809d..eed83c081e 100644 --- a/balena-etcher/.SRCINFO +++ b/balena-etcher/.SRCINFO @@ -1,21 +1,21 @@ pkgbase = balena-etcher pkgdesc = Flash OS images to SD cards & USB drives, safely and easily - pkgver = 1.19.22 - pkgrel = 1 + pkgver = 1.19.25 + pkgrel = 3 epoch = 2 url = https://balena.io/etcher arch = x86_64 arch = i686 arch = armv7h arch = aarch64 - license = Apache + license = Apache-2.0 makedepends = npm makedepends = python makedepends = jq makedepends = moreutils makedepends = python-setuptools makedepends = git - depends = electron30 + depends = electron33 depends = nodejs optdepends = libnotify: for notifications conflicts = etcher @@ -23,12 +23,12 @@ pkgbase = balena-etcher conflicts = etcher-bin options = !debug options = !strip - source = https://github.com/balena-io/etcher/archive/refs/tags/v1.19.22.tar.gz + source = https://github.com/balena-io/etcher/archive/refs/tags/v1.19.25.tar.gz source = balena-etcher.desktop source = balena-etcher source = etcher-util source = skip-build-util.patch - sha256sums = 25e218ac7af3a843db37ad0205fed6beb84afe16ec3af123e93106120594a419 + sha256sums = 2571d41bc23d0439019683df3352b5251638284908e1ff5a6e5761d82731d5a2 sha256sums = 6c5fb48aeb636272689c86d7cf9beea4515214636bc617a61c3e8387628b3415 sha256sums = 7482eb18af030eb6d2b44850f23ecb99cd9198f642ac3b22b2f9f2ef0c8944d4 sha256sums = f27e34eaec0d2cb74fee259ff32c2cbd1dae36d2046d2b3e97394b91f47adace diff --git a/balena-etcher/PKGBUILD b/balena-etcher/PKGBUILD index 0e36fa9f24..ff35bf297a 100644 --- a/balena-etcher/PKGBUILD +++ b/balena-etcher/PKGBUILD @@ -4,15 +4,15 @@ pkgname=balena-etcher _pkgname=etcher -pkgver=1.19.22 -pkgrel=1 +pkgver=1.19.25 +pkgrel=3 epoch=2 pkgdesc='Flash OS images to SD cards & USB drives, safely and easily' arch=('x86_64' 'i686' 'armv7h' 'aarch64') _github_url='https://github.com/balena-io/etcher' url='https://balena.io/etcher' -license=(Apache) -_electron=electron30 +license=(Apache-2.0) +_electron=electron33 depends=("${_electron}" "nodejs") makedepends=("npm" "python" 'jq' 'moreutils' 'python-setuptools' 'git') optdepends=("libnotify: for notifications") @@ -27,7 +27,7 @@ source=("https://github.com/balena-io/etcher/archive/refs/tags/v${pkgver}.tar.gz "etcher-util" 'skip-build-util.patch' ) -sha256sums=('25e218ac7af3a843db37ad0205fed6beb84afe16ec3af123e93106120594a419' +sha256sums=('2571d41bc23d0439019683df3352b5251638284908e1ff5a6e5761d82731d5a2' '6c5fb48aeb636272689c86d7cf9beea4515214636bc617a61c3e8387628b3415' '7482eb18af030eb6d2b44850f23ecb99cd9198f642ac3b22b2f9f2ef0c8944d4' 'f27e34eaec0d2cb74fee259ff32c2cbd1dae36d2046d2b3e97394b91f47adace' @@ -40,6 +40,7 @@ prepare() { jq ".devDependencies.electron = \"$electronVersion\"" package.json | sponge package.json jq ".build.electronDist = \"$electronDist\"" package.json | sponge package.json jq ".build.electronVersion = \"$electronVersion\"" package.json | sponge package.json + jq '.+= { "overrides": {"nan": "2.22.0"}}' package.json | sponge package.json sed -i lib/gui/etcher.ts -e "s|process.resourcesPath|'/usr/lib/${pkgname}'|" sed -i ${srcdir}/${pkgname} -e "s|__ELECTRON__|${_electron}|" } @@ -58,6 +59,32 @@ build() { npm install --prefix . etcher-sdk ws lodash } +__clean_modules() { + local __arch_remove + __arch_remove=arm64 + if [[ "$CARCH" == "aarch64" ]]; then + __arch_remove=x64 + fi + cd "${pkgdir}/usr/lib/${pkgname}/utils/node_modules" + rm -rf {drivelist,mountutils,xxhash-addon}/build/{config.gypi,Makefile,*.mk,Release/{obj.target,.deps,*.a}} + rm -rf lzma-native/prebuilds/{darwin-{arm64,x64},win32-{ia32,x64},linux-${__arch_remove}} + rm -rf drivelist/node-addon-api/nothing.target.mk + rm -rf usb/prebuilds/{android,win32,darwin}-* + case $CARCH in + x86_64) + rm -rf usb/prebuilds/linux-{arm*,ia32} + ;; + i386) + rm -rf usb/prebuilds/linux-{arm*,x64} + ;; + aarch64) + rm -rf usb/prebuilds/linux-{arm,x64,ia32} + ;; + armv7h) + rm -rf usb/prebuilds/linux-{arm64,x64,ia32,arm/node.napi.armv6.node} + ;; + esac +} package() { cd "${_pkgname}-${pkgver}" @@ -76,4 +103,5 @@ package() { install -Dm644 "assets/iconset/${size}.png" \ "${pkgdir}/usr/share/icons/hicolor/${size}/apps/${pkgname}.png" done + __clean_modules } diff --git a/bash-complete-alias/.CI/config b/bash-complete-alias/.CI/config index 94fd52aba7..66bee94775 100644 --- a/bash-complete-alias/.CI/config +++ b/bash-complete-alias/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1630152943 CI_PKGBUILD_SOURCE=aur diff --git a/basilisk-bin/.CI/config b/basilisk-bin/.CI/config index 0fbf9ec75f..66bee94775 100644 --- a/basilisk-bin/.CI/config +++ b/basilisk-bin/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1726697494 CI_PKGBUILD_SOURCE=aur diff --git a/basilisk-bin/.SRCINFO b/basilisk-bin/.SRCINFO index f38bf44b95..7f8a9a2a33 100644 --- a/basilisk-bin/.SRCINFO +++ b/basilisk-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = basilisk-bin pkgdesc = A XUL-based web-browser demonstrating the Unified XUL Platform (UXP). - pkgver = 52.9.2024.09.13 + pkgver = 52.9.2024.10.24 pkgrel = 1 epoch = 1 url = https://www.basilisk-browser.org @@ -19,21 +19,21 @@ pkgbase = basilisk-bin optdepends = hunspell: spell checker and morphological analyzer optdepends = hyphen: library for hyphenation and justification optdepends = ffmpeg: record, convert, and stream audio and video - provides = basilisk=52.9.2024.09.13 + provides = basilisk=52.9.2024.10.24 conflicts = basilisk source = basilisk.desktop sha256sums = c4223e966bc404467fece4a524cc2db3e99c12455087da2ade9a47b8d99d3a45 - source_x86_64 = https://archive.basilisk-browser.org/2024.09.13/linux/x86_64/gtk3/basilisk-20240912184357.linux-x86_64-gtk3.tar.xz - source_x86_64 = https://archive.basilisk-browser.org/2024.09.13/linux/x86_64/gtk3/basilisk-20240912184357.linux-x86_64-gtk3.json - sha256sums_x86_64 = ac680d08e163aa0f102e5e45b06bfefced7ca058ba6651832c9020cc2f7de196 - sha256sums_x86_64 = eadfcbddbe71a735510ebf8576268ec553ee72fb0570ce3a957322cf3d4f96ea - source_aarch64 = https://archive.basilisk-browser.org/2024.09.13/linux/aarch64/gtk3/basilisk-20240912185821.linux-aarch64-gtk3.tar.xz - source_aarch64 = https://archive.basilisk-browser.org/2024.09.13/linux/aarch64/gtk3/basilisk-20240912185821.linux-aarch64-gtk3.json - sha256sums_aarch64 = ac8ba9bb88f42532b554b4913724ed5b8fa75e2b7f0366548a40510144ae8e6f - sha256sums_aarch64 = 6551b6aed384175a313e8b9f4f38e99c84f5b3ceaebb65c8b77f478a569f9a8a - source_i686 = https://archive.basilisk-browser.org/2024.09.13/linux/i686/gtk3/basilisk-20240912184341.linux-i686-gtk3.tar.xz - source_i686 = https://archive.basilisk-browser.org/2024.09.13/linux/i686/gtk3/basilisk-20240912184341.linux-i686-gtk3.json - sha256sums_i686 = 5f96921ed30e4746213eae5c77cfee219d36ac9b0115228db7e563e8a7dc71ce - sha256sums_i686 = 68f3ce6892501826afb499809d50ad8de326cb5ad0225a50abb370d727120b76 + source_x86_64 = https://archive.basilisk-browser.org/2024.10.24/linux/x86_64/gtk3/basilisk-20241023020251.linux-x86_64-gtk3.tar.xz + source_x86_64 = https://archive.basilisk-browser.org/2024.10.24/linux/x86_64/gtk3/basilisk-20241023020251.linux-x86_64-gtk3.json + sha256sums_x86_64 = 429d9a71aab0db3cb1d923a2a302ca3e72574960ade815ca2fa9a58f6de7de99 + sha256sums_x86_64 = eef976b2893a7b0342692e617a6391f3dd8f30d690c3075aeaf1b9fcf1cd76b4 + source_aarch64 = https://archive.basilisk-browser.org/2024.10.24/linux/aarch64/gtk3/basilisk-20241023135454.linux-aarch64-gtk3.tar.xz + source_aarch64 = https://archive.basilisk-browser.org/2024.10.24/linux/aarch64/gtk3/basilisk-20241023135454.linux-aarch64-gtk3.json + sha256sums_aarch64 = 82313299cf2fa2ac385132f11ef9d34966da541a984758fcaaf36ef83f5c3957 + sha256sums_aarch64 = 3d00e632c3af28f4cbf295cbd5710f6b0bce62bd017017bede5ee976845effa3 + source_i686 = https://archive.basilisk-browser.org/2024.10.24/linux/i686/gtk3/basilisk-20241023020234.linux-i686-gtk3.tar.xz + source_i686 = https://archive.basilisk-browser.org/2024.10.24/linux/i686/gtk3/basilisk-20241023020234.linux-i686-gtk3.json + sha256sums_i686 = 668c17b8dc33930d2e09f793add8204be9642a1e0a39b38c90c39ad58266ccf7 + sha256sums_i686 = 5e6834bcdbf8a317baead07f2b0b59e3ccc9ed1339c9dfd2d2c40cf60e912c49 pkgname = basilisk-bin diff --git a/basilisk-bin/PKGBUILD b/basilisk-bin/PKGBUILD index 503f2198ef..821b6285a5 100644 --- a/basilisk-bin/PKGBUILD +++ b/basilisk-bin/PKGBUILD @@ -4,11 +4,11 @@ _pkgname=basilisk pkgname=${_pkgname}-bin epoch=1 -_buildid_x86_64=20240912184357 -_buildid_i686=20240912184341 -_buildid_aarch64=20240912185821 -_date=2024.09.13 -pkgver=52.9.2024.09.13 +_buildid_x86_64=20241023020251 +_buildid_i686=20241023020234 +_buildid_aarch64=20241023135454 +_date=2024.10.24 +pkgver=52.9.2024.10.24 pkgrel=1 pkgdesc="A XUL-based web-browser demonstrating the Unified XUL Platform (UXP)." url="https://www.basilisk-browser.org" @@ -23,12 +23,12 @@ source_x86_64=(https://archive.basilisk-browser.org/${_date}/linux/x86_64/gtk3/b source_aarch64=(https://archive.basilisk-browser.org/${_date}/linux/aarch64/gtk3/basilisk-${_buildid_aarch64}.linux-aarch64-gtk3.{tar.xz,json}) source_i686=(https://archive.basilisk-browser.org/${_date}/linux/i686/gtk3/basilisk-${_buildid_i686}.linux-i686-gtk3.{tar.xz,json}) sha256sums=('c4223e966bc404467fece4a524cc2db3e99c12455087da2ade9a47b8d99d3a45') -sha256sums_x86_64=('ac680d08e163aa0f102e5e45b06bfefced7ca058ba6651832c9020cc2f7de196' - 'eadfcbddbe71a735510ebf8576268ec553ee72fb0570ce3a957322cf3d4f96ea') -sha256sums_aarch64=('ac8ba9bb88f42532b554b4913724ed5b8fa75e2b7f0366548a40510144ae8e6f' - '6551b6aed384175a313e8b9f4f38e99c84f5b3ceaebb65c8b77f478a569f9a8a') -sha256sums_i686=('5f96921ed30e4746213eae5c77cfee219d36ac9b0115228db7e563e8a7dc71ce' - '68f3ce6892501826afb499809d50ad8de326cb5ad0225a50abb370d727120b76') +sha256sums_x86_64=('429d9a71aab0db3cb1d923a2a302ca3e72574960ade815ca2fa9a58f6de7de99' + 'eef976b2893a7b0342692e617a6391f3dd8f30d690c3075aeaf1b9fcf1cd76b4') +sha256sums_aarch64=('82313299cf2fa2ac385132f11ef9d34966da541a984758fcaaf36ef83f5c3957' + '3d00e632c3af28f4cbf295cbd5710f6b0bce62bd017017bede5ee976845effa3') +sha256sums_i686=('668c17b8dc33930d2e09f793add8204be9642a1e0a39b38c90c39ad58266ccf7' + '5e6834bcdbf8a317baead07f2b0b59e3ccc9ed1339c9dfd2d2c40cf60e912c49') provides=("${_pkgname}=${pkgver}") conflicts=("${_pkgname}") diff --git a/bass-fish/.CI/config b/bass-fish/.CI/config index 6367d17706..1849410d6f 100644 --- a/bass-fish/.CI/config +++ b/bass-fish/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1632786843 +CI_PACKAGE_BUMP=1.0-1/1 CI_PKGBUILD_SOURCE=aur diff --git a/battop/.CI/config b/battop/.CI/config index 63c98ed90d..66bee94775 100644 --- a/battop/.CI/config +++ b/battop/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1633968381 CI_PKGBUILD_SOURCE=aur diff --git a/bauh/.CI/config b/bauh/.CI/config index adcbc9dacf..6bd0e3b039 100644 --- a/bauh/.CI/config +++ b/bauh/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1704918466 +CI_PACKAGE_BUMP=0.10.7-1/1 CI_PKGBUILD_SOURCE=aur diff --git a/bazarr/.CI/config b/bazarr/.CI/config index ee374c03a8..66bee94775 100644 --- a/bazarr/.CI/config +++ b/bazarr/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1726435905 CI_PKGBUILD_SOURCE=aur diff --git a/bazarr/.SRCINFO b/bazarr/.SRCINFO index ace4e85771..fc124be8aa 100644 --- a/bazarr/.SRCINFO +++ b/bazarr/.SRCINFO @@ -1,13 +1,14 @@ pkgbase = bazarr pkgdesc = Subtitle management and download automation for Sonarr and Radarr. - pkgver = 1.4.4 + pkgver = 1.4.5 pkgrel = 1 - url = https://github.com/morpheus65535/bazarr + url = https://www.bazarr.media arch = any - license = GPL3 + license = GPL-3.0-or-later makedepends = unzip - makedepends = python-setuptools - depends = sqlite + depends = bash + depends = ffmpeg + depends = gdk-pixbuf2 depends = python depends = python-gevent depends = python-gevent-websocket @@ -15,19 +16,23 @@ pkgbase = bazarr depends = python-numpy depends = python-pillow depends = python-webrtcvad - depends = ffmpeg + depends = sqlite depends = unrar - noextract = bazarr-1.4.4-beta.38.zip - options = !strip - options = staticlibs - source = bazarr-1.4.4-beta.38.zip::https://github.com/morpheus65535/bazarr/releases/download/v1.4.4-beta.38/bazarr.zip + depends = python-platformdirs + depends = python-ujson + depends = python-greenlet + depends = python-setuptools + depends = python-tomli + noextract = bazarr-1.4.5.zip + options = !debug + source = bazarr-1.4.5.zip::https://github.com/morpheus65535/bazarr/releases/download/v1.4.5/bazarr.zip source = bazarr.service source = bazarr.sysusers source = bazarr.install source = bazarr.tmpfiles - sha256sums = cf94f9355a56bfb4d28e1718a0153648d38050c5af201e3be41615e95fb08655 - sha256sums = 27f84a4c5f59b115ae8b84270f677ab75912c60fe07d54e6d97f001f2ed45cb0 - sha256sums = 92fd48cbd7e5fe3a0388bbe756a52098fc461ef2dc87d9e886452e4f15acdcdc + sha256sums = 629c7d338885d40a52200200ace515ea3a6f1f4be051c49e6fb3945d919beda9 + sha256sums = 2782e250117f7a85110d62472b834316fadcf32ca1874ad01541e7dd9a54215c + sha256sums = 73a60121fd2b7b8f5bad75ec4b0f92552fcae0e29a4b9e6aaf15f86a825a88a3 sha256sums = 573beeac951d427e980332ce4d8645ae2299082e6c9c04f96e2a41a98c3acc60 sha256sums = e7055260d0f3554e8b628d9560d8e12a40f720d76542048df0dfc838db88357b diff --git a/bazarr/.nvchecker.toml b/bazarr/.nvchecker.toml new file mode 100644 index 0000000000..d51289203e --- /dev/null +++ b/bazarr/.nvchecker.toml @@ -0,0 +1,6 @@ +[bazarr] +source = "github" +github = "morpheus65535/bazarr" +prefix = "v" +include_regex = "v(\\d+\\.\\d+\\.\\d+)" +use_latest_release = true diff --git a/bazarr/PKGBUILD b/bazarr/PKGBUILD index b0e164c44f..41a823abf1 100644 --- a/bazarr/PKGBUILD +++ b/bazarr/PKGBUILD @@ -1,21 +1,18 @@ # Maintainer: Donald Webster -# Contributor: Pieter Goetschalckx <3.14.e.ter gmail com> +# Maintainer: txtsd +# Contributor: Pieter Goetschalckx <3.14.e.ter@gmail.com> pkgname=bazarr -pkgver=1.4.4 -_pkgsubver="beta.38" +pkgver=1.4.5 pkgrel=1 pkgdesc="Subtitle management and download automation for Sonarr and Radarr." arch=('any') -url="https://github.com/morpheus65535/bazarr" -license=('GPL3') -options=('!strip' 'staticlibs') -makedepends=( - 'unzip' - 'python-setuptools' -) +url="https://www.bazarr.media" +license=('GPL-3.0-or-later') depends=( - 'sqlite' + 'bash' + 'ffmpeg' + 'gdk-pixbuf2' 'python' 'python-gevent' 'python-gevent-websocket' @@ -23,34 +20,43 @@ depends=( 'python-numpy' 'python-pillow' 'python-webrtcvad' - 'ffmpeg' + 'sqlite' 'unrar' + 'python-platformdirs' + 'python-ujson' + 'python-greenlet' + 'python-setuptools' + 'python-tomli' ) +makedepends=('unzip') +options=('!debug') source=( - "bazarr-${pkgver}-${_pkgsubver}.zip::https://github.com/morpheus65535/bazarr/releases/download/v${pkgver}-${_pkgsubver}/bazarr.zip" + "${pkgname}-${pkgver}.zip::https://github.com/morpheus65535/bazarr/releases/download/v${pkgver}/bazarr.zip" 'bazarr.service' 'bazarr.sysusers' 'bazarr.install' 'bazarr.tmpfiles' ) -noextract=("bazarr-${pkgver}-${_pkgsubver}.zip") - -sha256sums=('cf94f9355a56bfb4d28e1718a0153648d38050c5af201e3be41615e95fb08655' - '27f84a4c5f59b115ae8b84270f677ab75912c60fe07d54e6d97f001f2ed45cb0' - '92fd48cbd7e5fe3a0388bbe756a52098fc461ef2dc87d9e886452e4f15acdcdc' +noextract=("${pkgname}-${pkgver}.zip") +sha256sums=('629c7d338885d40a52200200ace515ea3a6f1f4be051c49e6fb3945d919beda9' + '2782e250117f7a85110d62472b834316fadcf32ca1874ad01541e7dd9a54215c' + '73a60121fd2b7b8f5bad75ec4b0f92552fcae0e29a4b9e6aaf15f86a825a88a3' '573beeac951d427e980332ce4d8645ae2299082e6c9c04f96e2a41a98c3acc60' 'e7055260d0f3554e8b628d9560d8e12a40f720d76542048df0dfc838db88357b') prepare() { - unzip -qq -o -d bazarr-${pkgver}-${_pkgsubver} bazarr-${pkgver}-${_pkgsubver}.zip + unzip -qq -o -d "${pkgname}-${pkgver}" "${pkgname}-${pkgver}.zip" } package() { - install -d -m 755 "${pkgdir}/usr/lib/bazarr" + local _pyver="$(python -c 'import sys; print("%i.%i" % sys.version_info[:2])')" + local _pdir="${pkgdir}/usr/lib/python${_pyver}/site-packages/${pkgname}" - cp -dpr --no-preserve=ownership "${srcdir}/bazarr-${pkgver}-${_pkgsubver}/"* "${pkgdir}/usr/lib/bazarr" + install -dm755 "${_pdir}" + cp -dpr --no-preserve=ownership "${srcdir}/${pkgname}-${pkgver}/"* "${_pdir}" + python -m compileall "${pkgdir}" - install -D -m 644 "${srcdir}/bazarr.service" "${pkgdir}/usr/lib/systemd/system/bazarr.service" - install -D -m 644 "${srcdir}/bazarr.sysusers" "${pkgdir}/usr/lib/sysusers.d/bazarr.conf" - install -D -m 644 "${srcdir}/bazarr.tmpfiles" "${pkgdir}/usr/lib/tmpfiles.d/bazarr.conf" + install -Dm644 "${srcdir}/bazarr.service" "${pkgdir}/usr/lib/systemd/system/bazarr.service" + install -Dm644 "${srcdir}/bazarr.sysusers" "${pkgdir}/usr/lib/sysusers.d/bazarr.conf" + install -Dm644 "${srcdir}/bazarr.tmpfiles" "${pkgdir}/usr/lib/tmpfiles.d/bazarr.conf" } diff --git a/bazarr/bazarr.service b/bazarr/bazarr.service index ed3e28b0eb..bedd03318a 100644 --- a/bazarr/bazarr.service +++ b/bazarr/bazarr.service @@ -7,17 +7,19 @@ # UMask=002 [Unit] -Description=Bazarr Service -After=network.target +Description=Bazarr Daemon +Wants=network-online.target +After=network-online.target [Service] +Type=simple User=bazarr Group=bazarr -Type=simple -KillSignal=SIGINT -ExecStart=/usr/bin/python /usr/lib/bazarr/bazarr.py --no-update --config /var/lib/bazarr -Restart=on-failure SyslogIdentifier=bazarr +ExecStart=/usr/bin/python /usr/lib/python3.12/site-packages/bazarr/bazarr.py --no-update --config /var/lib/bazarr +Restart=on-failure +RestartSec=5 +KillSignal=SIGINT [Install] WantedBy=multi-user.target diff --git a/bazarr/bazarr.sysusers b/bazarr/bazarr.sysusers index 26c9a17596..ba6542eccb 100644 --- a/bazarr/bazarr.sysusers +++ b/bazarr/bazarr.sysusers @@ -1 +1,2 @@ -u bazarr - "Bazarr daemon" /usr/lib/bazarr +u bazarr - "Bazarr Daemon" /var/lib/bazarr +g bazarr diff --git a/bazelisk-bin/.CI/config b/bazelisk-bin/.CI/config index 0e02b03b39..66bee94775 100644 --- a/bazelisk-bin/.CI/config +++ b/bazelisk-bin/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1715652056 CI_PKGBUILD_SOURCE=aur diff --git a/bazelisk-bin/.SRCINFO b/bazelisk-bin/.SRCINFO index 18b8d626a1..ad694cad5b 100644 --- a/bazelisk-bin/.SRCINFO +++ b/bazelisk-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = bazelisk-bin pkgdesc = A user-friendly launcher for Bazel - pkgver = 1.20.0 + pkgver = 1.22.1 pkgrel = 1 url = https://github.com/bazelbuild/bazelisk arch = x86_64 @@ -9,7 +9,7 @@ pkgbase = bazelisk-bin provides = bazelisk conflicts = bazel conflicts = bazelisk - source = bazelisk-linux-amd64-1.20.0::https://github.com/bazelbuild/bazelisk/releases/download/v1.20.0/bazelisk-linux-amd64 - sha256sums = d9af1fa808c0529753c3befda75123236a711d971d3485a390507122148773a3 + source = bazelisk-linux-amd64-1.22.1::https://github.com/bazelbuild/bazelisk/releases/download/v1.22.1/bazelisk-linux-amd64 + sha256sums = 8fede4d1fde801590d6e7cf919e705f740768d56ae38d55d473536714719af04 pkgname = bazelisk-bin diff --git a/bazelisk-bin/PKGBUILD b/bazelisk-bin/PKGBUILD index 8a8779201c..b5c5edf8b3 100644 --- a/bazelisk-bin/PKGBUILD +++ b/bazelisk-bin/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Benjamin Denhartog pkgname=bazelisk-bin -pkgver=1.20.0 +pkgver=1.22.1 pkgrel=1 pkgdesc='A user-friendly launcher for Bazel' arch=('x86_64') @@ -15,7 +15,7 @@ conflicts=('bazel' 'bazelisk') source=( "bazelisk-linux-amd64-${pkgver}::https://github.com/bazelbuild/bazelisk/releases/download/v${pkgver}/bazelisk-linux-amd64" ) -sha256sums=('d9af1fa808c0529753c3befda75123236a711d971d3485a390507122148773a3') +sha256sums=('8fede4d1fde801590d6e7cf919e705f740768d56ae38d55d473536714719af04') package() { install -Dm755 "${srcdir}/bazelisk-linux-amd64-${pkgver}" "${pkgdir}/usr/bin/bazelisk" diff --git a/bcache-tools/.CI/config b/bcache-tools/.CI/config index a7bcfa4bdd..21ba3fe317 100644 --- a/bcache-tools/.CI/config +++ b/bcache-tools/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1593673801 +CI_PACKAGE_BUMP=1.1-1/2 CI_PKGBUILD_SOURCE=aur diff --git a/bcachefs-tools-git/.CI/config b/bcachefs-tools-git/.CI/config deleted file mode 100644 index 56b0aa1805..0000000000 --- a/bcachefs-tools-git/.CI/config +++ /dev/null @@ -1,4 +0,0 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1710324733 -CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=bc5d903fdae933fad017d370764e2ae38d58b42d diff --git a/bcachefs-tools-git/.CI/info b/bcachefs-tools-git/.CI/info deleted file mode 100644 index 0d9205d8bd..0000000000 --- a/bcachefs-tools-git/.CI/info +++ /dev/null @@ -1,2 +0,0 @@ -REQ_ORIGIN=github/883 -REQ_REASON=request diff --git a/bcachefs-tools-git/.SRCINFO b/bcachefs-tools-git/.SRCINFO deleted file mode 100644 index 0ee121050e..0000000000 --- a/bcachefs-tools-git/.SRCINFO +++ /dev/null @@ -1,49 +0,0 @@ -pkgbase = bcachefs-tools-git - pkgdesc = BCacheFS filesystem utilities - pkgver = 1339 - pkgrel = 1 - url = https://github.com/koverstreet/bcachefs-tools - install = bcachefs-tools-git.install - arch = x86_64 - license = GPL2 - makedepends = attr - makedepends = cargo - makedepends = clang - makedepends = fuse3 - makedepends = git - makedepends = keyutils - makedepends = libaio - makedepends = libscrypt - makedepends = libsodium - makedepends = liburcu - makedepends = libutil-linux - makedepends = pkgconf - makedepends = python-docutils - makedepends = systemd - makedepends = valgrind - makedepends = zlib - depends = attr - depends = cargo - depends = clang - depends = fuse3 - depends = git - depends = keyutils - depends = libaio - depends = libscrypt - depends = libsodium - depends = liburcu - depends = libutil-linux - depends = pkgconf - depends = python-docutils - depends = systemd - depends = valgrind - depends = zlib - provides = bcachefs-tools - conflicts = bcachefs-tools - options = !strip - source = git+https://github.com/koverstreet/bcachefs-tools - source = add-mkinitcpio-hook-for-Arch.patch - sha512sums = SKIP - sha512sums = 5ebb0c6b17e7a61ccd2c157a0a833bc51e1d66cdf9711c8038c9e695ba22bf4098695658401bef9560ec02722787de0d89e1ccf7b8a716f9eeb136ad2e59daca - -pkgname = bcachefs-tools-git diff --git a/bcachefs-tools-git/PKGBUILD b/bcachefs-tools-git/PKGBUILD deleted file mode 100644 index b07435997c..0000000000 --- a/bcachefs-tools-git/PKGBUILD +++ /dev/null @@ -1,59 +0,0 @@ -# Maintainer: Kyle De'Vir (QuartzDragon) - -pkgname=bcachefs-tools-git -pkgver=1339 -pkgrel=1 -pkgdesc="BCacheFS filesystem utilities" -url="https://github.com/koverstreet/bcachefs-tools" -arch=("x86_64") -license=("GPL2") -install="$pkgname.install" - -provides=(bcachefs-tools) -conflicts=(bcachefs-tools) -dependsarray="attr cargo clang fuse3 git keyutils libaio libscrypt libsodium liburcu libutil-linux pkgconf python-docutils systemd valgrind zlib" -makedepends=(${dependsarray}) -depends=(${dependsarray}) - -options=('!strip') - -_reponame="bcachefs-tools" -_repo_url="https://github.com/koverstreet/$_reponame" - -source=( - "git+$_repo_url" - "add-mkinitcpio-hook-for-Arch.patch" -) -sha512sums=('SKIP' - '5ebb0c6b17e7a61ccd2c157a0a833bc51e1d66cdf9711c8038c9e695ba22bf4098695658401bef9560ec02722787de0d89e1ccf7b8a716f9eeb136ad2e59daca') - -prepare() { - cd "$srcdir/$_reponame" - - PName="add-mkinitcpio-hook-for-Arch.patch" - msg2 "Patching with $PName ..." - patch -Np1 -i "../$PName" -} - -pkgver() { - cd "$srcdir/$_reponame" - - echo "$(git rev-list --count HEAD)" -} - -build() { - cd "$srcdir/$_reponame" - - make -} - -package() { - cd "$srcdir/$_reponame" - - make DESTDIR="$pkgdir" PREFIX="/usr" ROOT_SBINDIR="/usr/bin" INITRAMFS_DIR="/etc/initcpio" install - - install -Dm644 "arch/etc/initcpio/hooks/bcachefs" \ - "$pkgdir/etc/initcpio/hooks/bcachefs" - install -Dm644 "arch/etc/initcpio/install/bcachefs" \ - "$pkgdir/etc/initcpio/install/bcachefs" -} diff --git a/bcachefs-tools-git/add-mkinitcpio-hook-for-Arch.patch b/bcachefs-tools-git/add-mkinitcpio-hook-for-Arch.patch deleted file mode 100644 index 5e06647994..0000000000 --- a/bcachefs-tools-git/add-mkinitcpio-hook-for-Arch.patch +++ /dev/null @@ -1,130 +0,0 @@ -From ad41c2fb76a96f772d75f3b4b7687fcd29aa0574 Mon Sep 17 00:00:00 2001 -From: Christophe B Billheimer -Date: Sat, 28 Jul 2018 22:54:36 -0400 -Subject: [PATCH] add mkinitcpio hook for Arch and sample /etc/mkinitcpio.conf - ---- - arch/etc/initcpio/hooks/bcachefs | 14 +++++++ - arch/etc/initcpio/install/bcachefs | 17 ++++++++ - arch/etc/mkinitcpio.conf | 66 ++++++++++++++++++++++++++++++ - 3 files changed, 97 insertions(+) - create mode 100644 arch/etc/initcpio/hooks/bcachefs - create mode 100644 arch/etc/initcpio/install/bcachefs - create mode 100644 arch/etc/mkinitcpio.conf - -diff --git a/arch/etc/initcpio/hooks/bcachefs b/arch/etc/initcpio/hooks/bcachefs -new file mode 100644 -index 0000000..cc2ed7e ---- /dev/null -+++ b/arch/etc/initcpio/hooks/bcachefs -@@ -0,0 +1,14 @@ -+#!/usr/bin/bash -+ -+run_hook() { -+ -+# check if $root needs unlocking -+if bcachefs unlock -c $root >/dev/null 2>&1; then -+ echo "Unlocking $root:" -+ while true; do -+ bcachefs unlock $root && break -+ done -+fi -+} -+ -+# vim: set ft=sh ts=4 sw=4 et: -diff --git a/arch/etc/initcpio/install/bcachefs b/arch/etc/initcpio/install/bcachefs -new file mode 100644 -index 0000000..67ce186 ---- /dev/null -+++ b/arch/etc/initcpio/install/bcachefs -@@ -0,0 +1,17 @@ -+#!/bin/bash -+ -+build() { -+ add_module "bcachefs" -+ add_binary "bcachefs" -+ -+ add_runscript -+ -+} -+ -+help() { -+ cat <' for -+# help on a given hook. -+# 'base' is _required_ unless you know precisely what you are doing. -+# 'udev' is _required_ in order to automatically load modules -+# 'filesystems' is _required_ unless you specify your fs modules in MODULES -+# Examples: -+## This setup specifies all modules in the MODULES setting above. -+## No raid, lvm2, or encrypted root is needed. -+# HOOKS="base" -+# -+## This setup will autodetect all modules for your system and should -+## work as a sane default -+# HOOKS="base udev autodetect block filesystems" -+# -+## This setup will generate a 'full' image which supports most systems. -+## No autodetection is done. -+# HOOKS="base udev block filesystems" -+# -+## This setup assembles a pata mdadm array with an encrypted root FS. -+## Note: See 'mkinitcpio -H mdadm' for more information on raid devices. -+# HOOKS="base udev block mdadm encrypt filesystems" -+# -+## This setup loads an lvm2 volume group on a usb device. -+# HOOKS="base udev block lvm2 filesystems" -+# -+## NOTE: If you have /usr on a separate partition, you MUST include the -+# usr, fsck and shutdown hooks. -+HOOKS=(base udev autodetect modconf block filesystems bcachefs keyboard fsck) -+ -+# COMPRESSION -+# Use this to compress the initramfs image. By default, gzip compression -+# is used. Use 'cat' to create an uncompressed image. -+#COMPRESSION="gzip" -+#COMPRESSION="bzip2" -+#COMPRESSION="lzma" -+#COMPRESSION="xz" -+#COMPRESSION="lzop" -+#COMPRESSION="lz4" -+ -+# COMPRESSION_OPTIONS -+# Additional options for the compressor -+#COMPRESSION_OPTIONS="" - diff --git a/bcachefs-tools-git/bcachefs-tools-git.install b/bcachefs-tools-git/bcachefs-tools-git.install deleted file mode 100644 index 6baeb4ae71..0000000000 --- a/bcachefs-tools-git/bcachefs-tools-git.install +++ /dev/null @@ -1,16 +0,0 @@ -post_upgrade() { - echo "If you haven't already, please manually add 'bcachefs' to mkinitcpio.conf variables 'MODULES=()' and 'HOOKS=()', and also add '/usr/bin/bcachefs' to 'BINARIES=()'" - echo "and then run 'mkinitcpio -p linux-bcachefs-git'" -} - -post_install() { - echo "Please manually add 'bcachefs' to mkinitcpio.conf variables 'MODULES=()' and 'HOOKS=()', and also add '/usr/bin/bcachefs' to 'BINARIES=()'" - echo "and then run 'mkinitcpio -p linux-bcachefs-git'" -} - -post_remove() { - echo "Please manually remove 'bcachefs' from mkinitcpio.conf variables 'MODULES=()' and 'HOOKS=()', and also remove '/usr/bin/bcachefs' from 'BINARIES=()'" - echo "and then run 'mkinitcpio -p linux-bcachefs-git'" -} - -# vim:set ft=sh ts=8 sts=2 sw=2 et: \ No newline at end of file diff --git a/bdf-unifont/.CI/config b/bdf-unifont/.CI/config index 4ab413c5a2..66bee94775 100644 --- a/bdf-unifont/.CI/config +++ b/bdf-unifont/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1726110458 CI_PKGBUILD_SOURCE=aur diff --git a/beautyline/.CI/config b/beautyline/.CI/config index b2f54df213..8471e6a8af 100644 --- a/beautyline/.CI/config +++ b/beautyline/.CI/config @@ -1,3 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1713807590 CI_PKGBUILD_SOURCE=aur diff --git a/beaver-notes/.CI/config b/beaver-notes/.CI/config index e493c655f5..66bee94775 100644 --- a/beaver-notes/.CI/config +++ b/beaver-notes/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1726950682 CI_PKGBUILD_SOURCE=aur diff --git a/beeper-latest-bin/.CI/config b/beeper-latest-bin/.CI/config index f5ff9958fe..76a347315a 100644 --- a/beeper-latest-bin/.CI/config +++ b/beeper-latest-bin/.CI/config @@ -1,3 +1,2 @@ CI_ON_TRIGGER=check -CI_PKGBUILD_TIMESTAMP=1723038895 CI_PKGBUILD_SOURCE=aur diff --git a/beeper-latest-bin/.SRCINFO b/beeper-latest-bin/.SRCINFO index 348ccc0b9b..7ba2395039 100644 --- a/beeper-latest-bin/.SRCINFO +++ b/beeper-latest-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = beeper-latest-bin pkgdesc = A unified messaging app - pkgver = 3.108.3 + pkgver = 3.110.1 pkgrel = 1 url = https://beeper.com/ arch = x86_64 @@ -9,7 +9,7 @@ pkgbase = beeper-latest-bin conflicts = beeper options = !strip options = !debug - source = beeper-3.108.3x86_64.AppImage::https://download.beeper.com/linux/appImage/x64 + source = beeper-3.110.1x86_64.AppImage::https://download.beeper.com/linux/appImage/x64 sha256sums = SKIP pkgname = beeper-latest-bin diff --git a/beeper-latest-bin/PKGBUILD b/beeper-latest-bin/PKGBUILD index b5aca28016..f75e669949 100644 --- a/beeper-latest-bin/PKGBUILD +++ b/beeper-latest-bin/PKGBUILD @@ -13,27 +13,23 @@ # basic info _pkgname='beeper' pkgname="$_pkgname${_pkgtype:-}" -pkgver=3.108.3 +pkgver=3.110.1 pkgrel=1 pkgdesc="A unified messaging app" url="https://beeper.com/" license=('LicenseRef-beeper') arch=('x86_64') -# main package -_main_package() { - _update_version +options=('!strip' '!debug') +_source_main() { provides=("$_pkgname") conflicts=("$_pkgname") - options=('!strip' '!debug') - source=("$_filename"::"$_dl_url") sha256sums=('SKIP') } -# common functions pkgver() { printf '%s' "${_pkgver:?}" } @@ -123,7 +119,6 @@ END chmod -R u+rwX,go+rX,go-w "$pkgdir" } -# update version _update_version() { : ${_pkgver:=$pkgver} @@ -150,5 +145,5 @@ _update_version() { fi } -# execute -_main_package +_update_version +_source_main diff --git a/betterbird-bin/.CI/config b/betterbird-bin/.CI/config index 9a50a2a9c0..66bee94775 100644 --- a/betterbird-bin/.CI/config +++ b/betterbird-bin/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1726159379 CI_PKGBUILD_SOURCE=aur diff --git a/betterbird-bin/.SRCINFO b/betterbird-bin/.SRCINFO index 6cf08e94a5..68b92366d7 100644 --- a/betterbird-bin/.SRCINFO +++ b/betterbird-bin/.SRCINFO @@ -1,18 +1,18 @@ pkgbase = betterbird-bin pkgdesc = EN-US // Betterbird is a fine-tuned version of Mozilla Thunderbird, Thunderbird on steroids, if you will. - pkgver = 115.15.0 - pkgrel = 2 + pkgver = 115.17.0 + pkgrel = 1 url = https://www.betterbird.eu/index.html arch = x86_64 license = MPL2 depends = dbus-glib depends = hunspell optdepends = hunspell-en_US - provides = betterbird=115.15.0 - source = https://www.betterbird.eu/downloads/LinuxArchive/betterbird-115.15.0-bb32-build2.en-US.linux-x86_64.tar.bz2 + provides = betterbird=115.17.0 + source = https://www.betterbird.eu/downloads/LinuxArchive/betterbird-115.17.0-bb35.en-US.linux-x86_64.tar.bz2 source = betterbird.desktop source = vendor-prefs.js - sha256sums = 7b14e33fa3b0b36871762f490a7cce799fe7d9db7fedb818464c940858a6f8ae + sha256sums = ce35167156b4d0389874be4bc26b63fb059fade57926f6f0b89300b288cdd34c sha256sums = b664d5453512ba1c8a58699d106fb1248991dbae0ee44464484be0886278945b sha256sums = b11745416d2b2f8bac1ccd3dcb99411c7239b067adf9eb973903c448f8747d09 diff --git a/betterbird-bin/PKGBUILD b/betterbird-bin/PKGBUILD index 2390831a56..3acd2acced 100644 --- a/betterbird-bin/PKGBUILD +++ b/betterbird-bin/PKGBUILD @@ -1,9 +1,9 @@ # Maintainer: Posi pkgname=betterbird-bin _pkgname=betterbird -pkgver=115.15.0 -_build=bb32-build2 -pkgrel=2 +pkgver=115.17.0 +_build=bb35 +pkgrel=1 pkgdesc="EN-US // Betterbird is a fine-tuned version of Mozilla Thunderbird, Thunderbird on steroids, if you will." arch=('x86_64') url="https://www.betterbird.eu/index.html" @@ -43,6 +43,6 @@ package() { "$pkgdir"/usr/share/icons/hicolor/${i}x${i}/apps/$_pkgname.png done } -sha256sums=('7b14e33fa3b0b36871762f490a7cce799fe7d9db7fedb818464c940858a6f8ae' +sha256sums=('ce35167156b4d0389874be4bc26b63fb059fade57926f6f0b89300b288cdd34c' 'b664d5453512ba1c8a58699d106fb1248991dbae0ee44464484be0886278945b' 'b11745416d2b2f8bac1ccd3dcb99411c7239b067adf9eb973903c448f8747d09') diff --git a/betterdiscordctl-git/.CI/config b/betterdiscordctl-git/.CI/config index 6bbc963895..498518c290 100644 --- a/betterdiscordctl-git/.CI/config +++ b/betterdiscordctl-git/.CI/config @@ -1,4 +1,3 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1621844264 +CI_PACKAGE_BUMP=2.0.1.r2.g49a26fe-1/2 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=49a26fe82d441fbb8e51b0511969929f05cb2057 diff --git a/betterlockscreen/.CI/config b/betterlockscreen/.CI/config index 12dbddedb0..d88b1cc1f5 100644 --- a/betterlockscreen/.CI/config +++ b/betterlockscreen/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1725034484 +CI_PACKAGE_BUMP=4.4.0-1/1 CI_PKGBUILD_SOURCE=aur diff --git a/bibata-cursor-theme/.CI/config b/bibata-cursor-theme/.CI/config index b26706ad9c..66bee94775 100644 --- a/bibata-cursor-theme/.CI/config +++ b/bibata-cursor-theme/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1718730209 CI_PKGBUILD_SOURCE=aur diff --git a/bibata-cursor-translucent/.CI/config b/bibata-cursor-translucent/.CI/config index c08fccfbf3..66bee94775 100644 --- a/bibata-cursor-translucent/.CI/config +++ b/bibata-cursor-translucent/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1665250628 CI_PKGBUILD_SOURCE=aur diff --git a/bibata-extra-cursor-theme/.CI/config b/bibata-extra-cursor-theme/.CI/config index 75516078c4..66bee94775 100644 --- a/bibata-extra-cursor-theme/.CI/config +++ b/bibata-extra-cursor-theme/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1705782251 CI_PKGBUILD_SOURCE=aur diff --git a/bibata-rainbow-cursor-theme/.CI/config b/bibata-rainbow-cursor-theme/.CI/config index f5632967e7..66bee94775 100644 --- a/bibata-rainbow-cursor-theme/.CI/config +++ b/bibata-rainbow-cursor-theme/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1705782273 CI_PKGBUILD_SOURCE=aur diff --git a/biglybt-extreme-mod/.CI/config b/biglybt-extreme-mod/.CI/config index 8abf150634..66bee94775 100644 --- a/biglybt-extreme-mod/.CI/config +++ b/biglybt-extreme-mod/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1671835615 CI_PKGBUILD_SOURCE=aur diff --git a/biglybt/.CI/config b/biglybt/.CI/config index 64bff6fbfd..66bee94775 100644 --- a/biglybt/.CI/config +++ b/biglybt/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1713991763 CI_PKGBUILD_SOURCE=aur diff --git a/biglybt/.SRCINFO b/biglybt/.SRCINFO index 6e0812e3c7..90af36e381 100644 --- a/biglybt/.SRCINFO +++ b/biglybt/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = biglybt pkgdesc = Feature-filled Bittorrent client based on the Azureus project - pkgver = 3.6.0.0 + pkgver = 3.7.0.0 pkgrel = 1 url = https://www.biglybt.com/ install = biglybt.install @@ -14,7 +14,7 @@ pkgbase = biglybt optdepends = libappindicator-gtk3 optdepends = ttf-dejavu options = !strip - source = GitHub_BiglyBT_Installer_3.6.0.0.sh::https://github.com/BiglySoftware/BiglyBT/releases/download/v3.6.0.0/GitHub_BiglyBT_Installer.sh - sha256sums = 8c69e3f3d299470a3b0ed28bb7ca28305f701c7d734036c02b9db2655021e970 + source = GitHub_BiglyBT_Installer_3.7.0.0.sh::https://github.com/BiglySoftware/BiglyBT/releases/download/v3.7.0.0/GitHub_BiglyBT_Installer.sh + sha256sums = 054bf72d0ae2dc2f927a92e2aa6379d038ba37aaa260a1c2680523d4643babe6 pkgname = biglybt diff --git a/biglybt/PKGBUILD b/biglybt/PKGBUILD index 48a0a1761c..dae45511f7 100644 --- a/biglybt/PKGBUILD +++ b/biglybt/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Det pkgname=biglybt -pkgver=3.6.0.0 +pkgver=3.7.0.0 pkgrel=1 pkgdesc="Feature-filled Bittorrent client based on the Azureus project" arch=('x86_64' 'armv7h') @@ -13,7 +13,7 @@ optdepends=('jna' 'libappindicator-gtk3' 'ttf-dejavu') options=('!strip') install=$pkgname.install source=("GitHub_BiglyBT_Installer_$pkgver.sh::https://github.com/BiglySoftware/BiglyBT/releases/download/v$pkgver/GitHub_BiglyBT_Installer.sh") -sha256sums=('8c69e3f3d299470a3b0ed28bb7ca28305f701c7d734036c02b9db2655021e970') +sha256sums=('054bf72d0ae2dc2f927a92e2aa6379d038ba37aaa260a1c2680523d4643babe6') package() { if [[ ! -f /usr/bin/javac ]]; then diff --git a/bin86/.CI/config b/bin86/.CI/config index 9d9f9fcfd5..66bee94775 100644 --- a/bin86/.CI/config +++ b/bin86/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1718261174 CI_PKGBUILD_SOURCE=aur diff --git a/binder_linux-dkms/.CI/config b/binder_linux-dkms/.CI/config index 6919c43fa5..66bee94775 100644 --- a/binder_linux-dkms/.CI/config +++ b/binder_linux-dkms/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1709559883 CI_PKGBUILD_SOURCE=aur diff --git a/bindfs/.CI/config b/bindfs/.CI/config index 93bb6d7696..66bee94775 100644 --- a/bindfs/.CI/config +++ b/bindfs/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1701115271 CI_PKGBUILD_SOURCE=aur diff --git a/biome/.CI/config b/biome/.CI/config index d6a0438fc5..66bee94775 100644 --- a/biome/.CI/config +++ b/biome/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1726788166 CI_PKGBUILD_SOURCE=aur diff --git a/biome/.SRCINFO b/biome/.SRCINFO index b349a65f1a..1c7139e9ed 100644 --- a/biome/.SRCINFO +++ b/biome/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = biome pkgdesc = Formatter, linter, and more for Javascript, Typescript, JSON, and CSS - pkgver = 1.9.2 + pkgver = 1.9.4 pkgrel = 1 url = https://biomejs.dev arch = x86_64 @@ -9,7 +9,7 @@ pkgbase = biome depends = gcc-libs depends = glibc replaces = rome - source = https://github.com/biomejs/biome/archive/cli/v1.9.2/biome-cli-v1.9.2.tar.gz - sha256sums = 110d03618211a1a5d0bc7f9c31f2e948108a11a0ee22d2f07ddb8e944efeaa05 + source = https://github.com/biomejs/biome/archive/cli/v1.9.4/biome-cli-v1.9.4.tar.gz + sha256sums = fc06a89e1b925e8b1dfaca98f7af1d8e04d27acdcaeff786e2806f8bc26283f9 pkgname = biome diff --git a/biome/PKGBUILD b/biome/PKGBUILD index 81c70b9060..afb3124a0f 100644 --- a/biome/PKGBUILD +++ b/biome/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: pinks pkgname=biome -pkgver=1.9.2 +pkgver=1.9.4 pkgrel=1 pkgdesc='Formatter, linter, and more for Javascript, Typescript, JSON, and CSS' arch=(x86_64) @@ -15,7 +15,7 @@ makedepends=(cargo) replaces=(rome) _archive="$pkgname-cli-v$pkgver" source=("$_url/archive/cli/v$pkgver/$_archive.tar.gz") -sha256sums=('110d03618211a1a5d0bc7f9c31f2e948108a11a0ee22d2f07ddb8e944efeaa05') +sha256sums=('fc06a89e1b925e8b1dfaca98f7af1d8e04d27acdcaeff786e2806f8bc26283f9') prepare() { cd "$_archive/crates/${pkgname}_cli" diff --git a/birdtray/.CI/config b/birdtray/.CI/config index 9fd9bff3ff..66bee94775 100644 --- a/birdtray/.CI/config +++ b/birdtray/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1694695372 CI_PKGBUILD_SOURCE=aur diff --git a/bisq/.CI/config b/bisq/.CI/config index b3f5e7b41d..66bee94775 100644 --- a/bisq/.CI/config +++ b/bisq/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1720963371 CI_PKGBUILD_SOURCE=aur diff --git a/bitwig-studio/.CI/config b/bitwig-studio/.CI/config index 97795882e8..0e7f7c94ab 100644 --- a/bitwig-studio/.CI/config +++ b/bitwig-studio/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1726783453 +CI_PACKAGE_BUMP=5.2.5-1/4 CI_PKGBUILD_SOURCE=aur diff --git a/bitwig-studio/.SRCINFO b/bitwig-studio/.SRCINFO index 7733c457d6..eeb9d5e990 100644 --- a/bitwig-studio/.SRCINFO +++ b/bitwig-studio/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = bitwig-studio pkgdesc = Digital audio workstation for music production, remixing and live performance - pkgver = 5.2.4 + pkgver = 5.2.7 pkgrel = 1 url = https://www.bitwig.com/ arch = x86_64 @@ -18,7 +18,7 @@ pkgbase = bitwig-studio conflicts = bitwig-studio-legacy conflicts = bitwig-8-track options = !strip - source = bitwig-studio-5.2.4.deb::https://www.bitwig.com/dl/Bitwig%20Studio/5.2.4/installer_linux/ - sha256sums = fc9109b6168549d69de478f9b1d0502cbc83769d91a78640961200f918305d1c + source = bitwig-studio-5.2.7.deb::https://www.bitwig.com/dl/Bitwig%20Studio/5.2.7/installer_linux/ + sha256sums = 4f28bba988534398ba7d11e1ae6cf8c875d276271de0fe22b85f4544a46190c2 pkgname = bitwig-studio diff --git a/bitwig-studio/PKGBUILD b/bitwig-studio/PKGBUILD index ba4ffe52a2..f31da920d0 100644 --- a/bitwig-studio/PKGBUILD +++ b/bitwig-studio/PKGBUILD @@ -2,8 +2,8 @@ # Upstream: Bitwig GmbH pkgname='bitwig-studio' -pkgver='5.2.4' -_pkgver='5.2.4' +pkgver='5.2.7' +_pkgver='5.2.7' pkgrel='1' pkgdesc='Digital audio workstation for music production, remixing and live performance' arch=('x86_64') @@ -16,7 +16,7 @@ replaces=() conflicts=('bitwig-studio-legacy' 'bitwig-8-track') options=(!strip) source=("bitwig-studio-${_pkgver}.deb::https://www.bitwig.com/dl/Bitwig%20Studio/${_pkgver}/installer_linux/") -sha256sums=('fc9109b6168549d69de478f9b1d0502cbc83769d91a78640961200f918305d1c') +sha256sums=('4f28bba988534398ba7d11e1ae6cf8c875d276271de0fe22b85f4544a46190c2') package() { # Unpack package contents diff --git a/blackbox-terminal/.CI/config b/blackbox-terminal/.CI/config index 093edcb374..c268b97078 100644 --- a/blackbox-terminal/.CI/config +++ b/blackbox-terminal/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1715821981 +CI_PACKAGE_BUMP=0.14.0-2/1 CI_PKGBUILD_SOURCE=aur diff --git a/blesh-git/.CI/config b/blesh-git/.CI/config index f04f144fe4..66bee94775 100644 --- a/blesh-git/.CI/config +++ b/blesh-git/.CI/config @@ -1,4 +1 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1714231560 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=32f290df78554e22d7ff779d34f1dfec271c16df diff --git a/blesh/.CI/config b/blesh/.CI/config index 56b3d90c3c..66bee94775 100644 --- a/blesh/.CI/config +++ b/blesh/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1714231858 CI_PKGBUILD_SOURCE=aur diff --git a/blobdrop-git/.CI/config b/blobdrop-git/.CI/config index cea4c51d89..8471e6a8af 100644 --- a/blobdrop-git/.CI/config +++ b/blobdrop-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1700409967 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=f2c8e02656e3f7f3e519bda1323342fec90ef4ff diff --git a/blockbench-bin/.CI/config b/blockbench-bin/.CI/config index 6b86083244..66bee94775 100644 --- a/blockbench-bin/.CI/config +++ b/blockbench-bin/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1727065832 CI_PKGBUILD_SOURCE=aur diff --git a/blockbench-bin/.SRCINFO b/blockbench-bin/.SRCINFO index 7509fc8538..82186fd0d3 100644 --- a/blockbench-bin/.SRCINFO +++ b/blockbench-bin/.SRCINFO @@ -1,9 +1,10 @@ pkgbase = blockbench-bin pkgdesc = A low-poly 3D model editor - pkgver = 4.11.0 - pkgrel = 1 - url = https://blockbench.net/ + pkgver = 4.11.2 + pkgrel = 2 + url = https://blockbench.net arch = x86_64 + arch = armv7h license = GPL-3.0-or-later makedepends = gzip depends = alsa-lib @@ -34,7 +35,8 @@ pkgbase = blockbench-bin depends = pango provides = blockbench conflicts = blockbench - source = https://github.com/JannisX11/blockbench/releases/download/v4.11.0/Blockbench_4.11.0.deb - sha256sums = 19431473107f167f0f2324d3b7250e94f89dd30fb4b420cb63d308b62c042358 + options = !debug + source = https://github.com/JannisX11/blockbench/releases/download/v4.11.2/Blockbench_4.11.2.deb + sha256sums = ed52e88f0b96e90a759c8cc5f18ada8d2080799a4a800625917f00a03678b50f pkgname = blockbench-bin diff --git a/blockbench-bin/.nvchecker.toml b/blockbench-bin/.nvchecker.toml index 5a845ad82c..24e79a2562 100644 --- a/blockbench-bin/.nvchecker.toml +++ b/blockbench-bin/.nvchecker.toml @@ -1,6 +1,5 @@ [blockbench-bin] -source = "github" -github = "JannisX11/blockbench" +source = "git" +git = "https://github.com/JannisX11/blockbench.git" prefix = "v" include_regex = "v\\d+\\.\\d+\\.\\d+" -use_max_tag = true diff --git a/blockbench-bin/PKGBUILD b/blockbench-bin/PKGBUILD index 2ab6ee1f54..cce50cb14a 100644 --- a/blockbench-bin/PKGBUILD +++ b/blockbench-bin/PKGBUILD @@ -2,55 +2,56 @@ # Maintainer: Atakku pkgname=blockbench-bin -_pkgname=blockbench -provides=(blockbench) -conflicts=(blockbench) -pkgname_orig=Blockbench -pkgver=4.11.0 -pkgrel=1 -pkgdesc="A low-poly 3D model editor" -arch=('x86_64') -url="https://blockbench.net/" +_pkgname="${pkgname%-bin}" +_pkgname_orig=Blockbench +pkgver=4.11.2 +pkgrel=2 +pkgdesc='A low-poly 3D model editor' +arch=(x86_64 armv7h) +url='https://blockbench.net' license=('GPL-3.0-or-later') -depends=('alsa-lib' - 'at-spi2-core' - 'cairo' - 'dbus' - 'expat' - 'gcc-libs' - 'giblib' - 'glib2' - 'glibc' - 'gtk3' - 'hicolor-icon-theme' - 'imlib2' - 'libcups' - 'libdrm' - 'libx11' - 'libxcb' - 'libxcomposite' - 'libxdamage' - 'libxext' - 'libxfixes' - 'libxkbcommon' - 'libxrandr' - 'mesa' - 'nspr' - 'nss' - 'pango') -makedepends=('gzip') +depends=( + alsa-lib + at-spi2-core + cairo + dbus + expat + gcc-libs + giblib + glib2 + glibc + gtk3 + hicolor-icon-theme + imlib2 + libcups + libdrm + libx11 + libxcb + libxcomposite + libxdamage + libxext + libxfixes + libxkbcommon + libxrandr + mesa + nspr + nss + pango +) +makedepends=(gzip) +provides=("${_pkgname}") +conflicts=("${_pkgname}") +options=(!debug) source=("https://github.com/JannisX11/blockbench/releases/download/v${pkgver}/Blockbench_${pkgver}.deb") -sha256sums=('19431473107f167f0f2324d3b7250e94f89dd30fb4b420cb63d308b62c042358') +sha256sums=('ed52e88f0b96e90a759c8cc5f18ada8d2080799a4a800625917f00a03678b50f') package() { - msg2 "Extracting the data.tar.xz..." bsdtar -xf data.tar.xz -C "${pkgdir}/" - msg2 "Moving the files..." - mv "${pkgdir}/opt/${pkgname_orig}" "${pkgdir}/opt/${_pkgname}" + mv "${pkgdir}/opt/${_pkgname_orig}" "${pkgdir}/opt/${_pkgname}" gzip -d "${pkgdir}/usr/share/doc/${_pkgname}/changelog.gz" - sed -i "s:/opt/${pkgname_orig}:/opt/${_pkgname}:" "${pkgdir}/usr/share/applications/${_pkgname}.desktop" + sed -i "s:/opt/${_pkgname_orig}:/opt/${_pkgname}:" "${pkgdir}/usr/share/applications/${_pkgname}.desktop" mkdir -p "${pkgdir}/usr/bin" ln -s "/opt/${_pkgname}/${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}" diff --git a/blockbench-git/.CI/config b/blockbench-git/.CI/config index ce6c243c24..66bee94775 100644 --- a/blockbench-git/.CI/config +++ b/blockbench-git/.CI/config @@ -1,4 +1 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1727065845 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=310bab76a44f0fc528aa0ca8fa1363db7c5cea38 diff --git a/blockbench-git/.SRCINFO b/blockbench-git/.SRCINFO index 4064427ab0..5f942a86aa 100644 --- a/blockbench-git/.SRCINFO +++ b/blockbench-git/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = blockbench-git pkgdesc = A low-poly 3D model editor (git version) - pkgver = 4.11.0.r2.g3d18b5cb - pkgrel = 1 + pkgver = 4.11.2.r1.g0dc5a949 + pkgrel = 2 url = https://github.com/JannisX11/blockbench arch = x86_64 arch = aarch64 @@ -9,16 +9,17 @@ pkgbase = blockbench-git makedepends = git makedepends = npm depends = electron - depends = giblib - depends = libx11 - depends = imlib2 depends = bash + depends = giblib depends = glibc + depends = imlib2 + depends = libx11 provides = blockbench conflicts = blockbench + options = !debug source = blockbench::git+https://github.com/JannisX11/blockbench.git source = blockbench.desktop sha256sums = SKIP - sha256sums = 2dd94f6c807fac6e83fc2176098390100f3c227285671804a855a092c0a2a2e7 + sha256sums = 5a64727fcf696b3497190d441556322b4d0ffb70f560ba8eba6ef79ac5c36e8c pkgname = blockbench-git diff --git a/blockbench-git/PKGBUILD b/blockbench-git/PKGBUILD index 2525ff522d..4ced02a118 100644 --- a/blockbench-git/PKGBUILD +++ b/blockbench-git/PKGBUILD @@ -1,53 +1,68 @@ -# Maintainer: Atakku # Maintainer: txtsd +# Maintainer: Atakku pkgname=blockbench-git -pkgver=4.11.0.r2.g3d18b5cb -pkgrel=1 -pkgdesc="A low-poly 3D model editor (git version)" -arch=('x86_64' 'aarch64') -url=https://github.com/JannisX11/blockbench +_pkgname="${pkgname%-git}" +pkgver=4.11.2.r1.g0dc5a949 +pkgrel=2 +pkgdesc='A low-poly 3D model editor (git version)' +arch=(x86_64 aarch64) +url='https://github.com/JannisX11/blockbench' license=('GPL-3.0-or-later') -provides=(blockbench) -conflicts=(blockbench) - -_pkgname=blockbench _electron=electron - -depends=("${_electron}" 'giblib' 'libx11' 'imlib2' 'bash' 'glibc') +depends=( + "${_electron}" + bash + giblib + glibc + imlib2 + libx11 +) makedepends=(git npm) +provides=("${_pkgname}") +conflicts=("${_pkgname}") +options=(!debug) source=("${_pkgname}::git+https://github.com/JannisX11/blockbench.git" "${_pkgname}.desktop") sha256sums=('SKIP' - '2dd94f6c807fac6e83fc2176098390100f3c227285671804a855a092c0a2a2e7') + '5a64727fcf696b3497190d441556322b4d0ffb70f560ba8eba6ef79ac5c36e8c') pkgver() { - cd "${srcdir}/${_pkgname}" + cd "${_pkgname}" + git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^v//' } prepare() { - cd "${srcdir}/${_pkgname}" + cd "${_pkgname}" + npm install } build() { - cd "${srcdir}/${_pkgname}" + cd "${_pkgname}" + _electronDist=/usr/lib/${_electron} _electronVersion=$(cat ${_electronDist}/version) - npm run dist -- --linux --x64 --dir -c.electronDist=${_electronDist} -c.electronVersion=${_electronVersion} + + npm run dist -- --linux --x64 --dir -c.electronDist=${_electronDist} -c.electronVersion="${_electronVersion}" } + package() { _electronDist=/usr/lib/${_electron} _electronVersion=$(cat ${_electronDist}/version) _electronVersionMajor=${_electronVersion%%.*} _electronDir=${_electronDist}${_electronVersionMajor} + install -d "${pkgdir}/usr/"{bin,share/{pixmaps,applications}} install -d "${pkgdir}/${_electronDist}${_electronVersionMajor}/resources" + echo -e "#!/bin/bash\nexec ${_electron} ${_electronDist}${_electronVersionMajor}/resources/${_pkgname}.asar \"\$@\"" > "${pkgdir}/usr/bin/${_pkgname}" chmod 755 "${pkgdir}/usr/bin/${_pkgname}" - install "${srcdir}/${_pkgname}/icon.png" "${pkgdir}/usr/share/pixmaps/${_pkgname}.png" - install "${srcdir}/${_pkgname}.desktop" "${pkgdir}/usr/share/applications/${_pkgname}.desktop" - install "${srcdir}/${_pkgname}/dist/linux-unpacked/resources/app.asar" "${pkgdir}${_electronDist}${_electronVersionMajor}/resources/${_pkgname}.asar" - cp -r "${srcdir}/${_pkgname}/dist/linux-unpacked/resources/app.asar.unpacked" "${pkgdir}${_electronDist}${_electronVersionMajor}/resources/${_pkgname}.asar.unpacked" + + install "${_pkgname}/icon.png" "${pkgdir}/usr/share/pixmaps/${_pkgname}.png" + install "${_pkgname}.desktop" "${pkgdir}/usr/share/applications/${_pkgname}.desktop" + install "${_pkgname}/dist/linux-unpacked/resources/app.asar" "${pkgdir}${_electronDist}${_electronVersionMajor}/resources/${_pkgname}.asar" + + cp -r "${_pkgname}/dist/linux-unpacked/resources/app.asar.unpacked" "${pkgdir}${_electronDist}${_electronVersionMajor}/resources/${_pkgname}.asar.unpacked" } diff --git a/blockbench-git/blockbench.desktop b/blockbench-git/blockbench.desktop index 45c65fb4fe..20fcb21396 100644 --- a/blockbench-git/blockbench.desktop +++ b/blockbench-git/blockbench.desktop @@ -5,5 +5,5 @@ Terminal=false Type=Application Icon=blockbench StartupWMClass=Blockbench -Comment=Low-poly modeling and animation software +Comment=A low-poly 3D model editor Categories=Graphics;3DGraphics; diff --git a/blockout2/.CI/config b/blockout2/.CI/config index 507438a7c2..9a14d0dae3 100644 --- a/blockout2/.CI/config +++ b/blockout2/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1654175186 +CI_PACKAGE_BUMP=2.5-2/5 CI_PKGBUILD_SOURCE=aur diff --git a/bluemail/.CI/config b/bluemail/.CI/config index 0106b0c2d3..d06354b79b 100644 --- a/bluemail/.CI/config +++ b/bluemail/.CI/config @@ -1,3 +1,2 @@ CI_ON_TRIGGER=check -BUILDER_CACHE_SOURCES=true CI_PKGBUILD_SOURCE=custom diff --git a/bluemail/.SRCINFO b/bluemail/.SRCINFO index f24aca549d..9140230325 100644 --- a/bluemail/.SRCINFO +++ b/bluemail/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = bluemail pkgdesc = BlueMail is a free, secure, universal email app, capable of managing an unlimited number of mail accounts - pkgver = 1.137.2 - pkgrel = 3 + pkgver = 1.140.34 + pkgrel = 1 url = https://snapcraft.io/bluemail arch = x86_64 license = custom diff --git a/bluemail/PKGBUILD b/bluemail/PKGBUILD index fd5fbd086e..5c55020ec1 100644 --- a/bluemail/PKGBUILD +++ b/bluemail/PKGBUILD @@ -1,4 +1,4 @@ -# Maintainer: +# Maintainer: aur.chaotic.cx ## links # https://www.bluemail.me @@ -6,8 +6,8 @@ _pkgname="bluemail" _snapname="bluemail" pkgname="$_pkgname" -pkgver=1.137.2 -pkgrel=3 +pkgver=1.140.34 +pkgrel=1 pkgdesc="BlueMail is a free, secure, universal email app, capable of managing an unlimited number of mail accounts" url="https://snapcraft.io/$_snapname" arch=('x86_64') diff --git a/bluespec-bdw-git/.CI/config b/bluespec-bdw-git/.CI/config index cecd9b85b3..5cbed27f7b 100644 --- a/bluespec-bdw-git/.CI/config +++ b/bluespec-bdw-git/.CI/config @@ -1,4 +1,2 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1636304163 +CI_PACKAGE_BUMP=r17.666b9fa-1/1 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=666b9fafc8941a4e36c39a5d62f3a4aebdf0e2da diff --git a/bluespec-contrib-git/.CI/config b/bluespec-contrib-git/.CI/config index 623134dfbc..13c9e1bab0 100644 --- a/bluespec-contrib-git/.CI/config +++ b/bluespec-contrib-git/.CI/config @@ -1,4 +1,2 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1620188267 +CI_PACKAGE_BUMP=r41.9ecbcc3-1/1 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=24f5c4eadb0c3bca396a9cacfe4c27d6b37f75fd diff --git a/bluespec-contrib-git/.CI/prepare b/bluespec-contrib-git/.CI/prepare old mode 100755 new mode 100644 diff --git a/bluespec-git/.CI/config b/bluespec-git/.CI/config index a960010de4..80f0cae7c8 100644 --- a/bluespec-git/.CI/config +++ b/bluespec-git/.CI/config @@ -1,4 +1,3 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1717257539 +CI_PACKAGE_BUMP=r863.5b0c58f9-1/2 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=6f29814853d0a2549158a1910b1294643dd107fb diff --git a/bluespec-git/.CI/prepare b/bluespec-git/.CI/prepare new file mode 100644 index 0000000000..8be63e2a4d --- /dev/null +++ b/bluespec-git/.CI/prepare @@ -0,0 +1,4 @@ +#!/usr/bin/env sh + +# prevent ghc heap overflow +sed -E -e '/GHCRTSFLAGS=/s&-M\S+\b&&' -i PKGBUILD diff --git a/bluetooth-autoconnect/.CI/config b/bluetooth-autoconnect/.CI/config index ef1794a74f..6976e34b9a 100644 --- a/bluetooth-autoconnect/.CI/config +++ b/bluetooth-autoconnect/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1617282452 +CI_PACKAGE_BUMP=1.3-1/5 CI_PKGBUILD_SOURCE=aur diff --git a/boca/.CI/config b/boca/.CI/config index acf099a84d..6c6d8f28da 100644 --- a/boca/.CI/config +++ b/boca/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1705782371 +CI_PACKAGE_BUMP=1:1.0.7-1/4 CI_PKGBUILD_SOURCE=aur diff --git a/bochs/.CI/config b/bochs/.CI/config index db9365f61c..66bee94775 100644 --- a/bochs/.CI/config +++ b/bochs/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1712853393 CI_PKGBUILD_SOURCE=aur diff --git a/bolt-launcher/.CI/config b/bolt-launcher/.CI/config index 3b2f9cc145..8471e6a8af 100644 --- a/bolt-launcher/.CI/config +++ b/bolt-launcher/.CI/config @@ -1,3 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1715536039 CI_PKGBUILD_SOURCE=aur diff --git a/bolt-launcher/.SRCINFO b/bolt-launcher/.SRCINFO index 8ea13f5baf..2f2e2e0456 100644 --- a/bolt-launcher/.SRCINFO +++ b/bolt-launcher/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = bolt-launcher pkgdesc = Free open-source third-party implementation of the Jagex Launcher - pkgver = 0.9.0 + pkgver = 0.10.0 pkgrel = 1 url = https://bolt.adamcake.com/ arch = x86_64 @@ -36,7 +36,7 @@ pkgbase = bolt-launcher optdepends = jre17-openjdk: runelite/hdos optdepends = gtk2: rs3 optdepends = openssl-1.1: rs3 - source = git+https://github.com/Adamcake/Bolt.git#tag=0.9.0 + source = git+https://github.com/Adamcake/Bolt.git#tag=0.10.0 source = https://adamcake.com/cef/cef-114.0.5735.134-linux-x86_64-minimal-ungoogled.tar.gz source = fmt.patch source = cef-no-fortify.patch diff --git a/bolt-launcher/PKGBUILD b/bolt-launcher/PKGBUILD index 0e78a023b8..235afa613a 100644 --- a/bolt-launcher/PKGBUILD +++ b/bolt-launcher/PKGBUILD @@ -1,6 +1,6 @@ ## Maintainer: Adam pkgname=bolt-launcher -pkgver=0.9.0 +pkgver=0.10.0 pkgrel=1 pkgdesc="Free open-source third-party implementation of the Jagex Launcher" license=('AGPL3') @@ -18,7 +18,7 @@ source=("git+https://github.com/Adamcake/Bolt.git#tag=${pkgver}" "cef-no-fortify.patch") sha256sums=('SKIP' '72c8c43dcb61f778a807eb262b2c2ebcb2e1705756de5a9003484af0663aa924' - '8090a09d4d4c91b5675e6605f7c620b55e15f02136b0109036060a62bc66a490' + 'c6618af7c0a787318c655253eced33baed5cc1b1665c938d2d7dc38a8972876f' '20b60ea029fe7fc95d5b8e3d4dcf035a418267d0b3c445bd821205784b037258') prepare() { diff --git a/bolt-launcher/fmt.patch b/bolt-launcher/fmt.patch index 0466776019..84daa6667e 100644 --- a/bolt-launcher/fmt.patch +++ b/bolt-launcher/fmt.patch @@ -1,40 +1,32 @@ diff --git a/CMakeLists.txt b/CMakeLists.txt -index 05e7105..549909e 100644 +index c134892..cdf7327 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt -@@ -297,14 +297,14 @@ endif() +@@ -316,7 +316,7 @@ endif() # This line needs to be updated manually with any new/deleted object files; cmake discourages GLOBbing source files add_executable(bolt - modules/fmt/src/format.cc src/main.cxx src/browser.cxx src/browser/app.cxx src/browser/client.cxx + src/main.cxx src/browser.cxx src/browser/app.cxx src/browser/client.cxx - ${CLIENT_OS_SPECIFIC} src/browser/resource_handler.cxx src/browser/window_launcher.cxx + src/browser/client_posix.cxx src/browser/resource_handler.cxx src/browser/window_launcher.cxx ${WINDOW_LAUNCHER_OS_SPECIFIC} src/mime.cxx src/file_manager/directory.cxx client_cmake_gen.cxx - ${LIB_IPC_OS_SPECIFIC} ${BOLT_FILE_MANAGER_LAUNCHER_GEN} - ) - - # Various build properties + "${LIBRARY_IPC_OS_SPECIFIC}" ${BOLT_FILE_MANAGER_LAUNCHER_GEN} ${BOLT_STUB_INJECT_CXX} +@@ -331,7 +331,7 @@ endif() + if(BOLT_PLUGIN_LIB_NAME) + target_compile_definitions(bolt PUBLIC BOLT_LIB_NAME="${BOLT_PLUGIN_LIB_NAME}" BOLT_PLUGINS) + endif() -target_include_directories(bolt PUBLIC ${CEF_ROOT} modules/fmt/include) +target_include_directories(bolt PUBLIC ${CEF_ROOT}) set_target_properties(bolt PROPERTIES CXX_STANDARD 20 CXX_EXTENSIONS OFF) target_link_libraries(bolt PUBLIC libcef_dll_wrapper) if(UNIX AND NOT APPLE) -@@ -359,6 +359,9 @@ else() - install(DIRECTORY "${CEF_ROOT}/${CMAKE_BUILD_TYPE}/" "${CEF_ROOT}/Resources/" DESTINATION ${BOLT_CEF_INSTALLDIR}/bolt-launcher USE_SOURCE_PERMISSIONS) +@@ -358,6 +358,9 @@ elseif(APPLE) + # TODO: mac support endif() +find_package(fmt REQUIRED) +target_link_libraries(bolt PUBLIC fmt) + - # Build plugin library - if(NOT BOLT_SKIP_LIBRARIES) - # todo: anything other than linux -@@ -368,7 +371,7 @@ if(NOT BOLT_SKIP_LIBRARIES) - modules/spng/spng/spng.c) - install(TARGETS ${BOLT_PLUGIN_LIB_NAME} DESTINATION "${BOLT_LIBDIR}") - endif() -- target_include_directories(${BOLT_PLUGIN_LIB_NAME} PUBLIC "${CEF_ROOT}" "${BOLT_LUAJIT_INCLUDE_DIR}" modules/fmt/include) -+ target_include_directories(${BOLT_PLUGIN_LIB_NAME} PUBLIC "${CEF_ROOT}" "${BOLT_LUAJIT_INCLUDE_DIR}") - target_link_libraries(${BOLT_PLUGIN_LIB_NAME} luajit-5.1) - target_compile_definitions(bolt PUBLIC BOLT_PLUGINS=1 SPNG_STATIC=1) - target_compile_definitions(bolt PUBLIC BOLT_LIB_NAME="${BOLT_PLUGIN_LIB_NAME}") + # compilation setting for enabling chromium dev tools + if(BOLT_DEV_SHOW_DEVTOOLS) + target_compile_definitions(bolt PUBLIC BOLT_DEV_SHOW_DEVTOOLS) diff --git a/bombsquad/.CI/config b/bombsquad/.CI/config index a3969bd11a..66bee94775 100644 --- a/bombsquad/.CI/config +++ b/bombsquad/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1720552163 CI_PKGBUILD_SOURCE=aur diff --git a/bombsquad/.SRCINFO b/bombsquad/.SRCINFO index 8841eb9c35..aebb932682 100644 --- a/bombsquad/.SRCINFO +++ b/bombsquad/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = bombsquad pkgdesc = An explosive arcade-style party game - pkgver = 1.7.36 + pkgver = 1.7.37 pkgrel = 1 url = http://www.froemling.net/apps/bombsquad arch = x86_64 @@ -17,9 +17,9 @@ pkgbase = bombsquad sha256sums = 31f3af8d59a384b7a3ac999d2e8fe0a0033d0d31ae6e760686537ab85d86ba00 sha256sums = 850f8a66eb045ce833f8d7dae4533f69b629ac648bd205d98bf5f851339d4515 sha256sums = 900ffdf250eb2c59a2944703ccab9b69e58b5cdd7809f8349f6291db0301935c - source_x86_64 = https://files.ballistica.net/bombsquad/builds/BombSquad_Linux_x86_64_1.7.36.tar.gz - sha256sums_x86_64 = cd77b6b66e81d8cd373e3902218df7c415349bb6e14b954fef8e8d412d8bcf87 - source_aarch64 = https://files.ballistica.net/bombsquad/builds/BombSquad_Linux_Arm64_1.7.36.tar.gz - sha256sums_aarch64 = 896e586af15b30eab31e4f756c475ebfe4ebf620b3e7a82e197681c3e6bd20e9 + source_x86_64 = https://files.ballistica.net/bombsquad/builds/BombSquad_Linux_x86_64_1.7.37.tar.gz + sha256sums_x86_64 = 53637465f5493041bd0ef5883b9f81d481c9a81b3eb3a90725058458eeaa98bc + source_aarch64 = https://files.ballistica.net/bombsquad/builds/BombSquad_Linux_Arm64_1.7.37.tar.gz + sha256sums_aarch64 = 335c79e7728ee5c1b7e926c9d131e535ec9ddcd22e702c2a7542cee8c631e9f6 pkgname = bombsquad diff --git a/bombsquad/PKGBUILD b/bombsquad/PKGBUILD index 5feda7b39c..d1bd95f59b 100644 --- a/bombsquad/PKGBUILD +++ b/bombsquad/PKGBUILD @@ -2,7 +2,7 @@ # TODO: fall back to /builds/old in case the build artifact disappears pkgname=bombsquad -pkgver=1.7.36 +pkgver=1.7.37 pkgrel=1 pkgdesc='An explosive arcade-style party game' arch=('x86_64' 'aarch64') @@ -17,8 +17,8 @@ source=( sha256sums=('31f3af8d59a384b7a3ac999d2e8fe0a0033d0d31ae6e760686537ab85d86ba00' '850f8a66eb045ce833f8d7dae4533f69b629ac648bd205d98bf5f851339d4515' '900ffdf250eb2c59a2944703ccab9b69e58b5cdd7809f8349f6291db0301935c') -sha256sums_x86_64=('cd77b6b66e81d8cd373e3902218df7c415349bb6e14b954fef8e8d412d8bcf87') -sha256sums_aarch64=('896e586af15b30eab31e4f756c475ebfe4ebf620b3e7a82e197681c3e6bd20e9') +sha256sums_x86_64=('53637465f5493041bd0ef5883b9f81d481c9a81b3eb3a90725058458eeaa98bc') +sha256sums_aarch64=('335c79e7728ee5c1b7e926c9d131e535ec9ddcd22e702c2a7542cee8c631e9f6') source_x86_64=("https://files.ballistica.net/bombsquad/builds/BombSquad_Linux_x86_64_${pkgver}.tar.gz") source_aarch64=("https://files.ballistica.net/bombsquad/builds/BombSquad_Linux_Arm64_${pkgver}.tar.gz") diff --git a/boo-sddm-git/.CI/config b/boo-sddm-git/.CI/config index d9bc0b8a48..8471e6a8af 100644 --- a/boo-sddm-git/.CI/config +++ b/boo-sddm-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1716440471 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=3377e4c19384175d4b79953972efb6b4ccb2a71f diff --git a/bookletimposer/.CI/config b/bookletimposer/.CI/config index dc0f99d362..7d9080f09b 100644 --- a/bookletimposer/.CI/config +++ b/bookletimposer/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1684167015 +CI_PACKAGE_BUMP=1:0.3.1-2/1 CI_PKGBUILD_SOURCE=aur diff --git a/bookworm-git/.CI/config b/bookworm-git/.CI/config index c6fa27bb22..66bee94775 100644 --- a/bookworm-git/.CI/config +++ b/bookworm-git/.CI/config @@ -1,4 +1 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1612437857 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=ebf30c1c320e8ca5ae459a4b960fe7fd4a4c070a diff --git a/booster-git/.CI/config b/booster-git/.CI/config deleted file mode 100644 index a8ae973783..0000000000 --- a/booster-git/.CI/config +++ /dev/null @@ -1,4 +0,0 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1649957285 -CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=276a3efc4336e866e3944359ecd86658d6354eb9 diff --git a/booster-git/.CI/info b/booster-git/.CI/info deleted file mode 100644 index d305798ec5..0000000000 --- a/booster-git/.CI/info +++ /dev/null @@ -1,2 +0,0 @@ -REQ_ORIGIN=github/525 -REQ_REASON=request diff --git a/booster-git/.SRCINFO b/booster-git/.SRCINFO deleted file mode 100644 index 4ea04bb5c9..0000000000 --- a/booster-git/.SRCINFO +++ /dev/null @@ -1,23 +0,0 @@ -pkgbase = booster-git - pkgdesc = Fast and secure initramfs generator - pkgver = 0.7.r106.gc7e328f - pkgrel = 1 - url = https://github.com/anatol/booster - arch = x86_64 - license = MIT - makedepends = git - makedepends = go - makedepends = ruby-ronn-ng - depends = bash - optdepends = busybox: to enable emergency shell at the boot time - optdepends = yubikey-personalization: for clevis Yubikey challenge-response support - optdepends = libfido2: for systemd-enroll with FIDO2 - provides = booster - provides = initramfs - conflicts = booster - replaces = booster - backup = etc/booster.yaml - source = git+https://github.com/anatol/booster - sha512sums = SKIP - -pkgname = booster-git diff --git a/booster-git/PKGBUILD b/booster-git/PKGBUILD deleted file mode 100644 index 1dd35f7123..0000000000 --- a/booster-git/PKGBUILD +++ /dev/null @@ -1,68 +0,0 @@ -# Maintainer: Anatol Pomozov - -pkgname=booster-git -pkgver=0.7.r106.gc7e328f -pkgrel=1 -pkgdesc='Fast and secure initramfs generator' -arch=(x86_64) -url='https://github.com/anatol/booster' -license=(MIT) -depends=(bash) -makedepends=(git go ruby-ronn-ng) -#checkdepends=(qemu-headless linux tang) -optdepends=( - 'busybox: to enable emergency shell at the boot time' - 'yubikey-personalization: for clevis Yubikey challenge-response support' - 'libfido2: for systemd-enroll with FIDO2' -) -backup=(etc/booster.yaml) -provides=(booster initramfs) -conflicts=(booster) -replaces=(booster) -source=(git+https://github.com/anatol/booster) -sha512sums=('SKIP') - -pkgver() { - cd booster - git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' -} - -build() { - cd booster - - cd generator - CGO_CPPFLAGS="${CPPFLAGS}" CGO_CFLAGS="${CFLAGS}" CGO_CXXFLAGS="${CXXFLAGS}" CGO_LDFLAGS="${LDFLAGS}" \ - go build -trimpath \ - -buildmode=pie \ - -mod=readonly \ - -modcacherw \ - -ldflags "-linkmode external -extldflags \"${LDFLAGS}\"" - - cd ../init - CGO_ENABLED=0 go build -trimpath -mod=readonly -modcacherw - - cd .. - ronn docs/manpage.md -} - -check() { - cd booster/tests - # arch chroot does not allow access to KVM - # TEST_DISABLE_KVM=1 go test -v # integration tests require a lot of time and space to build 10G images -} - -package() { - cd booster - mkdir "$pkgdir/etc/" - touch "$pkgdir/etc/booster.yaml" - install -Dp -m755 generator/generator "$pkgdir/usr/bin/booster" - install -Dp -m644 docs/manpage.1 "$pkgdir/usr/share/man/man1/booster.1" - install -Dp -m755 init/init "$pkgdir/usr/lib/booster/init" - install -Dp -m755 packaging/arch/regenerate_images "$pkgdir/usr/lib/booster/regenerate_images" - - install -Dp -m644 packaging/arch/90-booster-install.hook "$pkgdir/usr/share/libalpm/hooks/90-booster-install.hook" - install -Dp -m755 packaging/arch/booster-install "$pkgdir/usr/share/libalpm/scripts/booster-install" - install -Dp -m644 packaging/arch/60-booster-remove.hook "$pkgdir/usr/share/libalpm/hooks/60-booster-remove.hook" - install -Dp -m755 packaging/arch/booster-remove "$pkgdir/usr/share/libalpm/scripts/booster-remove" - install -Dp -m755 contrib/completion/bash "$pkgdir/usr/share/bash-completion/completions/booster" -} diff --git a/bootiso/.CI/config b/bootiso/.CI/config index 68be4732b9..090394bbef 100644 --- a/bootiso/.CI/config +++ b/bootiso/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1601895424 +CI_PACKAGE_BUMP=4.2.0-1/3 CI_PKGBUILD_SOURCE=aur diff --git a/bootstrap/.CI/config b/bootstrap/.CI/config index d75728a202..66bee94775 100644 --- a/bootstrap/.CI/config +++ b/bootstrap/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1708728785 CI_PKGBUILD_SOURCE=aur diff --git a/borg2/.CI/config b/borg2/.CI/config index 8b0f220671..33f1d01d6d 100644 --- a/borg2/.CI/config +++ b/borg2/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1721583051 +CI_PACKAGE_BUMP=2.0.0b9-3/1 CI_PKGBUILD_SOURCE=aur diff --git a/borg2/.SRCINFO b/borg2/.SRCINFO index 071864a4cd..11e04994b9 100644 --- a/borg2/.SRCINFO +++ b/borg2/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = borg2 pkgdesc = Deduplicating backup program with compression and authenticated encryption - pkgver = 2.0.0b9 - pkgrel = 3 + pkgver = 2.0.0b12 + pkgrel = 1 url = https://github.com/borgbackup/borg arch = x86_64 license = BSD-3-Clause @@ -29,14 +29,15 @@ pkgbase = borg2 depends = zstd depends = xxhash depends = libdeflate + depends = python-borgstore=0.1.0 provides = borg provides = borgbackup conflicts = borg conflicts = borgbackup - source = https://github.com/borgbackup/borg/releases/download/2.0.0b9/borgbackup-2.0.0b9.tar.gz - source = https://github.com/borgbackup/borg/releases/download/2.0.0b9/borgbackup-2.0.0b9.tar.gz.asc + source = https://github.com/borgbackup/borg/releases/download/2.0.0b12/borgbackup-2.0.0b12.tar.gz + source = https://github.com/borgbackup/borg/releases/download/2.0.0b12/borgbackup-2.0.0b12.tar.gz.asc validpgpkeys = 6D5BEF9ADD2075805747B70F9F88FB52FAF7B393 - b2sums = 6a4d98cd7ca56788beae135eb2b1a1bfabe2343387a807d6a4c0a355018189b68b2fd94e8c819dd09e496ade0670b9a05a4b48e03a5815b2b94e6b67b71f69ed + b2sums = 95170f410acb6259e5c50491e99c44588961ac7f7ebec3865d7b515a52da885abdadefd72295910bfbcb61049a72ce148dc09ff6fdd43f158c5cbf07b3a88813 b2sums = SKIP pkgname = borg2 diff --git a/borg2/PKGBUILD b/borg2/PKGBUILD index 06298cb3c8..a5c355f6aa 100644 --- a/borg2/PKGBUILD +++ b/borg2/PKGBUILD @@ -7,8 +7,9 @@ pkgname=borg2 _pkgname=borgbackup -pkgver=2.0.0b9 -pkgrel=3 +_borgstore_pkgver=0.1.0 +pkgver=2.0.0b12 +pkgrel=1 pkgdesc='Deduplicating backup program with compression and authenticated encryption' url='https://github.com/borgbackup/borg' license=('BSD-3-Clause') @@ -22,6 +23,7 @@ depends=( 'zstd' 'xxhash' 'libdeflate' + "python-borgstore=${_borgstore_pkgver}" ) makedepends=( 'cython' @@ -45,8 +47,10 @@ checkdepends=( ) provides=('borg' 'borgbackup') conflicts=('borg' 'borgbackup') -source=("$url/releases/download/$pkgver/$_pkgname-$pkgver.tar.gz"{,.asc}) -b2sums=('6a4d98cd7ca56788beae135eb2b1a1bfabe2343387a807d6a4c0a355018189b68b2fd94e8c819dd09e496ade0670b9a05a4b48e03a5815b2b94e6b67b71f69ed' +source=( + "$url/releases/download/$pkgver/$_pkgname-$pkgver.tar.gz"{,.asc} +) +b2sums=('95170f410acb6259e5c50491e99c44588961ac7f7ebec3865d7b515a52da885abdadefd72295910bfbcb61049a72ce148dc09ff6fdd43f158c5cbf07b3a88813' 'SKIP') validpgpkeys=('6D5BEF9ADD2075805747B70F9F88FB52FAF7B393') # Thomas Waldmann diff --git a/boringtun/.CI/config b/boringtun/.CI/config index a7bcfc6937..66bee94775 100644 --- a/boringtun/.CI/config +++ b/boringtun/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1720291282 CI_PKGBUILD_SOURCE=aur diff --git a/boston-icon-theme/.CI/config b/boston-icon-theme/.CI/config index 09adb9124e..66bee94775 100644 --- a/boston-icon-theme/.CI/config +++ b/boston-icon-theme/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1663752378 CI_PKGBUILD_SOURCE=aur diff --git a/bottles/.CI/config b/bottles/.CI/config index 9d8ff029f1..a5580f28d9 100644 --- a/bottles/.CI/config +++ b/bottles/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1721938523 +CI_PACKAGE_BUMP=2:51.15-2/1 CI_PKGBUILD_SOURCE=aur diff --git a/bottles/.SRCINFO b/bottles/.SRCINFO index 055de93395..59f776479a 100644 --- a/bottles/.SRCINFO +++ b/bottles/.SRCINFO @@ -1,29 +1,28 @@ pkgbase = bottles pkgdesc = Easily manage wine and proton prefix - pkgver = 51.13 - pkgrel = 1 + pkgver = 51.15 + pkgrel = 2 epoch = 2 url = https://github.com/bottlesdevs/Bottles - arch = x86_64 + arch = any license = GPL-3.0-only makedepends = meson makedepends = ninja makedepends = blueprint-compiler depends = cabextract depends = dconf - depends = fvs depends = gtk4 depends = gtksourceview5 depends = hicolor-icon-theme depends = icoextract depends = imagemagick depends = libadwaita - depends = libhandy depends = libportal-gtk4 depends = p7zip depends = patool depends = python depends = python-chardet + depends = python-fvs depends = python-gobject depends = python-markdown depends = python-orjson @@ -43,7 +42,7 @@ pkgbase = bottles optdepends = vkd3d optdepends = vulkan-icd-loader optdepends = wine - source = bottles-51.13.tar.gz::https://github.com/bottlesdevs/Bottles/archive/refs/tags/51.13.tar.gz - sha256sums = ba582ef2eaec4f3e533fd92b9b064223373e55b4d942113f071fc90800d49c34 + source = bottles-51.15.tar.gz::https://github.com/bottlesdevs/Bottles/archive/refs/tags/51.15.tar.gz + sha256sums = f31cc20c10242a1e4df462de28a353429154e2f62e7ed0a36b62740fecb47360 pkgname = bottles diff --git a/bottles/PKGBUILD b/bottles/PKGBUILD index fed5859138..f63d3aff8b 100644 --- a/bottles/PKGBUILD +++ b/bottles/PKGBUILD @@ -2,29 +2,28 @@ # Contributor: lotation pkgname=bottles -pkgver=51.13 -pkgrel=1 +pkgver=51.15 +pkgrel=2 epoch=2 pkgdesc='Easily manage wine and proton prefix' -arch=('x86_64') +arch=(any) url="https://github.com/bottlesdevs/Bottles" license=('GPL-3.0-only') depends=( 'cabextract' 'dconf' - 'fvs' 'gtk4' 'gtksourceview5' 'hicolor-icon-theme' 'icoextract' 'imagemagick' 'libadwaita' - 'libhandy' 'libportal-gtk4' 'p7zip' 'patool' 'python' 'python-chardet' + 'python-fvs' 'python-gobject' 'python-markdown' 'python-orjson' @@ -49,7 +48,7 @@ optdepends=( ) makedepends=('meson' 'ninja' 'blueprint-compiler') source=("${pkgname}-${pkgver}.tar.gz::https://github.com/bottlesdevs/Bottles/archive/refs/tags/${pkgver}.tar.gz") -sha256sums=('ba582ef2eaec4f3e533fd92b9b064223373e55b4d942113f071fc90800d49c34') +sha256sums=('f31cc20c10242a1e4df462de28a353429154e2f62e7ed0a36b62740fecb47360') build() { if [[ -d Bottles ]]; then diff --git a/boxtron/.CI/config b/boxtron/.CI/config index c58b62da75..b0ed9a4db5 100644 --- a/boxtron/.CI/config +++ b/boxtron/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1720413538 +CI_PACKAGE_BUMP=0.5.4-1/7 CI_PKGBUILD_SOURCE=aur diff --git a/bpytop-git/.CI/config b/bpytop-git/.CI/config deleted file mode 100644 index e8b824f3c4..0000000000 --- a/bpytop-git/.CI/config +++ /dev/null @@ -1,4 +0,0 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1602787133 -CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=ac0f6660be0ad87b23ecb7f371a4a737e1bf017f diff --git a/bpytop-git/.SRCINFO b/bpytop-git/.SRCINFO deleted file mode 100644 index 6d4394dfbd..0000000000 --- a/bpytop-git/.SRCINFO +++ /dev/null @@ -1,16 +0,0 @@ -pkgbase = bpytop-git - pkgdesc = Resource monitor that shows usage and stats for processor, memory, disks, network and processes - pkgver = 1.0.42.r0.gadee413 - pkgrel = 1 - url = https://github.com/aristocratos/bpytop - arch = any - license = APACHE - makedepends = git - depends = python-psutil - provides = bpytop - conflicts = bpytop - source = git+https://github.com/aristocratos/bpytop.git - sha256sums = SKIP - -pkgname = bpytop-git - diff --git a/bpytop-git/PKGBUILD b/bpytop-git/PKGBUILD deleted file mode 100644 index 68582d1d30..0000000000 --- a/bpytop-git/PKGBUILD +++ /dev/null @@ -1,29 +0,0 @@ -# Maintainer: Caltlgin Stsodaat - -_pkgname='bpytop' -pkgname="${_pkgname}-git" -pkgver=1.0.42.r0.gadee413 -pkgrel=1 -pkgdesc='Resource monitor that shows usage and stats for processor, memory, disks, network and processes' -arch=('any') -url='https://github.com/aristocratos/bpytop' -license=('APACHE') -depends=('python-psutil') -makedepends=('git') -provides=("${_pkgname}") -conflicts=("${_pkgname}") -source=("git+${url}.git") -sha256sums=('SKIP') - -pkgver() { - git -C "${_pkgname}" describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' -} - -package() { - cd "${_pkgname}" - install -Dvm755 "${_pkgname}.py" "${pkgdir}/usr/bin/${_pkgname}" - install -Dvm644 'themes/'* -t "${pkgdir}/usr/share/${_pkgname}/themes" - install -Dvm644 'README.md' -t "${pkgdir}/usr/share/doc/${_pkgname}" -} - -# vim: ts=2 sw=2 et: diff --git a/brave-bin/.CI/config b/brave-bin/.CI/config index 5371a9b1d9..66bee94775 100644 --- a/brave-bin/.CI/config +++ b/brave-bin/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1727275775 CI_PKGBUILD_SOURCE=aur diff --git a/brave-bin/.SRCINFO b/brave-bin/.SRCINFO index b3aed65748..e77b55ab31 100644 --- a/brave-bin/.SRCINFO +++ b/brave-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = brave-bin pkgdesc = Web browser that blocks ads and trackers by default (binary release) - pkgver = 1.70.119 + pkgver = 1.73.91 pkgrel = 1 epoch = 1 url = https://brave.com @@ -17,19 +17,19 @@ pkgbase = brave-bin optdepends = cups: Printer support optdepends = libgnome-keyring: Enable GNOME keyring support optdepends = libnotify: Native notification support - provides = brave=1.70.119 + provides = brave=1.73.91 provides = brave-browser conflicts = brave - noextract = brave-bin-1.70.119-x86_64.zip - noextract = brave-bin-1.70.119-aarch64.zip + noextract = brave-bin-1.73.91-x86_64.zip + noextract = brave-bin-1.73.91-aarch64.zip options = !strip source = brave-bin.sh source = brave-browser.desktop sha256sums = 75a87dd17b42fcc6f27adfd16c82bed1c08e9251b07d2012f8d49f7412fa1d00 sha256sums = c07276b69c7304981525ecb022f92daf7ae125a4fb05ac3442157b50826e257a - source_x86_64 = brave-bin-1.70.119-x86_64.zip::https://github.com/brave/brave-browser/releases/download/v1.70.119/brave-browser-1.70.119-linux-amd64.zip - sha256sums_x86_64 = 68218f72ae4ede34c0990e69cf99ac66892f0ee3d5fa1cfb33ed8557609e64e4 - source_aarch64 = brave-bin-1.70.119-aarch64.zip::https://github.com/brave/brave-browser/releases/download/v1.70.119/brave-browser-1.70.119-linux-arm64.zip - sha256sums_aarch64 = 6584c2988b3872bb1366f230a6e0cd3e2086c20a62342773772517fed86f2ce3 + source_x86_64 = brave-bin-1.73.91-x86_64.zip::https://github.com/brave/brave-browser/releases/download/v1.73.91/brave-browser-1.73.91-linux-amd64.zip + sha256sums_x86_64 = 2a1c0e633d002e1d1bb01df4ba85fa989e0a3f7e50daa93c20201055dd7540b2 + source_aarch64 = brave-bin-1.73.91-aarch64.zip::https://github.com/brave/brave-browser/releases/download/v1.73.91/brave-browser-1.73.91-linux-arm64.zip + sha256sums_aarch64 = b881f823a3b306eb67e9346dceb040e1af6f24ce05fde27fe27ccfef6e013feb pkgname = brave-bin diff --git a/brave-bin/PKGBUILD b/brave-bin/PKGBUILD index 67c928da89..0e94ee392f 100644 --- a/brave-bin/PKGBUILD +++ b/brave-bin/PKGBUILD @@ -12,7 +12,7 @@ # `curl https://brave-browser-downloads.s3.brave.com/latest/release.version` pkgname=brave-bin -pkgver=1.70.119 +pkgver=1.73.91 pkgrel=1 epoch=1 pkgdesc='Web browser that blocks ads and trackers by default (binary release)' @@ -37,8 +37,8 @@ source_aarch64=(${pkgname}-${pkgver}-aarch64.zip::https://github.com/brave/brave noextract=(${pkgname}-${pkgver}-x86_64.zip ${pkgname}-${pkgver}-aarch64.zip) sha256sums=('75a87dd17b42fcc6f27adfd16c82bed1c08e9251b07d2012f8d49f7412fa1d00' 'c07276b69c7304981525ecb022f92daf7ae125a4fb05ac3442157b50826e257a') -sha256sums_x86_64=('68218f72ae4ede34c0990e69cf99ac66892f0ee3d5fa1cfb33ed8557609e64e4') -sha256sums_aarch64=('6584c2988b3872bb1366f230a6e0cd3e2086c20a62342773772517fed86f2ce3') +sha256sums_x86_64=('2a1c0e633d002e1d1bb01df4ba85fa989e0a3f7e50daa93c20201055dd7540b2') +sha256sums_aarch64=('b881f823a3b306eb67e9346dceb040e1af6f24ce05fde27fe27ccfef6e013feb') prepare() { mkdir -p brave diff --git a/breitbandmessung/.CI/config b/breitbandmessung/.CI/config index 4f6894b666..66bee94775 100644 --- a/breitbandmessung/.CI/config +++ b/breitbandmessung/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1707074327 CI_PKGBUILD_SOURCE=aur diff --git a/breitbandmessung/.SRCINFO b/breitbandmessung/.SRCINFO index 8a3af15f82..3cb3189ecf 100644 --- a/breitbandmessung/.SRCINFO +++ b/breitbandmessung/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = breitbandmessung pkgdesc = Die Breitbandmessung Desktop-App erlaubt es Ihnen, die tatsächliche Datenübertragungsrate Ihres Breitbandanschlusses zu messen. Weitere Informationen erhalten Sie unter https://breitbandmessung.de - pkgver = 3.6.0 + pkgver = 3.7.0 pkgrel = 1 url = https://breitbandmessung.de/ arch = x86_64 @@ -8,7 +8,7 @@ pkgbase = breitbandmessung makedepends = asar depends = net-tools options = !strip - source = breitbandmessung-3.6.0.deb::https://download.breitbandmessung.de/bbm/Breitbandmessung-linux.deb - sha256sums = 8d4a7843db6247f58b913347cfdee3d1e13f5b071f145deeb744bd37833be4e7 + source = breitbandmessung-3.7.0.deb::https://download.breitbandmessung.de/bbm/Breitbandmessung-linux.deb + sha256sums = 1a0473f87779580f3815ee0c310f7717f77f3892a62b30a5686a5d7df0907282 pkgname = breitbandmessung diff --git a/breitbandmessung/PKGBUILD b/breitbandmessung/PKGBUILD index f6f18762e6..c2f31fb6d8 100644 --- a/breitbandmessung/PKGBUILD +++ b/breitbandmessung/PKGBUILD @@ -3,7 +3,7 @@ # Contributorr: Linus Dierheimer pkgname=breitbandmessung -pkgver=3.6.0 +pkgver=3.7.0 pkgrel=1 pkgdesc="Die Breitbandmessung Desktop-App erlaubt es Ihnen, die tatsächliche Datenübertragungsrate Ihres Breitbandanschlusses zu messen. Weitere Informationen erhalten Sie unter https://breitbandmessung.de" arch=('x86_64') @@ -11,7 +11,7 @@ license=('unknown') url="https://breitbandmessung.de/" options=('!strip') source=("breitbandmessung-${pkgver}.deb::https://download.breitbandmessung.de/bbm/Breitbandmessung-linux.deb") -sha256sums=("8d4a7843db6247f58b913347cfdee3d1e13f5b071f145deeb744bd37833be4e7") +sha256sums=("1a0473f87779580f3815ee0c310f7717f77f3892a62b30a5686a5d7df0907282") depends=("net-tools") makedepends=("asar") diff --git a/briar-desktop/.CI/config b/briar-desktop/.CI/config index da8f8e335c..66bee94775 100644 --- a/briar-desktop/.CI/config +++ b/briar-desktop/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1724416570 CI_PKGBUILD_SOURCE=aur diff --git a/brickadia-launcher/.CI/config b/brickadia-launcher/.CI/config index 4f072ab64a..e47f6efd33 100644 --- a/brickadia-launcher/.CI/config +++ b/brickadia-launcher/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1624560027 +CI_PACKAGE_BUMP=1.5-1/5 CI_PKGBUILD_SOURCE=aur diff --git a/brillo/.CI/config b/brillo/.CI/config index 9dd113081c..66bee94775 100644 --- a/brillo/.CI/config +++ b/brillo/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1671544138 CI_PKGBUILD_SOURCE=aur diff --git a/brisk-menu/.CI/config b/brisk-menu/.CI/config index a15567bc5b..66bee94775 100644 --- a/brisk-menu/.CI/config +++ b/brisk-menu/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1720280409 CI_PKGBUILD_SOURCE=aur diff --git a/brlaser/.CI/config b/brlaser/.CI/config index 2519cd13d4..66bee94775 100644 --- a/brlaser/.CI/config +++ b/brlaser/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1725729203 CI_PKGBUILD_SOURCE=aur diff --git a/broadcom-bt-firmware-git/.CI/config b/broadcom-bt-firmware-git/.CI/config index 7e23529049..8471e6a8af 100644 --- a/broadcom-bt-firmware-git/.CI/config +++ b/broadcom-bt-firmware-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1725268717 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=3b7cff924bd0280cd332be47fed32b0a00d002c6 diff --git a/brother-hl2280dw/.CI/config b/brother-hl2280dw/.CI/config index 80c601bbd5..442bd8ff47 100644 --- a/brother-hl2280dw/.CI/config +++ b/brother-hl2280dw/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1569644736 +CI_PACKAGE_BUMP=2.1.0_1-2/3 CI_PKGBUILD_SOURCE=aur diff --git a/brother-mfc-l2710dw/.CI/config b/brother-mfc-l2710dw/.CI/config index b7e27f544c..66bee94775 100644 --- a/brother-mfc-l2710dw/.CI/config +++ b/brother-mfc-l2710dw/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1534663918 CI_PKGBUILD_SOURCE=aur diff --git a/browsh/.CI/config b/browsh/.CI/config index 37c4dbd9bf..66bee94775 100644 --- a/browsh/.CI/config +++ b/browsh/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1708694099 CI_PKGBUILD_SOURCE=aur diff --git a/brunsli/.CI/config b/brunsli/.CI/config index 312f2a2895..8471e6a8af 100644 --- a/brunsli/.CI/config +++ b/brunsli/.CI/config @@ -1,3 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1668436020 CI_PKGBUILD_SOURCE=aur diff --git a/btdu/.CI/config b/btdu/.CI/config index 61bc6b5ab3..66bee94775 100644 --- a/btdu/.CI/config +++ b/btdu/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1682887936 CI_PKGBUILD_SOURCE=aur diff --git a/btrfs-assistant-git/.CI/config b/btrfs-assistant-git/.CI/config index c974bccb54..8471e6a8af 100644 --- a/btrfs-assistant-git/.CI/config +++ b/btrfs-assistant-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1705267394 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=92497037b47a6875aea13545c553760a5a6f439c diff --git a/btrfs-assistant/.CI/config b/btrfs-assistant/.CI/config index 0d4055bd09..529c07207e 100644 --- a/btrfs-assistant/.CI/config +++ b/btrfs-assistant/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1716159408 +CI_PACKAGE_BUMP=2.1.1-1/1 CI_PKGBUILD_SOURCE=aur diff --git a/btrfs-snapshots-git/.CI/config b/btrfs-snapshots-git/.CI/config index 63e4a7e2ee..66bee94775 100644 --- a/btrfs-snapshots-git/.CI/config +++ b/btrfs-snapshots-git/.CI/config @@ -1,4 +1 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1705624631 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=deba1940fc4b9bf913a8745d7f7af6b924972411 diff --git a/btrfsmaintenance/.CI/config b/btrfsmaintenance/.CI/config index cc10f348af..66bee94775 100644 --- a/btrfsmaintenance/.CI/config +++ b/btrfsmaintenance/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1720248070 CI_PKGBUILD_SOURCE=aur diff --git a/bubblejail-git/.CI/PKGBUILD.append b/bubblejail-git/.CI/PKGBUILD.append index 66363c29bf..ef19e9dd4b 100644 --- a/bubblejail-git/.CI/PKGBUILD.append +++ b/bubblejail-git/.CI/PKGBUILD.append @@ -16,7 +16,9 @@ eval _orig_"$(declare -f prepare)" prepare() { patch -d "$pkgname" -Np1 -F100 -i "$srcdir/0096-expandvars-0.patch" - sed -E -e '/--urgency.*critical/d' \ + sed -E \ + -e '/urgency/d' \ + -e '/critical/d' \ -i "$pkgname/src/bubblejail/bubblejail_cli.py" sed -E -e 's@^(\s+display_in_gui) = False$@\1 = True@' \ diff --git a/bubblejail-git/.CI/config b/bubblejail-git/.CI/config index d3c9e59200..def60acbb0 100644 --- a/bubblejail-git/.CI/config +++ b/bubblejail-git/.CI/config @@ -1,4 +1,2 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1716650819 +CI_PACKAGE_BUMP=0.9.3.r0.g97f1fb1-1/1 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=1ba9cc64a5de62d49aba40d78c260f8dd3407ee4 diff --git a/bubblejail/.CI/config b/bubblejail/.CI/config index cdfcab7695..66bee94775 100644 --- a/bubblejail/.CI/config +++ b/bubblejail/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1725791421 CI_PKGBUILD_SOURCE=aur diff --git a/bubblejail/.SRCINFO b/bubblejail/.SRCINFO index d663c4af6a..1ab6164e72 100644 --- a/bubblejail/.SRCINFO +++ b/bubblejail/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = bubblejail pkgdesc = Bubblewrap based sandboxing utility - pkgver = 0.9.2 + pkgver = 0.9.3 pkgrel = 1 url = https://github.com/igo95862/bubblejail arch = x86_64 @@ -22,10 +22,10 @@ pkgbase = bubblejail optdepends = bash-completion: completions for bash shell optdepends = fish: completions for fish shell optdepends = slirp4netns: Namespaced networking stack - source = https://github.com/igo95862/bubblejail/releases/download/0.9.2/bubblejail-0.9.2.tar.xz - source = https://github.com/igo95862/bubblejail/releases/download/0.9.2/bubblejail-0.9.2.tar.xz.sig + source = https://github.com/igo95862/bubblejail/releases/download/0.9.3/bubblejail-0.9.3.tar.xz + source = https://github.com/igo95862/bubblejail/releases/download/0.9.3/bubblejail-0.9.3.tar.xz.sig validpgpkeys = 5A3D06576A6A67443DFBE856F1A55E62951B2143 - sha512sums = 76219f9058bb1462182f6a706d28f4012f0eb59be020f01f16c1e7bdc712bdc9e3119dcb8314d486ce1dcd64dcf26786850a824be95f28a7751c685fee3bc7ec + sha512sums = 576d09e87aa281bcf9b4741f106d34d34cfeed0f3e12c6a8dcbcd0e3b809a3a2ea08f24b3da161ca497ac75a09c029d44bb36d930c0f4f58296738d9ef68806f sha512sums = SKIP pkgname = bubblejail diff --git a/bubblejail/PKGBUILD b/bubblejail/PKGBUILD index 6ed8bfdbf4..6d1d66dbf1 100644 --- a/bubblejail/PKGBUILD +++ b/bubblejail/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: igo95862 at yandex dot ru pkgname=bubblejail -pkgver=0.9.2 +pkgver=0.9.3 pkgrel=1 pkgdesc="Bubblewrap based sandboxing utility" arch=('x86_64') @@ -39,7 +39,7 @@ source=( # Alternative if the above keyserver does not work # curl -s 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x5a3d06576a6a67443dfbe856f1a55e62951b2143' | gpg --import validpgpkeys=('5A3D06576A6A67443DFBE856F1A55E62951B2143') -sha512sums=('76219f9058bb1462182f6a706d28f4012f0eb59be020f01f16c1e7bdc712bdc9e3119dcb8314d486ce1dcd64dcf26786850a824be95f28a7751c685fee3bc7ec' +sha512sums=('576d09e87aa281bcf9b4741f106d34d34cfeed0f3e12c6a8dcbcd0e3b809a3a2ea08f24b3da161ca497ac75a09c029d44bb36d930c0f4f58296738d9ef68806f' 'SKIP') build() { diff --git a/budgie-network-applet/.CI/config b/budgie-network-applet/.CI/config index acf4d4cda5..9378f565ab 100644 --- a/budgie-network-applet/.CI/config +++ b/budgie-network-applet/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1586527857 +CI_PACKAGE_BUMP=2.2-1/7 CI_PKGBUILD_SOURCE=aur diff --git a/budgie-screenshot-applet/.CI/config b/budgie-screenshot-applet/.CI/config index 1cd2e367c8..66bee94775 100644 --- a/budgie-screenshot-applet/.CI/config +++ b/budgie-screenshot-applet/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1719269827 CI_PKGBUILD_SOURCE=aur diff --git a/bulky/.CI/config b/bulky/.CI/config index 964dd56592..66bee94775 100644 --- a/bulky/.CI/config +++ b/bulky/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1721555089 CI_PKGBUILD_SOURCE=aur diff --git a/burpsuite/.CI/config b/burpsuite/.CI/config index f43d448c3a..66bee94775 100644 --- a/burpsuite/.CI/config +++ b/burpsuite/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1726269350 CI_PKGBUILD_SOURCE=aur diff --git a/burpsuite/.SRCINFO b/burpsuite/.SRCINFO index 95f379af0c..b76b99d5f0 100644 --- a/burpsuite/.SRCINFO +++ b/burpsuite/.SRCINFO @@ -1,18 +1,18 @@ pkgbase = burpsuite pkgdesc = An integrated platform for performing security testing of web applications (free edition) - pkgver = 2024.8.1 + pkgver = 2024.10.1 pkgrel = 1 url = https://portswigger.net/burp/ install = burpsuite.install arch = any license = custom depends = java-runtime>=21 - noextract = burpsuite-2024.8.1.jar - source = burpsuite-2024.8.1.jar::https://portswigger-cdn.net/burp/releases/download?product=community&version=2024.8.1&type=Jar + noextract = burpsuite-2024.10.1.jar + source = burpsuite-2024.10.1.jar::https://portswigger-cdn.net/burp/releases/download?product=community&version=2024.10.1&type=Jar source = LICENSE source = burpsuite.desktop source = icon64.png - sha256sums = 64f9bbe46c3ff0e59f8ee9bdfbdbe93cf1a3c19221244c750f205923b79a847d + sha256sums = baf5f52d37b6b253c836b9fecb06379f2bbf2be153733bec5bf1673f4cf8dd0f sha256sums = a1146672de7084a1cddc5b7dab4d18b3530c194bd6e45a2b0ac04b579751ca30 sha256sums = 950c61d7ce1257c21a4152abebb8da320d0206ceb59247d6c912903d1ed39fc8 sha256sums = d31232a7dbdab9d5723f12aa25c52d13fd46ef2e8837a85fb9a08c3a7f151541 diff --git a/burpsuite/PKGBUILD b/burpsuite/PKGBUILD index f942824dc4..707cca2a3d 100644 --- a/burpsuite/PKGBUILD +++ b/burpsuite/PKGBUILD @@ -7,7 +7,7 @@ # Contributor: kageurufu pkgname=burpsuite -pkgver=2024.8.1 +pkgver=2024.10.1 pkgrel=1 pkgdesc="An integrated platform for performing security testing of web applications (free edition)" url="https://portswigger.net/burp/" @@ -23,7 +23,7 @@ source=("${pkgname}-${pkgver}.jar::https://portswigger-cdn.net/burp/releases/dow burpsuite.desktop icon64.png) install=burpsuite.install -sha256sums=('64f9bbe46c3ff0e59f8ee9bdfbdbe93cf1a3c19221244c750f205923b79a847d' +sha256sums=('baf5f52d37b6b253c836b9fecb06379f2bbf2be153733bec5bf1673f4cf8dd0f' 'a1146672de7084a1cddc5b7dab4d18b3530c194bd6e45a2b0ac04b579751ca30' '950c61d7ce1257c21a4152abebb8da320d0206ceb59247d6c912903d1ed39fc8' 'd31232a7dbdab9d5723f12aa25c52d13fd46ef2e8837a85fb9a08c3a7f151541') diff --git a/buttercup-desktop/.CI/config b/buttercup-desktop/.CI/config index e3c2d0a7a3..66bee94775 100644 --- a/buttercup-desktop/.CI/config +++ b/buttercup-desktop/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1726101984 CI_PKGBUILD_SOURCE=aur diff --git a/buttermanager/.CI/config b/buttermanager/.CI/config index b3a79ebdb9..66bee94775 100644 --- a/buttermanager/.CI/config +++ b/buttermanager/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1723740058 CI_PKGBUILD_SOURCE=aur diff --git a/bytecode-viewer/.CI/config b/bytecode-viewer/.CI/config index 4034cfe335..66bee94775 100644 --- a/bytecode-viewer/.CI/config +++ b/bytecode-viewer/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1707024554 CI_PKGBUILD_SOURCE=aur diff --git a/c++utilities/.CI/config b/c++utilities/.CI/config index daf51ca7ea..d8b0c294f9 100644 --- a/c++utilities/.CI/config +++ b/c++utilities/.CI/config @@ -1,3 +1,2 @@ CI_ON_TRIGGER=never -CI_PKGBUILD_TIMESTAMP=1727036618 CI_PKGBUILD_SOURCE=aur diff --git a/c-lolcat/.CI/config b/c-lolcat/.CI/config index 40ac91f564..66bee94775 100644 --- a/c-lolcat/.CI/config +++ b/c-lolcat/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1677963450 CI_PKGBUILD_SOURCE=aur diff --git a/ca-certificates-icp_br/.CI/config b/ca-certificates-icp_br/.CI/config index 10f3a5017c..66bee94775 100644 --- a/ca-certificates-icp_br/.CI/config +++ b/ca-certificates-icp_br/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1722208137 CI_PKGBUILD_SOURCE=aur diff --git a/ca-certificates-icp_br/.SRCINFO b/ca-certificates-icp_br/.SRCINFO index 3d22835189..92f05aa0e3 100644 --- a/ca-certificates-icp_br/.SRCINFO +++ b/ca-certificates-icp_br/.SRCINFO @@ -1,14 +1,14 @@ pkgbase = ca-certificates-icp_br pkgdesc = Brazilian government Certification Authorities - pkgver = 20240718 + pkgver = 20241024 pkgrel = 1 url = https://www.gov.br/iti/pt-br/assuntos/repositorio/repositorio-ac-raiz arch = any license = unknown makedepends = unzip depends = ca-certificates-utils - noextract = icpbr_certs-20240718-1.zip - source = icpbr_certs-20240718-1.zip::http://acraiz.icpbrasil.gov.br/credenciadas/CertificadosAC-ICP-Brasil/ACcompactado.zip - sha512sums = df9525e2460cf24017374f48194f15a5876ac0aa156900260cbb292e19595977d9091cae16498f323ba093f3f652f792139d2d1dbca78209cf34cb83fb32c513 + noextract = icpbr_certs-20241024-1.zip + source = icpbr_certs-20241024-1.zip::http://acraiz.icpbrasil.gov.br/credenciadas/CertificadosAC-ICP-Brasil/ACcompactado.zip + sha512sums = a05b2c73e273edb48366a4dba769d45d2c309f6da7f36ea7f4683d7ea3e606b59652419384a7fe9d295de77960cdfc850d9cf900f111ca1f982225334486d55f pkgname = ca-certificates-icp_br diff --git a/ca-certificates-icp_br/PKGBUILD b/ca-certificates-icp_br/PKGBUILD index c9a9e813fe..ada6862a0b 100644 --- a/ca-certificates-icp_br/PKGBUILD +++ b/ca-certificates-icp_br/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Tiago Brait pkgname=ca-certificates-icp_br -pkgver=20240718 +pkgver=20241024 pkgrel=1 pkgdesc="Brazilian government Certification Authorities" arch=('any') @@ -14,7 +14,7 @@ makedepends=('unzip') _source="icpbr_certs-${pkgver}-${pkgrel}" source=("$_source.zip::http://acraiz.icpbrasil.gov.br/credenciadas/CertificadosAC-ICP-Brasil/ACcompactado.zip") noextract=("$_source.zip") -sha512sums=('df9525e2460cf24017374f48194f15a5876ac0aa156900260cbb292e19595977d9091cae16498f323ba093f3f652f792139d2d1dbca78209cf34cb83fb32c513') +sha512sums=('a05b2c73e273edb48366a4dba769d45d2c309f6da7f36ea7f4683d7ea3e606b59652419384a7fe9d295de77960cdfc850d9cf900f111ca1f982225334486d55f') # This checksum must match: http://acraiz.icpbrasil.gov.br/credenciadas/CertificadosAC-ICP-Brasil/hashsha512.txt prepare() { diff --git a/cachyos-ananicy-rules-git/.CI/config b/cachyos-ananicy-rules-git/.CI/config index 443d1eb955..66bee94775 100644 --- a/cachyos-ananicy-rules-git/.CI/config +++ b/cachyos-ananicy-rules-git/.CI/config @@ -1,4 +1 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1714387300 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=1da705ebab9ab44bb933c1275961f963cc4440eb diff --git a/caffeine/.CI/config b/caffeine/.CI/config index f729ca4ecb..66bee94775 100644 --- a/caffeine/.CI/config +++ b/caffeine/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1718718686 CI_PKGBUILD_SOURCE=aur diff --git a/cage-git/.CI/config b/cage-git/.CI/config deleted file mode 100644 index 87d63b6440..0000000000 --- a/cage-git/.CI/config +++ /dev/null @@ -1,4 +0,0 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1722894971 -CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=f0651c7671afcf2d0f709c2e04f208dd5f3179f4 diff --git a/cage-git/.CI/info b/cage-git/.CI/info deleted file mode 100644 index cc580a8b1e..0000000000 --- a/cage-git/.CI/info +++ /dev/null @@ -1,2 +0,0 @@ -REQ_ORIGIN=github/2305 -REQ_REASON=request diff --git a/cage-git/.SRCINFO b/cage-git/.SRCINFO deleted file mode 100644 index efd1539802..0000000000 --- a/cage-git/.SRCINFO +++ /dev/null @@ -1,24 +0,0 @@ -pkgbase = cage-git - pkgdesc = Kiosk compositor for Wayland - pkgver = 0.1.5.r37.gd3fb99d - pkgrel = 1 - url = https://www.hjdskes.nl/projects/cage/ - arch = x86_64 - license = MIT - makedepends = git - makedepends = meson - makedepends = scdoc - makedepends = wayland-protocols - makedepends = xorg-server-xwayland - depends = glibc - depends = wayland - depends = wlroots0.17 - depends = libxkbcommon - optdepends = polkit: System privilege control. Required if not using seatd service - optdepends = xorg-server-xwayland: X11 support - provides = cage - conflicts = cage - source = cage-git::git+https://github.com/cage-kiosk/cage.git - sha512sums = SKIP - -pkgname = cage-git diff --git a/cage-git/PKGBUILD b/cage-git/PKGBUILD deleted file mode 100644 index 3ddc4e77db..0000000000 --- a/cage-git/PKGBUILD +++ /dev/null @@ -1,51 +0,0 @@ -# Maintainer: Kuan-Yen Chou -# Contributor: gilbus - -pkgname=cage-git -pkgver=0.1.5.r37.gd3fb99d -pkgrel=1 -pkgdesc="Kiosk compositor for Wayland" -# Use `wlroots0.17` until this PR is merged: -# https://github.com/cage-kiosk/cage/pull/313 -depends=(glibc wayland wlroots0.17 libxkbcommon) -makedepends=(git meson scdoc wayland-protocols xorg-server-xwayland) -optdepends=( - 'polkit: System privilege control. Required if not using seatd service' - 'xorg-server-xwayland: X11 support' -) -arch=(x86_64) -url="https://www.hjdskes.nl/projects/cage/" -license=(MIT) -provides=(cage) -conflicts=(cage) -source=("${pkgname}::git+https://github.com/cage-kiosk/cage.git") -sha512sums=('SKIP') - -pkgver() { - cd "$srcdir/$pkgname" - if git describe --long --tags > /dev/null 2>&1; then - git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' - else - printf 'r%s.%s' "$(git rev-list --count HEAD)" "$(git describe --always)" - fi -} - -build() { - cd "$srcdir/$pkgname" - # Use `wlroots0.17` until this PR is merged: - # https://github.com/cage-kiosk/cage/pull/313 - export PKG_CONFIG_PATH="/usr/lib/wlroots0.17/pkgconfig/" - meson setup --buildtype=release --prefix /usr "$srcdir/build" - ninja -C "$srcdir/build" -} - -check() { - ninja -C "$srcdir/build" test -} - -package() { - cd "$srcdir/$pkgname" - DESTDIR="$pkgdir" meson install -C "$srcdir/build" - install -vDm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname" - install -vDm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/calcmysky/.CI/config b/calcmysky/.CI/config index cfc4da1d69..66bee94775 100644 --- a/calcmysky/.CI/config +++ b/calcmysky/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1725868650 CI_PKGBUILD_SOURCE=aur diff --git a/candy-icons-git/.CI/config b/candy-icons-git/.CI/config index 6aa7445970..66bee94775 100644 --- a/candy-icons-git/.CI/config +++ b/candy-icons-git/.CI/config @@ -1,4 +1 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1622479548 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=840155dba4b29a57ad16e9687eaeda40c5f849c1 diff --git a/capnproto-java/.CI/config b/capnproto-java/.CI/config index 902a702ab9..66bee94775 100644 --- a/capnproto-java/.CI/config +++ b/capnproto-java/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1706631352 CI_PKGBUILD_SOURCE=aur diff --git a/caprice32-git/.CI/config b/caprice32-git/.CI/config index f8c03336c2..8471e6a8af 100644 --- a/caprice32-git/.CI/config +++ b/caprice32-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1695822580 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=48e215e06060c4e83a9df7b74af83aff1ec73077 diff --git a/captive-browser-git/.CI/config b/captive-browser-git/.CI/config index 640d31f598..8471e6a8af 100644 --- a/captive-browser-git/.CI/config +++ b/captive-browser-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1627589049 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=9c707dc32afc6e4146e19b43a3406329c64b6f3c diff --git a/carla-git/.CI/config b/carla-git/.CI/config index db15d6ab5e..1d309bacf8 100644 --- a/carla-git/.CI/config +++ b/carla-git/.CI/config @@ -1,4 +1,2 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1694598354 +CI_PACKAGE_BUMP=1:2.5.1.r505.gbe2f1056a-1/1 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=2f7c9394134ad8479a7c9f236123ff365fa68e99 diff --git a/cassandra/.CI/config b/cassandra/.CI/config index 003f32b1b8..66bee94775 100644 --- a/cassandra/.CI/config +++ b/cassandra/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1725574248 CI_PKGBUILD_SOURCE=aur diff --git a/cassandra/.SRCINFO b/cassandra/.SRCINFO index c9cfbaf90d..00aa09a51c 100644 --- a/cassandra/.SRCINFO +++ b/cassandra/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = cassandra pkgdesc = Apache Cassandra NoSQL database - pkgver = 5.0.0 + pkgver = 5.0.2 pkgrel = 1 url = http://cassandra.apache.org/ install = cassandra.install @@ -16,14 +16,14 @@ pkgbase = cassandra backup = etc/cassandra/commitlog_archiving.properties backup = etc/cassandra/logback.xml backup = etc/cassandra/logback-tools.xml - source = https://www.apache.org/dist/cassandra/5.0.0/apache-cassandra-5.0.0-bin.tar.gz - source = https://www.apache.org/dist/cassandra/5.0.0/apache-cassandra-5.0.0-bin.tar.gz.asc + source = https://archive.apache.org/dist/cassandra/5.0.2/apache-cassandra-5.0.2-bin.tar.gz + source = https://archive.apache.org/dist/cassandra/5.0.2/apache-cassandra-5.0.2-bin.tar.gz.asc source = 01_fix_cassandra_home_path.patch source = cassandra.service source = cassandra-tmpfile.conf source = cassandra-user.conf validpgpkeys = A4C465FEA0C552561A392A61E91335D77E3E87CB - sha256sums = bda1e57004cc964ec403f9b8c941cda9d4bb1225f786f2b1cd7dde3c71033465 + sha256sums = d721834207838b9d01919dfc33625ad17b50fea03bf9f76cdd8d3ae3a8fd2947 sha256sums = SKIP sha256sums = bbb5dcc19cac4e19c506210da901280c3063a6a241480bf12bc874e6a5c02657 sha256sums = abc9d54399c84eacf5922811b5480846ea1c88a73c5d214ea1db3d20c7c0422a diff --git a/cassandra/PKGBUILD b/cassandra/PKGBUILD index 6211855a28..6fd06ffa6d 100644 --- a/cassandra/PKGBUILD +++ b/cassandra/PKGBUILD @@ -14,7 +14,7 @@ # `keyserver-options auto-key-retrieve` to your `~/.gnupg/gpg.conf` pkgname=cassandra -pkgver=5.0.0 +pkgver=5.0.2 pkgrel=1 pkgdesc='Apache Cassandra NoSQL database' arch=('any') @@ -31,13 +31,13 @@ backup=(etc/cassandra/cassandra-env.sh etc/cassandra/logback.xml etc/cassandra/logback-tools.xml) install=cassandra.install -source=(https://www.apache.org/dist/${pkgname}/${pkgver}/apache-${pkgname}-${pkgver}-bin.tar.gz{,.asc} +source=(https://archive.apache.org/dist/cassandra/${pkgver}/apache-cassandra-${pkgver}-bin.tar.gz{,.asc} '01_fix_cassandra_home_path.patch' 'cassandra.service' 'cassandra-tmpfile.conf' 'cassandra-user.conf') validpgpkeys=('A4C465FEA0C552561A392A61E91335D77E3E87CB') -sha256sums=('bda1e57004cc964ec403f9b8c941cda9d4bb1225f786f2b1cd7dde3c71033465' +sha256sums=('d721834207838b9d01919dfc33625ad17b50fea03bf9f76cdd8d3ae3a8fd2947' 'SKIP' 'bbb5dcc19cac4e19c506210da901280c3063a6a241480bf12bc874e6a5c02657' 'abc9d54399c84eacf5922811b5480846ea1c88a73c5d214ea1db3d20c7c0422a' diff --git a/cassowary/.CI/config b/cassowary/.CI/config index f26d0ca562..5fd2f319ff 100644 --- a/cassowary/.CI/config +++ b/cassowary/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1649438766 +CI_PACKAGE_BUMP=0.6-1/5 CI_PKGBUILD_SOURCE=aur diff --git a/catia-git/.CI/config b/catia-git/.CI/config index 1c233d9b58..75cd8caf6f 100644 --- a/catia-git/.CI/config +++ b/catia-git/.CI/config @@ -1,4 +1,3 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1608062821 +CI_PACKAGE_BUMP=r1062.78b0307-1/3 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=78b0307afeded440c80a2b1d732dd15382f7b335 diff --git a/catppuccin-cursors-mocha/.CI/config b/catppuccin-cursors-mocha/.CI/config index d36982c7b5..66bee94775 100644 --- a/catppuccin-cursors-mocha/.CI/config +++ b/catppuccin-cursors-mocha/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1717895022 CI_PKGBUILD_SOURCE=aur diff --git a/catppuccin-cursors-mocha/.SRCINFO b/catppuccin-cursors-mocha/.SRCINFO index 1a5dcf69b3..d07174edd7 100644 --- a/catppuccin-cursors-mocha/.SRCINFO +++ b/catppuccin-cursors-mocha/.SRCINFO @@ -1,41 +1,41 @@ pkgbase = catppuccin-cursors-mocha pkgdesc = Soothing pastel mouse cursors - Mocha - pkgver = 0.3.1 + pkgver = 1.0.1 pkgrel = 1 url = https://github.com/catppuccin/cursors arch = any license = GPL2 - source = catppuccin-cursors-mocha-0.3.1-blue.zip::https://github.com/catppuccin/cursors/releases/download/v0.3.1/catppuccin-mocha-blue-cursors.zip - source = catppuccin-cursors-mocha-0.3.1-dark.zip::https://github.com/catppuccin/cursors/releases/download/v0.3.1/catppuccin-mocha-dark-cursors.zip - source = catppuccin-cursors-mocha-0.3.1-flamingo.zip::https://github.com/catppuccin/cursors/releases/download/v0.3.1/catppuccin-mocha-flamingo-cursors.zip - source = catppuccin-cursors-mocha-0.3.1-green.zip::https://github.com/catppuccin/cursors/releases/download/v0.3.1/catppuccin-mocha-green-cursors.zip - source = catppuccin-cursors-mocha-0.3.1-lavender.zip::https://github.com/catppuccin/cursors/releases/download/v0.3.1/catppuccin-mocha-lavender-cursors.zip - source = catppuccin-cursors-mocha-0.3.1-light.zip::https://github.com/catppuccin/cursors/releases/download/v0.3.1/catppuccin-mocha-light-cursors.zip - source = catppuccin-cursors-mocha-0.3.1-maroon.zip::https://github.com/catppuccin/cursors/releases/download/v0.3.1/catppuccin-mocha-maroon-cursors.zip - source = catppuccin-cursors-mocha-0.3.1-mauve.zip::https://github.com/catppuccin/cursors/releases/download/v0.3.1/catppuccin-mocha-mauve-cursors.zip - source = catppuccin-cursors-mocha-0.3.1-peach.zip::https://github.com/catppuccin/cursors/releases/download/v0.3.1/catppuccin-mocha-peach-cursors.zip - source = catppuccin-cursors-mocha-0.3.1-pink.zip::https://github.com/catppuccin/cursors/releases/download/v0.3.1/catppuccin-mocha-pink-cursors.zip - source = catppuccin-cursors-mocha-0.3.1-red.zip::https://github.com/catppuccin/cursors/releases/download/v0.3.1/catppuccin-mocha-red-cursors.zip - source = catppuccin-cursors-mocha-0.3.1-rosewater.zip::https://github.com/catppuccin/cursors/releases/download/v0.3.1/catppuccin-mocha-rosewater-cursors.zip - source = catppuccin-cursors-mocha-0.3.1-sapphire.zip::https://github.com/catppuccin/cursors/releases/download/v0.3.1/catppuccin-mocha-sapphire-cursors.zip - source = catppuccin-cursors-mocha-0.3.1-sky.zip::https://github.com/catppuccin/cursors/releases/download/v0.3.1/catppuccin-mocha-sky-cursors.zip - source = catppuccin-cursors-mocha-0.3.1-teal.zip::https://github.com/catppuccin/cursors/releases/download/v0.3.1/catppuccin-mocha-teal-cursors.zip - source = catppuccin-cursors-mocha-0.3.1-yellow.zip::https://github.com/catppuccin/cursors/releases/download/v0.3.1/catppuccin-mocha-yellow-cursors.zip - sha256sums = 6bec52b32699bc9846fed8ea2d384bf0da0250c957766a2f5c09e6d009f990c1 - sha256sums = 5a4391576467245861cedabffaa860fab088cacdfa071d424901642c3065165e - sha256sums = fbcf8ef2a6dac8b64ebfbcbda6961c842bfc8a22e4aed0ba77864a990316cc4e - sha256sums = c61e3bd74f5de1911bb9b5480e58d55390374c9eabfee48947010a1ecaf74068 - sha256sums = 5172c2d089033e3651a9c4be736e6d5b745ff861af766aff54590908e9dbfae3 - sha256sums = 4e2cbb6fd5a1a6dc487847d40f12a6e1315c68ab82656333fc3d625242d0fc14 - sha256sums = 1e2bba02c621badb1ce9de1054f2661e3ae857d813f39c3987b8f8f09f559307 - sha256sums = 78f91c4b0d6aff819603124febfd1b764a470615c1f4550cb79b5721338ab464 - sha256sums = 4b1240dbb2f7ae7e712c04b45eb41807a88a2b199ac1614187b3d0d341bcc35f - sha256sums = 7eb518768f212eae2ffe07905b615eb8712ed046e07bfa694409e7638b371acb - sha256sums = 2d13997025d72a038a2c30584b9f70766d1f204203cbb04988b7ba4d457255cc - sha256sums = 76209fece5a92ec8e6b7ba801867abf490d758c6a314de004a5749e456eee79d - sha256sums = f18f56f35df5121eb42abdd07a6356166550b7283fa78cb3689726921f0d7d5f - sha256sums = f3acb14a0bb02fd793b46f90d767c68d01a3678edde4641356c9664bc5d174f9 - sha256sums = 3112c712e6ccb2638319759ff60052cb979737f41b14a0f75fbfc83685c348a7 - sha256sums = 52fe73bdd320ee11b3741e2608d38199be836e25a127ba260e29f109beb8da66 + source = catppuccin-cursors-mocha-1.0.1-blue.zip::https://github.com/catppuccin/cursors/releases/download/v1.0.1/catppuccin-mocha-blue-cursors.zip + source = catppuccin-cursors-mocha-1.0.1-dark.zip::https://github.com/catppuccin/cursors/releases/download/v1.0.1/catppuccin-mocha-dark-cursors.zip + source = catppuccin-cursors-mocha-1.0.1-flamingo.zip::https://github.com/catppuccin/cursors/releases/download/v1.0.1/catppuccin-mocha-flamingo-cursors.zip + source = catppuccin-cursors-mocha-1.0.1-green.zip::https://github.com/catppuccin/cursors/releases/download/v1.0.1/catppuccin-mocha-green-cursors.zip + source = catppuccin-cursors-mocha-1.0.1-lavender.zip::https://github.com/catppuccin/cursors/releases/download/v1.0.1/catppuccin-mocha-lavender-cursors.zip + source = catppuccin-cursors-mocha-1.0.1-light.zip::https://github.com/catppuccin/cursors/releases/download/v1.0.1/catppuccin-mocha-light-cursors.zip + source = catppuccin-cursors-mocha-1.0.1-maroon.zip::https://github.com/catppuccin/cursors/releases/download/v1.0.1/catppuccin-mocha-maroon-cursors.zip + source = catppuccin-cursors-mocha-1.0.1-mauve.zip::https://github.com/catppuccin/cursors/releases/download/v1.0.1/catppuccin-mocha-mauve-cursors.zip + source = catppuccin-cursors-mocha-1.0.1-peach.zip::https://github.com/catppuccin/cursors/releases/download/v1.0.1/catppuccin-mocha-peach-cursors.zip + source = catppuccin-cursors-mocha-1.0.1-pink.zip::https://github.com/catppuccin/cursors/releases/download/v1.0.1/catppuccin-mocha-pink-cursors.zip + source = catppuccin-cursors-mocha-1.0.1-red.zip::https://github.com/catppuccin/cursors/releases/download/v1.0.1/catppuccin-mocha-red-cursors.zip + source = catppuccin-cursors-mocha-1.0.1-rosewater.zip::https://github.com/catppuccin/cursors/releases/download/v1.0.1/catppuccin-mocha-rosewater-cursors.zip + source = catppuccin-cursors-mocha-1.0.1-sapphire.zip::https://github.com/catppuccin/cursors/releases/download/v1.0.1/catppuccin-mocha-sapphire-cursors.zip + source = catppuccin-cursors-mocha-1.0.1-sky.zip::https://github.com/catppuccin/cursors/releases/download/v1.0.1/catppuccin-mocha-sky-cursors.zip + source = catppuccin-cursors-mocha-1.0.1-teal.zip::https://github.com/catppuccin/cursors/releases/download/v1.0.1/catppuccin-mocha-teal-cursors.zip + source = catppuccin-cursors-mocha-1.0.1-yellow.zip::https://github.com/catppuccin/cursors/releases/download/v1.0.1/catppuccin-mocha-yellow-cursors.zip + sha256sums = 1cefa25b0a8708c0275bd3e892851a9b6bc08c3adbee2141162de06077509331 + sha256sums = 2df8ff8d89b9762cb451ba48e52d6cab3b50fe1faebb852c8cc9d1172d990566 + sha256sums = 67f41bb5b9a08ff351b00aca5f3fb150b2cc6f912f03d0176bae8561d5ed6434 + sha256sums = 5f4a1bddb6639598bf069d46226be9c40cff49e53076f79c85ab1f1509156b90 + sha256sums = 84266fa08536578c9dca4349819617454c4ca55b591522daf6ff8c07290e3194 + sha256sums = ae08fed84dc8790046688f431217bdccc7c21c3f11fc5f9e7e3ca9a52140b25b + sha256sums = cf512dc4b2e3b3b6d3f0f5a3c64a76ce43bdeb85245e3f8ffa34d142e8af2b22 + sha256sums = 53fd1c222133ea8af225443414ed0275aef6868337c2e2fc92126aa45467d79e + sha256sums = 345a5631cea34119a38d45d6d8a9e839d2573ec9cc3fcd9013c3800484c8efb3 + sha256sums = b974eb605d4825aa68ab02f0d7a2cfaeb7d22a35095a51df748662b461666dce + sha256sums = 5a8d9966d6a26cec6227ac0d97fa02556dacfbc4b4a9f2f8d79935b8a53582dd + sha256sums = 52761f10003ab27c2fa1f8ad3bff9397c24d04ff1f3deab5fe9c6710295fc553 + sha256sums = 6e908037cec8492393488510593aab309692a9db3950bacac9854c505501b026 + sha256sums = 1af017d8c93b1391c7f998958a40f9ab9814f84b91741350272162f4020c5a8b + sha256sums = b8592bf571ae43a85e9ba52a5a2948507392a5fa58c1d6496b9f011ca37f3415 + sha256sums = 341f547260395de90b65322edbf72bd5644d9394620b7c97003748632ecb0c77 pkgname = catppuccin-cursors-mocha diff --git a/catppuccin-cursors-mocha/PKGBUILD b/catppuccin-cursors-mocha/PKGBUILD index 4008867975..79c311dc94 100644 --- a/catppuccin-cursors-mocha/PKGBUILD +++ b/catppuccin-cursors-mocha/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Catppuccin pkgname=catppuccin-cursors-mocha -pkgver=0.3.1 # renovate: datasource=github-tags depName=catppuccin/cursors +pkgver=1.0.1 # renovate: datasource=github-tags depName=catppuccin/cursors pkgrel=1 pkgdesc='Soothing pastel mouse cursors - Mocha' arch=('any') @@ -26,22 +26,22 @@ source=( "$pkgname-$pkgver-yellow.zip::$url/releases/download/v$pkgver/catppuccin-mocha-yellow-cursors.zip" ) -sha256sums=('6bec52b32699bc9846fed8ea2d384bf0da0250c957766a2f5c09e6d009f990c1' - '5a4391576467245861cedabffaa860fab088cacdfa071d424901642c3065165e' - 'fbcf8ef2a6dac8b64ebfbcbda6961c842bfc8a22e4aed0ba77864a990316cc4e' - 'c61e3bd74f5de1911bb9b5480e58d55390374c9eabfee48947010a1ecaf74068' - '5172c2d089033e3651a9c4be736e6d5b745ff861af766aff54590908e9dbfae3' - '4e2cbb6fd5a1a6dc487847d40f12a6e1315c68ab82656333fc3d625242d0fc14' - '1e2bba02c621badb1ce9de1054f2661e3ae857d813f39c3987b8f8f09f559307' - '78f91c4b0d6aff819603124febfd1b764a470615c1f4550cb79b5721338ab464' - '4b1240dbb2f7ae7e712c04b45eb41807a88a2b199ac1614187b3d0d341bcc35f' - '7eb518768f212eae2ffe07905b615eb8712ed046e07bfa694409e7638b371acb' - '2d13997025d72a038a2c30584b9f70766d1f204203cbb04988b7ba4d457255cc' - '76209fece5a92ec8e6b7ba801867abf490d758c6a314de004a5749e456eee79d' - 'f18f56f35df5121eb42abdd07a6356166550b7283fa78cb3689726921f0d7d5f' - 'f3acb14a0bb02fd793b46f90d767c68d01a3678edde4641356c9664bc5d174f9' - '3112c712e6ccb2638319759ff60052cb979737f41b14a0f75fbfc83685c348a7' - '52fe73bdd320ee11b3741e2608d38199be836e25a127ba260e29f109beb8da66') +sha256sums=('1cefa25b0a8708c0275bd3e892851a9b6bc08c3adbee2141162de06077509331' + '2df8ff8d89b9762cb451ba48e52d6cab3b50fe1faebb852c8cc9d1172d990566' + '67f41bb5b9a08ff351b00aca5f3fb150b2cc6f912f03d0176bae8561d5ed6434' + '5f4a1bddb6639598bf069d46226be9c40cff49e53076f79c85ab1f1509156b90' + '84266fa08536578c9dca4349819617454c4ca55b591522daf6ff8c07290e3194' + 'ae08fed84dc8790046688f431217bdccc7c21c3f11fc5f9e7e3ca9a52140b25b' + 'cf512dc4b2e3b3b6d3f0f5a3c64a76ce43bdeb85245e3f8ffa34d142e8af2b22' + '53fd1c222133ea8af225443414ed0275aef6868337c2e2fc92126aa45467d79e' + '345a5631cea34119a38d45d6d8a9e839d2573ec9cc3fcd9013c3800484c8efb3' + 'b974eb605d4825aa68ab02f0d7a2cfaeb7d22a35095a51df748662b461666dce' + '5a8d9966d6a26cec6227ac0d97fa02556dacfbc4b4a9f2f8d79935b8a53582dd' + '52761f10003ab27c2fa1f8ad3bff9397c24d04ff1f3deab5fe9c6710295fc553' + '6e908037cec8492393488510593aab309692a9db3950bacac9854c505501b026' + '1af017d8c93b1391c7f998958a40f9ab9814f84b91741350272162f4020c5a8b' + 'b8592bf571ae43a85e9ba52a5a2948507392a5fa58c1d6496b9f011ca37f3415' + '341f547260395de90b65322edbf72bd5644d9394620b7c97003748632ecb0c77') package() { install -d "$pkgdir/usr/share/icons/" diff --git a/catppuccin-grub-theme-git/.CI/config b/catppuccin-grub-theme-git/.CI/config index 29326606cc..a2e6b595d1 100644 --- a/catppuccin-grub-theme-git/.CI/config +++ b/catppuccin-grub-theme-git/.CI/config @@ -1,3 +1,2 @@ BUILDER_CACHE_SOURCES=true CI_PKGBUILD_SOURCE=https://aur.archlinux.org/catppuccin-grub-theme-git.git -CI_GIT_COMMIT=b8e617076daed2b38292af9e14c0a22e2c2bd659 diff --git a/catppuccin-gtk-theme-frappe/.CI/config b/catppuccin-gtk-theme-frappe/.CI/config index cbec2b4bab..66bee94775 100644 --- a/catppuccin-gtk-theme-frappe/.CI/config +++ b/catppuccin-gtk-theme-frappe/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1717275420 CI_PKGBUILD_SOURCE=aur diff --git a/catppuccin-gtk-theme-latte/.CI/config b/catppuccin-gtk-theme-latte/.CI/config index 30daafeb0c..66bee94775 100644 --- a/catppuccin-gtk-theme-latte/.CI/config +++ b/catppuccin-gtk-theme-latte/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1717275419 CI_PKGBUILD_SOURCE=aur diff --git a/catppuccin-gtk-theme-macchiato/.CI/config b/catppuccin-gtk-theme-macchiato/.CI/config index 52091348e0..66bee94775 100644 --- a/catppuccin-gtk-theme-macchiato/.CI/config +++ b/catppuccin-gtk-theme-macchiato/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1717275422 CI_PKGBUILD_SOURCE=aur diff --git a/catppuccin-gtk-theme-mocha/.CI/config b/catppuccin-gtk-theme-mocha/.CI/config index 8d6838aa8d..66bee94775 100644 --- a/catppuccin-gtk-theme-mocha/.CI/config +++ b/catppuccin-gtk-theme-mocha/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1717275423 CI_PKGBUILD_SOURCE=aur diff --git a/catt/.CI/config b/catt/.CI/config index 81259d35e6..bb0b637c65 100644 --- a/catt/.CI/config +++ b/catt/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1706483571 +CI_PACKAGE_BUMP=0.12.12-1/1 CI_PKGBUILD_SOURCE=aur diff --git a/cava-git/.CI/config b/cava-git/.CI/config index af47149dfc..66bee94775 100644 --- a/cava-git/.CI/config +++ b/cava-git/.CI/config @@ -1,3 +1 @@ -CI_PKGBUILD_TIMESTAMP=1723017402 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=f515f9381e2b5b96b9c6acef2b79e02d86a5d3a0 diff --git a/cava/.CI/config b/cava/.CI/config index 71ef84f164..bb6302f22f 100644 --- a/cava/.CI/config +++ b/cava/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1715885054 +CI_PACKAGE_BUMP=0.10.2-2/1 CI_PKGBUILD_SOURCE=aur diff --git a/ccd2cue/.CI/config b/ccd2cue/.CI/config index fa28aa59df..66bee94775 100644 --- a/ccd2cue/.CI/config +++ b/ccd2cue/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1508010312 CI_PKGBUILD_SOURCE=aur diff --git a/cecilia-git/.CI/config b/cecilia-git/.CI/config index 588bc183a7..4e0bb27fed 100644 --- a/cecilia-git/.CI/config +++ b/cecilia-git/.CI/config @@ -1,4 +1,3 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1713050744 +CI_PACKAGE_BUMP=5.4.1.r15.gc592f8e-1/3 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=c592f8e910232c3568d7d1b54bcd28e8c664927a diff --git a/cef-minimal-obs-bin/.CI/config b/cef-minimal-obs-bin/.CI/config index bcf1b240c8..66bee94775 100644 --- a/cef-minimal-obs-bin/.CI/config +++ b/cef-minimal-obs-bin/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1708439967 CI_PKGBUILD_SOURCE=aur diff --git a/celeste/.CI/config b/celeste/.CI/config index 0c6ac24502..66bee94775 100644 --- a/celeste/.CI/config +++ b/celeste/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1722013139 CI_PKGBUILD_SOURCE=aur diff --git a/celt/.CI/config b/celt/.CI/config index 8515e94269..66bee94775 100644 --- a/celt/.CI/config +++ b/celt/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1725054610 CI_PKGBUILD_SOURCE=aur diff --git a/cemu-git/.CI/config b/cemu-git/.CI/config index aae75a2689..d64bf89ae8 100644 --- a/cemu-git/.CI/config +++ b/cemu-git/.CI/config @@ -1,3 +1,3 @@ BUILDER_CACHE_SOURCES=true +CI_PACKAGE_BUMP=2.4.r1.g269d5b9-1/1 CI_PKGBUILD_SOURCE=custom -CI_GIT_COMMIT=8508c625407e80a5a7fcb9cf02c5355d018ff64b diff --git a/cemu-git/.SRCINFO b/cemu-git/.SRCINFO index 7c932352a5..ea1ba591e6 100644 --- a/cemu-git/.SRCINFO +++ b/cemu-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = cemu-git pkgdesc = Nintendo Wii U emulator - pkgver = 2.2.r3.g8508c62 + pkgver = 2.3.r1.g9941e00 pkgrel = 1 url = https://github.com/cemu-project/Cemu arch = x86_64 @@ -34,7 +34,7 @@ pkgbase = cemu-git depends = pugixml depends = sdl2 depends = wxwidgets-gtk3 - provides = cemu=2.2 + provides = cemu=2.3 conflicts = cemu source = cemu::git+https://github.com/cemu-project/Cemu.git source = imgui::git+https://github.com/ocornut/imgui.git diff --git a/cemu-git/PKGBUILD b/cemu-git/PKGBUILD index 7910aa28f8..074bbf0ab8 100644 --- a/cemu-git/PKGBUILD +++ b/cemu-git/PKGBUILD @@ -1,8 +1,8 @@ -# Maintainer: +# Maintainer: aur.chaotic.cx _pkgname="cemu" pkgname="$_pkgname-git" -pkgver=2.2.r3.g8508c62 +pkgver=2.3.r1.g9941e00 pkgrel=1 pkgdesc="Nintendo Wii U emulator" url="https://github.com/cemu-project/Cemu" diff --git a/cfs-zen-tweaks/.CI/config b/cfs-zen-tweaks/.CI/config index 22069d5509..e30518cce5 100644 --- a/cfs-zen-tweaks/.CI/config +++ b/cfs-zen-tweaks/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1699810335 +CI_PACKAGE_BUMP=1.3.0-1/1 CI_PKGBUILD_SOURCE=aur diff --git a/cglm/.CI/config b/cglm/.CI/config index 85ab43a255..66bee94775 100644 --- a/cglm/.CI/config +++ b/cglm/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1704730533 CI_PKGBUILD_SOURCE=aur diff --git a/cglm/.SRCINFO b/cglm/.SRCINFO index 2ef9d13857..c5813ff4b1 100644 --- a/cglm/.SRCINFO +++ b/cglm/.SRCINFO @@ -1,12 +1,12 @@ pkgbase = cglm pkgdesc = OpenGL Mathematics (glm) for C - pkgver = 0.9.2 + pkgver = 0.9.4 pkgrel = 1 url = https://github.com/recp/cglm arch = x86_64 license = MIT makedepends = cmake - source = cglm-0.9.2.tar.gz::https://github.com/recp/cglm/archive/v0.9.2.tar.gz - md5sums = c7a571da4f5c3738d167c2bc5233b304 + source = cglm-0.9.4.tar.gz::https://github.com/recp/cglm/archive/v0.9.4.tar.gz + md5sums = e9e1fbadd7f0022c6ad9c5d280241fee pkgname = cglm diff --git a/cglm/PKGBUILD b/cglm/PKGBUILD index 7312107497..81d1199573 100644 --- a/cglm/PKGBUILD +++ b/cglm/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Kat Witten pkgname=cglm -pkgver=0.9.2 +pkgver=0.9.4 pkgrel=1 pkgdesc="OpenGL Mathematics (glm) for C" arch=('x86_64') @@ -8,7 +8,7 @@ url="https://github.com/recp/cglm" license=('MIT') makedepends=('cmake') source=("$pkgname-$pkgver.tar.gz::https://github.com/recp/cglm/archive/v$pkgver.tar.gz") -md5sums=('c7a571da4f5c3738d167c2bc5233b304') +md5sums=('e9e1fbadd7f0022c6ad9c5d280241fee') build() { cd "$pkgname-$pkgver" diff --git a/chaotic-keyring/.gitignore b/chaotic-keyring/.gitignore deleted file mode 100644 index b3b5ee01b1..0000000000 --- a/chaotic-keyring/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -keyring.tar.gz -*.pkg.tar.zst -/src/ -/pkg/ diff --git a/chaotic-mirrorlist/.SRCINFO b/chaotic-mirrorlist/.SRCINFO index bd204de9b2..32c8601479 100644 --- a/chaotic-mirrorlist/.SRCINFO +++ b/chaotic-mirrorlist/.SRCINFO @@ -1,12 +1,13 @@ pkgbase = chaotic-mirrorlist pkgdesc = Chaotic-AUR mirrorlist to use with Pacman - pkgver = 20240708 + pkgver = 20240724 pkgrel = 1 url = https://aur.chaotic.cx arch = any license = GPL + replaces = chaotic-kf5-dummy backup = etc/pacman.d/chaotic-mirrorlist source = mirrorlist - sha256sums = e004948a51828aeab870e3eef57c35f41fca3450eddd7c27b0fc3ba3f92ef2d2 + sha256sums = 11ece2a372515432648bc1dfaa2b7af093b91251f5421810549fa86ef188eddd pkgname = chaotic-mirrorlist diff --git a/chaotic-mirrorlist/.gitignore b/chaotic-mirrorlist/.gitignore deleted file mode 100644 index 542f1cf567..0000000000 --- a/chaotic-mirrorlist/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -/src/ -/pkg/ -*.pkg.tar.* diff --git a/chaotic-mirrorlist/PKGBUILD b/chaotic-mirrorlist/PKGBUILD index 9021f767fe..996b94476e 100644 --- a/chaotic-mirrorlist/PKGBUILD +++ b/chaotic-mirrorlist/PKGBUILD @@ -4,7 +4,7 @@ # Contributor: Dan McGee pkgname=chaotic-mirrorlist -pkgver=20240708 +pkgver=20240724 pkgrel=1 pkgdesc="Chaotic-AUR mirrorlist to use with Pacman" arch=('any') @@ -12,6 +12,8 @@ url="https://aur.chaotic.cx" license=('GPL') backup=(etc/pacman.d/chaotic-mirrorlist) source=(mirrorlist) +# This replaces gets removed by the build infra, but it is also present in the interfere +replaces=(chaotic-kf5-dummy) # NOTE on building this package: # * Go to the trunk/ directory @@ -29,4 +31,4 @@ package() { install -m644 "$srcdir/mirrorlist" "$pkgdir/etc/pacman.d/chaotic-mirrorlist" } -sha256sums=('e004948a51828aeab870e3eef57c35f41fca3450eddd7c27b0fc3ba3f92ef2d2') +sha256sums=('11ece2a372515432648bc1dfaa2b7af093b91251f5421810549fa86ef188eddd') diff --git a/chaotic-mirrorlist/mirrorlist b/chaotic-mirrorlist/mirrorlist index f81f331a98..f7c907ca1b 100644 --- a/chaotic-mirrorlist/mirrorlist +++ b/chaotic-mirrorlist/mirrorlist @@ -68,8 +68,3 @@ Server = https://us-tx-mirror.chaotic.cx/$repo/$arch # Utah # * By: ash Server = https://us-ut-mirror.chaotic.cx/$repo/$arch - - -# IPFS mirror - for instructions on how to use it consult the projects repo (https://github.com/RubenKelevra/pacman.store) -# * By: RubenKelevra / pacman.store -# Server = http://chaotic-aur.pkg.pacman.store.ipns.localhost:8080/$arch diff --git a/chaotic-neofetch-git/.CI/config b/chaotic-neofetch-git/.CI/config index c1e0342d21..27b4db01be 100644 --- a/chaotic-neofetch-git/.CI/config +++ b/chaotic-neofetch-git/.CI/config @@ -1,2 +1 @@ CI_PKGBUILD_SOURCE=custom -CI_GIT_COMMIT=ccd5d9f52609bbdcd5d8fa78c4fdb0f12954125f diff --git a/chaotic-neofetch-git/PKGBUILD b/chaotic-neofetch-git/PKGBUILD index 89c90e9aff..348e451cd1 100644 --- a/chaotic-neofetch-git/PKGBUILD +++ b/chaotic-neofetch-git/PKGBUILD @@ -1,7 +1,10 @@ +# Maintainer: aur.chaotic.cx +# Adapted for Chaotic-AUR by PedroHLC + # Neofetch Maintainer: Dylan Araps # neofetch-git AUR PKGBUILD - https://aur.archlinux.org/packages/neofetch-git/ # Frogged by Tk-Glitch -# Adapted for Chaotic-AUR by PedroHLC + pkgname=chaotic-neofetch-git _pkgname=neofetch pkgver=7.1.0.r166.gccd5d9f5 diff --git a/charls/.CI/config b/charls/.CI/config index 0eb7b5d7e6..66bee94775 100644 --- a/charls/.CI/config +++ b/charls/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1690042996 CI_PKGBUILD_SOURCE=aur diff --git a/chatgpt-desktop-bin/.CI/config b/chatgpt-desktop-bin/.CI/config index 6307ce8717..66bee94775 100644 --- a/chatgpt-desktop-bin/.CI/config +++ b/chatgpt-desktop-bin/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1691143159 CI_PKGBUILD_SOURCE=aur diff --git a/chatterino2-7tv-git/.CI/config b/chatterino2-7tv-git/.CI/config index 8490d1d32f..8471e6a8af 100644 --- a/chatterino2-7tv-git/.CI/config +++ b/chatterino2-7tv-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1712817339 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=2057d74f1faa3c56a514ce721e491a791008ec58 diff --git a/chatterino2-git/.CI/config b/chatterino2-git/.CI/config index c800abdbcb..8471e6a8af 100644 --- a/chatterino2-git/.CI/config +++ b/chatterino2-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1718542313 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=c4df31a2260806a3e6944bf55a40af120454d2bc diff --git a/cheat/.CI/config b/cheat/.CI/config index c3ca4c11bd..66bee94775 100644 --- a/cheat/.CI/config +++ b/cheat/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1725564453 CI_PKGBUILD_SOURCE=aur diff --git a/check-broken-packages-pacman-hook-git/.CI/config b/check-broken-packages-pacman-hook-git/.CI/config index 0dd60c2f74..8471e6a8af 100644 --- a/check-broken-packages-pacman-hook-git/.CI/config +++ b/check-broken-packages-pacman-hook-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1703970275 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=b45bb5581c587149b315eccfe6afa747ad0998e6 diff --git a/cheese-git/.CI/PKGBUILD.append b/cheese-git/.CI/PKGBUILD.append deleted file mode 100644 index be12fff59a..0000000000 --- a/cheese-git/.CI/PKGBUILD.append +++ /dev/null @@ -1,8 +0,0 @@ -url="https://gitlab.gnome.org/GNOME/cheese" - -pkgver() { - cd "${_pkgbase}" - - git describe --long --tags --abbrev=7 --exclude='*[a-zA-Z][a-zA-Z]*' \ - | sed -E 's/^v//;s/([^-]*-g)/r\1/;s/-/./g' -} diff --git a/cheese-git/.CI/config b/cheese-git/.CI/config deleted file mode 100644 index 1ea6ad3f2c..0000000000 --- a/cheese-git/.CI/config +++ /dev/null @@ -1,4 +0,0 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1720272725 -CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=6d81037c547ab4b053921c10510895ebc1d38231 diff --git a/cheese-git/.CI/info b/cheese-git/.CI/info deleted file mode 100644 index 3db2f681a2..0000000000 --- a/cheese-git/.CI/info +++ /dev/null @@ -1,2 +0,0 @@ -REQ_ORIGIN=github/357 -REQ_REASON=request diff --git a/cheese-git/.CI/prepare b/cheese-git/.CI/prepare deleted file mode 100755 index bb75f1baa0..0000000000 --- a/cheese-git/.CI/prepare +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env sh - -# mangle groups directive -sed -E -e 's&^(\s*)(groups\+?=)&\1 _ignore_\2&g' -i PKGBUILD diff --git a/cheese-git/.SRCINFO b/cheese-git/.SRCINFO deleted file mode 100644 index 430da8ee58..0000000000 --- a/cheese-git/.SRCINFO +++ /dev/null @@ -1,53 +0,0 @@ -pkgbase = cheese-git - pkgdesc = Take photos and videos with your webcam, with fun graphical effects - pkgver = 44.1.r3.ga7af338 - pkgrel = 3 - url = https://gitlab.gnome.org/GNOME/cheese - arch = x86_64 - license = GPL-2.0-or-later - checkdepends = xorg-server-xvfb - makedepends = appstream-glib - makedepends = clutter-gst - makedepends = git - makedepends = glib2-devel - makedepends = gobject-introspection - makedepends = gst-plugins-bad - makedepends = meson - makedepends = vala - makedepends = yelp-tools - depends = clutter-gtk - depends = gnome-desktop - depends = gstreamer - depends = gtk3 - depends = libcanberra - source = git+https://gitlab.gnome.org/GNOME/cheese.git - sha256sums = SKIP - -pkgname = cheese-git - depends = clutter-gtk - depends = gnome-desktop - depends = gstreamer - depends = gtk3 - depends = libcanberra - depends = libcheese-git=44.1.r3.ga7af338-3 - provides = cheese - conflicts = cheese - -pkgname = libcheese-git - pkgdesc = Webcam widget for Clutter and GTK - depends = clutter - depends = clutter-gst - depends = clutter-gtk - depends = dconf - depends = gdk-pixbuf2 - depends = glib2 - depends = gnome-video-effects - depends = gst-plugins-bad-libs - depends = gst-plugins-base-libs - depends = gstreamer - depends = gtk3 - depends = libcanberra - provides = libcheese - provides = libcheese.so - provides = libcheese-gtk.so - conflicts = libcheese diff --git a/cheese-git/PKGBUILD b/cheese-git/PKGBUILD deleted file mode 100644 index 20a2c76c7c..0000000000 --- a/cheese-git/PKGBUILD +++ /dev/null @@ -1,115 +0,0 @@ -# Maintainer: -# Contributor: Pellegrino Prevete (tallero) - -_pkgbase="cheese" -pkgbase="$_pkgbase-git" -pkgname=( - cheese-git - libcheese-git -) -pkgver=44.1.r3.ga7af338 -pkgrel=3 -pkgdesc="Take photos and videos with your webcam, with fun graphical effects" -url="https://gitlab.gnome.org/GNOME/cheese" -license=('GPL-2.0-or-later') -arch=('x86_64') - -depends=( - clutter-gtk - gnome-desktop - gstreamer - gtk3 - libcanberra -) -makedepends=( - appstream-glib - clutter-gst - git - glib2-devel - gobject-introspection - gst-plugins-bad - meson - vala - yelp-tools -) -checkdepends=(xorg-server-xvfb) - -_pkgsrc="$_pkgbase" -source=("git+https://gitlab.gnome.org/GNOME/cheese.git") -sha256sums=('SKIP') - -pkgver() { - cd "$_pkgsrc" - git describe --long --tags --abbrev=7 \ - | sed -E 's/^[^0-9]*//;s/([^-]*-g)/r\1/;s/-/./g' -} - -build() { - CFLAGS+=" -Wno-error=incompatible-pointer-types" - - local meson_options=( - -D tests=false - ) - - arch-meson "$_pkgsrc" build "${meson_options[@]}" - meson compile -C build -} - -check() ( - export GSETTINGS_SCHEMA_DIR="$srcdir/cheese/data" - glib-compile-schemas "$GSETTINGS_SCHEMA_DIR" - - dbus-run-session xvfb-run -s '-nolisten local' \ - meson test -C build --print-errorlogs -) - -_pick() { - local p="$1" f d - shift - for f; do - d="$srcdir/$p/${f#$pkgdir/}" - mkdir -p "$(dirname "$d")" - mv "$f" "$d" - rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")" - done -} - -package_cheese-git() { - depends+=("libcheese-git=$pkgver-$pkgrel") - provides=("cheese") - conflicts=("cheese") - - meson install -C build --destdir "$pkgdir" - - cd "$pkgdir" - - _pick libs usr/include - _pick libs usr/lib/{girepository-1.0,libcheese*,pkgconfig} - _pick libs usr/share/{gir-1.0,glib-2.0/schemas,gtk-doc} -} - -package_libcheese-git() { - pkgdesc="Webcam widget for Clutter and GTK" - - depends=( - clutter - clutter-gst - clutter-gtk - dconf - gdk-pixbuf2 - glib2 - gnome-video-effects - gst-plugins-bad-libs - gst-plugins-base-libs - gstreamer - gtk3 - libcanberra - ) - provides=( - libcheese - libcheese{,-gtk}.so - ) - conflicts=(libcheese) - - mv libs/* "$pkgdir" -} diff --git a/chemtool/.CI/config b/chemtool/.CI/config index dd73ee5384..53a466ac22 100644 --- a/chemtool/.CI/config +++ b/chemtool/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1648831828 +CI_PACKAGE_BUMP=1.6.14-4/1 CI_PKGBUILD_SOURCE=aur diff --git a/chiaki/.CI/config b/chiaki/.CI/config index 2f3f129a57..66bee94775 100644 --- a/chiaki/.CI/config +++ b/chiaki/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1694805011 CI_PKGBUILD_SOURCE=aur diff --git a/chirp-next/.CI/config b/chirp-next/.CI/config index 6b93f52216..66bee94775 100644 --- a/chirp-next/.CI/config +++ b/chirp-next/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1726775203 CI_PKGBUILD_SOURCE=aur diff --git a/chirp-next/.SRCINFO b/chirp-next/.SRCINFO index 2711f69a42..f1b16bf69f 100644 --- a/chirp-next/.SRCINFO +++ b/chirp-next/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = chirp-next - pkgdesc = GUI tool for programming ham radios, built from daily build - pkgver = 20240919 + pkgdesc = GUI tool for programming ham radios, built from chirp-next + pkgver = 20241122 pkgrel = 1 url = https://chirpmyradio.com/projects/chirp/wiki/Home install = chirp-next.install @@ -22,7 +22,7 @@ pkgbase = chirp-next conflicts = chirp conflicts = chirp-daily options = !emptydirs - source = chirp-next-20240919.tar.gz::https://archive.chirpmyradio.com/chirp_next/next-20240919/chirp-20240919.tar.gz - sha1sums = f535544768f6d4b22afec0356e595de7b140357e + source = chirp-next-20241122.tar.gz::https://archive.chirpmyradio.com/chirp_next/next-20241122/chirp-20241122.tar.gz + sha1sums = 0030dec600b48644c4c09f125f754e41eb3fcd7e pkgname = chirp-next diff --git a/chirp-next/PKGBUILD b/chirp-next/PKGBUILD index f5e647db5c..9afc2bcae3 100644 --- a/chirp-next/PKGBUILD +++ b/chirp-next/PKGBUILD @@ -1,13 +1,14 @@ +# Maintainer: WT5A +# Maintainer: Helmut Stult # Thanks to the maintainer(s) of chirp-daily -# Maintainer: WT5A # Contributor: 0b100100 <0b100100 at protonmail dot ch> # Contributor: Ashley Roll (ash@digitalnemesis.com) # Contributor: Erez Raviv (erezraviv@gmail.com) pkgname=chirp-next -pkgver=20240919 +pkgver=20241122 pkgrel=1 -pkgdesc="GUI tool for programming ham radios, built from daily build" +pkgdesc="GUI tool for programming ham radios, built from chirp-next" arch=('any') url="https://chirpmyradio.com/projects/chirp/wiki/Home" license=('GPL-3.0-or-later') @@ -20,7 +21,7 @@ provides=(chirp) install=$pkgname.install source=("${pkgname}-${pkgver}.tar.gz::https://archive.chirpmyradio.com/chirp_next/next-${pkgver}/chirp-${pkgver}.tar.gz") # Checksums: https://archive.chirpmyradio.com/chirp_next/next-$pkgver/SHA1SUM -sha1sums=('f535544768f6d4b22afec0356e595de7b140357e') +sha1sums=('0030dec600b48644c4c09f125f754e41eb3fcd7e') build() { cd "chirp-${pkgver}" diff --git a/chkrootkit/.CI/config b/chkrootkit/.CI/config index 7996abf82b..66bee94775 100644 --- a/chkrootkit/.CI/config +++ b/chkrootkit/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1709901940 CI_PKGBUILD_SOURCE=aur diff --git a/chocolate-doom/.CI/config b/chocolate-doom/.CI/config index fbab8e39fa..66bee94775 100644 --- a/chocolate-doom/.CI/config +++ b/chocolate-doom/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1722706103 CI_PKGBUILD_SOURCE=aur diff --git a/choosenim/.CI/config b/choosenim/.CI/config index e23b1b1d86..9fb502ef7e 100644 --- a/choosenim/.CI/config +++ b/choosenim/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1726995995 +CI_PACKAGE_BUMP=0.8.10-1/1 CI_PKGBUILD_SOURCE=aur diff --git a/choosenim/.SRCINFO b/choosenim/.SRCINFO index b9030f5390..a5ca89a1bc 100644 --- a/choosenim/.SRCINFO +++ b/choosenim/.SRCINFO @@ -1,14 +1,14 @@ pkgbase = choosenim pkgdesc = Installs different versions of Nim compiler and tools and switches between them - pkgver = 0.8.7 - pkgrel = 3 + pkgver = 0.8.10 + pkgrel = 1 url = https://github.com/nim-lang/choosenim install = choosenim.install arch = x86_64 license = BSD-3-Clause makedepends = git - depends = glibc depends = curl + depends = glibc optdepends = clang: C/C++ backend optdepends = gcc: C/C++ backend provides = nim @@ -17,8 +17,10 @@ pkgbase = choosenim provides = nimpretty provides = nimsuggest conflicts = nim - source = choosenim-0.8.7.tar.gz::https://github.com/nim-lang/choosenim/archive/refs/tags/v0.8.7.tar.gz - sha256sums = 21201a9625c0fc3253dfa6c6ff18c2fb0b16e7c82cf73a188120b7cf3df11dc0 + source = choosenim-0.8.10.tar.gz::https://github.com/nim-lang/choosenim/archive/refs/tags/v0.8.10.tar.gz + source = choosenim-execv.patch::https://patch-diff.githubusercontent.com/raw/nim-lang/choosenim/pull/38.patch + sha256sums = 5173e86353fc82facc387be413b4909b1ef7f600aa53c9e6a1501619d7f63b88 + sha256sums = cc3967087b2002a0e346aa65b628b89f9373c1755dfe3469d7ff88f1db322a9e source_x86_64 = https://nim-lang.org/download/nim-2.0.8-linux_x64.tar.xz sha256sums_x86_64 = c971320d391db30917b3b61c471cff4b3cd3cd883d4f7af099d3c9018cc15683 diff --git a/choosenim/PKGBUILD b/choosenim/PKGBUILD index ac37405b5d..4980c71796 100644 --- a/choosenim/PKGBUILD +++ b/choosenim/PKGBUILD @@ -4,10 +4,10 @@ pkgname=choosenim pkgdesc='Installs different versions of Nim compiler and tools and switches between them' url='https://github.com/nim-lang/choosenim' license=(BSD-3-Clause) -pkgver=0.8.7 -pkgrel=3 +pkgver=0.8.10 +pkgrel=1 arch=(x86_64) -depends=(glibc curl) +depends=(curl glibc) makedepends=(git) provides=(nim nimble nimgrep nimpretty nimsuggest) conflicts=(nim) @@ -17,19 +17,25 @@ optdepends=( ) _nimver=2.0.8 install=choosenim.install -source=("$pkgname-$pkgver.tar.gz::https://github.com/nim-lang/choosenim/archive/refs/tags/v$pkgver.tar.gz") +source=("$pkgname-$pkgver.tar.gz::https://github.com/nim-lang/choosenim/archive/refs/tags/v$pkgver.tar.gz" + 'choosenim-execv.patch::https://patch-diff.githubusercontent.com/raw/nim-lang/choosenim/pull/38.patch') source_x86_64=("https://nim-lang.org/download/nim-2.0.8-linux_x64.tar.xz") -sha256sums=('21201a9625c0fc3253dfa6c6ff18c2fb0b16e7c82cf73a188120b7cf3df11dc0') +sha256sums=('5173e86353fc82facc387be413b4909b1ef7f600aa53c9e6a1501619d7f63b88' + 'cc3967087b2002a0e346aa65b628b89f9373c1755dfe3469d7ff88f1db322a9e') sha256sums_x86_64=('c971320d391db30917b3b61c471cff4b3cd3cd883d4f7af099d3c9018cc15683') prepare() { cd $pkgname-$pkgver # we compile proxyexe in a separate step sed -i -e '/static: compileProxyexe()/d' src/choosenimpkg/switcher.nim + # Fix for https://github.com/nim-lang/choosenim/issues/13 + patch -p1 -N -r - -i "$srcdir"/choosenim-execv.patch + if [[ "$CARCH" = "x86_64" ]]; then # use official Nim binary distribution for bootstrapping export PATH="$srcdir/nim-$_nimver/bin:/usr/bin:/usr/local/bin" fi + # download third-party dependencies here instead of during build nimble install -y --depsOnly --nimbleDir:"$srcdir"/nimble } @@ -40,6 +46,7 @@ build() { export PATH="$srcdir/nim-$_nimver/bin:/usr/bin:/usr/local/bin" fi nimble c -y -d:release --offline --nimbleDir:"$srcdir"/nimble src/choosenimpkg/proxyexe + strip src/choosenimpkg/proxyexe nimble build -y -d:release --offline --nimbleDir:"$srcdir"/nimble } diff --git a/choosenim/choosenim.install b/choosenim/choosenim.install index e2995a7dca..feab639edc 100644 --- a/choosenim/choosenim.install +++ b/choosenim/choosenim.install @@ -5,7 +5,7 @@ post_install() { Please remember to add '\$HOME/.nimble/bin' to your PATH, e.g. by adding the following to your ~/.bashrc file: - export PATH="\$HOME/.nimble/bin:$PATH" + export PATH="\$HOME/.nimble/bin:\$PATH" Then install the current stable Nim version with: diff --git a/chromaprint-fftw/.CI/config b/chromaprint-fftw/.CI/config index 10d93d550b..66bee94775 100644 --- a/chromaprint-fftw/.CI/config +++ b/chromaprint-fftw/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1675527821 CI_PKGBUILD_SOURCE=aur diff --git a/chrome-remote-desktop/.CI/config b/chrome-remote-desktop/.CI/config index 4c21f10381..66bee94775 100644 --- a/chrome-remote-desktop/.CI/config +++ b/chrome-remote-desktop/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1720747325 CI_PKGBUILD_SOURCE=aur diff --git a/chrome-remote-desktop/.SRCINFO b/chrome-remote-desktop/.SRCINFO index c1a29f7624..92e20e1f04 100644 --- a/chrome-remote-desktop/.SRCINFO +++ b/chrome-remote-desktop/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = chrome-remote-desktop pkgdesc = Access other computers or allow another user to access your computer securely over the Internet - pkgver = 127.0.6533.8 + pkgver = 130.0.6723.14 pkgrel = 1 url = https://remotedesktop.google.com install = chrome-remote-desktop.install @@ -19,12 +19,12 @@ pkgbase = chrome-remote-desktop depends = xorg-xauth depends = xorg-xdpyinfo depends = xorg-xrandr - source = chrome-remote-desktop-127.0.6533.8.deb::https://dl.google.com/linux/chrome-remote-desktop/deb/pool/main/c/chrome-remote-desktop/chrome-remote-desktop_127.0.6533.8_amd64.deb + source = chrome-remote-desktop-130.0.6723.14.deb::https://dl.google.com/linux/chrome-remote-desktop/deb/pool/main/c/chrome-remote-desktop/chrome-remote-desktop_130.0.6723.14_amd64.deb source = chrome-remote-desktop.service source = pamrule source = crd source = xdg-base-directory.patch - sha256sums = 3a73026dd9e6118deb32dfea13ea0269f12001016359b2d3cb8e9f74d30f276e + sha256sums = 20a70b57c56eefcbf791bdaabda510fedd801c9e50985a5eecaae001730fdad7 sha256sums = e5da5ae89b5bc599f72f415d1523341b25357931b0de46159fce50ab83615a4b sha256sums = fcc38269eb1cc902abff9688eda9377a22367e39b9f111f87c0dd8e77adb82e2 sha256sums = 021110f49d465294517eec92eeb24ebca41e264ef33cbdda78732add1f269d02 diff --git a/chrome-remote-desktop/PKGBUILD b/chrome-remote-desktop/PKGBUILD index 00efe21d61..dc61981e91 100644 --- a/chrome-remote-desktop/PKGBUILD +++ b/chrome-remote-desktop/PKGBUILD @@ -5,7 +5,7 @@ # Contributor: Mateus Rodrigues Costa pkgname=chrome-remote-desktop -pkgver=127.0.6533.8 +pkgver=130.0.6723.14 pkgrel=1 pkgdesc="Access other computers or allow another user to access your computer securely over the Internet" arch=("x86_64") @@ -21,7 +21,7 @@ source=( "xdg-base-directory.patch" ) sha256sums=( - "3a73026dd9e6118deb32dfea13ea0269f12001016359b2d3cb8e9f74d30f276e" + "20a70b57c56eefcbf791bdaabda510fedd801c9e50985a5eecaae001730fdad7" "e5da5ae89b5bc599f72f415d1523341b25357931b0de46159fce50ab83615a4b" "fcc38269eb1cc902abff9688eda9377a22367e39b9f111f87c0dd8e77adb82e2" "021110f49d465294517eec92eeb24ebca41e264ef33cbdda78732add1f269d02" diff --git a/chromedriver/.CI/config b/chromedriver/.CI/config index 31491416f2..66bee94775 100644 --- a/chromedriver/.CI/config +++ b/chromedriver/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1727215216 CI_PKGBUILD_SOURCE=aur diff --git a/chromedriver/.SRCINFO b/chromedriver/.SRCINFO index 7ed98a9bb5..90923432e0 100644 --- a/chromedriver/.SRCINFO +++ b/chromedriver/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = chromedriver pkgdesc = Standalone server that implements the W3C WebDriver standard (for google-chrome) - pkgver = 129.0.6668.70 + pkgver = 131.0.6778.85 pkgrel = 1 url = https://chromedriver.chromium.org/ arch = x86_64 @@ -14,7 +14,7 @@ pkgbase = chromedriver depends = xdg-utils optdepends = google-chrome conflicts = chromium - source = chromedriver_129.0.6668.70_linux64.zip::https://storage.googleapis.com/chrome-for-testing-public/129.0.6668.70/linux64/chromedriver-linux64.zip - sha512sums = 64edfc3d79a03db6fa9a5f16e7139d2102a8b3ab11ca2dc143b0b2c4d1dd87226038a9b049f0ecf930c074e49deb303d57c2680f650f5312d9d37d0f470e8f9f + source = chromedriver_131.0.6778.85_linux64.zip::https://storage.googleapis.com/chrome-for-testing-public/131.0.6778.85/linux64/chromedriver-linux64.zip + sha512sums = aec28005e4a7deebdeefec3605251347d10bcfc6c05b9bdbe6ec44611cb4d6f376da3cd35c2f8bd3895d480bb02867944f9c6e9dcc4ab0ad3a7397ef1fcf5d2c pkgname = chromedriver diff --git a/chromedriver/PKGBUILD b/chromedriver/PKGBUILD index d3cb0ae6e0..6c42662475 100644 --- a/chromedriver/PKGBUILD +++ b/chromedriver/PKGBUILD @@ -6,7 +6,7 @@ # Contributor: James An # Contributor: lybin pkgname=chromedriver -pkgver=129.0.6668.70 +pkgver=131.0.6778.85 pkgrel=1 pkgdesc="Standalone server that implements the W3C WebDriver standard (for google-chrome)" arch=('x86_64') @@ -16,7 +16,7 @@ depends=(alsa-lib gtk3 libcups libxss libxtst nss xdg-utils) optdepends=(google-chrome) conflicts=(chromium) source=("${pkgname}_${pkgver}_linux64.zip::https://storage.googleapis.com/chrome-for-testing-public/${pkgver}/linux64/${pkgname}-linux64.zip") -sha512sums=('64edfc3d79a03db6fa9a5f16e7139d2102a8b3ab11ca2dc143b0b2c4d1dd87226038a9b049f0ecf930c074e49deb303d57c2680f650f5312d9d37d0f470e8f9f') +sha512sums=('aec28005e4a7deebdeefec3605251347d10bcfc6c05b9bdbe6ec44611cb4d6f376da3cd35c2f8bd3895d480bb02867944f9c6e9dcc4ab0ad3a7397ef1fcf5d2c') package() { install -Dm755 -t "$pkgdir/usr/bin/" "$srcdir/$pkgname-linux64/$pkgname" } diff --git a/chromium-widevine/.CI/config b/chromium-widevine/.CI/config index 1af3f3ec7f..66bee94775 100644 --- a/chromium-widevine/.CI/config +++ b/chromium-widevine/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1708355847 CI_PKGBUILD_SOURCE=aur diff --git a/cinelerra-gg-git/.CI/config b/cinelerra-gg-git/.CI/config index 541b8f77f6..8471e6a8af 100644 --- a/cinelerra-gg-git/.CI/config +++ b/cinelerra-gg-git/.CI/config @@ -1,3 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1680904835 CI_PKGBUILD_SOURCE=aur diff --git a/cinny-desktop/.CI/config b/cinny-desktop/.CI/config index 552e4d7ef0..66bee94775 100644 --- a/cinny-desktop/.CI/config +++ b/cinny-desktop/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1727095148 CI_PKGBUILD_SOURCE=aur diff --git a/cinny-desktop/.SRCINFO b/cinny-desktop/.SRCINFO index 5eed0fdf54..bddc1a3203 100644 --- a/cinny-desktop/.SRCINFO +++ b/cinny-desktop/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = cinny-desktop pkgdesc = Matrix client focusing primarily on a simple, elegant and secure interface. - pkgver = 4.2.1 + pkgver = 4.2.3 pkgrel = 1 url = https://cinny.in/ install = cinny-desktop.install @@ -18,8 +18,8 @@ pkgbase = cinny-desktop depends = libvips depends = sqlite depends = gst-plugins-good - source = cinny-desktop-4.2.1.zip::https://github.com/cinnyapp/cinny-desktop/releases/download/v4.2.1/cinny-desktop-v4.2.1.zip - sha256sums = e20b76a45555a70bd2a088289cd64122fe9603c0901cf43c5b209494c8a4fa9e - sha512sums = f68fe5c9722ac8aa6f9973f36a92789fb199cfc75fa18ae880057b0ec70d5365bf1901b13c05c326adda1652c26bb8d39ecf7cd4e603e85827a67d8eacc1feb4 + source = cinny-desktop-4.2.3.zip::https://github.com/cinnyapp/cinny-desktop/releases/download/v4.2.3/cinny-desktop-v4.2.3.zip + sha256sums = 657a43e6cc9522d28b98e4f56ec4074cab4ddfdace2ef669956d1bba739b28d2 + sha512sums = e86a6632335ba3f7ddb65d264f5d84bd4c7c6994cf326df2152d2f40701b117e51616b7e25d2a794827e08decc70a4f03c48f80e337f3bac04632661a29dd013 pkgname = cinny-desktop diff --git a/cinny-desktop/PKGBUILD b/cinny-desktop/PKGBUILD index be8eb9aed0..74d1f53188 100644 --- a/cinny-desktop/PKGBUILD +++ b/cinny-desktop/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Jef Roosens pkgname='cinny-desktop' -pkgver='4.2.1' +pkgver='4.2.3' pkgrel='1' pkgdesc='Matrix client focusing primarily on a simple, elegant and secure interface.' arch=('x86_64') @@ -25,8 +25,8 @@ makedepends=('rust' 'nodejs' 'npm') # This makes sure dirty builds still pull down the newest version source=("${pkgname}-${pkgver}.zip::https://github.com/cinnyapp/cinny-desktop/releases/download/v${pkgver}/cinny-desktop-v${pkgver}.zip") -sha256sums=('e20b76a45555a70bd2a088289cd64122fe9603c0901cf43c5b209494c8a4fa9e') -sha512sums=('f68fe5c9722ac8aa6f9973f36a92789fb199cfc75fa18ae880057b0ec70d5365bf1901b13c05c326adda1652c26bb8d39ecf7cd4e603e85827a67d8eacc1feb4') +sha256sums=('657a43e6cc9522d28b98e4f56ec4074cab4ddfdace2ef669956d1bba739b28d2') +sha512sums=('e86a6632335ba3f7ddb65d264f5d84bd4c7c6994cf326df2152d2f40701b117e51616b7e25d2a794827e08decc70a4f03c48f80e337f3bac04632661a29dd013') install="${pkgname}.install" diff --git a/circle-flags/.CI/config b/circle-flags/.CI/config index 38a2d49026..66bee94775 100644 --- a/circle-flags/.CI/config +++ b/circle-flags/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1695429073 CI_PKGBUILD_SOURCE=aur diff --git a/citra-git/.CI/config b/citra-git/.CI/config index 2b4e55ef22..8471e6a8af 100644 --- a/citra-git/.CI/config +++ b/citra-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1725470647 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=a652fb16975a278c3521735695f9721ae9ec143c diff --git a/ckb-next/.CI/config b/ckb-next/.CI/config index 51e0bc2840..f1dfb79ad0 100644 --- a/ckb-next/.CI/config +++ b/ckb-next/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1687469792 +CI_PACKAGE_BUMP=0.6.0-1/2 CI_PKGBUILD_SOURCE=aur diff --git a/ckbcomp/.CI/config b/ckbcomp/.CI/config index 0106b0c2d3..d06354b79b 100644 --- a/ckbcomp/.CI/config +++ b/ckbcomp/.CI/config @@ -1,3 +1,2 @@ CI_ON_TRIGGER=check -BUILDER_CACHE_SOURCES=true CI_PKGBUILD_SOURCE=custom diff --git a/ckbcomp/.SRCINFO b/ckbcomp/.SRCINFO index dc2b5f7505..9e100de5aa 100755 --- a/ckbcomp/.SRCINFO +++ b/ckbcomp/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = ckbcomp pkgdesc = Compile a XKB keyboard description to a keymap suitable for loadkeys or kbdcontrol - pkgver = 1.228 + pkgver = 1.232 pkgrel = 1 url = https://salsa.debian.org/installer-team/console-setup arch = any diff --git a/ckbcomp/PKGBUILD b/ckbcomp/PKGBUILD index 2d71342f35..0a20c15649 100755 --- a/ckbcomp/PKGBUILD +++ b/ckbcomp/PKGBUILD @@ -1,8 +1,8 @@ -# Maintainer: +# Maintainer: aur.chaotic.cx _pkgname="ckbcomp" pkgname="$_pkgname" -pkgver=1.228 +pkgver=1.232 pkgrel=1 pkgdesc="Compile a XKB keyboard description to a keymap suitable for loadkeys or kbdcontrol" url="https://salsa.debian.org/installer-team/console-setup" diff --git a/clamav-unofficial-sigs/.CI/config b/clamav-unofficial-sigs/.CI/config index 5e5d03b615..4f933fc58c 100644 --- a/clamav-unofficial-sigs/.CI/config +++ b/clamav-unofficial-sigs/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1620484610 +CI_PACKAGE_BUMP=7.2.5-1/3 CI_PKGBUILD_SOURCE=aur diff --git a/clang17/.CI/config b/clang17/.CI/config index ef2ca44d7d..66bee94775 100644 --- a/clang17/.CI/config +++ b/clang17/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1723463485 CI_PKGBUILD_SOURCE=aur diff --git a/clash-geoip/.CI/config b/clash-geoip/.CI/config index 567a8ad06e..66bee94775 100644 --- a/clash-geoip/.CI/config +++ b/clash-geoip/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1726723006 CI_PKGBUILD_SOURCE=aur diff --git a/clash-geoip/.SRCINFO b/clash-geoip/.SRCINFO index 71f8dcb0a6..3b05f1b0e3 100644 --- a/clash-geoip/.SRCINFO +++ b/clash-geoip/.SRCINFO @@ -1,12 +1,12 @@ pkgbase = clash-geoip pkgdesc = GeoIP files for Clash - pkgver = 202409190112 + pkgver = 202411210118 pkgrel = 1 url = https://github.com/Loyalsoldier/geoip arch = any license = CC-BY-SA-4.0 license = GPL-3.0-or-later - source = clash-geoip-202409190112.mmdb::https://github.com/Loyalsoldier/geoip/releases/download/202409190112/Country.mmdb - sha256sums = f4d65abb9dbd66a63bc053a3ff9fb607e4b66129bee02fd1fc2ea9ad08ebfeec + source = clash-geoip-202411210118.mmdb::https://github.com/Loyalsoldier/geoip/releases/download/202411210118/Country.mmdb + sha256sums = a4aefcf0b7e36c1e9540e66455961e95967e43b28649e4e748e5aa5a328cf6b2 pkgname = clash-geoip diff --git a/clash-geoip/PKGBUILD b/clash-geoip/PKGBUILD index 63d060b488..320138945c 100644 --- a/clash-geoip/PKGBUILD +++ b/clash-geoip/PKGBUILD @@ -1,14 +1,14 @@ # Maintainer: Dct Mei pkgname=clash-geoip -pkgver=202409190112 +pkgver=202411210118 pkgrel=1 pkgdesc="GeoIP files for Clash" arch=(any) url="https://github.com/Loyalsoldier/geoip" license=(CC-BY-SA-4.0 GPL-3.0-or-later) source=("${pkgname}-${pkgver}.mmdb::${url}/releases/download/${pkgver}/Country.mmdb") -sha256sums=('f4d65abb9dbd66a63bc053a3ff9fb607e4b66129bee02fd1fc2ea9ad08ebfeec') +sha256sums=('a4aefcf0b7e36c1e9540e66455961e95967e43b28649e4e748e5aa5a328cf6b2') package() { install -Dm0644 "${pkgname}-${pkgver}.mmdb" "${pkgdir}/etc/clash/Country.mmdb" diff --git a/clasp-cl-git/.CI/config b/clasp-cl-git/.CI/config index 6e041a7556..8471e6a8af 100644 --- a/clasp-cl-git/.CI/config +++ b/clasp-cl-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1717418160 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=e013153e85265d5bce02f8c8e5b5ce5c9dcd08d3 diff --git a/clifm-git/.CI/config b/clifm-git/.CI/config index 154f56b6fb..66bee94775 100644 --- a/clifm-git/.CI/config +++ b/clifm-git/.CI/config @@ -1,4 +1 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1661976321 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=d331d5cdc1f640cbf79c1bae29146b41fbbd4186 diff --git a/clifm-git/.SRCINFO b/clifm-git/.SRCINFO index f4d8783ba6..d7dda47598 100644 --- a/clifm-git/.SRCINFO +++ b/clifm-git/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = clifm-git pkgdesc = The command line file manager (development version) pkgver = 1.1.r346.gec633a5 - pkgrel = 1 + pkgrel = 2 url = https://github.com/leo-arch/clifm arch = i686 arch = pentium4 @@ -24,6 +24,8 @@ pkgbase = clifm-git optdepends = udisks2: (un)mount storage devices provides = clifm conflicts = clifm + conflicts = clifm-bin + conflicts = clifm-nerd source = git+https://github.com/leo-arch/clifm.git sha256sums = SKIP diff --git a/clifm-git/LICENSE b/clifm-git/LICENSE new file mode 100644 index 0000000000..e9ebb26cbd --- /dev/null +++ b/clifm-git/LICENSE @@ -0,0 +1,9 @@ +Binary files, as well as any files describing changes ("patches") to the software that is being built are excluded from this license. They are provided under the license terms of the software they describe changes for. + +Any files containing a license notice are excluded from this license. They are provided under the license terms defined in their respective notices. + +Copyright (C) 2024 Arch Linux Contributors + +Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/clifm-git/PKGBUILD b/clifm-git/PKGBUILD index 8ee2ab8db1..fda06cc724 100644 --- a/clifm-git/PKGBUILD +++ b/clifm-git/PKGBUILD @@ -3,13 +3,13 @@ pkgname=clifm-git _pkgname=clifm pkgver=1.1.r346.gec633a5 -pkgrel=1 +pkgrel=2 pkgdesc="The command line file manager (development version)" arch=('i686' 'pentium4' 'x86_64' 'arm' 'aarch64' 'armv7h') url="https://github.com/leo-arch/clifm" license=(GPL2) provides=('clifm') -conflicts=('clifm') +conflicts=('clifm' 'clifm-bin' 'clifm-nerd') depends=('libcap' 'readline' 'acl' 'file') makedepends=('git') optdepends=( diff --git a/clight/.CI/config b/clight/.CI/config index 3dc757da02..93f33c3ea2 100644 --- a/clight/.CI/config +++ b/clight/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1710006077 +CI_PACKAGE_BUMP=4.11-1/1 CI_PKGBUILD_SOURCE=aur diff --git a/clightd/.CI/config b/clightd/.CI/config index dc87920063..e48a0068ee 100644 --- a/clightd/.CI/config +++ b/clightd/.CI/config @@ -1,2 +1,2 @@ -CI_PKGBUILD_TIMESTAMP=1710005972 +CI_PACKAGE_BUMP=5.9-1/1 CI_PKGBUILD_SOURCE=aur diff --git a/clion/.CI/config b/clion/.CI/config index bf307653bd..66bee94775 100644 --- a/clion/.CI/config +++ b/clion/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1727108757 CI_PKGBUILD_SOURCE=aur diff --git a/clion/.SRCINFO b/clion/.SRCINFO index 8a5862b2e4..873982874e 100644 --- a/clion/.SRCINFO +++ b/clion/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clion pkgdesc = Cross-platform IDE for C and C++ from JetBrains. - pkgver = 2024.2.2 + pkgver = 2024.3 pkgrel = 1 epoch = 1 url = http://www.jetbrains.com/clion @@ -8,15 +8,15 @@ pkgbase = clion arch = aarch64 license = custom makedepends = rsync - noextract = CLion-2024.2.2.tar.gz - noextract = CLion-2024.2.2-aarch64.tar.gz + noextract = CLion-2024.3.tar.gz + noextract = CLion-2024.3-aarch64.tar.gz options = !strip source = jetbrains-clion.desktop sha256sums = a7a3f9891f5d8e7e5650afe00819909413fa2ed911393dd0648fba91233974a2 - source_x86_64 = https://download.jetbrains.com/cpp/CLion-2024.2.2.tar.gz - sha256sums_x86_64 = 1658fb15d41dfb804ab0ea3ed4781d4ae0f41d25cc9df17c3f536a565423aa5b - source_aarch64 = https://download.jetbrains.com/cpp/CLion-2024.2.2-aarch64.tar.gz - sha256sums_aarch64 = 35e089b8d8bf5f32c80022f394fe525b8aa37540d26c27e861db0df9e34716a4 + source_x86_64 = https://download.jetbrains.com/cpp/CLion-2024.3.tar.gz + sha256sums_x86_64 = e66ee52c365552fe40d035f5b205ab8c28a9a02ed4af5f787b78a0048bcf7f81 + source_aarch64 = https://download.jetbrains.com/cpp/CLion-2024.3-aarch64.tar.gz + sha256sums_aarch64 = 526147203ce3f9ec25e264f33fca042fda59a728237a165983c47c0c06356f6e pkgname = clion depends = libdbusmenu-glib diff --git a/clion/PKGBUILD b/clion/PKGBUILD index cab0c5fbf1..e183aa4fab 100644 --- a/clion/PKGBUILD +++ b/clion/PKGBUILD @@ -9,7 +9,7 @@ pkgbase=clion pkgname=(clion clion-jre clion-cmake clion-gdb clion-lldb) _pkgname=clion _dlname=CLion -pkgver=2024.2.2 +pkgver=2024.3 pkgrel=1 epoch=1 pkgdesc="Cross-platform IDE for C and C++ from JetBrains." @@ -22,8 +22,8 @@ source=("jetbrains-${pkgbase}.desktop") source_x86_64=("https://download.jetbrains.com/cpp/${_dlname}-${pkgver}.tar.gz") source_aarch64=("https://download.jetbrains.com/cpp/${_dlname}-${pkgver}-aarch64.tar.gz") sha256sums=('a7a3f9891f5d8e7e5650afe00819909413fa2ed911393dd0648fba91233974a2') -sha256sums_x86_64=('1658fb15d41dfb804ab0ea3ed4781d4ae0f41d25cc9df17c3f536a565423aa5b') -sha256sums_aarch64=('35e089b8d8bf5f32c80022f394fe525b8aa37540d26c27e861db0df9e34716a4') +sha256sums_x86_64=('e66ee52c365552fe40d035f5b205ab8c28a9a02ed4af5f787b78a0048bcf7f81') +sha256sums_aarch64=('526147203ce3f9ec25e264f33fca042fda59a728237a165983c47c0c06356f6e') noextract=("${_dlname}-${pkgver}.tar.gz" "${_dlname}-${pkgver}-aarch64.tar.gz") diff --git a/clipboard-manager-git/.CI/config b/clipboard-manager-git/.CI/config index c843f99939..66bee94775 100644 --- a/clipboard-manager-git/.CI/config +++ b/clipboard-manager-git/.CI/config @@ -1,3 +1 @@ -CI_PKGBUILD_TIMESTAMP=1726357869 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=1fb389e9ea2aff3674cdfb14c3fca8be414bada7 diff --git a/clipboard-manager-git/.SRCINFO b/clipboard-manager-git/.SRCINFO index 9d7057fb4d..3ca41b7716 100644 --- a/clipboard-manager-git/.SRCINFO +++ b/clipboard-manager-git/.SRCINFO @@ -1,8 +1,8 @@ pkgbase = clipboard-manager-git pkgdesc = Clipboard manager for COSMIC™ - pkgver = r100.1fb389e + pkgver = r105.d87bd4b pkgrel = 1 - url = https://github.com/wiiznokes/clipboard-manager + url = https://github.com/cosmic-utils/clipboard-manager arch = x86_64 license = GPL3-or-later makedepends = cargo @@ -13,7 +13,7 @@ pkgbase = clipboard-manager-git conflicts = clipboard-manager conflicts = cosmic-clipboard-manager-git options = !lto - source = git+https://github.com/wiiznokes/clipboard-manager.git + source = git+https://github.com/cosmic-utils/clipboard-manager.git sha256sums = SKIP pkgname = clipboard-manager-git diff --git a/clipboard-manager-git/PKGBUILD b/clipboard-manager-git/PKGBUILD index 5c98b98ef5..d3320b6041 100644 --- a/clipboard-manager-git/PKGBUILD +++ b/clipboard-manager-git/PKGBUILD @@ -1,17 +1,17 @@ # Maintainer: Mark Wagie pkgname=clipboard-manager-git -pkgver=r100.1fb389e +pkgver=r105.d87bd4b pkgrel=1 pkgdesc="Clipboard manager for COSMIC™" arch=('x86_64') -url="https://github.com/wiiznokes/clipboard-manager" +url="https://github.com/cosmic-utils/clipboard-manager" license=('GPL3-or-later') depends=('cosmic-applets') makedepends=('cargo' 'git' 'just') provides=("${pkgname%-git}") conflicts=("${pkgname%-git}" 'cosmic-clipboard-manager-git') options=('!lto') # sqlx crate fails with LTO enabled -source=('git+https://github.com/wiiznokes/clipboard-manager.git') +source=('git+https://github.com/cosmic-utils/clipboard-manager.git') sha256sums=('SKIP') pkgver() { diff --git a/clipboard-sync/.CI/config b/clipboard-sync/.CI/config index 23a822d3dc..66bee94775 100644 --- a/clipboard-sync/.CI/config +++ b/clipboard-sync/.CI/config @@ -1,3 +1 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1682012419 CI_PKGBUILD_SOURCE=aur diff --git a/clipman/.CI/config b/clipman/.CI/config index 8c09220d39..66bee94775 100644 --- a/clipman/.CI/config +++ b/clipman/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1714243432 CI_PKGBUILD_SOURCE=aur diff --git a/cloaker-bin/.CI/config b/cloaker-bin/.CI/config index e4dabd59d7..66bee94775 100644 --- a/cloaker-bin/.CI/config +++ b/cloaker-bin/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1562887038 CI_PKGBUILD_SOURCE=aur diff --git a/cloudflare-warp-bin/.CI/config b/cloudflare-warp-bin/.CI/config index 083cee7dea..66bee94775 100644 --- a/cloudflare-warp-bin/.CI/config +++ b/cloudflare-warp-bin/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1725373889 CI_PKGBUILD_SOURCE=aur diff --git a/cloudflare-warp-bin/.SRCINFO b/cloudflare-warp-bin/.SRCINFO index 1918590185..b105bd5777 100644 --- a/cloudflare-warp-bin/.SRCINFO +++ b/cloudflare-warp-bin/.SRCINFO @@ -1,30 +1,26 @@ pkgbase = cloudflare-warp-bin pkgdesc = Cloudflare Warp Client - pkgver = 2024.6.497 + pkgver = 2024.11.309 pkgrel = 1 url = https://1.1.1.1 arch = x86_64 license = unknown - checkdepends = coreutils - depends = glibc + depends = cairo depends = dbus - depends = lz4 - depends = zstd - depends = xz - depends = nftables - depends = libgpg-error + depends = gcc-libs + depends = gdk-pixbuf2 + depends = glib2 + depends = glibc + depends = gtk3 + depends = hicolor-icon-theme + depends = nspr + depends = nss + depends = pango provides = warp-cli provides = warp-diag provides = warp-svc conflicts = cloudflare-warp - source = cloudflare-warp-bin-2024.6.497-x86_64.deb::https://pkg.cloudflareclient.com/pool/jammy/main/c/cloudflare-warp/cloudflare-warp_2024.6.497-1_amd64.deb - source = cloudflare-warp-bin-2024.6.497-1-Release::https://pkg.cloudflareclient.com/dists/jammy/Release - source = cloudflare-warp-bin-2024.6.497-1-x86_64-Packages::https://pkg.cloudflareclient.com/dists/jammy/main/binary-amd64/Packages - md5sums = SKIP - md5sums = SKIP - md5sums = SKIP - sha256sums = SKIP - sha256sums = SKIP - sha256sums = SKIP + source = cloudflare-warp-bin-2024.11.309.deb::https://pkg.cloudflareclient.com/pool/noble/main/c/cloudflare-warp/cloudflare-warp_2024.11.309.0_amd64.deb + sha256sums = 4c7c57113cb2d3cac19af821adcf07210d9c0522de35597c4a40f8dc2558fed1 pkgname = cloudflare-warp-bin diff --git a/cloudflare-warp-bin/.nvchecker.toml b/cloudflare-warp-bin/.nvchecker.toml new file mode 100644 index 0000000000..1dc2b0f721 --- /dev/null +++ b/cloudflare-warp-bin/.nvchecker.toml @@ -0,0 +1,4 @@ +[cloudflare-warp-bin] +source = "regex" +url = "https://pkg.cloudflareclient.com/dists/noble/main/binary-amd64/Packages" +regex = 'Version: (\d+\.\d+\.\d+)' diff --git a/cloudflare-warp-bin/PKGBUILD b/cloudflare-warp-bin/PKGBUILD index b62c061520..f815779181 100644 --- a/cloudflare-warp-bin/PKGBUILD +++ b/cloudflare-warp-bin/PKGBUILD @@ -1,81 +1,47 @@ # Maintainer: Leon Mergen -# Maintainer: unlogicalcode +# Maintainer: Mahdi Sarikhani # Maintainer: Noah Kennedy -# Maintainer: Arsalan Rezazadeh -# Maintainer: Jongsik Kim -# Maintainer: -# Maintainer: Daffa Haj Tsaqif +# Maintainer: Riichi Rusdiana +# Contributor: unlogicalcode +# Contributor: Arsalan Rezazadeh +# Contributor: Jongsik Kim +# Contributor: +# Contributor: Daffa Haj Tsaqif pkgname=cloudflare-warp-bin -pkgver=2024.6.497 +pkgver=2024.11.309 pkgrel=1 pkgdesc="Cloudflare Warp Client" -url="https://1.1.1.1" -license=("unknown") -depends=("glibc" "dbus" "lz4" "zstd" "xz" "nftables" "libgpg-error") -checkdepends=("coreutils") arch=('x86_64') +url="https://1.1.1.1" +license=('unknown') +depends=('cairo' + 'dbus' + 'gcc-libs' + 'gdk-pixbuf2' + 'glib2' + 'glibc' + 'gtk3' + 'hicolor-icon-theme' + 'nspr' + 'nss' + 'pango') provides=('warp-cli' 'warp-diag' 'warp-svc') -conflicts=('cloudflare-warp') - -# Function to get latest version from repository -get_latest_version() { - curl -s https://pkg.cloudflareclient.com/dists/jammy/main/binary-amd64/Packages \ - | grep -E -o 'Version: [0-9]+\.[0-9]+\.[0-9]+' \ - | head -n1 \ - | grep -E -o '[0-9]+\.[0-9]+\.[0-9]+' -} - -latest_version=$(get_latest_version) - -# Compare latest version with current version -if [[ "$pkgver" != "$latest_version" ]]; then - pkgver=$latest_version - pkgrel=1 -fi - -source=( - "${pkgname}-${pkgver}-x86_64.deb::https://pkg.cloudflareclient.com/pool/jammy/main/c/cloudflare-warp/cloudflare-warp_${pkgver//-/_}-1_amd64.deb" - "${pkgname}-${pkgver}-${pkgrel}-Release::https://pkg.cloudflareclient.com/dists/jammy/Release" - "${pkgname}-${pkgver}-${pkgrel}-x86_64-Packages::https://pkg.cloudflareclient.com/dists/jammy/main/binary-amd64/Packages" -) - -md5sums=('SKIP' - 'SKIP' - 'SKIP') -sha256sums=('SKIP' - 'SKIP' - 'SKIP') +conflicts=("${pkgname%-bin}") +source=("${pkgname}-${pkgver}.deb::https://pkg.cloudflareclient.com/pool/noble/main/c/cloudflare-warp/cloudflare-warp_${pkgver}.0_amd64.deb") +sha256sums=('4c7c57113cb2d3cac19af821adcf07210d9c0522de35597c4a40f8dc2558fed1') prepare() { - tar -xzOf control.tar.gz ./md5sums \ - | awk '{print $1, "'"${srcdir}"'/build/" $2}' \ - > "${srcdir}/md5sums" -} - -build() { - if [[ -d "${srcdir}/build/" ]]; then - rm -rf "${srcdir}/build/" - fi - - mkdir -p "${srcdir}/build/" \ - && tar --extract \ - --gzip \ - --file=data.tar.gz \ - -C "${srcdir}/build/" + mkdir -p "${srcdir}/build" + bsdtar -xzf data.tar.gz -C "${srcdir}/build" } package() { - mkdir -p "${pkgdir}/usr/" || true - - cp -R -v "${srcdir}/build/usr/" "${pkgdir}/" - - cp -R -v "${srcdir}/build/"{bin,lib} "${pkgdir}/usr/" + cp -R "${srcdir}/build/"{etc,usr} "${pkgdir}" + cp -R "${srcdir}/build/"{bin,lib} "${pkgdir}/usr" - sed -i \ - -e "s%ExecStart=/bin/warp-svc%ExecStart=/usr/bin/warp-svc%" \ - "${pkgdir}"/usr/lib/systemd/system/warp-svc.service - sed -i \ - -e "s%ExecStart=/bin/warp-taskbar%ExecStart=/usr/bin/warp-taskbar%" \ - "${pkgdir}"/usr/lib/systemd/user/warp-taskbar.service + sed -e "s%ExecStart=/bin/warp-svc%ExecStart=/usr/bin/warp-svc%" \ + -i "${pkgdir}/usr/lib/systemd/system/warp-svc.service" + sed -e "s%ExecStart=/bin/warp-taskbar%ExecStart=/usr/bin/warp-taskbar%" \ + -i "${pkgdir}/usr/lib/systemd/user/warp-taskbar.service" } diff --git a/cloudflare-warp-bin/cloudflare-warp-bin.changelog b/cloudflare-warp-bin/cloudflare-warp-bin.changelog index a425d33dd4..ded0f7466a 100644 --- a/cloudflare-warp-bin/cloudflare-warp-bin.changelog +++ b/cloudflare-warp-bin/cloudflare-warp-bin.changelog @@ -1,3 +1,26 @@ +cloudflare-warp (2024.9.346) unstable; urgency=medium + Changes and improvements + * Added list targets to the warp-cli to enhance the user experience with the Access for Infrastructure SSH solution. + * Added the ability to customize PCAP options in the warp-cli. + * Added a list of installed applications in warp-diag. + * Added a tunnel reset mtu subcommand to the warp-cli. + * Added the ability for warp-cli to use the team provided in the MDM file for initial registration. + * Added a JSON output option to the warp-cli. + * Added the ability to execute a pcap on multiple interfaces with warp-cli. + * Added MASQUE tunnel protocol support for Consumer WARP. + * Improved the performance of firewall operations when enforcing split tunnel configuration. + * Fixed an issue where device posture certificate checks were unexpectedly failing. + * Fixed an issue where the Linux GUI fails to open the browser login window when registering a new ZT organization. + * Fixed an issue where clients using service tokens failed to retry after a network change. + * Fixed an issue where the client, when switching between WireGuard and MASQUE protocols, sometimes required a manual tunnel key reset. + * Fixed a known issue which required users to re-register when an older single configuration MDM file was deployed after deploying the newer, multiple configuration format. + * Deprecated warp-cli commands have been removed. If you have any workflows that use the deprecated commands, please update to the new commands where necessary. + + Known issues + * Using MASQUE as the tunnel protocol may be incompatible if your organization has Regional Services enabled. + + -- Tochukwu Nkemdilim Thu, 3 Oct 2024 16:55:48 -0400 + cloudflare-warp (2024.6.497) unstable; urgency=medium New Features * The WARP client now supports operation on Ubuntu 24.04. diff --git a/cloudflare-warp-bin/cloudflare-warp-bin.install b/cloudflare-warp-bin/cloudflare-warp-bin.install index e239a7dc73..326d496436 100644 --- a/cloudflare-warp-bin/cloudflare-warp-bin.install +++ b/cloudflare-warp-bin/cloudflare-warp-bin.install @@ -1,52 +1,50 @@ -pkgname='cloudflare-warp-bin' - post_install() { - setcap CAP_NET_ADMIN=+ei /usr/bin/warp-svc - echo "" - echo "==>" - echo "==> CAP_NET_ADMIN set on /usr/bin/warp-svc" - echo "==>" - echo "==> You need to start the WARP service before using it. To start once:" - echo "==>" - echo "==> sudo systemctl start warp-svc.service" - echo "==>" - echo "==>" - echo "==> To start right now and automatically after startup:" - echo "==>" - echo "==> sudo systemctl enable --now warp-svc.service" - echo "==>" - echo "==>" - echo "==> To also enable the taskbar now and automatically after startup:" - echo "==>" - echo "==> systemctl --user enable --now warp-taskbar" - echo "==>" - echo "" + setcap CAP_NET_ADMIN=+ei /usr/bin/warp-svc + echo "" + echo "==>" + echo "==> CAP_NET_ADMIN set on /usr/bin/warp-svc" + echo "==>" + echo "==> You need to start the WARP service before using it. To start once:" + echo "==>" + echo "==> sudo systemctl start warp-svc.service" + echo "==>" + echo "==>" + echo "==> To start right now and automatically after startup:" + echo "==>" + echo "==> sudo systemctl enable --now warp-svc.service" + echo "==>" + echo "==>" + echo "==> To also enable the taskbar now and automatically after startup:" + echo "==>" + echo "==> systemctl --user enable --now warp-taskbar" + echo "==>" + echo "" } -post_remove() { - echo "" - echo "==>" - echo "==> If you have warp service set to run at startup, you should remove it by using the command below:" - echo "==>" - echo "==> sudo systemctl disable warp-svc.service" - echo "==>" - echo "" +post_upgrade() { + setcap CAP_NET_ADMIN=+ei /usr/bin/warp-svc + echo "" + echo "==>" + echo "==> CAP_NET_ADMIN set on /usr/bin/warp-svc" + echo "==>" + echo "==> If you are currently running the WARP service, you may need to restart it " + echo "==> to finalize the upgrade:" + echo "==>" + echo "==> sudo systemctl restart warp-svc.service" + echo "==>" + echo "==> If you are upgrading from an older version of cloudflare-warp-bin, not that you are now able to enable the taskbar as follows: " + echo "==>" + echo "==> systemctl --user enable --now warp-taskbar" + echo "==>" + echo "" } -post_upgrade() { - setcap CAP_NET_ADMIN=+ei /usr/bin/warp-svc - echo "" - echo "==>" - echo "==> CAP_NET_ADMIN set on /usr/bin/warp-svc" - echo "==>" - echo "==> If you are currently running the WARP service, you may need to restart it " - echo "==> to finalize the upgrade:" - echo "==>" - echo "==> sudo systemctl restart warp-svc.service" - echo "==>" - echo "==> If you are upgrading from an older version of cloudflare-warp-bin, not that you are now able to enable the taskbar as follows: " - echo "==>" - echo "==> systemctl --user enable --now warp-taskbar" - echo "==>" - echo "" +post_remove() { + echo "" + echo "==>" + echo "==> If you have warp service set to run at startup, you should remove it by using the command below:" + echo "==>" + echo "==> sudo systemctl disable warp-svc.service" + echo "==>" + echo "" } diff --git a/cmake-extras-git/.CI/config b/cmake-extras-git/.CI/config index 7a3800ea6c..8471e6a8af 100644 --- a/cmake-extras-git/.CI/config +++ b/cmake-extras-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1711248780 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=9ddc0bde317863308ef71952d60ab7747aae2d10 diff --git a/cmst-git/.CI/config b/cmst-git/.CI/config index df50bc8ce2..b9c5605ca4 100644 --- a/cmst-git/.CI/config +++ b/cmst-git/.CI/config @@ -1,4 +1,3 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1682865362 +CI_PACKAGE_BUMP=2023.03.14.67.ga88063a-1/1 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=c54acf8db04287b4c1e74179995ef3771516ae15 diff --git a/cobang/.CI/config b/cobang/.CI/config index d8ac414748..66bee94775 100644 --- a/cobang/.CI/config +++ b/cobang/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1718815095 CI_PKGBUILD_SOURCE=aur diff --git a/cockroachdb-bin/.CI/config b/cockroachdb-bin/.CI/config index 3258a02aa9..66bee94775 100644 --- a/cockroachdb-bin/.CI/config +++ b/cockroachdb-bin/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1726298665 CI_PKGBUILD_SOURCE=aur diff --git a/cockroachdb-bin/.SRCINFO b/cockroachdb-bin/.SRCINFO index d9a20de4c9..9f5c4316bf 100644 --- a/cockroachdb-bin/.SRCINFO +++ b/cockroachdb-bin/.SRCINFO @@ -1,23 +1,19 @@ pkgbase = cockroachdb-bin pkgdesc = Cloud-native, distributed SQL database - pkgver = 24.2.1 + pkgver = 24.2.5 pkgrel = 1 url = https://www.cockroachlabs.com arch = x86_64 - license = Apache-2.0 - license = BUSL-1.1 - license = LicenseRef-CCL + license = LicenseRef-CockroachDB makedepends = chrpath depends = glibc provides = cockroachdb - conflicts = cockroachdb=24.2.1 + conflicts = cockroachdb=24.2.5 options = !debug backup = etc/default/cockroach - source = cockroachdb-24.2.1.tar.gz::https://binaries.cockroachdb.com/cockroach-v24.2.1.linux-amd64.tgz - source = LICENSE-24.2.1::https://github.com/cockroachdb/cockroach/raw/v24.2.1/LICENSE - source = LICENSE.CCL-24.2.1::https://github.com/cockroachdb/cockroach/raw/v24.2.1/licenses/CCL.txt - sha256sums = 00d1f2f6431e127b40fa287f35e4ec833f8760d9fa7e543fc41fdefaa88985a2 - sha256sums = 0384efdf47789c3548e7eff949c5c2c9c4ee95741f805a39cdb6f02035919889 - sha256sums = 25ec687608539ef745809b39ed1af6f34520855d74db2a1367f6e6c6adbf43de + source = cockroachdb-24.2.5.tar.gz::https://binaries.cockroachdb.com/cockroach-v24.2.5.linux-amd64.tgz + source = LICENSE-24.2.5::https://github.com/cockroachdb/cockroach/raw/v24.2.5/LICENSE + sha256sums = 720a334954be6f98917f88802a3b485f40c2b454da0dd91d383cfdab6908afb7 + sha256sums = cb4f34a516b09ec1815bd8376a34de7ea5e6da06c70bed756110943ad1b340e4 pkgname = cockroachdb-bin diff --git a/cockroachdb-bin/PKGBUILD b/cockroachdb-bin/PKGBUILD index 2934421ad6..9507548df3 100644 --- a/cockroachdb-bin/PKGBUILD +++ b/cockroachdb-bin/PKGBUILD @@ -12,11 +12,11 @@ _pkgname=cockroachdb pkgname="$_pkgname-bin" -pkgver=24.2.1 +pkgver=24.2.5 pkgrel=1 pkgdesc="Cloud-native, distributed SQL database" url='https://www.cockroachlabs.com' -license=('Apache-2.0' 'BUSL-1.1' 'LicenseRef-CCL') +license=('LicenseRef-CockroachDB') arch=('x86_64') depends=('glibc') @@ -34,12 +34,10 @@ _pkgsrc_source="cockroach-$pkgver" source=( "$_pkgname-$pkgver.tar.gz"::"https://binaries.cockroachdb.com/$_pkgsrc.tgz" "LICENSE-$pkgver"::"https://github.com/cockroachdb/cockroach/raw/v$pkgver/LICENSE" - "LICENSE.CCL-$pkgver"::"https://github.com/cockroachdb/cockroach/raw/v$pkgver/licenses/CCL.txt" ) sha256sums=( - '00d1f2f6431e127b40fa287f35e4ec833f8760d9fa7e543fc41fdefaa88985a2' - '0384efdf47789c3548e7eff949c5c2c9c4ee95741f805a39cdb6f02035919889' - '25ec687608539ef745809b39ed1af6f34520855d74db2a1367f6e6c6adbf43de' + '720a334954be6f98917f88802a3b485f40c2b454da0dd91d383cfdab6908afb7' + 'cb4f34a516b09ec1815bd8376a34de7ea5e6da06c70bed756110943ad1b340e4' ) build() { @@ -115,5 +113,4 @@ END # licenses install -Dm644 "LICENSE-$pkgver" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" - install -Dm644 "LICENSE.CCL-$pkgver" "$pkgdir/usr/share/licenses/$pkgname/LICENSE.CCL" } diff --git a/code-features/.CI/config b/code-features/.CI/config index 9423b5e708..66bee94775 100644 --- a/code-features/.CI/config +++ b/code-features/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1717842299 CI_PKGBUILD_SOURCE=aur diff --git a/code-features/.SRCINFO b/code-features/.SRCINFO index d5c67bfc1a..67371948bc 100644 --- a/code-features/.SRCINFO +++ b/code-features/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = code-features pkgdesc = Unblock some features in Code OSS - pkgver = 1.90.0 - pkgrel = 1 + pkgver = 1.95.0 + pkgrel = 3 url = https://github.com/microsoft/vscode install = code-features.install arch = any @@ -15,8 +15,10 @@ pkgbase = code-features source = code-features.hook source = patch.py source = patch.json + source = update.py md5sums = 1d4002cba0560dd6da192ddd756f52e5 md5sums = 9ed6f3972479ab6d3d053e7c47ead55a - md5sums = fcf4d1276e0fcfdb111ef17fcba5965c + md5sums = 6f88dad1c422b1e06c7cabcffeeb9746 + md5sums = 3d508df1aaea8e1d6123d65fa9af2468 pkgname = code-features diff --git a/code-features/PKGBUILD b/code-features/PKGBUILD index 53e71044ed..816a9830c5 100644 --- a/code-features/PKGBUILD +++ b/code-features/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Sainnhe Park pkgname=code-features -pkgver=1.90.0 -pkgrel=1 +pkgver=1.95.0 +pkgrel=3 pkgdesc='Unblock some features in Code OSS' arch=('any') url='https://github.com/microsoft/vscode' @@ -13,13 +13,16 @@ conflicts=('code-features') install="${pkgname}.install" source=("${pkgname}.hook" 'patch.py' - 'patch.json') + 'patch.json' + 'update.py') md5sums=('1d4002cba0560dd6da192ddd756f52e5' '9ed6f3972479ab6d3d053e7c47ead55a' - 'fcf4d1276e0fcfdb111ef17fcba5965c') + '6f88dad1c422b1e06c7cabcffeeb9746' + '3d508df1aaea8e1d6123d65fa9af2468') package() { install -Dm 644 "${srcdir}/${pkgname}.hook" "${pkgdir}/usr/share/libalpm/hooks/${pkgname}.hook" install -Dm 755 "${srcdir}/patch.py" "${pkgdir}/usr/share/${pkgname}/patch.py" install -Dm 644 "${srcdir}/patch.json" "${pkgdir}/usr/share/${pkgname}/patch.json" + install -Dm 755 "${srcdir}/update.py" "${pkgdir}/usr/bin/code-features-update" } diff --git a/code-features/code-features.install b/code-features/code-features.install index 96249738a9..28844748e5 100644 --- a/code-features/code-features.install +++ b/code-features/code-features.install @@ -1,5 +1,6 @@ post_install() { /usr/share/code-features/patch.py code-features patch + printf "==> [code-features] Use command /usr/bin/code-features-update to manually update the patch to keep up with the official vscode release when this package is out of date or some extensions don't work after an update in extra/code." } pre_upgrade() { @@ -8,6 +9,7 @@ pre_upgrade() { post_upgrade() { /usr/share/code-features/patch.py code-features patch + printf "==> [code-features] !!! Now there is a new command /usr/bin/code-features-update that can update the patch to keep up with the official vscode release. You can use this command to manually update the patch when this package is out of date or some extensions don't work after an update in extra/code." } pre_remove() { diff --git a/code-features/patch.json b/code-features/patch.json index 77c84ddd16..a0e27f5ed2 100644 --- a/code-features/patch.json +++ b/code-features/patch.json @@ -293,6 +293,7 @@ "extensionEnabledApiProposals": { "ms-vscode.vscode-selfhost-test-provider": [ "testObserver", + "testRelatedCode", "attributableCoverage" ], "VisualStudioExptTeam.vscodeintellicode-completions": [ @@ -322,6 +323,7 @@ "resolvers" ], "ms-python.python": [ + "codeActionAI", "contribEditorContentMenu", "quickPickSortByLabel", "portsAttributes", @@ -330,7 +332,8 @@ "terminalDataWriteEvent", "terminalExecuteCommandEvent", "contribIssueReporter", - "terminalShellIntegration" + "notebookReplDocument", + "notebookVariableProvider" ], "ms-dotnettools.dotnet-interactive-vscode": [ "notebookMessaging" @@ -424,6 +427,7 @@ "codeActionRanges", "commentingRangeHint", "commentReactor", + "commentReveal", "commentThreadApplicability", "contribAccessibilityHelpContent", "contribCommentEditorActionsMenu", @@ -463,6 +467,8 @@ "codeActionAI", "findTextInFiles", "textSearchProvider", + "activeComment", + "commentReveal", "contribSourceControlInputBoxMenu", "contribCommentEditorActionsMenu", "contribCommentThreadAdditionalMenu", @@ -474,7 +480,9 @@ "testObserver", "aiTextSearchProvider", "documentFiltersExclusive", - "chatParticipantPrivate" + "chatParticipantPrivate", + "contribDebugCreateConfiguration", + "inlineEdit" ], "GitHub.remotehub": [ "contribRemoteHelp", @@ -498,9 +506,10 @@ "notebookCellExecutionState" ], "ms-python.debugpy": [ - "portsAttributes", "contribIssueReporter", - "debugVisualization" + "contribViewsWelcome", + "debugVisualization", + "portsAttributes" ], "ms-toolsai.jupyter-renderers": [ "contribNotebookStaticPreloads" @@ -519,7 +528,8 @@ "quickPickItemTooltip", "notebookExecution", "notebookCellExecution", - "notebookVariableProvider" + "notebookVariableProvider", + "notebookReplDocument" ], "dbaeumer.vscode-eslint": [ "notebookCellExecutionState" @@ -530,14 +540,6 @@ "ms-azuretools.vscode-azureappservice": [ "terminalDataWriteEvent" ], - "ms-azuretools.vscode-azureresourcegroups": [ - "authGetSessions" - ], - "ms-azuretools.vscode-azure-github-copilot": [ - "chatParticipantAdditions", - "embeddings", - "languageModelSystem" - ], "ms-vscode.anycode": [ "extensionsAny" ], @@ -547,6 +549,7 @@ "redhat.java": [ "documentPaste" ], + "vscjava.vscode-java-pack": [], "ms-dotnettools.csdevkit": [ "inlineCompletionsAdditions" ], @@ -564,6 +567,17 @@ "TeamsDevApp.ms-teams-vscode-extension": [ "chatParticipantAdditions", "languageModelSystem" + ], + "ms-toolsai.datawrangler": [], + "ms-vscode.vscode-commander": [], + "ms-vscode.vscode-websearchforcopilot": [], + "ms-vscode.vscode-copilot-data-analysis": [ + "chatVariableResolver", + "chatProvider" + ], + "ms-vscode.vscode-copilot-vision": [ + "chatReferenceBinaryData", + "codeActionAI" ] }, "tasConfig": { @@ -775,14 +789,18 @@ "ms-vscode.remote-server", "ms-vsliveshare.vsliveshare", "ms-azuretools.vscode-azureresourcegroups", - "ms-edu.vscode-learning" + "ms-edu.vscode-learning", + "ms-toolsai.vscode-ai", + "ms-toolsai.vscode-ai-remote" ], "microsoft-sovereign-cloud": [ "ms-vscode.azure-repos", "ms-vscode.remote-server", "ms-vsliveshare.vsliveshare", "ms-azuretools.vscode-azureresourcegroups", - "ms-edu.vscode-learning" + "ms-edu.vscode-learning", + "ms-toolsai.vscode-ai", + "ms-toolsai.vscode-ai-remote" ] }, "auth": { diff --git a/code-features/update.py b/code-features/update.py index 3db26ed6bb..2befaf1586 100755 --- a/code-features/update.py +++ b/code-features/update.py @@ -1,11 +1,10 @@ #!/usr/bin/env python3 -# This script can update the content of ./patch.json to the latest version -# Usage: ./update.py /path/to/extracted/produce.json -# Where /path/to/extracted/produce.json is extracted from the latest version of official vscode release - -import sys +import argparse import json +import os +import shutil +import subprocess key_list = [ "nameShort", @@ -34,21 +33,126 @@ "configurationSync.store", "editSessions.store", "tunnelApplicationName", - "tunnelApplicationConfig" + "tunnelApplicationConfig", ] -product_path = sys.argv[1] -patch_path = "patch.json" +work_dir = "/tmp/code-features" + + +def clean_work_dir(): + print(f"==> Cleaning work dir {work_dir}") + if os.path.exists(work_dir): + shutil.rmtree(work_dir) + + +def fetch_product_json(version): + os.mkdir(work_dir) + url = f"https://update.code.visualstudio.com/{version}/linux-x64/stable" + download_cmd = ["curl", "-fSL", "-o", f"{work_dir}/code.tgz", url] + print( + '==> Start downloading official vscode release to %s/code.tgz. The command is "%s"' + % (work_dir, " ".join(download_cmd)) + ) + subprocess.run(download_cmd) + extract_cmd = ["tar", "xf", f"{work_dir}/code.tgz", "-C", work_dir] + print( + '==> Start extracting the tarball. The command is "%s"' % " ".join(extract_cmd) + ) + subprocess.run(extract_cmd) + print("==> Copying product.json to %s" % work_dir) + shutil.copy( + src=f"{work_dir}/VSCode-linux-x64/resources/app/product.json", dst=work_dir + ) + print("==> Removing the tarball and the extracted contents") + shutil.rmtree(f"{work_dir}/VSCode-linux-x64") + os.remove(f"{work_dir}/code.tgz") + + +def update_patch_json(local_file: bool): + print(f"==> Loading data from {work_dir}/product.json") + with open(f"{work_dir}/product.json", "r") as product_file: + product_data = json.load(product_file) + + patch_data = {} + + for key in key_list: + patch_data[key] = product_data[key] + + patch_data["enableTelemetry"] = False + + patch_json_path = "/usr/share/code-features/patch.json" + if local_file: + patch_json_path = "./patch.json" + print(f"==> Updating {patch_json_path}") + with open(patch_json_path, "w") as patch_file: + json.dump(patch_data, patch_file, indent="\t") + + +def is_running_as_root(): + return os.geteuid() == 0 + + +def get_local_code_version(): + with open("/usr/lib/code/product.json") as product_file: + product_data = json.load(product_file) + return product_data["version"] + -with open(product_path, "r") as product_file: - product_data = json.load(product_file) +def update_system_hook(version): + clean_work_dir() + print("==> Updating system hook") + if not is_running_as_root(): + print("==> Root privilege is required. Aborting...") + exit(1) + if version is None: + version = get_local_code_version() + fetch_product_json(version) + print("==> Restoring product.json") + subprocess.run(["/usr/share/code-features/patch.py", "code-features", "restore"]) + update_patch_json(False) + print("==> Patching product.json") + subprocess.run(["/usr/share/code-features/patch.py", "code-features", "patch"]) + clean_work_dir() -patch_data = {} -for key in key_list: - patch_data[key] = product_data[key] +def update_local_hook(version): + clean_work_dir() + print("==> Updating local hook") + if version is None: + version = get_local_code_version() + fetch_product_json(version) + update_patch_json(True) + print("==> Updating pkgsums") + subprocess.run(["updpkgsums", "./PKGBUILD"]) + clean_work_dir() -patch_data["enableTelemetry"] = False -with open(patch_path, "w") as patch_file: - json.dump(patch_data, patch_file, indent='\t') +if __name__ == "__main__": + parser = argparse.ArgumentParser( + description="Update patch.json to keep up with the official vscode release." + ) + group = parser.add_mutually_exclusive_group(required=True) + group.add_argument( + "-l", + "--local", + action="store_true", + help="Update patch.json in AUR package. This should be executed in the project root of the AUR package.", + ) + group.add_argument( + "-s", + "--system", + action="store_true", + help="Update patch.json installed on system and run the patch. This command will download the latest official release and update patch.json based on it. " + + "NOTE: You should use this option with root privilege because the patch.json installed on your system has mode 644.", + ) + parser.add_argument( + "-v", + "--version", + type=str, + help="Specify the vscode version you want to keep up with. If this option is omitted, this script will use the version of extra/code installed on the system.", + ) + args = parser.parse_args() + if args.local: + update_local_hook(args.version) + elif args.system: + update_system_hook(args.version) diff --git a/code-marketplace/.CI/config b/code-marketplace/.CI/config index e763586261..66bee94775 100644 --- a/code-marketplace/.CI/config +++ b/code-marketplace/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1717842364 CI_PKGBUILD_SOURCE=aur diff --git a/code-marketplace/.SRCINFO b/code-marketplace/.SRCINFO index eb052ad10f..832c155919 100644 --- a/code-marketplace/.SRCINFO +++ b/code-marketplace/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = code-marketplace pkgdesc = Enable vscode marketplace in Code OSS - pkgver = 1.90.0 + pkgver = 1.95.0 pkgrel = 1 url = https://marketplace.visualstudio.com/vscode install = code-marketplace.install @@ -14,6 +14,6 @@ pkgbase = code-marketplace source = patch.json md5sums = ce502275aa945985182b51420fc6037c md5sums = 9ed6f3972479ab6d3d053e7c47ead55a - md5sums = 56531cac5e74070cde3229c0a5e1503b + md5sums = 63fcab1dcfb25eacc2697cae3d650ff3 pkgname = code-marketplace diff --git a/code-marketplace/PKGBUILD b/code-marketplace/PKGBUILD index efc9445feb..2eb85d8691 100644 --- a/code-marketplace/PKGBUILD +++ b/code-marketplace/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Sainnhe Park pkgname=code-marketplace -pkgver=1.90.0 +pkgver=1.95.0 pkgrel=1 pkgdesc='Enable vscode marketplace in Code OSS' arch=('any') @@ -14,7 +14,7 @@ source=('code-marketplace.hook' 'patch.json') md5sums=('ce502275aa945985182b51420fc6037c' '9ed6f3972479ab6d3d053e7c47ead55a' - '56531cac5e74070cde3229c0a5e1503b') + '63fcab1dcfb25eacc2697cae3d650ff3') package() { install -Dm 644 "${srcdir}"/code-marketplace.hook "${pkgdir}"/usr/share/libalpm/hooks/code-marketplace.hook diff --git a/code-marketplace/patch.json b/code-marketplace/patch.json index a780862553..1209ad137b 100644 --- a/code-marketplace/patch.json +++ b/code-marketplace/patch.json @@ -504,10 +504,12 @@ "GitHub.copilot": { "onFileOpen": [ { - "pathGlob": "{**/*.ts,**/*.tsx,**/*.js,**/*.py,**/*.go,**/*.rb}" + "pathGlob": "{**/*.ts,**/*.tsx,**/*.js,**/*.jsx,**/*.py,**/*.go,**/*.rb,**/*.html,**/*.css,**/*.php,**/*.cpp,**/*.vue,**/*.c,**/*.sql,**/*.java,**/*.cs,**/*.rs,**/*.dart,**/*.ps,**/*.ps1,**/*.tex}" } ], - "onSettingsEditorOpen": {} + "onSettingsEditorOpen": { + "descriptionOverride": "GitHub Copilot is an AI pair programmer tool that helps you write code faster and smarter." + } }, "GitHub.vscode-github-actions": { "onFileOpen": [ @@ -539,6 +541,13 @@ "important": true } ] + }, + "Redis.redis-for-vscode": { + "onFileOpen": [ + { + "pathGlob": "{**/redis.*,**/redis-server.*,**/redis_*,**/redisinsight.*}" + } + ] } }, "keymapExtensionTips": [ diff --git a/code-marketplace/update.py b/code-marketplace/update.py index baa936d68f..a5058ab0cc 100755 --- a/code-marketplace/update.py +++ b/code-marketplace/update.py @@ -1,11 +1,14 @@ #!/usr/bin/env python3 -# This script can update the content of ./patch.json to the latest version -# Usage: ./update.py /path/to/extracted/produce.json -# Where /path/to/extracted/produce.json is extracted from the latest version of official vscode release +# This script will update the ./patch.json to match the official release +# Usage: ./update.py +# Where is the version of the official release -import sys import json +import os +import shutil +import subprocess +import sys key_list = [ "extensionsGallery", @@ -19,19 +22,38 @@ "extensionAllowedBadgeProviders", "extensionAllowedBadgeProvidersRegex", "msftInternalDomains", - "linkProtectionTrustedDomains" + "linkProtectionTrustedDomains", ] -product_path = sys.argv[1] -patch_path = "patch.json" -with open(product_path, "r") as product_file: - product_data = json.load(product_file) +def fetch_product_json(version: str): + """Download official release and extract it, then copy product.json to project root""" + url = f"https://update.code.visualstudio.com/{version}/linux-x64/stable" + download_cmd = ["curl", "-fSL", "-o", "code.tgz", url] + subprocess.run(download_cmd) + extract_cmd = ["tar", "xvf", "code.tgz"] + subprocess.run(extract_cmd) + shutil.copy(src="./VSCode-linux-x64/resources/app/product.json", dst=".") + shutil.rmtree("./VSCode-linux-x64") + os.remove("code.tgz") + + +def update_package(): + """Update the package""" + with open("./product.json", "r") as product_file: + product_data = json.load(product_file) + + patch_data = {} + + for key in key_list: + patch_data[key] = product_data[key] + + with open("./patch.json", "w") as patch_file: + json.dump(patch_data, patch_file, indent="\t") -patch_data = {} + subprocess.run(["updpkgsums", "./PKGBUILD"]) -for key in key_list: - patch_data[key] = product_data[key] -with open(patch_path, "w") as patch_file: - json.dump(patch_data, patch_file, indent='\t') +version = sys.argv[1] +fetch_product_json(version) +update_package() diff --git a/codelite-unstable/.CI/config b/codelite-unstable/.CI/config index cb41c057de..66bee94775 100644 --- a/codelite-unstable/.CI/config +++ b/codelite-unstable/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1726652708 CI_PKGBUILD_SOURCE=aur diff --git a/codon-bin/.CI/config b/codon-bin/.CI/config index a181389f39..66bee94775 100644 --- a/codon-bin/.CI/config +++ b/codon-bin/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1724666286 CI_PKGBUILD_SOURCE=aur diff --git a/colloid-gtk-theme-git/.CI/config b/colloid-gtk-theme-git/.CI/config index e0a3bb58a5..8471e6a8af 100644 --- a/colloid-gtk-theme-git/.CI/config +++ b/colloid-gtk-theme-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1723999264 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=d269edf9af5e14a9abcc9b9c8e6a35fd4d24ae6f diff --git a/colloid-icon-theme-git/.CI/config b/colloid-icon-theme-git/.CI/config index 584909c818..8471e6a8af 100644 --- a/colloid-icon-theme-git/.CI/config +++ b/colloid-icon-theme-git/.CI/config @@ -1,4 +1,2 @@ BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1724779740 CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=42375ae691d01df4a7eab7b65642aeba531cb694 diff --git a/commit/.CI/config b/commit/.CI/config deleted file mode 100644 index 73bc202b0c..0000000000 --- a/commit/.CI/config +++ /dev/null @@ -1,3 +0,0 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1714509104 -CI_PKGBUILD_SOURCE=aur diff --git a/commit/.CI/info b/commit/.CI/info deleted file mode 100644 index cbb6b19715..0000000000 --- a/commit/.CI/info +++ /dev/null @@ -1,2 +0,0 @@ -REQ_ORIGIN=github/1858 -REQ_REASON=request diff --git a/commit/.SRCINFO b/commit/.SRCINFO deleted file mode 100644 index e705cc540c..0000000000 --- a/commit/.SRCINFO +++ /dev/null @@ -1,23 +0,0 @@ -pkgbase = commit - pkgdesc = Commit message editor. - pkgver = 4.1 - pkgrel = 2 - url = https://apps.gnome.org/Commit - arch = any - license = GPL-3.0-or-later - checkdepends = appstream-glib - makedepends = blueprint-compiler - makedepends = git - makedepends = meson - depends = libadwaita - depends = libspelling - depends = gjs - depends = gtksourceview5 - optdepends = git: git support - optdepends = mercurial: mercurial support - source = git+https://github.com/sonnyp/Commit.git#tag=v4.1 - source = git+https://github.com/sonnyp/troll.git - sha256sums = 805b79e8866523c22d29905cb00521734d72ff57c8131f483c58698e19c884ab - sha256sums = SKIP - -pkgname = commit diff --git a/commit/PKGBUILD b/commit/PKGBUILD deleted file mode 100644 index 25e96213e0..0000000000 --- a/commit/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# Maintainer: Mark Wagie -pkgname=commit -pkgver=4.1 -pkgrel=2 -pkgdesc="Commit message editor." -arch=('any') -url="https://apps.gnome.org/Commit" -license=('GPL-3.0-or-later') -depends=('libadwaita' 'libspelling' 'gjs' 'gtksourceview5') -makedepends=('blueprint-compiler' 'git' 'meson') -checkdepends=('appstream-glib') -optdepends=('git: git support' - 'mercurial: mercurial support') -source=("git+https://github.com/sonnyp/Commit.git#tag=v$pkgver" - 'git+https://github.com/sonnyp/troll.git') -sha256sums=('805b79e8866523c22d29905cb00521734d72ff57c8131f483c58698e19c884ab' - 'SKIP') - -prepare() { - cd Commit - git submodule init - git config submodule.src/troll.url "$srcdir/troll" - git -c protocol.file.allow=always submodule update -} - -build() { - arch-meson Commit build - meson compile -C build -} - -check() { - meson test -C build --print-errorlogs || : -} - -package() { - meson install -C build --destdir "$pkgdir" -} diff --git a/compiler-rt17/.CI/config b/compiler-rt17/.CI/config index 3294f29e1a..66bee94775 100644 --- a/compiler-rt17/.CI/config +++ b/compiler-rt17/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1721235406 CI_PKGBUILD_SOURCE=aur diff --git a/compiz-core/.CI/config b/compiz-core/.CI/config index 59742074fa..66bee94775 100644 --- a/compiz-core/.CI/config +++ b/compiz-core/.CI/config @@ -1,2 +1 @@ -CI_PKGBUILD_TIMESTAMP=1723804111 CI_PKGBUILD_SOURCE=aur diff --git a/compiz-git/.CI/config b/compiz-git/.CI/config deleted file mode 100644 index 65b59e07ec..0000000000 --- a/compiz-git/.CI/config +++ /dev/null @@ -1,4 +0,0 @@ -BUILDER_CACHE_SOURCES=true -CI_PKGBUILD_TIMESTAMP=1726512839 -CI_PKGBUILD_SOURCE=aur -CI_GIT_COMMIT=8196e9c8e220dd955b44e6f6d20b1ce7c6208aac diff --git a/compiz-git/.CI/info b/compiz-git/.CI/info deleted file mode 100644 index 4111926a1f..0000000000 --- a/compiz-git/.CI/info +++ /dev/null @@ -1,2 +0,0 @@ -REQ_ORIGIN=github/324 -REQ_REASON=request diff --git a/compiz-git/.SRCINFO b/compiz-git/.SRCINFO deleted file mode 100644 index 8d65decbad..0000000000 --- a/compiz-git/.SRCINFO +++ /dev/null @@ -1,66 +0,0 @@ -pkgbase = compiz-git - pkgdesc = Composite manager for Aiglx and Xgl, with plugins and CCSM - pkgver = 0.9.14.2.r11.g8196e9c - pkgrel = 3 - url = https://launchpad.net/compiz - arch = i686 - arch = x86_64 - license = GPL-2.0-or-later - license = LGPL-2.1-or-later - license = MIT - makedepends = boost - makedepends = cmake - makedepends = cython - makedepends = git - makedepends = intltool - makedepends = ninja - makedepends = python-setuptools - depends = glibmm - depends = glu - depends = libice - depends = libnotify - depends = libprotobuf.so - depends = libsm - depends = libwnck3 - depends = libxslt - depends = metacity - depends = python - depends = python-cairo - depends = python-dbus - depends = python-gobject - optdepends = xorg-xprop: grab various window properties for use in window matching rules - provides = ccsm=0.9.14 - provides = compiz-bcop=0.9.14 - provides = compiz-core=0.9.14 - provides = compiz-plugins-extra=0.9.14 - provides = compiz-plugins-main=0.9.14 - provides = compizconfig-python=0.9.14 - provides = libcompizconfig=0.9.14 - provides = compiz=0.9.14 - conflicts = ccsm - conflicts = compiz-bcop - conflicts = compiz-core - conflicts = compiz-fusion-plugins-experimental - conflicts = compiz-fusion-plugins-extra - conflicts = compiz-fusion-plugins-main - conflicts = compiz-gtk - conflicts = compizconfig-python - conflicts = libcompizconfig - conflicts = simple-ccsm - conflicts = compiz - source = compiz::git+https://git.launchpad.net/compiz - source = 0001-reverse-unity-config.patch - source = 0002-focus-prevention-disable.patch - source = 0003-gtk-extents.patch - source = 0004-screenshot-launch-fix.patch - source = 0005-no-compile-gschemas.patch - source = 1001-fix-crash-in-vertexbuffer.patch - sha256sums = SKIP - sha256sums = 6ec9c04540ca1649c687d9ab2c8311caea7075831e2cffe719ec7958c9ebab7b - sha256sums = f4897590b0f677ba34767a29822f8f922a750daf66e8adf47be89f7c2550cf4b - sha256sums = 16ddb6311ce42d958505e21ca28faae5deeddce02cb558d55e648380274ba4d9 - sha256sums = 89ee91a8ea6b1424ef76661ea9a2db43412366aacddc12d24a7adf5e04bfbc61 - sha256sums = 4ab3277da201314b3f65e30128bc30704ddee584fdbbfc8d0d83c7e0de91fa9a - sha256sums = 859dca15821fac3b8d1e231d48932c0fad3f5d3f16cb53a8a761df2bd51b9d3a - -pkgname = compiz-git diff --git a/compiz-git/.nvchecker.toml b/compiz-git/.nvchecker.toml deleted file mode 100644 index e30d14f46c..0000000000 --- a/compiz-git/.nvchecker.toml +++ /dev/null @@ -1,4 +0,0 @@ -[compiz-git] -source = "git" -git = "https://git.launchpad.net/compiz" -prefix = "v" diff --git a/compiz-git/0001-reverse-unity-config.patch b/compiz-git/0001-reverse-unity-config.patch deleted file mode 100644 index 6828481af8..0000000000 --- a/compiz-git/0001-reverse-unity-config.patch +++ /dev/null @@ -1,871 +0,0 @@ -diff -Nur original/compizconfig/integration/gnome/gsettings/org.compiz.integrated.gschema.xml modified/compizconfig/integration/gnome/gsettings/org.compiz.integrated.gschema.xml ---- original/compizconfig/integration/gnome/gsettings/org.compiz.integrated.gschema.xml 2019-02-16 12:44:41.000000000 +0000 -+++ modified/compizconfig/integration/gnome/gsettings/org.compiz.integrated.gschema.xml 2019-02-17 14:11:58.762747647 +0000 -@@ -10,9 +10,6 @@ - - "gnome-screenshot" - -- -- ["<Control><Alt>Delete"] -- - - ["Disabled"] - -@@ -49,9 +46,6 @@ - - ["Disabled"] - -- -- "/usr/bin/gnome-system-monitor -p" -- - - "" - -diff -Nur original/metadata/core.xml.in modified/metadata/core.xml.in ---- original/metadata/core.xml.in 2019-02-16 12:44:41.000000000 +0000 -+++ modified/metadata/core.xml.in 2019-02-17 14:11:58.762747647 +0000 -@@ -144,7 +144,7 @@ - - - -@@ -179,7 +179,7 @@ - - - - - - - -diff -Nur original/plugins/animation/animation.xml.in modified/plugins/animation/animation.xml.in ---- original/plugins/animation/animation.xml.in 2019-02-16 12:44:41.000000000 +0000 -+++ modified/plugins/animation/animation.xml.in 2019-02-17 14:11:58.766082647 +0000 -@@ -36,7 +36,7 @@ - - - -- animation:Glide 2 -+ animation:Zoom - animation:Fade - animation:Fade - -@@ -48,9 +48,9 @@ - 50 - 4000 - -- 120 -- 80 -- 80 -+ 200 -+ 150 -+ 150 - - - -@@ -102,7 +102,7 @@ - - - -- animation:Glide 2 -+ animation:Zoom - animation:Fade - animation:Fade - -@@ -114,9 +114,9 @@ - 50 - 4000 - -- 120 -- 80 -- 50 -+ 200 -+ 150 -+ 150 - - - -@@ -168,7 +168,7 @@ - - - -- animation:Zoom -+ animation:Magic Lamp - - - - - - -@@ -473,7 +473,7 @@ - - - -@@ -205,7 +205,6 @@ - - - -diff -Nur original/plugins/decor/decor.xml.in modified/plugins/decor/decor.xml.in ---- original/plugins/decor/decor.xml.in 2019-02-16 12:44:41.000000000 +0000 -+++ modified/plugins/decor/decor.xml.in 2019-02-17 14:13:24.345517674 +0000 -@@ -31,7 +31,7 @@ - - -diff -Nur original/plugins/fade/fade.xml.in modified/plugins/fade/fade.xml.in ---- original/plugins/fade/fade.xml.in 2019-02-16 12:44:41.000000000 +0000 -+++ modified/plugins/fade/fade.xml.in 2019-02-17 14:11:58.772752647 +0000 -@@ -10,7 +10,6 @@ - - - decor -- staticswitcher - - - cube -@@ -51,7 +50,7 @@ - - - - -diff -Nur original/plugins/grid/grid.xml.in modified/plugins/grid/grid.xml.in ---- original/plugins/grid/grid.xml.in 2019-02-16 12:44:41.000000000 +0000 -+++ modified/plugins/grid/grid.xml.in 2019-02-17 14:11:58.779422647 +0000 -@@ -68,12 +68,12 @@ - - - - -@@ -82,10 +82,10 @@ - <_short>Fill Color - <_long>Fill color used for rectangle resize mode - -- 0xfbfb -- 0x8b8b -- 0x0 -- 0x1919 -+ 0x2f2f -+ 0x2f2f -+ 0x4f4f -+ 0x4f4f - - - -@@ -46,7 +46,7 @@ - -@@ -76,7 +76,7 @@ - <_long>Overlay an icon on windows once they are scaled - 0 - 2 -- 0 -+ 1 - - 0 - <_name>None -@@ -129,7 +129,7 @@ - <_long>Selects where windows are scaled if multiple output devices are used. - 0 - 1 -- 1 -+ 0 - - 0 - <_name>On current output device -@@ -150,7 +150,7 @@ - - - - - - - - -@@ -160,14 +161,14 @@ - - -@@ -191,7 +192,7 @@ - - - <_short>Selected Window Highlight - - -@@ -78,30 +78,30 @@ - <_short>Base Color - <_long>First color for the background gradient of the switcher window. - -- 0x0000 -- 0x0000 -- 0x0000 -- 0x6464 -+ 0xcccc -+ 0xcccc -+ 0xe665 -+ 0xd998 - - - - - -@@ -112,20 +112,20 @@ - <_short>Base Color - <_long>First color for the thumb gradient of the switcher window. - -- 0x5555 -- 0x5555 -- 0x5555 -- 0x3232 -+ 0x3333 -+ 0x3333 -+ 0x3333 -+ 0x5999 - - - - -@@ -139,7 +139,7 @@ - 0xffff - 0xffff - 0xffff -- 0xffff -+ 0xf332 - - - - -@@ -201,7 +201,7 @@ - - - -@@ -356,7 +356,7 @@ - -