From 3ab1c96ccc0a7ac4228fc779cfd37d5b858ce3e6 Mon Sep 17 00:00:00 2001 From: graysky Date: Mon, 8 Jun 2015 18:00:40 -0400 Subject: [PATCH 001/971] Initial import --- .SRCINFO | 19 +++++++++++++++++++ PKGBUILD | 40 ++++++++++++++++++++++++++++++++++++++++ linpack.conf | 22 ++++++++++++++++++++++ readme.install | 11 +++++++++++ runme.template | 15 +++++++++++++++ 5 files changed, 107 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD create mode 100644 linpack.conf create mode 100644 readme.install create mode 100644 runme.template diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..653c4af --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,19 @@ +pkgbase = linpack + pkgver = 11.2.2.010 + pkgrel = 1 + url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download + arch = i686 + arch = x86_64 + license = custom + source = http://registrationcenter.intel.com/irc_nas/5232/l_lpk_p_11.2.2.010.tgz + source = linpack.conf + source = runme.template + sha256sums = 88fcc540425a7be8bd9e78af66474492f8c0f11d9ad4ad8a82879dc5757ffdf2 + sha256sums = d7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254 + sha256sums = 8c880adeee3de6c0e6005e210cea0e01b471219c590e25e824298a25ab0eef31 + +pkgname = linpack + pkgdesc = Benchmark based on linear algebra excellent app for stress testing. + install = readme.install + backup = etc/linpack.conf + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..acc259e --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,40 @@ +# Contributor: graysky + +pkgname=('linpack') +pkgver=11.2.2.010 +_pkgvershort=11.2.2 +_stupid_number=5232 +pkgrel=1 +arch=('i686' 'x86_64') +license=('custom') +url="http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download" +source=("http://registrationcenter.intel.com/irc_nas/$_stupid_number/l_lpk_p_$pkgver.tgz" +'linpack.conf' 'runme.template') +sha256sums=('88fcc540425a7be8bd9e78af66474492f8c0f11d9ad4ad8a82879dc5757ffdf2' + 'd7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254' + '8c880adeee3de6c0e6005e210cea0e01b471219c590e25e824298a25ab0eef31') + +build() { + [[ -z "$CARCH" ]] && echo "Cannot determine architecture of this system!" && exit 1 + [[ "$CARCH" = "x86_64" ]] && bit=64 || bit=32 + export bit +} + +package_linpack() { + pkgdesc='Benchmark based on linear algebra excellent app for stress testing.' + install=readme.install + backup=(etc/linpack.conf) + _path="l_lpk_p_$pkgver/linpack_$_pkgvershort/benchmarks/linpack" + _docpath="l_lpk_p_$pkgver/linpack_$_pkgvershort/doc" + + # setup based on detected arch + sed -e "s/@TARGET_BIT@/$bit/g" linpack_runme_xeon$bit + + install -Dm755 linpack_runme_xeon$bit "$pkgdir/usr/bin/linpack_runme_xeon$bit" + install -Dm644 linpack.conf "$pkgdir/etc/linpack.conf" + install -Dm644 "$srcdir/$_docpath/lpkEULA.txt" "$pkgdir/usr/share/licenses/linpack/lpkEULA.txt" + install -Dm644 "$srcdir/$_docpath/lpksupport.txt" "$pkgdir/usr/share/doc/linpack/lpksupport.txt" + install -Dm755 "$srcdir/$_path/xlinpack_xeon$bit" "$pkgdir/usr/bin/xlinpack_xeon$bit" + install -Dm644 "$srcdir/$_path/xhelp.lpk" "$pkgdir/usr/share/doc/${pkgname}/xhelp.lpk" + cp -r "$srcdir/$_docpath/mkl_userguide" "$pkgdir/usr/share/doc/linpack" +} diff --git a/linpack.conf b/linpack.conf new file mode 100644 index 0000000..e64a880 --- /dev/null +++ b/linpack.conf @@ -0,0 +1,22 @@ +Sample Intel(R) LINPACK data file +Intel(R) LINPACK data +1 # number of tests +12600 # problem sizes +12600 # leading dimensions +100 # times to run a test +4 # alignment values (in KBytes) + +# Change the problem sizes and leading dimensions to suite your FREE physical memory +# +# Memory use = 8 x (problem size)^2 +# or +# Problem size = sqrt (memory use / 8) +# +# Consider the following as a conservative guide +# For 1 GB use a problem size and leading dimensions of 6300 +# For 2 GB use a problem size and leading dimensions of 12600 +# For 4 GB use a problem size and leading dimensions of 18900 +# For 8 GB use a problem size and leading dimensions of 25200 +# For 16 GB use a problem size and leading dimensions of 31500 +# For 32 GB use a problem size and leading dimensions of 37800 +# For 64 GB use a problem size and leading dimensions of 44100 diff --git a/readme.install b/readme.install new file mode 100644 index 0000000..06f69f0 --- /dev/null +++ b/readme.install @@ -0,0 +1,11 @@ +post_install() { + echo '-----------------------------------------------------------------------' + echo '1) Edit /etc/linpack.conf to configure memory usage for your system.' + echo + echo '2) Run the benchmark by typing:' + echo 'linpack_runme_xeon64' + echo ' or' + echo 'linpack_runme_xeon32' + echo '-----------------------------------------------------------------------' +} + diff --git a/runme.template b/runme.template new file mode 100644 index 0000000..7be7bd1 --- /dev/null +++ b/runme.template @@ -0,0 +1,15 @@ +#!/bin/bash +# +export KMP_AFFINITY=nowarnings,compact + +echo -e "Edit \E[31m/etc/linpack.conf\E[37m to adjust the amount of physical memory to consume." +echo +echo -e "Starting calculation.... hit ctrl+c to stop." +echo -e "Consult \E[31m~/lin_xeon@TARGET_BIT@.txt\E[37m for results as they are caculated." + +date +date >> ~/lin_xeon@TARGET_BIT@.txt +/usr/bin/xlinpack_xeon@TARGET_BIT@ /etc/linpack.conf >> ~/lin_xeon@TARGET_BIT@.txt +date >> ~/lin_xeon@TARGET_BIT@.txt +echo -n "Done: " +date From bfc0ec69ac98ad817cedb88121d31b218e60a944 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Ravier?= Date: Tue, 9 Jun 2015 12:18:12 +0200 Subject: [PATCH 002/971] Imported and fixed from the AURv3 --- .SRCINFO | 24 ++++++++++++++++++++++++ PKGBUILD | 41 +++++++++++++++++++++++++++++++++++++++++ tuned.install | 3 +++ 3 files changed, 68 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD create mode 100644 tuned.install diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..c4204d9 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,24 @@ +pkgbase = tuned-git + pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system + pkgver = 2.4.1.r61.gd172b5b + pkgrel = 1 + url = https://fedorahosted.org/tuned/ + install = tuned.install + arch = any + license = GPL + makedepends = git + depends = ethtool + depends = python2-configobj + depends = python2-pyudev + depends = python2-gobject2 + depends = python2-decorator + depends = python2-dbus + optdepends = virt-what + optdepends = systemtap + provides = tuned + backup = etc/tuned/active_profile + source = tuned-git::git://git.fedorahosted.org/git/tuned.git + sha256sums = SKIP + +pkgname = tuned-git + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..fff6562 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,41 @@ +# Maintainer: Timothée Ravier < tim at siosm dot fr > +# Contributor: Tom < reztho at archlinux dot org > + +pkgname=tuned-git +pkgver=2.4.1.r61.gd172b5b +pkgrel=1 +pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' +arch=('any') +url='https://fedorahosted.org/tuned/' +license=('GPL') +depends=('ethtool' 'python2-configobj' 'python2-pyudev' 'python2-gobject2' + 'python2-decorator' 'python2-dbus') +optdepends=('virt-what' 'systemtap') +makedepends=('git') +provides=('tuned') +backup=('etc/tuned/active_profile') +install="${pkgname/-git}.install" +source=("${pkgname}::git://git.fedorahosted.org/git/${pkgname/-/.}") +sha256sums=('SKIP') + +pkgver() { + cd ${pkgname} + local ver=$(git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g') + printf "%s\n" "${ver:1}" +} + +package() { + cd ${pkgname} + + make DESTDIR="${pkgdir}" install + + mv "${pkgdir}"/usr/sbin/* "${pkgdir}"/usr/bin/ + mv "${pkgdir}"/usr/libexec/tuned/* "${pkgdir}"/usr/lib/tuned/ + rm -r "${pkgdir}"/run "${pkgdir}"/usr/sbin "${pkgdir}"/usr/libexec + + find "${pkgdir}"/usr/bin/ -type f -exec sed -i 's@#!/usr/bin/python@#!/usr/bin/python2@' {} \; + + install -Dm 0644 "${srcdir}"/${pkgname}/tuned.service "${pkgdir}"/usr/lib/systemd/system/tuned.service +} + +# vim:set ts=2 sw=2 et: diff --git a/tuned.install b/tuned.install new file mode 100644 index 0000000..dbe414b --- /dev/null +++ b/tuned.install @@ -0,0 +1,3 @@ +post_install() { + systemd-tmpfiles --create tuned.conf +} From b35ca95fd4f6935b42b1b39f989d102d1972df27 Mon Sep 17 00:00:00 2001 From: Ivan Lyapunov Date: Wed, 10 Jun 2015 12:05:28 +0300 Subject: [PATCH 003/971] Initial import --- .AURINFO | 24 ++++++++++++++++++++++++ .SRCINFO | 24 ++++++++++++++++++++++++ PKGBUILD | 28 ++++++++++++++++++++++++++++ 3 files changed, 76 insertions(+) create mode 100644 .AURINFO create mode 100644 .SRCINFO create mode 100644 PKGBUILD diff --git a/.AURINFO b/.AURINFO new file mode 100644 index 0000000..f603bdb --- /dev/null +++ b/.AURINFO @@ -0,0 +1,24 @@ +# Generated by makepkg 4.2.1 +# Wed Jun 10 09:04:23 UTC 2015 +pkgbase = systemtap + pkgdesc = SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system. + pkgver = 2.7 + pkgrel = 3 + url = http://sourceware.org/systemtap/ + arch = i686 + arch = x86_64 + arch = armv7h + license = GPL + makedepends = gcc + depends = elfutils + depends = nss + depends = python2 + optdepends = sqlite3 + optdepends = linux-fedora + source = http://sourceware.org/systemtap/ftp/releases/systemtap-2.7.tar.gz + source = .AURINFO + sha1sums = 5562d16446434e1a9a377697c45eb0852303ae41 + sha1sums = SKIP + +pkgname = systemtap + diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..f603bdb --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,24 @@ +# Generated by makepkg 4.2.1 +# Wed Jun 10 09:04:23 UTC 2015 +pkgbase = systemtap + pkgdesc = SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system. + pkgver = 2.7 + pkgrel = 3 + url = http://sourceware.org/systemtap/ + arch = i686 + arch = x86_64 + arch = armv7h + license = GPL + makedepends = gcc + depends = elfutils + depends = nss + depends = python2 + optdepends = sqlite3 + optdepends = linux-fedora + source = http://sourceware.org/systemtap/ftp/releases/systemtap-2.7.tar.gz + source = .AURINFO + sha1sums = 5562d16446434e1a9a377697c45eb0852303ae41 + sha1sums = SKIP + +pkgname = systemtap + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..a4f1a0a --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,28 @@ +pkgname=systemtap +pkgver=2.7 +pkgrel=3 +pkgdesc="SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system." +url="http://sourceware.org/systemtap/" +arch=('i686' 'x86_64' 'armv7h') +license=('GPL') +depends=('elfutils' 'nss' 'python2') +makedepends=('gcc') +optdepends=('sqlite3' 'linux-fedora') +source=(http://sourceware.org/systemtap/ftp/releases/$pkgname-$pkgver.tar.gz .AURINFO) +sha1sums=('5562d16446434e1a9a377697c45eb0852303ae41' + 'SKIP') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc || return 1 + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install + echo enable python2... + sed -i 's/python/python2/g' ${pkgdir}/usr/bin/dtrace +} + +# vim:set ts=2 sw=2 et: From d4fd25eff32ed3dc513c9e4ead6201d68af4752a Mon Sep 17 00:00:00 2001 From: XavierCLL Date: Sat, 13 Jun 2015 00:28:47 -0500 Subject: [PATCH 004/971] Initial import --- .SRCINFO | 17 +++++++++++++++++ PKGBUILD | 26 ++++++++++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..1bfa3b2 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,17 @@ +pkgbase = libqxt + pkgdesc = provides a suite of cross-platform utility classes to add functionality not readily available in the Qt toolkit + pkgver = 0.6.2 + pkgrel = 4 + url = http://www.libqxt.org + arch = i686 + arch = x86_64 + license = CPL + depends = qt4 + depends = openssl + depends = db + optdepends = avahi + source = http://bitbucket.org/libqxt/libqxt/get/v0.6.2.tar.bz2 + md5sums = a859a1757dc0aaf010df1a0783e3e001 + +pkgname = libqxt + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..abdb1da --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: (epsilom) Xavier Corredor +# Contributor: Roberto Alsina +# Contributor: Tim Besard + +pkgname=libqxt +pkgver=0.6.2 +pkgrel=4 +pkgdesc="provides a suite of cross-platform utility classes to add functionality not readily available in the Qt toolkit" +arch=('i686' 'x86_64') +url="http://www.libqxt.org" +license=('CPL') +depends=('qt4' 'openssl' 'db') +optdepends=('avahi') +source=(http://bitbucket.org/libqxt/libqxt/get/v$pkgver.tar.bz2) +md5sums=('a859a1757dc0aaf010df1a0783e3e001') + +build() { + cd $srcdir/$pkgname-* + ./configure -prefix /usr -qmake-bin "/usr/bin/qmake-qt4" + make +} + +package() { + cd $srcdir/$pkgname-* + make INSTALL_ROOT=$pkgdir install +} From 98f286ee783137bc689b2970a2a202c5a19db6a2 Mon Sep 17 00:00:00 2001 From: Alad Wenter Date: Tue, 16 Jun 2015 12:29:46 +0200 Subject: [PATCH 005/971] init --- .SRCINFO | 18 ++++++++++++++++++ PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++ polkit-explorer.desktop | 10 ++++++++++ 3 files changed, 66 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD create mode 100644 polkit-explorer.desktop diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..9e32040 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,18 @@ +# Generated by makepkg 4.2.1 +# Mon Mar 9 17:00:02 UTC 2015 +pkgbase = polkit-explorer + pkgdesc = Present PolicyKit information in a human-readable form. + pkgver = 1 + pkgrel = 5 + url = https://github.com/scarygliders/Polkit-Explorer + arch = any + license = ISC + depends = python2-pyqt4 + depends = python2-lxml + source = https://github.com/scarygliders/Polkit-Explorer/archive/master.zip + source = polkit-explorer.desktop + sha256sums = 877b909d2f85d7c5c448b75a15fc193b1c18882f4548bbd9dbce3805803ae751 + sha256sums = 4343e7c3c9e0dc03bfae8521ab4197661c6ddf4caf150ba4cf3369dc9550518a + +pkgname = polkit-explorer + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..952c3f8 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,38 @@ +# Maintainer: Alad Wenter + +pkgname=polkit-explorer +_pkgname=Polkit-Explorer-master +pkgver=1 +pkgrel=6 + +pkgdesc="Present PolicyKit information in a human-readable form." +arch=('any') +url="https://github.com/scarygliders/Polkit-Explorer" +license=('ISC') + +depends=('python2-pyqt4' 'python2-lxml') +source=('https://github.com/scarygliders/Polkit-Explorer/archive/master.zip' + 'polkit-explorer.desktop') +sha256sums=('877b909d2f85d7c5c448b75a15fc193b1c18882f4548bbd9dbce3805803ae751' + '4343e7c3c9e0dc03bfae8521ab4197661c6ddf4caf150ba4cf3369dc9550518a') + +prepare() { + sed -i 's/python$/python2/' "$_pkgname"/polkitex.py +} + +package() { + cd "$_pkgname" + pydir=usr/lib/python2.7/site-packages/polkitex + + install -Dm755 polkitex.py "$pkgdir/$pydir"/polkitex.py + install -dm755 "$pkgdir"/usr/bin + ln -s /"$pydir"/polkitex.py "$pkgdir"/usr/bin/polkitex + + for i in Ui_*.py; do + install -Dm644 "$i" "$pkgdir/$pydir/$i" + done + + install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/polkit-explorer/LICENSE + install -Dm644 "$srcdir"/polkit-explorer.desktop \ + "$pkgdir"/usr/share/applications/polkit-explorer.desktop +} diff --git a/polkit-explorer.desktop b/polkit-explorer.desktop new file mode 100644 index 0000000..57ce0da --- /dev/null +++ b/polkit-explorer.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Encoding=UTF-8 +Type=Application +Name=Polkit-explorer +Comment=Present PolicyKit information in a human-readable form. +Exec=polkitex +Icon=emblem-system +Terminal=false +StartupNotify=false +Categories=System; From e2776838bf6801fab8467f8b670ac58c88332b3c Mon Sep 17 00:00:00 2001 From: Sander Boom Date: Tue, 7 Jul 2015 23:11:13 +0200 Subject: [PATCH 006/971] Initial import --- .SRCINFO | 23 ++++++++++++++++++++++ PKGBUILD | 41 ++++++++++++++++++++++++++++++++++++++++ sublime-text-dev.install | 19 +++++++++++++++++++ sublime_text_3.desktop | 23 ++++++++++++++++++++++ 4 files changed, 106 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD create mode 100644 sublime-text-dev.install create mode 100644 sublime_text_3.desktop diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..021b960 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,23 @@ +pkgbase = sublime-text-dev + pkgdesc = Sophisticated text editor for code, html and prose - dev build + pkgver = 3.3083 + pkgrel = 1 + url = http://www.sublimetext.com/3 + install = sublime-text-dev.install + arch = i686 + arch = x86_64 + license = custom + depends = libpng + depends = gtk2 + optdepends = gksu: sudo-save support + provides = sublime-text-nightly + conflicts = sublime-text-nightly + source = sublime_text_3.desktop + md5sums = 89594b9c6b9a8c7e6a8ce414a0e58243 + source_i686 = http://c758482.r82.cf2.rackcdn.com/sublime_text_3_build_3083_x32.tar.bz2 + md5sums_i686 = d1be10594fe7093b1b43a888a48c838f + source_x86_64 = http://c758482.r82.cf2.rackcdn.com/sublime_text_3_build_3083_x64.tar.bz2 + md5sums_x86_64 = 5da998bea29f9ca02a60d2b3cfc46fea + +pkgname = sublime-text-dev + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..eaa22d0 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,41 @@ +# Maintainer: Sander Boom +# Contributor: realitygaps + +pkgname=sublime-text-dev +pkgver=3.3083 +pkgrel=1 +pkgdesc="Sophisticated text editor for code, html and prose - dev build" +arch=('i686' 'x86_64') +url="http://www.sublimetext.com/3" +license=('custom') +depends=('libpng' 'gtk2') +optdepends=('gksu: sudo-save support') +conflicts=('sublime-text-nightly') +provides=('sublime-text-nightly') +install=${pkgname}.install + +source=('sublime_text_3.desktop') +source_x86_64=("http://c758482.r82.cf2.rackcdn.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2") +source_i686=("http://c758482.r82.cf2.rackcdn.com/sublime_text_3_build_${pkgver:2}_x32.tar.bz2") + +md5sums=('89594b9c6b9a8c7e6a8ce414a0e58243') +md5sums_i686=('d1be10594fe7093b1b43a888a48c838f') +md5sums_x86_64=('5da998bea29f9ca02a60d2b3cfc46fea') + +package() { + cd "${srcdir}" + + install -dm755 "${pkgdir}/opt" + cp --preserve=mode -r "sublime_text_3" "${pkgdir}/opt/sublime_text_3" + + for res in 128x128 16x16 256x256 32x32 48x48; do + install -dm755 "${pkgdir}/usr/share/icons/hicolor/${res}/apps" + ln -s "/opt/sublime_text_3/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text.png" + done + + install -dm755 "${pkgdir}/usr/share/applications" + install -Dm644 "sublime_text_3.desktop" "${pkgdir}/usr/share/applications/sublime_text_3.desktop" + + install -dm755 "${pkgdir}/usr/bin" + ln -s "/opt/sublime_text_3/sublime_text" "${pkgdir}/usr/bin/subl3" +} diff --git a/sublime-text-dev.install b/sublime-text-dev.install new file mode 100644 index 0000000..b02fe85 --- /dev/null +++ b/sublime-text-dev.install @@ -0,0 +1,19 @@ +post_install() { + # Update icon cache. + gtk-update-icon-cache -f '/usr/share/icons/hicolor' > /dev/null 2>&1 + + # Note admin after install/update on how to change th update_check setting. + cat << _EOF + + ==> sublime-text-dev install/upgrade note: + ------------------------------------------------------------------------------ + To disable in-application reminders about new Sublime Text dev versions, + add the following setting to your User Preferences file: + "update_check": false + +_EOF +} + +post_upgrade() { + post_install +} diff --git a/sublime_text_3.desktop b/sublime_text_3.desktop new file mode 100644 index 0000000..b368ace --- /dev/null +++ b/sublime_text_3.desktop @@ -0,0 +1,23 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Name=Sublime Text 3 Dev +GenericName=Text Editor +Comment=Sophisticated text editor for code, markup and prose +Exec=subl3 %F +Terminal=false +MimeType=text/plain; +Icon=sublime-text +Categories=TextEditor;Development; +StartupNotify=true +Actions=Window;Document; + +[Desktop Action Window] +Name=New Window +Exec=subl3 -n +OnlyShowIn=Unity; + +[Desktop Action Document] +Name=New File +Exec=subl3 --command new_file +OnlyShowIn=Unity; From 94a18ee81b98129c11498fa50b93f8a01021fbbb Mon Sep 17 00:00:00 2001 From: Sander Boom Date: Tue, 7 Jul 2015 23:14:02 +0200 Subject: [PATCH 007/971] Upped pkgrel according to AUR3 pkgrel --- .SRCINFO | 2 +- PKGBUILD | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 021b960..e04c5eb 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build pkgver = 3.3083 - pkgrel = 1 + pkgrel = 2 url = http://www.sublimetext.com/3 install = sublime-text-dev.install arch = i686 diff --git a/PKGBUILD b/PKGBUILD index eaa22d0..076e334 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,9 +1,9 @@ -# Maintainer: Sander Boom +# Maintainer: Sander Boom # Contributor: realitygaps pkgname=sublime-text-dev pkgver=3.3083 -pkgrel=1 +pkgrel=2 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('i686' 'x86_64') url="http://www.sublimetext.com/3" From afe00038be55c93cc99e927937263c1bbe156667 Mon Sep 17 00:00:00 2001 From: Sebastian Krzyszkowiak Date: Mon, 13 Jul 2015 00:08:58 +0200 Subject: [PATCH 008/971] Initial import --- .AURINFO | 20 ++++++++++++++++++++ .SRCINFO | 20 ++++++++++++++++++++ PKGBUILD | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 89 insertions(+) create mode 100644 .AURINFO create mode 100644 .SRCINFO create mode 100644 PKGBUILD diff --git a/.AURINFO b/.AURINFO new file mode 100644 index 0000000..196dddc --- /dev/null +++ b/.AURINFO @@ -0,0 +1,20 @@ +pkgbase = florence + pkgdesc = A configurable on-screen virtual keyboard + pkgver = 0.6.3 + pkgrel = 1 + url = http://sourceforge.net/projects/florence/ + arch = i686 + arch = x86_64 + license = GPL + makedepends = intltool>=0.23 + depends = gtk3 + depends = libxml2 + depends = librsvg + depends = gettext + depends = gstreamer>=1.0 + provides = florence + source = http://sourceforge.net/projects/florence/files/florence/0.6.3/florence-0.6.3.tar.bz2 + md5sums = 8775051d7352f75dec5a86dc9964e8e0 + +pkgname = florence + diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..196dddc --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,20 @@ +pkgbase = florence + pkgdesc = A configurable on-screen virtual keyboard + pkgver = 0.6.3 + pkgrel = 1 + url = http://sourceforge.net/projects/florence/ + arch = i686 + arch = x86_64 + license = GPL + makedepends = intltool>=0.23 + depends = gtk3 + depends = libxml2 + depends = librsvg + depends = gettext + depends = gstreamer>=1.0 + provides = florence + source = http://sourceforge.net/projects/florence/files/florence/0.6.3/florence-0.6.3.tar.bz2 + md5sums = 8775051d7352f75dec5a86dc9964e8e0 + +pkgname = florence + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..a11a267 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,49 @@ +# Maintainer: UshakovVasilii +# Contributor: Charon77 +# Contributor: debdj + +pkgname=florence +pkgver=0.6.3 +pkgrel=1 +pkgdesc="A configurable on-screen virtual keyboard" +arch=('i686' 'x86_64') +url="http://sourceforge.net/projects/florence/" +license=('GPL') + +# http://florence.sourceforge.net/english/install.html +depends=( + 'gtk3' + 'libxml2' + 'librsvg' + 'gettext' + 'gstreamer>=1.0' + ) + +makedepends=('intltool>=0.23') + +# libxtst > at-spi2-core > gtk3 +#optdepends=( +# 'gnome-doc-utils' +# 'libnotify' +# ) + +provides=(florence) +source=("http://sourceforge.net/projects/florence/files/florence/$pkgver/florence-$pkgver.tar.bz2") + +md5sums=('8775051d7352f75dec5a86dc9964e8e0') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure --prefix=/usr \ + --without-docs \ + --without-notification + + make || return 1 +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR=${pkgdir} install || return 1 +} + From aaee2927cd598c453c94cb9329aff805b2f74eed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Ravier?= Date: Sat, 18 Jul 2015 17:59:50 +0200 Subject: [PATCH 009/971] 2.5.0.r6.ge32bd6b-1 update --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index c4204d9..a2238ee 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = tuned-git pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = 2.4.1.r61.gd172b5b + pkgver = 2.5.0.r6.ge32bd6b pkgrel = 1 url = https://fedorahosted.org/tuned/ install = tuned.install diff --git a/PKGBUILD b/PKGBUILD index fff6562..f6af3e6 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Tom < reztho at archlinux dot org > pkgname=tuned-git -pkgver=2.4.1.r61.gd172b5b +pkgver=2.5.0.r6.ge32bd6b pkgrel=1 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') From b41e09121f96675abe604bdb0ed71ba47e3462d8 Mon Sep 17 00:00:00 2001 From: Alad Wenter Date: Sat, 25 Jul 2015 01:07:05 +0200 Subject: [PATCH 010/971] upd --- PKGBUILD | 42 +++++++++++++++++++----------------------- 1 file changed, 19 insertions(+), 23 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 952c3f8..8ac74e2 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,38 +1,34 @@ # Maintainer: Alad Wenter pkgname=polkit-explorer -_pkgname=Polkit-Explorer-master pkgver=1 -pkgrel=6 +pkgrel=7 pkgdesc="Present PolicyKit information in a human-readable form." -arch=('any') url="https://github.com/scarygliders/Polkit-Explorer" license=('ISC') +arch=('any') depends=('python2-pyqt4' 'python2-lxml') -source=('https://github.com/scarygliders/Polkit-Explorer/archive/master.zip' +source=("https://github.com/scarygliders/Polkit-Explorer/archive/master.zip" 'polkit-explorer.desktop') -sha256sums=('877b909d2f85d7c5c448b75a15fc193b1c18882f4548bbd9dbce3805803ae751' +sha256sums=('bc90ca03ee4d216bfb5e415d625c1449af5c87898f98305b48b10adf730c75d6' '4343e7c3c9e0dc03bfae8521ab4197661c6ddf4caf150ba4cf3369dc9550518a') -prepare() { - sed -i 's/python$/python2/' "$_pkgname"/polkitex.py -} - package() { - cd "$_pkgname" - pydir=usr/lib/python2.7/site-packages/polkitex - - install -Dm755 polkitex.py "$pkgdir/$pydir"/polkitex.py - install -dm755 "$pkgdir"/usr/bin - ln -s /"$pydir"/polkitex.py "$pkgdir"/usr/bin/polkitex - - for i in Ui_*.py; do - install -Dm644 "$i" "$pkgdir/$pydir/$i" - done - - install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/polkit-explorer/LICENSE - install -Dm644 "$srcdir"/polkit-explorer.desktop \ - "$pkgdir"/usr/share/applications/polkit-explorer.desktop + cd Polkit-Explorer-master + local pydir=usr/lib/python2.7/site-packages/polkitex + sed -i 's/python$/python2/' polkitex.py + + install -Dm755 polkitex.py "$pkgdir/$pydir"/polkitex.py + install -dm755 "$pkgdir"/usr/bin + ln -s /"$pydir"/polkitex.py "$pkgdir"/usr/bin/polkitex + + for i in Ui_*.py; do + install -Dm644 "$i" "$pkgdir/$pydir/$i" + done + + install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/polkit-explorer/LICENSE + install -Dm644 "$srcdir"/polkit-explorer.desktop \ + "$pkgdir"/usr/share/applications/polkit-explorer.desktop } From 78b9daa6d635c657aeffe7b40fbc84165baa2925 Mon Sep 17 00:00:00 2001 From: Manuel Date: Sat, 25 Jul 2015 02:45:56 +0200 Subject: [PATCH 011/971] Initial import --- .SRCINFO | 13 +++++++++++++ PKGBUILD | 21 +++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..c91c2e2 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,13 @@ +pkgbase = plymouth-theme-arch-logo + pkgdesc = Arch-logo is a remake of ubuntu-logo plymouth + pkgver = 0.1 + pkgrel = 3 + url = http://gnome-look.org/content/show.php/Arch-logo+plymouth?content=141697 + arch = any + license = GPL + depends = plymouth + source = http://gnome-look.org/CONTENT/content-files/141697-Arch-logo-plymouth.tar.gz + sha256sums = 553ab3efd51abefc50c10b521c24183df9ef879d080a75c54fb1c1512fbc94e6 + +pkgname = plymouth-theme-arch-logo + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..910fa19 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,21 @@ +# Maintainer: Guillermo Garcia +# Contributor: Manuel Hüsers +# Contributor: Guillermo Garcia + +pkgname="plymouth-theme-arch-logo" +pkgver=0.1 +pkgrel=3 +url="http://gnome-look.org/content/show.php/Arch-logo+plymouth?content=141697" +pkgdesc="Arch-logo is a remake of ubuntu-logo plymouth" +arch=('any') +license=('GPL') +depends=('plymouth') +source=("http://gnome-look.org/CONTENT/content-files/141697-Arch-logo-plymouth.tar.gz") +sha256sums=('553ab3efd51abefc50c10b521c24183df9ef879d080a75c54fb1c1512fbc94e6') + +package() { + cd $srcdir/arch-logo + mkdir -p $pkgdir/usr/share/plymouth/themes/arch-logo + install -Dm644 * $pkgdir/usr/share/plymouth/themes/arch-logo + install -Dm644 ../arch-logo.png $pkgdir/usr/share/plymouth/themes/arch-logo.png +} From b3d6b7d72cb0c5758baa0dffc580423b7d168483 Mon Sep 17 00:00:00 2001 From: Alad Wenter Date: Fri, 7 Aug 2015 15:42:44 +0200 Subject: [PATCH 012/971] Upd --- .SRCINFO | 6 ++---- PKGBUILD | 14 ++++++-------- 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 9e32040..d81a8fb 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,9 +1,7 @@ -# Generated by makepkg 4.2.1 -# Mon Mar 9 17:00:02 UTC 2015 pkgbase = polkit-explorer pkgdesc = Present PolicyKit information in a human-readable form. pkgver = 1 - pkgrel = 5 + pkgrel = 7 url = https://github.com/scarygliders/Polkit-Explorer arch = any license = ISC @@ -11,7 +9,7 @@ pkgbase = polkit-explorer depends = python2-lxml source = https://github.com/scarygliders/Polkit-Explorer/archive/master.zip source = polkit-explorer.desktop - sha256sums = 877b909d2f85d7c5c448b75a15fc193b1c18882f4548bbd9dbce3805803ae751 + sha256sums = bc90ca03ee4d216bfb5e415d625c1449af5c87898f98305b48b10adf730c75d6 sha256sums = 4343e7c3c9e0dc03bfae8521ab4197661c6ddf4caf150ba4cf3369dc9550518a pkgname = polkit-explorer diff --git a/PKGBUILD b/PKGBUILD index 8ac74e2..a582767 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -18,15 +18,13 @@ sha256sums=('bc90ca03ee4d216bfb5e415d625c1449af5c87898f98305b48b10adf730c75d6' package() { cd Polkit-Explorer-master local pydir=usr/lib/python2.7/site-packages/polkitex + + install -d -m755 "$pkgdir"/{usr/bin,$pydir} + install -m644 Ui_*.py "$pkgdir"/$pydir/ + sed -i 's/python$/python2/' polkitex.py - - install -Dm755 polkitex.py "$pkgdir/$pydir"/polkitex.py - install -dm755 "$pkgdir"/usr/bin - ln -s /"$pydir"/polkitex.py "$pkgdir"/usr/bin/polkitex - - for i in Ui_*.py; do - install -Dm644 "$i" "$pkgdir/$pydir/$i" - done + install -m755 polkitex.py "$pkgdir"/$pydir/ + ln -s /$pydir/polkitex.py "$pkgdir"/usr/bin/polkitex install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/polkit-explorer/LICENSE install -Dm644 "$srcdir"/polkit-explorer.desktop \ From ecf3a885a8da36e3d64c4f148ff03b4ebad3a75c Mon Sep 17 00:00:00 2001 From: megadrivers Date: Sat, 8 Aug 2015 20:08:31 +0200 Subject: [PATCH 013/971] Initial import --- .SRCINFO | 13 +++++++++++++ PKGBUILD | 19 +++++++++++++++++++ rc-local.service | 11 +++++++++++ 3 files changed, 43 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD create mode 100644 rc-local.service diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..7bca865 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,13 @@ +pkgbase = rc-local + pkgdesc = Support for legacy rc.local scripts + pkgver = 1 + pkgrel = 1 + url = https://aur.archlinux.org/packages/rc-local/ + arch = any + license = BSD + depends = bash + source = rc-local.service + md5sums = bb2cfecf3c6d99c6e6ee9eb58bcde75d + +pkgname = rc-local + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..46e01d2 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,19 @@ +# Maintainer: megadriver +# Contributor: $pooky Hunter + +pkgname=rc-local +pkgver=1 +pkgrel=1 +pkgdesc="Support for legacy rc.local scripts" +url=("https://aur.archlinux.org/packages/rc-local/") +arch=('any') +license=('BSD') +depends=('bash') +source=(rc-local.service) +md5sums=('bb2cfecf3c6d99c6e6ee9eb58bcde75d') + +package() { + echo "#!/bin/bash" > rc.local + install -D -m 0755 rc.local $pkgdir/etc/rc.local + install -D -m 0644 rc-local.service $pkgdir/usr/lib/systemd/system/rc-local.service +} diff --git a/rc-local.service b/rc-local.service new file mode 100644 index 0000000..c56106f --- /dev/null +++ b/rc-local.service @@ -0,0 +1,11 @@ +[Unit] +Description=/etc/rc.local compatibility +After=network.target + +[Service] +Type=oneshot +ExecStart=/etc/rc.local +RemainAfterExit=yes + +[Install] +WantedBy=multi-user.target From 590933edeeeebb6dc9c7c38ff433154172aedf4c Mon Sep 17 00:00:00 2001 From: Ivan Lyapunov Date: Thu, 13 Aug 2015 14:19:07 +0300 Subject: [PATCH 014/971] systemtap v2.8 --- .AURINFO | 24 ------------------------ .SRCINFO | 8 +++----- PKGBUILD | 9 ++++----- 3 files changed, 7 insertions(+), 34 deletions(-) delete mode 100644 .AURINFO diff --git a/.AURINFO b/.AURINFO deleted file mode 100644 index f603bdb..0000000 --- a/.AURINFO +++ /dev/null @@ -1,24 +0,0 @@ -# Generated by makepkg 4.2.1 -# Wed Jun 10 09:04:23 UTC 2015 -pkgbase = systemtap - pkgdesc = SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system. - pkgver = 2.7 - pkgrel = 3 - url = http://sourceware.org/systemtap/ - arch = i686 - arch = x86_64 - arch = armv7h - license = GPL - makedepends = gcc - depends = elfutils - depends = nss - depends = python2 - optdepends = sqlite3 - optdepends = linux-fedora - source = http://sourceware.org/systemtap/ftp/releases/systemtap-2.7.tar.gz - source = .AURINFO - sha1sums = 5562d16446434e1a9a377697c45eb0852303ae41 - sha1sums = SKIP - -pkgname = systemtap - diff --git a/.SRCINFO b/.SRCINFO index f603bdb..7073594 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -2,8 +2,8 @@ # Wed Jun 10 09:04:23 UTC 2015 pkgbase = systemtap pkgdesc = SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system. - pkgver = 2.7 - pkgrel = 3 + pkgver = 2.8 + pkgrel = 1 url = http://sourceware.org/systemtap/ arch = i686 arch = x86_64 @@ -16,9 +16,7 @@ pkgbase = systemtap optdepends = sqlite3 optdepends = linux-fedora source = http://sourceware.org/systemtap/ftp/releases/systemtap-2.7.tar.gz - source = .AURINFO - sha1sums = 5562d16446434e1a9a377697c45eb0852303ae41 - sha1sums = SKIP + sha1sums = 95034e8243e1f9fd33b765afda06546083df1b7f pkgname = systemtap diff --git a/PKGBUILD b/PKGBUILD index a4f1a0a..3840175 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ pkgname=systemtap -pkgver=2.7 -pkgrel=3 +pkgver=2.8 +pkgrel=1 pkgdesc="SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system." url="http://sourceware.org/systemtap/" arch=('i686' 'x86_64' 'armv7h') @@ -8,9 +8,8 @@ license=('GPL') depends=('elfutils' 'nss' 'python2') makedepends=('gcc') optdepends=('sqlite3' 'linux-fedora') -source=(http://sourceware.org/systemtap/ftp/releases/$pkgname-$pkgver.tar.gz .AURINFO) -sha1sums=('5562d16446434e1a9a377697c45eb0852303ae41' - 'SKIP') +source=(http://sourceware.org/systemtap/ftp/releases/$pkgname-$pkgver.tar.gz) +sha1sums=('95034e8243e1f9fd33b765afda06546083df1b7f') build() { cd "${srcdir}/${pkgname}-${pkgver}" From 7401ef4d0e69214323f41f495306b65e7d2408c3 Mon Sep 17 00:00:00 2001 From: Ivan Lyapunov Date: Thu, 13 Aug 2015 14:19:51 +0300 Subject: [PATCH 015/971] systemtap v2.8 p2 --- .SRCINFO | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.SRCINFO b/.SRCINFO index 7073594..02c248f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -15,7 +15,7 @@ pkgbase = systemtap depends = python2 optdepends = sqlite3 optdepends = linux-fedora - source = http://sourceware.org/systemtap/ftp/releases/systemtap-2.7.tar.gz + source = http://sourceware.org/systemtap/ftp/releases/systemtap-2.8.tar.gz sha1sums = 95034e8243e1f9fd33b765afda06546083df1b7f pkgname = systemtap From 4bd7ba2021625cb36ddd428915e13031637e83ad Mon Sep 17 00:00:00 2001 From: graysky Date: Sat, 19 Sep 2015 08:03:01 -0400 Subject: [PATCH 016/971] Update to 11.3.0.006-1 --- .SRCINFO | 6 +++--- PKGBUILD | 23 ++++++++++++----------- 2 files changed, 15 insertions(+), 14 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 653c4af..31c6b2c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,14 +1,14 @@ pkgbase = linpack - pkgver = 11.2.2.010 + pkgver = 11.3.0.006 pkgrel = 1 url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download arch = i686 arch = x86_64 license = custom - source = http://registrationcenter.intel.com/irc_nas/5232/l_lpk_p_11.2.2.010.tgz + source = http://registrationcenter.intel.com/irc_nas/7963/l_lpk_p_11.3.0.006.tgz source = linpack.conf source = runme.template - sha256sums = 88fcc540425a7be8bd9e78af66474492f8c0f11d9ad4ad8a82879dc5757ffdf2 + sha256sums = bbabed3cd3686ead35d8bf59df5c7b6608f7c1919be29f01dda6363ded4c250c sha256sums = d7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254 sha256sums = 8c880adeee3de6c0e6005e210cea0e01b471219c590e25e824298a25ab0eef31 diff --git a/PKGBUILD b/PKGBUILD index acc259e..057dc8c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,16 +1,16 @@ # Contributor: graysky pkgname=('linpack') -pkgver=11.2.2.010 -_pkgvershort=11.2.2 -_stupid_number=5232 +pkgver=11.3.0.006 +_pkgvershort=11.3 +_stupid_number=7963 pkgrel=1 arch=('i686' 'x86_64') license=('custom') url="http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download" source=("http://registrationcenter.intel.com/irc_nas/$_stupid_number/l_lpk_p_$pkgver.tgz" 'linpack.conf' 'runme.template') -sha256sums=('88fcc540425a7be8bd9e78af66474492f8c0f11d9ad4ad8a82879dc5757ffdf2' +sha256sums=('bbabed3cd3686ead35d8bf59df5c7b6608f7c1919be29f01dda6363ded4c250c' 'd7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254' '8c880adeee3de6c0e6005e210cea0e01b471219c590e25e824298a25ab0eef31') @@ -24,17 +24,18 @@ package_linpack() { pkgdesc='Benchmark based on linear algebra excellent app for stress testing.' install=readme.install backup=(etc/linpack.conf) - _path="l_lpk_p_$pkgver/linpack_$_pkgvershort/benchmarks/linpack" - _docpath="l_lpk_p_$pkgver/linpack_$_pkgvershort/doc" + _path="l_lpk_p_$pkgver/linpack_$_pkgvershort" + _binpath="$_path/linux/mkl/benchmarks/linpack" + _docpath="$_path/documentation_2016/en/mkl/common/mkl_userguide" # setup based on detected arch sed -e "s/@TARGET_BIT@/$bit/g" linpack_runme_xeon$bit install -Dm755 linpack_runme_xeon$bit "$pkgdir/usr/bin/linpack_runme_xeon$bit" install -Dm644 linpack.conf "$pkgdir/etc/linpack.conf" - install -Dm644 "$srcdir/$_docpath/lpkEULA.txt" "$pkgdir/usr/share/licenses/linpack/lpkEULA.txt" - install -Dm644 "$srcdir/$_docpath/lpksupport.txt" "$pkgdir/usr/share/doc/linpack/lpksupport.txt" - install -Dm755 "$srcdir/$_path/xlinpack_xeon$bit" "$pkgdir/usr/bin/xlinpack_xeon$bit" - install -Dm644 "$srcdir/$_path/xhelp.lpk" "$pkgdir/usr/share/doc/${pkgname}/xhelp.lpk" - cp -r "$srcdir/$_docpath/mkl_userguide" "$pkgdir/usr/share/doc/linpack" + install -Dm644 "$srcdir/$_path/lpkEULA.txt" "$pkgdir/usr/share/licenses/linpack/lpkEULA.txt" + install -Dm644 "$srcdir/$_path/lpksupport.txt" "$pkgdir/usr/share/doc/linpack/lpksupport.txt" + install -Dm755 "$srcdir/$_binpath/xlinpack_xeon$bit" "$pkgdir/usr/bin/xlinpack_xeon$bit" + install -Dm644 "$srcdir/$_binpath/xhelp.lpk" "$pkgdir/usr/share/doc/${pkgname}/xhelp.lpk" + cp -r "$srcdir/$_docpath" "$pkgdir/usr/share/doc/linpack" } From 82c4480c47beb36eae8278796ae6fe8416172568 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 21 Sep 2015 15:00:04 +0200 Subject: [PATCH 017/971] Version 1.1 --- .SRCINFO | 14 +++++++++----- PKGBUILD | 26 +++++++++++++++----------- rc-local.install | 16 ++++++++++++++++ rc-local.service | 20 +++++++++++++++----- rc.local | 14 ++++++++++++++ 5 files changed, 69 insertions(+), 21 deletions(-) create mode 100644 rc-local.install create mode 100644 rc.local diff --git a/.SRCINFO b/.SRCINFO index 7bca865..26ae8d0 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,13 +1,17 @@ pkgbase = rc-local pkgdesc = Support for legacy rc.local scripts - pkgver = 1 + pkgver = 1.1 pkgrel = 1 - url = https://aur.archlinux.org/packages/rc-local/ + url = https://aur.archlinux.org/packages/rc-local + install = rc-local.install arch = any - license = BSD - depends = bash + license = LGPL2.1 + depends = systemd + backup = etc/rc.local + source = rc.local source = rc-local.service - md5sums = bb2cfecf3c6d99c6e6ee9eb58bcde75d + sha256sums = 8aa661c15cf9a35c32c79055bf69ab2d16354128ddd67a1bce0a7e48fe26f2e3 + sha256sums = 7ac3eae0aee580448acbe386a3a2954990510790c42f2b9a0df293078d22dc14 pkgname = rc-local diff --git a/PKGBUILD b/PKGBUILD index 46e01d2..a5f2725 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,19 +1,23 @@ -# Maintainer: megadriver +# Maintainer: Manuel Hüsers +# Contributor: megadriver # Contributor: $pooky Hunter pkgname=rc-local -pkgver=1 +pkgver=1.1 pkgrel=1 -pkgdesc="Support for legacy rc.local scripts" -url=("https://aur.archlinux.org/packages/rc-local/") +pkgdesc='Support for legacy rc.local scripts' +url=('https://aur.archlinux.org/packages/rc-local') arch=('any') -license=('BSD') -depends=('bash') -source=(rc-local.service) -md5sums=('bb2cfecf3c6d99c6e6ee9eb58bcde75d') +license=('LGPL2.1') +install="${pkgname}.install" +depends=('systemd') +backup=('etc/rc.local') +source=('rc.local' + 'rc-local.service') +sha256sums=('8aa661c15cf9a35c32c79055bf69ab2d16354128ddd67a1bce0a7e48fe26f2e3' + '7ac3eae0aee580448acbe386a3a2954990510790c42f2b9a0df293078d22dc14') package() { - echo "#!/bin/bash" > rc.local - install -D -m 0755 rc.local $pkgdir/etc/rc.local - install -D -m 0644 rc-local.service $pkgdir/usr/lib/systemd/system/rc-local.service + install -Dm755 'rc.local' "${pkgdir}/etc/rc.local" + install -Dm644 'rc-local.service' "${pkgdir}/usr/lib/systemd/system/rc-local.service" } diff --git a/rc-local.install b/rc-local.install new file mode 100644 index 0000000..9908ee1 --- /dev/null +++ b/rc-local.install @@ -0,0 +1,16 @@ +_update() { + systemctl daemon-reload +} + +post_install() { + _update + systemctl enable rc-local.service +} + +post_upgrade() { + _update +} + +post_remove() { + _update +} \ No newline at end of file diff --git a/rc-local.service b/rc-local.service index c56106f..c7d6fcf 100644 --- a/rc-local.service +++ b/rc-local.service @@ -1,11 +1,21 @@ +# This file is part of systemd. +# +# systemd is free software; you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation; either version 2.1 of the License, or +# (at your option) any later version. + [Unit] -Description=/etc/rc.local compatibility -After=network.target +Description=/etc/rc.local Compatibility +ConditionFileIsExecutable=/etc/rc.local [Service] -Type=oneshot -ExecStart=/etc/rc.local +Type=forking +ExecStart=/etc/rc.local start +TimeoutSec=0 +StandardOutput=tty RemainAfterExit=yes - +SysVStartPriority=99 + [Install] WantedBy=multi-user.target diff --git a/rc.local b/rc.local new file mode 100644 index 0000000..65634df --- /dev/null +++ b/rc.local @@ -0,0 +1,14 @@ +#!/bin/sh -e +# +# rc.local +# +# This script is executed at the end of each multiuser runlevel. +# Make sure that the script will "exit 0" on success or any other +# value on error. +# +# In order to enable or disable this script just change the execution +# bits. +# +# By default this script does nothing. + +exit 0 From 553f2a2081068d0d5036ecffdca93a5d2e512d4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 21 Sep 2015 15:15:48 +0200 Subject: [PATCH 018/971] New release Fixed minor issue when removing package --- .SRCINFO | 2 +- PKGBUILD | 2 +- rc-local.install | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 26ae8d0..12d4340 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = rc-local pkgdesc = Support for legacy rc.local scripts pkgver = 1.1 - pkgrel = 1 + pkgrel = 2 url = https://aur.archlinux.org/packages/rc-local install = rc-local.install arch = any diff --git a/PKGBUILD b/PKGBUILD index a5f2725..4c0c809 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname=rc-local pkgver=1.1 -pkgrel=1 +pkgrel=2 pkgdesc='Support for legacy rc.local scripts' url=('https://aur.archlinux.org/packages/rc-local') arch=('any') diff --git a/rc-local.install b/rc-local.install index 9908ee1..2ed5dec 100644 --- a/rc-local.install +++ b/rc-local.install @@ -11,6 +11,10 @@ post_upgrade() { _update } +pre_remove() { + systemctl disable rc-local.service +} + post_remove() { _update } \ No newline at end of file From eb1906dad659a8601196ceb721eaa4456d5a0e66 Mon Sep 17 00:00:00 2001 From: Sander Boom Date: Fri, 25 Sep 2015 17:49:24 +0200 Subject: [PATCH 019/971] Added StartupWMClass=subl3 to .desktop file; changed to sha256sum --- .SRCINFO | 8 ++++---- PKGBUILD | 8 ++++---- sublime_text_3.desktop | 1 + 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index e04c5eb..161a448 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build pkgver = 3.3083 - pkgrel = 2 + pkgrel = 3 url = http://www.sublimetext.com/3 install = sublime-text-dev.install arch = i686 @@ -13,11 +13,11 @@ pkgbase = sublime-text-dev provides = sublime-text-nightly conflicts = sublime-text-nightly source = sublime_text_3.desktop - md5sums = 89594b9c6b9a8c7e6a8ce414a0e58243 + sha256sums = f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866 source_i686 = http://c758482.r82.cf2.rackcdn.com/sublime_text_3_build_3083_x32.tar.bz2 - md5sums_i686 = d1be10594fe7093b1b43a888a48c838f + sha256sums_i686 = 89e8e2bafa041c263d2c5ffd1b8ea3c36d9727c95a3f7a6603bdf1f6c4cc3165 source_x86_64 = http://c758482.r82.cf2.rackcdn.com/sublime_text_3_build_3083_x64.tar.bz2 - md5sums_x86_64 = 5da998bea29f9ca02a60d2b3cfc46fea + sha256sums_x86_64 = 4565c7f607b69ca6efa1751c739a11d42aeaf66d15987fbb9595e97e3ece14ee pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 076e334..020a181 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ pkgname=sublime-text-dev pkgver=3.3083 -pkgrel=2 +pkgrel=3 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('i686' 'x86_64') url="http://www.sublimetext.com/3" @@ -18,9 +18,9 @@ source=('sublime_text_3.desktop') source_x86_64=("http://c758482.r82.cf2.rackcdn.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2") source_i686=("http://c758482.r82.cf2.rackcdn.com/sublime_text_3_build_${pkgver:2}_x32.tar.bz2") -md5sums=('89594b9c6b9a8c7e6a8ce414a0e58243') -md5sums_i686=('d1be10594fe7093b1b43a888a48c838f') -md5sums_x86_64=('5da998bea29f9ca02a60d2b3cfc46fea') +sha256sums=('f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866') +sha256sums_i686=('89e8e2bafa041c263d2c5ffd1b8ea3c36d9727c95a3f7a6603bdf1f6c4cc3165') +sha256sums_x86_64=('4565c7f607b69ca6efa1751c739a11d42aeaf66d15987fbb9595e97e3ece14ee') package() { cd "${srcdir}" diff --git a/sublime_text_3.desktop b/sublime_text_3.desktop index b368ace..81c347c 100644 --- a/sublime_text_3.desktop +++ b/sublime_text_3.desktop @@ -10,6 +10,7 @@ MimeType=text/plain; Icon=sublime-text Categories=TextEditor;Development; StartupNotify=true +StartupWMClass=subl3 Actions=Window;Document; [Desktop Action Window] From b20665c2a932a5d3e8ec57b4812dd7a03ea4988d Mon Sep 17 00:00:00 2001 From: Ivan Lyapunov Date: Sat, 10 Oct 2015 11:05:12 +0300 Subject: [PATCH 020/971] 2.9 --- PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 3840175..72070f4 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,5 +1,5 @@ pkgname=systemtap -pkgver=2.8 +pkgver=2.9 pkgrel=1 pkgdesc="SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system." url="http://sourceware.org/systemtap/" @@ -9,7 +9,7 @@ depends=('elfutils' 'nss' 'python2') makedepends=('gcc') optdepends=('sqlite3' 'linux-fedora') source=(http://sourceware.org/systemtap/ftp/releases/$pkgname-$pkgver.tar.gz) -sha1sums=('95034e8243e1f9fd33b765afda06546083df1b7f') +sha1sums=('37ecbc7445ff34db3c8204b1541f25524a0e8024') build() { cd "${srcdir}/${pkgname}-${pkgver}" From 1130736383c917004c87cc1c99cd8d35905ff3a0 Mon Sep 17 00:00:00 2001 From: Ivan Lyapunov Date: Sat, 10 Oct 2015 11:09:18 +0300 Subject: [PATCH 021/971] 2.9 --- .SRCINFO | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 02c248f..6753607 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -2,7 +2,7 @@ # Wed Jun 10 09:04:23 UTC 2015 pkgbase = systemtap pkgdesc = SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system. - pkgver = 2.8 + pkgver = 2.9 pkgrel = 1 url = http://sourceware.org/systemtap/ arch = i686 @@ -16,7 +16,7 @@ pkgbase = systemtap optdepends = sqlite3 optdepends = linux-fedora source = http://sourceware.org/systemtap/ftp/releases/systemtap-2.8.tar.gz - sha1sums = 95034e8243e1f9fd33b765afda06546083df1b7f + sha1sums = 37ecbc7445ff34db3c8204b1541f25524a0e8024 pkgname = systemtap From d7a259767bee6660b16c2b4d426e4df8d1094cc2 Mon Sep 17 00:00:00 2001 From: Ivan Lyapunov Date: Sat, 24 Oct 2015 12:28:00 +0300 Subject: [PATCH 022/971] fix srcinfo --- .SRCINFO | 4 +--- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 6753607..3179abf 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,5 +1,3 @@ -# Generated by makepkg 4.2.1 -# Wed Jun 10 09:04:23 UTC 2015 pkgbase = systemtap pkgdesc = SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system. pkgver = 2.9 @@ -15,7 +13,7 @@ pkgbase = systemtap depends = python2 optdepends = sqlite3 optdepends = linux-fedora - source = http://sourceware.org/systemtap/ftp/releases/systemtap-2.8.tar.gz + source = http://sourceware.org/systemtap/ftp/releases/systemtap-2.9.tar.gz sha1sums = 37ecbc7445ff34db3c8204b1541f25524a0e8024 pkgname = systemtap diff --git a/PKGBUILD b/PKGBUILD index 72070f4..81a955c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ pkgname=systemtap pkgver=2.9 -pkgrel=1 +pkgrel=2 pkgdesc="SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system." url="http://sourceware.org/systemtap/" arch=('i686' 'x86_64' 'armv7h') From a655ab75d2476964b1d614ffd8fa22933abb83fd Mon Sep 17 00:00:00 2001 From: Ivan Lyapunov Date: Sat, 24 Oct 2015 12:28:45 +0300 Subject: [PATCH 023/971] fix srcinfo --- .SRCINFO | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.SRCINFO b/.SRCINFO index 3179abf..c659980 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = systemtap pkgdesc = SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system. pkgver = 2.9 - pkgrel = 1 + pkgrel = 2 url = http://sourceware.org/systemtap/ arch = i686 arch = x86_64 From b6c950d0aded37ead4a1b90ae77df1beea1141a5 Mon Sep 17 00:00:00 2001 From: jose1711 Date: Fri, 1 Jan 2016 22:21:59 +0100 Subject: [PATCH 024/971] adopted from aur3 --- .SRCINFO | 22 ++++++++++++++++++++++ PKGBUILD | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..c05022b --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,22 @@ +# Generated by mksrcinfo v8 +# Fri Jan 1 21:21:31 UTC 2016 +pkgbase = bino + pkgdesc = 3D video player with multi-display support. + pkgver = 1.6.1 + pkgrel = 3 + url = http://bino3d.org/ + arch = i686 + arch = x86_64 + license = GPL3 + depends = ffmpeg + depends = freealut + depends = freeglut + depends = glew + depends = libass + depends = qt5-base + optdepends = lirc: for infrared remote control + source = http://download.savannah.gnu.org/releases-noredirect/bino/bino-1.6.1.tar.xz + md5sums = 59471d7eb3b6981a1e610f96a12ff47c + +pkgname = bino + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..d216667 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,32 @@ +# Maintainer: Jose Riha +# Contributor: archtux + +pkgname=bino +pkgver=1.6.1 +pkgrel=3 +pkgdesc="3D video player with multi-display support." +arch=('i686' 'x86_64') +url="http://bino3d.org/" +license=('GPL3') +depends=('ffmpeg' 'freealut' 'freeglut' 'glew' 'libass' 'qt5-base') +optdepends=('lirc: for infrared remote control') +source=(http://download.savannah.gnu.org/releases-noredirect/$pkgname/$pkgname-$pkgver.tar.xz) +md5sums=('59471d7eb3b6981a1e610f96a12ff47c') + +prepare() { + cd $srcdir/$pkgname-$pkgver + sed -i 's/CXXFLAGS -fPIE/& -fPIC/' configure + ./configure --prefix=/usr \ + --with-qt-version=5 \ + # --with-xnvctrl # Enable NVIDIA Quadro SDI output +} + +build() { + cd $srcdir/$pkgname-$pkgver + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir install +} From eef28bd77e6178bf30a4da10046b511366f055f1 Mon Sep 17 00:00:00 2001 From: Iwan Timmer Date: Tue, 26 Jan 2016 13:06:42 +0100 Subject: [PATCH 025/971] Update to version 2.6.0 --- .SRCINFO | 13 ++++++++----- PKGBUILD | 28 +++++++++++----------------- 2 files changed, 19 insertions(+), 22 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index a2238ee..2999656 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,8 @@ -pkgbase = tuned-git +# Generated by mksrcinfo v8 +# Tue Jan 26 12:06:30 UTC 2016 +pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = 2.5.0.r6.ge32bd6b + pkgver = 2.6.0 pkgrel = 1 url = https://fedorahosted.org/tuned/ install = tuned.install @@ -13,12 +15,13 @@ pkgbase = tuned-git depends = python2-gobject2 depends = python2-decorator depends = python2-dbus + depends = python2-gobject optdepends = virt-what optdepends = systemtap provides = tuned backup = etc/tuned/active_profile - source = tuned-git::git://git.fedorahosted.org/git/tuned.git - sha256sums = SKIP + source = https://fedorahosted.org/releases/t/u/tuned/tuned-2.6.0.tar.bz2 + sha256sums = 945c785b8020960d2665b570b3168c366e6b82399801952aea54b4d178dac876 -pkgname = tuned-git +pkgname = tuned diff --git a/PKGBUILD b/PKGBUILD index f6af3e6..4d707ba 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,31 +1,25 @@ -# Maintainer: Timothée Ravier < tim at siosm dot fr > -# Contributor: Tom < reztho at archlinux dot org > +# Maintainer: Iwan Timmer +# Contributor: Timothée Ravier +# Contributor: Tom -pkgname=tuned-git -pkgver=2.5.0.r6.ge32bd6b +pkgname=tuned +pkgver=2.6.0 pkgrel=1 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url='https://fedorahosted.org/tuned/' license=('GPL') -depends=('ethtool' 'python2-configobj' 'python2-pyudev' 'python2-gobject2' - 'python2-decorator' 'python2-dbus') +depends=('ethtool' 'python2-configobj' 'python2-pyudev' 'python2-gobject2' 'python2-decorator' 'python2-dbus' 'python2-gobject') optdepends=('virt-what' 'systemtap') makedepends=('git') provides=('tuned') backup=('etc/tuned/active_profile') -install="${pkgname/-git}.install" -source=("${pkgname}::git://git.fedorahosted.org/git/${pkgname/-/.}") -sha256sums=('SKIP') - -pkgver() { - cd ${pkgname} - local ver=$(git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g') - printf "%s\n" "${ver:1}" -} +install="${pkgname}.install" +source=("https://fedorahosted.org/releases/t/u/${pkgname}/${pkgname}-${pkgver}.tar.bz2") +sha256sums=('945c785b8020960d2665b570b3168c366e6b82399801952aea54b4d178dac876') package() { - cd ${pkgname} + cd ${pkgname}-${pkgver} make DESTDIR="${pkgdir}" install @@ -35,7 +29,7 @@ package() { find "${pkgdir}"/usr/bin/ -type f -exec sed -i 's@#!/usr/bin/python@#!/usr/bin/python2@' {} \; - install -Dm 0644 "${srcdir}"/${pkgname}/tuned.service "${pkgdir}"/usr/lib/systemd/system/tuned.service + install -Dm 0644 "${srcdir}"/${pkgname}-${pkgver}/tuned.service "${pkgdir}"/usr/lib/systemd/system/tuned.service } # vim:set ts=2 sw=2 et: From 98c50b0bb4385b3acf748fd06c8a2d48ba424dde Mon Sep 17 00:00:00 2001 From: Manuel Date: Mon, 1 Feb 2016 00:20:02 +0100 Subject: [PATCH 026/971] New release Refactored PKGBUILD Added .install file Added doc support Removed static libraries --- .AURINFO | 20 ------------------- .SRCINFO | 10 +++++++--- PKGBUILD | 51 ++++++++++++++++++------------------------------ florence.install | 16 +++++++++++++++ 4 files changed, 42 insertions(+), 55 deletions(-) delete mode 100644 .AURINFO create mode 100644 florence.install diff --git a/.AURINFO b/.AURINFO deleted file mode 100644 index 196dddc..0000000 --- a/.AURINFO +++ /dev/null @@ -1,20 +0,0 @@ -pkgbase = florence - pkgdesc = A configurable on-screen virtual keyboard - pkgver = 0.6.3 - pkgrel = 1 - url = http://sourceforge.net/projects/florence/ - arch = i686 - arch = x86_64 - license = GPL - makedepends = intltool>=0.23 - depends = gtk3 - depends = libxml2 - depends = librsvg - depends = gettext - depends = gstreamer>=1.0 - provides = florence - source = http://sourceforge.net/projects/florence/files/florence/0.6.3/florence-0.6.3.tar.bz2 - md5sums = 8775051d7352f75dec5a86dc9964e8e0 - -pkgname = florence - diff --git a/.SRCINFO b/.SRCINFO index 196dddc..7d82a55 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,20 +1,24 @@ +# Generated by mksrcinfo v8 +# Sun Jan 31 23:20:02 UTC 2016 pkgbase = florence pkgdesc = A configurable on-screen virtual keyboard pkgver = 0.6.3 - pkgrel = 1 + pkgrel = 2 url = http://sourceforge.net/projects/florence/ + install = florence.install arch = i686 arch = x86_64 license = GPL makedepends = intltool>=0.23 + makedepends = gnome-doc-utils depends = gtk3 depends = libxml2 depends = librsvg + depends = libxtst depends = gettext depends = gstreamer>=1.0 - provides = florence source = http://sourceforge.net/projects/florence/files/florence/0.6.3/florence-0.6.3.tar.bz2 - md5sums = 8775051d7352f75dec5a86dc9964e8e0 + sha256sums = 422992fd07d285be73cce721a203e22cee21320d69b0fda1579ce62944c5091e pkgname = florence diff --git a/PKGBUILD b/PKGBUILD index a11a267..98a5d7d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,49 +1,36 @@ -# Maintainer: UshakovVasilii +# Maintainer: Manuel Hüsers +# Contributor: UshakovVasilii # Contributor: Charon77 # Contributor: debdj pkgname=florence pkgver=0.6.3 -pkgrel=1 +pkgrel=2 pkgdesc="A configurable on-screen virtual keyboard" arch=('i686' 'x86_64') url="http://sourceforge.net/projects/florence/" license=('GPL') - -# http://florence.sourceforge.net/english/install.html -depends=( - 'gtk3' - 'libxml2' - 'librsvg' - 'gettext' - 'gstreamer>=1.0' - ) - -makedepends=('intltool>=0.23') - -# libxtst > at-spi2-core > gtk3 -#optdepends=( -# 'gnome-doc-utils' -# 'libnotify' -# ) - -provides=(florence) -source=("http://sourceforge.net/projects/florence/files/florence/$pkgver/florence-$pkgver.tar.bz2") - -md5sums=('8775051d7352f75dec5a86dc9964e8e0') +depends=('gtk3' 'libxml2' 'librsvg' 'libxtst' 'gettext' 'gstreamer>=1.0') # http://florence.sourceforge.net/english/install.html +makedepends=('intltool>=0.23' 'gnome-doc-utils') +install="${pkgname}.install" +source=("http://sourceforge.net/projects/florence/files/florence/${pkgver}/florence-${pkgver}.tar.bz2") +sha256sums=('422992fd07d285be73cce721a203e22cee21320d69b0fda1579ce62944c5091e') build() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr \ - --without-docs \ - --without-notification + ./configure --prefix=/usr \ + --without-notification \ + --without-at-spi \ + --with-panelapplet \ + --with-xtst \ + --with-docs \ + --disable-static - make || return 1 + make } package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR=${pkgdir} install || return 1 + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install } - diff --git a/florence.install b/florence.install new file mode 100644 index 0000000..414e7a2 --- /dev/null +++ b/florence.install @@ -0,0 +1,16 @@ +_update() { + glib-compile-schemas '/usr/share/glib-2.0/schemas/' + update-desktop-database -q +} + +post_install() { + _update +} + +post_upgrade() { + _update +} + +post_remove() { + _update +} From 93e68b8b58e9dba071818a4eae585087a469878d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 1 Feb 2016 00:30:26 +0100 Subject: [PATCH 027/971] Small aesthetical changes --- .SRCINFO | 2 +- PKGBUILD | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 7d82a55..9994077 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,5 +1,5 @@ # Generated by mksrcinfo v8 -# Sun Jan 31 23:20:02 UTC 2016 +# Sun Jan 31 23:28:00 UTC 2016 pkgbase = florence pkgdesc = A configurable on-screen virtual keyboard pkgver = 0.6.3 diff --git a/PKGBUILD b/PKGBUILD index 98a5d7d..5d4e5d6 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -6,14 +6,14 @@ pkgname=florence pkgver=0.6.3 pkgrel=2 -pkgdesc="A configurable on-screen virtual keyboard" +pkgdesc='A configurable on-screen virtual keyboard' arch=('i686' 'x86_64') -url="http://sourceforge.net/projects/florence/" +url="http://sourceforge.net/projects/${pkgname}/" license=('GPL') depends=('gtk3' 'libxml2' 'librsvg' 'libxtst' 'gettext' 'gstreamer>=1.0') # http://florence.sourceforge.net/english/install.html makedepends=('intltool>=0.23' 'gnome-doc-utils') install="${pkgname}.install" -source=("http://sourceforge.net/projects/florence/files/florence/${pkgver}/florence-${pkgver}.tar.bz2") +source=("http://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2") sha256sums=('422992fd07d285be73cce721a203e22cee21320d69b0fda1579ce62944c5091e') build() { @@ -26,11 +26,11 @@ build() { --with-xtst \ --with-docs \ --disable-static - make } package() { cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install } From 0d6b27379014e800d422e0ec79f9c80e12f25952 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 1 Feb 2016 00:53:01 +0100 Subject: [PATCH 028/971] Add jobs option to make Added '-j1' option since several users reported build errors with parallel make jobs --- .SRCINFO | 2 +- PKGBUILD | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 9994077..1c0ee04 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,5 +1,5 @@ # Generated by mksrcinfo v8 -# Sun Jan 31 23:28:00 UTC 2016 +# Sun Jan 31 23:50:00 UTC 2016 pkgbase = florence pkgdesc = A configurable on-screen virtual keyboard pkgver = 0.6.3 diff --git a/PKGBUILD b/PKGBUILD index 5d4e5d6..72c8225 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -26,11 +26,11 @@ build() { --with-xtst \ --with-docs \ --disable-static - make + make -j1 } package() { cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install + make -j1 DESTDIR="${pkgdir}" install } From 2b862057bffcdd2b0744f57ff969183952b657b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 6 Feb 2016 17:00:15 +0100 Subject: [PATCH 029/971] Fix makepkg error Update fixes url being set as an array --- PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKGBUILD b/PKGBUILD index 4c0c809..ed69244 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -6,7 +6,7 @@ pkgname=rc-local pkgver=1.1 pkgrel=2 pkgdesc='Support for legacy rc.local scripts' -url=('https://aur.archlinux.org/packages/rc-local') +url="https://aur.archlinux.org/packages/${pkgname}" arch=('any') license=('LGPL2.1') install="${pkgname}.install" From ebe4e196139f20d94e543aa0bc713205807d6c0d Mon Sep 17 00:00:00 2001 From: Manuel Date: Sat, 6 Feb 2016 20:10:04 +0100 Subject: [PATCH 030/971] New release Refactored PKGBUILD Changed versioning scheme --- .SRCINFO | 12 +++++++----- PKGBUILD | 54 +++++++++++++++++++++++++++++------------------------- 2 files changed, 36 insertions(+), 30 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index d81a8fb..ce008e8 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,15 +1,17 @@ +# Generated by mksrcinfo v8 +# Sat Feb 6 19:10:00 UTC 2016 pkgbase = polkit-explorer pkgdesc = Present PolicyKit information in a human-readable form. - pkgver = 1 - pkgrel = 7 - url = https://github.com/scarygliders/Polkit-Explorer + pkgver = 6.e27209d + pkgrel = 1 + url = https://github.com/scarygliders/polkit-explorer arch = any license = ISC depends = python2-pyqt4 depends = python2-lxml - source = https://github.com/scarygliders/Polkit-Explorer/archive/master.zip + source = git://github.com/scarygliders/polkit-explorer.git source = polkit-explorer.desktop - sha256sums = bc90ca03ee4d216bfb5e415d625c1449af5c87898f98305b48b10adf730c75d6 + sha256sums = SKIP sha256sums = 4343e7c3c9e0dc03bfae8521ab4197661c6ddf4caf150ba4cf3369dc9550518a pkgname = polkit-explorer diff --git a/PKGBUILD b/PKGBUILD index a582767..3c32700 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,32 +1,36 @@ -# Maintainer: Alad Wenter +# Maintainer: Manuel Hüsers +# Contributor: Alad Wenter pkgname=polkit-explorer -pkgver=1 -pkgrel=7 - -pkgdesc="Present PolicyKit information in a human-readable form." -url="https://github.com/scarygliders/Polkit-Explorer" -license=('ISC') +pkgver=6.e27209d +pkgrel=1 +pkgdesc='Present PolicyKit information in a human-readable form.' arch=('any') - +url="https://github.com/scarygliders/${pkgname}" +license=('ISC') depends=('python2-pyqt4' 'python2-lxml') -source=("https://github.com/scarygliders/Polkit-Explorer/archive/master.zip" - 'polkit-explorer.desktop') -sha256sums=('bc90ca03ee4d216bfb5e415d625c1449af5c87898f98305b48b10adf730c75d6' +source=("git://github.com/scarygliders/${pkgname}.git" + "${pkgname}.desktop") +sha256sums=('SKIP' '4343e7c3c9e0dc03bfae8521ab4197661c6ddf4caf150ba4cf3369dc9550518a') -package() { - cd Polkit-Explorer-master - local pydir=usr/lib/python2.7/site-packages/polkitex - - install -d -m755 "$pkgdir"/{usr/bin,$pydir} - install -m644 Ui_*.py "$pkgdir"/$pydir/ - - sed -i 's/python$/python2/' polkitex.py - install -m755 polkitex.py "$pkgdir"/$pydir/ - ln -s /$pydir/polkitex.py "$pkgdir"/usr/bin/polkitex - - install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/polkit-explorer/LICENSE - install -Dm644 "$srcdir"/polkit-explorer.desktop \ - "$pkgdir"/usr/share/applications/polkit-explorer.desktop +pkgver() { + cd "${srcdir}/${pkgname}" + printf '%s.%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" +} + +package() { + cd "${srcdir}/${pkgname}" + local pydir='usr/lib/python2.7/site-packages/polkitex' + + install -d -m755 "${pkgdir}"/{usr/bin,$pydir} + install -m644 Ui_*.py "${pkgdir}/${pydir}/" + + sed -i 's/python$/python2/' 'polkitex.py' + install -m755 'polkitex.py' "${pkgdir}/${pydir}/" + ln -s "/${pydir}/polkitex.py" "${pkgdir}/usr/bin/polkitex" + + install -Dm644 'LICENSE' "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + install -Dm644 "${srcdir}/${pkgname}.desktop" \ + "${pkgdir}/usr/share/applications/${pkgname}.desktop" } From 09504bb5ad28549f1e469c6966fbba7b944b79f7 Mon Sep 17 00:00:00 2001 From: jose1711 Date: Sun, 7 Feb 2016 00:13:33 +0100 Subject: [PATCH 031/971] updated to 1.6.2 --- .SRCINFO | 12 +++++++----- PKGBUILD | 10 ++++++---- gui_common.h | 10 ++++++++++ 3 files changed, 23 insertions(+), 9 deletions(-) create mode 100644 gui_common.h diff --git a/.SRCINFO b/.SRCINFO index c05022b..f73a492 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,9 +1,9 @@ # Generated by mksrcinfo v8 -# Fri Jan 1 21:21:31 UTC 2016 +# Sat Feb 6 23:13:22 UTC 2016 pkgbase = bino pkgdesc = 3D video player with multi-display support. - pkgver = 1.6.1 - pkgrel = 3 + pkgver = 1.6.2 + pkgrel = 1 url = http://bino3d.org/ arch = i686 arch = x86_64 @@ -15,8 +15,10 @@ pkgbase = bino depends = libass depends = qt5-base optdepends = lirc: for infrared remote control - source = http://download.savannah.gnu.org/releases-noredirect/bino/bino-1.6.1.tar.xz - md5sums = 59471d7eb3b6981a1e610f96a12ff47c + source = http://download.savannah.gnu.org/releases-noredirect/bino/bino-1.6.2.tar.xz + source = gui_common.h + md5sums = b6cbb49c82da6a1d7734e5c2b66864c3 + md5sums = c152d0a10fcf712760919a5892f87a6d pkgname = bino diff --git a/PKGBUILD b/PKGBUILD index d216667..dfae56e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,16 +2,17 @@ # Contributor: archtux pkgname=bino -pkgver=1.6.1 -pkgrel=3 +pkgver=1.6.2 +pkgrel=1 pkgdesc="3D video player with multi-display support." arch=('i686' 'x86_64') url="http://bino3d.org/" license=('GPL3') depends=('ffmpeg' 'freealut' 'freeglut' 'glew' 'libass' 'qt5-base') optdepends=('lirc: for infrared remote control') -source=(http://download.savannah.gnu.org/releases-noredirect/$pkgname/$pkgname-$pkgver.tar.xz) -md5sums=('59471d7eb3b6981a1e610f96a12ff47c') +source=(http://download.savannah.gnu.org/releases-noredirect/$pkgname/$pkgname-$pkgver.tar.xz 'gui_common.h') +md5sums=('b6cbb49c82da6a1d7734e5c2b66864c3' + 'c152d0a10fcf712760919a5892f87a6d') prepare() { cd $srcdir/$pkgname-$pkgver @@ -22,6 +23,7 @@ prepare() { } build() { + cp $srcdir/gui_common.h $srcdir/$pkgname-$pkgver/src cd $srcdir/$pkgname-$pkgver make } diff --git a/gui_common.h b/gui_common.h new file mode 100644 index 0000000..0e6932e --- /dev/null +++ b/gui_common.h @@ -0,0 +1,10 @@ +#ifndef GUICOMMON_H +#define GUICOMMON_H + +#include "base/str.h" + +#include "base/gettext.h" +// Qt requires strings from gettext to be in UTF-8 encoding. +#define _(string) (str::convert(gettext(string), str::localcharset(), "UTF-8").c_str()) + +#endif From e9eec2417971d902faac35b9970a0663f1640904 Mon Sep 17 00:00:00 2001 From: graysky Date: Sun, 7 Feb 2016 08:23:53 -0500 Subject: [PATCH 032/971] Update to 11.3.1.002-1 --- .SRCINFO | 8 +++++--- PKGBUILD | 26 ++++++++++++-------------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 31c6b2c..6173712 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,14 +1,16 @@ +# Generated by mksrcinfo v8 +# Sun Feb 7 13:23:53 UTC 2016 pkgbase = linpack - pkgver = 11.3.0.006 + pkgver = 11.3.1.002 pkgrel = 1 url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download arch = i686 arch = x86_64 license = custom - source = http://registrationcenter.intel.com/irc_nas/7963/l_lpk_p_11.3.0.006.tgz + source = http://registrationcenter.intel.com/irc_nas/8305/l_mklb_p_11.3.1.002.tgz source = linpack.conf source = runme.template - sha256sums = bbabed3cd3686ead35d8bf59df5c7b6608f7c1919be29f01dda6363ded4c250c + sha256sums = aac34c9960a394130bc5b77060dc3e2066d36a8b020465f0ec16d5a30551ed1b sha256sums = d7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254 sha256sums = 8c880adeee3de6c0e6005e210cea0e01b471219c590e25e824298a25ab0eef31 diff --git a/PKGBUILD b/PKGBUILD index 057dc8c..ecc8395 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,16 +1,16 @@ # Contributor: graysky pkgname=('linpack') -pkgver=11.3.0.006 -_pkgvershort=11.3 -_stupid_number=7963 +pkgver=11.3.1.002 +_math_kernel_lib=11.3.1 +_url=8305 pkgrel=1 arch=('i686' 'x86_64') license=('custom') url="http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download" -source=("http://registrationcenter.intel.com/irc_nas/$_stupid_number/l_lpk_p_$pkgver.tgz" +source=("http://registrationcenter.intel.com/irc_nas/$_url/l_mklb_p_$pkgver.tgz" 'linpack.conf' 'runme.template') -sha256sums=('bbabed3cd3686ead35d8bf59df5c7b6608f7c1919be29f01dda6363ded4c250c' +sha256sums=('aac34c9960a394130bc5b77060dc3e2066d36a8b020465f0ec16d5a30551ed1b' 'd7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254' '8c880adeee3de6c0e6005e210cea0e01b471219c590e25e824298a25ab0eef31') @@ -24,18 +24,16 @@ package_linpack() { pkgdesc='Benchmark based on linear algebra excellent app for stress testing.' install=readme.install backup=(etc/linpack.conf) - _path="l_lpk_p_$pkgver/linpack_$_pkgvershort" - _binpath="$_path/linux/mkl/benchmarks/linpack" - _docpath="$_path/documentation_2016/en/mkl/common/mkl_userguide" - + _base="$srcdir/l_mklb_p_$pkgver/benchmarks_$_math_kernel_lib" + _test="$_base/linux/mkl/benchmarks/linpack" # setup based on detected arch sed -e "s/@TARGET_BIT@/$bit/g" linpack_runme_xeon$bit install -Dm755 linpack_runme_xeon$bit "$pkgdir/usr/bin/linpack_runme_xeon$bit" install -Dm644 linpack.conf "$pkgdir/etc/linpack.conf" - install -Dm644 "$srcdir/$_path/lpkEULA.txt" "$pkgdir/usr/share/licenses/linpack/lpkEULA.txt" - install -Dm644 "$srcdir/$_path/lpksupport.txt" "$pkgdir/usr/share/doc/linpack/lpksupport.txt" - install -Dm755 "$srcdir/$_binpath/xlinpack_xeon$bit" "$pkgdir/usr/bin/xlinpack_xeon$bit" - install -Dm644 "$srcdir/$_binpath/xhelp.lpk" "$pkgdir/usr/share/doc/${pkgname}/xhelp.lpk" - cp -r "$srcdir/$_docpath" "$pkgdir/usr/share/doc/linpack" + install -Dm644 "$_base/license.txt" "$pkgdir/usr/share/licenses/linpack/license.txt" + install -Dm644 "$_base/support.txt" "$pkgdir/usr/share/doc/linpack/support.txt" + install -Dm755 "$_test/xlinpack_xeon$bit" "$pkgdir/usr/bin/xlinpack_xeon$bit" + #install -Dm644 "$srcdir/$_binpath/xhelp.lpk" "$pkgdir/usr/share/doc/${pkgname}/xhelp.lpk" + #cp -r "$srcdir/$_docpath" "$pkgdir/usr/share/doc/linpack" } From 88a073568f6278da70277975c64597dd157d1454 Mon Sep 17 00:00:00 2001 From: Sander Boom Date: Tue, 9 Feb 2016 10:08:09 +0100 Subject: [PATCH 033/971] Updated to build 3103 --- .SRCINFO | 14 ++++++++------ PKGBUILD | 12 ++++++------ 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 161a448..d156ef2 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,9 @@ +# Generated by mksrcinfo v8 +# Tue Feb 9 09:06:14 UTC 2016 pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 3.3083 - pkgrel = 3 + pkgver = 3.3103 + pkgrel = 1 url = http://www.sublimetext.com/3 install = sublime-text-dev.install arch = i686 @@ -14,10 +16,10 @@ pkgbase = sublime-text-dev conflicts = sublime-text-nightly source = sublime_text_3.desktop sha256sums = f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866 - source_i686 = http://c758482.r82.cf2.rackcdn.com/sublime_text_3_build_3083_x32.tar.bz2 - sha256sums_i686 = 89e8e2bafa041c263d2c5ffd1b8ea3c36d9727c95a3f7a6603bdf1f6c4cc3165 - source_x86_64 = http://c758482.r82.cf2.rackcdn.com/sublime_text_3_build_3083_x64.tar.bz2 - sha256sums_x86_64 = 4565c7f607b69ca6efa1751c739a11d42aeaf66d15987fbb9595e97e3ece14ee + source_i686 = https://download.sublimetext.com/sublime_text_3_build_3103_x32.tar.bz2 + sha256sums_i686 = 34380ea97e0363fee908ea780754f8a7670a0054f8d6ef72ba1efa663fb32de2 + source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3103_x64.tar.bz2 + sha256sums_x86_64 = 9d78d34dfc5a74339476d02313f4c0659afe4dc2ee01998b2e8a1b9def5813f5 pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 020a181..5346969 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,8 +2,8 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=3.3083 -pkgrel=3 +pkgver=3.3103 +pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('i686' 'x86_64') url="http://www.sublimetext.com/3" @@ -15,12 +15,12 @@ provides=('sublime-text-nightly') install=${pkgname}.install source=('sublime_text_3.desktop') -source_x86_64=("http://c758482.r82.cf2.rackcdn.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2") -source_i686=("http://c758482.r82.cf2.rackcdn.com/sublime_text_3_build_${pkgver:2}_x32.tar.bz2") +source_i686=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x32.tar.bz2") +source_x86_64=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2") sha256sums=('f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866') -sha256sums_i686=('89e8e2bafa041c263d2c5ffd1b8ea3c36d9727c95a3f7a6603bdf1f6c4cc3165') -sha256sums_x86_64=('4565c7f607b69ca6efa1751c739a11d42aeaf66d15987fbb9595e97e3ece14ee') +sha256sums_i686=('34380ea97e0363fee908ea780754f8a7670a0054f8d6ef72ba1efa663fb32de2') +sha256sums_x86_64=('9d78d34dfc5a74339476d02313f4c0659afe4dc2ee01998b2e8a1b9def5813f5') package() { cd "${srcdir}" From 61aa95a135cd5b2987a2898f7ae779959e973348 Mon Sep 17 00:00:00 2001 From: Ivan Lyapunov Date: Wed, 30 Mar 2016 19:04:53 +0300 Subject: [PATCH 034/971] updated to 3.0 --- .SRCINFO | 12 ++++++++---- PKGBUILD | 10 +++++----- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index c659980..f4e3d69 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,20 +1,24 @@ +# Generated by mksrcinfo v8 +# Wed Mar 30 16:04:32 UTC 2016 pkgbase = systemtap pkgdesc = SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system. - pkgver = 2.9 - pkgrel = 2 + pkgver = 3.0 + pkgrel = 1 url = http://sourceware.org/systemtap/ arch = i686 arch = x86_64 arch = armv7h + arch = armv6h license = GPL makedepends = gcc depends = elfutils depends = nss depends = python2 + depends = latex2html optdepends = sqlite3 optdepends = linux-fedora - source = http://sourceware.org/systemtap/ftp/releases/systemtap-2.9.tar.gz - sha1sums = 37ecbc7445ff34db3c8204b1541f25524a0e8024 + source = http://sourceware.org/systemtap/ftp/releases/systemtap-3.0.tar.gz + sha1sums = 5ef3a2d9945b0f6bae0061e33811e25e5138f5b7 pkgname = systemtap diff --git a/PKGBUILD b/PKGBUILD index 81a955c..0644992 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,15 +1,15 @@ pkgname=systemtap -pkgver=2.9 -pkgrel=2 +pkgver=3.0 +pkgrel=1 pkgdesc="SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system." url="http://sourceware.org/systemtap/" -arch=('i686' 'x86_64' 'armv7h') +arch=('i686' 'x86_64' 'armv7h' 'armv6h') license=('GPL') -depends=('elfutils' 'nss' 'python2') +depends=('elfutils' 'nss' 'python2' 'latex2html') makedepends=('gcc') optdepends=('sqlite3' 'linux-fedora') source=(http://sourceware.org/systemtap/ftp/releases/$pkgname-$pkgver.tar.gz) -sha1sums=('37ecbc7445ff34db3c8204b1541f25524a0e8024') +sha1sums=('5ef3a2d9945b0f6bae0061e33811e25e5138f5b7') build() { cd "${srcdir}/${pkgname}-${pkgver}" From 4849189ad8a7249a334542565c54a0e86c5a479b Mon Sep 17 00:00:00 2001 From: Ivan Lyapunov Date: Sat, 2 Apr 2016 12:47:47 +0300 Subject: [PATCH 035/971] depends update --- .SRCINFO | 5 +++-- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index f4e3d69..d5fc81f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,9 +1,9 @@ # Generated by mksrcinfo v8 -# Wed Mar 30 16:04:32 UTC 2016 +# Sat Apr 2 09:47:29 UTC 2016 pkgbase = systemtap pkgdesc = SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system. pkgver = 3.0 - pkgrel = 1 + pkgrel = 2 url = http://sourceware.org/systemtap/ arch = i686 arch = x86_64 @@ -14,6 +14,7 @@ pkgbase = systemtap depends = elfutils depends = nss depends = python2 + depends = texlive-latexextra depends = latex2html optdepends = sqlite3 optdepends = linux-fedora diff --git a/PKGBUILD b/PKGBUILD index 0644992..cd13927 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,11 +1,11 @@ pkgname=systemtap pkgver=3.0 -pkgrel=1 +pkgrel=2 pkgdesc="SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system." url="http://sourceware.org/systemtap/" arch=('i686' 'x86_64' 'armv7h' 'armv6h') license=('GPL') -depends=('elfutils' 'nss' 'python2' 'latex2html') +depends=('elfutils' 'nss' 'python2' 'texlive-latexextra' 'latex2html') makedepends=('gcc') optdepends=('sqlite3' 'linux-fedora') source=(http://sourceware.org/systemtap/ftp/releases/$pkgname-$pkgver.tar.gz) From 2499db6385f2316c4aca10e92916a9cc7982363c Mon Sep 17 00:00:00 2001 From: graysky Date: Sun, 1 May 2016 11:28:10 -0400 Subject: [PATCH 036/971] Update to 2017.0.004-1 --- .SRCINFO | 11 +++++------ PKGBUILD | 18 +++++++----------- readme.install | 11 ----------- runme.template | 17 ++++++++++++++--- 4 files changed, 26 insertions(+), 31 deletions(-) delete mode 100644 readme.install diff --git a/.SRCINFO b/.SRCINFO index 6173712..4de1544 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,21 +1,20 @@ # Generated by mksrcinfo v8 -# Sun Feb 7 13:23:53 UTC 2016 +# Sun May 1 15:28:10 UTC 2016 pkgbase = linpack - pkgver = 11.3.1.002 + pkgver = 2017.0.004 pkgrel = 1 url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download arch = i686 arch = x86_64 license = custom - source = http://registrationcenter.intel.com/irc_nas/8305/l_mklb_p_11.3.1.002.tgz + source = http://registrationcenter-download.intel.com/akdlm/irc_nas/8933/l_mklb_p_2017.0.004.tgz source = linpack.conf source = runme.template - sha256sums = aac34c9960a394130bc5b77060dc3e2066d36a8b020465f0ec16d5a30551ed1b + sha256sums = 90c2fdba5b0f16490efd01b34945c02d56c4fe538071776d1ad24e8a64ed61cf sha256sums = d7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254 - sha256sums = 8c880adeee3de6c0e6005e210cea0e01b471219c590e25e824298a25ab0eef31 + sha256sums = 8bcd48bd97b3177590f15e922f8f7fb1ebfe6ea0608b4d63d8902ac2bd9b6a52 pkgname = linpack pkgdesc = Benchmark based on linear algebra excellent app for stress testing. - install = readme.install backup = etc/linpack.conf diff --git a/PKGBUILD b/PKGBUILD index ecc8395..f1a29fe 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,18 +1,18 @@ # Contributor: graysky pkgname=('linpack') -pkgver=11.3.1.002 -_math_kernel_lib=11.3.1 -_url=8305 +pkgver=2017.0.004 +_math_kernel_lib=2017.b +_url=8933 pkgrel=1 arch=('i686' 'x86_64') license=('custom') url="http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download" -source=("http://registrationcenter.intel.com/irc_nas/$_url/l_mklb_p_$pkgver.tgz" +source=("http://registrationcenter-download.intel.com/akdlm/irc_nas/$_url/l_mklb_p_$pkgver.tgz" 'linpack.conf' 'runme.template') -sha256sums=('aac34c9960a394130bc5b77060dc3e2066d36a8b020465f0ec16d5a30551ed1b' +sha256sums=('90c2fdba5b0f16490efd01b34945c02d56c4fe538071776d1ad24e8a64ed61cf' 'd7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254' - '8c880adeee3de6c0e6005e210cea0e01b471219c590e25e824298a25ab0eef31') + '8bcd48bd97b3177590f15e922f8f7fb1ebfe6ea0608b4d63d8902ac2bd9b6a52') build() { [[ -z "$CARCH" ]] && echo "Cannot determine architecture of this system!" && exit 1 @@ -22,7 +22,6 @@ build() { package_linpack() { pkgdesc='Benchmark based on linear algebra excellent app for stress testing.' - install=readme.install backup=(etc/linpack.conf) _base="$srcdir/l_mklb_p_$pkgver/benchmarks_$_math_kernel_lib" _test="$_base/linux/mkl/benchmarks/linpack" @@ -30,10 +29,7 @@ package_linpack() { sed -e "s/@TARGET_BIT@/$bit/g" linpack_runme_xeon$bit install -Dm755 linpack_runme_xeon$bit "$pkgdir/usr/bin/linpack_runme_xeon$bit" - install -Dm644 linpack.conf "$pkgdir/etc/linpack.conf" + install -Dm644 linpack.conf "$pkgdir/usr/share/$pkgname/linpack.conf" install -Dm644 "$_base/license.txt" "$pkgdir/usr/share/licenses/linpack/license.txt" - install -Dm644 "$_base/support.txt" "$pkgdir/usr/share/doc/linpack/support.txt" install -Dm755 "$_test/xlinpack_xeon$bit" "$pkgdir/usr/bin/xlinpack_xeon$bit" - #install -Dm644 "$srcdir/$_binpath/xhelp.lpk" "$pkgdir/usr/share/doc/${pkgname}/xhelp.lpk" - #cp -r "$srcdir/$_docpath" "$pkgdir/usr/share/doc/linpack" } diff --git a/readme.install b/readme.install deleted file mode 100644 index 06f69f0..0000000 --- a/readme.install +++ /dev/null @@ -1,11 +0,0 @@ -post_install() { - echo '-----------------------------------------------------------------------' - echo '1) Edit /etc/linpack.conf to configure memory usage for your system.' - echo - echo '2) Run the benchmark by typing:' - echo 'linpack_runme_xeon64' - echo ' or' - echo 'linpack_runme_xeon32' - echo '-----------------------------------------------------------------------' -} - diff --git a/runme.template b/runme.template index 7be7bd1..19fa319 100644 --- a/runme.template +++ b/runme.template @@ -1,15 +1,26 @@ #!/bin/bash # export KMP_AFFINITY=nowarnings,compact - -echo -e "Edit \E[31m/etc/linpack.conf\E[37m to adjust the amount of physical memory to consume." + +SKEL_CONFIG="/usr/share/linpack" +CONFIG="$SKEL_CONFIG/linpack.conf" +XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}" + +[[ -f "$SKEL_CONFIG/linpack.conf" ]] || { + echo "ERROR: Missing $SKEL_CONFIG/linpack.conf - reinstall this package." ; exit 1 ; } + +[[ -d $XDG_CONFIG_HOME ]] || mkdir $XDG_CONFIG_HOME +[[ -f "$XDG_CONFIG_HOME/linpack.conf" ]] || cp "$CONFIG" "$XDG_CONFIG_HOME" + +echo -e "Edit \E[31m$XDG_CONFIG_HOME/linpack.conf\E[37m to adjust the amount of physical memory to consume." echo echo -e "Starting calculation.... hit ctrl+c to stop." echo -e "Consult \E[31m~/lin_xeon@TARGET_BIT@.txt\E[37m for results as they are caculated." date date >> ~/lin_xeon@TARGET_BIT@.txt -/usr/bin/xlinpack_xeon@TARGET_BIT@ /etc/linpack.conf >> ~/lin_xeon@TARGET_BIT@.txt + +/usr/bin/xlinpack_xeon@TARGET_BIT@ $XDG_CONFIG_HOME/linpack.conf >> ~/lin_xeon@TARGET_BIT@.txt date >> ~/lin_xeon@TARGET_BIT@.txt echo -n "Done: " date From 51da0249cef395dc530ce859fe2b36f0b52547e1 Mon Sep 17 00:00:00 2001 From: graysky Date: Thu, 5 May 2016 15:17:46 -0400 Subject: [PATCH 037/971] Update to 11.3.3.011-1 --- .SRCINFO | 8 ++++---- PKGBUILD | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 4de1544..e0945d4 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,16 +1,16 @@ # Generated by mksrcinfo v8 -# Sun May 1 15:28:10 UTC 2016 +# Thu May 5 19:17:46 UTC 2016 pkgbase = linpack - pkgver = 2017.0.004 + pkgver = 11.3.3.011 pkgrel = 1 url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download arch = i686 arch = x86_64 license = custom - source = http://registrationcenter-download.intel.com/akdlm/irc_nas/8933/l_mklb_p_2017.0.004.tgz + source = http://registrationcenter-download.intel.com/akdlm/irc_nas/9128/l_mklb_p_11.3.3.011.tgz source = linpack.conf source = runme.template - sha256sums = 90c2fdba5b0f16490efd01b34945c02d56c4fe538071776d1ad24e8a64ed61cf + sha256sums = d19c1614d0508f28439e4af2ff606de2ae078f19dc9ca7363e4192694d43813e sha256sums = d7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254 sha256sums = 8bcd48bd97b3177590f15e922f8f7fb1ebfe6ea0608b4d63d8902ac2bd9b6a52 diff --git a/PKGBUILD b/PKGBUILD index f1a29fe..9f30b5d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,16 +1,16 @@ # Contributor: graysky pkgname=('linpack') -pkgver=2017.0.004 -_math_kernel_lib=2017.b -_url=8933 +pkgver=11.3.3.011 +_math_kernel_lib=11.3.3 +_url=9128 pkgrel=1 arch=('i686' 'x86_64') license=('custom') url="http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download" source=("http://registrationcenter-download.intel.com/akdlm/irc_nas/$_url/l_mklb_p_$pkgver.tgz" 'linpack.conf' 'runme.template') -sha256sums=('90c2fdba5b0f16490efd01b34945c02d56c4fe538071776d1ad24e8a64ed61cf' +sha256sums=('d19c1614d0508f28439e4af2ff606de2ae078f19dc9ca7363e4192694d43813e' 'd7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254' '8bcd48bd97b3177590f15e922f8f7fb1ebfe6ea0608b4d63d8902ac2bd9b6a52') From 9acaff7ead832bf2015b7464fb9f574857e21d6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 11 May 2016 16:12:22 +0200 Subject: [PATCH 038/971] Fix build error and refactor PKGBUILD --- .SRCINFO | 22 ++- PKGBUILD | 48 +++-- libqxt-gcc6.patch | 11 ++ libqxt-header-fix.patch | 19 ++ libqxt-linking.patch | 8 + libqxt-media-keys.patch | 407 ++++++++++++++++++++++++++++++++++++++++ 6 files changed, 499 insertions(+), 16 deletions(-) create mode 100644 libqxt-gcc6.patch create mode 100644 libqxt-header-fix.patch create mode 100644 libqxt-linking.patch create mode 100644 libqxt-media-keys.patch diff --git a/.SRCINFO b/.SRCINFO index 1bfa3b2..cf84dc4 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,17 +1,31 @@ +# Generated by mksrcinfo v8 +# Wed May 11 14:12:21 UTC 2016 pkgbase = libqxt - pkgdesc = provides a suite of cross-platform utility classes to add functionality not readily available in the Qt toolkit + pkgdesc = Provides a suite of cross-platform utility classes to add functionality not readily available in the Qt toolkit pkgver = 0.6.2 - pkgrel = 4 + pkgrel = 5 url = http://www.libqxt.org arch = i686 arch = x86_64 license = CPL + license = LGPL2.1 + makedepends = avahi + makedepends = libxrandr depends = qt4 depends = openssl depends = db - optdepends = avahi + optdepends = avahi: Zeroconf support + options = !emptydirs source = http://bitbucket.org/libqxt/libqxt/get/v0.6.2.tar.bz2 - md5sums = a859a1757dc0aaf010df1a0783e3e001 + source = libqxt-linking.patch + source = libqxt-media-keys.patch + source = libqxt-header-fix.patch + source = libqxt-gcc6.patch + sha256sums = be890afa72158a2074e1f625dcc16716e3e61202f035f1b8528af570760b466b + sha256sums = 0a993e1b45ab885e87fbcceb31652833a287b93d33d0184b6c6786d76f9a7b50 + sha256sums = 2696813b70ddaea284228901fd545213c0b8dacc8aa0cd0f2a7e10537ff1e3cc + sha256sums = 3f92674e0c4aa54351362c61f98606957a7224a43eedfa337081f2013203cd85 + sha256sums = 48f54a303371813c1325293c00d15bb597d689947fddab630f8edc373f59d3fc pkgname = libqxt diff --git a/PKGBUILD b/PKGBUILD index abdb1da..ebb4db4 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,26 +1,50 @@ -# Maintainer: (epsilom) Xavier Corredor +# Maintainer: Manuel Hüsers +# Contributor: (epsilom) Xavier Corredor # Contributor: Roberto Alsina # Contributor: Tim Besard pkgname=libqxt pkgver=0.6.2 -pkgrel=4 -pkgdesc="provides a suite of cross-platform utility classes to add functionality not readily available in the Qt toolkit" +pkgrel=5 +_pkgsuffix=dadc327c2a6a +pkgdesc='Provides a suite of cross-platform utility classes to add functionality not readily available in the Qt toolkit' arch=('i686' 'x86_64') -url="http://www.libqxt.org" -license=('CPL') +url='http://www.libqxt.org' +license=('CPL' 'LGPL2.1') depends=('qt4' 'openssl' 'db') -optdepends=('avahi') -source=(http://bitbucket.org/libqxt/libqxt/get/v$pkgver.tar.bz2) -md5sums=('a859a1757dc0aaf010df1a0783e3e001') +makedepends=('avahi' 'libxrandr') +optdepends=('avahi: Zeroconf support') +options=('!emptydirs') +source=("http://bitbucket.org/${pkgname}/${pkgname}/get/v${pkgver}.tar.bz2" + 'libqxt-linking.patch' + 'libqxt-media-keys.patch' + 'libqxt-header-fix.patch' + 'libqxt-gcc6.patch') +sha256sums=('be890afa72158a2074e1f625dcc16716e3e61202f035f1b8528af570760b466b' + '0a993e1b45ab885e87fbcceb31652833a287b93d33d0184b6c6786d76f9a7b50' + '2696813b70ddaea284228901fd545213c0b8dacc8aa0cd0f2a7e10537ff1e3cc' + '3f92674e0c4aa54351362c61f98606957a7224a43eedfa337081f2013203cd85' + '48f54a303371813c1325293c00d15bb597d689947fddab630f8edc373f59d3fc') + +prepare() { + cd "${srcdir}/${pkgname}-${pkgname}-${_pkgsuffix}" + patch -p1 -i '../libqxt-linking.patch' + patch -p1 -i '../libqxt-media-keys.patch' + patch -p1 -i '../libqxt-header-fix.patch' + patch -p1 -i '../libqxt-gcc6.patch' +} build() { - cd $srcdir/$pkgname-* - ./configure -prefix /usr -qmake-bin "/usr/bin/qmake-qt4" + cd "${srcdir}/${pkgname}-${pkgname}-${_pkgsuffix}" + ./configure -qmake-bin '/usr/bin/qmake-qt4' \ + -prefix '/usr' \ + -libdir '/usr/lib' \ + -docdir '/usr/share/doc' make + #make docs } package() { - cd $srcdir/$pkgname-* - make INSTALL_ROOT=$pkgdir install + cd "${srcdir}/${pkgname}-${pkgname}-${_pkgsuffix}" + make INSTALL_ROOT="${pkgdir}" install } diff --git a/libqxt-gcc6.patch b/libqxt-gcc6.patch new file mode 100644 index 0000000..519646d --- /dev/null +++ b/libqxt-gcc6.patch @@ -0,0 +1,11 @@ +--- a/src/core/qxtslotjob.cpp 2011-11-24 16:10:32.000000000 -0600 ++++ b/src/core/qxtslotjob.cpp 2016-03-07 16:20:32.758268253 -0600 +@@ -174,7 +174,7 @@ This uses QxtSignalWaiter so it will _no + + QVariant QxtFuture::delayedResult(int msec) + { +- if (!waiter->wait(msec, false)) ++ if (!waiter->wait(msec, NULL)) + return QVariant(); + return job->result(); + } diff --git a/libqxt-header-fix.patch b/libqxt-header-fix.patch new file mode 100644 index 0000000..78809f2 --- /dev/null +++ b/libqxt-header-fix.patch @@ -0,0 +1,19 @@ +diff -rupN libqxt.old/src/network/qxtnetwork.h libqxt/src/network/qxtnetwork.h +--- libqxt.old/src/network/qxtnetwork.h 2010-11-07 09:18:41.000000000 -0500 ++++ libqxt/src/network/qxtnetwork.h 2011-08-25 19:18:47.000000000 -0400 +@@ -26,13 +26,13 @@ + #define QXTNETWORK_H_INCLUDED + + #include "qxtjsonrpcclient.h" +-#include "qxtjsonrpcresponse.h" ++#include "qxtjsonrpccall.h" + #include "qxtmailmessage.h" + #include "qxtmailattachment.h" + #include "qxtsmtp.h" + #include "qxtrpcpeer.h" + #include "qxttcpconnectionmanager.h" + #include "qxtxmlrpcclient.h" +-#include "qxtxmlrpcresponse.h" ++#include "qxtxmlrpccall.h" + + #endif // QXTNETWORK_H_INCLUDED diff --git a/libqxt-linking.patch b/libqxt-linking.patch new file mode 100644 index 0000000..f8aef09 --- /dev/null +++ b/libqxt-linking.patch @@ -0,0 +1,8 @@ +diff -rupN libqxt.old/config.tests/xrandr/xrandr.pro libqxt/config.tests/xrandr/xrandr.pro +--- libqxt.old/config.tests/xrandr/xrandr.pro 2010-11-07 09:18:41.000000000 -0500 ++++ libqxt/config.tests/xrandr/xrandr.pro 2010-11-25 05:28:29.000000000 -0500 +@@ -5,3 +5,4 @@ DEPENDPATH += . + INCLUDEPATH += . + SOURCES += main.cpp + !win32:LIBS+=-lXrandr ++LIBS+=-lX11 diff --git a/libqxt-media-keys.patch b/libqxt-media-keys.patch new file mode 100644 index 0000000..a2f39b1 --- /dev/null +++ b/libqxt-media-keys.patch @@ -0,0 +1,407 @@ +diff -rupN libqxt.old/src/gui/keymapper_x11.h libqxt/src/gui/keymapper_x11.h +--- libqxt.old/src/gui/keymapper_x11.h 1969-12-31 19:00:00.000000000 -0500 ++++ libqxt/src/gui/keymapper_x11.h 2010-07-18 15:37:16.000000000 -0400 +@@ -0,0 +1,364 @@ ++#ifndef KEYMAPPER_X11_H ++#define KEYMAPPER_X11_H ++ ++// (davidsansome) Nicked from qkeymapper_x11.cpp ++ ++#include ++ ++#define XK_MISCELLANY ++#define XK_LATIN1 ++#define XK_KOREAN ++#define XK_XKB_KEYS ++#include ++ ++// ++// Keyboard event translation ++// ++ ++#ifndef XK_ISO_Left_Tab ++#define XK_ISO_Left_Tab 0xFE20 ++#endif ++ ++#ifndef XK_dead_hook ++#define XK_dead_hook 0xFE61 ++#endif ++ ++#ifndef XK_dead_horn ++#define XK_dead_horn 0xFE62 ++#endif ++ ++#ifndef XK_Codeinput ++#define XK_Codeinput 0xFF37 ++#endif ++ ++#ifndef XK_Kanji_Bangou ++#define XK_Kanji_Bangou 0xFF37 /* same as codeinput */ ++#endif ++ ++// Fix old X libraries ++#ifndef XK_KP_Home ++#define XK_KP_Home 0xFF95 ++#endif ++#ifndef XK_KP_Left ++#define XK_KP_Left 0xFF96 ++#endif ++#ifndef XK_KP_Up ++#define XK_KP_Up 0xFF97 ++#endif ++#ifndef XK_KP_Right ++#define XK_KP_Right 0xFF98 ++#endif ++#ifndef XK_KP_Down ++#define XK_KP_Down 0xFF99 ++#endif ++#ifndef XK_KP_Prior ++#define XK_KP_Prior 0xFF9A ++#endif ++#ifndef XK_KP_Next ++#define XK_KP_Next 0xFF9B ++#endif ++#ifndef XK_KP_End ++#define XK_KP_End 0xFF9C ++#endif ++#ifndef XK_KP_Insert ++#define XK_KP_Insert 0xFF9E ++#endif ++#ifndef XK_KP_Delete ++#define XK_KP_Delete 0xFF9F ++#endif ++ ++// the next lines are taken from XFree > 4.0 (X11/XF86keysyms.h), defining some special ++// multimedia keys. They are included here as not every system has them. ++#define XF86XK_Standby 0x1008FF10 ++#define XF86XK_AudioLowerVolume 0x1008FF11 ++#define XF86XK_AudioMute 0x1008FF12 ++#define XF86XK_AudioRaiseVolume 0x1008FF13 ++#define XF86XK_AudioPlay 0x1008FF14 ++#define XF86XK_AudioStop 0x1008FF15 ++#define XF86XK_AudioPrev 0x1008FF16 ++#define XF86XK_AudioNext 0x1008FF17 ++#define XF86XK_HomePage 0x1008FF18 ++#define XF86XK_Calculator 0x1008FF1D ++#define XF86XK_Mail 0x1008FF19 ++#define XF86XK_Start 0x1008FF1A ++#define XF86XK_Search 0x1008FF1B ++#define XF86XK_AudioRecord 0x1008FF1C ++#define XF86XK_Back 0x1008FF26 ++#define XF86XK_Forward 0x1008FF27 ++#define XF86XK_Stop 0x1008FF28 ++#define XF86XK_Refresh 0x1008FF29 ++#define XF86XK_Favorites 0x1008FF30 ++#define XF86XK_AudioPause 0x1008FF31 ++#define XF86XK_AudioMedia 0x1008FF32 ++#define XF86XK_MyComputer 0x1008FF33 ++#define XF86XK_OpenURL 0x1008FF38 ++#define XF86XK_Launch0 0x1008FF40 ++#define XF86XK_Launch1 0x1008FF41 ++#define XF86XK_Launch2 0x1008FF42 ++#define XF86XK_Launch3 0x1008FF43 ++#define XF86XK_Launch4 0x1008FF44 ++#define XF86XK_Launch5 0x1008FF45 ++#define XF86XK_Launch6 0x1008FF46 ++#define XF86XK_Launch7 0x1008FF47 ++#define XF86XK_Launch8 0x1008FF48 ++#define XF86XK_Launch9 0x1008FF49 ++#define XF86XK_LaunchA 0x1008FF4A ++#define XF86XK_LaunchB 0x1008FF4B ++#define XF86XK_LaunchC 0x1008FF4C ++#define XF86XK_LaunchD 0x1008FF4D ++#define XF86XK_LaunchE 0x1008FF4E ++#define XF86XK_LaunchF 0x1008FF4F ++// end of XF86keysyms.h ++ ++// Special keys used by Qtopia, mapped into the X11 private keypad range. ++#define QTOPIAXK_Select 0x11000601 ++#define QTOPIAXK_Yes 0x11000602 ++#define QTOPIAXK_No 0x11000603 ++#define QTOPIAXK_Cancel 0x11000604 ++#define QTOPIAXK_Printer 0x11000605 ++#define QTOPIAXK_Execute 0x11000606 ++#define QTOPIAXK_Sleep 0x11000607 ++#define QTOPIAXK_Play 0x11000608 ++#define QTOPIAXK_Zoom 0x11000609 ++#define QTOPIAXK_Context1 0x1100060A ++#define QTOPIAXK_Context2 0x1100060B ++#define QTOPIAXK_Context3 0x1100060C ++#define QTOPIAXK_Context4 0x1100060D ++#define QTOPIAXK_Call 0x1100060E ++#define QTOPIAXK_Hangup 0x1100060F ++#define QTOPIAXK_Flip 0x11000610 ++ ++// keyboard mapping table ++static const unsigned int KeyTbl[] = { ++ ++ // misc keys ++ ++ XK_Escape, Qt::Key_Escape, ++ XK_Tab, Qt::Key_Tab, ++ XK_ISO_Left_Tab, Qt::Key_Backtab, ++ XK_BackSpace, Qt::Key_Backspace, ++ XK_Return, Qt::Key_Return, ++ XK_Insert, Qt::Key_Insert, ++ XK_Delete, Qt::Key_Delete, ++ XK_Clear, Qt::Key_Delete, ++ XK_Pause, Qt::Key_Pause, ++ XK_Print, Qt::Key_Print, ++ 0x1005FF60, Qt::Key_SysReq, // hardcoded Sun SysReq ++ 0x1007ff00, Qt::Key_SysReq, // hardcoded X386 SysReq ++ ++ // cursor movement ++ ++ XK_Home, Qt::Key_Home, ++ XK_End, Qt::Key_End, ++ XK_Left, Qt::Key_Left, ++ XK_Up, Qt::Key_Up, ++ XK_Right, Qt::Key_Right, ++ XK_Down, Qt::Key_Down, ++ XK_Prior, Qt::Key_PageUp, ++ XK_Next, Qt::Key_PageDown, ++ ++ // modifiers ++ ++ XK_Shift_L, Qt::Key_Shift, ++ XK_Shift_R, Qt::Key_Shift, ++ XK_Shift_Lock, Qt::Key_Shift, ++ XK_Control_L, Qt::Key_Control, ++ XK_Control_R, Qt::Key_Control, ++ XK_Meta_L, Qt::Key_Meta, ++ XK_Meta_R, Qt::Key_Meta, ++ XK_Alt_L, Qt::Key_Alt, ++ XK_Alt_R, Qt::Key_Alt, ++ XK_Caps_Lock, Qt::Key_CapsLock, ++ XK_Num_Lock, Qt::Key_NumLock, ++ XK_Scroll_Lock, Qt::Key_ScrollLock, ++ XK_Super_L, Qt::Key_Super_L, ++ XK_Super_R, Qt::Key_Super_R, ++ XK_Menu, Qt::Key_Menu, ++ XK_Hyper_L, Qt::Key_Hyper_L, ++ XK_Hyper_R, Qt::Key_Hyper_R, ++ XK_Help, Qt::Key_Help, ++ 0x1000FF74, Qt::Key_Backtab, // hardcoded HP backtab ++ 0x1005FF10, Qt::Key_F11, // hardcoded Sun F36 (labeled F11) ++ 0x1005FF11, Qt::Key_F12, // hardcoded Sun F37 (labeled F12) ++ ++ // numeric and function keypad keys ++ ++ XK_KP_Space, Qt::Key_Space, ++ XK_KP_Tab, Qt::Key_Tab, ++ XK_KP_Enter, Qt::Key_Enter, ++ //XK_KP_F1, Qt::Key_F1, ++ //XK_KP_F2, Qt::Key_F2, ++ //XK_KP_F3, Qt::Key_F3, ++ //XK_KP_F4, Qt::Key_F4, ++ XK_KP_Home, Qt::Key_Home, ++ XK_KP_Left, Qt::Key_Left, ++ XK_KP_Up, Qt::Key_Up, ++ XK_KP_Right, Qt::Key_Right, ++ XK_KP_Down, Qt::Key_Down, ++ XK_KP_Prior, Qt::Key_PageUp, ++ XK_KP_Next, Qt::Key_PageDown, ++ XK_KP_End, Qt::Key_End, ++ XK_KP_Begin, Qt::Key_Clear, ++ XK_KP_Insert, Qt::Key_Insert, ++ XK_KP_Delete, Qt::Key_Delete, ++ XK_KP_Equal, Qt::Key_Equal, ++ XK_KP_Multiply, Qt::Key_Asterisk, ++ XK_KP_Add, Qt::Key_Plus, ++ XK_KP_Separator, Qt::Key_Comma, ++ XK_KP_Subtract, Qt::Key_Minus, ++ XK_KP_Decimal, Qt::Key_Period, ++ XK_KP_Divide, Qt::Key_Slash, ++ ++ // International input method support keys ++ ++ // International & multi-key character composition ++ XK_ISO_Level3_Shift, Qt::Key_AltGr, ++ XK_Multi_key, Qt::Key_Multi_key, ++ XK_Codeinput, Qt::Key_Codeinput, ++ XK_SingleCandidate, Qt::Key_SingleCandidate, ++ XK_MultipleCandidate, Qt::Key_MultipleCandidate, ++ XK_PreviousCandidate, Qt::Key_PreviousCandidate, ++ ++ // Misc Functions ++ XK_Mode_switch, Qt::Key_Mode_switch, ++ XK_script_switch, Qt::Key_Mode_switch, ++ ++ // Japanese keyboard support ++ XK_Kanji, Qt::Key_Kanji, ++ XK_Muhenkan, Qt::Key_Muhenkan, ++ //XK_Henkan_Mode, Qt::Key_Henkan_Mode, ++ XK_Henkan_Mode, Qt::Key_Henkan, ++ XK_Henkan, Qt::Key_Henkan, ++ XK_Romaji, Qt::Key_Romaji, ++ XK_Hiragana, Qt::Key_Hiragana, ++ XK_Katakana, Qt::Key_Katakana, ++ XK_Hiragana_Katakana, Qt::Key_Hiragana_Katakana, ++ XK_Zenkaku, Qt::Key_Zenkaku, ++ XK_Hankaku, Qt::Key_Hankaku, ++ XK_Zenkaku_Hankaku, Qt::Key_Zenkaku_Hankaku, ++ XK_Touroku, Qt::Key_Touroku, ++ XK_Massyo, Qt::Key_Massyo, ++ XK_Kana_Lock, Qt::Key_Kana_Lock, ++ XK_Kana_Shift, Qt::Key_Kana_Shift, ++ XK_Eisu_Shift, Qt::Key_Eisu_Shift, ++ XK_Eisu_toggle, Qt::Key_Eisu_toggle, ++ //XK_Kanji_Bangou, Qt::Key_Kanji_Bangou, ++ //XK_Zen_Koho, Qt::Key_Zen_Koho, ++ //XK_Mae_Koho, Qt::Key_Mae_Koho, ++ XK_Kanji_Bangou, Qt::Key_Codeinput, ++ XK_Zen_Koho, Qt::Key_MultipleCandidate, ++ XK_Mae_Koho, Qt::Key_PreviousCandidate, ++ ++#ifdef XK_KOREAN ++ // Korean keyboard support ++ XK_Hangul, Qt::Key_Hangul, ++ XK_Hangul_Start, Qt::Key_Hangul_Start, ++ XK_Hangul_End, Qt::Key_Hangul_End, ++ XK_Hangul_Hanja, Qt::Key_Hangul_Hanja, ++ XK_Hangul_Jamo, Qt::Key_Hangul_Jamo, ++ XK_Hangul_Romaja, Qt::Key_Hangul_Romaja, ++ //XK_Hangul_Codeinput, Qt::Key_Hangul_Codeinput, ++ XK_Hangul_Codeinput, Qt::Key_Codeinput, ++ XK_Hangul_Jeonja, Qt::Key_Hangul_Jeonja, ++ XK_Hangul_Banja, Qt::Key_Hangul_Banja, ++ XK_Hangul_PreHanja, Qt::Key_Hangul_PreHanja, ++ XK_Hangul_PostHanja, Qt::Key_Hangul_PostHanja, ++ //XK_Hangul_SingleCandidate,Qt::Key_Hangul_SingleCandidate, ++ //XK_Hangul_MultipleCandidate,Qt::Key_Hangul_MultipleCandidate, ++ //XK_Hangul_PreviousCandidate,Qt::Key_Hangul_PreviousCandidate, ++ XK_Hangul_SingleCandidate, Qt::Key_SingleCandidate, ++ XK_Hangul_MultipleCandidate,Qt::Key_MultipleCandidate, ++ XK_Hangul_PreviousCandidate,Qt::Key_PreviousCandidate, ++ XK_Hangul_Special, Qt::Key_Hangul_Special, ++ //XK_Hangul_switch, Qt::Key_Hangul_switch, ++ XK_Hangul_switch, Qt::Key_Mode_switch, ++#endif // XK_KOREAN ++ ++ // dead keys ++ XK_dead_grave, Qt::Key_Dead_Grave, ++ XK_dead_acute, Qt::Key_Dead_Acute, ++ XK_dead_circumflex, Qt::Key_Dead_Circumflex, ++ XK_dead_tilde, Qt::Key_Dead_Tilde, ++ XK_dead_macron, Qt::Key_Dead_Macron, ++ XK_dead_breve, Qt::Key_Dead_Breve, ++ XK_dead_abovedot, Qt::Key_Dead_Abovedot, ++ XK_dead_diaeresis, Qt::Key_Dead_Diaeresis, ++ XK_dead_abovering, Qt::Key_Dead_Abovering, ++ XK_dead_doubleacute, Qt::Key_Dead_Doubleacute, ++ XK_dead_caron, Qt::Key_Dead_Caron, ++ XK_dead_cedilla, Qt::Key_Dead_Cedilla, ++ XK_dead_ogonek, Qt::Key_Dead_Ogonek, ++ XK_dead_iota, Qt::Key_Dead_Iota, ++ XK_dead_voiced_sound, Qt::Key_Dead_Voiced_Sound, ++ XK_dead_semivoiced_sound, Qt::Key_Dead_Semivoiced_Sound, ++ XK_dead_belowdot, Qt::Key_Dead_Belowdot, ++ XK_dead_hook, Qt::Key_Dead_Hook, ++ XK_dead_horn, Qt::Key_Dead_Horn, ++ ++ // Special multimedia keys ++ // currently only tested with MS internet keyboard ++ ++ // browsing keys ++ XF86XK_Back, Qt::Key_Back, ++ XF86XK_Forward, Qt::Key_Forward, ++ XF86XK_Stop, Qt::Key_Stop, ++ XF86XK_Refresh, Qt::Key_Refresh, ++ XF86XK_Favorites, Qt::Key_Favorites, ++ XF86XK_AudioMedia, Qt::Key_LaunchMedia, ++ XF86XK_OpenURL, Qt::Key_OpenUrl, ++ XF86XK_HomePage, Qt::Key_HomePage, ++ XF86XK_Search, Qt::Key_Search, ++ ++ // media keys ++ XF86XK_AudioLowerVolume, Qt::Key_VolumeDown, ++ XF86XK_AudioMute, Qt::Key_VolumeMute, ++ XF86XK_AudioRaiseVolume, Qt::Key_VolumeUp, ++ XF86XK_AudioPlay, Qt::Key_MediaPlay, ++ XF86XK_AudioStop, Qt::Key_MediaStop, ++ XF86XK_AudioPrev, Qt::Key_MediaPrevious, ++ XF86XK_AudioNext, Qt::Key_MediaNext, ++ XF86XK_AudioRecord, Qt::Key_MediaRecord, ++ ++ // launch keys ++ XF86XK_Mail, Qt::Key_LaunchMail, ++ XF86XK_MyComputer, Qt::Key_Launch0, ++ XF86XK_Calculator, Qt::Key_Launch1, ++ XF86XK_Standby, Qt::Key_Standby, ++ ++ XF86XK_Launch0, Qt::Key_Launch2, ++ XF86XK_Launch1, Qt::Key_Launch3, ++ XF86XK_Launch2, Qt::Key_Launch4, ++ XF86XK_Launch3, Qt::Key_Launch5, ++ XF86XK_Launch4, Qt::Key_Launch6, ++ XF86XK_Launch5, Qt::Key_Launch7, ++ XF86XK_Launch6, Qt::Key_Launch8, ++ XF86XK_Launch7, Qt::Key_Launch9, ++ XF86XK_Launch8, Qt::Key_LaunchA, ++ XF86XK_Launch9, Qt::Key_LaunchB, ++ XF86XK_LaunchA, Qt::Key_LaunchC, ++ XF86XK_LaunchB, Qt::Key_LaunchD, ++ XF86XK_LaunchC, Qt::Key_LaunchE, ++ XF86XK_LaunchD, Qt::Key_LaunchF, ++ ++ // Qtopia keys ++ QTOPIAXK_Select, Qt::Key_Select, ++ QTOPIAXK_Yes, Qt::Key_Yes, ++ QTOPIAXK_No, Qt::Key_No, ++ QTOPIAXK_Cancel, Qt::Key_Cancel, ++ QTOPIAXK_Printer, Qt::Key_Printer, ++ QTOPIAXK_Execute, Qt::Key_Execute, ++ QTOPIAXK_Sleep, Qt::Key_Sleep, ++ QTOPIAXK_Play, Qt::Key_Play, ++ QTOPIAXK_Zoom, Qt::Key_Zoom, ++ QTOPIAXK_Context1, Qt::Key_Context1, ++ QTOPIAXK_Context2, Qt::Key_Context2, ++ QTOPIAXK_Context3, Qt::Key_Context3, ++ QTOPIAXK_Context4, Qt::Key_Context4, ++ QTOPIAXK_Call, Qt::Key_Call, ++ QTOPIAXK_Hangup, Qt::Key_Hangup, ++ QTOPIAXK_Flip, Qt::Key_Flip, ++ ++ 0, 0 ++}; ++ ++#endif // KEYMAPPER_X11_H +diff -rupN libqxt.old/src/gui/qxtglobalshortcut_x11.cpp libqxt/src/gui/qxtglobalshortcut_x11.cpp +--- libqxt.old/src/gui/qxtglobalshortcut_x11.cpp 2010-07-18 15:32:53.000000000 -0400 ++++ libqxt/src/gui/qxtglobalshortcut_x11.cpp 2010-07-18 15:41:25.000000000 -0400 +@@ -26,6 +26,8 @@ + #include + #include + ++#include "keymapper_x11.h" ++ + static int (*original_x_errhandler)(Display* display, XErrorEvent* event); + + static int qxt_x_errhandler(Display* display, XErrorEvent *event) +@@ -83,8 +85,25 @@ quint32 QxtGlobalShortcutPrivate::native + + quint32 QxtGlobalShortcutPrivate::nativeKeycode(Qt::Key key) + { ++ // (davidsansome) Try the table from QKeyMapper first - this seems to be ++ // the only way to get Keysyms for the media keys. ++ unsigned int keysym = 0; ++ int i = 0; ++ while (KeyTbl[i]) { ++ if (KeyTbl[i+1] == static_cast(key)) { ++ keysym = KeyTbl[i]; ++ break; ++ } ++ i += 2; ++ } ++ ++ // If that didn't work then fall back on XStringToKeysym ++ if (!keysym) { ++ keysym = XStringToKeysym(QKeySequence(key).toString().toLatin1().data()); ++ } ++ + Display* display = QX11Info::display(); +- return XKeysymToKeycode(display, XStringToKeysym(QKeySequence(key).toString().toLatin1().data())); ++ return XKeysymToKeycode(display, keysym); + } + + bool QxtGlobalShortcutPrivate::registerShortcut(quint32 nativeKey, quint32 nativeMods) From a99e9668fe93e061cf8705fa6c11bb66b6b97cbd Mon Sep 17 00:00:00 2001 From: Sander Boom Date: Fri, 13 May 2016 11:34:23 +0200 Subject: [PATCH 039/971] Updated to build 3114 --- .SRCINFO | 12 ++++++------ PKGBUILD | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index d156ef2..ddb6b28 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ # Generated by mksrcinfo v8 -# Tue Feb 9 09:06:14 UTC 2016 +# Fri May 13 09:33:46 UTC 2016 pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 3.3103 + pkgver = 3.3114 pkgrel = 1 url = http://www.sublimetext.com/3 install = sublime-text-dev.install @@ -16,10 +16,10 @@ pkgbase = sublime-text-dev conflicts = sublime-text-nightly source = sublime_text_3.desktop sha256sums = f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866 - source_i686 = https://download.sublimetext.com/sublime_text_3_build_3103_x32.tar.bz2 - sha256sums_i686 = 34380ea97e0363fee908ea780754f8a7670a0054f8d6ef72ba1efa663fb32de2 - source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3103_x64.tar.bz2 - sha256sums_x86_64 = 9d78d34dfc5a74339476d02313f4c0659afe4dc2ee01998b2e8a1b9def5813f5 + source_i686 = https://download.sublimetext.com/sublime_text_3_build_3114_x32.tar.bz2 + sha256sums_i686 = 0d78a377c2d55c336c95de1b62cc713861c467e83f6d6844a7b0701acde92e77 + source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3114_x64.tar.bz2 + sha256sums_x86_64 = c6409bfc0841a02dfa3ba194015c7c87ea41ade9d61407d421ca947fe713b15a pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 5346969..082de87 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=3.3103 +pkgver=3.3114 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('i686' 'x86_64') @@ -19,8 +19,8 @@ source_i686=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_ source_x86_64=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2") sha256sums=('f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866') -sha256sums_i686=('34380ea97e0363fee908ea780754f8a7670a0054f8d6ef72ba1efa663fb32de2') -sha256sums_x86_64=('9d78d34dfc5a74339476d02313f4c0659afe4dc2ee01998b2e8a1b9def5813f5') +sha256sums_i686=('0d78a377c2d55c336c95de1b62cc713861c467e83f6d6844a7b0701acde92e77') +sha256sums_x86_64=('c6409bfc0841a02dfa3ba194015c7c87ea41ade9d61407d421ca947fe713b15a') package() { cd "${srcdir}" From cf973255beedb68d6c42e48240a95c7e9b263a01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 22 Jun 2016 19:41:42 +0200 Subject: [PATCH 040/971] Package clean-up --- .SRCINFO | 11 +++++++---- PKGBUILD | 21 +++++++++++---------- plymouth-theme-arch-logo.install | 12 ++++++++++++ 3 files changed, 30 insertions(+), 14 deletions(-) create mode 100644 plymouth-theme-arch-logo.install diff --git a/.SRCINFO b/.SRCINFO index c91c2e2..83b905c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,12 +1,15 @@ +# Generated by mksrcinfo v8 +# Wed Jun 22 17:41:42 UTC 2016 pkgbase = plymouth-theme-arch-logo - pkgdesc = Arch-logo is a remake of ubuntu-logo plymouth + pkgdesc = A remake of the ubuntu-logo Plymouth theme, based on the debian-logo theme, but featuring the Arch Linux logo. pkgver = 0.1 - pkgrel = 3 - url = http://gnome-look.org/content/show.php/Arch-logo+plymouth?content=141697 + pkgrel = 4 + url = http://arch-stuff.org/content/show.php/Arch-logo+plymouth?content=141696 + install = plymouth-theme-arch-logo.install arch = any license = GPL depends = plymouth - source = http://gnome-look.org/CONTENT/content-files/141697-Arch-logo-plymouth.tar.gz + source = http://arch-stuff.org/CONTENT/content-files/141696-Arch-logo-plymouth.tar.gz sha256sums = 553ab3efd51abefc50c10b521c24183df9ef879d080a75c54fb1c1512fbc94e6 pkgname = plymouth-theme-arch-logo diff --git a/PKGBUILD b/PKGBUILD index 910fa19..75746ed 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,21 +1,22 @@ -# Maintainer: Guillermo Garcia +# Maintainer: Manuel Hüsers # Contributor: Manuel Hüsers # Contributor: Guillermo Garcia -pkgname="plymouth-theme-arch-logo" +pkgname=plymouth-theme-arch-logo pkgver=0.1 -pkgrel=3 -url="http://gnome-look.org/content/show.php/Arch-logo+plymouth?content=141697" -pkgdesc="Arch-logo is a remake of ubuntu-logo plymouth" +pkgrel=4 +pkgdesc='A remake of the ubuntu-logo Plymouth theme, based on the debian-logo theme, but featuring the Arch Linux logo.' arch=('any') +url='http://arch-stuff.org/content/show.php/Arch-logo+plymouth?content=141696' license=('GPL') depends=('plymouth') -source=("http://gnome-look.org/CONTENT/content-files/141697-Arch-logo-plymouth.tar.gz") +install="${pkgname}.install" +source=('http://arch-stuff.org/CONTENT/content-files/141696-Arch-logo-plymouth.tar.gz') sha256sums=('553ab3efd51abefc50c10b521c24183df9ef879d080a75c54fb1c1512fbc94e6') package() { - cd $srcdir/arch-logo - mkdir -p $pkgdir/usr/share/plymouth/themes/arch-logo - install -Dm644 * $pkgdir/usr/share/plymouth/themes/arch-logo - install -Dm644 ../arch-logo.png $pkgdir/usr/share/plymouth/themes/arch-logo.png + cd "${srcdir}/arch-logo" + rm -fv *~ + mkdir -p "${pkgdir}/usr/share/plymouth/themes/arch-logo" + install -Dvm644 * "${pkgdir}/usr/share/plymouth/themes/arch-logo" } diff --git a/plymouth-theme-arch-logo.install b/plymouth-theme-arch-logo.install new file mode 100644 index 0000000..3809d4a --- /dev/null +++ b/plymouth-theme-arch-logo.install @@ -0,0 +1,12 @@ +post_install() { + cat < To activate the theme, run: +==> plymouth-set-default-theme -R arch-logo + +EOF +} + +post_upgrade() { + post_install $1 +} From 5a9b3b7e3b0778c3d9c05983d10e853876dc13f0 Mon Sep 17 00:00:00 2001 From: Iwan Timmer Date: Wed, 13 Jul 2016 21:39:18 +0200 Subject: [PATCH 041/971] Add dbus-glib dependency --- .SRCINFO | 3 ++- PKGBUILD | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 2999656..de3f72a 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,5 +1,5 @@ # Generated by mksrcinfo v8 -# Tue Jan 26 12:06:30 UTC 2016 +# Wed Jul 13 19:39:08 UTC 2016 pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system pkgver = 2.6.0 @@ -16,6 +16,7 @@ pkgbase = tuned depends = python2-decorator depends = python2-dbus depends = python2-gobject + depends = dbus-glib optdepends = virt-what optdepends = systemtap provides = tuned diff --git a/PKGBUILD b/PKGBUILD index 4d707ba..78c32e4 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -9,7 +9,7 @@ pkgdesc='Daemon that performs monitoring and adaptive configuration of devices i arch=('any') url='https://fedorahosted.org/tuned/' license=('GPL') -depends=('ethtool' 'python2-configobj' 'python2-pyudev' 'python2-gobject2' 'python2-decorator' 'python2-dbus' 'python2-gobject') +depends=('ethtool' 'python2-configobj' 'python2-pyudev' 'python2-gobject2' 'python2-decorator' 'python2-dbus' 'python2-gobject' 'dbus-glib') optdepends=('virt-what' 'systemtap') makedepends=('git') provides=('tuned') From 4195cd16cba8f272bdb47f4928b5fc215c562f5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 12 Aug 2016 16:05:02 +0200 Subject: [PATCH 042/971] Version bump New versioning scheme that is more suitable for this package --- .SRCINFO | 8 +++++--- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 12d4340..4ab27dc 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,10 @@ +# Generated by mksrcinfo v8 +# Fri Aug 12 14:05:02 UTC 2016 pkgbase = rc-local pkgdesc = Support for legacy rc.local scripts - pkgver = 1.1 - pkgrel = 2 - url = https://aur.archlinux.org/packages/rc-local + pkgver = 2 + pkgrel = 1 + url = https://aur.archlinux.org/packages/rc-local/ install = rc-local.install arch = any license = LGPL2.1 diff --git a/PKGBUILD b/PKGBUILD index ed69244..a926956 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,10 +3,10 @@ # Contributor: $pooky Hunter pkgname=rc-local -pkgver=1.1 -pkgrel=2 +pkgver=2 +pkgrel=1 pkgdesc='Support for legacy rc.local scripts' -url="https://aur.archlinux.org/packages/${pkgname}" +url="https://aur.archlinux.org/packages/${pkgname}/" arch=('any') license=('LGPL2.1') install="${pkgname}.install" From 32e9da8a006a5337c2a4a7984b16e9209e4f7bae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 25 Aug 2016 22:34:59 +0200 Subject: [PATCH 043/971] Do not automatically enable the service --- .SRCINFO | 4 ++-- PKGBUILD | 2 +- rc-local.install | 20 ++++---------------- 3 files changed, 7 insertions(+), 19 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 4ab27dc..9fd2b07 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ # Generated by mksrcinfo v8 -# Fri Aug 12 14:05:02 UTC 2016 +# Thu Aug 25 20:34:59 UTC 2016 pkgbase = rc-local pkgdesc = Support for legacy rc.local scripts - pkgver = 2 + pkgver = 3 pkgrel = 1 url = https://aur.archlinux.org/packages/rc-local/ install = rc-local.install diff --git a/PKGBUILD b/PKGBUILD index a926956..84378b6 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: $pooky Hunter pkgname=rc-local -pkgver=2 +pkgver=3 pkgrel=1 pkgdesc='Support for legacy rc.local scripts' url="https://aur.archlinux.org/packages/${pkgname}/" diff --git a/rc-local.install b/rc-local.install index 2ed5dec..19b1b46 100644 --- a/rc-local.install +++ b/rc-local.install @@ -1,20 +1,8 @@ -_update() { - systemctl daemon-reload -} - post_install() { - _update - systemctl enable rc-local.service -} + cat < Please activate the rc-local service to execute /etc/rc.local on boot. +==> Run as root: systemctl enable rc-local.service -pre_remove() { - systemctl disable rc-local.service +EOF } - -post_remove() { - _update -} \ No newline at end of file From 05fee6e433e113036d76a869d7dc6934f2b617b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 25 Aug 2016 22:41:45 +0200 Subject: [PATCH 044/971] Small change in install file --- .SRCINFO | 2 +- plymouth-theme-arch-logo.install | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 83b905c..3076408 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,5 +1,5 @@ # Generated by mksrcinfo v8 -# Wed Jun 22 17:41:42 UTC 2016 +# Thu Aug 25 20:41:45 UTC 2016 pkgbase = plymouth-theme-arch-logo pkgdesc = A remake of the ubuntu-logo Plymouth theme, based on the debian-logo theme, but featuring the Arch Linux logo. pkgver = 0.1 diff --git a/plymouth-theme-arch-logo.install b/plymouth-theme-arch-logo.install index 3809d4a..4d65b5f 100644 --- a/plymouth-theme-arch-logo.install +++ b/plymouth-theme-arch-logo.install @@ -1,7 +1,7 @@ post_install() { cat < To activate the theme, run: +==> To activate the theme, run as root: ==> plymouth-set-default-theme -R arch-logo EOF From 04ff4a7d5ff23c3962a5fec5b7a11c5702a9c654 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 15 Sep 2016 12:40:22 +0200 Subject: [PATCH 045/971] New release Bumped release number because of new URL --- .SRCINFO | 10 +++++----- PKGBUILD | 16 ++++++++++++---- 2 files changed, 17 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 3076408..770de46 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,16 +1,16 @@ # Generated by mksrcinfo v8 -# Thu Aug 25 20:41:45 UTC 2016 +# Thu Sep 15 10:40:22 UTC 2016 pkgbase = plymouth-theme-arch-logo pkgdesc = A remake of the ubuntu-logo Plymouth theme, based on the debian-logo theme, but featuring the Arch Linux logo. pkgver = 0.1 - pkgrel = 4 - url = http://arch-stuff.org/content/show.php/Arch-logo+plymouth?content=141696 + pkgrel = 5 + url = http://karlinux.deviantart.com/art/Arch-Logo-Plymouth-Theme-209553250 install = plymouth-theme-arch-logo.install arch = any license = GPL depends = plymouth - source = http://arch-stuff.org/CONTENT/content-files/141696-Arch-logo-plymouth.tar.gz - sha256sums = 553ab3efd51abefc50c10b521c24183df9ef879d080a75c54fb1c1512fbc94e6 + source = http://orig01.deviantart.net/455a/f/2011/140/5/0/arch_logo_plymouth_theme_by_karlinux-d3grgbm.zip + sha256sums = 85081ee41d773ca61281ad0bec9209f7b1f79bf5a21846bf46030d298ef3b65d pkgname = plymouth-theme-arch-logo diff --git a/PKGBUILD b/PKGBUILD index 75746ed..0f8e229 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,15 +4,23 @@ pkgname=plymouth-theme-arch-logo pkgver=0.1 -pkgrel=4 +pkgrel=5 pkgdesc='A remake of the ubuntu-logo Plymouth theme, based on the debian-logo theme, but featuring the Arch Linux logo.' arch=('any') -url='http://arch-stuff.org/content/show.php/Arch-logo+plymouth?content=141696' +#url='http://arch-stuff.org/content/show.php/Arch-logo+plymouth?content=141696' +url='http://karlinux.deviantart.com/art/Arch-Logo-Plymouth-Theme-209553250' license=('GPL') depends=('plymouth') install="${pkgname}.install" -source=('http://arch-stuff.org/CONTENT/content-files/141696-Arch-logo-plymouth.tar.gz') -sha256sums=('553ab3efd51abefc50c10b521c24183df9ef879d080a75c54fb1c1512fbc94e6') +source=( + # Mirrors + #'http://arch-stuff.org/CONTENT/content-files/141696-Arch-logo-plymouth.tar.gz' + 'http://orig01.deviantart.net/455a/f/2011/140/5/0/arch_logo_plymouth_theme_by_karlinux-d3grgbm.zip' +) +sha256sums=( + #'553ab3efd51abefc50c10b521c24183df9ef879d080a75c54fb1c1512fbc94e6' + '85081ee41d773ca61281ad0bec9209f7b1f79bf5a21846bf46030d298ef3b65d' +) package() { cd "${srcdir}/arch-logo" From d225018d7041edd71ac0e300bbde8e4ade2042fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 15 Sep 2016 20:31:27 +0200 Subject: [PATCH 046/971] New release Changed versioning scheme Added mirrors --- .SRCINFO | 6 +++--- PKGBUILD | 7 +++++-- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 770de46..6ed965b 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,9 +1,9 @@ # Generated by mksrcinfo v8 -# Thu Sep 15 10:40:22 UTC 2016 +# Thu Sep 15 18:31:27 UTC 2016 pkgbase = plymouth-theme-arch-logo pkgdesc = A remake of the ubuntu-logo Plymouth theme, based on the debian-logo theme, but featuring the Arch Linux logo. - pkgver = 0.1 - pkgrel = 5 + pkgver = 1 + pkgrel = 1 url = http://karlinux.deviantart.com/art/Arch-Logo-Plymouth-Theme-209553250 install = plymouth-theme-arch-logo.install arch = any diff --git a/PKGBUILD b/PKGBUILD index 0f8e229..f511f09 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,10 +3,12 @@ # Contributor: Guillermo Garcia pkgname=plymouth-theme-arch-logo -pkgver=0.1 -pkgrel=5 +pkgver=1 +pkgrel=1 pkgdesc='A remake of the ubuntu-logo Plymouth theme, based on the debian-logo theme, but featuring the Arch Linux logo.' arch=('any') +# Alternative websites +#url='https://www.gnome-look.org/content/show.php/Arch-logo+plymouth?content=141697' #url='http://arch-stuff.org/content/show.php/Arch-logo+plymouth?content=141696' url='http://karlinux.deviantart.com/art/Arch-Logo-Plymouth-Theme-209553250' license=('GPL') @@ -14,6 +16,7 @@ depends=('plymouth') install="${pkgname}.install" source=( # Mirrors + #'https://dl.opendesktop.org/api/files/download/id/1460753768/141697-Arch-logo-plymouth.tar.gz' #'http://arch-stuff.org/CONTENT/content-files/141696-Arch-logo-plymouth.tar.gz' 'http://orig01.deviantart.net/455a/f/2011/140/5/0/arch_logo_plymouth_theme_by_karlinux-d3grgbm.zip' ) From 4da724029708570e88acf0d954a4ab56c796f92e Mon Sep 17 00:00:00 2001 From: Sander Boom Date: Thu, 22 Sep 2016 11:49:34 +0200 Subject: [PATCH 047/971] Updated to build 3124 --- .SRCINFO | 12 ++++++------ PKGBUILD | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index ddb6b28..043bcc1 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ # Generated by mksrcinfo v8 -# Fri May 13 09:33:46 UTC 2016 +# Thu Sep 22 09:48:46 UTC 2016 pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 3.3114 + pkgver = 3.3124 pkgrel = 1 url = http://www.sublimetext.com/3 install = sublime-text-dev.install @@ -16,10 +16,10 @@ pkgbase = sublime-text-dev conflicts = sublime-text-nightly source = sublime_text_3.desktop sha256sums = f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866 - source_i686 = https://download.sublimetext.com/sublime_text_3_build_3114_x32.tar.bz2 - sha256sums_i686 = 0d78a377c2d55c336c95de1b62cc713861c467e83f6d6844a7b0701acde92e77 - source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3114_x64.tar.bz2 - sha256sums_x86_64 = c6409bfc0841a02dfa3ba194015c7c87ea41ade9d61407d421ca947fe713b15a + source_i686 = https://download.sublimetext.com/sublime_text_3_build_3124_x32.tar.bz2 + sha256sums_i686 = 25fdf648b200216d8fbbd38b52d32498b5a91dde63cb1536ca98eb2b5beb5046 + source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3124_x64.tar.bz2 + sha256sums_x86_64 = 8466c09660396b7e739e72db9d8a6527c321e5c196294871cf4d50073edb517b pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 082de87..59c5aed 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=3.3114 +pkgver=3.3124 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('i686' 'x86_64') @@ -19,8 +19,8 @@ source_i686=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_ source_x86_64=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2") sha256sums=('f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866') -sha256sums_i686=('0d78a377c2d55c336c95de1b62cc713861c467e83f6d6844a7b0701acde92e77') -sha256sums_x86_64=('c6409bfc0841a02dfa3ba194015c7c87ea41ade9d61407d421ca947fe713b15a') +sha256sums_i686=('25fdf648b200216d8fbbd38b52d32498b5a91dde63cb1536ca98eb2b5beb5046') +sha256sums_x86_64=('8466c09660396b7e739e72db9d8a6527c321e5c196294871cf4d50073edb517b') package() { cd "${srcdir}" From 50b84ec67f31372fd78259f32da6f60b80405dcd Mon Sep 17 00:00:00 2001 From: Sander Boom Date: Sat, 24 Sep 2016 14:23:13 +0200 Subject: [PATCH 048/971] Updated to build 3126 --- .SRCINFO | 12 ++++++------ PKGBUILD | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 043bcc1..c9a37ab 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ # Generated by mksrcinfo v8 -# Thu Sep 22 09:48:46 UTC 2016 +# Sat Sep 24 12:22:59 UTC 2016 pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 3.3124 + pkgver = 3.3126 pkgrel = 1 url = http://www.sublimetext.com/3 install = sublime-text-dev.install @@ -16,10 +16,10 @@ pkgbase = sublime-text-dev conflicts = sublime-text-nightly source = sublime_text_3.desktop sha256sums = f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866 - source_i686 = https://download.sublimetext.com/sublime_text_3_build_3124_x32.tar.bz2 - sha256sums_i686 = 25fdf648b200216d8fbbd38b52d32498b5a91dde63cb1536ca98eb2b5beb5046 - source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3124_x64.tar.bz2 - sha256sums_x86_64 = 8466c09660396b7e739e72db9d8a6527c321e5c196294871cf4d50073edb517b + source_i686 = https://download.sublimetext.com/sublime_text_3_build_3126_x32.tar.bz2 + sha256sums_i686 = 92ffefa470f0777897ed0dfb7c1635426105271da9b5affbe8c1e82039718e29 + source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3126_x64.tar.bz2 + sha256sums_x86_64 = 18db132e9a305fa3129014b608628e06f9442f48d09cfe933b3b1a84dd18727a pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 59c5aed..1c2bb15 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=3.3124 +pkgver=3.3126 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('i686' 'x86_64') @@ -19,8 +19,8 @@ source_i686=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_ source_x86_64=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2") sha256sums=('f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866') -sha256sums_i686=('25fdf648b200216d8fbbd38b52d32498b5a91dde63cb1536ca98eb2b5beb5046') -sha256sums_x86_64=('8466c09660396b7e739e72db9d8a6527c321e5c196294871cf4d50073edb517b') +sha256sums_i686=('92ffefa470f0777897ed0dfb7c1635426105271da9b5affbe8c1e82039718e29') +sha256sums_x86_64=('18db132e9a305fa3129014b608628e06f9442f48d09cfe933b3b1a84dd18727a') package() { cd "${srcdir}" From a384398abba4b64db8ab9d829f8be4405ca6ab72 Mon Sep 17 00:00:00 2001 From: graysky Date: Tue, 25 Oct 2016 07:30:19 -0400 Subject: [PATCH 049/971] Update to 2017.0.010-1 --- .SRCINFO | 8 ++++---- PKGBUILD | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index e0945d4..dcfa2e5 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,16 +1,16 @@ # Generated by mksrcinfo v8 -# Thu May 5 19:17:46 UTC 2016 +# Tue Oct 25 11:30:18 UTC 2016 pkgbase = linpack - pkgver = 11.3.3.011 + pkgver = 2017.0.010 pkgrel = 1 url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download arch = i686 arch = x86_64 license = custom - source = http://registrationcenter-download.intel.com/akdlm/irc_nas/9128/l_mklb_p_11.3.3.011.tgz + source = http://registrationcenter-download.intel.com/akdlm/irc_nas/9752/l_mklb_p_2017.0.010.tgz source = linpack.conf source = runme.template - sha256sums = d19c1614d0508f28439e4af2ff606de2ae078f19dc9ca7363e4192694d43813e + sha256sums = bbdb3f983818650d27b068cb0ba4b746f273405785d77109f79859db01165efb sha256sums = d7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254 sha256sums = 8bcd48bd97b3177590f15e922f8f7fb1ebfe6ea0608b4d63d8902ac2bd9b6a52 diff --git a/PKGBUILD b/PKGBUILD index 9f30b5d..f11df75 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,16 +1,16 @@ # Contributor: graysky pkgname=('linpack') -pkgver=11.3.3.011 -_math_kernel_lib=11.3.3 -_url=9128 +pkgver=2017.0.010 +_math_kernel_lib=2017 +_url=9752 pkgrel=1 arch=('i686' 'x86_64') license=('custom') url="http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download" source=("http://registrationcenter-download.intel.com/akdlm/irc_nas/$_url/l_mklb_p_$pkgver.tgz" 'linpack.conf' 'runme.template') -sha256sums=('d19c1614d0508f28439e4af2ff606de2ae078f19dc9ca7363e4192694d43813e' +sha256sums=('bbdb3f983818650d27b068cb0ba4b746f273405785d77109f79859db01165efb' 'd7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254' '8bcd48bd97b3177590f15e922f8f7fb1ebfe6ea0608b4d63d8902ac2bd9b6a52') @@ -30,6 +30,6 @@ package_linpack() { install -Dm755 linpack_runme_xeon$bit "$pkgdir/usr/bin/linpack_runme_xeon$bit" install -Dm644 linpack.conf "$pkgdir/usr/share/$pkgname/linpack.conf" - install -Dm644 "$_base/license.txt" "$pkgdir/usr/share/licenses/linpack/license.txt" + install -Dm644 "$_base/EULA.txt" "$pkgdir/usr/share/licenses/linpack/license.txt" install -Dm755 "$_test/xlinpack_xeon$bit" "$pkgdir/usr/bin/xlinpack_xeon$bit" } From 6d85585582455c332d7c33633010b5290a7a85bf Mon Sep 17 00:00:00 2001 From: graysky Date: Thu, 3 Nov 2016 15:23:04 -0400 Subject: [PATCH 050/971] Update to 2017.0.013-1 --- .SRCINFO | 8 ++++---- PKGBUILD | 5 ++--- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index dcfa2e5..7bfed25 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,16 +1,16 @@ # Generated by mksrcinfo v8 -# Tue Oct 25 11:30:18 UTC 2016 +# Thu Nov 3 19:23:04 UTC 2016 pkgbase = linpack - pkgver = 2017.0.010 + pkgver = 2017.0.013 pkgrel = 1 url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download arch = i686 arch = x86_64 license = custom - source = http://registrationcenter-download.intel.com/akdlm/irc_nas/9752/l_mklb_p_2017.0.010.tgz + source = http://registrationcenter-download.intel.com/akdlm/irc_nas/9752/l_mklb_p_2017.0.013.tgz source = linpack.conf source = runme.template - sha256sums = bbdb3f983818650d27b068cb0ba4b746f273405785d77109f79859db01165efb + sha256sums = 70f6531ca5bb3e1e9841cb179f2ce5874a2683ea21c5609209e7acf5c1d8d268 sha256sums = d7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254 sha256sums = 8bcd48bd97b3177590f15e922f8f7fb1ebfe6ea0608b4d63d8902ac2bd9b6a52 diff --git a/PKGBUILD b/PKGBUILD index f11df75..246ea77 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,6 @@ # Contributor: graysky - pkgname=('linpack') -pkgver=2017.0.010 +pkgver=2017.0.013 _math_kernel_lib=2017 _url=9752 pkgrel=1 @@ -10,7 +9,7 @@ license=('custom') url="http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download" source=("http://registrationcenter-download.intel.com/akdlm/irc_nas/$_url/l_mklb_p_$pkgver.tgz" 'linpack.conf' 'runme.template') -sha256sums=('bbdb3f983818650d27b068cb0ba4b746f273405785d77109f79859db01165efb' +sha256sums=('70f6531ca5bb3e1e9841cb179f2ce5874a2683ea21c5609209e7acf5c1d8d268' 'd7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254' '8bcd48bd97b3177590f15e922f8f7fb1ebfe6ea0608b4d63d8902ac2bd9b6a52') From f6f071f95e116e5940bec9268841a13501e09a57 Mon Sep 17 00:00:00 2001 From: graysky Date: Fri, 4 Nov 2016 15:19:32 -0400 Subject: [PATCH 051/971] Update to 2017.1.013-2 --- .SRCINFO | 12 +++++++----- PKGBUILD | 8 +++++--- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 7bfed25..7948791 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,16 +1,18 @@ # Generated by mksrcinfo v8 -# Thu Nov 3 19:23:04 UTC 2016 +# Fri Nov 4 19:19:32 UTC 2016 pkgbase = linpack - pkgver = 2017.0.013 - pkgrel = 1 + pkgver = 2017.1.013 + pkgrel = 2 url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download arch = i686 arch = x86_64 license = custom - source = http://registrationcenter-download.intel.com/akdlm/irc_nas/9752/l_mklb_p_2017.0.013.tgz + source = http://registrationcenter-download.intel.com/akdlm/irc_nas/9752/l_mklb_p_2017.1.013.tgz + source = http://registrationcenter-download.intel.com/akdlm/irc_nas/9752/l_mklb_p_2017.1.013.tgz source = linpack.conf source = runme.template - sha256sums = 70f6531ca5bb3e1e9841cb179f2ce5874a2683ea21c5609209e7acf5c1d8d268 + sha256sums = 95fe30c52d50d7c5a81b90e08ecff6e05498d728bba129817abdd1431ae13b40 + sha256sums = 95fe30c52d50d7c5a81b90e08ecff6e05498d728bba129817abdd1431ae13b40 sha256sums = d7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254 sha256sums = 8bcd48bd97b3177590f15e922f8f7fb1ebfe6ea0608b4d63d8902ac2bd9b6a52 diff --git a/PKGBUILD b/PKGBUILD index 246ea77..956d44c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,15 +1,17 @@ # Contributor: graysky pkgname=('linpack') -pkgver=2017.0.013 +pkgver=2017.1.013 _math_kernel_lib=2017 _url=9752 -pkgrel=1 +pkgrel=2 arch=('i686' 'x86_64') license=('custom') url="http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download" source=("http://registrationcenter-download.intel.com/akdlm/irc_nas/$_url/l_mklb_p_$pkgver.tgz" + http://registrationcenter-download.intel.com/akdlm/irc_nas/9752/l_mklb_p_2017.1.013.tgz 'linpack.conf' 'runme.template') -sha256sums=('70f6531ca5bb3e1e9841cb179f2ce5874a2683ea21c5609209e7acf5c1d8d268' +sha256sums=('95fe30c52d50d7c5a81b90e08ecff6e05498d728bba129817abdd1431ae13b40' + '95fe30c52d50d7c5a81b90e08ecff6e05498d728bba129817abdd1431ae13b40' 'd7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254' '8bcd48bd97b3177590f15e922f8f7fb1ebfe6ea0608b4d63d8902ac2bd9b6a52') From 50d15a59a5f2ad547952999ef909ea744c3903ff Mon Sep 17 00:00:00 2001 From: Ivan Lyapunov Date: Mon, 16 Jan 2017 09:23:11 +0300 Subject: [PATCH 052/971] deps updated --- .SRCINFO | 6 +++--- PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index d5fc81f..fc1607c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,9 +1,9 @@ # Generated by mksrcinfo v8 -# Sat Apr 2 09:47:29 UTC 2016 +# Mon Jan 16 06:22:48 UTC 2017 pkgbase = systemtap pkgdesc = SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system. pkgver = 3.0 - pkgrel = 2 + pkgrel = 3 url = http://sourceware.org/systemtap/ arch = i686 arch = x86_64 @@ -14,10 +14,10 @@ pkgbase = systemtap depends = elfutils depends = nss depends = python2 + depends = texlive-fontsextra depends = texlive-latexextra depends = latex2html optdepends = sqlite3 - optdepends = linux-fedora source = http://sourceware.org/systemtap/ftp/releases/systemtap-3.0.tar.gz sha1sums = 5ef3a2d9945b0f6bae0061e33811e25e5138f5b7 diff --git a/PKGBUILD b/PKGBUILD index cd13927..89da25a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,13 +1,13 @@ pkgname=systemtap pkgver=3.0 -pkgrel=2 +pkgrel=3 pkgdesc="SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system." url="http://sourceware.org/systemtap/" arch=('i686' 'x86_64' 'armv7h' 'armv6h') license=('GPL') -depends=('elfutils' 'nss' 'python2' 'texlive-latexextra' 'latex2html') +depends=('elfutils' 'nss' 'python2' 'texlive-fontsextra' 'texlive-latexextra' 'latex2html') makedepends=('gcc') -optdepends=('sqlite3' 'linux-fedora') +optdepends=('sqlite3') source=(http://sourceware.org/systemtap/ftp/releases/$pkgname-$pkgver.tar.gz) sha1sums=('5ef3a2d9945b0f6bae0061e33811e25e5138f5b7') From cab411550f57f2d1e8f7ed0aead4ceb90852d79a Mon Sep 17 00:00:00 2001 From: Iwan Timmer Date: Tue, 24 Jan 2017 11:30:00 +0100 Subject: [PATCH 053/971] Update to version 2.7.1 --- .SRCINFO | 8 ++++---- PKGBUILD | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index de3f72a..74e0a90 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ # Generated by mksrcinfo v8 -# Wed Jul 13 19:39:08 UTC 2016 +# Tue Jan 24 10:29:55 UTC 2017 pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = 2.6.0 + pkgver = 2.7.1 pkgrel = 1 url = https://fedorahosted.org/tuned/ install = tuned.install @@ -21,8 +21,8 @@ pkgbase = tuned optdepends = systemtap provides = tuned backup = etc/tuned/active_profile - source = https://fedorahosted.org/releases/t/u/tuned/tuned-2.6.0.tar.bz2 - sha256sums = 945c785b8020960d2665b570b3168c366e6b82399801952aea54b4d178dac876 + source = https://fedorahosted.org/releases/t/u/tuned/tuned-2.7.1.tar.bz2 + sha256sums = 03333eda9f3744ec214b1c20d0f79528a6438dafd5c79ff459b411414491802d pkgname = tuned diff --git a/PKGBUILD b/PKGBUILD index 78c32e4..a01fca9 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: Tom pkgname=tuned -pkgver=2.6.0 +pkgver=2.7.1 pkgrel=1 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') @@ -16,7 +16,7 @@ provides=('tuned') backup=('etc/tuned/active_profile') install="${pkgname}.install" source=("https://fedorahosted.org/releases/t/u/${pkgname}/${pkgname}-${pkgver}.tar.bz2") -sha256sums=('945c785b8020960d2665b570b3168c366e6b82399801952aea54b4d178dac876') +sha256sums=('03333eda9f3744ec214b1c20d0f79528a6438dafd5c79ff459b411414491802d') package() { cd ${pkgname}-${pkgver} From 504a01b4e8e872446d74469cca88f9fbf38e199e Mon Sep 17 00:00:00 2001 From: Ivan Lyapunov Date: Sat, 18 Feb 2017 15:51:28 +0300 Subject: [PATCH 054/971] version 3.1 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index fc1607c..5d88835 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,9 +1,9 @@ # Generated by mksrcinfo v8 -# Mon Jan 16 06:22:48 UTC 2017 +# Sat Feb 18 12:51:09 UTC 2017 pkgbase = systemtap pkgdesc = SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system. - pkgver = 3.0 - pkgrel = 3 + pkgver = 3.1 + pkgrel = 1 url = http://sourceware.org/systemtap/ arch = i686 arch = x86_64 @@ -18,8 +18,8 @@ pkgbase = systemtap depends = texlive-latexextra depends = latex2html optdepends = sqlite3 - source = http://sourceware.org/systemtap/ftp/releases/systemtap-3.0.tar.gz - sha1sums = 5ef3a2d9945b0f6bae0061e33811e25e5138f5b7 + source = http://sourceware.org/systemtap/ftp/releases/systemtap-3.1.tar.gz + sha1sums = 2927ee7e780b45e47d770798f80dfd5be62e095d pkgname = systemtap diff --git a/PKGBUILD b/PKGBUILD index 89da25a..2ad34d3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ pkgname=systemtap -pkgver=3.0 -pkgrel=3 +pkgver=3.1 +pkgrel=1 pkgdesc="SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system." url="http://sourceware.org/systemtap/" arch=('i686' 'x86_64' 'armv7h' 'armv6h') @@ -9,7 +9,7 @@ depends=('elfutils' 'nss' 'python2' 'texlive-fontsextra' 'texlive-latexextra' 'l makedepends=('gcc') optdepends=('sqlite3') source=(http://sourceware.org/systemtap/ftp/releases/$pkgname-$pkgver.tar.gz) -sha1sums=('5ef3a2d9945b0f6bae0061e33811e25e5138f5b7') +sha1sums=('2927ee7e780b45e47d770798f80dfd5be62e095d') build() { cd "${srcdir}/${pkgname}-${pkgver}" From ea7f5b3c5e738146ad37a5a7eb5f786c8479c1be Mon Sep 17 00:00:00 2001 From: horsemanoffaith Date: Mon, 27 Feb 2017 04:59:55 +0000 Subject: [PATCH 055/971] add glewmx --- .SRCINFO | 16 ++++++++++++++++ PKGBUILD | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 .SRCINFO create mode 100755 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..830b459 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,16 @@ +pkgbase = glewmx + pkgdesc = The OpenGL Extension Wrangler MX + pkgver = 1.13.0 + pkgrel = 1 + url = http://launchpad.net/ubuntu/+source/glewmx + arch = i686 + arch = x86_64 + license = GPL + depends = libxmu + depends = libxi + depends = glu + source = http://launchpad.net/ubuntu/+archive/primary/+files/glewmx_1.13.0.orig.tar.gz + sha1sums = d5b1c499f429aa91c466193b4e8ea94a84019e37 + +pkgname = glewmx + diff --git a/PKGBUILD b/PKGBUILD new file mode 100755 index 0000000..583a755 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,46 @@ +# $Id: PKGBUILD 273106 2016-08-05 12:19:53Z andyrtr $ +# Maintainer: Andreas Radke +# Contributor: Stéphane Gaudreault +# Contributor: SleepyDog + +pkgname=glewmx +pkgver=1.13.0 +pkgrel=1 +pkgdesc="The OpenGL Extension Wrangler MX" +arch=('i686' 'x86_64') +url="http://launchpad.net/ubuntu/+source/glewmx" +license=('GPL') +depends=('libxmu' 'libxi' 'glu') +source=(http://launchpad.net/ubuntu/+archive/primary/+files/${pkgname}_${pkgver}.orig.tar.gz) +sha1sums=('d5b1c499f429aa91c466193b4e8ea94a84019e37') + +build() { + + cd glew-${pkgver} + + # move include folder to subfolder 'glew-1.13.0' + sed -i 's:$(GLEW_DEST)/include/GL:$(GLEW_DEST)/include/glew-1.13.0/GL:' Makefile + + sed -i 's|lib64|lib|' config/Makefile.linux + sed -i '/^.PHONY: .*\.pc$/d' Makefile + + make +} + +package() { + + cd glew-${pkgver} + + # update glewmx include path to reflect previous changes (see build comments) + msg update glewmx.pc + sed -i 's:includedir=${prefix}/include:includedir=${prefix}/include/glew-1.13.0:' glewmx.pc + + make GLEW_DEST="${pkgdir}/usr" install.all + + rm -R ${pkgdir}/usr/bin + rm ${pkgdir}/usr/lib/{libGLEW.so,libGLEW.a} + rm ${pkgdir}/usr/lib/pkgconfig/glew.pc + + chmod 0755 "${pkgdir}"/usr/lib/libGLEW*.so.${pkgver} + +} From 04287f6c8e84e7d973a277dd71a52b55cb3c21a5 Mon Sep 17 00:00:00 2001 From: graysky Date: Sat, 4 Mar 2017 08:19:00 -0500 Subject: [PATCH 056/971] Update to 2017.2.015-1 --- .SRCINFO | 12 +++++------- PKGBUILD | 10 ++++------ 2 files changed, 9 insertions(+), 13 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 7948791..56858d5 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,18 +1,16 @@ # Generated by mksrcinfo v8 -# Fri Nov 4 19:19:32 UTC 2016 +# Sat Mar 4 13:19:00 UTC 2017 pkgbase = linpack - pkgver = 2017.1.013 - pkgrel = 2 + pkgver = 2017.2.015 + pkgrel = 1 url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download arch = i686 arch = x86_64 license = custom - source = http://registrationcenter-download.intel.com/akdlm/irc_nas/9752/l_mklb_p_2017.1.013.tgz - source = http://registrationcenter-download.intel.com/akdlm/irc_nas/9752/l_mklb_p_2017.1.013.tgz + source = http://registrationcenter-download.intel.com/akdlm/irc_nas/9752/l_mklb_p_2017.2.015.tgz source = linpack.conf source = runme.template - sha256sums = 95fe30c52d50d7c5a81b90e08ecff6e05498d728bba129817abdd1431ae13b40 - sha256sums = 95fe30c52d50d7c5a81b90e08ecff6e05498d728bba129817abdd1431ae13b40 + sha256sums = b749459131d5c940d60af18b45bd01a92af8c62bc4e0c2a1e1bede25e32630d4 sha256sums = d7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254 sha256sums = 8bcd48bd97b3177590f15e922f8f7fb1ebfe6ea0608b4d63d8902ac2bd9b6a52 diff --git a/PKGBUILD b/PKGBUILD index 956d44c..59a6b01 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,17 +1,15 @@ # Contributor: graysky pkgname=('linpack') -pkgver=2017.1.013 +pkgver=2017.2.015 _math_kernel_lib=2017 _url=9752 -pkgrel=2 +pkgrel=1 arch=('i686' 'x86_64') license=('custom') url="http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download" source=("http://registrationcenter-download.intel.com/akdlm/irc_nas/$_url/l_mklb_p_$pkgver.tgz" - http://registrationcenter-download.intel.com/akdlm/irc_nas/9752/l_mklb_p_2017.1.013.tgz 'linpack.conf' 'runme.template') -sha256sums=('95fe30c52d50d7c5a81b90e08ecff6e05498d728bba129817abdd1431ae13b40' - '95fe30c52d50d7c5a81b90e08ecff6e05498d728bba129817abdd1431ae13b40' +sha256sums=('b749459131d5c940d60af18b45bd01a92af8c62bc4e0c2a1e1bede25e32630d4' 'd7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254' '8bcd48bd97b3177590f15e922f8f7fb1ebfe6ea0608b4d63d8902ac2bd9b6a52') @@ -31,6 +29,6 @@ package_linpack() { install -Dm755 linpack_runme_xeon$bit "$pkgdir/usr/bin/linpack_runme_xeon$bit" install -Dm644 linpack.conf "$pkgdir/usr/share/$pkgname/linpack.conf" - install -Dm644 "$_base/EULA.txt" "$pkgdir/usr/share/licenses/linpack/license.txt" + install -Dm644 "$_base/license_repo.txt" "$pkgdir/usr/share/licenses/linpack/license.txt" install -Dm755 "$_test/xlinpack_xeon$bit" "$pkgdir/usr/bin/xlinpack_xeon$bit" } From cf13ef22d0679eae5588652782a00d16e0f8d645 Mon Sep 17 00:00:00 2001 From: Ivan Lyapunov Date: Sun, 5 Mar 2017 12:28:44 +0300 Subject: [PATCH 057/971] swicth to upstream python handling --- .SRCINFO | 4 ++-- PKGBUILD | 4 +--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 5d88835..fa4ed7c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,9 +1,9 @@ # Generated by mksrcinfo v8 -# Sat Feb 18 12:51:09 UTC 2017 +# Sun Mar 5 09:28:04 UTC 2017 pkgbase = systemtap pkgdesc = SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system. pkgver = 3.1 - pkgrel = 1 + pkgrel = 2 url = http://sourceware.org/systemtap/ arch = i686 arch = x86_64 diff --git a/PKGBUILD b/PKGBUILD index 2ad34d3..6a4f9d5 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ pkgname=systemtap pkgver=3.1 -pkgrel=1 +pkgrel=2 pkgdesc="SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system." url="http://sourceware.org/systemtap/" arch=('i686' 'x86_64' 'armv7h' 'armv6h') @@ -20,8 +20,6 @@ build() { package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install - echo enable python2... - sed -i 's/python/python2/g' ${pkgdir}/usr/bin/dtrace } # vim:set ts=2 sw=2 et: From 51eb3c5f340d54c9d26372aa131b4dbc83792954 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 12 Mar 2017 00:10:41 +0100 Subject: [PATCH 058/971] New package source Updated the source URL because of the fedorahosted.org retirement --- .SRCINFO | 5 ++--- PKGBUILD | 22 ++++++++++------------ tuned.install | 2 +- 3 files changed, 13 insertions(+), 16 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 74e0a90..59ccb71 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,5 +1,5 @@ # Generated by mksrcinfo v8 -# Tue Jan 24 10:29:55 UTC 2017 +# Sat Mar 11 23:05:15 UTC 2017 pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system pkgver = 2.7.1 @@ -19,9 +19,8 @@ pkgbase = tuned depends = dbus-glib optdepends = virt-what optdepends = systemtap - provides = tuned backup = etc/tuned/active_profile - source = https://fedorahosted.org/releases/t/u/tuned/tuned-2.7.1.tar.bz2 + source = https://jskarvad.fedorapeople.org/tuned/download/tuned-2.7.1.tar.bz2 sha256sums = 03333eda9f3744ec214b1c20d0f79528a6438dafd5c79ff459b411414491802d pkgname = tuned diff --git a/PKGBUILD b/PKGBUILD index a01fca9..7605698 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,4 +1,5 @@ -# Maintainer: Iwan Timmer +# Maintainer: Manuel Hüsers +# Contributor: Iwan Timmer # Contributor: Timothée Ravier # Contributor: Tom @@ -12,24 +13,21 @@ license=('GPL') depends=('ethtool' 'python2-configobj' 'python2-pyudev' 'python2-gobject2' 'python2-decorator' 'python2-dbus' 'python2-gobject' 'dbus-glib') optdepends=('virt-what' 'systemtap') makedepends=('git') -provides=('tuned') backup=('etc/tuned/active_profile') install="${pkgname}.install" -source=("https://fedorahosted.org/releases/t/u/${pkgname}/${pkgname}-${pkgver}.tar.bz2") +source=("https://jskarvad.fedorapeople.org/${pkgname}/download/${pkgname}-${pkgver}.tar.bz2") sha256sums=('03333eda9f3744ec214b1c20d0f79528a6438dafd5c79ff459b411414491802d') package() { - cd ${pkgname}-${pkgver} + cd "${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install + make DESTDIR="${pkgdir}" install - mv "${pkgdir}"/usr/sbin/* "${pkgdir}"/usr/bin/ - mv "${pkgdir}"/usr/libexec/tuned/* "${pkgdir}"/usr/lib/tuned/ - rm -r "${pkgdir}"/run "${pkgdir}"/usr/sbin "${pkgdir}"/usr/libexec + mv "${pkgdir}"/usr/sbin/* "${pkgdir}"/usr/bin/ + mv "${pkgdir}"/usr/libexec/tuned/* "${pkgdir}"/usr/lib/tuned/ + rm -r "${pkgdir}"/run "${pkgdir}"/usr/sbin "${pkgdir}"/usr/libexec - find "${pkgdir}"/usr/bin/ -type f -exec sed -i 's@#!/usr/bin/python@#!/usr/bin/python2@' {} \; + find "${pkgdir}"/usr/bin/ -type f -exec sed -i 's@#!/usr/bin/python@#!/usr/bin/python2@' {} \; - install -Dm 0644 "${srcdir}"/${pkgname}-${pkgver}/tuned.service "${pkgdir}"/usr/lib/systemd/system/tuned.service + install -Dm644 "${srcdir}/${pkgname}-${pkgver}/tuned.service" "${pkgdir}/usr/lib/systemd/system/tuned.service" } - -# vim:set ts=2 sw=2 et: diff --git a/tuned.install b/tuned.install index dbe414b..a704b66 100644 --- a/tuned.install +++ b/tuned.install @@ -1,3 +1,3 @@ post_install() { - systemd-tmpfiles --create tuned.conf + systemd-tmpfiles --create tuned.conf } From 12037b90a40fdbcf86b3adfe9ff6b2747d12a49c Mon Sep 17 00:00:00 2001 From: Christian Rebischke Date: Mon, 27 Mar 2017 21:15:49 +0200 Subject: [PATCH 059/971] moved from AUR to community --- .SRCINFO | 12 ++++-------- PKGBUILD | 16 +++++++++------- systemtap.install | 4 ++++ 3 files changed, 17 insertions(+), 15 deletions(-) create mode 100644 systemtap.install diff --git a/.SRCINFO b/.SRCINFO index fa4ed7c..8ddfd4d 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,16 +1,12 @@ -# Generated by mksrcinfo v8 -# Sun Mar 5 09:28:04 UTC 2017 pkgbase = systemtap pkgdesc = SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system. pkgver = 3.1 - pkgrel = 2 + pkgrel = 3 url = http://sourceware.org/systemtap/ + install = systemtap.install arch = i686 arch = x86_64 - arch = armv7h - arch = armv6h license = GPL - makedepends = gcc depends = elfutils depends = nss depends = python2 @@ -18,8 +14,8 @@ pkgbase = systemtap depends = texlive-latexextra depends = latex2html optdepends = sqlite3 - source = http://sourceware.org/systemtap/ftp/releases/systemtap-3.1.tar.gz - sha1sums = 2927ee7e780b45e47d770798f80dfd5be62e095d + source = systemtap-3.1.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-3.1.tar.gz + sha512sums = 07b322d5745f570296e287db80f1e370da87eb65073815cf24d532827900453c1cb9ee74b5496b4f3919d176b960caad4479edc2dadf27b5c58898fb7398264d pkgname = systemtap diff --git a/PKGBUILD b/PKGBUILD index 6a4f9d5..752ed5a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,19 +1,22 @@ +# $Id$ +# Maintainer : Christian Rebischke +# Contributor:dront78 pkgname=systemtap pkgver=3.1 -pkgrel=2 +pkgrel=3 pkgdesc="SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system." url="http://sourceware.org/systemtap/" -arch=('i686' 'x86_64' 'armv7h' 'armv6h') +arch=('i686' 'x86_64') license=('GPL') depends=('elfutils' 'nss' 'python2' 'texlive-fontsextra' 'texlive-latexextra' 'latex2html') -makedepends=('gcc') optdepends=('sqlite3') -source=(http://sourceware.org/systemtap/ftp/releases/$pkgname-$pkgver.tar.gz) -sha1sums=('2927ee7e780b45e47d770798f80dfd5be62e095d') +source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz") +sha512sums=('07b322d5745f570296e287db80f1e370da87eb65073815cf24d532827900453c1cb9ee74b5496b4f3919d176b960caad4479edc2dadf27b5c58898fb7398264d') +install='systemtap.install' build() { cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr --sysconfdir=/etc || return 1 + ./configure --prefix=/usr --sysconfdir=/etc make } @@ -22,4 +25,3 @@ package() { make DESTDIR="${pkgdir}" install } -# vim:set ts=2 sw=2 et: diff --git a/systemtap.install b/systemtap.install new file mode 100644 index 0000000..d168c58 --- /dev/null +++ b/systemtap.install @@ -0,0 +1,4 @@ +post_install() { + echo "CONFIG_DEBUG_INFO is disabled on default. You need to recompile" + echo "the kernel with CONFIG_DEBUG_INFO enabled." +} From 5a3ef0f5d1ea3cec5a87c563792d0f9af4f95df2 Mon Sep 17 00:00:00 2001 From: Christian Rebischke Date: Fri, 7 Apr 2017 01:56:20 +0200 Subject: [PATCH 060/971] changed PKGBUILD --- .SRCINFO | 6 ++---- PKGBUILD | 19 ++++++++++++++----- 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 8ddfd4d..cb1003b 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -7,15 +7,13 @@ pkgbase = systemtap arch = i686 arch = x86_64 license = GPL + makedepends = python2-setuptools depends = elfutils depends = nss depends = python2 - depends = texlive-fontsextra - depends = texlive-latexextra - depends = latex2html optdepends = sqlite3 source = systemtap-3.1.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-3.1.tar.gz - sha512sums = 07b322d5745f570296e287db80f1e370da87eb65073815cf24d532827900453c1cb9ee74b5496b4f3919d176b960caad4479edc2dadf27b5c58898fb7398264d + sha512sums = 10019b9c2d66f3f8d6e6ce3d1f3dfe99c9e5bda9f220eb2aa885643235c270c2004528cded0e94370cc0fc0c62d8fbe96cafa7609c619a8ee498335ecd0aa41d pkgname = systemtap diff --git a/PKGBUILD b/PKGBUILD index 752ed5a..bc32126 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,4 +1,4 @@ -# $Id$ +# $Id: PKGBUILD 219416 2017-03-27 19:17:50Z shibumi $ # Maintainer : Christian Rebischke # Contributor:dront78 pkgname=systemtap @@ -8,15 +8,24 @@ pkgdesc="SystemTap provides free software (GPL) infrastructure to simplify the g url="http://sourceware.org/systemtap/" arch=('i686' 'x86_64') license=('GPL') -depends=('elfutils' 'nss' 'python2' 'texlive-fontsextra' 'texlive-latexextra' 'latex2html') +depends=('elfutils' 'nss' 'python2') +makedepends=('python2-setuptools') optdepends=('sqlite3') source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz") -sha512sums=('07b322d5745f570296e287db80f1e370da87eb65073815cf24d532827900453c1cb9ee74b5496b4f3919d176b960caad4479edc2dadf27b5c58898fb7398264d') +sha512sums=('10019b9c2d66f3f8d6e6ce3d1f3dfe99c9e5bda9f220eb2aa885643235c270c2004528cded0e94370cc0fc0c62d8fbe96cafa7609c619a8ee498335ecd0aa41d') install='systemtap.install' build() { - cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr --sysconfdir=/etc + cd "${pkgname}-${pkgver}" + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib/"${pkgname}" \ + --libdir=/usr/lib/"${pkgname}" \ + --mandir=/usr/share/man/ \ + --localstatedir=/var/run/"${pkgname}" \ + --enable-pie \ + --disable-docs make } From 527ec4c432a50b6224c8d95be51b9428cde47a76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 27 Apr 2017 19:41:50 +0200 Subject: [PATCH 061/971] Version 2.8.0 --- .SRCINFO | 8 ++++---- PKGBUILD | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 59ccb71..dcbead8 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ # Generated by mksrcinfo v8 -# Sat Mar 11 23:05:15 UTC 2017 +# Thu Apr 27 17:41:50 UTC 2017 pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = 2.7.1 + pkgver = 2.8.0 pkgrel = 1 url = https://fedorahosted.org/tuned/ install = tuned.install @@ -20,8 +20,8 @@ pkgbase = tuned optdepends = virt-what optdepends = systemtap backup = etc/tuned/active_profile - source = https://jskarvad.fedorapeople.org/tuned/download/tuned-2.7.1.tar.bz2 - sha256sums = 03333eda9f3744ec214b1c20d0f79528a6438dafd5c79ff459b411414491802d + source = https://jskarvad.fedorapeople.org/tuned/download/tuned-2.8.0.tar.bz2 + sha256sums = 3da453af1d1f13ac46966499b1f1373cf3718bdb3207f82aca8b66e894e69bc7 pkgname = tuned diff --git a/PKGBUILD b/PKGBUILD index 7605698..b943823 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ # Contributor: Tom pkgname=tuned -pkgver=2.7.1 +pkgver=2.8.0 pkgrel=1 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') @@ -16,7 +16,7 @@ makedepends=('git') backup=('etc/tuned/active_profile') install="${pkgname}.install" source=("https://jskarvad.fedorapeople.org/${pkgname}/download/${pkgname}-${pkgver}.tar.bz2") -sha256sums=('03333eda9f3744ec214b1c20d0f79528a6438dafd5c79ff459b411414491802d') +sha256sums=('3da453af1d1f13ac46966499b1f1373cf3718bdb3207f82aca8b66e894e69bc7') package() { cd "${pkgname}-${pkgver}" From 8303fbfa8481d7098967106a9da049599a452757 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 7 May 2017 23:27:08 +0200 Subject: [PATCH 062/971] v4: Removed option SysVStartPriority Support for option SysVStartPriority= has been removed and it is ignored According to https://lists.freedesktop.org/archives/systemd-devel/2014-November/025726.html this option never had any effect --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- rc-local.service | 1 - 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 9fd2b07..3c3c9d7 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ # Generated by mksrcinfo v8 -# Thu Aug 25 20:34:59 UTC 2016 +# Sun May 7 21:27:08 UTC 2017 pkgbase = rc-local pkgdesc = Support for legacy rc.local scripts - pkgver = 3 + pkgver = 4 pkgrel = 1 url = https://aur.archlinux.org/packages/rc-local/ install = rc-local.install @@ -13,7 +13,7 @@ pkgbase = rc-local source = rc.local source = rc-local.service sha256sums = 8aa661c15cf9a35c32c79055bf69ab2d16354128ddd67a1bce0a7e48fe26f2e3 - sha256sums = 7ac3eae0aee580448acbe386a3a2954990510790c42f2b9a0df293078d22dc14 + sha256sums = f8c4f7a72833bb568bd4848ad16442cb3150b438184e0a6d30348fb518f969ae pkgname = rc-local diff --git a/PKGBUILD b/PKGBUILD index 84378b6..9de4930 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: $pooky Hunter pkgname=rc-local -pkgver=3 +pkgver=4 pkgrel=1 pkgdesc='Support for legacy rc.local scripts' url="https://aur.archlinux.org/packages/${pkgname}/" @@ -15,7 +15,7 @@ backup=('etc/rc.local') source=('rc.local' 'rc-local.service') sha256sums=('8aa661c15cf9a35c32c79055bf69ab2d16354128ddd67a1bce0a7e48fe26f2e3' - '7ac3eae0aee580448acbe386a3a2954990510790c42f2b9a0df293078d22dc14') + 'f8c4f7a72833bb568bd4848ad16442cb3150b438184e0a6d30348fb518f969ae') package() { install -Dm755 'rc.local' "${pkgdir}/etc/rc.local" diff --git a/rc-local.service b/rc-local.service index c7d6fcf..bc099a7 100644 --- a/rc-local.service +++ b/rc-local.service @@ -15,7 +15,6 @@ ExecStart=/etc/rc.local start TimeoutSec=0 StandardOutput=tty RemainAfterExit=yes -SysVStartPriority=99 [Install] WantedBy=multi-user.target From 6787df452d35efb5ac7a16ba70566ee99eee9347 Mon Sep 17 00:00:00 2001 From: graysky Date: Fri, 19 May 2017 15:00:14 -0400 Subject: [PATCH 063/971] Update to 2017.3.017-1 --- .SRCINFO | 8 ++++---- PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 56858d5..3dfeb62 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,16 +1,16 @@ # Generated by mksrcinfo v8 -# Sat Mar 4 13:19:00 UTC 2017 +# Fri May 19 19:00:14 UTC 2017 pkgbase = linpack - pkgver = 2017.2.015 + pkgver = 2017.3.017 pkgrel = 1 url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download arch = i686 arch = x86_64 license = custom - source = http://registrationcenter-download.intel.com/akdlm/irc_nas/9752/l_mklb_p_2017.2.015.tgz + source = http://registrationcenter-download.intel.com/akdlm/irc_nas/9752/l_mklb_p_2017.3.017.tgz source = linpack.conf source = runme.template - sha256sums = b749459131d5c940d60af18b45bd01a92af8c62bc4e0c2a1e1bede25e32630d4 + sha256sums = ff1164e9b525c115543059be87bc759f3f843b598fc78fd445abd7747a136a95 sha256sums = d7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254 sha256sums = 8bcd48bd97b3177590f15e922f8f7fb1ebfe6ea0608b4d63d8902ac2bd9b6a52 diff --git a/PKGBUILD b/PKGBUILD index 59a6b01..295f4b3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Contributor: graysky pkgname=('linpack') -pkgver=2017.2.015 +pkgver=2017.3.017 _math_kernel_lib=2017 _url=9752 pkgrel=1 @@ -9,7 +9,7 @@ license=('custom') url="http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download" source=("http://registrationcenter-download.intel.com/akdlm/irc_nas/$_url/l_mklb_p_$pkgver.tgz" 'linpack.conf' 'runme.template') -sha256sums=('b749459131d5c940d60af18b45bd01a92af8c62bc4e0c2a1e1bede25e32630d4' +sha256sums=('ff1164e9b525c115543059be87bc759f3f843b598fc78fd445abd7747a136a95' 'd7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254' '8bcd48bd97b3177590f15e922f8f7fb1ebfe6ea0608b4d63d8902ac2bd9b6a52') @@ -29,6 +29,6 @@ package_linpack() { install -Dm755 linpack_runme_xeon$bit "$pkgdir/usr/bin/linpack_runme_xeon$bit" install -Dm644 linpack.conf "$pkgdir/usr/share/$pkgname/linpack.conf" - install -Dm644 "$_base/license_repo.txt" "$pkgdir/usr/share/licenses/linpack/license.txt" + install -Dm644 "$_base/license.txt" "$pkgdir/usr/share/licenses/linpack/license.txt" install -Dm755 "$_test/xlinpack_xeon$bit" "$pkgdir/usr/bin/xlinpack_xeon$bit" } From 41e8e1bf39d31e4ff279eca67af6663eee72d022 Mon Sep 17 00:00:00 2001 From: graysky Date: Wed, 12 Jul 2017 17:02:44 -0400 Subject: [PATCH 064/971] Update to 2017.3.018-1 --- .SRCINFO | 8 ++++---- PKGBUILD | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 3dfeb62..c7cbc0d 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,16 +1,16 @@ # Generated by mksrcinfo v8 -# Fri May 19 19:00:14 UTC 2017 +# Wed Jul 12 21:02:44 UTC 2017 pkgbase = linpack - pkgver = 2017.3.017 + pkgver = 2017.3.018 pkgrel = 1 url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download arch = i686 arch = x86_64 license = custom - source = http://registrationcenter-download.intel.com/akdlm/irc_nas/9752/l_mklb_p_2017.3.017.tgz + source = http://registrationcenter-download.intel.com/akdlm/irc_nas/9752/l_mklb_p_2017.3.018.tgz source = linpack.conf source = runme.template - sha256sums = ff1164e9b525c115543059be87bc759f3f843b598fc78fd445abd7747a136a95 + sha256sums = 68abeb11e2b1e38a5d2c214c4f82c6788156e1d205ed66254c04ccd7d37f4d29 sha256sums = d7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254 sha256sums = 8bcd48bd97b3177590f15e922f8f7fb1ebfe6ea0608b4d63d8902ac2bd9b6a52 diff --git a/PKGBUILD b/PKGBUILD index 295f4b3..bfa82d0 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Contributor: graysky pkgname=('linpack') -pkgver=2017.3.017 +pkgver=2017.3.018 _math_kernel_lib=2017 _url=9752 pkgrel=1 @@ -9,7 +9,7 @@ license=('custom') url="http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download" source=("http://registrationcenter-download.intel.com/akdlm/irc_nas/$_url/l_mklb_p_$pkgver.tgz" 'linpack.conf' 'runme.template') -sha256sums=('ff1164e9b525c115543059be87bc759f3f843b598fc78fd445abd7747a136a95' +sha256sums=('68abeb11e2b1e38a5d2c214c4f82c6788156e1d205ed66254c04ccd7d37f4d29' 'd7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254' '8bcd48bd97b3177590f15e922f8f7fb1ebfe6ea0608b4d63d8902ac2bd9b6a52') From 9e35fd834b9ff618d88a2ae77546b08b9e54e89f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 13 Aug 2017 02:12:01 +0200 Subject: [PATCH 065/971] Version 1.6.5 --- .SRCINFO | 20 +++++++++++--------- PKGBUILD | 42 +++++++++++++++++++++++------------------- 2 files changed, 34 insertions(+), 28 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index f73a492..944e328 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,24 +1,26 @@ # Generated by mksrcinfo v8 -# Sat Feb 6 23:13:22 UTC 2016 +# Sun Aug 13 00:12:01 UTC 2017 pkgbase = bino - pkgdesc = 3D video player with multi-display support. - pkgver = 1.6.2 + pkgdesc = 3D video player with multi-display support + pkgver = 1.6.5 pkgrel = 1 - url = http://bino3d.org/ + url = https://bino3d.org/ arch = i686 arch = x86_64 license = GPL3 depends = ffmpeg depends = freealut depends = freeglut - depends = glew + depends = glewmx depends = libass depends = qt5-base - optdepends = lirc: for infrared remote control - source = http://download.savannah.gnu.org/releases-noredirect/bino/bino-1.6.2.tar.xz + optdepends = lirc: infrared remote control + source = https://download.savannah.gnu.org/releases/bino/bino-1.6.5.tar.xz + source = https://download.savannah.gnu.org/releases/bino/bino-1.6.5.tar.xz.sig source = gui_common.h - md5sums = b6cbb49c82da6a1d7734e5c2b66864c3 - md5sums = c152d0a10fcf712760919a5892f87a6d + sha512sums = 8be28ad2febbbf631d57ee0c32457ac2ba1f90bafcbbce83933fc5ac487e8e9aab8edcb8ed6127c5bee02ddea0dc5150743350a4289a3b9758f50562034a92c4 + sha512sums = SKIP + sha512sums = 8006b07a72f964da78a9ba3df7c4ead522cdca0303ab1c1d9b8224a6dd062f24e0bccf95146656e28c5ba3baa8dbc2e513309adb7486e26f1d3563eec35d0325 pkgname = bino diff --git a/PKGBUILD b/PKGBUILD index dfae56e..41d5b87 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,34 +1,38 @@ -# Maintainer: Jose Riha +# Maintainer: Manuel Hüsers +# Contributor: Jose Riha # Contributor: archtux pkgname=bino -pkgver=1.6.2 +pkgver=1.6.5 pkgrel=1 -pkgdesc="3D video player with multi-display support." +pkgdesc='3D video player with multi-display support' arch=('i686' 'x86_64') -url="http://bino3d.org/" +url='https://bino3d.org/' license=('GPL3') -depends=('ffmpeg' 'freealut' 'freeglut' 'glew' 'libass' 'qt5-base') -optdepends=('lirc: for infrared remote control') -source=(http://download.savannah.gnu.org/releases-noredirect/$pkgname/$pkgname-$pkgver.tar.xz 'gui_common.h') -md5sums=('b6cbb49c82da6a1d7734e5c2b66864c3' - 'c152d0a10fcf712760919a5892f87a6d') +depends=('ffmpeg' 'freealut' 'freeglut' 'glewmx' 'libass' 'qt5-base') +optdepends=('lirc: infrared remote control') +source=(https://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.xz{,.sig} + 'gui_common.h') +sha512sums=('8be28ad2febbbf631d57ee0c32457ac2ba1f90bafcbbce83933fc5ac487e8e9aab8edcb8ed6127c5bee02ddea0dc5150743350a4289a3b9758f50562034a92c4' + 'SKIP' + '8006b07a72f964da78a9ba3df7c4ead522cdca0303ab1c1d9b8224a6dd062f24e0bccf95146656e28c5ba3baa8dbc2e513309adb7486e26f1d3563eec35d0325') +validpgpkeys=('2F788CDEF4181652720EF132F4926138953E5294') prepare() { - cd $srcdir/$pkgname-$pkgver - sed -i 's/CXXFLAGS -fPIE/& -fPIC/' configure - ./configure --prefix=/usr \ - --with-qt-version=5 \ - # --with-xnvctrl # Enable NVIDIA Quadro SDI output + cd "${srcdir}/${pkgname}-${pkgver}" + sed -i 's/CXXFLAGS -fPIE/& -fPIC/' configure + ./configure --prefix=/usr \ + --with-qt-version=5 \ + #--with-xnvctrl # Enable NVIDIA Quadro SDI output } build() { - cp $srcdir/gui_common.h $srcdir/$pkgname-$pkgver/src - cd $srcdir/$pkgname-$pkgver - make + cd "${srcdir}/${pkgname}-${pkgver}" + cp '../gui_common.h' 'src' + make } package() { - cd $srcdir/$pkgname-$pkgver - make DESTDIR=$pkgdir install + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install } From cf926b1b4dd99e2d621e3a6bcb564370a5f7f766 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 25 Aug 2017 20:09:43 +0200 Subject: [PATCH 066/971] Key revoked on 2017-08-18, signature removed --- .SRCINFO | 8 +++----- PKGBUILD | 7 +++---- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 944e328..a780c73 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,5 +1,5 @@ # Generated by mksrcinfo v8 -# Sun Aug 13 00:12:01 UTC 2017 +# Fri Aug 25 18:09:43 UTC 2017 pkgbase = bino pkgdesc = 3D video player with multi-display support pkgver = 1.6.5 @@ -16,11 +16,9 @@ pkgbase = bino depends = qt5-base optdepends = lirc: infrared remote control source = https://download.savannah.gnu.org/releases/bino/bino-1.6.5.tar.xz - source = https://download.savannah.gnu.org/releases/bino/bino-1.6.5.tar.xz.sig source = gui_common.h - sha512sums = 8be28ad2febbbf631d57ee0c32457ac2ba1f90bafcbbce83933fc5ac487e8e9aab8edcb8ed6127c5bee02ddea0dc5150743350a4289a3b9758f50562034a92c4 - sha512sums = SKIP - sha512sums = 8006b07a72f964da78a9ba3df7c4ead522cdca0303ab1c1d9b8224a6dd062f24e0bccf95146656e28c5ba3baa8dbc2e513309adb7486e26f1d3563eec35d0325 + sha256sums = 3254316d3ae81cc69643dcd823caaac1233704d91289272d0011ced5e5cdffe2 + sha256sums = 0664e447fe115dbe7a146f3d057f171731c082cbc5691b68e2c959205a39c4e5 pkgname = bino diff --git a/PKGBUILD b/PKGBUILD index 41d5b87..0048f72 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -11,11 +11,10 @@ url='https://bino3d.org/' license=('GPL3') depends=('ffmpeg' 'freealut' 'freeglut' 'glewmx' 'libass' 'qt5-base') optdepends=('lirc: infrared remote control') -source=(https://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.xz{,.sig} +source=(https://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.xz 'gui_common.h') -sha512sums=('8be28ad2febbbf631d57ee0c32457ac2ba1f90bafcbbce83933fc5ac487e8e9aab8edcb8ed6127c5bee02ddea0dc5150743350a4289a3b9758f50562034a92c4' - 'SKIP' - '8006b07a72f964da78a9ba3df7c4ead522cdca0303ab1c1d9b8224a6dd062f24e0bccf95146656e28c5ba3baa8dbc2e513309adb7486e26f1d3563eec35d0325') +sha256sums=('3254316d3ae81cc69643dcd823caaac1233704d91289272d0011ced5e5cdffe2' + '0664e447fe115dbe7a146f3d057f171731c082cbc5691b68e2c959205a39c4e5') validpgpkeys=('2F788CDEF4181652720EF132F4926138953E5294') prepare() { From f69173360ff1e106c17c3864bc646a54f3877c49 Mon Sep 17 00:00:00 2001 From: Sander Boom Date: Mon, 18 Sep 2017 16:24:39 +0200 Subject: [PATCH 067/971] Updated to build 3144 --- .SRCINFO | 12 ++++++------ PKGBUILD | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index c9a37ab..bfdfbbc 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ # Generated by mksrcinfo v8 -# Sat Sep 24 12:22:59 UTC 2016 +# Mon Sep 18 14:24:12 UTC 2017 pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 3.3126 + pkgver = 3.3144 pkgrel = 1 url = http://www.sublimetext.com/3 install = sublime-text-dev.install @@ -16,10 +16,10 @@ pkgbase = sublime-text-dev conflicts = sublime-text-nightly source = sublime_text_3.desktop sha256sums = f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866 - source_i686 = https://download.sublimetext.com/sublime_text_3_build_3126_x32.tar.bz2 - sha256sums_i686 = 92ffefa470f0777897ed0dfb7c1635426105271da9b5affbe8c1e82039718e29 - source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3126_x64.tar.bz2 - sha256sums_x86_64 = 18db132e9a305fa3129014b608628e06f9442f48d09cfe933b3b1a84dd18727a + source_i686 = https://download.sublimetext.com/sublime_text_3_build_3144_x32.tar.bz2 + sha256sums_i686 = f6c868ee6beccf57fd3799fb93c896fc1efc112ae6390cde43b14cb162510925 + source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3144_x64.tar.bz2 + sha256sums_x86_64 = 676cc7c8815e5aceeeda79ceab93a5150e76ae5160b5f5f9ab61ce731ab46928 pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 1c2bb15..4278975 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=3.3126 +pkgver=3.3144 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('i686' 'x86_64') @@ -19,8 +19,8 @@ source_i686=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_ source_x86_64=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2") sha256sums=('f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866') -sha256sums_i686=('92ffefa470f0777897ed0dfb7c1635426105271da9b5affbe8c1e82039718e29') -sha256sums_x86_64=('18db132e9a305fa3129014b608628e06f9442f48d09cfe933b3b1a84dd18727a') +sha256sums_i686=('f6c868ee6beccf57fd3799fb93c896fc1efc112ae6390cde43b14cb162510925') +sha256sums_x86_64=('676cc7c8815e5aceeeda79ceab93a5150e76ae5160b5f5f9ab61ce731ab46928') package() { cd "${srcdir}" From ca93021b6211409828130bb53bf06e224cec7f92 Mon Sep 17 00:00:00 2001 From: Sander Boom Date: Tue, 19 Sep 2017 11:01:28 +0200 Subject: [PATCH 068/971] Downgraded to build 3143, as 3144 can not be used without license. --- .SRCINFO | 12 ++++++------ PKGBUILD | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index bfdfbbc..d9d6f57 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ # Generated by mksrcinfo v8 -# Mon Sep 18 14:24:12 UTC 2017 +# Tue Sep 19 08:57:32 UTC 2017 pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 3.3144 + pkgver = 3.3143 pkgrel = 1 url = http://www.sublimetext.com/3 install = sublime-text-dev.install @@ -16,10 +16,10 @@ pkgbase = sublime-text-dev conflicts = sublime-text-nightly source = sublime_text_3.desktop sha256sums = f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866 - source_i686 = https://download.sublimetext.com/sublime_text_3_build_3144_x32.tar.bz2 - sha256sums_i686 = f6c868ee6beccf57fd3799fb93c896fc1efc112ae6390cde43b14cb162510925 - source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3144_x64.tar.bz2 - sha256sums_x86_64 = 676cc7c8815e5aceeeda79ceab93a5150e76ae5160b5f5f9ab61ce731ab46928 + source_i686 = https://download.sublimetext.com/sublime_text_3_build_3143_x32.tar.bz2 + sha256sums_i686 = b1ecc4b70d66b9236b876f1913c4094b6dd51436e45c74883ba70a1939e9f735 + source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3143_x64.tar.bz2 + sha256sums_x86_64 = 9ce120c4f28b239d3b3860ee672d9d87e1397a4c08ee6c4e62fd6e261a296519 pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 4278975..99ccc05 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=3.3144 +pkgver=3.3143 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('i686' 'x86_64') @@ -19,8 +19,8 @@ source_i686=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_ source_x86_64=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2") sha256sums=('f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866') -sha256sums_i686=('f6c868ee6beccf57fd3799fb93c896fc1efc112ae6390cde43b14cb162510925') -sha256sums_x86_64=('676cc7c8815e5aceeeda79ceab93a5150e76ae5160b5f5f9ab61ce731ab46928') +sha256sums_i686=('b1ecc4b70d66b9236b876f1913c4094b6dd51436e45c74883ba70a1939e9f735') +sha256sums_x86_64=('9ce120c4f28b239d3b3860ee672d9d87e1397a4c08ee6c4e62fd6e261a296519') package() { cd "${srcdir}" From 30c4b2fb4a231158cf3faa3d21103dee55c5db91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 3 Oct 2017 15:00:55 +0200 Subject: [PATCH 069/971] Update to 10.84983b1 Bump of pkgrel not needed since produced package stays the same --- .SRCINFO | 6 ++---- PKGBUILD | 12 ++++-------- polkit-explorer.desktop | 10 ---------- 3 files changed, 6 insertions(+), 22 deletions(-) delete mode 100644 polkit-explorer.desktop diff --git a/.SRCINFO b/.SRCINFO index ce008e8..a107d67 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ # Generated by mksrcinfo v8 -# Sat Feb 6 19:10:00 UTC 2016 +# Tue Oct 3 13:00:55 UTC 2017 pkgbase = polkit-explorer pkgdesc = Present PolicyKit information in a human-readable form. - pkgver = 6.e27209d + pkgver = 10.84983b1 pkgrel = 1 url = https://github.com/scarygliders/polkit-explorer arch = any @@ -10,9 +10,7 @@ pkgbase = polkit-explorer depends = python2-pyqt4 depends = python2-lxml source = git://github.com/scarygliders/polkit-explorer.git - source = polkit-explorer.desktop sha256sums = SKIP - sha256sums = 4343e7c3c9e0dc03bfae8521ab4197661c6ddf4caf150ba4cf3369dc9550518a pkgname = polkit-explorer diff --git a/PKGBUILD b/PKGBUILD index 3c32700..7cb8544 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,17 +2,15 @@ # Contributor: Alad Wenter pkgname=polkit-explorer -pkgver=6.e27209d +pkgver=10.84983b1 pkgrel=1 pkgdesc='Present PolicyKit information in a human-readable form.' arch=('any') url="https://github.com/scarygliders/${pkgname}" license=('ISC') depends=('python2-pyqt4' 'python2-lxml') -source=("git://github.com/scarygliders/${pkgname}.git" - "${pkgname}.desktop") -sha256sums=('SKIP' - '4343e7c3c9e0dc03bfae8521ab4197661c6ddf4caf150ba4cf3369dc9550518a') +source=("git://github.com/scarygliders/${pkgname}.git") +sha256sums=('SKIP') pkgver() { cd "${srcdir}/${pkgname}" @@ -26,11 +24,9 @@ package() { install -d -m755 "${pkgdir}"/{usr/bin,$pydir} install -m644 Ui_*.py "${pkgdir}/${pydir}/" - sed -i 's/python$/python2/' 'polkitex.py' install -m755 'polkitex.py' "${pkgdir}/${pydir}/" ln -s "/${pydir}/polkitex.py" "${pkgdir}/usr/bin/polkitex" install -Dm644 'LICENSE' "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" - install -Dm644 "${srcdir}/${pkgname}.desktop" \ - "${pkgdir}/usr/share/applications/${pkgname}.desktop" + install -Dm644 "polkitex.desktop" "${pkgdir}/usr/share/applications/${pkgname}.desktop" } diff --git a/polkit-explorer.desktop b/polkit-explorer.desktop deleted file mode 100644 index 57ce0da..0000000 --- a/polkit-explorer.desktop +++ /dev/null @@ -1,10 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Type=Application -Name=Polkit-explorer -Comment=Present PolicyKit information in a human-readable form. -Exec=polkitex -Icon=emblem-system -Terminal=false -StartupNotify=false -Categories=System; From 400a41d420a5ab03682cf666722449cc45acc761 Mon Sep 17 00:00:00 2001 From: Nils Czernia Date: Wed, 18 Oct 2017 12:34:20 +0200 Subject: [PATCH 070/971] Inital commit --- .SRCINFO | 19 ++++++++++++ .gitignore | 5 +++ PKGBUILD | 42 ++++++++++++++++++++++++++ prometheus-postgresql-exporter.service | 9 ++++++ 4 files changed, 75 insertions(+) create mode 100644 .SRCINFO create mode 100644 .gitignore create mode 100644 PKGBUILD create mode 100644 prometheus-postgresql-exporter.service diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..a3cb115 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,19 @@ +# Generated by mksrcinfo v8 +# Wed Oct 18 10:34:10 UTC 2017 +pkgbase = prometheus-postgresql-exporter + pkgdesc = Prometheus exporter for PostrgreSQL + pkgver = 0.2.3 + pkgrel = 1 + url = https://github.com/wrouesnel/postgres_exporter + arch = x86_64 + arch = i686 + license = Apache + makedepends = git + makedepends = go + source = https://github.com/wrouesnel/postgres_exporter/archive/v0.2.3.tar.gz + source = prometheus-postgresql-exporter.service + sha256sums = 203ea51a9e5fb1fadceaa82ad63637db7248e22ae8b876613f3c8c2c255682d7 + sha256sums = cda225c236df0e2a6d71c17a5390a92ed5cc7f71b8ca5843590c59fa02cdb135 + +pkgname = prometheus-postgresql-exporter + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..556ff7e --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +* +!PKGBUILD +!.SRCINFO +!.gitignore +!prometheus-postgresql-exporter.service diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..054bf58 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,42 @@ +# Maintainer: Nils Czernia + +pkgname=prometheus-postgresql-exporter +pkgver=0.2.3 +pkgrel=1 +pkgdesc="Prometheus exporter for PostrgreSQL" +arch=('x86_64' 'i686') +url="https://github.com/wrouesnel/postgres_exporter" +license=('Apache') +makedepends=('git' 'go') +source=("https://github.com/wrouesnel/postgres_exporter/archive/v${pkgver}.tar.gz" + "prometheus-postgresql-exporter.service") +sha256sums=('203ea51a9e5fb1fadceaa82ad63637db7248e22ae8b876613f3c8c2c255682d7' + 'cda225c236df0e2a6d71c17a5390a92ed5cc7f71b8ca5843590c59fa02cdb135') + +prepare() { + cd "${srcdir}/postgres_exporter-${pkgver}" + + export GOPATH="${srcdir}/gopath" + mkdir -p "${GOPATH}/src/github.com/wrouesnel" + ln -snf "${srcdir}/postgres_exporter-${pkgver}" "${GOPATH}/src/github.com/wrouesnel/postgres_exporter" +} + +build() { + export GOPATH="${srcdir}/gopath" + cd "${GOPATH}/src/github.com/wrouesnel/postgres_exporter" + make +} + +check() { + export GOPATH="${srcdir}/gopath" + cd "${GOPATH}/src/github.com/wrouesnel/postgres_exporter" + + make test +} + +package() { + cd "${srcdir}/postgres_exporter-${pkgver}" + + install -Dm755 "postgres_exporter" "${pkgdir}/usr/bin/prometheus_postgresql_exporter" + install -Dm755 "${srcdir}/prometheus-postgresql-exporter.service" "${pkgdir}/usr/lib/systemd/system/prometheus-postgresql-exporter.service" +} diff --git a/prometheus-postgresql-exporter.service b/prometheus-postgresql-exporter.service new file mode 100644 index 0000000..6f7f07c --- /dev/null +++ b/prometheus-postgresql-exporter.service @@ -0,0 +1,9 @@ +[Unit] +Description=Prometheus exporter for PostgreSQL +After=network.target + +[Service] +ExecStart=/usr/bin/prometheus_postgresql_exporter + +[Install] +WantedBy=multi-user.target From 2b9eb8f099704b9ef07eaf8797210abfb5343dca Mon Sep 17 00:00:00 2001 From: Sander Boom Date: Wed, 8 Nov 2017 11:55:36 +0100 Subject: [PATCH 071/971] Updated to build 3153 --- .SRCINFO | 12 ++++++------ PKGBUILD | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index d9d6f57..0853355 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ # Generated by mksrcinfo v8 -# Tue Sep 19 08:57:32 UTC 2017 +# Wed Nov 8 10:37:17 UTC 2017 pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 3.3143 + pkgver = 3.3153 pkgrel = 1 url = http://www.sublimetext.com/3 install = sublime-text-dev.install @@ -16,10 +16,10 @@ pkgbase = sublime-text-dev conflicts = sublime-text-nightly source = sublime_text_3.desktop sha256sums = f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866 - source_i686 = https://download.sublimetext.com/sublime_text_3_build_3143_x32.tar.bz2 - sha256sums_i686 = b1ecc4b70d66b9236b876f1913c4094b6dd51436e45c74883ba70a1939e9f735 - source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3143_x64.tar.bz2 - sha256sums_x86_64 = 9ce120c4f28b239d3b3860ee672d9d87e1397a4c08ee6c4e62fd6e261a296519 + source_i686 = https://download.sublimetext.com/sublime_text_3_build_3153_x32.tar.bz2 + sha256sums_i686 = a43c14babfb4f54822a7448ce70bf3161d27110e738a8a9da68550ce05f03113 + source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3153_x64.tar.bz2 + sha256sums_x86_64 = e7e8cebdb0d73eed7ccbe1b7baafe13b15eab1172915f6ad017f63c4c5383f52 pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 99ccc05..053c0b9 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=3.3143 +pkgver=3.3153 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('i686' 'x86_64') @@ -19,8 +19,8 @@ source_i686=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_ source_x86_64=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2") sha256sums=('f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866') -sha256sums_i686=('b1ecc4b70d66b9236b876f1913c4094b6dd51436e45c74883ba70a1939e9f735') -sha256sums_x86_64=('9ce120c4f28b239d3b3860ee672d9d87e1397a4c08ee6c4e62fd6e261a296519') +sha256sums_i686=('a43c14babfb4f54822a7448ce70bf3161d27110e738a8a9da68550ce05f03113') +sha256sums_x86_64=('e7e8cebdb0d73eed7ccbe1b7baafe13b15eab1172915f6ad017f63c4c5383f52') package() { cd "${srcdir}" From 42d56cc9d0b082ab82684e5da23424fa296f66a7 Mon Sep 17 00:00:00 2001 From: Sander Boom Date: Thu, 9 Nov 2017 15:22:21 +0100 Subject: [PATCH 072/971] Downgraded to build 3143, as 3153 can not be used without license. --- .SRCINFO | 12 ++++++------ PKGBUILD | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 0853355..239d3e4 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ # Generated by mksrcinfo v8 -# Wed Nov 8 10:37:17 UTC 2017 +# Thu Nov 9 14:21:58 UTC 2017 pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 3.3153 + pkgver = 3.3143 pkgrel = 1 url = http://www.sublimetext.com/3 install = sublime-text-dev.install @@ -16,10 +16,10 @@ pkgbase = sublime-text-dev conflicts = sublime-text-nightly source = sublime_text_3.desktop sha256sums = f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866 - source_i686 = https://download.sublimetext.com/sublime_text_3_build_3153_x32.tar.bz2 - sha256sums_i686 = a43c14babfb4f54822a7448ce70bf3161d27110e738a8a9da68550ce05f03113 - source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3153_x64.tar.bz2 - sha256sums_x86_64 = e7e8cebdb0d73eed7ccbe1b7baafe13b15eab1172915f6ad017f63c4c5383f52 + source_i686 = https://download.sublimetext.com/sublime_text_3_build_3143_x32.tar.bz2 + sha256sums_i686 = b1ecc4b70d66b9236b876f1913c4094b6dd51436e45c74883ba70a1939e9f735 + source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3143_x64.tar.bz2 + sha256sums_x86_64 = 9ce120c4f28b239d3b3860ee672d9d87e1397a4c08ee6c4e62fd6e261a296519 pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 053c0b9..99ccc05 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=3.3153 +pkgver=3.3143 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('i686' 'x86_64') @@ -19,8 +19,8 @@ source_i686=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_ source_x86_64=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2") sha256sums=('f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866') -sha256sums_i686=('a43c14babfb4f54822a7448ce70bf3161d27110e738a8a9da68550ce05f03113') -sha256sums_x86_64=('e7e8cebdb0d73eed7ccbe1b7baafe13b15eab1172915f6ad017f63c4c5383f52') +sha256sums_i686=('b1ecc4b70d66b9236b876f1913c4094b6dd51436e45c74883ba70a1939e9f735') +sha256sums_x86_64=('9ce120c4f28b239d3b3860ee672d9d87e1397a4c08ee6c4e62fd6e261a296519') package() { cd "${srcdir}" From e816bdd3379cf7978055e7f35795619148b60a19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 11 Dec 2017 16:35:58 +0100 Subject: [PATCH 073/971] Version 2.9.0 --- .SRCINFO | 10 +++++----- PKGBUILD | 8 ++++---- tuned.install | 4 ++++ 3 files changed, 13 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index dcbead8..c3b8313 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,10 +1,10 @@ # Generated by mksrcinfo v8 -# Thu Apr 27 17:41:50 UTC 2017 +# Mon Dec 11 15:35:58 UTC 2017 pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = 2.8.0 + pkgver = 2.9.0 pkgrel = 1 - url = https://fedorahosted.org/tuned/ + url = https://github.com/redhat-performance/tuned install = tuned.install arch = any license = GPL @@ -20,8 +20,8 @@ pkgbase = tuned optdepends = virt-what optdepends = systemtap backup = etc/tuned/active_profile - source = https://jskarvad.fedorapeople.org/tuned/download/tuned-2.8.0.tar.bz2 - sha256sums = 3da453af1d1f13ac46966499b1f1373cf3718bdb3207f82aca8b66e894e69bc7 + source = https://github.com/redhat-performance/tuned/archive/v2.9.0.tar.gz + sha256sums = 0863896aff15c924afe7ee9449d16121c840d8bf768055aa749d0d050518efe5 pkgname = tuned diff --git a/PKGBUILD b/PKGBUILD index b943823..2f02323 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,19 +4,19 @@ # Contributor: Tom pkgname=tuned -pkgver=2.8.0 +pkgver=2.9.0 pkgrel=1 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') -url='https://fedorahosted.org/tuned/' +url="https://github.com/redhat-performance/${pkgname}" license=('GPL') depends=('ethtool' 'python2-configobj' 'python2-pyudev' 'python2-gobject2' 'python2-decorator' 'python2-dbus' 'python2-gobject' 'dbus-glib') optdepends=('virt-what' 'systemtap') makedepends=('git') backup=('etc/tuned/active_profile') install="${pkgname}.install" -source=("https://jskarvad.fedorapeople.org/${pkgname}/download/${pkgname}-${pkgver}.tar.bz2") -sha256sums=('3da453af1d1f13ac46966499b1f1373cf3718bdb3207f82aca8b66e894e69bc7') +source=("https://github.com/redhat-performance/${pkgname}/archive/v${pkgver}.tar.gz") +sha256sums=('0863896aff15c924afe7ee9449d16121c840d8bf768055aa749d0d050518efe5') package() { cd "${pkgname}-${pkgver}" diff --git a/tuned.install b/tuned.install index a704b66..974c867 100644 --- a/tuned.install +++ b/tuned.install @@ -1,3 +1,7 @@ post_install() { systemd-tmpfiles --create tuned.conf } + +pre_remove() { + systemd-tmpfiles --remove tuned.conf +} From fd284a10b4345649cfa21259689560d1714c2974 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 11 Dec 2017 17:02:21 +0100 Subject: [PATCH 074/971] Added missing dependency python2-linux-procfs was missing as a required dependency Added descriptions for optional dependencies Added desktop-file-utils as make dependency --- .SRCINFO | 11 ++++++----- PKGBUILD | 8 ++++---- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index c3b8313..f916b9a 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,14 +1,14 @@ # Generated by mksrcinfo v8 -# Mon Dec 11 15:35:58 UTC 2017 +# Mon Dec 11 16:02:21 UTC 2017 pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system pkgver = 2.9.0 - pkgrel = 1 + pkgrel = 2 url = https://github.com/redhat-performance/tuned install = tuned.install arch = any license = GPL - makedepends = git + makedepends = desktop-file-utils depends = ethtool depends = python2-configobj depends = python2-pyudev @@ -16,9 +16,10 @@ pkgbase = tuned depends = python2-decorator depends = python2-dbus depends = python2-gobject + depends = python2-linux-procfs depends = dbus-glib - optdepends = virt-what - optdepends = systemtap + optdepends = virt-what: For use with virtual machines + optdepends = systemtap: Disk and net statistic monitoring systemtap scripts backup = etc/tuned/active_profile source = https://github.com/redhat-performance/tuned/archive/v2.9.0.tar.gz sha256sums = 0863896aff15c924afe7ee9449d16121c840d8bf768055aa749d0d050518efe5 diff --git a/PKGBUILD b/PKGBUILD index 2f02323..07bb02b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,14 +5,14 @@ pkgname=tuned pkgver=2.9.0 -pkgrel=1 +pkgrel=2 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url="https://github.com/redhat-performance/${pkgname}" license=('GPL') -depends=('ethtool' 'python2-configobj' 'python2-pyudev' 'python2-gobject2' 'python2-decorator' 'python2-dbus' 'python2-gobject' 'dbus-glib') -optdepends=('virt-what' 'systemtap') -makedepends=('git') +depends=('ethtool' 'python2-configobj' 'python2-pyudev' 'python2-gobject2' 'python2-decorator' 'python2-dbus' 'python2-gobject' 'python2-linux-procfs' 'dbus-glib') +optdepends=('virt-what: For use with virtual machines' 'systemtap: Disk and net statistic monitoring systemtap scripts') +makedepends=('desktop-file-utils') backup=('etc/tuned/active_profile') install="${pkgname}.install" source=("https://github.com/redhat-performance/${pkgname}/archive/v${pkgver}.tar.gz") From 64b48e63a98040e5c502eac45d6935c39225257d Mon Sep 17 00:00:00 2001 From: graysky Date: Thu, 14 Dec 2017 15:36:47 -0500 Subject: [PATCH 075/971] Update to 2018.0.006-1 --- .SRCINFO | 13 ++++++------- PKGBUILD | 24 ++++++++---------------- runme.template => linpack_runme_xeon64 | 8 ++++---- 3 files changed, 18 insertions(+), 27 deletions(-) rename runme.template => linpack_runme_xeon64 (71%) diff --git a/.SRCINFO b/.SRCINFO index c7cbc0d..fb16542 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,18 +1,17 @@ # Generated by mksrcinfo v8 -# Wed Jul 12 21:02:44 UTC 2017 +# Thu Dec 14 20:36:46 UTC 2017 pkgbase = linpack - pkgver = 2017.3.018 + pkgver = 2018.0.006 pkgrel = 1 url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download - arch = i686 arch = x86_64 license = custom - source = http://registrationcenter-download.intel.com/akdlm/irc_nas/9752/l_mklb_p_2017.3.018.tgz + source = http://registrationcenter-download.intel.com/akdlm/irc_nas/9752/l_mklb_p_2018.0.006.tgz source = linpack.conf - source = runme.template - sha256sums = 68abeb11e2b1e38a5d2c214c4f82c6788156e1d205ed66254c04ccd7d37f4d29 + source = linpack_runme_xeon64 + sha256sums = 75eca690d91ef065748218f105c2c47b902f1e113b64a0c3f6a8075c80248b95 sha256sums = d7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254 - sha256sums = 8bcd48bd97b3177590f15e922f8f7fb1ebfe6ea0608b4d63d8902ac2bd9b6a52 + sha256sums = 369736f6074ab579a1df38ba09be4784547833be020f13d1b60374f64ca5d5f6 pkgname = linpack pkgdesc = Benchmark based on linear algebra excellent app for stress testing. diff --git a/PKGBUILD b/PKGBUILD index bfa82d0..4cfe56d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,34 +1,26 @@ # Contributor: graysky pkgname=('linpack') -pkgver=2017.3.018 -_math_kernel_lib=2017 +pkgver=2018.0.006 +_math_kernel_lib=2018 _url=9752 pkgrel=1 -arch=('i686' 'x86_64') +arch=('x86_64') license=('custom') url="http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download" source=("http://registrationcenter-download.intel.com/akdlm/irc_nas/$_url/l_mklb_p_$pkgver.tgz" -'linpack.conf' 'runme.template') -sha256sums=('68abeb11e2b1e38a5d2c214c4f82c6788156e1d205ed66254c04ccd7d37f4d29' +'linpack.conf' 'linpack_runme_xeon64') +sha256sums=('75eca690d91ef065748218f105c2c47b902f1e113b64a0c3f6a8075c80248b95' 'd7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254' - '8bcd48bd97b3177590f15e922f8f7fb1ebfe6ea0608b4d63d8902ac2bd9b6a52') - -build() { - [[ -z "$CARCH" ]] && echo "Cannot determine architecture of this system!" && exit 1 - [[ "$CARCH" = "x86_64" ]] && bit=64 || bit=32 - export bit -} + '369736f6074ab579a1df38ba09be4784547833be020f13d1b60374f64ca5d5f6') package_linpack() { pkgdesc='Benchmark based on linear algebra excellent app for stress testing.' backup=(etc/linpack.conf) _base="$srcdir/l_mklb_p_$pkgver/benchmarks_$_math_kernel_lib" _test="$_base/linux/mkl/benchmarks/linpack" - # setup based on detected arch - sed -e "s/@TARGET_BIT@/$bit/g" linpack_runme_xeon$bit - install -Dm755 linpack_runme_xeon$bit "$pkgdir/usr/bin/linpack_runme_xeon$bit" + install -Dm755 linpack_runme_xeon64 "$pkgdir/usr/bin/linpack_runme_xeon64" install -Dm644 linpack.conf "$pkgdir/usr/share/$pkgname/linpack.conf" install -Dm644 "$_base/license.txt" "$pkgdir/usr/share/licenses/linpack/license.txt" - install -Dm755 "$_test/xlinpack_xeon$bit" "$pkgdir/usr/bin/xlinpack_xeon$bit" + install -Dm755 "$_test/xlinpack_xeon64" "$pkgdir/usr/bin/xlinpack_xeon64" } diff --git a/runme.template b/linpack_runme_xeon64 similarity index 71% rename from runme.template rename to linpack_runme_xeon64 index 19fa319..b4b5b97 100644 --- a/runme.template +++ b/linpack_runme_xeon64 @@ -15,12 +15,12 @@ XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}" echo -e "Edit \E[31m$XDG_CONFIG_HOME/linpack.conf\E[37m to adjust the amount of physical memory to consume." echo echo -e "Starting calculation.... hit ctrl+c to stop." -echo -e "Consult \E[31m~/lin_xeon@TARGET_BIT@.txt\E[37m for results as they are caculated." +echo -e "Consult \E[31m~/lin_xeon64.txt\E[37m for results as they are caculated." date -date >> ~/lin_xeon@TARGET_BIT@.txt +date >> ~/lin_xeon64.txt -/usr/bin/xlinpack_xeon@TARGET_BIT@ $XDG_CONFIG_HOME/linpack.conf >> ~/lin_xeon@TARGET_BIT@.txt -date >> ~/lin_xeon@TARGET_BIT@.txt +/usr/bin/xlinpack_xeon64 $XDG_CONFIG_HOME/linpack.conf >> ~/lin_xeon64.txt +date >> ~/lin_xeon64.txt echo -n "Done: " date From d047ef573446ba96ab22f10edba6e07c8078341f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 29 Jan 2018 13:06:58 +0100 Subject: [PATCH 076/971] Version 1.6.6 --- .SRCINFO | 13 +++++++------ PKGBUILD | 11 ++++++----- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index a780c73..c4e4dbb 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,6 @@ -# Generated by mksrcinfo v8 -# Fri Aug 25 18:09:43 UTC 2017 pkgbase = bino pkgdesc = 3D video player with multi-display support - pkgver = 1.6.5 + pkgver = 1.6.6 pkgrel = 1 url = https://bino3d.org/ arch = i686 @@ -15,10 +13,13 @@ pkgbase = bino depends = libass depends = qt5-base optdepends = lirc: infrared remote control - source = https://download.savannah.gnu.org/releases/bino/bino-1.6.5.tar.xz + source = https://download.savannah.gnu.org/releases/bino/bino-1.6.6.tar.xz + source = https://download.savannah.gnu.org/releases/bino/bino-1.6.6.tar.xz.sig source = gui_common.h - sha256sums = 3254316d3ae81cc69643dcd823caaac1233704d91289272d0011ced5e5cdffe2 - sha256sums = 0664e447fe115dbe7a146f3d057f171731c082cbc5691b68e2c959205a39c4e5 + validpgpkeys = 2F61B4828BBA779AECB3F32703A2A4AB1E32FD34 + sha512sums = 43a17f390881fcc8b7721b21ff8524b89992cd7fb0cfc467769bdddd0ad0c0d2536d161475a7fce6d4d3e758e017a38f671648dfaa4a345dc02127b7b192c8c0 + sha512sums = SKIP + sha512sums = 8006b07a72f964da78a9ba3df7c4ead522cdca0303ab1c1d9b8224a6dd062f24e0bccf95146656e28c5ba3baa8dbc2e513309adb7486e26f1d3563eec35d0325 pkgname = bino diff --git a/PKGBUILD b/PKGBUILD index 0048f72..b7034b8 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: archtux pkgname=bino -pkgver=1.6.5 +pkgver=1.6.6 pkgrel=1 pkgdesc='3D video player with multi-display support' arch=('i686' 'x86_64') @@ -11,11 +11,12 @@ url='https://bino3d.org/' license=('GPL3') depends=('ffmpeg' 'freealut' 'freeglut' 'glewmx' 'libass' 'qt5-base') optdepends=('lirc: infrared remote control') -source=(https://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.xz +source=(https://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.xz{,.sig} 'gui_common.h') -sha256sums=('3254316d3ae81cc69643dcd823caaac1233704d91289272d0011ced5e5cdffe2' - '0664e447fe115dbe7a146f3d057f171731c082cbc5691b68e2c959205a39c4e5') -validpgpkeys=('2F788CDEF4181652720EF132F4926138953E5294') +sha512sums=('43a17f390881fcc8b7721b21ff8524b89992cd7fb0cfc467769bdddd0ad0c0d2536d161475a7fce6d4d3e758e017a38f671648dfaa4a345dc02127b7b192c8c0' + 'SKIP' + '8006b07a72f964da78a9ba3df7c4ead522cdca0303ab1c1d9b8224a6dd062f24e0bccf95146656e28c5ba3baa8dbc2e513309adb7486e26f1d3563eec35d0325') +validpgpkeys=('2F61B4828BBA779AECB3F32703A2A4AB1E32FD34') prepare() { cd "${srcdir}/${pkgname}-${pkgver}" From 68ebb460827c10678fcf49dbddaf03c101dc4fb9 Mon Sep 17 00:00:00 2001 From: Christian Rebischke Date: Wed, 14 Feb 2018 12:31:23 +0100 Subject: [PATCH 077/971] moved to AUR --- .SRCINFO | 20 +++++++++++++------- PKGBUILD | 33 ++++++++++++++++++++++----------- access_process_vm_h.patch | 10 ++++++++++ stp_utrace_c.patch | 11 +++++++++++ 4 files changed, 56 insertions(+), 18 deletions(-) create mode 100644 access_process_vm_h.patch create mode 100644 stp_utrace_c.patch diff --git a/.SRCINFO b/.SRCINFO index cb1003b..e3d9a1c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,19 +1,25 @@ pkgbase = systemtap - pkgdesc = SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system. - pkgver = 3.1 - pkgrel = 3 + pkgdesc = provides infrastructure to simplify the gathering of information about the running system. + pkgver = 3.2 + pkgrel = 1 url = http://sourceware.org/systemtap/ install = systemtap.install - arch = i686 arch = x86_64 + arch = i686 license = GPL makedepends = python2-setuptools + makedepends = xmlto depends = elfutils depends = nss depends = python2 - optdepends = sqlite3 - source = systemtap-3.1.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-3.1.tar.gz - sha512sums = 10019b9c2d66f3f8d6e6ce3d1f3dfe99c9e5bda9f220eb2aa885643235c270c2004528cded0e94370cc0fc0c62d8fbe96cafa7609c619a8ee498335ecd0aa41d + optdepends = sqlite3: for storing results in a database + source = systemtap-3.2.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-3.2.tar.gz + source = systemtap-3.2.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/systemtap-3.2.tar.gz.asc + source = access_process_vm_h.patch + validpgpkeys = 5D38116FA4D3A7CC77E378D37E83610126DCC2E8 + sha512sums = 6036ed1b5189fd3fcfdeeaa526a3539ac632d0b687a063b5e3424e8f613bfc2c8d079742b0262b547128e97e30e4beb61898b23761657aee519e61346ac92e94 + sha512sums = SKIP + sha512sums = f33d81d2e4d0892cb248e89eb11b76d390f78ef7e50dca8d15e0a868c1a42fb0fc40ea69d6d967ebd65dd7d7a910bf8b2faf31378dc744ef1e13aeb423a2572b pkgname = systemtap diff --git a/PKGBUILD b/PKGBUILD index bc32126..3988fea 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,20 +1,28 @@ -# $Id: PKGBUILD 219416 2017-03-27 19:17:50Z shibumi $ # Maintainer : Christian Rebischke # Contributor:dront78 pkgname=systemtap -pkgver=3.1 -pkgrel=3 -pkgdesc="SystemTap provides free software (GPL) infrastructure to simplify the gathering of information about the running Linux system." +pkgver=3.2 +pkgrel=1 +pkgdesc="provides infrastructure to simplify the gathering of information about the running system." url="http://sourceware.org/systemtap/" -arch=('i686' 'x86_64') +arch=('x86_64' 'i686') license=('GPL') depends=('elfutils' 'nss' 'python2') -makedepends=('python2-setuptools') -optdepends=('sqlite3') -source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz") -sha512sums=('10019b9c2d66f3f8d6e6ce3d1f3dfe99c9e5bda9f220eb2aa885643235c270c2004528cded0e94370cc0fc0c62d8fbe96cafa7609c619a8ee498335ecd0aa41d') +makedepends=('python2-setuptools' 'xmlto') +optdepends=('sqlite3: for storing results in a database') +source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz" + "${pkgname}-${pkgver}.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz.asc" + 'access_process_vm_h.patch') +sha512sums=('6036ed1b5189fd3fcfdeeaa526a3539ac632d0b687a063b5e3424e8f613bfc2c8d079742b0262b547128e97e30e4beb61898b23761657aee519e61346ac92e94' + 'SKIP' + 'f33d81d2e4d0892cb248e89eb11b76d390f78ef7e50dca8d15e0a868c1a42fb0fc40ea69d6d967ebd65dd7d7a910bf8b2faf31378dc744ef1e13aeb423a2572b') install='systemtap.install' +validpgpkeys=('5D38116FA4D3A7CC77E378D37E83610126DCC2E8') +prepare() { + cd "${pkgname}-${pkgver}" + patch -Np1 -i "${srcdir}/access_process_vm_h.patch" +} build() { cd "${pkgname}-${pkgver}" ./configure \ @@ -23,14 +31,17 @@ build() { --libexecdir=/usr/lib/"${pkgname}" \ --libdir=/usr/lib/"${pkgname}" \ --mandir=/usr/share/man/ \ - --localstatedir=/var/run/"${pkgname}" \ + --localstatedir=/var \ --enable-pie \ - --disable-docs + --disable-docs \ + --enable-htmldocs make } package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install + rmdir "${pkgdir}/var/run/stap-server/" + rmdir "${pkgdir}/var/run/" } diff --git a/access_process_vm_h.patch b/access_process_vm_h.patch new file mode 100644 index 0000000..7eb0fd6 --- /dev/null +++ b/access_process_vm_h.patch @@ -0,0 +1,10 @@ +--- ./runtime/linux/access_process_vm.h 2017-02-17 18:37:01.000000000 +0100 ++++ /usr/share/systemtap/runtime/linux/access_process_vm.h 2017-08-09 11:47:50.332532411 +0200 +@@ -4,6 +4,7 @@ + * we copied and pasted it here. Fortunately, everything it calls is exported. + */ + #include ++#include + #include + + static int diff --git a/stp_utrace_c.patch b/stp_utrace_c.patch new file mode 100644 index 0000000..987d7f6 --- /dev/null +++ b/stp_utrace_c.patch @@ -0,0 +1,11 @@ +--- ./runtime/stp_utrace.c 2017-02-17 18:37:01.000000000 +0100 ++++ /usr/share/systemtap/runtime/stp_utrace.c 2017-08-09 11:59:21.542501780 +0200 +@@ -1105,7 +1105,7 @@ + */ + spin_lock_irq(&target->sighand->siglock); + if (likely(task_is_stopped(target))) +- __set_task_state(target, TASK_TRACED); ++ set_current_state(TASK_TRACED); + spin_unlock_irq(&target->sighand->siglock); + } else if (utrace->resume > UTRACE_REPORT) { + utrace->resume = UTRACE_REPORT; From c012fdf64ef3a3a105a239574e241e8cbefb29ea Mon Sep 17 00:00:00 2001 From: Christian Rebischke Date: Sat, 24 Feb 2018 20:28:27 +0100 Subject: [PATCH 078/971] removed the install hooks See also: https://bugs.archlinux.org/task/56853 --- PKGBUILD | 3 ++- stp_remove_install_hooks.patch | 37 ++++++++++++++++++++++++++++++++++ systemtap.install | 14 +++++++++++++ 3 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 stp_remove_install_hooks.patch diff --git a/PKGBUILD b/PKGBUILD index 3988fea..71d0173 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -21,7 +21,8 @@ validpgpkeys=('5D38116FA4D3A7CC77E378D37E83610126DCC2E8') prepare() { cd "${pkgname}-${pkgver}" - patch -Np1 -i "${srcdir}/access_process_vm_h.patch" + patch -Np1 -i "${srcdir}/stp_remove_install_hooks.patch" + autoreconf -i } build() { cd "${pkgname}-${pkgver}" diff --git a/stp_remove_install_hooks.patch b/stp_remove_install_hooks.patch new file mode 100644 index 0000000..244ac83 --- /dev/null +++ b/stp_remove_install_hooks.patch @@ -0,0 +1,37 @@ +diff --git a/stapbpf/Makefile.am b/stapbpf/Makefile.am +index a303d25f6..703668362 100644 +--- a/stapbpf/Makefile.am ++++ b/stapbpf/Makefile.am +@@ -38,14 +38,4 @@ CLEANFILES = + BUILT_SOURCES += git_version.stamp + git_version.stamp ../git_version.h: + $(MAKE) -C .. $(notdir $@) +- +-# Why the "id -u" condition? This way, an unprivileged user can run +-# make install, and have "sudo stap ...." or "sudo stapbpf ...." work later. +-install-exec-hook: +- if [ `id -u` -eq 0 ]; then \ +- getent group stapusr >/dev/null || groupadd -g 156 -r stapusr 2>/dev/null || groupadd -r stapusr; \ +- getent group stapusr >/dev/null \ +- && chgrp stapusr "$(DESTDIR)$(bindir)/stapbpf" \ +- && chmod 04110 "$(DESTDIR)$(bindir)/stapbpf"; \ +- fi + endif +diff --git a/staprun/Makefile.am b/staprun/Makefile.am +index 4073aa01c..978d115f9 100644 +--- a/staprun/Makefile.am ++++ b/staprun/Makefile.am +@@ -68,13 +68,3 @@ CLEANFILES = + BUILT_SOURCES += git_version.stamp + git_version.stamp ../git_version.h: + $(MAKE) -C .. $(notdir $@) +- +- +-# Why the "id -u" condition? This way, an unprivileged user can run +-# make install, and have "sudo stap ...." or "sudo staprun ...." work later. +-install-exec-hook: +- if [ `id -u` -eq 0 ]; then \ +- getent group stapusr >/dev/null || groupadd -g 156 -r stapusr 2>/dev/null || groupadd -r stapusr; \ +- getent group stapusr >/dev/null && chgrp stapusr "$(DESTDIR)$(bindir)/staprun"; \ +- chmod 04110 "$(DESTDIR)$(bindir)/staprun"; \ +- fi diff --git a/systemtap.install b/systemtap.install index d168c58..bde565f 100644 --- a/systemtap.install +++ b/systemtap.install @@ -1,4 +1,18 @@ post_install() { + getent group stapusr >/dev/null || groupadd -g 156 -r stapusr 2>/dev/null || groupadd -r stapusr + getent group stapsys >/dev/null || groupadd -g 157 -r stapsys 2>/dev/null || groupadd -r stapsys + getent group stapdev >/dev/null || groupadd -g 158 -r stapdev 2>/dev/null || groupadd -r stapdev + + getent group stapusr >/dev/null && chgrp stapusr /usr/bin/stapbpf + chmod 04110 /usr/bin/stapbpf + + getent group stapusr >/dev/null && chgrp stapusr /usr/bin/staprun + chmod 04110 /usr/bin/staprun + echo "CONFIG_DEBUG_INFO is disabled on default. You need to recompile" echo "the kernel with CONFIG_DEBUG_INFO enabled." } + +post_upgrade() { + post_install $1 +} From fd091df49191c820a85c9b0696e1243b91d8cf60 Mon Sep 17 00:00:00 2001 From: Christian Rebischke Date: Tue, 27 Feb 2018 18:28:45 +0100 Subject: [PATCH 079/971] added the correct patch --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index e3d9a1c..f0c5f95 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = systemtap pkgdesc = provides infrastructure to simplify the gathering of information about the running system. pkgver = 3.2 - pkgrel = 1 + pkgrel = 2 url = http://sourceware.org/systemtap/ install = systemtap.install arch = x86_64 @@ -15,7 +15,7 @@ pkgbase = systemtap optdepends = sqlite3: for storing results in a database source = systemtap-3.2.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-3.2.tar.gz source = systemtap-3.2.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/systemtap-3.2.tar.gz.asc - source = access_process_vm_h.patch + source = stp_remove_install_hooks.patch validpgpkeys = 5D38116FA4D3A7CC77E378D37E83610126DCC2E8 sha512sums = 6036ed1b5189fd3fcfdeeaa526a3539ac632d0b687a063b5e3424e8f613bfc2c8d079742b0262b547128e97e30e4beb61898b23761657aee519e61346ac92e94 sha512sums = SKIP diff --git a/PKGBUILD b/PKGBUILD index 71d0173..7d8e28c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor:dront78 pkgname=systemtap pkgver=3.2 -pkgrel=1 +pkgrel=2 pkgdesc="provides infrastructure to simplify the gathering of information about the running system." url="http://sourceware.org/systemtap/" arch=('x86_64' 'i686') @@ -12,7 +12,7 @@ makedepends=('python2-setuptools' 'xmlto') optdepends=('sqlite3: for storing results in a database') source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz" "${pkgname}-${pkgver}.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz.asc" - 'access_process_vm_h.patch') + 'stp_remove_install_hooks.patch') sha512sums=('6036ed1b5189fd3fcfdeeaa526a3539ac632d0b687a063b5e3424e8f613bfc2c8d079742b0262b547128e97e30e4beb61898b23761657aee519e61346ac92e94' 'SKIP' 'f33d81d2e4d0892cb248e89eb11b76d390f78ef7e50dca8d15e0a868c1a42fb0fc40ea69d6d967ebd65dd7d7a910bf8b2faf31378dc744ef1e13aeb423a2572b') From dda4d2e8984e62619e278b196fcd150efb8d485f Mon Sep 17 00:00:00 2001 From: Christian Rebischke Date: Wed, 28 Feb 2018 14:13:07 +0100 Subject: [PATCH 080/971] new hashes --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index f0c5f95..6761d2f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -19,7 +19,7 @@ pkgbase = systemtap validpgpkeys = 5D38116FA4D3A7CC77E378D37E83610126DCC2E8 sha512sums = 6036ed1b5189fd3fcfdeeaa526a3539ac632d0b687a063b5e3424e8f613bfc2c8d079742b0262b547128e97e30e4beb61898b23761657aee519e61346ac92e94 sha512sums = SKIP - sha512sums = f33d81d2e4d0892cb248e89eb11b76d390f78ef7e50dca8d15e0a868c1a42fb0fc40ea69d6d967ebd65dd7d7a910bf8b2faf31378dc744ef1e13aeb423a2572b + sha512sums = 1d2758e9f875e06d08d37679587454fb43e025aa83ceeb405b1bc8d3277476502f2d67cf9e8383cc4c63ae545d7d0e9ebaab814f880b2f53bba47bef4afcd537 pkgname = systemtap diff --git a/PKGBUILD b/PKGBUILD index 7d8e28c..1757e2c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -15,7 +15,7 @@ source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/relea 'stp_remove_install_hooks.patch') sha512sums=('6036ed1b5189fd3fcfdeeaa526a3539ac632d0b687a063b5e3424e8f613bfc2c8d079742b0262b547128e97e30e4beb61898b23761657aee519e61346ac92e94' 'SKIP' - 'f33d81d2e4d0892cb248e89eb11b76d390f78ef7e50dca8d15e0a868c1a42fb0fc40ea69d6d967ebd65dd7d7a910bf8b2faf31378dc744ef1e13aeb423a2572b') + '1d2758e9f875e06d08d37679587454fb43e025aa83ceeb405b1bc8d3277476502f2d67cf9e8383cc4c63ae545d7d0e9ebaab814f880b2f53bba47bef4afcd537') install='systemtap.install' validpgpkeys=('5D38116FA4D3A7CC77E378D37E83610126DCC2E8') From 3f12ba297661373325f88bf12ee0c447a344de8e Mon Sep 17 00:00:00 2001 From: graysky Date: Sat, 21 Apr 2018 20:51:17 -0400 Subject: [PATCH 081/971] Update to 2018.2.010-1 --- .SRCINFO | 8 ++++---- PKGBUILD | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index fb16542..45317ed 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,15 +1,15 @@ # Generated by mksrcinfo v8 -# Thu Dec 14 20:36:46 UTC 2017 +# Sun Apr 22 00:51:17 UTC 2018 pkgbase = linpack - pkgver = 2018.0.006 + pkgver = 2018.2.010 pkgrel = 1 url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download arch = x86_64 license = custom - source = http://registrationcenter-download.intel.com/akdlm/irc_nas/9752/l_mklb_p_2018.0.006.tgz + source = http://registrationcenter-download.intel.com/akdlm/irc_nas/9752/l_mklb_p_2018.2.010.tgz source = linpack.conf source = linpack_runme_xeon64 - sha256sums = 75eca690d91ef065748218f105c2c47b902f1e113b64a0c3f6a8075c80248b95 + sha256sums = aedbf2b27c8a49294239f31867c9e8a87494c079a8732c8def851499eb13b54b sha256sums = d7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254 sha256sums = 369736f6074ab579a1df38ba09be4784547833be020f13d1b60374f64ca5d5f6 diff --git a/PKGBUILD b/PKGBUILD index 4cfe56d..46e9e35 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Contributor: graysky pkgname=('linpack') -pkgver=2018.0.006 +pkgver=2018.2.010 _math_kernel_lib=2018 _url=9752 pkgrel=1 @@ -9,7 +9,7 @@ license=('custom') url="http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download" source=("http://registrationcenter-download.intel.com/akdlm/irc_nas/$_url/l_mklb_p_$pkgver.tgz" 'linpack.conf' 'linpack_runme_xeon64') -sha256sums=('75eca690d91ef065748218f105c2c47b902f1e113b64a0c3f6a8075c80248b95' +sha256sums=('aedbf2b27c8a49294239f31867c9e8a87494c079a8732c8def851499eb13b54b' 'd7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254' '369736f6074ab579a1df38ba09be4784547833be020f13d1b60374f64ca5d5f6') From 3f42b71f8f650968402fb98f146450a20404d225 Mon Sep 17 00:00:00 2001 From: Vincent Kobel Date: Thu, 3 May 2018 17:02:03 +0200 Subject: [PATCH 082/971] init --- .SRCINFO | 15 +++++++++++++++ PKGBUILD | 25 +++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..5c35a39 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,15 @@ +pkgbase = gvisor-git + pkgdesc = User-space kernel, sandboxed container runtime + pkgver = 26.4603f97 + pkgrel = 1 + url = https://github.com/google/gvisor + arch = x86_64 + license = Apache-2.0 + makedepends = bazel + makedepends = python + provides = runsc + source = git+https://github.com/vkobel/gvisor.git + sha256sums = SKIP + +pkgname = gvisor-git + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..2a9ca1d --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,25 @@ +# Maintainer: Vincent Kobel (v@kobl.one) + +_pkgname='gvisor' +pkgname="${_pkgname}-git" +pkgver=26.4603f97 +pkgrel=1 +pkgdesc="User-space kernel, sandboxed container runtime" +arch=('x86_64') +url='https://github.com/google/gvisor' +license=('Apache-2.0') +sha256sums=('SKIP') +source=(git+https://github.com/vkobel/gvisor.git) +provides=('runsc') +makedepends=('bazel' 'python') + +build() { + cd "${srcdir}/${_pkgname}" + bazel build runsc +} + +package() { + cd "${srcdir}/${_pkgname}" + install -D ./bazel-bin/runsc/linux_amd64_pure_stripped/runsc "${pkgdir}/usr/bin/runsc" +} + From daf5b7300142a129c13bb715a489c1ac9c301d33 Mon Sep 17 00:00:00 2001 From: Vincent Kobel Date: Thu, 3 May 2018 17:07:25 +0200 Subject: [PATCH 083/971] updated source --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 5c35a39..f1c80b6 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -8,7 +8,7 @@ pkgbase = gvisor-git makedepends = bazel makedepends = python provides = runsc - source = git+https://github.com/vkobel/gvisor.git + source = git+https://github.com/vkobel/gvisor sha256sums = SKIP pkgname = gvisor-git diff --git a/PKGBUILD b/PKGBUILD index 2a9ca1d..10f02f8 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -9,7 +9,7 @@ arch=('x86_64') url='https://github.com/google/gvisor' license=('Apache-2.0') sha256sums=('SKIP') -source=(git+https://github.com/vkobel/gvisor.git) +source=("git+https://github.com/vkobel/${_pkgname}") provides=('runsc') makedepends=('bazel' 'python') From b8e7114be9eecc0d559e3e9d8ed7e9b14aa9a6a7 Mon Sep 17 00:00:00 2001 From: Vincent Kobel Date: Fri, 4 May 2018 09:39:17 +0200 Subject: [PATCH 084/971] disable stack protection + update according to base repo --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index f1c80b6..6ab10d2 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = gvisor-git pkgdesc = User-space kernel, sandboxed container runtime - pkgver = 26.4603f97 - pkgrel = 1 + pkgver = 37.af724ec + pkgrel = 2 url = https://github.com/google/gvisor arch = x86_64 license = Apache-2.0 diff --git a/PKGBUILD b/PKGBUILD index 10f02f8..4510875 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,8 +2,8 @@ _pkgname='gvisor' pkgname="${_pkgname}-git" -pkgver=26.4603f97 -pkgrel=1 +pkgver=37.af724ec +pkgrel=2 pkgdesc="User-space kernel, sandboxed container runtime" arch=('x86_64') url='https://github.com/google/gvisor' From 712dc84b0a2f5f7b1a6804793ebadfcfefbe2dfe Mon Sep 17 00:00:00 2001 From: Vincent Kobel Date: Sat, 5 May 2018 11:13:02 +0200 Subject: [PATCH 085/971] change base repo now that google fixed compile flags --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 6ab10d2..bdce9ef 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = User-space kernel, sandboxed container runtime - pkgver = 37.af724ec + pkgver = 42.b5a0667 pkgrel = 2 url = https://github.com/google/gvisor arch = x86_64 @@ -8,7 +8,7 @@ pkgbase = gvisor-git makedepends = bazel makedepends = python provides = runsc - source = git+https://github.com/vkobel/gvisor + source = git+https://github.com/google/gvisor sha256sums = SKIP pkgname = gvisor-git diff --git a/PKGBUILD b/PKGBUILD index 4510875..a0e8bfb 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,14 +2,14 @@ _pkgname='gvisor' pkgname="${_pkgname}-git" -pkgver=37.af724ec +pkgver=42.b5a0667 pkgrel=2 pkgdesc="User-space kernel, sandboxed container runtime" arch=('x86_64') url='https://github.com/google/gvisor' license=('Apache-2.0') sha256sums=('SKIP') -source=("git+https://github.com/vkobel/${_pkgname}") +source=("git+https://github.com/google/${_pkgname}") provides=('runsc') makedepends=('bazel' 'python') From 8165a076e49fe479148cb52e50089aa50ead390f Mon Sep 17 00:00:00 2001 From: Vincent Kobel Date: Sat, 5 May 2018 11:32:57 +0200 Subject: [PATCH 086/971] auto pkgver --- .SRCINFO | 4 ++-- PKGBUILD | 9 +++++++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index bdce9ef..307dc91 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = gvisor-git pkgdesc = User-space kernel, sandboxed container runtime - pkgver = 42.b5a0667 - pkgrel = 2 + pkgver = r42.b5a0667 + pkgrel = 1 url = https://github.com/google/gvisor arch = x86_64 license = Apache-2.0 diff --git a/PKGBUILD b/PKGBUILD index a0e8bfb..6f0cb47 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,8 +2,8 @@ _pkgname='gvisor' pkgname="${_pkgname}-git" -pkgver=42.b5a0667 -pkgrel=2 +pkgver=r42.b5a0667 +pkgrel=1 pkgdesc="User-space kernel, sandboxed container runtime" arch=('x86_64') url='https://github.com/google/gvisor' @@ -13,6 +13,11 @@ source=("git+https://github.com/google/${_pkgname}") provides=('runsc') makedepends=('bazel' 'python') +pkgver() { + cd "${_pkgname}" + printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" +} + build() { cd "${srcdir}/${_pkgname}" bazel build runsc From d3ab6851523f5ccdb450268a94ec40de169a048b Mon Sep 17 00:00:00 2001 From: Sander Boom Date: Tue, 8 May 2018 09:09:52 +0200 Subject: [PATCH 087/971] Updated to build 3170 --- .SRCINFO | 12 ++++++------ PKGBUILD | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 239d3e4..f1779d9 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ # Generated by mksrcinfo v8 -# Thu Nov 9 14:21:58 UTC 2017 +# Tue May 8 07:09:02 UTC 2018 pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 3.3143 + pkgver = 3.3170 pkgrel = 1 url = http://www.sublimetext.com/3 install = sublime-text-dev.install @@ -16,10 +16,10 @@ pkgbase = sublime-text-dev conflicts = sublime-text-nightly source = sublime_text_3.desktop sha256sums = f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866 - source_i686 = https://download.sublimetext.com/sublime_text_3_build_3143_x32.tar.bz2 - sha256sums_i686 = b1ecc4b70d66b9236b876f1913c4094b6dd51436e45c74883ba70a1939e9f735 - source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3143_x64.tar.bz2 - sha256sums_x86_64 = 9ce120c4f28b239d3b3860ee672d9d87e1397a4c08ee6c4e62fd6e261a296519 + source_i686 = https://download.sublimetext.com/sublime_text_3_build_3170_x32.tar.bz2 + sha256sums_i686 = efbb5095995f9acc7df620325d52070fb4fd04a086c66082527b5f8bab489412 + source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3170_x64.tar.bz2 + sha256sums_x86_64 = fdcfc110626e89c5c40a6c38b700a40f8d608c2cdd1cd4fef63263004096dfea pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 99ccc05..52ea2ee 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=3.3143 +pkgver=3.3170 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('i686' 'x86_64') @@ -19,8 +19,8 @@ source_i686=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_ source_x86_64=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2") sha256sums=('f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866') -sha256sums_i686=('b1ecc4b70d66b9236b876f1913c4094b6dd51436e45c74883ba70a1939e9f735') -sha256sums_x86_64=('9ce120c4f28b239d3b3860ee672d9d87e1397a4c08ee6c4e62fd6e261a296519') +sha256sums_i686=('efbb5095995f9acc7df620325d52070fb4fd04a086c66082527b5f8bab489412') +sha256sums_x86_64=('fdcfc110626e89c5c40a6c38b700a40f8d608c2cdd1cd4fef63263004096dfea') package() { cd "${srcdir}" From 4d1429eac5cc3497e7d6e053fa5c8cf3121db9cd Mon Sep 17 00:00:00 2001 From: Vincent Kobel Date: Tue, 8 May 2018 09:17:36 +0200 Subject: [PATCH 088/971] updated base --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 307dc91..5f0a911 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = gvisor-git pkgdesc = User-space kernel, sandboxed container runtime - pkgver = r42.b5a0667 - pkgrel = 1 + pkgver = r48 + pkgrel = 2 url = https://github.com/google/gvisor arch = x86_64 license = Apache-2.0 diff --git a/PKGBUILD b/PKGBUILD index 6f0cb47..74d57e1 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,8 +2,8 @@ _pkgname='gvisor' pkgname="${_pkgname}-git" -pkgver=r42.b5a0667 -pkgrel=1 +pkgver=r48 +pkgrel=2 pkgdesc="User-space kernel, sandboxed container runtime" arch=('x86_64') url='https://github.com/google/gvisor' From 32008b8ea96df4acb700d55a6df3efd7da918d39 Mon Sep 17 00:00:00 2001 From: Vincent Kobel Date: Tue, 8 May 2018 09:21:30 +0200 Subject: [PATCH 089/971] updated base --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 5f0a911..48b64cc 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = gvisor-git pkgdesc = User-space kernel, sandboxed container runtime - pkgver = r48 - pkgrel = 2 + pkgver = r48.5d58a5c + pkgrel = 1 url = https://github.com/google/gvisor arch = x86_64 license = Apache-2.0 diff --git a/PKGBUILD b/PKGBUILD index 74d57e1..7bb81f3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,8 +2,8 @@ _pkgname='gvisor' pkgname="${_pkgname}-git" -pkgver=r48 -pkgrel=2 +pkgver=r48.5d58a5c +pkgrel=1 pkgdesc="User-space kernel, sandboxed container runtime" arch=('x86_64') url='https://github.com/google/gvisor' From bd49a27c96103916009bcbc81dd5b633e30a7102 Mon Sep 17 00:00:00 2001 From: Vincent Kobel Date: Wed, 9 May 2018 08:51:15 +0200 Subject: [PATCH 090/971] updated base --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 48b64cc..709853f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = User-space kernel, sandboxed container runtime - pkgver = r48.5d58a5c + pkgver = r59.209c9e3 pkgrel = 1 url = https://github.com/google/gvisor arch = x86_64 diff --git a/PKGBUILD b/PKGBUILD index 7bb81f3..349537e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ _pkgname='gvisor' pkgname="${_pkgname}-git" -pkgver=r48.5d58a5c +pkgver=r59.209c9e3 pkgrel=1 pkgdesc="User-space kernel, sandboxed container runtime" arch=('x86_64') From 448b6b00a7b616ebe989fd53a332f152c08edf79 Mon Sep 17 00:00:00 2001 From: Vincent Kobel Date: Fri, 11 May 2018 08:15:59 +0200 Subject: [PATCH 091/971] updated base --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 709853f..994760e 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = User-space kernel, sandboxed container runtime - pkgver = r59.209c9e3 + pkgver = r74.c8bca2f pkgrel = 1 url = https://github.com/google/gvisor arch = x86_64 diff --git a/PKGBUILD b/PKGBUILD index 349537e..8f26d2c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ _pkgname='gvisor' pkgname="${_pkgname}-git" -pkgver=r59.209c9e3 +pkgver=r74.c8bca2f pkgrel=1 pkgdesc="User-space kernel, sandboxed container runtime" arch=('x86_64') From db68a804773d8090074e41c95ee53aa65304b826 Mon Sep 17 00:00:00 2001 From: Vincent Kobel Date: Sat, 12 May 2018 09:44:15 +0200 Subject: [PATCH 092/971] add git to makedepends --- .SRCINFO | 3 ++- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 994760e..5c52a3d 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,10 +1,11 @@ pkgbase = gvisor-git pkgdesc = User-space kernel, sandboxed container runtime - pkgver = r74.c8bca2f + pkgver = r80.275a7b6 pkgrel = 1 url = https://github.com/google/gvisor arch = x86_64 license = Apache-2.0 + makedepends = git makedepends = bazel makedepends = python provides = runsc diff --git a/PKGBUILD b/PKGBUILD index 8f26d2c..a0f6104 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ _pkgname='gvisor' pkgname="${_pkgname}-git" -pkgver=r74.c8bca2f +pkgver=r80.275a7b6 pkgrel=1 pkgdesc="User-space kernel, sandboxed container runtime" arch=('x86_64') @@ -11,7 +11,7 @@ license=('Apache-2.0') sha256sums=('SKIP') source=("git+https://github.com/google/${_pkgname}") provides=('runsc') -makedepends=('bazel' 'python') +makedepends=('git' 'bazel' 'python') pkgver() { cd "${_pkgname}" From f81aa8d9cb377418315f4718004069efabdc7871 Mon Sep 17 00:00:00 2001 From: Sander Boom Date: Mon, 14 May 2018 08:39:32 +0200 Subject: [PATCH 093/971] Updated to build 3176 --- .SRCINFO | 12 ++++++------ PKGBUILD | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index f1779d9..bca8772 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ # Generated by mksrcinfo v8 -# Tue May 8 07:09:02 UTC 2018 +# Mon May 14 06:39:11 UTC 2018 pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 3.3170 + pkgver = 3.3176 pkgrel = 1 url = http://www.sublimetext.com/3 install = sublime-text-dev.install @@ -16,10 +16,10 @@ pkgbase = sublime-text-dev conflicts = sublime-text-nightly source = sublime_text_3.desktop sha256sums = f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866 - source_i686 = https://download.sublimetext.com/sublime_text_3_build_3170_x32.tar.bz2 - sha256sums_i686 = efbb5095995f9acc7df620325d52070fb4fd04a086c66082527b5f8bab489412 - source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3170_x64.tar.bz2 - sha256sums_x86_64 = fdcfc110626e89c5c40a6c38b700a40f8d608c2cdd1cd4fef63263004096dfea + source_i686 = https://download.sublimetext.com/sublime_text_3_build_3176_x32.tar.bz2 + sha256sums_i686 = 43e49dfdbea61cc0a1b6ebcdf0ff522d8531e6998e05f4756ba4218446f85a21 + source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3176_x64.tar.bz2 + sha256sums_x86_64 = 74f17c1aec4ddec9d4d4c39f5aec0414a4755d407a05efa571e8892e0b9cf732 pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 52ea2ee..6d10d13 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=3.3170 +pkgver=3.3176 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('i686' 'x86_64') @@ -19,8 +19,8 @@ source_i686=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_ source_x86_64=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2") sha256sums=('f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866') -sha256sums_i686=('efbb5095995f9acc7df620325d52070fb4fd04a086c66082527b5f8bab489412') -sha256sums_x86_64=('fdcfc110626e89c5c40a6c38b700a40f8d608c2cdd1cd4fef63263004096dfea') +sha256sums_i686=('43e49dfdbea61cc0a1b6ebcdf0ff522d8531e6998e05f4756ba4218446f85a21') +sha256sums_x86_64=('74f17c1aec4ddec9d4d4c39f5aec0414a4755d407a05efa571e8892e0b9cf732') package() { cd "${srcdir}" From a2db70026d5b044f8110c7b39591cca716ba536a Mon Sep 17 00:00:00 2001 From: George Angelopoulos Date: Sun, 3 Jun 2018 16:35:39 +0200 Subject: [PATCH 094/971] backport gcc8 fix to 3.2 --- .SRCINFO | 7 +- PKGBUILD | 9 +- fixes-for-gcc-8.patch | 193 ++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 204 insertions(+), 5 deletions(-) create mode 100644 fixes-for-gcc-8.patch diff --git a/.SRCINFO b/.SRCINFO index 6761d2f..c5151c6 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,9 @@ +# Generated by mksrcinfo v8 +# Sun Jun 3 14:33:59 UTC 2018 pkgbase = systemtap pkgdesc = provides infrastructure to simplify the gathering of information about the running system. pkgver = 3.2 - pkgrel = 2 + pkgrel = 3 url = http://sourceware.org/systemtap/ install = systemtap.install arch = x86_64 @@ -16,10 +18,11 @@ pkgbase = systemtap source = systemtap-3.2.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-3.2.tar.gz source = systemtap-3.2.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/systemtap-3.2.tar.gz.asc source = stp_remove_install_hooks.patch - validpgpkeys = 5D38116FA4D3A7CC77E378D37E83610126DCC2E8 + source = fixes-for-gcc-8.patch sha512sums = 6036ed1b5189fd3fcfdeeaa526a3539ac632d0b687a063b5e3424e8f613bfc2c8d079742b0262b547128e97e30e4beb61898b23761657aee519e61346ac92e94 sha512sums = SKIP sha512sums = 1d2758e9f875e06d08d37679587454fb43e025aa83ceeb405b1bc8d3277476502f2d67cf9e8383cc4c63ae545d7d0e9ebaab814f880b2f53bba47bef4afcd537 + sha512sums = 970d83ace43909e5a1bfc4112d78dd913af6d59e4b8dc8c4461370b022092b0cdb6830427b52bcf5b7409ff6d7c79dab778e53398ba65de71bd4a270c66a2d3a pkgname = systemtap diff --git a/PKGBUILD b/PKGBUILD index 1757e2c..77ca142 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor:dront78 pkgname=systemtap pkgver=3.2 -pkgrel=2 +pkgrel=3 pkgdesc="provides infrastructure to simplify the gathering of information about the running system." url="http://sourceware.org/systemtap/" arch=('x86_64' 'i686') @@ -12,16 +12,19 @@ makedepends=('python2-setuptools' 'xmlto') optdepends=('sqlite3: for storing results in a database') source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz" "${pkgname}-${pkgver}.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz.asc" - 'stp_remove_install_hooks.patch') + 'stp_remove_install_hooks.patch' + 'fixes-for-gcc-8.patch') sha512sums=('6036ed1b5189fd3fcfdeeaa526a3539ac632d0b687a063b5e3424e8f613bfc2c8d079742b0262b547128e97e30e4beb61898b23761657aee519e61346ac92e94' 'SKIP' - '1d2758e9f875e06d08d37679587454fb43e025aa83ceeb405b1bc8d3277476502f2d67cf9e8383cc4c63ae545d7d0e9ebaab814f880b2f53bba47bef4afcd537') + '1d2758e9f875e06d08d37679587454fb43e025aa83ceeb405b1bc8d3277476502f2d67cf9e8383cc4c63ae545d7d0e9ebaab814f880b2f53bba47bef4afcd537' + '970d83ace43909e5a1bfc4112d78dd913af6d59e4b8dc8c4461370b022092b0cdb6830427b52bcf5b7409ff6d7c79dab778e53398ba65de71bd4a270c66a2d3a') install='systemtap.install' validpgpkeys=('5D38116FA4D3A7CC77E378D37E83610126DCC2E8') prepare() { cd "${pkgname}-${pkgver}" patch -Np1 -i "${srcdir}/stp_remove_install_hooks.patch" + patch -Np1 -i "${srcdir}/fixes-for-gcc-8.patch" autoreconf -i } build() { diff --git a/fixes-for-gcc-8.patch b/fixes-for-gcc-8.patch new file mode 100644 index 0000000..464be3f --- /dev/null +++ b/fixes-for-gcc-8.patch @@ -0,0 +1,193 @@ +diff --git a/includes/sys/sdt.h b/includes/sys/sdt.h +index 940f74483..c0c5a492c 100644 +--- a/includes/sys/sdt.h ++++ b/includes/sys/sdt.h +@@ -119,8 +119,8 @@ struct __sdt_type + + #define __SDT_ALWAYS_SIGNED(T) \ + template<> struct __sdt_type { static const bool __sdt_signed = true; }; +-#define __SDT_COND_SIGNED(T) \ +-template<> struct __sdt_type { static const bool __sdt_signed = ((T)(-1) < 1); }; ++#define __SDT_COND_SIGNED(T,CT) \ ++template<> struct __sdt_type { static const bool __sdt_signed = ((CT)(-1) < 1); }; + __SDT_ALWAYS_SIGNED(signed char) + __SDT_ALWAYS_SIGNED(short) + __SDT_ALWAYS_SIGNED(int) +@@ -141,14 +141,14 @@ __SDT_ALWAYS_SIGNED(const volatile short) + __SDT_ALWAYS_SIGNED(const volatile int) + __SDT_ALWAYS_SIGNED(const volatile long) + __SDT_ALWAYS_SIGNED(const volatile long long) +-__SDT_COND_SIGNED(char) +-__SDT_COND_SIGNED(wchar_t) +-__SDT_COND_SIGNED(volatile char) +-__SDT_COND_SIGNED(volatile wchar_t) +-__SDT_COND_SIGNED(const char) +-__SDT_COND_SIGNED(const wchar_t) +-__SDT_COND_SIGNED(const volatile char) +-__SDT_COND_SIGNED(const volatile wchar_t) ++__SDT_COND_SIGNED(char, char) ++__SDT_COND_SIGNED(wchar_t, wchar_t) ++__SDT_COND_SIGNED(volatile char, char) ++__SDT_COND_SIGNED(volatile wchar_t, wchar_t) ++__SDT_COND_SIGNED(const char, char) ++__SDT_COND_SIGNED(const wchar_t, wchar_t) ++__SDT_COND_SIGNED(const volatile char, char) ++__SDT_COND_SIGNED(const volatile wchar_t, wchar_t) + #if defined (__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)) + /* __SDT_COND_SIGNED(char16_t) */ + /* __SDT_COND_SIGNED(char32_t) */ +diff --git a/stap-serverd.cxx b/stap-serverd.cxx +index b8f70114c..063c3c587 100644 +--- a/stap-serverd.cxx ++++ b/stap-serverd.cxx +@@ -1607,6 +1607,7 @@ generate_mok(string &mok_fingerprint) + char tmpdir[PATH_MAX] = { '\0' }; + string public_cert_path, private_cert_path, destdir; + mode_t old_umask; ++ int retlen; + + mok_fingerprint.clear (); + +@@ -1631,7 +1632,14 @@ generate_mok(string &mok_fingerprint) + } + + // Make a temporary directory to store results in. +- snprintf (tmpdir, PATH_MAX, "%s/stap-server.XXXXXX", mok_path.c_str ()); ++ retlen = snprintf (tmpdir, PATH_MAX, "%s/stap-server.XXXXXX", mok_path.c_str ()); ++ if (retlen < 0 || retlen >= PATH_MAX) ++ { ++ server_error (_F("Could not create %s name", "temporary directory")); ++ tmpdir[0] = '\0'; ++ goto cleanup; ++ } ++ + if (mkdtemp (tmpdir) == NULL) + { + server_error (_F("Could not create temporary directory %s: %s", tmpdir, +@@ -1704,6 +1712,7 @@ handleRequest (const string &requestDirName, const string &responseDirName, stri + unsigned u; + unsigned i; + FILE* f; ++ int retlen; + + // Save the server version. Do this early, so the client knows what version of the server + // it is dealing with, even if the request is not fully completed. +@@ -1782,7 +1791,12 @@ handleRequest (const string &requestDirName, const string &responseDirName, stri + struct stat st; + char *arg; + +- snprintf (stapargfile, PATH_MAX, "%s/argv%d", requestDirName.c_str (), i); ++ retlen = snprintf (stapargfile, PATH_MAX, "%s/argv%d", requestDirName.c_str (), i); ++ if (retlen < 0 || retlen >= PATH_MAX) ++ { ++ server_error (_F("Error creating %s name", "path")); ++ return; ++ } + + rc = stat(stapargfile, & st); + if (rc) break; +@@ -1888,7 +1902,15 @@ handleRequest (const string &requestDirName, const string &responseDirName, stri + { + glob_t globber; + char pattern[PATH_MAX]; +- snprintf (pattern, PATH_MAX, "%s/*.ko", new_staptmpdir.c_str()); ++ int retlen; ++ ++ retlen = snprintf (pattern, PATH_MAX, "%s/*.ko", new_staptmpdir.c_str()); ++ if (retlen < 0 || retlen >= PATH_MAX) ++ { ++ server_error (_F("Error creating %s name", "pattern")); ++ return; ++ } ++ + rc = glob (pattern, GLOB_ERR, NULL, &globber); + if (rc) + server_error (_F("Unable to find a module in %s", new_staptmpdir.c_str())); +@@ -2164,6 +2186,7 @@ handle_connection (void *arg) + copy for each connection.*/ + vector argv; + PRInt32 bytesRead; ++ int retlen; + + /* Detatch to avoid a memory leak */ + if(max_threads > 0) +@@ -2213,7 +2236,13 @@ handle_connection (void *arg) + #endif + + secStatus = SECFailure; +- snprintf(tmpdir, PATH_MAX, "%s/stap-server.XXXXXX", getenv("TMPDIR") ?: "/tmp"); ++ retlen = snprintf(tmpdir, PATH_MAX, "%s/stap-server.XXXXXX", getenv("TMPDIR") ?: "/tmp"); ++ if (retlen < 0 || retlen >= PATH_MAX) ++ { ++ server_error (_F("Error creating %s name", "temporary directory")); ++ tmpdir[0]=0; /* prevent /bin/rm */ ++ goto cleanup; ++ } + rc1 = mkdtemp(tmpdir); + if (! rc1) + { +@@ -2223,9 +2252,20 @@ handle_connection (void *arg) + } + + /* Create a temporary files names and directories. */ +- snprintf (requestFileName, PATH_MAX, "%s/request.zip", tmpdir); ++ retlen = snprintf (requestFileName, PATH_MAX, "%s/request.zip", tmpdir); ++ if (retlen < 0 || retlen >= PATH_MAX) ++ { ++ server_error (_F("Error creating %s name", "request.zip path")); ++ goto cleanup; ++ } ++ ++ retlen = snprintf (requestDirName, PATH_MAX, "%s/request", tmpdir); ++ if (retlen < 0 || retlen >= PATH_MAX) ++ { ++ server_error (_F("Error creating %s name", "request directory path")); ++ goto cleanup; ++ } + +- snprintf (requestDirName, PATH_MAX, "%s/request", tmpdir); + rc = mkdir(requestDirName, 0700); + if (rc) + { +@@ -2233,7 +2273,13 @@ handle_connection (void *arg) + goto cleanup; + } + +- snprintf (responseDirName, PATH_MAX, "%s/response", tmpdir); ++ retlen = snprintf (responseDirName, PATH_MAX, "%s/response", tmpdir); ++ if (retlen < 0 || retlen >= PATH_MAX) ++ { ++ server_error (_F("Error creating %s name", "response directory path")); ++ goto cleanup; ++ } ++ + rc = mkdir(responseDirName, 0700); + if (rc) + { +@@ -2243,7 +2289,12 @@ handle_connection (void *arg) + // Set this early, since it gets used for errors to be returned to the client. + stapstderr = string(responseDirName) + "/stderr"; + +- snprintf (responseFileName, PATH_MAX, "%s/response.zip", tmpdir); ++ retlen = snprintf (responseFileName, PATH_MAX, "%s/response.zip", tmpdir); ++ if (retlen < 0 || retlen >= PATH_MAX) ++ { ++ server_error (_F("Error creating %s name", "response.zip path")); ++ goto cleanup; ++ } + + /* Read data from the socket. + * If the user is requesting/requiring authentication, authenticate +diff --git a/translate.cxx b/translate.cxx +index 1240a80ec..4ade06fdd 100644 +--- a/translate.cxx ++++ b/translate.cxx +@@ -7860,7 +7860,7 @@ translate_pass (systemtap_session& s) + if (versions.size() >= 3 && s.verbose > 1) + clog << _F("ignoring extra parts of compat version: %s", s.compatible.c_str()) << endl; + } +- catch (const runtime_error) ++ catch (const runtime_error&) + { + throw SEMANTIC_ERROR(_F("parse error in compatibility version: %s", s.compatible.c_str())); + } From 0512430e396ae40b3289c43ee75b86910fd4b050 Mon Sep 17 00:00:00 2001 From: George Angelopoulos Date: Sun, 3 Jun 2018 19:06:43 +0200 Subject: [PATCH 095/971] backport timer fix for >=4.15 kernels --- .SRCINFO | 6 +- PKGBUILD | 11 +- fix-timers-for-4.15-kernel.patch | 243 +++++++++++++++++++++++++++++++ 3 files changed, 255 insertions(+), 5 deletions(-) create mode 100644 fix-timers-for-4.15-kernel.patch diff --git a/.SRCINFO b/.SRCINFO index c5151c6..3ef0e36 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,9 +1,9 @@ # Generated by mksrcinfo v8 -# Sun Jun 3 14:33:59 UTC 2018 +# Sun Jun 3 17:06:32 UTC 2018 pkgbase = systemtap pkgdesc = provides infrastructure to simplify the gathering of information about the running system. pkgver = 3.2 - pkgrel = 3 + pkgrel = 4 url = http://sourceware.org/systemtap/ install = systemtap.install arch = x86_64 @@ -19,10 +19,12 @@ pkgbase = systemtap source = systemtap-3.2.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/systemtap-3.2.tar.gz.asc source = stp_remove_install_hooks.patch source = fixes-for-gcc-8.patch + source = fix-timers-for-4.15-kernel.patch sha512sums = 6036ed1b5189fd3fcfdeeaa526a3539ac632d0b687a063b5e3424e8f613bfc2c8d079742b0262b547128e97e30e4beb61898b23761657aee519e61346ac92e94 sha512sums = SKIP sha512sums = 1d2758e9f875e06d08d37679587454fb43e025aa83ceeb405b1bc8d3277476502f2d67cf9e8383cc4c63ae545d7d0e9ebaab814f880b2f53bba47bef4afcd537 sha512sums = 970d83ace43909e5a1bfc4112d78dd913af6d59e4b8dc8c4461370b022092b0cdb6830427b52bcf5b7409ff6d7c79dab778e53398ba65de71bd4a270c66a2d3a + sha512sums = 3cbf261cf34df23454e0a9aa4566664241b8bcf4b44a28617cce483d0f24632b9fcd4ac8b37f488e736d0ce02308fb67e7b4dd52f6349a9010e2390d8c94190d pkgname = systemtap diff --git a/PKGBUILD b/PKGBUILD index 77ca142..5af4523 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor:dront78 pkgname=systemtap pkgver=3.2 -pkgrel=3 +pkgrel=4 pkgdesc="provides infrastructure to simplify the gathering of information about the running system." url="http://sourceware.org/systemtap/" arch=('x86_64' 'i686') @@ -13,11 +13,15 @@ optdepends=('sqlite3: for storing results in a database') source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz" "${pkgname}-${pkgver}.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz.asc" 'stp_remove_install_hooks.patch' - 'fixes-for-gcc-8.patch') + 'fixes-for-gcc-8.patch' + 'fix-timers-for-4.15-kernel.patch' + ) sha512sums=('6036ed1b5189fd3fcfdeeaa526a3539ac632d0b687a063b5e3424e8f613bfc2c8d079742b0262b547128e97e30e4beb61898b23761657aee519e61346ac92e94' 'SKIP' '1d2758e9f875e06d08d37679587454fb43e025aa83ceeb405b1bc8d3277476502f2d67cf9e8383cc4c63ae545d7d0e9ebaab814f880b2f53bba47bef4afcd537' - '970d83ace43909e5a1bfc4112d78dd913af6d59e4b8dc8c4461370b022092b0cdb6830427b52bcf5b7409ff6d7c79dab778e53398ba65de71bd4a270c66a2d3a') + '970d83ace43909e5a1bfc4112d78dd913af6d59e4b8dc8c4461370b022092b0cdb6830427b52bcf5b7409ff6d7c79dab778e53398ba65de71bd4a270c66a2d3a' + '3cbf261cf34df23454e0a9aa4566664241b8bcf4b44a28617cce483d0f24632b9fcd4ac8b37f488e736d0ce02308fb67e7b4dd52f6349a9010e2390d8c94190d' + ) install='systemtap.install' validpgpkeys=('5D38116FA4D3A7CC77E378D37E83610126DCC2E8') @@ -25,6 +29,7 @@ prepare() { cd "${pkgname}-${pkgver}" patch -Np1 -i "${srcdir}/stp_remove_install_hooks.patch" patch -Np1 -i "${srcdir}/fixes-for-gcc-8.patch" + patch -Np1 -i "${srcdir}/fix-timers-for-4.15-kernel.patch" autoreconf -i } build() { diff --git a/fix-timers-for-4.15-kernel.patch b/fix-timers-for-4.15-kernel.patch new file mode 100644 index 0000000..3ca7c40 --- /dev/null +++ b/fix-timers-for-4.15-kernel.patch @@ -0,0 +1,243 @@ +diff --git a/runtime/linux/runtime.h b/runtime/linux/runtime.h +index 9c585a20d..df9b74c5c 100644 +--- a/runtime/linux/runtime.h ++++ b/runtime/linux/runtime.h +@@ -34,7 +34,7 @@ + #include + #include + #include +-#include ++#include "timer_compatibility.h" + #include + #include + #include +diff --git a/runtime/linux/timer_compatibility.h b/runtime/linux/timer_compatibility.h +new file mode 100644 +index 000000000..ac03de998 +--- /dev/null ++++ b/runtime/linux/timer_compatibility.h +@@ -0,0 +1,76 @@ ++/* ++ * linux/timer.h compatibility defines and inlines ++ * Copyright (C) 2017 Red Hat Inc. ++ * ++ * This file is part of systemtap, and is free software. You can ++ * redistribute it and/or modify it under the terms of the GNU General ++ * Public License (GPL); either version 2, or (at your option) any ++ * later version. ++ */ ++ ++#ifndef _TIMER_COMPATIBILITY_H_ ++#define _TIMER_COMPATIBILITY_H_ ++ ++#include ++ ++/* ++ * Starting with the 4.15 kernel, the timer interface ++ * changed. Originally, you'd do something like: ++ * ++ * static void timer_func(unsigned long val); ++ * ++ * init_timer(&timer); ++ * timer.expires = jiffies + STP_RELAY_TIMER_INTERVAL; ++ * timer.function = timer_func; ++ * timer.data = 0; ++ * add_timer(&timer); ++ * ++ * The 'data' parameter would get passed to the callback ++ * function. Starting with 4.15, you'd do something like this: ++ * ++ * static void timer_func(struct timer_list *val); ++ * ++ * timer_setup(&timer, timer_func, 0); ++ * timer.expires = jiffies + STP_RELAY_TIMER_INTERVAL; ++ * add_timer(&timer); ++ * ++ * With the new code, the timer that caused the callback gets passed ++ * to the timer callback function. The 'data' field has been removed. ++ * ++ * So, we're going to use the new interface. To hide the differences ++ * between the callback function parameter type, we'll define a new ++ * type, 'stp_timer_callback_parameter_t'. ++ * ++ * If code needs to figure out the difference between the old and new ++ * interface, it should test the TIMER_TRACE_FLAGMASK define (which ++ * only exists in the new interface). ++ */ ++ ++#if defined(TIMER_TRACE_FLAGMASK) ++/* This is the >= 4.15 kernel interface. */ ++ ++typedef struct timer_list * stp_timer_callback_parameter_t; ++ ++#else ++/* This is the < 4.15 kernel interface. */ ++ ++typedef unsigned long stp_timer_callback_parameter_t; ++ ++/** ++ * timer_setup - prepare a timer for first use ++ * @timer: the timer in question ++ * @callback: the function to call when timer expires ++ * @flags: any TIMER_* flags (note that anything other than 0 is an ++ * error, since this compatibility function can't support any ++ * of the TIMER_* flags) ++ */ ++#define timer_setup(timer, callback, flags) \ ++ { \ ++ init_timer((timer)); \ ++ (timer)->function = callback; \ ++ (timer)->data = 0; \ ++ BUILD_BUG_ON_ZERO((flags) != 0); \ ++ } ++#endif ++ ++#endif /* _TIMER_COMPATIBILITY_H_ */ +diff --git a/runtime/time.c b/runtime/time.c +index 2e666d54c..91ceafa6a 100644 +--- a/runtime/time.c ++++ b/runtime/time.c +@@ -168,10 +168,10 @@ __stp_time_smp_callback(void *val) + + /* The timer callback is in a softIRQ -- interrupts enabled. */ + static void +-__stp_time_timer_callback(unsigned long val) ++__stp_time_timer_callback(stp_timer_callback_parameter_t unused) + { + stp_time_t *time =__stp_time_local_update(); +- (void) val; ++ (void) unused; + + /* PR6481: make sure IRQs are enabled before resetting the timer + (IRQs are disabled and then reenabled in +@@ -200,9 +200,8 @@ __stp_init_time(void *info) + time->freq = __stp_get_freq(); + __stp_time_local_update(); + +- init_timer(&time->timer); ++ timer_setup(&time->timer, __stp_time_timer_callback, 0); + time->timer.expires = jiffies + STP_TIME_SYNC_INTERVAL; +- time->timer.function = __stp_time_timer_callback; + + #ifndef STAPCONF_ADD_TIMER_ON + add_timer(&time->timer); +diff --git a/runtime/transport/relay_v2.c b/runtime/transport/relay_v2.c +index f81d75dfa..135951a8e 100644 +--- a/runtime/transport/relay_v2.c ++++ b/runtime/transport/relay_v2.c +@@ -30,7 +30,7 @@ + #include + #include + #include +-#include ++#include "../linux/timer_compatibility.h" + #include "../uidgid_compatibility.h" + #include "relay_compat.h" + +@@ -120,7 +120,7 @@ static void __stp_relay_wakeup_readers(struct rchan_buf *buf) + wake_up_interruptible(&buf->read_wait); + } + +-static void __stp_relay_wakeup_timer(unsigned long val) ++static void __stp_relay_wakeup_timer(stp_timer_callback_parameter_t unused) + { + #ifdef STP_BULKMODE + int i; +@@ -151,10 +151,8 @@ static void __stp_relay_wakeup_timer(unsigned long val) + static void __stp_relay_timer_init(void) + { + atomic_set(&_stp_relay_data.wakeup, 0); +- init_timer(&_stp_relay_data.timer); ++ timer_setup(&_stp_relay_data.timer, __stp_relay_wakeup_timer, 0); + _stp_relay_data.timer.expires = jiffies + STP_RELAY_TIMER_INTERVAL; +- _stp_relay_data.timer.function = __stp_relay_wakeup_timer; +- _stp_relay_data.timer.data = 0; + add_timer(&_stp_relay_data.timer); + smp_mb(); + } +diff --git a/runtime/transport/transport.c b/runtime/transport/transport.c +index 3400f220a..320fd187e 100644 +--- a/runtime/transport/transport.c ++++ b/runtime/transport/transport.c +@@ -311,7 +311,7 @@ static void _stp_detach(void) + } + + +-static void _stp_ctl_work_callback(unsigned long val); ++static void _stp_ctl_work_callback(stp_timer_callback_parameter_t unused); + + /* + * Called when stapio opens the control channel. +@@ -320,13 +320,12 @@ static void _stp_attach(void) + { + dbug_trans(1, "attach\n"); + _stp_pid = current->pid; +- if (_stp_namespaces_pid < 1) +- _stp_namespaces_pid = _stp_pid; ++ if (_stp_namespaces_pid < 1) ++ _stp_namespaces_pid = _stp_pid; + _stp_transport_data_fs_overwrite(0); +- init_timer(&_stp_ctl_work_timer); ++ ++ timer_setup(&_stp_ctl_work_timer, _stp_ctl_work_callback, 0); + _stp_ctl_work_timer.expires = jiffies + STP_CTL_TIMER_INTERVAL; +- _stp_ctl_work_timer.function = _stp_ctl_work_callback; +- _stp_ctl_work_timer.data= 0; + add_timer(&_stp_ctl_work_timer); + } + +@@ -341,7 +340,7 @@ static void _stp_attach(void) + * notified. Reschedules itself if someone is still attached + * to the cmd channel. + */ +-static void _stp_ctl_work_callback(unsigned long val) ++static void _stp_ctl_work_callback(stp_timer_callback_parameter_t unused) + { + int do_io = 0; + unsigned long flags; +diff --git a/tapset-timers.cxx b/tapset-timers.cxx +index 1a40bcda0..0ab4d69cd 100644 +--- a/tapset-timers.cxx ++++ b/tapset-timers.cxx +@@ -122,9 +122,13 @@ timer_derived_probe_group::emit_module_decls (systemtap_session& s) + s.op->newline(-1) << "};"; + s.op->newline(); + +- s.op->newline() << "static void enter_timer_probe (unsigned long val) {"; ++ s.op->newline() << "static void enter_timer_probe (stp_timer_callback_parameter_t val) {"; ++ s.op->newline() << "#if defined(TIMER_TRACE_FLAGMASK)"; ++ s.op->newline(1) << "struct stap_timer_probe* stp = container_of(val, struct stap_timer_probe, timer_list);"; ++ s.op->newline(-1) << "#else"; + s.op->newline(1) << "struct stap_timer_probe* stp = & stap_timer_probes [val];"; +- s.op->newline() << "if ((atomic_read (session_state()) == STAP_SESSION_STARTING) ||"; ++ s.op->newline(-1) << "#endif"; ++ s.op->newline(1) << "if ((atomic_read (session_state()) == STAP_SESSION_STARTING) ||"; + s.op->newline() << " (atomic_read (session_state()) == STAP_SESSION_RUNNING))"; + s.op->newline(1) << "mod_timer (& stp->timer_list, jiffies + "; + emit_interval (s.op); +@@ -148,9 +152,11 @@ timer_derived_probe_group::emit_module_init (systemtap_session& s) + s.op->newline() << "for (i=0; i<" << probes.size() << "; i++) {"; + s.op->newline(1) << "struct stap_timer_probe* stp = & stap_timer_probes [i];"; + s.op->newline() << "probe_point = stp->probe->pp;"; +- s.op->newline() << "init_timer (& stp->timer_list);"; +- s.op->newline() << "stp->timer_list.function = & enter_timer_probe;"; ++ ++ s.op->newline() << "timer_setup (& stp->timer_list, enter_timer_probe, 0);"; ++ s.op->newline() << "#if !defined(TIMER_TRACE_FLAGMASK)"; + s.op->newline() << "stp->timer_list.data = i;"; // NB: important! ++ s.op->newline() << "#endif"; + // copy timer renew calculations from above :-( + s.op->newline() << "stp->timer_list.expires = jiffies + "; + emit_interval (s.op); +diff --git a/tapset/linux/scsi.stp b/tapset/linux/scsi.stp +index 44f686c2a..35779421b 100644 +--- a/tapset/linux/scsi.stp ++++ b/tapset/linux/scsi.stp +@@ -14,7 +14,7 @@ + #include + #include + #include +-#include ++#include "linux/timer_compatibility.h" + #include + %} From cbf19e9238af61008d5df19d0d3cd7ddee2d767d Mon Sep 17 00:00:00 2001 From: George Angelopoulos Date: Sun, 3 Jun 2018 22:01:59 +0200 Subject: [PATCH 096/971] add gitignore --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e93be39 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +*.tar.xz +*.tar.gz +*.asc +pkg +src From 8266ddd4f8e48800a7d3e03ec5905bfc2a66d44e Mon Sep 17 00:00:00 2001 From: George Angelopoulos Date: Sun, 3 Jun 2018 22:09:40 +0200 Subject: [PATCH 097/971] remove unused patches These were not used in the PKGBUILD when I adopted the package. I'm removing them. --- access_process_vm_h.patch | 10 ---------- stp_utrace_c.patch | 11 ----------- 2 files changed, 21 deletions(-) delete mode 100644 access_process_vm_h.patch delete mode 100644 stp_utrace_c.patch diff --git a/access_process_vm_h.patch b/access_process_vm_h.patch deleted file mode 100644 index 7eb0fd6..0000000 --- a/access_process_vm_h.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- ./runtime/linux/access_process_vm.h 2017-02-17 18:37:01.000000000 +0100 -+++ /usr/share/systemtap/runtime/linux/access_process_vm.h 2017-08-09 11:47:50.332532411 +0200 -@@ -4,6 +4,7 @@ - * we copied and pasted it here. Fortunately, everything it calls is exported. - */ - #include -+#include - #include - - static int diff --git a/stp_utrace_c.patch b/stp_utrace_c.patch deleted file mode 100644 index 987d7f6..0000000 --- a/stp_utrace_c.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- ./runtime/stp_utrace.c 2017-02-17 18:37:01.000000000 +0100 -+++ /usr/share/systemtap/runtime/stp_utrace.c 2017-08-09 11:59:21.542501780 +0200 -@@ -1105,7 +1105,7 @@ - */ - spin_lock_irq(&target->sighand->siglock); - if (likely(task_is_stopped(target))) -- __set_task_state(target, TASK_TRACED); -+ set_current_state(TASK_TRACED); - spin_unlock_irq(&target->sighand->siglock); - } else if (utrace->resume > UTRACE_REPORT) { - utrace->resume = UTRACE_REPORT; From 487ece75ebda37992529c3bd653e7b140f45780c Mon Sep 17 00:00:00 2001 From: George Angelopoulos Date: Sat, 16 Jun 2018 09:46:51 +0200 Subject: [PATCH 098/971] update makedepends --- .SRCINFO | 4 ++-- PKGBUILD | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 3ef0e36..36d6b31 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,5 +1,5 @@ # Generated by mksrcinfo v8 -# Sun Jun 3 17:06:32 UTC 2018 +# Sat Jun 16 07:46:23 UTC 2018 pkgbase = systemtap pkgdesc = provides infrastructure to simplify the gathering of information about the running system. pkgver = 3.2 @@ -9,7 +9,7 @@ pkgbase = systemtap arch = x86_64 arch = i686 license = GPL - makedepends = python2-setuptools + makedepends = python-setuptools makedepends = xmlto depends = elfutils depends = nss diff --git a/PKGBUILD b/PKGBUILD index 5af4523..5060c0b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -8,7 +8,7 @@ url="http://sourceware.org/systemtap/" arch=('x86_64' 'i686') license=('GPL') depends=('elfutils' 'nss' 'python2') -makedepends=('python2-setuptools' 'xmlto') +makedepends=('python-setuptools' 'xmlto') optdepends=('sqlite3: for storing results in a database') source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz" "${pkgname}-${pkgver}.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz.asc" From c3d5d8188c0dfaae616bf39f08b57fdc5f666440 Mon Sep 17 00:00:00 2001 From: George Angelopoulos Date: Sat, 16 Jun 2018 09:59:08 +0200 Subject: [PATCH 099/971] update depends --- .SRCINFO | 4 ++-- PKGBUILD | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 36d6b31..60159fe 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,5 +1,5 @@ # Generated by mksrcinfo v8 -# Sat Jun 16 07:46:23 UTC 2018 +# Sat Jun 16 07:53:10 UTC 2018 pkgbase = systemtap pkgdesc = provides infrastructure to simplify the gathering of information about the running system. pkgver = 3.2 @@ -13,7 +13,7 @@ pkgbase = systemtap makedepends = xmlto depends = elfutils depends = nss - depends = python2 + depends = python optdepends = sqlite3: for storing results in a database source = systemtap-3.2.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-3.2.tar.gz source = systemtap-3.2.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/systemtap-3.2.tar.gz.asc diff --git a/PKGBUILD b/PKGBUILD index 5060c0b..2f35006 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -7,7 +7,7 @@ pkgdesc="provides infrastructure to simplify the gathering of information about url="http://sourceware.org/systemtap/" arch=('x86_64' 'i686') license=('GPL') -depends=('elfutils' 'nss' 'python2') +depends=('elfutils' 'nss' 'python') makedepends=('python-setuptools' 'xmlto') optdepends=('sqlite3: for storing results in a database') source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz" From 559c72395d3bf5b9f757cb65e358f4705c759308 Mon Sep 17 00:00:00 2001 From: George Angelopoulos Date: Sat, 16 Jun 2018 10:52:25 +0200 Subject: [PATCH 100/971] Revert "update depends" This reverts commit c3d5d8188c0dfaae616bf39f08b57fdc5f666440. --- .SRCINFO | 4 ++-- PKGBUILD | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 60159fe..36d6b31 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,5 +1,5 @@ # Generated by mksrcinfo v8 -# Sat Jun 16 07:53:10 UTC 2018 +# Sat Jun 16 07:46:23 UTC 2018 pkgbase = systemtap pkgdesc = provides infrastructure to simplify the gathering of information about the running system. pkgver = 3.2 @@ -13,7 +13,7 @@ pkgbase = systemtap makedepends = xmlto depends = elfutils depends = nss - depends = python + depends = python2 optdepends = sqlite3: for storing results in a database source = systemtap-3.2.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-3.2.tar.gz source = systemtap-3.2.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/systemtap-3.2.tar.gz.asc diff --git a/PKGBUILD b/PKGBUILD index 2f35006..5060c0b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -7,7 +7,7 @@ pkgdesc="provides infrastructure to simplify the gathering of information about url="http://sourceware.org/systemtap/" arch=('x86_64' 'i686') license=('GPL') -depends=('elfutils' 'nss' 'python') +depends=('elfutils' 'nss' 'python2') makedepends=('python-setuptools' 'xmlto') optdepends=('sqlite3: for storing results in a database') source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz" From 422e628c9fbcc9e805ce9e9afbff481194a30f0b Mon Sep 17 00:00:00 2001 From: George Angelopoulos Date: Sat, 16 Jun 2018 11:12:35 +0200 Subject: [PATCH 101/971] Revert "update makedepends" This reverts commit 487ece75ebda37992529c3bd653e7b140f45780c. --- .SRCINFO | 4 ++-- PKGBUILD | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 36d6b31..3ef0e36 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,5 +1,5 @@ # Generated by mksrcinfo v8 -# Sat Jun 16 07:46:23 UTC 2018 +# Sun Jun 3 17:06:32 UTC 2018 pkgbase = systemtap pkgdesc = provides infrastructure to simplify the gathering of information about the running system. pkgver = 3.2 @@ -9,7 +9,7 @@ pkgbase = systemtap arch = x86_64 arch = i686 license = GPL - makedepends = python-setuptools + makedepends = python2-setuptools makedepends = xmlto depends = elfutils depends = nss diff --git a/PKGBUILD b/PKGBUILD index 5060c0b..5af4523 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -8,7 +8,7 @@ url="http://sourceware.org/systemtap/" arch=('x86_64' 'i686') license=('GPL') depends=('elfutils' 'nss' 'python2') -makedepends=('python-setuptools' 'xmlto') +makedepends=('python2-setuptools' 'xmlto') optdepends=('sqlite3: for storing results in a database') source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz" "${pkgname}-${pkgver}.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz.asc" From a79be0ea10037c1ea72508c42fa87283ab46bb30 Mon Sep 17 00:00:00 2001 From: "William J. Bowman" Date: Sat, 30 Jun 2018 00:17:22 -0400 Subject: [PATCH 102/971] Updated to 0.8.2-1 --- .SRCINFO | 14 ++++++++++++++ PKGBUILD | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..507d59d --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,14 @@ +pkgbase = ect + pkgdesc = Efficient Compression Tool (or ECT) is a ++ file optimizer. It supports PNG, JPEG, GZIP and ZIP files. + pkgver = 0.8.2 + pkgrel = 1 + url = https://github.com/fhanau/Efficient-Compression-Tool + arch = i686 + arch = x86_64 + license = Apache2 + makedepends = nasm + source = ect::git+https://github.com/fhanau/Efficient-Compression-Tool.git#tag=v0.8.2 + sha256sums = SKIP + +pkgname = ect + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..3d2f8e6 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,34 @@ +#Maintainer: William J. Bowman + +pkgname=ect +pkgver=0.8.2 +pkgrel=1 +pkgdesc='Efficient Compression Tool (or ECT) is a ++ file optimizer. It supports PNG, JPEG, GZIP and ZIP files.' +url='https://github.com/fhanau/Efficient-Compression-Tool' +arch=('i686' 'x86_64') +license=('Apache2') +source=("ect::git+https://github.com/fhanau/Efficient-Compression-Tool.git#tag=v${pkgver}") +sha256sums=('SKIP') +makedepends=('nasm') + +prepare(){ + cd "${srcdir}/${pkgname}/src" + git submodule update --init --recursive --recommend-shallow + cd mozjpeg + autoreconf -i +} + +build() { + cd "${srcdir}/${pkgname}/src" + make +} + +package() { + cd "${srcdir}/${pkgname}/src" + + PREFIX=/usr/ DESTDIR="${pkgdir}" make install + cd "${pkgdir}"/usr/bin + + # Some things expect this to be an all-caps name + ln -s ect ECT +} From 69c45dce7d4436d65b89b8d37c6ba1e445f7c41c Mon Sep 17 00:00:00 2001 From: George Angelopoulos Date: Mon, 20 Aug 2018 11:45:16 +0200 Subject: [PATCH 103/971] version 3.3 --- .SRCINFO | 18 +-- PKGBUILD | 25 +--- fix-timers-for-4.15-kernel.patch | 243 ------------------------------- fixes-for-gcc-8.patch | 193 ------------------------ stp_remove_install_hooks.patch | 37 ----- 5 files changed, 12 insertions(+), 504 deletions(-) delete mode 100644 fix-timers-for-4.15-kernel.patch delete mode 100644 fixes-for-gcc-8.patch delete mode 100644 stp_remove_install_hooks.patch diff --git a/.SRCINFO b/.SRCINFO index 3ef0e36..a07cea7 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,9 +1,9 @@ # Generated by mksrcinfo v8 -# Sun Jun 3 17:06:32 UTC 2018 +# Mon Aug 20 09:44:39 UTC 2018 pkgbase = systemtap pkgdesc = provides infrastructure to simplify the gathering of information about the running system. - pkgver = 3.2 - pkgrel = 4 + pkgver = 3.3 + pkgrel = 1 url = http://sourceware.org/systemtap/ install = systemtap.install arch = x86_64 @@ -15,16 +15,10 @@ pkgbase = systemtap depends = nss depends = python2 optdepends = sqlite3: for storing results in a database - source = systemtap-3.2.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-3.2.tar.gz - source = systemtap-3.2.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/systemtap-3.2.tar.gz.asc - source = stp_remove_install_hooks.patch - source = fixes-for-gcc-8.patch - source = fix-timers-for-4.15-kernel.patch - sha512sums = 6036ed1b5189fd3fcfdeeaa526a3539ac632d0b687a063b5e3424e8f613bfc2c8d079742b0262b547128e97e30e4beb61898b23761657aee519e61346ac92e94 + source = systemtap-3.3.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-3.3.tar.gz + source = systemtap-3.3.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/systemtap-3.3.tar.gz.asc + sha512sums = b75a4591bdc021645c15cb8f2b8991f46fdffb29b1d132745bafe4291aee5e1892ea9a63c8e98f011a4fee68decd99aa4401dc2f70e163e801cd140ad4cd6b6e sha512sums = SKIP - sha512sums = 1d2758e9f875e06d08d37679587454fb43e025aa83ceeb405b1bc8d3277476502f2d67cf9e8383cc4c63ae545d7d0e9ebaab814f880b2f53bba47bef4afcd537 - sha512sums = 970d83ace43909e5a1bfc4112d78dd913af6d59e4b8dc8c4461370b022092b0cdb6830427b52bcf5b7409ff6d7c79dab778e53398ba65de71bd4a270c66a2d3a - sha512sums = 3cbf261cf34df23454e0a9aa4566664241b8bcf4b44a28617cce483d0f24632b9fcd4ac8b37f488e736d0ce02308fb67e7b4dd52f6349a9010e2390d8c94190d pkgname = systemtap diff --git a/PKGBUILD b/PKGBUILD index 5af4523..6a3583f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,8 +1,8 @@ # Maintainer : Christian Rebischke # Contributor:dront78 pkgname=systemtap -pkgver=3.2 -pkgrel=4 +pkgver=3.3 +pkgrel=1 pkgdesc="provides infrastructure to simplify the gathering of information about the running system." url="http://sourceware.org/systemtap/" arch=('x86_64' 'i686') @@ -12,26 +12,13 @@ makedepends=('python2-setuptools' 'xmlto') optdepends=('sqlite3: for storing results in a database') source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz" "${pkgname}-${pkgver}.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz.asc" - 'stp_remove_install_hooks.patch' - 'fixes-for-gcc-8.patch' - 'fix-timers-for-4.15-kernel.patch' ) -sha512sums=('6036ed1b5189fd3fcfdeeaa526a3539ac632d0b687a063b5e3424e8f613bfc2c8d079742b0262b547128e97e30e4beb61898b23761657aee519e61346ac92e94' - 'SKIP' - '1d2758e9f875e06d08d37679587454fb43e025aa83ceeb405b1bc8d3277476502f2d67cf9e8383cc4c63ae545d7d0e9ebaab814f880b2f53bba47bef4afcd537' - '970d83ace43909e5a1bfc4112d78dd913af6d59e4b8dc8c4461370b022092b0cdb6830427b52bcf5b7409ff6d7c79dab778e53398ba65de71bd4a270c66a2d3a' - '3cbf261cf34df23454e0a9aa4566664241b8bcf4b44a28617cce483d0f24632b9fcd4ac8b37f488e736d0ce02308fb67e7b4dd52f6349a9010e2390d8c94190d' - ) +sha512sums=('b75a4591bdc021645c15cb8f2b8991f46fdffb29b1d132745bafe4291aee5e1892ea9a63c8e98f011a4fee68decd99aa4401dc2f70e163e801cd140ad4cd6b6e' + 'SKIP') install='systemtap.install' -validpgpkeys=('5D38116FA4D3A7CC77E378D37E83610126DCC2E8') +validpgpkeys=('41A0C11274B1E87FE28E4C53E3D77E1F95161991') + -prepare() { - cd "${pkgname}-${pkgver}" - patch -Np1 -i "${srcdir}/stp_remove_install_hooks.patch" - patch -Np1 -i "${srcdir}/fixes-for-gcc-8.patch" - patch -Np1 -i "${srcdir}/fix-timers-for-4.15-kernel.patch" - autoreconf -i -} build() { cd "${pkgname}-${pkgver}" ./configure \ diff --git a/fix-timers-for-4.15-kernel.patch b/fix-timers-for-4.15-kernel.patch deleted file mode 100644 index 3ca7c40..0000000 --- a/fix-timers-for-4.15-kernel.patch +++ /dev/null @@ -1,243 +0,0 @@ -diff --git a/runtime/linux/runtime.h b/runtime/linux/runtime.h -index 9c585a20d..df9b74c5c 100644 ---- a/runtime/linux/runtime.h -+++ b/runtime/linux/runtime.h -@@ -34,7 +34,7 @@ - #include - #include - #include --#include -+#include "timer_compatibility.h" - #include - #include - #include -diff --git a/runtime/linux/timer_compatibility.h b/runtime/linux/timer_compatibility.h -new file mode 100644 -index 000000000..ac03de998 ---- /dev/null -+++ b/runtime/linux/timer_compatibility.h -@@ -0,0 +1,76 @@ -+/* -+ * linux/timer.h compatibility defines and inlines -+ * Copyright (C) 2017 Red Hat Inc. -+ * -+ * This file is part of systemtap, and is free software. You can -+ * redistribute it and/or modify it under the terms of the GNU General -+ * Public License (GPL); either version 2, or (at your option) any -+ * later version. -+ */ -+ -+#ifndef _TIMER_COMPATIBILITY_H_ -+#define _TIMER_COMPATIBILITY_H_ -+ -+#include -+ -+/* -+ * Starting with the 4.15 kernel, the timer interface -+ * changed. Originally, you'd do something like: -+ * -+ * static void timer_func(unsigned long val); -+ * -+ * init_timer(&timer); -+ * timer.expires = jiffies + STP_RELAY_TIMER_INTERVAL; -+ * timer.function = timer_func; -+ * timer.data = 0; -+ * add_timer(&timer); -+ * -+ * The 'data' parameter would get passed to the callback -+ * function. Starting with 4.15, you'd do something like this: -+ * -+ * static void timer_func(struct timer_list *val); -+ * -+ * timer_setup(&timer, timer_func, 0); -+ * timer.expires = jiffies + STP_RELAY_TIMER_INTERVAL; -+ * add_timer(&timer); -+ * -+ * With the new code, the timer that caused the callback gets passed -+ * to the timer callback function. The 'data' field has been removed. -+ * -+ * So, we're going to use the new interface. To hide the differences -+ * between the callback function parameter type, we'll define a new -+ * type, 'stp_timer_callback_parameter_t'. -+ * -+ * If code needs to figure out the difference between the old and new -+ * interface, it should test the TIMER_TRACE_FLAGMASK define (which -+ * only exists in the new interface). -+ */ -+ -+#if defined(TIMER_TRACE_FLAGMASK) -+/* This is the >= 4.15 kernel interface. */ -+ -+typedef struct timer_list * stp_timer_callback_parameter_t; -+ -+#else -+/* This is the < 4.15 kernel interface. */ -+ -+typedef unsigned long stp_timer_callback_parameter_t; -+ -+/** -+ * timer_setup - prepare a timer for first use -+ * @timer: the timer in question -+ * @callback: the function to call when timer expires -+ * @flags: any TIMER_* flags (note that anything other than 0 is an -+ * error, since this compatibility function can't support any -+ * of the TIMER_* flags) -+ */ -+#define timer_setup(timer, callback, flags) \ -+ { \ -+ init_timer((timer)); \ -+ (timer)->function = callback; \ -+ (timer)->data = 0; \ -+ BUILD_BUG_ON_ZERO((flags) != 0); \ -+ } -+#endif -+ -+#endif /* _TIMER_COMPATIBILITY_H_ */ -diff --git a/runtime/time.c b/runtime/time.c -index 2e666d54c..91ceafa6a 100644 ---- a/runtime/time.c -+++ b/runtime/time.c -@@ -168,10 +168,10 @@ __stp_time_smp_callback(void *val) - - /* The timer callback is in a softIRQ -- interrupts enabled. */ - static void --__stp_time_timer_callback(unsigned long val) -+__stp_time_timer_callback(stp_timer_callback_parameter_t unused) - { - stp_time_t *time =__stp_time_local_update(); -- (void) val; -+ (void) unused; - - /* PR6481: make sure IRQs are enabled before resetting the timer - (IRQs are disabled and then reenabled in -@@ -200,9 +200,8 @@ __stp_init_time(void *info) - time->freq = __stp_get_freq(); - __stp_time_local_update(); - -- init_timer(&time->timer); -+ timer_setup(&time->timer, __stp_time_timer_callback, 0); - time->timer.expires = jiffies + STP_TIME_SYNC_INTERVAL; -- time->timer.function = __stp_time_timer_callback; - - #ifndef STAPCONF_ADD_TIMER_ON - add_timer(&time->timer); -diff --git a/runtime/transport/relay_v2.c b/runtime/transport/relay_v2.c -index f81d75dfa..135951a8e 100644 ---- a/runtime/transport/relay_v2.c -+++ b/runtime/transport/relay_v2.c -@@ -30,7 +30,7 @@ - #include - #include - #include --#include -+#include "../linux/timer_compatibility.h" - #include "../uidgid_compatibility.h" - #include "relay_compat.h" - -@@ -120,7 +120,7 @@ static void __stp_relay_wakeup_readers(struct rchan_buf *buf) - wake_up_interruptible(&buf->read_wait); - } - --static void __stp_relay_wakeup_timer(unsigned long val) -+static void __stp_relay_wakeup_timer(stp_timer_callback_parameter_t unused) - { - #ifdef STP_BULKMODE - int i; -@@ -151,10 +151,8 @@ static void __stp_relay_wakeup_timer(unsigned long val) - static void __stp_relay_timer_init(void) - { - atomic_set(&_stp_relay_data.wakeup, 0); -- init_timer(&_stp_relay_data.timer); -+ timer_setup(&_stp_relay_data.timer, __stp_relay_wakeup_timer, 0); - _stp_relay_data.timer.expires = jiffies + STP_RELAY_TIMER_INTERVAL; -- _stp_relay_data.timer.function = __stp_relay_wakeup_timer; -- _stp_relay_data.timer.data = 0; - add_timer(&_stp_relay_data.timer); - smp_mb(); - } -diff --git a/runtime/transport/transport.c b/runtime/transport/transport.c -index 3400f220a..320fd187e 100644 ---- a/runtime/transport/transport.c -+++ b/runtime/transport/transport.c -@@ -311,7 +311,7 @@ static void _stp_detach(void) - } - - --static void _stp_ctl_work_callback(unsigned long val); -+static void _stp_ctl_work_callback(stp_timer_callback_parameter_t unused); - - /* - * Called when stapio opens the control channel. -@@ -320,13 +320,12 @@ static void _stp_attach(void) - { - dbug_trans(1, "attach\n"); - _stp_pid = current->pid; -- if (_stp_namespaces_pid < 1) -- _stp_namespaces_pid = _stp_pid; -+ if (_stp_namespaces_pid < 1) -+ _stp_namespaces_pid = _stp_pid; - _stp_transport_data_fs_overwrite(0); -- init_timer(&_stp_ctl_work_timer); -+ -+ timer_setup(&_stp_ctl_work_timer, _stp_ctl_work_callback, 0); - _stp_ctl_work_timer.expires = jiffies + STP_CTL_TIMER_INTERVAL; -- _stp_ctl_work_timer.function = _stp_ctl_work_callback; -- _stp_ctl_work_timer.data= 0; - add_timer(&_stp_ctl_work_timer); - } - -@@ -341,7 +340,7 @@ static void _stp_attach(void) - * notified. Reschedules itself if someone is still attached - * to the cmd channel. - */ --static void _stp_ctl_work_callback(unsigned long val) -+static void _stp_ctl_work_callback(stp_timer_callback_parameter_t unused) - { - int do_io = 0; - unsigned long flags; -diff --git a/tapset-timers.cxx b/tapset-timers.cxx -index 1a40bcda0..0ab4d69cd 100644 ---- a/tapset-timers.cxx -+++ b/tapset-timers.cxx -@@ -122,9 +122,13 @@ timer_derived_probe_group::emit_module_decls (systemtap_session& s) - s.op->newline(-1) << "};"; - s.op->newline(); - -- s.op->newline() << "static void enter_timer_probe (unsigned long val) {"; -+ s.op->newline() << "static void enter_timer_probe (stp_timer_callback_parameter_t val) {"; -+ s.op->newline() << "#if defined(TIMER_TRACE_FLAGMASK)"; -+ s.op->newline(1) << "struct stap_timer_probe* stp = container_of(val, struct stap_timer_probe, timer_list);"; -+ s.op->newline(-1) << "#else"; - s.op->newline(1) << "struct stap_timer_probe* stp = & stap_timer_probes [val];"; -- s.op->newline() << "if ((atomic_read (session_state()) == STAP_SESSION_STARTING) ||"; -+ s.op->newline(-1) << "#endif"; -+ s.op->newline(1) << "if ((atomic_read (session_state()) == STAP_SESSION_STARTING) ||"; - s.op->newline() << " (atomic_read (session_state()) == STAP_SESSION_RUNNING))"; - s.op->newline(1) << "mod_timer (& stp->timer_list, jiffies + "; - emit_interval (s.op); -@@ -148,9 +152,11 @@ timer_derived_probe_group::emit_module_init (systemtap_session& s) - s.op->newline() << "for (i=0; i<" << probes.size() << "; i++) {"; - s.op->newline(1) << "struct stap_timer_probe* stp = & stap_timer_probes [i];"; - s.op->newline() << "probe_point = stp->probe->pp;"; -- s.op->newline() << "init_timer (& stp->timer_list);"; -- s.op->newline() << "stp->timer_list.function = & enter_timer_probe;"; -+ -+ s.op->newline() << "timer_setup (& stp->timer_list, enter_timer_probe, 0);"; -+ s.op->newline() << "#if !defined(TIMER_TRACE_FLAGMASK)"; - s.op->newline() << "stp->timer_list.data = i;"; // NB: important! -+ s.op->newline() << "#endif"; - // copy timer renew calculations from above :-( - s.op->newline() << "stp->timer_list.expires = jiffies + "; - emit_interval (s.op); -diff --git a/tapset/linux/scsi.stp b/tapset/linux/scsi.stp -index 44f686c2a..35779421b 100644 ---- a/tapset/linux/scsi.stp -+++ b/tapset/linux/scsi.stp -@@ -14,7 +14,7 @@ - #include - #include - #include --#include -+#include "linux/timer_compatibility.h" - #include - %} diff --git a/fixes-for-gcc-8.patch b/fixes-for-gcc-8.patch deleted file mode 100644 index 464be3f..0000000 --- a/fixes-for-gcc-8.patch +++ /dev/null @@ -1,193 +0,0 @@ -diff --git a/includes/sys/sdt.h b/includes/sys/sdt.h -index 940f74483..c0c5a492c 100644 ---- a/includes/sys/sdt.h -+++ b/includes/sys/sdt.h -@@ -119,8 +119,8 @@ struct __sdt_type - - #define __SDT_ALWAYS_SIGNED(T) \ - template<> struct __sdt_type { static const bool __sdt_signed = true; }; --#define __SDT_COND_SIGNED(T) \ --template<> struct __sdt_type { static const bool __sdt_signed = ((T)(-1) < 1); }; -+#define __SDT_COND_SIGNED(T,CT) \ -+template<> struct __sdt_type { static const bool __sdt_signed = ((CT)(-1) < 1); }; - __SDT_ALWAYS_SIGNED(signed char) - __SDT_ALWAYS_SIGNED(short) - __SDT_ALWAYS_SIGNED(int) -@@ -141,14 +141,14 @@ __SDT_ALWAYS_SIGNED(const volatile short) - __SDT_ALWAYS_SIGNED(const volatile int) - __SDT_ALWAYS_SIGNED(const volatile long) - __SDT_ALWAYS_SIGNED(const volatile long long) --__SDT_COND_SIGNED(char) --__SDT_COND_SIGNED(wchar_t) --__SDT_COND_SIGNED(volatile char) --__SDT_COND_SIGNED(volatile wchar_t) --__SDT_COND_SIGNED(const char) --__SDT_COND_SIGNED(const wchar_t) --__SDT_COND_SIGNED(const volatile char) --__SDT_COND_SIGNED(const volatile wchar_t) -+__SDT_COND_SIGNED(char, char) -+__SDT_COND_SIGNED(wchar_t, wchar_t) -+__SDT_COND_SIGNED(volatile char, char) -+__SDT_COND_SIGNED(volatile wchar_t, wchar_t) -+__SDT_COND_SIGNED(const char, char) -+__SDT_COND_SIGNED(const wchar_t, wchar_t) -+__SDT_COND_SIGNED(const volatile char, char) -+__SDT_COND_SIGNED(const volatile wchar_t, wchar_t) - #if defined (__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)) - /* __SDT_COND_SIGNED(char16_t) */ - /* __SDT_COND_SIGNED(char32_t) */ -diff --git a/stap-serverd.cxx b/stap-serverd.cxx -index b8f70114c..063c3c587 100644 ---- a/stap-serverd.cxx -+++ b/stap-serverd.cxx -@@ -1607,6 +1607,7 @@ generate_mok(string &mok_fingerprint) - char tmpdir[PATH_MAX] = { '\0' }; - string public_cert_path, private_cert_path, destdir; - mode_t old_umask; -+ int retlen; - - mok_fingerprint.clear (); - -@@ -1631,7 +1632,14 @@ generate_mok(string &mok_fingerprint) - } - - // Make a temporary directory to store results in. -- snprintf (tmpdir, PATH_MAX, "%s/stap-server.XXXXXX", mok_path.c_str ()); -+ retlen = snprintf (tmpdir, PATH_MAX, "%s/stap-server.XXXXXX", mok_path.c_str ()); -+ if (retlen < 0 || retlen >= PATH_MAX) -+ { -+ server_error (_F("Could not create %s name", "temporary directory")); -+ tmpdir[0] = '\0'; -+ goto cleanup; -+ } -+ - if (mkdtemp (tmpdir) == NULL) - { - server_error (_F("Could not create temporary directory %s: %s", tmpdir, -@@ -1704,6 +1712,7 @@ handleRequest (const string &requestDirName, const string &responseDirName, stri - unsigned u; - unsigned i; - FILE* f; -+ int retlen; - - // Save the server version. Do this early, so the client knows what version of the server - // it is dealing with, even if the request is not fully completed. -@@ -1782,7 +1791,12 @@ handleRequest (const string &requestDirName, const string &responseDirName, stri - struct stat st; - char *arg; - -- snprintf (stapargfile, PATH_MAX, "%s/argv%d", requestDirName.c_str (), i); -+ retlen = snprintf (stapargfile, PATH_MAX, "%s/argv%d", requestDirName.c_str (), i); -+ if (retlen < 0 || retlen >= PATH_MAX) -+ { -+ server_error (_F("Error creating %s name", "path")); -+ return; -+ } - - rc = stat(stapargfile, & st); - if (rc) break; -@@ -1888,7 +1902,15 @@ handleRequest (const string &requestDirName, const string &responseDirName, stri - { - glob_t globber; - char pattern[PATH_MAX]; -- snprintf (pattern, PATH_MAX, "%s/*.ko", new_staptmpdir.c_str()); -+ int retlen; -+ -+ retlen = snprintf (pattern, PATH_MAX, "%s/*.ko", new_staptmpdir.c_str()); -+ if (retlen < 0 || retlen >= PATH_MAX) -+ { -+ server_error (_F("Error creating %s name", "pattern")); -+ return; -+ } -+ - rc = glob (pattern, GLOB_ERR, NULL, &globber); - if (rc) - server_error (_F("Unable to find a module in %s", new_staptmpdir.c_str())); -@@ -2164,6 +2186,7 @@ handle_connection (void *arg) - copy for each connection.*/ - vector argv; - PRInt32 bytesRead; -+ int retlen; - - /* Detatch to avoid a memory leak */ - if(max_threads > 0) -@@ -2213,7 +2236,13 @@ handle_connection (void *arg) - #endif - - secStatus = SECFailure; -- snprintf(tmpdir, PATH_MAX, "%s/stap-server.XXXXXX", getenv("TMPDIR") ?: "/tmp"); -+ retlen = snprintf(tmpdir, PATH_MAX, "%s/stap-server.XXXXXX", getenv("TMPDIR") ?: "/tmp"); -+ if (retlen < 0 || retlen >= PATH_MAX) -+ { -+ server_error (_F("Error creating %s name", "temporary directory")); -+ tmpdir[0]=0; /* prevent /bin/rm */ -+ goto cleanup; -+ } - rc1 = mkdtemp(tmpdir); - if (! rc1) - { -@@ -2223,9 +2252,20 @@ handle_connection (void *arg) - } - - /* Create a temporary files names and directories. */ -- snprintf (requestFileName, PATH_MAX, "%s/request.zip", tmpdir); -+ retlen = snprintf (requestFileName, PATH_MAX, "%s/request.zip", tmpdir); -+ if (retlen < 0 || retlen >= PATH_MAX) -+ { -+ server_error (_F("Error creating %s name", "request.zip path")); -+ goto cleanup; -+ } -+ -+ retlen = snprintf (requestDirName, PATH_MAX, "%s/request", tmpdir); -+ if (retlen < 0 || retlen >= PATH_MAX) -+ { -+ server_error (_F("Error creating %s name", "request directory path")); -+ goto cleanup; -+ } - -- snprintf (requestDirName, PATH_MAX, "%s/request", tmpdir); - rc = mkdir(requestDirName, 0700); - if (rc) - { -@@ -2233,7 +2273,13 @@ handle_connection (void *arg) - goto cleanup; - } - -- snprintf (responseDirName, PATH_MAX, "%s/response", tmpdir); -+ retlen = snprintf (responseDirName, PATH_MAX, "%s/response", tmpdir); -+ if (retlen < 0 || retlen >= PATH_MAX) -+ { -+ server_error (_F("Error creating %s name", "response directory path")); -+ goto cleanup; -+ } -+ - rc = mkdir(responseDirName, 0700); - if (rc) - { -@@ -2243,7 +2289,12 @@ handle_connection (void *arg) - // Set this early, since it gets used for errors to be returned to the client. - stapstderr = string(responseDirName) + "/stderr"; - -- snprintf (responseFileName, PATH_MAX, "%s/response.zip", tmpdir); -+ retlen = snprintf (responseFileName, PATH_MAX, "%s/response.zip", tmpdir); -+ if (retlen < 0 || retlen >= PATH_MAX) -+ { -+ server_error (_F("Error creating %s name", "response.zip path")); -+ goto cleanup; -+ } - - /* Read data from the socket. - * If the user is requesting/requiring authentication, authenticate -diff --git a/translate.cxx b/translate.cxx -index 1240a80ec..4ade06fdd 100644 ---- a/translate.cxx -+++ b/translate.cxx -@@ -7860,7 +7860,7 @@ translate_pass (systemtap_session& s) - if (versions.size() >= 3 && s.verbose > 1) - clog << _F("ignoring extra parts of compat version: %s", s.compatible.c_str()) << endl; - } -- catch (const runtime_error) -+ catch (const runtime_error&) - { - throw SEMANTIC_ERROR(_F("parse error in compatibility version: %s", s.compatible.c_str())); - } diff --git a/stp_remove_install_hooks.patch b/stp_remove_install_hooks.patch deleted file mode 100644 index 244ac83..0000000 --- a/stp_remove_install_hooks.patch +++ /dev/null @@ -1,37 +0,0 @@ -diff --git a/stapbpf/Makefile.am b/stapbpf/Makefile.am -index a303d25f6..703668362 100644 ---- a/stapbpf/Makefile.am -+++ b/stapbpf/Makefile.am -@@ -38,14 +38,4 @@ CLEANFILES = - BUILT_SOURCES += git_version.stamp - git_version.stamp ../git_version.h: - $(MAKE) -C .. $(notdir $@) -- --# Why the "id -u" condition? This way, an unprivileged user can run --# make install, and have "sudo stap ...." or "sudo stapbpf ...." work later. --install-exec-hook: -- if [ `id -u` -eq 0 ]; then \ -- getent group stapusr >/dev/null || groupadd -g 156 -r stapusr 2>/dev/null || groupadd -r stapusr; \ -- getent group stapusr >/dev/null \ -- && chgrp stapusr "$(DESTDIR)$(bindir)/stapbpf" \ -- && chmod 04110 "$(DESTDIR)$(bindir)/stapbpf"; \ -- fi - endif -diff --git a/staprun/Makefile.am b/staprun/Makefile.am -index 4073aa01c..978d115f9 100644 ---- a/staprun/Makefile.am -+++ b/staprun/Makefile.am -@@ -68,13 +68,3 @@ CLEANFILES = - BUILT_SOURCES += git_version.stamp - git_version.stamp ../git_version.h: - $(MAKE) -C .. $(notdir $@) -- -- --# Why the "id -u" condition? This way, an unprivileged user can run --# make install, and have "sudo stap ...." or "sudo staprun ...." work later. --install-exec-hook: -- if [ `id -u` -eq 0 ]; then \ -- getent group stapusr >/dev/null || groupadd -g 156 -r stapusr 2>/dev/null || groupadd -r stapusr; \ -- getent group stapusr >/dev/null && chgrp stapusr "$(DESTDIR)$(bindir)/staprun"; \ -- chmod 04110 "$(DESTDIR)$(bindir)/staprun"; \ -- fi From 576926108eccd406ec16e498899ac1a39f22bed1 Mon Sep 17 00:00:00 2001 From: George Angelopoulos Date: Mon, 3 Sep 2018 12:27:33 +0200 Subject: [PATCH 104/971] update maintainer --- PKGBUILD | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 6a3583f..12d1c67 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,5 +1,6 @@ -# Maintainer : Christian Rebischke -# Contributor:dront78 +# Maintainer : George Angelopoulos +# Contributor : Christian Rebischke +# Contributor : dront78 pkgname=systemtap pkgver=3.3 pkgrel=1 From 653c964a39511dad9a8b8613ba9bdf9e1d9f4104 Mon Sep 17 00:00:00 2001 From: perqin Date: Tue, 16 Oct 2018 00:36:44 +0800 Subject: [PATCH 105/971] Update to 3.3176 --- .SRCINFO | 30 ++++++ .gitignore | 4 + LICENSE | 3 + PKGBUILD | 51 ++++++++++ subl | 2 + sublime-imfix.c | 263 ++++++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 353 insertions(+) create mode 100644 .SRCINFO create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 PKGBUILD create mode 100755 subl create mode 100644 sublime-imfix.c diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..65b65fd --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,30 @@ +pkgbase = sublime-text-3-imfix + pkgdesc = Sophisticated text editor for code, markup and prose - Stable build with input method support for CJK users + pkgver = 3.3176 + pkgrel = 1 + url = https://www.sublimetext.com/3 + arch = x86_64 + license = custom + depends = libpng + depends = gtk2 + provides = sublime-text + provides = sublime-text-dev + provides = sublime-text-nightly + provides = sublime-text-dev-imfix + provides = sublime-text-dev-imfix2 + conflicts = sublime-text + conflicts = sublime-text-dev + conflicts = sublime-text-nightly + conflicts = sublime-text-dev-imfix + conflicts = sublime-text-dev-imfix2 + source = https://download.sublimetext.com/sublime_text_3_build_3176_x64.tar.bz2 + source = sublime-imfix.c + source = subl + source = LICENSE + sha256sums = 74f17c1aec4ddec9d4d4c39f5aec0414a4755d407a05efa571e8892e0b9cf732 + sha256sums = 05c08fc144151713e25ebb528c2a86ef5aaf3afa3e20b79302faefdbb7158f12 + sha256sums = 00ab76aff168a0dcccec861610985e3695da10e6f95ce1fa399f5747b4d5af5b + sha256sums = 8e4c48469bf3f35d0c0904e770c4e307d4965a8931e839c01c5765498a19cf01 + +pkgname = sublime-text-3-imfix + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2f39e2f --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/*.tar.bz2 +/*.pkg.tar.xz +/pkg +/src diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..3e2f842 --- /dev/null +++ b/LICENSE @@ -0,0 +1,3 @@ +Sublime Text may be downloaded and evaluated for free, however a license must be purchased for continued use. +Licenses are per-user, rather than per-machine, so you can enjoy Sublime Text on as many computers and operating systems as you wish with your license. +For more information, please visit https://www.sublimetext.com/buy diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..07a8654 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,51 @@ +# Maintainer: perqin + +pkgname=sublime-text-3-imfix +pkgver=3.3176 +pkgrel=1 +pkgdesc='Sophisticated text editor for code, markup and prose - Stable build with input method support for CJK users' +arch=('x86_64') +url='https://www.sublimetext.com/3' +license=('custom') +depends=('libpng' 'gtk2') +conflicts=('sublime-text' 'sublime-text-dev' 'sublime-text-nightly' 'sublime-text-dev-imfix' 'sublime-text-dev-imfix2') +provides=('sublime-text' 'sublime-text-dev' 'sublime-text-nightly' 'sublime-text-dev-imfix' 'sublime-text-dev-imfix2') +source=( + "https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2" + 'sublime-imfix.c' + 'subl' + 'LICENSE' +) +sha256sums=( + '74f17c1aec4ddec9d4d4c39f5aec0414a4755d407a05efa571e8892e0b9cf732' + '05c08fc144151713e25ebb528c2a86ef5aaf3afa3e20b79302faefdbb7158f12' + '00ab76aff168a0dcccec861610985e3695da10e6f95ce1fa399f5747b4d5af5b' + '8e4c48469bf3f35d0c0904e770c4e307d4965a8931e839c01c5765498a19cf01' +) + +build() { + # Build imfix library + gcc -shared -o libsublime-imfix.so sublime-imfix.c `pkg-config --libs --cflags gtk+-2.0` -fPIC +} + +package() { + cd "${srcdir}" + # Install sublime text 3 + install -dm755 "${pkgdir}/opt" + cp --preserve=mode -r "sublime_text_3" "${pkgdir}/opt/sublime_text_3" + # Install imfix library + install -Dm755 libsublime-imfix.so ${pkgdir}/opt/sublime_text_3/libsublime-imfix.so + # Install icons + for res in 128x128 16x16 256x256 32x32 48x48; do + install -dm755 "${pkgdir}/usr/share/icons/hicolor/${res}/apps" + ln -s "/opt/sublime_text_3/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text.png" + done + # Install desktop entry and executable + install -dm755 "${pkgdir}/usr/share/applications" + install -Dm644 "sublime_text_3/sublime_text.desktop" "${pkgdir}/usr/share/applications/sublime_text.desktop" + sed -i 's#/opt/sublime_text/sublime_text#subl#g' "${pkgdir}/usr/share/applications/sublime_text.desktop" + install -Dm755 subl "${pkgdir}/usr/bin/subl" + # Install license file + install -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} diff --git a/subl b/subl new file mode 100755 index 0000000..ff9bf52 --- /dev/null +++ b/subl @@ -0,0 +1,2 @@ +#!/bin/bash +LD_PRELOAD=/opt/sublime_text_3/libsublime-imfix.so /opt/sublime_text_3/sublime_text "$@" \ No newline at end of file diff --git a/sublime-imfix.c b/sublime-imfix.c new file mode 100644 index 0000000..9a90f1f --- /dev/null +++ b/sublime-imfix.c @@ -0,0 +1,263 @@ +/* +sublime-imfix.c +Use LD_PRELOAD to interpose some function to fix sublime input method support for linux. +By Cjacker Huang +By whitequark@whitequark.org + +How to compile: +gcc -shared -o libsublime-imfix.so sublime_imfix.c `pkg-config --libs --cflags gtk+-2.0` -fPIC +How to use: +LD_PRELOAD=./libsublime-imfix.so sublime_text + +Changes: +2014 06-09 +1, Fix cursor position update for sublime text 3. +2, Combine the codes from whitequark(fix for xim immodule) and add cursor update support for XIM immodule. +*/ + +/*for RTLD_NEXT*/ +#define _GNU_SOURCE + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#ifdef VERBOSE +#define DEBUG(fmt, ...) do { \ + FILE* err = fopen("/tmp/libsublime-immethod-fix.log", "a"); \ + if (err) { \ + fprintf(err, fmt, __VA_ARGS__); \ + fclose(err); \ + } \ + } while(0) +#else +#define DEBUG(fmt, ...) +#endif + + +typedef GdkSegment GdkRegionBox; + +struct _GdkRegion +{ + long size; + long numRects; + GdkRegionBox *rects; + GdkRegionBox extents; +}; + +GtkIMContext *local_context; + + +//this func is interposed to support cursor position update. +void +gdk_region_get_clipbox (const GdkRegion *region, + GdkRectangle *rectangle) +{ + g_return_if_fail (region != NULL); + g_return_if_fail (rectangle != NULL); + + rectangle->x = region->extents.x1; + rectangle->y = region->extents.y1; + rectangle->width = region->extents.x2 - region->extents.x1; + rectangle->height = region->extents.y2 - region->extents.y1; + GdkRectangle rect; + rect.x = rectangle->x; + rect.y = rectangle->y; + rect.width = 0; + rect.height = rectangle->height; + //The caret width is 2 in sublime text 2 + //And is 1 in sublime text 3. + //Maybe sometimes we will make a mistake, but for most of the time, it should be the caret. + if((rectangle->width == 2 || rectangle->width == 1) && GTK_IS_IM_CONTEXT(local_context)) { + gtk_im_context_set_cursor_location(local_context, rectangle); + } +} + +//this is needed, for example, if you input something in file dialog and return back the edit area +//context will lost, so here we set it again. +static GdkFilterReturn event_filter (GdkXEvent *xevent, GdkEvent *event, gpointer im_context) +{ + XEvent *xev = (XEvent *)xevent; + if(xev->type == KeyRelease && GTK_IS_IM_CONTEXT(im_context)) { + GdkWindow * win = g_object_get_data(G_OBJECT(im_context),"window"); + if(GDK_IS_WINDOW(win)) + gtk_im_context_set_client_window(im_context, win); + } + return GDK_FILTER_CONTINUE; +} + +void gtk_im_context_set_client_window (GtkIMContext *context, + GdkWindow *window) +{ + GtkIMContextClass *klass; + g_return_if_fail (GTK_IS_IM_CONTEXT (context)); + klass = GTK_IM_CONTEXT_GET_CLASS (context); + if (klass->set_client_window) + klass->set_client_window (context, window); + + //below is our interposed codes to save the context to local_context. + if(!GDK_IS_WINDOW (window)) + return; + g_object_set_data(G_OBJECT(context),"window",window); + int width = gdk_window_get_width(window); + int height = gdk_window_get_height(window); + if(width != 0 && height !=0) { + gtk_im_context_focus_in(context); + local_context = context; + } + //only add this event_filter when using 'fcitx' immodule. + //for xim immodule, this function is as same as original from gtk2. + const gchar * immodule = g_getenv("GTK_IM_MODULE"); + if(immodule && !strcmp(immodule, "fcitx")) { + gdk_window_add_filter (window, event_filter, context); + } +} + + +/*below codes is from whitequark, fix for xim immodule*/ + +/* See gtkimcontextxim.c */ +GType gtk_type_im_context_xim = 0; + +#define GTK_TYPE_IM_CONTEXT_XIM (gtk_type_im_context_xim) +#define GTK_IM_CONTEXT_XIM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_IM_CONTEXT_XIM, GtkIMContextXIM)) +#define GTK_IM_CONTEXT_XIM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_IM_CONTEXT_XIM, GtkIMContextXIMClass)) +#define GTK_IS_IM_CONTEXT_XIM(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_IM_CONTEXT_XIM)) +#define GTK_IS_IM_CONTEXT_XIM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_IM_CONTEXT_XIM)) +#define GTK_IM_CONTEXT_XIM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_IM_CONTEXT_XIM, GtkIMContextXIMClass)) + +typedef struct _GtkIMContextXIM GtkIMContextXIM; +typedef struct _GtkIMContextXIMClass GtkIMContextXIMClass; + +struct _GtkIMContextXIMClass +{ + GtkIMContextClass parent_class; +}; + +typedef struct _StatusWindow StatusWindow; +typedef struct _GtkXIMInfo GtkXIMInfo; + +struct _GtkIMContextXIM +{ + GtkIMContext object; + + GtkXIMInfo *im_info; + + gchar *locale; + gchar *mb_charset; + + GdkWindow *client_window; + GtkWidget *client_widget; + + /* The status window for this input context; we claim the +* * status window when we are focused and have created an XIC +* */ + StatusWindow *status_window; + + gint preedit_size; + gint preedit_length; + gunichar *preedit_chars; + XIMFeedback *feedbacks; + + gint preedit_cursor; + + XIMCallback preedit_start_callback; + XIMCallback preedit_done_callback; + XIMCallback preedit_draw_callback; + XIMCallback preedit_caret_callback; + + XIMCallback status_start_callback; + XIMCallback status_done_callback; + XIMCallback status_draw_callback; + + XIMCallback string_conversion_callback; + + XIC ic; + + guint filter_key_release : 1; + guint use_preedit : 1; + guint finalizing : 1; + guint in_toplevel : 1; + guint has_focus : 1; +}; + +static GClassInitFunc orig_gtk_im_context_xim_class_init; +static GType (*orig_g_type_module_register_type)(GTypeModule *, + GType, const gchar *, + const GTypeInfo *, GTypeFlags); +static gboolean (*orig_gtk_im_context_xim_filter_keypress)(GtkIMContext *context, + GdkEventKey *event); + +static gboolean +hook_gtk_im_context_xim_filter_keypress(GtkIMContext *context, GdkEventKey *event) { + GtkIMContextXIM *im_context_xim = GTK_IM_CONTEXT_XIM(context); + if (!im_context_xim->client_window) { + DEBUG("im_context_xim == %p\n", im_context_xim); + DEBUG("event->window == %p\n", event->window); + + gtk_im_context_set_client_window(context, event->window); + } + + return orig_gtk_im_context_xim_filter_keypress(context, event); +} + +static void +hook_gtk_im_context_xim_class_init (GtkIMContextXIMClass *class) { + orig_gtk_im_context_xim_class_init(class, NULL); /* wat? */ + + GtkIMContextClass *im_context_class = GTK_IM_CONTEXT_CLASS (class); + + assert(!orig_gtk_im_context_xim_filter_keypress); + orig_gtk_im_context_xim_filter_keypress = im_context_class->filter_keypress; + im_context_class->filter_keypress = hook_gtk_im_context_xim_filter_keypress; + DEBUG("orig_gtk_im_context_xim_filter_keypress: %p\n", + orig_gtk_im_context_xim_filter_keypress); +} + +GType +g_type_module_register_type (GTypeModule *module, + GType parent_type, + const gchar *type_name, + const GTypeInfo *type_info, + GTypeFlags flags) { + if (!orig_g_type_module_register_type) { + orig_g_type_module_register_type = dlsym(RTLD_NEXT, "g_type_module_register_type"); + assert(orig_g_type_module_register_type); + } + + if (type_name && !strcmp(type_name, "GtkIMContextXIM")) { + assert(!orig_gtk_im_context_xim_class_init); + orig_gtk_im_context_xim_class_init = type_info->class_init; + + assert(sizeof(GtkIMContextXIM) == type_info->instance_size); + + const GTypeInfo hook_im_context_xim_info = + { + type_info->class_size, + type_info->base_init, + type_info->base_finalize, + (GClassInitFunc) hook_gtk_im_context_xim_class_init, + type_info->class_finalize, + type_info->class_data, + type_info->instance_size, + type_info->n_preallocs, + type_info->instance_init, + }; + + DEBUG("orig_gtk_im_context_xim_class_init: %p\n", orig_gtk_im_context_xim_class_init); + + gtk_type_im_context_xim = + orig_g_type_module_register_type(module, parent_type, type_name, + &hook_im_context_xim_info, flags); + + return gtk_type_im_context_xim; + } + + return orig_g_type_module_register_type(module, parent_type, type_name, type_info, flags); +} From 59033bcbc4643668b3fb9bcd8ba4d8769b829cf3 Mon Sep 17 00:00:00 2001 From: George Angelopoulos Date: Mon, 5 Nov 2018 16:08:53 +0100 Subject: [PATCH 106/971] version 4.0 --- .SRCINFO | 10 +++++----- PKGBUILD | 7 ++++--- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index a07cea7..565f178 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ # Generated by mksrcinfo v8 -# Mon Aug 20 09:44:39 UTC 2018 +# Mon Nov 5 15:08:18 UTC 2018 pkgbase = systemtap pkgdesc = provides infrastructure to simplify the gathering of information about the running system. - pkgver = 3.3 + pkgver = 4.0 pkgrel = 1 url = http://sourceware.org/systemtap/ install = systemtap.install @@ -15,9 +15,9 @@ pkgbase = systemtap depends = nss depends = python2 optdepends = sqlite3: for storing results in a database - source = systemtap-3.3.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-3.3.tar.gz - source = systemtap-3.3.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/systemtap-3.3.tar.gz.asc - sha512sums = b75a4591bdc021645c15cb8f2b8991f46fdffb29b1d132745bafe4291aee5e1892ea9a63c8e98f011a4fee68decd99aa4401dc2f70e163e801cd140ad4cd6b6e + source = systemtap-4.0.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-4.0.tar.gz + source = systemtap-4.0.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/systemtap-4.0.tar.gz.asc + sha512sums = 66b5ba1902ed974101429dce9fee849273d3dc64e862c057177d158c5f284cc93299819ee8ee49d4bd3b7ff47a3512b1c68b74cad374147ce67fa406c7518c79 sha512sums = SKIP pkgname = systemtap diff --git a/PKGBUILD b/PKGBUILD index 12d1c67..f8ddaad 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor : Christian Rebischke # Contributor : dront78 pkgname=systemtap -pkgver=3.3 +pkgver=4.0 pkgrel=1 pkgdesc="provides infrastructure to simplify the gathering of information about the running system." url="http://sourceware.org/systemtap/" @@ -14,10 +14,10 @@ optdepends=('sqlite3: for storing results in a database') source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz" "${pkgname}-${pkgver}.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz.asc" ) -sha512sums=('b75a4591bdc021645c15cb8f2b8991f46fdffb29b1d132745bafe4291aee5e1892ea9a63c8e98f011a4fee68decd99aa4401dc2f70e163e801cd140ad4cd6b6e' +sha512sums=('66b5ba1902ed974101429dce9fee849273d3dc64e862c057177d158c5f284cc93299819ee8ee49d4bd3b7ff47a3512b1c68b74cad374147ce67fa406c7518c79' 'SKIP') install='systemtap.install' -validpgpkeys=('41A0C11274B1E87FE28E4C53E3D77E1F95161991') +validpgpkeys=('5D38116FA4D3A7CC77E378D37E83610126DCC2E8') build() { @@ -28,6 +28,7 @@ build() { --libexecdir=/usr/lib/"${pkgname}" \ --libdir=/usr/lib/"${pkgname}" \ --mandir=/usr/share/man/ \ + --sbindir=/usr/bin \ --localstatedir=/var \ --enable-pie \ --disable-docs \ From 8c9e5f95c2c192a483ce82df5c5789c39e650089 Mon Sep 17 00:00:00 2001 From: graysky Date: Sat, 10 Nov 2018 06:12:42 -0500 Subject: [PATCH 107/971] Update to 2018.3.011-1 --- .SRCINFO | 8 ++++---- PKGBUILD | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 45317ed..a1105d2 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,15 +1,15 @@ # Generated by mksrcinfo v8 -# Sun Apr 22 00:51:17 UTC 2018 +# Sat Nov 10 11:12:42 UTC 2018 pkgbase = linpack - pkgver = 2018.2.010 + pkgver = 2018.3.011 pkgrel = 1 url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download arch = x86_64 license = custom - source = http://registrationcenter-download.intel.com/akdlm/irc_nas/9752/l_mklb_p_2018.2.010.tgz + source = http://registrationcenter-download.intel.com/akdlm/irc_nas/9752/l_mklb_p_2018.3.011.tgz source = linpack.conf source = linpack_runme_xeon64 - sha256sums = aedbf2b27c8a49294239f31867c9e8a87494c079a8732c8def851499eb13b54b + sha256sums = eac1fc2784c3ac2f130dafaa8e590b48f7623c577b469bae8b53decd27652b53 sha256sums = d7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254 sha256sums = 369736f6074ab579a1df38ba09be4784547833be020f13d1b60374f64ca5d5f6 diff --git a/PKGBUILD b/PKGBUILD index 46e9e35..ecfbb49 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Contributor: graysky pkgname=('linpack') -pkgver=2018.2.010 +pkgver=2018.3.011 _math_kernel_lib=2018 _url=9752 pkgrel=1 @@ -9,7 +9,7 @@ license=('custom') url="http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download" source=("http://registrationcenter-download.intel.com/akdlm/irc_nas/$_url/l_mklb_p_$pkgver.tgz" 'linpack.conf' 'linpack_runme_xeon64') -sha256sums=('aedbf2b27c8a49294239f31867c9e8a87494c079a8732c8def851499eb13b54b' +sha256sums=('eac1fc2784c3ac2f130dafaa8e590b48f7623c577b469bae8b53decd27652b53' 'd7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254' '369736f6074ab579a1df38ba09be4784547833be020f13d1b60374f64ca5d5f6') From dce23c79e4e394109b335e98cced4bbbfac05b8a Mon Sep 17 00:00:00 2001 From: George Angelopoulos Date: Fri, 16 Nov 2018 19:28:43 +0100 Subject: [PATCH 108/971] add cpio dependency --- .SRCINFO | 5 +++-- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 565f178..5ad7df1 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,9 +1,9 @@ # Generated by mksrcinfo v8 -# Mon Nov 5 15:08:18 UTC 2018 +# Fri Nov 16 18:28:31 UTC 2018 pkgbase = systemtap pkgdesc = provides infrastructure to simplify the gathering of information about the running system. pkgver = 4.0 - pkgrel = 1 + pkgrel = 2 url = http://sourceware.org/systemtap/ install = systemtap.install arch = x86_64 @@ -14,6 +14,7 @@ pkgbase = systemtap depends = elfutils depends = nss depends = python2 + depends = cpio optdepends = sqlite3: for storing results in a database source = systemtap-4.0.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-4.0.tar.gz source = systemtap-4.0.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/systemtap-4.0.tar.gz.asc diff --git a/PKGBUILD b/PKGBUILD index f8ddaad..ce76710 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,12 +3,12 @@ # Contributor : dront78 pkgname=systemtap pkgver=4.0 -pkgrel=1 +pkgrel=2 pkgdesc="provides infrastructure to simplify the gathering of information about the running system." url="http://sourceware.org/systemtap/" arch=('x86_64' 'i686') license=('GPL') -depends=('elfutils' 'nss' 'python2') +depends=('elfutils' 'nss' 'python2' 'cpio') makedepends=('python2-setuptools' 'xmlto') optdepends=('sqlite3: for storing results in a database') source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz" From a22a54b95a1bea761081b7e391ea3d51174dec90 Mon Sep 17 00:00:00 2001 From: icebal Date: Tue, 20 Nov 2018 18:11:57 -0600 Subject: [PATCH 109/971] updated PKGBUILD and dependancies --- .SRCINFO | 17 +++++++++-------- PKGBUILD | 15 ++++++--------- 2 files changed, 15 insertions(+), 17 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index a2238ee..16d5c6c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,23 +1,24 @@ pkgbase = tuned-git pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = 2.5.0.r6.ge32bd6b + pkgver = v2.10.0.r40.gb9e1316 pkgrel = 1 - url = https://fedorahosted.org/tuned/ + url = https://github.com/redhat-performance/tuned install = tuned.install arch = any license = GPL makedepends = git depends = ethtool - depends = python2-configobj - depends = python2-pyudev - depends = python2-gobject2 - depends = python2-decorator - depends = python2-dbus + depends = python-configobj + depends = python-pyudev + depends = python-gobject2 + depends = python-decorator + depends = python-dbus + depends = python-dmidecode optdepends = virt-what optdepends = systemtap provides = tuned backup = etc/tuned/active_profile - source = tuned-git::git://git.fedorahosted.org/git/tuned.git + source = tuned-git::git://github.com/redhat-performance/tuned sha256sums = SKIP pkgname = tuned-git diff --git a/PKGBUILD b/PKGBUILD index f6af3e6..20511aa 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,21 +1,21 @@ -# Maintainer: Timothée Ravier < tim at siosm dot fr > +# Maintainer: Wes Jackson < icebal dot 7 at gmail dot com > # Contributor: Tom < reztho at archlinux dot org > pkgname=tuned-git -pkgver=2.5.0.r6.ge32bd6b +pkgver=v2.10.0.r40.gb9e1316 pkgrel=1 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') -url='https://fedorahosted.org/tuned/' +url='https://github.com/redhat-performance/tuned' license=('GPL') -depends=('ethtool' 'python2-configobj' 'python2-pyudev' 'python2-gobject2' - 'python2-decorator' 'python2-dbus') +depends=('ethtool' 'python-configobj' 'python-pyudev' 'python-gobject2' + 'python-decorator' 'python-dbus' 'python-dmidecode') optdepends=('virt-what' 'systemtap') makedepends=('git') provides=('tuned') backup=('etc/tuned/active_profile') install="${pkgname/-git}.install" -source=("${pkgname}::git://git.fedorahosted.org/git/${pkgname/-/.}") +source=("${pkgname}::git://github.com/redhat-performance/tuned") sha256sums=('SKIP') pkgver() { @@ -32,9 +32,6 @@ package() { mv "${pkgdir}"/usr/sbin/* "${pkgdir}"/usr/bin/ mv "${pkgdir}"/usr/libexec/tuned/* "${pkgdir}"/usr/lib/tuned/ rm -r "${pkgdir}"/run "${pkgdir}"/usr/sbin "${pkgdir}"/usr/libexec - - find "${pkgdir}"/usr/bin/ -type f -exec sed -i 's@#!/usr/bin/python@#!/usr/bin/python2@' {} \; - install -Dm 0644 "${srcdir}"/${pkgname}/tuned.service "${pkgdir}"/usr/lib/systemd/system/tuned.service } From 00700a35b49819d86567e0803a528c3b07791e3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 9 Dec 2018 21:49:58 +0100 Subject: [PATCH 110/971] Version 1.6.7 Removed gui_common.h as changes have been merged upstream Fixed PKGBUILD (Thanks goes to jose1711) --- .SRCINFO | 10 ++++------ PKGBUILD | 22 ++++++++++++---------- gui_common.h | 10 ---------- 3 files changed, 16 insertions(+), 26 deletions(-) delete mode 100644 gui_common.h diff --git a/.SRCINFO b/.SRCINFO index c4e4dbb..3148f56 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = bino pkgdesc = 3D video player with multi-display support - pkgver = 1.6.6 + pkgver = 1.6.7 pkgrel = 1 url = https://bino3d.org/ arch = i686 @@ -13,13 +13,11 @@ pkgbase = bino depends = libass depends = qt5-base optdepends = lirc: infrared remote control - source = https://download.savannah.gnu.org/releases/bino/bino-1.6.6.tar.xz - source = https://download.savannah.gnu.org/releases/bino/bino-1.6.6.tar.xz.sig - source = gui_common.h + source = https://bino3d.org/releases/bino-1.6.7.tar.xz + source = https://bino3d.org/releases/bino-1.6.7.tar.xz.sig validpgpkeys = 2F61B4828BBA779AECB3F32703A2A4AB1E32FD34 - sha512sums = 43a17f390881fcc8b7721b21ff8524b89992cd7fb0cfc467769bdddd0ad0c0d2536d161475a7fce6d4d3e758e017a38f671648dfaa4a345dc02127b7b192c8c0 + sha512sums = ae8f72b200100664b9fd55963371ce64a2f39e240676494d69b422d662f2295560ba458eb04707b82f88d3c6b3fab98a1ecb40d74799300f96b8eb8be680c9b8 sha512sums = SKIP - sha512sums = 8006b07a72f964da78a9ba3df7c4ead522cdca0303ab1c1d9b8224a6dd062f24e0bccf95146656e28c5ba3baa8dbc2e513309adb7486e26f1d3563eec35d0325 pkgname = bino diff --git a/PKGBUILD b/PKGBUILD index b7034b8..d60bdf9 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: archtux pkgname=bino -pkgver=1.6.6 +pkgver=1.6.7 pkgrel=1 pkgdesc='3D video player with multi-display support' arch=('i686' 'x86_64') @@ -11,24 +11,26 @@ url='https://bino3d.org/' license=('GPL3') depends=('ffmpeg' 'freealut' 'freeglut' 'glewmx' 'libass' 'qt5-base') optdepends=('lirc: infrared remote control') -source=(https://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.xz{,.sig} - 'gui_common.h') -sha512sums=('43a17f390881fcc8b7721b21ff8524b89992cd7fb0cfc467769bdddd0ad0c0d2536d161475a7fce6d4d3e758e017a38f671648dfaa4a345dc02127b7b192c8c0' - 'SKIP' - '8006b07a72f964da78a9ba3df7c4ead522cdca0303ab1c1d9b8224a6dd062f24e0bccf95146656e28c5ba3baa8dbc2e513309adb7486e26f1d3563eec35d0325') +source=(https://bino3d.org/releases/bino-1.6.7.tar.xz{,.sig}) +sha512sums=('ae8f72b200100664b9fd55963371ce64a2f39e240676494d69b422d662f2295560ba458eb04707b82f88d3c6b3fab98a1ecb40d74799300f96b8eb8be680c9b8' + 'SKIP') validpgpkeys=('2F61B4828BBA779AECB3F32703A2A4AB1E32FD34') prepare() { cd "${srcdir}/${pkgname}-${pkgver}" sed -i 's/CXXFLAGS -fPIE/& -fPIC/' configure - ./configure --prefix=/usr \ - --with-qt-version=5 \ - #--with-xnvctrl # Enable NVIDIA Quadro SDI output } build() { cd "${srcdir}/${pkgname}-${pkgver}" - cp '../gui_common.h' 'src' + # libglewmx* env variables are to fix compilation issue + # when both glew and glew1.6 are installed + # details at https://gitlab.marlam.de/marlam/bino/issues/1 + libglewmx_CFLAGS="$(pkg-config --cflags glew)" libglewmx_LIBS="$(pkg-config --libs glew)" ./configure \ + --prefix=/usr \ + --with-qt-version=5 \ + #--with-xnvctrl # Enable NVIDIA Quadro SDI output + sed -i '/am__append_.* = -DGLEW_MX/d' src/Makefile make } diff --git a/gui_common.h b/gui_common.h deleted file mode 100644 index 0e6932e..0000000 --- a/gui_common.h +++ /dev/null @@ -1,10 +0,0 @@ -#ifndef GUICOMMON_H -#define GUICOMMON_H - -#include "base/str.h" - -#include "base/gettext.h" -// Qt requires strings from gettext to be in UTF-8 encoding. -#define _(string) (str::convert(gettext(string), str::localcharset(), "UTF-8").c_str()) - -#endif From 332931541da8f1859011613147dc636f13a073dc Mon Sep 17 00:00:00 2001 From: Jonathan Liu Date: Tue, 11 Dec 2018 11:30:43 +1100 Subject: [PATCH 111/971] Initial import --- .SRCINFO | 16 ++++++++++++++++ PKGBUILD | 37 +++++++++++++++++++++++++++++++++++++ configure.patch | 11 +++++++++++ 3 files changed, 64 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD create mode 100644 configure.patch diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..0ffe7c8 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,16 @@ +pkgbase = wxedid + pkgdesc = wxWidgets-based EDID (Extended Display Identification Data) editor + pkgver = 0.0.16 + pkgrel = 1 + url = https://sourceforge.net/projects/wxedid/ + arch = i686 + arch = x86_64 + license = GPL3 + depends = wxgtk2 + source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.16.tar.gz + source = configure.patch + md5sums = 0b1a6c49274e0fc3f2398648d99d6954 + md5sums = 519658fdadcbe8c0b66c6d47c1c8715f + +pkgname = wxedid + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..deb7306 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,37 @@ +# Maintainer: Jonathan Liu +pkgname=wxedid +pkgver=0.0.16 +pkgrel=1 +pkgdesc="wxWidgets-based EDID (Extended Display Identification Data) editor" +arch=('i686' 'x86_64') +url="https://sourceforge.net/projects/wxedid/" +license=('GPL3') +depends=('wxgtk2') +source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz" + 'configure.patch') +md5sums=('0b1a6c49274e0fc3f2398648d99d6954' + '519658fdadcbe8c0b66c6d47c1c8715f') + +prepare() { + cd "$pkgname-$pkgver" + patch -Np1 -i "$srcdir/configure.patch" +} + +build() { + cd "$pkgname-$pkgver" + autoreconf -f -i + ./configure --prefix=/usr + make +} + +check() { + cd "$pkgname-$pkgver" + make -k check +} + +package() { + cd "$pkgname-$pkgver" + make DESTDIR="$pkgdir/" install +} + +# vim:set ts=2 sw=2 et: diff --git a/configure.patch b/configure.patch new file mode 100644 index 0000000..4a7e443 --- /dev/null +++ b/configure.patch @@ -0,0 +1,11 @@ +--- a/configure.ac 2018-12-01 23:43:13.000000000 +1100 ++++ b/configure.ac 2018-12-11 10:50:59.989268036 +1100 +@@ -24,8 +24,6 @@ + AS_VAR_SET([ac_lang_cflags], [$CFLAGS]) + + dnl AC_ARG_SWITCH_DEBUG([DEFINE-DBG-VAR], [DBG-CFLAGS], [DBG-LDFLAGS], [RELEASE-CFLAGS], [RELEASE-LDLAGS]) +-AC_BUILD_SWITCH([-g -Wall -Wextra -fno-exceptions], [], +- [-s -O2 -finline-functions-called-once -fno-exceptions -Wall -Wfatal-errors], []) + + AC_SUBST([ac_lang_cflags]) + From 9b406897fdc3c0430c236e7aa9a3e912fa89dfda Mon Sep 17 00:00:00 2001 From: Nils Czernia Date: Wed, 12 Dec 2018 08:54:18 +0100 Subject: [PATCH 112/971] Update tp 0.4.7 --- .SRCINFO | 8 +++----- PKGBUILD | 9 ++++----- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index a3cb115..ccc1820 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,6 @@ -# Generated by mksrcinfo v8 -# Wed Oct 18 10:34:10 UTC 2017 pkgbase = prometheus-postgresql-exporter pkgdesc = Prometheus exporter for PostrgreSQL - pkgver = 0.2.3 + pkgver = 0.4.7 pkgrel = 1 url = https://github.com/wrouesnel/postgres_exporter arch = x86_64 @@ -10,9 +8,9 @@ pkgbase = prometheus-postgresql-exporter license = Apache makedepends = git makedepends = go - source = https://github.com/wrouesnel/postgres_exporter/archive/v0.2.3.tar.gz + source = https://github.com/wrouesnel/postgres_exporter/archive/v0.4.7.tar.gz source = prometheus-postgresql-exporter.service - sha256sums = 203ea51a9e5fb1fadceaa82ad63637db7248e22ae8b876613f3c8c2c255682d7 + sha256sums = f42a986c556a17b96969ae0198fc8ed302fa83d9d66e3186bd9b07ffdef04847 sha256sums = cda225c236df0e2a6d71c17a5390a92ed5cc7f71b8ca5843590c59fa02cdb135 pkgname = prometheus-postgresql-exporter diff --git a/PKGBUILD b/PKGBUILD index 054bf58..f01f1c7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Nils Czernia pkgname=prometheus-postgresql-exporter -pkgver=0.2.3 +pkgver=0.4.7 pkgrel=1 pkgdesc="Prometheus exporter for PostrgreSQL" arch=('x86_64' 'i686') @@ -10,7 +10,7 @@ license=('Apache') makedepends=('git' 'go') source=("https://github.com/wrouesnel/postgres_exporter/archive/v${pkgver}.tar.gz" "prometheus-postgresql-exporter.service") -sha256sums=('203ea51a9e5fb1fadceaa82ad63637db7248e22ae8b876613f3c8c2c255682d7' +sha256sums=('f42a986c556a17b96969ae0198fc8ed302fa83d9d66e3186bd9b07ffdef04847' 'cda225c236df0e2a6d71c17a5390a92ed5cc7f71b8ca5843590c59fa02cdb135') prepare() { @@ -24,14 +24,13 @@ prepare() { build() { export GOPATH="${srcdir}/gopath" cd "${GOPATH}/src/github.com/wrouesnel/postgres_exporter" - make + go run mage.go binary } check() { export GOPATH="${srcdir}/gopath" cd "${GOPATH}/src/github.com/wrouesnel/postgres_exporter" - - make test + go run mage.go test } package() { From a8c7e56571abcc7559acdce47cb33324114753dd Mon Sep 17 00:00:00 2001 From: icebal Date: Wed, 9 Jan 2019 21:55:16 -0600 Subject: [PATCH 113/971] fixed deps --- .SRCINFO | 12 +++++++++--- PKGBUILD | 9 ++++----- 2 files changed, 13 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 16d5c6c..b6b6b1b 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = tuned-git pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = v2.10.0.r40.gb9e1316 - pkgrel = 1 + pkgver = 2.10.0.r75.g26db89d + pkgrel = 2 url = https://github.com/redhat-performance/tuned install = tuned.install arch = any @@ -13,9 +13,15 @@ pkgbase = tuned-git depends = python-gobject2 depends = python-decorator depends = python-dbus - depends = python-dmidecode + depends = python-schedutils + depends = python-linux-procfs + depends = python-perf + depends = hdparm + depends = polkit + depends = hicolor-icon-theme optdepends = virt-what optdepends = systemtap + optdepends = python-dmidecode provides = tuned backup = etc/tuned/active_profile source = tuned-git::git://github.com/redhat-performance/tuned diff --git a/PKGBUILD b/PKGBUILD index 20511aa..26e5b27 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,15 +2,14 @@ # Contributor: Tom < reztho at archlinux dot org > pkgname=tuned-git -pkgver=v2.10.0.r40.gb9e1316 -pkgrel=1 +pkgver=2.10.0.r75.g26db89d +pkgrel=2 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url='https://github.com/redhat-performance/tuned' license=('GPL') -depends=('ethtool' 'python-configobj' 'python-pyudev' 'python-gobject2' - 'python-decorator' 'python-dbus' 'python-dmidecode') -optdepends=('virt-what' 'systemtap') +depends=('ethtool' 'python-configobj' 'python-pyudev' 'python-gobject2' 'python-decorator' 'python-dbus' 'python-schedutils' 'python-linux-procfs' 'python-perf' 'hdparm' 'polkit' 'hicolor-icon-theme') +optdepends=('virt-what' 'systemtap' 'python-dmidecode') makedepends=('git') provides=('tuned') backup=('etc/tuned/active_profile') From f59c17b2265f7ff28e6e032a4bf0ecaaf1ff0dde Mon Sep 17 00:00:00 2001 From: icebal Date: Sat, 12 Jan 2019 17:21:05 -0600 Subject: [PATCH 114/971] added more makedepends and optdeps --- .SRCINFO | 6 ++++-- PKGBUILD | 8 ++++---- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index b6b6b1b..73ebdde 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,16 +1,17 @@ pkgbase = tuned-git pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system pkgver = 2.10.0.r75.g26db89d - pkgrel = 2 + pkgrel = 3 url = https://github.com/redhat-performance/tuned install = tuned.install arch = any license = GPL makedepends = git + makedepends = desktop-file-utils depends = ethtool depends = python-configobj depends = python-pyudev - depends = python-gobject2 + depends = python-gobject depends = python-decorator depends = python-dbus depends = python-schedutils @@ -22,6 +23,7 @@ pkgbase = tuned-git optdepends = virt-what optdepends = systemtap optdepends = python-dmidecode + optdepends = x86_energy_perf_policy provides = tuned backup = etc/tuned/active_profile source = tuned-git::git://github.com/redhat-performance/tuned diff --git a/PKGBUILD b/PKGBUILD index 26e5b27..85b1a08 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,14 +3,14 @@ pkgname=tuned-git pkgver=2.10.0.r75.g26db89d -pkgrel=2 +pkgrel=3 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url='https://github.com/redhat-performance/tuned' license=('GPL') -depends=('ethtool' 'python-configobj' 'python-pyudev' 'python-gobject2' 'python-decorator' 'python-dbus' 'python-schedutils' 'python-linux-procfs' 'python-perf' 'hdparm' 'polkit' 'hicolor-icon-theme') -optdepends=('virt-what' 'systemtap' 'python-dmidecode') -makedepends=('git') +depends=('ethtool' 'python-configobj' 'python-pyudev' 'python-gobject' 'python-decorator' 'python-dbus' 'python-schedutils' 'python-linux-procfs' 'python-perf' 'hdparm' 'polkit' 'hicolor-icon-theme') +optdepends=('virt-what' 'systemtap' 'python-dmidecode' 'x86_energy_perf_policy') +makedepends=('git' 'desktop-file-utils') provides=('tuned') backup=('etc/tuned/active_profile') install="${pkgname/-git}.install" From 4f103da55165bcb04fe300281b43ff6e1f11824b Mon Sep 17 00:00:00 2001 From: icebal Date: Thu, 17 Jan 2019 12:12:27 -0600 Subject: [PATCH 115/971] updated depends --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 73ebdde..962694f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = tuned-git pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system pkgver = 2.10.0.r75.g26db89d - pkgrel = 3 + pkgrel = 4 url = https://github.com/redhat-performance/tuned install = tuned.install arch = any @@ -16,7 +16,7 @@ pkgbase = tuned-git depends = python-dbus depends = python-schedutils depends = python-linux-procfs - depends = python-perf + depends = perf depends = hdparm depends = polkit depends = hicolor-icon-theme diff --git a/PKGBUILD b/PKGBUILD index 85b1a08..be6f5f5 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,12 +3,12 @@ pkgname=tuned-git pkgver=2.10.0.r75.g26db89d -pkgrel=3 +pkgrel=4 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url='https://github.com/redhat-performance/tuned' license=('GPL') -depends=('ethtool' 'python-configobj' 'python-pyudev' 'python-gobject' 'python-decorator' 'python-dbus' 'python-schedutils' 'python-linux-procfs' 'python-perf' 'hdparm' 'polkit' 'hicolor-icon-theme') +depends=('ethtool' 'python-configobj' 'python-pyudev' 'python-gobject' 'python-decorator' 'python-dbus' 'python-schedutils' 'python-linux-procfs' 'perf' 'hdparm' 'polkit' 'hicolor-icon-theme') optdepends=('virt-what' 'systemtap' 'python-dmidecode' 'x86_energy_perf_policy') makedepends=('git' 'desktop-file-utils') provides=('tuned') From 60f19ba8ca6b8bf1807a30b0f0cb0f0efb2767fd Mon Sep 17 00:00:00 2001 From: Jonathan Liu Date: Mon, 4 Mar 2019 21:48:41 +1100 Subject: [PATCH 116/971] Update to 0.0.17-1 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 0ffe7c8..626d685 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,15 +1,15 @@ pkgbase = wxedid pkgdesc = wxWidgets-based EDID (Extended Display Identification Data) editor - pkgver = 0.0.16 + pkgver = 0.0.17 pkgrel = 1 url = https://sourceforge.net/projects/wxedid/ arch = i686 arch = x86_64 license = GPL3 depends = wxgtk2 - source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.16.tar.gz + source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.17.tar.gz source = configure.patch - md5sums = 0b1a6c49274e0fc3f2398648d99d6954 + md5sums = eb09f18621954eece112a8266d4f0f74 md5sums = 519658fdadcbe8c0b66c6d47c1c8715f pkgname = wxedid diff --git a/PKGBUILD b/PKGBUILD index deb7306..7acf86f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Jonathan Liu pkgname=wxedid -pkgver=0.0.16 +pkgver=0.0.17 pkgrel=1 pkgdesc="wxWidgets-based EDID (Extended Display Identification Data) editor" arch=('i686' 'x86_64') @@ -9,7 +9,7 @@ license=('GPL3') depends=('wxgtk2') source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz" 'configure.patch') -md5sums=('0b1a6c49274e0fc3f2398648d99d6954' +md5sums=('eb09f18621954eece112a8266d4f0f74' '519658fdadcbe8c0b66c6d47c1c8715f') prepare() { From de7ff47d183a09eefc7ccad4f179850409d8a336 Mon Sep 17 00:00:00 2001 From: perqin Date: Sun, 17 Mar 2019 12:07:01 +0800 Subject: [PATCH 117/971] Update to 3.3200 --- PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 07a8654..c4a32a5 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: perqin pkgname=sublime-text-3-imfix -pkgver=3.3176 +pkgver=3.3200 pkgrel=1 pkgdesc='Sophisticated text editor for code, markup and prose - Stable build with input method support for CJK users' arch=('x86_64') @@ -17,7 +17,7 @@ source=( 'LICENSE' ) sha256sums=( - '74f17c1aec4ddec9d4d4c39f5aec0414a4755d407a05efa571e8892e0b9cf732' + 'b9d5297c65bd14a8ba3394e74dbd9a5013b3fed5a5a2f8f5120d2cec40614fbd' '05c08fc144151713e25ebb528c2a86ef5aaf3afa3e20b79302faefdbb7158f12' '00ab76aff168a0dcccec861610985e3695da10e6f95ce1fa399f5747b4d5af5b' '8e4c48469bf3f35d0c0904e770c4e307d4965a8931e839c01c5765498a19cf01' From ac6aae16c65a88086520e3be61724f3ed783a4ea Mon Sep 17 00:00:00 2001 From: perqin Date: Sun, 17 Mar 2019 12:09:15 +0800 Subject: [PATCH 118/971] Update to 3.3200 (Fix .SRCINFO) --- .SRCINFO | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 65b65fd..0500a44 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-3-imfix pkgdesc = Sophisticated text editor for code, markup and prose - Stable build with input method support for CJK users - pkgver = 3.3176 + pkgver = 3.3200 pkgrel = 1 url = https://www.sublimetext.com/3 arch = x86_64 @@ -17,11 +17,11 @@ pkgbase = sublime-text-3-imfix conflicts = sublime-text-nightly conflicts = sublime-text-dev-imfix conflicts = sublime-text-dev-imfix2 - source = https://download.sublimetext.com/sublime_text_3_build_3176_x64.tar.bz2 + source = https://download.sublimetext.com/sublime_text_3_build_3200_x64.tar.bz2 source = sublime-imfix.c source = subl source = LICENSE - sha256sums = 74f17c1aec4ddec9d4d4c39f5aec0414a4755d407a05efa571e8892e0b9cf732 + sha256sums = b9d5297c65bd14a8ba3394e74dbd9a5013b3fed5a5a2f8f5120d2cec40614fbd sha256sums = 05c08fc144151713e25ebb528c2a86ef5aaf3afa3e20b79302faefdbb7158f12 sha256sums = 00ab76aff168a0dcccec861610985e3695da10e6f95ce1fa399f5747b4d5af5b sha256sums = 8e4c48469bf3f35d0c0904e770c4e307d4965a8931e839c01c5765498a19cf01 From e1914b9809f464d2ad133009c7cd14da4ab618c2 Mon Sep 17 00:00:00 2001 From: perqin Date: Mon, 18 Mar 2019 00:31:11 +0800 Subject: [PATCH 119/971] Remove unnecessary imfix --- .SRCINFO | 6 +- PKGBUILD | 16 +-- subl | 2 - sublime-imfix.c | 263 ------------------------------------------------ 4 files changed, 4 insertions(+), 283 deletions(-) delete mode 100755 subl delete mode 100644 sublime-imfix.c diff --git a/.SRCINFO b/.SRCINFO index 0500a44..94025cd 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = sublime-text-3-imfix pkgdesc = Sophisticated text editor for code, markup and prose - Stable build with input method support for CJK users pkgver = 3.3200 - pkgrel = 1 + pkgrel = 2 url = https://www.sublimetext.com/3 arch = x86_64 license = custom @@ -18,12 +18,8 @@ pkgbase = sublime-text-3-imfix conflicts = sublime-text-dev-imfix conflicts = sublime-text-dev-imfix2 source = https://download.sublimetext.com/sublime_text_3_build_3200_x64.tar.bz2 - source = sublime-imfix.c - source = subl source = LICENSE sha256sums = b9d5297c65bd14a8ba3394e74dbd9a5013b3fed5a5a2f8f5120d2cec40614fbd - sha256sums = 05c08fc144151713e25ebb528c2a86ef5aaf3afa3e20b79302faefdbb7158f12 - sha256sums = 00ab76aff168a0dcccec861610985e3695da10e6f95ce1fa399f5747b4d5af5b sha256sums = 8e4c48469bf3f35d0c0904e770c4e307d4965a8931e839c01c5765498a19cf01 pkgname = sublime-text-3-imfix diff --git a/PKGBUILD b/PKGBUILD index c4a32a5..2afb904 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=sublime-text-3-imfix pkgver=3.3200 -pkgrel=1 +pkgrel=2 pkgdesc='Sophisticated text editor for code, markup and prose - Stable build with input method support for CJK users' arch=('x86_64') url='https://www.sublimetext.com/3' @@ -12,29 +12,18 @@ conflicts=('sublime-text' 'sublime-text-dev' 'sublime-text-nightly' 'sublime-tex provides=('sublime-text' 'sublime-text-dev' 'sublime-text-nightly' 'sublime-text-dev-imfix' 'sublime-text-dev-imfix2') source=( "https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2" - 'sublime-imfix.c' - 'subl' 'LICENSE' ) sha256sums=( 'b9d5297c65bd14a8ba3394e74dbd9a5013b3fed5a5a2f8f5120d2cec40614fbd' - '05c08fc144151713e25ebb528c2a86ef5aaf3afa3e20b79302faefdbb7158f12' - '00ab76aff168a0dcccec861610985e3695da10e6f95ce1fa399f5747b4d5af5b' '8e4c48469bf3f35d0c0904e770c4e307d4965a8931e839c01c5765498a19cf01' ) -build() { - # Build imfix library - gcc -shared -o libsublime-imfix.so sublime-imfix.c `pkg-config --libs --cflags gtk+-2.0` -fPIC -} - package() { cd "${srcdir}" # Install sublime text 3 install -dm755 "${pkgdir}/opt" cp --preserve=mode -r "sublime_text_3" "${pkgdir}/opt/sublime_text_3" - # Install imfix library - install -Dm755 libsublime-imfix.so ${pkgdir}/opt/sublime_text_3/libsublime-imfix.so # Install icons for res in 128x128 16x16 256x256 32x32 48x48; do install -dm755 "${pkgdir}/usr/share/icons/hicolor/${res}/apps" @@ -44,7 +33,8 @@ package() { install -dm755 "${pkgdir}/usr/share/applications" install -Dm644 "sublime_text_3/sublime_text.desktop" "${pkgdir}/usr/share/applications/sublime_text.desktop" sed -i 's#/opt/sublime_text/sublime_text#subl#g' "${pkgdir}/usr/share/applications/sublime_text.desktop" - install -Dm755 subl "${pkgdir}/usr/bin/subl" + install -dm755 "${pkgdir}/usr/bin" + ln -s "/opt/sublime_text_3/sublime_text" "${pkgdir}/usr/bin/subl" # Install license file install -d "${pkgdir}/usr/share/licenses/${pkgname}" install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" diff --git a/subl b/subl deleted file mode 100755 index ff9bf52..0000000 --- a/subl +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -LD_PRELOAD=/opt/sublime_text_3/libsublime-imfix.so /opt/sublime_text_3/sublime_text "$@" \ No newline at end of file diff --git a/sublime-imfix.c b/sublime-imfix.c deleted file mode 100644 index 9a90f1f..0000000 --- a/sublime-imfix.c +++ /dev/null @@ -1,263 +0,0 @@ -/* -sublime-imfix.c -Use LD_PRELOAD to interpose some function to fix sublime input method support for linux. -By Cjacker Huang -By whitequark@whitequark.org - -How to compile: -gcc -shared -o libsublime-imfix.so sublime_imfix.c `pkg-config --libs --cflags gtk+-2.0` -fPIC -How to use: -LD_PRELOAD=./libsublime-imfix.so sublime_text - -Changes: -2014 06-09 -1, Fix cursor position update for sublime text 3. -2, Combine the codes from whitequark(fix for xim immodule) and add cursor update support for XIM immodule. -*/ - -/*for RTLD_NEXT*/ -#define _GNU_SOURCE - -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#ifdef VERBOSE -#define DEBUG(fmt, ...) do { \ - FILE* err = fopen("/tmp/libsublime-immethod-fix.log", "a"); \ - if (err) { \ - fprintf(err, fmt, __VA_ARGS__); \ - fclose(err); \ - } \ - } while(0) -#else -#define DEBUG(fmt, ...) -#endif - - -typedef GdkSegment GdkRegionBox; - -struct _GdkRegion -{ - long size; - long numRects; - GdkRegionBox *rects; - GdkRegionBox extents; -}; - -GtkIMContext *local_context; - - -//this func is interposed to support cursor position update. -void -gdk_region_get_clipbox (const GdkRegion *region, - GdkRectangle *rectangle) -{ - g_return_if_fail (region != NULL); - g_return_if_fail (rectangle != NULL); - - rectangle->x = region->extents.x1; - rectangle->y = region->extents.y1; - rectangle->width = region->extents.x2 - region->extents.x1; - rectangle->height = region->extents.y2 - region->extents.y1; - GdkRectangle rect; - rect.x = rectangle->x; - rect.y = rectangle->y; - rect.width = 0; - rect.height = rectangle->height; - //The caret width is 2 in sublime text 2 - //And is 1 in sublime text 3. - //Maybe sometimes we will make a mistake, but for most of the time, it should be the caret. - if((rectangle->width == 2 || rectangle->width == 1) && GTK_IS_IM_CONTEXT(local_context)) { - gtk_im_context_set_cursor_location(local_context, rectangle); - } -} - -//this is needed, for example, if you input something in file dialog and return back the edit area -//context will lost, so here we set it again. -static GdkFilterReturn event_filter (GdkXEvent *xevent, GdkEvent *event, gpointer im_context) -{ - XEvent *xev = (XEvent *)xevent; - if(xev->type == KeyRelease && GTK_IS_IM_CONTEXT(im_context)) { - GdkWindow * win = g_object_get_data(G_OBJECT(im_context),"window"); - if(GDK_IS_WINDOW(win)) - gtk_im_context_set_client_window(im_context, win); - } - return GDK_FILTER_CONTINUE; -} - -void gtk_im_context_set_client_window (GtkIMContext *context, - GdkWindow *window) -{ - GtkIMContextClass *klass; - g_return_if_fail (GTK_IS_IM_CONTEXT (context)); - klass = GTK_IM_CONTEXT_GET_CLASS (context); - if (klass->set_client_window) - klass->set_client_window (context, window); - - //below is our interposed codes to save the context to local_context. - if(!GDK_IS_WINDOW (window)) - return; - g_object_set_data(G_OBJECT(context),"window",window); - int width = gdk_window_get_width(window); - int height = gdk_window_get_height(window); - if(width != 0 && height !=0) { - gtk_im_context_focus_in(context); - local_context = context; - } - //only add this event_filter when using 'fcitx' immodule. - //for xim immodule, this function is as same as original from gtk2. - const gchar * immodule = g_getenv("GTK_IM_MODULE"); - if(immodule && !strcmp(immodule, "fcitx")) { - gdk_window_add_filter (window, event_filter, context); - } -} - - -/*below codes is from whitequark, fix for xim immodule*/ - -/* See gtkimcontextxim.c */ -GType gtk_type_im_context_xim = 0; - -#define GTK_TYPE_IM_CONTEXT_XIM (gtk_type_im_context_xim) -#define GTK_IM_CONTEXT_XIM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_IM_CONTEXT_XIM, GtkIMContextXIM)) -#define GTK_IM_CONTEXT_XIM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_IM_CONTEXT_XIM, GtkIMContextXIMClass)) -#define GTK_IS_IM_CONTEXT_XIM(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_IM_CONTEXT_XIM)) -#define GTK_IS_IM_CONTEXT_XIM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_IM_CONTEXT_XIM)) -#define GTK_IM_CONTEXT_XIM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_IM_CONTEXT_XIM, GtkIMContextXIMClass)) - -typedef struct _GtkIMContextXIM GtkIMContextXIM; -typedef struct _GtkIMContextXIMClass GtkIMContextXIMClass; - -struct _GtkIMContextXIMClass -{ - GtkIMContextClass parent_class; -}; - -typedef struct _StatusWindow StatusWindow; -typedef struct _GtkXIMInfo GtkXIMInfo; - -struct _GtkIMContextXIM -{ - GtkIMContext object; - - GtkXIMInfo *im_info; - - gchar *locale; - gchar *mb_charset; - - GdkWindow *client_window; - GtkWidget *client_widget; - - /* The status window for this input context; we claim the -* * status window when we are focused and have created an XIC -* */ - StatusWindow *status_window; - - gint preedit_size; - gint preedit_length; - gunichar *preedit_chars; - XIMFeedback *feedbacks; - - gint preedit_cursor; - - XIMCallback preedit_start_callback; - XIMCallback preedit_done_callback; - XIMCallback preedit_draw_callback; - XIMCallback preedit_caret_callback; - - XIMCallback status_start_callback; - XIMCallback status_done_callback; - XIMCallback status_draw_callback; - - XIMCallback string_conversion_callback; - - XIC ic; - - guint filter_key_release : 1; - guint use_preedit : 1; - guint finalizing : 1; - guint in_toplevel : 1; - guint has_focus : 1; -}; - -static GClassInitFunc orig_gtk_im_context_xim_class_init; -static GType (*orig_g_type_module_register_type)(GTypeModule *, - GType, const gchar *, - const GTypeInfo *, GTypeFlags); -static gboolean (*orig_gtk_im_context_xim_filter_keypress)(GtkIMContext *context, - GdkEventKey *event); - -static gboolean -hook_gtk_im_context_xim_filter_keypress(GtkIMContext *context, GdkEventKey *event) { - GtkIMContextXIM *im_context_xim = GTK_IM_CONTEXT_XIM(context); - if (!im_context_xim->client_window) { - DEBUG("im_context_xim == %p\n", im_context_xim); - DEBUG("event->window == %p\n", event->window); - - gtk_im_context_set_client_window(context, event->window); - } - - return orig_gtk_im_context_xim_filter_keypress(context, event); -} - -static void -hook_gtk_im_context_xim_class_init (GtkIMContextXIMClass *class) { - orig_gtk_im_context_xim_class_init(class, NULL); /* wat? */ - - GtkIMContextClass *im_context_class = GTK_IM_CONTEXT_CLASS (class); - - assert(!orig_gtk_im_context_xim_filter_keypress); - orig_gtk_im_context_xim_filter_keypress = im_context_class->filter_keypress; - im_context_class->filter_keypress = hook_gtk_im_context_xim_filter_keypress; - DEBUG("orig_gtk_im_context_xim_filter_keypress: %p\n", - orig_gtk_im_context_xim_filter_keypress); -} - -GType -g_type_module_register_type (GTypeModule *module, - GType parent_type, - const gchar *type_name, - const GTypeInfo *type_info, - GTypeFlags flags) { - if (!orig_g_type_module_register_type) { - orig_g_type_module_register_type = dlsym(RTLD_NEXT, "g_type_module_register_type"); - assert(orig_g_type_module_register_type); - } - - if (type_name && !strcmp(type_name, "GtkIMContextXIM")) { - assert(!orig_gtk_im_context_xim_class_init); - orig_gtk_im_context_xim_class_init = type_info->class_init; - - assert(sizeof(GtkIMContextXIM) == type_info->instance_size); - - const GTypeInfo hook_im_context_xim_info = - { - type_info->class_size, - type_info->base_init, - type_info->base_finalize, - (GClassInitFunc) hook_gtk_im_context_xim_class_init, - type_info->class_finalize, - type_info->class_data, - type_info->instance_size, - type_info->n_preallocs, - type_info->instance_init, - }; - - DEBUG("orig_gtk_im_context_xim_class_init: %p\n", orig_gtk_im_context_xim_class_init); - - gtk_type_im_context_xim = - orig_g_type_module_register_type(module, parent_type, type_name, - &hook_im_context_xim_info, flags); - - return gtk_type_im_context_xim; - } - - return orig_g_type_module_register_type(module, parent_type, type_name, type_info, flags); -} From bfb4afe05167148c8496c9f9ee2bb4a640972095 Mon Sep 17 00:00:00 2001 From: Sander Boom Date: Sun, 17 Mar 2019 22:57:26 +0100 Subject: [PATCH 120/971] Updated to build 3200 --- .SRCINFO | 12 ++++++------ PKGBUILD | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index bca8772..006f067 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ # Generated by mksrcinfo v8 -# Mon May 14 06:39:11 UTC 2018 +# Sun Mar 17 21:57:09 UTC 2019 pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 3.3176 + pkgver = 3.3200 pkgrel = 1 url = http://www.sublimetext.com/3 install = sublime-text-dev.install @@ -16,10 +16,10 @@ pkgbase = sublime-text-dev conflicts = sublime-text-nightly source = sublime_text_3.desktop sha256sums = f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866 - source_i686 = https://download.sublimetext.com/sublime_text_3_build_3176_x32.tar.bz2 - sha256sums_i686 = 43e49dfdbea61cc0a1b6ebcdf0ff522d8531e6998e05f4756ba4218446f85a21 - source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3176_x64.tar.bz2 - sha256sums_x86_64 = 74f17c1aec4ddec9d4d4c39f5aec0414a4755d407a05efa571e8892e0b9cf732 + source_i686 = https://download.sublimetext.com/sublime_text_3_build_3200_x32.tar.bz2 + sha256sums_i686 = f94772aa6313f228a930ae85573bb18411e96c60c3c14027e9c27c14e5aa7906 + source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3200_x64.tar.bz2 + sha256sums_x86_64 = b9d5297c65bd14a8ba3394e74dbd9a5013b3fed5a5a2f8f5120d2cec40614fbd pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 6d10d13..e3185eb 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=3.3176 +pkgver=3.3200 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('i686' 'x86_64') @@ -19,8 +19,8 @@ source_i686=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_ source_x86_64=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2") sha256sums=('f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866') -sha256sums_i686=('43e49dfdbea61cc0a1b6ebcdf0ff522d8531e6998e05f4756ba4218446f85a21') -sha256sums_x86_64=('74f17c1aec4ddec9d4d4c39f5aec0414a4755d407a05efa571e8892e0b9cf732') +sha256sums_i686=('f94772aa6313f228a930ae85573bb18411e96c60c3c14027e9c27c14e5aa7906') +sha256sums_x86_64=('b9d5297c65bd14a8ba3394e74dbd9a5013b3fed5a5a2f8f5120d2cec40614fbd') package() { cd "${srcdir}" From 64c6d5f800d6048dffe85788daf7ce2322118331 Mon Sep 17 00:00:00 2001 From: Sander Boom Date: Sat, 23 Mar 2019 21:34:22 +0100 Subject: [PATCH 121/971] Changed dependency gtk2 -> gtk3. See: https://www.sublimetext.com/blog/articles/sublime-text-3-point-2 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 006f067..cf677bd 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,16 +1,16 @@ # Generated by mksrcinfo v8 -# Sun Mar 17 21:57:09 UTC 2019 +# Sat Mar 23 20:34:05 UTC 2019 pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build pkgver = 3.3200 - pkgrel = 1 + pkgrel = 2 url = http://www.sublimetext.com/3 install = sublime-text-dev.install arch = i686 arch = x86_64 license = custom depends = libpng - depends = gtk2 + depends = gtk3 optdepends = gksu: sudo-save support provides = sublime-text-nightly conflicts = sublime-text-nightly diff --git a/PKGBUILD b/PKGBUILD index e3185eb..61a97d6 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,12 +3,12 @@ pkgname=sublime-text-dev pkgver=3.3200 -pkgrel=1 +pkgrel=2 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('i686' 'x86_64') url="http://www.sublimetext.com/3" license=('custom') -depends=('libpng' 'gtk2') +depends=('libpng' 'gtk3') optdepends=('gksu: sudo-save support') conflicts=('sublime-text-nightly') provides=('sublime-text-nightly') From ccbdc5859ea9defa2e8c56f57e5454fd330c267d Mon Sep 17 00:00:00 2001 From: perqin Date: Tue, 9 Apr 2019 22:56:00 +0800 Subject: [PATCH 122/971] Update to 3.3207 --- .SRCINFO | 8 ++++---- PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 94025cd..fd24a30 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = sublime-text-3-imfix pkgdesc = Sophisticated text editor for code, markup and prose - Stable build with input method support for CJK users - pkgver = 3.3200 - pkgrel = 2 + pkgver = 3.3207 + pkgrel = 1 url = https://www.sublimetext.com/3 arch = x86_64 license = custom @@ -17,9 +17,9 @@ pkgbase = sublime-text-3-imfix conflicts = sublime-text-nightly conflicts = sublime-text-dev-imfix conflicts = sublime-text-dev-imfix2 - source = https://download.sublimetext.com/sublime_text_3_build_3200_x64.tar.bz2 + source = https://download.sublimetext.com/sublime_text_3_build_3207_x64.tar.bz2 source = LICENSE - sha256sums = b9d5297c65bd14a8ba3394e74dbd9a5013b3fed5a5a2f8f5120d2cec40614fbd + sha256sums = acb64f1de024a0f004888096afa101051e48d96c7a3e7fe96e11312d524938c4 sha256sums = 8e4c48469bf3f35d0c0904e770c4e307d4965a8931e839c01c5765498a19cf01 pkgname = sublime-text-3-imfix diff --git a/PKGBUILD b/PKGBUILD index 2afb904..f262881 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,8 +1,8 @@ # Maintainer: perqin pkgname=sublime-text-3-imfix -pkgver=3.3200 -pkgrel=2 +pkgver=3.3207 +pkgrel=1 pkgdesc='Sophisticated text editor for code, markup and prose - Stable build with input method support for CJK users' arch=('x86_64') url='https://www.sublimetext.com/3' @@ -15,7 +15,7 @@ source=( 'LICENSE' ) sha256sums=( - 'b9d5297c65bd14a8ba3394e74dbd9a5013b3fed5a5a2f8f5120d2cec40614fbd' + 'acb64f1de024a0f004888096afa101051e48d96c7a3e7fe96e11312d524938c4' '8e4c48469bf3f35d0c0904e770c4e307d4965a8931e839c01c5765498a19cf01' ) From e9bf6bcb597ff1f7738e30a0cdefd7daa8cf8ac0 Mon Sep 17 00:00:00 2001 From: Sander Boom Date: Wed, 10 Apr 2019 22:04:39 +0200 Subject: [PATCH 123/971] Updated to build 3207 --- .SRCINFO | 14 +++++++------- PKGBUILD | 8 ++++---- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index cf677bd..93dbab5 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,9 +1,9 @@ # Generated by mksrcinfo v8 -# Sat Mar 23 20:34:05 UTC 2019 +# Wed Apr 10 20:02:50 UTC 2019 pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 3.3200 - pkgrel = 2 + pkgver = 3.3207 + pkgrel = 1 url = http://www.sublimetext.com/3 install = sublime-text-dev.install arch = i686 @@ -16,10 +16,10 @@ pkgbase = sublime-text-dev conflicts = sublime-text-nightly source = sublime_text_3.desktop sha256sums = f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866 - source_i686 = https://download.sublimetext.com/sublime_text_3_build_3200_x32.tar.bz2 - sha256sums_i686 = f94772aa6313f228a930ae85573bb18411e96c60c3c14027e9c27c14e5aa7906 - source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3200_x64.tar.bz2 - sha256sums_x86_64 = b9d5297c65bd14a8ba3394e74dbd9a5013b3fed5a5a2f8f5120d2cec40614fbd + source_i686 = https://download.sublimetext.com/sublime_text_3_build_3207_x32.tar.bz2 + sha256sums_i686 = 743dbb313fe8b5754c64972c59a6162e0519a9c375ffeedaf5f7558f15e1e212 + source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3207_x64.tar.bz2 + sha256sums_x86_64 = acb64f1de024a0f004888096afa101051e48d96c7a3e7fe96e11312d524938c4 pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 61a97d6..46c6281 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,8 +2,8 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=3.3200 -pkgrel=2 +pkgver=3.3207 +pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('i686' 'x86_64') url="http://www.sublimetext.com/3" @@ -19,8 +19,8 @@ source_i686=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_ source_x86_64=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2") sha256sums=('f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866') -sha256sums_i686=('f94772aa6313f228a930ae85573bb18411e96c60c3c14027e9c27c14e5aa7906') -sha256sums_x86_64=('b9d5297c65bd14a8ba3394e74dbd9a5013b3fed5a5a2f8f5120d2cec40614fbd') +sha256sums_i686=('743dbb313fe8b5754c64972c59a6162e0519a9c375ffeedaf5f7558f15e1e212') +sha256sums_x86_64=('acb64f1de024a0f004888096afa101051e48d96c7a3e7fe96e11312d524938c4') package() { cd "${srcdir}" From 8c0be1461c819826c6388274e06421bdc9ea00f6 Mon Sep 17 00:00:00 2001 From: graysky Date: Sat, 15 Jun 2019 19:08:10 -0400 Subject: [PATCH 124/971] Update to 2019.4.003-1 --- .SRCINFO | 8 +++----- PKGBUILD | 9 ++++----- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index a1105d2..481f289 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,15 +1,13 @@ -# Generated by mksrcinfo v8 -# Sat Nov 10 11:12:42 UTC 2018 pkgbase = linpack - pkgver = 2018.3.011 + pkgver = 2019.4.003 pkgrel = 1 url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download arch = x86_64 license = custom - source = http://registrationcenter-download.intel.com/akdlm/irc_nas/9752/l_mklb_p_2018.3.011.tgz + source = https://software.intel.com/sites/default/files/managed/ee/cd/l_mklb_p_2019.4.003.tgz source = linpack.conf source = linpack_runme_xeon64 - sha256sums = eac1fc2784c3ac2f130dafaa8e590b48f7623c577b469bae8b53decd27652b53 + sha256sums = 25e3d4e872e0b7b0b2b9a2cb268311f49db642281d0f441dccfbd2d6edab94f4 sha256sums = d7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254 sha256sums = 369736f6074ab579a1df38ba09be4784547833be020f13d1b60374f64ca5d5f6 diff --git a/PKGBUILD b/PKGBUILD index ecfbb49..957a1cf 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,15 +1,14 @@ # Contributor: graysky pkgname=('linpack') -pkgver=2018.3.011 -_math_kernel_lib=2018 -_url=9752 +pkgver=2019.4.003 +_math_kernel_lib=2019 pkgrel=1 arch=('x86_64') license=('custom') url="http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download" -source=("http://registrationcenter-download.intel.com/akdlm/irc_nas/$_url/l_mklb_p_$pkgver.tgz" +source=("https://software.intel.com/sites/default/files/managed/ee/cd/l_mklb_p_$pkgver.tgz" 'linpack.conf' 'linpack_runme_xeon64') -sha256sums=('eac1fc2784c3ac2f130dafaa8e590b48f7623c577b469bae8b53decd27652b53' +sha256sums=('25e3d4e872e0b7b0b2b9a2cb268311f49db642281d0f441dccfbd2d6edab94f4' 'd7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254' '369736f6074ab579a1df38ba09be4784547833be020f13d1b60374f64ca5d5f6') From 4e6ad6914c17e748a89a60b00c9f1766876225a2 Mon Sep 17 00:00:00 2001 From: "William J. Bowman" Date: Sat, 29 Jun 2019 21:17:23 -0700 Subject: [PATCH 125/971] Updated to 0.8.2-2 Added git to make-depends --- .SRCINFO | 3 ++- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 507d59d..1a03f2a 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,12 +1,13 @@ pkgbase = ect pkgdesc = Efficient Compression Tool (or ECT) is a ++ file optimizer. It supports PNG, JPEG, GZIP and ZIP files. pkgver = 0.8.2 - pkgrel = 1 + pkgrel = 2 url = https://github.com/fhanau/Efficient-Compression-Tool arch = i686 arch = x86_64 license = Apache2 makedepends = nasm + makedepends = git source = ect::git+https://github.com/fhanau/Efficient-Compression-Tool.git#tag=v0.8.2 sha256sums = SKIP diff --git a/PKGBUILD b/PKGBUILD index 3d2f8e6..4ef8f64 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,14 +2,14 @@ pkgname=ect pkgver=0.8.2 -pkgrel=1 +pkgrel=2 pkgdesc='Efficient Compression Tool (or ECT) is a ++ file optimizer. It supports PNG, JPEG, GZIP and ZIP files.' url='https://github.com/fhanau/Efficient-Compression-Tool' arch=('i686' 'x86_64') license=('Apache2') source=("ect::git+https://github.com/fhanau/Efficient-Compression-Tool.git#tag=v${pkgver}") sha256sums=('SKIP') -makedepends=('nasm') +makedepends=('nasm' 'git') prepare(){ cd "${srcdir}/${pkgname}/src" From a102a541221af75caaa0307337cbc470dfa23e0f Mon Sep 17 00:00:00 2001 From: Nils Czernia Date: Mon, 8 Jul 2019 13:55:56 +0200 Subject: [PATCH 126/971] Updated to version 0.5.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index ccc1820..cd19ec8 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = prometheus-postgresql-exporter pkgdesc = Prometheus exporter for PostrgreSQL - pkgver = 0.4.7 + pkgver = 0.5.0 pkgrel = 1 url = https://github.com/wrouesnel/postgres_exporter arch = x86_64 @@ -8,9 +8,9 @@ pkgbase = prometheus-postgresql-exporter license = Apache makedepends = git makedepends = go - source = https://github.com/wrouesnel/postgres_exporter/archive/v0.4.7.tar.gz + source = https://github.com/wrouesnel/postgres_exporter/archive/v0.5.0.tar.gz source = prometheus-postgresql-exporter.service - sha256sums = f42a986c556a17b96969ae0198fc8ed302fa83d9d66e3186bd9b07ffdef04847 + sha256sums = a84955602d8369605aa6e12c91b21ab3864f4d655077f25b4ec0545fa8bb9b9f sha256sums = cda225c236df0e2a6d71c17a5390a92ed5cc7f71b8ca5843590c59fa02cdb135 pkgname = prometheus-postgresql-exporter diff --git a/PKGBUILD b/PKGBUILD index f01f1c7..b82efd8 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Nils Czernia pkgname=prometheus-postgresql-exporter -pkgver=0.4.7 +pkgver=0.5.0 pkgrel=1 pkgdesc="Prometheus exporter for PostrgreSQL" arch=('x86_64' 'i686') @@ -10,7 +10,7 @@ license=('Apache') makedepends=('git' 'go') source=("https://github.com/wrouesnel/postgres_exporter/archive/v${pkgver}.tar.gz" "prometheus-postgresql-exporter.service") -sha256sums=('f42a986c556a17b96969ae0198fc8ed302fa83d9d66e3186bd9b07ffdef04847' +sha256sums=('a84955602d8369605aa6e12c91b21ab3864f4d655077f25b4ec0545fa8bb9b9f' 'cda225c236df0e2a6d71c17a5390a92ed5cc7f71b8ca5843590c59fa02cdb135') prepare() { From 90f981a61523bc3f57fc944ccca15eeea443bed2 Mon Sep 17 00:00:00 2001 From: Jonathan Liu Date: Fri, 13 Sep 2019 13:44:41 +1000 Subject: [PATCH 127/971] Update to 0.0.18-1 --- .SRCINFO | 8 ++++---- PKGBUILD | 9 +++++---- configure.patch | 6 +++--- 3 files changed, 12 insertions(+), 11 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 626d685..36c0fd3 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,16 +1,16 @@ pkgbase = wxedid pkgdesc = wxWidgets-based EDID (Extended Display Identification Data) editor - pkgver = 0.0.17 + pkgver = 0.0.18 pkgrel = 1 url = https://sourceforge.net/projects/wxedid/ arch = i686 arch = x86_64 license = GPL3 depends = wxgtk2 - source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.17.tar.gz + source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.18.tar.gz source = configure.patch - md5sums = eb09f18621954eece112a8266d4f0f74 - md5sums = 519658fdadcbe8c0b66c6d47c1c8715f + md5sums = 4098b6355d6a0ed76d06c33bb9499b27 + md5sums = 1443b5b6e81b32df7c4a5c036603c52f pkgname = wxedid diff --git a/PKGBUILD b/PKGBUILD index 7acf86f..30fc0f3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Jonathan Liu pkgname=wxedid -pkgver=0.0.17 +pkgver=0.0.18 pkgrel=1 pkgdesc="wxWidgets-based EDID (Extended Display Identification Data) editor" arch=('i686' 'x86_64') @@ -9,14 +9,15 @@ license=('GPL3') depends=('wxgtk2') source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz" 'configure.patch') -md5sums=('eb09f18621954eece112a8266d4f0f74' - '519658fdadcbe8c0b66c6d47c1c8715f') +md5sums=('4098b6355d6a0ed76d06c33bb9499b27' + '1443b5b6e81b32df7c4a5c036603c52f') prepare() { cd "$pkgname-$pkgver" patch -Np1 -i "$srcdir/configure.patch" } + build() { cd "$pkgname-$pkgver" autoreconf -f -i @@ -31,7 +32,7 @@ check() { package() { cd "$pkgname-$pkgver" - make DESTDIR="$pkgdir/" install + make DESTDIR="$pkgdir" install } # vim:set ts=2 sw=2 et: diff --git a/configure.patch b/configure.patch index 4a7e443..f29401f 100644 --- a/configure.patch +++ b/configure.patch @@ -1,11 +1,11 @@ ---- a/configure.ac 2018-12-01 23:43:13.000000000 +1100 -+++ b/configure.ac 2018-12-11 10:50:59.989268036 +1100 +--- a/configure.ac ++++ b/configure.ac @@ -24,8 +24,6 @@ AS_VAR_SET([ac_lang_cflags], [$CFLAGS]) dnl AC_ARG_SWITCH_DEBUG([DEFINE-DBG-VAR], [DBG-CFLAGS], [DBG-LDFLAGS], [RELEASE-CFLAGS], [RELEASE-LDLAGS]) -AC_BUILD_SWITCH([-g -Wall -Wextra -fno-exceptions], [], -- [-s -O2 -finline-functions-called-once -fno-exceptions -Wall -Wfatal-errors], []) +- [-O1 -finline-functions-called-once -fno-exceptions -Wall -Wfatal-errors], [-s]) AC_SUBST([ac_lang_cflags]) From 15c5dd41143573214cd922e34390b90fd91be93c Mon Sep 17 00:00:00 2001 From: Sander Boom Date: Tue, 1 Oct 2019 11:31:04 +0200 Subject: [PATCH 128/971] Updated to build 3211 --- .SRCINFO | 12 +++++------- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 93dbab5..5503b35 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,6 @@ -# Generated by mksrcinfo v8 -# Wed Apr 10 20:02:50 UTC 2019 pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 3.3207 + pkgver = 3.3211 pkgrel = 1 url = http://www.sublimetext.com/3 install = sublime-text-dev.install @@ -16,10 +14,10 @@ pkgbase = sublime-text-dev conflicts = sublime-text-nightly source = sublime_text_3.desktop sha256sums = f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866 - source_i686 = https://download.sublimetext.com/sublime_text_3_build_3207_x32.tar.bz2 - sha256sums_i686 = 743dbb313fe8b5754c64972c59a6162e0519a9c375ffeedaf5f7558f15e1e212 - source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3207_x64.tar.bz2 - sha256sums_x86_64 = acb64f1de024a0f004888096afa101051e48d96c7a3e7fe96e11312d524938c4 + source_i686 = https://download.sublimetext.com/sublime_text_3_build_3211_x32.tar.bz2 + sha256sums_i686 = 480609962bbbd12128b5332c7831372b8851c13e160512730d1b0a6a835a3071 + source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3211_x64.tar.bz2 + sha256sums_x86_64 = 0b3c8ca5e6df376c3c24a4b9ac2e3b391333f73b229bc6e87d0b4a5f636d74ee pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 46c6281..854f4c3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=3.3207 +pkgver=3.3211 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('i686' 'x86_64') @@ -19,8 +19,8 @@ source_i686=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_ source_x86_64=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2") sha256sums=('f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866') -sha256sums_i686=('743dbb313fe8b5754c64972c59a6162e0519a9c375ffeedaf5f7558f15e1e212') -sha256sums_x86_64=('acb64f1de024a0f004888096afa101051e48d96c7a3e7fe96e11312d524938c4') +sha256sums_i686=('480609962bbbd12128b5332c7831372b8851c13e160512730d1b0a6a835a3071') +sha256sums_x86_64=('0b3c8ca5e6df376c3c24a4b9ac2e3b391333f73b229bc6e87d0b4a5f636d74ee') package() { cd "${srcdir}" From 98c14eecc21e56214d6944449d9bbf2cc92254f4 Mon Sep 17 00:00:00 2001 From: annguyenfoss Date: Mon, 28 Oct 2019 20:09:31 +0700 Subject: [PATCH 129/971] Updated to 4.1. Updated GPG keys and SHA512SUM. --- .SRCINFO | 17 ++++++++--------- PKGBUILD | 22 +++++++++++----------- 2 files changed, 19 insertions(+), 20 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 5ad7df1..796db52 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,9 +1,7 @@ -# Generated by mksrcinfo v8 -# Fri Nov 16 18:28:31 UTC 2018 pkgbase = systemtap - pkgdesc = provides infrastructure to simplify the gathering of information about the running system. - pkgver = 4.0 - pkgrel = 2 + pkgdesc = Infrastructure to simplify the gathering of information about the running Linux system + pkgver = 4.1 + pkgrel = 1 url = http://sourceware.org/systemtap/ install = systemtap.install arch = x86_64 @@ -16,10 +14,11 @@ pkgbase = systemtap depends = python2 depends = cpio optdepends = sqlite3: for storing results in a database - source = systemtap-4.0.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-4.0.tar.gz - source = systemtap-4.0.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/systemtap-4.0.tar.gz.asc - sha512sums = 66b5ba1902ed974101429dce9fee849273d3dc64e862c057177d158c5f284cc93299819ee8ee49d4bd3b7ff47a3512b1c68b74cad374147ce67fa406c7518c79 - sha512sums = SKIP + source = systemtap-4.1.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-4.1.tar.gz + source = systemtap-4.1.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/systemtap-4.1.tar.gz.asc + validpgpkeys = F75E6545B9F8AA15AA932A444DE16D68FDBFFFB8 + sha512sums = fbd606d9842ac63af6e607613a112b08d7593da74ad0398716cdc46f74a977a8e6b9fae92e1f63779ccfc94cffa25f29dee2ae44f67ecc4cedae630e50a2e7b6 + sha512sums = 755a11b6024bb15c6415532352fd62a824266edeb5ab3e1ef6cfa31259f8bf7d9a92fcf7476c307cd7d4188ff20cefe86558b2a6e4c099987e1041bd1f98031e pkgname = systemtap diff --git a/PKGBUILD b/PKGBUILD index ce76710..816495e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,10 +1,11 @@ -# Maintainer : George Angelopoulos -# Contributor : Christian Rebischke -# Contributor : dront78 +# Maintainer: An Nguyen (stk) +# Original Maintainer: George Angelopoulos +# Original Maintainer: Christian Rebischke +# Original Maintainer: dront78 pkgname=systemtap -pkgver=4.0 -pkgrel=2 -pkgdesc="provides infrastructure to simplify the gathering of information about the running system." +pkgver=4.1 +pkgrel=1 +pkgdesc="Infrastructure to simplify the gathering of information about the running Linux system" url="http://sourceware.org/systemtap/" arch=('x86_64' 'i686') license=('GPL') @@ -14,11 +15,10 @@ optdepends=('sqlite3: for storing results in a database') source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz" "${pkgname}-${pkgver}.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz.asc" ) -sha512sums=('66b5ba1902ed974101429dce9fee849273d3dc64e862c057177d158c5f284cc93299819ee8ee49d4bd3b7ff47a3512b1c68b74cad374147ce67fa406c7518c79' - 'SKIP') +sha512sums=('fbd606d9842ac63af6e607613a112b08d7593da74ad0398716cdc46f74a977a8e6b9fae92e1f63779ccfc94cffa25f29dee2ae44f67ecc4cedae630e50a2e7b6' + '755a11b6024bb15c6415532352fd62a824266edeb5ab3e1ef6cfa31259f8bf7d9a92fcf7476c307cd7d4188ff20cefe86558b2a6e4c099987e1041bd1f98031e') install='systemtap.install' -validpgpkeys=('5D38116FA4D3A7CC77E378D37E83610126DCC2E8') - +validpgpkeys=('F75E6545B9F8AA15AA932A444DE16D68FDBFFFB8') # "Serhei Makarov (for Red Hat 2018..onwards) " build() { cd "${pkgname}-${pkgver}" @@ -41,5 +41,5 @@ package() { make DESTDIR="${pkgdir}" install rmdir "${pkgdir}/var/run/stap-server/" rmdir "${pkgdir}/var/run/" + rm -r "${pkgdir}/usr/include" } - From 5afd86ac7fee6a6e1b3d92dd5829298ec9319248 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Marcos?= Date: Wed, 13 Nov 2019 11:32:43 -0300 Subject: [PATCH 130/971] Updating version to 3211 and changing maintainer --- PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index f262881..92b610b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ -# Maintainer: perqin +# Maintainer: marcospb19 pkgname=sublime-text-3-imfix -pkgver=3.3207 +pkgver=3.3211 pkgrel=1 pkgdesc='Sophisticated text editor for code, markup and prose - Stable build with input method support for CJK users' arch=('x86_64') From 46c432f447f0db9848a17cad2990f1bb4ae995ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Marcos?= Date: Wed, 13 Nov 2019 11:46:08 -0300 Subject: [PATCH 131/971] Fixing last commit --- .SRCINFO | 6 +++--- PKGBUILD | 8 +++----- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index fd24a30..1185994 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-3-imfix pkgdesc = Sophisticated text editor for code, markup and prose - Stable build with input method support for CJK users - pkgver = 3.3207 + pkgver = 3.3211 pkgrel = 1 url = https://www.sublimetext.com/3 arch = x86_64 @@ -17,9 +17,9 @@ pkgbase = sublime-text-3-imfix conflicts = sublime-text-nightly conflicts = sublime-text-dev-imfix conflicts = sublime-text-dev-imfix2 - source = https://download.sublimetext.com/sublime_text_3_build_3207_x64.tar.bz2 + source = https://download.sublimetext.com/sublime_text_3_build_3211_x64.tar.bz2 source = LICENSE - sha256sums = acb64f1de024a0f004888096afa101051e48d96c7a3e7fe96e11312d524938c4 + sha256sums = 0b3c8ca5e6df376c3c24a4b9ac2e3b391333f73b229bc6e87d0b4a5f636d74ee sha256sums = 8e4c48469bf3f35d0c0904e770c4e307d4965a8931e839c01c5765498a19cf01 pkgname = sublime-text-3-imfix diff --git a/PKGBUILD b/PKGBUILD index 92b610b..67cab9d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=sublime-text-3-imfix pkgver=3.3211 -pkgrel=1 +pkgrel=2 pkgdesc='Sophisticated text editor for code, markup and prose - Stable build with input method support for CJK users' arch=('x86_64') url='https://www.sublimetext.com/3' @@ -14,10 +14,8 @@ source=( "https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2" 'LICENSE' ) -sha256sums=( - 'acb64f1de024a0f004888096afa101051e48d96c7a3e7fe96e11312d524938c4' - '8e4c48469bf3f35d0c0904e770c4e307d4965a8931e839c01c5765498a19cf01' -) +sha256sums=('0b3c8ca5e6df376c3c24a4b9ac2e3b391333f73b229bc6e87d0b4a5f636d74ee' + '8e4c48469bf3f35d0c0904e770c4e307d4965a8931e839c01c5765498a19cf01') package() { cd "${srcdir}" From 65321dcaa8885506f14a8fc96e4c78e4430b9e8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Marcos?= Date: Wed, 13 Nov 2019 12:13:38 -0300 Subject: [PATCH 132/971] Changed package description size --- .SRCINFO | 4 ++-- PKGBUILD | 6 +++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 1185994..cc11883 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = sublime-text-3-imfix - pkgdesc = Sophisticated text editor for code, markup and prose - Stable build with input method support for CJK users + pkgdesc = Sophisticated text editor for code, html and prose - Stable build with support for CJK pkgver = 3.3211 - pkgrel = 1 + pkgrel = 2 url = https://www.sublimetext.com/3 arch = x86_64 license = custom diff --git a/PKGBUILD b/PKGBUILD index 67cab9d..ec77952 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ pkgname=sublime-text-3-imfix pkgver=3.3211 pkgrel=2 -pkgdesc='Sophisticated text editor for code, markup and prose - Stable build with input method support for CJK users' +pkgdesc="Sophisticated text editor for code, html and prose - Stable build with support for CJK" arch=('x86_64') url='https://www.sublimetext.com/3' license=('custom') @@ -19,20 +19,24 @@ sha256sums=('0b3c8ca5e6df376c3c24a4b9ac2e3b391333f73b229bc6e87d0b4a5f636d74ee' package() { cd "${srcdir}" + # Install sublime text 3 install -dm755 "${pkgdir}/opt" cp --preserve=mode -r "sublime_text_3" "${pkgdir}/opt/sublime_text_3" + # Install icons for res in 128x128 16x16 256x256 32x32 48x48; do install -dm755 "${pkgdir}/usr/share/icons/hicolor/${res}/apps" ln -s "/opt/sublime_text_3/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text.png" done + # Install desktop entry and executable install -dm755 "${pkgdir}/usr/share/applications" install -Dm644 "sublime_text_3/sublime_text.desktop" "${pkgdir}/usr/share/applications/sublime_text.desktop" sed -i 's#/opt/sublime_text/sublime_text#subl#g' "${pkgdir}/usr/share/applications/sublime_text.desktop" install -dm755 "${pkgdir}/usr/bin" ln -s "/opt/sublime_text_3/sublime_text" "${pkgdir}/usr/bin/subl" + # Install license file install -d "${pkgdir}/usr/share/licenses/${pkgname}" install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" From 235267cff6eb4feb6dcd835ec04ddf927b796526 Mon Sep 17 00:00:00 2001 From: annguyenfoss Date: Tue, 3 Dec 2019 15:28:08 +0700 Subject: [PATCH 133/971] released 4.2 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 796db52..a276744 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = systemtap pkgdesc = Infrastructure to simplify the gathering of information about the running Linux system - pkgver = 4.1 + pkgver = 4.2 pkgrel = 1 url = http://sourceware.org/systemtap/ install = systemtap.install @@ -14,11 +14,11 @@ pkgbase = systemtap depends = python2 depends = cpio optdepends = sqlite3: for storing results in a database - source = systemtap-4.1.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-4.1.tar.gz - source = systemtap-4.1.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/systemtap-4.1.tar.gz.asc + source = systemtap-4.2.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-4.2.tar.gz + source = systemtap-4.2.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/systemtap-4.2.tar.gz.asc validpgpkeys = F75E6545B9F8AA15AA932A444DE16D68FDBFFFB8 - sha512sums = fbd606d9842ac63af6e607613a112b08d7593da74ad0398716cdc46f74a977a8e6b9fae92e1f63779ccfc94cffa25f29dee2ae44f67ecc4cedae630e50a2e7b6 - sha512sums = 755a11b6024bb15c6415532352fd62a824266edeb5ab3e1ef6cfa31259f8bf7d9a92fcf7476c307cd7d4188ff20cefe86558b2a6e4c099987e1041bd1f98031e + sha512sums = 50d426e8c3d976fd635f6867fb4202832be455d869178a384159d1b2cd2a25642b07da2bd3184081b13bfb95df48a97f430b06713eaee0d0f67e27f43266cfd6 + sha512sums = ddb3217d9bbe7b9531b3d7ce24d88766e65629bd720228c0f8f96edc82216e13e5f0d0f30c8012cb85bf5ac7401f5a551aa69fc0505a29475ed61c548b4cdcf4 pkgname = systemtap diff --git a/PKGBUILD b/PKGBUILD index 816495e..d9093cd 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Original Maintainer: Christian Rebischke # Original Maintainer: dront78 pkgname=systemtap -pkgver=4.1 +pkgver=4.2 pkgrel=1 pkgdesc="Infrastructure to simplify the gathering of information about the running Linux system" url="http://sourceware.org/systemtap/" @@ -15,8 +15,8 @@ optdepends=('sqlite3: for storing results in a database') source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz" "${pkgname}-${pkgver}.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz.asc" ) -sha512sums=('fbd606d9842ac63af6e607613a112b08d7593da74ad0398716cdc46f74a977a8e6b9fae92e1f63779ccfc94cffa25f29dee2ae44f67ecc4cedae630e50a2e7b6' - '755a11b6024bb15c6415532352fd62a824266edeb5ab3e1ef6cfa31259f8bf7d9a92fcf7476c307cd7d4188ff20cefe86558b2a6e4c099987e1041bd1f98031e') +sha512sums=('50d426e8c3d976fd635f6867fb4202832be455d869178a384159d1b2cd2a25642b07da2bd3184081b13bfb95df48a97f430b06713eaee0d0f67e27f43266cfd6' + 'ddb3217d9bbe7b9531b3d7ce24d88766e65629bd720228c0f8f96edc82216e13e5f0d0f30c8012cb85bf5ac7401f5a551aa69fc0505a29475ed61c548b4cdcf4') install='systemtap.install' validpgpkeys=('F75E6545B9F8AA15AA932A444DE16D68FDBFFFB8') # "Serhei Makarov (for Red Hat 2018..onwards) " From 6b093b9789774551664c01a0fb69dc0215bcf194 Mon Sep 17 00:00:00 2001 From: annguyenfoss Date: Tue, 3 Dec 2019 16:24:41 +0700 Subject: [PATCH 134/971] Added a valid PGP key 5D38116FA4D3A7CC77E378D37E83610126DCC2E8 --- .SRCINFO | 1 + PKGBUILD | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index a276744..ae2282f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -17,6 +17,7 @@ pkgbase = systemtap source = systemtap-4.2.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-4.2.tar.gz source = systemtap-4.2.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/systemtap-4.2.tar.gz.asc validpgpkeys = F75E6545B9F8AA15AA932A444DE16D68FDBFFFB8 + validpgpkeys = 5D38116FA4D3A7CC77E378D37E83610126DCC2E8 sha512sums = 50d426e8c3d976fd635f6867fb4202832be455d869178a384159d1b2cd2a25642b07da2bd3184081b13bfb95df48a97f430b06713eaee0d0f67e27f43266cfd6 sha512sums = ddb3217d9bbe7b9531b3d7ce24d88766e65629bd720228c0f8f96edc82216e13e5f0d0f30c8012cb85bf5ac7401f5a551aa69fc0505a29475ed61c548b4cdcf4 diff --git a/PKGBUILD b/PKGBUILD index d9093cd..7f29799 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -18,8 +18,8 @@ source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/relea sha512sums=('50d426e8c3d976fd635f6867fb4202832be455d869178a384159d1b2cd2a25642b07da2bd3184081b13bfb95df48a97f430b06713eaee0d0f67e27f43266cfd6' 'ddb3217d9bbe7b9531b3d7ce24d88766e65629bd720228c0f8f96edc82216e13e5f0d0f30c8012cb85bf5ac7401f5a551aa69fc0505a29475ed61c548b4cdcf4') install='systemtap.install' -validpgpkeys=('F75E6545B9F8AA15AA932A444DE16D68FDBFFFB8') # "Serhei Makarov (for Red Hat 2018..onwards) " - +validpgpkeys=('F75E6545B9F8AA15AA932A444DE16D68FDBFFFB8' # "Serhei Makarov (for Red Hat 2018..onwards) " + '5D38116FA4D3A7CC77E378D37E83610126DCC2E8') build() { cd "${pkgname}-${pkgver}" ./configure \ From 58aad5fa218d1fb8e0a40f6476b476585bd5b9fb Mon Sep 17 00:00:00 2001 From: Jonathan Liu Date: Wed, 8 Jan 2020 11:21:49 +1100 Subject: [PATCH 135/971] Update to 0.0.19-1 --- .SRCINFO | 9 ++++----- PKGBUILD | 15 ++++----------- configure.patch | 11 ----------- 3 files changed, 8 insertions(+), 27 deletions(-) delete mode 100644 configure.patch diff --git a/.SRCINFO b/.SRCINFO index 36c0fd3..aa8b90c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,16 +1,15 @@ pkgbase = wxedid pkgdesc = wxWidgets-based EDID (Extended Display Identification Data) editor - pkgver = 0.0.18 + pkgver = 0.0.19 pkgrel = 1 url = https://sourceforge.net/projects/wxedid/ arch = i686 arch = x86_64 license = GPL3 depends = wxgtk2 - source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.18.tar.gz - source = configure.patch - md5sums = 4098b6355d6a0ed76d06c33bb9499b27 - md5sums = 1443b5b6e81b32df7c4a5c036603c52f + options = !buildflags + source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.19.tar.gz + md5sums = d9a1a2de8483128a51ac0866e3c28d46 pkgname = wxedid diff --git a/PKGBUILD b/PKGBUILD index 30fc0f3..180f75e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,22 +1,15 @@ # Maintainer: Jonathan Liu pkgname=wxedid -pkgver=0.0.18 +pkgver=0.0.19 pkgrel=1 pkgdesc="wxWidgets-based EDID (Extended Display Identification Data) editor" arch=('i686' 'x86_64') url="https://sourceforge.net/projects/wxedid/" license=('GPL3') depends=('wxgtk2') -source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz" - 'configure.patch') -md5sums=('4098b6355d6a0ed76d06c33bb9499b27' - '1443b5b6e81b32df7c4a5c036603c52f') - -prepare() { - cd "$pkgname-$pkgver" - patch -Np1 -i "$srcdir/configure.patch" -} - +options=('!buildflags') +source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz") +md5sums=('d9a1a2de8483128a51ac0866e3c28d46') build() { cd "$pkgname-$pkgver" diff --git a/configure.patch b/configure.patch deleted file mode 100644 index f29401f..0000000 --- a/configure.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/configure.ac -+++ b/configure.ac -@@ -24,8 +24,6 @@ - AS_VAR_SET([ac_lang_cflags], [$CFLAGS]) - - dnl AC_ARG_SWITCH_DEBUG([DEFINE-DBG-VAR], [DBG-CFLAGS], [DBG-LDFLAGS], [RELEASE-CFLAGS], [RELEASE-LDLAGS]) --AC_BUILD_SWITCH([-g -Wall -Wextra -fno-exceptions], [], -- [-O1 -finline-functions-called-once -fno-exceptions -Wall -Wfatal-errors], [-s]) - - AC_SUBST([ac_lang_cflags]) - From 4d78a035ed9966df1f5f84bb25061a0e1b9bbc0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 14 Jan 2020 07:12:19 +0100 Subject: [PATCH 136/971] Update to 12.065314e Bump of pkgrel because package moved to Qt5 --- .SRCINFO | 8 +++----- PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index a107d67..d0f942d 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,13 +1,11 @@ -# Generated by mksrcinfo v8 -# Tue Oct 3 13:00:55 UTC 2017 pkgbase = polkit-explorer pkgdesc = Present PolicyKit information in a human-readable form. - pkgver = 10.84983b1 - pkgrel = 1 + pkgver = 12.065314e + pkgrel = 2 url = https://github.com/scarygliders/polkit-explorer arch = any license = ISC - depends = python2-pyqt4 + depends = python2-pyqt5 depends = python2-lxml source = git://github.com/scarygliders/polkit-explorer.git sha256sums = SKIP diff --git a/PKGBUILD b/PKGBUILD index 7cb8544..c80be60 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,13 +2,13 @@ # Contributor: Alad Wenter pkgname=polkit-explorer -pkgver=10.84983b1 -pkgrel=1 +pkgver=12.065314e +pkgrel=2 pkgdesc='Present PolicyKit information in a human-readable form.' arch=('any') url="https://github.com/scarygliders/${pkgname}" license=('ISC') -depends=('python2-pyqt4' 'python2-lxml') +depends=('python2-pyqt5' 'python2-lxml') source=("git://github.com/scarygliders/${pkgname}.git") sha256sums=('SKIP') From 259aaaf08b28287de55733d0fc669ea0abe71bee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 14 Jan 2020 07:17:57 +0100 Subject: [PATCH 137/971] Version 2.13.0 Moved to Python 3 and added several dependencies --- .SRCINFO | 30 ++++++++++++++++-------------- PKGBUILD | 10 ++++------ 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index f916b9a..146a6fe 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,28 +1,30 @@ -# Generated by mksrcinfo v8 -# Mon Dec 11 16:02:21 UTC 2017 pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = 2.9.0 - pkgrel = 2 + pkgver = 2.13.0 + pkgrel = 1 url = https://github.com/redhat-performance/tuned install = tuned.install arch = any license = GPL makedepends = desktop-file-utils - depends = ethtool - depends = python2-configobj - depends = python2-pyudev - depends = python2-gobject2 - depends = python2-decorator - depends = python2-dbus - depends = python2-gobject - depends = python2-linux-procfs depends = dbus-glib + depends = ethtool + depends = gawk + depends = hdparm + depends = polkit + depends = python-configobj + depends = python-dbus + depends = python-decorator + depends = python-gobject + depends = python-linux-procfs + depends = python-perf + depends = python-pyudev + depends = python-schedutils optdepends = virt-what: For use with virtual machines optdepends = systemtap: Disk and net statistic monitoring systemtap scripts backup = etc/tuned/active_profile - source = https://github.com/redhat-performance/tuned/archive/v2.9.0.tar.gz - sha256sums = 0863896aff15c924afe7ee9449d16121c840d8bf768055aa749d0d050518efe5 + source = https://github.com/redhat-performance/tuned/archive/v2.13.0.tar.gz + sha256sums = 528b34ef0d2c219def11cea8bd8dbba83dce04adb78ab4b78ef65cf63885496d pkgname = tuned diff --git a/PKGBUILD b/PKGBUILD index 07bb02b..d44d1a1 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,19 +4,19 @@ # Contributor: Tom pkgname=tuned -pkgver=2.9.0 -pkgrel=2 +pkgver=2.13.0 +pkgrel=1 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url="https://github.com/redhat-performance/${pkgname}" license=('GPL') -depends=('ethtool' 'python2-configobj' 'python2-pyudev' 'python2-gobject2' 'python2-decorator' 'python2-dbus' 'python2-gobject' 'python2-linux-procfs' 'dbus-glib') +depends=('dbus-glib' 'ethtool' 'gawk' 'hdparm' 'polkit' 'python-configobj' 'python-dbus' 'python-decorator' 'python-gobject' 'python-linux-procfs' 'python-perf' 'python-pyudev' 'python-schedutils') optdepends=('virt-what: For use with virtual machines' 'systemtap: Disk and net statistic monitoring systemtap scripts') makedepends=('desktop-file-utils') backup=('etc/tuned/active_profile') install="${pkgname}.install" source=("https://github.com/redhat-performance/${pkgname}/archive/v${pkgver}.tar.gz") -sha256sums=('0863896aff15c924afe7ee9449d16121c840d8bf768055aa749d0d050518efe5') +sha256sums=('528b34ef0d2c219def11cea8bd8dbba83dce04adb78ab4b78ef65cf63885496d') package() { cd "${pkgname}-${pkgver}" @@ -27,7 +27,5 @@ package() { mv "${pkgdir}"/usr/libexec/tuned/* "${pkgdir}"/usr/lib/tuned/ rm -r "${pkgdir}"/run "${pkgdir}"/usr/sbin "${pkgdir}"/usr/libexec - find "${pkgdir}"/usr/bin/ -type f -exec sed -i 's@#!/usr/bin/python@#!/usr/bin/python2@' {} \; - install -Dm644 "${srcdir}/${pkgname}-${pkgver}/tuned.service" "${pkgdir}/usr/lib/systemd/system/tuned.service" } From fe2518d626452da9c26dd5df821aa7e580a5f2b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 14 Jan 2020 07:06:12 +0100 Subject: [PATCH 138/971] New release Cleaned up PKGBUILD Changed upstream URL Uploaded source directly to AUR due to lack of mirrors --- .SRCINFO | 10 ++++------ PKGBUILD | 17 ++++++----------- plymouth-theme-arch-logo.tar.gz | Bin 0 -> 30361 bytes 3 files changed, 10 insertions(+), 17 deletions(-) create mode 100644 plymouth-theme-arch-logo.tar.gz diff --git a/.SRCINFO b/.SRCINFO index 6ed965b..74fa537 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,16 +1,14 @@ -# Generated by mksrcinfo v8 -# Thu Sep 15 18:31:27 UTC 2016 pkgbase = plymouth-theme-arch-logo pkgdesc = A remake of the ubuntu-logo Plymouth theme, based on the debian-logo theme, but featuring the Arch Linux logo. pkgver = 1 - pkgrel = 1 - url = http://karlinux.deviantart.com/art/Arch-Logo-Plymouth-Theme-209553250 + pkgrel = 2 + url = https://www.gnome-look.org/content/show.php/Arch-logo+plymouth?content=141697 install = plymouth-theme-arch-logo.install arch = any license = GPL depends = plymouth - source = http://orig01.deviantart.net/455a/f/2011/140/5/0/arch_logo_plymouth_theme_by_karlinux-d3grgbm.zip - sha256sums = 85081ee41d773ca61281ad0bec9209f7b1f79bf5a21846bf46030d298ef3b65d + source = plymouth-theme-arch-logo.tar.gz + sha256sums = 553ab3efd51abefc50c10b521c24183df9ef879d080a75c54fb1c1512fbc94e6 pkgname = plymouth-theme-arch-logo diff --git a/PKGBUILD b/PKGBUILD index f511f09..ba6e580 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,25 +4,20 @@ pkgname=plymouth-theme-arch-logo pkgver=1 -pkgrel=1 +pkgrel=2 pkgdesc='A remake of the ubuntu-logo Plymouth theme, based on the debian-logo theme, but featuring the Arch Linux logo.' arch=('any') -# Alternative websites -#url='https://www.gnome-look.org/content/show.php/Arch-logo+plymouth?content=141697' -#url='http://arch-stuff.org/content/show.php/Arch-logo+plymouth?content=141696' -url='http://karlinux.deviantart.com/art/Arch-Logo-Plymouth-Theme-209553250' +# Alternative website(s) +#url='http://karlinux.deviantart.com/art/Arch-Logo-Plymouth-Theme-209553250' +url='https://www.gnome-look.org/content/show.php/Arch-logo+plymouth?content=141697' license=('GPL') depends=('plymouth') install="${pkgname}.install" source=( - # Mirrors - #'https://dl.opendesktop.org/api/files/download/id/1460753768/141697-Arch-logo-plymouth.tar.gz' - #'http://arch-stuff.org/CONTENT/content-files/141696-Arch-logo-plymouth.tar.gz' - 'http://orig01.deviantart.net/455a/f/2011/140/5/0/arch_logo_plymouth_theme_by_karlinux-d3grgbm.zip' + 'plymouth-theme-arch-logo.tar.gz' ) sha256sums=( - #'553ab3efd51abefc50c10b521c24183df9ef879d080a75c54fb1c1512fbc94e6' - '85081ee41d773ca61281ad0bec9209f7b1f79bf5a21846bf46030d298ef3b65d' + '553ab3efd51abefc50c10b521c24183df9ef879d080a75c54fb1c1512fbc94e6' ) package() { diff --git a/plymouth-theme-arch-logo.tar.gz b/plymouth-theme-arch-logo.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..1ce0c86c3ca97dd14c2e88b9f942f57449f8fe1b GIT binary patch literal 30361 zcmV(vKOb#!PhbYXG;>^y068#%7?S-*lK z*PD@IS(Y5znZ$A4IG!A?b&j%~%4D{tR8)(Sdfn>Q^btvUoBzH5cr@9Ej_mAiy{gsD z#_A>sfFJ+@AgG%c7r(rD@!h}l(}U0H@iG4GKRW5zfAQ1rA0K_!@1LALJnHpMPEWq; z^^cDF55Hr*e=S+^lO-vS8T;;@$AKSa%esD>+W((^-Uq8$l%-RaPQ^?lY#hbxBKD>Y z_}oQ|d#V3fFw-j#JPz43TBH%1rs+I+a(KA#@BJ=^F~py46i*KQa3q%9`E-7$M>ZM{ z*z0#6+1)#K_4fAe;`*9BXf!UP`3f;h?0`HNiI^d*gCLqjERCM9!z_splPQnI;amYb zl*Aqai7=Lb=6=A3fzWgCc*ur=1%8r>5nK4_^hsln>A?qyNDoG0%(Eapka!Ocuy3RB zVLsxiV5=yLO?T!+;n<&KF;D#{WG$YsIEvEt29Qq^5eN_P59s+B&Q-z@%ug9WAuMW8 zj!lk6nq5@0dq4D3Z|+CzV9xGE9E#xRw1I5Bym|4<)!i-f({QeVYsmPB&r?ZvG$uZe z#L(xVWG)X!EE{HFnki-@>JH;Uz`R(D{4`;c2-pcreGv>r41eGFK@(Kuaz9X~_cM^+lmOp?a_FiWLb z3`d7xTV`NR#w&ya@3Ij01llA-JWI4Cd-e7MdnG~<1LF7DFz`Kg?Rz3j1RB>lzDcHF z{)YqyN4!KDZWRseWdwl9Hl8s7<`!^#7IA{M@~8ur4a{#UZFDrpUTp-!!xal)i!gob z=9^Dz#Qc!ZPop{RPyiJsweZ2p!XA|+Vw?pX1Oc7d$E&;7?>^kIi?^TH$BUbri??^5 z&S*D)&4G!}LW1&V^T5ZgjmI$$(-rUpA-s8UbNL#ETs*(JzPkH_lX!V`_x8o@EqnRy zhF!4t7dLlTmmjV#ZrJ+|H}BuwzUVS`D`?|H0Bd+Ure%q72T5VOP4vV+!Ad4TT`*!( zwEeO01b7T1#$i*KuQsn1u@!ceiQM#3i;-u{AG0t@J8TjAARuW}UPm0BFJ*^agc`?LGeKr<2D=jg;OE%2;~clgDRO%^DkYII8TRutNJI zLVMwnV|0gT57^$AKJe}4)pMBQiT;0sQ@;vQi2jOJXWkX5}x?pgc#tc8B!~WW6B;s3lA4$Bty>gSH{-v_KZZ z{`77pj?3rP1yuDTKbT%M3*jE$9`6cl+Rf zL1>xGxrZ7~qgEg|;Zek+Gl`S4jm}S ziXe+{Kr;5@Bpo1G*68ku>YL971-Zb#mSR2l0xcxd2K>w#+HUBL4rgV7JYWtJEnrVs z#Uv3&#p@yxrA4~}a8z(b(y({1_Hzr4BwA!;Ta)#@4`@e4Ckp-}*Wr)M|I7n0@MP4% zErtJDZIVF=TK?Ng=ud|w*-(DfQi%alDs4VKE~Y+sA}wcByNk}n1;{#eZtJ1cp9lB( z=n4o1p8bPjA!%s>&G0kU!v6sbTo#;YoBjRoy5rMx3BApJ_#vMMkx-fkSPV54 zd)>+u?dPjs1*mQfN`MONxe;@U2n>hj9Q@@Nyop%0%s^9IK8-QFVCMyGafe$r${D11 zRkRv%w6aBVKqwXix%38=yOglE*q{$!GhzFVkXs*XGWDIRu-GW}9U*S%sdnU?6!i|@ z^GQg{hN13^-;0DL6h(qx2oW#7jY9A@LDry8n9U#>N?10>_I|HtE!SOi1-{Y*0&dic zTz}9W9rSI9J@0{FJw1ov@YfYCTor%6*~I0rpqOTY=DP+1Vk3TEv;kjTok7JBc7RAD8sM&^U`AkX52JX-1K8mk^loLc5PM&z+SmGldR)SZjACpwf z=wuSS4u2R^ripUcL);xmx1*&wr=;kUDb0fjN9K{$bE3?^C<=dsPSIxpo(N{g5M#6m z8TUM}?Q%0>4`8GpKVXty-9|aEtybZS@%)eUO|$LBwdf(qT@N@Avnj_-<@C6>JpQSN z>HD90z2#}IhsO!v&#gL?uH#7OAC%7?`*bQ0uhJ>d2hhMf_JWLv#pK<58uLV`yk64I z)5Z|UOhl@a0mPET!$TjF_LV$fL%@Jpcp*k&)NQ~%4XT4@+LTy=$vSzAvt8VwYqYsr zhPBA4OFWsT^MS<_9E1!H>uFVt(?E{nDCP^=yqT3(soh^Hn(aNNqS@YODw>_W2He9P z81i0e4ZG4>vxXr!Rp9xctZMnZ^MCf(Yaz3}AQjn69YjfK0%gL3ohc8-Oj?ozy(GcG zm7$l8W2V5R5y%f7nvqD^nI$WxSyr2?@`HB9vm~QVaCaTLs$QAZw@=lPdkrLC zHyxJ`vx!Qa=Fx7`2!1ZZP1qcyEbO!96NXc5R_E0!8MALmOzG3?P>OJScq@ifbflN4 zH}a<5N#%=87-_88BATUbxJmD%jwx55@X}5oYCQRaQlkH1N0f!Jvff(wDwt1694l|X zuB(doi&_{qZKGkuagKu0Zi<-zsxo3}%tJ62ce=hRBW1=k^r}pQ-YWLjy0+$U0f)#ujAK*Q851xc{d#?0 zO5I)_8MRdOY_Jn6rScW(u2g<0mEO{J1GU(&k`1~2v#m^>H!Yd5Cy(wnh!;erOYM-b zk3tq}9BK9JFf2=O^*6%p{Ry2W2uy6Gf;#y{J&&nOL6C-%vkkE(_yw{k1coQzTw|_} zkFWv=i*vw@M(2~uybRd_DY;@i79Kj)=-Yr};Y~rF29ieBvZm8vxxDG`1DQvJsYr2i zlem=4&SlgYV)R*^zpd@+oX&k&+x3g(=YRv|kAzG;DU&FZMR*7gGonuRf)!w`(Iy4| zcB*n274SnBe2LPv9*g3N{-XWfZJ-%i^_n;oKhI`!qF4?jf%36{ccJ7{%783`u|2&> z5DoEc6gv+z9lA4~k*JivmZ9-j_sV_aJ$2;WyroWPJTLvKDFrzxUy+;k7)9}0aISP|r>m3s2eOp#8>6me^9e0vikNK{~EwZPPF zQgr`I+el>;u!C)&(H$(dF-Jzy23}!76`haxp{#c_d_hKI8l3pcLx09oQ8`)tu0wKb zPA7ni#d%|UesY%2q`IFW1ryo$>Z~+%N2K-4WW^UPx|M?~>>_ffQHZdCzM`)wmCq7a zY+WzXI82GL)mgrg`3;vLb(*2i$@U72snw*D3gB9w>VO%2>seI*W)ayzfqDV|L2Va*;Ehe=azeCgORjfEk&56k|rD;GPfji!z<-#ahPs`_rSZBi1~ zF+fR2VXkGJUhmOta9=xhho0Na#4*`Kc8^xlwA7?R6qeXoDyhS zuD~y&cur;s(Jc!yPlVn|YEo^g=EO15M(fm`Pc@ey9Ok_$chJpGje0qr^q(#dHGaDO zsEs0bRGj{r*nON#-)j6Szkb~@)pyN@B4AnS2MBe25)=(xK>byr^-$=Fb*{7Jurz4% zXkVk8HZE33bzq4pHkT!tBeD?k5E~!B51?eabm#G^kvgH0II+YW1c3HJ@Y)A%Ym5HC zHk%B_5Z%)kRd|TFOP;q=-cytiRLLCCpEySjpsC7ql+I3T;s3CfCXf`$gZ5289!w*#_ zdqg0mZ7QgcjfL&UVW~NWa?rcyYUM#DZB-g&ou8?Nz66&_-PfQh#Ay`!U!pL@gZK*2 zyPYdl&4o^+D3k*WWH!fHq+*}7%7;Yz6%~;% z5o_(rlc~T~3HyP8^R?k>pPYu$6P;2mt_QkwtID<&GcKKOpyUg7o+XpPI*8a_2X(*N zHWN%c4^p-I8n&HTtp-;q(llH)=yZ&;`a^`9WgQ^gyV6$W>r!7;c1WMXcdA$h@ z6W*@WCeYZ{d~J({b!S6rfhtE~TUl32(EcRDw;e>=h&2ksv@{eUl?|BHBQHX(7-bnS zgHRf=SY~S^4@*|eg0-6oE6s-Nm%*)8Pb#%uzS?cK-(iI;ki74d6P_Eketra=+qZ)4 zDq&ak0>!s>@jy*mZq2r^7!Eg!=EAjjTiS{eo3}R2NlsaI@Jtqma+F`Ou zsq>qhKE_EB@bO^riwlk?&aCWZYbuf&D}87Y$uf0^{py1+-{6jfw+8Yb6v^A(7I%AsO04&&+P%MlA$)i|R)+FfK_)99%;_(E>>b?-hsZR1#NRw$0>a}Y( zYOIRxX>#1s&&d;3l=Rm4@J@rV^mr)(Z(f)Y{nAEl?vmiXa4%NLlcuvBUq{isDMM2o z*gO_ve`!I%_r(ha#@ZARwM#U(@d+A4g7^KouG1${6kDh%Kjx%I+}`qus7P4ubIt{T zA|<)0e5FEd%{qN!y=KlLZS=1=VrR3%0G;f5-gRFH&jQ zdv$|&z4wAn3u?E%Z#)?JJcuTl7!U(<1Ff{iPIvKF;A zJj62NQgA2-?iLqX$cn9{w3VE49@-@WCO)#0mlB$tj&g+M=yw^|SwW6QqE8Pc4jrKB z897BU3W>wSf-Dp{`>W>avWE4abca<NBKV zY*)sC21#j}of@q<*k5<5pPSxfO%0h#0)F%%mps?M+r}NGpF&exlyXP)WB#ib%&cb7 zJ5{z*-vdUCSN4svN0}TIoV-UDtA!Pa50JpGyoBG$fNIL?s zyr}icwJUhLj?*mV-dc&!@?6yV%^$f64_HzBznLY!*0Uoiroy%cpVzAnR^Lq7r!6R3 z?Mm5~HD>$^tW5u#$^C5$a=$n}LgO2-IHk6Z;uZAs8`Z4#-i+na=pWF%x4oAQ`@SYJU^7WoeZ-YaywLY|Njy1}TwDBgVtIZ|Z|x%FJI5iW<8W^(y!%A{GA2%bi0K9b)}|7X^4IOK7_th3ZZ-)PiDRyRg9A}ijSG09 zeiP}dim^86rl;MQ5JNivvYdY$pJhHZU|;*CxbBmo$t{KwGw z1WboCSTHAjQF;h=P>#EeBB9;oRQg z3mr$GU>+T(H?6{a>*yNooe_%XXudJJfA`C~CvwVuilr}!Pe1$~u~^`b2()5OlYyDx zuM5kH$2Q($C;M+U@PDxPBw$S)TL%%XD6Y8HB?b^swy;G-a04VRC=soQHU<(jvIGeM zgsN1ZRYY9C?bnKms70mFx?r&=XvMlxS5%~G#q!i5QWw;MzB@B_zc&F}zy9xiUvEE4 zax-`4&Y5%0oO9+ZocDAPN|h>@ECxlGLz@6heS?jUOs3@XxDgY86Web!p=t%<|LDRe zMr=pOCahH_s>nEMw6LZW-(-RY+s-bpg}%t0ltaQ*dmVM5 z{s=2J#;3K>8kj{$gR~HQwlL{|iZfHUgxg~>46`_#-Djn!2RA|8d+&~xon8u8nARizOENKwezdmGl^k%l~ z9vMLKf_7>v$nRR6n!`&O3IMAgPBepoZGbll7U#)`EYKBxyr?yjn|UozXflj>1?e0}U~{V5gaOLXnl&QYo_2 zBX`k_>)g)qO+{qo47=c!3Y*!33+h1+$u+YRE6|0=ND^Qi(W2tcCz1A<=RL71BcrUQJLQg;q^cD6L!i zdops?h(;=*(n^WiP}0K`R?2%#ji&-8EG1eroE+g1N$rGi&c{_eg-(nPSWKQ00Xe-H zRIogSWcn{8P~%ceC?>n$CKs@*P(cSGKgnWA%NXuii549M@lwKBh$>8jyPv=iUtq`} z>&$?%WK7csm>DMF!Jd>{L67D(+MfeKcIIM!?nC2aAL6?-}*w*X-TQc@! zTf8&+p3UEq#{m`XqCg--^8&IX!E#v6=CEo^B-WO67K#UTf^a(@CRt))B!*M~CLk>_ zdZ_uVfXxJ`-9&F&8u6pn_@LgZKS%WT_AFLL=-4p`fsi_Zb8VHD%VI6adOM+{WstTE zu#EvkB3Fb@ogmkN$UTFkcvLF{ZY_j`DhfDtk!DxJ)=yd-e}BWoYXFh|3g)v&jp&Y7 z`lNbn+S130>Y*&P)M_yW8!G;iY>M~^4Rd%byG(loduJ!IkAyS!f6ji-mQ&SH3>vf( z>fimPly!%$-P++)4YY7vAEZyc2?g9RN1!xUgSgDM`m{j$ra6FNF`!8S040P$=1v?E z7^T2Oi^RDRBg_!tErO8+OM-oWO@TPE(l*Bs?}G=UE0ws}7MQYtL_y!tu&+82%Tx(! zElNFr+jUV?Qj`YO7=zYZ5o0^ReJ00j+V0AP3{3_lkscR8No=5)X!Bl_qDfX>4(9G>O`Q%ZxY`8?TlCsw zA4tSRn*u&rLTAvU*4dCoUfvgBn@~W|EW>ioW^Fu@CEL!(j9|nw3(Tiw!=v^<^zxMO zO#UJ#^K3FCFamSIdorxAfE@APSXnZV$(HpNET<917tRglj(~`nxjs;Aqpu%4h+!we zF}QuuVXb$Sy;$d5#MRu*1zZal-*|Gz;8SjrX^?NMhk589)G&e!@?>VCVD?0q;E6mj zOm@UM3NdJjXRS}OSsa@6pI~#~Y90q6LB)k2iH=;-jiMj6k`M5#@%!Spn&MU*37zT& zp5fpdDm<*ElDd6JY^UqwHlis+%57XLrR(B6odSH|#S|9c`Id^3A@z07BUTzB1PkFr zuo=VygC>wvNK_-rigF>Qk6;-v!Oax>)PQx}EKueVUd4kE@&$38mgQQ4}sVO-5e*P2~VUJ`$ju03s)xIg%b{Fn2zc zQBsFWG6AnasscS|0BQ<=M)3*^CA1n)2>_mAz>`t%6mY)6G!I>jik@eb5;owGG2z|? z(MAyo3)*Xy3|C9N4z#L%2E$|(^45VMdZxw?Ge~K!SW5&Diz|Pu1+F206ILS%>^n6;ZZOE z3j?Uw76X?x1_Ipuj3`+_v3U^LhPNTT3BV92F`0`kwas9?Ah>4{DlLFbn6k0W~XepJj05-P3FG)E!UaR5~}4-P|?iL(W62%r!S`%Hi+ ztQi?C2mX{oTA4vs4-|U?6QP~}9S;>T&r$ThIVNP0k9sg91w$PS8pJz!Ivb@6`mCp& zW|GDX2Kd^qe(X)wKiM`4*LNk z1Sj@F8*u6_w6Y>iShgYt^7Lm9!o(h)S9s6Sc>FaWtZ^_QT7ZzIyXlCSz-7UVQ-hC3 z(qai&&^Jx1i@_0ukU?+}1|*#!&y|%N@w7i@`(#21wqu#Lnl(IKmu=1q5Supt=xlMx zLSHvc9({1~4%e z;22>Us2lSAh(KrRJ0^G`!3ZO8dd2w=aQ2BWAgU$m=7i_8hBdNq@MDm3nC(EbI)ejC z(jAhH3_!)lMzSN{PpH(Ww4nNyRt1WffFXqn-2WJ1J4w;8WWgll&KVjTL1a-Sv?*$3 ziR3l((p4TT8e_x7hTYA3+W85>@<*8`nn6~7l4kJpatuT$$ps@48r|Xn1t*%BEMZ76 zS^c5RG_OImTzv@@__A-<&@+0nGkQ324wagd+=H1HgOS`rPq-Lb zVJ^Y5VE?}7L;*TXeru`~?GQ^bKLi#a!_h(!q17N)Rm#;B!QGTr%K{Puy><{!^#Wl8 zbRp6a)e$sNRCNSUCXWZZ4ApD{zw;GU@Zi7~K!5>L_+h`6^p#?w)!jd9ds3bM+Pz&=Mf zn3lpz)5-8DUv-44S?y^UjSu|)4ebBIi-Hz2y%j9k`+>%2ivA_eIQ=_gU%-8_1pE3A z{r??T$|V0WW~RLWX_!g>_P}noj+IXEX<6cIGdy;DzUs}~z5+LwrzT_jj*y;AwV7}7$>rj9_Fac9HjTLCr#KMcck05N zSpTY`7jqvBikr7Gx9rlH(3IM3nvI92$j#RoWevC~F}~h!^N2S4J5G`&+n*`D>!#=$ z;OQ$^Qk8J}MVD{Zc563vs(Y(_rrVP?Ri`u_IT0iLX`r=f{#TKfWi8B4d?ZO-4`8@usEyZk=MNrKwU_?X36W{%4wdHX|S>x-X#bl0eONX`5f z(I$5*?w`{>%Xb@B_a<=e#q`ZLldpRB%XpD`b(po=ft00uG` ze=ZoXLT7()ZR>x9+oj0Ir5LZ1_Sm958#8a4Y5v^n>A#+TUR80t;q;=b9j-eT<~ms2 zoD3FI>f`VI^{82k-(&r0^v_9F_n~mC3Ho;i#7^x0Zmuq1|ChM9{6qhL$Hk?8BQxx? z1EhcFnd2=5f0h1SEjD?4^;jSycr=2&WP(WzF?r` zPo^OyHhv|ktxHDl===S@FAX2@(@ty0x5Z0@AC1isKL6z#YsaOFb6d(}hn8>8I&@H3 zaP;Pp;bF5+pNl^{(S2aTm7Dc#`-b(1b1b`e!NsM+$~{YldAx~xa&t&>Z0c6=;hkUJ zKQ>~{z>YnoK_B-#`s=$>iv$htM)$WiUz@g8`=ph!bFyWRAn6e4=Ptj;Rn9(TlNHAfEFCRf;4#1`MJ0}2(#db&*u6Jw#tob{*xB3IPv`2}ZAE7G*J++dcU$%js($Tr zak1E1tyhuWxA1!n(9_ zd6Mtt1L^)_r{|yU{%L7ez?#7Iv9GQ@bM&cQ`08OrePQmEgWWex$c?JL`dLn*uH(|A znu|}0GsFLto>i6RR~i*y8ot{7i=&mp-8Z?et)874RdQuX!JbUZvdaARKNt%vrSp0p{n%@Pq}P+Z#sb$v+x;%y z?A88mZQA{BBwgFbCA4@Izr2+o%P4t{K-fzFKMK5!1(yUPTm>D?&`0La*hlnpgCwhy zOIJbrmM5N7YQFC~O}#Rub+T=g(=QL#``Z1na+ts`y?XvP_BL5c#XXO2KC&{4pI+~> zEarj36_fLaM|C`y*tpP6Jtu8>#+;Q~=R7~&c<=OQhh&9k*BKqCS-U<|vgoK*vcWaq zYh^}7#E`Q4?m#%G6KWZZez@VMq!cBYR-y7@$} zej1~?+5(T8M?Ee)N_lWUxTx~eyQ>>-343kWXsX5TE`G=JBpP!Ji>mWx zRP%Ev z8hgH3Ca^4T$XO%sTQnlXT38o2%~HCk#jB;lk`BYVdjcl%C-$9xuK$ippZt%~+kTia znv(zBUBUkE;_4!CcXoDi1M&58DR|C-Pf(Z5P(VdOYJp-l>^GFyt_^^u8F?sdt{PeYlQJ6nZnO^CpvtU{-oE_d+KmOw0yxyl*t2ZAjkL$CQFZXK(=<6X7udB5w2SKcY9 zmi)1^i>%_vx;^>Z5=z|?MvCgn9A1unZTd&b#LnAROo|&l{YJJb=%Pt%PVu;&$FHCK zc3xqHquY)fH-7u^%>9R4Ot zzk#nZttE0~|NC&FKfIcte~GJ`n3VsWT>$;Nxl6?V(Es0Y@zDQv?4LWN{}E5qF~R;X z%Kzd{_FK#xuv>l9fzx6~Ya+p+EF60@UXKu(3&%(&Oj0_iS_=g2lW|31M$)D!*L3f4 zwXuqTa;Z&q-l-)0bD*FR0)0 zUG^$}AE8@kvO~-g@(-&gDgg zqxy&0Y5WTAnJ0Bit2mHunJ&u7$ei(IXQxwrwO$u9vS&Dy`=8jj;rgDbPCgH}c9fQ^ z>>B*8wP5kAF_W$PPD^XtcUD%j$7YC8eV?E63QxMYoLo5N!K+)z3)W08F}FHZd7#{; zU$5!6E=Labk><(=^m{#Oc2(gg8)^?(t_!q!*isrQ^%@lu(fvWguIz1Vf2-NLZ<(~$ zns4_DqP7K<`yc$wa>l`9L5;OZ@p+cQGpW*FPt;|6pOYH1J0oKK)v`|C-p+|G%04EK z^<2N+@AZRJNksVYXQxWeNB?lFa$eva)2lUG!}HsX=(uY5w!SM$&c7N`yG~bIVY%Rw z%QBbn30v3n__FTt>glcPbM5v%FK$wA9u+gH23HVf!%*)w^+b<(&0R}>i* zENf9Z>)sdL8fs6Q?QpaE>h{{ked6cIXDb!DaKH9zWA|oXu}WJPn{cAAQW_>IJ8Stu z6jbT+%a7Jub=O+9h`H9Ye}aSA$sZ>EYI1+o!_;$o98PP;J?hkQkC#f1Z88GA|`3esT7H*!vE^sEV!OP#$Gb5D{#km)!&sQrJx) zkPt8sAPXTV0cpaz*^;bDcEc8u4fXLp6;N7e2BoN|JSn0`k*cBsQWZrh(xfViAVrY! zO}}%?mhgP<`~I@;Np|m@IWu$S%$YN1PI)nMbnS(o@4T_@Oy|meXO`}06`|XZwspn^ z)7OV02N(zEy5}zXIlKFS>7Sn){PnZO0X=Wj*nYwI$l-^3&3!}v@cC=8t0ydad(>KE z*T;u0{`1VTqO!CT({`Nta9RA4Ci4e=)4yhJznarV?P@)7k#Tyb(UYwkFT6Elsi)+% z-tO10Ju}~PeDh;b*9&rQ4}5Q@xAMoxWjpg+D;KTr+C!IbG))YZn!r>rna9n;)E*TRQf=-+#K5+~o!P zwayuXOs)OzFDib$+h=k2-fJyVLn^3pTBbOr75Rp@)xNh&&Z}z4pz1 zUt6b+D{KFh?wM_^X0DlZvZ!*l|Ho&tK3Lyl;qm3BYf*cztXzJm|F5??clc<)1NA=N zH7nWF_d;cp-+u7*e*fa8E4`OhSUzuN^ISAntvI~+&W(k6wP#v$hc(&$QRVzfZ=>z? zBNxp6X4{l|mtX$rM(ss?x*L6wrkR-LKA_sOXIk2de=aDC3&#Gh~OF*>JTp1bIb zaZ`(^jf*BvH{9Oec*Q%{&gWJ3@qf1VhwbHuC$8)D_1_y`YOX!k=-1ybjQn6q*`8nf zEWA+g!$a?GC`dZIa=PJ^Yxs{N(+)1^TYFfKt{vBqbC*MU|-#cgy3Z zZwAGd8@5;ZmwwaL(0f*gzukIg^SwO>H$8Cr#`MEqwm2Od`DC~G6E{Y?bJw@ek1uHU z(3Z;+Qm)i*|E+Id>tkCR*F18%UU^x~(YIb%v|-)Wb?qL{UU6)}@X<>rZR@ye`zyT@ zpV{zu_H#3m`}JK@S@B6_oym`^*t7hjA2Y{Y`ndGF#kVJBKY%f*|{{T&z;tFGxtv0voCe!9L>uX zPs_IL6FzHl@#QW0E$3^eEty*1tDE?|JMBo!rXqXN&hsxuqarM!a5zn03WgK}{*YEAoQyLE6D%3kUeRu0^ ztFxPI)K$Il(Y);)+gFV_6qo$kw#e8|*UbAsH~hbz8edqJGqA_J33(rkJA5c|SMA?) zN$cTriyFrHofr4%Hb-}BcHD6cw*M>#6gvt{;*75Sy+E- zlXv#*i(C~^SgSNIxqR6DHFpm=bU9~0ou>**bvOE3p1knu-;y4zd~R3VYYXg2k3LlU zlU~mBnN=C}kKO#V`RXn+R_q$Eu!nKQ9s6-@zCtaEtgE%{_9Vl){B2bXPfqH zPTZyImWVbHGi&|vXJtW`?D->Z{yk$wy6#HmeL}sO9m`LT>r(K^rELcaJB{0uKQleW zbTrcU{dh~Oi%G^qTh3JG*4euxsmaf#tmqFjdgd>Rdt-mX3#H9GxjBiA(@!mabL;ap zEgH?s$7?37f8gU8m1F83vsZ5E+5L&iPu?y$aPITfM;3on=6h*>hj(33n}!d3Z&YN7 z_vw!hpM0&}vrptazIpoAe6R3~cZmCsy*uY_SUJ1uK-`^S!xrsH?YT}k+OFxDoRjH8 zuG_ZU`Ehs2S0!oN4beSMKjeOJ?wpqXDQ#y}wlY3vSa~t?zGvDv-mlu2@XytewKq6! zynA@lEL*n$Q>x59OYH682YbH!>bmADe_q|Jg*W>5Kev9n@aX7^Pw(A1?BbEx#=+Wi z_dGbdQRL8u&rTY0@%Y2T&)iD=!dx2Zs#V&<`o@&nzt!LF$*xoR&tX#Ex za%{x;TE~ubd2Ga-3$=zNogX*8?!d}=<0GzZTGg;~)yCDguD|qn>a#mv&$xK3s@C54 z6%9>KPio^hTVvKk!-h;gb7H`cog@C(oA+#oaRcV9e6s2NJ4biivGeMT%T32NNU-*Q z=J8gQ&2^3sdz|bPF~988nyNvwQm5B>RifCW9O>}>bY_r{OE~=@rPFWZPPaF*zs24{R11m-|n7GH@6t_^Y+?S75+WVvMUab z?0n?gjJBVAb*`fGeZP!&sl)PH9U^0+Y}xk6Ss&%>OEX@meC_;~{nH0+{PF7-Hx*aD zH|=nOV{O^h+X>shigca5+$`sV)3Y0|nz-RWg9UezFPynk(R1vO4e!6T_~pk=)%fDx z18w)WtUvx(UHjEF_SGF<{`vXi^{(B?t4yd}x^l*MKP}tqH2aN@*BtoDnGFZ-ul>na z5zD7tUR{>?z_8J;92gn##oPneUR%{bdnkWMb^^?cQP8UD5OF<`FOL zDt5oK>}a1eOMB0BkG%Si$=!Zmcl7$MtrM3X`?~ib&6u*RzR&;p#_saU&MmKhcf5`7 zLCx-Zd09ugJaTIFl->U|p=Rai$e~%6Mi|R_-bgprit^2wdGXYY4KJQFt@Zq~>9q9u zCuHt)>zTDEcJ$Dm zX|cvvBRBu}PLuVIyt$-!`{~NV8~63ko6|Jvm|<$%H>YP8YyGJ?L!Rn4KQI5!22tZ@ zEVwvq_S6+oeLkHN5t;PWqbJs97TDIG|J&x9#;%@gIZu95;@Z`C$0MsBoRxaVRcF9{ zSJ9!EI9>e?_m_Os;+Mmo8<~r@J#c01sm(o8GIPi59(n5bZw7riW~L_dzLVpHZNJ#( z*~%u4tDKVl`?UEJ`=)lNaV5UPs1d)s|Fm^s{H_DvpKLdG<)=&6b-%ge!p|!f-S#9- z?flPnw^E+pc+bQw`pwrDk2zv$aU{KJNuz~PTeIA2R-ewdJw4~)-1NnDr~EqP?_ceS z>vrd{Q){ox9CNnWqN7v4e|6fnnw8D3F4NtJOkJb5-v2`R_?!D1SFSMi?_f8%Bfn^V zu*sVXhK>K=<+q;xZO02KLxwc*Z!%ZSF3x?Y)rMi4%e#6$F+KU4D`(HpeT%z3o;~*L z&0e+|QS(fBvtsNmj~_ifaMfE)AMW~8uWlb4dUx5f7Jbdb{U`K8+@nfTj;uYI{o0kw zJ!0x#yZ?b7T6aG9{nE_QZ8Y<5tuEe^Kd5W${PMB7+arf(9DHWs##fruJTIK9dhzmS zr@G!a@%`MM=l8|`Bj?#)GKX~@+T(uv3-5LMpx#T%Z$4Kc9DcQa`PQ9jKO|oIxM5^H z&xXq1UR>9`(un&<{QUGB|LJt?wQBFs%zhWcr=b-v>44 zUf!Qpa&e6B&W4y?w_a^g<-K~f=FY*Z`bS>*Z2Y|=51)u?dE(fM&CXt}^8M2J%KA08 zx1E}E>7HoEAD>>?Cw3>_b!OOcw)l$n|pNl>5)TyYraj-e34u3)LOpw%h;_^U;hCQssESjwnhDq z)t2utJ9&GVF@I4TLG?cdeR4`tYJ|a%oNCagq@?JP{f9pB|LcGLBOe`fq>)cN%+CU& z+e151Pa*NV)98@f5zNTw#>sHH#t4aeeFved+39jRU}mcvFG}SJ%k|^E<-k`vjKAa| zO5}9GPZC_YZB_@gXwUa~am-bmBE7_Ab=dt7jsr$GwvwP(UYomwg^lQu+h6EmbK2aX z;U|6h#SV**+I4l~OODJ@e65~0C7u&JtBX3H(uNZj&g2KW8 zW54V^{rd@-xr2lOnSJ|a=Jp$u&hly6Mi3io=-TLjsxuhA&FS?6oInV@yY=mw4XR{z zG3FTi4T6K{ZtR!aEiX^#-lwmSDLk3kx1X_V|D4Re!jt{`KG`R)TY`W>RFL@AL2znE z(}LW+yk^s_-15Rwr+UdZ!72uVr$IH8Nnu=3w%zq(9w;47NcKJ6qEpTBv@P}orHWd^lgP< zAs}EESSJoA7%u>jS)6ZkgYNfsfRWmSj%NHjp#=SY0faVt$-+XH5Q2lfTDu@%B*B9X zJG?@~jBr?4ehipjRpKA36~tbr$^DCg=D=Uk?TUcWWms0gL2Bt;^ION z5$?Gu9|txM^tuFxRpehouWmOo$tMoe#eU+W0DW?hFE(?a=&VukUeM^+iZ1oJp_Z3y-nE0ub`aQxlZsAkNu$gkkmz;!_%kouqUn0qJPUcLr15 zrlM=yY=r}u%OxKkcm;8W(F&i{KCD)hlozZO?Dfk7=IDpz^NLpDGDZr5#9Igeh|p;W zc!4Xi@XdgYM~m6zXnsCDOrMvikBJiuvTl)h9f7)q*GDzGB~}WjTkT}sg0KhmvD-a1 zFN=?eebXgLiqZ7Z9IfKx5{J_y&D_e;!@@8YC>6MvAr|@3#F7XI(Ax#9a8%2W!m$F$ z59Nb}UocScE1C<&LR@WV>NZlQjgTtDK+kAg)kGkZ4sjg^jo6`YB+4eu)lNtuWyR4* zvIt`QMRU;vU^jWdow%x^yDmz6D}sy{BuM0dbre(v>F1+eiI3%tkX2M&0Fou>4=0W{ zcEe`8)f0}-74mr{ex}2HjuGZ!=n4y&IuJ|2|D$6N4N6kZQ_oT{mpY+JctqlYG?W!O zU`$O(EgCfeMTKyCC0^xa=Heo;wh9E+9s>fa#J~su!5RTr#^vNL?C>cKfy}$^wG7c9 zjZuLItmglWUQp1S=N_qty#>ko=Cjlb(Nc_x=^#U5ltdPbp(!AxEF8yBmb3^@XrMj7 z?xA;gz70r)PU10amGT)Y^!RlmxtR+wA<0+Cs;3Ll@P7aXoEDtkW7H^?2`>Xf#}NkT zI8YZ9fC9~d0+0+nEY$(UP^lTn%Wh{JpC&?zCp+?L%8;!VX?2cA zNh%Rs$+-ruO?VNm;Ix&A@jTR~66`HJ=y(`)CSX=eKIcWiLTat>O~guwIGPSMP9Ql5 zlz0~hK|;%dqb~H_^avhwiiDoh9(2-2A%bA2WgSiNN4&NTdObH?T=WS5S6n}kAH^GZ zibe7BJ7$3Ds*&;?v05#h4h{-?ji5QC3CSK%+rokL36vz`R2c z70e(`i{u=wr_^R~n2XcewuLXWC|I9B9>OGyC`C68h-G)6{7qE&Lhv=5OA~y0c2FYQ_5^wVoCIJ9*#DXQO zSD;`Z8GgAEJA=q8zw*^!@~T4lO5)`WbsR(vmPyI+P|;E9D2GXsc&V16lS!}10E()& zzJ92bnxqFr7?Mi8o*{HS6u*V9B(K3A5>X9}N(co_V9DNPw{wd?%_bZI4N~73u(~sJ zZI(4YSpTF1AM%hA1~hJA1OX?~L8t+=5ex|iRal`1NFk)C)(>M$baknoO9CJE_@8Zs zWOYG9f1P&ho8 z#Vg-U;!DH8f^dI8Yui=M;s~M>s6bX8j0T7kqTt^i!Un7^7~cg25B8O6bht%VnNu)Z zEP%J;?MP??YC7C)1dOi)jq-4-zJxRFrNh0wwK3AOtwu*9L<0=CQEol6&@NeDp4?s! zRru}o`to*qJq?-?N5VIPehx=EZM(yZBiwikLH__WAR$|deW|SntVEZQULBDLMi~hA zXsaPHgGiiq80^DGL(+<30}e35h0mar~Z)~IrZdx2oIIXs%J&Pc_Fe=Qtz>RlA*XmQbm@x>fz^GvmMep{i!H7w3(h&GUT)M0v`E zs%L~R(lCrt$zn;T3FY!ctsxK-%TbKtqm4sq!tmkw1=x!?EG5#7TuXOS{2)||s4m+g zw2EyQ2j;|UjEDlVhrAMzwj=%^iztdj)s$q^3W$89$dP2n4O~=_r~3Bw-D7tB4IM+Oi7&3qO7#@;{!-1d^snbY6UY7lORN$+Vp1rK6d+66x}cgX!dC>lX!P zOC#a`$_n9XgM}ROb?!!{3S!!G7z7*01=uhIRQCYk8tVJZR-2d<6$+nbteHW)08_5b zZns&WPz_}pSs*qcnj21>AkrKCPLc$HpC}?LHp-)T$*c67B^hnf3RG7x;Gtt8Eo`k6VDGk}}Tr@wHfsEuh$wP%8^MD!< zWspHF-|2u7cY5fKDH7QN+Qv#3nr)Td-9d30o#-TDI*M6eMl!jxIEQKh3-5M_su7IU zczjGKL?BXusiFe`BfE)Q{8wxvs;7Wz@CK4F#E?K&3rWMkMG1B|vCSjH3ytN7Q`$Nm zC9?b^Y_MYdWH{q|K276mUc^6qpS+thjDq7B34?M zY&3xo(^B#vU9D^=-i9eL7y<}&$i}K%)4?U05aMfGpo`CNM#J+9>3CEU168l%&fxt9 zndf_a$1xrIbsfE)r}WWygGnEspD)&mIi zh6=ZdvV@cPd>+=Z_3 zaT}sRg_s0YfG;SL_%jBSE@7m7q`-$oU3RWIL?1wg*=>z4#>P50NrUWcN;?(oijInI zq${Kf9h@ZPi#pI~Ip$imQoGqBnMX&BQtJhNDcgP|C}r1BlIErNYRXDXZKbHi-Jg+( z?rKBnHqfOiv_vd)xg8ZQrx#wutAMWFy^`8k(2cYTWXO1A*A)tT$waUcWcHFMeFl8S z)13-Qi!&)E>p*SFdl4%{D=&#+RjeYxK)AV64o0OlRoHD9oY5NT>chhz>x8OQvtUw9CCCZ>^9qtqaWq-0=R3DFQ)r54A)Sc8~}xounqHU$^sU{#NWDMo|%7i*i$ z9$wUR`T}mdhB!f{1;Rd0V#h_sW)QEyMgAt^U5eI;y@32FZ#)p-oyg6?;208Y%GrgK z z4zQkEvkZY0l(x`TTrrcah+;E_->r{4(O zY)m-htSN%$fDl>mrqHF^<$Ir(gW^OGSVdAi|_>xL~tWn|%?JG7g~zRU(|r zc$>U@HT7FG$J~>|i#TMKIkdW!N!t(tMFvf@AF`#+8o|}1f&@neC~qQvNFw)^#2c2C z<{yV)5{*y^K`T57l!-O8QfZyt31b6oOa=IkQ|@(b5Gf&4qB!Z)8>CHA%N>%W5(|c5 zEdvudbm*}!>)lX31rdb)>8U|VkBNcBGMr2k-*~{Bm}ZC5!{38*^Akue;@@%-5I3m- zkB89ASaCSS6{~kHm5puk{Spn{S_kQ|O^nKPj&NKQzZ%}7AjLdwZb zDGI;|;@t=NrhY9hug7M35DAjQk{?1k6R%{vEIDei%j_j}5uP68|mCpIyB={8#TF8JBB)L!7 zyvtMkGTVi_*y9v=Q)w$)=G2yf2rnkk-b*@08Va(4=$0V&=TR&Tes^V@E?QdKuUeBb zHHA}aprT4GA7-|p>&rVS0YFZdfEXN3W&md5O!A24GVm*tWXi{0V|P9G`@^4de?3r-NH2<=1=B+A?(s_`45 zik7j$K-5OL9z2ASyLAdt zJbIR$!}0d_^1zLRx6GAu>WLbI}kHanc;%(fKxS8H^O5N9HVs7-oNtjPX3B zP)LSmo%l{eu$$eoZuJE(d%Jw_7N8ovg3_ZIsWaWsW)!L_F$@{>UN(Qe%j~uqouxi+ zHAl^?ddP7W`M;tzErn*c*#hk=kd=iPB(R7ySFJqm-SfKk61t-9yTi)oZge`lfS?^7 zd?vBrsz|g2y(IV7=qYc6+)pA9qw8=>q0Lg{!O=0{;Qf|j8!yBX$O>7oC^LX)+ir zbFmxdq!LPPZsdUgZBtPvafCZ)45`)vea#dsxQ$X8hXXdDR zYbkc{YgG)XjhQoIXLU(e!+}A1r#@B!TPJiawwc|EnY6&CVKgFSkf29+r<6~BHE%fu z=C*^a8bT4HhS|mn1AjEe<8Yan8J$wq4XVRw$N#NA! zM)6;fPYgbE$H2neiCnx0HA(F(f+!i-H9gh%an-{1qUcRk1fF8Rkjx{@4p6_?CYTEV z>%a^PjEOo*=L0^7>*cwycY)c7M+M#>m4g?;L*^;alz>US3?Tp`{B|enHB=n4E@bdK zysV%VEHDeYPS$;l8_+&hnX>vsi3!mO_FI?5VaEI) zf5^b-c7%1p9!G_Z`BCGE)rfpkiW;z;BM@-{KFc#-&5^1z?sKw%NOV#`=Y=p-Ss~72 zK)nE)H2g)ijHJ`>D8&Cxr;}`>fe)nX6mEq@Hd`qoS2x@w3DOWB*1=y|+_si1IQ+|0 zX!Zm^Bg32YREf)oRLJ|;Nd^mV$Iu=F`$V3>(gZrj0WtE34uG!=u{0Wge;B&}&mkjm zxc;aX8}MmQsS8CBa^X`587&HWU{j2g{uXJ($ou(t5T}OCA>ScF)^_l+P~<@gZ2JS{ z3(ciKf+CR?P`obbmJB0RSP=iUCh#{@xWSf6N0-2qCiR+N73hT}hw;Gk!@%*yV&o7d zNa=+1)KQ4vbM{iqPuZd1rIG`H435H^A;>nM>IF-9GF}%jOoO=FFd+xYi7x23AD5Hv-59u4a_pBBC4{bU_884dGU}GCY%mtwYaJ=p z-8is!H!Knl_t|_X2$REtVrXL~3|+;UxqusU=X@Iq(E=l@gQbCFZ}6NzbT~a;AOu1# z;q%}yF^CEA5%Hi!0RV+1ZKRKPcv#dKPlDtsOcpjU7^54a9~viUqYRN&ZCn7ki&w5I zfs;)|8OfkZ(N+9)kO`N~*MMj(S#O5M6}R(xQ&M^JI`=S(-1 zcbeo%kjgg!g(()VS5|`ehiA8v20Hp+>)8-Pjeh&ed8+7)fEhRCq8`M|2@6(mbIMEt zFneO&P(AS)o%NnV%Pe$hm9rk=LTH(aVhdii^5X%b3G@m&o%4c%Y5^(xR}|q+8~Q*+ z@*M>QHjmc?{aCPy6_N%yKH=j`sIDpxGqgrJom#~Ah~EvmKf>D&)&!9}54aLIEW{g7 z2e z{gQhDiA)s7s7*VVISUdmxUplGS*sOu2Cs{vkxH~mL4{dJ!HA6|rC>oJsa671iX$Z% zu~8~e1T`oQr_aWZj@Zo*g}g(-NjL$Xb~ga|a*&3q%f=z<1Q&y3Y6Xl+dQ=a(T4=0b z>4uCfw9Ms%WQkyn{JRi#0gbtld4PvWbUdm$g;;qaS%qAo99X`el9)BxOe;FHilR1> z^uU2tv|e+NaKKbk;=#?CFdebgPK9$du96|>B>-ehUK9Zp(1ISYG6WX>3k%dlim?FM zg{WNMw4wt#6!{s8WtuT!S&1hdI`N9aS-#EgBIYN^#TP0vSgsjRPp0~SBLfm1f@D<+ zdYsv4O9cky(Tmlsmu%&LInZM|<)~>7uz4YBSQy2~RixKsnKh>Rn#Mke&k z3v7x7C}C)7jEr(_P6dt+ebj{j4UdBrw(?jc=uj#|t}9a7mvYR|dRHlCI2n`?JrO|} zHHb_!ypD=%QWlp(y8E>jZwJlF(*?sV?lyygMNGUYkipV3Lx5vlG*j}bc0{g1fljj$ z&AptpsYsS`J)_ivkwg~obJ6g`JrH+Z6rR}|6N|Gck-#YB!hTA$uW&h%cd{rMSY<2g zh0JI~@9|DR`D5&iw>K70}X=Q|@BT<;h zgsB6`b@6%%3`a6s2}lmiqH0}ELeR!?I$2Sxjjx88ewqt_r#zg~fKt^B6h*|QJZ#k; zDh2?yk$~w0@Ny!|ky)If*!f~aNgqzj1g!=I=I0L!z?=fGP?;H!gvSLl0iat9bTbNT zLE|fM^6<$@ubokbqHlBrFXgNAq{`GIkidIZfQM%2`@k;lhlv}M5QOY>OG zhO}h87Bzq`Pr0$6Lqd@gIbZ>V8e#ytS_2di^D~;VLS*yMvyGHt)&#H#9GEOAM%-oq zbfPUJh9`t#8H)$QOx8!Cq4&X8#B?g)pkQ<`v&R87T2?Dcf(<6v?O~Y`@Xk+<_OiK$ zm!evV2d&iTKu%22_yJqCSXv+tIiC|+Orb}?T`@Vh1cR(8bQ?Q_l^Dty3dybm#N2tP z8I~$82AUzjL^$$00h(O1q|^lMDFrUopbUb@-rzvQ8W3=rR(g*TxaUB~VpY>6l0q;5 zv9YRy=h-MP=*w#BhqCDLvNwi+ZxV+}1DePLc%6`AgBii32_#yhwBY7qma+xVn1@ms zHlL&`iBUwfIPpO4!13y%l>>nO_prWJa*||Un4(27K&8!@vQ#2hN`8^AES)qIn=n^F%?#fRzf^2<&8+GN2LqZY)!>p1L2yW39ki&Y2Hjn zD@CphXNo+0Dw38=$U?Sh9-o^K2$eyI2m^!8uzO{zLOgA$*gmCLLgi$tt+1Ns&$8ik zfNt9At;@wFT_7+auRavSk zp$6YPpg!*+O5rP9L`@VRs&1my0WHC87-})$a41%}4ZL+|LwtNN zrMnSwy#HXDm`!ymaO>dXgS8PLoF({2@2>vougWSWj9PW&^K99St2ON%VZ7KD& zMU8oQ%GBhcdfgqxwlHf*=$bVDKaKSNMIUkf|NGj2Ydke2CE)r8AF%$x+Bc-8CMP9< z^`DezNR1Fu{(W5%KmU)fe>VRxF4@1S4Hf>cH{jp!Tf3xoiFp1K^+`!d?a=%uru;AC z|1dSL=ReV*|LkYtlesYf;?VQT~3X*_3EdMJA86V;?A9e ze;#@Jm8#DN?|eDmz3)~<#-0lg@Bbxr^YvXFU%D{zmUB?nBG9AnyL4Cr{@e$KH*Ny> zl2tn*LePRQjcagUCe(|Fcmj@3TN9UMU&5^U+1p>+SePNpoBilE$XCy*=i?+cWogCiu6Hb9a~SPHxE|$Kvkb zoXVk=`4!U1A%{>7-6YCk_k>|{=ysQ7*rS|sj2cZMk~34-idc@ruvkl)nQey6Vb6E> zzt6wV>-D^z*K6-TFlPIHukUqzKG*f#r=xl@2`gJ~Xi3#Q$B1YluF`UH@Q>{a@TEcv z?Rw_3f;a(BfC^`h7zmeHs)F?_*59r^KANq_mC9Thu(Je%FCq07^b$W?n@j3uQt^T} z(#BtX*i?Kr0lBgOXJon&GjyD1`XKC-vx#;3F>Qig7!ez{^n64V9@dy+8ggAN=11}7 z0jVj{-HKllSbj_B4L|n5wewm2>Kc$R$EwkK2QPivqijL|xe(rWYPR#NjQYN+7H+p9 zA@p;O@ztaIw6wHv`^eC>;0hnYl;*GPYdHpTQq)hjm5qnCg;%k-oILx9BX^C2W6kl} zWJXD8>EXL~?`maJBVkM(+|kTSjCdH{3Gc#hVpcXUc-d^1f@q4vk!Z0pabmMB-0IB4 z8^g58GQ^9F^12HdmvG8p^X7~<8+1f#B*tAtg!H|I(c0h(jkClA=`AJT=ky+i?}m`i z`T44fsE(MBdv)#g-Pq?<_(xl0&m23SrnbMgw->&~swWjEX{gw$!L4^GA3Lzn!t2X9 z5nzAIL(x_GIHL}&kuYf#;viGJhHmh1-$2t zjg5n=KZ2P%rP#1fw~jx(LXFH_Ufns@=nuou;~_^TO_8pbbZ}1P*Yp(!)$d)yO?>I7 z4=i-^ig5keowEPLz~Xd=v-OLOWvWqcu8E$)jt5JN9kONYxRvHRV>SMa*%1n*>;(DD z2@Brm6L-LZ@HpHdT*kl+SZk&?lJzcp(9R6k)YLRYh!>p<8mY)|x&)jCHsBD)eX=xz zF)F3_#9Op(3Yl|VN>$}3^aa^7i~kYQHAU`i zt>JS6Cqe1%lbZu)e#vKToHFq3(-Y@QItJHkkJ=SMElf_HeBp%8_}-i67B`u0tMODt zRdrBWM(xX-uwf=y&*|X-Q5V3Zs<#sQ+CD!~@Zc*b($Sef0Fwp>F z?aP_z>K_`~mztVt4A!{X?bf!p(bEvhdrI!~2q9^HPeXvtWocq2L4e+ZsZm4E^$J}Y*kK6zC&49s1-yAe-T^h)NAVO0#EKc9<%lC+z z`sX+K8Bmon3&*gGMv=n zR;OKyDwQx@k2W{fvg`lj5@!$}<_d@O)U0-BZvJjyU{DZOwEx8I&WlG1TsA#w z^pRA)+bMR2lP4%PPN%#>rwPSVo=(DIi#C_a;9z%xj$fm&*1xu!4gj%PwG=JWFUWC1 z`|L8DlCi8wNE#&S!Wnm(UI|{9y921qqgPdJO{kIQ6mO(~chvNQmsM5RYCqEXm4(UX zd<5P_H_67!%S&u;T3Xj$Ust%CZ5T_oytj6sEzGUB7ZDI+*8F>G9_3xp`8p>nE2}H{ z=Ee)HD^odUFmF$weCi)|Bp}EUz%9~M%O=z}5cp_HnOSd*{w17~XZV1nP3YpAJy@Vj zy4z$m)Z|_l4Qa-&b2xa1SY0AkQ&awk{rs`f%Jro-ZZ&YAwgU33b`crIIex9J?(Kb) zzd3N5@(9Q1Zc48vvg}z@vw>WJjkR@WvVxwLR!McWac*wz`k%j`w@6#bi@B0}QYQu+5#z{4flVj%LAzyB zkTddVxXGyH>eocb1cKA0L|SNOYbbd~{h5!LiiUUWHtWnW_B*Xl{@&~0OajZ0c&y2R?j5{xW^o#Ln2a-H>CHw4g|motvEdx>_;4F@vNvoVpzc zza?m!EkqiA|NKhqAb*W0T@BlI*0V!hY)8Rx4!zZMt^g2g+SU|WBbI}xou&C zBs*pnsas%D0!p%cpYX8Th0 zs#=aOfL_IX2CXd?W1zxIOp4L9DsPtiZwZL^S=$p{&vSjI6p%|5%)jCl<$_EVXWp)~ zsL1A<=zotBd~8_DPo&rEgeu*0L$p=JW%+YRZ)MTu%qDKE-n9xevx?Bxvh~kSw45<~ zrqi5NJ6K|i)u@i)|BRZiCN<^z;D|(``TUy>Upg_Bv1Shye9JM1`{u_9=NMjP;qn_Q^=@J@Er3#JIol_tu>=u=uqb6QH@OzB^oA&aRGRjsE~*?TMI-Fb0O@UK@C| zg+o-W4(u-xyWz|_kBq%XwlHf#ur-*JDy)DvO9C$SW$tXZs%bFV2BX*o{_NHUV{~V_ zZdqT(&~2>secH|_8hKAJgrE^k22aV1PZPI1!11+l`+x+cf(S<~j|I>ls)nLzqRkb? ztT((%fg@yAk;*JL=JxQ;O#dVAD?XygV5V@r$7geZQT>NhxFM!8lDPG&7cz{K2Ommm zLNsCeUIpdO)Y5vfPnFb0r>iYQly6ZCWD(Zu?rBl*Z2DH_Ooir@Vo&^;>JC3}5-@Qt zsi>&Ic%HSB6SX8r-3J-aZlm;{(ki9bM;f^Oy zo($if9%-u{;UeCqxIN^?0^b9DdUrjTB%&$B8Wu5~z{`diHA`%orD^b}Z{_K4?+UyWp>*ESW1l+!K^1CT0uTlVCyJPh_ zP%6^A`Gj=vR*SWzRHGC~c~1fw?LO#|jI%sLz?^#FPW4Rg?is*+oMFGpn`t5`k?!@F zcDi9l4I&Bfhnc&9{;eKZ9pxM$CdsPt>jG4CacCC`fA|IMZY30R)exgRMS!-!mo(s{ zo>z2=(d#r}uIG>@|Dv867~~e?5Ih4y+7!RQhts$bY~4I`>#B3$e3(WoVs4)A@h!~5 z6B3EdiTao@>VDK_aB%STUtq**UmLT@M(IRO;&=&Qa;YwMOvb@XN#KY}ME-=IVbBw_ zz?96?2jG7q8tTqv^>h_CBd~6U(4%RBzLR?D3F_VVho#u>+pUP5JglW!b3~7A7DLM^ z`D0C>4sI3ufa&+0yPNalgBiWpjbcmJj91`v)?NsLSo%3e4*2(nU}NbS4spk!$6wl} zjK992R_{>tv8H0i9kZ{hA~ac^AmHVQ2CJ-r>6|n(TeA_*wo^u-jrU^mkv~7Zc6%NQ z(U>W0d__k(7-0@EZ}|4EEBW?*)6?>C)9gCLn~Hw;j-Sq_>D6557k$MNp`!KFhUrlY zI)Ob2(YjtA{4K0;mH51hv;s9Xhqj0|jVoE>znRfcZ+*6dS@dRr>3WepdTwPxeT|RD zWH5Zk=Uw5G@|S(zmz(*~jW%s-Te$VFxv?=mqU=!^B^2KAsKa+2bf<<&)iu?>%ZTnq z>I=9Bjc0Ueg@nf1kv{(*rRr7dEw^Vs;NL`dP0*Un9t#fPk~@$~5TlQ#G9nTn)` zcuMF7Yy{@mIm(-<*m;;ZrY-EkcL=-4MM!PKQvyG^%ii1`@$f%Cziqe5KIcNzsW!eQ zhR$$R^_xT3V}tpRFZ8BTm+g>6SNoX>+P+KCZk>dpS_jW?TFdI7S>L1DuhE2k;tc2u z?j#2gYlu!2qOt4}|Gp=XTl=aM&c3bB4UugsfC?qaql*>%&L>NoaRCr@gv$iG_tj8O%C!`>z z2XwbhdQ{S>_jFxl>ma+D>WQexQh({20RfkPZBN^UUY3r`3R**S9a&)&jRrKoB@Z?oNX6kTRDi33WaCn}d-q|k>ShA@cyO**O+hLcDL}8fy^_8O zk+IIQ`8K|7tWmrdO%L+@tCrv6ZCSQeXq0IBY7AX~&LY|w+2MsuWT69<bvE~fRnC%{M)+x77Z8G`(#2*sqG2YjmF&>F2-}Sf-{c;yttkbe_i;3dv z74fv?BN9@$BT37Xxgdd-r;~@JAjc2uLNAiFFcS&W!?1zoRCEQ`HzZTW2sSJTCis7f zRFxZUwu~?>vXgPDXMYGM?hokPs^s}QP;w5xD&8UuD*W-05e7qkH4(3Q%VF18ZlRXV zovt2N^3hh~W`5K^+$X1-3qOqHh-14%oc~D)nKseV#U@GJB-KFV+aoD)#&yYWmETQf zPenm%ph(+FO5s({bxL3~_u&OQrkR&>F$!Mi)HOfVgEF;*3@*E8#bW}mQzCOIPPbUi zHm(aA3Rj^on>LuBBifs|ZFh3Iwk@y@Kg-f<$fpi#CMtDEIYe6b_?T(M(BlbckXdRf%g(SzgL*sc`s zK+$$48^?(_g5BQ>V$-ZSX-Yu zU>d*Y-*8UIu>uZtUzg!rP1(~d^Ntp(SzDH-$ckI%k zO}2hddEdt&=vd}&pu|v%TeL7E?<4Q32HI8%l^<}QHTZt();liXPwZS7L{T_J(hVJs&F;Tkk-NPVlAxl7I?Sd?`K9erWnce~c)``g&; zLqW9T{S1`p4d)Qfn^Vok(x4|3eK^>^nWg4R@pw7@i{q&%+Tnj?1C(65V%s6ap^#a@ z{FRH5;vFDauF$TYqx@co>U3u>2 z-%=7JNRS{wf&>W?BuJ1TL4pJc5+q2FAVGoz2@)hokRU;V1PKx(NRS{w!vA~z8!7=* IEC7%J0QxhXBLDyZ literal 0 HcmV?d00001 From 00ce581d4ffd541abe630f2c51e1e69e3cbe25e2 Mon Sep 17 00:00:00 2001 From: Brad Erhart Date: Sun, 2 Feb 2020 11:46:58 -0800 Subject: [PATCH 139/971] Adding gvisor v20200127.0 --- .SRCINFO | 18 ++++++++++++++++++ .gitignore | 4 ++++ PKGBUILD | 26 ++++++++++++++++++++++++++ gvisor-bin.install | 15 +++++++++++++++ 4 files changed, 63 insertions(+) create mode 100644 .SRCINFO create mode 100644 .gitignore create mode 100644 PKGBUILD create mode 100644 gvisor-bin.install diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..2e1741d --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,18 @@ +pkgbase = gvisor-bin + pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use + pkgver = 20200127.0 + pkgrel = 1 + url = https://gvisor.dev + install = gvisor-bin.install + arch = x86_64 + license = Apache + depends = docker + provides = gvisor + provides = runsc + conflicts = gvisor-git + conflicts = runsc + source = gvisor-bin-20200127.0::https://storage.googleapis.com/gvisor/releases/release/20200127.0/runsc + sha256sums = 09e970cfca06712488edae1eb7b24a66acb39df1e83e282c0abd755c6ceba4df + +pkgname = gvisor-bin + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bc96b67 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.tar.* +gvisor-bin-* +pkg/ +src/ diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..9454225 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: Brad Erhart + +pkgname=gvisor-bin +_pkgname=runsc +pkgver=20200127.0 +pkgrel=1 +pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' +arch=('x86_64') +url='https://gvisor.dev' +license=('Apache') +depends=('docker') +provides=( + "${pkgname%-bin}" + "$_pkgname" +) +conflicts=( + gvisor-git + "$_pkgname" +) +install="$pkgname.install" +source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/$_pkgname") +sha256sums=('09e970cfca06712488edae1eb7b24a66acb39df1e83e282c0abd755c6ceba4df') + +package() { + install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" +} diff --git a/gvisor-bin.install b/gvisor-bin.install new file mode 100644 index 0000000..adc2bb2 --- /dev/null +++ b/gvisor-bin.install @@ -0,0 +1,15 @@ +post_install() { + runsc install +} + +pre_upgrade() { + runsc uninstall +} + +post_upgrade() { + runsc install +} + +pre_remove() { + runsc uninstall +} From 23c441f795c1532e1d17725e068d3c7450387a31 Mon Sep 17 00:00:00 2001 From: Brad Erhart Date: Sat, 15 Feb 2020 09:49:40 -0800 Subject: [PATCH 140/971] Updating gvisor to v20200211.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 2e1741d..8c2ba82 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20200127.0 + pkgver = 20200211.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,8 +11,8 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20200127.0::https://storage.googleapis.com/gvisor/releases/release/20200127.0/runsc - sha256sums = 09e970cfca06712488edae1eb7b24a66acb39df1e83e282c0abd755c6ceba4df + source = gvisor-bin-20200211.0::https://storage.googleapis.com/gvisor/releases/release/20200211.0/runsc + sha256sums = a23096eb3a4bf500b5219c0a48a4ce623b43f78cb14ac9f78beb551bde6e9e6f pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 9454225..4a3bc91 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20200127.0 +pkgver=20200211.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/$_pkgname") -sha256sums=('09e970cfca06712488edae1eb7b24a66acb39df1e83e282c0abd755c6ceba4df') +sha256sums=('a23096eb3a4bf500b5219c0a48a4ce623b43f78cb14ac9f78beb551bde6e9e6f') package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From b7095acb9c6e6f79a07877f0648eaff9e6ef2488 Mon Sep 17 00:00:00 2001 From: graysky Date: Sat, 22 Feb 2020 07:09:27 -0500 Subject: [PATCH 141/971] Update to 2019.6.005-1 --- .SRCINFO | 6 +++--- PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 481f289..bcfa939 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,13 +1,13 @@ pkgbase = linpack - pkgver = 2019.4.003 + pkgver = 2019.6.005 pkgrel = 1 url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download arch = x86_64 license = custom - source = https://software.intel.com/sites/default/files/managed/ee/cd/l_mklb_p_2019.4.003.tgz + source = https://software.intel.com/sites/default/files/managed/cc/19/l_mklb_p_2019.6.005.tgz source = linpack.conf source = linpack_runme_xeon64 - sha256sums = 25e3d4e872e0b7b0b2b9a2cb268311f49db642281d0f441dccfbd2d6edab94f4 + sha256sums = 9ebbd4f4898cdc5e8ee1425c5c955169cd3aa6f8742db37dd4d0d23fc7650a30 sha256sums = d7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254 sha256sums = 369736f6074ab579a1df38ba09be4784547833be020f13d1b60374f64ca5d5f6 diff --git a/PKGBUILD b/PKGBUILD index 957a1cf..e90d99a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,14 +1,14 @@ # Contributor: graysky pkgname=('linpack') -pkgver=2019.4.003 +pkgver=2019.6.005 _math_kernel_lib=2019 pkgrel=1 arch=('x86_64') license=('custom') url="http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download" -source=("https://software.intel.com/sites/default/files/managed/ee/cd/l_mklb_p_$pkgver.tgz" +source=("https://software.intel.com/sites/default/files/managed/cc/19/l_mklb_p_$pkgver.tgz" 'linpack.conf' 'linpack_runme_xeon64') -sha256sums=('25e3d4e872e0b7b0b2b9a2cb268311f49db642281d0f441dccfbd2d6edab94f4' +sha256sums=('9ebbd4f4898cdc5e8ee1425c5c955169cd3aa6f8742db37dd4d0d23fc7650a30' 'd7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254' '369736f6074ab579a1df38ba09be4784547833be020f13d1b60374f64ca5d5f6') From f27c038233238c21fd9367b3e747a93656430434 Mon Sep 17 00:00:00 2001 From: Brad Erhart Date: Tue, 25 Feb 2020 08:06:34 -0800 Subject: [PATCH 142/971] Updating to gvisor v20200219.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 8c2ba82..aba53c7 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20200211.0 + pkgver = 20200219.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,8 +11,8 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20200211.0::https://storage.googleapis.com/gvisor/releases/release/20200211.0/runsc - sha256sums = a23096eb3a4bf500b5219c0a48a4ce623b43f78cb14ac9f78beb551bde6e9e6f + source = gvisor-bin-20200219.0::https://storage.googleapis.com/gvisor/releases/release/20200219.0/runsc + sha256sums = 68c522e126099a883c7a55fc0b1d5e37a1cf2587f359517721baa8c8518e86ea pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 4a3bc91..e596187 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20200211.0 +pkgver=20200219.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/$_pkgname") -sha256sums=('a23096eb3a4bf500b5219c0a48a4ce623b43f78cb14ac9f78beb551bde6e9e6f') +sha256sums=('68c522e126099a883c7a55fc0b1d5e37a1cf2587f359517721baa8c8518e86ea') package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From b95a4c8bf347a4569f2956913bf0659959bcae5a Mon Sep 17 00:00:00 2001 From: haawda Date: Mon, 30 Mar 2020 17:22:25 +0200 Subject: [PATCH 143/971] adopted and updated --- .SRCINFO | 13 +++++++------ PKGBUILD | 35 ++++++++++++++++++++--------------- 2 files changed, 27 insertions(+), 21 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 1a03f2a..ca14919 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,15 +1,16 @@ pkgbase = ect - pkgdesc = Efficient Compression Tool (or ECT) is a ++ file optimizer. It supports PNG, JPEG, GZIP and ZIP files. - pkgver = 0.8.2 - pkgrel = 2 + pkgdesc = file compressor, supports postcompression of PNG, JPEG, GZIP and ZIP files. + pkgver = 0.8.3 + pkgrel = 1 url = https://github.com/fhanau/Efficient-Compression-Tool arch = i686 arch = x86_64 - license = Apache2 + license = Apache makedepends = nasm makedepends = git - source = ect::git+https://github.com/fhanau/Efficient-Compression-Tool.git#tag=v0.8.2 - sha256sums = SKIP + depends = gcc-libs + source = git+https://github.com/fhanau/Efficient-Compression-Tool.git#commit=f0b38f7f8b750099f14d4976beff6a107d6119ac + md5sums = SKIP pkgname = ect diff --git a/PKGBUILD b/PKGBUILD index 4ef8f64..b571136 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,34 +1,39 @@ -#Maintainer: William J. Bowman +# Contributor: William J. Bowman +# Maintainer: Stefan Husmann pkgname=ect -pkgver=0.8.2 -pkgrel=2 -pkgdesc='Efficient Compression Tool (or ECT) is a ++ file optimizer. It supports PNG, JPEG, GZIP and ZIP files.' +_pkgname=Efficient-Compression-Tool +pkgver=0.8.3 +pkgrel=1 +pkgdesc='file compressor, supports postcompression of PNG, JPEG, GZIP and ZIP files.' url='https://github.com/fhanau/Efficient-Compression-Tool' arch=('i686' 'x86_64') -license=('Apache2') -source=("ect::git+https://github.com/fhanau/Efficient-Compression-Tool.git#tag=v${pkgver}") -sha256sums=('SKIP') +license=('Apache') +source=("git+https://github.com/fhanau/Efficient-Compression-Tool.git#commit=f0b38f7f8b750099f14d4976beff6a107d6119ac") +md5sums=('SKIP') +depends=('gcc-libs') makedepends=('nasm' 'git') -prepare(){ - cd "${srcdir}/${pkgname}/src" +prepare() { + cd ${_pkgname} + git submodule init git submodule update --init --recursive --recommend-shallow - cd mozjpeg - autoreconf -i } build() { - cd "${srcdir}/${pkgname}/src" + cd ${_pkgname} + [ -d build ] || mkdir build + cd build + cmake -DECT_FOLDER_SUPPORT=off ../src make } package() { - cd "${srcdir}/${pkgname}/src" + cd ${_pkgname}/src PREFIX=/usr/ DESTDIR="${pkgdir}" make install - cd "${pkgdir}"/usr/bin + cd "${pkgdir}"/usr/bin # Some things expect this to be an all-caps name - ln -s ect ECT + ln -s ect ECT } From 19e4faf770d97409f2e479745202996f63481174 Mon Sep 17 00:00:00 2001 From: haawda Date: Thu, 2 Apr 2020 10:33:19 +0200 Subject: [PATCH 144/971] added cmake to makedepends --- .SRCINFO | 3 ++- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index ca14919..f794d85 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,13 +1,14 @@ pkgbase = ect pkgdesc = file compressor, supports postcompression of PNG, JPEG, GZIP and ZIP files. pkgver = 0.8.3 - pkgrel = 1 + pkgrel = 2 url = https://github.com/fhanau/Efficient-Compression-Tool arch = i686 arch = x86_64 license = Apache makedepends = nasm makedepends = git + makedepends = cmake depends = gcc-libs source = git+https://github.com/fhanau/Efficient-Compression-Tool.git#commit=f0b38f7f8b750099f14d4976beff6a107d6119ac md5sums = SKIP diff --git a/PKGBUILD b/PKGBUILD index b571136..4c64d70 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname=ect _pkgname=Efficient-Compression-Tool pkgver=0.8.3 -pkgrel=1 +pkgrel=2 pkgdesc='file compressor, supports postcompression of PNG, JPEG, GZIP and ZIP files.' url='https://github.com/fhanau/Efficient-Compression-Tool' arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ license=('Apache') source=("git+https://github.com/fhanau/Efficient-Compression-Tool.git#commit=f0b38f7f8b750099f14d4976beff6a107d6119ac") md5sums=('SKIP') depends=('gcc-libs') -makedepends=('nasm' 'git') +makedepends=('nasm' 'git' 'cmake') prepare() { cd ${_pkgname} From 89e7ca18b04e946f026acd0afebdfa9225031d9c Mon Sep 17 00:00:00 2001 From: Brad Erhart Date: Fri, 3 Apr 2020 09:28:21 -0700 Subject: [PATCH 145/971] Updating gvisor to v20200323.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index aba53c7..ee188cc 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20200219.0 + pkgver = 20200323.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,8 +11,8 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20200219.0::https://storage.googleapis.com/gvisor/releases/release/20200219.0/runsc - sha256sums = 68c522e126099a883c7a55fc0b1d5e37a1cf2587f359517721baa8c8518e86ea + source = gvisor-bin-20200323.0::https://storage.googleapis.com/gvisor/releases/release/20200323.0/runsc + sha256sums = 4a4b0d42ef741cfdb831ebc05ef6f483217515f6d186abc96af6fea3d1312353 pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index e596187..255b319 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20200219.0 +pkgver=20200323.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/$_pkgname") -sha256sums=('68c522e126099a883c7a55fc0b1d5e37a1cf2587f359517721baa8c8518e86ea') +sha256sums=(4a4b0d42ef741cfdb831ebc05ef6f483217515f6d186abc96af6fea3d1312353) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From 35349502fcc2b774f350d001755e36569fa8d426 Mon Sep 17 00:00:00 2001 From: Brad Erhart Date: Fri, 3 Apr 2020 09:40:08 -0700 Subject: [PATCH 146/971] Fixing hash in gvisor update v20200323.0 --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index ee188cc..88adcfa 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -12,7 +12,7 @@ pkgbase = gvisor-bin conflicts = gvisor-git conflicts = runsc source = gvisor-bin-20200323.0::https://storage.googleapis.com/gvisor/releases/release/20200323.0/runsc - sha256sums = 4a4b0d42ef741cfdb831ebc05ef6f483217515f6d186abc96af6fea3d1312353 + sha256sums = bb36104122c52157cc005c7ae5f45478d2a318481e5ac60bddbd11984c5d24d4 pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 255b319..9a6cdca 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/$_pkgname") -sha256sums=(4a4b0d42ef741cfdb831ebc05ef6f483217515f6d186abc96af6fea3d1312353) +sha256sums=(bb36104122c52157cc005c7ae5f45478d2a318481e5ac60bddbd11984c5d24d4) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From 46489b2f851fc02a13117f6440e1a07dd8fa96c3 Mon Sep 17 00:00:00 2001 From: Nils Czernia Date: Wed, 20 May 2020 08:35:52 +0200 Subject: [PATCH 147/971] Updated to 0.8.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index cd19ec8..2d06c09 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = prometheus-postgresql-exporter pkgdesc = Prometheus exporter for PostrgreSQL - pkgver = 0.5.0 + pkgver = 0.8.0 pkgrel = 1 url = https://github.com/wrouesnel/postgres_exporter arch = x86_64 @@ -8,9 +8,9 @@ pkgbase = prometheus-postgresql-exporter license = Apache makedepends = git makedepends = go - source = https://github.com/wrouesnel/postgres_exporter/archive/v0.5.0.tar.gz + source = https://github.com/wrouesnel/postgres_exporter/archive/v0.8.0.tar.gz source = prometheus-postgresql-exporter.service - sha256sums = a84955602d8369605aa6e12c91b21ab3864f4d655077f25b4ec0545fa8bb9b9f + sha256sums = 27877c9b3aa751c7c1265f39986218f6a2c2b66a126cf348c6cc2f20f5201b02 sha256sums = cda225c236df0e2a6d71c17a5390a92ed5cc7f71b8ca5843590c59fa02cdb135 pkgname = prometheus-postgresql-exporter diff --git a/PKGBUILD b/PKGBUILD index b82efd8..483e86d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Nils Czernia pkgname=prometheus-postgresql-exporter -pkgver=0.5.0 +pkgver=0.8.0 pkgrel=1 pkgdesc="Prometheus exporter for PostrgreSQL" arch=('x86_64' 'i686') @@ -10,7 +10,7 @@ license=('Apache') makedepends=('git' 'go') source=("https://github.com/wrouesnel/postgres_exporter/archive/v${pkgver}.tar.gz" "prometheus-postgresql-exporter.service") -sha256sums=('a84955602d8369605aa6e12c91b21ab3864f4d655077f25b4ec0545fa8bb9b9f' +sha256sums=('27877c9b3aa751c7c1265f39986218f6a2c2b66a126cf348c6cc2f20f5201b02' 'cda225c236df0e2a6d71c17a5390a92ed5cc7f71b8ca5843590c59fa02cdb135') prepare() { From efe9257634a74c858336722f6a87dc6913de148c Mon Sep 17 00:00:00 2001 From: Brad Erhart Date: Tue, 2 Jun 2020 19:38:45 -0700 Subject: [PATCH 148/971] Updating gvisor to v20200522.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 88adcfa..e709862 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20200323.0 + pkgver = 20200522.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,8 +11,8 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20200323.0::https://storage.googleapis.com/gvisor/releases/release/20200323.0/runsc - sha256sums = bb36104122c52157cc005c7ae5f45478d2a318481e5ac60bddbd11984c5d24d4 + source = gvisor-bin-20200522.0::https://storage.googleapis.com/gvisor/releases/release/20200522.0/runsc + sha256sums = b10c7c31e4a7a1b9d92e5b7053ad92ae8d36aab2585cf712d1b3f228a77aa235 pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 9a6cdca..4cdb05a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20200323.0 +pkgver=20200522.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/$_pkgname") -sha256sums=(bb36104122c52157cc005c7ae5f45478d2a318481e5ac60bddbd11984c5d24d4) +sha256sums=(b10c7c31e4a7a1b9d92e5b7053ad92ae8d36aab2585cf712d1b3f228a77aa235) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From e8f101c6f1d8f84a63a4540dafa34e4bca7486fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 6 Jun 2020 03:10:14 +0200 Subject: [PATCH 149/971] Initial commit --- .SRCINFO | 17 +++++++++++++++++ PKGBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..7c14234 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,17 @@ +pkgbase = nginx-mod-form-input + pkgdesc = Nginx module that reads HTTP POST and PUT request body encoded in "application/x-www-form-urlencoded", and parse the arguments in request body into nginx variables. + pkgver = 0.12 + pkgrel = 1 + url = https://github.com/calio/form-input-nginx-module + arch = x86_64 + license = BSD + makedepends = nginx-src + depends = nginx + depends = nginx-mod-ndk + source = https://github.com/vision5/ngx_devel_kit/archive/v0.3.1/ngx_devel_kit-0.3.1.tar.gz + source = https://github.com/calio/form-input-nginx-module/archive/v0.12/form-input-0.12.tar.gz + sha256sums = 0e971105e210d272a497567fa2e2c256f4e39b845a5ba80d373e26ba1abfbd85 + sha256sums = 5c1869d55897075adb3fdf840b21060dc54669a1f840a36d1539acc7e59dd106 + +pkgname = nginx-mod-form-input + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..c6ee75b --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,42 @@ +# Maintainer: Manuel Hüsers +# Contributor: Manuel Hüsers + +pkgname=nginx-mod-form-input +pkgver=0.12 +pkgrel=1 + +_modname="${pkgname#nginx-mod-}" +_ndkver='0.3.1' + +pkgdesc='Nginx module that reads HTTP POST and PUT request body encoded in "application/x-www-form-urlencoded", and parse the arguments in request body into nginx variables.' +arch=('x86_64') +depends=('nginx' 'nginx-mod-ndk') +makedepends=('nginx-src') +url="https://github.com/calio/$_modname-nginx-module" +license=('BSD') + +source=( + https://github.com/vision5/ngx_devel_kit/archive/v$_ndkver/ngx_devel_kit-$_ndkver.tar.gz + https://github.com/calio/$_modname-nginx-module/archive/v$pkgver/$_modname-$pkgver.tar.gz +) +sha256sums=('0e971105e210d272a497567fa2e2c256f4e39b845a5ba80d373e26ba1abfbd85' + '5c1869d55897075adb3fdf840b21060dc54669a1f840a36d1539acc7e59dd106') + +build() { + cp -r /usr/src/nginx . + cd "$srcdir"/nginx + ./configure --with-compat \ + --add-module=../ngx_devel_kit-$_ndkver \ + --add-dynamic-module=../$_modname-nginx-module-$pkgver + make modules +} + +package() { + cd "$srcdir"/nginx/objs + for mod in *.so; do + install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod + done + + install -Dm644 "$srcdir"/$_modname-nginx-module-$pkgver/README.md \ + "$pkgdir"/usr/share/licenses/$pkgname/README.md +} \ No newline at end of file From 3e87249e981f6ade9f3795a855ffb84fb32a9c8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 26 Jun 2020 16:11:15 +0200 Subject: [PATCH 150/971] Version 2.14.0 --- .SRCINFO | 6 +++--- PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 146a6fe..b8ad582 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = 2.13.0 + pkgver = 2.14.0 pkgrel = 1 url = https://github.com/redhat-performance/tuned install = tuned.install @@ -23,8 +23,8 @@ pkgbase = tuned optdepends = virt-what: For use with virtual machines optdepends = systemtap: Disk and net statistic monitoring systemtap scripts backup = etc/tuned/active_profile - source = https://github.com/redhat-performance/tuned/archive/v2.13.0.tar.gz - sha256sums = 528b34ef0d2c219def11cea8bd8dbba83dce04adb78ab4b78ef65cf63885496d + source = https://github.com/redhat-performance/tuned/archive/v2.14.0.tar.gz + sha256sums = 2a36aea3115c7f50faf05b1a34218eeab6d61c808056cb6625cc20d0fcf2c74c pkgname = tuned diff --git a/PKGBUILD b/PKGBUILD index d44d1a1..e001076 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,10 +1,10 @@ -# Maintainer: Manuel Hüsers +# Maintainer: Manuel Hüsers # Contributor: Iwan Timmer # Contributor: Timothée Ravier # Contributor: Tom pkgname=tuned -pkgver=2.13.0 +pkgver=2.14.0 pkgrel=1 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') @@ -16,7 +16,7 @@ makedepends=('desktop-file-utils') backup=('etc/tuned/active_profile') install="${pkgname}.install" source=("https://github.com/redhat-performance/${pkgname}/archive/v${pkgver}.tar.gz") -sha256sums=('528b34ef0d2c219def11cea8bd8dbba83dce04adb78ab4b78ef65cf63885496d') +sha256sums=('2a36aea3115c7f50faf05b1a34218eeab6d61c808056cb6625cc20d0fcf2c74c') package() { cd "${pkgname}-${pkgver}" From ff361e9da51f75d478b827129af0555d925a1625 Mon Sep 17 00:00:00 2001 From: Jonathan Liu Date: Wed, 8 Jul 2020 09:41:59 +1000 Subject: [PATCH 151/971] Update to 0.0.20-1 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index aa8b90c..4808191 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = wxedid pkgdesc = wxWidgets-based EDID (Extended Display Identification Data) editor - pkgver = 0.0.19 + pkgver = 0.0.20 pkgrel = 1 url = https://sourceforge.net/projects/wxedid/ arch = i686 @@ -8,8 +8,8 @@ pkgbase = wxedid license = GPL3 depends = wxgtk2 options = !buildflags - source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.19.tar.gz - md5sums = d9a1a2de8483128a51ac0866e3c28d46 + source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.20.tar.gz + md5sums = 674984f3ba1faac3752e216f3ad2e18f pkgname = wxedid diff --git a/PKGBUILD b/PKGBUILD index 180f75e..3d0d809 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Jonathan Liu pkgname=wxedid -pkgver=0.0.19 +pkgver=0.0.20 pkgrel=1 pkgdesc="wxWidgets-based EDID (Extended Display Identification Data) editor" arch=('i686' 'x86_64') @@ -9,7 +9,7 @@ license=('GPL3') depends=('wxgtk2') options=('!buildflags') source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz") -md5sums=('d9a1a2de8483128a51ac0866e3c28d46') +md5sums=('674984f3ba1faac3752e216f3ad2e18f') build() { cd "$pkgname-$pkgver" From 5db94aac2ae7ab7e638d68332a201a539c65d445 Mon Sep 17 00:00:00 2001 From: Jonathan Liu Date: Mon, 13 Jul 2020 18:48:34 +1000 Subject: [PATCH 152/971] Update to 0.0.21-1 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 4808191..1c89a22 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = wxedid pkgdesc = wxWidgets-based EDID (Extended Display Identification Data) editor - pkgver = 0.0.20 + pkgver = 0.0.21 pkgrel = 1 url = https://sourceforge.net/projects/wxedid/ arch = i686 @@ -8,8 +8,8 @@ pkgbase = wxedid license = GPL3 depends = wxgtk2 options = !buildflags - source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.20.tar.gz - md5sums = 674984f3ba1faac3752e216f3ad2e18f + source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.21.tar.gz + md5sums = 144ffc899fc729ee5aee50cfd3e9f60d pkgname = wxedid diff --git a/PKGBUILD b/PKGBUILD index 3d0d809..9beaf01 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Jonathan Liu pkgname=wxedid -pkgver=0.0.20 +pkgver=0.0.21 pkgrel=1 pkgdesc="wxWidgets-based EDID (Extended Display Identification Data) editor" arch=('i686' 'x86_64') @@ -9,7 +9,7 @@ license=('GPL3') depends=('wxgtk2') options=('!buildflags') source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz") -md5sums=('674984f3ba1faac3752e216f3ad2e18f') +md5sums=('144ffc899fc729ee5aee50cfd3e9f60d') build() { cd "$pkgname-$pkgver" From 4afcab3b198858351db23ae75527af5c076c1589 Mon Sep 17 00:00:00 2001 From: Brad Erhart Date: Wed, 12 Aug 2020 17:30:37 -0700 Subject: [PATCH 153/971] Updating gVisor to v20200810.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index e709862..4853bad 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20200522.0 + pkgver = 20200810.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,8 +11,8 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20200522.0::https://storage.googleapis.com/gvisor/releases/release/20200522.0/runsc - sha256sums = b10c7c31e4a7a1b9d92e5b7053ad92ae8d36aab2585cf712d1b3f228a77aa235 + source = gvisor-bin-20200810.0::https://storage.googleapis.com/gvisor/releases/release/20200810.0/runsc + sha256sums = 3b74b38e934e7b5185a6a276c50501ebac67f4cabc1641e61dd9dc01dad68034 pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 4cdb05a..8e6b4ec 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20200522.0 +pkgver=20200810.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/$_pkgname") -sha256sums=(b10c7c31e4a7a1b9d92e5b7053ad92ae8d36aab2585cf712d1b3f228a77aa235) +sha256sums=(3b74b38e934e7b5185a6a276c50501ebac67f4cabc1641e61dd9dc01dad68034) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From f0d04f8c2bac965673411cfa5945f2b3a004de86 Mon Sep 17 00:00:00 2001 From: graysky Date: Tue, 1 Sep 2020 06:35:51 -0400 Subject: [PATCH 154/971] Update to 2020.2.001-1 --- .SRCINFO | 10 +++++----- PKGBUILD | 12 ++++++------ 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index bcfa939..b10ffce 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,15 +1,15 @@ pkgbase = linpack - pkgver = 2019.6.005 + pkgver = 2020.2.001 pkgrel = 1 url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download arch = x86_64 license = custom - source = https://software.intel.com/sites/default/files/managed/cc/19/l_mklb_p_2019.6.005.tgz + source = https://software.intel.com/content/dam/develop/external/us/en/documents/l_mklb_p_2020.2.001.tgz source = linpack.conf source = linpack_runme_xeon64 - sha256sums = 9ebbd4f4898cdc5e8ee1425c5c955169cd3aa6f8742db37dd4d0d23fc7650a30 - sha256sums = d7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254 - sha256sums = 369736f6074ab579a1df38ba09be4784547833be020f13d1b60374f64ca5d5f6 + b2sums = b26e7220bf1c02b3f58ba9f67733cded00f98cb084bc56d783654de17e6b50bbe71369be6566110606303b8d0f59ff7f2940f8e8d35e4eb0aa9aff00901496b4 + b2sums = cb9e676aab60304f56c1ab099a0a46e0bb2af9beee93b95adbf2661c475c8e5a1ee35c6726f646b98c5cdacbdb1870488526bc0f19de59699c6a550bb2de06b6 + b2sums = 1ab0b9fde310496400bfa924c2e1a9206f341102117a64b3b086732394cbc33498708322ffbdf45b117898ed35a34b5107127cfedd9eec0eeb1a3f84d7aeaf63 pkgname = linpack pkgdesc = Benchmark based on linear algebra excellent app for stress testing. diff --git a/PKGBUILD b/PKGBUILD index e90d99a..3a07e18 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,16 +1,16 @@ # Contributor: graysky pkgname=('linpack') -pkgver=2019.6.005 -_math_kernel_lib=2019 +pkgver=2020.2.001 +_math_kernel_lib=2020 pkgrel=1 arch=('x86_64') license=('custom') url="http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download" -source=("https://software.intel.com/sites/default/files/managed/cc/19/l_mklb_p_$pkgver.tgz" +source=("https://software.intel.com/content/dam/develop/external/us/en/documents/l_mklb_p_$pkgver.tgz" 'linpack.conf' 'linpack_runme_xeon64') -sha256sums=('9ebbd4f4898cdc5e8ee1425c5c955169cd3aa6f8742db37dd4d0d23fc7650a30' - 'd7e31c8c7e2648c8fa3c4838d98dfc39b8fadf0f74bdaa4ca52cd38277ec8254' - '369736f6074ab579a1df38ba09be4784547833be020f13d1b60374f64ca5d5f6') +b2sums=('b26e7220bf1c02b3f58ba9f67733cded00f98cb084bc56d783654de17e6b50bbe71369be6566110606303b8d0f59ff7f2940f8e8d35e4eb0aa9aff00901496b4' + 'cb9e676aab60304f56c1ab099a0a46e0bb2af9beee93b95adbf2661c475c8e5a1ee35c6726f646b98c5cdacbdb1870488526bc0f19de59699c6a550bb2de06b6' + '1ab0b9fde310496400bfa924c2e1a9206f341102117a64b3b086732394cbc33498708322ffbdf45b117898ed35a34b5107127cfedd9eec0eeb1a3f84d7aeaf63') package_linpack() { pkgdesc='Benchmark based on linear algebra excellent app for stress testing.' From d2934f748f5fe47c7b2cd85ed8bdb8f014617d45 Mon Sep 17 00:00:00 2001 From: Brad Erhart Date: Thu, 3 Sep 2020 13:07:34 -0700 Subject: [PATCH 155/971] Updating gVisor to v20200818.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 4853bad..7314cf2 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20200810.0 + pkgver = 20200818.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,8 +11,8 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20200810.0::https://storage.googleapis.com/gvisor/releases/release/20200810.0/runsc - sha256sums = 3b74b38e934e7b5185a6a276c50501ebac67f4cabc1641e61dd9dc01dad68034 + source = gvisor-bin-20200818.0::https://storage.googleapis.com/gvisor/releases/release/20200818.0/runsc + sha256sums = 883bf32926b3ea7a9fe187728411b32c417c0c8d5619ae93a98b26951f474ed6 pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 8e6b4ec..b544f88 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20200810.0 +pkgver=20200818.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/$_pkgname") -sha256sums=(3b74b38e934e7b5185a6a276c50501ebac67f4cabc1641e61dd9dc01dad68034) +sha256sums=(883bf32926b3ea7a9fe187728411b32c417c0c8d5619ae93a98b26951f474ed6) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From 1a723fdbb46ad68ba3b9c6caab961405e44e1ecb Mon Sep 17 00:00:00 2001 From: Brad Erhart Date: Sun, 13 Sep 2020 01:42:55 -0700 Subject: [PATCH 156/971] Updating gVisor to 20200907.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 7314cf2..dbb8b3d 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20200818.0 + pkgver = 20200907.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,8 +11,8 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20200818.0::https://storage.googleapis.com/gvisor/releases/release/20200818.0/runsc - sha256sums = 883bf32926b3ea7a9fe187728411b32c417c0c8d5619ae93a98b26951f474ed6 + source = gvisor-bin-20200907.0::https://storage.googleapis.com/gvisor/releases/release/20200907.0/runsc + sha256sums = 01f883f437402af258af54a5c6a7bb3d4e503e3a552964158a2fdc9018fb9134 pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index b544f88..8e1b4fb 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20200818.0 +pkgver=20200907.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/$_pkgname") -sha256sums=(883bf32926b3ea7a9fe187728411b32c417c0c8d5619ae93a98b26951f474ed6) +sha256sums=(01f883f437402af258af54a5c6a7bb3d4e503e3a552964158a2fdc9018fb9134) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From 490414b64a122c3c87a434f9341879deba1b34bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20M=2E=20Bezerra?= Date: Sun, 13 Sep 2020 10:49:21 -0300 Subject: [PATCH 157/971] Renamed package to `sublime-text-3` --- .SRCINFO | 24 +++++++++++------------- LICENSE | 14 ++++++++++++-- PKGBUILD | 22 ++++++++++++++++------ 3 files changed, 39 insertions(+), 21 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index cc11883..c7e4295 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,26 +1,24 @@ -pkgbase = sublime-text-3-imfix - pkgdesc = Sophisticated text editor for code, html and prose - Stable build with support for CJK +pkgbase = sublime-text-3 + pkgdesc = Sophisticated text editor for code, html and prose - stable build pkgver = 3.3211 - pkgrel = 2 + pkgrel = 1 url = https://www.sublimetext.com/3 arch = x86_64 license = custom depends = libpng depends = gtk2 provides = sublime-text - provides = sublime-text-dev - provides = sublime-text-nightly - provides = sublime-text-dev-imfix - provides = sublime-text-dev-imfix2 - conflicts = sublime-text - conflicts = sublime-text-dev + provides = sublime + conflicts = sublime-text-4-dev + conflicts = sublime-text-3-imfix + conflicts = sublime-text-imfix conflicts = sublime-text-nightly - conflicts = sublime-text-dev-imfix - conflicts = sublime-text-dev-imfix2 + conflicts = sublime-text-dev + conflicts = sublime-text2 source = https://download.sublimetext.com/sublime_text_3_build_3211_x64.tar.bz2 source = LICENSE sha256sums = 0b3c8ca5e6df376c3c24a4b9ac2e3b391333f73b229bc6e87d0b4a5f636d74ee - sha256sums = 8e4c48469bf3f35d0c0904e770c4e307d4965a8931e839c01c5765498a19cf01 + sha256sums = 339dbd1b6ae3e699809afcdd6c690299e6fa0d385aa2ef658a52d336a3f8107f -pkgname = sublime-text-3-imfix +pkgname = sublime-text-3 diff --git a/LICENSE b/LICENSE index 3e2f842..981842a 100644 --- a/LICENSE +++ b/LICENSE @@ -1,3 +1,13 @@ -Sublime Text may be downloaded and evaluated for free, however a license must be purchased for continued use. -Licenses are per-user, rather than per-machine, so you can enjoy Sublime Text on as many computers and operating systems as you wish with your license. +Maintainer note: +Sublime Text is free to use, if you want access to the newer builds, with the package +`sublime-text-4-dev` or `sublime-text-dev`, you'll need a paid license. + +Buying a license also supports the development of the editor. + +--- + +Sublime Text may be downloaded and evaluated for free, however a license must be purchased for +continued use. Licenses are per-user, rather than per-machine, so you can enjoy Sublime Text on as +many computers and operating systems as you wish with your license. + For more information, please visit https://www.sublimetext.com/buy diff --git a/PKGBUILD b/PKGBUILD index ec77952..411ba05 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,21 +1,31 @@ # Maintainer: marcospb19 -pkgname=sublime-text-3-imfix +pkgname=sublime-text-3 pkgver=3.3211 -pkgrel=2 -pkgdesc="Sophisticated text editor for code, html and prose - Stable build with support for CJK" +pkgrel=1 +pkgdesc="Sophisticated text editor for code, html and prose - stable build" arch=('x86_64') url='https://www.sublimetext.com/3' license=('custom') depends=('libpng' 'gtk2') -conflicts=('sublime-text' 'sublime-text-dev' 'sublime-text-nightly' 'sublime-text-dev-imfix' 'sublime-text-dev-imfix2') -provides=('sublime-text' 'sublime-text-dev' 'sublime-text-nightly' 'sublime-text-dev-imfix' 'sublime-text-dev-imfix2') + +replaces=('sublime-text-3-imfix') + +conflicts=('sublime-text-4-dev' + 'sublime-text-3-imfix' + 'sublime-text-imfix' + 'sublime-text-nightly' + 'sublime-text-dev' + 'sublime-text2') + +provides=('sublime-text' 'sublime') + source=( "https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2" 'LICENSE' ) sha256sums=('0b3c8ca5e6df376c3c24a4b9ac2e3b391333f73b229bc6e87d0b4a5f636d74ee' - '8e4c48469bf3f35d0c0904e770c4e307d4965a8931e839c01c5765498a19cf01') + '339dbd1b6ae3e699809afcdd6c690299e6fa0d385aa2ef658a52d336a3f8107f') package() { cd "${srcdir}" From 74a04841e044011c0e9eefd9e257f9c2cf88904f Mon Sep 17 00:00:00 2001 From: Brad Erhart Date: Mon, 21 Sep 2020 18:15:40 -0700 Subject: [PATCH 158/971] Updating gVisor to v20200914.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index dbb8b3d..aa97feb 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20200907.0 + pkgver = 20200914.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,8 +11,8 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20200907.0::https://storage.googleapis.com/gvisor/releases/release/20200907.0/runsc - sha256sums = 01f883f437402af258af54a5c6a7bb3d4e503e3a552964158a2fdc9018fb9134 + source = gvisor-bin-20200914.0::https://storage.googleapis.com/gvisor/releases/release/20200914.0/runsc + sha256sums = 422d8af3df228f315da81228695fd358d41c9261d6d1231169e897ce9778996d pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 8e1b4fb..fdefbb8 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20200907.0 +pkgver=20200914.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/$_pkgname") -sha256sums=(01f883f437402af258af54a5c6a7bb3d4e503e3a552964158a2fdc9018fb9134) +sha256sums=(422d8af3df228f315da81228695fd358d41c9261d6d1231169e897ce9778996d) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From 38f2fff5049b8290f934f02a58b37052bf81bf86 Mon Sep 17 00:00:00 2001 From: Brad Erhart Date: Tue, 29 Sep 2020 00:02:40 -0700 Subject: [PATCH 159/971] Updating gVisor to v20200921.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index aa97feb..fb83fdc 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20200914.0 + pkgver = 20200921.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,8 +11,8 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20200914.0::https://storage.googleapis.com/gvisor/releases/release/20200914.0/runsc - sha256sums = 422d8af3df228f315da81228695fd358d41c9261d6d1231169e897ce9778996d + source = gvisor-bin-20200921.0::https://storage.googleapis.com/gvisor/releases/release/20200921.0/runsc + sha256sums = 769a3f19f99beb92bda7d5b9a477a1bfae4a5feefeb57fb3579447b18809b147 pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index fdefbb8..21b20ec 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20200914.0 +pkgver=20200921.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/$_pkgname") -sha256sums=(422d8af3df228f315da81228695fd358d41c9261d6d1231169e897ce9778996d) +sha256sums=(769a3f19f99beb92bda7d5b9a477a1bfae4a5feefeb57fb3579447b18809b147) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From 2b9aeea869d14fb4313c076554b05fb527a02348 Mon Sep 17 00:00:00 2001 From: Brad Erhart Date: Sun, 25 Oct 2020 11:01:57 -0700 Subject: [PATCH 160/971] Updating gVisor to v20201019.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index fb83fdc..bba0a04 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20200921.0 + pkgver = 20201019.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,8 +11,8 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20200921.0::https://storage.googleapis.com/gvisor/releases/release/20200921.0/runsc - sha256sums = 769a3f19f99beb92bda7d5b9a477a1bfae4a5feefeb57fb3579447b18809b147 + source = gvisor-bin-20201019.0::https://storage.googleapis.com/gvisor/releases/release/20201019.0/runsc + sha256sums = e7aeef3fc102f42bb6af37dd1c05f1970c86d24a220e299ce7f683d4dcc135c7 pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 21b20ec..edc5a1a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20200921.0 +pkgver=20201019.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/$_pkgname") -sha256sums=(769a3f19f99beb92bda7d5b9a477a1bfae4a5feefeb57fb3579447b18809b147) +sha256sums=(e7aeef3fc102f42bb6af37dd1c05f1970c86d24a220e299ce7f683d4dcc135c7) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From 50a5c869b94d3dbc7a9f1a18e089ce6ebd5d88aa Mon Sep 17 00:00:00 2001 From: Brad Erhart Date: Fri, 13 Nov 2020 18:01:57 -0800 Subject: [PATCH 161/971] Updating gVisor to v20201030.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index bba0a04..c56f8ca 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20201019.0 + pkgver = 20201030.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,8 +11,8 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20201019.0::https://storage.googleapis.com/gvisor/releases/release/20201019.0/runsc - sha256sums = e7aeef3fc102f42bb6af37dd1c05f1970c86d24a220e299ce7f683d4dcc135c7 + source = gvisor-bin-20201030.0::https://storage.googleapis.com/gvisor/releases/release/20201030.0/runsc + sha256sums = 75fbfaf6c6d5e095b53e298c2d3deec04cd1422d7fa364675e306d2f7bf3a4dc pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index edc5a1a..e6df16d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20201019.0 +pkgver=20201030.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/$_pkgname") -sha256sums=(e7aeef3fc102f42bb6af37dd1c05f1970c86d24a220e299ce7f683d4dcc135c7) +sha256sums=(75fbfaf6c6d5e095b53e298c2d3deec04cd1422d7fa364675e306d2f7bf3a4dc) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From 022dcd57565b6c291296fac7f737313ca1ab5041 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 2 Dec 2020 07:16:45 +0100 Subject: [PATCH 162/971] Trigger rebuild for Python 3.9 --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index b8ad582..978717b 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system pkgver = 2.14.0 - pkgrel = 1 + pkgrel = 2 url = https://github.com/redhat-performance/tuned install = tuned.install arch = any diff --git a/PKGBUILD b/PKGBUILD index e001076..7a43bb3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,7 +5,7 @@ pkgname=tuned pkgver=2.14.0 -pkgrel=1 +pkgrel=2 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url="https://github.com/redhat-performance/${pkgname}" From 5f4458708d9cf2cd406e891deb920f147d23453e Mon Sep 17 00:00:00 2001 From: Brad Erhart Date: Thu, 3 Dec 2020 07:14:16 -0800 Subject: [PATCH 163/971] Updating gVisor to v20201130.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index c56f8ca..e06837c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20201030.0 + pkgver = 20201130.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,8 +11,8 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20201030.0::https://storage.googleapis.com/gvisor/releases/release/20201030.0/runsc - sha256sums = 75fbfaf6c6d5e095b53e298c2d3deec04cd1422d7fa364675e306d2f7bf3a4dc + source = gvisor-bin-20201130.0::https://storage.googleapis.com/gvisor/releases/release/20201130.0/runsc + sha256sums = 87c9635b95c624297f4e279bfcd6e2277d9230f1cc3b5e5749896d0594290114 pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index e6df16d..e7bb636 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20201030.0 +pkgver=20201130.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/$_pkgname") -sha256sums=(75fbfaf6c6d5e095b53e298c2d3deec04cd1422d7fa364675e306d2f7bf3a4dc) +sha256sums=(87c9635b95c624297f4e279bfcd6e2277d9230f1cc3b5e5749896d0594290114) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From 3533637c734221bfa7617cdbc2cfb225f6eba093 Mon Sep 17 00:00:00 2001 From: Brad Erhart Date: Sun, 20 Dec 2020 18:43:43 -0800 Subject: [PATCH 164/971] Updating gVisor to v20201208.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index e06837c..2d66549 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20201130.0 + pkgver = 20201208.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,8 +11,8 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20201130.0::https://storage.googleapis.com/gvisor/releases/release/20201130.0/runsc - sha256sums = 87c9635b95c624297f4e279bfcd6e2277d9230f1cc3b5e5749896d0594290114 + source = gvisor-bin-20201208.0::https://storage.googleapis.com/gvisor/releases/release/20201208.0/runsc + sha256sums = de8eb1b6ad2bf24ef822689e877fab497d60c5f90da9afe89d34ccf3c9d8a590 pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index e7bb636..9e5fe0c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20201130.0 +pkgver=20201208.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/$_pkgname") -sha256sums=(87c9635b95c624297f4e279bfcd6e2277d9230f1cc3b5e5749896d0594290114) +sha256sums=(de8eb1b6ad2bf24ef822689e877fab497d60c5f90da9afe89d34ccf3c9d8a590) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From c729c1a8e1e81ab3a3484cf9c64e226598a00864 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=9D=CE=B9=CE=BA=CF=8C=CE=BB=CE=B1=CE=BF=CF=82=20=CE=9A?= =?UTF-8?q?=CF=85=CF=81=CE=B9=CE=AC=CE=BA=CE=BF=CF=82=20=CE=A6=CF=85=CF=84?= =?UTF-8?q?=CE=AF=CE=BB=CE=B7=CF=82?= Date: Mon, 21 Dec 2020 14:16:05 +0200 Subject: [PATCH 165/971] init --- .SRCINFO | 14 ++++++++++++++ .gitignore | 1 + PKGBUILD | 31 +++++++++++++++++++++++++++++++ 3 files changed, 46 insertions(+) create mode 100644 .SRCINFO create mode 100644 .gitignore create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..bd84627 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,14 @@ +pkgbase = ntfs2btrfs + pkgdesc = Convertion from ntfs to btrfs keeping NT metadata + pkgver = 1 + pkgrel = 1 + arch = any + license = GPL + makedepends = cmake + makedepends = gcc + depends = fmt + source = git+https://github.com/maharmstone/ntfs2btrfs + md5sums = SKIP + +pkgname = ntfs2btrfs + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e769f36 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +ntfs2btrfs pkg src diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..9e75b9f --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,31 @@ +# This is an example PKGBUILD file. Use this as a start to creating your own, +# and remove these comments. For more information, see 'man PKGBUILD'. +# NOTE: Please fill out the license field for your package! If it is unknown, +# then please put 'unknown'. + +# Maintainer: Your Name +pkgname=ntfs2btrfs +pkgver=1 +pkgrel=1 +epoch= +pkgdesc="Convertion from ntfs to btrfs keeping NT metadata" +arch=(any) +url="" +license=('GPL') +depends=(fmt) +makedepends=(cmake gcc) +source=("git+https://github.com/maharmstone/ntfs2btrfs") +md5sums=(SKIP) + +build() { + cd "$pkgname" + mkdir b || true + cd b + cmake -DCMAKE_INSTALL_PREFIX='/usr' .. + make +} + +package() { + cd "$pkgname/b" + make DESTDIR="$pkgdir/" install +} From 52456070b7815c4c2d1783429eb107994cc8369c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=9D=CE=B9=CE=BA=CF=8C=CE=BB=CE=B1=CE=BF=CF=82=20=CE=9A?= =?UTF-8?q?=CF=85=CF=81=CE=B9=CE=AC=CE=BA=CE=BF=CF=82=20=CE=A6=CF=85=CF=84?= =?UTF-8?q?=CE=AF=CE=BB=CE=B7=CF=82?= Date: Mon, 21 Dec 2020 14:27:39 +0200 Subject: [PATCH 166/971] fix ignore --- .gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index e769f36..17864e6 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,4 @@ -ntfs2btrfs pkg src +ntfs2btrfs/ +pkg/ +src/ +*pkg.tar* From a0cbd68b11e5444e626603eed1754e6b770bb2e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=9D=CE=B9=CE=BA=CF=8C=CE=BB=CE=B1=CE=BF=CF=82=20=CE=9A?= =?UTF-8?q?=CF=85=CF=81=CE=B9=CE=AC=CE=BA=CE=BF=CF=82=20=CE=A6=CF=85=CF=84?= =?UTF-8?q?=CE=AF=CE=BB=CE=B7=CF=82?= Date: Mon, 21 Dec 2020 14:35:42 +0200 Subject: [PATCH 167/971] oops --- .SRCINFO | 2 +- PKGBUILD | 14 +++++--------- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index bd84627..c4e9323 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -10,5 +10,5 @@ pkgbase = ntfs2btrfs source = git+https://github.com/maharmstone/ntfs2btrfs md5sums = SKIP -pkgname = ntfs2btrfs +pkgname = ntfs2btrfs-git diff --git a/PKGBUILD b/PKGBUILD index 9e75b9f..4744d3c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,10 +1,6 @@ -# This is an example PKGBUILD file. Use this as a start to creating your own, -# and remove these comments. For more information, see 'man PKGBUILD'. -# NOTE: Please fill out the license field for your package! If it is unknown, -# then please put 'unknown'. - -# Maintainer: Your Name -pkgname=ntfs2btrfs +# Maintainer: N Fytilis +pkgbase=ntfs2btrfs +pkgname=$pkgbase-git pkgver=1 pkgrel=1 epoch= @@ -18,7 +14,7 @@ source=("git+https://github.com/maharmstone/ntfs2btrfs") md5sums=(SKIP) build() { - cd "$pkgname" + cd "$pkgbase" mkdir b || true cd b cmake -DCMAKE_INSTALL_PREFIX='/usr' .. @@ -26,6 +22,6 @@ build() { } package() { - cd "$pkgname/b" + cd "$pkgbase/b" make DESTDIR="$pkgdir/" install } From a69158fd0009d0fcec43b07f19a562b729fd6366 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=9D=CE=B9=CE=BA=CF=8C=CE=BB=CE=B1=CE=BF=CF=82=20=CE=9A?= =?UTF-8?q?=CF=85=CF=81=CE=B9=CE=AC=CE=BA=CE=BF=CF=82=20=CE=A6=CF=85=CF=84?= =?UTF-8?q?=CE=AF=CE=BB=CE=B7=CF=82?= Date: Mon, 21 Dec 2020 14:40:55 +0200 Subject: [PATCH 168/971] asdasdad --- .SRCINFO | 2 +- PKGBUILD | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index c4e9323..2da4a17 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,4 +1,4 @@ -pkgbase = ntfs2btrfs +pkgbase = ntfs2btrfs-git pkgdesc = Convertion from ntfs to btrfs keeping NT metadata pkgver = 1 pkgrel = 1 diff --git a/PKGBUILD b/PKGBUILD index 4744d3c..740aee8 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,7 @@ # Maintainer: N Fytilis -pkgbase=ntfs2btrfs -pkgname=$pkgbase-git +_pkgbase=ntfs2btrfs +pkgname=$_pkgbase-git +pkgbase=$_pkgbase-git pkgver=1 pkgrel=1 epoch= @@ -14,7 +15,7 @@ source=("git+https://github.com/maharmstone/ntfs2btrfs") md5sums=(SKIP) build() { - cd "$pkgbase" + cd "$_pkgbase" mkdir b || true cd b cmake -DCMAKE_INSTALL_PREFIX='/usr' .. @@ -22,6 +23,6 @@ build() { } package() { - cd "$pkgbase/b" + cd "$_pkgbase/b" make DESTDIR="$pkgdir/" install } From 64b4d90ef72a418666a3b8f68540d3c39538ec61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 25 Dec 2020 07:43:19 +0100 Subject: [PATCH 169/971] Version 2.15.0 --- .SRCINFO | 8 ++++---- PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 978717b..7313545 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = 2.14.0 - pkgrel = 2 + pkgver = 2.15.0 + pkgrel = 1 url = https://github.com/redhat-performance/tuned install = tuned.install arch = any @@ -23,8 +23,8 @@ pkgbase = tuned optdepends = virt-what: For use with virtual machines optdepends = systemtap: Disk and net statistic monitoring systemtap scripts backup = etc/tuned/active_profile - source = https://github.com/redhat-performance/tuned/archive/v2.14.0.tar.gz - sha256sums = 2a36aea3115c7f50faf05b1a34218eeab6d61c808056cb6625cc20d0fcf2c74c + source = https://github.com/redhat-performance/tuned/archive/v2.15.0.tar.gz + sha256sums = 5fb11da077e681c4f3d2c0ea9ad73ba8152e6b98f9d07dc60a7802267784831a pkgname = tuned diff --git a/PKGBUILD b/PKGBUILD index 7a43bb3..05cdd72 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,8 +4,8 @@ # Contributor: Tom pkgname=tuned -pkgver=2.14.0 -pkgrel=2 +pkgver=2.15.0 +pkgrel=1 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url="https://github.com/redhat-performance/${pkgname}" @@ -16,7 +16,7 @@ makedepends=('desktop-file-utils') backup=('etc/tuned/active_profile') install="${pkgname}.install" source=("https://github.com/redhat-performance/${pkgname}/archive/v${pkgver}.tar.gz") -sha256sums=('2a36aea3115c7f50faf05b1a34218eeab6d61c808056cb6625cc20d0fcf2c74c') +sha256sums=('5fb11da077e681c4f3d2c0ea9ad73ba8152e6b98f9d07dc60a7802267784831a') package() { cd "${pkgname}-${pkgver}" From 13bfde97dbe59eae969345a37d2f543bd9bc17c5 Mon Sep 17 00:00:00 2001 From: Jonathan Liu Date: Thu, 14 Jan 2021 00:15:48 +1100 Subject: [PATCH 170/971] Update to 0.0.22-1 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 1c89a22..60539a5 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = wxedid pkgdesc = wxWidgets-based EDID (Extended Display Identification Data) editor - pkgver = 0.0.21 + pkgver = 0.0.22 pkgrel = 1 url = https://sourceforge.net/projects/wxedid/ arch = i686 @@ -8,8 +8,8 @@ pkgbase = wxedid license = GPL3 depends = wxgtk2 options = !buildflags - source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.21.tar.gz - md5sums = 144ffc899fc729ee5aee50cfd3e9f60d + source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.22.tar.gz + md5sums = ff22e0420471f2289c38d574bd761856 pkgname = wxedid diff --git a/PKGBUILD b/PKGBUILD index 9beaf01..b608065 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Jonathan Liu pkgname=wxedid -pkgver=0.0.21 +pkgver=0.0.22 pkgrel=1 pkgdesc="wxWidgets-based EDID (Extended Display Identification Data) editor" arch=('i686' 'x86_64') @@ -9,7 +9,7 @@ license=('GPL3') depends=('wxgtk2') options=('!buildflags') source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz") -md5sums=('144ffc899fc729ee5aee50cfd3e9f60d') +md5sums=('ff22e0420471f2289c38d574bd761856') build() { cd "$pkgname-$pkgver" From 4b7cc065d2fcf520159ad7941536b9c5bd6fb07f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 24 Jan 2021 20:55:39 +0100 Subject: [PATCH 171/971] Update systemd service and add EnvironmentFile --- .SRCINFO | 8 +++-- .gitignore | 5 --- PKGBUILD | 43 +++++++++++++++----------- prometheus-postgresql-exporter.conf | 2 ++ prometheus-postgresql-exporter.service | 20 ++++++++++-- 5 files changed, 50 insertions(+), 28 deletions(-) delete mode 100644 .gitignore create mode 100644 prometheus-postgresql-exporter.conf diff --git a/.SRCINFO b/.SRCINFO index 2d06c09..c47dfd3 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,17 +1,19 @@ pkgbase = prometheus-postgresql-exporter pkgdesc = Prometheus exporter for PostrgreSQL pkgver = 0.8.0 - pkgrel = 1 + pkgrel = 2 url = https://github.com/wrouesnel/postgres_exporter arch = x86_64 - arch = i686 license = Apache makedepends = git makedepends = go + backup = etc/conf.d/prometheus-postgresql-exporter source = https://github.com/wrouesnel/postgres_exporter/archive/v0.8.0.tar.gz source = prometheus-postgresql-exporter.service + source = prometheus-postgresql-exporter.conf sha256sums = 27877c9b3aa751c7c1265f39986218f6a2c2b66a126cf348c6cc2f20f5201b02 - sha256sums = cda225c236df0e2a6d71c17a5390a92ed5cc7f71b8ca5843590c59fa02cdb135 + sha256sums = 5eac41333fb12db676fed18c02156cfdefee957154241b4c724718fd40d23212 + sha256sums = 5436ad34fbcd6faab69da8675631f3eb5b89d964682eb23164bf4bb816ad1897 pkgname = prometheus-postgresql-exporter diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 556ff7e..0000000 --- a/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -* -!PKGBUILD -!.SRCINFO -!.gitignore -!prometheus-postgresql-exporter.service diff --git a/PKGBUILD b/PKGBUILD index 483e86d..640133f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,41 +1,48 @@ -# Maintainer: Nils Czernia +# Maintainer: Manuel Hüsers +# Contributor: Nils Czernia pkgname=prometheus-postgresql-exporter pkgver=0.8.0 -pkgrel=1 +pkgrel=2 pkgdesc="Prometheus exporter for PostrgreSQL" -arch=('x86_64' 'i686') +arch=('x86_64') url="https://github.com/wrouesnel/postgres_exporter" license=('Apache') makedepends=('git' 'go') +backup=('etc/conf.d/prometheus-postgresql-exporter') source=("https://github.com/wrouesnel/postgres_exporter/archive/v${pkgver}.tar.gz" - "prometheus-postgresql-exporter.service") + "prometheus-postgresql-exporter.service" + "prometheus-postgresql-exporter.conf") sha256sums=('27877c9b3aa751c7c1265f39986218f6a2c2b66a126cf348c6cc2f20f5201b02' - 'cda225c236df0e2a6d71c17a5390a92ed5cc7f71b8ca5843590c59fa02cdb135') + '5eac41333fb12db676fed18c02156cfdefee957154241b4c724718fd40d23212' + '5436ad34fbcd6faab69da8675631f3eb5b89d964682eb23164bf4bb816ad1897') prepare() { - cd "${srcdir}/postgres_exporter-${pkgver}" + cd "postgres_exporter-${pkgver}" - export GOPATH="${srcdir}/gopath" - mkdir -p "${GOPATH}/src/github.com/wrouesnel" - ln -snf "${srcdir}/postgres_exporter-${pkgver}" "${GOPATH}/src/github.com/wrouesnel/postgres_exporter" + export GOPATH="${srcdir}/gopath" + mkdir -p "${GOPATH}/src/github.com/wrouesnel" + ln -snf "${srcdir}/postgres_exporter-${pkgver}" "${GOPATH}/src/github.com/wrouesnel/postgres_exporter" } build() { - export GOPATH="${srcdir}/gopath" - cd "${GOPATH}/src/github.com/wrouesnel/postgres_exporter" - go run mage.go binary + export GOPATH="${srcdir}/gopath" + cd "${GOPATH}/src/github.com/wrouesnel/postgres_exporter" + go run mage.go binary } check() { - export GOPATH="${srcdir}/gopath" - cd "${GOPATH}/src/github.com/wrouesnel/postgres_exporter" - go run mage.go test + export GOPATH="${srcdir}/gopath" + cd "${GOPATH}/src/github.com/wrouesnel/postgres_exporter" + go run mage.go test } package() { - cd "${srcdir}/postgres_exporter-${pkgver}" + install -Dm644 "prometheus-postgresql-exporter.service" \ + "${pkgdir}/usr/lib/systemd/system/prometheus-postgresql-exporter.service" + install -Dm644 "prometheus-postgresql-exporter.conf" \ + "${pkgdir}/etc/conf.d/prometheus-postgresql-exporter" - install -Dm755 "postgres_exporter" "${pkgdir}/usr/bin/prometheus_postgresql_exporter" - install -Dm755 "${srcdir}/prometheus-postgresql-exporter.service" "${pkgdir}/usr/lib/systemd/system/prometheus-postgresql-exporter.service" + cd "postgres_exporter-${pkgver}" + install -Dm755 "postgres_exporter" "${pkgdir}/usr/bin/prometheus_postgresql_exporter" } diff --git a/prometheus-postgresql-exporter.conf b/prometheus-postgresql-exporter.conf new file mode 100644 index 0000000..3a15630 --- /dev/null +++ b/prometheus-postgresql-exporter.conf @@ -0,0 +1,2 @@ +DATA_SOURCE_NAME="" +POSTGRES_EXPORTER_ARGS="" \ No newline at end of file diff --git a/prometheus-postgresql-exporter.service b/prometheus-postgresql-exporter.service index 6f7f07c..f519e72 100644 --- a/prometheus-postgresql-exporter.service +++ b/prometheus-postgresql-exporter.service @@ -2,8 +2,24 @@ Description=Prometheus exporter for PostgreSQL After=network.target -[Service] -ExecStart=/usr/bin/prometheus_postgresql_exporter +EnvironmentFile=-/etc/conf.d/prometheus-postgresql-exporter +ExecStart=/usr/bin/prometheus_postgresql_exporter $POSTGRES_EXPORTER_ARGS +Restart=on-failure + +DynamicUser=true +ProtectKernelModules=true +ProtectKernelTunables=true +LockPersonality=true +ProtectHostname=true +ProtectHome=true +ProtectClock=true +ProtectControlGroups=true +ProtectKernelLogs=true +PrivateDevices=true +PrivateUsers=true +RestrictRealtime=true +CapabilityBoundingSet= +MemoryDenyWriteExecute=true [Install] WantedBy=multi-user.target From dac049e54c2ff1194fe956a846c905047c074254 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 24 Jan 2021 21:51:38 +0100 Subject: [PATCH 172/971] Fix accidentally broken service file --- .SRCINFO | 2 +- PKGBUILD | 2 +- prometheus-postgresql-exporter.service | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index c47dfd3..6b63f71 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = prometheus-postgresql-exporter pkgdesc = Prometheus exporter for PostrgreSQL pkgver = 0.8.0 - pkgrel = 2 + pkgrel = 3 url = https://github.com/wrouesnel/postgres_exporter arch = x86_64 license = Apache diff --git a/PKGBUILD b/PKGBUILD index 640133f..75170b6 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ pkgname=prometheus-postgresql-exporter pkgver=0.8.0 -pkgrel=2 +pkgrel=3 pkgdesc="Prometheus exporter for PostrgreSQL" arch=('x86_64') url="https://github.com/wrouesnel/postgres_exporter" diff --git a/prometheus-postgresql-exporter.service b/prometheus-postgresql-exporter.service index f519e72..9c045e1 100644 --- a/prometheus-postgresql-exporter.service +++ b/prometheus-postgresql-exporter.service @@ -2,6 +2,7 @@ Description=Prometheus exporter for PostgreSQL After=network.target +[Service] EnvironmentFile=-/etc/conf.d/prometheus-postgresql-exporter ExecStart=/usr/bin/prometheus_postgresql_exporter $POSTGRES_EXPORTER_ARGS Restart=on-failure From 1bc2f910694771b9c10459b158aabbdbc154c996 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 24 Jan 2021 21:56:58 +0100 Subject: [PATCH 173/971] Update checksum that I forgot about --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 6b63f71..07631be 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -12,7 +12,7 @@ pkgbase = prometheus-postgresql-exporter source = prometheus-postgresql-exporter.service source = prometheus-postgresql-exporter.conf sha256sums = 27877c9b3aa751c7c1265f39986218f6a2c2b66a126cf348c6cc2f20f5201b02 - sha256sums = 5eac41333fb12db676fed18c02156cfdefee957154241b4c724718fd40d23212 + sha256sums = 0d86e650d88c8d4a8bc5b26faecb75023e069eaf29582135bcb0202e4a69a9b9 sha256sums = 5436ad34fbcd6faab69da8675631f3eb5b89d964682eb23164bf4bb816ad1897 pkgname = prometheus-postgresql-exporter diff --git a/PKGBUILD b/PKGBUILD index 75170b6..a18037d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -14,7 +14,7 @@ source=("https://github.com/wrouesnel/postgres_exporter/archive/v${pkgver}.tar.g "prometheus-postgresql-exporter.service" "prometheus-postgresql-exporter.conf") sha256sums=('27877c9b3aa751c7c1265f39986218f6a2c2b66a126cf348c6cc2f20f5201b02' - '5eac41333fb12db676fed18c02156cfdefee957154241b4c724718fd40d23212' + '0d86e650d88c8d4a8bc5b26faecb75023e069eaf29582135bcb0202e4a69a9b9' '5436ad34fbcd6faab69da8675631f3eb5b89d964682eb23164bf4bb816ad1897') prepare() { From 077715093ec4642d312fa345c633bec6fea27ac0 Mon Sep 17 00:00:00 2001 From: graysky Date: Mon, 1 Feb 2021 20:32:00 -0500 Subject: [PATCH 174/971] Update to 2021.1.1.001-1 --- .SRCINFO | 6 +++--- PKGBUILD | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index b10ffce..665a980 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,13 +1,13 @@ pkgbase = linpack - pkgver = 2020.2.001 + pkgver = 2021.1.1.001 pkgrel = 1 url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download arch = x86_64 license = custom - source = https://software.intel.com/content/dam/develop/external/us/en/documents/l_mklb_p_2020.2.001.tgz + source = https://software.intel.com/content/dam/develop/external/us/en/documents/l_mklb_p_2021.1.1.001.tgz source = linpack.conf source = linpack_runme_xeon64 - b2sums = b26e7220bf1c02b3f58ba9f67733cded00f98cb084bc56d783654de17e6b50bbe71369be6566110606303b8d0f59ff7f2940f8e8d35e4eb0aa9aff00901496b4 + b2sums = 9eb6207f39b1711acb38a35340c264f24f6ba2195a21eaee6957755df7ecbb01a3d14a463e9659b29cfdbcc85f4fbc6bd0fb75db858e26413875c8753090088d b2sums = cb9e676aab60304f56c1ab099a0a46e0bb2af9beee93b95adbf2661c475c8e5a1ee35c6726f646b98c5cdacbdb1870488526bc0f19de59699c6a550bb2de06b6 b2sums = 1ab0b9fde310496400bfa924c2e1a9206f341102117a64b3b086732394cbc33498708322ffbdf45b117898ed35a34b5107127cfedd9eec0eeb1a3f84d7aeaf63 diff --git a/PKGBUILD b/PKGBUILD index 3a07e18..2e4eb44 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,14 +1,14 @@ # Contributor: graysky pkgname=('linpack') -pkgver=2020.2.001 -_math_kernel_lib=2020 +pkgver=2021.1.1.001 +_math_kernel_lib=2021.1.1 pkgrel=1 arch=('x86_64') license=('custom') url="http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download" source=("https://software.intel.com/content/dam/develop/external/us/en/documents/l_mklb_p_$pkgver.tgz" 'linpack.conf' 'linpack_runme_xeon64') -b2sums=('b26e7220bf1c02b3f58ba9f67733cded00f98cb084bc56d783654de17e6b50bbe71369be6566110606303b8d0f59ff7f2940f8e8d35e4eb0aa9aff00901496b4' +b2sums=('9eb6207f39b1711acb38a35340c264f24f6ba2195a21eaee6957755df7ecbb01a3d14a463e9659b29cfdbcc85f4fbc6bd0fb75db858e26413875c8753090088d' 'cb9e676aab60304f56c1ab099a0a46e0bb2af9beee93b95adbf2661c475c8e5a1ee35c6726f646b98c5cdacbdb1870488526bc0f19de59699c6a550bb2de06b6' '1ab0b9fde310496400bfa924c2e1a9206f341102117a64b3b086732394cbc33498708322ffbdf45b117898ed35a34b5107127cfedd9eec0eeb1a3f84d7aeaf63') @@ -20,6 +20,6 @@ package_linpack() { install -Dm755 linpack_runme_xeon64 "$pkgdir/usr/bin/linpack_runme_xeon64" install -Dm644 linpack.conf "$pkgdir/usr/share/$pkgname/linpack.conf" - install -Dm644 "$_base/license.txt" "$pkgdir/usr/share/licenses/linpack/license.txt" + install -Dm644 "$_base/linux/mkl/benchmarks/license.txt" "$pkgdir/usr/share/licenses/linpack/license.txt" install -Dm755 "$_test/xlinpack_xeon64" "$pkgdir/usr/bin/xlinpack_xeon64" } From 2d12250a6e81183c2cd57b2996f114427668b1b9 Mon Sep 17 00:00:00 2001 From: Daniel Peukert Date: Thu, 18 Feb 2021 14:07:27 +0100 Subject: [PATCH 175/971] Add spot-client and spot-client-git --- .SRCINFO | 24 ++++++++++++++++++++++++ .editorconfig | 8 ++++++++ .gitignore | 14 ++++++++++++++ PKGBUILD | 33 +++++++++++++++++++++++++++++++++ 4 files changed, 79 insertions(+) create mode 100644 .SRCINFO create mode 100644 .editorconfig create mode 100644 .gitignore create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..1a32659 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,24 @@ +pkgbase = spot-client + pkgdesc = Gtk/Rust native Spotify client + pkgver = 0.1.7 + pkgrel = 1 + url = https://github.com/xou816/spot + arch = x86_64 + arch = i686 + arch = arm + arch = armv6h + arch = armv7h + arch = aarch64 + license = MIT + makedepends = cargo + makedepends = meson + depends = alsa-lib + depends = glib2 + depends = gtk3 + depends = libhandy + depends = libpulse + depends = openssl + source = spot-client-0.1.7-1.tar.gz::https://github.com/xou816/spot/archive/0.1.7.tar.gz + sha256sums = 755c11a2e79e575442db4b85a9b44c9f821b048515ecc4d14a6fe335df3ca4ed + +pkgname = spot-client diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..a467ee9 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,8 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = tab +tab_width = 4 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..82b3c18 --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +# from https://github.com/github/gitignore/blob/master/ArchLinuxPackages.gitignore +*.tar +*.tar.* +*.rpm +*.jar +*.exe +*.msi +*.zip +*.tgz +*.log +*.log.* +*.sig + +*/ diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..be6b9d1 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,33 @@ +# Maintainer: Daniel Peukert +_projectname='spot' +pkgname="$_projectname-client" +pkgver='0.1.7' +pkgrel='1' +pkgdesc='Gtk/Rust native Spotify client' +arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') +url="https://github.com/xou816/$_projectname" +license=('MIT') +depends=('alsa-lib' 'glib2' 'gtk3' 'libhandy' 'libpulse' 'openssl') +makedepends=('cargo' 'meson') +source=("$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz") +sha256sums=('755c11a2e79e575442db4b85a9b44c9f821b048515ecc4d14a6fe335df3ca4ed') + +_sourcedirectory="$_projectname-$pkgver" +_builddirectory='build' + +build() { + cd "$srcdir/" + arch-meson "$_sourcedirectory" "$_builddirectory" -Doffline=false + meson compile -C "$_builddirectory" +} + +check() { + cd "$srcdir/" + meson test -C "$_builddirectory" +} + +package() { + cd "$srcdir/" + DESTDIR="$pkgdir" meson install -C "$_builddirectory" + install -Dm644 "$_sourcedirectory/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} From 10a697af025fe47ae305662cacfcb955e8ba589c Mon Sep 17 00:00:00 2001 From: Daniel Peukert Date: Mon, 22 Feb 2021 17:32:13 +0100 Subject: [PATCH 176/971] Update spot-client to 0.1.8 --- .SRCINFO | 8 ++++---- PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 1a32659..7edb2d3 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client - pkgver = 0.1.7 + pkgver = 0.1.8 pkgrel = 1 url = https://github.com/xou816/spot arch = x86_64 @@ -11,14 +11,14 @@ pkgbase = spot-client arch = aarch64 license = MIT makedepends = cargo - makedepends = meson + makedepends = meson>=0.50.0 depends = alsa-lib depends = glib2 depends = gtk3 depends = libhandy depends = libpulse depends = openssl - source = spot-client-0.1.7-1.tar.gz::https://github.com/xou816/spot/archive/0.1.7.tar.gz - sha256sums = 755c11a2e79e575442db4b85a9b44c9f821b048515ecc4d14a6fe335df3ca4ed + source = spot-client-0.1.8-1.tar.gz::https://github.com/xou816/spot/archive/0.1.8.tar.gz + sha256sums = 61a14eff406f18e397cf99bee810b60acc34129e1310c239ceee7b2501edfeb0 pkgname = spot-client diff --git a/PKGBUILD b/PKGBUILD index be6b9d1..e3139db 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,16 +1,16 @@ # Maintainer: Daniel Peukert _projectname='spot' pkgname="$_projectname-client" -pkgver='0.1.7' +pkgver='0.1.8' pkgrel='1' pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') url="https://github.com/xou816/$_projectname" license=('MIT') depends=('alsa-lib' 'glib2' 'gtk3' 'libhandy' 'libpulse' 'openssl') -makedepends=('cargo' 'meson') +makedepends=('cargo' 'meson>=0.50.0') source=("$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz") -sha256sums=('755c11a2e79e575442db4b85a9b44c9f821b048515ecc4d14a6fe335df3ca4ed') +sha256sums=('61a14eff406f18e397cf99bee810b60acc34129e1310c239ceee7b2501edfeb0') _sourcedirectory="$_projectname-$pkgver" _builddirectory='build' From 6494e8db56e2eae85d5586baea88bae149c4d02c Mon Sep 17 00:00:00 2001 From: Daniel Peukert Date: Thu, 4 Mar 2021 00:00:50 +0100 Subject: [PATCH 177/971] Update spot-client to 0.1.9 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 7edb2d3..39eab4d 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client - pkgver = 0.1.8 + pkgver = 0.1.9 pkgrel = 1 url = https://github.com/xou816/spot arch = x86_64 @@ -18,7 +18,7 @@ pkgbase = spot-client depends = libhandy depends = libpulse depends = openssl - source = spot-client-0.1.8-1.tar.gz::https://github.com/xou816/spot/archive/0.1.8.tar.gz - sha256sums = 61a14eff406f18e397cf99bee810b60acc34129e1310c239ceee7b2501edfeb0 + source = spot-client-0.1.9-1.tar.gz::https://github.com/xou816/spot/archive/0.1.9.tar.gz + sha256sums = 39499aa48cffb5d1f1352affa362c014f9c29570648cc59ff2ba1dde5d2372cd pkgname = spot-client diff --git a/PKGBUILD b/PKGBUILD index e3139db..6ecb0f5 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Daniel Peukert _projectname='spot' pkgname="$_projectname-client" -pkgver='0.1.8' +pkgver='0.1.9' pkgrel='1' pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -10,7 +10,7 @@ license=('MIT') depends=('alsa-lib' 'glib2' 'gtk3' 'libhandy' 'libpulse' 'openssl') makedepends=('cargo' 'meson>=0.50.0') source=("$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz") -sha256sums=('61a14eff406f18e397cf99bee810b60acc34129e1310c239ceee7b2501edfeb0') +sha256sums=('39499aa48cffb5d1f1352affa362c014f9c29570648cc59ff2ba1dde5d2372cd') _sourcedirectory="$_projectname-$pkgver" _builddirectory='build' From 4718a1475febdb55fa6f82760c2b5c1e6332ee0d Mon Sep 17 00:00:00 2001 From: Jonathan Liu Date: Sun, 14 Mar 2021 16:56:31 +1100 Subject: [PATCH 178/971] Update to 0.0.23-1 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 60539a5..60586fc 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = wxedid pkgdesc = wxWidgets-based EDID (Extended Display Identification Data) editor - pkgver = 0.0.22 + pkgver = 0.0.23 pkgrel = 1 url = https://sourceforge.net/projects/wxedid/ arch = i686 @@ -8,8 +8,8 @@ pkgbase = wxedid license = GPL3 depends = wxgtk2 options = !buildflags - source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.22.tar.gz - md5sums = ff22e0420471f2289c38d574bd761856 + source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.23.tar.gz + md5sums = 6b8ceaa8bff41a93f3d740727677c5ac pkgname = wxedid diff --git a/PKGBUILD b/PKGBUILD index b608065..2ebb2cd 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Jonathan Liu pkgname=wxedid -pkgver=0.0.22 +pkgver=0.0.23 pkgrel=1 pkgdesc="wxWidgets-based EDID (Extended Display Identification Data) editor" arch=('i686' 'x86_64') @@ -9,7 +9,7 @@ license=('GPL3') depends=('wxgtk2') options=('!buildflags') source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz") -md5sums=('ff22e0420471f2289c38d574bd761856') +md5sums=('6b8ceaa8bff41a93f3d740727677c5ac') build() { cd "$pkgname-$pkgver" From 0ce33852639c4ff39267bce3bf80ea9e30468dce Mon Sep 17 00:00:00 2001 From: Daniel Peukert Date: Sun, 14 Mar 2021 09:34:04 +0100 Subject: [PATCH 179/971] Update spot-client to 0.1.10 --- .SRCINFO | 7 ++++--- PKGBUILD | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 39eab4d..2b9b1e3 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client - pkgver = 0.1.9 + pkgver = 0.1.10 pkgrel = 1 url = https://github.com/xou816/spot arch = x86_64 @@ -18,7 +18,8 @@ pkgbase = spot-client depends = libhandy depends = libpulse depends = openssl - source = spot-client-0.1.9-1.tar.gz::https://github.com/xou816/spot/archive/0.1.9.tar.gz - sha256sums = 39499aa48cffb5d1f1352affa362c014f9c29570648cc59ff2ba1dde5d2372cd + optdepends = org.freedesktop.secrets + source = spot-client-0.1.10-1.tar.gz::https://github.com/xou816/spot/archive/0.1.10.tar.gz + sha256sums = 9399ba0673ad32a9e6220eaa220c08fba8d6464adab5018130e5cad8818b0979 pkgname = spot-client diff --git a/PKGBUILD b/PKGBUILD index 6ecb0f5..31a3561 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Daniel Peukert _projectname='spot' pkgname="$_projectname-client" -pkgver='0.1.9' +pkgver='0.1.10' pkgrel='1' pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -9,15 +9,16 @@ url="https://github.com/xou816/$_projectname" license=('MIT') depends=('alsa-lib' 'glib2' 'gtk3' 'libhandy' 'libpulse' 'openssl') makedepends=('cargo' 'meson>=0.50.0') +optdepends=('org.freedesktop.secrets') source=("$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz") -sha256sums=('39499aa48cffb5d1f1352affa362c014f9c29570648cc59ff2ba1dde5d2372cd') +sha256sums=('9399ba0673ad32a9e6220eaa220c08fba8d6464adab5018130e5cad8818b0979') _sourcedirectory="$_projectname-$pkgver" _builddirectory='build' build() { cd "$srcdir/" - arch-meson "$_sourcedirectory" "$_builddirectory" -Doffline=false + arch-meson "$_sourcedirectory" "$_builddirectory" -Doffline=false -Dbuildtype=release meson compile -C "$_builddirectory" } From 6cc22001531b77784766934349c88c0dd42b0252 Mon Sep 17 00:00:00 2001 From: Daniel Peukert Date: Sun, 14 Mar 2021 17:40:24 +0100 Subject: [PATCH 180/971] Fix up meson & cargo arguments for spot-client --- .SRCINFO | 6 ++++-- PKGBUILD | 18 ++++++++++++++---- meson-test-release.diff | 40 ++++++++++++++++++++++++++++++++++++++++ 3 files changed, 58 insertions(+), 6 deletions(-) create mode 100644 meson-test-release.diff diff --git a/.SRCINFO b/.SRCINFO index 2b9b1e3..cf01231 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client pkgver = 0.1.10 - pkgrel = 1 + pkgrel = 2 url = https://github.com/xou816/spot arch = x86_64 arch = i686 @@ -19,7 +19,9 @@ pkgbase = spot-client depends = libpulse depends = openssl optdepends = org.freedesktop.secrets - source = spot-client-0.1.10-1.tar.gz::https://github.com/xou816/spot/archive/0.1.10.tar.gz + source = spot-client-0.1.10-2.tar.gz::https://github.com/xou816/spot/archive/0.1.10.tar.gz + source = meson-test-release.diff sha256sums = 9399ba0673ad32a9e6220eaa220c08fba8d6464adab5018130e5cad8818b0979 + sha256sums = 4366433646f05f74cb9cdc23079ad37655e06589cd28ecd3cd156223ff213a95 pkgname = spot-client diff --git a/PKGBUILD b/PKGBUILD index 31a3561..d54da1e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ _projectname='spot' pkgname="$_projectname-client" pkgver='0.1.10' -pkgrel='1' +pkgrel='2' pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') url="https://github.com/xou816/$_projectname" @@ -10,15 +10,25 @@ license=('MIT') depends=('alsa-lib' 'glib2' 'gtk3' 'libhandy' 'libpulse' 'openssl') makedepends=('cargo' 'meson>=0.50.0') optdepends=('org.freedesktop.secrets') -source=("$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz") -sha256sums=('9399ba0673ad32a9e6220eaa220c08fba8d6464adab5018130e5cad8818b0979') +source=( + "$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz" + 'meson-test-release.diff' +) +sha256sums=('9399ba0673ad32a9e6220eaa220c08fba8d6464adab5018130e5cad8818b0979' + '4366433646f05f74cb9cdc23079ad37655e06589cd28ecd3cd156223ff213a95') _sourcedirectory="$_projectname-$pkgver" _builddirectory='build' +prepare() { + cd "$srcdir/$_sourcedirectory/" + patch --forward -p1 < '../meson-test-release.diff' +} + build() { cd "$srcdir/" - arch-meson "$_sourcedirectory" "$_builddirectory" -Doffline=false -Dbuildtype=release + meson setup --prefix '/usr' --libexecdir 'lib' --sbindir 'bin' --buildtype 'release' --wrap-mode 'nodownload' \ + -Db_lto='true' -Db_pie='true' -Doffline='false' -Dfeatures='warn-cache' "$_sourcedirectory" "$_builddirectory" meson compile -C "$_builddirectory" } diff --git a/meson-test-release.diff b/meson-test-release.diff new file mode 100644 index 0000000..59b6bfb --- /dev/null +++ b/meson-test-release.diff @@ -0,0 +1,40 @@ +diff --git a/build-aux/test.sh b/build-aux/test.sh +index f8ca912..f3b9e8f 100644 +--- a/build-aux/test.sh ++++ b/build-aux/test.sh +@@ -2,10 +2,19 @@ + + export SRC="$1" + export CARGO_TARGET_DIR="$2"/target +-export OFFLINE="$3" ++export BUILDTYPE="$3" ++export OFFLINE="$4" ++ ++echo $BUILDTYPE ++ ++if [[ $BUILDTYPE = "release" ]]; then ++ PROFILE_ARG="--release" ++else ++ PROFILE_ARG="--verbose" ++fi + + if [[ $OFFLINE = "true" ]]; then + export CARGO_HOME="$SRC"/cargo + fi + +-cargo test --manifest-path "$SRC"/Cargo.toml +\ No newline at end of file ++cargo test --manifest-path "$SRC"/Cargo.toml "$PROFILE_ARG" +\ No newline at end of file +diff --git a/src/meson.build b/src/meson.build +index 93d7387..909e9d6 100644 +--- a/src/meson.build ++++ b/src/meson.build +@@ -140,6 +140,7 @@ test('Unit tests', + args: [ + meson.source_root(), + meson.build_root(), ++ get_option('buildtype'), + get_option('offline') ? 'true' : 'false' + ] + ) From 9d395f24daf2e67e99ec19ef3ca6ac22f9020144 Mon Sep 17 00:00:00 2001 From: Daniel Peukert Date: Sun, 14 Mar 2021 18:09:38 +0100 Subject: [PATCH 181/971] Add missing checkdepends to spot-client --- .SRCINFO | 5 +++-- PKGBUILD | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index cf01231..51bb6cd 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client pkgver = 0.1.10 - pkgrel = 2 + pkgrel = 3 url = https://github.com/xou816/spot arch = x86_64 arch = i686 @@ -10,6 +10,7 @@ pkgbase = spot-client arch = armv7h arch = aarch64 license = MIT + checkdepends = appstream-glib makedepends = cargo makedepends = meson>=0.50.0 depends = alsa-lib @@ -19,7 +20,7 @@ pkgbase = spot-client depends = libpulse depends = openssl optdepends = org.freedesktop.secrets - source = spot-client-0.1.10-2.tar.gz::https://github.com/xou816/spot/archive/0.1.10.tar.gz + source = spot-client-0.1.10-3.tar.gz::https://github.com/xou816/spot/archive/0.1.10.tar.gz source = meson-test-release.diff sha256sums = 9399ba0673ad32a9e6220eaa220c08fba8d6464adab5018130e5cad8818b0979 sha256sums = 4366433646f05f74cb9cdc23079ad37655e06589cd28ecd3cd156223ff213a95 diff --git a/PKGBUILD b/PKGBUILD index d54da1e..895a60a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,14 +2,15 @@ _projectname='spot' pkgname="$_projectname-client" pkgver='0.1.10' -pkgrel='2' +pkgrel='3' pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') url="https://github.com/xou816/$_projectname" license=('MIT') depends=('alsa-lib' 'glib2' 'gtk3' 'libhandy' 'libpulse' 'openssl') -makedepends=('cargo' 'meson>=0.50.0') optdepends=('org.freedesktop.secrets') +makedepends=('cargo' 'meson>=0.50.0') +checkdepends=('appstream-glib') source=( "$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz" 'meson-test-release.diff' From 6bb034a5282bbfc3e6edfbd9fcc53c4b8cb7dd53 Mon Sep 17 00:00:00 2001 From: Daniel Peukert Date: Sun, 14 Mar 2021 20:49:16 +0100 Subject: [PATCH 182/971] Use merged meson test fix commit for spot-client --- .SRCINFO | 6 +++--- PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 51bb6cd..d63e219 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client pkgver = 0.1.10 - pkgrel = 3 + pkgrel = 4 url = https://github.com/xou816/spot arch = x86_64 arch = i686 @@ -20,8 +20,8 @@ pkgbase = spot-client depends = libpulse depends = openssl optdepends = org.freedesktop.secrets - source = spot-client-0.1.10-3.tar.gz::https://github.com/xou816/spot/archive/0.1.10.tar.gz - source = meson-test-release.diff + source = spot-client-0.1.10-4.tar.gz::https://github.com/xou816/spot/archive/0.1.10.tar.gz + source = spot-client-0.1.10-4-meson-test-release.diff::https://github.com/xou816/spot/commit/2dc722595e6bf716e46b779db6c8d3e239052ff2.diff sha256sums = 9399ba0673ad32a9e6220eaa220c08fba8d6464adab5018130e5cad8818b0979 sha256sums = 4366433646f05f74cb9cdc23079ad37655e06589cd28ecd3cd156223ff213a95 diff --git a/PKGBUILD b/PKGBUILD index 895a60a..9f0b12e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ _projectname='spot' pkgname="$_projectname-client" pkgver='0.1.10' -pkgrel='3' +pkgrel='4' pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') url="https://github.com/xou816/$_projectname" @@ -13,7 +13,7 @@ makedepends=('cargo' 'meson>=0.50.0') checkdepends=('appstream-glib') source=( "$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz" - 'meson-test-release.diff' + "$pkgname-$pkgver-$pkgrel-meson-test-release.diff::$url/commit/2dc722595e6bf716e46b779db6c8d3e239052ff2.diff" ) sha256sums=('9399ba0673ad32a9e6220eaa220c08fba8d6464adab5018130e5cad8818b0979' '4366433646f05f74cb9cdc23079ad37655e06589cd28ecd3cd156223ff213a95') @@ -23,7 +23,7 @@ _builddirectory='build' prepare() { cd "$srcdir/$_sourcedirectory/" - patch --forward -p1 < '../meson-test-release.diff' + patch --forward -p1 < "../$pkgname-$pkgver-$pkgrel-meson-test-release.diff" } build() { From 71cec33e7ddb1edb489fe9507296e8d03dd1f300 Mon Sep 17 00:00:00 2001 From: Daniel Peukert Date: Wed, 17 Mar 2021 23:03:00 +0100 Subject: [PATCH 183/971] Update spot-client to 0.1.11 --- .SRCINFO | 10 ++++------ PKGBUILD | 17 ++++------------- meson-test-release.diff | 40 ---------------------------------------- 3 files changed, 8 insertions(+), 59 deletions(-) delete mode 100644 meson-test-release.diff diff --git a/.SRCINFO b/.SRCINFO index d63e219..cb26038 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client - pkgver = 0.1.10 - pkgrel = 4 + pkgver = 0.1.11 + pkgrel = 1 url = https://github.com/xou816/spot arch = x86_64 arch = i686 @@ -20,9 +20,7 @@ pkgbase = spot-client depends = libpulse depends = openssl optdepends = org.freedesktop.secrets - source = spot-client-0.1.10-4.tar.gz::https://github.com/xou816/spot/archive/0.1.10.tar.gz - source = spot-client-0.1.10-4-meson-test-release.diff::https://github.com/xou816/spot/commit/2dc722595e6bf716e46b779db6c8d3e239052ff2.diff - sha256sums = 9399ba0673ad32a9e6220eaa220c08fba8d6464adab5018130e5cad8818b0979 - sha256sums = 4366433646f05f74cb9cdc23079ad37655e06589cd28ecd3cd156223ff213a95 + source = spot-client-0.1.11-1.tar.gz::https://github.com/xou816/spot/archive/0.1.11.tar.gz + sha256sums = 7f35be66edc2391ca80b9b870239b136d5c67997dfb2ad7af8e3025e19e72f53 pkgname = spot-client diff --git a/PKGBUILD b/PKGBUILD index 9f0b12e..2e013d7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,8 +1,8 @@ # Maintainer: Daniel Peukert _projectname='spot' pkgname="$_projectname-client" -pkgver='0.1.10' -pkgrel='4' +pkgver='0.1.11' +pkgrel='1' pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') url="https://github.com/xou816/$_projectname" @@ -11,21 +11,12 @@ depends=('alsa-lib' 'glib2' 'gtk3' 'libhandy' 'libpulse' 'openssl') optdepends=('org.freedesktop.secrets') makedepends=('cargo' 'meson>=0.50.0') checkdepends=('appstream-glib') -source=( - "$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz" - "$pkgname-$pkgver-$pkgrel-meson-test-release.diff::$url/commit/2dc722595e6bf716e46b779db6c8d3e239052ff2.diff" -) -sha256sums=('9399ba0673ad32a9e6220eaa220c08fba8d6464adab5018130e5cad8818b0979' - '4366433646f05f74cb9cdc23079ad37655e06589cd28ecd3cd156223ff213a95') +source=("$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz") +sha256sums=('7f35be66edc2391ca80b9b870239b136d5c67997dfb2ad7af8e3025e19e72f53') _sourcedirectory="$_projectname-$pkgver" _builddirectory='build' -prepare() { - cd "$srcdir/$_sourcedirectory/" - patch --forward -p1 < "../$pkgname-$pkgver-$pkgrel-meson-test-release.diff" -} - build() { cd "$srcdir/" meson setup --prefix '/usr' --libexecdir 'lib' --sbindir 'bin' --buildtype 'release' --wrap-mode 'nodownload' \ diff --git a/meson-test-release.diff b/meson-test-release.diff deleted file mode 100644 index 59b6bfb..0000000 --- a/meson-test-release.diff +++ /dev/null @@ -1,40 +0,0 @@ -diff --git a/build-aux/test.sh b/build-aux/test.sh -index f8ca912..f3b9e8f 100644 ---- a/build-aux/test.sh -+++ b/build-aux/test.sh -@@ -2,10 +2,19 @@ - - export SRC="$1" - export CARGO_TARGET_DIR="$2"/target --export OFFLINE="$3" -+export BUILDTYPE="$3" -+export OFFLINE="$4" -+ -+echo $BUILDTYPE -+ -+if [[ $BUILDTYPE = "release" ]]; then -+ PROFILE_ARG="--release" -+else -+ PROFILE_ARG="--verbose" -+fi - - if [[ $OFFLINE = "true" ]]; then - export CARGO_HOME="$SRC"/cargo - fi - --cargo test --manifest-path "$SRC"/Cargo.toml -\ No newline at end of file -+cargo test --manifest-path "$SRC"/Cargo.toml "$PROFILE_ARG" -\ No newline at end of file -diff --git a/src/meson.build b/src/meson.build -index 93d7387..909e9d6 100644 ---- a/src/meson.build -+++ b/src/meson.build -@@ -140,6 +140,7 @@ test('Unit tests', - args: [ - meson.source_root(), - meson.build_root(), -+ get_option('buildtype'), - get_option('offline') ? 'true' : 'false' - ] - ) From f6b81c11a6d2d784714bb2570984ab71c9b73f24 Mon Sep 17 00:00:00 2001 From: Daniel Peukert Date: Wed, 24 Mar 2021 18:10:37 +0100 Subject: [PATCH 184/971] Update spot-client to 0.1.12 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index cb26038..6e1d7bd 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client - pkgver = 0.1.11 + pkgver = 0.1.12 pkgrel = 1 url = https://github.com/xou816/spot arch = x86_64 @@ -20,7 +20,7 @@ pkgbase = spot-client depends = libpulse depends = openssl optdepends = org.freedesktop.secrets - source = spot-client-0.1.11-1.tar.gz::https://github.com/xou816/spot/archive/0.1.11.tar.gz - sha256sums = 7f35be66edc2391ca80b9b870239b136d5c67997dfb2ad7af8e3025e19e72f53 + source = spot-client-0.1.12-1.tar.gz::https://github.com/xou816/spot/archive/0.1.12.tar.gz + sha256sums = a3d57e92f8152370b7fa0c482904eb0418bc04a59d3ec6e9ee7847c68bd08c40 pkgname = spot-client diff --git a/PKGBUILD b/PKGBUILD index 2e013d7..074e93f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Daniel Peukert _projectname='spot' pkgname="$_projectname-client" -pkgver='0.1.11' +pkgver='0.1.12' pkgrel='1' pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -12,7 +12,7 @@ optdepends=('org.freedesktop.secrets') makedepends=('cargo' 'meson>=0.50.0') checkdepends=('appstream-glib') source=("$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz") -sha256sums=('7f35be66edc2391ca80b9b870239b136d5c67997dfb2ad7af8e3025e19e72f53') +sha256sums=('a3d57e92f8152370b7fa0c482904eb0418bc04a59d3ec6e9ee7847c68bd08c40') _sourcedirectory="$_projectname-$pkgver" _builddirectory='build' From bb90364db99e058b3222a45e2ad0e3ee73ba103c Mon Sep 17 00:00:00 2001 From: Brad Erhart <> Date: Fri, 2 Apr 2021 00:31:52 -0700 Subject: [PATCH 185/971] Updating gVisor to v20210322.0 --- .SRCINFO | 6 +++--- PKGBUILD | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 2d66549..2335ef2 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20201208.0 + pkgver = 20210322.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,8 +11,8 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20201208.0::https://storage.googleapis.com/gvisor/releases/release/20201208.0/runsc - sha256sums = de8eb1b6ad2bf24ef822689e877fab497d60c5f90da9afe89d34ccf3c9d8a590 + source = gvisor-bin-20210322.0::https://storage.googleapis.com/gvisor/releases/release/latest/x86_64/runsc + sha256sums = 697f019baf0cee0ce431eb1bcde87a1bfed5cac59d0590e4e63ce997c99e7fbb pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 9e5fe0c..8887a91 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,8 +1,8 @@ -# Maintainer: Brad Erhart +# Maintainer: Brad Erhart pkgname=gvisor-bin _pkgname=runsc -pkgver=20201208.0 +pkgver=20210322.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -18,8 +18,8 @@ conflicts=( "$_pkgname" ) install="$pkgname.install" -source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/$_pkgname") -sha256sums=(de8eb1b6ad2bf24ef822689e877fab497d60c5f90da9afe89d34ccf3c9d8a590) +source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/latest/$arch/$_pkgname") +sha256sums=(697f019baf0cee0ce431eb1bcde87a1bfed5cac59d0590e4e63ce997c99e7fbb) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From 9a19ab86117c47cd1381587f4a8834d1d7f7e822 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 2 Apr 2021 15:04:40 +0200 Subject: [PATCH 186/971] Python 3 compatibility --- .SRCINFO | 12 ++++++------ PKGBUILD | 23 +++++++++++------------ 2 files changed, 17 insertions(+), 18 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index d0f942d..55ce850 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,13 +1,13 @@ pkgbase = polkit-explorer pkgdesc = Present PolicyKit information in a human-readable form. - pkgver = 12.065314e - pkgrel = 2 - url = https://github.com/scarygliders/polkit-explorer + pkgver = 14.6c912f1 + pkgrel = 1 + url = https://github.com/ScrelliCopter/polkit-explorer arch = any license = ISC - depends = python2-pyqt5 - depends = python2-lxml - source = git://github.com/scarygliders/polkit-explorer.git + depends = python-pyqt5 + depends = python-lxml + source = git://github.com/ScrelliCopter/polkit-explorer.git#branch=python3 sha256sums = SKIP pkgname = polkit-explorer diff --git a/PKGBUILD b/PKGBUILD index c80be60..7aa57a6 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,15 +1,15 @@ -# Maintainer: Manuel Hüsers +# Maintainer: Manuel Hüsers # Contributor: Alad Wenter pkgname=polkit-explorer -pkgver=12.065314e -pkgrel=2 +pkgver=14.6c912f1 +pkgrel=1 pkgdesc='Present PolicyKit information in a human-readable form.' arch=('any') -url="https://github.com/scarygliders/${pkgname}" +url="https://github.com/ScrelliCopter/${pkgname}" license=('ISC') -depends=('python2-pyqt5' 'python2-lxml') -source=("git://github.com/scarygliders/${pkgname}.git") +depends=('python-pyqt5' 'python-lxml') +source=("git://github.com/ScrelliCopter/${pkgname}.git#branch=python3") sha256sums=('SKIP') pkgver() { @@ -19,14 +19,13 @@ pkgver() { package() { cd "${srcdir}/${pkgname}" - local pydir='usr/lib/python2.7/site-packages/polkitex' - install -d -m755 "${pkgdir}"/{usr/bin,$pydir} - install -m644 Ui_*.py "${pkgdir}/${pydir}/" + install -d -m755 "${pkgdir}"/{usr/bin,opt/$pkgname} + install -m644 Ui_*.py "${pkgdir}/opt/${pkgname}/" + + install -m755 'polkitex.py' "${pkgdir}/opt/${pkgname}/" + ln -s "/opt/${pkgname}/polkitex.py" "${pkgdir}/usr/bin/polkitex" - install -m755 'polkitex.py' "${pkgdir}/${pydir}/" - ln -s "/${pydir}/polkitex.py" "${pkgdir}/usr/bin/polkitex" - install -Dm644 'LICENSE' "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" install -Dm644 "polkitex.desktop" "${pkgdir}/usr/share/applications/${pkgname}.desktop" } From f0a6f439852120be19696c2014490292d29f2b40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 2 Apr 2021 15:07:13 +0200 Subject: [PATCH 187/971] Update to 0.9.0 --- .SRCINFO | 13 +++++++------ PKGBUILD | 26 +++++++++++++------------- 2 files changed, 20 insertions(+), 19 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 07631be..b27815c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,17 +1,18 @@ pkgbase = prometheus-postgresql-exporter - pkgdesc = Prometheus exporter for PostrgreSQL - pkgver = 0.8.0 - pkgrel = 3 - url = https://github.com/wrouesnel/postgres_exporter + pkgdesc = Prometheus exporter for PostgreSQL + pkgver = 0.9.0 + pkgrel = 1 + url = https://github.com/prometheus-community/postgres_exporter arch = x86_64 license = Apache makedepends = git makedepends = go + makedepends = make backup = etc/conf.d/prometheus-postgresql-exporter - source = https://github.com/wrouesnel/postgres_exporter/archive/v0.8.0.tar.gz + source = https://github.com/prometheus-community/postgres_exporter/archive/v0.9.0.tar.gz source = prometheus-postgresql-exporter.service source = prometheus-postgresql-exporter.conf - sha256sums = 27877c9b3aa751c7c1265f39986218f6a2c2b66a126cf348c6cc2f20f5201b02 + sha256sums = a92d30e9952dfb3387ef2a636d19891e226c396f769729431dac0bddc3f0b29e sha256sums = 0d86e650d88c8d4a8bc5b26faecb75023e069eaf29582135bcb0202e4a69a9b9 sha256sums = 5436ad34fbcd6faab69da8675631f3eb5b89d964682eb23164bf4bb816ad1897 diff --git a/PKGBUILD b/PKGBUILD index a18037d..1576551 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,18 +2,18 @@ # Contributor: Nils Czernia pkgname=prometheus-postgresql-exporter -pkgver=0.8.0 -pkgrel=3 -pkgdesc="Prometheus exporter for PostrgreSQL" +pkgver=0.9.0 +pkgrel=1 +pkgdesc="Prometheus exporter for PostgreSQL" arch=('x86_64') -url="https://github.com/wrouesnel/postgres_exporter" +url="https://github.com/prometheus-community/postgres_exporter" license=('Apache') -makedepends=('git' 'go') +makedepends=('git' 'go' 'make') backup=('etc/conf.d/prometheus-postgresql-exporter') -source=("https://github.com/wrouesnel/postgres_exporter/archive/v${pkgver}.tar.gz" +source=("https://github.com/prometheus-community/postgres_exporter/archive/v${pkgver}.tar.gz" "prometheus-postgresql-exporter.service" "prometheus-postgresql-exporter.conf") -sha256sums=('27877c9b3aa751c7c1265f39986218f6a2c2b66a126cf348c6cc2f20f5201b02' +sha256sums=('a92d30e9952dfb3387ef2a636d19891e226c396f769729431dac0bddc3f0b29e' '0d86e650d88c8d4a8bc5b26faecb75023e069eaf29582135bcb0202e4a69a9b9' '5436ad34fbcd6faab69da8675631f3eb5b89d964682eb23164bf4bb816ad1897') @@ -21,20 +21,20 @@ prepare() { cd "postgres_exporter-${pkgver}" export GOPATH="${srcdir}/gopath" - mkdir -p "${GOPATH}/src/github.com/wrouesnel" - ln -snf "${srcdir}/postgres_exporter-${pkgver}" "${GOPATH}/src/github.com/wrouesnel/postgres_exporter" + mkdir -p "${GOPATH}/src/github.com/prometheus-community" + ln -snf "${srcdir}/postgres_exporter-${pkgver}" "${GOPATH}/src/github.com/prometheus-community/postgres_exporter" } build() { export GOPATH="${srcdir}/gopath" - cd "${GOPATH}/src/github.com/wrouesnel/postgres_exporter" - go run mage.go binary + cd "${GOPATH}/src/github.com/prometheus-community/postgres_exporter" + make build } check() { export GOPATH="${srcdir}/gopath" - cd "${GOPATH}/src/github.com/wrouesnel/postgres_exporter" - go run mage.go test + cd "${GOPATH}/src/github.com/prometheus-community/postgres_exporter" + make test } package() { From c112e14c5b212d46e5cd47f8b572649c7c1ce12d Mon Sep 17 00:00:00 2001 From: Daniel Peukert Date: Tue, 13 Apr 2021 10:24:16 +0200 Subject: [PATCH 188/971] Update spot-client to 0.1.13 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 6e1d7bd..d764994 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client - pkgver = 0.1.12 + pkgver = 0.1.13 pkgrel = 1 url = https://github.com/xou816/spot arch = x86_64 @@ -20,7 +20,7 @@ pkgbase = spot-client depends = libpulse depends = openssl optdepends = org.freedesktop.secrets - source = spot-client-0.1.12-1.tar.gz::https://github.com/xou816/spot/archive/0.1.12.tar.gz - sha256sums = a3d57e92f8152370b7fa0c482904eb0418bc04a59d3ec6e9ee7847c68bd08c40 + source = spot-client-0.1.13-1.tar.gz::https://github.com/xou816/spot/archive/0.1.13.tar.gz + sha256sums = 9c4397fd6b4c000fbd35705ce09e15947131350fd72ccaa6ee2b5510f07aba29 pkgname = spot-client diff --git a/PKGBUILD b/PKGBUILD index 074e93f..24a19c0 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Daniel Peukert _projectname='spot' pkgname="$_projectname-client" -pkgver='0.1.12' +pkgver='0.1.13' pkgrel='1' pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -12,7 +12,7 @@ optdepends=('org.freedesktop.secrets') makedepends=('cargo' 'meson>=0.50.0') checkdepends=('appstream-glib') source=("$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz") -sha256sums=('a3d57e92f8152370b7fa0c482904eb0418bc04a59d3ec6e9ee7847c68bd08c40') +sha256sums=('9c4397fd6b4c000fbd35705ce09e15947131350fd72ccaa6ee2b5510f07aba29') _sourcedirectory="$_projectname-$pkgver" _builddirectory='build' From e22456e6bcfe9a1e607cd001bbe597dd7100d079 Mon Sep 17 00:00:00 2001 From: Brad Erhart <> Date: Wed, 21 Apr 2021 18:51:14 -0700 Subject: [PATCH 189/971] Updating gVisor to v20210419.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 2335ef2..68a1093 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20210322.0 + pkgver = 20210419.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,8 +11,8 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20210322.0::https://storage.googleapis.com/gvisor/releases/release/latest/x86_64/runsc - sha256sums = 697f019baf0cee0ce431eb1bcde87a1bfed5cac59d0590e4e63ce997c99e7fbb + source = gvisor-bin-20210419.0::https://storage.googleapis.com/gvisor/releases/release/latest/x86_64/runsc + sha256sums = de11c5b13c6758443cdc75b7c9973b61045096fd5f0d0d9fa24a8db102798f40 pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 8887a91..2848a51 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20210322.0 +pkgver=20210419.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/latest/$arch/$_pkgname") -sha256sums=(697f019baf0cee0ce431eb1bcde87a1bfed5cac59d0590e4e63ce997c99e7fbb) +sha256sums=(de11c5b13c6758443cdc75b7c9973b61045096fd5f0d0d9fa24a8db102798f40) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From 37d87444b34233a4aa30657978c09e492970bcd7 Mon Sep 17 00:00:00 2001 From: Daniel Peukert Date: Tue, 11 May 2021 01:45:09 +0200 Subject: [PATCH 190/971] Update spot-client to 0.1.14 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index d764994..42bc62c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client - pkgver = 0.1.13 + pkgver = 0.1.14 pkgrel = 1 url = https://github.com/xou816/spot arch = x86_64 @@ -20,7 +20,7 @@ pkgbase = spot-client depends = libpulse depends = openssl optdepends = org.freedesktop.secrets - source = spot-client-0.1.13-1.tar.gz::https://github.com/xou816/spot/archive/0.1.13.tar.gz - sha256sums = 9c4397fd6b4c000fbd35705ce09e15947131350fd72ccaa6ee2b5510f07aba29 + source = spot-client-0.1.14-1.tar.gz::https://github.com/xou816/spot/archive/0.1.14.tar.gz + sha256sums = e568a3b11fdb3b68082a934ca82b68f05390136bd567ba8ec3c84768721b68bd pkgname = spot-client diff --git a/PKGBUILD b/PKGBUILD index 24a19c0..a3bc77b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Daniel Peukert _projectname='spot' pkgname="$_projectname-client" -pkgver='0.1.13' +pkgver='0.1.14' pkgrel='1' pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -12,7 +12,7 @@ optdepends=('org.freedesktop.secrets') makedepends=('cargo' 'meson>=0.50.0') checkdepends=('appstream-glib') source=("$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz") -sha256sums=('9c4397fd6b4c000fbd35705ce09e15947131350fd72ccaa6ee2b5510f07aba29') +sha256sums=('e568a3b11fdb3b68082a934ca82b68f05390136bd567ba8ec3c84768721b68bd') _sourcedirectory="$_projectname-$pkgver" _builddirectory='build' From 3b23a7e634b4586a1a1b25181d369fb7db72f82c Mon Sep 17 00:00:00 2001 From: Brad Erhart <> Date: Tue, 11 May 2021 02:08:17 -0700 Subject: [PATCH 191/971] Updating gVisor to v20210503.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 68a1093..0a2fd4e 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20210419.0 + pkgver = 20210503.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,8 +11,8 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20210419.0::https://storage.googleapis.com/gvisor/releases/release/latest/x86_64/runsc - sha256sums = de11c5b13c6758443cdc75b7c9973b61045096fd5f0d0d9fa24a8db102798f40 + source = gvisor-bin-20210503.0::https://storage.googleapis.com/gvisor/releases/release/latest/x86_64/runsc + sha256sums = 62909dbf3be4b3f8c4484afff6f93fc7eb45e52c830fc2d7c701727e2d578f27 pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 2848a51..f8bdc03 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20210419.0 +pkgver=20210503.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/latest/$arch/$_pkgname") -sha256sums=(de11c5b13c6758443cdc75b7c9973b61045096fd5f0d0d9fa24a8db102798f40) +sha256sums=(62909dbf3be4b3f8c4484afff6f93fc7eb45e52c830fc2d7c701727e2d578f27) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From 52d5178e6a1b36046816e5f0c8a71139e4a21f5b Mon Sep 17 00:00:00 2001 From: Brad Erhart <> Date: Thu, 20 May 2021 17:28:19 -0700 Subject: [PATCH 192/971] Updating gVisor to v20210510.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 0a2fd4e..0f78196 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20210503.0 + pkgver = 20210510.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,8 +11,8 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20210503.0::https://storage.googleapis.com/gvisor/releases/release/latest/x86_64/runsc - sha256sums = 62909dbf3be4b3f8c4484afff6f93fc7eb45e52c830fc2d7c701727e2d578f27 + source = gvisor-bin-20210510.0::https://storage.googleapis.com/gvisor/releases/release/latest/x86_64/runsc + sha256sums = ca3b71da5e14f3b8f569789c9ae16b0d7d46e339b749a4938110a723ff309d39 pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index f8bdc03..41be6ce 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20210503.0 +pkgver=20210510.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/latest/$arch/$_pkgname") -sha256sums=(62909dbf3be4b3f8c4484afff6f93fc7eb45e52c830fc2d7c701727e2d578f27) +sha256sums=(ca3b71da5e14f3b8f569789c9ae16b0d7d46e339b749a4938110a723ff309d39) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From f27a985c0168a6036f0a1280acece29491760ac7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 21 May 2021 13:35:28 +0200 Subject: [PATCH 193/971] Initial commit with build 4107 --- .SRCINFO | 23 +++++++++++++++++++++++ PKGBUILD | 40 ++++++++++++++++++++++++++++++++++++++++ sublime-text-4.install | 8 ++++++++ sublime_text.desktop | 24 ++++++++++++++++++++++++ 4 files changed, 95 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD create mode 100644 sublime-text-4.install create mode 100644 sublime_text.desktop diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..8694839 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,23 @@ +pkgbase = sublime-text-4 + pkgdesc = Sophisticated text editor for code, html and prose - stable build + pkgver = 4.4107 + pkgrel = 1 + url = http://www.sublimetext.com/ + install = sublime-text-4.install + arch = x86_64 + arch = aarch64 + license = custom + depends = libpng + depends = gtk3 + optdepends = gksu: sudo-save support + provides = sublime-text + conflicts = sublime-text + source = sublime_text.desktop + sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4107_x64.tar.xz + sha256sums_x86_64 = c7d9e7520ea91c2db6c026d1f48e9067457d55158393be042100a1161a3e5915 + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4107_arm64.tar.xz + sha256sums_aarch64 = e0ccf0859d7b73a718b65c0f03e48189ecba1a256bb800d738b24078994cae03 + +pkgname = sublime-text-4 + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..94fe3b4 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,40 @@ +# Maintainer: Manuel Hüsers + +pkgname=sublime-text-4 +pkgver=4.4107 +pkgrel=1 +pkgdesc="Sophisticated text editor for code, html and prose - stable build" +arch=('x86_64' 'aarch64') +url="http://www.sublimetext.com/" +license=('custom') +depends=('libpng' 'gtk3') +optdepends=('gksu: sudo-save support') +conflicts=('sublime-text') +provides=('sublime-text') +install=${pkgname}.install + +source=('sublime_text.desktop') +source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") +source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") + +sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') +sha256sums_x86_64=('c7d9e7520ea91c2db6c026d1f48e9067457d55158393be042100a1161a3e5915') +sha256sums_aarch64=('e0ccf0859d7b73a718b65c0f03e48189ecba1a256bb800d738b24078994cae03') + +package() { + cd "${srcdir}" + + install -dm755 "${pkgdir}/opt" + cp --preserve=mode -r "sublime_text" "${pkgdir}/opt/sublime_text" + + for res in 128x128 16x16 256x256 32x32 48x48; do + install -dm755 "${pkgdir}/usr/share/icons/hicolor/${res}/apps" + ln -s "/opt/sublime_text/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text.png" + done + + install -dm755 "${pkgdir}/usr/share/applications" + install -Dm644 "sublime_text.desktop" "${pkgdir}/usr/share/applications/sublime_text.desktop" + + install -dm755 "${pkgdir}/usr/bin" + ln -s "/opt/sublime_text/sublime_text" "${pkgdir}/usr/bin/subl" +} diff --git a/sublime-text-4.install b/sublime-text-4.install new file mode 100644 index 0000000..3d6db1d --- /dev/null +++ b/sublime-text-4.install @@ -0,0 +1,8 @@ +post_install() { + # Update icon cache. + gtk-update-icon-cache -f '/usr/share/icons/hicolor' > /dev/null 2>&1 +} + +post_upgrade() { + post_install +} diff --git a/sublime_text.desktop b/sublime_text.desktop new file mode 100644 index 0000000..f678850 --- /dev/null +++ b/sublime_text.desktop @@ -0,0 +1,24 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Name=Sublime Text +GenericName=Text Editor +Comment=Sophisticated text editor for code, markup and prose +Exec=subl %F +Terminal=false +MimeType=text/plain; +Icon=sublime-text +Categories=TextEditor;Development; +StartupNotify=true +StartupWMClass=subl +Actions=Window;Document; + +[Desktop Action Window] +Name=New Window +Exec=subl -n +OnlyShowIn=Unity; + +[Desktop Action Document] +Name=New File +Exec=subl --command new_file +OnlyShowIn=Unity; From 76e247104bb3b827960da82460e6d66863f47ff0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 21 May 2021 13:28:04 +0200 Subject: [PATCH 194/971] Update to build 4107 --- .SRCINFO | 22 ++++++------- PKGBUILD | 33 ++++++++++--------- ...ime_text_3.desktop => sublime_text.desktop | 10 +++--- 3 files changed, 33 insertions(+), 32 deletions(-) rename sublime_text_3.desktop => sublime_text.desktop (78%) diff --git a/.SRCINFO b/.SRCINFO index 5503b35..14e5dd5 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,23 +1,23 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 3.3211 + pkgver = 4.4107 pkgrel = 1 - url = http://www.sublimetext.com/3 + url = http://www.sublimetext.com/ install = sublime-text-dev.install - arch = i686 arch = x86_64 + arch = aarch64 license = custom depends = libpng depends = gtk3 optdepends = gksu: sudo-save support - provides = sublime-text-nightly - conflicts = sublime-text-nightly - source = sublime_text_3.desktop - sha256sums = f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866 - source_i686 = https://download.sublimetext.com/sublime_text_3_build_3211_x32.tar.bz2 - sha256sums_i686 = 480609962bbbd12128b5332c7831372b8851c13e160512730d1b0a6a835a3071 - source_x86_64 = https://download.sublimetext.com/sublime_text_3_build_3211_x64.tar.bz2 - sha256sums_x86_64 = 0b3c8ca5e6df376c3c24a4b9ac2e3b391333f73b229bc6e87d0b4a5f636d74ee + provides = sublime-text + conflicts = sublime-text + source = sublime_text.desktop + sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4107_x64.tar.xz + sha256sums_x86_64 = c7d9e7520ea91c2db6c026d1f48e9067457d55158393be042100a1161a3e5915 + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4107_arm64.tar.xz + sha256sums_aarch64 = e0ccf0859d7b73a718b65c0f03e48189ecba1a256bb800d738b24078994cae03 pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 854f4c3..969284b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,41 +1,42 @@ -# Maintainer: Sander Boom +# Maintainer: Manuel Hüsers +# Contributor: Sander Boom # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=3.3211 +pkgver=4.4107 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" -arch=('i686' 'x86_64') -url="http://www.sublimetext.com/3" +arch=('x86_64' 'aarch64') +url="http://www.sublimetext.com/" license=('custom') depends=('libpng' 'gtk3') optdepends=('gksu: sudo-save support') -conflicts=('sublime-text-nightly') -provides=('sublime-text-nightly') +conflicts=('sublime-text') +provides=('sublime-text') install=${pkgname}.install -source=('sublime_text_3.desktop') -source_i686=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x32.tar.bz2") -source_x86_64=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2") +source=('sublime_text.desktop') +source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") +source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha256sums=('f355c6bec64e962a5735d0a7d1e11ac39b5b82aacaaf23b222c0bc202e15d866') -sha256sums_i686=('480609962bbbd12128b5332c7831372b8851c13e160512730d1b0a6a835a3071') -sha256sums_x86_64=('0b3c8ca5e6df376c3c24a4b9ac2e3b391333f73b229bc6e87d0b4a5f636d74ee') +sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') +sha256sums_x86_64=('c7d9e7520ea91c2db6c026d1f48e9067457d55158393be042100a1161a3e5915') +sha256sums_aarch64=('e0ccf0859d7b73a718b65c0f03e48189ecba1a256bb800d738b24078994cae03') package() { cd "${srcdir}" install -dm755 "${pkgdir}/opt" - cp --preserve=mode -r "sublime_text_3" "${pkgdir}/opt/sublime_text_3" + cp --preserve=mode -r "sublime_text" "${pkgdir}/opt/sublime_text" for res in 128x128 16x16 256x256 32x32 48x48; do install -dm755 "${pkgdir}/usr/share/icons/hicolor/${res}/apps" - ln -s "/opt/sublime_text_3/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text.png" + ln -s "/opt/sublime_text/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text.png" done install -dm755 "${pkgdir}/usr/share/applications" - install -Dm644 "sublime_text_3.desktop" "${pkgdir}/usr/share/applications/sublime_text_3.desktop" + install -Dm644 "sublime_text.desktop" "${pkgdir}/usr/share/applications/sublime_text.desktop" install -dm755 "${pkgdir}/usr/bin" - ln -s "/opt/sublime_text_3/sublime_text" "${pkgdir}/usr/bin/subl3" + ln -s "/opt/sublime_text/sublime_text" "${pkgdir}/usr/bin/subl" } diff --git a/sublime_text_3.desktop b/sublime_text.desktop similarity index 78% rename from sublime_text_3.desktop rename to sublime_text.desktop index 81c347c..f678850 100644 --- a/sublime_text_3.desktop +++ b/sublime_text.desktop @@ -1,24 +1,24 @@ [Desktop Entry] Version=1.0 Type=Application -Name=Sublime Text 3 Dev +Name=Sublime Text GenericName=Text Editor Comment=Sophisticated text editor for code, markup and prose -Exec=subl3 %F +Exec=subl %F Terminal=false MimeType=text/plain; Icon=sublime-text Categories=TextEditor;Development; StartupNotify=true -StartupWMClass=subl3 +StartupWMClass=subl Actions=Window;Document; [Desktop Action Window] Name=New Window -Exec=subl3 -n +Exec=subl -n OnlyShowIn=Unity; [Desktop Action Document] Name=New File -Exec=subl3 --command new_file +Exec=subl --command new_file OnlyShowIn=Unity; From 99c95c4f6205d5b26dcafa40f6c47b9b9266142e Mon Sep 17 00:00:00 2001 From: Brad Erhart <> Date: Thu, 27 May 2021 23:56:44 -0700 Subject: [PATCH 195/971] Updating gVisor to v20210518.0 --- .SRCINFO | 6 +++--- PKGBUILD | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 0f78196..fb350f0 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20210510.0 + pkgver = 20210518.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,8 +11,8 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20210510.0::https://storage.googleapis.com/gvisor/releases/release/latest/x86_64/runsc - sha256sums = ca3b71da5e14f3b8f569789c9ae16b0d7d46e339b749a4938110a723ff309d39 + source = gvisor-bin-20210518.0::https://storage.googleapis.com/gvisor/releases/release/20210518.0/x86_64/runsc + b2sums = 7983fc051ed641d13b1ac3039a764ca0cb6af3c3e007bb682c6d7d8aad7d29483f3cebc6fae913e3832b08d2a8f36194a4e2ccbbc0418f25275137655f9944b8 pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 41be6ce..87e9176 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20210510.0 +pkgver=20210518.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -14,12 +14,12 @@ provides=( "$_pkgname" ) conflicts=( - gvisor-git + "${pkgname%-bin}-git" "$_pkgname" ) install="$pkgname.install" -source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/latest/$arch/$_pkgname") -sha256sums=(ca3b71da5e14f3b8f569789c9ae16b0d7d46e339b749a4938110a723ff309d39) +source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/$arch/$_pkgname") +b2sums=(7983fc051ed641d13b1ac3039a764ca0cb6af3c3e007bb682c6d7d8aad7d29483f3cebc6fae913e3832b08d2a8f36194a4e2ccbbc0418f25275137655f9944b8) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From 98c971d08a47a005d28e10e2f30ab2696ef781fa Mon Sep 17 00:00:00 2001 From: Daniel Peukert Date: Mon, 31 May 2021 15:27:33 +0200 Subject: [PATCH 196/971] Disable spot-client test timeout --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 42bc62c..82e3359 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client pkgver = 0.1.14 - pkgrel = 1 + pkgrel = 2 url = https://github.com/xou816/spot arch = x86_64 arch = i686 @@ -20,7 +20,7 @@ pkgbase = spot-client depends = libpulse depends = openssl optdepends = org.freedesktop.secrets - source = spot-client-0.1.14-1.tar.gz::https://github.com/xou816/spot/archive/0.1.14.tar.gz + source = spot-client-0.1.14-2.tar.gz::https://github.com/xou816/spot/archive/0.1.14.tar.gz sha256sums = e568a3b11fdb3b68082a934ca82b68f05390136bd567ba8ec3c84768721b68bd pkgname = spot-client diff --git a/PKGBUILD b/PKGBUILD index a3bc77b..14e2c0d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ _projectname='spot' pkgname="$_projectname-client" pkgver='0.1.14' -pkgrel='1' +pkgrel='2' pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') url="https://github.com/xou816/$_projectname" @@ -26,7 +26,7 @@ build() { check() { cd "$srcdir/" - meson test -C "$_builddirectory" + meson test -C "$_builddirectory" --timeout-multiplier -1 } package() { From 3ba730d1426872c3122348cbce6c11aada0417b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 22 Jun 2021 18:07:49 +0200 Subject: [PATCH 197/971] Update to build 4109 --- .SRCINFO | 13 ++++++------- PKGBUILD | 8 ++++---- sublime-text-dev.install | 4 ++++ 3 files changed, 14 insertions(+), 11 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 14e5dd5..87ee560 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4107 + pkgver = 4.4109 pkgrel = 1 - url = http://www.sublimetext.com/ + url = https://www.sublimetext.com/dev install = sublime-text-dev.install arch = x86_64 arch = aarch64 @@ -14,10 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4107_x64.tar.xz - sha256sums_x86_64 = c7d9e7520ea91c2db6c026d1f48e9067457d55158393be042100a1161a3e5915 - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4107_arm64.tar.xz - sha256sums_aarch64 = e0ccf0859d7b73a718b65c0f03e48189ecba1a256bb800d738b24078994cae03 + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4109_x64.tar.xz + sha256sums_x86_64 = 7d61f704f9a81b1a719285ae57b6a1f9804deb8b0d7ec858cd9d31e3399e523e + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4109_arm64.tar.xz + sha256sums_aarch64 = 65f78d091fee495d2884404d36e594356f213975e348e8154e28f8e55e52365d pkgname = sublime-text-dev - diff --git a/PKGBUILD b/PKGBUILD index 969284b..8a0c49c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,11 +3,11 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4107 +pkgver=4.4109 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') -url="http://www.sublimetext.com/" +url="https://www.sublimetext.com/dev" license=('custom') depends=('libpng' 'gtk3') optdepends=('gksu: sudo-save support') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('c7d9e7520ea91c2db6c026d1f48e9067457d55158393be042100a1161a3e5915') -sha256sums_aarch64=('e0ccf0859d7b73a718b65c0f03e48189ecba1a256bb800d738b24078994cae03') +sha256sums_x86_64=('7d61f704f9a81b1a719285ae57b6a1f9804deb8b0d7ec858cd9d31e3399e523e') +sha256sums_aarch64=('65f78d091fee495d2884404d36e594356f213975e348e8154e28f8e55e52365d') package() { cd "${srcdir}" diff --git a/sublime-text-dev.install b/sublime-text-dev.install index b02fe85..234e352 100644 --- a/sublime-text-dev.install +++ b/sublime-text-dev.install @@ -7,6 +7,10 @@ post_install() { ==> sublime-text-dev install/upgrade note: ------------------------------------------------------------------------------ + This package is now used for the actual 'dev' branch of Sublime Text. + If you want to keep using the latest stable release you should instead + install 'sublime-text-4' or use the official repos provided by Sublime Text. + To disable in-application reminders about new Sublime Text dev versions, add the following setting to your User Preferences file: "update_check": false From b9f49bc3f059239a418b5ce22e5d7888be846327 Mon Sep 17 00:00:00 2001 From: Brad Erhart <> Date: Wed, 30 Jun 2021 10:04:05 -0700 Subject: [PATCH 198/971] Updating to gVisor v20210628.0 --- .SRCINFO | 9 ++++----- .gitignore | 3 +-- PKGBUILD | 8 ++++---- gvisor-bin.install | 8 ++++---- 4 files changed, 13 insertions(+), 15 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index fb350f0..7de78e4 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,18 +1,17 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20210518.0 + pkgver = 20210628.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install arch = x86_64 license = Apache - depends = docker + optdepends = docker: for Docker runtime support provides = gvisor provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20210518.0::https://storage.googleapis.com/gvisor/releases/release/20210518.0/x86_64/runsc - b2sums = 7983fc051ed641d13b1ac3039a764ca0cb6af3c3e007bb682c6d7d8aad7d29483f3cebc6fae913e3832b08d2a8f36194a4e2ccbbc0418f25275137655f9944b8 + source = gvisor-bin-20210628.0::https://storage.googleapis.com/gvisor/releases/release/20210628/x86_64/runsc + b2sums = 12ae13d2fab74265a549feb91cfb9fb10a261de10285ac816b254d105b0a11c87dbccd82e185840a250f8dc5c9eb6cf3803b6d3f7f58bc2998033856e2155b43 pkgname = gvisor-bin - diff --git a/.gitignore b/.gitignore index bc96b67..e6c6385 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ -*.tar.* -gvisor-bin-* +gvisor* pkg/ src/ diff --git a/PKGBUILD b/PKGBUILD index 87e9176..43f9c9b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,13 +2,13 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20210518.0 +pkgver=20210628.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') url='https://gvisor.dev' license=('Apache') -depends=('docker') +optdepends=('docker: for Docker runtime support') provides=( "${pkgname%-bin}" "$_pkgname" @@ -18,8 +18,8 @@ conflicts=( "$_pkgname" ) install="$pkgname.install" -source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/$arch/$_pkgname") -b2sums=(7983fc051ed641d13b1ac3039a764ca0cb6af3c3e007bb682c6d7d8aad7d29483f3cebc6fae913e3832b08d2a8f36194a4e2ccbbc0418f25275137655f9944b8) +source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/$arch/$_pkgname") +b2sums=(12ae13d2fab74265a549feb91cfb9fb10a261de10285ac816b254d105b0a11c87dbccd82e185840a250f8dc5c9eb6cf3803b6d3f7f58bc2998033856e2155b43) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" diff --git a/gvisor-bin.install b/gvisor-bin.install index adc2bb2..9a0212b 100644 --- a/gvisor-bin.install +++ b/gvisor-bin.install @@ -1,15 +1,15 @@ post_install() { - runsc install + pacman --query docker &> /dev/null && runsc install } pre_upgrade() { - runsc uninstall + pacman --query docker &> /dev/null && runsc uninstall } post_upgrade() { - runsc install + pacman --query docker &> /dev/null && runsc install } pre_remove() { - runsc uninstall + pacman --query docker &> /dev/null && runsc uninstall } From af3398d9f68d22d87b20958c034fb175cb3bb8e0 Mon Sep 17 00:00:00 2001 From: Daniel Peukert Date: Wed, 30 Jun 2021 22:36:24 +0200 Subject: [PATCH 199/971] Update spot-client to 0.1.15 --- .SRCINFO | 8 ++++---- PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 82e3359..334c8a9 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client - pkgver = 0.1.14 - pkgrel = 2 + pkgver = 0.1.15 + pkgrel = 1 url = https://github.com/xou816/spot arch = x86_64 arch = i686 @@ -20,7 +20,7 @@ pkgbase = spot-client depends = libpulse depends = openssl optdepends = org.freedesktop.secrets - source = spot-client-0.1.14-2.tar.gz::https://github.com/xou816/spot/archive/0.1.14.tar.gz - sha256sums = e568a3b11fdb3b68082a934ca82b68f05390136bd567ba8ec3c84768721b68bd + source = spot-client-0.1.15-1.tar.gz::https://github.com/xou816/spot/archive/0.1.15.tar.gz + sha256sums = 55fa29d3627b8e6218b6a0f927391887fbb1a496b597a74a3af70b75207f4121 pkgname = spot-client diff --git a/PKGBUILD b/PKGBUILD index 14e2c0d..03a205c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,8 +1,8 @@ # Maintainer: Daniel Peukert _projectname='spot' pkgname="$_projectname-client" -pkgver='0.1.14' -pkgrel='2' +pkgver='0.1.15' +pkgrel='1' pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') url="https://github.com/xou816/$_projectname" @@ -12,7 +12,7 @@ optdepends=('org.freedesktop.secrets') makedepends=('cargo' 'meson>=0.50.0') checkdepends=('appstream-glib') source=("$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz") -sha256sums=('e568a3b11fdb3b68082a934ca82b68f05390136bd567ba8ec3c84768721b68bd') +sha256sums=('55fa29d3627b8e6218b6a0f927391887fbb1a496b597a74a3af70b75207f4121') _sourcedirectory="$_projectname-$pkgver" _builddirectory='build' From 1c8c8625c4d8adfbe381a2245e447a441b0ebdc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 4 Jul 2021 17:03:36 +0200 Subject: [PATCH 200/971] Change back to base repo --- .SRCINFO | 7 +++---- PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 55ce850..f28ae27 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,14 +1,13 @@ pkgbase = polkit-explorer pkgdesc = Present PolicyKit information in a human-readable form. - pkgver = 14.6c912f1 + pkgver = 15.fac8d70 pkgrel = 1 - url = https://github.com/ScrelliCopter/polkit-explorer + url = https://github.com/scarygliders/polkit-explorer arch = any license = ISC depends = python-pyqt5 depends = python-lxml - source = git://github.com/ScrelliCopter/polkit-explorer.git#branch=python3 + source = git://github.com/scarygliders/polkit-explorer.git sha256sums = SKIP pkgname = polkit-explorer - diff --git a/PKGBUILD b/PKGBUILD index 7aa57a6..4a4819e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,14 +2,14 @@ # Contributor: Alad Wenter pkgname=polkit-explorer -pkgver=14.6c912f1 +pkgver=15.fac8d70 pkgrel=1 pkgdesc='Present PolicyKit information in a human-readable form.' arch=('any') -url="https://github.com/ScrelliCopter/${pkgname}" +url="https://github.com/scarygliders/${pkgname}" license=('ISC') depends=('python-pyqt5' 'python-lxml') -source=("git://github.com/ScrelliCopter/${pkgname}.git#branch=python3") +source=("git://github.com/scarygliders/${pkgname}.git") sha256sums=('SKIP') pkgver() { From 9108e8dc18c9f22294d67665bf293ab9a8a0ff91 Mon Sep 17 00:00:00 2001 From: Christian Pellegrin Date: Tue, 6 Jul 2021 08:15:18 +0100 Subject: [PATCH 201/971] upgpkg: systemtap 4.5-1 upstream release --- .SRCINFO | 16 ++++++++-------- PKGBUILD | 19 ++++++++++++------- 2 files changed, 20 insertions(+), 15 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index ae2282f..ff0273a 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,25 +1,25 @@ pkgbase = systemtap pkgdesc = Infrastructure to simplify the gathering of information about the running Linux system - pkgver = 4.2 + pkgver = 4.5 pkgrel = 1 url = http://sourceware.org/systemtap/ install = systemtap.install arch = x86_64 arch = i686 license = GPL - makedepends = python2-setuptools + makedepends = python-setuptools makedepends = xmlto depends = elfutils depends = nss - depends = python2 + depends = python depends = cpio optdepends = sqlite3: for storing results in a database - source = systemtap-4.2.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-4.2.tar.gz - source = systemtap-4.2.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/systemtap-4.2.tar.gz.asc + source = systemtap-4.5.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-4.5.tar.gz + source = systemtap-4.5.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/systemtap-4.5.tar.gz.asc validpgpkeys = F75E6545B9F8AA15AA932A444DE16D68FDBFFFB8 validpgpkeys = 5D38116FA4D3A7CC77E378D37E83610126DCC2E8 - sha512sums = 50d426e8c3d976fd635f6867fb4202832be455d869178a384159d1b2cd2a25642b07da2bd3184081b13bfb95df48a97f430b06713eaee0d0f67e27f43266cfd6 - sha512sums = ddb3217d9bbe7b9531b3d7ce24d88766e65629bd720228c0f8f96edc82216e13e5f0d0f30c8012cb85bf5ac7401f5a551aa69fc0505a29475ed61c548b4cdcf4 + validpgpkeys = 159B0DF71150B8A8539A8802D7C256443CC637CA + sha512sums = 8136779a9f5cb0fbaae565eab1ab6fa307f1024dfc2c6c3845acfadff0eecc684ba89aa5d442c7b90c2c73edaab41ca07bae2bad8361f80fe8e9928b40466cd3 + sha512sums = SKIP pkgname = systemtap - diff --git a/PKGBUILD b/PKGBUILD index 7f29799..18acbe7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,25 +1,30 @@ -# Maintainer: An Nguyen (stk) +# Maintainer: Christian Pellegrin (chripell) +# Original Maintainer: An Nguyen (stk) # Original Maintainer: George Angelopoulos # Original Maintainer: Christian Rebischke # Original Maintainer: dront78 pkgname=systemtap -pkgver=4.2 +pkgver=4.5 pkgrel=1 pkgdesc="Infrastructure to simplify the gathering of information about the running Linux system" url="http://sourceware.org/systemtap/" arch=('x86_64' 'i686') license=('GPL') -depends=('elfutils' 'nss' 'python2' 'cpio') -makedepends=('python2-setuptools' 'xmlto') +depends=('elfutils' 'nss' 'python' 'cpio') +makedepends=('python-setuptools' 'xmlto') optdepends=('sqlite3: for storing results in a database') source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz" "${pkgname}-${pkgver}.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz.asc" ) -sha512sums=('50d426e8c3d976fd635f6867fb4202832be455d869178a384159d1b2cd2a25642b07da2bd3184081b13bfb95df48a97f430b06713eaee0d0f67e27f43266cfd6' - 'ddb3217d9bbe7b9531b3d7ce24d88766e65629bd720228c0f8f96edc82216e13e5f0d0f30c8012cb85bf5ac7401f5a551aa69fc0505a29475ed61c548b4cdcf4') +sha512sums=('8136779a9f5cb0fbaae565eab1ab6fa307f1024dfc2c6c3845acfadff0eecc684ba89aa5d442c7b90c2c73edaab41ca07bae2bad8361f80fe8e9928b40466cd3' + 'SKIP') install='systemtap.install' +# Note, you need to run: +# gpg --recv-keys --keyserver hkps://keys.openpgp.org/ 0xD7C256443CC637CA +# unless /etc/pacman.d/gnupg/gpg.conf is updated. validpgpkeys=('F75E6545B9F8AA15AA932A444DE16D68FDBFFFB8' # "Serhei Makarov (for Red Hat 2018..onwards) " - '5D38116FA4D3A7CC77E378D37E83610126DCC2E8') + '5D38116FA4D3A7CC77E378D37E83610126DCC2E8' + '159B0DF71150B8A8539A8802D7C256443CC637CA') build() { cd "${pkgname}-${pkgver}" ./configure \ From 083b83bf243733cb584966317bf02bce1e2181ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 6 Jul 2021 18:54:00 +0200 Subject: [PATCH 202/971] Update to build 4110 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 87ee560..36f02d2 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4109 + pkgver = 4.4110 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4109_x64.tar.xz - sha256sums_x86_64 = 7d61f704f9a81b1a719285ae57b6a1f9804deb8b0d7ec858cd9d31e3399e523e - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4109_arm64.tar.xz - sha256sums_aarch64 = 65f78d091fee495d2884404d36e594356f213975e348e8154e28f8e55e52365d + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4110_x64.tar.xz + sha256sums_x86_64 = 99e8a1b81c236de50f1ce1ca8c8db78ebeb38bbd77f1ede30a024dcc8b1464c9 + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4110_arm64.tar.xz + sha256sums_aarch64 = 46d925cd3e82313f30b95241e6f84b8196b9c3e986500a0867dc981f6ae0c6cc pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 8a0c49c..4ce1ee0 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4109 +pkgver=4.4110 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('7d61f704f9a81b1a719285ae57b6a1f9804deb8b0d7ec858cd9d31e3399e523e') -sha256sums_aarch64=('65f78d091fee495d2884404d36e594356f213975e348e8154e28f8e55e52365d') +sha256sums_x86_64=('99e8a1b81c236de50f1ce1ca8c8db78ebeb38bbd77f1ede30a024dcc8b1464c9') +sha256sums_aarch64=('46d925cd3e82313f30b95241e6f84b8196b9c3e986500a0867dc981f6ae0c6cc') package() { cd "${srcdir}" From a427cce1f42d309599ca7d57e5beb7620bd00ae4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 12 Jul 2021 13:41:22 +0200 Subject: [PATCH 203/971] Update to build 4111 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 36f02d2..a4a53a4 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4110 + pkgver = 4.4111 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4110_x64.tar.xz - sha256sums_x86_64 = 99e8a1b81c236de50f1ce1ca8c8db78ebeb38bbd77f1ede30a024dcc8b1464c9 - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4110_arm64.tar.xz - sha256sums_aarch64 = 46d925cd3e82313f30b95241e6f84b8196b9c3e986500a0867dc981f6ae0c6cc + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4111_x64.tar.xz + sha256sums_x86_64 = c2c7a46411afcc561a31ae0170314eee8d8084007b05774668fa6c67d3770400 + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4111_arm64.tar.xz + sha256sums_aarch64 = c8136259f1b71fe2c7402de44c21eb21480d73ad7f7f93c7fe5bed5003a12a9f pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 4ce1ee0..843a71e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4110 +pkgver=4.4111 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('99e8a1b81c236de50f1ce1ca8c8db78ebeb38bbd77f1ede30a024dcc8b1464c9') -sha256sums_aarch64=('46d925cd3e82313f30b95241e6f84b8196b9c3e986500a0867dc981f6ae0c6cc') +sha256sums_x86_64=('c2c7a46411afcc561a31ae0170314eee8d8084007b05774668fa6c67d3770400') +sha256sums_aarch64=('c8136259f1b71fe2c7402de44c21eb21480d73ad7f7f93c7fe5bed5003a12a9f') package() { cd "${srcdir}" From cf358db55b6bcfaff336ae2e7c0748f2065a81a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 13 Jul 2021 16:10:56 +0200 Subject: [PATCH 204/971] Update to build 4112 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index a4a53a4..0fc2af2 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4111 + pkgver = 4.4112 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4111_x64.tar.xz - sha256sums_x86_64 = c2c7a46411afcc561a31ae0170314eee8d8084007b05774668fa6c67d3770400 - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4111_arm64.tar.xz - sha256sums_aarch64 = c8136259f1b71fe2c7402de44c21eb21480d73ad7f7f93c7fe5bed5003a12a9f + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4112_x64.tar.xz + sha256sums_x86_64 = b4a56b82aa73bf006ab53a6dfd57f4c2d8e51167728bad4594636a78d9e7c8fb + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4112_arm64.tar.xz + sha256sums_aarch64 = e9daee04ff41876bfc42a82affb750622c9f95b3a4a7ef53c283bf9ecb107489 pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 843a71e..b435cf7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4111 +pkgver=4.4112 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('c2c7a46411afcc561a31ae0170314eee8d8084007b05774668fa6c67d3770400') -sha256sums_aarch64=('c8136259f1b71fe2c7402de44c21eb21480d73ad7f7f93c7fe5bed5003a12a9f') +sha256sums_x86_64=('b4a56b82aa73bf006ab53a6dfd57f4c2d8e51167728bad4594636a78d9e7c8fb') +sha256sums_aarch64=('e9daee04ff41876bfc42a82affb750622c9f95b3a4a7ef53c283bf9ecb107489') package() { cd "${srcdir}" From 694366e0eb7d552c1df7200c6c086b4da2725b9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 14 Jul 2021 13:39:29 +0200 Subject: [PATCH 205/971] Update to build 4113 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 0fc2af2..94995d9 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4112 + pkgver = 4.4113 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4112_x64.tar.xz - sha256sums_x86_64 = b4a56b82aa73bf006ab53a6dfd57f4c2d8e51167728bad4594636a78d9e7c8fb - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4112_arm64.tar.xz - sha256sums_aarch64 = e9daee04ff41876bfc42a82affb750622c9f95b3a4a7ef53c283bf9ecb107489 + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4113_x64.tar.xz + sha256sums_x86_64 = 900ef90fc6453efc4c2b36132a5f16a4db67a226fa9732e4d3c1bf586d4dc78c + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4113_arm64.tar.xz + sha256sums_aarch64 = 63d536e4c1ff8ca13bbf19fdfacbdeedd6af783f759824500faa4216d978e641 pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index b435cf7..af7a018 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4112 +pkgver=4.4113 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('b4a56b82aa73bf006ab53a6dfd57f4c2d8e51167728bad4594636a78d9e7c8fb') -sha256sums_aarch64=('e9daee04ff41876bfc42a82affb750622c9f95b3a4a7ef53c283bf9ecb107489') +sha256sums_x86_64=('900ef90fc6453efc4c2b36132a5f16a4db67a226fa9732e4d3c1bf586d4dc78c') +sha256sums_aarch64=('63d536e4c1ff8ca13bbf19fdfacbdeedd6af783f759824500faa4216d978e641') package() { cd "${srcdir}" From 0ec00ccdb6dda43676ede0f2ecf29ce117ccdc7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 14 Jul 2021 13:39:32 +0200 Subject: [PATCH 206/971] Update to build 4113 --- .SRCINFO | 13 ++++++------- PKGBUILD | 8 ++++---- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 8694839..e74f29f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ pkgbase = sublime-text-4 pkgdesc = Sophisticated text editor for code, html and prose - stable build - pkgver = 4.4107 + pkgver = 4.4113 pkgrel = 1 - url = http://www.sublimetext.com/ + url = https://www.sublimetext.com/download install = sublime-text-4.install arch = x86_64 arch = aarch64 @@ -14,10 +14,9 @@ pkgbase = sublime-text-4 conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4107_x64.tar.xz - sha256sums_x86_64 = c7d9e7520ea91c2db6c026d1f48e9067457d55158393be042100a1161a3e5915 - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4107_arm64.tar.xz - sha256sums_aarch64 = e0ccf0859d7b73a718b65c0f03e48189ecba1a256bb800d738b24078994cae03 + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4113_x64.tar.xz + sha256sums_x86_64 = 900ef90fc6453efc4c2b36132a5f16a4db67a226fa9732e4d3c1bf586d4dc78c + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4113_arm64.tar.xz + sha256sums_aarch64 = 63d536e4c1ff8ca13bbf19fdfacbdeedd6af783f759824500faa4216d978e641 pkgname = sublime-text-4 - diff --git a/PKGBUILD b/PKGBUILD index 94fe3b4..a5795de 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,11 +1,11 @@ # Maintainer: Manuel Hüsers pkgname=sublime-text-4 -pkgver=4.4107 +pkgver=4.4113 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - stable build" arch=('x86_64' 'aarch64') -url="http://www.sublimetext.com/" +url="https://www.sublimetext.com/download" license=('custom') depends=('libpng' 'gtk3') optdepends=('gksu: sudo-save support') @@ -18,8 +18,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('c7d9e7520ea91c2db6c026d1f48e9067457d55158393be042100a1161a3e5915') -sha256sums_aarch64=('e0ccf0859d7b73a718b65c0f03e48189ecba1a256bb800d738b24078994cae03') +sha256sums_x86_64=('900ef90fc6453efc4c2b36132a5f16a4db67a226fa9732e4d3c1bf586d4dc78c') +sha256sums_aarch64=('63d536e4c1ff8ca13bbf19fdfacbdeedd6af783f759824500faa4216d978e641') package() { cd "${srcdir}" From b0c8352d5454425fe105e58add268aa1373d5bfd Mon Sep 17 00:00:00 2001 From: Jonathan Liu Date: Sat, 17 Jul 2021 18:25:41 +1000 Subject: [PATCH 207/971] Update to 0.0.25-1 --- .SRCINFO | 7 +++---- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 60586fc..2b2d467 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = wxedid pkgdesc = wxWidgets-based EDID (Extended Display Identification Data) editor - pkgver = 0.0.23 + pkgver = 0.0.25 pkgrel = 1 url = https://sourceforge.net/projects/wxedid/ arch = i686 @@ -8,8 +8,7 @@ pkgbase = wxedid license = GPL3 depends = wxgtk2 options = !buildflags - source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.23.tar.gz - md5sums = 6b8ceaa8bff41a93f3d740727677c5ac + source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.25.tar.gz + md5sums = e4cd5b0de4f07284de352381aa59fc75 pkgname = wxedid - diff --git a/PKGBUILD b/PKGBUILD index 2ebb2cd..0731734 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Jonathan Liu pkgname=wxedid -pkgver=0.0.23 +pkgver=0.0.25 pkgrel=1 pkgdesc="wxWidgets-based EDID (Extended Display Identification Data) editor" arch=('i686' 'x86_64') @@ -9,7 +9,7 @@ license=('GPL3') depends=('wxgtk2') options=('!buildflags') source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz") -md5sums=('6b8ceaa8bff41a93f3d740727677c5ac') +md5sums=('e4cd5b0de4f07284de352381aa59fc75') build() { cd "$pkgname-$pkgver" From 43b10975f352ea4425d2d3b5e83066e635806259 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20M=2E=20Bezerra?= Date: Sun, 18 Jul 2021 21:45:58 -0300 Subject: [PATCH 208/971] Removing "sublime" from "provides" --- .SRCINFO | 4 ++-- PKGBUILD | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index c7e4295..addfb1f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -8,17 +8,17 @@ pkgbase = sublime-text-3 depends = libpng depends = gtk2 provides = sublime-text - provides = sublime conflicts = sublime-text-4-dev + conflicts = sublime-text-4 conflicts = sublime-text-3-imfix conflicts = sublime-text-imfix conflicts = sublime-text-nightly conflicts = sublime-text-dev conflicts = sublime-text2 + replaces = sublime-text-3-imfix source = https://download.sublimetext.com/sublime_text_3_build_3211_x64.tar.bz2 source = LICENSE sha256sums = 0b3c8ca5e6df376c3c24a4b9ac2e3b391333f73b229bc6e87d0b4a5f636d74ee sha256sums = 339dbd1b6ae3e699809afcdd6c690299e6fa0d385aa2ef658a52d336a3f8107f pkgname = sublime-text-3 - diff --git a/PKGBUILD b/PKGBUILD index 411ba05..a3c3ca6 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -12,13 +12,14 @@ depends=('libpng' 'gtk2') replaces=('sublime-text-3-imfix') conflicts=('sublime-text-4-dev' + 'sublime-text-4' 'sublime-text-3-imfix' 'sublime-text-imfix' 'sublime-text-nightly' 'sublime-text-dev' 'sublime-text2') -provides=('sublime-text' 'sublime') +provides=('sublime-text') source=( "https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2" From 65b30ad2cdf7c6ed2e2d3ca8efc9224f14b2782e Mon Sep 17 00:00:00 2001 From: Brad Erhart <> Date: Thu, 22 Jul 2021 08:16:54 -0700 Subject: [PATCH 209/971] Updating gVisor to v20210712.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 7de78e4..a63d8f8 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20210628.0 + pkgver = 20210712.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,7 +11,7 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20210628.0::https://storage.googleapis.com/gvisor/releases/release/20210628/x86_64/runsc - b2sums = 12ae13d2fab74265a549feb91cfb9fb10a261de10285ac816b254d105b0a11c87dbccd82e185840a250f8dc5c9eb6cf3803b6d3f7f58bc2998033856e2155b43 + source = gvisor-bin-20210712.0::https://storage.googleapis.com/gvisor/releases/release/20210712/x86_64/runsc + b2sums = 757c2df8f379b525b485fa4a5c6f00fdab3913cccc41f8db6499f940aa524e2f9d82820d72488dd3aa51b496b3670b23e69d53d139b2f245b09cb0b1e44e07d2 pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 43f9c9b..683f28c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20210628.0 +pkgver=20210712.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/$arch/$_pkgname") -b2sums=(12ae13d2fab74265a549feb91cfb9fb10a261de10285ac816b254d105b0a11c87dbccd82e185840a250f8dc5c9eb6cf3803b6d3f7f58bc2998033856e2155b43) +b2sums=(757c2df8f379b525b485fa4a5c6f00fdab3913cccc41f8db6499f940aa524e2f9d82820d72488dd3aa51b496b3670b23e69d53d139b2f245b09cb0b1e44e07d2) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From 18bed50f76b7dbbb43340b2b33ca13c7b348b4b0 Mon Sep 17 00:00:00 2001 From: Brad Erhart <> Date: Tue, 27 Jul 2021 23:28:15 -0700 Subject: [PATCH 210/971] Updating gVisor to v20210720.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index a63d8f8..a4656c7 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20210712.0 + pkgver = 20210720.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,7 +11,7 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20210712.0::https://storage.googleapis.com/gvisor/releases/release/20210712/x86_64/runsc - b2sums = 757c2df8f379b525b485fa4a5c6f00fdab3913cccc41f8db6499f940aa524e2f9d82820d72488dd3aa51b496b3670b23e69d53d139b2f245b09cb0b1e44e07d2 + source = gvisor-bin-20210720.0::https://storage.googleapis.com/gvisor/releases/release/20210720/x86_64/runsc + b2sums = 37f78b6d60a02a846921cdb6dc6e72cf0406e73d16b3ea5c4f629cd38dbb5f30d1ebfbbb4540833ff05779afe318508db80de23953dc7b930224892569735b9a pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 683f28c..12e151f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20210712.0 +pkgver=20210720.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/$arch/$_pkgname") -b2sums=(757c2df8f379b525b485fa4a5c6f00fdab3913cccc41f8db6499f940aa524e2f9d82820d72488dd3aa51b496b3670b23e69d53d139b2f245b09cb0b1e44e07d2) +b2sums=(37f78b6d60a02a846921cdb6dc6e72cf0406e73d16b3ea5c4f629cd38dbb5f30d1ebfbbb4540833ff05779afe318508db80de23953dc7b930224892569735b9a) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From a66e905ac913c1eacdd3e49414b1b94822022d76 Mon Sep 17 00:00:00 2001 From: Daniel Peukert Date: Sat, 31 Jul 2021 13:57:42 +0200 Subject: [PATCH 211/971] Disable the spot-client Clippy test --- .SRCINFO | 6 ++++-- PKGBUILD | 17 ++++++++++++++--- disable-clippy-test.diff | 20 ++++++++++++++++++++ 3 files changed, 38 insertions(+), 5 deletions(-) create mode 100644 disable-clippy-test.diff diff --git a/.SRCINFO b/.SRCINFO index 334c8a9..11b4c45 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client pkgver = 0.1.15 - pkgrel = 1 + pkgrel = 2 url = https://github.com/xou816/spot arch = x86_64 arch = i686 @@ -20,7 +20,9 @@ pkgbase = spot-client depends = libpulse depends = openssl optdepends = org.freedesktop.secrets - source = spot-client-0.1.15-1.tar.gz::https://github.com/xou816/spot/archive/0.1.15.tar.gz + source = spot-client-0.1.15-2.tar.gz::https://github.com/xou816/spot/archive/0.1.15.tar.gz + source = disable-clippy-test.diff sha256sums = 55fa29d3627b8e6218b6a0f927391887fbb1a496b597a74a3af70b75207f4121 + sha256sums = ebf64746a9fff1242bdbf47736c78aaf7c3c94ef6423002662dbbb74db685004 pkgname = spot-client diff --git a/PKGBUILD b/PKGBUILD index 03a205c..ca20432 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ _projectname='spot' pkgname="$_projectname-client" pkgver='0.1.15' -pkgrel='1' +pkgrel='2' pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') url="https://github.com/xou816/$_projectname" @@ -11,12 +11,23 @@ depends=('alsa-lib' 'glib2' 'gtk3' 'libhandy' 'libpulse' 'openssl') optdepends=('org.freedesktop.secrets') makedepends=('cargo' 'meson>=0.50.0') checkdepends=('appstream-glib') -source=("$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz") -sha256sums=('55fa29d3627b8e6218b6a0f927391887fbb1a496b597a74a3af70b75207f4121') +source=( + "$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz" + 'disable-clippy-test.diff' +) +sha256sums=('55fa29d3627b8e6218b6a0f927391887fbb1a496b597a74a3af70b75207f4121' + 'ebf64746a9fff1242bdbf47736c78aaf7c3c94ef6423002662dbbb74db685004') _sourcedirectory="$_projectname-$pkgver" _builddirectory='build' +prepare() { + cd "$srcdir/$_sourcedirectory/" + # Disable Clippy test for now, as it still complains about some errors not yet fixed by upstream + # When reenabling, don't forget to use a patch to explicitly specify the Cargo.toml path (https://github.com/xou816/spot/issues/252#issuecomment-880941157) + patch --forward -p1 < '../disable-clippy-test.diff' +} + build() { cd "$srcdir/" meson setup --prefix '/usr' --libexecdir 'lib' --sbindir 'bin' --buildtype 'release' --wrap-mode 'nodownload' \ diff --git a/disable-clippy-test.diff b/disable-clippy-test.diff new file mode 100644 index 0000000..f76738e --- /dev/null +++ b/disable-clippy-test.diff @@ -0,0 +1,20 @@ +diff --git a/src/meson.build b/src/meson.build +index 114c965..cbdfeff 100644 +--- a/src/meson.build ++++ b/src/meson.build +@@ -185,14 +185,3 @@ test('Unit tests', + ], + timeout: 60 + ) +- +-cargo_clippy = find_program(meson.source_root() / 'build-aux/clippy.sh') +-test('Clippy', +- cargo_clippy, +- args: [ +- meson.source_root(), +- meson.build_root(), +- get_option('offline') ? 'true' : 'false' +- ], +- timeout: 120 +-) +\ No newline at end of file From b6d3f9915800116f3b7cf693cbf8025ca28abad1 Mon Sep 17 00:00:00 2001 From: Brad Erhart <> Date: Sat, 31 Jul 2021 06:23:05 -0700 Subject: [PATCH 212/971] Updating gVisor to v20210726.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index a4656c7..58a9023 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20210720.0 + pkgver = 20210726.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,7 +11,7 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20210720.0::https://storage.googleapis.com/gvisor/releases/release/20210720/x86_64/runsc - b2sums = 37f78b6d60a02a846921cdb6dc6e72cf0406e73d16b3ea5c4f629cd38dbb5f30d1ebfbbb4540833ff05779afe318508db80de23953dc7b930224892569735b9a + source = gvisor-bin-20210726.0::https://storage.googleapis.com/gvisor/releases/release/20210726/x86_64/runsc + b2sums = d8f207c6f1dd6aa13b29cbff54a68fa538270ba4fa094f26f19a2e322aa88390551307a6c0ff614f95882068db6f36b91f44897b8d8ebd06a4090b3c44fb475b pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 12e151f..f461305 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20210720.0 +pkgver=20210726.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/$arch/$_pkgname") -b2sums=(37f78b6d60a02a846921cdb6dc6e72cf0406e73d16b3ea5c4f629cd38dbb5f30d1ebfbbb4540833ff05779afe318508db80de23953dc7b930224892569735b9a) +b2sums=(d8f207c6f1dd6aa13b29cbff54a68fa538270ba4fa094f26f19a2e322aa88390551307a6c0ff614f95882068db6f36b91f44897b8d8ebd06a4090b3c44fb475b) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From 080c776289930b82ca91cac4a8430b95b1848e55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 31 Jul 2021 17:58:02 +0200 Subject: [PATCH 213/971] Version 2.16.0 --- .SRCINFO | 9 +++------ PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 7313545..6c46282 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = 2.15.0 + pkgver = 2.16.0 pkgrel = 1 url = https://github.com/redhat-performance/tuned install = tuned.install @@ -14,17 +14,14 @@ pkgbase = tuned depends = polkit depends = python-configobj depends = python-dbus - depends = python-decorator depends = python-gobject depends = python-linux-procfs depends = python-perf depends = python-pyudev - depends = python-schedutils optdepends = virt-what: For use with virtual machines optdepends = systemtap: Disk and net statistic monitoring systemtap scripts backup = etc/tuned/active_profile - source = https://github.com/redhat-performance/tuned/archive/v2.15.0.tar.gz - sha256sums = 5fb11da077e681c4f3d2c0ea9ad73ba8152e6b98f9d07dc60a7802267784831a + source = https://github.com/redhat-performance/tuned/archive/v2.16.0.tar.gz + sha256sums = 7f0b858c35fb9695703f04177af074555de59a7a3e94ec0b7e28357584d4502d pkgname = tuned - diff --git a/PKGBUILD b/PKGBUILD index 05cdd72..01b726e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,19 +4,19 @@ # Contributor: Tom pkgname=tuned -pkgver=2.15.0 +pkgver=2.16.0 pkgrel=1 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url="https://github.com/redhat-performance/${pkgname}" license=('GPL') -depends=('dbus-glib' 'ethtool' 'gawk' 'hdparm' 'polkit' 'python-configobj' 'python-dbus' 'python-decorator' 'python-gobject' 'python-linux-procfs' 'python-perf' 'python-pyudev' 'python-schedutils') +depends=('dbus-glib' 'ethtool' 'gawk' 'hdparm' 'polkit' 'python-configobj' 'python-dbus' 'python-gobject' 'python-linux-procfs' 'python-perf' 'python-pyudev') optdepends=('virt-what: For use with virtual machines' 'systemtap: Disk and net statistic monitoring systemtap scripts') makedepends=('desktop-file-utils') backup=('etc/tuned/active_profile') install="${pkgname}.install" source=("https://github.com/redhat-performance/${pkgname}/archive/v${pkgver}.tar.gz") -sha256sums=('5fb11da077e681c4f3d2c0ea9ad73ba8152e6b98f9d07dc60a7802267784831a') +sha256sums=('7f0b858c35fb9695703f04177af074555de59a7a3e94ec0b7e28357584d4502d') package() { cd "${pkgname}-${pkgver}" From bfccd96e886fffafaaddb1510dca3d6a15f793ca Mon Sep 17 00:00:00 2001 From: Daniel Peukert Date: Tue, 17 Aug 2021 23:23:48 +0200 Subject: [PATCH 214/971] Update spot-client to 0.1.16 --- .SRCINFO | 10 ++++------ PKGBUILD | 19 ++++--------------- disable-clippy-test.diff | 20 -------------------- 3 files changed, 8 insertions(+), 41 deletions(-) delete mode 100644 disable-clippy-test.diff diff --git a/.SRCINFO b/.SRCINFO index 11b4c45..e9d585b 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client - pkgver = 0.1.15 - pkgrel = 2 + pkgver = 0.1.16 + pkgrel = 1 url = https://github.com/xou816/spot arch = x86_64 arch = i686 @@ -20,9 +20,7 @@ pkgbase = spot-client depends = libpulse depends = openssl optdepends = org.freedesktop.secrets - source = spot-client-0.1.15-2.tar.gz::https://github.com/xou816/spot/archive/0.1.15.tar.gz - source = disable-clippy-test.diff - sha256sums = 55fa29d3627b8e6218b6a0f927391887fbb1a496b597a74a3af70b75207f4121 - sha256sums = ebf64746a9fff1242bdbf47736c78aaf7c3c94ef6423002662dbbb74db685004 + source = spot-client-0.1.16-1.tar.gz::https://github.com/xou816/spot/archive/0.1.16.tar.gz + sha256sums = da9ca8d1c29d8e88bac630e25a07c9682d61ebf8ac61db77ee50db3f4adc3a40 pkgname = spot-client diff --git a/PKGBUILD b/PKGBUILD index ca20432..b136dcf 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,8 +1,8 @@ # Maintainer: Daniel Peukert _projectname='spot' pkgname="$_projectname-client" -pkgver='0.1.15' -pkgrel='2' +pkgver='0.1.16' +pkgrel='1' pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') url="https://github.com/xou816/$_projectname" @@ -11,23 +11,12 @@ depends=('alsa-lib' 'glib2' 'gtk3' 'libhandy' 'libpulse' 'openssl') optdepends=('org.freedesktop.secrets') makedepends=('cargo' 'meson>=0.50.0') checkdepends=('appstream-glib') -source=( - "$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz" - 'disable-clippy-test.diff' -) -sha256sums=('55fa29d3627b8e6218b6a0f927391887fbb1a496b597a74a3af70b75207f4121' - 'ebf64746a9fff1242bdbf47736c78aaf7c3c94ef6423002662dbbb74db685004') +source=("$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz") +sha256sums=('da9ca8d1c29d8e88bac630e25a07c9682d61ebf8ac61db77ee50db3f4adc3a40') _sourcedirectory="$_projectname-$pkgver" _builddirectory='build' -prepare() { - cd "$srcdir/$_sourcedirectory/" - # Disable Clippy test for now, as it still complains about some errors not yet fixed by upstream - # When reenabling, don't forget to use a patch to explicitly specify the Cargo.toml path (https://github.com/xou816/spot/issues/252#issuecomment-880941157) - patch --forward -p1 < '../disable-clippy-test.diff' -} - build() { cd "$srcdir/" meson setup --prefix '/usr' --libexecdir 'lib' --sbindir 'bin' --buildtype 'release' --wrap-mode 'nodownload' \ diff --git a/disable-clippy-test.diff b/disable-clippy-test.diff deleted file mode 100644 index f76738e..0000000 --- a/disable-clippy-test.diff +++ /dev/null @@ -1,20 +0,0 @@ -diff --git a/src/meson.build b/src/meson.build -index 114c965..cbdfeff 100644 ---- a/src/meson.build -+++ b/src/meson.build -@@ -185,14 +185,3 @@ test('Unit tests', - ], - timeout: 60 - ) -- --cargo_clippy = find_program(meson.source_root() / 'build-aux/clippy.sh') --test('Clippy', -- cargo_clippy, -- args: [ -- meson.source_root(), -- meson.build_root(), -- get_option('offline') ? 'true' : 'false' -- ], -- timeout: 120 --) -\ No newline at end of file From 0047b038db41c93e4ba7a60cc17f15af8519866a Mon Sep 17 00:00:00 2001 From: Brad Erhart <> Date: Thu, 19 Aug 2021 13:00:09 -0700 Subject: [PATCH 215/971] Updating gVisor to v20210806.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 58a9023..a02c80b 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20210726.0 + pkgver = 20210806.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,7 +11,7 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20210726.0::https://storage.googleapis.com/gvisor/releases/release/20210726/x86_64/runsc - b2sums = d8f207c6f1dd6aa13b29cbff54a68fa538270ba4fa094f26f19a2e322aa88390551307a6c0ff614f95882068db6f36b91f44897b8d8ebd06a4090b3c44fb475b + source = gvisor-bin-20210806.0::https://storage.googleapis.com/gvisor/releases/release/20210806/x86_64/runsc + b2sums = 7fb026ffcd0fd1e1b3802a0d28b762a9caebd3f82781737741a745b1cc3c2a20497fa9046980f5489d3ffae4cc72a4ba7175949c45d905fb89749c014cf64ed7 pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index f461305..5c283b0 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20210726.0 +pkgver=20210806.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/$arch/$_pkgname") -b2sums=(d8f207c6f1dd6aa13b29cbff54a68fa538270ba4fa094f26f19a2e322aa88390551307a6c0ff614f95882068db6f36b91f44897b8d8ebd06a4090b3c44fb475b) +b2sums=(7fb026ffcd0fd1e1b3802a0d28b762a9caebd3f82781737741a745b1cc3c2a20497fa9046980f5489d3ffae4cc72a4ba7175949c45d905fb89749c014cf64ed7) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From 945dcf80deb65e6b769d37652e97d7cacf5f6caf Mon Sep 17 00:00:00 2001 From: Brad Erhart <> Date: Thu, 2 Sep 2021 02:00:56 -0700 Subject: [PATCH 216/971] Updating gVisor to v20210823.0 --- .SRCINFO | 6 +++--- .gitignore | 4 ++-- PKGBUILD | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index a02c80b..ca81362 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20210806.0 + pkgver = 20210823.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,7 +11,7 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20210806.0::https://storage.googleapis.com/gvisor/releases/release/20210806/x86_64/runsc - b2sums = 7fb026ffcd0fd1e1b3802a0d28b762a9caebd3f82781737741a745b1cc3c2a20497fa9046980f5489d3ffae4cc72a4ba7175949c45d905fb89749c014cf64ed7 + source = gvisor-bin-20210823.0::https://storage.googleapis.com/gvisor/releases/release/20210823/x86_64/runsc + b2sums = 495300c5b55186e1403ccad549bb6be289f68241a8faca81b61141cab6aaf3fcc3b6c1ad5408279ee07ab8ae7e1156f799cbf8f70811ffd26273896557c50dcd pkgname = gvisor-bin diff --git a/.gitignore b/.gitignore index e6c6385..d331a28 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ gvisor* -pkg/ -src/ +pkg +src diff --git a/PKGBUILD b/PKGBUILD index 5c283b0..f294131 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20210806.0 +pkgver=20210823.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/$arch/$_pkgname") -b2sums=(7fb026ffcd0fd1e1b3802a0d28b762a9caebd3f82781737741a745b1cc3c2a20497fa9046980f5489d3ffae4cc72a4ba7175949c45d905fb89749c014cf64ed7) +b2sums=(495300c5b55186e1403ccad549bb6be289f68241a8faca81b61141cab6aaf3fcc3b6c1ad5408279ee07ab8ae7e1156f799cbf8f70811ffd26273896557c50dcd) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From 7f4864cbe23e0332edc88f2c29fe3c2f077fecae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 5 Sep 2021 23:04:54 +0200 Subject: [PATCH 217/971] Update to build 4114 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 94995d9..8e8425e 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4113 + pkgver = 4.4114 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4113_x64.tar.xz - sha256sums_x86_64 = 900ef90fc6453efc4c2b36132a5f16a4db67a226fa9732e4d3c1bf586d4dc78c - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4113_arm64.tar.xz - sha256sums_aarch64 = 63d536e4c1ff8ca13bbf19fdfacbdeedd6af783f759824500faa4216d978e641 + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4114_x64.tar.xz + sha256sums_x86_64 = d894783474770a917328a8be44d541de942a37cef35eff80ac136bcd7f6b51ff + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4114_arm64.tar.xz + sha256sums_aarch64 = e7bc3e51f83a00c8a1560c057e207a2d50b79c87595a430aefe9b4cfdcfb84d4 pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index af7a018..1a97f53 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4113 +pkgver=4.4114 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('900ef90fc6453efc4c2b36132a5f16a4db67a226fa9732e4d3c1bf586d4dc78c') -sha256sums_aarch64=('63d536e4c1ff8ca13bbf19fdfacbdeedd6af783f759824500faa4216d978e641') +sha256sums_x86_64=('d894783474770a917328a8be44d541de942a37cef35eff80ac136bcd7f6b51ff') +sha256sums_aarch64=('e7bc3e51f83a00c8a1560c057e207a2d50b79c87595a430aefe9b4cfdcfb84d4') package() { cd "${srcdir}" From 9d23dc8600097e8aaf9e41cb3f5b53e640c9439d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 5 Sep 2021 23:05:21 +0200 Subject: [PATCH 218/971] Update to 0.10.0 --- .SRCINFO | 7 +++---- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index b27815c..93d1aed 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = prometheus-postgresql-exporter pkgdesc = Prometheus exporter for PostgreSQL - pkgver = 0.9.0 + pkgver = 0.10.0 pkgrel = 1 url = https://github.com/prometheus-community/postgres_exporter arch = x86_64 @@ -9,12 +9,11 @@ pkgbase = prometheus-postgresql-exporter makedepends = go makedepends = make backup = etc/conf.d/prometheus-postgresql-exporter - source = https://github.com/prometheus-community/postgres_exporter/archive/v0.9.0.tar.gz + source = https://github.com/prometheus-community/postgres_exporter/archive/v0.10.0.tar.gz source = prometheus-postgresql-exporter.service source = prometheus-postgresql-exporter.conf - sha256sums = a92d30e9952dfb3387ef2a636d19891e226c396f769729431dac0bddc3f0b29e + sha256sums = 76aeba13818fe214a5e3bf8f708fb12e3b4073ba0c3561057629cfba07cf4434 sha256sums = 0d86e650d88c8d4a8bc5b26faecb75023e069eaf29582135bcb0202e4a69a9b9 sha256sums = 5436ad34fbcd6faab69da8675631f3eb5b89d964682eb23164bf4bb816ad1897 pkgname = prometheus-postgresql-exporter - diff --git a/PKGBUILD b/PKGBUILD index 1576551..bf95aa4 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Nils Czernia pkgname=prometheus-postgresql-exporter -pkgver=0.9.0 +pkgver=0.10.0 pkgrel=1 pkgdesc="Prometheus exporter for PostgreSQL" arch=('x86_64') @@ -13,7 +13,7 @@ backup=('etc/conf.d/prometheus-postgresql-exporter') source=("https://github.com/prometheus-community/postgres_exporter/archive/v${pkgver}.tar.gz" "prometheus-postgresql-exporter.service" "prometheus-postgresql-exporter.conf") -sha256sums=('a92d30e9952dfb3387ef2a636d19891e226c396f769729431dac0bddc3f0b29e' +sha256sums=('76aeba13818fe214a5e3bf8f708fb12e3b4073ba0c3561057629cfba07cf4434' '0d86e650d88c8d4a8bc5b26faecb75023e069eaf29582135bcb0202e4a69a9b9' '5436ad34fbcd6faab69da8675631f3eb5b89d964682eb23164bf4bb816ad1897') From d657c4f71622e9528d4065d252a9502071b63e55 Mon Sep 17 00:00:00 2001 From: Brad Erhart <> Date: Thu, 9 Sep 2021 03:55:15 -0700 Subject: [PATCH 219/971] Updating gVisor to v20210830.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index ca81362..6a3a0c2 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20210823.0 + pkgver = 20210830.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,7 +11,7 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20210823.0::https://storage.googleapis.com/gvisor/releases/release/20210823/x86_64/runsc - b2sums = 495300c5b55186e1403ccad549bb6be289f68241a8faca81b61141cab6aaf3fcc3b6c1ad5408279ee07ab8ae7e1156f799cbf8f70811ffd26273896557c50dcd + source = gvisor-bin-20210830.0::https://storage.googleapis.com/gvisor/releases/release/20210830/x86_64/runsc + b2sums = 77ce30414ca817e1bd3625c04fbcb366948238bc4b650999b55a03800fadc59844b73f869e4277f89ea3cd1226968dc83762ea7435d72d3c2fa6ebc70b68493e pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index f294131..ec1aa3d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20210823.0 +pkgver=20210830.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/$arch/$_pkgname") -b2sums=(495300c5b55186e1403ccad549bb6be289f68241a8faca81b61141cab6aaf3fcc3b6c1ad5408279ee07ab8ae7e1156f799cbf8f70811ffd26273896557c50dcd) +b2sums=(77ce30414ca817e1bd3625c04fbcb366948238bc4b650999b55a03800fadc59844b73f869e4277f89ea3cd1226968dc83762ea7435d72d3c2fa6ebc70b68493e) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From bf314710db20c3ab93320c86577997d2f0596f28 Mon Sep 17 00:00:00 2001 From: Daniel Peukert Date: Fri, 10 Sep 2021 02:10:25 +0200 Subject: [PATCH 220/971] Update spot-client to 0.2.0 --- .SRCINFO | 14 +++++++++----- PKGBUILD | 14 +++++++++----- 2 files changed, 18 insertions(+), 10 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index e9d585b..99a8bbb 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client - pkgver = 0.1.16 + pkgver = 0.2.0 pkgrel = 1 url = https://github.com/xou816/spot arch = x86_64 @@ -14,13 +14,17 @@ pkgbase = spot-client makedepends = cargo makedepends = meson>=0.50.0 depends = alsa-lib + depends = cairo depends = glib2 - depends = gtk3 - depends = libhandy + depends = glibc + depends = graphene + depends = gtk4 + depends = libadwaita depends = libpulse depends = openssl + depends = pango optdepends = org.freedesktop.secrets - source = spot-client-0.1.16-1.tar.gz::https://github.com/xou816/spot/archive/0.1.16.tar.gz - sha256sums = da9ca8d1c29d8e88bac630e25a07c9682d61ebf8ac61db77ee50db3f4adc3a40 + source = spot-client-0.2.0-1.tar.gz::https://github.com/xou816/spot/archive/0.2.0.tar.gz + sha512sums = 04930c3be37b45ad9dcac3448d6e3154f597a3caa945fc22f82e552d46960ec869e67d43b7c8117e2ecc6e97e2bfd6d7d0a8a43926467d72c10a706bc137daf7 pkgname = spot-client diff --git a/PKGBUILD b/PKGBUILD index b136dcf..711dbb3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,26 +1,30 @@ # Maintainer: Daniel Peukert +# Contributor: NicoHood _projectname='spot' pkgname="$_projectname-client" -pkgver='0.1.16' +pkgver='0.2.0' pkgrel='1' pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') url="https://github.com/xou816/$_projectname" license=('MIT') -depends=('alsa-lib' 'glib2' 'gtk3' 'libhandy' 'libpulse' 'openssl') +depends=('alsa-lib' 'cairo' 'glib2' 'glibc' 'graphene' 'gtk4' 'libadwaita' 'libpulse' 'openssl' 'pango') optdepends=('org.freedesktop.secrets') makedepends=('cargo' 'meson>=0.50.0') checkdepends=('appstream-glib') source=("$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz") -sha256sums=('da9ca8d1c29d8e88bac630e25a07c9682d61ebf8ac61db77ee50db3f4adc3a40') +sha512sums=('04930c3be37b45ad9dcac3448d6e3154f597a3caa945fc22f82e552d46960ec869e67d43b7c8117e2ecc6e97e2bfd6d7d0a8a43926467d72c10a706bc137daf7') +validpgpkeys=() # waiting for https://github.com/xou816/spot/issues/283 _sourcedirectory="$_projectname-$pkgver" _builddirectory='build' build() { cd "$srcdir/" + # We're not using arch-meson, because upstream recommends using --buildtype 'release' + # The offline build flag is turned off, as we're not predownloading rust dependencies meson setup --prefix '/usr' --libexecdir 'lib' --sbindir 'bin' --buildtype 'release' --wrap-mode 'nodownload' \ - -Db_lto='true' -Db_pie='true' -Doffline='false' -Dfeatures='warn-cache' "$_sourcedirectory" "$_builddirectory" + -Db_lto='true' -Db_pie='true' -Doffline='false' "$_sourcedirectory" "$_builddirectory" meson compile -C "$_builddirectory" } @@ -31,6 +35,6 @@ check() { package() { cd "$srcdir/" - DESTDIR="$pkgdir" meson install -C "$_builddirectory" + meson install -C "$_builddirectory" --destdir "$pkgdir" install -Dm644 "$_sourcedirectory/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } From 4b9adbf92176f51c02ddbf2a5c295b64e5df03b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Du=C5=A1an=20Simi=C4=87?= Date: Thu, 16 Sep 2021 17:04:19 +0200 Subject: [PATCH 221/971] Add all files --- .SRCINFO | 27 +++++++++++++++++++++++ .gitignore | 6 +++++ PKGBUILD | 65 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ discord.sh | 2 ++ 4 files changed, 100 insertions(+) create mode 100644 .SRCINFO create mode 100644 .gitignore create mode 100644 PKGBUILD create mode 100644 discord.sh diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..0b75bf1 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,27 @@ +pkgbase = discord-electron + pkgdesc = All-in-one voice and text chat for gamers that's free and secure. + pkgver = 0.0.15 + pkgrel = 1 + url = https://discordapp.com + arch = x86_64 + license = custom + makedepends = asar + depends = electron + depends = libnotify + depends = libxss + depends = nspr + depends = nss + depends = gtk3 + optdepends = libpulse: Pulseaudio support + optdepends = xdg-utils: Open files + conflicts = discord + source = https://dl.discordapp.net/apps/linux/0.0.15/discord-0.0.15.tar.gz + source = discord.sh + source = LICENSE.html::https://discordapp.com/terms + source = OSS-LICENSES.html::https://discordapp.com/licenses + sha512sums = 4f220ecd0e0c9fcd793ed065055479391506d9401b75ca541cde4136d0290f2720fccca87139091faf269fdb2c020adb5b7333710a31ca603ce8552f3dd4841b + sha512sums = b5fe7bfd31ae1867f3392605bd52ac155c6c02c4a2a132419d9806c08e61715461818919c2e480ba8e7f14b51aefcd588dcaa247f15d24286e177e45f43e17f9 + sha512sums = 6a2ebf7aadf06ba804c1c6f10677a014b2b9eb17a2bb34538426bf4c76686c4c11976bd682610965535f7a5d4a2f6b36dfa5aa875578defef1213ed866acb530 + sha512sums = f6d46b7a2dd6c8475625a988f36419788ab90149317c9a4e5e8ffea8613f27d0746c1557467332770c033349abd370bf721990ecadc383b4aee63cb8b74a280c + +pkgname = discord-electron diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..11fb5a8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +pkg +src +*.tar.gz +*.pkg.tar.zst +LICENSE.html +OSS-LICENSES.html diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..77301fa --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,65 @@ +# Maintainer: Dušan Simić + +_electron=electron +pkgname=discord-electron +_pkgname=discord +_Pkgname=Discord +pkgver=0.0.15 +pkgrel=1 +pkgdesc="All-in-one voice and text chat for gamers that's free and secure." +arch=('x86_64') +url='https://discordapp.com' +license=('custom') +depends=("$_electron" 'libnotify' 'libxss' 'nspr' 'nss' 'gtk3') +makedepends=('asar') +optdepends=('libpulse: Pulseaudio support' + 'xdg-utils: Open files') +conflicts=(discord) +source=("https://dl.discordapp.net/apps/linux/$pkgver/$_pkgname-$pkgver.tar.gz" + 'discord.sh' + 'LICENSE.html::https://discordapp.com/terms' + 'OSS-LICENSES.html::https://discordapp.com/licenses') +sha512sums=('4f220ecd0e0c9fcd793ed065055479391506d9401b75ca541cde4136d0290f2720fccca87139091faf269fdb2c020adb5b7333710a31ca603ce8552f3dd4841b' + 'b5fe7bfd31ae1867f3392605bd52ac155c6c02c4a2a132419d9806c08e61715461818919c2e480ba8e7f14b51aefcd588dcaa247f15d24286e177e45f43e17f9' + '6a2ebf7aadf06ba804c1c6f10677a014b2b9eb17a2bb34538426bf4c76686c4c11976bd682610965535f7a5d4a2f6b36dfa5aa875578defef1213ed866acb530' + 'f6d46b7a2dd6c8475625a988f36419788ab90149317c9a4e5e8ffea8613f27d0746c1557467332770c033349abd370bf721990ecadc383b4aee63cb8b74a280c') + +prepare() { + cd "$_Pkgname" + + # Change exec entry for desktop file + sed -i "s|Exec=.*|Exec=/usr/bin/$_pkgname|" "$_pkgname.desktop" + sed -i "s|Icon=.*|Icon=$pkgname|" "$_pkgname.desktop" + echo 'Path=/usr/bin' >> "$_pkgname.desktop" + + # Change resource path in asar archive + asar extract resources/app.asar resources/app.asar.dest + sed -i "s|process\.resourcesPath|'/', 'opt', '$pkgname'|" resources/app.asar.dest/app_bootstrap/buildInfo.js + asar pack resources/app.asar.dest resources/app.asar + # Cleanup unpacked files + rm -r resources/app.asar.dest + + cd "$srcdir" + + # Set electron version in startup script + sed -i "s|@ELECTRON@|$_electron|" "$_pkgname.sh" +} + +package() { + # Install the app + install -d "$pkgdir/opt/$pkgname" + cp -a "$_Pkgname/resources/." "$pkgdir/opt/$pkgname" + + # Install startup script + install -Dm755 "$_pkgname.sh" "$pkgdir/usr/bin/$pkgname" + ln -s "/usr/bin/$pkgname" "$pkgdir/usr/bin/$_pkgname" + + # Install icon and desktop file + install -Dm644 "$_Pkgname/$_pkgname.png" "$pkgdir/usr/share/pixmaps/$pkgname.png" + install -Dm644 "$_Pkgname/$_pkgname.desktop" "$pkgdir/usr/share/applications/$pkgname.desktop" + + # Licenses + install -Dm644 LICENSE.html "$pkgdir/usr/share/licenses/$pkgname/LICENSE.html" + install -Dm644 OSS-LICENSES.html "$pkgdir/usr/share/licenses/$pkgname/OSS-LICENSES.html" +} + diff --git a/discord.sh b/discord.sh new file mode 100644 index 0000000..87f5542 --- /dev/null +++ b/discord.sh @@ -0,0 +1,2 @@ +#!/bin/sh +exec @ELECTRON@ /opt/discord-electron/app.asar --disable-dev-mode "$@" From 04807a8e6181109840e4071b399ff143f60c3c7a Mon Sep 17 00:00:00 2001 From: Brad Erhart <> Date: Fri, 17 Sep 2021 17:35:15 -0700 Subject: [PATCH 222/971] Updating gVisor to v20210906.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 6a3a0c2..0d67f09 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20210830.0 + pkgver = 20210906.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,7 +11,7 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20210830.0::https://storage.googleapis.com/gvisor/releases/release/20210830/x86_64/runsc - b2sums = 77ce30414ca817e1bd3625c04fbcb366948238bc4b650999b55a03800fadc59844b73f869e4277f89ea3cd1226968dc83762ea7435d72d3c2fa6ebc70b68493e + source = gvisor-bin-20210906.0::https://storage.googleapis.com/gvisor/releases/release/20210906/x86_64/runsc + b2sums = f1565c0a8cdd8817d491793b4ecd21141d7a79351856e3645e1dc94e7fb8366fab6e14a9422eb365404d538b67473bdc24150ec1ea80b03b7d00e873841c32af pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index ec1aa3d..70e3bbe 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20210830.0 +pkgver=20210906.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/$arch/$_pkgname") -b2sums=(77ce30414ca817e1bd3625c04fbcb366948238bc4b650999b55a03800fadc59844b73f869e4277f89ea3cd1226968dc83762ea7435d72d3c2fa6ebc70b68493e) +b2sums=(f1565c0a8cdd8817d491793b4ecd21141d7a79351856e3645e1dc94e7fb8366fab6e14a9422eb365404d538b67473bdc24150ec1ea80b03b7d00e873841c32af) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From ba5449332dfeb1ca9a71c2a28027b2e12d224419 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=9D=CE=B9=CE=BA=CF=8C=CE=BB=CE=B1=CE=BF=CF=82=20=CE=9A?= =?UTF-8?q?=CF=85=CF=81=CE=B9=CE=AC=CE=BA=CE=BF=CF=82=20=CE=A6=CF=85=CF=84?= =?UTF-8?q?=CE=AF=CE=BB=CE=B7=CF=82?= Date: Sat, 25 Sep 2021 11:08:44 +0300 Subject: [PATCH 223/971] fix sbin exists in fs --- .SRCINFO | 3 +-- PKGBUILD | 3 ++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 2da4a17..257b573 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = ntfs2btrfs-git pkgdesc = Convertion from ntfs to btrfs keeping NT metadata pkgver = 1 - pkgrel = 1 + pkgrel = 2 arch = any license = GPL makedepends = cmake @@ -11,4 +11,3 @@ pkgbase = ntfs2btrfs-git md5sums = SKIP pkgname = ntfs2btrfs-git - diff --git a/PKGBUILD b/PKGBUILD index 740aee8..589ceab 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ _pkgbase=ntfs2btrfs pkgname=$_pkgbase-git pkgbase=$_pkgbase-git pkgver=1 -pkgrel=1 +pkgrel=2 epoch= pkgdesc="Convertion from ntfs to btrfs keeping NT metadata" arch=(any) @@ -25,4 +25,5 @@ build() { package() { cd "$_pkgbase/b" make DESTDIR="$pkgdir/" install + mv $pkgdir/usr/sbin $pkgdir/usr/bin } From 95596b6f659b5806f60602ee5eb150aaa4bca7bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 27 Sep 2021 16:08:04 +0200 Subject: [PATCH 224/971] Update to build 4115 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 8e8425e..cd5035d 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4114 + pkgver = 4.4115 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4114_x64.tar.xz - sha256sums_x86_64 = d894783474770a917328a8be44d541de942a37cef35eff80ac136bcd7f6b51ff - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4114_arm64.tar.xz - sha256sums_aarch64 = e7bc3e51f83a00c8a1560c057e207a2d50b79c87595a430aefe9b4cfdcfb84d4 + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4115_x64.tar.xz + sha256sums_x86_64 = 21cf824f89322c7d95185550a9215211d819f86f72d3ea6b8197410a0fe007d6 + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4115_arm64.tar.xz + sha256sums_aarch64 = e76db06de785e5b580ae87bfc2b02b4a231a83837baa5838ff26550148ea13d6 pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 1a97f53..d19e516 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4114 +pkgver=4.4115 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('d894783474770a917328a8be44d541de942a37cef35eff80ac136bcd7f6b51ff') -sha256sums_aarch64=('e7bc3e51f83a00c8a1560c057e207a2d50b79c87595a430aefe9b4cfdcfb84d4') +sha256sums_x86_64=('21cf824f89322c7d95185550a9215211d819f86f72d3ea6b8197410a0fe007d6') +sha256sums_aarch64=('e76db06de785e5b580ae87bfc2b02b4a231a83837baa5838ff26550148ea13d6') package() { cd "${srcdir}" From 7cb9aea1de2d989d303c8ed856be18b356360796 Mon Sep 17 00:00:00 2001 From: Eduardo Bart Date: Sun, 3 Oct 2021 07:46:34 -0300 Subject: [PATCH 225/971] Update to build 4116 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index cd5035d..36273e4 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4115 + pkgver = 4.4116 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4115_x64.tar.xz - sha256sums_x86_64 = 21cf824f89322c7d95185550a9215211d819f86f72d3ea6b8197410a0fe007d6 - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4115_arm64.tar.xz - sha256sums_aarch64 = e76db06de785e5b580ae87bfc2b02b4a231a83837baa5838ff26550148ea13d6 + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4116_x64.tar.xz + sha256sums_x86_64 = 2dfdd8fc3434ab482fb2b203fab3e5d39fd87d67538daa105e79f0e649372842 + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4116_arm64.tar.xz + sha256sums_aarch64 = 2b772881ee8edfb67195ee57130bea2bfefb4751c9f725a51c23c0e12fea862d pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index d19e516..4991dac 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4115 +pkgver=4.4116 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('21cf824f89322c7d95185550a9215211d819f86f72d3ea6b8197410a0fe007d6') -sha256sums_aarch64=('e76db06de785e5b580ae87bfc2b02b4a231a83837baa5838ff26550148ea13d6') +sha256sums_x86_64=('2dfdd8fc3434ab482fb2b203fab3e5d39fd87d67538daa105e79f0e649372842') +sha256sums_aarch64=('2b772881ee8edfb67195ee57130bea2bfefb4751c9f725a51c23c0e12fea862d') package() { cd "${srcdir}" From e787c7fc8bcccedf76ffed15d468620e72b397eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=9D=CE=B9=CE=BA=CF=8C=CE=BB=CE=B1=CE=BF=CF=82=20=CE=9A?= =?UTF-8?q?=CF=85=CF=81=CE=B9=CE=AC=CE=BA=CE=BF=CF=82=20=CE=A6=CF=85=CF=84?= =?UTF-8?q?=CE=AF=CE=BB=CE=B7=CF=82?= Date: Sun, 3 Oct 2021 14:46:21 +0300 Subject: [PATCH 226/971] pkgver remove tabs --- .SRCINFO | 4 ++-- PKGBUILD | 19 ++++++++++++------- 2 files changed, 14 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 257b573..f9a12f9 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = ntfs2btrfs-git pkgdesc = Convertion from ntfs to btrfs keeping NT metadata - pkgver = 1 - pkgrel = 2 + pkgver = r220.7664363 + pkgrel = 1 arch = any license = GPL makedepends = cmake diff --git a/PKGBUILD b/PKGBUILD index 589ceab..9ccf8ba 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,8 +2,8 @@ _pkgbase=ntfs2btrfs pkgname=$_pkgbase-git pkgbase=$_pkgbase-git -pkgver=1 -pkgrel=2 +pkgver=r220.7664363 +pkgrel=1 epoch= pkgdesc="Convertion from ntfs to btrfs keeping NT metadata" arch=(any) @@ -14,16 +14,21 @@ makedepends=(cmake gcc) source=("git+https://github.com/maharmstone/ntfs2btrfs") md5sums=(SKIP) +pkgver() { + cd "$_pkgbase" + printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" +} + build() { - cd "$_pkgbase" + cd "$_pkgbase" mkdir b || true cd b - cmake -DCMAKE_INSTALL_PREFIX='/usr' .. - make + cmake -DCMAKE_INSTALL_PREFIX='/usr' .. + make } package() { - cd "$_pkgbase/b" - make DESTDIR="$pkgdir/" install + cd "$_pkgbase/b" + make DESTDIR="$pkgdir/" install mv $pkgdir/usr/sbin $pkgdir/usr/bin } From 9ed48b38d9159de9fd717af2def14bc02cb9a551 Mon Sep 17 00:00:00 2001 From: Daniel Peukert Date: Sat, 9 Oct 2021 00:01:40 +0200 Subject: [PATCH 227/971] Update spot-client to 0.2.0.1 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 99a8bbb..3c7f11e 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client - pkgver = 0.2.0 + pkgver = 0.2.0.1 pkgrel = 1 url = https://github.com/xou816/spot arch = x86_64 @@ -24,7 +24,7 @@ pkgbase = spot-client depends = openssl depends = pango optdepends = org.freedesktop.secrets - source = spot-client-0.2.0-1.tar.gz::https://github.com/xou816/spot/archive/0.2.0.tar.gz - sha512sums = 04930c3be37b45ad9dcac3448d6e3154f597a3caa945fc22f82e552d46960ec869e67d43b7c8117e2ecc6e97e2bfd6d7d0a8a43926467d72c10a706bc137daf7 + source = spot-client-0.2.0.1-1.tar.gz::https://github.com/xou816/spot/archive/0.2.0.1.tar.gz + sha512sums = 2e0dd5b68d8f46fbf59d25fe37726f657d74d785b4c557b7665604dbc1b68bd288db003fa100b631f58aaa7f4a4f8aea361793c68ae9c52b6356fedbfe8a6296 pkgname = spot-client diff --git a/PKGBUILD b/PKGBUILD index 711dbb3..fbf6a4a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: NicoHood _projectname='spot' pkgname="$_projectname-client" -pkgver='0.2.0' +pkgver='0.2.0.1' pkgrel='1' pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -13,7 +13,7 @@ optdepends=('org.freedesktop.secrets') makedepends=('cargo' 'meson>=0.50.0') checkdepends=('appstream-glib') source=("$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz") -sha512sums=('04930c3be37b45ad9dcac3448d6e3154f597a3caa945fc22f82e552d46960ec869e67d43b7c8117e2ecc6e97e2bfd6d7d0a8a43926467d72c10a706bc137daf7') +sha512sums=('2e0dd5b68d8f46fbf59d25fe37726f657d74d785b4c557b7665604dbc1b68bd288db003fa100b631f58aaa7f4a4f8aea361793c68ae9c52b6356fedbfe8a6296') validpgpkeys=() # waiting for https://github.com/xou816/spot/issues/283 _sourcedirectory="$_projectname-$pkgver" From d294fbed7a400db04f380e5c11001d308cf51511 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 15 Oct 2021 08:53:12 +0200 Subject: [PATCH 228/971] Update to build 4118 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 36273e4..1fc1aec 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4116 + pkgver = 4.4118 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4116_x64.tar.xz - sha256sums_x86_64 = 2dfdd8fc3434ab482fb2b203fab3e5d39fd87d67538daa105e79f0e649372842 - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4116_arm64.tar.xz - sha256sums_aarch64 = 2b772881ee8edfb67195ee57130bea2bfefb4751c9f725a51c23c0e12fea862d + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4118_x64.tar.xz + sha256sums_x86_64 = 1cc5a4db95eb1c27f75d1be539bbab45b459744c4250d640aedf839a05ccfea9 + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4118_arm64.tar.xz + sha256sums_aarch64 = a475a0a0defa1f1435570404def0933536ecfb989e9dd5a7800f6d4275823f39 pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 4991dac..ace114d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4116 +pkgver=4.4118 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('2dfdd8fc3434ab482fb2b203fab3e5d39fd87d67538daa105e79f0e649372842') -sha256sums_aarch64=('2b772881ee8edfb67195ee57130bea2bfefb4751c9f725a51c23c0e12fea862d') +sha256sums_x86_64=('1cc5a4db95eb1c27f75d1be539bbab45b459744c4250d640aedf839a05ccfea9') +sha256sums_aarch64=('a475a0a0defa1f1435570404def0933536ecfb989e9dd5a7800f6d4275823f39') package() { cd "${srcdir}" From af69064d0f1a64e2a6b6466f61205c2991fe3440 Mon Sep 17 00:00:00 2001 From: Brad Erhart <> Date: Sat, 16 Oct 2021 21:30:06 -0700 Subject: [PATCH 229/971] Updating gVisor to v20211005.0 Signed-off-by: Brad Erhart <> --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 0d67f09..c0da96e 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20210906.0 + pkgver = 20211005.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,7 +11,7 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20210906.0::https://storage.googleapis.com/gvisor/releases/release/20210906/x86_64/runsc - b2sums = f1565c0a8cdd8817d491793b4ecd21141d7a79351856e3645e1dc94e7fb8366fab6e14a9422eb365404d538b67473bdc24150ec1ea80b03b7d00e873841c32af + source = gvisor-bin-20211005.0::https://storage.googleapis.com/gvisor/releases/release/20211005/x86_64/runsc + b2sums = 75d8ab4cef282eeff2fb5e47696aec8918693dc598d98b87dee01dc16156b7bde3272e6828dc5d2c9d2c32fe34c5997e052d1059cf85af601ec317ab094ed219 pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 70e3bbe..1f6bf22 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20210906.0 +pkgver=20211005.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/$arch/$_pkgname") -b2sums=(f1565c0a8cdd8817d491793b4ecd21141d7a79351856e3645e1dc94e7fb8366fab6e14a9422eb365404d538b67473bdc24150ec1ea80b03b7d00e873841c32af) +b2sums=(75d8ab4cef282eeff2fb5e47696aec8918693dc598d98b87dee01dc16156b7bde3272e6828dc5d2c9d2c32fe34c5997e052d1059cf85af601ec317ab094ed219) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From f1de0ad44082e49f57c4809a4a4bced72990d41e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 17 Oct 2021 09:51:36 +0200 Subject: [PATCH 230/971] Fix compilation errors and remove glew envs --- .SRCINFO | 5 +- 00700a3.patch | 424 ++++++++++++++++++++++++++++++++++++++++++++++++++ PKGBUILD | 23 ++- 3 files changed, 437 insertions(+), 15 deletions(-) create mode 100644 00700a3.patch diff --git a/.SRCINFO b/.SRCINFO index 3148f56..19c979e 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = bino pkgdesc = 3D video player with multi-display support pkgver = 1.6.7 - pkgrel = 1 + pkgrel = 2 url = https://bino3d.org/ arch = i686 arch = x86_64 @@ -13,11 +13,12 @@ pkgbase = bino depends = libass depends = qt5-base optdepends = lirc: infrared remote control + source = 00700a3.patch source = https://bino3d.org/releases/bino-1.6.7.tar.xz source = https://bino3d.org/releases/bino-1.6.7.tar.xz.sig validpgpkeys = 2F61B4828BBA779AECB3F32703A2A4AB1E32FD34 + sha512sums = 2923f3818cbbf979e5ba77d731a5d05525472a8ac7419a716bf2b298af6c8fe21f87fb63653460c729169ec76497a9a300d646cd308fd905e730d4fc65140ac8 sha512sums = ae8f72b200100664b9fd55963371ce64a2f39e240676494d69b422d662f2295560ba458eb04707b82f88d3c6b3fab98a1ecb40d74799300f96b8eb8be680c9b8 sha512sums = SKIP pkgname = bino - diff --git a/00700a3.patch b/00700a3.patch new file mode 100644 index 0000000..6e00284 --- /dev/null +++ b/00700a3.patch @@ -0,0 +1,424 @@ +diff --git a/README.md b/README.md +index 85b61f0..32dea56 100644 +--- a/README.md ++++ b/README.md +@@ -1,6 +1,7 @@ + # Bino: A 3D video player with multi-display support + + Bino is a video player with two main features: ++ + - Support for 3D videos, with a wide variety of input and output formats. + - Support for distributed multi-display video, e.g. for powerwalls, Virtual + Reality installations and other multi-projector setups. +diff --git a/pkg/w32/notes.txt b/pkg/w32/notes.txt +index f84be15..e3e1c20 100644 +--- a/pkg/w32/notes.txt ++++ b/pkg/w32/notes.txt +@@ -17,4 +17,4 @@ The source code for Bino is available here: + https://bino3d.org/download.html + + Instructions to build this package from source can be found here: +-https://gitlab.marlam.de/marlam/bino/raw/master/README.Windows ++https://git.marlam.de/gitweb/?p=bino.git;a=blob_plain;f=README.Windows;hb=HEAD +diff --git a/src/base/dbg.cpp b/src/base/dbg.cpp +index 6c6234f..044be67 100644 +--- a/src/base/dbg.cpp ++++ b/src/base/dbg.cpp +@@ -74,8 +74,10 @@ namespace dbg + (void)sigaction(SIGFPE, &signal_handler, NULL); + (void)sigaction(SIGSEGV, &signal_handler, NULL); + #endif ++#if __cplusplus < 201700 + std::set_unexpected(exception_crash); + std::set_terminate(exception_crash); ++#endif + std::set_new_handler(oom_abort); + } + +diff --git a/src/dispatch.cpp b/src/dispatch.cpp +index d6f9327..703d865 100644 +--- a/src/dispatch.cpp ++++ b/src/dispatch.cpp +@@ -1,7 +1,7 @@ + /* + * This file is part of bino, a 3D video player. + * +- * Copyright (C) 2010, 2011, 2012, 2013, 2015 ++ * Copyright (C) 2010, 2011, 2012, 2013, 2015, 2018 + * Martin Lambers + * Binocle (author: Olivier Letz ) + * Frédéric Bour +@@ -504,6 +504,12 @@ void dispatch::receive_cmd(const command& cmd) + if (_input_data.params.subtitle_parallax_is_set()) + _parameters.set_subtitle_parallax(_input_data.params.subtitle_parallax()); + notify_all(notification::subtitle_parallax); ++ if (_input_data.params.vertical_pixel_shift_left_is_set()) ++ _parameters.set_vertical_pixel_shift_left(_input_data.params.vertical_pixel_shift_left()); ++ notify_all(notification::vertical_pixel_shift_left); ++ if (_input_data.params.vertical_pixel_shift_right_is_set()) ++ _parameters.set_vertical_pixel_shift_right(_input_data.params.vertical_pixel_shift_right()); ++ notify_all(notification::vertical_pixel_shift_right); + if (!_parameters.stereo_mode_is_set()) { + if (_media_input->video_frame_template().stereo_layout == parameters::layout_mono) + _parameters.set_stereo_mode(parameters::mode_mono_left); +@@ -833,6 +839,14 @@ void dispatch::receive_cmd(const command& cmd) + _parameters.set_subtitle_parallax(clamp(s11n::load(p), -1.0f, +1.0f)); + notify_all(notification::subtitle_parallax); + break; ++ case command::set_vertical_pixel_shift_left: ++ _parameters.set_vertical_pixel_shift_left(s11n::load(p)); ++ notify_all(notification::vertical_pixel_shift_left); ++ break; ++ case command::set_vertical_pixel_shift_right: ++ _parameters.set_vertical_pixel_shift_right(s11n::load(p)); ++ notify_all(notification::vertical_pixel_shift_right); ++ break; + // Volatile parameters + case command::toggle_fullscreen: + { +@@ -1217,6 +1231,12 @@ bool dispatch::parse_command(const std::string& s, command* c) + } else if (tokens.size() == 2 && tokens[0] == "adjust-subtitle-parallax" + && str::to(tokens[1], &p.f)) { + *c = command(command::adjust_subtitle_parallax, p.f); ++ } else if (tokens.size() == 2 && tokens[0] == "set-vertical-pixel-shift-left" ++ && str::to(tokens[1], &p.f)) { ++ *c = command(command::set_vertical_pixel_shift_left, p.f); ++ } else if (tokens.size() == 2 && tokens[0] == "set-vertical-pixel-shift-right" ++ && str::to(tokens[1], &p.f)) { ++ *c = command(command::set_vertical_pixel_shift_right, p.f); + } else if (tokens.size() == 1 && tokens[0] == "toggle-fullscreen") { + *c = command(command::toggle_fullscreen); + } else if (tokens.size() == 1 && tokens[0] == "center") { +diff --git a/src/dispatch.h b/src/dispatch.h +index 2133f8d..23f8030 100644 +--- a/src/dispatch.h ++++ b/src/dispatch.h +@@ -1,7 +1,7 @@ + /* + * This file is part of bino, a 3D video player. + * +- * Copyright (C) 2010, 2011, 2012, 2013, 2015 ++ * Copyright (C) 2010, 2011, 2012, 2013, 2015, 2018 + * Martin Lambers + * Joe + * Binocle (author: Olivier Letz ) +@@ -143,6 +143,8 @@ public: + adjust_ghostbust, // float (relative adjustment) + set_subtitle_parallax, // float (absolute value) + adjust_subtitle_parallax, // float (relative adjustment) ++ set_vertical_pixel_shift_left, // float ++ set_vertical_pixel_shift_right, // float + // Volatile parameters + toggle_fullscreen, // no parameters + center, // no parameters +@@ -260,6 +262,8 @@ public: + parallax, + ghostbust, + subtitle_parallax, ++ vertical_pixel_shift_left, ++ vertical_pixel_shift_right, + // Volatile parameters + fullscreen, + center, +diff --git a/src/main.cpp b/src/main.cpp +index 474cdd0..aa232c7 100644 +--- a/src/main.cpp ++++ b/src/main.cpp +@@ -337,6 +337,10 @@ int main(int argc, char *argv[]) + options.push_back(&subtitle_shadow); + opt::val subtitle_parallax("subtitle-parallax", '\0', opt::optional, -1.0f, +1.0f); + options.push_back(&subtitle_parallax); ++ opt::val vertical_pixel_shift_left("vertical-pixel-shift-left", '\0', opt::optional, -99999.9f, +99999.9f, 0.0f); ++ options.push_back(&vertical_pixel_shift_left); ++ opt::val vertical_pixel_shift_right("vertical-pixel-shift-right", '\0', opt::optional, -99999.9f, +99999.9f, 0.0f); ++ options.push_back(&vertical_pixel_shift_right); + opt::val parallax("parallax", 'P', opt::optional, -1.0f, +1.0f); + options.push_back(¶llax); + opt::tuple crosstalk("crosstalk", '\0', opt::optional, 0.0f, 1.0f, std::vector(), 3); +@@ -767,6 +771,10 @@ int main(int argc, char *argv[]) + input_data.params.set_ghostbust(ghostbust.value()); + if (subtitle_parallax.is_set()) + input_data.params.set_subtitle_parallax(subtitle_parallax.value()); ++ if (vertical_pixel_shift_left.is_set()) ++ input_data.params.set_vertical_pixel_shift_left(vertical_pixel_shift_left.value()); ++ if (vertical_pixel_shift_right.is_set()) ++ input_data.params.set_vertical_pixel_shift_right(vertical_pixel_shift_right.value()); + + int retval = 0; + std::vector command_files; +diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp +index 988417a..1563eef 100644 +--- a/src/mainwindow.cpp ++++ b/src/mainwindow.cpp +@@ -666,6 +666,10 @@ void main_window::open(QStringList filenames, + input_data.params.set_source_aspect_ratio(initial_params.source_aspect_ratio()); + if (initial_params.parallax_is_set()) + input_data.params.set_parallax(initial_params.parallax()); ++ if (initial_params.vertical_pixel_shift_left_is_set()) ++ input_data.params.set_vertical_pixel_shift_left(initial_params.vertical_pixel_shift_left()); ++ if (initial_params.vertical_pixel_shift_right_is_set()) ++ input_data.params.set_vertical_pixel_shift_right(initial_params.vertical_pixel_shift_right()); + if (initial_params.ghostbust_is_set()) + input_data.params.set_ghostbust(initial_params.ghostbust()); + if (initial_params.subtitle_parallax_is_set()) +diff --git a/src/media_data.cpp b/src/media_data.cpp +index b4acfb0..93b032d 100644 +--- a/src/media_data.cpp ++++ b/src/media_data.cpp +@@ -1,7 +1,7 @@ + /* + * This file is part of bino, a 3D video player. + * +- * Copyright (C) 2010, 2011, 2012, 2013, 2015 ++ * Copyright (C) 2010, 2011, 2012, 2013, 2015, 2018 + * Martin Lambers + * Joe + * D. Matz +@@ -125,6 +125,8 @@ parameters::parameters() + unset_parallax(); + unset_ghostbust(); + unset_subtitle_parallax(); ++ unset_vertical_pixel_shift_left(); ++ unset_vertical_pixel_shift_right(); + // Volatile parameters + unset_fullscreen(); + unset_center(); +@@ -180,6 +182,8 @@ const float parameters::_source_aspect_ratio_default = 0.0f; + const float parameters::_parallax_default = 0.0f; + const float parameters::_ghostbust_default = 0.0f; + const float parameters::_subtitle_parallax_default = 0.0f; ++const float parameters::_vertical_pixel_shift_left_default = 0.0f; ++const float parameters::_vertical_pixel_shift_right_default = 0.0f; + // Volatile parameter defaults + const bool parameters::_fullscreen_default = false; + const bool parameters::_center_default = false; +@@ -575,6 +579,10 @@ void parameters::save(std::ostream &os) const + s11n::save(os, _ghostbust_set); + s11n::save(os, _subtitle_parallax); + s11n::save(os, _subtitle_parallax_set); ++ s11n::save(os, _vertical_pixel_shift_left); ++ s11n::save(os, _vertical_pixel_shift_left_set); ++ s11n::save(os, _vertical_pixel_shift_right); ++ s11n::save(os, _vertical_pixel_shift_right_set); + // Volatile parameters + s11n::save(os, _fullscreen); + s11n::save(os, _fullscreen_set); +@@ -680,6 +688,10 @@ void parameters::load(std::istream &is) + s11n::load(is, _ghostbust_set); + s11n::load(is, _subtitle_parallax); + s11n::load(is, _subtitle_parallax_set); ++ s11n::load(is, _vertical_pixel_shift_left); ++ s11n::load(is, _vertical_pixel_shift_left_set); ++ s11n::load(is, _vertical_pixel_shift_right); ++ s11n::load(is, _vertical_pixel_shift_right_set); + // Volatile parameters + s11n::load(is, _fullscreen); + s11n::load(is, _fullscreen_set); +@@ -879,6 +891,8 @@ void parameters::unset_video_parameters() + unset_parallax(); + unset_ghostbust(); + unset_subtitle_parallax(); ++ unset_vertical_pixel_shift_left(); ++ unset_vertical_pixel_shift_right(); + } + + std::string parameters::save_video_parameters() const +@@ -902,6 +916,10 @@ std::string parameters::save_video_parameters() const + s11n::save(oss, "ghostbust", _ghostbust); + if (!subtitle_parallax_is_default()) + s11n::save(oss, "subtitle_parallax", _subtitle_parallax); ++ if (!vertical_pixel_shift_left_is_default()) ++ s11n::save(oss, "vertical_pixel_shift_left", _vertical_pixel_shift_left); ++ if (!vertical_pixel_shift_right_is_default()) ++ s11n::save(oss, "vertical_pixel_shift_right", _vertical_pixel_shift_right); + return oss.str(); + } + +@@ -941,6 +959,12 @@ void parameters::load_video_parameters(const std::string &s) + } else if (name == "subtitle_parallax") { + s11n::load(value, _subtitle_parallax); + _subtitle_parallax_set = true; ++ } else if (name == "vertical_pixel_shift_left") { ++ s11n::load(value, _vertical_pixel_shift_left); ++ _vertical_pixel_shift_left_set = true; ++ } else if (name == "vertical_pixel_shift_right") { ++ s11n::load(value, _vertical_pixel_shift_right); ++ _vertical_pixel_shift_right_set = true; + } + } + } +diff --git a/src/media_data.h b/src/media_data.h +index 30c7bec..1214f91 100644 +--- a/src/media_data.h ++++ b/src/media_data.h +@@ -1,7 +1,7 @@ + /* + * This file is part of bino, a 3D video player. + * +- * Copyright (C) 2010, 2011, 2012, 2013, 2015 ++ * Copyright (C) 2010, 2011, 2012, 2013, 2015, 2018 + * Martin Lambers + * Joe + * D. Matz +@@ -205,6 +205,8 @@ public: + PARAMETER(float, parallax) // Parallax adjustment, -1 .. +1 + PARAMETER(float, ghostbust) // Amount of crosstalk ghostbusting, 0 .. 1 + PARAMETER(float, subtitle_parallax) // Subtitle parallax adjustment, -1 .. +1 ++ PARAMETER(float, vertical_pixel_shift_left) // Vertical shift in pixels for left view ++ PARAMETER(float, vertical_pixel_shift_right) // Vertical shift in pixels for right view + // Volatile parameters + PARAMETER(bool, fullscreen) // Fullscreen mode + PARAMETER(bool, center) // Should the video be centered? +diff --git a/src/media_input.cpp b/src/media_input.cpp +index c1b8fcb..493708c 100644 +--- a/src/media_input.cpp ++++ b/src/media_input.cpp +@@ -1,7 +1,7 @@ + /* + * This file is part of bino, a 3D video player. + * +- * Copyright (C) 2010, 2011, 2012, 2015 ++ * Copyright (C) 2010, 2011, 2012, 2015, 2018 + * Martin Lambers + * Frédéric Devernay + * Joe +@@ -38,7 +38,8 @@ + media_input::media_input() : + _active_video_stream(-1), _active_audio_stream(-1), _active_subtitle_stream(-1), + _have_active_video_read(false), _have_active_audio_read(false), _have_active_subtitle_read(false), +- _last_audio_data_size(0), _initial_skip(0), _duration(-1) ++ _last_audio_data_size(0), _initial_skip(0), _duration(-1), ++ _finished_first_frame_read(false) + { + } + +@@ -622,6 +623,26 @@ video_frame media_input::finish_video_frame_read() + get_video_stream(1, o1, s1); + video_frame f0 = _media_objects[o0].finish_video_frame_read(s0); + video_frame f1 = _media_objects[o1].finish_video_frame_read(s1); ++ if (!_finished_first_frame_read && is_device()) ++ { ++ /* Try to keep both device streams in sync. This should only be ++ * relevant at the beginning of playback, i.e. the first frame read, ++ * when one device starts grabbing frames before the other does. */ ++ while (f0.is_valid() && f1.is_valid() ++ && f1.presentation_time > f0.presentation_time + video_frame_duration() / 2) ++ { ++ msg::dbg("skipping frame from device %d stream %d because device %d stream %d is ahead", o0, s0, o1, s1); ++ _media_objects[o0].start_video_frame_read(s0, 1); ++ f0 = _media_objects[o0].finish_video_frame_read(s0); ++ } ++ while (f0.is_valid() && f1.is_valid() ++ && f0.presentation_time > f1.presentation_time + video_frame_duration() / 2) ++ { ++ msg::dbg("skipping frame from device %d stream %d because device %d stream %d is ahead", o1, s1, o0, s0); ++ _media_objects[o1].start_video_frame_read(s1, 1); ++ f1 = _media_objects[o1].finish_video_frame_read(s1); ++ } ++ } + if (f0.is_valid() && f1.is_valid()) + { + frame = _video_frame; +@@ -655,6 +676,7 @@ video_frame media_input::finish_video_frame_read() + } + } + _have_active_video_read = false; ++ _finished_first_frame_read = true; + return frame; + } + +diff --git a/src/media_input.h b/src/media_input.h +index 8ff3778..880bfe1 100644 +--- a/src/media_input.h ++++ b/src/media_input.h +@@ -1,7 +1,7 @@ + /* + * This file is part of bino, a 3D video player. + * +- * Copyright (C) 2010, 2011, 2012 ++ * Copyright (C) 2010, 2011, 2012, 2018 + * Martin Lambers + * Joe + * +@@ -53,6 +53,8 @@ private: + int64_t _initial_skip; // Initial portion of input to skip, in microseconds. + int64_t _duration; // Total combined duration of input. + ++ bool _finished_first_frame_read; // Whether we have finished the first frame read from this input. ++ + video_frame _video_frame; // Video frame template for currently active video stream. + audio_blob _audio_blob; // Audio blob template for currently active audio stream. + subtitle_box _subtitle_box; // Subtitle box template for currently active subtitle stream. +diff --git a/src/video_output.cpp b/src/video_output.cpp +index 10a5a25..b53d847 100644 +--- a/src/video_output.cpp ++++ b/src/video_output.cpp +@@ -1,7 +1,7 @@ + /* + * This file is part of bino, a 3D video player. + * +- * Copyright (C) 2010, 2011, 2012, 2013, 2015 ++ * Copyright (C) 2010, 2011, 2012, 2013, 2015, 2018 + * Martin Lambers + * Frédéric Devernay + * Joe +@@ -1282,6 +1282,10 @@ void video_output::display_current_frame( + glUniform1f(glGetUniformLocation(_render_prg, "parallax"), + _render_params.parallax() * 0.05f + * (_render_params.stereo_mode_swap() ? -1 : +1)); ++ glUniform1f(glGetUniformLocation(_render_prg, "vertical_shift_left"), ++ _render_params.vertical_pixel_shift_left() / frame.height); ++ glUniform1f(glGetUniformLocation(_render_prg, "vertical_shift_right"), ++ _render_params.vertical_pixel_shift_right() / frame.height); + if (render_needs_subtitle(_render_params)) { + glActiveTexture(GL_TEXTURE2); + glBindTexture(GL_TEXTURE_2D, (_subtitle[_active_index].is_valid() +diff --git a/src/video_output_qt.cpp b/src/video_output_qt.cpp +index e9350d5..b8fb604 100644 +--- a/src/video_output_qt.cpp ++++ b/src/video_output_qt.cpp +@@ -1121,6 +1121,8 @@ void video_output_qt::receive_notification(const notification& note) + #endif // HAVE_LIBXNVCTRL + || note.type == notification::crop_aspect_ratio + || note.type == notification::parallax ++ || note.type == notification::vertical_pixel_shift_left ++ || note.type == notification::vertical_pixel_shift_right + || note.type == notification::ghostbust)) { + _widget->redisplay(); + } +diff --git a/src/video_output_render.fs.glsl b/src/video_output_render.fs.glsl +index 39f3498..e853f57 100644 +--- a/src/video_output_render.fs.glsl ++++ b/src/video_output_render.fs.glsl +@@ -1,7 +1,7 @@ + /* + * This file is part of bino, a 3D video player. + * +- * Copyright (C) 2010, 2011, 2012 ++ * Copyright (C) 2010, 2011, 2012, 2018 + * Martin Lambers + * Frédéric Devernay + * +@@ -59,6 +59,8 @@ + uniform sampler2D rgb_l; + uniform sampler2D rgb_r; + uniform float parallax; ++uniform float vertical_shift_left; ++uniform float vertical_shift_right; + + #if defined(subtitle_enabled) + uniform sampler2D subtitle; +@@ -145,11 +147,11 @@ vec3 adjust_color(vec3 rgb) + + vec3 tex_l(vec2 texcoord) + { +- return adjust_color(texture2D(rgb_l, texcoord + vec2(parallax, 0.0)).rgb); ++ return adjust_color(texture2D(rgb_l, texcoord + vec2(parallax, vertical_shift_left)).rgb); + } + vec3 tex_r(vec2 texcoord) + { +- return adjust_color(texture2D(rgb_r, texcoord - vec2(parallax, 0.0)).rgb); ++ return adjust_color(texture2D(rgb_r, texcoord + vec2(-parallax, vertical_shift_right)).rgb); + } + + #if defined(subtitle_enabled) diff --git a/PKGBUILD b/PKGBUILD index d60bdf9..82192c7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,36 +1,33 @@ -# Maintainer: Manuel Hüsers +# Maintainer: Manuel Hüsers # Contributor: Jose Riha # Contributor: archtux pkgname=bino pkgver=1.6.7 -pkgrel=1 +pkgrel=2 pkgdesc='3D video player with multi-display support' arch=('i686' 'x86_64') url='https://bino3d.org/' license=('GPL3') depends=('ffmpeg' 'freealut' 'freeglut' 'glewmx' 'libass' 'qt5-base') optdepends=('lirc: infrared remote control') -source=(https://bino3d.org/releases/bino-1.6.7.tar.xz{,.sig}) -sha512sums=('ae8f72b200100664b9fd55963371ce64a2f39e240676494d69b422d662f2295560ba458eb04707b82f88d3c6b3fab98a1ecb40d74799300f96b8eb8be680c9b8' +source=(00700a3.patch https://bino3d.org/releases/bino-1.6.7.tar.xz{,.sig}) +sha512sums=('2923f3818cbbf979e5ba77d731a5d05525472a8ac7419a716bf2b298af6c8fe21f87fb63653460c729169ec76497a9a300d646cd308fd905e730d4fc65140ac8' + 'ae8f72b200100664b9fd55963371ce64a2f39e240676494d69b422d662f2295560ba458eb04707b82f88d3c6b3fab98a1ecb40d74799300f96b8eb8be680c9b8' 'SKIP') validpgpkeys=('2F61B4828BBA779AECB3F32703A2A4AB1E32FD34') prepare() { cd "${srcdir}/${pkgname}-${pkgver}" - sed -i 's/CXXFLAGS -fPIE/& -fPIC/' configure + patch -p1 -i ../00700a3.patch } build() { cd "${srcdir}/${pkgname}-${pkgver}" - # libglewmx* env variables are to fix compilation issue - # when both glew and glew1.6 are installed - # details at https://gitlab.marlam.de/marlam/bino/issues/1 - libglewmx_CFLAGS="$(pkg-config --cflags glew)" libglewmx_LIBS="$(pkg-config --libs glew)" ./configure \ - --prefix=/usr \ - --with-qt-version=5 \ - #--with-xnvctrl # Enable NVIDIA Quadro SDI output - sed -i '/am__append_.* = -DGLEW_MX/d' src/Makefile + ./configure \ + --prefix=/usr \ + --with-qt-version=5 \ + #--with-xnvctrl # Enable NVIDIA Quadro SDI output make } From fc9cc86c966e6d43dd9f4a3e0913c6f2328e2ffe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 17 Oct 2021 10:16:20 +0200 Subject: [PATCH 231/971] Rename package since it is a vcs package --- .SRCINFO | 8 +++++--- PKGBUILD | 10 ++++++---- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index f28ae27..71c5369 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,13 +1,15 @@ -pkgbase = polkit-explorer +pkgbase = polkit-explorer-git pkgdesc = Present PolicyKit information in a human-readable form. pkgver = 15.fac8d70 - pkgrel = 1 + pkgrel = 2 url = https://github.com/scarygliders/polkit-explorer arch = any license = ISC depends = python-pyqt5 depends = python-lxml + provides = polkit-explorer + conflicts = polkit-explorer source = git://github.com/scarygliders/polkit-explorer.git sha256sums = SKIP -pkgname = polkit-explorer +pkgname = polkit-explorer-git diff --git a/PKGBUILD b/PKGBUILD index 4a4819e..79e9b8a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,15 +1,17 @@ # Maintainer: Manuel Hüsers # Contributor: Alad Wenter -pkgname=polkit-explorer +pkgname=polkit-explorer-git pkgver=15.fac8d70 -pkgrel=1 +pkgrel=2 pkgdesc='Present PolicyKit information in a human-readable form.' arch=('any') -url="https://github.com/scarygliders/${pkgname}" +url="https://github.com/scarygliders/${pkgname//-git}" license=('ISC') depends=('python-pyqt5' 'python-lxml') -source=("git://github.com/scarygliders/${pkgname}.git") +conflicts=('polkit-explorer') +provides=('polkit-explorer') +source=("git://github.com/scarygliders/${pkgname//-git}.git") sha256sums=('SKIP') pkgver() { From 3e9025506dd3d0e127aff87b2562b3e854bd03d1 Mon Sep 17 00:00:00 2001 From: Daniel Peukert Date: Tue, 19 Oct 2021 07:43:10 +0200 Subject: [PATCH 232/971] Update spot-client to 0.2.1 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 3c7f11e..d0eff05 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client - pkgver = 0.2.0.1 + pkgver = 0.2.1 pkgrel = 1 url = https://github.com/xou816/spot arch = x86_64 @@ -24,7 +24,7 @@ pkgbase = spot-client depends = openssl depends = pango optdepends = org.freedesktop.secrets - source = spot-client-0.2.0.1-1.tar.gz::https://github.com/xou816/spot/archive/0.2.0.1.tar.gz - sha512sums = 2e0dd5b68d8f46fbf59d25fe37726f657d74d785b4c557b7665604dbc1b68bd288db003fa100b631f58aaa7f4a4f8aea361793c68ae9c52b6356fedbfe8a6296 + source = spot-client-0.2.1-1.tar.gz::https://github.com/xou816/spot/archive/0.2.1.tar.gz + sha512sums = 11230a686a70e3719ddc29e3442efeafdb2e56f074e4c2f8c7595b9cd1e05f0c7874f046662cc5b36ba1adc8476814090c1232038be4a2d91e8dc75478b725ab pkgname = spot-client diff --git a/PKGBUILD b/PKGBUILD index fbf6a4a..ed6a5e7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: NicoHood _projectname='spot' pkgname="$_projectname-client" -pkgver='0.2.0.1' +pkgver='0.2.1' pkgrel='1' pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -13,7 +13,7 @@ optdepends=('org.freedesktop.secrets') makedepends=('cargo' 'meson>=0.50.0') checkdepends=('appstream-glib') source=("$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz") -sha512sums=('2e0dd5b68d8f46fbf59d25fe37726f657d74d785b4c557b7665604dbc1b68bd288db003fa100b631f58aaa7f4a4f8aea361793c68ae9c52b6356fedbfe8a6296') +sha512sums=('11230a686a70e3719ddc29e3442efeafdb2e56f074e4c2f8c7595b9cd1e05f0c7874f046662cc5b36ba1adc8476814090c1232038be4a2d91e8dc75478b725ab') validpgpkeys=() # waiting for https://github.com/xou816/spot/issues/283 _sourcedirectory="$_projectname-$pkgver" From 632e1c526ec41b0d250d2717023e34439a8f1395 Mon Sep 17 00:00:00 2001 From: Brad Erhart <> Date: Wed, 20 Oct 2021 04:05:38 -0700 Subject: [PATCH 233/971] Updating gVisor to v20211011.0 Signed-off-by: Brad Erhart <> --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index c0da96e..51f83cf 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20211005.0 + pkgver = 20211011.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,7 +11,7 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20211005.0::https://storage.googleapis.com/gvisor/releases/release/20211005/x86_64/runsc - b2sums = 75d8ab4cef282eeff2fb5e47696aec8918693dc598d98b87dee01dc16156b7bde3272e6828dc5d2c9d2c32fe34c5997e052d1059cf85af601ec317ab094ed219 + source = gvisor-bin-20211011.0::https://storage.googleapis.com/gvisor/releases/release/20211011/x86_64/runsc + b2sums = 4e668b5924dfb56c9aa5d3be413d4861ed960cefb9fed68e15d40ef4ac7ffa85b154e4a80c15ebe58281626529729891cada80bd646c8dd5d2a1236c9e5c0e6c pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 1f6bf22..c6cb6b1 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20211005.0 +pkgver=20211011.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/$arch/$_pkgname") -b2sums=(75d8ab4cef282eeff2fb5e47696aec8918693dc598d98b87dee01dc16156b7bde3272e6828dc5d2c9d2c32fe34c5997e052d1059cf85af601ec317ab094ed219) +b2sums=(4e668b5924dfb56c9aa5d3be413d4861ed960cefb9fed68e15d40ef4ac7ffa85b154e4a80c15ebe58281626529729891cada80bd646c8dd5d2a1236c9e5c0e6c) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From e345a9fc958ec92be4b3ef5173375e0c49040ed9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 25 Oct 2021 13:06:55 +0200 Subject: [PATCH 234/971] Update to build 4120 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 1fc1aec..2679e46 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4118 + pkgver = 4.4120 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4118_x64.tar.xz - sha256sums_x86_64 = 1cc5a4db95eb1c27f75d1be539bbab45b459744c4250d640aedf839a05ccfea9 - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4118_arm64.tar.xz - sha256sums_aarch64 = a475a0a0defa1f1435570404def0933536ecfb989e9dd5a7800f6d4275823f39 + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4120_x64.tar.xz + sha256sums_x86_64 = 91b5d2c869d479e214aa887e67b09ff3a49aa662cf8f197aae495f63dd136598 + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4120_arm64.tar.xz + sha256sums_aarch64 = 0086295272370ef73fb28d1e23e1bcb4e76bf0cb62827d61d34fa531c64e6fb4 pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index ace114d..6f45bae 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4118 +pkgver=4.4120 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('1cc5a4db95eb1c27f75d1be539bbab45b459744c4250d640aedf839a05ccfea9') -sha256sums_aarch64=('a475a0a0defa1f1435570404def0933536ecfb989e9dd5a7800f6d4275823f39') +sha256sums_x86_64=('91b5d2c869d479e214aa887e67b09ff3a49aa662cf8f197aae495f63dd136598') +sha256sums_aarch64=('0086295272370ef73fb28d1e23e1bcb4e76bf0cb62827d61d34fa531c64e6fb4') package() { cd "${srcdir}" From 43edaeb8093ecd482fc0470e37004e0deb573634 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 26 Oct 2021 21:59:41 +0200 Subject: [PATCH 235/971] Update to build 4121 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 2679e46..76deeb4 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4120 + pkgver = 4.4121 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4120_x64.tar.xz - sha256sums_x86_64 = 91b5d2c869d479e214aa887e67b09ff3a49aa662cf8f197aae495f63dd136598 - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4120_arm64.tar.xz - sha256sums_aarch64 = 0086295272370ef73fb28d1e23e1bcb4e76bf0cb62827d61d34fa531c64e6fb4 + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4121_x64.tar.xz + sha256sums_x86_64 = 084fcf79457c320d59da1f0e58c85a7a63956bde41d64db01ec86df2554fc5e6 + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4121_arm64.tar.xz + sha256sums_aarch64 = 7af7845b402aea98a6d259d0e817c849168182881ea1f80b98e5729525688f08 pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 6f45bae..a78649c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4120 +pkgver=4.4121 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('91b5d2c869d479e214aa887e67b09ff3a49aa662cf8f197aae495f63dd136598') -sha256sums_aarch64=('0086295272370ef73fb28d1e23e1bcb4e76bf0cb62827d61d34fa531c64e6fb4') +sha256sums_x86_64=('084fcf79457c320d59da1f0e58c85a7a63956bde41d64db01ec86df2554fc5e6') +sha256sums_aarch64=('7af7845b402aea98a6d259d0e817c849168182881ea1f80b98e5729525688f08') package() { cd "${srcdir}" From d5c1c76f9a13eeb821ec6be0d252d7cba23d618f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 26 Oct 2021 21:59:47 +0200 Subject: [PATCH 236/971] Update to build 4121 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index e74f29f..9caf3a2 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-4 pkgdesc = Sophisticated text editor for code, html and prose - stable build - pkgver = 4.4113 + pkgver = 4.4121 pkgrel = 1 url = https://www.sublimetext.com/download install = sublime-text-4.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-4 conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4113_x64.tar.xz - sha256sums_x86_64 = 900ef90fc6453efc4c2b36132a5f16a4db67a226fa9732e4d3c1bf586d4dc78c - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4113_arm64.tar.xz - sha256sums_aarch64 = 63d536e4c1ff8ca13bbf19fdfacbdeedd6af783f759824500faa4216d978e641 + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4121_x64.tar.xz + sha256sums_x86_64 = 084fcf79457c320d59da1f0e58c85a7a63956bde41d64db01ec86df2554fc5e6 + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4121_arm64.tar.xz + sha256sums_aarch64 = 7af7845b402aea98a6d259d0e817c849168182881ea1f80b98e5729525688f08 pkgname = sublime-text-4 diff --git a/PKGBUILD b/PKGBUILD index a5795de..385bc45 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Manuel Hüsers pkgname=sublime-text-4 -pkgver=4.4113 +pkgver=4.4121 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - stable build" arch=('x86_64' 'aarch64') @@ -18,8 +18,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('900ef90fc6453efc4c2b36132a5f16a4db67a226fa9732e4d3c1bf586d4dc78c') -sha256sums_aarch64=('63d536e4c1ff8ca13bbf19fdfacbdeedd6af783f759824500faa4216d978e641') +sha256sums_x86_64=('084fcf79457c320d59da1f0e58c85a7a63956bde41d64db01ec86df2554fc5e6') +sha256sums_aarch64=('7af7845b402aea98a6d259d0e817c849168182881ea1f80b98e5729525688f08') package() { cd "${srcdir}" From a3ef3a7b7b95379d4ab6321ab2342be76f07431b Mon Sep 17 00:00:00 2001 From: Brad Erhart <> Date: Thu, 28 Oct 2021 23:19:25 -0700 Subject: [PATCH 237/971] Updating gVisor to v20211019.0 Signed-off-by: Brad Erhart <> --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 51f83cf..78b2971 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20211011.0 + pkgver = 20211019.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,7 +11,7 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20211011.0::https://storage.googleapis.com/gvisor/releases/release/20211011/x86_64/runsc - b2sums = 4e668b5924dfb56c9aa5d3be413d4861ed960cefb9fed68e15d40ef4ac7ffa85b154e4a80c15ebe58281626529729891cada80bd646c8dd5d2a1236c9e5c0e6c + source = gvisor-bin-20211019.0::https://storage.googleapis.com/gvisor/releases/release/20211019/x86_64/runsc + b2sums = 97429ebf1e2f8820e6b083621248f0ef7151a494e6acc9a4184c756a5448c5e8cc607b9d45ebaea5134220c6f38c74369ca01f64bdb619047d132c04b2dbc966 pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index c6cb6b1..d5d39f4 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20211011.0 +pkgver=20211019.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/$arch/$_pkgname") -b2sums=(4e668b5924dfb56c9aa5d3be413d4861ed960cefb9fed68e15d40ef4ac7ffa85b154e4a80c15ebe58281626529729891cada80bd646c8dd5d2a1236c9e5c0e6c) +b2sums=(97429ebf1e2f8820e6b083621248f0ef7151a494e6acc9a4184c756a5448c5e8cc607b9d45ebaea5134220c6f38c74369ca01f64bdb619047d132c04b2dbc966) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From 6780330b8881a120f23774f80faca9cfb6607447 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 3 Nov 2021 16:22:08 +0100 Subject: [PATCH 238/971] Update to build 4122 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 76deeb4..d55d3f1 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4121 + pkgver = 4.4122 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4121_x64.tar.xz - sha256sums_x86_64 = 084fcf79457c320d59da1f0e58c85a7a63956bde41d64db01ec86df2554fc5e6 - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4121_arm64.tar.xz - sha256sums_aarch64 = 7af7845b402aea98a6d259d0e817c849168182881ea1f80b98e5729525688f08 + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4122_x64.tar.xz + sha256sums_x86_64 = e8e3aed50a790beaf47c7551b1d178c1d56c681206175228255d439011bb6b4c + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4122_arm64.tar.xz + sha256sums_aarch64 = efff4430bf7df68f0027c756ef8e8e0f502bd61e811d18b80a12faf0b153cc17 pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index a78649c..1a1183a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4121 +pkgver=4.4122 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('084fcf79457c320d59da1f0e58c85a7a63956bde41d64db01ec86df2554fc5e6') -sha256sums_aarch64=('7af7845b402aea98a6d259d0e817c849168182881ea1f80b98e5729525688f08') +sha256sums_x86_64=('e8e3aed50a790beaf47c7551b1d178c1d56c681206175228255d439011bb6b4c') +sha256sums_aarch64=('efff4430bf7df68f0027c756ef8e8e0f502bd61e811d18b80a12faf0b153cc17') package() { cd "${srcdir}" From 2bd43ec6317eebcc8bc0b1b86e694f8e51dbfd0c Mon Sep 17 00:00:00 2001 From: Jonathan Liu Date: Thu, 4 Nov 2021 16:00:03 +1100 Subject: [PATCH 239/971] Update to 0.0.26-1 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 2b2d467..72090d9 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = wxedid pkgdesc = wxWidgets-based EDID (Extended Display Identification Data) editor - pkgver = 0.0.25 + pkgver = 0.0.26 pkgrel = 1 url = https://sourceforge.net/projects/wxedid/ arch = i686 @@ -8,7 +8,7 @@ pkgbase = wxedid license = GPL3 depends = wxgtk2 options = !buildflags - source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.25.tar.gz - md5sums = e4cd5b0de4f07284de352381aa59fc75 + source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.26.tar.gz + md5sums = 4cb73258660412806fc0af408f8decbc pkgname = wxedid diff --git a/PKGBUILD b/PKGBUILD index 0731734..71accdd 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Jonathan Liu pkgname=wxedid -pkgver=0.0.25 +pkgver=0.0.26 pkgrel=1 pkgdesc="wxWidgets-based EDID (Extended Display Identification Data) editor" arch=('i686' 'x86_64') @@ -9,7 +9,7 @@ license=('GPL3') depends=('wxgtk2') options=('!buildflags') source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz") -md5sums=('e4cd5b0de4f07284de352381aa59fc75') +md5sums=('4cb73258660412806fc0af408f8decbc') build() { cd "$pkgname-$pkgver" From a0f85a97f6150ccf5acc88c49f9e73413e8a1564 Mon Sep 17 00:00:00 2001 From: Brad Erhart <> Date: Sat, 6 Nov 2021 19:54:00 -0700 Subject: [PATCH 240/971] Updating gVisor to v20211101.0 Signed-off-by: Brad Erhart <> --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 78b2971..ed0669d 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20211019.0 + pkgver = 20211101.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,7 +11,7 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20211019.0::https://storage.googleapis.com/gvisor/releases/release/20211019/x86_64/runsc - b2sums = 97429ebf1e2f8820e6b083621248f0ef7151a494e6acc9a4184c756a5448c5e8cc607b9d45ebaea5134220c6f38c74369ca01f64bdb619047d132c04b2dbc966 + source = gvisor-bin-20211101.0::https://storage.googleapis.com/gvisor/releases/release/20211101/x86_64/runsc + b2sums = 3634917346ae5cf4ec64650214cc8f8948eabd095dbf0475ecd29f34460e0bffbcf5a14fecdbfb5eabdaf02255ded13e53c841f258ca7dd8170e42e362cae02e pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index d5d39f4..7a96b05 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20211019.0 +pkgver=20211101.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/$arch/$_pkgname") -b2sums=(97429ebf1e2f8820e6b083621248f0ef7151a494e6acc9a4184c756a5448c5e8cc607b9d45ebaea5134220c6f38c74369ca01f64bdb619047d132c04b2dbc966) +b2sums=(3634917346ae5cf4ec64650214cc8f8948eabd095dbf0475ecd29f34460e0bffbcf5a14fecdbfb5eabdaf02255ded13e53c841f258ca7dd8170e42e362cae02e) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From ddfec238c33c20f318c80bc47e4546963dba57fd Mon Sep 17 00:00:00 2001 From: Daniel Peukert Date: Wed, 10 Nov 2021 18:26:46 +0100 Subject: [PATCH 241/971] Update spot-client to 0.2.2 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index d0eff05..d9509a7 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client - pkgver = 0.2.1 + pkgver = 0.2.2 pkgrel = 1 url = https://github.com/xou816/spot arch = x86_64 @@ -24,7 +24,7 @@ pkgbase = spot-client depends = openssl depends = pango optdepends = org.freedesktop.secrets - source = spot-client-0.2.1-1.tar.gz::https://github.com/xou816/spot/archive/0.2.1.tar.gz - sha512sums = 11230a686a70e3719ddc29e3442efeafdb2e56f074e4c2f8c7595b9cd1e05f0c7874f046662cc5b36ba1adc8476814090c1232038be4a2d91e8dc75478b725ab + source = spot-client-0.2.2-1.tar.gz::https://github.com/xou816/spot/archive/0.2.2.tar.gz + sha512sums = 997db5a651deb3290048a7283ee9f3b49387c51d6128a03ed3cf35b03df4db206d2502923df7ab45a0ef9fc45522c452edc74d4f16ccced8ca264a00e151887a pkgname = spot-client diff --git a/PKGBUILD b/PKGBUILD index ed6a5e7..0509d42 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: NicoHood _projectname='spot' pkgname="$_projectname-client" -pkgver='0.2.1' +pkgver='0.2.2' pkgrel='1' pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -13,7 +13,7 @@ optdepends=('org.freedesktop.secrets') makedepends=('cargo' 'meson>=0.50.0') checkdepends=('appstream-glib') source=("$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz") -sha512sums=('11230a686a70e3719ddc29e3442efeafdb2e56f074e4c2f8c7595b9cd1e05f0c7874f046662cc5b36ba1adc8476814090c1232038be4a2d91e8dc75478b725ab') +sha512sums=('997db5a651deb3290048a7283ee9f3b49387c51d6128a03ed3cf35b03df4db206d2502923df7ab45a0ef9fc45522c452edc74d4f16ccced8ca264a00e151887a') validpgpkeys=() # waiting for https://github.com/xou816/spot/issues/283 _sourcedirectory="$_projectname-$pkgver" From 1942cf761f7723ffdf5776afefcbff4018e2acd8 Mon Sep 17 00:00:00 2001 From: Brad Erhart <> Date: Fri, 19 Nov 2021 00:12:46 -0800 Subject: [PATCH 242/971] Updating gVisor to v20211115.0 Signed-off-by: Brad Erhart <> --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index ed0669d..7f17f9a 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20211101.0 + pkgver = 20211115.0 pkgrel = 1 url = https://gvisor.dev install = gvisor-bin.install @@ -11,7 +11,7 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20211101.0::https://storage.googleapis.com/gvisor/releases/release/20211101/x86_64/runsc - b2sums = 3634917346ae5cf4ec64650214cc8f8948eabd095dbf0475ecd29f34460e0bffbcf5a14fecdbfb5eabdaf02255ded13e53c841f258ca7dd8170e42e362cae02e + source = gvisor-bin-20211115.0::https://storage.googleapis.com/gvisor/releases/release/20211115/x86_64/runsc + b2sums = 7453fb4f4ec503e29f535497783c0c98bc1a7a26325217e696b1f4f4cb1dd6577ecb6d8fa94cda2194d820f3a6e26c68793d0eaff52e3128f07334381089ecc9 pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 7a96b05..64e0ccb 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=gvisor-bin _pkgname=runsc -pkgver=20211101.0 +pkgver=20211115.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -19,7 +19,7 @@ conflicts=( ) install="$pkgname.install" source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/$arch/$_pkgname") -b2sums=(3634917346ae5cf4ec64650214cc8f8948eabd095dbf0475ecd29f34460e0bffbcf5a14fecdbfb5eabdaf02255ded13e53c841f258ca7dd8170e42e362cae02e) +b2sums=(7453fb4f4ec503e29f535497783c0c98bc1a7a26325217e696b1f4f4cb1dd6577ecb6d8fa94cda2194d820f3a6e26c68793d0eaff52e3128f07334381089ecc9) package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From c044ef597395464e9e4e96289acd7a1ab380516b Mon Sep 17 00:00:00 2001 From: Christian Pellegrin Date: Sun, 21 Nov 2021 21:14:49 +0000 Subject: [PATCH 243/971] upgpkg: systemtap 4.6-1 upstream release --- .SRCINFO | 13 ++- ...error-for-wrong-type-of-printf-width.patch | 60 ++++++++++ 0002-configury-let-python3-be-python3.patch | 103 ++++++++++++++++++ PKGBUILD | 25 ++++- 4 files changed, 191 insertions(+), 10 deletions(-) create mode 100644 0001-Fix-Werror-for-wrong-type-of-printf-width.patch create mode 100644 0002-configury-let-python3-be-python3.patch diff --git a/.SRCINFO b/.SRCINFO index ff0273a..28e4073 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = systemtap pkgdesc = Infrastructure to simplify the gathering of information about the running Linux system - pkgver = 4.5 + pkgver = 4.6 pkgrel = 1 url = http://sourceware.org/systemtap/ install = systemtap.install @@ -8,18 +8,23 @@ pkgbase = systemtap arch = i686 license = GPL makedepends = python-setuptools + makedepends = python2-setuptools makedepends = xmlto depends = elfutils depends = nss depends = python depends = cpio optdepends = sqlite3: for storing results in a database - source = systemtap-4.5.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-4.5.tar.gz - source = systemtap-4.5.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/systemtap-4.5.tar.gz.asc + source = systemtap-4.6.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-4.6.tar.gz + source = systemtap-4.6.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/systemtap-4.6.tar.gz.asc + source = 0001-Fix-Werror-for-wrong-type-of-printf-width.patch + source = 0002-configury-let-python3-be-python3.patch validpgpkeys = F75E6545B9F8AA15AA932A444DE16D68FDBFFFB8 validpgpkeys = 5D38116FA4D3A7CC77E378D37E83610126DCC2E8 validpgpkeys = 159B0DF71150B8A8539A8802D7C256443CC637CA - sha512sums = 8136779a9f5cb0fbaae565eab1ab6fa307f1024dfc2c6c3845acfadff0eecc684ba89aa5d442c7b90c2c73edaab41ca07bae2bad8361f80fe8e9928b40466cd3 + sha512sums = 835b45597e9de0ea17857b47d542c87d155cb5c772f8595f41845a25ff06b862cb9c4b635292c3a6c66cb5255a07eee3af7cb7861110a4a05f545a4b35f11402 sha512sums = SKIP + sha512sums = da1b3d2319bfd711ba7e2e436cd476cbc7a63d442d8ad26fc010c219b9ca2343054a061767f0acc624620dc1eb3ca5a70ab130895181ed8e00c05b51ac651568 + sha512sums = 26dc15751040ac444a74046cdb2f5cad456752f06d0916ef3f97e5faf98e1f382b638adb850ed98b287b72dea63c7a16c5ad98b9ad452da4042a1ae36260a54e pkgname = systemtap diff --git a/0001-Fix-Werror-for-wrong-type-of-printf-width.patch b/0001-Fix-Werror-for-wrong-type-of-printf-width.patch new file mode 100644 index 0000000..168dee0 --- /dev/null +++ b/0001-Fix-Werror-for-wrong-type-of-printf-width.patch @@ -0,0 +1,60 @@ +From bd29667acb81d237261b035ed5cab8173dddf9a8 Mon Sep 17 00:00:00 2001 +From: Christian Pellegrin +Date: Sun, 21 Nov 2021 14:46:29 +0000 +Subject: [PATCH 1/2] Fix -Werror for wrong type of printf width. + +Signed-off-by: Christian Pellegrin +--- + staprun/monitor.c | 24 ++++++++++++------------ + 1 file changed, 12 insertions(+), 12 deletions(-) + +diff --git a/staprun/monitor.c b/staprun/monitor.c +index 478634c09..848bd7ea9 100644 +--- a/staprun/monitor.c ++++ b/staprun/monitor.c +@@ -448,12 +448,12 @@ void monitor_render(void) + if (active_window == 0) + wattron(status, A_BOLD); + wprintw(status, "\n%*s\t%*s\t%*s\t%*s\t%*s\t%*s\t%s\n", +- width[p_index], HIGHLIGHT("index", p_index, comp_fn_index), +- width[p_state], HIGHLIGHT("state", p_state, comp_fn_index), +- width[p_hits], HIGHLIGHT("hits", p_hits, comp_fn_index), +- width[p_min], HIGHLIGHT("min", p_min, comp_fn_index), +- width[p_avg], HIGHLIGHT("avg", p_avg, comp_fn_index), +- width[p_max], HIGHLIGHT("max", p_max, comp_fn_index), ++ (int) width[p_index], HIGHLIGHT("index", p_index, comp_fn_index), ++ (int) width[p_state], HIGHLIGHT("state", p_state, comp_fn_index), ++ (int) width[p_hits], HIGHLIGHT("hits", p_hits, comp_fn_index), ++ (int) width[p_min], HIGHLIGHT("min", p_min, comp_fn_index), ++ (int) width[p_avg], HIGHLIGHT("avg", p_avg, comp_fn_index), ++ (int) width[p_max], HIGHLIGHT("max", p_max, comp_fn_index), + HIGHLIGHT("name", p_name, comp_fn_index)); + if (active_window == 0) + wattroff(status, A_BOLD); +@@ -466,17 +466,17 @@ void monitor_render(void) + json_object *probe, *field; + probe = json_object_array_get_idx(jso_probe_list, i); + json_object_object_get_ex(probe, "index", &field); +- wprintw(status, "%*s\t", width[p_index], json_object_get_string(field)); ++ wprintw(status, "%*s\t", (int) width[p_index], json_object_get_string(field)); + json_object_object_get_ex(probe, "state", &field); +- wprintw(status, "%*s\t", width[p_state], json_object_get_string(field)); ++ wprintw(status, "%*s\t", (int) width[p_state], json_object_get_string(field)); + json_object_object_get_ex(probe, "hits", &field); +- wprintw(status, "%*s\t", width[p_hits], json_object_get_string(field)); ++ wprintw(status, "%*s\t", (int) width[p_hits], json_object_get_string(field)); + json_object_object_get_ex(probe, "min", &field); +- wprintw(status, "%*s\t", width[p_min], json_object_get_string(field)); ++ wprintw(status, "%*s\t", (int) width[p_min], json_object_get_string(field)); + json_object_object_get_ex(probe, "avg", &field); +- wprintw(status, "%*s\t", width[p_avg], json_object_get_string(field)); ++ wprintw(status, "%*s\t", (int) width[p_avg], json_object_get_string(field)); + json_object_object_get_ex(probe, "max", &field); +- wprintw(status, "%*s\t", width[p_max], json_object_get_string(field)); ++ wprintw(status, "%*s\t", (int) width[p_max], json_object_get_string(field)); + getyx(status, discard, cur_x); + json_object_object_get_ex(probe, "name", &field); + wprintw(status, "%.*s", max_cols-cur_x-1, json_object_get_string(field)); +-- +2.34.0 + diff --git a/0002-configury-let-python3-be-python3.patch b/0002-configury-let-python3-be-python3.patch new file mode 100644 index 0000000..421ec4c --- /dev/null +++ b/0002-configury-let-python3-be-python3.patch @@ -0,0 +1,103 @@ +From 6803c3b91f423c0aa2b4fbc1e5081ac7fb216e2f Mon Sep 17 00:00:00 2001 +From: "Frank Ch. Eigler" +Date: Fri, 19 Nov 2021 22:22:45 -0500 +Subject: [PATCH 2/2] configury: let python3 be python3 + +Our baroque heuristics for identifying python2/3 under their various +historical aliases is showing its age. On some modern distros, +/usr/bin/python is to be positively NOT used. Fixing configure.ac +$PYTHON3 search to only look for python3, and not even consider +$PYTHON_UNKNOWN. At some point we'll want to simplify further, and +get rid of python2 remnants. + +Signed-off-by: Christian Pellegrin +--- + configure | 45 +-------------------------------------------- + configure.ac | 8 ++------ + 2 files changed, 3 insertions(+), 50 deletions(-) + +diff --git a/configure b/configure +index 6d0d53992..962323156 100755 +--- a/configure ++++ b/configure +@@ -9350,49 +9350,7 @@ fi + as_fn_append ac_configure_args " python='$PYTHON' pyexecdir='$pyexecdir'" + + # Now let's try to find python version 3. +-if test "x$PYTHON_UNKNOWN" != "xno" -a "x$ac_cv_python_unknown_version" = "x3"; then +- # Extract the first word of "python", so it can be a program name with args. +-set dummy python; ac_word=$2 +-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } +-if ${ac_cv_path_PYTHON3+:} false; then : +- $as_echo_n "(cached) " >&6 +-else +- case $PYTHON3 in +- [\\/]* | ?:[\\/]*) +- ac_cv_path_PYTHON3="$PYTHON3" # Let the user override the test with a path. +- ;; +- *) +- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then +- ac_cv_path_PYTHON3="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 +- fi +-done +- done +-IFS=$as_save_IFS +- +- ;; +-esac +-fi +-PYTHON3=$ac_cv_path_PYTHON3 +-if test -n "$PYTHON3"; then +- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON3" >&5 +-$as_echo "$PYTHON3" >&6; } +-else +- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +-$as_echo "no" >&6; } +-fi +- +- +-else +- for ac_prog in python3 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python3.1 python3.0 ++for ac_prog in python3 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python3.1 python3.0 + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +@@ -9438,7 +9396,6 @@ fi + done + test -n "$PYTHON3" || PYTHON3=":" + +-fi + python3_basename=$(basename "$PYTHON3") + + cat >>confdefs.h <<_ACEOF +diff --git a/configure.ac b/configure.ac +index b0a823604..d1b124763 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -88,12 +88,8 @@ fi + AS_VAR_APPEND([ac_configure_args], [" python='$PYTHON' pyexecdir='$pyexecdir'"]) + + # Now let's try to find python version 3. +-if test "x$PYTHON_UNKNOWN" != "xno" -a "x$ac_cv_python_unknown_version" = "x3"; then +- AC_PATH_PROG([PYTHON3], [python]) +-else +- AC_PATH_PROGS([PYTHON3], +- [python3 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python3.1 python3.0], [:]) +-fi ++AC_PATH_PROGS([PYTHON3], ++ [python3 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python3.1 python3.0], [:]) + python3_basename=$(basename "$PYTHON3") + AC_DEFINE_UNQUOTED([PYTHON3_BASENAME], "${python3_basename}", + [Base name of the python3 interpreter binary.]) +-- +2.34.0 + diff --git a/PKGBUILD b/PKGBUILD index 18acbe7..e85d853 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,20 +4,24 @@ # Original Maintainer: Christian Rebischke # Original Maintainer: dront78 pkgname=systemtap -pkgver=4.5 +pkgver=4.6 pkgrel=1 pkgdesc="Infrastructure to simplify the gathering of information about the running Linux system" url="http://sourceware.org/systemtap/" arch=('x86_64' 'i686') license=('GPL') depends=('elfutils' 'nss' 'python' 'cpio') -makedepends=('python-setuptools' 'xmlto') +makedepends=('python-setuptools' 'python2-setuptools' 'xmlto') optdepends=('sqlite3: for storing results in a database') source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz" "${pkgname}-${pkgver}.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz.asc" + "0001-Fix-Werror-for-wrong-type-of-printf-width.patch" + "0002-configury-let-python3-be-python3.patch" ) -sha512sums=('8136779a9f5cb0fbaae565eab1ab6fa307f1024dfc2c6c3845acfadff0eecc684ba89aa5d442c7b90c2c73edaab41ca07bae2bad8361f80fe8e9928b40466cd3' - 'SKIP') +sha512sums=('835b45597e9de0ea17857b47d542c87d155cb5c772f8595f41845a25ff06b862cb9c4b635292c3a6c66cb5255a07eee3af7cb7861110a4a05f545a4b35f11402' + 'SKIP' + 'da1b3d2319bfd711ba7e2e436cd476cbc7a63d442d8ad26fc010c219b9ca2343054a061767f0acc624620dc1eb3ca5a70ab130895181ed8e00c05b51ac651568' + '26dc15751040ac444a74046cdb2f5cad456752f06d0916ef3f97e5faf98e1f382b638adb850ed98b287b72dea63c7a16c5ad98b9ad452da4042a1ae36260a54e') install='systemtap.install' # Note, you need to run: # gpg --recv-keys --keyserver hkps://keys.openpgp.org/ 0xD7C256443CC637CA @@ -25,8 +29,16 @@ install='systemtap.install' validpgpkeys=('F75E6545B9F8AA15AA932A444DE16D68FDBFFFB8' # "Serhei Makarov (for Red Hat 2018..onwards) " '5D38116FA4D3A7CC77E378D37E83610126DCC2E8' '159B0DF71150B8A8539A8802D7C256443CC637CA') -build() { + +prepare() { cd "${pkgname}-${pkgver}" + for i in "${srcdir}"/*.patch; do + patch -Np1 -i "$i" + done +} + +build() { + cd "${pkgname}-${pkgver}" ./configure \ --prefix=/usr \ --sysconfdir=/etc \ @@ -37,7 +49,8 @@ build() { --localstatedir=/var \ --enable-pie \ --disable-docs \ - --enable-htmldocs + --enable-htmldocs \ + --with-python3 make } From e54aeb92a60aacf6bd747932dc3de20992483784 Mon Sep 17 00:00:00 2001 From: graysky Date: Sun, 12 Dec 2021 06:30:14 -0500 Subject: [PATCH 244/971] Update to 2021.2.0_109-1 --- .SRCINFO | 7 +++---- PKGBUILD | 12 ++++++------ 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 665a980..d8cf03c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,17 +1,16 @@ pkgbase = linpack - pkgver = 2021.1.1.001 + pkgver = 2021.2.0_109 pkgrel = 1 url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download arch = x86_64 license = custom - source = https://software.intel.com/content/dam/develop/external/us/en/documents/l_mklb_p_2021.1.1.001.tgz + source = https://www.intel.com/content/dam/develop/external/us/en/documents/l_onemklbench_p_2021.2.0_109.tgz source = linpack.conf source = linpack_runme_xeon64 - b2sums = 9eb6207f39b1711acb38a35340c264f24f6ba2195a21eaee6957755df7ecbb01a3d14a463e9659b29cfdbcc85f4fbc6bd0fb75db858e26413875c8753090088d + b2sums = 31642cc4fcf478cb8bed8f21b7e099f6d228c11de728c07bc3c19c545c2ba115213430e7a298167c60fc8e58f615cec319137d1bae9d489862ec0f95aedea932 b2sums = cb9e676aab60304f56c1ab099a0a46e0bb2af9beee93b95adbf2661c475c8e5a1ee35c6726f646b98c5cdacbdb1870488526bc0f19de59699c6a550bb2de06b6 b2sums = 1ab0b9fde310496400bfa924c2e1a9206f341102117a64b3b086732394cbc33498708322ffbdf45b117898ed35a34b5107127cfedd9eec0eeb1a3f84d7aeaf63 pkgname = linpack pkgdesc = Benchmark based on linear algebra excellent app for stress testing. backup = etc/linpack.conf - diff --git a/PKGBUILD b/PKGBUILD index 2e4eb44..c88ec54 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,25 +1,25 @@ # Contributor: graysky pkgname=('linpack') -pkgver=2021.1.1.001 -_math_kernel_lib=2021.1.1 +pkgver=2021.2.0_109 +_math_kernel_lib=2021.2.0 pkgrel=1 arch=('x86_64') license=('custom') url="http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download" -source=("https://software.intel.com/content/dam/develop/external/us/en/documents/l_mklb_p_$pkgver.tgz" +source=("https://www.intel.com/content/dam/develop/external/us/en/documents/l_onemklbench_p_$pkgver.tgz" 'linpack.conf' 'linpack_runme_xeon64') -b2sums=('9eb6207f39b1711acb38a35340c264f24f6ba2195a21eaee6957755df7ecbb01a3d14a463e9659b29cfdbcc85f4fbc6bd0fb75db858e26413875c8753090088d' +b2sums=('31642cc4fcf478cb8bed8f21b7e099f6d228c11de728c07bc3c19c545c2ba115213430e7a298167c60fc8e58f615cec319137d1bae9d489862ec0f95aedea932' 'cb9e676aab60304f56c1ab099a0a46e0bb2af9beee93b95adbf2661c475c8e5a1ee35c6726f646b98c5cdacbdb1870488526bc0f19de59699c6a550bb2de06b6' '1ab0b9fde310496400bfa924c2e1a9206f341102117a64b3b086732394cbc33498708322ffbdf45b117898ed35a34b5107127cfedd9eec0eeb1a3f84d7aeaf63') package_linpack() { pkgdesc='Benchmark based on linear algebra excellent app for stress testing.' backup=(etc/linpack.conf) - _base="$srcdir/l_mklb_p_$pkgver/benchmarks_$_math_kernel_lib" + _base="$srcdir/benchmarks_$_math_kernel_lib" _test="$_base/linux/mkl/benchmarks/linpack" install -Dm755 linpack_runme_xeon64 "$pkgdir/usr/bin/linpack_runme_xeon64" install -Dm644 linpack.conf "$pkgdir/usr/share/$pkgname/linpack.conf" - install -Dm644 "$_base/linux/mkl/benchmarks/license.txt" "$pkgdir/usr/share/licenses/linpack/license.txt" + install -Dm644 "$_base/license.txt" "$pkgdir/usr/share/licenses/linpack/license.txt" install -Dm755 "$_test/xlinpack_xeon64" "$pkgdir/usr/bin/xlinpack_xeon64" } From bf2e2cd7893f3aa6aad66d090043d5e503182b61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 13 Dec 2021 12:45:04 +0100 Subject: [PATCH 245/971] Trigger rebuild for Python 3.10 and fix PKGBUILD Thanks to @yochananmarqos for suggesting PKGBUILD changes --- .SRCINFO | 2 +- PKGBUILD | 17 +++++++++++------ 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 6c46282..b5f9747 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system pkgver = 2.16.0 - pkgrel = 1 + pkgrel = 2 url = https://github.com/redhat-performance/tuned install = tuned.install arch = any diff --git a/PKGBUILD b/PKGBUILD index 01b726e..4e0be91 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,7 +5,7 @@ pkgname=tuned pkgver=2.16.0 -pkgrel=1 +pkgrel=2 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url="https://github.com/redhat-performance/${pkgname}" @@ -18,14 +18,19 @@ install="${pkgname}.install" source=("https://github.com/redhat-performance/${pkgname}/archive/v${pkgver}.tar.gz") sha256sums=('7f0b858c35fb9695703f04177af074555de59a7a3e94ec0b7e28357584d4502d') +prepare() { + cd "${pkgname}-${pkgver}" + mv libexec lib + + sed -i 's/libexec/lib/g' Makefile + sed -i 's/sbin/bin/g' Makefile +} + package() { cd "${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install + rm -r "${pkgdir}"/{run,var} - mv "${pkgdir}"/usr/sbin/* "${pkgdir}"/usr/bin/ - mv "${pkgdir}"/usr/libexec/tuned/* "${pkgdir}"/usr/lib/tuned/ - rm -r "${pkgdir}"/run "${pkgdir}"/usr/sbin "${pkgdir}"/usr/libexec - - install -Dm644 "${srcdir}/${pkgname}-${pkgver}/tuned.service" "${pkgdir}/usr/lib/systemd/system/tuned.service" + install -Dm644 tuned.service "${pkgdir}/usr/lib/systemd/system/" } From 7b3aa4604cd32649143b50715a10da31f73beb59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 13 Dec 2021 12:56:07 +0100 Subject: [PATCH 246/971] Update to build 4124 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index d55d3f1..1ba23ef 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4122 + pkgver = 4.4124 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4122_x64.tar.xz - sha256sums_x86_64 = e8e3aed50a790beaf47c7551b1d178c1d56c681206175228255d439011bb6b4c - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4122_arm64.tar.xz - sha256sums_aarch64 = efff4430bf7df68f0027c756ef8e8e0f502bd61e811d18b80a12faf0b153cc17 + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4124_x64.tar.xz + sha256sums_x86_64 = 09bcef0968a5de98e9d27ca48e602153f0c4dfc319b6da0edeada82526ccd4bb + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4124_arm64.tar.xz + sha256sums_aarch64 = ac7aa1fc922c04eb2b1fa54dfecc4fe51b41574b00cc44dc72683659c74a8c22 pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 1a1183a..0d846f3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4122 +pkgver=4.4124 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('e8e3aed50a790beaf47c7551b1d178c1d56c681206175228255d439011bb6b4c') -sha256sums_aarch64=('efff4430bf7df68f0027c756ef8e8e0f502bd61e811d18b80a12faf0b153cc17') +sha256sums_x86_64=('09bcef0968a5de98e9d27ca48e602153f0c4dfc319b6da0edeada82526ccd4bb') +sha256sums_aarch64=('ac7aa1fc922c04eb2b1fa54dfecc4fe51b41574b00cc44dc72683659c74a8c22') package() { cd "${srcdir}" From 60f92875ed0cefbe4e9367990ef483eb5fa68c7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 17 Dec 2021 12:07:02 +0100 Subject: [PATCH 247/971] Update to build 4125 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 1ba23ef..67fb940 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4124 + pkgver = 4.4125 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4124_x64.tar.xz - sha256sums_x86_64 = 09bcef0968a5de98e9d27ca48e602153f0c4dfc319b6da0edeada82526ccd4bb - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4124_arm64.tar.xz - sha256sums_aarch64 = ac7aa1fc922c04eb2b1fa54dfecc4fe51b41574b00cc44dc72683659c74a8c22 + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4125_x64.tar.xz + sha256sums_x86_64 = f96bcb900eec96d25a75f9bbd38ace1025382cda15b2ff2b0e6a0094efcce89a + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4125_arm64.tar.xz + sha256sums_aarch64 = 6e304ddf8a134896786c5bb03363b63a21ad71239aafe9711aab589d936f2b87 pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 0d846f3..1abf3b3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4124 +pkgver=4.4125 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('09bcef0968a5de98e9d27ca48e602153f0c4dfc319b6da0edeada82526ccd4bb') -sha256sums_aarch64=('ac7aa1fc922c04eb2b1fa54dfecc4fe51b41574b00cc44dc72683659c74a8c22') +sha256sums_x86_64=('f96bcb900eec96d25a75f9bbd38ace1025382cda15b2ff2b0e6a0094efcce89a') +sha256sums_aarch64=('6e304ddf8a134896786c5bb03363b63a21ad71239aafe9711aab589d936f2b87') package() { cd "${srcdir}" From f37597e6738d77a0845a2950a7a34d6b3738db29 Mon Sep 17 00:00:00 2001 From: Daniel Peukert Date: Wed, 22 Dec 2021 01:37:32 +0100 Subject: [PATCH 248/971] Fix failing Clippy tests for spot-client --- .SRCINFO | 6 ++++-- PKGBUILD | 17 ++++++++++++++--- clippy.diff | 10 ++++++++++ 3 files changed, 28 insertions(+), 5 deletions(-) create mode 100644 clippy.diff diff --git a/.SRCINFO b/.SRCINFO index d9509a7..d73873d 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client pkgver = 0.2.2 - pkgrel = 1 + pkgrel = 2 url = https://github.com/xou816/spot arch = x86_64 arch = i686 @@ -24,7 +24,9 @@ pkgbase = spot-client depends = openssl depends = pango optdepends = org.freedesktop.secrets - source = spot-client-0.2.2-1.tar.gz::https://github.com/xou816/spot/archive/0.2.2.tar.gz + source = spot-client-0.2.2-2.tar.gz::https://github.com/xou816/spot/archive/0.2.2.tar.gz + source = clippy.diff sha512sums = 997db5a651deb3290048a7283ee9f3b49387c51d6128a03ed3cf35b03df4db206d2502923df7ab45a0ef9fc45522c452edc74d4f16ccced8ca264a00e151887a + sha512sums = 8051c21a00c981eef8f0b08f30b369f28cd08d9d8d13b9f05df61b8365fc8ea91534aea7f21fcad6f14b41577fdfc9eaaf64dbd720d051e302fc7222d8aaf599 pkgname = spot-client diff --git a/PKGBUILD b/PKGBUILD index 0509d42..fb213d7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ _projectname='spot' pkgname="$_projectname-client" pkgver='0.2.2' -pkgrel='1' +pkgrel='2' pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') url="https://github.com/xou816/$_projectname" @@ -12,13 +12,24 @@ depends=('alsa-lib' 'cairo' 'glib2' 'glibc' 'graphene' 'gtk4' 'libadwaita' 'libp optdepends=('org.freedesktop.secrets') makedepends=('cargo' 'meson>=0.50.0') checkdepends=('appstream-glib') -source=("$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz") -sha512sums=('997db5a651deb3290048a7283ee9f3b49387c51d6128a03ed3cf35b03df4db206d2502923df7ab45a0ef9fc45522c452edc74d4f16ccced8ca264a00e151887a') +source=( + "$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz" + 'clippy.diff' +) +sha512sums=('997db5a651deb3290048a7283ee9f3b49387c51d6128a03ed3cf35b03df4db206d2502923df7ab45a0ef9fc45522c452edc74d4f16ccced8ca264a00e151887a' + '8051c21a00c981eef8f0b08f30b369f28cd08d9d8d13b9f05df61b8365fc8ea91534aea7f21fcad6f14b41577fdfc9eaaf64dbd720d051e302fc7222d8aaf599') validpgpkeys=() # waiting for https://github.com/xou816/spot/issues/283 _sourcedirectory="$_projectname-$pkgver" _builddirectory='build' +prepare() { + cd "$srcdir/$_sourcedirectory/" + + # Until they're fixed upstream, ignore some newly thrown errors from clippy 1.57 + patch --forward -p1 < "$srcdir/clippy.diff" +} + build() { cd "$srcdir/" # We're not using arch-meson, because upstream recommends using --buildtype 'release' diff --git a/clippy.diff b/clippy.diff new file mode 100644 index 0000000..26b403f --- /dev/null +++ b/clippy.diff @@ -0,0 +1,10 @@ +diff --git a/build-aux/clippy.sh b/build-aux/clippy.sh +index f60004b..22bdf6a 100644 +--- a/build-aux/clippy.sh ++++ b/build-aux/clippy.sh +@@ -8,4 +8,4 @@ if [[ $OFFLINE = "true" ]]; then + export CARGO_HOME="$SRC"/cargo + fi + +-cargo clippy --manifest-path "$SRC"/Cargo.toml -- -D warnings -A clippy::module_inception -A clippy::new_without_default ++cargo clippy --manifest-path "$SRC"/Cargo.toml -- -D warnings -A clippy::module_inception -A clippy::new_without_default -A dead-code -A clippy::large-enum-variant -A clippy::redundant-closure -A clippy::derivable-impls From 499edeb25f1833676b03f5de037e40181c3932ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 23 Dec 2021 12:51:44 +0100 Subject: [PATCH 249/971] Update to build 4126 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 9caf3a2..65d97aa 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-4 pkgdesc = Sophisticated text editor for code, html and prose - stable build - pkgver = 4.4121 + pkgver = 4.4126 pkgrel = 1 url = https://www.sublimetext.com/download install = sublime-text-4.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-4 conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4121_x64.tar.xz - sha256sums_x86_64 = 084fcf79457c320d59da1f0e58c85a7a63956bde41d64db01ec86df2554fc5e6 - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4121_arm64.tar.xz - sha256sums_aarch64 = 7af7845b402aea98a6d259d0e817c849168182881ea1f80b98e5729525688f08 + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4126_x64.tar.xz + sha256sums_x86_64 = 5c64e534cce0032e54d3c7028e8d6b3bdef28f3fd28a26244a360a2ce75450a1 + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4126_arm64.tar.xz + sha256sums_aarch64 = 0ad4ac168d47034c47ab31faaa0d8b6b4f27e233ea4e48634b930bf999efb63e pkgname = sublime-text-4 diff --git a/PKGBUILD b/PKGBUILD index 385bc45..6ea2aa4 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Manuel Hüsers pkgname=sublime-text-4 -pkgver=4.4121 +pkgver=4.4126 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - stable build" arch=('x86_64' 'aarch64') @@ -18,8 +18,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('084fcf79457c320d59da1f0e58c85a7a63956bde41d64db01ec86df2554fc5e6') -sha256sums_aarch64=('7af7845b402aea98a6d259d0e817c849168182881ea1f80b98e5729525688f08') +sha256sums_x86_64=('5c64e534cce0032e54d3c7028e8d6b3bdef28f3fd28a26244a360a2ce75450a1') +sha256sums_aarch64=('0ad4ac168d47034c47ab31faaa0d8b6b4f27e233ea4e48634b930bf999efb63e') package() { cd "${srcdir}" From c942c5b8a82420c8138a10dcbc86840f8eed8436 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 24 Dec 2021 11:45:22 +0100 Subject: [PATCH 250/971] Version 1.6.8 --- .SRCINFO | 13 +- 00700a3.patch | 424 -------------------------------------------------- PKGBUILD | 16 +- 3 files changed, 10 insertions(+), 443 deletions(-) delete mode 100644 00700a3.patch diff --git a/.SRCINFO b/.SRCINFO index 19c979e..ae1fab8 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,9 +1,8 @@ pkgbase = bino pkgdesc = 3D video player with multi-display support - pkgver = 1.6.7 - pkgrel = 2 + pkgver = 1.6.8 + pkgrel = 1 url = https://bino3d.org/ - arch = i686 arch = x86_64 license = GPL3 depends = ffmpeg @@ -13,12 +12,10 @@ pkgbase = bino depends = libass depends = qt5-base optdepends = lirc: infrared remote control - source = 00700a3.patch - source = https://bino3d.org/releases/bino-1.6.7.tar.xz - source = https://bino3d.org/releases/bino-1.6.7.tar.xz.sig + source = https://bino3d.org/releases/bino-1.6.8.tar.xz + source = https://bino3d.org/releases/bino-1.6.8.tar.xz.sig validpgpkeys = 2F61B4828BBA779AECB3F32703A2A4AB1E32FD34 - sha512sums = 2923f3818cbbf979e5ba77d731a5d05525472a8ac7419a716bf2b298af6c8fe21f87fb63653460c729169ec76497a9a300d646cd308fd905e730d4fc65140ac8 - sha512sums = ae8f72b200100664b9fd55963371ce64a2f39e240676494d69b422d662f2295560ba458eb04707b82f88d3c6b3fab98a1ecb40d74799300f96b8eb8be680c9b8 + sha512sums = d8cf5be356add4ed3fb36673038b5ffd92d0dc840798cc616fa4b11fec221c7f114347dfc7cdb7a3a24c5599b56301cddc99f84d3862d8e874612960281319cc sha512sums = SKIP pkgname = bino diff --git a/00700a3.patch b/00700a3.patch deleted file mode 100644 index 6e00284..0000000 --- a/00700a3.patch +++ /dev/null @@ -1,424 +0,0 @@ -diff --git a/README.md b/README.md -index 85b61f0..32dea56 100644 ---- a/README.md -+++ b/README.md -@@ -1,6 +1,7 @@ - # Bino: A 3D video player with multi-display support - - Bino is a video player with two main features: -+ - - Support for 3D videos, with a wide variety of input and output formats. - - Support for distributed multi-display video, e.g. for powerwalls, Virtual - Reality installations and other multi-projector setups. -diff --git a/pkg/w32/notes.txt b/pkg/w32/notes.txt -index f84be15..e3e1c20 100644 ---- a/pkg/w32/notes.txt -+++ b/pkg/w32/notes.txt -@@ -17,4 +17,4 @@ The source code for Bino is available here: - https://bino3d.org/download.html - - Instructions to build this package from source can be found here: --https://gitlab.marlam.de/marlam/bino/raw/master/README.Windows -+https://git.marlam.de/gitweb/?p=bino.git;a=blob_plain;f=README.Windows;hb=HEAD -diff --git a/src/base/dbg.cpp b/src/base/dbg.cpp -index 6c6234f..044be67 100644 ---- a/src/base/dbg.cpp -+++ b/src/base/dbg.cpp -@@ -74,8 +74,10 @@ namespace dbg - (void)sigaction(SIGFPE, &signal_handler, NULL); - (void)sigaction(SIGSEGV, &signal_handler, NULL); - #endif -+#if __cplusplus < 201700 - std::set_unexpected(exception_crash); - std::set_terminate(exception_crash); -+#endif - std::set_new_handler(oom_abort); - } - -diff --git a/src/dispatch.cpp b/src/dispatch.cpp -index d6f9327..703d865 100644 ---- a/src/dispatch.cpp -+++ b/src/dispatch.cpp -@@ -1,7 +1,7 @@ - /* - * This file is part of bino, a 3D video player. - * -- * Copyright (C) 2010, 2011, 2012, 2013, 2015 -+ * Copyright (C) 2010, 2011, 2012, 2013, 2015, 2018 - * Martin Lambers - * Binocle (author: Olivier Letz ) - * Frédéric Bour -@@ -504,6 +504,12 @@ void dispatch::receive_cmd(const command& cmd) - if (_input_data.params.subtitle_parallax_is_set()) - _parameters.set_subtitle_parallax(_input_data.params.subtitle_parallax()); - notify_all(notification::subtitle_parallax); -+ if (_input_data.params.vertical_pixel_shift_left_is_set()) -+ _parameters.set_vertical_pixel_shift_left(_input_data.params.vertical_pixel_shift_left()); -+ notify_all(notification::vertical_pixel_shift_left); -+ if (_input_data.params.vertical_pixel_shift_right_is_set()) -+ _parameters.set_vertical_pixel_shift_right(_input_data.params.vertical_pixel_shift_right()); -+ notify_all(notification::vertical_pixel_shift_right); - if (!_parameters.stereo_mode_is_set()) { - if (_media_input->video_frame_template().stereo_layout == parameters::layout_mono) - _parameters.set_stereo_mode(parameters::mode_mono_left); -@@ -833,6 +839,14 @@ void dispatch::receive_cmd(const command& cmd) - _parameters.set_subtitle_parallax(clamp(s11n::load(p), -1.0f, +1.0f)); - notify_all(notification::subtitle_parallax); - break; -+ case command::set_vertical_pixel_shift_left: -+ _parameters.set_vertical_pixel_shift_left(s11n::load(p)); -+ notify_all(notification::vertical_pixel_shift_left); -+ break; -+ case command::set_vertical_pixel_shift_right: -+ _parameters.set_vertical_pixel_shift_right(s11n::load(p)); -+ notify_all(notification::vertical_pixel_shift_right); -+ break; - // Volatile parameters - case command::toggle_fullscreen: - { -@@ -1217,6 +1231,12 @@ bool dispatch::parse_command(const std::string& s, command* c) - } else if (tokens.size() == 2 && tokens[0] == "adjust-subtitle-parallax" - && str::to(tokens[1], &p.f)) { - *c = command(command::adjust_subtitle_parallax, p.f); -+ } else if (tokens.size() == 2 && tokens[0] == "set-vertical-pixel-shift-left" -+ && str::to(tokens[1], &p.f)) { -+ *c = command(command::set_vertical_pixel_shift_left, p.f); -+ } else if (tokens.size() == 2 && tokens[0] == "set-vertical-pixel-shift-right" -+ && str::to(tokens[1], &p.f)) { -+ *c = command(command::set_vertical_pixel_shift_right, p.f); - } else if (tokens.size() == 1 && tokens[0] == "toggle-fullscreen") { - *c = command(command::toggle_fullscreen); - } else if (tokens.size() == 1 && tokens[0] == "center") { -diff --git a/src/dispatch.h b/src/dispatch.h -index 2133f8d..23f8030 100644 ---- a/src/dispatch.h -+++ b/src/dispatch.h -@@ -1,7 +1,7 @@ - /* - * This file is part of bino, a 3D video player. - * -- * Copyright (C) 2010, 2011, 2012, 2013, 2015 -+ * Copyright (C) 2010, 2011, 2012, 2013, 2015, 2018 - * Martin Lambers - * Joe - * Binocle (author: Olivier Letz ) -@@ -143,6 +143,8 @@ public: - adjust_ghostbust, // float (relative adjustment) - set_subtitle_parallax, // float (absolute value) - adjust_subtitle_parallax, // float (relative adjustment) -+ set_vertical_pixel_shift_left, // float -+ set_vertical_pixel_shift_right, // float - // Volatile parameters - toggle_fullscreen, // no parameters - center, // no parameters -@@ -260,6 +262,8 @@ public: - parallax, - ghostbust, - subtitle_parallax, -+ vertical_pixel_shift_left, -+ vertical_pixel_shift_right, - // Volatile parameters - fullscreen, - center, -diff --git a/src/main.cpp b/src/main.cpp -index 474cdd0..aa232c7 100644 ---- a/src/main.cpp -+++ b/src/main.cpp -@@ -337,6 +337,10 @@ int main(int argc, char *argv[]) - options.push_back(&subtitle_shadow); - opt::val subtitle_parallax("subtitle-parallax", '\0', opt::optional, -1.0f, +1.0f); - options.push_back(&subtitle_parallax); -+ opt::val vertical_pixel_shift_left("vertical-pixel-shift-left", '\0', opt::optional, -99999.9f, +99999.9f, 0.0f); -+ options.push_back(&vertical_pixel_shift_left); -+ opt::val vertical_pixel_shift_right("vertical-pixel-shift-right", '\0', opt::optional, -99999.9f, +99999.9f, 0.0f); -+ options.push_back(&vertical_pixel_shift_right); - opt::val parallax("parallax", 'P', opt::optional, -1.0f, +1.0f); - options.push_back(¶llax); - opt::tuple crosstalk("crosstalk", '\0', opt::optional, 0.0f, 1.0f, std::vector(), 3); -@@ -767,6 +771,10 @@ int main(int argc, char *argv[]) - input_data.params.set_ghostbust(ghostbust.value()); - if (subtitle_parallax.is_set()) - input_data.params.set_subtitle_parallax(subtitle_parallax.value()); -+ if (vertical_pixel_shift_left.is_set()) -+ input_data.params.set_vertical_pixel_shift_left(vertical_pixel_shift_left.value()); -+ if (vertical_pixel_shift_right.is_set()) -+ input_data.params.set_vertical_pixel_shift_right(vertical_pixel_shift_right.value()); - - int retval = 0; - std::vector command_files; -diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp -index 988417a..1563eef 100644 ---- a/src/mainwindow.cpp -+++ b/src/mainwindow.cpp -@@ -666,6 +666,10 @@ void main_window::open(QStringList filenames, - input_data.params.set_source_aspect_ratio(initial_params.source_aspect_ratio()); - if (initial_params.parallax_is_set()) - input_data.params.set_parallax(initial_params.parallax()); -+ if (initial_params.vertical_pixel_shift_left_is_set()) -+ input_data.params.set_vertical_pixel_shift_left(initial_params.vertical_pixel_shift_left()); -+ if (initial_params.vertical_pixel_shift_right_is_set()) -+ input_data.params.set_vertical_pixel_shift_right(initial_params.vertical_pixel_shift_right()); - if (initial_params.ghostbust_is_set()) - input_data.params.set_ghostbust(initial_params.ghostbust()); - if (initial_params.subtitle_parallax_is_set()) -diff --git a/src/media_data.cpp b/src/media_data.cpp -index b4acfb0..93b032d 100644 ---- a/src/media_data.cpp -+++ b/src/media_data.cpp -@@ -1,7 +1,7 @@ - /* - * This file is part of bino, a 3D video player. - * -- * Copyright (C) 2010, 2011, 2012, 2013, 2015 -+ * Copyright (C) 2010, 2011, 2012, 2013, 2015, 2018 - * Martin Lambers - * Joe - * D. Matz -@@ -125,6 +125,8 @@ parameters::parameters() - unset_parallax(); - unset_ghostbust(); - unset_subtitle_parallax(); -+ unset_vertical_pixel_shift_left(); -+ unset_vertical_pixel_shift_right(); - // Volatile parameters - unset_fullscreen(); - unset_center(); -@@ -180,6 +182,8 @@ const float parameters::_source_aspect_ratio_default = 0.0f; - const float parameters::_parallax_default = 0.0f; - const float parameters::_ghostbust_default = 0.0f; - const float parameters::_subtitle_parallax_default = 0.0f; -+const float parameters::_vertical_pixel_shift_left_default = 0.0f; -+const float parameters::_vertical_pixel_shift_right_default = 0.0f; - // Volatile parameter defaults - const bool parameters::_fullscreen_default = false; - const bool parameters::_center_default = false; -@@ -575,6 +579,10 @@ void parameters::save(std::ostream &os) const - s11n::save(os, _ghostbust_set); - s11n::save(os, _subtitle_parallax); - s11n::save(os, _subtitle_parallax_set); -+ s11n::save(os, _vertical_pixel_shift_left); -+ s11n::save(os, _vertical_pixel_shift_left_set); -+ s11n::save(os, _vertical_pixel_shift_right); -+ s11n::save(os, _vertical_pixel_shift_right_set); - // Volatile parameters - s11n::save(os, _fullscreen); - s11n::save(os, _fullscreen_set); -@@ -680,6 +688,10 @@ void parameters::load(std::istream &is) - s11n::load(is, _ghostbust_set); - s11n::load(is, _subtitle_parallax); - s11n::load(is, _subtitle_parallax_set); -+ s11n::load(is, _vertical_pixel_shift_left); -+ s11n::load(is, _vertical_pixel_shift_left_set); -+ s11n::load(is, _vertical_pixel_shift_right); -+ s11n::load(is, _vertical_pixel_shift_right_set); - // Volatile parameters - s11n::load(is, _fullscreen); - s11n::load(is, _fullscreen_set); -@@ -879,6 +891,8 @@ void parameters::unset_video_parameters() - unset_parallax(); - unset_ghostbust(); - unset_subtitle_parallax(); -+ unset_vertical_pixel_shift_left(); -+ unset_vertical_pixel_shift_right(); - } - - std::string parameters::save_video_parameters() const -@@ -902,6 +916,10 @@ std::string parameters::save_video_parameters() const - s11n::save(oss, "ghostbust", _ghostbust); - if (!subtitle_parallax_is_default()) - s11n::save(oss, "subtitle_parallax", _subtitle_parallax); -+ if (!vertical_pixel_shift_left_is_default()) -+ s11n::save(oss, "vertical_pixel_shift_left", _vertical_pixel_shift_left); -+ if (!vertical_pixel_shift_right_is_default()) -+ s11n::save(oss, "vertical_pixel_shift_right", _vertical_pixel_shift_right); - return oss.str(); - } - -@@ -941,6 +959,12 @@ void parameters::load_video_parameters(const std::string &s) - } else if (name == "subtitle_parallax") { - s11n::load(value, _subtitle_parallax); - _subtitle_parallax_set = true; -+ } else if (name == "vertical_pixel_shift_left") { -+ s11n::load(value, _vertical_pixel_shift_left); -+ _vertical_pixel_shift_left_set = true; -+ } else if (name == "vertical_pixel_shift_right") { -+ s11n::load(value, _vertical_pixel_shift_right); -+ _vertical_pixel_shift_right_set = true; - } - } - } -diff --git a/src/media_data.h b/src/media_data.h -index 30c7bec..1214f91 100644 ---- a/src/media_data.h -+++ b/src/media_data.h -@@ -1,7 +1,7 @@ - /* - * This file is part of bino, a 3D video player. - * -- * Copyright (C) 2010, 2011, 2012, 2013, 2015 -+ * Copyright (C) 2010, 2011, 2012, 2013, 2015, 2018 - * Martin Lambers - * Joe - * D. Matz -@@ -205,6 +205,8 @@ public: - PARAMETER(float, parallax) // Parallax adjustment, -1 .. +1 - PARAMETER(float, ghostbust) // Amount of crosstalk ghostbusting, 0 .. 1 - PARAMETER(float, subtitle_parallax) // Subtitle parallax adjustment, -1 .. +1 -+ PARAMETER(float, vertical_pixel_shift_left) // Vertical shift in pixels for left view -+ PARAMETER(float, vertical_pixel_shift_right) // Vertical shift in pixels for right view - // Volatile parameters - PARAMETER(bool, fullscreen) // Fullscreen mode - PARAMETER(bool, center) // Should the video be centered? -diff --git a/src/media_input.cpp b/src/media_input.cpp -index c1b8fcb..493708c 100644 ---- a/src/media_input.cpp -+++ b/src/media_input.cpp -@@ -1,7 +1,7 @@ - /* - * This file is part of bino, a 3D video player. - * -- * Copyright (C) 2010, 2011, 2012, 2015 -+ * Copyright (C) 2010, 2011, 2012, 2015, 2018 - * Martin Lambers - * Frédéric Devernay - * Joe -@@ -38,7 +38,8 @@ - media_input::media_input() : - _active_video_stream(-1), _active_audio_stream(-1), _active_subtitle_stream(-1), - _have_active_video_read(false), _have_active_audio_read(false), _have_active_subtitle_read(false), -- _last_audio_data_size(0), _initial_skip(0), _duration(-1) -+ _last_audio_data_size(0), _initial_skip(0), _duration(-1), -+ _finished_first_frame_read(false) - { - } - -@@ -622,6 +623,26 @@ video_frame media_input::finish_video_frame_read() - get_video_stream(1, o1, s1); - video_frame f0 = _media_objects[o0].finish_video_frame_read(s0); - video_frame f1 = _media_objects[o1].finish_video_frame_read(s1); -+ if (!_finished_first_frame_read && is_device()) -+ { -+ /* Try to keep both device streams in sync. This should only be -+ * relevant at the beginning of playback, i.e. the first frame read, -+ * when one device starts grabbing frames before the other does. */ -+ while (f0.is_valid() && f1.is_valid() -+ && f1.presentation_time > f0.presentation_time + video_frame_duration() / 2) -+ { -+ msg::dbg("skipping frame from device %d stream %d because device %d stream %d is ahead", o0, s0, o1, s1); -+ _media_objects[o0].start_video_frame_read(s0, 1); -+ f0 = _media_objects[o0].finish_video_frame_read(s0); -+ } -+ while (f0.is_valid() && f1.is_valid() -+ && f0.presentation_time > f1.presentation_time + video_frame_duration() / 2) -+ { -+ msg::dbg("skipping frame from device %d stream %d because device %d stream %d is ahead", o1, s1, o0, s0); -+ _media_objects[o1].start_video_frame_read(s1, 1); -+ f1 = _media_objects[o1].finish_video_frame_read(s1); -+ } -+ } - if (f0.is_valid() && f1.is_valid()) - { - frame = _video_frame; -@@ -655,6 +676,7 @@ video_frame media_input::finish_video_frame_read() - } - } - _have_active_video_read = false; -+ _finished_first_frame_read = true; - return frame; - } - -diff --git a/src/media_input.h b/src/media_input.h -index 8ff3778..880bfe1 100644 ---- a/src/media_input.h -+++ b/src/media_input.h -@@ -1,7 +1,7 @@ - /* - * This file is part of bino, a 3D video player. - * -- * Copyright (C) 2010, 2011, 2012 -+ * Copyright (C) 2010, 2011, 2012, 2018 - * Martin Lambers - * Joe - * -@@ -53,6 +53,8 @@ private: - int64_t _initial_skip; // Initial portion of input to skip, in microseconds. - int64_t _duration; // Total combined duration of input. - -+ bool _finished_first_frame_read; // Whether we have finished the first frame read from this input. -+ - video_frame _video_frame; // Video frame template for currently active video stream. - audio_blob _audio_blob; // Audio blob template for currently active audio stream. - subtitle_box _subtitle_box; // Subtitle box template for currently active subtitle stream. -diff --git a/src/video_output.cpp b/src/video_output.cpp -index 10a5a25..b53d847 100644 ---- a/src/video_output.cpp -+++ b/src/video_output.cpp -@@ -1,7 +1,7 @@ - /* - * This file is part of bino, a 3D video player. - * -- * Copyright (C) 2010, 2011, 2012, 2013, 2015 -+ * Copyright (C) 2010, 2011, 2012, 2013, 2015, 2018 - * Martin Lambers - * Frédéric Devernay - * Joe -@@ -1282,6 +1282,10 @@ void video_output::display_current_frame( - glUniform1f(glGetUniformLocation(_render_prg, "parallax"), - _render_params.parallax() * 0.05f - * (_render_params.stereo_mode_swap() ? -1 : +1)); -+ glUniform1f(glGetUniformLocation(_render_prg, "vertical_shift_left"), -+ _render_params.vertical_pixel_shift_left() / frame.height); -+ glUniform1f(glGetUniformLocation(_render_prg, "vertical_shift_right"), -+ _render_params.vertical_pixel_shift_right() / frame.height); - if (render_needs_subtitle(_render_params)) { - glActiveTexture(GL_TEXTURE2); - glBindTexture(GL_TEXTURE_2D, (_subtitle[_active_index].is_valid() -diff --git a/src/video_output_qt.cpp b/src/video_output_qt.cpp -index e9350d5..b8fb604 100644 ---- a/src/video_output_qt.cpp -+++ b/src/video_output_qt.cpp -@@ -1121,6 +1121,8 @@ void video_output_qt::receive_notification(const notification& note) - #endif // HAVE_LIBXNVCTRL - || note.type == notification::crop_aspect_ratio - || note.type == notification::parallax -+ || note.type == notification::vertical_pixel_shift_left -+ || note.type == notification::vertical_pixel_shift_right - || note.type == notification::ghostbust)) { - _widget->redisplay(); - } -diff --git a/src/video_output_render.fs.glsl b/src/video_output_render.fs.glsl -index 39f3498..e853f57 100644 ---- a/src/video_output_render.fs.glsl -+++ b/src/video_output_render.fs.glsl -@@ -1,7 +1,7 @@ - /* - * This file is part of bino, a 3D video player. - * -- * Copyright (C) 2010, 2011, 2012 -+ * Copyright (C) 2010, 2011, 2012, 2018 - * Martin Lambers - * Frédéric Devernay - * -@@ -59,6 +59,8 @@ - uniform sampler2D rgb_l; - uniform sampler2D rgb_r; - uniform float parallax; -+uniform float vertical_shift_left; -+uniform float vertical_shift_right; - - #if defined(subtitle_enabled) - uniform sampler2D subtitle; -@@ -145,11 +147,11 @@ vec3 adjust_color(vec3 rgb) - - vec3 tex_l(vec2 texcoord) - { -- return adjust_color(texture2D(rgb_l, texcoord + vec2(parallax, 0.0)).rgb); -+ return adjust_color(texture2D(rgb_l, texcoord + vec2(parallax, vertical_shift_left)).rgb); - } - vec3 tex_r(vec2 texcoord) - { -- return adjust_color(texture2D(rgb_r, texcoord - vec2(parallax, 0.0)).rgb); -+ return adjust_color(texture2D(rgb_r, texcoord + vec2(-parallax, vertical_shift_right)).rgb); - } - - #if defined(subtitle_enabled) diff --git a/PKGBUILD b/PKGBUILD index 82192c7..3a6326c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,25 +3,19 @@ # Contributor: archtux pkgname=bino -pkgver=1.6.7 -pkgrel=2 +pkgver=1.6.8 +pkgrel=1 pkgdesc='3D video player with multi-display support' -arch=('i686' 'x86_64') +arch=('x86_64') url='https://bino3d.org/' license=('GPL3') depends=('ffmpeg' 'freealut' 'freeglut' 'glewmx' 'libass' 'qt5-base') optdepends=('lirc: infrared remote control') -source=(00700a3.patch https://bino3d.org/releases/bino-1.6.7.tar.xz{,.sig}) -sha512sums=('2923f3818cbbf979e5ba77d731a5d05525472a8ac7419a716bf2b298af6c8fe21f87fb63653460c729169ec76497a9a300d646cd308fd905e730d4fc65140ac8' - 'ae8f72b200100664b9fd55963371ce64a2f39e240676494d69b422d662f2295560ba458eb04707b82f88d3c6b3fab98a1ecb40d74799300f96b8eb8be680c9b8' +source=(https://bino3d.org/releases/bino-${pkgver}.tar.xz{,.sig}) +sha512sums=('d8cf5be356add4ed3fb36673038b5ffd92d0dc840798cc616fa4b11fec221c7f114347dfc7cdb7a3a24c5599b56301cddc99f84d3862d8e874612960281319cc' 'SKIP') validpgpkeys=('2F61B4828BBA779AECB3F32703A2A4AB1E32FD34') -prepare() { - cd "${srcdir}/${pkgname}-${pkgver}" - patch -p1 -i ../00700a3.patch -} - build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure \ From cf68a0972a7682760b3ef8f5510f986a91a7a98b Mon Sep 17 00:00:00 2001 From: Brad Erhart <> Date: Wed, 5 Jan 2022 02:50:37 -0800 Subject: [PATCH 251/971] Updating gVisor to v20211129.0 Signed-off-by: Brad Erhart <> --- .SRCINFO | 7 +++---- PKGBUILD | 11 +++++------ gvisor-bin.install | 15 --------------- 3 files changed, 8 insertions(+), 25 deletions(-) delete mode 100644 gvisor-bin.install diff --git a/.SRCINFO b/.SRCINFO index 7f17f9a..3b5ece9 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,9 +1,8 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20211115.0 + pkgver = 20211129.0 pkgrel = 1 url = https://gvisor.dev - install = gvisor-bin.install arch = x86_64 license = Apache optdepends = docker: for Docker runtime support @@ -11,7 +10,7 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20211115.0::https://storage.googleapis.com/gvisor/releases/release/20211115/x86_64/runsc - b2sums = 7453fb4f4ec503e29f535497783c0c98bc1a7a26325217e696b1f4f4cb1dd6577ecb6d8fa94cda2194d820f3a6e26c68793d0eaff52e3128f07334381089ecc9 + source = gvisor-bin-20211129.0::https://storage.googleapis.com/gvisor/releases/release/20211129/x86_64/runsc + b2sums = 22bd05f48f6984f9cf733a9e15350a00b5bab1d580d38248d3425ace3350c2d6734d8d3fc91dc5734c5a1300b9fda1e026b949b41226a9efc38176154cd5189a pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 64e0ccb..dc78027 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,8 +1,8 @@ # Maintainer: Brad Erhart -pkgname=gvisor-bin -_pkgname=runsc -pkgver=20211115.0 +pkgname='gvisor-bin' +_pkgname='runsc' +pkgver=20211129.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -17,9 +17,8 @@ conflicts=( "${pkgname%-bin}-git" "$_pkgname" ) -install="$pkgname.install" -source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/$arch/$_pkgname") -b2sums=(7453fb4f4ec503e29f535497783c0c98bc1a7a26325217e696b1f4f4cb1dd6577ecb6d8fa94cda2194d820f3a6e26c68793d0eaff52e3128f07334381089ecc9) +source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/$CARCH/$_pkgname") +b2sums=('22bd05f48f6984f9cf733a9e15350a00b5bab1d580d38248d3425ace3350c2d6734d8d3fc91dc5734c5a1300b9fda1e026b949b41226a9efc38176154cd5189a') package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" diff --git a/gvisor-bin.install b/gvisor-bin.install deleted file mode 100644 index 9a0212b..0000000 --- a/gvisor-bin.install +++ /dev/null @@ -1,15 +0,0 @@ -post_install() { - pacman --query docker &> /dev/null && runsc install -} - -pre_upgrade() { - pacman --query docker &> /dev/null && runsc uninstall -} - -post_upgrade() { - pacman --query docker &> /dev/null && runsc install -} - -pre_remove() { - pacman --query docker &> /dev/null && runsc uninstall -} From f8555d7c29d2355f33be35ba29ca7e1469cd29d2 Mon Sep 17 00:00:00 2001 From: Brad Erhart <> Date: Tue, 11 Jan 2022 06:29:44 -0800 Subject: [PATCH 252/971] Updating gVisor to v20220103.0 Signed-off-by: Brad Erhart <> --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 3b5ece9..62245ab 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20211129.0 + pkgver = 20220103.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -10,7 +10,7 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20211129.0::https://storage.googleapis.com/gvisor/releases/release/20211129/x86_64/runsc - b2sums = 22bd05f48f6984f9cf733a9e15350a00b5bab1d580d38248d3425ace3350c2d6734d8d3fc91dc5734c5a1300b9fda1e026b949b41226a9efc38176154cd5189a + source = gvisor-bin-20220103.0::https://storage.googleapis.com/gvisor/releases/release/20220103/x86_64/runsc + b2sums = 6467bc8c1b84b506eea6aba810725a4d9885c4f278146407f881cbb8cb227075a278071cc08a0bee7a6b661594d06a92795b3cdf62eb96eefbf0d053ecb76dcd pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index dc78027..d69ced6 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname='gvisor-bin' _pkgname='runsc' -pkgver=20211129.0 +pkgver=20220103.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -18,7 +18,7 @@ conflicts=( "$_pkgname" ) source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/$CARCH/$_pkgname") -b2sums=('22bd05f48f6984f9cf733a9e15350a00b5bab1d580d38248d3425ace3350c2d6734d8d3fc91dc5734c5a1300b9fda1e026b949b41226a9efc38176154cd5189a') +b2sums=('6467bc8c1b84b506eea6aba810725a4d9885c4f278146407f881cbb8cb227075a278071cc08a0bee7a6b661594d06a92795b3cdf62eb96eefbf0d053ecb76dcd') package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From 0de59833aaea2868742775ffb723779ccf4b5a23 Mon Sep 17 00:00:00 2001 From: Daniel Peukert Date: Sun, 16 Jan 2022 16:36:22 +0100 Subject: [PATCH 253/971] Update spot-client to 0.3.0 --- .SRCINFO | 10 ++++------ PKGBUILD | 19 ++++--------------- clippy.diff | 10 ---------- 3 files changed, 8 insertions(+), 31 deletions(-) delete mode 100644 clippy.diff diff --git a/.SRCINFO b/.SRCINFO index d73873d..fc4e23c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client - pkgver = 0.2.2 - pkgrel = 2 + pkgver = 0.3.0 + pkgrel = 1 url = https://github.com/xou816/spot arch = x86_64 arch = i686 @@ -24,9 +24,7 @@ pkgbase = spot-client depends = openssl depends = pango optdepends = org.freedesktop.secrets - source = spot-client-0.2.2-2.tar.gz::https://github.com/xou816/spot/archive/0.2.2.tar.gz - source = clippy.diff - sha512sums = 997db5a651deb3290048a7283ee9f3b49387c51d6128a03ed3cf35b03df4db206d2502923df7ab45a0ef9fc45522c452edc74d4f16ccced8ca264a00e151887a - sha512sums = 8051c21a00c981eef8f0b08f30b369f28cd08d9d8d13b9f05df61b8365fc8ea91534aea7f21fcad6f14b41577fdfc9eaaf64dbd720d051e302fc7222d8aaf599 + source = spot-client-0.3.0-1.tar.gz::https://github.com/xou816/spot/archive/0.3.0.tar.gz + sha512sums = 8d90379db5e8317a2816c0f0057cb0a00dd30d41e046e5b1e011e353bb1f1318dc7e6d7faad9fca5204655c8b96d25a15bc46427c370b19f557a36fa79b20467 pkgname = spot-client diff --git a/PKGBUILD b/PKGBUILD index fb213d7..52ed14b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,8 +2,8 @@ # Contributor: NicoHood _projectname='spot' pkgname="$_projectname-client" -pkgver='0.2.2' -pkgrel='2' +pkgver='0.3.0' +pkgrel='1' pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') url="https://github.com/xou816/$_projectname" @@ -12,24 +12,13 @@ depends=('alsa-lib' 'cairo' 'glib2' 'glibc' 'graphene' 'gtk4' 'libadwaita' 'libp optdepends=('org.freedesktop.secrets') makedepends=('cargo' 'meson>=0.50.0') checkdepends=('appstream-glib') -source=( - "$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz" - 'clippy.diff' -) -sha512sums=('997db5a651deb3290048a7283ee9f3b49387c51d6128a03ed3cf35b03df4db206d2502923df7ab45a0ef9fc45522c452edc74d4f16ccced8ca264a00e151887a' - '8051c21a00c981eef8f0b08f30b369f28cd08d9d8d13b9f05df61b8365fc8ea91534aea7f21fcad6f14b41577fdfc9eaaf64dbd720d051e302fc7222d8aaf599') +source=("$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz") +sha512sums=('8d90379db5e8317a2816c0f0057cb0a00dd30d41e046e5b1e011e353bb1f1318dc7e6d7faad9fca5204655c8b96d25a15bc46427c370b19f557a36fa79b20467') validpgpkeys=() # waiting for https://github.com/xou816/spot/issues/283 _sourcedirectory="$_projectname-$pkgver" _builddirectory='build' -prepare() { - cd "$srcdir/$_sourcedirectory/" - - # Until they're fixed upstream, ignore some newly thrown errors from clippy 1.57 - patch --forward -p1 < "$srcdir/clippy.diff" -} - build() { cd "$srcdir/" # We're not using arch-meson, because upstream recommends using --buildtype 'release' diff --git a/clippy.diff b/clippy.diff deleted file mode 100644 index 26b403f..0000000 --- a/clippy.diff +++ /dev/null @@ -1,10 +0,0 @@ -diff --git a/build-aux/clippy.sh b/build-aux/clippy.sh -index f60004b..22bdf6a 100644 ---- a/build-aux/clippy.sh -+++ b/build-aux/clippy.sh -@@ -8,4 +8,4 @@ if [[ $OFFLINE = "true" ]]; then - export CARGO_HOME="$SRC"/cargo - fi - --cargo clippy --manifest-path "$SRC"/Cargo.toml -- -D warnings -A clippy::module_inception -A clippy::new_without_default -+cargo clippy --manifest-path "$SRC"/Cargo.toml -- -D warnings -A clippy::module_inception -A clippy::new_without_default -A dead-code -A clippy::large-enum-variant -A clippy::redundant-closure -A clippy::derivable-impls From 558f58d6fa32e7c7d801bde83443623544e439ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 19 Jan 2022 21:38:19 +0100 Subject: [PATCH 254/971] Version 2.17.0 --- .SRCINFO | 8 ++++---- PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index b5f9747..e5f4351 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = 2.16.0 - pkgrel = 2 + pkgver = 2.17.0 + pkgrel = 1 url = https://github.com/redhat-performance/tuned install = tuned.install arch = any @@ -21,7 +21,7 @@ pkgbase = tuned optdepends = virt-what: For use with virtual machines optdepends = systemtap: Disk and net statistic monitoring systemtap scripts backup = etc/tuned/active_profile - source = https://github.com/redhat-performance/tuned/archive/v2.16.0.tar.gz - sha256sums = 7f0b858c35fb9695703f04177af074555de59a7a3e94ec0b7e28357584d4502d + source = https://github.com/redhat-performance/tuned/archive/v2.17.0.tar.gz + sha256sums = 0f936c4c2e90d724c4b87c2b661dad340607ccb1b0f453d06143e6b6b0d2a650 pkgname = tuned diff --git a/PKGBUILD b/PKGBUILD index 4e0be91..619d326 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,8 +4,8 @@ # Contributor: Tom pkgname=tuned -pkgver=2.16.0 -pkgrel=2 +pkgver=2.17.0 +pkgrel=1 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url="https://github.com/redhat-performance/${pkgname}" @@ -16,7 +16,7 @@ makedepends=('desktop-file-utils') backup=('etc/tuned/active_profile') install="${pkgname}.install" source=("https://github.com/redhat-performance/${pkgname}/archive/v${pkgver}.tar.gz") -sha256sums=('7f0b858c35fb9695703f04177af074555de59a7a3e94ec0b7e28357584d4502d') +sha256sums=('0f936c4c2e90d724c4b87c2b661dad340607ccb1b0f453d06143e6b6b0d2a650') prepare() { cd "${pkgname}-${pkgver}" From 4c91370cb114e98e1ef1520d54f5be849653ebee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 19 Jan 2022 21:38:57 +0100 Subject: [PATCH 255/971] Update to 0.10.1 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 93d1aed..7a55f12 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = prometheus-postgresql-exporter pkgdesc = Prometheus exporter for PostgreSQL - pkgver = 0.10.0 + pkgver = 0.10.1 pkgrel = 1 url = https://github.com/prometheus-community/postgres_exporter arch = x86_64 @@ -9,10 +9,10 @@ pkgbase = prometheus-postgresql-exporter makedepends = go makedepends = make backup = etc/conf.d/prometheus-postgresql-exporter - source = https://github.com/prometheus-community/postgres_exporter/archive/v0.10.0.tar.gz + source = https://github.com/prometheus-community/postgres_exporter/archive/v0.10.1.tar.gz source = prometheus-postgresql-exporter.service source = prometheus-postgresql-exporter.conf - sha256sums = 76aeba13818fe214a5e3bf8f708fb12e3b4073ba0c3561057629cfba07cf4434 + sha256sums = cddb910a748035304440c820bab8b02b101c8481aa24a8a6d8265536e2647894 sha256sums = 0d86e650d88c8d4a8bc5b26faecb75023e069eaf29582135bcb0202e4a69a9b9 sha256sums = 5436ad34fbcd6faab69da8675631f3eb5b89d964682eb23164bf4bb816ad1897 diff --git a/PKGBUILD b/PKGBUILD index bf95aa4..79b6e8f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Nils Czernia pkgname=prometheus-postgresql-exporter -pkgver=0.10.0 +pkgver=0.10.1 pkgrel=1 pkgdesc="Prometheus exporter for PostgreSQL" arch=('x86_64') @@ -13,7 +13,7 @@ backup=('etc/conf.d/prometheus-postgresql-exporter') source=("https://github.com/prometheus-community/postgres_exporter/archive/v${pkgver}.tar.gz" "prometheus-postgresql-exporter.service" "prometheus-postgresql-exporter.conf") -sha256sums=('76aeba13818fe214a5e3bf8f708fb12e3b4073ba0c3561057629cfba07cf4434' +sha256sums=('cddb910a748035304440c820bab8b02b101c8481aa24a8a6d8265536e2647894' '0d86e650d88c8d4a8bc5b26faecb75023e069eaf29582135bcb0202e4a69a9b9' '5436ad34fbcd6faab69da8675631f3eb5b89d964682eb23164bf4bb816ad1897') From eab9b3c628e3a374d93e6c68384197b3a8dc0830 Mon Sep 17 00:00:00 2001 From: Daniel Peukert Date: Mon, 24 Jan 2022 10:03:46 +0100 Subject: [PATCH 256/971] Update spot-client to 0.3.1 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index fc4e23c..58a1b67 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client - pkgver = 0.3.0 + pkgver = 0.3.1 pkgrel = 1 url = https://github.com/xou816/spot arch = x86_64 @@ -24,7 +24,7 @@ pkgbase = spot-client depends = openssl depends = pango optdepends = org.freedesktop.secrets - source = spot-client-0.3.0-1.tar.gz::https://github.com/xou816/spot/archive/0.3.0.tar.gz - sha512sums = 8d90379db5e8317a2816c0f0057cb0a00dd30d41e046e5b1e011e353bb1f1318dc7e6d7faad9fca5204655c8b96d25a15bc46427c370b19f557a36fa79b20467 + source = spot-client-0.3.1-1.tar.gz::https://github.com/xou816/spot/archive/0.3.1.tar.gz + sha512sums = b0127dbe2a1430dcc288c9ef6bd61f0afa92e4ca6316d4e84c7e6bf7051cffc90a8778312e04991f91a2090728a7ce3e288249d1c8562106f7851dc701e97873 pkgname = spot-client diff --git a/PKGBUILD b/PKGBUILD index 52ed14b..30adf29 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: NicoHood _projectname='spot' pkgname="$_projectname-client" -pkgver='0.3.0' +pkgver='0.3.1' pkgrel='1' pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -13,7 +13,7 @@ optdepends=('org.freedesktop.secrets') makedepends=('cargo' 'meson>=0.50.0') checkdepends=('appstream-glib') source=("$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz") -sha512sums=('8d90379db5e8317a2816c0f0057cb0a00dd30d41e046e5b1e011e353bb1f1318dc7e6d7faad9fca5204655c8b96d25a15bc46427c370b19f557a36fa79b20467') +sha512sums=('b0127dbe2a1430dcc288c9ef6bd61f0afa92e4ca6316d4e84c7e6bf7051cffc90a8778312e04991f91a2090728a7ce3e288249d1c8562106f7851dc701e97873') validpgpkeys=() # waiting for https://github.com/xou816/spot/issues/283 _sourcedirectory="$_projectname-$pkgver" From eece5a8324748a68e9991b5b66d34bc30c2e96ca Mon Sep 17 00:00:00 2001 From: Brad Erhart <> Date: Tue, 8 Feb 2022 18:04:34 -0800 Subject: [PATCH 257/971] Updating gVisor to v20220208.0 Signed-off-by: Brad Erhart <> --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 62245ab..d99a4be 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20220103.0 + pkgver = 20220208.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -10,7 +10,7 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20220103.0::https://storage.googleapis.com/gvisor/releases/release/20220103/x86_64/runsc - b2sums = 6467bc8c1b84b506eea6aba810725a4d9885c4f278146407f881cbb8cb227075a278071cc08a0bee7a6b661594d06a92795b3cdf62eb96eefbf0d053ecb76dcd + source = gvisor-bin-20220208.0::https://storage.googleapis.com/gvisor/releases/release/20220208/x86_64/runsc + b2sums = 9238010bca4a4330ae607cb2f09729f1b9aea8107a62809b7e2b68d910ea2f39055cfc6fe486397dc2eb50e39392122e264cf4def29b8296032b48f38e8b1502 pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index d69ced6..c0987b3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname='gvisor-bin' _pkgname='runsc' -pkgver=20220103.0 +pkgver=20220208.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -18,7 +18,7 @@ conflicts=( "$_pkgname" ) source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/$CARCH/$_pkgname") -b2sums=('6467bc8c1b84b506eea6aba810725a4d9885c4f278146407f881cbb8cb227075a278071cc08a0bee7a6b661594d06a92795b3cdf62eb96eefbf0d053ecb76dcd') +b2sums=('9238010bca4a4330ae607cb2f09729f1b9aea8107a62809b7e2b68d910ea2f39055cfc6fe486397dc2eb50e39392122e264cf4def29b8296032b48f38e8b1502') package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From 42f00409469a07ac898e7ccb3b6b238aefce02cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 11 Feb 2022 10:57:01 +0100 Subject: [PATCH 258/971] Version 2.18.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index e5f4351..4b0d286 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = 2.17.0 + pkgver = 2.18.0 pkgrel = 1 url = https://github.com/redhat-performance/tuned install = tuned.install @@ -21,7 +21,7 @@ pkgbase = tuned optdepends = virt-what: For use with virtual machines optdepends = systemtap: Disk and net statistic monitoring systemtap scripts backup = etc/tuned/active_profile - source = https://github.com/redhat-performance/tuned/archive/v2.17.0.tar.gz - sha256sums = 0f936c4c2e90d724c4b87c2b661dad340607ccb1b0f453d06143e6b6b0d2a650 + source = https://github.com/redhat-performance/tuned/archive/v2.18.0.tar.gz + sha256sums = b00c92cc21fa8595e95aba95042e7f590ea4146328491a655936a811e2590d80 pkgname = tuned diff --git a/PKGBUILD b/PKGBUILD index 619d326..d13ea1b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ # Contributor: Tom pkgname=tuned -pkgver=2.17.0 +pkgver=2.18.0 pkgrel=1 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') @@ -16,7 +16,7 @@ makedepends=('desktop-file-utils') backup=('etc/tuned/active_profile') install="${pkgname}.install" source=("https://github.com/redhat-performance/${pkgname}/archive/v${pkgver}.tar.gz") -sha256sums=('0f936c4c2e90d724c4b87c2b661dad340607ccb1b0f453d06143e6b6b0d2a650') +sha256sums=('b00c92cc21fa8595e95aba95042e7f590ea4146328491a655936a811e2590d80') prepare() { cd "${pkgname}-${pkgver}" From e43b4b3bc944220594ecc6369c086218abf52b84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 11 Feb 2022 11:01:46 +0100 Subject: [PATCH 259/971] Update to build 4127 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 67fb940..7dcec9f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4125 + pkgver = 4.4127 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4125_x64.tar.xz - sha256sums_x86_64 = f96bcb900eec96d25a75f9bbd38ace1025382cda15b2ff2b0e6a0094efcce89a - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4125_arm64.tar.xz - sha256sums_aarch64 = 6e304ddf8a134896786c5bb03363b63a21ad71239aafe9711aab589d936f2b87 + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4127_x64.tar.xz + sha256sums_x86_64 = b0e0b2716152a50342f242a0b47f32d188710235534b7bd813700fc2508f4210 + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4127_arm64.tar.xz + sha256sums_aarch64 = 6bde83ee8b923e35274142dfedda753205325078323da7282ad46c0c1e76552a pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 1abf3b3..0822e1a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4125 +pkgver=4.4127 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('f96bcb900eec96d25a75f9bbd38ace1025382cda15b2ff2b0e6a0094efcce89a') -sha256sums_aarch64=('6e304ddf8a134896786c5bb03363b63a21ad71239aafe9711aab589d936f2b87') +sha256sums_x86_64=('b0e0b2716152a50342f242a0b47f32d188710235534b7bd813700fc2508f4210') +sha256sums_aarch64=('6bde83ee8b923e35274142dfedda753205325078323da7282ad46c0c1e76552a') package() { cd "${srcdir}" From 890c618a180078ac1dece535215bc4b99e8d753f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 13 Feb 2022 15:15:11 +0100 Subject: [PATCH 260/971] Update email --- .SRCINFO | 3 --- PKGBUILD | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 1c0ee04..a06a7f7 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,5 +1,3 @@ -# Generated by mksrcinfo v8 -# Sun Jan 31 23:50:00 UTC 2016 pkgbase = florence pkgdesc = A configurable on-screen virtual keyboard pkgver = 0.6.3 @@ -21,4 +19,3 @@ pkgbase = florence sha256sums = 422992fd07d285be73cce721a203e22cee21320d69b0fda1579ce62944c5091e pkgname = florence - diff --git a/PKGBUILD b/PKGBUILD index 72c8225..ae4994b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,4 +1,4 @@ -# Maintainer: Manuel Hüsers +# Maintainer: Manuel Hüsers # Contributor: UshakovVasilii # Contributor: Charon77 # Contributor: debdj From e537460e56314f9af687dc730f5c3bfd6c118196 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 13 Feb 2022 15:15:29 +0100 Subject: [PATCH 261/971] Update email --- .SRCINFO | 3 --- PKGBUILD | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index cf84dc4..967e8c2 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,5 +1,3 @@ -# Generated by mksrcinfo v8 -# Wed May 11 14:12:21 UTC 2016 pkgbase = libqxt pkgdesc = Provides a suite of cross-platform utility classes to add functionality not readily available in the Qt toolkit pkgver = 0.6.2 @@ -28,4 +26,3 @@ pkgbase = libqxt sha256sums = 48f54a303371813c1325293c00d15bb597d689947fddab630f8edc373f59d3fc pkgname = libqxt - diff --git a/PKGBUILD b/PKGBUILD index ebb4db4..aace942 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,4 +1,4 @@ -# Maintainer: Manuel Hüsers +# Maintainer: Manuel Hüsers # Contributor: (epsilom) Xavier Corredor # Contributor: Roberto Alsina # Contributor: Tim Besard From f0441047ba45e4e81ab398f055db9f68480fd492 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 13 Feb 2022 15:15:45 +0100 Subject: [PATCH 262/971] Update email --- .SRCINFO | 3 --- PKGBUILD | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 3c3c9d7..41dea38 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,5 +1,3 @@ -# Generated by mksrcinfo v8 -# Sun May 7 21:27:08 UTC 2017 pkgbase = rc-local pkgdesc = Support for legacy rc.local scripts pkgver = 4 @@ -16,4 +14,3 @@ pkgbase = rc-local sha256sums = f8c4f7a72833bb568bd4848ad16442cb3150b438184e0a6d30348fb518f969ae pkgname = rc-local - diff --git a/PKGBUILD b/PKGBUILD index 9de4930..a35cf70 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,4 +1,4 @@ -# Maintainer: Manuel Hüsers +# Maintainer: Manuel Hüsers # Contributor: megadriver # Contributor: $pooky Hunter From 00ae1a38444555267c1c01ff26dd46e1bec46894 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 13 Feb 2022 15:16:15 +0100 Subject: [PATCH 263/971] Update email --- .SRCINFO | 1 - PKGBUILD | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 74fa537..18b7aa6 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -11,4 +11,3 @@ pkgbase = plymouth-theme-arch-logo sha256sums = 553ab3efd51abefc50c10b521c24183df9ef879d080a75c54fb1c1512fbc94e6 pkgname = plymouth-theme-arch-logo - diff --git a/PKGBUILD b/PKGBUILD index ba6e580..5e1dfc7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,5 +1,5 @@ -# Maintainer: Manuel Hüsers -# Contributor: Manuel Hüsers +# Maintainer: Manuel Hüsers +# Contributor: Manuel Hüsers # Contributor: Guillermo Garcia pkgname=plymouth-theme-arch-logo From 6b773ff1c2d56ee1e2528e85805925ca1af8d774 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 22 Feb 2022 15:31:31 +0100 Subject: [PATCH 264/971] Update to build 4128 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 7dcec9f..f72c476 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4127 + pkgver = 4.4128 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4127_x64.tar.xz - sha256sums_x86_64 = b0e0b2716152a50342f242a0b47f32d188710235534b7bd813700fc2508f4210 - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4127_arm64.tar.xz - sha256sums_aarch64 = 6bde83ee8b923e35274142dfedda753205325078323da7282ad46c0c1e76552a + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4128_x64.tar.xz + sha256sums_x86_64 = 0f75d58b40730e79714d03b554e61fcef2b7f2edc6267e9f4453f6b3f5354f18 + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4128_arm64.tar.xz + sha256sums_aarch64 = bc751e1e86e11e174d6c22389e2dca057ed5b40a078b526b1d681f5ba5fae37b pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 0822e1a..2cdcf80 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4127 +pkgver=4.4128 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('b0e0b2716152a50342f242a0b47f32d188710235534b7bd813700fc2508f4210') -sha256sums_aarch64=('6bde83ee8b923e35274142dfedda753205325078323da7282ad46c0c1e76552a') +sha256sums_x86_64=('0f75d58b40730e79714d03b554e61fcef2b7f2edc6267e9f4453f6b3f5354f18') +sha256sums_aarch64=('bc751e1e86e11e174d6c22389e2dca057ed5b40a078b526b1d681f5ba5fae37b') package() { cd "${srcdir}" From 1721a123a80822291ee2fb94258849a1280326b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 24 Feb 2022 16:20:05 +0100 Subject: [PATCH 265/971] Update to build 4129 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- sublime-text-dev.install | 19 ++++++++++++------- 3 files changed, 20 insertions(+), 15 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index f72c476..23a44d1 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4128 + pkgver = 4.4129 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4128_x64.tar.xz - sha256sums_x86_64 = 0f75d58b40730e79714d03b554e61fcef2b7f2edc6267e9f4453f6b3f5354f18 - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4128_arm64.tar.xz - sha256sums_aarch64 = bc751e1e86e11e174d6c22389e2dca057ed5b40a078b526b1d681f5ba5fae37b + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4129_x64.tar.xz + sha256sums_x86_64 = f1cac9a290070dae87486207265294cc105d0a50b5047c973bc8c5e007db0774 + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4129_arm64.tar.xz + sha256sums_aarch64 = 22499a3b7703a77bec6a228d409ccf8dfb14313965278044321d38cfb157ae8c pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 2cdcf80..65e6b9a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4128 +pkgver=4.4129 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('0f75d58b40730e79714d03b554e61fcef2b7f2edc6267e9f4453f6b3f5354f18') -sha256sums_aarch64=('bc751e1e86e11e174d6c22389e2dca057ed5b40a078b526b1d681f5ba5fae37b') +sha256sums_x86_64=('f1cac9a290070dae87486207265294cc105d0a50b5047c973bc8c5e007db0774') +sha256sums_aarch64=('22499a3b7703a77bec6a228d409ccf8dfb14313965278044321d38cfb157ae8c') package() { cd "${srcdir}" diff --git a/sublime-text-dev.install b/sublime-text-dev.install index 234e352..0ef6354 100644 --- a/sublime-text-dev.install +++ b/sublime-text-dev.install @@ -1,13 +1,10 @@ post_install() { - # Update icon cache. - gtk-update-icon-cache -f '/usr/share/icons/hicolor' > /dev/null 2>&1 - - # Note admin after install/update on how to change th update_check setting. cat << _EOF - ==> sublime-text-dev install/upgrade note: + ==> sublime-text-dev install note: ------------------------------------------------------------------------------ - This package is now used for the actual 'dev' branch of Sublime Text. + This package is used for the actual 'dev' branch of Sublime Text that + requires a license to be purchased from the Sublime Text website. If you want to keep using the latest stable release you should instead install 'sublime-text-4' or use the official repos provided by Sublime Text. @@ -19,5 +16,13 @@ _EOF } post_upgrade() { - post_install + cat << _EOF + + ==> sublime-text-dev upgrade note: + ------------------------------------------------------------------------------ + To disable in-application reminders about new Sublime Text dev versions, + add the following setting to your User Preferences file: + "update_check": false + +_EOF } From 0fcc104861269082be29f6f0b04035b3937dc532 Mon Sep 17 00:00:00 2001 From: Jonathan Liu Date: Mon, 28 Feb 2022 17:15:09 +1100 Subject: [PATCH 266/971] Update to 0.0.27-1 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 72090d9..44f6f39 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = wxedid pkgdesc = wxWidgets-based EDID (Extended Display Identification Data) editor - pkgver = 0.0.26 + pkgver = 0.0.27 pkgrel = 1 url = https://sourceforge.net/projects/wxedid/ arch = i686 @@ -8,7 +8,7 @@ pkgbase = wxedid license = GPL3 depends = wxgtk2 options = !buildflags - source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.26.tar.gz - md5sums = 4cb73258660412806fc0af408f8decbc + source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.27.tar.gz + md5sums = 1093c29241b01bc3c0a48729156f1afd pkgname = wxedid diff --git a/PKGBUILD b/PKGBUILD index 71accdd..37f51a8 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Jonathan Liu pkgname=wxedid -pkgver=0.0.26 +pkgver=0.0.27 pkgrel=1 pkgdesc="wxWidgets-based EDID (Extended Display Identification Data) editor" arch=('i686' 'x86_64') @@ -9,7 +9,7 @@ license=('GPL3') depends=('wxgtk2') options=('!buildflags') source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz") -md5sums=('4cb73258660412806fc0af408f8decbc') +md5sums=('1093c29241b01bc3c0a48729156f1afd') build() { cd "$pkgname-$pkgver" From dd48b090ef1a485b854684a3c721897e493998b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 2 Mar 2022 15:38:23 +0100 Subject: [PATCH 267/971] Fix broken package due to renaming --- PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 79e9b8a..792c176 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -15,12 +15,12 @@ source=("git://github.com/scarygliders/${pkgname//-git}.git") sha256sums=('SKIP') pkgver() { - cd "${srcdir}/${pkgname}" + cd "${srcdir}/${pkgname//-git}" printf '%s.%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" } package() { - cd "${srcdir}/${pkgname}" + cd "${srcdir}/${pkgname//-git}" install -d -m755 "${pkgdir}"/{usr/bin,opt/$pkgname} install -m644 Ui_*.py "${pkgdir}/opt/${pkgname}/" From f8f951853547ecb3c99ea38694dca71d62060cc5 Mon Sep 17 00:00:00 2001 From: Daniel Peukert Date: Tue, 8 Mar 2022 12:08:50 +0100 Subject: [PATCH 268/971] Disable clippy tests for spot-client --- .SRCINFO | 2 ++ PKGBUILD | 15 +++++++++++++-- disable-clippy.patch | 19 +++++++++++++++++++ 3 files changed, 34 insertions(+), 2 deletions(-) create mode 100644 disable-clippy.patch diff --git a/.SRCINFO b/.SRCINFO index 58a1b67..ebe4dc3 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -25,6 +25,8 @@ pkgbase = spot-client depends = pango optdepends = org.freedesktop.secrets source = spot-client-0.3.1-1.tar.gz::https://github.com/xou816/spot/archive/0.3.1.tar.gz + source = disable-clippy.patch sha512sums = b0127dbe2a1430dcc288c9ef6bd61f0afa92e4ca6316d4e84c7e6bf7051cffc90a8778312e04991f91a2090728a7ce3e288249d1c8562106f7851dc701e97873 + sha512sums = 1cb0faced2e6801cb994e9af7b81411355837b2efcd9c82b82751508e0bfcc967c50b3d6296bfdb8c017bbf2e7a503a3920d36cb896e44c896c23f5b9e1d13f1 pkgname = spot-client diff --git a/PKGBUILD b/PKGBUILD index 30adf29..d0d9542 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -12,13 +12,24 @@ depends=('alsa-lib' 'cairo' 'glib2' 'glibc' 'graphene' 'gtk4' 'libadwaita' 'libp optdepends=('org.freedesktop.secrets') makedepends=('cargo' 'meson>=0.50.0') checkdepends=('appstream-glib') -source=("$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz") -sha512sums=('b0127dbe2a1430dcc288c9ef6bd61f0afa92e4ca6316d4e84c7e6bf7051cffc90a8778312e04991f91a2090728a7ce3e288249d1c8562106f7851dc701e97873') +source=( + "$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz" + 'disable-clippy.patch' +) +sha512sums=('b0127dbe2a1430dcc288c9ef6bd61f0afa92e4ca6316d4e84c7e6bf7051cffc90a8778312e04991f91a2090728a7ce3e288249d1c8562106f7851dc701e97873' + '1cb0faced2e6801cb994e9af7b81411355837b2efcd9c82b82751508e0bfcc967c50b3d6296bfdb8c017bbf2e7a503a3920d36cb896e44c896c23f5b9e1d13f1') validpgpkeys=() # waiting for https://github.com/xou816/spot/issues/283 _sourcedirectory="$_projectname-$pkgver" _builddirectory='build' +prepare() { + cd "$srcdir/$_sourcedirectory/" + + # Disable clippy tests, as they don't realy make sense for user builds (https://gitlab.com/dpeukert/pkgbuilds/-/issues/37) + patch --forward -p1 < '../disable-clippy.patch' +} + build() { cd "$srcdir/" # We're not using arch-meson, because upstream recommends using --buildtype 'release' diff --git a/disable-clippy.patch b/disable-clippy.patch new file mode 100644 index 0000000..25b9544 --- /dev/null +++ b/disable-clippy.patch @@ -0,0 +1,19 @@ +diff --git a/src/meson.build b/src/meson.build +index 755d870..fac1b77 100644 +--- a/src/meson.build ++++ b/src/meson.build +@@ -208,14 +208,3 @@ test('Unit tests', + ], + timeout: 180 + ) +- +-cargo_clippy = find_program(meson.source_root() / 'build-aux/clippy.sh') +-test('Clippy', +- cargo_clippy, +- args: [ +- meson.source_root(), +- meson.build_root(), +- get_option('offline') ? 'true' : 'false' +- ], +- timeout: 180 +-) From 8e6f5105380835e8f1f38b3ebc1be45f04e1c061 Mon Sep 17 00:00:00 2001 From: Daniel Peukert Date: Tue, 8 Mar 2022 12:33:04 +0100 Subject: [PATCH 269/971] Disable LTO for spot-client --- .SRCINFO | 1 + PKGBUILD | 1 + 2 files changed, 2 insertions(+) diff --git a/.SRCINFO b/.SRCINFO index ebe4dc3..51edd13 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -24,6 +24,7 @@ pkgbase = spot-client depends = openssl depends = pango optdepends = org.freedesktop.secrets + options = !lto source = spot-client-0.3.1-1.tar.gz::https://github.com/xou816/spot/archive/0.3.1.tar.gz source = disable-clippy.patch sha512sums = b0127dbe2a1430dcc288c9ef6bd61f0afa92e4ca6316d4e84c7e6bf7051cffc90a8778312e04991f91a2090728a7ce3e288249d1c8562106f7851dc701e97873 diff --git a/PKGBUILD b/PKGBUILD index d0d9542..a967594 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -12,6 +12,7 @@ depends=('alsa-lib' 'cairo' 'glib2' 'glibc' 'graphene' 'gtk4' 'libadwaita' 'libp optdepends=('org.freedesktop.secrets') makedepends=('cargo' 'meson>=0.50.0') checkdepends=('appstream-glib') +options=('!lto') # build breaks with LTO enabled (https://gitlab.com/dpeukert/pkgbuilds/-/issues/38) source=( "$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz" 'disable-clippy.patch' From 9d8f19b1a67623ff7b9d861516fd23ec55f616c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 23 Mar 2022 22:28:00 +0100 Subject: [PATCH 270/971] Update to build 4130 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 23a44d1..17ff636 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4129 + pkgver = 4.4130 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4129_x64.tar.xz - sha256sums_x86_64 = f1cac9a290070dae87486207265294cc105d0a50b5047c973bc8c5e007db0774 - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4129_arm64.tar.xz - sha256sums_aarch64 = 22499a3b7703a77bec6a228d409ccf8dfb14313965278044321d38cfb157ae8c + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4130_x64.tar.xz + sha256sums_x86_64 = ea54b8e963895b103aa9873c1148f58efa5d3a30f15c7811198b63692ea85b04 + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4130_arm64.tar.xz + sha256sums_aarch64 = 864a4d3a3699a512c760b7af2deb75f0428db60f9ad44337e0f838c45dcc4f44 pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 65e6b9a..ee035ab 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4129 +pkgver=4.4130 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('f1cac9a290070dae87486207265294cc105d0a50b5047c973bc8c5e007db0774') -sha256sums_aarch64=('22499a3b7703a77bec6a228d409ccf8dfb14313965278044321d38cfb157ae8c') +sha256sums_x86_64=('ea54b8e963895b103aa9873c1148f58efa5d3a30f15c7811198b63692ea85b04') +sha256sums_aarch64=('864a4d3a3699a512c760b7af2deb75f0428db60f9ad44337e0f838c45dcc4f44') package() { cd "${srcdir}" From c39956b6dc507b84a32c6a259ce50b43074b9832 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 24 Mar 2022 19:40:43 +0100 Subject: [PATCH 271/971] Fix unsupported git protocol still being used Thanks goes to @a821 for the hint --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 71c5369..b037b3c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = polkit-explorer-git pkgdesc = Present PolicyKit information in a human-readable form. pkgver = 15.fac8d70 - pkgrel = 2 + pkgrel = 3 url = https://github.com/scarygliders/polkit-explorer arch = any license = ISC @@ -9,7 +9,7 @@ pkgbase = polkit-explorer-git depends = python-lxml provides = polkit-explorer conflicts = polkit-explorer - source = git://github.com/scarygliders/polkit-explorer.git + source = git+https://github.com/scarygliders/polkit-explorer.git sha256sums = SKIP pkgname = polkit-explorer-git diff --git a/PKGBUILD b/PKGBUILD index 792c176..2424e6d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ pkgname=polkit-explorer-git pkgver=15.fac8d70 -pkgrel=2 +pkgrel=3 pkgdesc='Present PolicyKit information in a human-readable form.' arch=('any') url="https://github.com/scarygliders/${pkgname//-git}" @@ -11,7 +11,7 @@ license=('ISC') depends=('python-pyqt5' 'python-lxml') conflicts=('polkit-explorer') provides=('polkit-explorer') -source=("git://github.com/scarygliders/${pkgname//-git}.git") +source=("git+https://github.com/scarygliders/${pkgname//-git}.git") sha256sums=('SKIP') pkgver() { From 3bb41303416e6b6b25dcfc1b1341fbc51ec27bda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 25 Mar 2022 23:58:25 +0100 Subject: [PATCH 272/971] Update to build 4131 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 17ff636..93ae4cc 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4130 + pkgver = 4.4131 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4130_x64.tar.xz - sha256sums_x86_64 = ea54b8e963895b103aa9873c1148f58efa5d3a30f15c7811198b63692ea85b04 - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4130_arm64.tar.xz - sha256sums_aarch64 = 864a4d3a3699a512c760b7af2deb75f0428db60f9ad44337e0f838c45dcc4f44 + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4131_x64.tar.xz + sha256sums_x86_64 = 5e8a304bf87cedcd491faf9db87aa20543222e8f018098c3848861593820cf3f + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4131_arm64.tar.xz + sha256sums_aarch64 = c1f02d80ee1e4fb27c7c07843f3267ffd4ca1ba70f6cf0dff83dfc22317e43dd pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index ee035ab..623d8ad 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4130 +pkgver=4.4131 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('ea54b8e963895b103aa9873c1148f58efa5d3a30f15c7811198b63692ea85b04') -sha256sums_aarch64=('864a4d3a3699a512c760b7af2deb75f0428db60f9ad44337e0f838c45dcc4f44') +sha256sums_x86_64=('5e8a304bf87cedcd491faf9db87aa20543222e8f018098c3848861593820cf3f') +sha256sums_aarch64=('c1f02d80ee1e4fb27c7c07843f3267ffd4ca1ba70f6cf0dff83dfc22317e43dd') package() { cd "${srcdir}" From d916f2b8695f50a6784068cd975d5746951a4594 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 27 Mar 2022 07:20:07 +0200 Subject: [PATCH 273/971] Release 20220228.0 --- .SRCINFO | 6 +++--- PKGBUILD | 7 ++++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index d99a4be..c55c4ff 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20220208.0 + pkgver = 20220228.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -10,7 +10,7 @@ pkgbase = gvisor-bin provides = runsc conflicts = gvisor-git conflicts = runsc - source = gvisor-bin-20220208.0::https://storage.googleapis.com/gvisor/releases/release/20220208/x86_64/runsc - b2sums = 9238010bca4a4330ae607cb2f09729f1b9aea8107a62809b7e2b68d910ea2f39055cfc6fe486397dc2eb50e39392122e264cf4def29b8296032b48f38e8b1502 + source = gvisor-bin-20220228.0::https://storage.googleapis.com/gvisor/releases/release/20220228/x86_64/runsc + sha512sums = 00b65f872785f77d61c789c4589e56d085697ef6d6c89370dceca0d464df7d267a65b2fcd63bd7513910b28e72cc9f22991139c262b42c84a25f0f55136ba736 pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index c0987b3..1883768 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,8 +1,9 @@ -# Maintainer: Brad Erhart +# Maintainer: Manuel Hüsers +# Contributor: Brad Erhart pkgname='gvisor-bin' _pkgname='runsc' -pkgver=20220208.0 +pkgver=20220228.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64') @@ -18,7 +19,7 @@ conflicts=( "$_pkgname" ) source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/$CARCH/$_pkgname") -b2sums=('9238010bca4a4330ae607cb2f09729f1b9aea8107a62809b7e2b68d910ea2f39055cfc6fe486397dc2eb50e39392122e264cf4def29b8296032b48f38e8b1502') +sha512sums=('00b65f872785f77d61c789c4589e56d085697ef6d6c89370dceca0d464df7d267a65b2fcd63bd7513910b28e72cc9f22991139c262b42c84a25f0f55136ba736') package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From cf89b2a664eb7820694d91cc80efc14a3d8ac6cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 27 Mar 2022 07:58:18 +0200 Subject: [PATCH 274/971] Add support for ARMv8 --- .SRCINFO | 11 +++++++---- PKGBUILD | 12 +++++++----- 2 files changed, 14 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index c55c4ff..b009ced 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,16 +1,19 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use pkgver = 20220228.0 - pkgrel = 1 + pkgrel = 2 url = https://gvisor.dev arch = x86_64 + arch = aarch64 license = Apache optdepends = docker: for Docker runtime support provides = gvisor provides = runsc - conflicts = gvisor-git + conflicts = gvisor conflicts = runsc - source = gvisor-bin-20220228.0::https://storage.googleapis.com/gvisor/releases/release/20220228/x86_64/runsc - sha512sums = 00b65f872785f77d61c789c4589e56d085697ef6d6c89370dceca0d464df7d267a65b2fcd63bd7513910b28e72cc9f22991139c262b42c84a25f0f55136ba736 + source_x86_64 = gvisor-bin-20220228.0::https://storage.googleapis.com/gvisor/releases/release/20220228/x86_64/runsc + sha512sums_x86_64 = 00b65f872785f77d61c789c4589e56d085697ef6d6c89370dceca0d464df7d267a65b2fcd63bd7513910b28e72cc9f22991139c262b42c84a25f0f55136ba736 + source_aarch64 = gvisor-bin-20220228.0::https://storage.googleapis.com/gvisor/releases/release/20220228/aarch64/runsc + sha512sums_aarch64 = 09b1148d9ca601236e0bc37bedb2439e1ccf725396343ed895746e688d095669a8be190b201d1c4129b7dfcef7d80780b525563ce3202c83f24874422d071a8e pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 1883768..1a1f2a3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,9 +4,9 @@ pkgname='gvisor-bin' _pkgname='runsc' pkgver=20220228.0 -pkgrel=1 +pkgrel=2 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' -arch=('x86_64') +arch=('x86_64' 'aarch64') url='https://gvisor.dev' license=('Apache') optdepends=('docker: for Docker runtime support') @@ -15,11 +15,13 @@ provides=( "$_pkgname" ) conflicts=( - "${pkgname%-bin}-git" + "${pkgname%-bin}" "$_pkgname" ) -source=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/$CARCH/$_pkgname") -sha512sums=('00b65f872785f77d61c789c4589e56d085697ef6d6c89370dceca0d464df7d267a65b2fcd63bd7513910b28e72cc9f22991139c262b42c84a25f0f55136ba736') +source_x86_64=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/x86_64/$_pkgname") +source_aarch64=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/aarch64/$_pkgname") +sha512sums_x86_64=('00b65f872785f77d61c789c4589e56d085697ef6d6c89370dceca0d464df7d267a65b2fcd63bd7513910b28e72cc9f22991139c262b42c84a25f0f55136ba736') +sha512sums_aarch64=('09b1148d9ca601236e0bc37bedb2439e1ccf725396343ed895746e688d095669a8be190b201d1c4129b7dfcef7d80780b525563ce3202c83f24874422d071a8e') package() { install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" From 2a0929d868e1ea2d2a39bdc1739993517792922f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 28 Mar 2022 06:43:03 +0200 Subject: [PATCH 275/971] Build using go and switch versioning scheme --- .SRCINFO | 21 +++++++++++---------- PKGBUILD | 53 ++++++++++++++++++++++++++++++++++------------------- 2 files changed, 45 insertions(+), 29 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 5c52a3d..e394acc 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,16 +1,17 @@ pkgbase = gvisor-git - pkgdesc = User-space kernel, sandboxed container runtime - pkgver = r80.275a7b6 + pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use + pkgver = 20220321.0.r15.gb8fa96e20 pkgrel = 1 - url = https://github.com/google/gvisor + url = https://gvisor.dev arch = x86_64 - license = Apache-2.0 + arch = aarch64 + license = Apache makedepends = git - makedepends = bazel - makedepends = python - provides = runsc - source = git+https://github.com/google/gvisor - sha256sums = SKIP + makedepends = go + optdepends = docker: for Docker runtime support + provides = gvisor + conflicts = gvisor + source = git+https://github.com/google/gvisor#branch=go + sha512sums = SKIP pkgname = gvisor-git - diff --git a/PKGBUILD b/PKGBUILD index a0f6104..ca9c6ae 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,30 +1,45 @@ -# Maintainer: Vincent Kobel (v@kobl.one) +# Maintainer: Manuel Hüsers +# Contributor: Vincent Kobel (v@kobl.one) -_pkgname='gvisor' -pkgname="${_pkgname}-git" -pkgver=r80.275a7b6 +pkgname='gvisor-git' +_pkgbin='runsc' +_pkgshim='containerd-shim-runsc-v1' +pkgver=20220321.0.r15.gb8fa96e20 pkgrel=1 -pkgdesc="User-space kernel, sandboxed container runtime" -arch=('x86_64') -url='https://github.com/google/gvisor' -license=('Apache-2.0') -sha256sums=('SKIP') -source=("git+https://github.com/google/${_pkgname}") -provides=('runsc') -makedepends=('git' 'bazel' 'python') +pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' +arch=('x86_64' 'aarch64') +url='https://gvisor.dev' +license=('Apache') +makedepends=('git' 'go') +optdepends=('docker: for Docker runtime support') +provides=( + "${pkgname%-git}" +) +conflicts=( + "${pkgname%-git}" +) +source=("git+https://github.com/google/${pkgname%-git}#branch=go") +sha512sums=('SKIP') pkgver() { - cd "${_pkgname}" - printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" + cd "${pkgname%-git}" + git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/release-//g;s/-/./g' } build() { - cd "${srcdir}/${_pkgname}" - bazel build runsc + cd "${pkgname%-git}" + export CGO_CPPFLAGS="${CPPFLAGS}" + export CGO_CFLAGS="${CFLAGS}" + export CGO_CXXFLAGS="${CXXFLAGS}" + export CGO_LDFLAGS="${LDFLAGS}" + export GO111MODULE=on + export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw" + CGO_ENABLED=0 go build -v -o $_pkgbin -ldflags "-X main.version=${pkgver}" gvisor.dev/gvisor/runsc + go build -v -o $_pkgshim gvisor.dev/gvisor/shim } package() { - cd "${srcdir}/${_pkgname}" - install -D ./bazel-bin/runsc/linux_amd64_pure_stripped/runsc "${pkgdir}/usr/bin/runsc" + cd "${pkgname%-git}" + install -Dm 755 "$_pkgbin/$_pkgbin" "$pkgdir/usr/bin/$_pkgbin" + install -Dm 755 "$_pkgshim" "$pkgdir/usr/bin/$_pkgshim" } - From dbeb32aaabbe6220f5e056a81c0b4d7f2e35951e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 28 Mar 2022 06:46:50 +0200 Subject: [PATCH 276/971] Include containerd shim binary --- .SRCINFO | 12 +++++++----- PKGBUILD | 30 +++++++++++++++++++++--------- 2 files changed, 28 insertions(+), 14 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index b009ced..febc44c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,19 +1,21 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use pkgver = 20220228.0 - pkgrel = 2 + pkgrel = 3 url = https://gvisor.dev arch = x86_64 arch = aarch64 license = Apache optdepends = docker: for Docker runtime support provides = gvisor - provides = runsc conflicts = gvisor - conflicts = runsc - source_x86_64 = gvisor-bin-20220228.0::https://storage.googleapis.com/gvisor/releases/release/20220228/x86_64/runsc + source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220228/x86_64/runsc + source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220228/x86_64/containerd-shim-runsc-v1 sha512sums_x86_64 = 00b65f872785f77d61c789c4589e56d085697ef6d6c89370dceca0d464df7d267a65b2fcd63bd7513910b28e72cc9f22991139c262b42c84a25f0f55136ba736 - source_aarch64 = gvisor-bin-20220228.0::https://storage.googleapis.com/gvisor/releases/release/20220228/aarch64/runsc + sha512sums_x86_64 = a66c0d9b351f3f220ad6ce2953e4b06f4faaf10bc3cfb316f6d42037e0304f0f6e1afd41ee8bccca3d005ef6d702fe707048ffb6cc2f9453a3ed04cda60b311c + source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220228/aarch64/runsc + source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220228/aarch64/containerd-shim-runsc-v1 sha512sums_aarch64 = 09b1148d9ca601236e0bc37bedb2439e1ccf725396343ed895746e688d095669a8be190b201d1c4129b7dfcef7d80780b525563ce3202c83f24874422d071a8e + sha512sums_aarch64 = 9a52b5c9b5df5dd41e13715f81230cc3f282388a63697fe232a3bd917d7e285e7edd88cc12f05b18eb381f293830084efd6b66f3396ebc2ab726bc8c94878fca pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 1a1f2a3..3f79a33 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,9 +2,10 @@ # Contributor: Brad Erhart pkgname='gvisor-bin' -_pkgname='runsc' +_pkgbin='runsc' +_pkgshim='containerd-shim-runsc-v1' pkgver=20220228.0 -pkgrel=2 +pkgrel=3 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') url='https://gvisor.dev' @@ -12,17 +13,28 @@ license=('Apache') optdepends=('docker: for Docker runtime support') provides=( "${pkgname%-bin}" - "$_pkgname" ) conflicts=( "${pkgname%-bin}" - "$_pkgname" ) -source_x86_64=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/x86_64/$_pkgname") -source_aarch64=("$pkgname-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/aarch64/$_pkgname") -sha512sums_x86_64=('00b65f872785f77d61c789c4589e56d085697ef6d6c89370dceca0d464df7d267a65b2fcd63bd7513910b28e72cc9f22991139c262b42c84a25f0f55136ba736') -sha512sums_aarch64=('09b1148d9ca601236e0bc37bedb2439e1ccf725396343ed895746e688d095669a8be190b201d1c4129b7dfcef7d80780b525563ce3202c83f24874422d071a8e') +source_x86_64=( + "https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/x86_64/$_pkgbin" + "https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/x86_64/$_pkgshim" +) +source_aarch64=( + "https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/aarch64/$_pkgbin" + "https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/aarch64/$_pkgshim" +) +sha512sums_x86_64=( + '00b65f872785f77d61c789c4589e56d085697ef6d6c89370dceca0d464df7d267a65b2fcd63bd7513910b28e72cc9f22991139c262b42c84a25f0f55136ba736' + 'a66c0d9b351f3f220ad6ce2953e4b06f4faaf10bc3cfb316f6d42037e0304f0f6e1afd41ee8bccca3d005ef6d702fe707048ffb6cc2f9453a3ed04cda60b311c' +) +sha512sums_aarch64=( + '09b1148d9ca601236e0bc37bedb2439e1ccf725396343ed895746e688d095669a8be190b201d1c4129b7dfcef7d80780b525563ce3202c83f24874422d071a8e' + '9a52b5c9b5df5dd41e13715f81230cc3f282388a63697fe232a3bd917d7e285e7edd88cc12f05b18eb381f293830084efd6b66f3396ebc2ab726bc8c94878fca' +) package() { - install -Dm 755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" + install -Dm 755 "$_pkgbin" "$pkgdir/usr/bin/$_pkgbin" + install -Dm 755 "$_pkgshim" "$pkgdir/usr/bin/$_pkgshim" } From 411e0e4bef6231a6b358e211227a841632f1269b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 28 Mar 2022 21:12:05 +0200 Subject: [PATCH 277/971] Bump to 20220328, change build output directory --- .SRCINFO | 2 +- PKGBUILD | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index e394acc..6041102 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20220321.0.r15.gb8fa96e20 + pkgver = 20220328.0.r1.g34623f4d7 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/PKGBUILD b/PKGBUILD index ca9c6ae..334f855 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20220321.0.r15.gb8fa96e20 +pkgver=20220328.0.r1.g34623f4d7 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -34,12 +34,12 @@ build() { export CGO_LDFLAGS="${LDFLAGS}" export GO111MODULE=on export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw" - CGO_ENABLED=0 go build -v -o $_pkgbin -ldflags "-X main.version=${pkgver}" gvisor.dev/gvisor/runsc - go build -v -o $_pkgshim gvisor.dev/gvisor/shim + CGO_ENABLED=0 go build -v -o "bin/$_pkgbin" -ldflags "-X main.version=${pkgver}" gvisor.dev/gvisor/runsc + go build -v -o "bin/$_pkgshim" gvisor.dev/gvisor/shim } package() { cd "${pkgname%-git}" - install -Dm 755 "$_pkgbin/$_pkgbin" "$pkgdir/usr/bin/$_pkgbin" - install -Dm 755 "$_pkgshim" "$pkgdir/usr/bin/$_pkgshim" + install -Dm 755 "bin/$_pkgbin" "$pkgdir/usr/bin/$_pkgbin" + install -Dm 755 "bin/$_pkgshim" "$pkgdir/usr/bin/$_pkgshim" } From 4ae0a00e99fd63640acbcb3084feb8db9a950d40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 28 Mar 2022 21:58:37 +0200 Subject: [PATCH 278/971] Update spot-client to 0.3.2 --- .SRCINFO | 6 +++--- PKGBUILD | 7 ++++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 51edd13..3562867 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client - pkgver = 0.3.1 + pkgver = 0.3.2 pkgrel = 1 url = https://github.com/xou816/spot arch = x86_64 @@ -25,9 +25,9 @@ pkgbase = spot-client depends = pango optdepends = org.freedesktop.secrets options = !lto - source = spot-client-0.3.1-1.tar.gz::https://github.com/xou816/spot/archive/0.3.1.tar.gz + source = spot-client-0.3.2-1.tar.gz::https://github.com/xou816/spot/archive/0.3.2.tar.gz source = disable-clippy.patch - sha512sums = b0127dbe2a1430dcc288c9ef6bd61f0afa92e4ca6316d4e84c7e6bf7051cffc90a8778312e04991f91a2090728a7ce3e288249d1c8562106f7851dc701e97873 + sha512sums = fd8b1f372b5c06d65c0d40465aff018573e913200460b48339a9e106d17a372289b67855877d8642427367fc18e5eac31f2e765e54f4889149a8b5a69cd4638d sha512sums = 1cb0faced2e6801cb994e9af7b81411355837b2efcd9c82b82751508e0bfcc967c50b3d6296bfdb8c017bbf2e7a503a3920d36cb896e44c896c23f5b9e1d13f1 pkgname = spot-client diff --git a/PKGBUILD b/PKGBUILD index a967594..2bfde9c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,8 +1,9 @@ -# Maintainer: Daniel Peukert +# Maintainer: Manuel Hüsers +# Contributor: Daniel Peukert # Contributor: NicoHood _projectname='spot' pkgname="$_projectname-client" -pkgver='0.3.1' +pkgver='0.3.2' pkgrel='1' pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -17,7 +18,7 @@ source=( "$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz" 'disable-clippy.patch' ) -sha512sums=('b0127dbe2a1430dcc288c9ef6bd61f0afa92e4ca6316d4e84c7e6bf7051cffc90a8778312e04991f91a2090728a7ce3e288249d1c8562106f7851dc701e97873' +sha512sums=('fd8b1f372b5c06d65c0d40465aff018573e913200460b48339a9e106d17a372289b67855877d8642427367fc18e5eac31f2e765e54f4889149a8b5a69cd4638d' '1cb0faced2e6801cb994e9af7b81411355837b2efcd9c82b82751508e0bfcc967c50b3d6296bfdb8c017bbf2e7a503a3920d36cb896e44c896c23f5b9e1d13f1') validpgpkeys=() # waiting for https://github.com/xou816/spot/issues/283 From c71bf8149687bf1c4237e37f13ce5078394c7852 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 20 Apr 2022 22:01:03 +0200 Subject: [PATCH 279/971] Initial commit with version 0.5.0 --- .SRCINFO | 23 +++++++++++++++++++++++ PKGBUILD | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..a94b531 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,23 @@ +pkgbase = plasma5-wallpapers-wallpaper-engine + pkgdesc = A simple kde wallpaper plugin integrating wallpaper engine + pkgver = 0.5.0 + pkgrel = 1 + url = https://github.com/catsout/wallpaper-engine-kde-plugin + arch = any + license = GPL2 + makedepends = extra-cmake-modules + makedepends = mpv + makedepends = vulkan-headers + depends = gst-libav + depends = python-websockets + depends = plasma-framework + depends = qt5-declarative + depends = qt5-websockets + depends = qt5-webchannel + optdepends = mpv: video playback + source = https://github.com/catsout/wallpaper-engine-kde-plugin/archive/refs/tags/v0.5.0.tar.gz + source = https://github.com/KhronosGroup/glslang/archive/refs/tags/11.9.0.tar.gz + sha256sums = 13e320a2e2758827daf7fc1132935cc1082235f8f38f7138b78996cbc85730d0 + sha256sums = d5744adba19eef9ad3d73f524226b39fec559d94cb582cd442e3c5de930004b2 + +pkgname = plasma5-wallpapers-wallpaper-engine diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..1c2a2f8 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,35 @@ +# Maintainer: Manuel Hüsers + +pkgname=plasma5-wallpapers-wallpaper-engine +_pkgname=wallpaper-engine-kde-plugin +pkgver=0.5.0 +_pkgver_glslang=11.9.0 +pkgrel=1 +pkgdesc="A simple kde wallpaper plugin integrating wallpaper engine" +arch=('any') +url="https://github.com/catsout/wallpaper-engine-kde-plugin" +license=('GPL2') +depends=('gst-libav' 'python-websockets' 'plasma-framework' 'qt5-declarative' 'qt5-websockets' 'qt5-webchannel') +makedepends=('extra-cmake-modules' 'mpv' 'vulkan-headers') +optdepends=('mpv: video playback') +source=("https://github.com/catsout/${_pkgname}/archive/refs/tags/v${pkgver}.tar.gz" + "https://github.com/KhronosGroup/glslang/archive/refs/tags/${_pkgver_glslang}.tar.gz") +sha256sums=('13e320a2e2758827daf7fc1132935cc1082235f8f38f7138b78996cbc85730d0' + 'd5744adba19eef9ad3d73f524226b39fec559d94cb582cd442e3c5de930004b2') + +prepare() { + mv -T "glslang-${_pkgver_glslang}" "${_pkgname}-${pkgver}/src/backend_scene/third_party/glslang" +} + +build() { + cd "${_pkgname}-${pkgver}" + mkdir -p build && cd build + cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$(kf5-config --prefix) .. + make +} + +package() { + cd "${_pkgname}-${pkgver}" + cd build + make DESTDIR="$pkgdir/" install +} From 698e1a973d43cf846d65930383a307e7d11bbe1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 23 Apr 2022 17:52:49 +0200 Subject: [PATCH 280/971] Update to version 0.5.1 --- .SRCINFO | 10 +++++----- PKGBUILD | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index a94b531..f2cd995 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,9 +1,9 @@ pkgbase = plasma5-wallpapers-wallpaper-engine - pkgdesc = A simple kde wallpaper plugin integrating wallpaper engine - pkgver = 0.5.0 + pkgdesc = A kde wallpaper plugin integrating wallpaper engine + pkgver = 0.5.1 pkgrel = 1 url = https://github.com/catsout/wallpaper-engine-kde-plugin - arch = any + arch = x86_64 license = GPL2 makedepends = extra-cmake-modules makedepends = mpv @@ -15,9 +15,9 @@ pkgbase = plasma5-wallpapers-wallpaper-engine depends = qt5-websockets depends = qt5-webchannel optdepends = mpv: video playback - source = https://github.com/catsout/wallpaper-engine-kde-plugin/archive/refs/tags/v0.5.0.tar.gz + source = https://github.com/catsout/wallpaper-engine-kde-plugin/archive/refs/tags/v0.5.1.tar.gz source = https://github.com/KhronosGroup/glslang/archive/refs/tags/11.9.0.tar.gz - sha256sums = 13e320a2e2758827daf7fc1132935cc1082235f8f38f7138b78996cbc85730d0 + sha256sums = b62b2f2ce48d45938af5d59f53aaaf0a199212d3805f383560360477c4d72132 sha256sums = d5744adba19eef9ad3d73f524226b39fec559d94cb582cd442e3c5de930004b2 pkgname = plasma5-wallpapers-wallpaper-engine diff --git a/PKGBUILD b/PKGBUILD index 1c2a2f8..0633607 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,19 +2,19 @@ pkgname=plasma5-wallpapers-wallpaper-engine _pkgname=wallpaper-engine-kde-plugin -pkgver=0.5.0 +pkgver=0.5.1 _pkgver_glslang=11.9.0 pkgrel=1 -pkgdesc="A simple kde wallpaper plugin integrating wallpaper engine" -arch=('any') -url="https://github.com/catsout/wallpaper-engine-kde-plugin" +pkgdesc='A kde wallpaper plugin integrating wallpaper engine' +arch=('x86_64') +url='https://github.com/catsout/wallpaper-engine-kde-plugin' license=('GPL2') depends=('gst-libav' 'python-websockets' 'plasma-framework' 'qt5-declarative' 'qt5-websockets' 'qt5-webchannel') makedepends=('extra-cmake-modules' 'mpv' 'vulkan-headers') optdepends=('mpv: video playback') source=("https://github.com/catsout/${_pkgname}/archive/refs/tags/v${pkgver}.tar.gz" "https://github.com/KhronosGroup/glslang/archive/refs/tags/${_pkgver_glslang}.tar.gz") -sha256sums=('13e320a2e2758827daf7fc1132935cc1082235f8f38f7138b78996cbc85730d0' +sha256sums=('b62b2f2ce48d45938af5d59f53aaaf0a199212d3805f383560360477c4d72132' 'd5744adba19eef9ad3d73f524226b39fec559d94cb582cd442e3c5de930004b2') prepare() { From 99756c941217b7c59d437c20f5dc14b223bd585c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 23 Apr 2022 19:42:01 +0200 Subject: [PATCH 281/971] Update dependencies --- .SRCINFO | 7 ++++--- PKGBUILD | 9 +++++---- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index f2cd995..55296b3 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,11 +1,12 @@ pkgbase = plasma5-wallpapers-wallpaper-engine pkgdesc = A kde wallpaper plugin integrating wallpaper engine pkgver = 0.5.1 - pkgrel = 1 + pkgrel = 2 url = https://github.com/catsout/wallpaper-engine-kde-plugin arch = x86_64 license = GPL2 makedepends = extra-cmake-modules + makedepends = qt5-webchannel makedepends = mpv makedepends = vulkan-headers depends = gst-libav @@ -13,8 +14,8 @@ pkgbase = plasma5-wallpapers-wallpaper-engine depends = plasma-framework depends = qt5-declarative depends = qt5-websockets - depends = qt5-webchannel - optdepends = mpv: video playback + optdepends = qt5-webchannel: for web support + optdepends = mpv: for scene support and alternative video backend source = https://github.com/catsout/wallpaper-engine-kde-plugin/archive/refs/tags/v0.5.1.tar.gz source = https://github.com/KhronosGroup/glslang/archive/refs/tags/11.9.0.tar.gz sha256sums = b62b2f2ce48d45938af5d59f53aaaf0a199212d3805f383560360477c4d72132 diff --git a/PKGBUILD b/PKGBUILD index 0633607..0a579de 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,14 +4,15 @@ pkgname=plasma5-wallpapers-wallpaper-engine _pkgname=wallpaper-engine-kde-plugin pkgver=0.5.1 _pkgver_glslang=11.9.0 -pkgrel=1 +pkgrel=2 pkgdesc='A kde wallpaper plugin integrating wallpaper engine' arch=('x86_64') url='https://github.com/catsout/wallpaper-engine-kde-plugin' license=('GPL2') -depends=('gst-libav' 'python-websockets' 'plasma-framework' 'qt5-declarative' 'qt5-websockets' 'qt5-webchannel') -makedepends=('extra-cmake-modules' 'mpv' 'vulkan-headers') -optdepends=('mpv: video playback') +depends=('gst-libav' 'python-websockets' 'plasma-framework' 'qt5-declarative' 'qt5-websockets') +makedepends=('extra-cmake-modules' 'qt5-webchannel' 'mpv' 'vulkan-headers') +optdepends=('qt5-webchannel: for web support' + 'mpv: for scene support and alternative video backend') source=("https://github.com/catsout/${_pkgname}/archive/refs/tags/v${pkgver}.tar.gz" "https://github.com/KhronosGroup/glslang/archive/refs/tags/${_pkgver_glslang}.tar.gz") sha256sums=('b62b2f2ce48d45938af5d59f53aaaf0a199212d3805f383560360477c4d72132' From 4d175f54b345f6ba16d2f2777b51c37c72388d08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 30 Apr 2022 19:41:19 +0200 Subject: [PATCH 282/971] Bump to 20220425 --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 6041102..b407711 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20220328.0.r1.g34623f4d7 + pkgver = 20220425.0.r31.gbd1dbb001 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/PKGBUILD b/PKGBUILD index 334f855..7badf69 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20220328.0.r1.g34623f4d7 +pkgver=20220425.0.r31.gbd1dbb001 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From e53187dfcc1a3daf2e0c17edd64db961c9e0b8a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 30 Apr 2022 19:42:14 +0200 Subject: [PATCH 283/971] Release 20220425.0 --- .SRCINFO | 20 ++++++++++---------- PKGBUILD | 12 ++++++------ 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index febc44c..ccbae6d 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20220228.0 - pkgrel = 3 + pkgver = 20220425.0 + pkgrel = 1 url = https://gvisor.dev arch = x86_64 arch = aarch64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220228/x86_64/runsc - source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220228/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = 00b65f872785f77d61c789c4589e56d085697ef6d6c89370dceca0d464df7d267a65b2fcd63bd7513910b28e72cc9f22991139c262b42c84a25f0f55136ba736 - sha512sums_x86_64 = a66c0d9b351f3f220ad6ce2953e4b06f4faaf10bc3cfb316f6d42037e0304f0f6e1afd41ee8bccca3d005ef6d702fe707048ffb6cc2f9453a3ed04cda60b311c - source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220228/aarch64/runsc - source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220228/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 09b1148d9ca601236e0bc37bedb2439e1ccf725396343ed895746e688d095669a8be190b201d1c4129b7dfcef7d80780b525563ce3202c83f24874422d071a8e - sha512sums_aarch64 = 9a52b5c9b5df5dd41e13715f81230cc3f282388a63697fe232a3bd917d7e285e7edd88cc12f05b18eb381f293830084efd6b66f3396ebc2ab726bc8c94878fca + source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220425/x86_64/runsc + source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220425/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = 3306db84b97e617d10021dde12ff0d6670d8579e997c5f57fd18cbcba033b4ff0a458ce1e766f3a14fd76919606ef1cf03b1c945317e56e8452c1c857e8954e5 + sha512sums_x86_64 = f04031360b6e6c2817b7a83f139a98ae2c7d8093d9eeab61870e7ee0eb8b3067d7e9d66ef9003db4263e1475bf7438dd42f494695a4b3b92e947ae0ca946901e + source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220425/aarch64/runsc + source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220425/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 53f81d2b6d52eb85b9fb936b6088455ed28fd330cb720c6c47a086504c6ed78323fabf417452b52e30c7a9b14bc9b34d51b0263daa5d126e01967ae849878fa7 + sha512sums_aarch64 = 096f13ebc96bab22676c78196fd81dce0404d186109607ea3e68e98cd1c2a0edbb5c84da1280d047abf18675d65209a9ad06e746d5e0d849433917b071d2198e pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 3f79a33..540946b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,8 +4,8 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20220228.0 -pkgrel=3 +pkgver=20220425.0 +pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') url='https://gvisor.dev' @@ -26,12 +26,12 @@ source_aarch64=( "https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/aarch64/$_pkgshim" ) sha512sums_x86_64=( - '00b65f872785f77d61c789c4589e56d085697ef6d6c89370dceca0d464df7d267a65b2fcd63bd7513910b28e72cc9f22991139c262b42c84a25f0f55136ba736' - 'a66c0d9b351f3f220ad6ce2953e4b06f4faaf10bc3cfb316f6d42037e0304f0f6e1afd41ee8bccca3d005ef6d702fe707048ffb6cc2f9453a3ed04cda60b311c' + '3306db84b97e617d10021dde12ff0d6670d8579e997c5f57fd18cbcba033b4ff0a458ce1e766f3a14fd76919606ef1cf03b1c945317e56e8452c1c857e8954e5' + 'f04031360b6e6c2817b7a83f139a98ae2c7d8093d9eeab61870e7ee0eb8b3067d7e9d66ef9003db4263e1475bf7438dd42f494695a4b3b92e947ae0ca946901e' ) sha512sums_aarch64=( - '09b1148d9ca601236e0bc37bedb2439e1ccf725396343ed895746e688d095669a8be190b201d1c4129b7dfcef7d80780b525563ce3202c83f24874422d071a8e' - '9a52b5c9b5df5dd41e13715f81230cc3f282388a63697fe232a3bd917d7e285e7edd88cc12f05b18eb381f293830084efd6b66f3396ebc2ab726bc8c94878fca' + '53f81d2b6d52eb85b9fb936b6088455ed28fd330cb720c6c47a086504c6ed78323fabf417452b52e30c7a9b14bc9b34d51b0263daa5d126e01967ae849878fa7' + '096f13ebc96bab22676c78196fd81dce0404d186109607ea3e68e98cd1c2a0edbb5c84da1280d047abf18675d65209a9ad06e746d5e0d849433917b071d2198e' ) package() { From 2efb26ea9af41cc0fa6940557f2a9840297f8c60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 6 May 2022 22:44:04 +0200 Subject: [PATCH 284/971] Update to version 0.5.2 --- .SRCINFO | 12 ++++++------ PKGBUILD | 10 +++++----- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 55296b3..df73bf3 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = plasma5-wallpapers-wallpaper-engine - pkgdesc = A kde wallpaper plugin integrating wallpaper engine - pkgver = 0.5.1 - pkgrel = 2 + pkgdesc = A KDE wallpaper plugin integrating wallpaper engine + pkgver = 0.5.2 + pkgrel = 1 url = https://github.com/catsout/wallpaper-engine-kde-plugin arch = x86_64 license = GPL2 @@ -15,10 +15,10 @@ pkgbase = plasma5-wallpapers-wallpaper-engine depends = qt5-declarative depends = qt5-websockets optdepends = qt5-webchannel: for web support - optdepends = mpv: for scene support and alternative video backend - source = https://github.com/catsout/wallpaper-engine-kde-plugin/archive/refs/tags/v0.5.1.tar.gz + optdepends = mpv: alternative video backend + source = https://github.com/catsout/wallpaper-engine-kde-plugin/archive/refs/tags/v0.5.2.tar.gz source = https://github.com/KhronosGroup/glslang/archive/refs/tags/11.9.0.tar.gz - sha256sums = b62b2f2ce48d45938af5d59f53aaaf0a199212d3805f383560360477c4d72132 + sha256sums = dc4cc8d9282bb8f16662851acaf0a4622d24a096388810e8eb1ff31492c00a0b sha256sums = d5744adba19eef9ad3d73f524226b39fec559d94cb582cd442e3c5de930004b2 pkgname = plasma5-wallpapers-wallpaper-engine diff --git a/PKGBUILD b/PKGBUILD index 0a579de..ce8581a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,20 +2,20 @@ pkgname=plasma5-wallpapers-wallpaper-engine _pkgname=wallpaper-engine-kde-plugin -pkgver=0.5.1 +pkgver=0.5.2 _pkgver_glslang=11.9.0 -pkgrel=2 -pkgdesc='A kde wallpaper plugin integrating wallpaper engine' +pkgrel=1 +pkgdesc='A KDE wallpaper plugin integrating wallpaper engine' arch=('x86_64') url='https://github.com/catsout/wallpaper-engine-kde-plugin' license=('GPL2') depends=('gst-libav' 'python-websockets' 'plasma-framework' 'qt5-declarative' 'qt5-websockets') makedepends=('extra-cmake-modules' 'qt5-webchannel' 'mpv' 'vulkan-headers') optdepends=('qt5-webchannel: for web support' - 'mpv: for scene support and alternative video backend') + 'mpv: alternative video backend') source=("https://github.com/catsout/${_pkgname}/archive/refs/tags/v${pkgver}.tar.gz" "https://github.com/KhronosGroup/glslang/archive/refs/tags/${_pkgver_glslang}.tar.gz") -sha256sums=('b62b2f2ce48d45938af5d59f53aaaf0a199212d3805f383560360477c4d72132' +sha256sums=('dc4cc8d9282bb8f16662851acaf0a4622d24a096388810e8eb1ff31492c00a0b' 'd5744adba19eef9ad3d73f524226b39fec559d94cb582cd442e3c5de930004b2') prepare() { From 1a0d4dcef694bbefb74956bfd11d4448ce86e428 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 22 May 2022 21:42:32 +0200 Subject: [PATCH 285/971] Bump to 20220516 --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index b407711..622db7f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20220425.0.r31.gbd1dbb001 + pkgver = 20220516.0.r26.gbb1a83085 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/PKGBUILD b/PKGBUILD index 7badf69..6dcdfd6 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20220425.0.r31.gbd1dbb001 +pkgver=20220516.0.r26.gbb1a83085 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From 444975b5c25db11299082a4011ca00147be916f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 22 May 2022 21:43:09 +0200 Subject: [PATCH 286/971] Release 20220510.0 --- .SRCINFO | 18 +++++++++--------- PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index ccbae6d..347dbc5 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20220425.0 + pkgver = 20220510.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220425/x86_64/runsc - source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220425/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = 3306db84b97e617d10021dde12ff0d6670d8579e997c5f57fd18cbcba033b4ff0a458ce1e766f3a14fd76919606ef1cf03b1c945317e56e8452c1c857e8954e5 - sha512sums_x86_64 = f04031360b6e6c2817b7a83f139a98ae2c7d8093d9eeab61870e7ee0eb8b3067d7e9d66ef9003db4263e1475bf7438dd42f494695a4b3b92e947ae0ca946901e - source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220425/aarch64/runsc - source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220425/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 53f81d2b6d52eb85b9fb936b6088455ed28fd330cb720c6c47a086504c6ed78323fabf417452b52e30c7a9b14bc9b34d51b0263daa5d126e01967ae849878fa7 - sha512sums_aarch64 = 096f13ebc96bab22676c78196fd81dce0404d186109607ea3e68e98cd1c2a0edbb5c84da1280d047abf18675d65209a9ad06e746d5e0d849433917b071d2198e + source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220510/x86_64/runsc + source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220510/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = e5bc1c46d021246a69174aae71be93ff49661ff08eb6a957f7855f36076b44193765c966608d11a99f14542612438634329536d88fccb4b12bdd9bf2af20557f + sha512sums_x86_64 = f24834bbd4d14d0d0827e31276ff74a1e08b7ab366c4a30fe9c30d656c1ec5cbfc2544fb06698b4749791e0c6f80e6d16ec746963ff6ecebc246dc6e5b2f34ba + source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220510/aarch64/runsc + source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220510/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 46c40fa098936037a18bc83af4836d401368f83bf1924d87ec740a7284a442b3875ceba538f78cdd976682814c68daa5d36edb86e77450ef72437ea60c15e09c + sha512sums_aarch64 = d63e99a659d1e9c7ed97cac9bf5c9822beabaf2841be42d67befd3e41c376e33c7b06d77de97fc38118ff0db389d3179ea34839f30fb218355bb81971b0f45dc pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 540946b..f6e9565 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20220425.0 +pkgver=20220510.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -26,12 +26,12 @@ source_aarch64=( "https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/aarch64/$_pkgshim" ) sha512sums_x86_64=( - '3306db84b97e617d10021dde12ff0d6670d8579e997c5f57fd18cbcba033b4ff0a458ce1e766f3a14fd76919606ef1cf03b1c945317e56e8452c1c857e8954e5' - 'f04031360b6e6c2817b7a83f139a98ae2c7d8093d9eeab61870e7ee0eb8b3067d7e9d66ef9003db4263e1475bf7438dd42f494695a4b3b92e947ae0ca946901e' + 'e5bc1c46d021246a69174aae71be93ff49661ff08eb6a957f7855f36076b44193765c966608d11a99f14542612438634329536d88fccb4b12bdd9bf2af20557f' + 'f24834bbd4d14d0d0827e31276ff74a1e08b7ab366c4a30fe9c30d656c1ec5cbfc2544fb06698b4749791e0c6f80e6d16ec746963ff6ecebc246dc6e5b2f34ba' ) sha512sums_aarch64=( - '53f81d2b6d52eb85b9fb936b6088455ed28fd330cb720c6c47a086504c6ed78323fabf417452b52e30c7a9b14bc9b34d51b0263daa5d126e01967ae849878fa7' - '096f13ebc96bab22676c78196fd81dce0404d186109607ea3e68e98cd1c2a0edbb5c84da1280d047abf18675d65209a9ad06e746d5e0d849433917b071d2198e' + '46c40fa098936037a18bc83af4836d401368f83bf1924d87ec740a7284a442b3875ceba538f78cdd976682814c68daa5d36edb86e77450ef72437ea60c15e09c' + 'd63e99a659d1e9c7ed97cac9bf5c9822beabaf2841be42d67befd3e41c376e33c7b06d77de97fc38118ff0db389d3179ea34839f30fb218355bb81971b0f45dc' ) package() { From 44a5055f3b534115d9dfcae27ad7374a58698e3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 27 May 2022 19:53:33 +0200 Subject: [PATCH 287/971] Update to build 4134 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 93ae4cc..0d603af 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4131 + pkgver = 4.4134 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4131_x64.tar.xz - sha256sums_x86_64 = 5e8a304bf87cedcd491faf9db87aa20543222e8f018098c3848861593820cf3f - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4131_arm64.tar.xz - sha256sums_aarch64 = c1f02d80ee1e4fb27c7c07843f3267ffd4ca1ba70f6cf0dff83dfc22317e43dd + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4134_x64.tar.xz + sha256sums_x86_64 = adddc41bc7b5dc5b0f2a285233daa350c46c100ea3a0cc15aa18f535997021a1 + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4134_arm64.tar.xz + sha256sums_aarch64 = 81d7c40ddd84d6c7b0d3cb1599c9b0db5cf28a5f09b8924ca46d93ffd3e2f351 pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 623d8ad..1dc82a8 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4131 +pkgver=4.4134 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('5e8a304bf87cedcd491faf9db87aa20543222e8f018098c3848861593820cf3f') -sha256sums_aarch64=('c1f02d80ee1e4fb27c7c07843f3267ffd4ca1ba70f6cf0dff83dfc22317e43dd') +sha256sums_x86_64=('adddc41bc7b5dc5b0f2a285233daa350c46c100ea3a0cc15aa18f535997021a1') +sha256sums_aarch64=('81d7c40ddd84d6c7b0d3cb1599c9b0db5cf28a5f09b8924ca46d93ffd3e2f351') package() { cd "${srcdir}" From e201121a0457a4ec18c4b5acdc850dd613d9baf9 Mon Sep 17 00:00:00 2001 From: haawda Date: Sat, 28 May 2022 12:54:12 +0200 Subject: [PATCH 288/971] update --- .SRCINFO | 7 +++---- PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index f794d85..b7a61eb 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = ect pkgdesc = file compressor, supports postcompression of PNG, JPEG, GZIP and ZIP files. - pkgver = 0.8.3 - pkgrel = 2 + pkgver = 0.9.0 + pkgrel = 1 url = https://github.com/fhanau/Efficient-Compression-Tool arch = i686 arch = x86_64 @@ -10,8 +10,7 @@ pkgbase = ect makedepends = git makedepends = cmake depends = gcc-libs - source = git+https://github.com/fhanau/Efficient-Compression-Tool.git#commit=f0b38f7f8b750099f14d4976beff6a107d6119ac + source = git+https://github.com/fhanau/Efficient-Compression-Tool.git#commit=74cd0d283ce52b8c3d049894eaa2e38b2d098473 md5sums = SKIP pkgname = ect - diff --git a/PKGBUILD b/PKGBUILD index 4c64d70..90d2521 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,13 +3,13 @@ pkgname=ect _pkgname=Efficient-Compression-Tool -pkgver=0.8.3 -pkgrel=2 +pkgver=0.9.0 +pkgrel=1 pkgdesc='file compressor, supports postcompression of PNG, JPEG, GZIP and ZIP files.' url='https://github.com/fhanau/Efficient-Compression-Tool' arch=('i686' 'x86_64') license=('Apache') -source=("git+https://github.com/fhanau/Efficient-Compression-Tool.git#commit=f0b38f7f8b750099f14d4976beff6a107d6119ac") +source=("git+https://github.com/fhanau/Efficient-Compression-Tool.git#commit=74cd0d283ce52b8c3d049894eaa2e38b2d098473") md5sums=('SKIP') depends=('gcc-libs') makedepends=('nasm' 'git' 'cmake') From 930a6fa66c79a008bc873bbb8d479cae8c1f5ae0 Mon Sep 17 00:00:00 2001 From: haawda Date: Wed, 1 Jun 2022 19:39:40 +0200 Subject: [PATCH 289/971] update --- .SRCINFO | 7 +++---- PKGBUILD | 8 ++++---- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index b7a61eb..60f26d2 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,16 +1,15 @@ pkgbase = ect pkgdesc = file compressor, supports postcompression of PNG, JPEG, GZIP and ZIP files. - pkgver = 0.9.0 + pkgver = 0.9.1 pkgrel = 1 url = https://github.com/fhanau/Efficient-Compression-Tool arch = i686 arch = x86_64 license = Apache makedepends = nasm - makedepends = git makedepends = cmake depends = gcc-libs - source = git+https://github.com/fhanau/Efficient-Compression-Tool.git#commit=74cd0d283ce52b8c3d049894eaa2e38b2d098473 - md5sums = SKIP + source = Efficient-Compression-Tool-0.9.1.tar.gz::https://github.com/fhanau/Efficient-Compression-Tool/archive/refs/tags/v0.9.1.tar.gz + sha256sums = b4af4f1da55ca5ebc1f02029bb7fc7de9c6a45593d1866f35cdca839e01c1a1f pkgname = ect diff --git a/PKGBUILD b/PKGBUILD index 90d2521..723497f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,16 +3,16 @@ pkgname=ect _pkgname=Efficient-Compression-Tool -pkgver=0.9.0 +pkgver=0.9.1 pkgrel=1 pkgdesc='file compressor, supports postcompression of PNG, JPEG, GZIP and ZIP files.' url='https://github.com/fhanau/Efficient-Compression-Tool' arch=('i686' 'x86_64') license=('Apache') -source=("git+https://github.com/fhanau/Efficient-Compression-Tool.git#commit=74cd0d283ce52b8c3d049894eaa2e38b2d098473") -md5sums=('SKIP') +source=("${_pkgname}-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz") +sha256sums=('b4af4f1da55ca5ebc1f02029bb7fc7de9c6a45593d1866f35cdca839e01c1a1f') depends=('gcc-libs') -makedepends=('nasm' 'git' 'cmake') +makedepends=('nasm' 'cmake') prepare() { cd ${_pkgname} From 7d7e0d5c9f4b5b43cf59636602e7d15fb62e31b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 4 Jun 2022 23:53:37 +0200 Subject: [PATCH 290/971] Update build & install process --- .SRCINFO | 2 +- PKGBUILD | 13 +++++-------- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index df73bf3..60d0ef1 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = plasma5-wallpapers-wallpaper-engine pkgdesc = A KDE wallpaper plugin integrating wallpaper engine pkgver = 0.5.2 - pkgrel = 1 + pkgrel = 2 url = https://github.com/catsout/wallpaper-engine-kde-plugin arch = x86_64 license = GPL2 diff --git a/PKGBUILD b/PKGBUILD index ce8581a..4a74d21 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname=plasma5-wallpapers-wallpaper-engine _pkgname=wallpaper-engine-kde-plugin pkgver=0.5.2 _pkgver_glslang=11.9.0 -pkgrel=1 +pkgrel=2 pkgdesc='A KDE wallpaper plugin integrating wallpaper engine' arch=('x86_64') url='https://github.com/catsout/wallpaper-engine-kde-plugin' @@ -23,14 +23,11 @@ prepare() { } build() { - cd "${_pkgname}-${pkgver}" - mkdir -p build && cd build - cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$(kf5-config --prefix) .. - make + cmake -B build -S "${_pkgname}-${pkgver}" \ + -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF + cmake --build build } package() { - cd "${_pkgname}-${pkgver}" - cd build - make DESTDIR="$pkgdir/" install + DESTDIR="$pkgdir" cmake --install build } From a9f0863f7875f062d7d1b6d342c96c71c2159e2b Mon Sep 17 00:00:00 2001 From: haawda Date: Mon, 6 Jun 2022 14:17:51 +0200 Subject: [PATCH 291/971] pull again from git, upstream's tarballs are broken --- .SRCINFO | 7 ++++--- PKGBUILD | 13 ++++++------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 60f26d2..b7ca0c8 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,15 +1,16 @@ pkgbase = ect pkgdesc = file compressor, supports postcompression of PNG, JPEG, GZIP and ZIP files. pkgver = 0.9.1 - pkgrel = 1 + pkgrel = 3 url = https://github.com/fhanau/Efficient-Compression-Tool arch = i686 arch = x86_64 license = Apache makedepends = nasm + makedepends = git makedepends = cmake depends = gcc-libs - source = Efficient-Compression-Tool-0.9.1.tar.gz::https://github.com/fhanau/Efficient-Compression-Tool/archive/refs/tags/v0.9.1.tar.gz - sha256sums = b4af4f1da55ca5ebc1f02029bb7fc7de9c6a45593d1866f35cdca839e01c1a1f + source = git+https://github.com/fhanau/Efficient-Compression-Tool.git#commit=f920e54bb1b584d3c3d75d3d90d8cfedd04d2fbe + md5sums = SKIP pkgname = ect diff --git a/PKGBUILD b/PKGBUILD index 723497f..6bb727d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,15 +4,15 @@ pkgname=ect _pkgname=Efficient-Compression-Tool pkgver=0.9.1 -pkgrel=1 +pkgrel=3 pkgdesc='file compressor, supports postcompression of PNG, JPEG, GZIP and ZIP files.' url='https://github.com/fhanau/Efficient-Compression-Tool' arch=('i686' 'x86_64') license=('Apache') -source=("${_pkgname}-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz") -sha256sums=('b4af4f1da55ca5ebc1f02029bb7fc7de9c6a45593d1866f35cdca839e01c1a1f') +source=("git+https://github.com/fhanau/Efficient-Compression-Tool.git#commit=f920e54bb1b584d3c3d75d3d90d8cfedd04d2fbe") +md5sums=('SKIP') depends=('gcc-libs') -makedepends=('nasm' 'cmake') +makedepends=('nasm' 'git' 'cmake') prepare() { cd ${_pkgname} @@ -29,9 +29,8 @@ build() { } package() { - cd ${_pkgname}/src - - PREFIX=/usr/ DESTDIR="${pkgdir}" make install + cd ${_pkgname}/build + install -Dm755 ect "$pkgdir"/usr/bin/ect cd "${pkgdir}"/usr/bin # Some things expect this to be an all-caps name From 42153a938bf68137e806cedf720ec209e0bdf3f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 11 Jun 2022 22:43:38 +0200 Subject: [PATCH 292/971] Update to version 0.5.3 --- .SRCINFO | 12 ++++++------ PKGBUILD | 10 +++++----- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 60d0ef1..534bc54 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = plasma5-wallpapers-wallpaper-engine pkgdesc = A KDE wallpaper plugin integrating wallpaper engine - pkgver = 0.5.2 - pkgrel = 2 + pkgver = 0.5.3 + pkgrel = 1 url = https://github.com/catsout/wallpaper-engine-kde-plugin arch = x86_64 license = GPL2 @@ -16,9 +16,9 @@ pkgbase = plasma5-wallpapers-wallpaper-engine depends = qt5-websockets optdepends = qt5-webchannel: for web support optdepends = mpv: alternative video backend - source = https://github.com/catsout/wallpaper-engine-kde-plugin/archive/refs/tags/v0.5.2.tar.gz - source = https://github.com/KhronosGroup/glslang/archive/refs/tags/11.9.0.tar.gz - sha256sums = dc4cc8d9282bb8f16662851acaf0a4622d24a096388810e8eb1ff31492c00a0b - sha256sums = d5744adba19eef9ad3d73f524226b39fec559d94cb582cd442e3c5de930004b2 + source = https://github.com/catsout/wallpaper-engine-kde-plugin/archive/refs/tags/v0.5.3.tar.gz + source = https://github.com/KhronosGroup/glslang/archive/refs/tags/11.10.0.tar.gz + sha256sums = 3278849fe3ec09640ccc0d3f4d88070b5b1b59cd7d5e3e1744e30ad584923184 + sha256sums = 8ffc19c435232d09299dd2c91e247292b3508c1b826a3497c60682e4bbf2d602 pkgname = plasma5-wallpapers-wallpaper-engine diff --git a/PKGBUILD b/PKGBUILD index 4a74d21..84167e3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,9 +2,9 @@ pkgname=plasma5-wallpapers-wallpaper-engine _pkgname=wallpaper-engine-kde-plugin -pkgver=0.5.2 -_pkgver_glslang=11.9.0 -pkgrel=2 +pkgver=0.5.3 +_pkgver_glslang=11.10.0 +pkgrel=1 pkgdesc='A KDE wallpaper plugin integrating wallpaper engine' arch=('x86_64') url='https://github.com/catsout/wallpaper-engine-kde-plugin' @@ -15,8 +15,8 @@ optdepends=('qt5-webchannel: for web support' 'mpv: alternative video backend') source=("https://github.com/catsout/${_pkgname}/archive/refs/tags/v${pkgver}.tar.gz" "https://github.com/KhronosGroup/glslang/archive/refs/tags/${_pkgver_glslang}.tar.gz") -sha256sums=('dc4cc8d9282bb8f16662851acaf0a4622d24a096388810e8eb1ff31492c00a0b' - 'd5744adba19eef9ad3d73f524226b39fec559d94cb582cd442e3c5de930004b2') +sha256sums=('3278849fe3ec09640ccc0d3f4d88070b5b1b59cd7d5e3e1744e30ad584923184' + '8ffc19c435232d09299dd2c91e247292b3508c1b826a3497c60682e4bbf2d602') prepare() { mv -T "glslang-${_pkgver_glslang}" "${_pkgname}-${pkgver}/src/backend_scene/third_party/glslang" From 667034a50e0cca6da9252f7026c9ccdd4bbfde5d Mon Sep 17 00:00:00 2001 From: Manuel Date: Tue, 14 Jun 2022 00:28:51 +0200 Subject: [PATCH 293/971] Refactor PKGBUILD --- .SRCINFO | 6 ++---- PKGBUILD | 53 +++++++++++++++++++++++++++-------------------------- 2 files changed, 29 insertions(+), 30 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 830b459..a254fbb 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -3,14 +3,12 @@ pkgbase = glewmx pkgver = 1.13.0 pkgrel = 1 url = http://launchpad.net/ubuntu/+source/glewmx - arch = i686 arch = x86_64 license = GPL depends = libxmu depends = libxi depends = glu - source = http://launchpad.net/ubuntu/+archive/primary/+files/glewmx_1.13.0.orig.tar.gz - sha1sums = d5b1c499f429aa91c466193b4e8ea94a84019e37 + source = https://launchpad.net/ubuntu/+archive/primary/+files/glewmx_1.13.0.orig.tar.gz + sha256sums = aa25dc48ed84b0b64b8d41cdd42c8f40f149c37fa2ffa39cd97f42c78d128bc7 pkgname = glewmx - diff --git a/PKGBUILD b/PKGBUILD index 583a755..3af9bc2 100755 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,46 +1,47 @@ -# $Id: PKGBUILD 273106 2016-08-05 12:19:53Z andyrtr $ -# Maintainer: Andreas Radke +# Maintainer: Manuel Hüsers +# Contributor: Andreas Radke # Contributor: Stéphane Gaudreault # Contributor: SleepyDog pkgname=glewmx pkgver=1.13.0 pkgrel=1 -pkgdesc="The OpenGL Extension Wrangler MX" -arch=('i686' 'x86_64') +pkgdesc='The OpenGL Extension Wrangler MX' +arch=('x86_64') url="http://launchpad.net/ubuntu/+source/glewmx" license=('GPL') depends=('libxmu' 'libxi' 'glu') -source=(http://launchpad.net/ubuntu/+archive/primary/+files/${pkgname}_${pkgver}.orig.tar.gz) -sha1sums=('d5b1c499f429aa91c466193b4e8ea94a84019e37') +source=(https://launchpad.net/ubuntu/+archive/primary/+files/${pkgname}_${pkgver}.orig.tar.gz) +sha256sums=('aa25dc48ed84b0b64b8d41cdd42c8f40f149c37fa2ffa39cd97f42c78d128bc7') + +prepare() { + cd "glew-${pkgver}" + + # move include folder to subfolder 'glew-1.13.0' + sed -i 's:$(GLEW_DEST)/include/GL:$(GLEW_DEST)/include/glew-1.13.0/GL:' Makefile + + sed -i 's|lib64|lib|' config/Makefile.linux + sed -i '/^.PHONY: .*\.pc$/d' Makefile +} build() { - - cd glew-${pkgver} + cd "glew-${pkgver}" - # move include folder to subfolder 'glew-1.13.0' - sed -i 's:$(GLEW_DEST)/include/GL:$(GLEW_DEST)/include/glew-1.13.0/GL:' Makefile - - sed -i 's|lib64|lib|' config/Makefile.linux - sed -i '/^.PHONY: .*\.pc$/d' Makefile - - make + make } package() { + cd "glew-${pkgver}" - cd glew-${pkgver} - - # update glewmx include path to reflect previous changes (see build comments) - msg update glewmx.pc - sed -i 's:includedir=${prefix}/include:includedir=${prefix}/include/glew-1.13.0:' glewmx.pc + # update glewmx include path to reflect previous changes (see build comments) + msg update glewmx.pc + sed -i 's:includedir=${prefix}/include:includedir=${prefix}/include/glew-1.13.0:' glewmx.pc - make GLEW_DEST="${pkgdir}/usr" install.all + make GLEW_DEST="${pkgdir}/usr" install.all - rm -R ${pkgdir}/usr/bin - rm ${pkgdir}/usr/lib/{libGLEW.so,libGLEW.a} - rm ${pkgdir}/usr/lib/pkgconfig/glew.pc - - chmod 0755 "${pkgdir}"/usr/lib/libGLEW*.so.${pkgver} + rm -R ${pkgdir}/usr/bin + rm ${pkgdir}/usr/lib/{libGLEW.so,libGLEW.a} + rm ${pkgdir}/usr/lib/pkgconfig/glew.pc + chmod 0755 "${pkgdir}"/usr/lib/libGLEW*.so.${pkgver} } From 77f2b6a0c3e6b195293b1ef30dd920a84b43ac4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 14 Jun 2022 00:35:20 +0200 Subject: [PATCH 294/971] Patch ffmpeg 5.0 compatibility Contributed by AUR user @gruenfron --- .SRCINFO | 4 +++- PKGBUILD | 14 +++++++++++--- ffmpeg4.4.patch | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 62 insertions(+), 4 deletions(-) create mode 100644 ffmpeg4.4.patch diff --git a/.SRCINFO b/.SRCINFO index ae1fab8..f092bbc 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = bino pkgdesc = 3D video player with multi-display support pkgver = 1.6.8 - pkgrel = 1 + pkgrel = 2 url = https://bino3d.org/ arch = x86_64 license = GPL3 @@ -14,8 +14,10 @@ pkgbase = bino optdepends = lirc: infrared remote control source = https://bino3d.org/releases/bino-1.6.8.tar.xz source = https://bino3d.org/releases/bino-1.6.8.tar.xz.sig + source = ffmpeg4.4.patch validpgpkeys = 2F61B4828BBA779AECB3F32703A2A4AB1E32FD34 sha512sums = d8cf5be356add4ed3fb36673038b5ffd92d0dc840798cc616fa4b11fec221c7f114347dfc7cdb7a3a24c5599b56301cddc99f84d3862d8e874612960281319cc sha512sums = SKIP + sha512sums = d4768179c13079fb93a5e8c36a4228245ff04e1049a8186f942fe2d3e20a8d34b9064d140a1aaf4c5499405bb34e8924b3fffd0fabf2e1652b5a1c3cbb1d343a pkgname = bino diff --git a/PKGBUILD b/PKGBUILD index 3a6326c..101d5f4 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,21 +1,29 @@ # Maintainer: Manuel Hüsers +# Contributor: gruenfron # Contributor: Jose Riha # Contributor: archtux pkgname=bino pkgver=1.6.8 -pkgrel=1 +pkgrel=2 pkgdesc='3D video player with multi-display support' arch=('x86_64') url='https://bino3d.org/' license=('GPL3') depends=('ffmpeg' 'freealut' 'freeglut' 'glewmx' 'libass' 'qt5-base') optdepends=('lirc: infrared remote control') -source=(https://bino3d.org/releases/bino-${pkgver}.tar.xz{,.sig}) +source=(https://bino3d.org/releases/bino-${pkgver}.tar.xz{,.sig} + ffmpeg4.4.patch) sha512sums=('d8cf5be356add4ed3fb36673038b5ffd92d0dc840798cc616fa4b11fec221c7f114347dfc7cdb7a3a24c5599b56301cddc99f84d3862d8e874612960281319cc' - 'SKIP') + 'SKIP' + 'd4768179c13079fb93a5e8c36a4228245ff04e1049a8186f942fe2d3e20a8d34b9064d140a1aaf4c5499405bb34e8924b3fffd0fabf2e1652b5a1c3cbb1d343a') validpgpkeys=('2F61B4828BBA779AECB3F32703A2A4AB1E32FD34') +prepare() { + cd "${srcdir}/${pkgname}-${pkgver}" + patch -Np1 -i '../ffmpeg4.4.patch' +} + build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure \ diff --git a/ffmpeg4.4.patch b/ffmpeg4.4.patch new file mode 100644 index 0000000..a9ac88d --- /dev/null +++ b/ffmpeg4.4.patch @@ -0,0 +1,48 @@ +--- a/configure.ac ++++ b/configure.ac +@@ -143,25 +143,6 @@ if test -z "$PKG_CONFIG"; then + AC_MSG_WARN([please install pkg-config; Debian package: pkg-config]) + fi + +-dnl FFmpeg +-PKG_CHECK_MODULES([libavformat], [libavformat >= 52.110.0 libavcodec libavutil], [HAVE_LIBAVFORMAT=1], [HAVE_LIBAVFORMAT=0]) +-if test "$HAVE_LIBAVFORMAT" != "1"; then +- AC_MSG_WARN([required library libavformat >= 52.110.0 not found:]) +- AC_MSG_WARN([$libavformat_PKG_ERRORS]) +- AC_MSG_WARN([libavformat >= 52.110.0 is provided by libav >= 0.7 or FFmpeg >= 0.7]) +-fi +-PKG_CHECK_MODULES([libavdevice], [libavdevice >= 52.5.0], [HAVE_LIBAVDEVICE=1], [HAVE_LIBAVDEVICE=0]) +-if test "$HAVE_LIBAVDEVICE" != "1"; then +- AC_MSG_WARN([required library libavdevice >= 52.5.0 not found:]) +- AC_MSG_WARN([$libavdevice_PKG_ERRORS]) +- AC_MSG_WARN([libavdevice >= 52.5.0 is provided by libav >= 0.7 or FFmpeg >= 0.7]) +-fi +-PKG_CHECK_MODULES([libswscale], [libswscale >= 0.14.1 libavutil], [HAVE_LIBSWSCALE=1], [HAVE_LIBSWSCALE=0]) +-if test "$HAVE_LIBSWSCALE" != "1"; then +- AC_MSG_WARN([required library libswscale >= 0.14.1 not found:]) +- AC_MSG_WARN([$libswscale_PKG_ERRORS]) +- AC_MSG_WARN([libswscale >= 0.14.1 is provided by libav >= 0.7 or FFmpeg >= 0.7]) +-fi + AC_CHECK_FUNCS([sysconf]) + + dnl libass +@@ -400,11 +381,16 @@ UPDATE_DESKTOP_DATABASE="" + AC_ARG_VAR([UPDATE_DESKTOP_DATABASE], [update-desktop-database command]) + AC_CHECK_PROGS([UPDATE_DESKTOP_DATABASE], [update-desktop-database]) + ++dnl ffmpeg4.4 libs ++LIBS+=" /usr/lib/libswscale.so.5" ++LIBS+=" /usr/lib/libavutil.so.56" ++LIBS+=" /usr/lib/libavformat.so.58" ++LIBS+=" /usr/lib/libavdevice.so.58" ++LIBS+=" /usr/lib/libavcodec.so.58" ++CPPFLAGS+=" -I/usr/include/ffmpeg4.4" ++ + dnl Check if all libraries were found + if test "$am_cv_func_iconv" != "yes" \ +- -o "$HAVE_LIBAVFORMAT" != "1" \ +- -o "$HAVE_LIBAVDEVICE" != "1" \ +- -o "$HAVE_LIBSWSCALE" != "1" \ + -o "$HAVE_LIBASS" != "1" \ + -o "$HAVE_LIBOPENAL" != "1" \ + -o "$HAVE_LIBQTOPENGL" != "1" \ From f522e94d5cd32065486ae5985ccf632db9fd10c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 14 Jun 2022 00:44:03 +0200 Subject: [PATCH 295/971] Bump to 20220606 --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 622db7f..74056af 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20220516.0.r26.gbb1a83085 + pkgver = 20220606.0.r33.g2610918ed pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/PKGBUILD b/PKGBUILD index 6dcdfd6..bfc9fbf 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20220516.0.r26.gbb1a83085 +pkgver=20220606.0.r33.g2610918ed pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From 9c51a1fff21c13deb32c1d30cc3d1e48bbe76a17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 14 Jun 2022 00:44:03 +0200 Subject: [PATCH 296/971] Release 20220606.0 --- .SRCINFO | 18 +++++++++--------- PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 347dbc5..a673213 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20220510.0 + pkgver = 20220606.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220510/x86_64/runsc - source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220510/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = e5bc1c46d021246a69174aae71be93ff49661ff08eb6a957f7855f36076b44193765c966608d11a99f14542612438634329536d88fccb4b12bdd9bf2af20557f - sha512sums_x86_64 = f24834bbd4d14d0d0827e31276ff74a1e08b7ab366c4a30fe9c30d656c1ec5cbfc2544fb06698b4749791e0c6f80e6d16ec746963ff6ecebc246dc6e5b2f34ba - source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220510/aarch64/runsc - source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220510/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 46c40fa098936037a18bc83af4836d401368f83bf1924d87ec740a7284a442b3875ceba538f78cdd976682814c68daa5d36edb86e77450ef72437ea60c15e09c - sha512sums_aarch64 = d63e99a659d1e9c7ed97cac9bf5c9822beabaf2841be42d67befd3e41c376e33c7b06d77de97fc38118ff0db389d3179ea34839f30fb218355bb81971b0f45dc + source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220606/x86_64/runsc + source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220606/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = 26c614e815a6c42666931fd67d3bbed3520ac1643917fe04989a1e775a708f82f6d5118dafb1cc2435b243bde9b980b8a8ddada22a067cae55d1e6447c1a54d0 + sha512sums_x86_64 = 3f0297cf2f0d31b83590463616e202a2115c3ad5aa56c767511fa8f13ba594927738704405ffed2d1e836e70b75f5aad7e667fc54575dcace00c8ea52bde279b + source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220606/aarch64/runsc + source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220606/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 66e44c009f91ce7910593283270df57c6e9c7614fd23296125351a83ae288838e3fc86da741e3b0ec5343f3611e68e6ddbe1898be504febf59aa4780373f78a2 + sha512sums_aarch64 = ccc9c7c469f12784b55a99ff1278104484605f76a5e3559a05344b480d91f556baf4d2a2ad370b0ef2b8ac85b20a582a8c9e0e1b99e6225c3f23e12af68cc277 pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index f6e9565..6acd9d4 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20220510.0 +pkgver=20220606.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -26,12 +26,12 @@ source_aarch64=( "https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/aarch64/$_pkgshim" ) sha512sums_x86_64=( - 'e5bc1c46d021246a69174aae71be93ff49661ff08eb6a957f7855f36076b44193765c966608d11a99f14542612438634329536d88fccb4b12bdd9bf2af20557f' - 'f24834bbd4d14d0d0827e31276ff74a1e08b7ab366c4a30fe9c30d656c1ec5cbfc2544fb06698b4749791e0c6f80e6d16ec746963ff6ecebc246dc6e5b2f34ba' + '26c614e815a6c42666931fd67d3bbed3520ac1643917fe04989a1e775a708f82f6d5118dafb1cc2435b243bde9b980b8a8ddada22a067cae55d1e6447c1a54d0' + '3f0297cf2f0d31b83590463616e202a2115c3ad5aa56c767511fa8f13ba594927738704405ffed2d1e836e70b75f5aad7e667fc54575dcace00c8ea52bde279b' ) sha512sums_aarch64=( - '46c40fa098936037a18bc83af4836d401368f83bf1924d87ec740a7284a442b3875ceba538f78cdd976682814c68daa5d36edb86e77450ef72437ea60c15e09c' - 'd63e99a659d1e9c7ed97cac9bf5c9822beabaf2841be42d67befd3e41c376e33c7b06d77de97fc38118ff0db389d3179ea34839f30fb218355bb81971b0f45dc' + '66e44c009f91ce7910593283270df57c6e9c7614fd23296125351a83ae288838e3fc86da741e3b0ec5343f3611e68e6ddbe1898be504febf59aa4780373f78a2' + 'ccc9c7c469f12784b55a99ff1278104484605f76a5e3559a05344b480d91f556baf4d2a2ad370b0ef2b8ac85b20a582a8c9e0e1b99e6225c3f23e12af68cc277' ) package() { From 9f35446458095a16f996b3e86e879109503d5ddc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 14 Jun 2022 17:06:02 +0200 Subject: [PATCH 297/971] Update patch for POSIX compliancy Replace ffmpeg with ffmpeg4.4 dependency that I forgot in the last commit Thanks goes to AUR user @patlefort --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- ffmpeg4.4.patch | 12 ++++++------ 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index f092bbc..8f9ced0 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,11 +1,11 @@ pkgbase = bino pkgdesc = 3D video player with multi-display support pkgver = 1.6.8 - pkgrel = 2 + pkgrel = 3 url = https://bino3d.org/ arch = x86_64 license = GPL3 - depends = ffmpeg + depends = ffmpeg4.4 depends = freealut depends = freeglut depends = glewmx diff --git a/PKGBUILD b/PKGBUILD index 101d5f4..a3e330c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,12 +5,12 @@ pkgname=bino pkgver=1.6.8 -pkgrel=2 +pkgrel=3 pkgdesc='3D video player with multi-display support' arch=('x86_64') url='https://bino3d.org/' license=('GPL3') -depends=('ffmpeg' 'freealut' 'freeglut' 'glewmx' 'libass' 'qt5-base') +depends=('ffmpeg4.4' 'freealut' 'freeglut' 'glewmx' 'libass' 'qt5-base') optdepends=('lirc: infrared remote control') source=(https://bino3d.org/releases/bino-${pkgver}.tar.xz{,.sig} ffmpeg4.4.patch) diff --git a/ffmpeg4.4.patch b/ffmpeg4.4.patch index a9ac88d..f809290 100644 --- a/ffmpeg4.4.patch +++ b/ffmpeg4.4.patch @@ -31,12 +31,12 @@ AC_CHECK_PROGS([UPDATE_DESKTOP_DATABASE], [update-desktop-database]) +dnl ffmpeg4.4 libs -+LIBS+=" /usr/lib/libswscale.so.5" -+LIBS+=" /usr/lib/libavutil.so.56" -+LIBS+=" /usr/lib/libavformat.so.58" -+LIBS+=" /usr/lib/libavdevice.so.58" -+LIBS+=" /usr/lib/libavcodec.so.58" -+CPPFLAGS+=" -I/usr/include/ffmpeg4.4" ++LIBS="$LIBS /usr/lib/libswscale.so.5" ++LIBS="$LIBS /usr/lib/libavutil.so.56" ++LIBS="$LIBS /usr/lib/libavformat.so.58" ++LIBS="$LIBS /usr/lib/libavdevice.so.58" ++LIBS="$LIBS /usr/lib/libavcodec.so.58" ++CPPFLAGS="$CPPFLAGS -I/usr/include/ffmpeg4.4" + dnl Check if all libraries were found if test "$am_cv_func_iconv" != "yes" \ From cb7fe24648232137bdb358cf58c9e154fca47a26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 15 Jun 2022 00:37:21 +0200 Subject: [PATCH 298/971] Update ffmpeg4.4.patch checksum --- .SRCINFO | 4 ++-- PKGBUILD | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 8f9ced0..7f5c885 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = bino pkgdesc = 3D video player with multi-display support pkgver = 1.6.8 - pkgrel = 3 + pkgrel = 4 url = https://bino3d.org/ arch = x86_64 license = GPL3 @@ -18,6 +18,6 @@ pkgbase = bino validpgpkeys = 2F61B4828BBA779AECB3F32703A2A4AB1E32FD34 sha512sums = d8cf5be356add4ed3fb36673038b5ffd92d0dc840798cc616fa4b11fec221c7f114347dfc7cdb7a3a24c5599b56301cddc99f84d3862d8e874612960281319cc sha512sums = SKIP - sha512sums = d4768179c13079fb93a5e8c36a4228245ff04e1049a8186f942fe2d3e20a8d34b9064d140a1aaf4c5499405bb34e8924b3fffd0fabf2e1652b5a1c3cbb1d343a + sha512sums = f7bf716a6ae12a4542ecaddeaee1078a6c26d9d765db7cc11a1d7b1ae19b295703f5b05e71564f1aad216485b904d81f2670c122e88ab79c7556f5614c0d1639 pkgname = bino diff --git a/PKGBUILD b/PKGBUILD index a3e330c..68f4b3c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,18 +5,18 @@ pkgname=bino pkgver=1.6.8 -pkgrel=3 +pkgrel=4 pkgdesc='3D video player with multi-display support' arch=('x86_64') url='https://bino3d.org/' license=('GPL3') depends=('ffmpeg4.4' 'freealut' 'freeglut' 'glewmx' 'libass' 'qt5-base') optdepends=('lirc: infrared remote control') -source=(https://bino3d.org/releases/bino-${pkgver}.tar.xz{,.sig} +source=(https://bino3d.org/releases/${pkgname}-${pkgver}.tar.xz{,.sig} ffmpeg4.4.patch) sha512sums=('d8cf5be356add4ed3fb36673038b5ffd92d0dc840798cc616fa4b11fec221c7f114347dfc7cdb7a3a24c5599b56301cddc99f84d3862d8e874612960281319cc' 'SKIP' - 'd4768179c13079fb93a5e8c36a4228245ff04e1049a8186f942fe2d3e20a8d34b9064d140a1aaf4c5499405bb34e8924b3fffd0fabf2e1652b5a1c3cbb1d343a') + 'f7bf716a6ae12a4542ecaddeaee1078a6c26d9d765db7cc11a1d7b1ae19b295703f5b05e71564f1aad216485b904d81f2670c122e88ab79c7556f5614c0d1639') validpgpkeys=('2F61B4828BBA779AECB3F32703A2A4AB1E32FD34') prepare() { From 1eeab7daf373ef25111157dc88658763ed744301 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 23 Jun 2022 19:05:55 +0200 Subject: [PATCH 299/971] Bump to 20220621 --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 74056af..8dc9686 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20220606.0.r33.g2610918ed + pkgver = 20220621.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/PKGBUILD b/PKGBUILD index bfc9fbf..05daa8e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20220606.0.r33.g2610918ed +pkgver=20220621.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From c02a18702efdeaba65177dce4d4f7035c4c1789e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 23 Jun 2022 19:06:17 +0200 Subject: [PATCH 300/971] Release 20220621.0 --- .SRCINFO | 18 +++++++++--------- PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index a673213..c29830e 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20220606.0 + pkgver = 20220621.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220606/x86_64/runsc - source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220606/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = 26c614e815a6c42666931fd67d3bbed3520ac1643917fe04989a1e775a708f82f6d5118dafb1cc2435b243bde9b980b8a8ddada22a067cae55d1e6447c1a54d0 - sha512sums_x86_64 = 3f0297cf2f0d31b83590463616e202a2115c3ad5aa56c767511fa8f13ba594927738704405ffed2d1e836e70b75f5aad7e667fc54575dcace00c8ea52bde279b - source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220606/aarch64/runsc - source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220606/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 66e44c009f91ce7910593283270df57c6e9c7614fd23296125351a83ae288838e3fc86da741e3b0ec5343f3611e68e6ddbe1898be504febf59aa4780373f78a2 - sha512sums_aarch64 = ccc9c7c469f12784b55a99ff1278104484605f76a5e3559a05344b480d91f556baf4d2a2ad370b0ef2b8ac85b20a582a8c9e0e1b99e6225c3f23e12af68cc277 + source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220621/x86_64/runsc + source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220621/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = 632e0dbf3027de98b249ccc5876730d57aebd4db4fc46f57a0c587094cb6e157f81a9f0e16b5ebcb3c3f4a72686f37a4aa1532422e110141ff00d8c7f820319b + sha512sums_x86_64 = 073a1993c2c9f1edb67ed3d3ea7bd659819fac10356098dfd20311cdb0ebf15b5b337a594219571476c319515483b6e7cedc99dd42d8b1a8fc5cda33352f7105 + source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220621/aarch64/runsc + source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220621/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 296ae7afa3ea613d946af52c65ac952805e1afd9c7dc38f38c919944afb78a9009d6575eab9d1a1f30b3e6e4bf9077a9f97b592bd1458cef56ab72a47f2429c1 + sha512sums_aarch64 = 20b91a5e5f5f4c47d04628bc5d462eaf8179cbd1b5968017cd3101db91093e14e92df5ecf96ae17e64a34c79a7999ff28b14f4fa107f89fb612fbb8aa237bb2a pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 6acd9d4..2d29ba3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20220606.0 +pkgver=20220621.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -26,12 +26,12 @@ source_aarch64=( "https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/aarch64/$_pkgshim" ) sha512sums_x86_64=( - '26c614e815a6c42666931fd67d3bbed3520ac1643917fe04989a1e775a708f82f6d5118dafb1cc2435b243bde9b980b8a8ddada22a067cae55d1e6447c1a54d0' - '3f0297cf2f0d31b83590463616e202a2115c3ad5aa56c767511fa8f13ba594927738704405ffed2d1e836e70b75f5aad7e667fc54575dcace00c8ea52bde279b' + '632e0dbf3027de98b249ccc5876730d57aebd4db4fc46f57a0c587094cb6e157f81a9f0e16b5ebcb3c3f4a72686f37a4aa1532422e110141ff00d8c7f820319b' + '073a1993c2c9f1edb67ed3d3ea7bd659819fac10356098dfd20311cdb0ebf15b5b337a594219571476c319515483b6e7cedc99dd42d8b1a8fc5cda33352f7105' ) sha512sums_aarch64=( - '66e44c009f91ce7910593283270df57c6e9c7614fd23296125351a83ae288838e3fc86da741e3b0ec5343f3611e68e6ddbe1898be504febf59aa4780373f78a2' - 'ccc9c7c469f12784b55a99ff1278104484605f76a5e3559a05344b480d91f556baf4d2a2ad370b0ef2b8ac85b20a582a8c9e0e1b99e6225c3f23e12af68cc277' + '296ae7afa3ea613d946af52c65ac952805e1afd9c7dc38f38c919944afb78a9009d6575eab9d1a1f30b3e6e4bf9077a9f97b592bd1458cef56ab72a47f2429c1' + '20b91a5e5f5f4c47d04628bc5d462eaf8179cbd1b5968017cd3101db91093e14e92df5ecf96ae17e64a34c79a7999ff28b14f4fa107f89fb612fbb8aa237bb2a' ) package() { From 44d788490853d79a30254216db68ce158a9110de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 2 Jul 2022 22:30:54 +0200 Subject: [PATCH 301/971] Release 20220627.0 --- .SRCINFO | 18 +++++++++--------- PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index c29830e..61dac5f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20220621.0 + pkgver = 20220627.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220621/x86_64/runsc - source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220621/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = 632e0dbf3027de98b249ccc5876730d57aebd4db4fc46f57a0c587094cb6e157f81a9f0e16b5ebcb3c3f4a72686f37a4aa1532422e110141ff00d8c7f820319b - sha512sums_x86_64 = 073a1993c2c9f1edb67ed3d3ea7bd659819fac10356098dfd20311cdb0ebf15b5b337a594219571476c319515483b6e7cedc99dd42d8b1a8fc5cda33352f7105 - source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220621/aarch64/runsc - source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220621/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 296ae7afa3ea613d946af52c65ac952805e1afd9c7dc38f38c919944afb78a9009d6575eab9d1a1f30b3e6e4bf9077a9f97b592bd1458cef56ab72a47f2429c1 - sha512sums_aarch64 = 20b91a5e5f5f4c47d04628bc5d462eaf8179cbd1b5968017cd3101db91093e14e92df5ecf96ae17e64a34c79a7999ff28b14f4fa107f89fb612fbb8aa237bb2a + source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220627/x86_64/runsc + source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220627/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = f782c80ef9ed35ae488150f4784995358dd8935b0197cae1f90b7519c555a7b61ed73a36bd29e98cca97182b7acf65382eb9e8694db29731255fc0063fab9a71 + sha512sums_x86_64 = c3199796fc722f90296d8b70e6d7cc633759087c7581772d4eb297b58922d8e756e82122c03d0f942bf8f086c280d032a1198777e2140952d7743177fc35b760 + source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220627/aarch64/runsc + source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220627/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 2a3375a7e816e715205252d4b509a09723ae2ba39663eaf2a57ffbb7bba8886cdb6cc1c47b949452552450dcbec3e081f4ae9330d16ce4bc1db98de8563a0849 + sha512sums_aarch64 = 122e2bbe696324f0a64ab7045a0f3ea9131d98fa8c8ed0856dbec8a60169a98c43936d00e888b90830b9e2c0cbe7ab937cecec260569a411fd618ce0ffcefffd pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 2d29ba3..6cbaa71 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20220621.0 +pkgver=20220627.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -26,12 +26,12 @@ source_aarch64=( "https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/aarch64/$_pkgshim" ) sha512sums_x86_64=( - '632e0dbf3027de98b249ccc5876730d57aebd4db4fc46f57a0c587094cb6e157f81a9f0e16b5ebcb3c3f4a72686f37a4aa1532422e110141ff00d8c7f820319b' - '073a1993c2c9f1edb67ed3d3ea7bd659819fac10356098dfd20311cdb0ebf15b5b337a594219571476c319515483b6e7cedc99dd42d8b1a8fc5cda33352f7105' + 'f782c80ef9ed35ae488150f4784995358dd8935b0197cae1f90b7519c555a7b61ed73a36bd29e98cca97182b7acf65382eb9e8694db29731255fc0063fab9a71' + 'c3199796fc722f90296d8b70e6d7cc633759087c7581772d4eb297b58922d8e756e82122c03d0f942bf8f086c280d032a1198777e2140952d7743177fc35b760' ) sha512sums_aarch64=( - '296ae7afa3ea613d946af52c65ac952805e1afd9c7dc38f38c919944afb78a9009d6575eab9d1a1f30b3e6e4bf9077a9f97b592bd1458cef56ab72a47f2429c1' - '20b91a5e5f5f4c47d04628bc5d462eaf8179cbd1b5968017cd3101db91093e14e92df5ecf96ae17e64a34c79a7999ff28b14f4fa107f89fb612fbb8aa237bb2a' + '2a3375a7e816e715205252d4b509a09723ae2ba39663eaf2a57ffbb7bba8886cdb6cc1c47b949452552450dcbec3e081f4ae9330d16ce4bc1db98de8563a0849' + '122e2bbe696324f0a64ab7045a0f3ea9131d98fa8c8ed0856dbec8a60169a98c43936d00e888b90830b9e2c0cbe7ab937cecec260569a411fd618ce0ffcefffd' ) package() { From 841d6fa4bbb7e0a52843bd5866288a62a64d83af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 2 Jul 2022 22:30:35 +0200 Subject: [PATCH 302/971] Bump to 20220627 --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 8dc9686..8ee1e5a 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20220621.0 + pkgver = 20220627.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/PKGBUILD b/PKGBUILD index 05daa8e..652ab22 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20220621.0 +pkgver=20220627.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From 2fdf17d6e12f037fd83cffbda44e4ffb57a44373 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 4 Jul 2022 17:12:47 +0200 Subject: [PATCH 303/971] Add missing python3 pycs --- .SRCINFO | 2 +- PKGBUILD | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 4b0d286..6a70eae 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system pkgver = 2.18.0 - pkgrel = 1 + pkgrel = 2 url = https://github.com/redhat-performance/tuned install = tuned.install arch = any diff --git a/PKGBUILD b/PKGBUILD index d13ea1b..05d5047 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,7 +5,7 @@ pkgname=tuned pkgver=2.18.0 -pkgrel=1 +pkgrel=2 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url="https://github.com/redhat-performance/${pkgname}" @@ -32,5 +32,8 @@ package() { make DESTDIR="${pkgdir}" install rm -r "${pkgdir}"/{run,var} + python -m compileall -d /usr/lib "$pkgdir/usr/lib" + python -O -m compileall -d /usr/lib "$pkgdir/usr/lib" + install -Dm644 tuned.service "${pkgdir}/usr/lib/systemd/system/" } From dbc0828d1c66d3fdb47e3c6631109d70e849ec23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 10 Jul 2022 23:53:35 +0200 Subject: [PATCH 304/971] Bump to 20220704 --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 8ee1e5a..eb18829 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20220627.0 + pkgver = 20220704.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/PKGBUILD b/PKGBUILD index 652ab22..7402efd 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20220627.0 +pkgver=20220704.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From fae32856ad1dd5d9df7323f34a556a84de1850d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 10 Jul 2022 23:54:09 +0200 Subject: [PATCH 305/971] Release 20220704.0 --- .SRCINFO | 18 +++++++++--------- PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 61dac5f..66c6791 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20220627.0 + pkgver = 20220704.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220627/x86_64/runsc - source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220627/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = f782c80ef9ed35ae488150f4784995358dd8935b0197cae1f90b7519c555a7b61ed73a36bd29e98cca97182b7acf65382eb9e8694db29731255fc0063fab9a71 - sha512sums_x86_64 = c3199796fc722f90296d8b70e6d7cc633759087c7581772d4eb297b58922d8e756e82122c03d0f942bf8f086c280d032a1198777e2140952d7743177fc35b760 - source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220627/aarch64/runsc - source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220627/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 2a3375a7e816e715205252d4b509a09723ae2ba39663eaf2a57ffbb7bba8886cdb6cc1c47b949452552450dcbec3e081f4ae9330d16ce4bc1db98de8563a0849 - sha512sums_aarch64 = 122e2bbe696324f0a64ab7045a0f3ea9131d98fa8c8ed0856dbec8a60169a98c43936d00e888b90830b9e2c0cbe7ab937cecec260569a411fd618ce0ffcefffd + source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220704/x86_64/runsc + source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220704/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = 4d2f7c157b93d4f4ad4c03eef5bc6fd80173f8a11c2764035ea2b8c54062b21fb97d5b5f6996009842e841d9bc137e90697da6a56816335063579024bb5a36b9 + sha512sums_x86_64 = 2e5f7c182f67326845f2f93e2051188ef6909cadb1f9d87df3c19bd8d527ae4596534a9b41b67c712c046eb422c20265c9bed8e6cde9413df81c698038158ac9 + source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220704/aarch64/runsc + source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220704/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 4d460a59552dcbcf11d969030e2aad6a520ef88b4d6c2818dc3a2e8a2a276615cc08efceae35e60044b739be2285289c12022ba3278e431606331f7cebecde72 + sha512sums_aarch64 = dc2f8814ec30fc172e6ca86471918650c57ed106798b0f9164517ceb74653102387e8aadc547be0a9712f842053d63f1f4296d48d51aa1aa569cc8e2f1d59c80 pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 6cbaa71..3c135d0 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20220627.0 +pkgver=20220704.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -26,12 +26,12 @@ source_aarch64=( "https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/aarch64/$_pkgshim" ) sha512sums_x86_64=( - 'f782c80ef9ed35ae488150f4784995358dd8935b0197cae1f90b7519c555a7b61ed73a36bd29e98cca97182b7acf65382eb9e8694db29731255fc0063fab9a71' - 'c3199796fc722f90296d8b70e6d7cc633759087c7581772d4eb297b58922d8e756e82122c03d0f942bf8f086c280d032a1198777e2140952d7743177fc35b760' + '4d2f7c157b93d4f4ad4c03eef5bc6fd80173f8a11c2764035ea2b8c54062b21fb97d5b5f6996009842e841d9bc137e90697da6a56816335063579024bb5a36b9' + '2e5f7c182f67326845f2f93e2051188ef6909cadb1f9d87df3c19bd8d527ae4596534a9b41b67c712c046eb422c20265c9bed8e6cde9413df81c698038158ac9' ) sha512sums_aarch64=( - '2a3375a7e816e715205252d4b509a09723ae2ba39663eaf2a57ffbb7bba8886cdb6cc1c47b949452552450dcbec3e081f4ae9330d16ce4bc1db98de8563a0849' - '122e2bbe696324f0a64ab7045a0f3ea9131d98fa8c8ed0856dbec8a60169a98c43936d00e888b90830b9e2c0cbe7ab937cecec260569a411fd618ce0ffcefffd' + '4d460a59552dcbcf11d969030e2aad6a520ef88b4d6c2818dc3a2e8a2a276615cc08efceae35e60044b739be2285289c12022ba3278e431606331f7cebecde72' + 'dc2f8814ec30fc172e6ca86471918650c57ed106798b0f9164517ceb74653102387e8aadc547be0a9712f842053d63f1f4296d48d51aa1aa569cc8e2f1d59c80' ) package() { From 6e6e2b0358d07bc717fae7b278edbe9f9b36ab57 Mon Sep 17 00:00:00 2001 From: Christian Pellegrin Date: Mon, 11 Jul 2022 20:25:36 +0100 Subject: [PATCH 306/971] upgpkg: systemtap 4.7-1 upstream release --- .SRCINFO | 12 +- ...error-for-wrong-type-of-printf-width.patch | 60 ---------- 0002-configury-let-python3-be-python3.patch | 103 ------------------ PKGBUILD | 15 +-- 4 files changed, 8 insertions(+), 182 deletions(-) delete mode 100644 0001-Fix-Werror-for-wrong-type-of-printf-width.patch delete mode 100644 0002-configury-let-python3-be-python3.patch diff --git a/.SRCINFO b/.SRCINFO index 28e4073..dbdde16 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = systemtap pkgdesc = Infrastructure to simplify the gathering of information about the running Linux system - pkgver = 4.6 + pkgver = 4.7 pkgrel = 1 url = http://sourceware.org/systemtap/ install = systemtap.install @@ -15,16 +15,12 @@ pkgbase = systemtap depends = python depends = cpio optdepends = sqlite3: for storing results in a database - source = systemtap-4.6.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-4.6.tar.gz - source = systemtap-4.6.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/systemtap-4.6.tar.gz.asc - source = 0001-Fix-Werror-for-wrong-type-of-printf-width.patch - source = 0002-configury-let-python3-be-python3.patch + source = systemtap-4.7.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-4.7.tar.gz + source = systemtap-4.7.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/systemtap-4.7.tar.gz.sig validpgpkeys = F75E6545B9F8AA15AA932A444DE16D68FDBFFFB8 validpgpkeys = 5D38116FA4D3A7CC77E378D37E83610126DCC2E8 validpgpkeys = 159B0DF71150B8A8539A8802D7C256443CC637CA - sha512sums = 835b45597e9de0ea17857b47d542c87d155cb5c772f8595f41845a25ff06b862cb9c4b635292c3a6c66cb5255a07eee3af7cb7861110a4a05f545a4b35f11402 + sha512sums = 7d7c213dc4f7c5430f81763668da21403fbc351d1701b1096eb1ad233e3f0325e35f01dfd0a33e75f277b26fdde88c46d42dd32e32e4d4f27a45d53e2dd0f831 sha512sums = SKIP - sha512sums = da1b3d2319bfd711ba7e2e436cd476cbc7a63d442d8ad26fc010c219b9ca2343054a061767f0acc624620dc1eb3ca5a70ab130895181ed8e00c05b51ac651568 - sha512sums = 26dc15751040ac444a74046cdb2f5cad456752f06d0916ef3f97e5faf98e1f382b638adb850ed98b287b72dea63c7a16c5ad98b9ad452da4042a1ae36260a54e pkgname = systemtap diff --git a/0001-Fix-Werror-for-wrong-type-of-printf-width.patch b/0001-Fix-Werror-for-wrong-type-of-printf-width.patch deleted file mode 100644 index 168dee0..0000000 --- a/0001-Fix-Werror-for-wrong-type-of-printf-width.patch +++ /dev/null @@ -1,60 +0,0 @@ -From bd29667acb81d237261b035ed5cab8173dddf9a8 Mon Sep 17 00:00:00 2001 -From: Christian Pellegrin -Date: Sun, 21 Nov 2021 14:46:29 +0000 -Subject: [PATCH 1/2] Fix -Werror for wrong type of printf width. - -Signed-off-by: Christian Pellegrin ---- - staprun/monitor.c | 24 ++++++++++++------------ - 1 file changed, 12 insertions(+), 12 deletions(-) - -diff --git a/staprun/monitor.c b/staprun/monitor.c -index 478634c09..848bd7ea9 100644 ---- a/staprun/monitor.c -+++ b/staprun/monitor.c -@@ -448,12 +448,12 @@ void monitor_render(void) - if (active_window == 0) - wattron(status, A_BOLD); - wprintw(status, "\n%*s\t%*s\t%*s\t%*s\t%*s\t%*s\t%s\n", -- width[p_index], HIGHLIGHT("index", p_index, comp_fn_index), -- width[p_state], HIGHLIGHT("state", p_state, comp_fn_index), -- width[p_hits], HIGHLIGHT("hits", p_hits, comp_fn_index), -- width[p_min], HIGHLIGHT("min", p_min, comp_fn_index), -- width[p_avg], HIGHLIGHT("avg", p_avg, comp_fn_index), -- width[p_max], HIGHLIGHT("max", p_max, comp_fn_index), -+ (int) width[p_index], HIGHLIGHT("index", p_index, comp_fn_index), -+ (int) width[p_state], HIGHLIGHT("state", p_state, comp_fn_index), -+ (int) width[p_hits], HIGHLIGHT("hits", p_hits, comp_fn_index), -+ (int) width[p_min], HIGHLIGHT("min", p_min, comp_fn_index), -+ (int) width[p_avg], HIGHLIGHT("avg", p_avg, comp_fn_index), -+ (int) width[p_max], HIGHLIGHT("max", p_max, comp_fn_index), - HIGHLIGHT("name", p_name, comp_fn_index)); - if (active_window == 0) - wattroff(status, A_BOLD); -@@ -466,17 +466,17 @@ void monitor_render(void) - json_object *probe, *field; - probe = json_object_array_get_idx(jso_probe_list, i); - json_object_object_get_ex(probe, "index", &field); -- wprintw(status, "%*s\t", width[p_index], json_object_get_string(field)); -+ wprintw(status, "%*s\t", (int) width[p_index], json_object_get_string(field)); - json_object_object_get_ex(probe, "state", &field); -- wprintw(status, "%*s\t", width[p_state], json_object_get_string(field)); -+ wprintw(status, "%*s\t", (int) width[p_state], json_object_get_string(field)); - json_object_object_get_ex(probe, "hits", &field); -- wprintw(status, "%*s\t", width[p_hits], json_object_get_string(field)); -+ wprintw(status, "%*s\t", (int) width[p_hits], json_object_get_string(field)); - json_object_object_get_ex(probe, "min", &field); -- wprintw(status, "%*s\t", width[p_min], json_object_get_string(field)); -+ wprintw(status, "%*s\t", (int) width[p_min], json_object_get_string(field)); - json_object_object_get_ex(probe, "avg", &field); -- wprintw(status, "%*s\t", width[p_avg], json_object_get_string(field)); -+ wprintw(status, "%*s\t", (int) width[p_avg], json_object_get_string(field)); - json_object_object_get_ex(probe, "max", &field); -- wprintw(status, "%*s\t", width[p_max], json_object_get_string(field)); -+ wprintw(status, "%*s\t", (int) width[p_max], json_object_get_string(field)); - getyx(status, discard, cur_x); - json_object_object_get_ex(probe, "name", &field); - wprintw(status, "%.*s", max_cols-cur_x-1, json_object_get_string(field)); --- -2.34.0 - diff --git a/0002-configury-let-python3-be-python3.patch b/0002-configury-let-python3-be-python3.patch deleted file mode 100644 index 421ec4c..0000000 --- a/0002-configury-let-python3-be-python3.patch +++ /dev/null @@ -1,103 +0,0 @@ -From 6803c3b91f423c0aa2b4fbc1e5081ac7fb216e2f Mon Sep 17 00:00:00 2001 -From: "Frank Ch. Eigler" -Date: Fri, 19 Nov 2021 22:22:45 -0500 -Subject: [PATCH 2/2] configury: let python3 be python3 - -Our baroque heuristics for identifying python2/3 under their various -historical aliases is showing its age. On some modern distros, -/usr/bin/python is to be positively NOT used. Fixing configure.ac -$PYTHON3 search to only look for python3, and not even consider -$PYTHON_UNKNOWN. At some point we'll want to simplify further, and -get rid of python2 remnants. - -Signed-off-by: Christian Pellegrin ---- - configure | 45 +-------------------------------------------- - configure.ac | 8 ++------ - 2 files changed, 3 insertions(+), 50 deletions(-) - -diff --git a/configure b/configure -index 6d0d53992..962323156 100755 ---- a/configure -+++ b/configure -@@ -9350,49 +9350,7 @@ fi - as_fn_append ac_configure_args " python='$PYTHON' pyexecdir='$pyexecdir'" - - # Now let's try to find python version 3. --if test "x$PYTHON_UNKNOWN" != "xno" -a "x$ac_cv_python_unknown_version" = "x3"; then -- # Extract the first word of "python", so it can be a program name with args. --set dummy python; ac_word=$2 --{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 --$as_echo_n "checking for $ac_word... " >&6; } --if ${ac_cv_path_PYTHON3+:} false; then : -- $as_echo_n "(cached) " >&6 --else -- case $PYTHON3 in -- [\\/]* | ?:[\\/]*) -- ac_cv_path_PYTHON3="$PYTHON3" # Let the user override the test with a path. -- ;; -- *) -- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR --for as_dir in $PATH --do -- IFS=$as_save_IFS -- test -z "$as_dir" && as_dir=. -- for ac_exec_ext in '' $ac_executable_extensions; do -- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -- ac_cv_path_PYTHON3="$as_dir/$ac_word$ac_exec_ext" -- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 -- break 2 -- fi --done -- done --IFS=$as_save_IFS -- -- ;; --esac --fi --PYTHON3=$ac_cv_path_PYTHON3 --if test -n "$PYTHON3"; then -- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON3" >&5 --$as_echo "$PYTHON3" >&6; } --else -- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 --$as_echo "no" >&6; } --fi -- -- --else -- for ac_prog in python3 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python3.1 python3.0 -+for ac_prog in python3 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python3.1 python3.0 - do - # Extract the first word of "$ac_prog", so it can be a program name with args. - set dummy $ac_prog; ac_word=$2 -@@ -9438,7 +9396,6 @@ fi - done - test -n "$PYTHON3" || PYTHON3=":" - --fi - python3_basename=$(basename "$PYTHON3") - - cat >>confdefs.h <<_ACEOF -diff --git a/configure.ac b/configure.ac -index b0a823604..d1b124763 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -88,12 +88,8 @@ fi - AS_VAR_APPEND([ac_configure_args], [" python='$PYTHON' pyexecdir='$pyexecdir'"]) - - # Now let's try to find python version 3. --if test "x$PYTHON_UNKNOWN" != "xno" -a "x$ac_cv_python_unknown_version" = "x3"; then -- AC_PATH_PROG([PYTHON3], [python]) --else -- AC_PATH_PROGS([PYTHON3], -- [python3 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python3.1 python3.0], [:]) --fi -+AC_PATH_PROGS([PYTHON3], -+ [python3 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python3.1 python3.0], [:]) - python3_basename=$(basename "$PYTHON3") - AC_DEFINE_UNQUOTED([PYTHON3_BASENAME], "${python3_basename}", - [Base name of the python3 interpreter binary.]) --- -2.34.0 - diff --git a/PKGBUILD b/PKGBUILD index e85d853..50d6398 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ # Original Maintainer: Christian Rebischke # Original Maintainer: dront78 pkgname=systemtap -pkgver=4.6 +pkgver=4.7 pkgrel=1 pkgdesc="Infrastructure to simplify the gathering of information about the running Linux system" url="http://sourceware.org/systemtap/" @@ -14,14 +14,10 @@ depends=('elfutils' 'nss' 'python' 'cpio') makedepends=('python-setuptools' 'python2-setuptools' 'xmlto') optdepends=('sqlite3: for storing results in a database') source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz" - "${pkgname}-${pkgver}.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz.asc" - "0001-Fix-Werror-for-wrong-type-of-printf-width.patch" - "0002-configury-let-python3-be-python3.patch" + "${pkgname}-${pkgver}.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz.sig" ) -sha512sums=('835b45597e9de0ea17857b47d542c87d155cb5c772f8595f41845a25ff06b862cb9c4b635292c3a6c66cb5255a07eee3af7cb7861110a4a05f545a4b35f11402' - 'SKIP' - 'da1b3d2319bfd711ba7e2e436cd476cbc7a63d442d8ad26fc010c219b9ca2343054a061767f0acc624620dc1eb3ca5a70ab130895181ed8e00c05b51ac651568' - '26dc15751040ac444a74046cdb2f5cad456752f06d0916ef3f97e5faf98e1f382b638adb850ed98b287b72dea63c7a16c5ad98b9ad452da4042a1ae36260a54e') +sha512sums=('7d7c213dc4f7c5430f81763668da21403fbc351d1701b1096eb1ad233e3f0325e35f01dfd0a33e75f277b26fdde88c46d42dd32e32e4d4f27a45d53e2dd0f831' + 'SKIP') install='systemtap.install' # Note, you need to run: # gpg --recv-keys --keyserver hkps://keys.openpgp.org/ 0xD7C256443CC637CA @@ -32,9 +28,6 @@ validpgpkeys=('F75E6545B9F8AA15AA932A444DE16D68FDBFFFB8' # "Serhei Makarov (fo prepare() { cd "${pkgname}-${pkgver}" - for i in "${srcdir}"/*.patch; do - patch -Np1 -i "$i" - done } build() { From e50958b5c0c45e6ae29035b3fc582bb57c092845 Mon Sep 17 00:00:00 2001 From: Jonathan Liu Date: Fri, 15 Jul 2022 14:02:20 +1000 Subject: [PATCH 307/971] Update to 0.0.27-2 --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 44f6f39..6098e0c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,12 +1,12 @@ pkgbase = wxedid pkgdesc = wxWidgets-based EDID (Extended Display Identification Data) editor pkgver = 0.0.27 - pkgrel = 1 + pkgrel = 2 url = https://sourceforge.net/projects/wxedid/ arch = i686 arch = x86_64 license = GPL3 - depends = wxgtk2 + depends = wxwidgets-gtk3 options = !buildflags source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.27.tar.gz md5sums = 1093c29241b01bc3c0a48729156f1afd diff --git a/PKGBUILD b/PKGBUILD index 37f51a8..d0360e7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,12 +1,12 @@ # Maintainer: Jonathan Liu pkgname=wxedid pkgver=0.0.27 -pkgrel=1 +pkgrel=2 pkgdesc="wxWidgets-based EDID (Extended Display Identification Data) editor" arch=('i686' 'x86_64') url="https://sourceforge.net/projects/wxedid/" license=('GPL3') -depends=('wxgtk2') +depends=('wxwidgets-gtk3') options=('!buildflags') source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz") md5sums=('1093c29241b01bc3c0a48729156f1afd') From e34cdb587b02fe1bb3a3e5aa7b414bee81ed67d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 15 Jul 2022 23:57:25 +0200 Subject: [PATCH 308/971] Release 20220713.0 --- .SRCINFO | 18 +++++++++--------- PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 66c6791..4d7b3df 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20220704.0 + pkgver = 20220713.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220704/x86_64/runsc - source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220704/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = 4d2f7c157b93d4f4ad4c03eef5bc6fd80173f8a11c2764035ea2b8c54062b21fb97d5b5f6996009842e841d9bc137e90697da6a56816335063579024bb5a36b9 - sha512sums_x86_64 = 2e5f7c182f67326845f2f93e2051188ef6909cadb1f9d87df3c19bd8d527ae4596534a9b41b67c712c046eb422c20265c9bed8e6cde9413df81c698038158ac9 - source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220704/aarch64/runsc - source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220704/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 4d460a59552dcbcf11d969030e2aad6a520ef88b4d6c2818dc3a2e8a2a276615cc08efceae35e60044b739be2285289c12022ba3278e431606331f7cebecde72 - sha512sums_aarch64 = dc2f8814ec30fc172e6ca86471918650c57ed106798b0f9164517ceb74653102387e8aadc547be0a9712f842053d63f1f4296d48d51aa1aa569cc8e2f1d59c80 + source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220713/x86_64/runsc + source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220713/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = e2f9a7470eb3761b88fb32a00690652053a3d1b41e82a56e2046d39d7302a1845774deacb3898220e921a729f19ef86881812c0e9148daef981b19a3a5d7cade + sha512sums_x86_64 = 0eb173dbb220eaecb489d4ec045b898e2aa1373b71b05fd402ec2aaf24a05a4ae6c37e30a5108b9f189977d8e4f455687e3a17c652bcf85a200310b811473316 + source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220713/aarch64/runsc + source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220713/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 31d9d595d4c70fb6300fa003f9f4baec0c17e6f0aef3796e191a02d8b3166afdce907bde6858ede7a1118b3898c9213ce4194a4cafbc74ce420fee44cf97090b + sha512sums_aarch64 = 0e0998ab5657737ffc765bba5948ef471cd6a3b8b1070914e744661dc2d9951bc516bc39c2874b81c0cf853a120f903721500892cd367bf0fd61f44fa0db37d1 pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 3c135d0..2624b4c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20220704.0 +pkgver=20220713.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -26,12 +26,12 @@ source_aarch64=( "https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/aarch64/$_pkgshim" ) sha512sums_x86_64=( - '4d2f7c157b93d4f4ad4c03eef5bc6fd80173f8a11c2764035ea2b8c54062b21fb97d5b5f6996009842e841d9bc137e90697da6a56816335063579024bb5a36b9' - '2e5f7c182f67326845f2f93e2051188ef6909cadb1f9d87df3c19bd8d527ae4596534a9b41b67c712c046eb422c20265c9bed8e6cde9413df81c698038158ac9' + 'e2f9a7470eb3761b88fb32a00690652053a3d1b41e82a56e2046d39d7302a1845774deacb3898220e921a729f19ef86881812c0e9148daef981b19a3a5d7cade' + '0eb173dbb220eaecb489d4ec045b898e2aa1373b71b05fd402ec2aaf24a05a4ae6c37e30a5108b9f189977d8e4f455687e3a17c652bcf85a200310b811473316' ) sha512sums_aarch64=( - '4d460a59552dcbcf11d969030e2aad6a520ef88b4d6c2818dc3a2e8a2a276615cc08efceae35e60044b739be2285289c12022ba3278e431606331f7cebecde72' - 'dc2f8814ec30fc172e6ca86471918650c57ed106798b0f9164517ceb74653102387e8aadc547be0a9712f842053d63f1f4296d48d51aa1aa569cc8e2f1d59c80' + '31d9d595d4c70fb6300fa003f9f4baec0c17e6f0aef3796e191a02d8b3166afdce907bde6858ede7a1118b3898c9213ce4194a4cafbc74ce420fee44cf97090b' + '0e0998ab5657737ffc765bba5948ef471cd6a3b8b1070914e744661dc2d9951bc516bc39c2874b81c0cf853a120f903721500892cd367bf0fd61f44fa0db37d1' ) package() { From 1cbfd7fdd3fa77d73c33b961dfcfaad870db25b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 15 Jul 2022 23:57:49 +0200 Subject: [PATCH 309/971] Bump to 20220713 --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index eb18829..6d3b189 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20220704.0 + pkgver = 20220713.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/PKGBUILD b/PKGBUILD index 7402efd..eb931ca 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20220704.0 +pkgver=20220713.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From bd25c2efdeb725202a740ff5c5dca985eed00483 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 28 Jul 2022 16:23:44 +0200 Subject: [PATCH 310/971] Update to 0.11.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 7a55f12..8bc6c49 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = prometheus-postgresql-exporter pkgdesc = Prometheus exporter for PostgreSQL - pkgver = 0.10.1 + pkgver = 0.11.0 pkgrel = 1 url = https://github.com/prometheus-community/postgres_exporter arch = x86_64 @@ -9,10 +9,10 @@ pkgbase = prometheus-postgresql-exporter makedepends = go makedepends = make backup = etc/conf.d/prometheus-postgresql-exporter - source = https://github.com/prometheus-community/postgres_exporter/archive/v0.10.1.tar.gz + source = https://github.com/prometheus-community/postgres_exporter/archive/v0.11.0.tar.gz source = prometheus-postgresql-exporter.service source = prometheus-postgresql-exporter.conf - sha256sums = cddb910a748035304440c820bab8b02b101c8481aa24a8a6d8265536e2647894 + sha256sums = 2b71340ddb533a0c7372d38d5b09bd79e6737a2a1f8ce0c46900f172ccb1e8e4 sha256sums = 0d86e650d88c8d4a8bc5b26faecb75023e069eaf29582135bcb0202e4a69a9b9 sha256sums = 5436ad34fbcd6faab69da8675631f3eb5b89d964682eb23164bf4bb816ad1897 diff --git a/PKGBUILD b/PKGBUILD index 79b6e8f..ac9749f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Nils Czernia pkgname=prometheus-postgresql-exporter -pkgver=0.10.1 +pkgver=0.11.0 pkgrel=1 pkgdesc="Prometheus exporter for PostgreSQL" arch=('x86_64') @@ -13,7 +13,7 @@ backup=('etc/conf.d/prometheus-postgresql-exporter') source=("https://github.com/prometheus-community/postgres_exporter/archive/v${pkgver}.tar.gz" "prometheus-postgresql-exporter.service" "prometheus-postgresql-exporter.conf") -sha256sums=('cddb910a748035304440c820bab8b02b101c8481aa24a8a6d8265536e2647894' +sha256sums=('2b71340ddb533a0c7372d38d5b09bd79e6737a2a1f8ce0c46900f172ccb1e8e4' '0d86e650d88c8d4a8bc5b26faecb75023e069eaf29582135bcb0202e4a69a9b9' '5436ad34fbcd6faab69da8675631f3eb5b89d964682eb23164bf4bb816ad1897') From 5de5c9314286352e6fa5ce56b4409c1ef9b00926 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 31 Jul 2022 14:32:36 +0200 Subject: [PATCH 311/971] Update to version 0.5.4 --- .SRCINFO | 8 ++++---- PKGBUILD | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 534bc54..f7d8b1d 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = plasma5-wallpapers-wallpaper-engine pkgdesc = A KDE wallpaper plugin integrating wallpaper engine - pkgver = 0.5.3 + pkgver = 0.5.4 pkgrel = 1 url = https://github.com/catsout/wallpaper-engine-kde-plugin arch = x86_64 @@ -16,9 +16,9 @@ pkgbase = plasma5-wallpapers-wallpaper-engine depends = qt5-websockets optdepends = qt5-webchannel: for web support optdepends = mpv: alternative video backend - source = https://github.com/catsout/wallpaper-engine-kde-plugin/archive/refs/tags/v0.5.3.tar.gz - source = https://github.com/KhronosGroup/glslang/archive/refs/tags/11.10.0.tar.gz - sha256sums = 3278849fe3ec09640ccc0d3f4d88070b5b1b59cd7d5e3e1744e30ad584923184 + source = https://github.com/catsout/wallpaper-engine-kde-plugin/archive/v0.5.4.tar.gz + source = https://github.com/KhronosGroup/glslang/archive/11.10.0.tar.gz + sha256sums = 2a37d0a89b7c93017843ead842f3d6f5a21f10be6b8ff45dca1e946c350a18e1 sha256sums = 8ffc19c435232d09299dd2c91e247292b3508c1b826a3497c60682e4bbf2d602 pkgname = plasma5-wallpapers-wallpaper-engine diff --git a/PKGBUILD b/PKGBUILD index 84167e3..70bb5de 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=plasma5-wallpapers-wallpaper-engine _pkgname=wallpaper-engine-kde-plugin -pkgver=0.5.3 +pkgver=0.5.4 _pkgver_glslang=11.10.0 pkgrel=1 pkgdesc='A KDE wallpaper plugin integrating wallpaper engine' @@ -13,9 +13,9 @@ depends=('gst-libav' 'python-websockets' 'plasma-framework' 'qt5-declarative' 'q makedepends=('extra-cmake-modules' 'qt5-webchannel' 'mpv' 'vulkan-headers') optdepends=('qt5-webchannel: for web support' 'mpv: alternative video backend') -source=("https://github.com/catsout/${_pkgname}/archive/refs/tags/v${pkgver}.tar.gz" - "https://github.com/KhronosGroup/glslang/archive/refs/tags/${_pkgver_glslang}.tar.gz") -sha256sums=('3278849fe3ec09640ccc0d3f4d88070b5b1b59cd7d5e3e1744e30ad584923184' +source=("https://github.com/catsout/${_pkgname}/archive/v${pkgver}.tar.gz" + "https://github.com/KhronosGroup/glslang/archive/${_pkgver_glslang}.tar.gz") +sha256sums=('2a37d0a89b7c93017843ead842f3d6f5a21f10be6b8ff45dca1e946c350a18e1' '8ffc19c435232d09299dd2c91e247292b3508c1b826a3497c60682e4bbf2d602') prepare() { From c36e9eace777229473fec7046620a8b69ba4b60c Mon Sep 17 00:00:00 2001 From: Manuel Date: Mon, 1 Aug 2022 11:21:23 +0200 Subject: [PATCH 312/971] Initial commit --- .gitignore | 3 +++ README.md | 5 +++++ scripts/prepare-chroot.sh | 13 +++++++++++++ 3 files changed, 21 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100755 scripts/prepare-chroot.sh diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0a29ba8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/staged +/chroot +.SRCINFO diff --git a/README.md b/README.md new file mode 100644 index 0000000..949d1ca --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# AUR packages + +These are PKGBUILDs for packages on the Arch User Repository I maintain, used to maintain or do plan on uploading or just keep here for preservation. + +I may also use these for an automated build system soon™ that pushes these packages automatically to the AUR and/or to a pacman repo I maintain. diff --git a/scripts/prepare-chroot.sh b/scripts/prepare-chroot.sh new file mode 100755 index 0000000..e38dc6b --- /dev/null +++ b/scripts/prepare-chroot.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +[ -z "$CHROOT" ] && echo "CHROOT env var is unset." && exit 1 + +sudo -v || exit 1 + +arch-nspawn "$CHROOT/root" pacman -Syu +mkdir -p -m 0755 "$CHROOT/$USER" + +mountpoint -q "$CHROOT/$USER" +[ $? -gt 0 ] && sudo mount -t tmpfs -o defaults,nodev,mode=0755,uid=$(id -u),gid=$(id -g) tmpfs "$CHROOT/$USER" + +exit 0 From 3112b7987d7cdcd1fc6eeb6b9dd1f2fd36d99899 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 7 Aug 2022 13:28:52 +0200 Subject: [PATCH 313/971] Update checksum --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index f7d8b1d..502e059 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = plasma5-wallpapers-wallpaper-engine pkgdesc = A KDE wallpaper plugin integrating wallpaper engine pkgver = 0.5.4 - pkgrel = 1 + pkgrel = 2 url = https://github.com/catsout/wallpaper-engine-kde-plugin arch = x86_64 license = GPL2 @@ -18,7 +18,7 @@ pkgbase = plasma5-wallpapers-wallpaper-engine optdepends = mpv: alternative video backend source = https://github.com/catsout/wallpaper-engine-kde-plugin/archive/v0.5.4.tar.gz source = https://github.com/KhronosGroup/glslang/archive/11.10.0.tar.gz - sha256sums = 2a37d0a89b7c93017843ead842f3d6f5a21f10be6b8ff45dca1e946c350a18e1 + sha256sums = 83354734f7ea36e7077206506dd05f0e6877eb51294b820fdbdc398255c6f803 sha256sums = 8ffc19c435232d09299dd2c91e247292b3508c1b826a3497c60682e4bbf2d602 pkgname = plasma5-wallpapers-wallpaper-engine diff --git a/PKGBUILD b/PKGBUILD index 70bb5de..beb660a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname=plasma5-wallpapers-wallpaper-engine _pkgname=wallpaper-engine-kde-plugin pkgver=0.5.4 _pkgver_glslang=11.10.0 -pkgrel=1 +pkgrel=2 pkgdesc='A KDE wallpaper plugin integrating wallpaper engine' arch=('x86_64') url='https://github.com/catsout/wallpaper-engine-kde-plugin' @@ -15,7 +15,7 @@ optdepends=('qt5-webchannel: for web support' 'mpv: alternative video backend') source=("https://github.com/catsout/${_pkgname}/archive/v${pkgver}.tar.gz" "https://github.com/KhronosGroup/glslang/archive/${_pkgver_glslang}.tar.gz") -sha256sums=('2a37d0a89b7c93017843ead842f3d6f5a21f10be6b8ff45dca1e946c350a18e1' +sha256sums=('83354734f7ea36e7077206506dd05f0e6877eb51294b820fdbdc398255c6f803' '8ffc19c435232d09299dd2c91e247292b3508c1b826a3497c60682e4bbf2d602') prepare() { From 24712bc0b0614ac10594f49705b2d238ef906ce0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 14 Aug 2022 13:01:02 +0200 Subject: [PATCH 314/971] Release 20220808.0 --- .SRCINFO | 18 +++++++++--------- PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 4d7b3df..9737ddd 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20220713.0 + pkgver = 20220808.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220713/x86_64/runsc - source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220713/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = e2f9a7470eb3761b88fb32a00690652053a3d1b41e82a56e2046d39d7302a1845774deacb3898220e921a729f19ef86881812c0e9148daef981b19a3a5d7cade - sha512sums_x86_64 = 0eb173dbb220eaecb489d4ec045b898e2aa1373b71b05fd402ec2aaf24a05a4ae6c37e30a5108b9f189977d8e4f455687e3a17c652bcf85a200310b811473316 - source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220713/aarch64/runsc - source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220713/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 31d9d595d4c70fb6300fa003f9f4baec0c17e6f0aef3796e191a02d8b3166afdce907bde6858ede7a1118b3898c9213ce4194a4cafbc74ce420fee44cf97090b - sha512sums_aarch64 = 0e0998ab5657737ffc765bba5948ef471cd6a3b8b1070914e744661dc2d9951bc516bc39c2874b81c0cf853a120f903721500892cd367bf0fd61f44fa0db37d1 + source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220808/x86_64/runsc + source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220808/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = ccec0f16d0494d1ddfac44ec7614874a5ef012e8a02270f005f169f73af334a40d142d2a766e473bdc7dc3d348f2367e53d9c01e04385b66a21f9f8145f4777e + sha512sums_x86_64 = 1886296af99d129b971f0437ae281adeec50a5320b96e14f37c20692d4b5c9920063e665fcf9d422418f3ebd2610310f33f7b37ba859ef71278242cbd8de5fa8 + source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220808/aarch64/runsc + source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220808/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = d13323c9d71312d86ac09d35124ab0d28cd6df300e25e33e8146a17a87ecbffb2e6c6dff7e8d261c33028ecc8a36a8685f7053760c6473b61afa703469ed2cb6 + sha512sums_aarch64 = 36573c27ba1ce33a021cc4aed4e795b2ede553a4feccd9c444e4f7251ef81e0c7eaaac47a19a4dd0436faee1359fc496c45e024bf39988028cddbc0ee9a40b50 pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 2624b4c..2771836 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20220713.0 +pkgver=20220808.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -26,12 +26,12 @@ source_aarch64=( "https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/aarch64/$_pkgshim" ) sha512sums_x86_64=( - 'e2f9a7470eb3761b88fb32a00690652053a3d1b41e82a56e2046d39d7302a1845774deacb3898220e921a729f19ef86881812c0e9148daef981b19a3a5d7cade' - '0eb173dbb220eaecb489d4ec045b898e2aa1373b71b05fd402ec2aaf24a05a4ae6c37e30a5108b9f189977d8e4f455687e3a17c652bcf85a200310b811473316' + 'ccec0f16d0494d1ddfac44ec7614874a5ef012e8a02270f005f169f73af334a40d142d2a766e473bdc7dc3d348f2367e53d9c01e04385b66a21f9f8145f4777e' + '1886296af99d129b971f0437ae281adeec50a5320b96e14f37c20692d4b5c9920063e665fcf9d422418f3ebd2610310f33f7b37ba859ef71278242cbd8de5fa8' ) sha512sums_aarch64=( - '31d9d595d4c70fb6300fa003f9f4baec0c17e6f0aef3796e191a02d8b3166afdce907bde6858ede7a1118b3898c9213ce4194a4cafbc74ce420fee44cf97090b' - '0e0998ab5657737ffc765bba5948ef471cd6a3b8b1070914e744661dc2d9951bc516bc39c2874b81c0cf853a120f903721500892cd367bf0fd61f44fa0db37d1' + 'd13323c9d71312d86ac09d35124ab0d28cd6df300e25e33e8146a17a87ecbffb2e6c6dff7e8d261c33028ecc8a36a8685f7053760c6473b61afa703469ed2cb6' + '36573c27ba1ce33a021cc4aed4e795b2ede553a4feccd9c444e4f7251ef81e0c7eaaac47a19a4dd0436faee1359fc496c45e024bf39988028cddbc0ee9a40b50' ) package() { From 144fe12d2806a6b742d8461b968a3a547a76c19c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 14 Aug 2022 13:01:19 +0200 Subject: [PATCH 315/971] Bump to 20220808 --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 6d3b189..c997a82 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20220713.0 + pkgver = 20220808.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/PKGBUILD b/PKGBUILD index eb931ca..81982fa 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20220713.0 +pkgver=20220808.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From db5f4adedffd7a365aa69fc94dc97beabc0ffbd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 14 Aug 2022 13:39:34 +0200 Subject: [PATCH 316/971] Initial commit --- .SRCINFO | 17 ++++ PKGBUILD | 52 ++++++++++ d53a4a6.patch | 235 ++++++++++++++++++++++++++++++++++++++++++++++ server_addr.patch | 80 ++++++++++++++++ 4 files changed, 384 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD create mode 100644 d53a4a6.patch create mode 100644 server_addr.patch diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..69bb906 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,17 @@ +pkgbase = nginx-mod-traffic-accounting + pkgdesc = Monitor the incoming and outgoing traffic metrics in realtime for NGINX + pkgver = 2.0+16+g98af5fc + pkgrel = 1 + url = https://github.com/Lax/traffic-accounting-nginx-module + arch = x86_64 + license = BSD + makedepends = nginx-src + depends = nginx + source = https://github.com/Lax/traffic-accounting-nginx-module/archive/v2.0/traffic-accounting-nginx-module-v2.0.tar.gz + source = d53a4a6.patch + source = server_addr.patch + sha256sums = 8c99c5313e5c822aa5683691c8a0641499b2fa8c67f9e55652817042e21f5986 + sha256sums = 9bad093fba01d67098d98122202693ffba20feb20668f73e7712d9d9b9915bf1 + sha256sums = e25f170801179e067c7186f1e27fcb3f4273ac5683f6a4962dee821d5eddc8d0 + +pkgname = nginx-mod-traffic-accounting diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..821b6c5 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,52 @@ +# Maintainer: Manuel Hüsers + +pkgname=nginx-mod-traffic-accounting +pkgver=2.0+16+g98af5fc +pkgrel=1 + +_modname="traffic-accounting-nginx-module" + +pkgdesc='Monitor the incoming and outgoing traffic metrics in realtime for NGINX' +arch=('x86_64') +makedepends=('nginx-src') +depends=('nginx') +url="https://github.com/Lax/${_modname}" +license=('BSD') + +source=( + "https://github.com/Lax/${_modname}/archive/v${pkgver%%+*}/${_modname}-v${pkgver%%+*}.tar.gz" + "d53a4a6.patch" + "server_addr.patch" +) +sha256sums=( + '8c99c5313e5c822aa5683691c8a0641499b2fa8c67f9e55652817042e21f5986' + '9bad093fba01d67098d98122202693ffba20feb20668f73e7712d9d9b9915bf1' + 'e25f170801179e067c7186f1e27fcb3f4273ac5683f6a4962dee821d5eddc8d0' +) + +prepare() { + mkdir -p build + cd build + ln -sf /usr/src/nginx/auto + ln -sf /usr/src/nginx/src + + cd "../${_modname}-${pkgver%%+*}" + patch -Np1 -i '../d53a4a6.patch' + patch -Np1 -i '../server_addr.patch' +} + +build() { + cd build + /usr/src/nginx/configure --with-compat --with-stream --add-dynamic-module="../${_modname}-${pkgver%%+*}" + make modules +} + +package() { + install -Dm644 "$srcdir"/"${_modname}-${pkgver%%+*}"/LICENSE \ + "$pkgdir"/usr/share/licenses/$pkgname/LICENSE + + cd build/objs + for mod in ngx_*.so; do + install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod + done +} diff --git a/d53a4a6.patch b/d53a4a6.patch new file mode 100644 index 0000000..9964c86 --- /dev/null +++ b/d53a4a6.patch @@ -0,0 +1,235 @@ +diff --git a/src/http/ngx_http_accounting_module.c b/src/http/ngx_http_accounting_module.c +index 63eccf0..23a5fc3 100644 +--- a/src/http/ngx_http_accounting_module.c ++++ b/src/http/ngx_http_accounting_module.c +@@ -139,7 +139,7 @@ ngx_http_accounting_process_init(ngx_cycle_t *cycle) + } + + if (amcf->current == NULL) { +- if (ngx_traffic_accounting_period_create(cycle->pool, amcf) != NGX_OK) ++ if (ngx_traffic_accounting_period_create(amcf) != NGX_OK) + return NGX_ERROR; + } + +@@ -206,7 +206,7 @@ worker_process_alarm_handler(ngx_event_t *ev) + + amcf = ngx_http_cycle_get_module_main_conf(ngx_cycle, ngx_http_accounting_module); + +- ngx_traffic_accounting_period_rotate(amcf->current->pool, amcf); ++ ngx_traffic_accounting_period_rotate(amcf); + ngx_traffic_accounting_period_rbtree_iterate(amcf->previous, + worker_process_export_metrics, + amcf->previous->created_at, +@@ -243,10 +243,10 @@ ngx_http_accounting_request_handler(ngx_http_request_t *r) + + amcf = ngx_http_get_module_main_conf(r, ngx_http_accounting_module); + +- metrics = ngx_traffic_accounting_period_fetch_metrics(amcf->current, accounting_id); ++ metrics = ngx_traffic_accounting_period_fetch_metrics(amcf->current, accounting_id, amcf->log); + if (metrics == NULL) { return NGX_ERROR; } + +- if (ngx_traffic_accounting_metrics_init(metrics, amcf->current->pool, ngx_http_statuses_len) == NGX_ERROR) ++ if (ngx_traffic_accounting_metrics_init(metrics, ngx_http_statuses_len, amcf->log) == NGX_ERROR) + return NGX_ERROR; + + amcf->current->updated_at = ngx_timeofday(); +diff --git a/src/ngx_traffic_accounting.h b/src/ngx_traffic_accounting.h +index 1812927..462becf 100644 +--- a/src/ngx_traffic_accounting.h ++++ b/src/ngx_traffic_accounting.h +@@ -38,21 +38,19 @@ typedef struct { + ngx_rbtree_t rbtree; + ngx_rbtree_node_t sentinel; + +- ngx_pool_t *pool; +- + ngx_time_t *created_at; + ngx_time_t *updated_at; + } ngx_traffic_accounting_period_t; + +-ngx_int_t ngx_traffic_accounting_metrics_init(ngx_traffic_accounting_metrics_t *metrics, ngx_pool_t *pool, size_t len); ++ngx_int_t ngx_traffic_accounting_metrics_init(ngx_traffic_accounting_metrics_t *metrics, size_t len, ngx_log_t *log); + + ngx_int_t ngx_traffic_accounting_period_init(ngx_traffic_accounting_period_t *period); +-void ngx_traffic_accounting_period_insert(ngx_traffic_accounting_period_t *period, ngx_str_t *name); ++void ngx_traffic_accounting_period_insert(ngx_traffic_accounting_period_t *period, ngx_str_t *name, ngx_log_t *log); + void ngx_traffic_accounting_period_insert_metrics(ngx_traffic_accounting_period_t *period, ngx_traffic_accounting_metrics_t *metrics); + void ngx_traffic_accounting_period_delete(ngx_traffic_accounting_period_t *period, ngx_str_t *name); + void ngx_traffic_accounting_period_delete_metrics(ngx_traffic_accounting_period_t *period, ngx_traffic_accounting_metrics_t *metrics); + ngx_traffic_accounting_metrics_t * ngx_traffic_accounting_period_lookup_metrics(ngx_traffic_accounting_period_t *period, ngx_str_t *name); +-ngx_traffic_accounting_metrics_t * ngx_traffic_accounting_period_fetch_metrics(ngx_traffic_accounting_period_t *period, ngx_str_t *name); ++ngx_traffic_accounting_metrics_t * ngx_traffic_accounting_period_fetch_metrics(ngx_traffic_accounting_period_t *period, ngx_str_t *name, ngx_log_t *log); + + typedef ngx_int_t (*ngx_traffic_accounting_period_iterate_func)(void *val, void *para1, void *para2); + +diff --git a/src/ngx_traffic_accounting_module.c b/src/ngx_traffic_accounting_module.c +index ebc877a..2291db7 100644 +--- a/src/ngx_traffic_accounting_module.c ++++ b/src/ngx_traffic_accounting_module.c +@@ -9,15 +9,14 @@ + + + ngx_int_t +-ngx_traffic_accounting_period_create(ngx_pool_t *pool, ngx_traffic_accounting_main_conf_t *amcf) ++ngx_traffic_accounting_period_create(ngx_traffic_accounting_main_conf_t *amcf) + { + ngx_traffic_accounting_period_t *period; + +- period = ngx_pcalloc(pool, sizeof(ngx_traffic_accounting_period_t)); ++ period = ngx_calloc(sizeof(ngx_traffic_accounting_period_t), amcf->log); + if (period == NULL) + return NGX_ERROR; + +- period->pool = pool; + ngx_traffic_accounting_period_init(period); + + period->created_at = ngx_timeofday(); +@@ -28,11 +27,11 @@ ngx_traffic_accounting_period_create(ngx_pool_t *pool, ngx_traffic_accounting_ma + } + + ngx_int_t +-ngx_traffic_accounting_period_rotate(ngx_pool_t *pool, ngx_traffic_accounting_main_conf_t *amcf) ++ngx_traffic_accounting_period_rotate(ngx_traffic_accounting_main_conf_t *amcf) + { +- ngx_pfree(pool, amcf->previous); ++ ngx_free(amcf->previous); + + amcf->previous = amcf->current; + +- return ngx_traffic_accounting_period_create(pool, amcf); ++ return ngx_traffic_accounting_period_create(amcf); + } +diff --git a/src/ngx_traffic_accounting_module.h b/src/ngx_traffic_accounting_module.h +index 08881f1..adfccec 100644 +--- a/src/ngx_traffic_accounting_module.h ++++ b/src/ngx_traffic_accounting_module.h +@@ -46,8 +46,8 @@ ngx_str_t * ngx_traffic_accounting_get_accounting_id(void *entry, ngx_get_loc_co + ngx_get_indexed_variable_pt get_indexed_variable); + + +-ngx_int_t ngx_traffic_accounting_period_create(ngx_pool_t *pool, ngx_traffic_accounting_main_conf_t *amcf); +-ngx_int_t ngx_traffic_accounting_period_rotate(ngx_pool_t *pool, ngx_traffic_accounting_main_conf_t *amcf); ++ngx_int_t ngx_traffic_accounting_period_create(ngx_traffic_accounting_main_conf_t *amcf); ++ngx_int_t ngx_traffic_accounting_period_rotate(ngx_traffic_accounting_main_conf_t *amcf); + + + #endif /* _NGX_TRAFFIC_ACCOUNTING_MODULE_H_INCLUDED_ */ +diff --git a/src/ngx_traffic_accounting_period_metrics.c b/src/ngx_traffic_accounting_period_metrics.c +index b6b7055..7376ad9 100644 +--- a/src/ngx_traffic_accounting_period_metrics.c ++++ b/src/ngx_traffic_accounting_period_metrics.c +@@ -10,17 +10,17 @@ + static void ngx_traffic_accounting_period_insert_value(ngx_rbtree_node_t *temp, ngx_rbtree_node_t *node, ngx_rbtree_node_t *sentinel); + + ngx_int_t +-ngx_traffic_accounting_metrics_init(ngx_traffic_accounting_metrics_t *metrics, ngx_pool_t *pool, size_t len) ++ngx_traffic_accounting_metrics_init(ngx_traffic_accounting_metrics_t *metrics, size_t len, ngx_log_t *log) + { + if (metrics->nr_status == NULL) { +- metrics->nr_status = ngx_pcalloc(pool, sizeof(ngx_uint_t) * len); ++ metrics->nr_status = ngx_calloc(sizeof(ngx_uint_t) * len, log); + + if (metrics->nr_status == NULL) + return NGX_ERROR; + } + + if (metrics->nr_upstream_status == NULL) { +- metrics->nr_upstream_status = ngx_pcalloc(pool, sizeof(ngx_uint_t) * len); ++ metrics->nr_upstream_status = ngx_calloc(sizeof(ngx_uint_t) * len, log); + + if (metrics->nr_upstream_status == NULL) + return NGX_ERROR; +@@ -39,14 +39,14 @@ ngx_traffic_accounting_period_init(ngx_traffic_accounting_period_t *period) + } + + void +-ngx_traffic_accounting_period_insert(ngx_traffic_accounting_period_t *period, ngx_str_t *name) ++ngx_traffic_accounting_period_insert(ngx_traffic_accounting_period_t *period, ngx_str_t *name, ngx_log_t *log) + { + ngx_traffic_accounting_metrics_t *metrics; + +- metrics = ngx_pcalloc(period->pool, sizeof(ngx_traffic_accounting_metrics_t)); ++ metrics = ngx_calloc(sizeof(ngx_traffic_accounting_metrics_t), log); + + void *data; +- data = ngx_pcalloc(period->pool, name->len+1); ++ data = ngx_calloc(name->len+1, log); + ngx_memcpy(data, name->data, name->len); + + metrics->name.data = data; +@@ -82,7 +82,7 @@ void + ngx_traffic_accounting_period_delete_metrics(ngx_traffic_accounting_period_t *period, ngx_traffic_accounting_metrics_t *metrics) + { + ngx_rbtree_delete(&period->rbtree, &metrics->rbnode); +- ngx_pfree(period->pool, metrics); ++ ngx_free(metrics); + } + + ngx_traffic_accounting_metrics_t * +@@ -124,7 +124,7 @@ ngx_traffic_accounting_period_lookup_metrics(ngx_traffic_accounting_period_t *pe + } + + ngx_traffic_accounting_metrics_t * +-ngx_traffic_accounting_period_fetch_metrics(ngx_traffic_accounting_period_t *period, ngx_str_t *name) ++ngx_traffic_accounting_period_fetch_metrics(ngx_traffic_accounting_period_t *period, ngx_str_t *name, ngx_log_t *log) + { + ngx_traffic_accounting_metrics_t *n; + +@@ -132,7 +132,7 @@ ngx_traffic_accounting_period_fetch_metrics(ngx_traffic_accounting_period_t *per + if (n != NULL) + return n; + +- ngx_traffic_accounting_period_insert(period, name); ++ ngx_traffic_accounting_period_insert(period, name, log); + + return ngx_traffic_accounting_period_lookup_metrics(period, name); + } +@@ -158,9 +158,10 @@ ngx_traffic_accounting_period_rbtree_iterate(ngx_traffic_accounting_period_t *pe + if (rc == NGX_DONE) { + /* NGX_DONE -> destroy node */ + ngx_rbtree_delete(rbtree, node); +- ngx_pfree(period->pool, n->nr_status); +- ngx_pfree(period->pool, n->nr_upstream_status); +- ngx_pfree(period->pool, n); ++ ngx_free(n->nr_status); ++ ngx_free(n->nr_upstream_status); ++ ngx_free(n->name.data); ++ ngx_free(n); + + goto done; + } +diff --git a/src/stream/ngx_stream_accounting_module.c b/src/stream/ngx_stream_accounting_module.c +index b1839d1..3db787d 100644 +--- a/src/stream/ngx_stream_accounting_module.c ++++ b/src/stream/ngx_stream_accounting_module.c +@@ -136,7 +136,7 @@ ngx_stream_accounting_process_init(ngx_cycle_t *cycle) + } + + if (amcf->current == NULL) { +- if (ngx_traffic_accounting_period_create(cycle->pool, amcf) != NGX_OK) ++ if (ngx_traffic_accounting_period_create(amcf) != NGX_OK) + return NGX_ERROR; + } + +@@ -203,7 +203,7 @@ worker_process_alarm_handler(ngx_event_t *ev) + + amcf = ngx_stream_cycle_get_module_main_conf(ngx_cycle, ngx_stream_accounting_module); + +- ngx_traffic_accounting_period_rotate(amcf->current->pool, amcf); ++ ngx_traffic_accounting_period_rotate(amcf); + ngx_traffic_accounting_period_rbtree_iterate(amcf->previous, + worker_process_export_metrics, + amcf->previous->created_at, +@@ -240,10 +240,10 @@ ngx_stream_accounting_session_handler(ngx_stream_session_t *s) + + amcf = ngx_stream_get_module_main_conf(s, ngx_stream_accounting_module); + +- metrics = ngx_traffic_accounting_period_fetch_metrics(amcf->current, accounting_id); ++ metrics = ngx_traffic_accounting_period_fetch_metrics(amcf->current, accounting_id, amcf->log); + if (metrics == NULL) { return NGX_ERROR; } + +- if (ngx_traffic_accounting_metrics_init(metrics, amcf->current->pool, ngx_stream_statuses_len) == NGX_ERROR) ++ if (ngx_traffic_accounting_metrics_init(metrics, ngx_stream_statuses_len, amcf->log) == NGX_ERROR) + return NGX_ERROR; + + amcf->current->updated_at = ngx_timeofday(); diff --git a/server_addr.patch b/server_addr.patch new file mode 100644 index 0000000..19950f6 --- /dev/null +++ b/server_addr.patch @@ -0,0 +1,80 @@ +diff --git a/src/http/ngx_http_accounting_module.c b/src/http/ngx_http_accounting_module.c +index 23a5fc3..ecc62d2 100644 +--- a/src/http/ngx_http_accounting_module.c ++++ b/src/http/ngx_http_accounting_module.c +@@ -237,7 +237,6 @@ ngx_http_accounting_request_handler(ngx_http_request_t *r) + ngx_time_t *tp = ngx_timeofday(); + ngx_msec_int_t ms = 0; + ngx_http_upstream_state_t *state; +- + accounting_id = ngx_http_accounting_get_accounting_id(r); + if (accounting_id == NULL) { return NGX_ERROR; } + +@@ -251,6 +250,27 @@ ngx_http_accounting_request_handler(ngx_http_request_t *r) + + amcf->current->updated_at = ngx_timeofday(); + ++ if (0 == metrics->server_addr.len) { ++ u_char var_name_buf[256] = {0}; ++ ngx_str_t server_addr_var_name = ngx_string("server_addr"); ++ ngx_uint_t server_addr_key = ngx_hash_strlow(var_name_buf, server_addr_var_name.data, server_addr_var_name.len); ++ ngx_http_variable_value_t* server_addr_val = ngx_http_get_variable(r, &server_addr_var_name, server_addr_key); ++ ++ if (NULL == server_addr_val) { ++ // ngx_log_error(NGXTA_LOG_LEVEL, amcf->log, ngx_errno, ++ // ngx_realpath_n " get server_addr failed"); ++ return NGX_ERROR; ++ } else { ++ // ngx_log_error(NGXTA_LOG_LEVEL, amcf->log, 0, ++ // ngx_realpath_n " %s", server_addr_val->data); ++ } ++ metrics->server_addr.data = ngx_calloc(server_addr_val->len + 1, amcf->log); ++ if (NULL == metrics->server_addr.data) { ++ return NGX_ERROR; ++ } ++ memcpy(metrics->server_addr.data, server_addr_val->data, server_addr_val->len); ++ metrics->server_addr.len = server_addr_val->len; ++ } + metrics->nr_entries += 1; + metrics->bytes_in += r->request_length; + metrics->bytes_out += r->connection->sent; +diff --git a/src/ngx_traffic_accounting.h b/src/ngx_traffic_accounting.h +index 462becf..6046d78 100644 +--- a/src/ngx_traffic_accounting.h ++++ b/src/ngx_traffic_accounting.h +@@ -24,6 +24,7 @@ typedef struct { + ngx_rbtree_node_t rbnode; + + ngx_str_t name; ++ ngx_str_t server_addr; + + ngx_uint_t nr_entries; + ngx_uint_t bytes_in; +diff --git a/src/ngx_traffic_accounting_log.c b/src/ngx_traffic_accounting_log.c +index 9b4cd46..652cefb 100644 +--- a/src/ngx_traffic_accounting_log.c ++++ b/src/ngx_traffic_accounting_log.c +@@ -35,9 +35,10 @@ ngx_traffic_accounting_log_metrics(void *val, void *para1, void *para2, + last = msg_buf + NGX_MAX_ERROR_STR; + + p = ngx_slprintf(p, last, +- "pid:%i|from:%i|to:%i|accounting_id:%V|%s:%ui|bytes_in:%ui|bytes_out:%ui|latency_ms:%ui|upstream_latency_ms:%ui", ++ "pid:%i|from:%i|to:%i|server_addr:%V|accounting_id:%V|%s:%ui|bytes_in:%ui|bytes_out:%ui|latency_ms:%ui|upstream_latency_ms:%ui", + ngx_getpid(), + created_at->sec, updated_at->sec, ++ &metrics->server_addr, + &metrics->name, entry_n, + metrics->nr_entries, + metrics->bytes_in, metrics->bytes_out, +diff --git a/src/ngx_traffic_accounting_period_metrics.c b/src/ngx_traffic_accounting_period_metrics.c +index 7376ad9..d454a3c 100644 +--- a/src/ngx_traffic_accounting_period_metrics.c ++++ b/src/ngx_traffic_accounting_period_metrics.c +@@ -161,6 +161,7 @@ ngx_traffic_accounting_period_rbtree_iterate(ngx_traffic_accounting_period_t *pe + ngx_free(n->nr_status); + ngx_free(n->nr_upstream_status); + ngx_free(n->name.data); ++ ngx_free(n->server_addr.data); + ngx_free(n); + + goto done; From 38bcdca8c374b646b250b2d04dec2ae1ca025862 Mon Sep 17 00:00:00 2001 From: haawda Date: Mon, 15 Aug 2022 12:28:45 +0200 Subject: [PATCH 317/971] update --- .SRCINFO | 6 +++--- PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index b7ca0c8..a119a96 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = ect pkgdesc = file compressor, supports postcompression of PNG, JPEG, GZIP and ZIP files. - pkgver = 0.9.1 - pkgrel = 3 + pkgver = 0.9.2 + pkgrel = 1 url = https://github.com/fhanau/Efficient-Compression-Tool arch = i686 arch = x86_64 @@ -10,7 +10,7 @@ pkgbase = ect makedepends = git makedepends = cmake depends = gcc-libs - source = git+https://github.com/fhanau/Efficient-Compression-Tool.git#commit=f920e54bb1b584d3c3d75d3d90d8cfedd04d2fbe + source = git+https://github.com/fhanau/Efficient-Compression-Tool.git#commit=48aea4e39396a0f6e39fbc504a4b194282c9ff01 md5sums = SKIP pkgname = ect diff --git a/PKGBUILD b/PKGBUILD index 6bb727d..b3ec05d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,13 +3,13 @@ pkgname=ect _pkgname=Efficient-Compression-Tool -pkgver=0.9.1 -pkgrel=3 +pkgver=0.9.2 +pkgrel=1 pkgdesc='file compressor, supports postcompression of PNG, JPEG, GZIP and ZIP files.' url='https://github.com/fhanau/Efficient-Compression-Tool' arch=('i686' 'x86_64') license=('Apache') -source=("git+https://github.com/fhanau/Efficient-Compression-Tool.git#commit=f920e54bb1b584d3c3d75d3d90d8cfedd04d2fbe") +source=("git+$url.git#commit=48aea4e39396a0f6e39fbc504a4b194282c9ff01") md5sums=('SKIP') depends=('gcc-libs') makedepends=('nasm' 'git' 'cmake') From 6258865f96919472de308431351e45cc1068bcbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 19 Aug 2022 23:13:11 +0200 Subject: [PATCH 318/971] Version 2.19.0 --- .SRCINFO | 8 ++++---- PKGBUILD | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 6a70eae..93f411e 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = 2.18.0 - pkgrel = 2 + pkgver = 2.19.0 + pkgrel = 1 url = https://github.com/redhat-performance/tuned install = tuned.install arch = any @@ -21,7 +21,7 @@ pkgbase = tuned optdepends = virt-what: For use with virtual machines optdepends = systemtap: Disk and net statistic monitoring systemtap scripts backup = etc/tuned/active_profile - source = https://github.com/redhat-performance/tuned/archive/v2.18.0.tar.gz - sha256sums = b00c92cc21fa8595e95aba95042e7f590ea4146328491a655936a811e2590d80 + source = https://github.com/redhat-performance/tuned/archive/v2.19.0.tar.gz + sha256sums = 3cb2aeb9ecebd66a1a1c3aaff9589f5c5402201d16f7caa01acf0b9374ed8724 pkgname = tuned diff --git a/PKGBUILD b/PKGBUILD index 05d5047..e3085cb 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,8 +4,8 @@ # Contributor: Tom pkgname=tuned -pkgver=2.18.0 -pkgrel=2 +pkgver=2.19.0 +pkgrel=1 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url="https://github.com/redhat-performance/${pkgname}" @@ -16,7 +16,7 @@ makedepends=('desktop-file-utils') backup=('etc/tuned/active_profile') install="${pkgname}.install" source=("https://github.com/redhat-performance/${pkgname}/archive/v${pkgver}.tar.gz") -sha256sums=('b00c92cc21fa8595e95aba95042e7f590ea4146328491a655936a811e2590d80') +sha256sums=('3cb2aeb9ecebd66a1a1c3aaff9589f5c5402201d16f7caa01acf0b9374ed8724') prepare() { cd "${pkgname}-${pkgver}" @@ -32,8 +32,8 @@ package() { make DESTDIR="${pkgdir}" install rm -r "${pkgdir}"/{run,var} - python -m compileall -d /usr/lib "$pkgdir/usr/lib" - python -O -m compileall -d /usr/lib "$pkgdir/usr/lib" + python -m compileall -d /usr/lib "${pkgdir}/usr/lib" + python -O -m compileall -d /usr/lib "${pkgdir}/usr/lib" install -Dm644 tuned.service "${pkgdir}/usr/lib/systemd/system/" } From ea884474306380c01c4d4d5b6d1ffc37146ba7c9 Mon Sep 17 00:00:00 2001 From: Manuel Date: Mon, 22 Aug 2022 20:14:07 +0200 Subject: [PATCH 319/971] Add discord-electron-bin --- srcpkgs/discord-electron-bin/PKGBUILD | 101 ++++++++++++++++++++++++++ 1 file changed, 101 insertions(+) create mode 100644 srcpkgs/discord-electron-bin/PKGBUILD diff --git a/srcpkgs/discord-electron-bin/PKGBUILD b/srcpkgs/discord-electron-bin/PKGBUILD new file mode 100644 index 0000000..a915b52 --- /dev/null +++ b/srcpkgs/discord-electron-bin/PKGBUILD @@ -0,0 +1,101 @@ +# Maintainer: Manuel Hüsers +# Contributor: Stick +# Contributor: johnnyapol +# Contributor: huyizheng +# Contributor: Filipe Laíns (FFY00) +# Contributor: Morgan + +# Based off the discord_arch_electron_wayland PKGBUILD from Stick +# Based off the discord_arch_electron PKGBUILD from johnnyapol and huyizheng +# Based off the discord community repo PKGBUILD by Filipe Laíns (FFY00) + +pkgname=discord-electron-bin +_pkgname=discord +_electron=15 +pkgver=0.0.19 +pkgrel=1 +pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" +arch=('x86_64') +provides=("${_pkgname}") +conflicts=("${_pkgname}") +url='https://discord.com' +license=('custom') +depends=("electron${_electron}") +makedepends=('asar' 'curl' 'python-html2text') +optdepends=( + 'libpulse: Pulseaudio support' + 'xdg-utils: Open files' +) +source=("https://dl.discordapp.net/apps/linux/${pkgver}/discord-${pkgver}.tar.gz") +sha512sums=('5b73f0f968ce61f5a844940e1525da80e7b2ce3779cf2050ca3c2b0b7dbee20f16e2bf203f0673d1e275d1e55075b83eb63700731be8324587b3c58c64d3a0e8') + +_tarname='Discord' + +prepare() { + # create launcher script + cat >> "${srcdir}"/discord-launcher.sh <> $_tarname/$_pkgname.desktop + + # create the license files + curl https://discord.com/terms | html2text >"${srcdir}"/LICENSE.md + curl https://discord.com/licenses | html2text >"${srcdir}"/OSS-LICENSES.md + + # use system electron + asar e $_tarname/resources/app.asar $_tarname/resources/app + rm $_tarname/resources/app.asar + sed -i "s|process.resourcesPath|'/usr/lib/${_pkgname}'|" $_tarname/resources/app/app_bootstrap/buildInfo.js + sed -i "s|exeDir,|'/usr/share/pixmaps',|" $_tarname/resources/app/app_bootstrap/autoStart/linux.js + asar p $_tarname/resources/app $_tarname/resources/app.asar --unpack-dir '**' + rm -rf $_tarname/resources/app +} + +package() { + # create necessary directories + install -d "${pkgdir}"/usr/{lib/$_pkgname,bin} + install -d "${pkgdir}"/usr/share/{pixmaps,applications,licenses/$_pkgname} + + # copy relevant data + cp -r $_tarname/resources/* "${pkgdir}"/usr/lib/$_pkgname/ + + # install the binary + install -Dm 755 discord-launcher.sh "${pkgdir}"/usr/bin/$_pkgname + + cp $_tarname/$_pkgname.png \ + "${pkgdir}"/usr/share/pixmaps/$_pkgname.png + cp $_tarname/$_pkgname.desktop \ + "${pkgdir}"/usr/share/applications/$_pkgname.desktop + + # license + install -Dm 644 LICENSE.md "${pkgdir}"/usr/share/licenses/$_pkgname/ + install -Dm 644 OSS-LICENSES.md "${pkgdir}"/usr/share/licenses/$_pkgname/ +} From 676e3742ba26f82017770ab860120f9c22558d69 Mon Sep 17 00:00:00 2001 From: haawda Date: Tue, 23 Aug 2022 18:15:49 +0200 Subject: [PATCH 320/971] new version --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index a119a96..9d04485 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = ect pkgdesc = file compressor, supports postcompression of PNG, JPEG, GZIP and ZIP files. - pkgver = 0.9.2 + pkgver = 0.9.3 pkgrel = 1 url = https://github.com/fhanau/Efficient-Compression-Tool arch = i686 @@ -10,7 +10,7 @@ pkgbase = ect makedepends = git makedepends = cmake depends = gcc-libs - source = git+https://github.com/fhanau/Efficient-Compression-Tool.git#commit=48aea4e39396a0f6e39fbc504a4b194282c9ff01 + source = git+https://github.com/fhanau/Efficient-Compression-Tool.git#commit=230133d6a84149910f05b5d2c6e8ac3fff9de4a6 md5sums = SKIP pkgname = ect diff --git a/PKGBUILD b/PKGBUILD index b3ec05d..cac98ad 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,13 +3,13 @@ pkgname=ect _pkgname=Efficient-Compression-Tool -pkgver=0.9.2 +pkgver=0.9.3 pkgrel=1 pkgdesc='file compressor, supports postcompression of PNG, JPEG, GZIP and ZIP files.' url='https://github.com/fhanau/Efficient-Compression-Tool' arch=('i686' 'x86_64') license=('Apache') -source=("git+$url.git#commit=48aea4e39396a0f6e39fbc504a4b194282c9ff01") +source=("git+$url.git#commit=230133d6a84149910f05b5d2c6e8ac3fff9de4a6") md5sums=('SKIP') depends=('gcc-libs') makedepends=('nasm' 'git' 'cmake') From 2918b6b3318b735d0ef76bedbeeb5c3d4954b5da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 27 Aug 2022 22:50:06 +0200 Subject: [PATCH 321/971] Initial commit with version 1.2.0 --- .SRCINFO | 25 +++++++++++++++++++++++++ PKGBUILD | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 72 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..c476678 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,25 @@ +pkgbase = obs-vkcapture + pkgver = 1.2.0 + pkgrel = 1 + url = https://github.com/nowrep/obs-vkcapture + arch = x86_64 + license = GPL2 + makedepends = gcc + makedepends = cmake + makedepends = vulkan-headers + makedepends = lib32-gcc-libs + makedepends = lib32-vulkan-icd-loader + makedepends = lib32-libgl + depends = vulkan-icd-loader + depends = libgl + depends = obs-studio>=27 + source = https://github.com/nowrep/obs-vkcapture/archive/v1.2.0.tar.gz + sha512sums = e30aeb24af467a9f8a343985b77ea5cd4e39fdcdec067f3c65f7dd9b8915a933bff1ee5127e4a7a4eaa0e740f97f31af669cb5a75155bbd9937d694d739a6d7d + +pkgname = obs-vkcapture + pkgdesc = OBS Linux Vulkan/OpenGL game capture + +pkgname = lib32-obs-vkcapture + pkgdesc = OBS Linux Vulkan/OpenGL game capture (32-bit) + depends = lib32-vulkan-icd-loader + depends = lib32-libgl diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..1a98e3f --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,47 @@ +# Maintainer: Manuel Hüsers + +pkgbase=obs-vkcapture +pkgname=("$pkgbase" "lib32-$pkgbase") +pkgver=1.2.0 +pkgrel=1 +url="https://github.com/nowrep/$pkgbase" +license=('GPL2') +arch=('x86_64') +depends=('vulkan-icd-loader' 'libgl' 'obs-studio>=27') +makedepends=('gcc' 'cmake' 'vulkan-headers' 'lib32-gcc-libs' 'lib32-vulkan-icd-loader' 'lib32-libgl') +source=("https://github.com/nowrep/$pkgbase/archive/v1.2.0.tar.gz") +sha512sums=('e30aeb24af467a9f8a343985b77ea5cd4e39fdcdec067f3c65f7dd9b8915a933bff1ee5127e4a7a4eaa0e740f97f31af669cb5a75155bbd9937d694d739a6d7d') + +build() { + cmake -B build -S "$pkgbase-$pkgver" -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib \ + -DCMAKE_INSTALL_DATADIR=/share \ + -DCMAKE_BUILD_TYPE=Release + make -C build + + export CFLAGS="-m32 ${CFLAGS}" + export CXXFLAGS="-m32 ${CXXFLAGS}" + export LDFLAGS="-m32 ${LDFLAGS}" + + cmake -B build32 -S "$pkgbase-$pkgver" -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib32 \ + -DCMAKE_INSTALL_DATADIR=/share \ + -DCMAKE_LIBRARY_PATH=/usr/lib32 \ + -DCMAKE_BUILD_TYPE=Release \ + -DBUILD_PLUGIN=OFF + make -C build32 +} + +package_obs-vkcapture() { + pkgdesc='OBS Linux Vulkan/OpenGL game capture' + + make -C build DESTDIR="$pkgdir" install +} + +package_lib32-obs-vkcapture() { + pkgdesc='OBS Linux Vulkan/OpenGL game capture (32-bit)' + depends=('lib32-vulkan-icd-loader' 'lib32-libgl') + + make -C build32 DESTDIR="$pkgdir" install + rm -r "$pkgdir/usr/bin" +} From a6279bbc52726eb5e2fc07e23e2cc62f03b88b31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 7 Sep 2022 18:28:02 +0200 Subject: [PATCH 322/971] Bump to 20220905 --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index c997a82..d0b2399 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20220808.0 + pkgver = 20220905.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/PKGBUILD b/PKGBUILD index 81982fa..337468c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20220808.0 +pkgver=20220905.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From 277c8a0b3446e1c33655e115978934d0e57633e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 7 Sep 2022 18:28:23 +0200 Subject: [PATCH 323/971] Release 20220905.0 --- .SRCINFO | 18 +++++++++--------- PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 9737ddd..e50e33b 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20220808.0 + pkgver = 20220905.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220808/x86_64/runsc - source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220808/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = ccec0f16d0494d1ddfac44ec7614874a5ef012e8a02270f005f169f73af334a40d142d2a766e473bdc7dc3d348f2367e53d9c01e04385b66a21f9f8145f4777e - sha512sums_x86_64 = 1886296af99d129b971f0437ae281adeec50a5320b96e14f37c20692d4b5c9920063e665fcf9d422418f3ebd2610310f33f7b37ba859ef71278242cbd8de5fa8 - source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220808/aarch64/runsc - source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220808/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = d13323c9d71312d86ac09d35124ab0d28cd6df300e25e33e8146a17a87ecbffb2e6c6dff7e8d261c33028ecc8a36a8685f7053760c6473b61afa703469ed2cb6 - sha512sums_aarch64 = 36573c27ba1ce33a021cc4aed4e795b2ede553a4feccd9c444e4f7251ef81e0c7eaaac47a19a4dd0436faee1359fc496c45e024bf39988028cddbc0ee9a40b50 + source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220905/x86_64/runsc + source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220905/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = 01e4f78b2634f70d8cfd88e2a1642562a1dc52c8757c884953aee2e92c1e337ecca4ef7ff570a94d0214bc663a8220f4e9433c3d7bc6dab79f88b3336a62123d + sha512sums_x86_64 = 7a3f847909c03078b549682fec9904efc9ec1606357f911c6b87f18953e9ccd8e914a09ff9837f4ecf7574d70a4aca4d5ad30d27c923866374b25578adc7cec7 + source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220905/aarch64/runsc + source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220905/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = ea2da7b729097f2694580195b7894daed8d1dbc3520f08513b6712871c02b565a7c25a09c909e8992c9f27d26637aeff588febf46e64d94eb76af1ae5887026a + sha512sums_aarch64 = 23930334619ac425bc4ca0e4bd460ddc9ed3a4c885083f30ae8e6c33501bf08ce81e8c6a82a6670b2a666a749710cb54925e02c88acee8114d40df7bbb422afc pkgname = gvisor-bin diff --git a/PKGBUILD b/PKGBUILD index 2771836..1f660a4 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20220808.0 +pkgver=20220905.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -26,12 +26,12 @@ source_aarch64=( "https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/aarch64/$_pkgshim" ) sha512sums_x86_64=( - 'ccec0f16d0494d1ddfac44ec7614874a5ef012e8a02270f005f169f73af334a40d142d2a766e473bdc7dc3d348f2367e53d9c01e04385b66a21f9f8145f4777e' - '1886296af99d129b971f0437ae281adeec50a5320b96e14f37c20692d4b5c9920063e665fcf9d422418f3ebd2610310f33f7b37ba859ef71278242cbd8de5fa8' + '01e4f78b2634f70d8cfd88e2a1642562a1dc52c8757c884953aee2e92c1e337ecca4ef7ff570a94d0214bc663a8220f4e9433c3d7bc6dab79f88b3336a62123d' + '7a3f847909c03078b549682fec9904efc9ec1606357f911c6b87f18953e9ccd8e914a09ff9837f4ecf7574d70a4aca4d5ad30d27c923866374b25578adc7cec7' ) sha512sums_aarch64=( - 'd13323c9d71312d86ac09d35124ab0d28cd6df300e25e33e8146a17a87ecbffb2e6c6dff7e8d261c33028ecc8a36a8685f7053760c6473b61afa703469ed2cb6' - '36573c27ba1ce33a021cc4aed4e795b2ede553a4feccd9c444e4f7251ef81e0c7eaaac47a19a4dd0436faee1359fc496c45e024bf39988028cddbc0ee9a40b50' + 'ea2da7b729097f2694580195b7894daed8d1dbc3520f08513b6712871c02b565a7c25a09c909e8992c9f27d26637aeff588febf46e64d94eb76af1ae5887026a' + '23930334619ac425bc4ca0e4bd460ddc9ed3a4c885083f30ae8e6c33501bf08ce81e8c6a82a6670b2a666a749710cb54925e02c88acee8114d40df7bbb422afc' ) package() { From bc2cf3f39e5efa0b35f8fd20354e35172081f9be Mon Sep 17 00:00:00 2001 From: graysky Date: Sun, 11 Sep 2022 13:53:58 -0400 Subject: [PATCH 324/971] Update to 2022.0.2.84-1 --- .SRCINFO | 10 +++++----- PKGBUILD | 12 ++++++------ 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index d8cf03c..dc7beb3 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,15 +1,15 @@ pkgbase = linpack - pkgver = 2021.2.0_109 + pkgver = 2022.0.2.84 pkgrel = 1 url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download arch = x86_64 license = custom - source = https://www.intel.com/content/dam/develop/external/us/en/documents/l_onemklbench_p_2021.2.0_109.tgz + source = https://downloadmirror.intel.com/721397/l-onemklbench-p-2022-0-2-84.tgz source = linpack.conf source = linpack_runme_xeon64 - b2sums = 31642cc4fcf478cb8bed8f21b7e099f6d228c11de728c07bc3c19c545c2ba115213430e7a298167c60fc8e58f615cec319137d1bae9d489862ec0f95aedea932 - b2sums = cb9e676aab60304f56c1ab099a0a46e0bb2af9beee93b95adbf2661c475c8e5a1ee35c6726f646b98c5cdacbdb1870488526bc0f19de59699c6a550bb2de06b6 - b2sums = 1ab0b9fde310496400bfa924c2e1a9206f341102117a64b3b086732394cbc33498708322ffbdf45b117898ed35a34b5107127cfedd9eec0eeb1a3f84d7aeaf63 + sha1sums = 3c9f41fcd1454bfbb5525a1056b18edc7f58aae5 + sha1sums = 96636f441f3ab48b2df5e24afd2775ff5f954446 + sha1sums = 9529264752433c0fa5fe33c9712ffc3cf83acc2a pkgname = linpack pkgdesc = Benchmark based on linear algebra excellent app for stress testing. diff --git a/PKGBUILD b/PKGBUILD index c88ec54..2a8c7a7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,16 +1,16 @@ # Contributor: graysky pkgname=('linpack') -pkgver=2021.2.0_109 -_math_kernel_lib=2021.2.0 +pkgver=2022.0.2.84 +_math_kernel_lib=2022.0.2 pkgrel=1 arch=('x86_64') license=('custom') url="http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download" -source=("https://www.intel.com/content/dam/develop/external/us/en/documents/l_onemklbench_p_$pkgver.tgz" +source=("https://downloadmirror.intel.com/721397/l-onemklbench-p-${pkgver//./-}.tgz" 'linpack.conf' 'linpack_runme_xeon64') -b2sums=('31642cc4fcf478cb8bed8f21b7e099f6d228c11de728c07bc3c19c545c2ba115213430e7a298167c60fc8e58f615cec319137d1bae9d489862ec0f95aedea932' - 'cb9e676aab60304f56c1ab099a0a46e0bb2af9beee93b95adbf2661c475c8e5a1ee35c6726f646b98c5cdacbdb1870488526bc0f19de59699c6a550bb2de06b6' - '1ab0b9fde310496400bfa924c2e1a9206f341102117a64b3b086732394cbc33498708322ffbdf45b117898ed35a34b5107127cfedd9eec0eeb1a3f84d7aeaf63') +sha1sums=('3c9f41fcd1454bfbb5525a1056b18edc7f58aae5' + '96636f441f3ab48b2df5e24afd2775ff5f954446' + '9529264752433c0fa5fe33c9712ffc3cf83acc2a') package_linpack() { pkgdesc='Benchmark based on linear algebra excellent app for stress testing.' From 24e6c20ec00ce952e2e26e0c9e6f94a207d54a9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 15 Sep 2022 15:53:19 +0200 Subject: [PATCH 325/971] Update to build 4136 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 0d603af..a6e6b6f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4134 + pkgver = 4.4136 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4134_x64.tar.xz - sha256sums_x86_64 = adddc41bc7b5dc5b0f2a285233daa350c46c100ea3a0cc15aa18f535997021a1 - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4134_arm64.tar.xz - sha256sums_aarch64 = 81d7c40ddd84d6c7b0d3cb1599c9b0db5cf28a5f09b8924ca46d93ffd3e2f351 + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4136_x64.tar.xz + sha256sums_x86_64 = e9c49a17cb1e4b75e95e9a1a44e3b9b6956ec09cc4fb3d64cf0c4d94e51a763d + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4136_arm64.tar.xz + sha256sums_aarch64 = 32d89bf22dbd14216eb515e658f412a7d87f15c2c3efec2ffad1808f07fd777c pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 1dc82a8..d6b4922 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4134 +pkgver=4.4136 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('adddc41bc7b5dc5b0f2a285233daa350c46c100ea3a0cc15aa18f535997021a1') -sha256sums_aarch64=('81d7c40ddd84d6c7b0d3cb1599c9b0db5cf28a5f09b8924ca46d93ffd3e2f351') +sha256sums_x86_64=('e9c49a17cb1e4b75e95e9a1a44e3b9b6956ec09cc4fb3d64cf0c4d94e51a763d') +sha256sums_aarch64=('32d89bf22dbd14216eb515e658f412a7d87f15c2c3efec2ffad1808f07fd777c') package() { cd "${srcdir}" From 13032bd20ca127ff87d8e28a121279c9a2de2de9 Mon Sep 17 00:00:00 2001 From: Manuel Date: Thu, 15 Sep 2022 20:17:33 +0200 Subject: [PATCH 326/971] Update discord-electron-bin to 0.0.20 --- srcpkgs/discord-electron-bin/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/discord-electron-bin/PKGBUILD b/srcpkgs/discord-electron-bin/PKGBUILD index a915b52..f071182 100644 --- a/srcpkgs/discord-electron-bin/PKGBUILD +++ b/srcpkgs/discord-electron-bin/PKGBUILD @@ -12,7 +12,7 @@ pkgname=discord-electron-bin _pkgname=discord _electron=15 -pkgver=0.0.19 +pkgver=0.0.20 pkgrel=1 pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') @@ -27,7 +27,7 @@ optdepends=( 'xdg-utils: Open files' ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/discord-${pkgver}.tar.gz") -sha512sums=('5b73f0f968ce61f5a844940e1525da80e7b2ce3779cf2050ca3c2b0b7dbee20f16e2bf203f0673d1e275d1e55075b83eb63700731be8324587b3c58c64d3a0e8') +sha512sums=('720bc8a8b61cbbe3566c34065f9831571da121d210e3f2876c34cb964d60bab33f8dc16f7ca758e918cd8f35a69699c0b9063782e6c95087c0baa41a6d0e7cf5') _tarname='Discord' From 5d4cfb5769ca8a30575c0e4431527f3af5aa5cb8 Mon Sep 17 00:00:00 2001 From: Manuel Date: Thu, 15 Sep 2022 20:33:01 +0200 Subject: [PATCH 327/971] Downgrade Electron version to support screen sharing --- srcpkgs/discord-electron-bin/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/discord-electron-bin/PKGBUILD b/srcpkgs/discord-electron-bin/PKGBUILD index f071182..245b71e 100644 --- a/srcpkgs/discord-electron-bin/PKGBUILD +++ b/srcpkgs/discord-electron-bin/PKGBUILD @@ -11,7 +11,7 @@ pkgname=discord-electron-bin _pkgname=discord -_electron=15 +_electron=13 pkgver=0.0.20 pkgrel=1 pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" From 6262bc5fa7f79806857f737012b9887ddd1c24cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 15 Sep 2022 20:44:17 +0200 Subject: [PATCH 328/971] Initial commit --- .SRCINFO | 19 ++++++++++ .gitignore | 4 +++ PKGBUILD | 101 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 124 insertions(+) create mode 100644 .SRCINFO create mode 100644 .gitignore create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..67ad87d --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,19 @@ +pkgbase = discord-electron-bin + pkgdesc = Discord using system provided electron (v13) for increased security and performance + pkgver = 0.0.20 + pkgrel = 1 + url = https://discord.com + arch = x86_64 + license = custom + makedepends = asar + makedepends = curl + makedepends = python-html2text + depends = electron13 + optdepends = libpulse: Pulseaudio support + optdepends = xdg-utils: Open files + provides = discord + conflicts = discord + source = https://dl.discordapp.net/apps/linux/0.0.20/discord-0.0.20.tar.gz + sha512sums = 720bc8a8b61cbbe3566c34065f9831571da121d210e3f2876c34cb964d60bab33f8dc16f7ca758e918cd8f35a69699c0b9063782e6c95087c0baa41a6d0e7cf5 + +pkgname = discord-electron-bin diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b38a53a --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +pkg/ +src/ +*.tar.* +*.pkg.* diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..245b71e --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,101 @@ +# Maintainer: Manuel Hüsers +# Contributor: Stick +# Contributor: johnnyapol +# Contributor: huyizheng +# Contributor: Filipe Laíns (FFY00) +# Contributor: Morgan + +# Based off the discord_arch_electron_wayland PKGBUILD from Stick +# Based off the discord_arch_electron PKGBUILD from johnnyapol and huyizheng +# Based off the discord community repo PKGBUILD by Filipe Laíns (FFY00) + +pkgname=discord-electron-bin +_pkgname=discord +_electron=13 +pkgver=0.0.20 +pkgrel=1 +pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" +arch=('x86_64') +provides=("${_pkgname}") +conflicts=("${_pkgname}") +url='https://discord.com' +license=('custom') +depends=("electron${_electron}") +makedepends=('asar' 'curl' 'python-html2text') +optdepends=( + 'libpulse: Pulseaudio support' + 'xdg-utils: Open files' +) +source=("https://dl.discordapp.net/apps/linux/${pkgver}/discord-${pkgver}.tar.gz") +sha512sums=('720bc8a8b61cbbe3566c34065f9831571da121d210e3f2876c34cb964d60bab33f8dc16f7ca758e918cd8f35a69699c0b9063782e6c95087c0baa41a6d0e7cf5') + +_tarname='Discord' + +prepare() { + # create launcher script + cat >> "${srcdir}"/discord-launcher.sh <> $_tarname/$_pkgname.desktop + + # create the license files + curl https://discord.com/terms | html2text >"${srcdir}"/LICENSE.md + curl https://discord.com/licenses | html2text >"${srcdir}"/OSS-LICENSES.md + + # use system electron + asar e $_tarname/resources/app.asar $_tarname/resources/app + rm $_tarname/resources/app.asar + sed -i "s|process.resourcesPath|'/usr/lib/${_pkgname}'|" $_tarname/resources/app/app_bootstrap/buildInfo.js + sed -i "s|exeDir,|'/usr/share/pixmaps',|" $_tarname/resources/app/app_bootstrap/autoStart/linux.js + asar p $_tarname/resources/app $_tarname/resources/app.asar --unpack-dir '**' + rm -rf $_tarname/resources/app +} + +package() { + # create necessary directories + install -d "${pkgdir}"/usr/{lib/$_pkgname,bin} + install -d "${pkgdir}"/usr/share/{pixmaps,applications,licenses/$_pkgname} + + # copy relevant data + cp -r $_tarname/resources/* "${pkgdir}"/usr/lib/$_pkgname/ + + # install the binary + install -Dm 755 discord-launcher.sh "${pkgdir}"/usr/bin/$_pkgname + + cp $_tarname/$_pkgname.png \ + "${pkgdir}"/usr/share/pixmaps/$_pkgname.png + cp $_tarname/$_pkgname.desktop \ + "${pkgdir}"/usr/share/applications/$_pkgname.desktop + + # license + install -Dm 644 LICENSE.md "${pkgdir}"/usr/share/licenses/$_pkgname/ + install -Dm 644 OSS-LICENSES.md "${pkgdir}"/usr/share/licenses/$_pkgname/ +} From 69aa9255bbec35da7cca87fc940eef91f64dfdf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 20 Sep 2022 23:34:26 +0200 Subject: [PATCH 329/971] Update to 0.11.1 --- .SRCINFO | 6 +++--- PKGBUILD | 19 +++++++++---------- 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 8bc6c49..6217143 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = prometheus-postgresql-exporter pkgdesc = Prometheus exporter for PostgreSQL - pkgver = 0.11.0 + pkgver = 0.11.1 pkgrel = 1 url = https://github.com/prometheus-community/postgres_exporter arch = x86_64 @@ -9,10 +9,10 @@ pkgbase = prometheus-postgresql-exporter makedepends = go makedepends = make backup = etc/conf.d/prometheus-postgresql-exporter - source = https://github.com/prometheus-community/postgres_exporter/archive/v0.11.0.tar.gz + source = https://github.com/prometheus-community/postgres_exporter/archive/v0.11.1.tar.gz source = prometheus-postgresql-exporter.service source = prometheus-postgresql-exporter.conf - sha256sums = 2b71340ddb533a0c7372d38d5b09bd79e6737a2a1f8ce0c46900f172ccb1e8e4 + sha256sums = 48e38e5cc8f093f93a84b1536c2ae7dc480760f9c443ae654a9f1f83d289a7bc sha256sums = 0d86e650d88c8d4a8bc5b26faecb75023e069eaf29582135bcb0202e4a69a9b9 sha256sums = 5436ad34fbcd6faab69da8675631f3eb5b89d964682eb23164bf4bb816ad1897 diff --git a/PKGBUILD b/PKGBUILD index ac9749f..aaf4248 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Nils Czernia pkgname=prometheus-postgresql-exporter -pkgver=0.11.0 +pkgver=0.11.1 pkgrel=1 pkgdesc="Prometheus exporter for PostgreSQL" arch=('x86_64') @@ -13,7 +13,7 @@ backup=('etc/conf.d/prometheus-postgresql-exporter') source=("https://github.com/prometheus-community/postgres_exporter/archive/v${pkgver}.tar.gz" "prometheus-postgresql-exporter.service" "prometheus-postgresql-exporter.conf") -sha256sums=('2b71340ddb533a0c7372d38d5b09bd79e6737a2a1f8ce0c46900f172ccb1e8e4' +sha256sums=('48e38e5cc8f093f93a84b1536c2ae7dc480760f9c443ae654a9f1f83d289a7bc' '0d86e650d88c8d4a8bc5b26faecb75023e069eaf29582135bcb0202e4a69a9b9' '5436ad34fbcd6faab69da8675631f3eb5b89d964682eb23164bf4bb816ad1897') @@ -26,22 +26,21 @@ prepare() { } build() { + export CGO_CPPFLAGS="${CPPFLAGS}" + export CGO_CFLAGS="${CFLAGS}" + export CGO_CXXFLAGS="${CXXFLAGS}" + export CGO_LDFLAGS="${LDFLAGS}" + export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw" export GOPATH="${srcdir}/gopath" cd "${GOPATH}/src/github.com/prometheus-community/postgres_exporter" make build } -check() { - export GOPATH="${srcdir}/gopath" - cd "${GOPATH}/src/github.com/prometheus-community/postgres_exporter" - make test -} - package() { install -Dm644 "prometheus-postgresql-exporter.service" \ - "${pkgdir}/usr/lib/systemd/system/prometheus-postgresql-exporter.service" + "${pkgdir}/usr/lib/systemd/system/prometheus-postgresql-exporter.service" install -Dm644 "prometheus-postgresql-exporter.conf" \ - "${pkgdir}/etc/conf.d/prometheus-postgresql-exporter" + "${pkgdir}/etc/conf.d/prometheus-postgresql-exporter" cd "postgres_exporter-${pkgver}" install -Dm755 "postgres_exporter" "${pkgdir}/usr/bin/prometheus_postgresql_exporter" From dd3071719e4ae5c402fc32c02d887d1c9165ed1d Mon Sep 17 00:00:00 2001 From: Manuel Date: Fri, 23 Sep 2022 17:22:56 +0200 Subject: [PATCH 330/971] Add cage-vi --- srcpkgs/cage-vi/PKGBUILD | 38 + srcpkgs/cage-vi/a81ab70.patch | 2256 +++++++++++++++++++++++++++ srcpkgs/cage-vi/virtual_input.patch | 218 +++ 3 files changed, 2512 insertions(+) create mode 100644 srcpkgs/cage-vi/PKGBUILD create mode 100644 srcpkgs/cage-vi/a81ab70.patch create mode 100644 srcpkgs/cage-vi/virtual_input.patch diff --git a/srcpkgs/cage-vi/PKGBUILD b/srcpkgs/cage-vi/PKGBUILD new file mode 100644 index 0000000..bda72aa --- /dev/null +++ b/srcpkgs/cage-vi/PKGBUILD @@ -0,0 +1,38 @@ +pkgname=cage-vi +_pkgname=${pkgname%%-*} +pkgver=0.1.4+39+ga81ab70 +_pkgver=${pkgver%%+*} +pkgrel=1 +pkgdesc='A Wayland kiosk, with virtual input patch applied' +arch=('x86_64') +url="https://www.hjdskes.nl/projects/${_pkgname}/" +license=('MIT') +depends=('wlroots' 'wayland' 'libxkbcommon' 'xorg-xwayland') +makedepends=('meson' 'wayland-protocols') +source=( + "https://github.com/Hjdskes/${_pkgname}/releases/download/v${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" + 'a81ab70.patch' + 'virtual_input.patch' +) +sha256sums=( + 'dfe27fb0c7d43db72d6c82f01e2736580a0791a23ba69d7b56285d08af98ad90' + '8580568cc9b68b33de206a841e2110be14de730356c504b66fe366912d0abf76' + '352a3f33c2690a401c90c4de668d38e4cdff53db6c2fc9577a7c607d8a9ec369' +) + +prepare() { + cd "${srcdir}/${_pkgname}-${_pkgver}" + patch -Np1 -i '../a81ab70.patch' + patch -Np1 -i '../virtual_input.patch' + meson --buildtype=release -Dxwayland=true --prefix /usr "$srcdir/build" +} + +build() { + cd "${srcdir}/${_pkgname}-${_pkgver}" + ninja -C "$srcdir/build" +} + +package() { + cd "${srcdir}/${_pkgname}-${_pkgver}" + DESTDIR="$pkgdir/" ninja -C "$srcdir/build" install +} diff --git a/srcpkgs/cage-vi/a81ab70.patch b/srcpkgs/cage-vi/a81ab70.patch new file mode 100644 index 0000000..6939578 --- /dev/null +++ b/srcpkgs/cage-vi/a81ab70.patch @@ -0,0 +1,2256 @@ +diff --git a/.builds/alpine.yml b/.builds/alpine.yml +deleted file mode 100644 +index ef32a95..0000000 +--- a/.builds/alpine.yml ++++ /dev/null +@@ -1,35 +0,0 @@ +-image: alpine/edge +-packages: +- - eudev-dev +- - mesa-dev +- - meson +- - libinput-dev +- - libxkbcommon-dev +- - pixman-dev +- - scdoc +- - wayland-dev +- - wayland-protocols +- - xcb-util-wm-dev +- - xwayland +-sources: +- - https://github.com/swaywm/wlroots +- - https://github.com/Hjdskes/cage +-tasks: +- # Install wlroots, which is required by Cage. Note that we compile a tagged +- # version, instead of master, to avoid any breaking changes in wlroots. +- - wlroots: | +- cd wlroots +- git checkout 0.14.0 +- meson --prefix=/usr build -Dexamples=false +- ninja -C build +- sudo ninja -C build install +- - build: | +- cd cage +- meson build --werror -Dxwayland=true +- ninja -C build +- rm -rf build +- - build-no-xwayland: | +- cd cage +- meson build --werror -Dxwayland=false +- ninja -C build +- rm -rf build +diff --git a/.builds/archlinux.yml b/.builds/archlinux.yml +deleted file mode 100644 +index 99cdd24..0000000 +--- a/.builds/archlinux.yml ++++ /dev/null +@@ -1,45 +0,0 @@ +-image: archlinux +-packages: +- - clang +- - meson +- - libinput +- - libxkbcommon +- - mesa +- - scdoc +- - wayland +- - wayland-protocols +- - xcb-util-wm +- - xorg-xwayland +-sources: +- - https://github.com/swaywm/wlroots +- - https://github.com/Hjdskes/cage +-tasks: +- # Install wlroots, which is required by Cage. Note that we compile a tagged +- # version, instead of master, to avoid any breaking changes in wlroots. +- - wlroots: | +- cd wlroots +- git checkout 0.14.0 +- meson --prefix=/usr build -Dexamples=false +- ninja -C build +- sudo ninja -C build install +- - build: | +- cd cage +- meson build --werror -Dxwayland=true +- ninja -C build +- rm -rf build +- - build-no-xwayland: | +- cd cage +- meson build --werror -Dxwayland=false +- ninja -C build +- rm -rf build +- - scan-build: | +- cd cage +- CC=clang meson build --werror -Dxwayland=true +- CC=clang ninja -C build scan-build +- rm -rf build +- - clang-format: | +- cd cage +- meson build --werror -Dxwayland=true +- ninja -C build clang-format +- rm -rf build +- git diff --exit-code +diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml +deleted file mode 100644 +index 92a2119..0000000 +--- a/.builds/freebsd.yml ++++ /dev/null +@@ -1,37 +0,0 @@ +-image: freebsd/latest +-packages: +- - devel/evdev-proto +- - devel/meson +- - devel/libepoll-shim +- - devel/pkgconf +- - graphics/mesa-libs +- - graphics/wayland +- - graphics/wayland-protocols +- - textproc/scdoc +- - x11/libinput +- - x11/libxkbcommon +- - x11/pixman +- - x11/xcb-util-wm +- - x11-servers/xwayland +-sources: +- - https://github.com/swaywm/wlroots +- - https://github.com/Hjdskes/cage +-tasks: +- # Install wlroots, which is required by Cage. Note that we compile a tagged +- # version, instead of master, to avoid any breaking changes in wlroots. +- - wlroots: | +- cd wlroots +- git checkout 0.14.0 +- meson --prefix=/usr/local build -Dexamples=false +- ninja -C build +- sudo ninja -C build install +- - build: | +- cd cage +- PKG_CONFIG_PATH=/usr/local/lib/pkgconfig meson build --werror -Dxwayland=true +- PKG_CONFIG_PATH=/usr/local/lib/pkgconfig ninja -C build +- rm -rf build +- - build-no-xwayland: | +- cd cage +- PKG_CONFIG_PATH=/usr/local/lib/pkgconfig meson build --werror -Dxwayland=false +- PKG_CONFIG_PATH=/usr/local/lib/pkgconfig ninja -C build +- rm -rf build +diff --git a/.clang-format-ignore b/.clang-format-ignore +new file mode 100644 +index 0000000..60dd059 +--- /dev/null ++++ b/.clang-format-ignore +@@ -0,0 +1 @@ ++subprojects/**/* +\ No newline at end of file +diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml +new file mode 100644 +index 0000000..5e95347 +--- /dev/null ++++ b/.github/workflows/main.yml +@@ -0,0 +1,76 @@ ++name: Continuous integration build ++on: ++ push: ++ branches: [ master ] ++ pull_request: ++ branches: [ master ] ++ ++jobs: ++ compile: ++ runs-on: ubuntu-latest ++ strategy: ++ matrix: ++ CC: [ gcc, clang ] ++ OS: [ "alpine:edge", "archlinux:base-devel" ] ++ xwayland: [ true, false ] ++ container: ${{ matrix.OS }} ++ env: ++ CC: ${{ matrix.CC }} ++ steps: ++ - name: Checkout Cage ++ uses: actions/checkout@v2 ++ ++ - name: Install dependencies (Alpine) ++ if: "matrix.OS == 'alpine:edge'" ++ run: apk add build-base xcb-util-wm-dev libseat-dev clang git eudev-dev mesa-dev libdrm-dev libinput-dev libxkbcommon-dev pixman-dev wayland-dev meson wayland-protocols xwayland scdoc-doc ++ ++ - name: Install dependencies (Arch) ++ if: "matrix.OS == 'archlinux:base-devel'" ++ run: | ++ pacman-key --init ++ pacman -Syu --noconfirm xcb-util-wm seatd git clang meson libinput libdrm mesa libxkbcommon wayland wayland-protocols xorg-server-xwayland scdoc ++ ++ - name: Fetch wlroots as a subproject ++ run: git clone https://gitlab.freedesktop.org/wlroots/wlroots.git subprojects/wlroots -b 0.15.0 ++ ++ # TODO: use --fatal-meson-warnings when on wlroots 0.15.0 ++ - name: Compile Cage (XWayland=${{ matrix.xwayland }}) ++ run: | ++ meson build-${{ matrix.CC }}-${{matrix.xwayland }} -Dxwayland=${{ matrix.xwayland }} ++ ninja -C build-${{ matrix.CC }}-${{matrix.xwayland }} ++ ++ format: ++ runs-on: ubuntu-latest ++ container: "archlinux:base-devel" ++ steps: ++ - name: Checkout Cage ++ uses: actions/checkout@v2 ++ - name: Install dependencies ++ run: | ++ pacman-key --init ++ pacman -Syu --noconfirm xcb-util-wm seatd git clang meson libinput libdrm mesa libxkbcommon wayland wayland-protocols xorg-server-xwayland scdoc ++ - name: Fetch wlroots as a subproject ++ run: git clone https://gitlab.freedesktop.org/wlroots/wlroots.git subprojects/wlroots -b 0.15.0 ++ - name: Check for formatting changes ++ run: | ++ meson build-clang-format -Dxwayland=true ++ ninja -C build-clang-format clang-format-check ++ ++ scan-build: ++ runs-on: ubuntu-latest ++ container: "archlinux:base-devel" ++ env: ++ CC: clang ++ steps: ++ - name: Checkout Cage ++ uses: actions/checkout@v2 ++ - name: Install dependencies ++ run: | ++ pacman-key --init ++ pacman -Syu --noconfirm xcb-util-wm seatd git clang meson libinput libdrm mesa libxkbcommon wayland wayland-protocols xorg-server-xwayland scdoc ++ - name: Fetch wlroots as a subproject ++ run: git clone https://gitlab.freedesktop.org/wlroots/wlroots.git subprojects/wlroots -b 0.15.0 ++ - name: Run scan-build ++ run: | ++ meson build-scan-build -Dxwayland=true ++ ninja -C build-scan-build scan-build +diff --git a/cage.c b/cage.c +index 5392535..95f0cc7 100644 +--- a/cage.c ++++ b/cage.c +@@ -19,6 +19,7 @@ + #include + #include + #include ++#include + #include + #include + #include +@@ -27,8 +28,11 @@ + #include + #include + #include ++#include ++#include + #include + #include ++#include + #if CAGE_HAS_XWAYLAND + #include + #endif +@@ -185,9 +189,6 @@ usage(FILE *file, const char *cage) + "Usage: %s [OPTIONS] [--] APPLICATION\n" + "\n" + " -d\t Don't draw client side decorations, when possible\n" +-#ifdef DEBUG +- " -D\t Turn on damage tracking debugging\n" +-#endif + " -h\t Display this help message\n" + " -m extend Extend the display across all connected outputs (default)\n" + " -m last Use only the last connected output\n" +@@ -203,20 +204,11 @@ static bool + parse_args(struct cg_server *server, int argc, char *argv[]) + { + int c; +-#ifdef DEBUG +- while ((c = getopt(argc, argv, "dDhm:rsv")) != -1) { +-#else + while ((c = getopt(argc, argv, "dhm:rsv")) != -1) { +-#endif + switch (c) { + case 'd': + server->xdg_decoration = true; + break; +-#ifdef DEBUG +- case 'D': +- server->debug_damage_tracking = true; +- break; +-#endif + case 'h': + usage(stdout, argv[0]); + return false; +@@ -261,7 +253,6 @@ main(int argc, char *argv[]) + struct wl_event_source *sigint_source = NULL; + struct wl_event_source *sigterm_source = NULL; + struct wl_event_source *sigchld_source = NULL; +- struct wlr_renderer *renderer = NULL; + struct wlr_compositor *compositor = NULL; + struct wlr_data_device_manager *data_device_manager = NULL; + struct wlr_server_decoration_manager *server_decoration_manager = NULL; +@@ -270,6 +261,8 @@ main(int argc, char *argv[]) + struct wlr_screencopy_manager_v1 *screencopy_manager = NULL; + struct wlr_xdg_output_manager_v1 *output_manager = NULL; + struct wlr_gamma_control_manager_v1 *gamma_control_manager = NULL; ++ struct wlr_viewporter *viewporter = NULL; ++ struct wlr_presentation *presentation = NULL; + struct wlr_xdg_shell *xdg_shell = NULL; + #if CAGE_HAS_XWAYLAND + struct wlr_xwayland *xwayland = NULL; +@@ -316,8 +309,21 @@ main(int argc, char *argv[]) + goto end; + } + +- renderer = wlr_backend_get_renderer(server.backend); +- wlr_renderer_init_wl_display(renderer, server.wl_display); ++ server.renderer = wlr_renderer_autocreate(server.backend); ++ if (!server.renderer) { ++ wlr_log(WLR_ERROR, "Unable to create the wlroots renderer"); ++ ret = 1; ++ goto end; ++ } ++ ++ server.allocator = wlr_allocator_autocreate(server.backend, server.renderer); ++ if (!server.allocator) { ++ wlr_log(WLR_ERROR, "Unable to create the wlroots allocator"); ++ ret = 1; ++ goto end; ++ } ++ ++ wlr_renderer_init_wl_display(server.renderer, server.wl_display); + + wl_list_init(&server.views); + wl_list_init(&server.outputs); +@@ -329,7 +335,16 @@ main(int argc, char *argv[]) + goto end; + } + +- compositor = wlr_compositor_create(server.wl_display, renderer); ++ server.scene = wlr_scene_create(); ++ if (!server.scene) { ++ wlr_log(WLR_ERROR, "Unable to create scene"); ++ ret = 1; ++ goto end; ++ } ++ ++ wlr_scene_attach_output_layout(server.scene, server.output_layout); ++ ++ compositor = wlr_compositor_create(server.wl_display, server.renderer); + if (!compositor) { + wlr_log(WLR_ERROR, "Unable to create the wlroots compositor"); + ret = 1; +@@ -401,6 +416,21 @@ main(int argc, char *argv[]) + server_decoration_manager, server.xdg_decoration ? WLR_SERVER_DECORATION_MANAGER_MODE_SERVER + : WLR_SERVER_DECORATION_MANAGER_MODE_CLIENT); + ++ viewporter = wlr_viewporter_create(server.wl_display); ++ if (!viewporter) { ++ wlr_log(WLR_ERROR, "Unable to create the viewporter interface"); ++ ret = 1; ++ goto end; ++ } ++ ++ presentation = wlr_presentation_create(server.wl_display, server.backend); ++ if (!presentation) { ++ wlr_log(WLR_ERROR, "Unable to create the presentation interface"); ++ ret = 1; ++ goto end; ++ } ++ wlr_scene_set_presentation(server.scene, presentation); ++ + export_dmabuf_manager = wlr_export_dmabuf_manager_v1_create(server.wl_display); + if (!export_dmabuf_manager) { + wlr_log(WLR_ERROR, "Unable to create the export DMABUF manager"); +diff --git a/meson.build b/meson.build +index 3a84794..5a8b28c 100644 +--- a/meson.build ++++ b/meson.build +@@ -1,16 +1,17 @@ + project('cage', 'c', + version: '0.1.4', + license: 'MIT', ++ meson_version: '>=0.58.1', + default_options: [ + 'c_std=c11', +- 'warning_level=3', ++ 'warning_level=2', ++ 'werror=true', + ], + ) + + add_project_arguments( + [ + '-DWLR_USE_UNSTABLE', +- '-Wall', + '-Wundef', + '-Wno-unused-parameter', + ], +@@ -34,14 +35,13 @@ if is_freebsd + ) + endif + +-wlroots = dependency('wlroots', version: '>= 0.14.0') ++wlroots = dependency('wlroots', version: '>= 0.15.0', fallback: ['wlroots', 'wlroots']) + wayland_protos = dependency('wayland-protocols', version: '>=1.14') + wayland_server = dependency('wayland-server') +-pixman = dependency('pixman-1') + xkbcommon = dependency('xkbcommon') + math = cc.find_library('m') + +-wl_protocol_dir = wayland_protos.get_pkgconfig_variable('pkgdatadir') ++wl_protocol_dir = wayland_protos.get_variable('pkgdatadir') + wayland_scanner = find_program('wayland-scanner') + wayland_scanner_server = generator( + wayland_scanner, +@@ -65,12 +65,11 @@ server_protos = declare_dependency( + ) + + if get_option('xwayland') +- wlroots_has_xwayland = cc.get_define('WLR_HAS_XWAYLAND', prefix: '#include ', dependencies: wlroots) == '1' ++ wlroots_has_xwayland = wlroots.get_variable(pkgconfig: 'have_xwayland', internal: 'have_xwayland') == 'true' + if not wlroots_has_xwayland + error('Cannot build Cage with XWayland support: wlroots has been built without it') +- else +- have_xwayland = true + endif ++ have_xwayland = true + else + have_xwayland = false + endif +@@ -78,8 +77,8 @@ endif + version = '@0@'.format(meson.project_version()) + git = find_program('git', native: true, required: false) + if git.found() +- git_commit = run_command([git, 'rev-parse', '--short', 'HEAD']) +- git_branch = run_command([git, 'rev-parse', '--abbrev-ref', 'HEAD']) ++ git_commit = run_command([git, 'rev-parse', '--short', 'HEAD'], check: false) ++ git_branch = run_command([git, 'rev-parse', '--abbrev-ref', 'HEAD'], check: false) + if git_commit.returncode() == 0 and git_branch.returncode() == 0 + version = '@0@-@1@ (branch \'@2@\')'.format( + meson.project_version(), +@@ -95,7 +94,7 @@ conf_data.set_quoted('CAGE_VERSION', version) + + scdoc = dependency('scdoc', version: '>=1.9.2', native: true, required: get_option('man-pages')) + if scdoc.found() +- scdoc_prog = find_program(scdoc.get_pkgconfig_variable('scdoc'), native: true) ++ scdoc_prog = find_program(scdoc.get_variable('scdoc'), native: true) + sh = find_program('sh', native: true) + mandir = get_option('mandir') + man_files = [ +@@ -111,7 +110,7 @@ if scdoc.found() + input: filename, + output: output, + command: [ +- sh, '-c', '@0@ < @INPUT@ > @1@'.format(scdoc_prog.path(), output) ++ sh, '-c', '@0@ < @INPUT@ > @1@'.format(scdoc_prog.full_path(), output) + ], + install: true, + install_dir: '@0@/man@1@'.format(mandir, section) +@@ -123,9 +122,7 @@ cage_sources = [ + 'cage.c', + 'idle_inhibit_v1.c', + 'output.c', +- 'render.c', + 'seat.c', +- 'util.c', + 'view.c', + 'xdg_shell.c', + ] +@@ -136,10 +133,8 @@ cage_headers = [ + configuration: conf_data), + 'idle_inhibit_v1.h', + 'output.h', +- 'render.h', + 'seat.h', + 'server.h', +- 'util.h', + 'view.h', + 'xdg_shell.h', + ] +@@ -157,7 +152,6 @@ executable( + wayland_server, + wlroots, + xkbcommon, +- pixman, + math, + ], + install: true, +diff --git a/output.c b/output.c +index d8da3b9..c33bbe1 100644 +--- a/output.c ++++ b/output.c +@@ -1,7 +1,7 @@ + /* + * Cage: A Wayland kiosk. + * +- * Copyright (C) 2018-2020 Jente Hidskes ++ * Copyright (C) 2018-2021 Jente Hidskes + * Copyright (C) 2019 The Sway authors + * + * See the LICENSE file accompanying this file. +@@ -11,6 +11,7 @@ + + #include "config.h" + ++#include + #include + #include + #include +@@ -26,216 +27,20 @@ + #include + #include + #include ++#include + #include + #include + #include + #include + + #include "output.h" +-#include "render.h" + #include "seat.h" + #include "server.h" +-#include "util.h" + #include "view.h" + #if CAGE_HAS_XWAYLAND + #include "xwayland.h" + #endif + +-static void output_for_each_surface(struct cg_output *output, cg_surface_iterator_func_t iterator, void *user_data); +- +-struct surface_iterator_data { +- cg_surface_iterator_func_t user_iterator; +- void *user_data; +- +- struct cg_output *output; +- +- /* Output-local coordinates. */ +- double ox, oy; +-}; +- +-static bool +-intersects_with_output(struct cg_output *output, struct wlr_output_layout *output_layout, struct wlr_box *surface_box) +-{ +- /* Since the surface_box's x- and y-coordinates are already output local, +- * the x- and y-coordinates of this box need to be 0 for this function to +- * work correctly. */ +- struct wlr_box output_box = {0}; +- wlr_output_effective_resolution(output->wlr_output, &output_box.width, &output_box.height); +- +- struct wlr_box intersection; +- return wlr_box_intersection(&intersection, &output_box, surface_box); +-} +- +-static void +-output_for_each_surface_iterator(struct wlr_surface *surface, int sx, int sy, void *user_data) +-{ +- struct surface_iterator_data *data = user_data; +- struct cg_output *output = data->output; +- +- if (!wlr_surface_has_buffer(surface)) { +- return; +- } +- +- struct wlr_box surface_box = { +- .x = data->ox + sx + surface->sx, +- .y = data->oy + sy + surface->sy, +- .width = surface->current.width, +- .height = surface->current.height, +- }; +- +- if (!intersects_with_output(output, output->server->output_layout, &surface_box)) { +- return; +- } +- +- data->user_iterator(data->output, surface, &surface_box, data->user_data); +-} +- +-void +-output_surface_for_each_surface(struct cg_output *output, struct wlr_surface *surface, double ox, double oy, +- cg_surface_iterator_func_t iterator, void *user_data) +-{ +- struct surface_iterator_data data = { +- .user_iterator = iterator, +- .user_data = user_data, +- .output = output, +- .ox = ox, +- .oy = oy, +- }; +- +- wlr_surface_for_each_surface(surface, output_for_each_surface_iterator, &data); +-} +- +-static void +-output_view_for_each_surface(struct cg_output *output, struct cg_view *view, cg_surface_iterator_func_t iterator, +- void *user_data) +-{ +- struct surface_iterator_data data = { +- .user_iterator = iterator, +- .user_data = user_data, +- .output = output, +- .ox = view->lx, +- .oy = view->ly, +- }; +- +- wlr_output_layout_output_coords(output->server->output_layout, output->wlr_output, &data.ox, &data.oy); +- view_for_each_surface(view, output_for_each_surface_iterator, &data); +-} +- +-void +-output_view_for_each_popup_surface(struct cg_output *output, struct cg_view *view, cg_surface_iterator_func_t iterator, +- void *user_data) +-{ +- struct surface_iterator_data data = { +- .user_iterator = iterator, +- .user_data = user_data, +- .output = output, +- .ox = view->lx, +- .oy = view->ly, +- }; +- +- wlr_output_layout_output_coords(output->server->output_layout, output->wlr_output, &data.ox, &data.oy); +- view_for_each_popup_surface(view, output_for_each_surface_iterator, &data); +-} +- +-void +-output_drag_icons_for_each_surface(struct cg_output *output, struct wl_list *drag_icons, +- cg_surface_iterator_func_t iterator, void *user_data) +-{ +- struct cg_drag_icon *drag_icon; +- wl_list_for_each (drag_icon, drag_icons, link) { +- if (drag_icon->wlr_drag_icon->mapped) { +- double ox = drag_icon->lx; +- double oy = drag_icon->ly; +- wlr_output_layout_output_coords(output->server->output_layout, output->wlr_output, &ox, &oy); +- output_surface_for_each_surface(output, drag_icon->wlr_drag_icon->surface, ox, oy, iterator, +- user_data); +- } +- } +-} +- +-static void +-output_for_each_surface(struct cg_output *output, cg_surface_iterator_func_t iterator, void *user_data) +-{ +- struct cg_view *view; +- wl_list_for_each_reverse (view, &output->server->views, link) { +- output_view_for_each_surface(output, view, iterator, user_data); +- } +- +- output_drag_icons_for_each_surface(output, &output->server->seat->drag_icons, iterator, user_data); +-} +- +-struct send_frame_done_data { +- struct timespec when; +-}; +- +-static void +-send_frame_done_iterator(struct cg_output *output, struct wlr_surface *surface, struct wlr_box *box, void *user_data) +-{ +- struct send_frame_done_data *data = user_data; +- wlr_surface_send_frame_done(surface, &data->when); +-} +- +-static void +-send_frame_done(struct cg_output *output, struct send_frame_done_data *data) +-{ +- output_for_each_surface(output, send_frame_done_iterator, data); +-} +- +-static void +-count_surface_iterator(struct cg_output *output, struct wlr_surface *surface, struct wlr_box *_box, void *data) +-{ +- size_t *n = data; +- n++; +-} +- +-static bool +-scan_out_primary_view(struct cg_output *output) +-{ +- struct cg_server *server = output->server; +- struct wlr_output *wlr_output = output->wlr_output; +- +- struct cg_drag_icon *drag_icon; +- wl_list_for_each (drag_icon, &server->seat->drag_icons, link) { +- if (drag_icon->wlr_drag_icon->mapped) { +- return false; +- } +- } +- +- struct cg_view *view = seat_get_focus(server->seat); +- if (!view || !view->wlr_surface) { +- return false; +- } +- +- size_t n_surfaces = 0; +- output_view_for_each_surface(output, view, count_surface_iterator, &n_surfaces); +- if (n_surfaces > 1) { +- return false; +- } +- +-#if CAGE_HAS_XWAYLAND +- if (view->type == CAGE_XWAYLAND_VIEW) { +- struct cg_xwayland_view *xwayland_view = xwayland_view_from_view(view); +- if (!wl_list_empty(&xwayland_view->xwayland_surface->children)) { +- return false; +- } +- } +-#endif +- +- struct wlr_surface *surface = view->wlr_surface; +- +- if (!surface->buffer) { +- return false; +- } +- +- if ((float) surface->current.scale != wlr_output->scale || +- surface->current.transform != wlr_output->transform) { +- return false; +- } +- +- wlr_output_attach_buffer(wlr_output, &surface->buffer->base); +- return wlr_output_commit(wlr_output); +-} +- + static void + output_enable(struct cg_output *output) + { +@@ -249,6 +54,9 @@ output_enable(struct cg_output *output) + wlr_output_layout_add_auto(output->server->output_layout, wlr_output); + wlr_output_enable(wlr_output, true); + wlr_output_commit(wlr_output); ++ ++ output->scene_output = wlr_scene_get_scene_output(output->server->scene, wlr_output); ++ assert(output->scene_output != NULL); + } + + static void +@@ -261,6 +69,8 @@ output_disable(struct cg_output *output) + return; + } + ++ output->scene_output = NULL; ++ + wlr_log(WLR_DEBUG, "Disabling output %s", wlr_output->name); + wlr_output_enable(wlr_output, false); + wlr_output_layout_remove(output->server->output_layout, wlr_output); +@@ -268,93 +78,19 @@ output_disable(struct cg_output *output) + } + + static void +-damage_surface_iterator(struct cg_output *output, struct wlr_surface *surface, struct wlr_box *box, void *user_data) ++handle_output_frame(struct wl_listener *listener, void *data) + { +- struct wlr_output *wlr_output = output->wlr_output; +- bool whole = *(bool *) user_data; +- +- scale_box(box, output->wlr_output->scale); +- +- if (whole) { +- wlr_output_damage_add_box(output->damage, box); +- } else if (pixman_region32_not_empty(&surface->buffer_damage)) { +- pixman_region32_t damage; +- pixman_region32_init(&damage); +- wlr_surface_get_effective_damage(surface, &damage); +- +- wlr_region_scale(&damage, &damage, wlr_output->scale); +- if (ceil(wlr_output->scale) > surface->current.scale) { +- /* When scaling up a surface it'll become +- blurry, so we need to expand the damage +- region. */ +- wlr_region_expand(&damage, &damage, ceil(wlr_output->scale) - surface->current.scale); +- } +- pixman_region32_translate(&damage, box->x, box->y); +- wlr_output_damage_add(output->damage, &damage); +- pixman_region32_fini(&damage); +- } +-} ++ struct cg_output *output = wl_container_of(listener, output, frame); + +-void +-output_damage_surface(struct cg_output *output, struct wlr_surface *surface, double lx, double ly, bool whole) +-{ + if (!output->wlr_output->enabled) { +- wlr_log(WLR_DEBUG, "Not adding damage for disabled output %s", output->wlr_output->name); + return; + } + +- double ox = lx, oy = ly; +- wlr_output_layout_output_coords(output->server->output_layout, output->wlr_output, &ox, &oy); +- output_surface_for_each_surface(output, surface, ox, oy, damage_surface_iterator, &whole); +-} ++ wlr_scene_output_commit(output->scene_output); + +-static void +-handle_output_damage_frame(struct wl_listener *listener, void *data) +-{ +- struct cg_output *output = wl_container_of(listener, output, damage_frame); +- struct send_frame_done_data frame_data = {0}; +- +- if (!output->wlr_output->enabled) { +- return; +- } +- +- /* Check if we can scan-out the primary view. */ +- static bool last_scanned_out = false; +- bool scanned_out = scan_out_primary_view(output); +- +- if (scanned_out && !last_scanned_out) { +- wlr_log(WLR_DEBUG, "Scanning out primary view"); +- } +- if (last_scanned_out && !scanned_out) { +- wlr_log(WLR_DEBUG, "Stopping primary view scan out"); +- } +- last_scanned_out = scanned_out; +- +- if (scanned_out) { +- goto frame_done; +- } +- +- bool needs_frame; +- pixman_region32_t damage; +- pixman_region32_init(&damage); +- if (!wlr_output_damage_attach_render(output->damage, &needs_frame, &damage)) { +- wlr_log(WLR_ERROR, "Cannot make damage output current"); +- goto damage_finish; +- } +- +- if (!needs_frame) { +- wlr_output_rollback(output->wlr_output); +- goto damage_finish; +- } +- +- output_render(output, &damage); +- +-damage_finish: +- pixman_region32_fini(&damage); +- +-frame_done: +- clock_gettime(CLOCK_MONOTONIC, &frame_data.when); +- send_frame_done(output, &frame_data); ++ struct timespec now = {0}; ++ clock_gettime(CLOCK_MONOTONIC, &now); ++ wlr_scene_output_send_frame_done(output->scene_output, &now); + } + + static void +@@ -395,11 +131,12 @@ output_destroy(struct cg_output *output) + { + struct cg_server *server = output->server; + ++ output->wlr_output->data = NULL; ++ + wl_list_remove(&output->destroy.link); + wl_list_remove(&output->commit.link); + wl_list_remove(&output->mode.link); +- wl_list_remove(&output->damage_frame.link); +- wl_list_remove(&output->damage_destroy.link); ++ wl_list_remove(&output->frame.link); + wl_list_remove(&output->link); + + wlr_output_layout_remove(server->output_layout, output->wlr_output); +@@ -421,18 +158,10 @@ output_destroy(struct cg_output *output) + } + } + +-static void +-handle_output_damage_destroy(struct wl_listener *listener, void *data) +-{ +- struct cg_output *output = wl_container_of(listener, output, damage_destroy); +- output_destroy(output); +-} +- + static void + handle_output_destroy(struct wl_listener *listener, void *data) + { + struct cg_output *output = wl_container_of(listener, output, destroy); +- wlr_output_damage_destroy(output->damage); + output_destroy(output); + } + +@@ -442,6 +171,11 @@ handle_new_output(struct wl_listener *listener, void *data) + struct cg_server *server = wl_container_of(listener, server, new_output); + struct wlr_output *wlr_output = data; + ++ if (!wlr_output_init_render(wlr_output, server->allocator, server->renderer)) { ++ wlr_log(WLR_ERROR, "Failed to initialize output rendering"); ++ return; ++ } ++ + struct cg_output *output = calloc(1, sizeof(struct cg_output)); + if (!output) { + wlr_log(WLR_ERROR, "Failed to allocate output"); +@@ -449,8 +183,9 @@ handle_new_output(struct wl_listener *listener, void *data) + } + + output->wlr_output = wlr_output; ++ wlr_output->data = output; + output->server = server; +- output->damage = wlr_output_damage_create(wlr_output); ++ + wl_list_insert(&server->outputs, &output->link); + + output->commit.notify = handle_output_commit; +@@ -459,15 +194,29 @@ handle_new_output(struct wl_listener *listener, void *data) + wl_signal_add(&wlr_output->events.mode, &output->mode); + output->destroy.notify = handle_output_destroy; + wl_signal_add(&wlr_output->events.destroy, &output->destroy); +- output->damage_frame.notify = handle_output_damage_frame; +- wl_signal_add(&output->damage->events.frame, &output->damage_frame); +- output->damage_destroy.notify = handle_output_damage_destroy; +- wl_signal_add(&output->damage->events.destroy, &output->damage_destroy); +- +- struct wlr_output_mode *preferred_mode = wlr_output_preferred_mode(wlr_output); +- if (preferred_mode) { +- wlr_output_set_mode(wlr_output, preferred_mode); ++ output->frame.notify = handle_output_frame; ++ wl_signal_add(&wlr_output->events.frame, &output->frame); ++ ++ if (!wl_list_empty(&wlr_output->modes)) { ++ struct wlr_output_mode *preferred_mode = wlr_output_preferred_mode(wlr_output); ++ if (preferred_mode) { ++ wlr_output_set_mode(wlr_output, preferred_mode); ++ } ++ if (!wlr_output_test(wlr_output)) { ++ struct wlr_output_mode *mode; ++ wl_list_for_each (mode, &wlr_output->modes, link) { ++ if (mode == preferred_mode) { ++ continue; ++ } ++ ++ wlr_output_set_mode(wlr_output, mode); ++ if (wlr_output_test(wlr_output)) { ++ break; ++ } ++ } ++ } + } ++ + wlr_output_set_transform(wlr_output, output->server->output_transform); + + if (server->output_mode == CAGE_MULTI_OUTPUT_MODE_LAST) { +diff --git a/output.h b/output.h +index b3fd3b4..ced06f6 100644 +--- a/output.h ++++ b/output.h +@@ -11,28 +11,17 @@ + struct cg_output { + struct cg_server *server; + struct wlr_output *wlr_output; +- struct wlr_output_damage *damage; ++ struct wlr_scene_output *scene_output; + + struct wl_listener commit; + struct wl_listener mode; + struct wl_listener destroy; +- struct wl_listener damage_frame; +- struct wl_listener damage_destroy; ++ struct wl_listener frame; + + struct wl_list link; // cg_server::outputs + }; + +-typedef void (*cg_surface_iterator_func_t)(struct cg_output *output, struct wlr_surface *surface, struct wlr_box *box, +- void *user_data); +- + void handle_new_output(struct wl_listener *listener, void *data); +-void output_surface_for_each_surface(struct cg_output *output, struct wlr_surface *surface, double ox, double oy, +- cg_surface_iterator_func_t iterator, void *user_data); +-void output_view_for_each_popup_surface(struct cg_output *output, struct cg_view *view, +- cg_surface_iterator_func_t iterator, void *user_data); +-void output_drag_icons_for_each_surface(struct cg_output *output, struct wl_list *drag_icons, +- cg_surface_iterator_func_t iterator, void *user_data); +-void output_damage_surface(struct cg_output *output, struct wlr_surface *surface, double lx, double ly, bool whole); + void output_set_window_title(struct cg_output *output, const char *title); + + #endif +diff --git a/render.c b/render.c +deleted file mode 100644 +index 166a088..0000000 +--- a/render.c ++++ /dev/null +@@ -1,205 +0,0 @@ +-/* +- * Cage: A Wayland kiosk. +- * +- * Copyright (C) 2018-2020 Jente Hidskes +- * Copyright (C) 2019 The Sway authors +- * +- * See the LICENSE file accompanying this file. +- */ +- +-#include +-#include +-#include +-#include +-#include +-#include +-#include +-#include +-#include +-#include +- +-#include "output.h" +-#include "seat.h" +-#include "server.h" +-#include "util.h" +-#include "view.h" +- +-static void +-scissor_output(struct wlr_output *output, pixman_box32_t *rect) +-{ +- struct wlr_renderer *renderer = wlr_backend_get_renderer(output->backend); +- +- struct wlr_box box = { +- .x = rect->x1, +- .y = rect->y1, +- .width = rect->x2 - rect->x1, +- .height = rect->y2 - rect->y1, +- }; +- +- int output_width, output_height; +- wlr_output_transformed_resolution(output, &output_width, &output_height); +- enum wl_output_transform transform = wlr_output_transform_invert(output->transform); +- wlr_box_transform(&box, &box, transform, output_width, output_height); +- +- wlr_renderer_scissor(renderer, &box); +-} +- +-struct render_data { +- pixman_region32_t *damage; +-}; +- +-static void +-render_texture(struct wlr_output *wlr_output, pixman_region32_t *output_damage, struct wlr_texture *texture, +- const struct wlr_box *box, const float matrix[static 9]) +-{ +- struct wlr_renderer *renderer = wlr_backend_get_renderer(wlr_output->backend); +- +- pixman_region32_t damage; +- pixman_region32_init(&damage); +- pixman_region32_union_rect(&damage, &damage, box->x, box->y, box->width, box->height); +- pixman_region32_intersect(&damage, &damage, output_damage); +- if (!pixman_region32_not_empty(&damage)) { +- goto damage_finish; +- } +- +- int nrects; +- pixman_box32_t *rects = pixman_region32_rectangles(&damage, &nrects); +- for (int i = 0; i < nrects; i++) { +- scissor_output(wlr_output, &rects[i]); +- wlr_render_texture_with_matrix(renderer, texture, matrix, 1.0f); +- } +- +-damage_finish: +- pixman_region32_fini(&damage); +-} +- +-static void +-render_surface_iterator(struct cg_output *output, struct wlr_surface *surface, struct wlr_box *box, void *user_data) +-{ +- struct render_data *data = user_data; +- struct wlr_output *wlr_output = output->wlr_output; +- pixman_region32_t *output_damage = data->damage; +- +- struct wlr_texture *texture = wlr_surface_get_texture(surface); +- if (!texture) { +- wlr_log(WLR_DEBUG, "Cannot obtain surface texture"); +- return; +- } +- +- scale_box(box, wlr_output->scale); +- +- float matrix[9]; +- enum wl_output_transform transform = wlr_output_transform_invert(surface->current.transform); +- wlr_matrix_project_box(matrix, box, transform, 0.0f, wlr_output->transform_matrix); +- +- render_texture(wlr_output, output_damage, texture, box, matrix); +-} +- +-static void +-render_drag_icons(struct cg_output *output, pixman_region32_t *damage, struct wl_list *drag_icons) +-{ +- struct render_data data = { +- .damage = damage, +- }; +- output_drag_icons_for_each_surface(output, drag_icons, render_surface_iterator, &data); +-} +- +-/** +- * Render all toplevels without descending into popups. +- */ +-static void +-render_view_toplevels(struct cg_view *view, struct cg_output *output, pixman_region32_t *damage) +-{ +- struct render_data data = { +- .damage = damage, +- }; +- double ox = view->lx; +- double oy = view->ly; +- wlr_output_layout_output_coords(output->server->output_layout, output->wlr_output, &ox, &oy); +- output_surface_for_each_surface(output, view->wlr_surface, ox, oy, render_surface_iterator, &data); +-} +- +-static void +-render_view_popups(struct cg_view *view, struct cg_output *output, pixman_region32_t *damage) +-{ +- struct render_data data = { +- .damage = damage, +- }; +- output_view_for_each_popup_surface(output, view, render_surface_iterator, &data); +-} +- +-void +-output_render(struct cg_output *output, pixman_region32_t *damage) +-{ +- struct cg_server *server = output->server; +- struct wlr_output *wlr_output = output->wlr_output; +- +- struct wlr_renderer *renderer = wlr_backend_get_renderer(wlr_output->backend); +- if (!renderer) { +- wlr_log(WLR_DEBUG, "Expected the output backend to have a renderer"); +- return; +- } +- +- wlr_renderer_begin(renderer, wlr_output->width, wlr_output->height); +- +- if (!pixman_region32_not_empty(damage)) { +- wlr_log(WLR_DEBUG, "Output isn't damaged but needs a buffer swap"); +- goto renderer_end; +- } +- +-#ifdef DEBUG +- if (server->debug_damage_tracking) { +- wlr_renderer_clear(renderer, (float[]){1.0f, 0.0f, 0.0f, 1.0f}); +- } +-#endif +- +- float color[4] = {0.0f, 0.0f, 0.0f, 1.0f}; +- int nrects; +- pixman_box32_t *rects = pixman_region32_rectangles(damage, &nrects); +- for (int i = 0; i < nrects; i++) { +- scissor_output(wlr_output, &rects[i]); +- wlr_renderer_clear(renderer, color); +- } +- +- // TODO: render only top view, possibly use focused view for this, see #35. +- struct cg_view *view; +- wl_list_for_each_reverse (view, &server->views, link) { +- render_view_toplevels(view, output, damage); +- } +- +- struct cg_view *focused_view = seat_get_focus(server->seat); +- if (focused_view) { +- render_view_popups(focused_view, output, damage); +- } +- +- render_drag_icons(output, damage, &server->seat->drag_icons); +- +-renderer_end: +- /* Draw software cursor in case hardware cursors aren't +- available. This is a no-op when they are. */ +- wlr_output_render_software_cursors(wlr_output, damage); +- wlr_renderer_scissor(renderer, NULL); +- wlr_renderer_end(renderer); +- +- int output_width, output_height; +- wlr_output_transformed_resolution(wlr_output, &output_width, &output_height); +- +- pixman_region32_t frame_damage; +- pixman_region32_init(&frame_damage); +- +- enum wl_output_transform transform = wlr_output_transform_invert(wlr_output->transform); +- wlr_region_transform(&frame_damage, &output->damage->current, transform, output_width, output_height); +- +-#ifdef DEBUG +- if (server->debug_damage_tracking) { +- pixman_region32_union_rect(&frame_damage, &frame_damage, 0, 0, output_width, output_height); +- } +-#endif +- +- wlr_output_set_damage(wlr_output, &frame_damage); +- pixman_region32_fini(&frame_damage); +- +- if (!wlr_output_commit(wlr_output)) { +- wlr_log(WLR_ERROR, "Could not commit output"); +- } +-} +diff --git a/render.h b/render.h +deleted file mode 100644 +index 085b00b..0000000 +--- a/render.h ++++ /dev/null +@@ -1,8 +0,0 @@ +-#ifndef CG_RENDER_H +-#define CG_RENDER_H +- +-#include "output.h" +- +-void output_render(struct cg_output *output, pixman_region32_t *damage); +- +-#endif +diff --git a/seat.c b/seat.c +index 08f25a3..4dce511 100644 +--- a/seat.c ++++ b/seat.c +@@ -8,6 +8,7 @@ + + #include "config.h" + ++#include + #include + #include + #include +@@ -18,6 +19,7 @@ + #include + #include + #include ++#include + #include + #include + #include +@@ -41,42 +43,31 @@ static void drag_icon_update_position(struct cg_drag_icon *drag_icon); + * menus or tooltips. This function tests if any of those are underneath the + * coordinates lx and ly (in output Layout Coordinates). If so, it sets the + * surface pointer to that wlr_surface and the sx and sy coordinates to the +- * coordinates relative to that surface's top-left corner. */ +-static bool +-view_at(struct cg_view *view, double lx, double ly, struct wlr_surface **surface, double *sx, double *sy) +-{ +- double view_sx = lx - view->lx; +- double view_sy = ly - view->ly; +- +- double _sx, _sy; +- struct wlr_surface *_surface = view_wlr_surface_at(view, view_sx, view_sy, &_sx, &_sy); +- if (_surface != NULL) { +- *sx = _sx; +- *sy = _sy; +- *surface = _surface; +- return true; +- } +- +- return false; +-} +- +-/* This iterates over all of our surfaces and attempts to find one +- * under the cursor. This relies on server->views being ordered from +- * top-to-bottom. If desktop_view_at returns a view, there is also a +- * surface. There cannot be a surface without a view, either. It's +- * both or nothing. */ ++ * coordinates relative to that surface's top-left corner. ++ * ++ * This function iterates over all of our surfaces and attempts to find one ++ * under the cursor. If desktop_view_at returns a view, there is also a ++ * surface. There cannot be a surface without a view, either. It's both or ++ * nothing. ++ */ + static struct cg_view * + desktop_view_at(struct cg_server *server, double lx, double ly, struct wlr_surface **surface, double *sx, double *sy) + { +- struct cg_view *view; ++ struct wlr_scene_node *node = wlr_scene_node_at(&server->scene->node, lx, ly, sx, sy); ++ if (node == NULL || node->type != WLR_SCENE_NODE_SURFACE) { ++ return NULL; ++ } + +- wl_list_for_each (view, &server->views, link) { +- if (view_at(view, lx, ly, surface, sx, sy)) { +- return view; +- } ++ *surface = wlr_scene_surface_from_node(node)->surface; ++ ++ /* Walk up the tree until we find a node with a data pointer. When done, ++ * we've found the node representing the view. */ ++ while (node != NULL && node->data == NULL) { ++ node = node->parent; + } ++ assert(node != NULL); + +- return NULL; ++ return node->data; + } + + static void +@@ -351,17 +342,11 @@ handle_new_keyboard(struct cg_seat *seat, struct wlr_input_device *device) + { + struct xkb_context *context = xkb_context_new(XKB_CONTEXT_NO_FLAGS); + if (!context) { +- wlr_log(WLR_ERROR, "Unable to create XBK context"); ++ wlr_log(WLR_ERROR, "Unable to create XKB context"); + return; + } + +- struct xkb_rule_names rules = {0}; +- rules.rules = getenv("XKB_DEFAULT_RULES"); +- rules.model = getenv("XKB_DEFAULT_MODEL"); +- rules.layout = getenv("XKB_DEFAULT_LAYOUT"); +- rules.variant = getenv("XKB_DEFAULT_VARIANT"); +- rules.options = getenv("XKB_DEFAULT_OPTIONS"); +- struct xkb_keymap *keymap = xkb_map_new_from_names(context, &rules, XKB_KEYMAP_COMPILE_NO_FLAGS); ++ struct xkb_keymap *keymap = xkb_keymap_new_from_names(context, NULL, XKB_KEYMAP_COMPILE_NO_FLAGS); + if (!keymap) { + wlr_log(WLR_ERROR, "Unable to configure keyboard: keymap does not exist"); + xkb_context_unref(context); +@@ -569,10 +554,7 @@ process_cursor_motion(struct cg_seat *seat, uint32_t time) + } else { + wlr_seat_pointer_notify_enter(wlr_seat, surface, sx, sy); + +- bool focus_changed = wlr_seat->pointer_state.focused_surface != surface; +- if (!focus_changed && time > 0) { +- wlr_seat_pointer_notify_motion(wlr_seat, time, sx, sy); +- } ++ wlr_seat_pointer_notify_motion(wlr_seat, time, sx, sy); + } + + struct cg_drag_icon *drag_icon; +@@ -605,15 +587,6 @@ handle_cursor_motion(struct wl_listener *listener, void *data) + wlr_idle_notify_activity(seat->server->idle, seat->seat); + } + +-static void +-drag_icon_damage(struct cg_drag_icon *drag_icon) +-{ +- struct cg_output *output; +- wl_list_for_each (output, &drag_icon->seat->server->outputs, link) { +- output_damage_surface(output, drag_icon->wlr_drag_icon->surface, drag_icon->lx, drag_icon->ly, true); +- } +-} +- + static void + drag_icon_update_position(struct cg_drag_icon *drag_icon) + { +@@ -621,8 +594,6 @@ drag_icon_update_position(struct cg_drag_icon *drag_icon) + struct cg_seat *seat = drag_icon->seat; + struct wlr_touch_point *point; + +- drag_icon_damage(drag_icon); +- + switch (wlr_icon->drag->grab_type) { + case WLR_DRAG_GRAB_KEYBOARD: + return; +@@ -640,7 +611,7 @@ drag_icon_update_position(struct cg_drag_icon *drag_icon) + break; + } + +- drag_icon_damage(drag_icon); ++ wlr_scene_node_set_position(drag_icon->scene_node, drag_icon->lx, drag_icon->ly); + } + + static void +@@ -650,6 +621,7 @@ handle_drag_icon_destroy(struct wl_listener *listener, void *data) + + wl_list_remove(&drag_icon->link); + wl_list_remove(&drag_icon->destroy.link); ++ wlr_scene_node_destroy(drag_icon->scene_node); + free(drag_icon); + } + +@@ -692,6 +664,11 @@ handle_start_drag(struct wl_listener *listener, void *data) + } + drag_icon->seat = seat; + drag_icon->wlr_drag_icon = wlr_drag_icon; ++ drag_icon->scene_node = wlr_scene_subsurface_tree_create(&seat->server->scene->node, wlr_drag_icon->surface); ++ if (!drag_icon->scene_node) { ++ free(drag_icon); ++ return; ++ } + + drag_icon->destroy.notify = handle_drag_icon_destroy; + wl_signal_add(&wlr_drag_icon->events.destroy, &drag_icon->destroy); +@@ -840,7 +817,10 @@ struct cg_view * + seat_get_focus(struct cg_seat *seat) + { + struct wlr_surface *prev_surface = seat->seat->keyboard_state.focused_surface; +- return view_from_wlr_surface(seat->server, prev_surface); ++ if (!prev_surface) { ++ return NULL; ++ } ++ return view_from_wlr_surface(prev_surface); + } + + void +diff --git a/seat.h b/seat.h +index 188543d..5fb2db3 100644 +--- a/seat.h ++++ b/seat.h +@@ -77,6 +77,7 @@ struct cg_drag_icon { + struct wl_list link; // seat::drag_icons + struct cg_seat *seat; + struct wlr_drag_icon *wlr_drag_icon; ++ struct wlr_scene_node *scene_node; + + /* The drag icon has a position in layout coordinates. */ + double lx, ly; +diff --git a/server.h b/server.h +index 817637b..bb7f3c1 100644 +--- a/server.h ++++ b/server.h +@@ -25,6 +25,8 @@ struct cg_server { + struct wl_display *wl_display; + struct wl_list views; + struct wlr_backend *backend; ++ struct wlr_renderer *renderer; ++ struct wlr_allocator *allocator; + + struct cg_seat *seat; + struct wlr_idle *idle; +@@ -34,6 +36,7 @@ struct cg_server { + + enum cg_multi_output_mode output_mode; + struct wlr_output_layout *output_layout; ++ struct wlr_scene *scene; + /* Includes disabled outputs; depending on the output_mode + * some outputs may be disabled. */ + struct wl_list outputs; // cg_output::link +@@ -48,9 +51,6 @@ struct cg_server { + bool xdg_decoration; + bool allow_vt_switch; + enum wl_output_transform output_transform; +-#ifdef DEBUG +- bool debug_damage_tracking; +-#endif + }; + + #endif +diff --git a/util.c b/util.c +deleted file mode 100644 +index 95de499..0000000 +--- a/util.c ++++ /dev/null +@@ -1,36 +0,0 @@ +-/* +- * Cage: A Wayland kiosk. +- * +- * Copyright (C) 2019 The Sway authors +- * +- * See the LICENSE file accompanying this file. +- */ +- +-#include +- +-#include "util.h" +- +-int +-scale_length(int length, int offset, float scale) +-{ +- /** +- * One does not simply multiply the width by the scale. We allow fractional +- * scaling, which means the resulting scaled width might be a decimal. +- * So we round it. +- * +- * But even this can produce undesirable results depending on the X or Y +- * offset of the box. For example, with a scale of 1.5, a box with +- * width=1 should not scale to 2px if its X coordinate is 1, because the +- * X coordinate would have scaled to 2px. +- */ +- return round((offset + length) * scale) - round(offset * scale); +-} +- +-void +-scale_box(struct wlr_box *box, float scale) +-{ +- box->width = scale_length(box->width, box->x, scale); +- box->height = scale_length(box->height, box->y, scale); +- box->x = round(box->x * scale); +- box->y = round(box->y * scale); +-} +diff --git a/util.h b/util.h +deleted file mode 100644 +index db6bc7d..0000000 +--- a/util.h ++++ /dev/null +@@ -1,11 +0,0 @@ +-#ifndef CG_UTIL_H +-#define CG_UTIL_H +- +-#include +- +-/** Apply scale to a width or height. */ +-int scale_length(int length, int offset, float scale); +- +-void scale_box(struct wlr_box *box, float scale); +- +-#endif +diff --git a/view.c b/view.c +index 3f3b0ed..6551142 100644 +--- a/view.c ++++ b/view.c +@@ -1,19 +1,20 @@ + /* + * Cage: A Wayland kiosk. + * +- * Copyright (C) 2018-2020 Jente Hidskes ++ * Copyright (C) 2018-2021 Jente Hidskes + * + * See the LICENSE file accompanying this file. + */ + + #define _POSIX_C_SOURCE 200809L + ++#include + #include + #include + #include + #include +-#include + #include ++#include + #include + + #include "output.h" +@@ -24,96 +25,6 @@ + #include "xwayland.h" + #endif + +-static void +-view_child_handle_commit(struct wl_listener *listener, void *data) +-{ +- struct cg_view_child *child = wl_container_of(listener, child, commit); +- view_damage_part(child->view); +-} +- +-static void subsurface_create(struct cg_view *view, struct wlr_subsurface *wlr_subsurface); +- +-static void +-view_child_handle_new_subsurface(struct wl_listener *listener, void *data) +-{ +- struct cg_view_child *child = wl_container_of(listener, child, new_subsurface); +- struct wlr_subsurface *wlr_subsurface = data; +- subsurface_create(child->view, wlr_subsurface); +-} +- +-void +-view_child_finish(struct cg_view_child *child) +-{ +- if (!child) { +- return; +- } +- +- view_damage_whole(child->view); +- +- wl_list_remove(&child->link); +- wl_list_remove(&child->commit.link); +- wl_list_remove(&child->new_subsurface.link); +-} +- +-void +-view_child_init(struct cg_view_child *child, struct cg_view *view, struct wlr_surface *wlr_surface) +-{ +- child->view = view; +- child->wlr_surface = wlr_surface; +- +- child->commit.notify = view_child_handle_commit; +- wl_signal_add(&wlr_surface->events.commit, &child->commit); +- child->new_subsurface.notify = view_child_handle_new_subsurface; +- wl_signal_add(&wlr_surface->events.new_subsurface, &child->new_subsurface); +- +- wl_list_insert(&view->children, &child->link); +-} +- +-static void +-subsurface_destroy(struct cg_view_child *child) +-{ +- if (!child) { +- return; +- } +- +- struct cg_subsurface *subsurface = (struct cg_subsurface *) child; +- wl_list_remove(&subsurface->destroy.link); +- view_child_finish(&subsurface->view_child); +- free(subsurface); +-} +- +-static void +-subsurface_handle_destroy(struct wl_listener *listener, void *data) +-{ +- struct cg_subsurface *subsurface = wl_container_of(listener, subsurface, destroy); +- struct cg_view_child *view_child = (struct cg_view_child *) subsurface; +- subsurface_destroy(view_child); +-} +- +-static void +-subsurface_create(struct cg_view *view, struct wlr_subsurface *wlr_subsurface) +-{ +- struct cg_subsurface *subsurface = calloc(1, sizeof(struct cg_subsurface)); +- if (!subsurface) { +- return; +- } +- +- view_child_init(&subsurface->view_child, view, wlr_subsurface->surface); +- subsurface->view_child.destroy = subsurface_destroy; +- subsurface->wlr_subsurface = wlr_subsurface; +- +- subsurface->destroy.notify = subsurface_handle_destroy; +- wl_signal_add(&wlr_subsurface->events.destroy, &subsurface->destroy); +-} +- +-static void +-handle_new_subsurface(struct wl_listener *listener, void *data) +-{ +- struct cg_view *view = wl_container_of(listener, view, new_subsurface); +- struct wlr_subsurface *wlr_subsurface = data; +- subsurface_create(view, wlr_subsurface); +-} +- + char * + view_get_title(struct cg_view *view) + { +@@ -136,24 +47,6 @@ view_is_transient_for(struct cg_view *child, struct cg_view *parent) + return child->impl->is_transient_for(child, parent); + } + +-void +-view_damage_part(struct cg_view *view) +-{ +- struct cg_output *output; +- wl_list_for_each (output, &view->server->outputs, link) { +- output_damage_surface(output, view->wlr_surface, view->lx, view->ly, false); +- } +-} +- +-void +-view_damage_whole(struct cg_view *view) +-{ +- struct cg_output *output; +- wl_list_for_each (output, &view->server->outputs, link) { +- output_damage_surface(output, view->wlr_surface, view->lx, view->ly, true); +- } +-} +- + void + view_activate(struct cg_view *view, bool activate) + { +@@ -174,6 +67,9 @@ view_maximize(struct cg_view *view, struct wlr_box *layout_box) + { + view->lx = layout_box->x; + view->ly = layout_box->y; ++ ++ wlr_scene_node_set_position(view->scene_node, view->lx, view->ly); ++ + view->impl->maximize(view, layout_box->width, layout_box->height); + } + +@@ -185,6 +81,8 @@ view_center(struct cg_view *view, struct wlr_box *layout_box) + + view->lx = (layout_box->width - width) / 2; + view->ly = (layout_box->height - height) / 2; ++ ++ wlr_scene_node_set_position(view->scene_node, view->lx, view->ly); + } + + void +@@ -199,51 +97,29 @@ view_position(struct cg_view *view) + } + } + +-void +-view_for_each_surface(struct cg_view *view, wlr_surface_iterator_func_t iterator, void *data) +-{ +- view->impl->for_each_surface(view, iterator, data); +-} +- +-void +-view_for_each_popup_surface(struct cg_view *view, wlr_surface_iterator_func_t iterator, void *data) +-{ +- if (!view->impl->for_each_popup_surface) { +- return; +- } +- view->impl->for_each_popup_surface(view, iterator, data); +-} +- + void + view_unmap(struct cg_view *view) + { + wl_list_remove(&view->link); + +- wl_list_remove(&view->new_subsurface.link); +- +- struct cg_view_child *child, *tmp; +- wl_list_for_each_safe (child, tmp, &view->children, link) { +- child->destroy(child); +- } ++ wlr_scene_node_destroy(view->scene_node); + ++ view->wlr_surface->data = NULL; + view->wlr_surface = NULL; + } + + void + view_map(struct cg_view *view, struct wlr_surface *surface) + { +- view->wlr_surface = surface; +- +- struct wlr_subsurface *subsurface; +- wl_list_for_each (subsurface, &view->wlr_surface->subsurfaces_below, parent_link) { +- subsurface_create(view, subsurface); +- } +- wl_list_for_each (subsurface, &view->wlr_surface->subsurfaces_above, parent_link) { +- subsurface_create(view, subsurface); ++ view->scene_node = wlr_scene_subsurface_tree_create(&view->server->scene->node, surface); ++ if (!view->scene_node) { ++ wl_resource_post_no_memory(surface->resource); ++ return; + } ++ view->scene_node->data = view; + +- view->new_subsurface.notify = handle_new_subsurface; +- wl_signal_add(&view->wlr_surface->events.new_subsurface, &view->new_subsurface); ++ view->wlr_surface = surface; ++ surface->data = view; + + #if CAGE_HAS_XWAYLAND + /* We shouldn't position override-redirect windows. They set +@@ -283,24 +159,11 @@ view_init(struct cg_view *view, struct cg_server *server, enum cg_view_type type + view->server = server; + view->type = type; + view->impl = impl; +- +- wl_list_init(&view->children); + } + + struct cg_view * +-view_from_wlr_surface(struct cg_server *server, struct wlr_surface *surface) +-{ +- struct cg_view *view; +- wl_list_for_each (view, &server->views, link) { +- if (view->wlr_surface == surface) { +- return view; +- } +- } +- return NULL; +-} +- +-struct wlr_surface * +-view_wlr_surface_at(struct cg_view *view, double sx, double sy, double *sub_x, double *sub_y) ++view_from_wlr_surface(struct wlr_surface *surface) + { +- return view->impl->wlr_surface_at(view, sx, sy, sub_x, sub_y); ++ assert(surface); ++ return surface->data; + } +diff --git a/view.h b/view.h +index cd16e42..677a949 100644 +--- a/view.h ++++ b/view.h +@@ -5,9 +5,9 @@ + + #include + #include +-#include + #include + #include ++#include + #if CAGE_HAS_XWAYLAND + #include + #endif +@@ -24,16 +24,14 @@ enum cg_view_type { + struct cg_view { + struct cg_server *server; + struct wl_list link; // server::views +- struct wl_list children; // cg_view_child::link + struct wlr_surface *wlr_surface; ++ struct wlr_scene_node *scene_node; + + /* The view has a position in layout coordinates. */ + int lx, ly; + + enum cg_view_type type; + const struct cg_view_impl *impl; +- +- struct wl_listener new_subsurface; + }; + + struct cg_view_impl { +@@ -44,47 +42,18 @@ struct cg_view_impl { + void (*activate)(struct cg_view *view, bool activate); + void (*maximize)(struct cg_view *view, int output_width, int output_height); + void (*destroy)(struct cg_view *view); +- void (*for_each_surface)(struct cg_view *view, wlr_surface_iterator_func_t iterator, void *data); +- void (*for_each_popup_surface)(struct cg_view *view, wlr_surface_iterator_func_t iterator, void *data); +- struct wlr_surface *(*wlr_surface_at)(struct cg_view *view, double sx, double sy, double *sub_x, double *sub_y); +-}; +- +-struct cg_view_child { +- struct cg_view *view; +- struct wlr_surface *wlr_surface; +- struct wl_list link; +- +- struct wl_listener commit; +- struct wl_listener new_subsurface; +- +- void (*destroy)(struct cg_view_child *child); +-}; +- +-struct cg_subsurface { +- struct cg_view_child view_child; +- struct wlr_subsurface *wlr_subsurface; +- +- struct wl_listener destroy; + }; + + char *view_get_title(struct cg_view *view); + bool view_is_primary(struct cg_view *view); + bool view_is_transient_for(struct cg_view *child, struct cg_view *parent); +-void view_damage_part(struct cg_view *view); +-void view_damage_whole(struct cg_view *view); + void view_activate(struct cg_view *view, bool activate); + void view_position(struct cg_view *view); +-void view_for_each_surface(struct cg_view *view, wlr_surface_iterator_func_t iterator, void *data); +-void view_for_each_popup_surface(struct cg_view *view, wlr_surface_iterator_func_t iterator, void *data); + void view_unmap(struct cg_view *view); + void view_map(struct cg_view *view, struct wlr_surface *surface); + void view_destroy(struct cg_view *view); + void view_init(struct cg_view *view, struct cg_server *server, enum cg_view_type type, const struct cg_view_impl *impl); + +-struct cg_view *view_from_wlr_surface(struct cg_server *server, struct wlr_surface *surface); +-struct wlr_surface *view_wlr_surface_at(struct cg_view *view, double sx, double sy, double *sub_x, double *sub_y); +- +-void view_child_finish(struct cg_view_child *child); +-void view_child_init(struct cg_view_child *child, struct cg_view *view, struct wlr_surface *wlr_surface); ++struct cg_view *view_from_wlr_surface(struct wlr_surface *surface); + + #endif +diff --git a/xdg_shell.c b/xdg_shell.c +index 2e42347..ede71f4 100644 +--- a/xdg_shell.c ++++ b/xdg_shell.c +@@ -6,10 +6,11 @@ + * See the LICENSE file accompanying this file. + */ + ++#include + #include + #include + #include +-#include ++#include + #include + #include + +@@ -41,60 +42,32 @@ xdg_decoration_handle_request_mode(struct wl_listener *listener, void *data) + wlr_xdg_toplevel_decoration_v1_set_mode(xdg_decoration->wlr_decoration, mode); + } + +-static void +-xdg_popup_destroy(struct cg_view_child *child) +-{ +- if (!child) { +- return; +- } +- +- struct cg_xdg_popup *popup = (struct cg_xdg_popup *) child; +- wl_list_remove(&popup->destroy.link); +- wl_list_remove(&popup->map.link); +- wl_list_remove(&popup->unmap.link); +- wl_list_remove(&popup->new_popup.link); +- view_child_finish(&popup->view_child); +- free(popup); +-} +- +-static void +-handle_xdg_popup_map(struct wl_listener *listener, void *data) ++static struct cg_view * ++popup_get_view(struct wlr_xdg_popup *popup) + { +- struct cg_xdg_popup *popup = wl_container_of(listener, popup, map); +- view_damage_whole(popup->view_child.view); +-} +- +-static void +-handle_xdg_popup_unmap(struct wl_listener *listener, void *data) +-{ +- struct cg_xdg_popup *popup = wl_container_of(listener, popup, unmap); +- view_damage_whole(popup->view_child.view); +-} +- +-static void +-handle_xdg_popup_destroy(struct wl_listener *listener, void *data) +-{ +- struct cg_xdg_popup *popup = wl_container_of(listener, popup, destroy); +- struct cg_view_child *view_child = (struct cg_view_child *) popup; +- xdg_popup_destroy(view_child); +-} +- +-static void xdg_popup_create(struct cg_view *view, struct wlr_xdg_popup *wlr_popup); ++ while (true) { ++ if (popup->parent == NULL || !wlr_surface_is_xdg_surface(popup->parent)) { ++ return NULL; ++ } + +-static void +-popup_handle_new_xdg_popup(struct wl_listener *listener, void *data) +-{ +- struct cg_xdg_popup *popup = wl_container_of(listener, popup, new_popup); +- struct wlr_xdg_popup *wlr_popup = data; +- xdg_popup_create(popup->view_child.view, wlr_popup); ++ struct wlr_xdg_surface *xdg_surface = wlr_xdg_surface_from_wlr_surface(popup->parent); ++ switch (xdg_surface->role) { ++ case WLR_XDG_SURFACE_ROLE_TOPLEVEL: ++ return xdg_surface->data; ++ case WLR_XDG_SURFACE_ROLE_POPUP: ++ popup = xdg_surface->popup; ++ break; ++ case WLR_XDG_SURFACE_ROLE_NONE: ++ return NULL; ++ } ++ } + } + + static void +-popup_unconstrain(struct cg_xdg_popup *popup) ++popup_unconstrain(struct cg_view *view, struct wlr_xdg_popup *popup) + { +- struct cg_view *view = popup->view_child.view; + struct cg_server *server = view->server; +- struct wlr_box *popup_box = &popup->wlr_popup->geometry; ++ struct wlr_box *popup_box = &popup->geometry; + + struct wlr_output_layout *output_layout = server->output_layout; + struct wlr_output *wlr_output = +@@ -108,38 +81,7 @@ popup_unconstrain(struct cg_xdg_popup *popup) + .height = output_box->height, + }; + +- wlr_xdg_popup_unconstrain_from_box(popup->wlr_popup, &output_toplevel_box); +-} +- +-static void +-xdg_popup_create(struct cg_view *view, struct wlr_xdg_popup *wlr_popup) +-{ +- struct cg_xdg_popup *popup = calloc(1, sizeof(struct cg_xdg_popup)); +- if (!popup) { +- return; +- } +- +- popup->wlr_popup = wlr_popup; +- view_child_init(&popup->view_child, view, wlr_popup->base->surface); +- popup->view_child.destroy = xdg_popup_destroy; +- popup->destroy.notify = handle_xdg_popup_destroy; +- wl_signal_add(&wlr_popup->base->events.destroy, &popup->destroy); +- popup->map.notify = handle_xdg_popup_map; +- wl_signal_add(&wlr_popup->base->events.map, &popup->map); +- popup->unmap.notify = handle_xdg_popup_unmap; +- wl_signal_add(&wlr_popup->base->events.unmap, &popup->unmap); +- popup->new_popup.notify = popup_handle_new_xdg_popup; +- wl_signal_add(&wlr_popup->base->events.new_popup, &popup->new_popup); +- +- popup_unconstrain(popup); +-} +- +-static void +-handle_new_xdg_popup(struct wl_listener *listener, void *data) +-{ +- struct cg_xdg_shell_view *xdg_shell_view = wl_container_of(listener, xdg_shell_view, new_popup); +- struct wlr_xdg_popup *wlr_popup = data; +- xdg_popup_create(&xdg_shell_view->view, wlr_popup); ++ wlr_xdg_popup_unconstrain_from_box(popup, &output_toplevel_box); + } + + static struct cg_xdg_shell_view * +@@ -170,9 +112,12 @@ static bool + is_primary(struct cg_view *view) + { + struct cg_xdg_shell_view *xdg_shell_view = xdg_shell_view_from_view(view); +- struct wlr_xdg_surface *parent = xdg_shell_view->xdg_surface->toplevel->parent; +- /* FIXME: role is 0? */ +- return parent == NULL; /*&& role == WLR_XDG_SURFACE_ROLE_TOPLEVEL */ ++ struct wlr_xdg_surface *xdg_surface = xdg_shell_view->xdg_surface; ++ ++ struct wlr_xdg_surface *parent = xdg_surface->toplevel->parent; ++ enum wlr_xdg_surface_role role = xdg_surface->role; ++ ++ return parent == NULL && role == WLR_XDG_SURFACE_ROLE_TOPLEVEL; + } + + static bool +@@ -216,41 +161,20 @@ destroy(struct cg_view *view) + free(xdg_shell_view); + } + +-static void +-for_each_surface(struct cg_view *view, wlr_surface_iterator_func_t iterator, void *data) +-{ +- struct cg_xdg_shell_view *xdg_shell_view = xdg_shell_view_from_view(view); +- wlr_xdg_surface_for_each_surface(xdg_shell_view->xdg_surface, iterator, data); +-} +- +-static void +-for_each_popup_surface(struct cg_view *view, wlr_surface_iterator_func_t iterator, void *data) +-{ +- struct cg_xdg_shell_view *xdg_shell_view = xdg_shell_view_from_view(view); +- wlr_xdg_surface_for_each_popup_surface(xdg_shell_view->xdg_surface, iterator, data); +-} +- +-static struct wlr_surface * +-wlr_surface_at(struct cg_view *view, double sx, double sy, double *sub_x, double *sub_y) +-{ +- struct cg_xdg_shell_view *xdg_shell_view = xdg_shell_view_from_view(view); +- return wlr_xdg_surface_surface_at(xdg_shell_view->xdg_surface, sx, sy, sub_x, sub_y); +-} +- + static void + handle_xdg_shell_surface_request_fullscreen(struct wl_listener *listener, void *data) + { + struct cg_xdg_shell_view *xdg_shell_view = wl_container_of(listener, xdg_shell_view, request_fullscreen); + struct wlr_xdg_toplevel_set_fullscreen_event *event = data; +- wlr_xdg_toplevel_set_fullscreen(xdg_shell_view->xdg_surface, event->fullscreen); +-} + +-static void +-handle_xdg_shell_surface_commit(struct wl_listener *listener, void *data) +-{ +- struct cg_xdg_shell_view *xdg_shell_view = wl_container_of(listener, xdg_shell_view, commit); +- struct cg_view *view = &xdg_shell_view->view; +- view_damage_part(view); ++ /** ++ * Certain clients do not like figuring out their own window geometry if they ++ * display in fullscreen mode, so we set it here. ++ */ ++ struct wlr_box *layout_box = wlr_output_layout_get_box(xdg_shell_view->view.server->output_layout, NULL); ++ wlr_xdg_toplevel_set_size(xdg_shell_view->xdg_surface, layout_box->width, layout_box->height); ++ ++ wlr_xdg_toplevel_set_fullscreen(xdg_shell_view->xdg_surface, event->fullscreen); + } + + static void +@@ -259,10 +183,6 @@ handle_xdg_shell_surface_unmap(struct wl_listener *listener, void *data) + struct cg_xdg_shell_view *xdg_shell_view = wl_container_of(listener, xdg_shell_view, unmap); + struct cg_view *view = &xdg_shell_view->view; + +- view_damage_whole(view); +- +- wl_list_remove(&xdg_shell_view->commit.link); +- + view_unmap(view); + } + +@@ -272,12 +192,7 @@ handle_xdg_shell_surface_map(struct wl_listener *listener, void *data) + struct cg_xdg_shell_view *xdg_shell_view = wl_container_of(listener, xdg_shell_view, map); + struct cg_view *view = &xdg_shell_view->view; + +- xdg_shell_view->commit.notify = handle_xdg_shell_surface_commit; +- wl_signal_add(&xdg_shell_view->xdg_surface->surface->events.commit, &xdg_shell_view->commit); +- + view_map(view, xdg_shell_view->xdg_surface->surface); +- +- view_damage_whole(view); + } + + static void +@@ -290,7 +205,6 @@ handle_xdg_shell_surface_destroy(struct wl_listener *listener, void *data) + wl_list_remove(&xdg_shell_view->unmap.link); + wl_list_remove(&xdg_shell_view->destroy.link); + wl_list_remove(&xdg_shell_view->request_fullscreen.link); +- wl_list_remove(&xdg_shell_view->new_popup.link); + xdg_shell_view->xdg_surface = NULL; + + view_destroy(view); +@@ -304,9 +218,6 @@ static const struct cg_view_impl xdg_shell_view_impl = { + .activate = activate, + .maximize = maximize, + .destroy = destroy, +- .for_each_surface = for_each_surface, +- .for_each_popup_surface = for_each_popup_surface, +- .wlr_surface_at = wlr_surface_at, + }; + + void +@@ -315,29 +226,64 @@ handle_xdg_shell_surface_new(struct wl_listener *listener, void *data) + struct cg_server *server = wl_container_of(listener, server, new_xdg_shell_surface); + struct wlr_xdg_surface *xdg_surface = data; + +- if (xdg_surface->role != WLR_XDG_SURFACE_ROLE_TOPLEVEL) { +- return; +- } ++ switch (xdg_surface->role) { ++ case WLR_XDG_SURFACE_ROLE_TOPLEVEL:; ++ struct cg_xdg_shell_view *xdg_shell_view = calloc(1, sizeof(struct cg_xdg_shell_view)); ++ if (!xdg_shell_view) { ++ wlr_log(WLR_ERROR, "Failed to allocate XDG Shell view"); ++ return; ++ } + +- struct cg_xdg_shell_view *xdg_shell_view = calloc(1, sizeof(struct cg_xdg_shell_view)); +- if (!xdg_shell_view) { +- wlr_log(WLR_ERROR, "Failed to allocate XDG Shell view"); +- return; +- } ++ view_init(&xdg_shell_view->view, server, CAGE_XDG_SHELL_VIEW, &xdg_shell_view_impl); ++ xdg_shell_view->xdg_surface = xdg_surface; ++ ++ xdg_shell_view->map.notify = handle_xdg_shell_surface_map; ++ wl_signal_add(&xdg_surface->events.map, &xdg_shell_view->map); ++ xdg_shell_view->unmap.notify = handle_xdg_shell_surface_unmap; ++ wl_signal_add(&xdg_surface->events.unmap, &xdg_shell_view->unmap); ++ xdg_shell_view->destroy.notify = handle_xdg_shell_surface_destroy; ++ wl_signal_add(&xdg_surface->events.destroy, &xdg_shell_view->destroy); ++ xdg_shell_view->request_fullscreen.notify = handle_xdg_shell_surface_request_fullscreen; ++ wl_signal_add(&xdg_surface->toplevel->events.request_fullscreen, &xdg_shell_view->request_fullscreen); ++ ++ xdg_surface->data = xdg_shell_view; ++ break; ++ case WLR_XDG_SURFACE_ROLE_POPUP:; ++ struct wlr_xdg_popup *popup = xdg_surface->popup; ++ struct cg_view *view = popup_get_view(popup); ++ if (view == NULL) { ++ return; ++ } ++ ++ struct wlr_scene_node *parent_scene_node = NULL; ++ struct wlr_xdg_surface *parent = wlr_xdg_surface_from_wlr_surface(popup->parent); ++ switch (parent->role) { ++ case WLR_XDG_SURFACE_ROLE_TOPLEVEL:; ++ parent_scene_node = view->scene_node; ++ break; ++ case WLR_XDG_SURFACE_ROLE_POPUP: ++ parent_scene_node = parent->data; ++ break; ++ case WLR_XDG_SURFACE_ROLE_NONE: ++ break; ++ } ++ if (parent_scene_node == NULL) { ++ return; ++ } + +- view_init(&xdg_shell_view->view, server, CAGE_XDG_SHELL_VIEW, &xdg_shell_view_impl); +- xdg_shell_view->xdg_surface = xdg_surface; +- +- xdg_shell_view->map.notify = handle_xdg_shell_surface_map; +- wl_signal_add(&xdg_surface->events.map, &xdg_shell_view->map); +- xdg_shell_view->unmap.notify = handle_xdg_shell_surface_unmap; +- wl_signal_add(&xdg_surface->events.unmap, &xdg_shell_view->unmap); +- xdg_shell_view->destroy.notify = handle_xdg_shell_surface_destroy; +- wl_signal_add(&xdg_surface->events.destroy, &xdg_shell_view->destroy); +- xdg_shell_view->request_fullscreen.notify = handle_xdg_shell_surface_request_fullscreen; +- wl_signal_add(&xdg_surface->toplevel->events.request_fullscreen, &xdg_shell_view->request_fullscreen); +- xdg_shell_view->new_popup.notify = handle_new_xdg_popup; +- wl_signal_add(&xdg_surface->events.new_popup, &xdg_shell_view->new_popup); ++ struct wlr_scene_node *popup_scene_node = wlr_scene_xdg_surface_create(parent_scene_node, xdg_surface); ++ if (popup_scene_node == NULL) { ++ wlr_log(WLR_ERROR, "Failed to allocate scene-graph node for XDG popup"); ++ return; ++ } ++ ++ popup_unconstrain(view, popup); ++ ++ xdg_surface->data = popup_scene_node; ++ break; ++ case WLR_XDG_SURFACE_ROLE_NONE: ++ assert(false); // unreachable ++ } + } + + void +diff --git a/xdg_shell.h b/xdg_shell.h +index 45d87db..9a101c6 100644 +--- a/xdg_shell.h ++++ b/xdg_shell.h +@@ -14,19 +14,7 @@ struct cg_xdg_shell_view { + struct wl_listener destroy; + struct wl_listener unmap; + struct wl_listener map; +- struct wl_listener commit; + struct wl_listener request_fullscreen; +- struct wl_listener new_popup; +-}; +- +-struct cg_xdg_popup { +- struct cg_view_child view_child; +- struct wlr_xdg_popup *wlr_popup; +- +- struct wl_listener destroy; +- struct wl_listener map; +- struct wl_listener unmap; +- struct wl_listener new_popup; + }; + + struct cg_xdg_decoration { +diff --git a/xwayland.c b/xwayland.c +index 2aae0f9..ef37a49 100644 +--- a/xwayland.c ++++ b/xwayland.c +@@ -9,7 +9,6 @@ + #include + #include + #include +-#include + #include + #include + +@@ -96,18 +95,6 @@ destroy(struct cg_view *view) + free(xwayland_view); + } + +-static void +-for_each_surface(struct cg_view *view, wlr_surface_iterator_func_t iterator, void *data) +-{ +- wlr_surface_for_each_surface(view->wlr_surface, iterator, data); +-} +- +-static struct wlr_surface * +-wlr_surface_at(struct cg_view *view, double sx, double sy, double *sub_x, double *sub_y) +-{ +- return wlr_surface_surface_at(view->wlr_surface, sx, sy, sub_x, sub_y); +-} +- + static void + handle_xwayland_surface_request_fullscreen(struct wl_listener *listener, void *data) + { +@@ -116,24 +103,12 @@ handle_xwayland_surface_request_fullscreen(struct wl_listener *listener, void *d + wlr_xwayland_surface_set_fullscreen(xwayland_view->xwayland_surface, xwayland_surface->fullscreen); + } + +-static void +-handle_xwayland_surface_commit(struct wl_listener *listener, void *data) +-{ +- struct cg_xwayland_view *xwayland_view = wl_container_of(listener, xwayland_view, commit); +- struct cg_view *view = &xwayland_view->view; +- view_damage_part(view); +-} +- + static void + handle_xwayland_surface_unmap(struct wl_listener *listener, void *data) + { + struct cg_xwayland_view *xwayland_view = wl_container_of(listener, xwayland_view, unmap); + struct cg_view *view = &xwayland_view->view; + +- view_damage_whole(view); +- +- wl_list_remove(&xwayland_view->commit.link); +- + view_unmap(view); + } + +@@ -148,12 +123,7 @@ handle_xwayland_surface_map(struct wl_listener *listener, void *data) + view->ly = xwayland_view->xwayland_surface->y; + } + +- xwayland_view->commit.notify = handle_xwayland_surface_commit; +- wl_signal_add(&xwayland_view->xwayland_surface->surface->events.commit, &xwayland_view->commit); +- + view_map(view, xwayland_view->xwayland_surface->surface); +- +- view_damage_whole(view); + } + + static void +@@ -179,10 +149,6 @@ static const struct cg_view_impl xwayland_view_impl = { + .activate = activate, + .maximize = maximize, + .destroy = destroy, +- .for_each_surface = for_each_surface, +- /* XWayland doesn't have a separate popup iterator. */ +- .for_each_popup_surface = NULL, +- .wlr_surface_at = wlr_surface_at, + }; + + void +diff --git a/xwayland.h b/xwayland.h +index d257f57..31edb8f 100644 +--- a/xwayland.h ++++ b/xwayland.h +@@ -12,7 +12,6 @@ struct cg_xwayland_view { + struct wl_listener destroy; + struct wl_listener unmap; + struct wl_listener map; +- struct wl_listener commit; + struct wl_listener request_fullscreen; + }; + diff --git a/srcpkgs/cage-vi/virtual_input.patch b/srcpkgs/cage-vi/virtual_input.patch new file mode 100644 index 0000000..a34b567 --- /dev/null +++ b/srcpkgs/cage-vi/virtual_input.patch @@ -0,0 +1,218 @@ +From 99956cd5301ad1c19e3a3d07e022c942ca8b312d Mon Sep 17 00:00:00 2001 +From: Dominique Martinet +Date: Tue, 18 May 2021 08:52:06 +0900 +Subject: [PATCH 1/2] seat: add wlr_virtual_keyboard_manager_v1 + +--- + seat.c | 43 ++++++++++++++++++++++++++++++++++++------- + seat.h | 4 ++++ + 2 files changed, 40 insertions(+), 7 deletions(-) + +diff --git a/seat.c b/seat.c +index 08f25a3..d8556f6 100644 +--- a/seat.c ++++ b/seat.c +@@ -21,6 +21,7 @@ + #include + #include + #include ++#include + #include + #include + #if CAGE_HAS_XWAYLAND +@@ -294,10 +295,16 @@ handle_keyboard_group_modifiers(struct wl_listener *listener, void *data) + } + + static void +-cg_keyboard_group_add(struct wlr_input_device *device, struct cg_seat *seat) ++cg_keyboard_group_add(struct wlr_input_device *device, struct cg_seat *seat, bool virtual) + { + struct wlr_keyboard *wlr_keyboard = device->keyboard; + ++ if (virtual) ++ /* We apparently should not group virtual keyboards, ++ * so create a new group with it ++ */ ++ goto create_new; ++ + struct cg_keyboard_group *group; + wl_list_for_each (group, &seat->keyboard_groups, link) { + struct wlr_keyboard_group *wlr_group = group->wlr_group; +@@ -309,7 +316,9 @@ cg_keyboard_group_add(struct wlr_input_device *device, struct cg_seat *seat) + + /* This is reached if and only if the keyboard could not be inserted into + * any group */ +- struct cg_keyboard_group *cg_group = calloc(1, sizeof(struct cg_keyboard_group)); ++ struct cg_keyboard_group *cg_group; ++create_new: ++ cg_group = calloc(1, sizeof(struct cg_keyboard_group)); + if (cg_group == NULL) { + wlr_log(WLR_ERROR, "Failed to allocate keyboard group."); + return; +@@ -322,7 +331,7 @@ cg_keyboard_group_add(struct wlr_input_device *device, struct cg_seat *seat) + } + + cg_group->wlr_group->data = cg_group; +- wlr_keyboard_set_keymap(&cg_group->wlr_group->keyboard, device->keyboard->keymap); ++ wlr_keyboard_set_keymap(&cg_group->wlr_group->keyboard, wlr_keyboard->keymap); + + wlr_keyboard_set_repeat_info(&cg_group->wlr_group->keyboard, wlr_keyboard->repeat_info.rate, + wlr_keyboard->repeat_info.delay); +@@ -330,7 +339,10 @@ cg_keyboard_group_add(struct wlr_input_device *device, struct cg_seat *seat) + wlr_log(WLR_DEBUG, "Created keyboard group"); + + wlr_keyboard_group_add_keyboard(cg_group->wlr_group, wlr_keyboard); +- wl_list_insert(&seat->keyboard_groups, &cg_group->link); ++ if (!virtual) ++ wl_list_insert(&seat->keyboard_groups, &cg_group->link); ++ else ++ wl_list_init(&cg_group->link); + + wl_signal_add(&cg_group->wlr_group->keyboard.events.key, &cg_group->key); + cg_group->key.notify = handle_keyboard_group_key; +@@ -347,7 +359,7 @@ cg_keyboard_group_add(struct wlr_input_device *device, struct cg_seat *seat) + } + + static void +-handle_new_keyboard(struct cg_seat *seat, struct wlr_input_device *device) ++handle_new_keyboard(struct cg_seat *seat, struct wlr_input_device *device, bool virtual) + { + struct xkb_context *context = xkb_context_new(XKB_CONTEXT_NO_FLAGS); + if (!context) { +@@ -374,11 +386,24 @@ handle_new_keyboard(struct cg_seat *seat, struct wlr_input_device *device) + xkb_context_unref(context); + wlr_keyboard_set_repeat_info(device->keyboard, 25, 600); + +- cg_keyboard_group_add(device, seat); ++ cg_keyboard_group_add(device, seat, virtual); + + wlr_seat_set_keyboard(seat->seat, device); + } + ++static void ++handle_virtual_keyboard(struct wl_listener *listener, void *data) ++{ ++ struct cg_seat *seat = wl_container_of(listener, seat, new_virtual_keyboard); ++ struct wlr_virtual_keyboard_v1 *keyboard = data; ++ struct wlr_input_device *device = &keyboard->input_device; ++ ++ /* If multiple seats are supported, check keyboard->seat ++ * to select the appropriate one */ ++ ++ handle_new_keyboard(seat, device, true); ++} ++ + static void + handle_new_input(struct wl_listener *listener, void *data) + { +@@ -387,7 +412,7 @@ handle_new_input(struct wl_listener *listener, void *data) + + switch (device->type) { + case WLR_INPUT_DEVICE_KEYBOARD: +- handle_new_keyboard(seat, device); ++ handle_new_keyboard(seat, device, false); + break; + case WLR_INPUT_DEVICE_POINTER: + handle_new_pointer(seat, device); +@@ -818,6 +843,10 @@ seat_create(struct cg_server *server, struct wlr_backend *backend) + seat->start_drag.notify = handle_start_drag; + wl_signal_add(&seat->seat->events.start_drag, &seat->start_drag); + ++ seat->virtual_keyboard = wlr_virtual_keyboard_manager_v1_create(server->wl_display); ++ wl_signal_add(&seat->virtual_keyboard->events.new_virtual_keyboard, &seat->new_virtual_keyboard); ++ seat->new_virtual_keyboard.notify = handle_virtual_keyboard; ++ + return seat; + } + +diff --git a/seat.h b/seat.h +index 188543d..428801a 100644 +--- a/seat.h ++++ b/seat.h +@@ -25,6 +25,10 @@ struct cg_seat { + struct wl_list touch; + struct wl_listener new_input; + ++ // These belong to higher level if multiple seats are allowed ++ struct wlr_virtual_keyboard_manager_v1 *virtual_keyboard; ++ struct wl_listener new_virtual_keyboard; ++ + struct wlr_cursor *cursor; + struct wlr_xcursor_manager *xcursor_manager; + struct wl_listener cursor_motion; + +From 9d2e1c2131c27fd656f37580689fce92a663dad0 Mon Sep 17 00:00:00 2001 +From: Dominique Martinet +Date: Tue, 18 May 2021 08:52:22 +0900 +Subject: [PATCH 2/2] seat: add wlr_virtual_pointer_manager_v1 + +together with the previous patch, wayvnc can now be used with cage: + $ cage something + # figure out which wayland socket cage used + $ WAYLAND_DISPLAY=wayland-0 wayvnc + +Note this does not appear to work with headless backend, e.g. starting cage with +WLR_BACKENDS=headless WLR_LIBINPUT_NO_DEVICES=1 cage something +does start and wayvnc connects/displays output, but there are tons of errors +and input does not work +--- + seat.c | 17 +++++++++++++++++ + seat.h | 2 ++ + 2 files changed, 19 insertions(+) + +diff --git a/seat.c b/seat.c +index d8556f6..9bf6672 100644 +--- a/seat.c ++++ b/seat.c +@@ -22,6 +22,7 @@ + #include + #include + #include ++#include + #include + #include + #if CAGE_HAS_XWAYLAND +@@ -216,6 +217,18 @@ handle_new_pointer(struct cg_seat *seat, struct wlr_input_device *device) + map_input_device_to_output(seat, device); + } + ++static void ++handle_virtual_pointer(struct wl_listener *listener, void *data) ++{ ++ struct cg_seat *seat = wl_container_of(listener, seat, new_virtual_pointer); ++ struct wlr_virtual_pointer_v1_new_pointer_event *event = data; ++ struct wlr_virtual_pointer_v1 *pointer = event->new_pointer; ++ struct wlr_input_device *device = &pointer->input_device; ++ ++ /* event->suggested_seat should be checked if we handle multiple seats */ ++ handle_new_pointer(seat, device); ++} ++ + static void + handle_modifier_event(struct wlr_input_device *device, struct cg_seat *seat) + { +@@ -847,6 +860,10 @@ seat_create(struct cg_server *server, struct wlr_backend *backend) + wl_signal_add(&seat->virtual_keyboard->events.new_virtual_keyboard, &seat->new_virtual_keyboard); + seat->new_virtual_keyboard.notify = handle_virtual_keyboard; + ++ seat->virtual_pointer = wlr_virtual_pointer_manager_v1_create(server->wl_display); ++ wl_signal_add(&seat->virtual_pointer->events.new_virtual_pointer, &seat->new_virtual_pointer); ++ seat->new_virtual_pointer.notify = handle_virtual_pointer; ++ + return seat; + } + +diff --git a/seat.h b/seat.h +index 428801a..0f6de59 100644 +--- a/seat.h ++++ b/seat.h +@@ -27,7 +27,9 @@ struct cg_seat { + + // These belong to higher level if multiple seats are allowed + struct wlr_virtual_keyboard_manager_v1 *virtual_keyboard; ++ struct wlr_virtual_pointer_manager_v1 *virtual_pointer; + struct wl_listener new_virtual_keyboard; ++ struct wl_listener new_virtual_pointer; + + struct wlr_cursor *cursor; + struct wlr_xcursor_manager *xcursor_manager; From 5f454d6520b5709b8e0cca6de5a9d40ad6b8f323 Mon Sep 17 00:00:00 2001 From: Manuel Date: Fri, 23 Sep 2022 18:47:36 +0200 Subject: [PATCH 331/971] cage-vi: Minimize necessary dependencies --- srcpkgs/cage-vi/PKGBUILD | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/srcpkgs/cage-vi/PKGBUILD b/srcpkgs/cage-vi/PKGBUILD index bda72aa..5daf836 100644 --- a/srcpkgs/cage-vi/PKGBUILD +++ b/srcpkgs/cage-vi/PKGBUILD @@ -7,8 +7,12 @@ pkgdesc='A Wayland kiosk, with virtual input patch applied' arch=('x86_64') url="https://www.hjdskes.nl/projects/${_pkgname}/" license=('MIT') -depends=('wlroots' 'wayland' 'libxkbcommon' 'xorg-xwayland') -makedepends=('meson' 'wayland-protocols') +depends=('glibc' 'wayland') +makedepends=('libxkbcommon' 'meson' 'pixman' 'scdoc' 'wayland-protocols' 'wlroots' 'xorg-xwayland') +optdepends=( + 'polkit: System privilege control. Required if not using seatd service' + 'xorg-xwayland: X11 support' +) source=( "https://github.com/Hjdskes/${_pkgname}/releases/download/v${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'a81ab70.patch' From 65f387ee857719deb8eac44e6d7740a63035d5f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 23 Sep 2022 22:36:18 +0200 Subject: [PATCH 332/971] Initial commit with version 0.12.2 --- .SRCINFO | 28 ++++++++++++++++++++++++++++ PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++ firefox-syncstorage.install | 11 +++++++++++ firefox-syncstorage.service | 24 ++++++++++++++++++++++++ 4 files changed, 99 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD create mode 100644 firefox-syncstorage.install create mode 100644 firefox-syncstorage.service diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..00daeb8 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,28 @@ +pkgbase = firefox-syncstorage + pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server + pkgver = 0.12.2 + pkgrel = 1 + url = https://github.com/mozilla-services/syncstorage-rs + install = firefox-syncstorage.install + arch = i686 + arch = x86_64 + arch = arm + arch = armv6h + arch = armv7h + arch = aarch64 + license = MPL2 + makedepends = rust + makedepends = cmake + makedepends = pkgconf + makedepends = mariadb-libs + depends = openssl + depends = python-fxa + depends = python-tokenlib + optdepends = mysql: for use with a local database server + backup = etc/firefox-syncstorage.toml + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.12.2.tar.gz + source = firefox-syncstorage.service + sha256sums = 625224ef27ca9674428f9e2021d3968e716465dad7961765c65bbcd00f64720e + sha256sums = 609e057cd835ea54b06b32b98e210cd946255f652e7754c9160fd7c94379a83d + +pkgname = firefox-syncstorage diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..65682bc --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,36 @@ +# Maintainer: Manuel Hüsers +# Contributor: jewelux + +# Based off the firefox-syncstorage-git PKGBUILD from jewelux + +pkgname=firefox-syncstorage +_pkgname=syncstorage-rs +pkgver=0.12.2 +pkgrel=1 +pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' +arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') +url="https://github.com/mozilla-services/${_pkgname}" +license=('MPL2') +depends=('openssl' 'python-fxa' 'python-tokenlib') +makedepends=('rust' 'cmake' 'pkgconf' 'mariadb-libs') +optdepends=('mysql: for use with a local database server') +install="${pkgname}.install" +source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}.tar.gz" + "${pkgname}.service") +sha256sums=('625224ef27ca9674428f9e2021d3968e716465dad7961765c65bbcd00f64720e' + '609e057cd835ea54b06b32b98e210cd946255f652e7754c9160fd7c94379a83d') +backup=("etc/${pkgname}.toml") + +build() { + cd "${_pkgname}-${pkgver}" + cargo build --release --features grpcio/openssl +} + +package() { + cd "${_pkgname}-${pkgver}" + + # Installing manually + install -Dm 755 target/release/syncstorage "${pkgdir}"/usr/bin/"${pkgname}" + install -Dm 644 config/local.example.toml "${pkgdir}"/etc/"${pkgname}".toml + install -Dm 644 "${srcdir}/${pkgname}".service "${pkgdir}"/usr/lib/systemd/system/"${pkgname}".service +} diff --git a/firefox-syncstorage.install b/firefox-syncstorage.install new file mode 100644 index 0000000..4475324 --- /dev/null +++ b/firefox-syncstorage.install @@ -0,0 +1,11 @@ +post_install() { + getent group syncstorage &>/dev/null || groupadd -r syncstorage >/dev/null + getent passwd syncstorage &>/dev/null || useradd -r -s /usr/bin/false \ + -g syncstorage -G syncstorage syncstorage >/dev/null +} + +pre_remove() { + getent passwd syncstorage &>/dev/null && userdel syncstorage >/dev/null + getent group syncstorage &>/dev/null && groupdel syncstorage >/dev/null + true +} \ No newline at end of file diff --git a/firefox-syncstorage.service b/firefox-syncstorage.service new file mode 100644 index 0000000..444624a --- /dev/null +++ b/firefox-syncstorage.service @@ -0,0 +1,24 @@ +[Unit] +Description=Actix web server running Mozilla Firefox Sync Storage +Wants=mysql.service +After=network.target mysql.service + +[Service] +ExecStart=/usr/bin/firefox-syncstorage --config=/etc/firefox-syncstorage.toml +Restart=on-abort + +User=syncstorage +Group=syncstorage +UMask=007 + +NoNewPrivileges=yes +ProtectSystem=strict +ProtectHome=true +PrivateTmp=true +PrivateDevices=true +ProtectKernelTunables=true +ProtectKernelModules=true +ProtectControlGroups=true + +[Install] +WantedBy=multi-user.target \ No newline at end of file From f81abdb9205f7556e346cbf581081a0f9e1fe20a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 23 Sep 2022 23:43:40 +0200 Subject: [PATCH 333/971] Update to build 4137 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index a6e6b6f..943854b 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4136 + pkgver = 4.4137 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4136_x64.tar.xz - sha256sums_x86_64 = e9c49a17cb1e4b75e95e9a1a44e3b9b6956ec09cc4fb3d64cf0c4d94e51a763d - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4136_arm64.tar.xz - sha256sums_aarch64 = 32d89bf22dbd14216eb515e658f412a7d87f15c2c3efec2ffad1808f07fd777c + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4137_x64.tar.xz + sha256sums_x86_64 = a0604fa2a5704c841f23387ff1f10e3ab664adbcd3d2d1b6dc049e1db37f38c9 + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4137_arm64.tar.xz + sha256sums_aarch64 = ee6a984a88207eb711a0387e41f038ad6d2abc5d99a62518e7257187164ab1f1 pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index d6b4922..4fb3824 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4136 +pkgver=4.4137 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('e9c49a17cb1e4b75e95e9a1a44e3b9b6956ec09cc4fb3d64cf0c4d94e51a763d') -sha256sums_aarch64=('32d89bf22dbd14216eb515e658f412a7d87f15c2c3efec2ffad1808f07fd777c') +sha256sums_x86_64=('a0604fa2a5704c841f23387ff1f10e3ab664adbcd3d2d1b6dc049e1db37f38c9') +sha256sums_aarch64=('ee6a984a88207eb711a0387e41f038ad6d2abc5d99a62518e7257187164ab1f1') package() { cd "${srcdir}" From 1964c5cea8c76a0a4a0c50eea7a991e12d47ea13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 24 Sep 2022 21:38:02 +0200 Subject: [PATCH 334/971] Version 0.12.3 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 00daeb8..711a5eb 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.12.2 + pkgver = 0.12.3 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -20,9 +20,9 @@ pkgbase = firefox-syncstorage depends = python-tokenlib optdepends = mysql: for use with a local database server backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.12.2.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.12.3.tar.gz source = firefox-syncstorage.service - sha256sums = 625224ef27ca9674428f9e2021d3968e716465dad7961765c65bbcd00f64720e + sha256sums = aa69a5d1419e13ba7fe5f9841010ac4799bd431c2fa2c2327471360a2c6912b4 sha256sums = 609e057cd835ea54b06b32b98e210cd946255f652e7754c9160fd7c94379a83d pkgname = firefox-syncstorage diff --git a/PKGBUILD b/PKGBUILD index 65682bc..0d49751 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.12.2 +pkgver=0.12.3 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -17,7 +17,7 @@ optdepends=('mysql: for use with a local database server') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}.tar.gz" "${pkgname}.service") -sha256sums=('625224ef27ca9674428f9e2021d3968e716465dad7961765c65bbcd00f64720e' +sha256sums=('aa69a5d1419e13ba7fe5f9841010ac4799bd431c2fa2c2327471360a2c6912b4' '609e057cd835ea54b06b32b98e210cd946255f652e7754c9160fd7c94379a83d') backup=("etc/${pkgname}.toml") From a5c019afc5a210a4296a6474257f9b9a9427b31d Mon Sep 17 00:00:00 2001 From: Manuel Date: Sun, 2 Oct 2022 20:35:34 +0200 Subject: [PATCH 335/971] cage-vi: Update required dependencies --- srcpkgs/cage-vi/PKGBUILD | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/srcpkgs/cage-vi/PKGBUILD b/srcpkgs/cage-vi/PKGBUILD index 5daf836..f1f4453 100644 --- a/srcpkgs/cage-vi/PKGBUILD +++ b/srcpkgs/cage-vi/PKGBUILD @@ -7,12 +7,14 @@ pkgdesc='A Wayland kiosk, with virtual input patch applied' arch=('x86_64') url="https://www.hjdskes.nl/projects/${_pkgname}/" license=('MIT') -depends=('glibc' 'wayland') -makedepends=('libxkbcommon' 'meson' 'pixman' 'scdoc' 'wayland-protocols' 'wlroots' 'xorg-xwayland') +depends=('glibc' 'wayland' 'wlroots') +makedepends=('meson' 'pixman' 'scdoc' 'wayland-protocols' 'xorg-xwayland') optdepends=( 'polkit: System privilege control. Required if not using seatd service' 'xorg-xwayland: X11 support' ) +provides=("${_pkgname}") +conflicts=("${_pkgname}") source=( "https://github.com/Hjdskes/${_pkgname}/releases/download/v${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'a81ab70.patch' From 738c7f7c726b198097ec03bb940bd87f45894afe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 12 Oct 2022 20:44:16 +0200 Subject: [PATCH 336/971] Version 0.12.4 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 711a5eb..fbd1daf 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.12.3 + pkgver = 0.12.4 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -20,9 +20,9 @@ pkgbase = firefox-syncstorage depends = python-tokenlib optdepends = mysql: for use with a local database server backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.12.3.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.12.4.tar.gz source = firefox-syncstorage.service - sha256sums = aa69a5d1419e13ba7fe5f9841010ac4799bd431c2fa2c2327471360a2c6912b4 + sha256sums = 05817b02e74fb4f45a10b1b2583bf353616624a1c776cf72c185f9e89189590b sha256sums = 609e057cd835ea54b06b32b98e210cd946255f652e7754c9160fd7c94379a83d pkgname = firefox-syncstorage diff --git a/PKGBUILD b/PKGBUILD index 0d49751..e497a4e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.12.3 +pkgver=0.12.4 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -17,7 +17,7 @@ optdepends=('mysql: for use with a local database server') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}.tar.gz" "${pkgname}.service") -sha256sums=('aa69a5d1419e13ba7fe5f9841010ac4799bd431c2fa2c2327471360a2c6912b4' +sha256sums=('05817b02e74fb4f45a10b1b2583bf353616624a1c776cf72c185f9e89189590b' '609e057cd835ea54b06b32b98e210cd946255f652e7754c9160fd7c94379a83d') backup=("etc/${pkgname}.toml") From b690ed48580bdba6fc41e86c2681b04e2dd43a75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 17 Oct 2022 11:17:09 +0200 Subject: [PATCH 337/971] Update to build 4138 --- .SRCINFO | 10 +++++----- PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 943854b..45ee439 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4137 + pkgver = 4.4138 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4137_x64.tar.xz - sha256sums_x86_64 = a0604fa2a5704c841f23387ff1f10e3ab664adbcd3d2d1b6dc049e1db37f38c9 - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4137_arm64.tar.xz - sha256sums_aarch64 = ee6a984a88207eb711a0387e41f038ad6d2abc5d99a62518e7257187164ab1f1 + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4138_x64.tar.xz + sha256sums_x86_64 = 0c1c5660ed8b39ed7409d13879b87627d03ec29f2782f71e5791ae4bbe1350b7 + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4138_arm64.tar.xz + sha256sums_aarch64 = def23facff20b497631726a8aeb1b3a572c2a8abd9a2179b639f56af74feb581 pkgname = sublime-text-dev diff --git a/PKGBUILD b/PKGBUILD index 4fb3824..7ea7f05 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4137 +pkgver=4.4138 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('a0604fa2a5704c841f23387ff1f10e3ab664adbcd3d2d1b6dc049e1db37f38c9') -sha256sums_aarch64=('ee6a984a88207eb711a0387e41f038ad6d2abc5d99a62518e7257187164ab1f1') +sha256sums_x86_64=('0c1c5660ed8b39ed7409d13879b87627d03ec29f2782f71e5791ae4bbe1350b7') +sha256sums_aarch64=('def23facff20b497631726a8aeb1b3a572c2a8abd9a2179b639f56af74feb581') package() { cd "${srcdir}" From bed59f97349e4f4e4616cf137649aef98f0d147e Mon Sep 17 00:00:00 2001 From: Manuel Date: Mon, 17 Oct 2022 23:52:50 +0200 Subject: [PATCH 338/971] Update README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 949d1ca..5db5647 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,4 @@ These are PKGBUILDs for packages on the Arch User Repository I maintain, used to maintain or do plan on uploading or just keep here for preservation. -I may also use these for an automated build system soon™ that pushes these packages automatically to the AUR and/or to a pacman repo I maintain. +I may also use these for an automated build system soon™ that pushes these packages automatically to a pacman repo I maintain. From 7b27a45468d7701a34fdaac7ab5cf1d705e0e386 Mon Sep 17 00:00:00 2001 From: Manuel Date: Mon, 17 Oct 2022 23:57:26 +0200 Subject: [PATCH 339/971] Update .gitignore --- .gitignore | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 0a29ba8..3c22ce6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,25 @@ +# package src/pkg archives, downloaded sources +*.tar* +*.tgz +*.zip + +# signed sources +*.asc +*.sig + +# log files from makepkg --log (or extra-x86_64-build) +*.log + +# subfolders, e.g. source or built package trees, vcs +*/**/ + +# backup files +*~ +*.bak + +# mkpkg status files, from soyuz.archlinux.org +.mkpkg_check + +# staged packages and build chroot /staged /chroot -.SRCINFO From 4f49445efa44d0d357cd0fc39f9e5a955269bf77 Mon Sep 17 00:00:00 2001 From: Manuel Date: Mon, 17 Oct 2022 23:58:40 +0200 Subject: [PATCH 340/971] Move packages --- cage-vi/.SRCINFO | 27 +++++++++++++++++++ {srcpkgs/cage-vi => cage-vi}/PKGBUILD | 0 {srcpkgs/cage-vi => cage-vi}/a81ab70.patch | 0 .../cage-vi => cage-vi}/virtual_input.patch | 0 4 files changed, 27 insertions(+) create mode 100644 cage-vi/.SRCINFO rename {srcpkgs/cage-vi => cage-vi}/PKGBUILD (100%) rename {srcpkgs/cage-vi => cage-vi}/a81ab70.patch (100%) rename {srcpkgs/cage-vi => cage-vi}/virtual_input.patch (100%) diff --git a/cage-vi/.SRCINFO b/cage-vi/.SRCINFO new file mode 100644 index 0000000..1ae3fb5 --- /dev/null +++ b/cage-vi/.SRCINFO @@ -0,0 +1,27 @@ +pkgbase = cage-vi + pkgdesc = A Wayland kiosk, with virtual input patch applied + pkgver = 0.1.4+39+ga81ab70 + pkgrel = 1 + url = https://www.hjdskes.nl/projects/cage/ + arch = x86_64 + license = MIT + makedepends = meson + makedepends = pixman + makedepends = scdoc + makedepends = wayland-protocols + makedepends = xorg-xwayland + depends = glibc + depends = wayland + depends = wlroots + optdepends = polkit: System privilege control. Required if not using seatd service + optdepends = xorg-xwayland: X11 support + provides = cage + conflicts = cage + source = https://github.com/Hjdskes/cage/releases/download/v0.1.4/cage-0.1.4.tar.gz + source = a81ab70.patch + source = virtual_input.patch + sha256sums = dfe27fb0c7d43db72d6c82f01e2736580a0791a23ba69d7b56285d08af98ad90 + sha256sums = 8580568cc9b68b33de206a841e2110be14de730356c504b66fe366912d0abf76 + sha256sums = 352a3f33c2690a401c90c4de668d38e4cdff53db6c2fc9577a7c607d8a9ec369 + +pkgname = cage-vi diff --git a/srcpkgs/cage-vi/PKGBUILD b/cage-vi/PKGBUILD similarity index 100% rename from srcpkgs/cage-vi/PKGBUILD rename to cage-vi/PKGBUILD diff --git a/srcpkgs/cage-vi/a81ab70.patch b/cage-vi/a81ab70.patch similarity index 100% rename from srcpkgs/cage-vi/a81ab70.patch rename to cage-vi/a81ab70.patch diff --git a/srcpkgs/cage-vi/virtual_input.patch b/cage-vi/virtual_input.patch similarity index 100% rename from srcpkgs/cage-vi/virtual_input.patch rename to cage-vi/virtual_input.patch From 9f7af08ef5bf34f57d27afc236ee80d6b42bbe32 Mon Sep 17 00:00:00 2001 From: Manuel Date: Mon, 17 Oct 2022 23:59:00 +0200 Subject: [PATCH 341/971] Delete discord-electron-bin --- srcpkgs/discord-electron-bin/PKGBUILD | 101 -------------------------- 1 file changed, 101 deletions(-) delete mode 100644 srcpkgs/discord-electron-bin/PKGBUILD diff --git a/srcpkgs/discord-electron-bin/PKGBUILD b/srcpkgs/discord-electron-bin/PKGBUILD deleted file mode 100644 index 245b71e..0000000 --- a/srcpkgs/discord-electron-bin/PKGBUILD +++ /dev/null @@ -1,101 +0,0 @@ -# Maintainer: Manuel Hüsers -# Contributor: Stick -# Contributor: johnnyapol -# Contributor: huyizheng -# Contributor: Filipe Laíns (FFY00) -# Contributor: Morgan - -# Based off the discord_arch_electron_wayland PKGBUILD from Stick -# Based off the discord_arch_electron PKGBUILD from johnnyapol and huyizheng -# Based off the discord community repo PKGBUILD by Filipe Laíns (FFY00) - -pkgname=discord-electron-bin -_pkgname=discord -_electron=13 -pkgver=0.0.20 -pkgrel=1 -pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" -arch=('x86_64') -provides=("${_pkgname}") -conflicts=("${_pkgname}") -url='https://discord.com' -license=('custom') -depends=("electron${_electron}") -makedepends=('asar' 'curl' 'python-html2text') -optdepends=( - 'libpulse: Pulseaudio support' - 'xdg-utils: Open files' -) -source=("https://dl.discordapp.net/apps/linux/${pkgver}/discord-${pkgver}.tar.gz") -sha512sums=('720bc8a8b61cbbe3566c34065f9831571da121d210e3f2876c34cb964d60bab33f8dc16f7ca758e918cd8f35a69699c0b9063782e6c95087c0baa41a6d0e7cf5') - -_tarname='Discord' - -prepare() { - # create launcher script - cat >> "${srcdir}"/discord-launcher.sh <> $_tarname/$_pkgname.desktop - - # create the license files - curl https://discord.com/terms | html2text >"${srcdir}"/LICENSE.md - curl https://discord.com/licenses | html2text >"${srcdir}"/OSS-LICENSES.md - - # use system electron - asar e $_tarname/resources/app.asar $_tarname/resources/app - rm $_tarname/resources/app.asar - sed -i "s|process.resourcesPath|'/usr/lib/${_pkgname}'|" $_tarname/resources/app/app_bootstrap/buildInfo.js - sed -i "s|exeDir,|'/usr/share/pixmaps',|" $_tarname/resources/app/app_bootstrap/autoStart/linux.js - asar p $_tarname/resources/app $_tarname/resources/app.asar --unpack-dir '**' - rm -rf $_tarname/resources/app -} - -package() { - # create necessary directories - install -d "${pkgdir}"/usr/{lib/$_pkgname,bin} - install -d "${pkgdir}"/usr/share/{pixmaps,applications,licenses/$_pkgname} - - # copy relevant data - cp -r $_tarname/resources/* "${pkgdir}"/usr/lib/$_pkgname/ - - # install the binary - install -Dm 755 discord-launcher.sh "${pkgdir}"/usr/bin/$_pkgname - - cp $_tarname/$_pkgname.png \ - "${pkgdir}"/usr/share/pixmaps/$_pkgname.png - cp $_tarname/$_pkgname.desktop \ - "${pkgdir}"/usr/share/applications/$_pkgname.desktop - - # license - install -Dm 644 LICENSE.md "${pkgdir}"/usr/share/licenses/$_pkgname/ - install -Dm 644 OSS-LICENSES.md "${pkgdir}"/usr/share/licenses/$_pkgname/ -} From a74e1ee87c3284f40f9c5ca4026d7ea25e1edc35 Mon Sep 17 00:00:00 2001 From: Manuel Date: Tue, 18 Oct 2022 00:03:21 +0200 Subject: [PATCH 342/971] Move scripts --- scripts/prepare-chroot.sh => prepare-chroot.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename scripts/prepare-chroot.sh => prepare-chroot.sh (100%) diff --git a/scripts/prepare-chroot.sh b/prepare-chroot.sh similarity index 100% rename from scripts/prepare-chroot.sh rename to prepare-chroot.sh From 49383ed2368afe0061b74cfb02794e54e5278942 Mon Sep 17 00:00:00 2001 From: Manuel Date: Tue, 18 Oct 2022 00:03:56 +0200 Subject: [PATCH 343/971] Add License --- UNLICENSE | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 UNLICENSE diff --git a/UNLICENSE b/UNLICENSE new file mode 100644 index 0000000..68a49da --- /dev/null +++ b/UNLICENSE @@ -0,0 +1,24 @@ +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +For more information, please refer to From 595ae192c12f592183094c451b66ee663a190c19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 23 Oct 2022 07:30:02 +0200 Subject: [PATCH 344/971] upgpkg: discord-electron-bin 0.0.21-1 upstream release --- discord-electron-bin/.SRCINFO | 6 +++--- discord-electron-bin/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-bin/.SRCINFO b/discord-electron-bin/.SRCINFO index 67ad87d..bb0b728 100644 --- a/discord-electron-bin/.SRCINFO +++ b/discord-electron-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-bin pkgdesc = Discord using system provided electron (v13) for increased security and performance - pkgver = 0.0.20 + pkgver = 0.0.21 pkgrel = 1 url = https://discord.com arch = x86_64 @@ -13,7 +13,7 @@ pkgbase = discord-electron-bin optdepends = xdg-utils: Open files provides = discord conflicts = discord - source = https://dl.discordapp.net/apps/linux/0.0.20/discord-0.0.20.tar.gz - sha512sums = 720bc8a8b61cbbe3566c34065f9831571da121d210e3f2876c34cb964d60bab33f8dc16f7ca758e918cd8f35a69699c0b9063782e6c95087c0baa41a6d0e7cf5 + source = https://dl.discordapp.net/apps/linux/0.0.21/discord-0.0.21.tar.gz + sha512sums = 149ae5b8b7d92549e12eca52e45d3f5761ef022ae321cf33fadc3b56c4cee0616a5166380faea038256213713a7aa90e1befc4caa3e6a4de8e15c1cb1d8f925d pkgname = discord-electron-bin diff --git a/discord-electron-bin/PKGBUILD b/discord-electron-bin/PKGBUILD index 245b71e..eee87db 100644 --- a/discord-electron-bin/PKGBUILD +++ b/discord-electron-bin/PKGBUILD @@ -12,7 +12,7 @@ pkgname=discord-electron-bin _pkgname=discord _electron=13 -pkgver=0.0.20 +pkgver=0.0.21 pkgrel=1 pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') @@ -27,7 +27,7 @@ optdepends=( 'xdg-utils: Open files' ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/discord-${pkgver}.tar.gz") -sha512sums=('720bc8a8b61cbbe3566c34065f9831571da121d210e3f2876c34cb964d60bab33f8dc16f7ca758e918cd8f35a69699c0b9063782e6c95087c0baa41a6d0e7cf5') +sha512sums=('149ae5b8b7d92549e12eca52e45d3f5761ef022ae321cf33fadc3b56c4cee0616a5166380faea038256213713a7aa90e1befc4caa3e6a4de8e15c1cb1d8f925d') _tarname='Discord' From e940e46903facfaa6980b1c5695752050d87f4d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 23 Oct 2022 10:28:47 +0200 Subject: [PATCH 345/971] discord-electron-bin: Set correct module path This change allows the use of vastly newer Electron versions but this makes Discord still crash when viewing a video feed --- discord-electron-bin/PKGBUILD | 2 ++ 1 file changed, 2 insertions(+) diff --git a/discord-electron-bin/PKGBUILD b/discord-electron-bin/PKGBUILD index eee87db..0539137 100644 --- a/discord-electron-bin/PKGBUILD +++ b/discord-electron-bin/PKGBUILD @@ -12,6 +12,7 @@ pkgname=discord-electron-bin _pkgname=discord _electron=13 +#_electron=19 pkgver=0.0.21 pkgrel=1 pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" @@ -75,6 +76,7 @@ EOF rm $_tarname/resources/app.asar sed -i "s|process.resourcesPath|'/usr/lib/${_pkgname}'|" $_tarname/resources/app/app_bootstrap/buildInfo.js sed -i "s|exeDir,|'/usr/share/pixmaps',|" $_tarname/resources/app/app_bootstrap/autoStart/linux.js + sed -i "s#^module\.paths.*;#module.paths = [(process.env.XDG_CONFIG_HOME || (process.env.HOME + \"/.config\")) + \"/discord/$pkgver/modules\"];#" Discord/resources/app/app_bootstrap/requireNative.js asar p $_tarname/resources/app $_tarname/resources/app.asar --unpack-dir '**' rm -rf $_tarname/resources/app } From 48f278ad44978335182da22110e61cb524b14b19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 23 Oct 2022 11:18:17 +0200 Subject: [PATCH 346/971] Remove obsolete install and gitignore files --- discord-electron-bin/.gitignore | 4 ---- florence/.SRCINFO | 1 - florence/PKGBUILD | 1 - florence/florence.install | 16 ---------------- gvisor-bin/.gitignore | 3 --- spot-client/.gitignore | 14 -------------- sublime-text-4/.SRCINFO | 1 - sublime-text-4/PKGBUILD | 1 - sublime-text-4/sublime-text-4.install | 8 -------- 9 files changed, 49 deletions(-) delete mode 100644 discord-electron-bin/.gitignore delete mode 100644 florence/florence.install delete mode 100644 gvisor-bin/.gitignore delete mode 100644 spot-client/.gitignore delete mode 100644 sublime-text-4/sublime-text-4.install diff --git a/discord-electron-bin/.gitignore b/discord-electron-bin/.gitignore deleted file mode 100644 index b38a53a..0000000 --- a/discord-electron-bin/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -pkg/ -src/ -*.tar.* -*.pkg.* diff --git a/florence/.SRCINFO b/florence/.SRCINFO index a06a7f7..b2e443a 100644 --- a/florence/.SRCINFO +++ b/florence/.SRCINFO @@ -3,7 +3,6 @@ pkgbase = florence pkgver = 0.6.3 pkgrel = 2 url = http://sourceforge.net/projects/florence/ - install = florence.install arch = i686 arch = x86_64 license = GPL diff --git a/florence/PKGBUILD b/florence/PKGBUILD index ae4994b..3f17f17 100644 --- a/florence/PKGBUILD +++ b/florence/PKGBUILD @@ -12,7 +12,6 @@ url="http://sourceforge.net/projects/${pkgname}/" license=('GPL') depends=('gtk3' 'libxml2' 'librsvg' 'libxtst' 'gettext' 'gstreamer>=1.0') # http://florence.sourceforge.net/english/install.html makedepends=('intltool>=0.23' 'gnome-doc-utils') -install="${pkgname}.install" source=("http://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2") sha256sums=('422992fd07d285be73cce721a203e22cee21320d69b0fda1579ce62944c5091e') diff --git a/florence/florence.install b/florence/florence.install deleted file mode 100644 index 414e7a2..0000000 --- a/florence/florence.install +++ /dev/null @@ -1,16 +0,0 @@ -_update() { - glib-compile-schemas '/usr/share/glib-2.0/schemas/' - update-desktop-database -q -} - -post_install() { - _update -} - -post_upgrade() { - _update -} - -post_remove() { - _update -} diff --git a/gvisor-bin/.gitignore b/gvisor-bin/.gitignore deleted file mode 100644 index d331a28..0000000 --- a/gvisor-bin/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -gvisor* -pkg -src diff --git a/spot-client/.gitignore b/spot-client/.gitignore deleted file mode 100644 index 82b3c18..0000000 --- a/spot-client/.gitignore +++ /dev/null @@ -1,14 +0,0 @@ -# from https://github.com/github/gitignore/blob/master/ArchLinuxPackages.gitignore -*.tar -*.tar.* -*.rpm -*.jar -*.exe -*.msi -*.zip -*.tgz -*.log -*.log.* -*.sig - -*/ diff --git a/sublime-text-4/.SRCINFO b/sublime-text-4/.SRCINFO index 65d97aa..44e8416 100644 --- a/sublime-text-4/.SRCINFO +++ b/sublime-text-4/.SRCINFO @@ -3,7 +3,6 @@ pkgbase = sublime-text-4 pkgver = 4.4126 pkgrel = 1 url = https://www.sublimetext.com/download - install = sublime-text-4.install arch = x86_64 arch = aarch64 license = custom diff --git a/sublime-text-4/PKGBUILD b/sublime-text-4/PKGBUILD index 6ea2aa4..ce84502 100644 --- a/sublime-text-4/PKGBUILD +++ b/sublime-text-4/PKGBUILD @@ -11,7 +11,6 @@ depends=('libpng' 'gtk3') optdepends=('gksu: sudo-save support') conflicts=('sublime-text') provides=('sublime-text') -install=${pkgname}.install source=('sublime_text.desktop') source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") diff --git a/sublime-text-4/sublime-text-4.install b/sublime-text-4/sublime-text-4.install deleted file mode 100644 index 3d6db1d..0000000 --- a/sublime-text-4/sublime-text-4.install +++ /dev/null @@ -1,8 +0,0 @@ -post_install() { - # Update icon cache. - gtk-update-icon-cache -f '/usr/share/icons/hicolor' > /dev/null 2>&1 -} - -post_upgrade() { - post_install -} From 37a94ece2c2e44474c52c9316228f0c96843c709 Mon Sep 17 00:00:00 2001 From: Manuel Date: Sun, 23 Oct 2022 12:43:46 +0200 Subject: [PATCH 347/971] Add .editorconfig --- .editorconfig | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..a467ee9 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,8 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = tab +tab_width = 4 From 5e6744983f6488ecc24a199b13b7f17663e98f2b Mon Sep 17 00:00:00 2001 From: Manuel Date: Sun, 23 Oct 2022 12:44:10 +0200 Subject: [PATCH 348/971] Update README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5db5647..cd73533 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# AUR packages +# Arch Linux packages -These are PKGBUILDs for packages on the Arch User Repository I maintain, used to maintain or do plan on uploading or just keep here for preservation. +These are PKGBUILDs for packages I maintain, used to maintain or do plan on uploading or just keep here for preservation. I may also use these for an automated build system soon™ that pushes these packages automatically to a pacman repo I maintain. From fa94f32802b8ccd71092175faeadf9ae4ddd9063 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 28 Oct 2022 12:39:51 +0200 Subject: [PATCH 349/971] upgpkg: sublime-text-dev 4.4139-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 45ee439..2a99a15 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4138 + pkgver = 4.4139 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4138_x64.tar.xz - sha256sums_x86_64 = 0c1c5660ed8b39ed7409d13879b87627d03ec29f2782f71e5791ae4bbe1350b7 - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4138_arm64.tar.xz - sha256sums_aarch64 = def23facff20b497631726a8aeb1b3a572c2a8abd9a2179b639f56af74feb581 + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4139_x64.tar.xz + sha256sums_x86_64 = 6c46a0751f1c41bda25a7cec0b1c2ac478d9688ba9ffdd653185848692fb5d26 + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4139_arm64.tar.xz + sha256sums_aarch64 = 3c1142a5c5e3022af2febd56227c51010dfb21f9030f0dc7a45dbec9c91c7533 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 7ea7f05..812958c 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4138 +pkgver=4.4139 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('0c1c5660ed8b39ed7409d13879b87627d03ec29f2782f71e5791ae4bbe1350b7') -sha256sums_aarch64=('def23facff20b497631726a8aeb1b3a572c2a8abd9a2179b639f56af74feb581') +sha256sums_x86_64=('6c46a0751f1c41bda25a7cec0b1c2ac478d9688ba9ffdd653185848692fb5d26') +sha256sums_aarch64=('3c1142a5c5e3022af2febd56227c51010dfb21f9030f0dc7a45dbec9c91c7533') package() { cd "${srcdir}" From a395017635bcc5da93c6cc7eea20e9e19bf6dca6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 28 Oct 2022 12:41:58 +0200 Subject: [PATCH 350/971] upgpkg: clonezilla-unstable 5.2.7-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index c7d0342..c287b35 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.2.6 + pkgver = 5.2.7 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.2.6.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.2.7.tar.xz source = usrbin.patch - sha256sums = d5f3582921832555174133d033814879c6fd2b81bff837e876efb1f838109791 + sha256sums = c6da5fed444286509b6573ad59083968f430660007623be67285e833264841a5 sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 36d870d..d3c760f 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.2.6 +pkgver=5.2.7 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('d5f3582921832555174133d033814879c6fd2b81bff837e876efb1f838109791' +sha256sums=('c6da5fed444286509b6573ad59083968f430660007623be67285e833264841a5' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From 3279258aba3ee4d1b647727783b5a06dfd91db09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 28 Oct 2022 12:41:58 +0200 Subject: [PATCH 351/971] upgpkg: clonezilla-unstable 5.2.7-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index c7d0342..c287b35 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.2.6 + pkgver = 5.2.7 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.2.6.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.2.7.tar.xz source = usrbin.patch - sha256sums = d5f3582921832555174133d033814879c6fd2b81bff837e876efb1f838109791 + sha256sums = c6da5fed444286509b6573ad59083968f430660007623be67285e833264841a5 sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 36d870d..d3c760f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.2.6 +pkgver=5.2.7 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('d5f3582921832555174133d033814879c6fd2b81bff837e876efb1f838109791' +sha256sums=('c6da5fed444286509b6573ad59083968f430660007623be67285e833264841a5' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From fd8524cebdd5adaa74a4b450a286ae747ad31fbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 30 Oct 2022 14:15:29 +0100 Subject: [PATCH 352/971] upgpkg: obs-vkcapture 1.2.1-1 upstream release --- obs-vkcapture/.SRCINFO | 6 +++--- obs-vkcapture/PKGBUILD | 16 +++++++++------- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/obs-vkcapture/.SRCINFO b/obs-vkcapture/.SRCINFO index c476678..bb4342e 100644 --- a/obs-vkcapture/.SRCINFO +++ b/obs-vkcapture/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = obs-vkcapture - pkgver = 1.2.0 + pkgver = 1.2.1 pkgrel = 1 url = https://github.com/nowrep/obs-vkcapture arch = x86_64 @@ -13,8 +13,8 @@ pkgbase = obs-vkcapture depends = vulkan-icd-loader depends = libgl depends = obs-studio>=27 - source = https://github.com/nowrep/obs-vkcapture/archive/v1.2.0.tar.gz - sha512sums = e30aeb24af467a9f8a343985b77ea5cd4e39fdcdec067f3c65f7dd9b8915a933bff1ee5127e4a7a4eaa0e740f97f31af669cb5a75155bbd9937d694d739a6d7d + source = https://github.com/nowrep/obs-vkcapture/archive/v1.2.1.tar.gz + sha512sums = 55ba0c449cef9c80db82e98a2f6e282dfbf00a7ef0c180e307bd602ae13aadbb0383a38a56dcf4d67ed7ac1e5dd392be7ef71bb1e6f39278da69ed110c159bb0 pkgname = obs-vkcapture pkgdesc = OBS Linux Vulkan/OpenGL game capture diff --git a/obs-vkcapture/PKGBUILD b/obs-vkcapture/PKGBUILD index 1a98e3f..c3db132 100644 --- a/obs-vkcapture/PKGBUILD +++ b/obs-vkcapture/PKGBUILD @@ -2,34 +2,36 @@ pkgbase=obs-vkcapture pkgname=("$pkgbase" "lib32-$pkgbase") -pkgver=1.2.0 +pkgver=1.2.1 pkgrel=1 url="https://github.com/nowrep/$pkgbase" license=('GPL2') arch=('x86_64') depends=('vulkan-icd-loader' 'libgl' 'obs-studio>=27') makedepends=('gcc' 'cmake' 'vulkan-headers' 'lib32-gcc-libs' 'lib32-vulkan-icd-loader' 'lib32-libgl') -source=("https://github.com/nowrep/$pkgbase/archive/v1.2.0.tar.gz") -sha512sums=('e30aeb24af467a9f8a343985b77ea5cd4e39fdcdec067f3c65f7dd9b8915a933bff1ee5127e4a7a4eaa0e740f97f31af669cb5a75155bbd9937d694d739a6d7d') +source=("https://github.com/nowrep/$pkgbase/archive/v$pkgver.tar.gz") +sha512sums=('55ba0c449cef9c80db82e98a2f6e282dfbf00a7ef0c180e307bd602ae13aadbb0383a38a56dcf4d67ed7ac1e5dd392be7ef71bb1e6f39278da69ed110c159bb0') build() { - cmake -B build -S "$pkgbase-$pkgver" -DCMAKE_INSTALL_PREFIX=/usr \ + cmake -B build -S "$pkgbase-$pkgver" \ + -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=lib \ -DCMAKE_INSTALL_DATADIR=/share \ -DCMAKE_BUILD_TYPE=Release - make -C build + make -C build -j $(nproc) export CFLAGS="-m32 ${CFLAGS}" export CXXFLAGS="-m32 ${CXXFLAGS}" export LDFLAGS="-m32 ${LDFLAGS}" - cmake -B build32 -S "$pkgbase-$pkgver" -DCMAKE_INSTALL_PREFIX=/usr \ + cmake -B build32 -S "$pkgbase-$pkgver" \ + -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=lib32 \ -DCMAKE_INSTALL_DATADIR=/share \ -DCMAKE_LIBRARY_PATH=/usr/lib32 \ -DCMAKE_BUILD_TYPE=Release \ -DBUILD_PLUGIN=OFF - make -C build32 + make -C build32 -j $(nproc) } package_obs-vkcapture() { From a76923b67befd560e50bcfe0a670692087868fb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 31 Oct 2022 22:44:10 +0100 Subject: [PATCH 353/971] upgpkg: sublime-text-dev 4.4140-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 2a99a15..4c48e1d 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4139 + pkgver = 4.4140 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4139_x64.tar.xz - sha256sums_x86_64 = 6c46a0751f1c41bda25a7cec0b1c2ac478d9688ba9ffdd653185848692fb5d26 - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4139_arm64.tar.xz - sha256sums_aarch64 = 3c1142a5c5e3022af2febd56227c51010dfb21f9030f0dc7a45dbec9c91c7533 + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4140_x64.tar.xz + sha256sums_x86_64 = c3d22c37f94eff8de1f2957784b4fab60f73cd860c522cbd861c49c956a685f3 + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4140_arm64.tar.xz + sha256sums_aarch64 = 16142a6397d0996810232f091e24eaad19cecd2c22e3bb143d39db37efde0fed pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 812958c..542f5c8 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4139 +pkgver=4.4140 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('6c46a0751f1c41bda25a7cec0b1c2ac478d9688ba9ffdd653185848692fb5d26') -sha256sums_aarch64=('3c1142a5c5e3022af2febd56227c51010dfb21f9030f0dc7a45dbec9c91c7533') +sha256sums_x86_64=('c3d22c37f94eff8de1f2957784b4fab60f73cd860c522cbd861c49c956a685f3') +sha256sums_aarch64=('16142a6397d0996810232f091e24eaad19cecd2c22e3bb143d39db37efde0fed') package() { cd "${srcdir}" From c9a1b559c2755e8547e33ae0fd1d2322a458240d Mon Sep 17 00:00:00 2001 From: leo_sk Date: Thu, 3 Nov 2022 02:08:35 +0530 Subject: [PATCH 354/971] First submission of package --- .SRCINFO | 14 ++++++++++++++ PKGBUILD | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..9d88ce2 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,14 @@ +pkgbase = sierra-breeze-enhanced-decoration-kwin + pkgdesc = A fork of BreezeEnhanced to make it (arguably) more minimalistic and informative + pkgver = 1.3.1 + pkgrel = 1 + url = https://github.com/kupiqu/SierraBreezeEnhanced/ + arch = x86_64 + license = GPL3 + makedepends = cmake + makedepends = extra-cmake-modules + depends = kwin + source = https://github.com/kupiqu/SierraBreezeEnhanced/archive/refs/tags/V1.3.1.tar.gz + sha256sums = e507084f359ceb1fd11f4b1a54cbd350601d6cebae837765412da7b5d2744b8c + +pkgname = sierra-breeze-enhanced-decoration-kwin diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..6868151 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,32 @@ + # Maintainer: Leo sk + + pkgname=sierra-breeze-enhanced-decoration-kwin + _gitname=SierraBreezeEnhanced + pkgver=1.3.1 + pkgrel=1 + pkgdesc="A fork of BreezeEnhanced to make it (arguably) more minimalistic and informative" + arch=('x86_64') + url="https://github.com/kupiqu/SierraBreezeEnhanced/" + license=('GPL3') + depends=('kwin') + makedepends=('cmake' 'extra-cmake-modules') + source=("${url}archive/refs/tags/V${pkgver}.tar.gz") + sha256sums=('e507084f359ceb1fd11f4b1a54cbd350601d6cebae837765412da7b5d2744b8c') + + build() { + + cd "${srcdir}/${_gitname}-${pkgver}" + + mkdir build && cd build + cmake .. \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release \ + -DKDE_INSTALL_LIBDIR=lib \ + -DBUILD_TESTING=OFF \ + -DKDE_INSTALL_USE_QT_SYS_PATHS=ON + + } + + package() { + make -C ${srcdir}/${_gitname}-${pkgver}/build DESTDIR="$pkgdir" install + } From 4915fbf9cf97e37a83eadfba53c52f7da13095ca Mon Sep 17 00:00:00 2001 From: leo_sk Date: Thu, 3 Nov 2022 02:11:57 +0530 Subject: [PATCH 355/971] First submission of package --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 9d88ce2..5d7e33f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,5 +1,5 @@ -pkgbase = sierra-breeze-enhanced-decoration-kwin - pkgdesc = A fork of BreezeEnhanced to make it (arguably) more minimalistic and informative +pkgbase = sierra-breeze-enhanced + pkgdesc = A kwin decoration with support for transparency, rounded corners, multiple titlebar button presets and more pkgver = 1.3.1 pkgrel = 1 url = https://github.com/kupiqu/SierraBreezeEnhanced/ @@ -11,4 +11,4 @@ pkgbase = sierra-breeze-enhanced-decoration-kwin source = https://github.com/kupiqu/SierraBreezeEnhanced/archive/refs/tags/V1.3.1.tar.gz sha256sums = e507084f359ceb1fd11f4b1a54cbd350601d6cebae837765412da7b5d2744b8c -pkgname = sierra-breeze-enhanced-decoration-kwin +pkgname = sierra-breeze-enhanced diff --git a/PKGBUILD b/PKGBUILD index 6868151..615395f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,10 +1,10 @@ # Maintainer: Leo sk - pkgname=sierra-breeze-enhanced-decoration-kwin + pkgname=sierra-breeze-enhanced _gitname=SierraBreezeEnhanced pkgver=1.3.1 pkgrel=1 - pkgdesc="A fork of BreezeEnhanced to make it (arguably) more minimalistic and informative" + pkgdesc="A kwin decoration with support for transparency, rounded corners, multiple titlebar button presets and more" arch=('x86_64') url="https://github.com/kupiqu/SierraBreezeEnhanced/" license=('GPL3') From 3c6e6ebb057684d48fc2df6b55c8a1922385e209 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 3 Nov 2022 17:14:18 +0100 Subject: [PATCH 356/971] upgpkg: firefox-syncstorage 0.12.5-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index fbd1daf..aa7be2c 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.12.4 + pkgver = 0.12.5 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -20,9 +20,9 @@ pkgbase = firefox-syncstorage depends = python-tokenlib optdepends = mysql: for use with a local database server backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.12.4.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.12.5.tar.gz source = firefox-syncstorage.service - sha256sums = 05817b02e74fb4f45a10b1b2583bf353616624a1c776cf72c185f9e89189590b + sha256sums = e9904c3571789f5ba29645a69def5f7550ebd544d51c3af5a4b5a2c1b1b72135 sha256sums = 609e057cd835ea54b06b32b98e210cd946255f652e7754c9160fd7c94379a83d pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index e497a4e..28f7d08 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.12.4 +pkgver=0.12.5 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -17,8 +17,8 @@ optdepends=('mysql: for use with a local database server') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}.tar.gz" "${pkgname}.service") -sha256sums=('05817b02e74fb4f45a10b1b2583bf353616624a1c776cf72c185f9e89189590b' - '609e057cd835ea54b06b32b98e210cd946255f652e7754c9160fd7c94379a83d') +sha256sums=('e9904c3571789f5ba29645a69def5f7550ebd544d51c3af5a4b5a2c1b1b72135' + '609e057cd835ea54b06b32b98e210cd946255f652e7754c9160fd7c94379a83d') backup=("etc/${pkgname}.toml") build() { From 225777225237c4a7aa361b511ac25525097909fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 5 Nov 2022 12:45:51 +0100 Subject: [PATCH 357/971] upgpkg: gvisor-bin 20221102.1-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 22 +++++++++------------- 2 files changed, 18 insertions(+), 22 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index e50e33b..ed60123 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20220905.0 + pkgver = 20221102.1 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220905/x86_64/runsc - source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20220905/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = 01e4f78b2634f70d8cfd88e2a1642562a1dc52c8757c884953aee2e92c1e337ecca4ef7ff570a94d0214bc663a8220f4e9433c3d7bc6dab79f88b3336a62123d - sha512sums_x86_64 = 7a3f847909c03078b549682fec9904efc9ec1606357f911c6b87f18953e9ccd8e914a09ff9837f4ecf7574d70a4aca4d5ad30d27c923866374b25578adc7cec7 - source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220905/aarch64/runsc - source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20220905/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = ea2da7b729097f2694580195b7894daed8d1dbc3520f08513b6712871c02b565a7c25a09c909e8992c9f27d26637aeff588febf46e64d94eb76af1ae5887026a - sha512sums_aarch64 = 23930334619ac425bc4ca0e4bd460ddc9ed3a4c885083f30ae8e6c33501bf08ce81e8c6a82a6670b2a666a749710cb54925e02c88acee8114d40df7bbb422afc + source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20221102.1/x86_64/runsc + source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20221102.1/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = f47a15449cd2a4b25dc768e4d9275d67c22acda6ebbc46270c38f5f135143f7551475168862b846a408f3858ee7edf725861a6bb3ce9ef2c783d1cab6d177511 + sha512sums_x86_64 = 3b8bb9453dfc8cad3b2a1c484d9acb6766c7900d6869e1696214216a0fab994e55409e4065267544a360283b2c824790f605d89749674ddb68dd58086f44f956 + source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20221102.1/aarch64/runsc + source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20221102.1/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 87a39bb2e2e87390f6c6c38dbc4bdcced62d07af9128ddead7b0b46bc7bac2f9aa678b8bc5d234dedd9ad5430fe38d0e3df77d65b10589e99f21bdf0516d80b5 + sha512sums_aarch64 = 0ec5bd37b91a921bdeb26e92251f37d6c6adba4e2176973017b592e229c7512aa1765be4c4a87be44dfbb6bb30827b05f7e1551eff98ea006499317dec4a9e60 pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index 1f660a4..8d7375e 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20220905.0 +pkgver=20221102.1 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -18,21 +18,17 @@ conflicts=( "${pkgname%-bin}" ) source_x86_64=( - "https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/x86_64/$_pkgbin" - "https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/x86_64/$_pkgshim" + "https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/x86_64/$_pkgbin" + "https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/x86_64/$_pkgshim" ) source_aarch64=( - "https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/aarch64/$_pkgbin" - "https://storage.googleapis.com/${pkgname%-bin}/releases/release/${pkgver%.[0-9]}/aarch64/$_pkgshim" -) -sha512sums_x86_64=( - '01e4f78b2634f70d8cfd88e2a1642562a1dc52c8757c884953aee2e92c1e337ecca4ef7ff570a94d0214bc663a8220f4e9433c3d7bc6dab79f88b3336a62123d' - '7a3f847909c03078b549682fec9904efc9ec1606357f911c6b87f18953e9ccd8e914a09ff9837f4ecf7574d70a4aca4d5ad30d27c923866374b25578adc7cec7' -) -sha512sums_aarch64=( - 'ea2da7b729097f2694580195b7894daed8d1dbc3520f08513b6712871c02b565a7c25a09c909e8992c9f27d26637aeff588febf46e64d94eb76af1ae5887026a' - '23930334619ac425bc4ca0e4bd460ddc9ed3a4c885083f30ae8e6c33501bf08ce81e8c6a82a6670b2a666a749710cb54925e02c88acee8114d40df7bbb422afc' + "https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" + "https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) +sha512sums_x86_64=('f47a15449cd2a4b25dc768e4d9275d67c22acda6ebbc46270c38f5f135143f7551475168862b846a408f3858ee7edf725861a6bb3ce9ef2c783d1cab6d177511' + '3b8bb9453dfc8cad3b2a1c484d9acb6766c7900d6869e1696214216a0fab994e55409e4065267544a360283b2c824790f605d89749674ddb68dd58086f44f956') +sha512sums_aarch64=('87a39bb2e2e87390f6c6c38dbc4bdcced62d07af9128ddead7b0b46bc7bac2f9aa678b8bc5d234dedd9ad5430fe38d0e3df77d65b10589e99f21bdf0516d80b5' + '0ec5bd37b91a921bdeb26e92251f37d6c6adba4e2176973017b592e229c7512aa1765be4c4a87be44dfbb6bb30827b05f7e1551eff98ea006499317dec4a9e60') package() { install -Dm 755 "$_pkgbin" "$pkgdir/usr/bin/$_pkgbin" From 1bd41070882d068c05f781dc404f0587e092219b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 5 Nov 2022 12:46:20 +0100 Subject: [PATCH 358/971] upgpkg: gvisor-git 20221102.1-1 --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index d0b2399..3da0a34 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20220905.0 + pkgver = 20221102.1 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index 337468c..f011a36 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20220905.0 +pkgver=20221102.1 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From f792c81786fb682d2fff81955636833ed12b8989 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 9 Nov 2022 17:38:00 +0100 Subject: [PATCH 359/971] Initial upload: qvr 4.0.1-1 --- qvr/.SRCINFO | 16 ++++++++++++++++ qvr/PKGBUILD | 28 ++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 qvr/.SRCINFO create mode 100644 qvr/PKGBUILD diff --git a/qvr/.SRCINFO b/qvr/.SRCINFO new file mode 100644 index 0000000..fdae7bb --- /dev/null +++ b/qvr/.SRCINFO @@ -0,0 +1,16 @@ +pkgbase = qvr + pkgdesc = 3D video player with multi-display support + pkgver = 4.0.1 + pkgrel = 1 + url = https://bino3d.org/ + arch = x86_64 + license = GPL3 + makedepends = cmake + depends = qt6-base + source = https://marlam.de/qvr/releases/qvr-4.0.1.tar.gz + source = https://marlam.de/qvr/releases/qvr-4.0.1.tar.gz.sig + validpgpkeys = 2F61B4828BBA779AECB3F32703A2A4AB1E32FD34 + sha512sums = 9d306d013873354ec875d1433fe7648219b8e43d34dd510fc72d70b80eabae1049d155e5cf8f8a314f7aed0988bd34ce14cb266b84ff737b8e80cdbb2e5c0a52 + sha512sums = SKIP + +pkgname = qvr diff --git a/qvr/PKGBUILD b/qvr/PKGBUILD new file mode 100644 index 0000000..e0a3b73 --- /dev/null +++ b/qvr/PKGBUILD @@ -0,0 +1,28 @@ +# Maintainer: Manuel Hüsers + +pkgname=qvr +pkgver=4.0.1 +pkgrel=1 +pkgdesc='3D video player with multi-display support' +arch=('x86_64') +url='https://bino3d.org/' +license=('GPL3') +depends=('qt6-base') +makedepends=('cmake') +source=(https://marlam.de/qvr/releases/$pkgname-$pkgver.tar.gz{,.sig}) +sha512sums=('9d306d013873354ec875d1433fe7648219b8e43d34dd510fc72d70b80eabae1049d155e5cf8f8a314f7aed0988bd34ce14cb266b84ff737b8e80cdbb2e5c0a52' + 'SKIP') +validpgpkeys=('2F61B4828BBA779AECB3F32703A2A4AB1E32FD34') + +build() { + cmake -B build -S "$pkgname-$pkgver/libqvr" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release \ + -DBUILD_TESTING=OFF + + make -C build -j $(nproc) +} + +package() { + make -C build DESTDIR="$pkgdir" install +} From 39efcecb3652c498ebd2f2d474e43be7e0aeb7e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 9 Nov 2022 17:38:40 +0100 Subject: [PATCH 360/971] upgpkg: bino 2.0-1 upstream release --- bino/.SRCINFO | 24 +++++++++------------- bino/PKGBUILD | 36 +++++++++++++-------------------- bino/ffmpeg4.4.patch | 48 -------------------------------------------- 3 files changed, 24 insertions(+), 84 deletions(-) delete mode 100644 bino/ffmpeg4.4.patch diff --git a/bino/.SRCINFO b/bino/.SRCINFO index 7f5c885..1d7d948 100644 --- a/bino/.SRCINFO +++ b/bino/.SRCINFO @@ -1,23 +1,19 @@ pkgbase = bino pkgdesc = 3D video player with multi-display support - pkgver = 1.6.8 - pkgrel = 4 + pkgver = 2.0 + pkgrel = 1 url = https://bino3d.org/ arch = x86_64 license = GPL3 - depends = ffmpeg4.4 - depends = freealut - depends = freeglut - depends = glewmx - depends = libass - depends = qt5-base - optdepends = lirc: infrared remote control - source = https://bino3d.org/releases/bino-1.6.8.tar.xz - source = https://bino3d.org/releases/bino-1.6.8.tar.xz.sig - source = ffmpeg4.4.patch + makedepends = cmake + makedepends = qt6-tools + depends = qt6-multimedia + depends = qt6-svg + depends = qvr + source = https://bino3d.org/releases/bino-2.0.tar.gz + source = https://bino3d.org/releases/bino-2.0.tar.gz.sig validpgpkeys = 2F61B4828BBA779AECB3F32703A2A4AB1E32FD34 - sha512sums = d8cf5be356add4ed3fb36673038b5ffd92d0dc840798cc616fa4b11fec221c7f114347dfc7cdb7a3a24c5599b56301cddc99f84d3862d8e874612960281319cc + sha512sums = 5620c506f4de1a9aa7f21f0a23481c5174e7a6a47e6401a84d048dc87843249ef325e33ebc49790d405eb4697c3c571550b0e202f24e758c446ce8e4014f98b3 sha512sums = SKIP - sha512sums = f7bf716a6ae12a4542ecaddeaee1078a6c26d9d765db7cc11a1d7b1ae19b295703f5b05e71564f1aad216485b904d81f2670c122e88ab79c7556f5614c0d1639 pkgname = bino diff --git a/bino/PKGBUILD b/bino/PKGBUILD index 68f4b3c..06423ae 100644 --- a/bino/PKGBUILD +++ b/bino/PKGBUILD @@ -4,36 +4,28 @@ # Contributor: archtux pkgname=bino -pkgver=1.6.8 -pkgrel=4 +pkgver=2.0 +pkgrel=1 pkgdesc='3D video player with multi-display support' arch=('x86_64') url='https://bino3d.org/' license=('GPL3') -depends=('ffmpeg4.4' 'freealut' 'freeglut' 'glewmx' 'libass' 'qt5-base') -optdepends=('lirc: infrared remote control') -source=(https://bino3d.org/releases/${pkgname}-${pkgver}.tar.xz{,.sig} - ffmpeg4.4.patch) -sha512sums=('d8cf5be356add4ed3fb36673038b5ffd92d0dc840798cc616fa4b11fec221c7f114347dfc7cdb7a3a24c5599b56301cddc99f84d3862d8e874612960281319cc' - 'SKIP' - 'f7bf716a6ae12a4542ecaddeaee1078a6c26d9d765db7cc11a1d7b1ae19b295703f5b05e71564f1aad216485b904d81f2670c122e88ab79c7556f5614c0d1639') +depends=('qt6-multimedia' 'qt6-svg' 'qvr') +makedepends=('cmake' 'qt6-tools') +source=(https://bino3d.org/releases/$pkgname-$pkgver.tar.gz{,.sig}) +sha512sums=('5620c506f4de1a9aa7f21f0a23481c5174e7a6a47e6401a84d048dc87843249ef325e33ebc49790d405eb4697c3c571550b0e202f24e758c446ce8e4014f98b3' + 'SKIP') validpgpkeys=('2F61B4828BBA779AECB3F32703A2A4AB1E32FD34') -prepare() { - cd "${srcdir}/${pkgname}-${pkgver}" - patch -Np1 -i '../ffmpeg4.4.patch' -} - build() { - cd "${srcdir}/${pkgname}-${pkgver}" - ./configure \ - --prefix=/usr \ - --with-qt-version=5 \ - #--with-xnvctrl # Enable NVIDIA Quadro SDI output - make + cmake -B build -S "$pkgname-$pkgver" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release \ + -DBUILD_TESTING=OFF + + make -C build -j $(nproc) } package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install + make -C build DESTDIR="$pkgdir" install } diff --git a/bino/ffmpeg4.4.patch b/bino/ffmpeg4.4.patch deleted file mode 100644 index f809290..0000000 --- a/bino/ffmpeg4.4.patch +++ /dev/null @@ -1,48 +0,0 @@ ---- a/configure.ac -+++ b/configure.ac -@@ -143,25 +143,6 @@ if test -z "$PKG_CONFIG"; then - AC_MSG_WARN([please install pkg-config; Debian package: pkg-config]) - fi - --dnl FFmpeg --PKG_CHECK_MODULES([libavformat], [libavformat >= 52.110.0 libavcodec libavutil], [HAVE_LIBAVFORMAT=1], [HAVE_LIBAVFORMAT=0]) --if test "$HAVE_LIBAVFORMAT" != "1"; then -- AC_MSG_WARN([required library libavformat >= 52.110.0 not found:]) -- AC_MSG_WARN([$libavformat_PKG_ERRORS]) -- AC_MSG_WARN([libavformat >= 52.110.0 is provided by libav >= 0.7 or FFmpeg >= 0.7]) --fi --PKG_CHECK_MODULES([libavdevice], [libavdevice >= 52.5.0], [HAVE_LIBAVDEVICE=1], [HAVE_LIBAVDEVICE=0]) --if test "$HAVE_LIBAVDEVICE" != "1"; then -- AC_MSG_WARN([required library libavdevice >= 52.5.0 not found:]) -- AC_MSG_WARN([$libavdevice_PKG_ERRORS]) -- AC_MSG_WARN([libavdevice >= 52.5.0 is provided by libav >= 0.7 or FFmpeg >= 0.7]) --fi --PKG_CHECK_MODULES([libswscale], [libswscale >= 0.14.1 libavutil], [HAVE_LIBSWSCALE=1], [HAVE_LIBSWSCALE=0]) --if test "$HAVE_LIBSWSCALE" != "1"; then -- AC_MSG_WARN([required library libswscale >= 0.14.1 not found:]) -- AC_MSG_WARN([$libswscale_PKG_ERRORS]) -- AC_MSG_WARN([libswscale >= 0.14.1 is provided by libav >= 0.7 or FFmpeg >= 0.7]) --fi - AC_CHECK_FUNCS([sysconf]) - - dnl libass -@@ -400,11 +381,16 @@ UPDATE_DESKTOP_DATABASE="" - AC_ARG_VAR([UPDATE_DESKTOP_DATABASE], [update-desktop-database command]) - AC_CHECK_PROGS([UPDATE_DESKTOP_DATABASE], [update-desktop-database]) - -+dnl ffmpeg4.4 libs -+LIBS="$LIBS /usr/lib/libswscale.so.5" -+LIBS="$LIBS /usr/lib/libavutil.so.56" -+LIBS="$LIBS /usr/lib/libavformat.so.58" -+LIBS="$LIBS /usr/lib/libavdevice.so.58" -+LIBS="$LIBS /usr/lib/libavcodec.so.58" -+CPPFLAGS="$CPPFLAGS -I/usr/include/ffmpeg4.4" -+ - dnl Check if all libraries were found - if test "$am_cv_func_iconv" != "yes" \ -- -o "$HAVE_LIBAVFORMAT" != "1" \ -- -o "$HAVE_LIBAVDEVICE" != "1" \ -- -o "$HAVE_LIBSWSCALE" != "1" \ - -o "$HAVE_LIBASS" != "1" \ - -o "$HAVE_LIBOPENAL" != "1" \ - -o "$HAVE_LIBQTOPENGL" != "1" \ From ace330850d2ec960ef2d2976cacbb88376633008 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 9 Nov 2022 17:53:10 +0100 Subject: [PATCH 361/971] upgpkg: qvr 4.0.1-2 Fix wrong description and URL --- qvr/.SRCINFO | 6 +++--- qvr/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/qvr/.SRCINFO b/qvr/.SRCINFO index fdae7bb..bec58a5 100644 --- a/qvr/.SRCINFO +++ b/qvr/.SRCINFO @@ -1,8 +1,8 @@ pkgbase = qvr - pkgdesc = 3D video player with multi-display support + pkgdesc = A library that makes writing Virtual Reality (VR) applications very easy pkgver = 4.0.1 - pkgrel = 1 - url = https://bino3d.org/ + pkgrel = 2 + url = https://marlam.de/qvr/ arch = x86_64 license = GPL3 makedepends = cmake diff --git a/qvr/PKGBUILD b/qvr/PKGBUILD index e0a3b73..9820b8b 100644 --- a/qvr/PKGBUILD +++ b/qvr/PKGBUILD @@ -2,10 +2,10 @@ pkgname=qvr pkgver=4.0.1 -pkgrel=1 -pkgdesc='3D video player with multi-display support' +pkgrel=2 +pkgdesc='A library that makes writing Virtual Reality (VR) applications very easy' arch=('x86_64') -url='https://bino3d.org/' +url='https://marlam.de/qvr/' license=('GPL3') depends=('qt6-base') makedepends=('cmake') From c9385d3189b7b974ff2648d58790490c2728aee9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 9 Nov 2022 17:56:28 +0100 Subject: [PATCH 362/971] upgpkg: qvr 4.0.1-3 Fix wrong license --- qvr/.SRCINFO | 4 ++-- qvr/PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/qvr/.SRCINFO b/qvr/.SRCINFO index bec58a5..94d9f52 100644 --- a/qvr/.SRCINFO +++ b/qvr/.SRCINFO @@ -1,10 +1,10 @@ pkgbase = qvr pkgdesc = A library that makes writing Virtual Reality (VR) applications very easy pkgver = 4.0.1 - pkgrel = 2 + pkgrel = 3 url = https://marlam.de/qvr/ arch = x86_64 - license = GPL3 + license = MIT makedepends = cmake depends = qt6-base source = https://marlam.de/qvr/releases/qvr-4.0.1.tar.gz diff --git a/qvr/PKGBUILD b/qvr/PKGBUILD index 9820b8b..81e3692 100644 --- a/qvr/PKGBUILD +++ b/qvr/PKGBUILD @@ -2,11 +2,11 @@ pkgname=qvr pkgver=4.0.1 -pkgrel=2 +pkgrel=3 pkgdesc='A library that makes writing Virtual Reality (VR) applications very easy' arch=('x86_64') url='https://marlam.de/qvr/' -license=('GPL3') +license=('MIT') depends=('qt6-base') makedepends=('cmake') source=(https://marlam.de/qvr/releases/$pkgname-$pkgver.tar.gz{,.sig}) From 696a4a2f4a3b3c86c0441eb170f79e2efe7d45ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 9 Nov 2022 18:00:51 +0100 Subject: [PATCH 363/971] Deleted package: glewmx --- glewmx/.SRCINFO | 14 -------------- glewmx/PKGBUILD | 47 ----------------------------------------------- 2 files changed, 61 deletions(-) delete mode 100644 glewmx/.SRCINFO delete mode 100755 glewmx/PKGBUILD diff --git a/glewmx/.SRCINFO b/glewmx/.SRCINFO deleted file mode 100644 index a254fbb..0000000 --- a/glewmx/.SRCINFO +++ /dev/null @@ -1,14 +0,0 @@ -pkgbase = glewmx - pkgdesc = The OpenGL Extension Wrangler MX - pkgver = 1.13.0 - pkgrel = 1 - url = http://launchpad.net/ubuntu/+source/glewmx - arch = x86_64 - license = GPL - depends = libxmu - depends = libxi - depends = glu - source = https://launchpad.net/ubuntu/+archive/primary/+files/glewmx_1.13.0.orig.tar.gz - sha256sums = aa25dc48ed84b0b64b8d41cdd42c8f40f149c37fa2ffa39cd97f42c78d128bc7 - -pkgname = glewmx diff --git a/glewmx/PKGBUILD b/glewmx/PKGBUILD deleted file mode 100755 index 3af9bc2..0000000 --- a/glewmx/PKGBUILD +++ /dev/null @@ -1,47 +0,0 @@ -# Maintainer: Manuel Hüsers -# Contributor: Andreas Radke -# Contributor: Stéphane Gaudreault -# Contributor: SleepyDog - -pkgname=glewmx -pkgver=1.13.0 -pkgrel=1 -pkgdesc='The OpenGL Extension Wrangler MX' -arch=('x86_64') -url="http://launchpad.net/ubuntu/+source/glewmx" -license=('GPL') -depends=('libxmu' 'libxi' 'glu') -source=(https://launchpad.net/ubuntu/+archive/primary/+files/${pkgname}_${pkgver}.orig.tar.gz) -sha256sums=('aa25dc48ed84b0b64b8d41cdd42c8f40f149c37fa2ffa39cd97f42c78d128bc7') - -prepare() { - cd "glew-${pkgver}" - - # move include folder to subfolder 'glew-1.13.0' - sed -i 's:$(GLEW_DEST)/include/GL:$(GLEW_DEST)/include/glew-1.13.0/GL:' Makefile - - sed -i 's|lib64|lib|' config/Makefile.linux - sed -i '/^.PHONY: .*\.pc$/d' Makefile -} - -build() { - cd "glew-${pkgver}" - - make -} - -package() { - cd "glew-${pkgver}" - - # update glewmx include path to reflect previous changes (see build comments) - msg update glewmx.pc - sed -i 's:includedir=${prefix}/include:includedir=${prefix}/include/glew-1.13.0:' glewmx.pc - - make GLEW_DEST="${pkgdir}/usr" install.all - - rm -R ${pkgdir}/usr/bin - rm ${pkgdir}/usr/lib/{libGLEW.so,libGLEW.a} - rm ${pkgdir}/usr/lib/pkgconfig/glew.pc - - chmod 0755 "${pkgdir}"/usr/lib/libGLEW*.so.${pkgver} -} From 1b0c4aa2c901e573fb250f06ca6ec38ea6016155 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 9 Nov 2022 18:09:58 +0100 Subject: [PATCH 364/971] bino: Update description --- bino/.SRCINFO | 2 +- bino/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bino/.SRCINFO b/bino/.SRCINFO index 1d7d948..528d8d7 100644 --- a/bino/.SRCINFO +++ b/bino/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = bino - pkgdesc = 3D video player with multi-display support + pkgdesc = A video player with focus on 3D and Virtual Reality pkgver = 2.0 pkgrel = 1 url = https://bino3d.org/ diff --git a/bino/PKGBUILD b/bino/PKGBUILD index 06423ae..65ec517 100644 --- a/bino/PKGBUILD +++ b/bino/PKGBUILD @@ -6,7 +6,7 @@ pkgname=bino pkgver=2.0 pkgrel=1 -pkgdesc='3D video player with multi-display support' +pkgdesc='A video player with focus on 3D and Virtual Reality' arch=('x86_64') url='https://bino3d.org/' license=('GPL3') From 54ff81139e2eaef58a5deae79ebaab8356f1f81b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 9 Nov 2022 18:56:35 +0100 Subject: [PATCH 365/971] upgpkg: florence 0.6.3-3 Don't generate docs and remove gnome-doc-utils dependency to not require python2 for build process --- florence/.SRCINFO | 3 +-- florence/PKGBUILD | 7 ++++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/florence/.SRCINFO b/florence/.SRCINFO index b2e443a..bdb10fa 100644 --- a/florence/.SRCINFO +++ b/florence/.SRCINFO @@ -1,13 +1,12 @@ pkgbase = florence pkgdesc = A configurable on-screen virtual keyboard pkgver = 0.6.3 - pkgrel = 2 + pkgrel = 3 url = http://sourceforge.net/projects/florence/ arch = i686 arch = x86_64 license = GPL makedepends = intltool>=0.23 - makedepends = gnome-doc-utils depends = gtk3 depends = libxml2 depends = librsvg diff --git a/florence/PKGBUILD b/florence/PKGBUILD index 3f17f17..0f6f8d5 100644 --- a/florence/PKGBUILD +++ b/florence/PKGBUILD @@ -5,13 +5,13 @@ pkgname=florence pkgver=0.6.3 -pkgrel=2 +pkgrel=3 pkgdesc='A configurable on-screen virtual keyboard' arch=('i686' 'x86_64') url="http://sourceforge.net/projects/${pkgname}/" license=('GPL') depends=('gtk3' 'libxml2' 'librsvg' 'libxtst' 'gettext' 'gstreamer>=1.0') # http://florence.sourceforge.net/english/install.html -makedepends=('intltool>=0.23' 'gnome-doc-utils') +makedepends=('intltool>=0.23') source=("http://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2") sha256sums=('422992fd07d285be73cce721a203e22cee21320d69b0fda1579ce62944c5091e') @@ -24,7 +24,8 @@ build() { --with-panelapplet \ --with-xtst \ --with-docs \ - --disable-static + --disable-static \ + --without-docs make -j1 } From 70eee4c22358b01dd14119ae556dffbb96c74f91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 10 Nov 2022 17:41:24 +0100 Subject: [PATCH 366/971] upgpkg: sublime-text-dev 4.4141-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 4c48e1d..9c11952 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4140 + pkgver = 4.4141 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -14,9 +14,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4140_x64.tar.xz - sha256sums_x86_64 = c3d22c37f94eff8de1f2957784b4fab60f73cd860c522cbd861c49c956a685f3 - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4140_arm64.tar.xz - sha256sums_aarch64 = 16142a6397d0996810232f091e24eaad19cecd2c22e3bb143d39db37efde0fed + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4141_x64.tar.xz + sha256sums_x86_64 = 785a3dbf8852ae9d60579e9a755c8507db0e02939794a36f5415b4c1b1581b88 + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4141_arm64.tar.xz + sha256sums_aarch64 = 326c12a6dbd21f9d3bf97f464fc182e2dcd917311f4f6a4a73efd0bb949b3243 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 542f5c8..8c645a7 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4140 +pkgver=4.4141 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - dev build" arch=('x86_64' 'aarch64') @@ -20,8 +20,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('c3d22c37f94eff8de1f2957784b4fab60f73cd860c522cbd861c49c956a685f3') -sha256sums_aarch64=('16142a6397d0996810232f091e24eaad19cecd2c22e3bb143d39db37efde0fed') +sha256sums_x86_64=('785a3dbf8852ae9d60579e9a755c8507db0e02939794a36f5415b4c1b1581b88') +sha256sums_aarch64=('326c12a6dbd21f9d3bf97f464fc182e2dcd917311f4f6a4a73efd0bb949b3243') package() { cd "${srcdir}" From 72805e9a1f7e1b619f4133acaeb24ba5742731e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 10 Nov 2022 17:42:00 +0100 Subject: [PATCH 367/971] upgpkg: sublime-text-4 4.4142-1 upstream release --- sublime-text-4/.SRCINFO | 10 +++++----- sublime-text-4/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-4/.SRCINFO b/sublime-text-4/.SRCINFO index 44e8416..9216fab 100644 --- a/sublime-text-4/.SRCINFO +++ b/sublime-text-4/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-4 pkgdesc = Sophisticated text editor for code, html and prose - stable build - pkgver = 4.4126 + pkgver = 4.4142 pkgrel = 1 url = https://www.sublimetext.com/download arch = x86_64 @@ -13,9 +13,9 @@ pkgbase = sublime-text-4 conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4126_x64.tar.xz - sha256sums_x86_64 = 5c64e534cce0032e54d3c7028e8d6b3bdef28f3fd28a26244a360a2ce75450a1 - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4126_arm64.tar.xz - sha256sums_aarch64 = 0ad4ac168d47034c47ab31faaa0d8b6b4f27e233ea4e48634b930bf999efb63e + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4142_x64.tar.xz + sha256sums_x86_64 = 26b14bd7bb6b72c51c4bf6d86d26cc8539d233295ae8092830823696dda70306 + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4142_arm64.tar.xz + sha256sums_aarch64 = afa6f13985d5036440a3ca6b74143bfe048d2853e6c035b9a2c6e5204d1acd3e pkgname = sublime-text-4 diff --git a/sublime-text-4/PKGBUILD b/sublime-text-4/PKGBUILD index ce84502..d224870 100644 --- a/sublime-text-4/PKGBUILD +++ b/sublime-text-4/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Manuel Hüsers pkgname=sublime-text-4 -pkgver=4.4126 +pkgver=4.4142 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - stable build" arch=('x86_64' 'aarch64') @@ -17,8 +17,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('5c64e534cce0032e54d3c7028e8d6b3bdef28f3fd28a26244a360a2ce75450a1') -sha256sums_aarch64=('0ad4ac168d47034c47ab31faaa0d8b6b4f27e233ea4e48634b930bf999efb63e') +sha256sums_x86_64=('26b14bd7bb6b72c51c4bf6d86d26cc8539d233295ae8092830823696dda70306') +sha256sums_aarch64=('afa6f13985d5036440a3ca6b74143bfe048d2853e6c035b9a2c6e5204d1acd3e') package() { cd "${srcdir}" From 84a02eb30af407f31ad90c55b863fdb501639106 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 10 Nov 2022 17:46:52 +0100 Subject: [PATCH 368/971] gvisor-bin: Add .gitignore --- gvisor-bin/.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 gvisor-bin/.gitignore diff --git a/gvisor-bin/.gitignore b/gvisor-bin/.gitignore new file mode 100644 index 0000000..7461add --- /dev/null +++ b/gvisor-bin/.gitignore @@ -0,0 +1,2 @@ +/runsc +/containerd-shim-runsc-v1 From a8a34013a520cb3cb2deba046ba9a3499496df57 Mon Sep 17 00:00:00 2001 From: Manuel Date: Thu, 10 Nov 2022 17:48:08 +0100 Subject: [PATCH 369/971] Add script to check gVisor version --- check-gvisor.sh | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100755 check-gvisor.sh diff --git a/check-gvisor.sh b/check-gvisor.sh new file mode 100755 index 0000000..3459876 --- /dev/null +++ b/check-gvisor.sh @@ -0,0 +1,36 @@ +#!/bin/sh + +VERSION="$(echo $1 | jq -Rr @html)" +BINARY='runsc' +SHIM='containerd-shim-runsc-v1' +URL_BASE="https://storage.googleapis.com/gvisor/releases/release/" +URL="${URL_BASE}${VERSION}/$(uname -m)/" +URL_X64="${URL_BASE}${VERSION}/x86_64/" +URL_ARM="${URL_BASE}${VERSION}/aarch64/" + +STATUS=$(curl -s -o /dev/null -I -w "%{http_code}" "${URL}${BINARY}") +EXIT=0 + +case $STATUS in + 200) + echo "Release: ${VERSION}" + echo "" + echo "x86_64 sha512:" + echo "$(curl -s ${URL_X64}${BINARY}.sha512)" + echo "$(curl -s ${URL_X64}${SHIM}.sha512)" + echo "" + echo "aarch64 sha512:" + echo "$(curl -s ${URL_ARM}${BINARY}.sha512)" + echo "$(curl -s ${URL_ARM}${SHIM}.sha512)" + ;; + 404) + echo "Release ${VERSION} not found" + EXIT=1 + ;; + *) + echo "Error occured with status ${STATUS}" + EXIT=2 + ;; +esac + +exit $EXIT From 27b50850b2a0d89536c97659f6bfb5c0ee363716 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 10 Nov 2022 17:53:37 +0100 Subject: [PATCH 370/971] Remove redundant editorconfigs --- spot-client/.editorconfig | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 spot-client/.editorconfig diff --git a/spot-client/.editorconfig b/spot-client/.editorconfig deleted file mode 100644 index a467ee9..0000000 --- a/spot-client/.editorconfig +++ /dev/null @@ -1,8 +0,0 @@ -root = true - -[*] -charset = utf-8 -end_of_line = lf -insert_final_newline = true -indent_style = tab -tab_width = 4 From ec7b51fcdd981f35997e93b11d165f9ac5e6ee7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 11 Nov 2022 16:15:27 +0100 Subject: [PATCH 371/971] upgpkg: sublime-text-4 4.4143-1 upstream release --- sublime-text-4/.SRCINFO | 10 +++++----- sublime-text-4/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-4/.SRCINFO b/sublime-text-4/.SRCINFO index 9216fab..1d04289 100644 --- a/sublime-text-4/.SRCINFO +++ b/sublime-text-4/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-4 pkgdesc = Sophisticated text editor for code, html and prose - stable build - pkgver = 4.4142 + pkgver = 4.4143 pkgrel = 1 url = https://www.sublimetext.com/download arch = x86_64 @@ -13,9 +13,9 @@ pkgbase = sublime-text-4 conflicts = sublime-text source = sublime_text.desktop sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4142_x64.tar.xz - sha256sums_x86_64 = 26b14bd7bb6b72c51c4bf6d86d26cc8539d233295ae8092830823696dda70306 - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4142_arm64.tar.xz - sha256sums_aarch64 = afa6f13985d5036440a3ca6b74143bfe048d2853e6c035b9a2c6e5204d1acd3e + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4143_x64.tar.xz + sha256sums_x86_64 = 7de862c38d19367414117110328dded754ac709fed54c8cc5cb0737c894c073c + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4143_arm64.tar.xz + sha256sums_aarch64 = e33a4d1d51073bdf2f1dc5936ea9b096b078f87230a10a23790beaee702a4a93 pkgname = sublime-text-4 diff --git a/sublime-text-4/PKGBUILD b/sublime-text-4/PKGBUILD index d224870..68df7ae 100644 --- a/sublime-text-4/PKGBUILD +++ b/sublime-text-4/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Manuel Hüsers pkgname=sublime-text-4 -pkgver=4.4142 +pkgver=4.4143 pkgrel=1 pkgdesc="Sophisticated text editor for code, html and prose - stable build" arch=('x86_64' 'aarch64') @@ -17,8 +17,8 @@ source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_ source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') -sha256sums_x86_64=('26b14bd7bb6b72c51c4bf6d86d26cc8539d233295ae8092830823696dda70306') -sha256sums_aarch64=('afa6f13985d5036440a3ca6b74143bfe048d2853e6c035b9a2c6e5204d1acd3e') +sha256sums_x86_64=('7de862c38d19367414117110328dded754ac709fed54c8cc5cb0737c894c073c') +sha256sums_aarch64=('e33a4d1d51073bdf2f1dc5936ea9b096b078f87230a10a23790beaee702a4a93') package() { cd "${srcdir}" From b60360437fc7674fcf7faccd73aff4a47cd9b8dc Mon Sep 17 00:00:00 2001 From: Christian Pellegrin Date: Sat, 12 Nov 2022 21:32:48 +0100 Subject: [PATCH 372/971] upgpkg: systemtap 4.8-1 upstream release --- .SRCINFO | 8 ++++---- PKGBUILD | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index dbdde16..1b651cb 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = systemtap pkgdesc = Infrastructure to simplify the gathering of information about the running Linux system - pkgver = 4.7 + pkgver = 4.8 pkgrel = 1 url = http://sourceware.org/systemtap/ install = systemtap.install @@ -15,12 +15,12 @@ pkgbase = systemtap depends = python depends = cpio optdepends = sqlite3: for storing results in a database - source = systemtap-4.7.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-4.7.tar.gz - source = systemtap-4.7.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/systemtap-4.7.tar.gz.sig + source = systemtap-4.8.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-4.8.tar.gz + source = systemtap-4.8.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/systemtap-4.8.tar.gz.sig validpgpkeys = F75E6545B9F8AA15AA932A444DE16D68FDBFFFB8 validpgpkeys = 5D38116FA4D3A7CC77E378D37E83610126DCC2E8 validpgpkeys = 159B0DF71150B8A8539A8802D7C256443CC637CA - sha512sums = 7d7c213dc4f7c5430f81763668da21403fbc351d1701b1096eb1ad233e3f0325e35f01dfd0a33e75f277b26fdde88c46d42dd32e32e4d4f27a45d53e2dd0f831 + sha512sums = fdcbc48ba17b2155c1419d99147a4cfbee2e69db945bfd0e6881b71ab11165bd23ea7ce9456856ae36807fb18f9934880a6b7c44456b63833ea260038744d9f2 sha512sums = SKIP pkgname = systemtap diff --git a/PKGBUILD b/PKGBUILD index 50d6398..6ac031d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ # Original Maintainer: Christian Rebischke # Original Maintainer: dront78 pkgname=systemtap -pkgver=4.7 +pkgver=4.8 pkgrel=1 pkgdesc="Infrastructure to simplify the gathering of information about the running Linux system" url="http://sourceware.org/systemtap/" @@ -16,7 +16,7 @@ optdepends=('sqlite3: for storing results in a database') source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz" "${pkgname}-${pkgver}.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz.sig" ) -sha512sums=('7d7c213dc4f7c5430f81763668da21403fbc351d1701b1096eb1ad233e3f0325e35f01dfd0a33e75f277b26fdde88c46d42dd32e32e4d4f27a45d53e2dd0f831' +sha512sums=('fdcbc48ba17b2155c1419d99147a4cfbee2e69db945bfd0e6881b71ab11165bd23ea7ce9456856ae36807fb18f9934880a6b7c44456b63833ea260038744d9f2' 'SKIP') install='systemtap.install' # Note, you need to run: From 16cbab618fabe0d4ac6900e0ef362bce01976d73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 15 Nov 2022 17:16:35 +0100 Subject: [PATCH 373/971] upgpkg: sublime-text-3 3.3211-2 Allow installation next to sublime-text --- sublime-text-3/.SRCINFO | 14 ++------ sublime-text-3/.gitignore | 4 --- sublime-text-3/LICENSE | 13 -------- sublime-text-3/PKGBUILD | 48 ++++++++++----------------- sublime-text-3/sublime-text-3.install | 18 ++++++++++ 5 files changed, 38 insertions(+), 59 deletions(-) delete mode 100644 sublime-text-3/.gitignore delete mode 100644 sublime-text-3/LICENSE create mode 100644 sublime-text-3/sublime-text-3.install diff --git a/sublime-text-3/.SRCINFO b/sublime-text-3/.SRCINFO index addfb1f..be124a1 100644 --- a/sublime-text-3/.SRCINFO +++ b/sublime-text-3/.SRCINFO @@ -1,24 +1,14 @@ pkgbase = sublime-text-3 pkgdesc = Sophisticated text editor for code, html and prose - stable build pkgver = 3.3211 - pkgrel = 1 + pkgrel = 2 url = https://www.sublimetext.com/3 + install = sublime-text-3.install arch = x86_64 license = custom depends = libpng depends = gtk2 - provides = sublime-text - conflicts = sublime-text-4-dev - conflicts = sublime-text-4 - conflicts = sublime-text-3-imfix - conflicts = sublime-text-imfix - conflicts = sublime-text-nightly - conflicts = sublime-text-dev - conflicts = sublime-text2 - replaces = sublime-text-3-imfix source = https://download.sublimetext.com/sublime_text_3_build_3211_x64.tar.bz2 - source = LICENSE sha256sums = 0b3c8ca5e6df376c3c24a4b9ac2e3b391333f73b229bc6e87d0b4a5f636d74ee - sha256sums = 339dbd1b6ae3e699809afcdd6c690299e6fa0d385aa2ef658a52d336a3f8107f pkgname = sublime-text-3 diff --git a/sublime-text-3/.gitignore b/sublime-text-3/.gitignore deleted file mode 100644 index 2f39e2f..0000000 --- a/sublime-text-3/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -/*.tar.bz2 -/*.pkg.tar.xz -/pkg -/src diff --git a/sublime-text-3/LICENSE b/sublime-text-3/LICENSE deleted file mode 100644 index 981842a..0000000 --- a/sublime-text-3/LICENSE +++ /dev/null @@ -1,13 +0,0 @@ -Maintainer note: -Sublime Text is free to use, if you want access to the newer builds, with the package -`sublime-text-4-dev` or `sublime-text-dev`, you'll need a paid license. - -Buying a license also supports the development of the editor. - ---- - -Sublime Text may be downloaded and evaluated for free, however a license must be purchased for -continued use. Licenses are per-user, rather than per-machine, so you can enjoy Sublime Text on as -many computers and operating systems as you wish with your license. - -For more information, please visit https://www.sublimetext.com/buy diff --git a/sublime-text-3/PKGBUILD b/sublime-text-3/PKGBUILD index a3c3ca6..28dad93 100644 --- a/sublime-text-3/PKGBUILD +++ b/sublime-text-3/PKGBUILD @@ -1,36 +1,26 @@ -# Maintainer: marcospb19 +# Maintainer: Manuel Hüsers +# Contributor: marcospb19 pkgname=sublime-text-3 pkgver=3.3211 -pkgrel=1 +pkgrel=2 pkgdesc="Sophisticated text editor for code, html and prose - stable build" arch=('x86_64') url='https://www.sublimetext.com/3' license=('custom') depends=('libpng' 'gtk2') - -replaces=('sublime-text-3-imfix') - -conflicts=('sublime-text-4-dev' - 'sublime-text-4' - 'sublime-text-3-imfix' - 'sublime-text-imfix' - 'sublime-text-nightly' - 'sublime-text-dev' - 'sublime-text2') - -provides=('sublime-text') - -source=( - "https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2" - 'LICENSE' -) -sha256sums=('0b3c8ca5e6df376c3c24a4b9ac2e3b391333f73b229bc6e87d0b4a5f636d74ee' - '339dbd1b6ae3e699809afcdd6c690299e6fa0d385aa2ef658a52d336a3f8107f') +install="${pkgname}.install" +source=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2") +sha256sums=('0b3c8ca5e6df376c3c24a4b9ac2e3b391333f73b229bc6e87d0b4a5f636d74ee') package() { cd "${srcdir}" + # Adjust naming + sed -i 's#/opt/sublime_text/sublime_text#/opt/sublime_text_3/sublime_text#g' "sublime_text_3/sublime_text.desktop" + sed -i 's#Sublime Text#Sublime Text 3#g' "sublime_text_3/sublime_text.desktop" + sed -i 's#sublime-text#sublime-text-3#g' "sublime_text_3/sublime_text.desktop" + # Install sublime text 3 install -dm755 "${pkgdir}/opt" cp --preserve=mode -r "sublime_text_3" "${pkgdir}/opt/sublime_text_3" @@ -38,17 +28,15 @@ package() { # Install icons for res in 128x128 16x16 256x256 32x32 48x48; do install -dm755 "${pkgdir}/usr/share/icons/hicolor/${res}/apps" - ln -s "/opt/sublime_text_3/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text.png" + ln -s "/opt/sublime_text_3/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text-3.png" done # Install desktop entry and executable - install -dm755 "${pkgdir}/usr/share/applications" - install -Dm644 "sublime_text_3/sublime_text.desktop" "${pkgdir}/usr/share/applications/sublime_text.desktop" - sed -i 's#/opt/sublime_text/sublime_text#subl#g' "${pkgdir}/usr/share/applications/sublime_text.desktop" - install -dm755 "${pkgdir}/usr/bin" - ln -s "/opt/sublime_text_3/sublime_text" "${pkgdir}/usr/bin/subl" + sed -i 's#/opt/sublime_text_3/sublime_text#/usr/bin/subl3#g' "sublime_text_3/sublime_text.desktop" - # Install license file - install -d "${pkgdir}/usr/share/licenses/${pkgname}" - install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + install -dm755 "${pkgdir}/usr/share/applications" + install -Dm644 "sublime_text_3/sublime_text.desktop" "${pkgdir}/usr/share/applications/sublime_text_3.desktop" + + install -dm755 "${pkgdir}/usr/bin" + ln -s "/opt/sublime_text_3/sublime_text" "${pkgdir}/usr/bin/subl3" } diff --git a/sublime-text-3/sublime-text-3.install b/sublime-text-3/sublime-text-3.install new file mode 100644 index 0000000..83f0138 --- /dev/null +++ b/sublime-text-3/sublime-text-3.install @@ -0,0 +1,18 @@ +post_install() { + cat << _EOF + + ==> sublime-text-3 install note: + ------------------------------------------------------------------------------ + Since this is the last version of Sublime Text 3, you might want to disable + in-application reminders about new Sublime Text versions (reportedly only + works as a licensed user). + + Add the following setting to your User Preferences file: + "update_check": false + +_EOF +} + +post_upgrade() { + post_install +} From 651f681329555e70c7cb753325dbb5b8729702c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 15 Nov 2022 17:21:20 +0100 Subject: [PATCH 374/971] upgpkg: sublime-text-4 4.4143-2 Update formatting Use included desktop file Remove obsolete optdepends --- sublime-text-4/.SRCINFO | 5 +---- sublime-text-4/PKGBUILD | 17 ++++++++--------- sublime-text-4/sublime_text.desktop | 24 ------------------------ 3 files changed, 9 insertions(+), 37 deletions(-) delete mode 100644 sublime-text-4/sublime_text.desktop diff --git a/sublime-text-4/.SRCINFO b/sublime-text-4/.SRCINFO index 1d04289..dad6b7d 100644 --- a/sublime-text-4/.SRCINFO +++ b/sublime-text-4/.SRCINFO @@ -1,18 +1,15 @@ pkgbase = sublime-text-4 pkgdesc = Sophisticated text editor for code, html and prose - stable build pkgver = 4.4143 - pkgrel = 1 + pkgrel = 2 url = https://www.sublimetext.com/download arch = x86_64 arch = aarch64 license = custom depends = libpng depends = gtk3 - optdepends = gksu: sudo-save support provides = sublime-text conflicts = sublime-text - source = sublime_text.desktop - sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf source_x86_64 = https://download.sublimetext.com/sublime_text_build_4143_x64.tar.xz sha256sums_x86_64 = 7de862c38d19367414117110328dded754ac709fed54c8cc5cb0737c894c073c source_aarch64 = https://download.sublimetext.com/sublime_text_build_4143_arm64.tar.xz diff --git a/sublime-text-4/PKGBUILD b/sublime-text-4/PKGBUILD index 68df7ae..1f76103 100644 --- a/sublime-text-4/PKGBUILD +++ b/sublime-text-4/PKGBUILD @@ -2,21 +2,18 @@ pkgname=sublime-text-4 pkgver=4.4143 -pkgrel=1 -pkgdesc="Sophisticated text editor for code, html and prose - stable build" +pkgrel=2 +pkgdesc='Sophisticated text editor for code, html and prose - stable build' arch=('x86_64' 'aarch64') -url="https://www.sublimetext.com/download" +url='https://www.sublimetext.com/download' license=('custom') depends=('libpng' 'gtk3') -optdepends=('gksu: sudo-save support') conflicts=('sublime-text') provides=('sublime-text') -source=('sublime_text.desktop') source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') sha256sums_x86_64=('7de862c38d19367414117110328dded754ac709fed54c8cc5cb0737c894c073c') sha256sums_aarch64=('e33a4d1d51073bdf2f1dc5936ea9b096b078f87230a10a23790beaee702a4a93') @@ -24,16 +21,18 @@ package() { cd "${srcdir}" install -dm755 "${pkgdir}/opt" - cp --preserve=mode -r "sublime_text" "${pkgdir}/opt/sublime_text" + cp --preserve=mode -r 'sublime_text' "${pkgdir}/opt/sublime_text" for res in 128x128 16x16 256x256 32x32 48x48; do install -dm755 "${pkgdir}/usr/share/icons/hicolor/${res}/apps" ln -s "/opt/sublime_text/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text.png" done + sed -i 's#/opt/sublime_text/sublime_text#/usr/bin/subl#g' 'sublime_text/sublime_text.desktop' + install -dm755 "${pkgdir}/usr/share/applications" - install -Dm644 "sublime_text.desktop" "${pkgdir}/usr/share/applications/sublime_text.desktop" + install -Dm644 'sublime_text/sublime_text.desktop' "${pkgdir}/usr/share/applications/sublime_text.desktop" install -dm755 "${pkgdir}/usr/bin" - ln -s "/opt/sublime_text/sublime_text" "${pkgdir}/usr/bin/subl" + ln -s '/opt/sublime_text/sublime_text' "${pkgdir}/usr/bin/subl" } diff --git a/sublime-text-4/sublime_text.desktop b/sublime-text-4/sublime_text.desktop deleted file mode 100644 index f678850..0000000 --- a/sublime-text-4/sublime_text.desktop +++ /dev/null @@ -1,24 +0,0 @@ -[Desktop Entry] -Version=1.0 -Type=Application -Name=Sublime Text -GenericName=Text Editor -Comment=Sophisticated text editor for code, markup and prose -Exec=subl %F -Terminal=false -MimeType=text/plain; -Icon=sublime-text -Categories=TextEditor;Development; -StartupNotify=true -StartupWMClass=subl -Actions=Window;Document; - -[Desktop Action Window] -Name=New Window -Exec=subl -n -OnlyShowIn=Unity; - -[Desktop Action Document] -Name=New File -Exec=subl --command new_file -OnlyShowIn=Unity; From 6c6a3546ab86c49f7b18d84e7a3fed0d73f2bd0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 15 Nov 2022 17:24:05 +0100 Subject: [PATCH 375/971] upgpkg: sublime-text-dev 4.4141-2 Update formatting Use included desktop file Remove obsolete optdepends --- sublime-text-dev/.SRCINFO | 5 +---- sublime-text-dev/PKGBUILD | 17 ++++++++--------- sublime-text-dev/sublime_text.desktop | 24 ------------------------ 3 files changed, 9 insertions(+), 37 deletions(-) delete mode 100644 sublime-text-dev/sublime_text.desktop diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 9c11952..14ff8a3 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build pkgver = 4.4141 - pkgrel = 1 + pkgrel = 2 url = https://www.sublimetext.com/dev install = sublime-text-dev.install arch = x86_64 @@ -9,11 +9,8 @@ pkgbase = sublime-text-dev license = custom depends = libpng depends = gtk3 - optdepends = gksu: sudo-save support provides = sublime-text conflicts = sublime-text - source = sublime_text.desktop - sha256sums = e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf source_x86_64 = https://download.sublimetext.com/sublime_text_build_4141_x64.tar.xz sha256sums_x86_64 = 785a3dbf8852ae9d60579e9a755c8507db0e02939794a36f5415b4c1b1581b88 source_aarch64 = https://download.sublimetext.com/sublime_text_build_4141_arm64.tar.xz diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 8c645a7..7e38d31 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -4,22 +4,19 @@ pkgname=sublime-text-dev pkgver=4.4141 -pkgrel=1 -pkgdesc="Sophisticated text editor for code, html and prose - dev build" +pkgrel=2 +pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') -url="https://www.sublimetext.com/dev" +url='https://www.sublimetext.com/dev' license=('custom') depends=('libpng' 'gtk3') -optdepends=('gksu: sudo-save support') conflicts=('sublime-text') provides=('sublime-text') install=${pkgname}.install -source=('sublime_text.desktop') source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha256sums=('e991aac5207655dadf69c6f74c194c80009fb9767d7710337f586908969aa9cf') sha256sums_x86_64=('785a3dbf8852ae9d60579e9a755c8507db0e02939794a36f5415b4c1b1581b88') sha256sums_aarch64=('326c12a6dbd21f9d3bf97f464fc182e2dcd917311f4f6a4a73efd0bb949b3243') @@ -27,16 +24,18 @@ package() { cd "${srcdir}" install -dm755 "${pkgdir}/opt" - cp --preserve=mode -r "sublime_text" "${pkgdir}/opt/sublime_text" + cp --preserve=mode -r 'sublime_text' "${pkgdir}/opt/sublime_text" for res in 128x128 16x16 256x256 32x32 48x48; do install -dm755 "${pkgdir}/usr/share/icons/hicolor/${res}/apps" ln -s "/opt/sublime_text/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text.png" done + sed -i 's#/opt/sublime_text/sublime_text#/usr/bin/subl#g' 'sublime_text/sublime_text.desktop' + install -dm755 "${pkgdir}/usr/share/applications" - install -Dm644 "sublime_text.desktop" "${pkgdir}/usr/share/applications/sublime_text.desktop" + install -Dm644 'sublime_text/sublime_text.desktop' "${pkgdir}/usr/share/applications/sublime_text.desktop" install -dm755 "${pkgdir}/usr/bin" - ln -s "/opt/sublime_text/sublime_text" "${pkgdir}/usr/bin/subl" + ln -s '/opt/sublime_text/sublime_text' "${pkgdir}/usr/bin/subl" } diff --git a/sublime-text-dev/sublime_text.desktop b/sublime-text-dev/sublime_text.desktop deleted file mode 100644 index f678850..0000000 --- a/sublime-text-dev/sublime_text.desktop +++ /dev/null @@ -1,24 +0,0 @@ -[Desktop Entry] -Version=1.0 -Type=Application -Name=Sublime Text -GenericName=Text Editor -Comment=Sophisticated text editor for code, markup and prose -Exec=subl %F -Terminal=false -MimeType=text/plain; -Icon=sublime-text -Categories=TextEditor;Development; -StartupNotify=true -StartupWMClass=subl -Actions=Window;Document; - -[Desktop Action Window] -Name=New Window -Exec=subl -n -OnlyShowIn=Unity; - -[Desktop Action Document] -Name=New File -Exec=subl --command new_file -OnlyShowIn=Unity; From 95be8e0fc11b7308a875e3175b5054ac8645676a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 15 Nov 2022 17:25:15 +0100 Subject: [PATCH 376/971] upgpkg: firefox-syncstorage 0.13.0-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index aa7be2c..a2814d4 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.12.5 + pkgver = 0.13.0 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -20,9 +20,9 @@ pkgbase = firefox-syncstorage depends = python-tokenlib optdepends = mysql: for use with a local database server backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.12.5.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.13.0.tar.gz source = firefox-syncstorage.service - sha256sums = e9904c3571789f5ba29645a69def5f7550ebd544d51c3af5a4b5a2c1b1b72135 + sha256sums = 62c9922f3fc8067da511780fbdd7e41a55d18ec0790827ec253a17fcc60022a7 sha256sums = 609e057cd835ea54b06b32b98e210cd946255f652e7754c9160fd7c94379a83d pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index 28f7d08..d2d68c0 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.12.5 +pkgver=0.13.0 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -17,7 +17,7 @@ optdepends=('mysql: for use with a local database server') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}.tar.gz" "${pkgname}.service") -sha256sums=('e9904c3571789f5ba29645a69def5f7550ebd544d51c3af5a4b5a2c1b1b72135' +sha256sums=('62c9922f3fc8067da511780fbdd7e41a55d18ec0790827ec253a17fcc60022a7' '609e057cd835ea54b06b32b98e210cd946255f652e7754c9160fd7c94379a83d') backup=("etc/${pkgname}.toml") @@ -30,7 +30,7 @@ package() { cd "${_pkgname}-${pkgver}" # Installing manually - install -Dm 755 target/release/syncstorage "${pkgdir}"/usr/bin/"${pkgname}" + install -Dm 755 target/release/syncserver "${pkgdir}"/usr/bin/"${pkgname}" install -Dm 644 config/local.example.toml "${pkgdir}"/etc/"${pkgname}".toml install -Dm 644 "${srcdir}/${pkgname}".service "${pkgdir}"/usr/lib/systemd/system/"${pkgname}".service } From 242661b737e67e389880571f515f8f65f961ac01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 15 Nov 2022 17:29:49 +0100 Subject: [PATCH 377/971] Update indentation and formatting --- clonezilla-unstable/PKGBUILD | 14 +++++------ obs-vkcapture/PKGBUILD | 46 ++++++++++++++++++------------------ sublime-text-3/PKGBUILD | 38 ++++++++++++++--------------- sublime-text-4/PKGBUILD | 24 +++++++++---------- sublime-text-dev/PKGBUILD | 24 +++++++++---------- 5 files changed, 73 insertions(+), 73 deletions(-) diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index d3c760f..1223eb9 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -9,24 +9,24 @@ arch=('any') url="https://clonezilla.org" license=('GPL2') depends=('drbl' 'partclone' 'ntfs-3g' 'partimage' 'pigz' 'sshfs' 'parted' - 'gptfdisk' 'dosfstools' 'gzip' 'bzip2' 'pbzip2' 'lbzip2' 'lrzip' - 'xz' 'pixz' 'lzop' 'ecryptfs-utils' 'screen' 'perl' 'cifs-utils') + 'gptfdisk' 'dosfstools' 'gzip' 'bzip2' 'pbzip2' 'lbzip2' 'lrzip' + 'xz' 'pixz' 'lzop' 'ecryptfs-utils' 'screen' 'perl' 'cifs-utils') backup=('etc/drbl/drbl-ocs.conf') conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" - 'usrbin.patch') + 'usrbin.patch') sha256sums=('c6da5fed444286509b6573ad59083968f430660007623be67285e833264841a5' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { - cd "${_pkgname}-${pkgver}" + cd "${_pkgname}-${pkgver}" - patch -Np0 -i "${srcdir}/usrbin.patch" + patch -Np0 -i "${srcdir}/usrbin.patch" } package() { - cd "${_pkgname}-${pkgver}" + cd "${_pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install + make DESTDIR="${pkgdir}" install } diff --git a/obs-vkcapture/PKGBUILD b/obs-vkcapture/PKGBUILD index c3db132..0f707a0 100644 --- a/obs-vkcapture/PKGBUILD +++ b/obs-vkcapture/PKGBUILD @@ -13,37 +13,37 @@ source=("https://github.com/nowrep/$pkgbase/archive/v$pkgver.tar.gz") sha512sums=('55ba0c449cef9c80db82e98a2f6e282dfbf00a7ef0c180e307bd602ae13aadbb0383a38a56dcf4d67ed7ac1e5dd392be7ef71bb1e6f39278da69ed110c159bb0') build() { - cmake -B build -S "$pkgbase-$pkgver" \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_INSTALL_LIBDIR=lib \ - -DCMAKE_INSTALL_DATADIR=/share \ - -DCMAKE_BUILD_TYPE=Release - make -C build -j $(nproc) + cmake -B build -S "$pkgbase-$pkgver" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib \ + -DCMAKE_INSTALL_DATADIR=/share \ + -DCMAKE_BUILD_TYPE=Release + make -C build -j $(nproc) - export CFLAGS="-m32 ${CFLAGS}" - export CXXFLAGS="-m32 ${CXXFLAGS}" - export LDFLAGS="-m32 ${LDFLAGS}" + export CFLAGS="-m32 ${CFLAGS}" + export CXXFLAGS="-m32 ${CXXFLAGS}" + export LDFLAGS="-m32 ${LDFLAGS}" - cmake -B build32 -S "$pkgbase-$pkgver" \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_INSTALL_LIBDIR=lib32 \ - -DCMAKE_INSTALL_DATADIR=/share \ - -DCMAKE_LIBRARY_PATH=/usr/lib32 \ - -DCMAKE_BUILD_TYPE=Release \ - -DBUILD_PLUGIN=OFF - make -C build32 -j $(nproc) + cmake -B build32 -S "$pkgbase-$pkgver" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib32 \ + -DCMAKE_INSTALL_DATADIR=/share \ + -DCMAKE_LIBRARY_PATH=/usr/lib32 \ + -DCMAKE_BUILD_TYPE=Release \ + -DBUILD_PLUGIN=OFF + make -C build32 -j $(nproc) } package_obs-vkcapture() { - pkgdesc='OBS Linux Vulkan/OpenGL game capture' + pkgdesc='OBS Linux Vulkan/OpenGL game capture' - make -C build DESTDIR="$pkgdir" install + make -C build DESTDIR="$pkgdir" install } package_lib32-obs-vkcapture() { - pkgdesc='OBS Linux Vulkan/OpenGL game capture (32-bit)' - depends=('lib32-vulkan-icd-loader' 'lib32-libgl') + pkgdesc='OBS Linux Vulkan/OpenGL game capture (32-bit)' + depends=('lib32-vulkan-icd-loader' 'lib32-libgl') - make -C build32 DESTDIR="$pkgdir" install - rm -r "$pkgdir/usr/bin" + make -C build32 DESTDIR="$pkgdir" install + rm -r "$pkgdir/usr/bin" } diff --git a/sublime-text-3/PKGBUILD b/sublime-text-3/PKGBUILD index 28dad93..cede3fd 100644 --- a/sublime-text-3/PKGBUILD +++ b/sublime-text-3/PKGBUILD @@ -14,29 +14,29 @@ source=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x64.t sha256sums=('0b3c8ca5e6df376c3c24a4b9ac2e3b391333f73b229bc6e87d0b4a5f636d74ee') package() { - cd "${srcdir}" + cd "${srcdir}" - # Adjust naming - sed -i 's#/opt/sublime_text/sublime_text#/opt/sublime_text_3/sublime_text#g' "sublime_text_3/sublime_text.desktop" - sed -i 's#Sublime Text#Sublime Text 3#g' "sublime_text_3/sublime_text.desktop" - sed -i 's#sublime-text#sublime-text-3#g' "sublime_text_3/sublime_text.desktop" + # Adjust naming + sed -i 's#/opt/sublime_text/sublime_text#/opt/sublime_text_3/sublime_text#g' "sublime_text_3/sublime_text.desktop" + sed -i 's#Sublime Text#Sublime Text 3#g' "sublime_text_3/sublime_text.desktop" + sed -i 's#sublime-text#sublime-text-3#g' "sublime_text_3/sublime_text.desktop" - # Install sublime text 3 - install -dm755 "${pkgdir}/opt" - cp --preserve=mode -r "sublime_text_3" "${pkgdir}/opt/sublime_text_3" + # Install sublime text 3 + install -dm755 "${pkgdir}/opt" + cp --preserve=mode -r "sublime_text_3" "${pkgdir}/opt/sublime_text_3" - # Install icons - for res in 128x128 16x16 256x256 32x32 48x48; do - install -dm755 "${pkgdir}/usr/share/icons/hicolor/${res}/apps" - ln -s "/opt/sublime_text_3/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text-3.png" - done + # Install icons + for res in 128x128 16x16 256x256 32x32 48x48; do + install -dm755 "${pkgdir}/usr/share/icons/hicolor/${res}/apps" + ln -s "/opt/sublime_text_3/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text-3.png" + done - # Install desktop entry and executable - sed -i 's#/opt/sublime_text_3/sublime_text#/usr/bin/subl3#g' "sublime_text_3/sublime_text.desktop" + # Install desktop entry and executable + sed -i 's#/opt/sublime_text_3/sublime_text#/usr/bin/subl3#g' "sublime_text_3/sublime_text.desktop" - install -dm755 "${pkgdir}/usr/share/applications" - install -Dm644 "sublime_text_3/sublime_text.desktop" "${pkgdir}/usr/share/applications/sublime_text_3.desktop" + install -dm755 "${pkgdir}/usr/share/applications" + install -Dm644 "sublime_text_3/sublime_text.desktop" "${pkgdir}/usr/share/applications/sublime_text_3.desktop" - install -dm755 "${pkgdir}/usr/bin" - ln -s "/opt/sublime_text_3/sublime_text" "${pkgdir}/usr/bin/subl3" + install -dm755 "${pkgdir}/usr/bin" + ln -s "/opt/sublime_text_3/sublime_text" "${pkgdir}/usr/bin/subl3" } diff --git a/sublime-text-4/PKGBUILD b/sublime-text-4/PKGBUILD index 1f76103..2533319 100644 --- a/sublime-text-4/PKGBUILD +++ b/sublime-text-4/PKGBUILD @@ -18,21 +18,21 @@ sha256sums_x86_64=('7de862c38d19367414117110328dded754ac709fed54c8cc5cb0737c894c sha256sums_aarch64=('e33a4d1d51073bdf2f1dc5936ea9b096b078f87230a10a23790beaee702a4a93') package() { - cd "${srcdir}" + cd "${srcdir}" - install -dm755 "${pkgdir}/opt" - cp --preserve=mode -r 'sublime_text' "${pkgdir}/opt/sublime_text" + install -dm755 "${pkgdir}/opt" + cp --preserve=mode -r 'sublime_text' "${pkgdir}/opt/sublime_text" - for res in 128x128 16x16 256x256 32x32 48x48; do - install -dm755 "${pkgdir}/usr/share/icons/hicolor/${res}/apps" - ln -s "/opt/sublime_text/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text.png" - done + for res in 128x128 16x16 256x256 32x32 48x48; do + install -dm755 "${pkgdir}/usr/share/icons/hicolor/${res}/apps" + ln -s "/opt/sublime_text/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text.png" + done - sed -i 's#/opt/sublime_text/sublime_text#/usr/bin/subl#g' 'sublime_text/sublime_text.desktop' + sed -i 's#/opt/sublime_text/sublime_text#/usr/bin/subl#g' 'sublime_text/sublime_text.desktop' - install -dm755 "${pkgdir}/usr/share/applications" - install -Dm644 'sublime_text/sublime_text.desktop' "${pkgdir}/usr/share/applications/sublime_text.desktop" + install -dm755 "${pkgdir}/usr/share/applications" + install -Dm644 'sublime_text/sublime_text.desktop' "${pkgdir}/usr/share/applications/sublime_text.desktop" - install -dm755 "${pkgdir}/usr/bin" - ln -s '/opt/sublime_text/sublime_text' "${pkgdir}/usr/bin/subl" + install -dm755 "${pkgdir}/usr/bin" + ln -s '/opt/sublime_text/sublime_text' "${pkgdir}/usr/bin/subl" } diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 7e38d31..a7bd0e2 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -21,21 +21,21 @@ sha256sums_x86_64=('785a3dbf8852ae9d60579e9a755c8507db0e02939794a36f5415b4c1b158 sha256sums_aarch64=('326c12a6dbd21f9d3bf97f464fc182e2dcd917311f4f6a4a73efd0bb949b3243') package() { - cd "${srcdir}" + cd "${srcdir}" - install -dm755 "${pkgdir}/opt" - cp --preserve=mode -r 'sublime_text' "${pkgdir}/opt/sublime_text" + install -dm755 "${pkgdir}/opt" + cp --preserve=mode -r 'sublime_text' "${pkgdir}/opt/sublime_text" - for res in 128x128 16x16 256x256 32x32 48x48; do - install -dm755 "${pkgdir}/usr/share/icons/hicolor/${res}/apps" - ln -s "/opt/sublime_text/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text.png" - done + for res in 128x128 16x16 256x256 32x32 48x48; do + install -dm755 "${pkgdir}/usr/share/icons/hicolor/${res}/apps" + ln -s "/opt/sublime_text/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text.png" + done - sed -i 's#/opt/sublime_text/sublime_text#/usr/bin/subl#g' 'sublime_text/sublime_text.desktop' + sed -i 's#/opt/sublime_text/sublime_text#/usr/bin/subl#g' 'sublime_text/sublime_text.desktop' - install -dm755 "${pkgdir}/usr/share/applications" - install -Dm644 'sublime_text/sublime_text.desktop' "${pkgdir}/usr/share/applications/sublime_text.desktop" + install -dm755 "${pkgdir}/usr/share/applications" + install -Dm644 'sublime_text/sublime_text.desktop' "${pkgdir}/usr/share/applications/sublime_text.desktop" - install -dm755 "${pkgdir}/usr/bin" - ln -s '/opt/sublime_text/sublime_text' "${pkgdir}/usr/bin/subl" + install -dm755 "${pkgdir}/usr/bin" + ln -s '/opt/sublime_text/sublime_text' "${pkgdir}/usr/bin/subl" } From 19accbb29374f03013444734eee2d5c5e016ee01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 15 Nov 2022 17:29:49 +0100 Subject: [PATCH 378/971] Update indentation and formatting --- PKGBUILD | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index d3c760f..1223eb9 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -9,24 +9,24 @@ arch=('any') url="https://clonezilla.org" license=('GPL2') depends=('drbl' 'partclone' 'ntfs-3g' 'partimage' 'pigz' 'sshfs' 'parted' - 'gptfdisk' 'dosfstools' 'gzip' 'bzip2' 'pbzip2' 'lbzip2' 'lrzip' - 'xz' 'pixz' 'lzop' 'ecryptfs-utils' 'screen' 'perl' 'cifs-utils') + 'gptfdisk' 'dosfstools' 'gzip' 'bzip2' 'pbzip2' 'lbzip2' 'lrzip' + 'xz' 'pixz' 'lzop' 'ecryptfs-utils' 'screen' 'perl' 'cifs-utils') backup=('etc/drbl/drbl-ocs.conf') conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" - 'usrbin.patch') + 'usrbin.patch') sha256sums=('c6da5fed444286509b6573ad59083968f430660007623be67285e833264841a5' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { - cd "${_pkgname}-${pkgver}" + cd "${_pkgname}-${pkgver}" - patch -Np0 -i "${srcdir}/usrbin.patch" + patch -Np0 -i "${srcdir}/usrbin.patch" } package() { - cd "${_pkgname}-${pkgver}" + cd "${_pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install + make DESTDIR="${pkgdir}" install } From ac9b2e9d75ba3e6a55a94fa24ea4288f6d8ccdf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 17 Nov 2022 22:25:47 +0100 Subject: [PATCH 379/971] upgpkg: discord-electron-bin 0.0.21-2 Don't strip package to not break Krisp noise supression. FS#76334 --- discord-electron-bin/.SRCINFO | 3 ++- discord-electron-bin/PKGBUILD | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/discord-electron-bin/.SRCINFO b/discord-electron-bin/.SRCINFO index bb0b728..7b536de 100644 --- a/discord-electron-bin/.SRCINFO +++ b/discord-electron-bin/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-bin pkgdesc = Discord using system provided electron (v13) for increased security and performance pkgver = 0.0.21 - pkgrel = 1 + pkgrel = 2 url = https://discord.com arch = x86_64 license = custom @@ -13,6 +13,7 @@ pkgbase = discord-electron-bin optdepends = xdg-utils: Open files provides = discord conflicts = discord + options = !strip source = https://dl.discordapp.net/apps/linux/0.0.21/discord-0.0.21.tar.gz sha512sums = 149ae5b8b7d92549e12eca52e45d3f5761ef022ae321cf33fadc3b56c4cee0616a5166380faea038256213713a7aa90e1befc4caa3e6a4de8e15c1cb1d8f925d diff --git a/discord-electron-bin/PKGBUILD b/discord-electron-bin/PKGBUILD index 0539137..8266ded 100644 --- a/discord-electron-bin/PKGBUILD +++ b/discord-electron-bin/PKGBUILD @@ -14,13 +14,14 @@ _pkgname=discord _electron=13 #_electron=19 pkgver=0.0.21 -pkgrel=1 +pkgrel=2 pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') provides=("${_pkgname}") conflicts=("${_pkgname}") url='https://discord.com' license=('custom') +options=('!strip') depends=("electron${_electron}") makedepends=('asar' 'curl' 'python-html2text') optdepends=( From 92bc518a4bfdb1b3b553869e17be133d4eaeac9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 23 Nov 2022 17:50:04 +0100 Subject: [PATCH 380/971] Revert setting jobs option for make This option should be set in makepkg.conf instead of being passed by the package --- bino/PKGBUILD | 2 +- obs-vkcapture/PKGBUILD | 4 ++-- qvr/PKGBUILD | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bino/PKGBUILD b/bino/PKGBUILD index 65ec517..15aa6ba 100644 --- a/bino/PKGBUILD +++ b/bino/PKGBUILD @@ -23,7 +23,7 @@ build() { -DCMAKE_BUILD_TYPE=Release \ -DBUILD_TESTING=OFF - make -C build -j $(nproc) + make -C build } package() { diff --git a/obs-vkcapture/PKGBUILD b/obs-vkcapture/PKGBUILD index 0f707a0..11661b1 100644 --- a/obs-vkcapture/PKGBUILD +++ b/obs-vkcapture/PKGBUILD @@ -18,7 +18,7 @@ build() { -DCMAKE_INSTALL_LIBDIR=lib \ -DCMAKE_INSTALL_DATADIR=/share \ -DCMAKE_BUILD_TYPE=Release - make -C build -j $(nproc) + make -C build export CFLAGS="-m32 ${CFLAGS}" export CXXFLAGS="-m32 ${CXXFLAGS}" @@ -31,7 +31,7 @@ build() { -DCMAKE_LIBRARY_PATH=/usr/lib32 \ -DCMAKE_BUILD_TYPE=Release \ -DBUILD_PLUGIN=OFF - make -C build32 -j $(nproc) + make -C build32 } package_obs-vkcapture() { diff --git a/qvr/PKGBUILD b/qvr/PKGBUILD index 81e3692..7550dc7 100644 --- a/qvr/PKGBUILD +++ b/qvr/PKGBUILD @@ -20,7 +20,7 @@ build() { -DCMAKE_BUILD_TYPE=Release \ -DBUILD_TESTING=OFF - make -C build -j $(nproc) + make -C build } package() { From 0789e79be9e7900e675aa8e18aaaddafe7cf4863 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 23 Nov 2022 17:58:12 +0100 Subject: [PATCH 381/971] Use unique file names for sources --- firefox-syncstorage/.SRCINFO | 2 +- firefox-syncstorage/PKGBUILD | 2 +- gvisor-bin/.SRCINFO | 8 ++++---- gvisor-bin/PKGBUILD | 12 ++++++------ plasma5-wallpapers-wallpaper-engine/.SRCINFO | 4 ++-- plasma5-wallpapers-wallpaper-engine/PKGBUILD | 6 +++--- prometheus-postgresql-exporter/.SRCINFO | 2 +- prometheus-postgresql-exporter/PKGBUILD | 2 +- tuned/.SRCINFO | 2 +- tuned/PKGBUILD | 2 +- 10 files changed, 21 insertions(+), 21 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index a2814d4..5ccb692 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -20,7 +20,7 @@ pkgbase = firefox-syncstorage depends = python-tokenlib optdepends = mysql: for use with a local database server backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.13.0.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.13.0/syncstorage-rs-0.13.0.tar.gz source = firefox-syncstorage.service sha256sums = 62c9922f3fc8067da511780fbdd7e41a55d18ec0790827ec253a17fcc60022a7 sha256sums = 609e057cd835ea54b06b32b98e210cd946255f652e7754c9160fd7c94379a83d diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index d2d68c0..b6ff601 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -15,7 +15,7 @@ depends=('openssl' 'python-fxa' 'python-tokenlib') makedepends=('rust' 'cmake' 'pkgconf' 'mariadb-libs') optdepends=('mysql: for use with a local database server') install="${pkgname}.install" -source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}.tar.gz" +source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") sha256sums=('62c9922f3fc8067da511780fbdd7e41a55d18ec0790827ec253a17fcc60022a7' '609e057cd835ea54b06b32b98e210cd946255f652e7754c9160fd7c94379a83d') diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index ed60123..bfac273 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -9,12 +9,12 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20221102.1/x86_64/runsc - source_x86_64 = https://storage.googleapis.com/gvisor/releases/release/20221102.1/x86_64/containerd-shim-runsc-v1 + source_x86_64 = runsc-x86_64-20221102.1::https://storage.googleapis.com/gvisor/releases/release/20221102.1/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20221102.1::https://storage.googleapis.com/gvisor/releases/release/20221102.1/x86_64/containerd-shim-runsc-v1 sha512sums_x86_64 = f47a15449cd2a4b25dc768e4d9275d67c22acda6ebbc46270c38f5f135143f7551475168862b846a408f3858ee7edf725861a6bb3ce9ef2c783d1cab6d177511 sha512sums_x86_64 = 3b8bb9453dfc8cad3b2a1c484d9acb6766c7900d6869e1696214216a0fab994e55409e4065267544a360283b2c824790f605d89749674ddb68dd58086f44f956 - source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20221102.1/aarch64/runsc - source_aarch64 = https://storage.googleapis.com/gvisor/releases/release/20221102.1/aarch64/containerd-shim-runsc-v1 + source_aarch64 = runsc-aarch64-20221102.1::https://storage.googleapis.com/gvisor/releases/release/20221102.1/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20221102.1::https://storage.googleapis.com/gvisor/releases/release/20221102.1/aarch64/containerd-shim-runsc-v1 sha512sums_aarch64 = 87a39bb2e2e87390f6c6c38dbc4bdcced62d07af9128ddead7b0b46bc7bac2f9aa678b8bc5d234dedd9ad5430fe38d0e3df77d65b10589e99f21bdf0516d80b5 sha512sums_aarch64 = 0ec5bd37b91a921bdeb26e92251f37d6c6adba4e2176973017b592e229c7512aa1765be4c4a87be44dfbb6bb30827b05f7e1551eff98ea006499317dec4a9e60 diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index 8d7375e..3e0d707 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -18,12 +18,12 @@ conflicts=( "${pkgname%-bin}" ) source_x86_64=( - "https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/x86_64/$_pkgbin" - "https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/x86_64/$_pkgshim" + "$_pkgbin-x86_64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/x86_64/$_pkgbin" + "$_pkgshim-x86_64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/x86_64/$_pkgshim" ) source_aarch64=( - "https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" - "https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" + "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" + "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) sha512sums_x86_64=('f47a15449cd2a4b25dc768e4d9275d67c22acda6ebbc46270c38f5f135143f7551475168862b846a408f3858ee7edf725861a6bb3ce9ef2c783d1cab6d177511' '3b8bb9453dfc8cad3b2a1c484d9acb6766c7900d6869e1696214216a0fab994e55409e4065267544a360283b2c824790f605d89749674ddb68dd58086f44f956') @@ -31,6 +31,6 @@ sha512sums_aarch64=('87a39bb2e2e87390f6c6c38dbc4bdcced62d07af9128ddead7b0b46bc7b '0ec5bd37b91a921bdeb26e92251f37d6c6adba4e2176973017b592e229c7512aa1765be4c4a87be44dfbb6bb30827b05f7e1551eff98ea006499317dec4a9e60') package() { - install -Dm 755 "$_pkgbin" "$pkgdir/usr/bin/$_pkgbin" - install -Dm 755 "$_pkgshim" "$pkgdir/usr/bin/$_pkgshim" + install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" + install -Dm 755 "$_pkgshim-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgshim" } diff --git a/plasma5-wallpapers-wallpaper-engine/.SRCINFO b/plasma5-wallpapers-wallpaper-engine/.SRCINFO index 502e059..90e241f 100644 --- a/plasma5-wallpapers-wallpaper-engine/.SRCINFO +++ b/plasma5-wallpapers-wallpaper-engine/.SRCINFO @@ -16,8 +16,8 @@ pkgbase = plasma5-wallpapers-wallpaper-engine depends = qt5-websockets optdepends = qt5-webchannel: for web support optdepends = mpv: alternative video backend - source = https://github.com/catsout/wallpaper-engine-kde-plugin/archive/v0.5.4.tar.gz - source = https://github.com/KhronosGroup/glslang/archive/11.10.0.tar.gz + source = https://github.com/catsout/wallpaper-engine-kde-plugin/archive/v0.5.4/wallpaper-engine-kde-plugin-0.5.4.tar.gz + source = https://github.com/KhronosGroup/glslang/archive/11.10.0/glslang-11.10.0.tar.gz sha256sums = 83354734f7ea36e7077206506dd05f0e6877eb51294b820fdbdc398255c6f803 sha256sums = 8ffc19c435232d09299dd2c91e247292b3508c1b826a3497c60682e4bbf2d602 diff --git a/plasma5-wallpapers-wallpaper-engine/PKGBUILD b/plasma5-wallpapers-wallpaper-engine/PKGBUILD index beb660a..940d069 100644 --- a/plasma5-wallpapers-wallpaper-engine/PKGBUILD +++ b/plasma5-wallpapers-wallpaper-engine/PKGBUILD @@ -13,10 +13,10 @@ depends=('gst-libav' 'python-websockets' 'plasma-framework' 'qt5-declarative' 'q makedepends=('extra-cmake-modules' 'qt5-webchannel' 'mpv' 'vulkan-headers') optdepends=('qt5-webchannel: for web support' 'mpv: alternative video backend') -source=("https://github.com/catsout/${_pkgname}/archive/v${pkgver}.tar.gz" - "https://github.com/KhronosGroup/glslang/archive/${_pkgver_glslang}.tar.gz") +source=("https://github.com/catsout/${_pkgname}/archive/v${pkgver}/${_pkgname}-${pkgver}.tar.gz" + "https://github.com/KhronosGroup/glslang/archive/${_pkgver_glslang}/glslang-${_pkgver_glslang}.tar.gz") sha256sums=('83354734f7ea36e7077206506dd05f0e6877eb51294b820fdbdc398255c6f803' - '8ffc19c435232d09299dd2c91e247292b3508c1b826a3497c60682e4bbf2d602') + '8ffc19c435232d09299dd2c91e247292b3508c1b826a3497c60682e4bbf2d602') prepare() { mv -T "glslang-${_pkgver_glslang}" "${_pkgname}-${pkgver}/src/backend_scene/third_party/glslang" diff --git a/prometheus-postgresql-exporter/.SRCINFO b/prometheus-postgresql-exporter/.SRCINFO index 6217143..479e389 100644 --- a/prometheus-postgresql-exporter/.SRCINFO +++ b/prometheus-postgresql-exporter/.SRCINFO @@ -9,7 +9,7 @@ pkgbase = prometheus-postgresql-exporter makedepends = go makedepends = make backup = etc/conf.d/prometheus-postgresql-exporter - source = https://github.com/prometheus-community/postgres_exporter/archive/v0.11.1.tar.gz + source = https://github.com/prometheus-community/postgres_exporter/archive/v0.11.1/postgres_exporter-0.11.1.tar.gz source = prometheus-postgresql-exporter.service source = prometheus-postgresql-exporter.conf sha256sums = 48e38e5cc8f093f93a84b1536c2ae7dc480760f9c443ae654a9f1f83d289a7bc diff --git a/prometheus-postgresql-exporter/PKGBUILD b/prometheus-postgresql-exporter/PKGBUILD index aaf4248..d36f698 100644 --- a/prometheus-postgresql-exporter/PKGBUILD +++ b/prometheus-postgresql-exporter/PKGBUILD @@ -10,7 +10,7 @@ url="https://github.com/prometheus-community/postgres_exporter" license=('Apache') makedepends=('git' 'go' 'make') backup=('etc/conf.d/prometheus-postgresql-exporter') -source=("https://github.com/prometheus-community/postgres_exporter/archive/v${pkgver}.tar.gz" +source=("https://github.com/prometheus-community/postgres_exporter/archive/v${pkgver}/postgres_exporter-${pkgver}.tar.gz" "prometheus-postgresql-exporter.service" "prometheus-postgresql-exporter.conf") sha256sums=('48e38e5cc8f093f93a84b1536c2ae7dc480760f9c443ae654a9f1f83d289a7bc' diff --git a/tuned/.SRCINFO b/tuned/.SRCINFO index 93f411e..6761ce0 100644 --- a/tuned/.SRCINFO +++ b/tuned/.SRCINFO @@ -21,7 +21,7 @@ pkgbase = tuned optdepends = virt-what: For use with virtual machines optdepends = systemtap: Disk and net statistic monitoring systemtap scripts backup = etc/tuned/active_profile - source = https://github.com/redhat-performance/tuned/archive/v2.19.0.tar.gz + source = https://github.com/redhat-performance/tuned/archive/v2.19.0/tuned-2.19.0.tar.gz sha256sums = 3cb2aeb9ecebd66a1a1c3aaff9589f5c5402201d16f7caa01acf0b9374ed8724 pkgname = tuned diff --git a/tuned/PKGBUILD b/tuned/PKGBUILD index e3085cb..dd318d6 100644 --- a/tuned/PKGBUILD +++ b/tuned/PKGBUILD @@ -15,7 +15,7 @@ optdepends=('virt-what: For use with virtual machines' 'systemtap: Disk and net makedepends=('desktop-file-utils') backup=('etc/tuned/active_profile') install="${pkgname}.install" -source=("https://github.com/redhat-performance/${pkgname}/archive/v${pkgver}.tar.gz") +source=("https://github.com/redhat-performance/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz") sha256sums=('3cb2aeb9ecebd66a1a1c3aaff9589f5c5402201d16f7caa01acf0b9374ed8724') prepare() { From 64533bf08301b49034de14687cfe25160c70b585 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 23 Nov 2022 18:02:43 +0100 Subject: [PATCH 382/971] upgpkg: plasma5-wallpapers-wallpaper-engine 0.5.4-3 Bump glslang version --- plasma5-wallpapers-wallpaper-engine/.SRCINFO | 6 +++--- plasma5-wallpapers-wallpaper-engine/PKGBUILD | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/plasma5-wallpapers-wallpaper-engine/.SRCINFO b/plasma5-wallpapers-wallpaper-engine/.SRCINFO index 90e241f..e5871c2 100644 --- a/plasma5-wallpapers-wallpaper-engine/.SRCINFO +++ b/plasma5-wallpapers-wallpaper-engine/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = plasma5-wallpapers-wallpaper-engine pkgdesc = A KDE wallpaper plugin integrating wallpaper engine pkgver = 0.5.4 - pkgrel = 2 + pkgrel = 3 url = https://github.com/catsout/wallpaper-engine-kde-plugin arch = x86_64 license = GPL2 @@ -17,8 +17,8 @@ pkgbase = plasma5-wallpapers-wallpaper-engine optdepends = qt5-webchannel: for web support optdepends = mpv: alternative video backend source = https://github.com/catsout/wallpaper-engine-kde-plugin/archive/v0.5.4/wallpaper-engine-kde-plugin-0.5.4.tar.gz - source = https://github.com/KhronosGroup/glslang/archive/11.10.0/glslang-11.10.0.tar.gz + source = https://github.com/KhronosGroup/glslang/archive/11.11.0/glslang-11.11.0.tar.gz sha256sums = 83354734f7ea36e7077206506dd05f0e6877eb51294b820fdbdc398255c6f803 - sha256sums = 8ffc19c435232d09299dd2c91e247292b3508c1b826a3497c60682e4bbf2d602 + sha256sums = 26c216c3062512c018cbdd752224b8dad703b7e5bb90bf338ba2dbb5d4f11438 pkgname = plasma5-wallpapers-wallpaper-engine diff --git a/plasma5-wallpapers-wallpaper-engine/PKGBUILD b/plasma5-wallpapers-wallpaper-engine/PKGBUILD index 940d069..cd4053e 100644 --- a/plasma5-wallpapers-wallpaper-engine/PKGBUILD +++ b/plasma5-wallpapers-wallpaper-engine/PKGBUILD @@ -3,11 +3,11 @@ pkgname=plasma5-wallpapers-wallpaper-engine _pkgname=wallpaper-engine-kde-plugin pkgver=0.5.4 -_pkgver_glslang=11.10.0 -pkgrel=2 +_pkgver_glslang=11.11.0 +pkgrel=3 pkgdesc='A KDE wallpaper plugin integrating wallpaper engine' arch=('x86_64') -url='https://github.com/catsout/wallpaper-engine-kde-plugin' +url="https://github.com/catsout/${_pkgname}" license=('GPL2') depends=('gst-libav' 'python-websockets' 'plasma-framework' 'qt5-declarative' 'qt5-websockets') makedepends=('extra-cmake-modules' 'qt5-webchannel' 'mpv' 'vulkan-headers') @@ -16,7 +16,7 @@ optdepends=('qt5-webchannel: for web support' source=("https://github.com/catsout/${_pkgname}/archive/v${pkgver}/${_pkgname}-${pkgver}.tar.gz" "https://github.com/KhronosGroup/glslang/archive/${_pkgver_glslang}/glslang-${_pkgver_glslang}.tar.gz") sha256sums=('83354734f7ea36e7077206506dd05f0e6877eb51294b820fdbdc398255c6f803' - '8ffc19c435232d09299dd2c91e247292b3508c1b826a3497c60682e4bbf2d602') + '26c216c3062512c018cbdd752224b8dad703b7e5bb90bf338ba2dbb5d4f11438') prepare() { mv -T "glslang-${_pkgver_glslang}" "${_pkgname}-${pkgver}/src/backend_scene/third_party/glslang" From 920dad2fc1868b983f80700f235612c217cd982e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 27 Nov 2022 19:41:02 +0100 Subject: [PATCH 383/971] upgpkg: clonezilla-unstable 5.3.0-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index c287b35..97e1d76 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.2.7 + pkgver = 5.3.0 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.2.7.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.3.0.tar.xz source = usrbin.patch - sha256sums = c6da5fed444286509b6573ad59083968f430660007623be67285e833264841a5 + sha256sums = a26667fc74e2ac8d7655a6f4a0a41ce629326a9900dd664a34f37774042f3e34 sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 1223eb9..370e492 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.2.7 +pkgver=5.3.0 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('c6da5fed444286509b6573ad59083968f430660007623be67285e833264841a5' +sha256sums=('a26667fc74e2ac8d7655a6f4a0a41ce629326a9900dd664a34f37774042f3e34' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From b2ca1e6a8fc3d2cadd657a6ee2e5563568bce09a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 27 Nov 2022 19:41:02 +0100 Subject: [PATCH 384/971] upgpkg: clonezilla-unstable 5.3.0-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index c287b35..97e1d76 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.2.7 + pkgver = 5.3.0 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.2.7.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.3.0.tar.xz source = usrbin.patch - sha256sums = c6da5fed444286509b6573ad59083968f430660007623be67285e833264841a5 + sha256sums = a26667fc74e2ac8d7655a6f4a0a41ce629326a9900dd664a34f37774042f3e34 sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 1223eb9..370e492 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.2.7 +pkgver=5.3.0 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('c6da5fed444286509b6573ad59083968f430660007623be67285e833264841a5' +sha256sums=('a26667fc74e2ac8d7655a6f4a0a41ce629326a9900dd664a34f37774042f3e34' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From 920e68a30a15db79c9bd523e66ffc694322c7537 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 27 Nov 2022 21:15:00 +0100 Subject: [PATCH 385/971] upgpkg: clonezilla-unstable 5.3.1-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 97e1d76..cb3fa02 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.3.0 + pkgver = 5.3.1 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.3.0.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.3.1.tar.xz source = usrbin.patch - sha256sums = a26667fc74e2ac8d7655a6f4a0a41ce629326a9900dd664a34f37774042f3e34 + sha256sums = 5e3aa9d4fbda0c06478896f7d4052f04c37413948e606b5909de7f3afe59e81c sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 370e492..d06e2dc 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.3.0 +pkgver=5.3.1 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('a26667fc74e2ac8d7655a6f4a0a41ce629326a9900dd664a34f37774042f3e34' +sha256sums=('5e3aa9d4fbda0c06478896f7d4052f04c37413948e606b5909de7f3afe59e81c' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From 2524db9bfae6394dd61638ef2e2f57d90ea77a47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 27 Nov 2022 21:15:00 +0100 Subject: [PATCH 386/971] upgpkg: clonezilla-unstable 5.3.1-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 97e1d76..cb3fa02 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.3.0 + pkgver = 5.3.1 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.3.0.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.3.1.tar.xz source = usrbin.patch - sha256sums = a26667fc74e2ac8d7655a6f4a0a41ce629326a9900dd664a34f37774042f3e34 + sha256sums = 5e3aa9d4fbda0c06478896f7d4052f04c37413948e606b5909de7f3afe59e81c sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 370e492..d06e2dc 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.3.0 +pkgver=5.3.1 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('a26667fc74e2ac8d7655a6f4a0a41ce629326a9900dd664a34f37774042f3e34' +sha256sums=('5e3aa9d4fbda0c06478896f7d4052f04c37413948e606b5909de7f3afe59e81c' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From 3845fa28ffd1d3d2308d30464575c2fe79f3218b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 29 Nov 2022 19:08:19 +0100 Subject: [PATCH 387/971] upgpkg: obs-vkcapture 1.2.2-1 upstream release --- obs-vkcapture/.SRCINFO | 6 +++--- obs-vkcapture/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/obs-vkcapture/.SRCINFO b/obs-vkcapture/.SRCINFO index bb4342e..7d690a2 100644 --- a/obs-vkcapture/.SRCINFO +++ b/obs-vkcapture/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = obs-vkcapture - pkgver = 1.2.1 + pkgver = 1.2.2 pkgrel = 1 url = https://github.com/nowrep/obs-vkcapture arch = x86_64 @@ -13,8 +13,8 @@ pkgbase = obs-vkcapture depends = vulkan-icd-loader depends = libgl depends = obs-studio>=27 - source = https://github.com/nowrep/obs-vkcapture/archive/v1.2.1.tar.gz - sha512sums = 55ba0c449cef9c80db82e98a2f6e282dfbf00a7ef0c180e307bd602ae13aadbb0383a38a56dcf4d67ed7ac1e5dd392be7ef71bb1e6f39278da69ed110c159bb0 + source = https://github.com/nowrep/obs-vkcapture/archive/v1.2.2/obs-vkcapture-1.2.2.tar.gz + sha512sums = 382578afbd9bfacc4e3b2bf16e244ab8318e07c1cfdbe2d887acae6eefea4eba5ccc03e0e96ddd06e1bb65a229c622eb8205a380dace0abb91dce07812419a31 pkgname = obs-vkcapture pkgdesc = OBS Linux Vulkan/OpenGL game capture diff --git a/obs-vkcapture/PKGBUILD b/obs-vkcapture/PKGBUILD index 11661b1..24548ff 100644 --- a/obs-vkcapture/PKGBUILD +++ b/obs-vkcapture/PKGBUILD @@ -2,15 +2,15 @@ pkgbase=obs-vkcapture pkgname=("$pkgbase" "lib32-$pkgbase") -pkgver=1.2.1 +pkgver=1.2.2 pkgrel=1 url="https://github.com/nowrep/$pkgbase" license=('GPL2') arch=('x86_64') depends=('vulkan-icd-loader' 'libgl' 'obs-studio>=27') makedepends=('gcc' 'cmake' 'vulkan-headers' 'lib32-gcc-libs' 'lib32-vulkan-icd-loader' 'lib32-libgl') -source=("https://github.com/nowrep/$pkgbase/archive/v$pkgver.tar.gz") -sha512sums=('55ba0c449cef9c80db82e98a2f6e282dfbf00a7ef0c180e307bd602ae13aadbb0383a38a56dcf4d67ed7ac1e5dd392be7ef71bb1e6f39278da69ed110c159bb0') +source=("https://github.com/nowrep/$pkgbase/archive/v$pkgver/$pkgbase-$pkgver.tar.gz") +sha512sums=('382578afbd9bfacc4e3b2bf16e244ab8318e07c1cfdbe2d887acae6eefea4eba5ccc03e0e96ddd06e1bb65a229c622eb8205a380dace0abb91dce07812419a31') build() { cmake -B build -S "$pkgbase-$pkgver" \ From 939faa9efaeeeb07ffada0cd0676d2ce5bf39b22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 4 Dec 2022 08:00:07 +0100 Subject: [PATCH 388/971] Initial upload: ntfs2btrfs 20220812-1 --- ntfs2btrfs/.SRCINFO | 17 +++++++++++++++++ ntfs2btrfs/PKGBUILD | 27 +++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 ntfs2btrfs/.SRCINFO create mode 100644 ntfs2btrfs/PKGBUILD diff --git a/ntfs2btrfs/.SRCINFO b/ntfs2btrfs/.SRCINFO new file mode 100644 index 0000000..6e77385 --- /dev/null +++ b/ntfs2btrfs/.SRCINFO @@ -0,0 +1,17 @@ +pkgbase = ntfs2btrfs + pkgdesc = In-place conversion of Microsoft's NTFS filesystem to the open-source filesystem Btrfs + pkgver = 20220812 + pkgrel = 1 + url = https://github.com/maharmstone/ntfs2btrfs + arch = x86_64 + license = GPL2 + makedepends = cmake + makedepends = pkgconf + depends = fmt + depends = zlib + depends = lzo + depends = zstd + source = https://github.com/maharmstone/ntfs2btrfs/archive/20220812/ntfs2btrfs-20220812.tar.gz + sha256sums = 9ce07535e6191ab45f204a4dd281be4768d7917df4426ee7c71aa9c308a2fe93 + +pkgname = ntfs2btrfs diff --git a/ntfs2btrfs/PKGBUILD b/ntfs2btrfs/PKGBUILD new file mode 100644 index 0000000..09b6374 --- /dev/null +++ b/ntfs2btrfs/PKGBUILD @@ -0,0 +1,27 @@ +# Maintainer: Manuel Hüsers + +pkgname=ntfs2btrfs +pkgver=20220812 +pkgrel=1 +pkgdesc="In-place conversion of Microsoft's NTFS filesystem to the open-source filesystem Btrfs" +arch=('x86_64') +url='https://github.com/maharmstone/ntfs2btrfs' +license=('GPL2') +depends=('fmt' 'zlib' 'lzo' 'zstd') +makedepends=('cmake' 'pkgconf') +source=("https://github.com/maharmstone/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz") +sha256sums=('9ce07535e6191ab45f204a4dd281be4768d7917df4426ee7c71aa9c308a2fe93') + +build() { + cmake -B build -S "$pkgname-$pkgver" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_SBINDIR=bin \ + -DCMAKE_BUILD_TYPE=Release \ + -DBUILD_TESTING=OFF + + cmake --build build +} + +package() { + DESTDIR="$pkgdir" cmake --install build +} From eb7199cf13eb67daed8ee301de029e476dc9051e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 6 Dec 2022 22:00:00 +0100 Subject: [PATCH 389/971] upgpkg: nginx-mod-traffic-accounting 2.0+18+g46aae3e-1 Added patch that adds option for collecting only successful requests --- nginx-mod-traffic-accounting/.SRCINFO | 6 +- nginx-mod-traffic-accounting/PKGBUILD | 15 +-- .../succ_collect.patch | 96 +++++++++++++++++++ 3 files changed, 108 insertions(+), 9 deletions(-) create mode 100644 nginx-mod-traffic-accounting/succ_collect.patch diff --git a/nginx-mod-traffic-accounting/.SRCINFO b/nginx-mod-traffic-accounting/.SRCINFO index 69bb906..3f4630c 100644 --- a/nginx-mod-traffic-accounting/.SRCINFO +++ b/nginx-mod-traffic-accounting/.SRCINFO @@ -1,17 +1,19 @@ pkgbase = nginx-mod-traffic-accounting pkgdesc = Monitor the incoming and outgoing traffic metrics in realtime for NGINX - pkgver = 2.0+16+g98af5fc + pkgver = 2.0+18+g46aae3e pkgrel = 1 url = https://github.com/Lax/traffic-accounting-nginx-module arch = x86_64 license = BSD makedepends = nginx-src depends = nginx - source = https://github.com/Lax/traffic-accounting-nginx-module/archive/v2.0/traffic-accounting-nginx-module-v2.0.tar.gz + source = https://github.com/Lax/traffic-accounting-nginx-module/archive/v2.0/traffic-accounting-nginx-module-2.0.tar.gz source = d53a4a6.patch source = server_addr.patch + source = succ_collect.patch sha256sums = 8c99c5313e5c822aa5683691c8a0641499b2fa8c67f9e55652817042e21f5986 sha256sums = 9bad093fba01d67098d98122202693ffba20feb20668f73e7712d9d9b9915bf1 sha256sums = e25f170801179e067c7186f1e27fcb3f4273ac5683f6a4962dee821d5eddc8d0 + sha256sums = e9075be4a309948eaddaed2ceb038dcbf1d3aed92fcfe6c068e415ef6461696d pkgname = nginx-mod-traffic-accounting diff --git a/nginx-mod-traffic-accounting/PKGBUILD b/nginx-mod-traffic-accounting/PKGBUILD index 821b6c5..4fc36ee 100644 --- a/nginx-mod-traffic-accounting/PKGBUILD +++ b/nginx-mod-traffic-accounting/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Manuel Hüsers pkgname=nginx-mod-traffic-accounting -pkgver=2.0+16+g98af5fc +pkgver=2.0+18+g46aae3e pkgrel=1 _modname="traffic-accounting-nginx-module" @@ -14,15 +14,15 @@ url="https://github.com/Lax/${_modname}" license=('BSD') source=( - "https://github.com/Lax/${_modname}/archive/v${pkgver%%+*}/${_modname}-v${pkgver%%+*}.tar.gz" + "https://github.com/Lax/${_modname}/archive/v${pkgver%%+*}/${_modname}-${pkgver%%+*}.tar.gz" "d53a4a6.patch" "server_addr.patch" + "succ_collect.patch" ) -sha256sums=( - '8c99c5313e5c822aa5683691c8a0641499b2fa8c67f9e55652817042e21f5986' - '9bad093fba01d67098d98122202693ffba20feb20668f73e7712d9d9b9915bf1' - 'e25f170801179e067c7186f1e27fcb3f4273ac5683f6a4962dee821d5eddc8d0' -) +sha256sums=('8c99c5313e5c822aa5683691c8a0641499b2fa8c67f9e55652817042e21f5986' + '9bad093fba01d67098d98122202693ffba20feb20668f73e7712d9d9b9915bf1' + 'e25f170801179e067c7186f1e27fcb3f4273ac5683f6a4962dee821d5eddc8d0' + 'e9075be4a309948eaddaed2ceb038dcbf1d3aed92fcfe6c068e415ef6461696d') prepare() { mkdir -p build @@ -33,6 +33,7 @@ prepare() { cd "../${_modname}-${pkgver%%+*}" patch -Np1 -i '../d53a4a6.patch' patch -Np1 -i '../server_addr.patch' + patch -Np1 -i '../succ_collect.patch' } build() { diff --git a/nginx-mod-traffic-accounting/succ_collect.patch b/nginx-mod-traffic-accounting/succ_collect.patch new file mode 100644 index 0000000..9642e3c --- /dev/null +++ b/nginx-mod-traffic-accounting/succ_collect.patch @@ -0,0 +1,96 @@ +From 46aae3eccffea884430d72f3d6cfc664a5789853 Mon Sep 17 00:00:00 2001 +From: David-Hang-12138 +Date: Thu, 15 Sep 2022 21:57:00 +0800 +Subject: [PATCH] DEVHUB-73 added option for collecting only successful + requests. + +--- + src/http/ngx_http_accounting_module.c | 27 +++++++++++++++++------- + src/ngx_traffic_accounting_module.h | 1 + + src/ngx_traffic_accounting_module_conf.c | 2 ++ + 3 files changed, 22 insertions(+), 8 deletions(-) + +diff --git a/src/http/ngx_http_accounting_module.c b/src/http/ngx_http_accounting_module.c +index ecc62d2..a35759c 100644 +--- a/src/http/ngx_http_accounting_module.c ++++ b/src/http/ngx_http_accounting_module.c +@@ -62,6 +62,13 @@ static ngx_command_t ngx_http_accounting_commands[] = { + 0, + NULL}, + ++ { ngx_string("accounting_20x"), ++ NGX_HTTP_MAIN_CONF|NGX_CONF_TAKE1, ++ ngx_conf_set_flag_slot, ++ NGX_HTTP_MAIN_CONF_OFFSET, ++ offsetof(ngx_http_accounting_main_conf_t, log_20x), ++ NULL}, ++ + ngx_null_command + }; + +@@ -242,6 +249,18 @@ ngx_http_accounting_request_handler(ngx_http_request_t *r) + + amcf = ngx_http_get_module_main_conf(r, ngx_http_accounting_module); + ++ if (r->err_status) { ++ status = r->err_status; ++ } else if (r->headers_out.status) { ++ status = r->headers_out.status; ++ } else { ++ status = NGX_HTTP_STATUS_UNSET; ++ } ++ ++ if (amcf->log_20x && NGX_HTTP_SPECIAL_RESPONSE <= status) { ++ // Only log successful requests whose response code is 10x or 20x ++ return NGX_DECLINED; ++ } + metrics = ngx_traffic_accounting_period_fetch_metrics(amcf->current, accounting_id, amcf->log); + if (metrics == NULL) { return NGX_ERROR; } + +@@ -275,14 +294,6 @@ ngx_http_accounting_request_handler(ngx_http_request_t *r) + metrics->bytes_in += r->request_length; + metrics->bytes_out += r->connection->sent; + +- if (r->err_status) { +- status = r->err_status; +- } else if (r->headers_out.status) { +- status = r->headers_out.status; +- } else { +- status = NGX_HTTP_STATUS_UNSET; +- } +- + metrics->nr_status[ngx_status_bsearch(status, ngx_http_statuses, ngx_http_statuses_len)] += 1; + + ms = (ngx_msec_int_t)((tp->sec - r->start_sec) * 1000 + (tp->msec - r->start_msec)); +diff --git a/src/ngx_traffic_accounting_module.h b/src/ngx_traffic_accounting_module.h +index adfccec..acc7d0b 100644 +--- a/src/ngx_traffic_accounting_module.h ++++ b/src/ngx_traffic_accounting_module.h +@@ -18,6 +18,7 @@ typedef struct { + ngx_log_t *log; + time_t interval; + ngx_flag_t perturb; ++ ngx_flag_t log_20x; // account only 20x success responses + + ngx_traffic_accounting_period_t *current; + ngx_traffic_accounting_period_t *previous; +diff --git a/src/ngx_traffic_accounting_module_conf.c b/src/ngx_traffic_accounting_module_conf.c +index ce1da71..d937666 100644 +--- a/src/ngx_traffic_accounting_module_conf.c ++++ b/src/ngx_traffic_accounting_module_conf.c +@@ -20,6 +20,7 @@ ngx_traffic_accounting_create_main_conf(ngx_conf_t *cf) + amcf->enable = NGX_CONF_UNSET; + amcf->interval = NGX_CONF_UNSET; + amcf->perturb = NGX_CONF_UNSET; ++ amcf->log_20x = NGX_CONF_UNSET; + + return amcf; + } +@@ -32,6 +33,7 @@ ngx_traffic_accounting_init_main_conf(ngx_conf_t *cf, void *conf) + if (amcf->enable == NGX_CONF_UNSET) { amcf->enable = 0; } + if (amcf->interval == NGX_CONF_UNSET) { amcf->interval = 60; } + if (amcf->perturb == NGX_CONF_UNSET) { amcf->perturb = 0; } ++ if (amcf->log_20x == NGX_CONF_UNSET) { amcf->log_20x = 0; } + + return NGX_CONF_OK; + } From 08bf7c405d03a18a5e2827540e851ca876ccbfd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 6 Dec 2022 22:10:20 +0100 Subject: [PATCH 390/971] Generically use cmake for build instead of make directly --- bino/PKGBUILD | 4 ++-- obs-vkcapture/PKGBUILD | 8 ++++---- qvr/PKGBUILD | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bino/PKGBUILD b/bino/PKGBUILD index 15aa6ba..9a399de 100644 --- a/bino/PKGBUILD +++ b/bino/PKGBUILD @@ -23,9 +23,9 @@ build() { -DCMAKE_BUILD_TYPE=Release \ -DBUILD_TESTING=OFF - make -C build + cmake --build build } package() { - make -C build DESTDIR="$pkgdir" install + DESTDIR="$pkgdir" cmake --install build } diff --git a/obs-vkcapture/PKGBUILD b/obs-vkcapture/PKGBUILD index 24548ff..f5f50ae 100644 --- a/obs-vkcapture/PKGBUILD +++ b/obs-vkcapture/PKGBUILD @@ -18,7 +18,7 @@ build() { -DCMAKE_INSTALL_LIBDIR=lib \ -DCMAKE_INSTALL_DATADIR=/share \ -DCMAKE_BUILD_TYPE=Release - make -C build + cmake --build build export CFLAGS="-m32 ${CFLAGS}" export CXXFLAGS="-m32 ${CXXFLAGS}" @@ -31,19 +31,19 @@ build() { -DCMAKE_LIBRARY_PATH=/usr/lib32 \ -DCMAKE_BUILD_TYPE=Release \ -DBUILD_PLUGIN=OFF - make -C build32 + cmake --build build32 } package_obs-vkcapture() { pkgdesc='OBS Linux Vulkan/OpenGL game capture' - make -C build DESTDIR="$pkgdir" install + DESTDIR="$pkgdir" cmake --install build } package_lib32-obs-vkcapture() { pkgdesc='OBS Linux Vulkan/OpenGL game capture (32-bit)' depends=('lib32-vulkan-icd-loader' 'lib32-libgl') - make -C build32 DESTDIR="$pkgdir" install + DESTDIR="$pkgdir" cmake --install build32 rm -r "$pkgdir/usr/bin" } diff --git a/qvr/PKGBUILD b/qvr/PKGBUILD index 7550dc7..c9b5e56 100644 --- a/qvr/PKGBUILD +++ b/qvr/PKGBUILD @@ -20,9 +20,9 @@ build() { -DCMAKE_BUILD_TYPE=Release \ -DBUILD_TESTING=OFF - make -C build + cmake --build build } package() { - make -C build DESTDIR="$pkgdir" install + DESTDIR="$pkgdir" cmake --install build } From 420b390205e1bfc2cc3c2254ded4167466510e5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 8 Dec 2022 21:18:06 +0100 Subject: [PATCH 391/971] upgpkg: gvisor-bin 20221205.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/.gitignore | 4 ++-- gvisor-bin/PKGBUILD | 10 +++++----- 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index bfac273..d9d686b 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20221102.1 + pkgver = 20221205.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20221102.1::https://storage.googleapis.com/gvisor/releases/release/20221102.1/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20221102.1::https://storage.googleapis.com/gvisor/releases/release/20221102.1/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = f47a15449cd2a4b25dc768e4d9275d67c22acda6ebbc46270c38f5f135143f7551475168862b846a408f3858ee7edf725861a6bb3ce9ef2c783d1cab6d177511 - sha512sums_x86_64 = 3b8bb9453dfc8cad3b2a1c484d9acb6766c7900d6869e1696214216a0fab994e55409e4065267544a360283b2c824790f605d89749674ddb68dd58086f44f956 - source_aarch64 = runsc-aarch64-20221102.1::https://storage.googleapis.com/gvisor/releases/release/20221102.1/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20221102.1::https://storage.googleapis.com/gvisor/releases/release/20221102.1/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 87a39bb2e2e87390f6c6c38dbc4bdcced62d07af9128ddead7b0b46bc7bac2f9aa678b8bc5d234dedd9ad5430fe38d0e3df77d65b10589e99f21bdf0516d80b5 - sha512sums_aarch64 = 0ec5bd37b91a921bdeb26e92251f37d6c6adba4e2176973017b592e229c7512aa1765be4c4a87be44dfbb6bb30827b05f7e1551eff98ea006499317dec4a9e60 + source_x86_64 = runsc-x86_64-20221205.0::https://storage.googleapis.com/gvisor/releases/release/20221205.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20221205.0::https://storage.googleapis.com/gvisor/releases/release/20221205.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = 71cc1902409048437c71755c51a351d986c6280dd2872961efd87beebf96a00b87013bc02697594f33053e376a8f17bbb24e67682ae48769a24a23d2d5555aaa + sha512sums_x86_64 = 03c8ae69c35d54296ed5064d8d7769a984a9b82b82e2edbdee4186d07cb363cb0db8c704458909a989f947ebbaa2da04f204277351d227868f4a2deedf3b4965 + source_aarch64 = runsc-aarch64-20221205.0::https://storage.googleapis.com/gvisor/releases/release/20221205.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20221205.0::https://storage.googleapis.com/gvisor/releases/release/20221205.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 186a4efd729b956e06ff19666b0dbbcc4b71ef9edba57a1f68db627c8d60eab2725be2d4814e62e4ba2950d8a783f479c259c7af5d81121fdc7fcd6f4d59efc8 + sha512sums_aarch64 = 9a9b9be295a3bbf123f7738ea3a805505098eed2966f074344e81a62691e05bc2c4264000adb2e7460e3813f8b45d573eb0863d41d0a2729c2a62bc7610be59e pkgname = gvisor-bin diff --git a/gvisor-bin/.gitignore b/gvisor-bin/.gitignore index 7461add..24cb63c 100644 --- a/gvisor-bin/.gitignore +++ b/gvisor-bin/.gitignore @@ -1,2 +1,2 @@ -/runsc -/containerd-shim-runsc-v1 +/runsc-* +/containerd-shim-runsc-v1-* diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index 3e0d707..2fb0a8b 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20221102.1 +pkgver=20221205.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('f47a15449cd2a4b25dc768e4d9275d67c22acda6ebbc46270c38f5f135143f7551475168862b846a408f3858ee7edf725861a6bb3ce9ef2c783d1cab6d177511' - '3b8bb9453dfc8cad3b2a1c484d9acb6766c7900d6869e1696214216a0fab994e55409e4065267544a360283b2c824790f605d89749674ddb68dd58086f44f956') -sha512sums_aarch64=('87a39bb2e2e87390f6c6c38dbc4bdcced62d07af9128ddead7b0b46bc7bac2f9aa678b8bc5d234dedd9ad5430fe38d0e3df77d65b10589e99f21bdf0516d80b5' - '0ec5bd37b91a921bdeb26e92251f37d6c6adba4e2176973017b592e229c7512aa1765be4c4a87be44dfbb6bb30827b05f7e1551eff98ea006499317dec4a9e60') +sha512sums_x86_64=('71cc1902409048437c71755c51a351d986c6280dd2872961efd87beebf96a00b87013bc02697594f33053e376a8f17bbb24e67682ae48769a24a23d2d5555aaa' + '03c8ae69c35d54296ed5064d8d7769a984a9b82b82e2edbdee4186d07cb363cb0db8c704458909a989f947ebbaa2da04f204277351d227868f4a2deedf3b4965') +sha512sums_aarch64=('186a4efd729b956e06ff19666b0dbbcc4b71ef9edba57a1f68db627c8d60eab2725be2d4814e62e4ba2950d8a783f479c259c7af5d81121fdc7fcd6f4d59efc8' + '9a9b9be295a3bbf123f7738ea3a805505098eed2966f074344e81a62691e05bc2c4264000adb2e7460e3813f8b45d573eb0863d41d0a2729c2a62bc7610be59e') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From a3bde23a8cd19b61eddeb4748252dc23ae998e57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 8 Dec 2022 21:18:26 +0100 Subject: [PATCH 392/971] upgpkg: gvisor-git 20221205.0-1 --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index 3da0a34..9b24227 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20221102.1 + pkgver = 20221205.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index f011a36..bacf97e 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20221102.1 +pkgver=20221205.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From 2c26b0761c65eb8d70ed625f39e42d97b97e38c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 8 Dec 2022 21:56:17 +0100 Subject: [PATCH 393/971] upgpkg: spot-client 0.3.3-1 upstream release --- spot-client/.SRCINFO | 6 +++--- spot-client/PKGBUILD | 9 +++++---- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/spot-client/.SRCINFO b/spot-client/.SRCINFO index 3562867..3641cda 100644 --- a/spot-client/.SRCINFO +++ b/spot-client/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client - pkgver = 0.3.2 + pkgver = 0.3.3 pkgrel = 1 url = https://github.com/xou816/spot arch = x86_64 @@ -25,9 +25,9 @@ pkgbase = spot-client depends = pango optdepends = org.freedesktop.secrets options = !lto - source = spot-client-0.3.2-1.tar.gz::https://github.com/xou816/spot/archive/0.3.2.tar.gz + source = https://github.com/xou816/spot/archive/0.3.3/spot-0.3.3.tar.gz source = disable-clippy.patch - sha512sums = fd8b1f372b5c06d65c0d40465aff018573e913200460b48339a9e106d17a372289b67855877d8642427367fc18e5eac31f2e765e54f4889149a8b5a69cd4638d + sha512sums = 8b116e5e9a79efbbb6aef21b89ca93d3ea6083fb02b245662a4e222f85feef76dbc5abcdacfb0a29bf8ee0d8062137b3f0a1648a47537b26a9c16dd7bf525a8a sha512sums = 1cb0faced2e6801cb994e9af7b81411355837b2efcd9c82b82751508e0bfcc967c50b3d6296bfdb8c017bbf2e7a503a3920d36cb896e44c896c23f5b9e1d13f1 pkgname = spot-client diff --git a/spot-client/PKGBUILD b/spot-client/PKGBUILD index 2bfde9c..7ee7105 100644 --- a/spot-client/PKGBUILD +++ b/spot-client/PKGBUILD @@ -1,9 +1,10 @@ # Maintainer: Manuel Hüsers # Contributor: Daniel Peukert # Contributor: NicoHood + _projectname='spot' pkgname="$_projectname-client" -pkgver='0.3.2' +pkgver='0.3.3' pkgrel='1' pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -13,12 +14,12 @@ depends=('alsa-lib' 'cairo' 'glib2' 'glibc' 'graphene' 'gtk4' 'libadwaita' 'libp optdepends=('org.freedesktop.secrets') makedepends=('cargo' 'meson>=0.50.0') checkdepends=('appstream-glib') -options=('!lto') # build breaks with LTO enabled (https://gitlab.com/dpeukert/pkgbuilds/-/issues/38) +options=('!lto') source=( - "$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz" + "https://github.com/xou816/$_projectname/archive/$pkgver/$_projectname-$pkgver.tar.gz" 'disable-clippy.patch' ) -sha512sums=('fd8b1f372b5c06d65c0d40465aff018573e913200460b48339a9e106d17a372289b67855877d8642427367fc18e5eac31f2e765e54f4889149a8b5a69cd4638d' +sha512sums=('8b116e5e9a79efbbb6aef21b89ca93d3ea6083fb02b245662a4e222f85feef76dbc5abcdacfb0a29bf8ee0d8062137b3f0a1648a47537b26a9c16dd7bf525a8a' '1cb0faced2e6801cb994e9af7b81411355837b2efcd9c82b82751508e0bfcc967c50b3d6296bfdb8c017bbf2e7a503a3920d36cb896e44c896c23f5b9e1d13f1') validpgpkeys=() # waiting for https://github.com/xou816/spot/issues/283 From 9a44a0d6328bb5714a05508c10145a3636151d0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 8 Dec 2022 22:06:38 +0100 Subject: [PATCH 394/971] spot-client: Revert removal of comment --- spot-client/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spot-client/PKGBUILD b/spot-client/PKGBUILD index 7ee7105..2fa5149 100644 --- a/spot-client/PKGBUILD +++ b/spot-client/PKGBUILD @@ -14,7 +14,7 @@ depends=('alsa-lib' 'cairo' 'glib2' 'glibc' 'graphene' 'gtk4' 'libadwaita' 'libp optdepends=('org.freedesktop.secrets') makedepends=('cargo' 'meson>=0.50.0') checkdepends=('appstream-glib') -options=('!lto') +options=('!lto') # Disable clippy tests, as they don't realy make sense for user builds (https://gitlab.com/dpeukert/pkgbuilds/-/issues/37) source=( "https://github.com/xou816/$_projectname/archive/$pkgver/$_projectname-$pkgver.tar.gz" 'disable-clippy.patch' From 741d316bde0466c15b6fd7bcda06f9a05dc618b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 8 Dec 2022 22:10:45 +0100 Subject: [PATCH 395/971] spot-client: Use correct comment this time --- spot-client/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spot-client/PKGBUILD b/spot-client/PKGBUILD index 2fa5149..6ad2678 100644 --- a/spot-client/PKGBUILD +++ b/spot-client/PKGBUILD @@ -14,7 +14,7 @@ depends=('alsa-lib' 'cairo' 'glib2' 'glibc' 'graphene' 'gtk4' 'libadwaita' 'libp optdepends=('org.freedesktop.secrets') makedepends=('cargo' 'meson>=0.50.0') checkdepends=('appstream-glib') -options=('!lto') # Disable clippy tests, as they don't realy make sense for user builds (https://gitlab.com/dpeukert/pkgbuilds/-/issues/37) +options=('!lto') # build breaks with LTO enabled (https://gitlab.com/dpeukert/pkgbuilds/-/issues/38) source=( "https://github.com/xou816/$_projectname/archive/$pkgver/$_projectname-$pkgver.tar.gz" 'disable-clippy.patch' From 8a99ae5f79edf9b8d1551b33919a8ec5c585ad71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 10 Dec 2022 05:00:10 +0100 Subject: [PATCH 396/971] upgpkg: discord-electron-bin 0.0.22-1 upstream release --- discord-electron-bin/.SRCINFO | 8 ++++---- discord-electron-bin/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/discord-electron-bin/.SRCINFO b/discord-electron-bin/.SRCINFO index 7b536de..7ac5e32 100644 --- a/discord-electron-bin/.SRCINFO +++ b/discord-electron-bin/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-bin pkgdesc = Discord using system provided electron (v13) for increased security and performance - pkgver = 0.0.21 - pkgrel = 2 + pkgver = 0.0.22 + pkgrel = 1 url = https://discord.com arch = x86_64 license = custom @@ -14,7 +14,7 @@ pkgbase = discord-electron-bin provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.21/discord-0.0.21.tar.gz - sha512sums = 149ae5b8b7d92549e12eca52e45d3f5761ef022ae321cf33fadc3b56c4cee0616a5166380faea038256213713a7aa90e1befc4caa3e6a4de8e15c1cb1d8f925d + source = https://dl.discordapp.net/apps/linux/0.0.22/discord-0.0.22.tar.gz + sha512sums = 96c8486577bee7ae165bf96aab50c0733d83a2d9435357d9a4d9a3e9f3225ae6a7bf46e1a7d8b419ecc7ab4e270755332621a4f786ddb89a842379f5da40b271 pkgname = discord-electron-bin diff --git a/discord-electron-bin/PKGBUILD b/discord-electron-bin/PKGBUILD index 8266ded..4c3dfc5 100644 --- a/discord-electron-bin/PKGBUILD +++ b/discord-electron-bin/PKGBUILD @@ -13,8 +13,8 @@ pkgname=discord-electron-bin _pkgname=discord _electron=13 #_electron=19 -pkgver=0.0.21 -pkgrel=2 +pkgver=0.0.22 +pkgrel=1 pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') provides=("${_pkgname}") @@ -29,7 +29,7 @@ optdepends=( 'xdg-utils: Open files' ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/discord-${pkgver}.tar.gz") -sha512sums=('149ae5b8b7d92549e12eca52e45d3f5761ef022ae321cf33fadc3b56c4cee0616a5166380faea038256213713a7aa90e1befc4caa3e6a4de8e15c1cb1d8f925d') +sha512sums=('96c8486577bee7ae165bf96aab50c0733d83a2d9435357d9a4d9a3e9f3225ae6a7bf46e1a7d8b419ecc7ab4e270755332621a4f786ddb89a842379f5da40b271') _tarname='Discord' From a452cf9a45b027c4840e1d963a07f76acff8e39c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 10 Dec 2022 09:56:28 +0100 Subject: [PATCH 397/971] upgpkg: sublime-text-3 3.3211-3 Improved formatting Updated description to point out that is a legacy version now Added GNOME specific StartupWMClass option back to desktop file Removed desktop file from /opt/sublime_text_3 directory --- sublime-text-3/.SRCINFO | 4 ++-- sublime-text-3/PKGBUILD | 20 +++++++++++--------- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/sublime-text-3/.SRCINFO b/sublime-text-3/.SRCINFO index be124a1..9a47d7f 100644 --- a/sublime-text-3/.SRCINFO +++ b/sublime-text-3/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = sublime-text-3 - pkgdesc = Sophisticated text editor for code, html and prose - stable build + pkgdesc = Sophisticated text editor for code, html and prose (legacy version) pkgver = 3.3211 - pkgrel = 2 + pkgrel = 3 url = https://www.sublimetext.com/3 install = sublime-text-3.install arch = x86_64 diff --git a/sublime-text-3/PKGBUILD b/sublime-text-3/PKGBUILD index cede3fd..60c2fb7 100644 --- a/sublime-text-3/PKGBUILD +++ b/sublime-text-3/PKGBUILD @@ -3,8 +3,8 @@ pkgname=sublime-text-3 pkgver=3.3211 -pkgrel=2 -pkgdesc="Sophisticated text editor for code, html and prose - stable build" +pkgrel=3 +pkgdesc='Sophisticated text editor for code, html and prose (legacy version)' arch=('x86_64') url='https://www.sublimetext.com/3' license=('custom') @@ -17,13 +17,14 @@ package() { cd "${srcdir}" # Adjust naming - sed -i 's#/opt/sublime_text/sublime_text#/opt/sublime_text_3/sublime_text#g' "sublime_text_3/sublime_text.desktop" - sed -i 's#Sublime Text#Sublime Text 3#g' "sublime_text_3/sublime_text.desktop" - sed -i 's#sublime-text#sublime-text-3#g' "sublime_text_3/sublime_text.desktop" + sed -i 's#/opt/sublime_text/sublime_text#/opt/sublime_text_3/sublime_text#g' 'sublime_text_3/sublime_text.desktop' + sed -i 's#Sublime Text#Sublime Text 3#g' 'sublime_text_3/sublime_text.desktop' + sed -i 's#sublime-text#sublime-text-3#g' 'sublime_text_3/sublime_text.desktop' # Install sublime text 3 install -dm755 "${pkgdir}/opt" - cp --preserve=mode -r "sublime_text_3" "${pkgdir}/opt/sublime_text_3" + cp --preserve=mode -r 'sublime_text_3' "${pkgdir}/opt/sublime_text_3" + rm -f "${pkgdir}/opt/sublime_text_3/sublime_text.desktop" # Install icons for res in 128x128 16x16 256x256 32x32 48x48; do @@ -32,11 +33,12 @@ package() { done # Install desktop entry and executable - sed -i 's#/opt/sublime_text_3/sublime_text#/usr/bin/subl3#g' "sublime_text_3/sublime_text.desktop" + sed -i 's#/opt/sublime_text_3/sublime_text#/usr/bin/subl3#g' 'sublime_text_3/sublime_text.desktop' + sed -i '\#^Icon=sublime-text-3#a StartupWMClass=sublime-text-3' 'sublime_text_3/sublime_text.desktop' install -dm755 "${pkgdir}/usr/share/applications" - install -Dm644 "sublime_text_3/sublime_text.desktop" "${pkgdir}/usr/share/applications/sublime_text_3.desktop" + install -Dm644 'sublime_text_3/sublime_text.desktop' "${pkgdir}/usr/share/applications/sublime_text_3.desktop" install -dm755 "${pkgdir}/usr/bin" - ln -s "/opt/sublime_text_3/sublime_text" "${pkgdir}/usr/bin/subl3" + ln -s '/opt/sublime_text_3/sublime_text' "${pkgdir}/usr/bin/subl3" } From 868928210d4bba72167ee95a66646758ba81bce8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 10 Dec 2022 09:58:00 +0100 Subject: [PATCH 398/971] upgpkg: sublime-text-4 4.4143-3 Added GNOME specific StartupWMClass option back to desktop file Removed desktop file from /opt/sublime_text directory --- sublime-text-4/.SRCINFO | 2 +- sublime-text-4/PKGBUILD | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/sublime-text-4/.SRCINFO b/sublime-text-4/.SRCINFO index dad6b7d..68eb70a 100644 --- a/sublime-text-4/.SRCINFO +++ b/sublime-text-4/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = sublime-text-4 pkgdesc = Sophisticated text editor for code, html and prose - stable build pkgver = 4.4143 - pkgrel = 2 + pkgrel = 3 url = https://www.sublimetext.com/download arch = x86_64 arch = aarch64 diff --git a/sublime-text-4/PKGBUILD b/sublime-text-4/PKGBUILD index 2533319..975bd66 100644 --- a/sublime-text-4/PKGBUILD +++ b/sublime-text-4/PKGBUILD @@ -2,7 +2,7 @@ pkgname=sublime-text-4 pkgver=4.4143 -pkgrel=2 +pkgrel=3 pkgdesc='Sophisticated text editor for code, html and prose - stable build' arch=('x86_64' 'aarch64') url='https://www.sublimetext.com/download' @@ -22,6 +22,7 @@ package() { install -dm755 "${pkgdir}/opt" cp --preserve=mode -r 'sublime_text' "${pkgdir}/opt/sublime_text" + rm -f "${pkgdir}/opt/sublime_text/sublime_text.desktop" for res in 128x128 16x16 256x256 32x32 48x48; do install -dm755 "${pkgdir}/usr/share/icons/hicolor/${res}/apps" @@ -29,6 +30,7 @@ package() { done sed -i 's#/opt/sublime_text/sublime_text#/usr/bin/subl#g' 'sublime_text/sublime_text.desktop' + sed -i '\#^Icon=sublime-text#a StartupWMClass=sublime-text' 'sublime_text/sublime_text.desktop' install -dm755 "${pkgdir}/usr/share/applications" install -Dm644 'sublime_text/sublime_text.desktop' "${pkgdir}/usr/share/applications/sublime_text.desktop" From a22687183f9bc070edc83e9f62c46fdc8f7b7eb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 10 Dec 2022 09:58:54 +0100 Subject: [PATCH 399/971] upgpkg: sublime-text-dev 4.4141-3 Added GNOME specific StartupWMClass option back to desktop file Removed desktop file from /opt/sublime_text directory --- sublime-text-dev/.SRCINFO | 2 +- sublime-text-dev/PKGBUILD | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 14ff8a3..e3a2d43 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build pkgver = 4.4141 - pkgrel = 2 + pkgrel = 3 url = https://www.sublimetext.com/dev install = sublime-text-dev.install arch = x86_64 diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index a7bd0e2..9c59aa6 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -4,7 +4,7 @@ pkgname=sublime-text-dev pkgver=4.4141 -pkgrel=2 +pkgrel=3 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') url='https://www.sublimetext.com/dev' @@ -25,6 +25,7 @@ package() { install -dm755 "${pkgdir}/opt" cp --preserve=mode -r 'sublime_text' "${pkgdir}/opt/sublime_text" + rm -f "${pkgdir}/opt/sublime_text/sublime_text.desktop" for res in 128x128 16x16 256x256 32x32 48x48; do install -dm755 "${pkgdir}/usr/share/icons/hicolor/${res}/apps" @@ -32,6 +33,7 @@ package() { done sed -i 's#/opt/sublime_text/sublime_text#/usr/bin/subl#g' 'sublime_text/sublime_text.desktop' + sed -i '\#^Icon=sublime-text#a StartupWMClass=sublime-text' 'sublime_text/sublime_text.desktop' install -dm755 "${pkgdir}/usr/share/applications" install -Dm644 'sublime_text/sublime_text.desktop' "${pkgdir}/usr/share/applications/sublime_text.desktop" From 922102daefc90715152ec4510f5a5940b5a74994 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 12 Dec 2022 12:02:06 +0100 Subject: [PATCH 400/971] upgpkg: sublime-text-3 3.3211-4 Use correct name for WMClass in desktop file --- sublime-text-3/.SRCINFO | 2 +- sublime-text-3/PKGBUILD | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sublime-text-3/.SRCINFO b/sublime-text-3/.SRCINFO index 9a47d7f..1b75679 100644 --- a/sublime-text-3/.SRCINFO +++ b/sublime-text-3/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = sublime-text-3 pkgdesc = Sophisticated text editor for code, html and prose (legacy version) pkgver = 3.3211 - pkgrel = 3 + pkgrel = 4 url = https://www.sublimetext.com/3 install = sublime-text-3.install arch = x86_64 diff --git a/sublime-text-3/PKGBUILD b/sublime-text-3/PKGBUILD index 60c2fb7..7777e86 100644 --- a/sublime-text-3/PKGBUILD +++ b/sublime-text-3/PKGBUILD @@ -3,7 +3,7 @@ pkgname=sublime-text-3 pkgver=3.3211 -pkgrel=3 +pkgrel=4 pkgdesc='Sophisticated text editor for code, html and prose (legacy version)' arch=('x86_64') url='https://www.sublimetext.com/3' @@ -34,7 +34,7 @@ package() { # Install desktop entry and executable sed -i 's#/opt/sublime_text_3/sublime_text#/usr/bin/subl3#g' 'sublime_text_3/sublime_text.desktop' - sed -i '\#^Icon=sublime-text-3#a StartupWMClass=sublime-text-3' 'sublime_text_3/sublime_text.desktop' + sed -i '\#^StartupNotify=#a StartupWMClass=subl3' 'sublime_text_3/sublime_text.desktop' install -dm755 "${pkgdir}/usr/share/applications" install -Dm644 'sublime_text_3/sublime_text.desktop' "${pkgdir}/usr/share/applications/sublime_text_3.desktop" From ab8a1a063b7bbaac89402ef9447b97a28621333a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 12 Dec 2022 12:02:35 +0100 Subject: [PATCH 401/971] upgpkg: sublime-text-4 4.4143-4 Use correct name for WMClass in desktop file --- sublime-text-4/.SRCINFO | 2 +- sublime-text-4/PKGBUILD | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sublime-text-4/.SRCINFO b/sublime-text-4/.SRCINFO index 68eb70a..9874f08 100644 --- a/sublime-text-4/.SRCINFO +++ b/sublime-text-4/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = sublime-text-4 pkgdesc = Sophisticated text editor for code, html and prose - stable build pkgver = 4.4143 - pkgrel = 3 + pkgrel = 4 url = https://www.sublimetext.com/download arch = x86_64 arch = aarch64 diff --git a/sublime-text-4/PKGBUILD b/sublime-text-4/PKGBUILD index 975bd66..58f042b 100644 --- a/sublime-text-4/PKGBUILD +++ b/sublime-text-4/PKGBUILD @@ -2,7 +2,7 @@ pkgname=sublime-text-4 pkgver=4.4143 -pkgrel=3 +pkgrel=4 pkgdesc='Sophisticated text editor for code, html and prose - stable build' arch=('x86_64' 'aarch64') url='https://www.sublimetext.com/download' @@ -30,7 +30,7 @@ package() { done sed -i 's#/opt/sublime_text/sublime_text#/usr/bin/subl#g' 'sublime_text/sublime_text.desktop' - sed -i '\#^Icon=sublime-text#a StartupWMClass=sublime-text' 'sublime_text/sublime_text.desktop' + sed -i '\#^StartupNotify=#a StartupWMClass=subl' 'sublime_text/sublime_text.desktop' install -dm755 "${pkgdir}/usr/share/applications" install -Dm644 'sublime_text/sublime_text.desktop' "${pkgdir}/usr/share/applications/sublime_text.desktop" From 8cfc99d12e361f8e37a8aae4c0868986e0ff312b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 12 Dec 2022 12:02:48 +0100 Subject: [PATCH 402/971] upgpkg: sublime-text-dev 4.4141-4 Use correct name for WMClass in desktop file --- sublime-text-dev/.SRCINFO | 2 +- sublime-text-dev/PKGBUILD | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index e3a2d43..805938a 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build pkgver = 4.4141 - pkgrel = 3 + pkgrel = 4 url = https://www.sublimetext.com/dev install = sublime-text-dev.install arch = x86_64 diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 9c59aa6..a4a9be9 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -4,7 +4,7 @@ pkgname=sublime-text-dev pkgver=4.4141 -pkgrel=3 +pkgrel=4 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') url='https://www.sublimetext.com/dev' @@ -33,7 +33,7 @@ package() { done sed -i 's#/opt/sublime_text/sublime_text#/usr/bin/subl#g' 'sublime_text/sublime_text.desktop' - sed -i '\#^Icon=sublime-text#a StartupWMClass=sublime-text' 'sublime_text/sublime_text.desktop' + sed -i '\#^StartupNotify=#a StartupWMClass=subl' 'sublime_text/sublime_text.desktop' install -dm755 "${pkgdir}/usr/share/applications" install -Dm644 'sublime_text/sublime_text.desktop' "${pkgdir}/usr/share/applications/sublime_text.desktop" From 1b7c8a975d57a480937b94d458754dcd9372aba8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 12 Dec 2022 12:59:41 +0100 Subject: [PATCH 403/971] sublime-text-3: Refactor package function pkgrel bump not needed as same package is produced --- sublime-text-3/PKGBUILD | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/sublime-text-3/PKGBUILD b/sublime-text-3/PKGBUILD index 7777e86..2172438 100644 --- a/sublime-text-3/PKGBUILD +++ b/sublime-text-3/PKGBUILD @@ -16,11 +16,6 @@ sha256sums=('0b3c8ca5e6df376c3c24a4b9ac2e3b391333f73b229bc6e87d0b4a5f636d74ee') package() { cd "${srcdir}" - # Adjust naming - sed -i 's#/opt/sublime_text/sublime_text#/opt/sublime_text_3/sublime_text#g' 'sublime_text_3/sublime_text.desktop' - sed -i 's#Sublime Text#Sublime Text 3#g' 'sublime_text_3/sublime_text.desktop' - sed -i 's#sublime-text#sublime-text-3#g' 'sublime_text_3/sublime_text.desktop' - # Install sublime text 3 install -dm755 "${pkgdir}/opt" cp --preserve=mode -r 'sublime_text_3' "${pkgdir}/opt/sublime_text_3" @@ -32,8 +27,10 @@ package() { ln -s "/opt/sublime_text_3/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text-3.png" done - # Install desktop entry and executable - sed -i 's#/opt/sublime_text_3/sublime_text#/usr/bin/subl3#g' 'sublime_text_3/sublime_text.desktop' + # Adjust naming and install desktop entry and executable + sed -i 's#Sublime Text#Sublime Text 3#g' 'sublime_text_3/sublime_text.desktop' + sed -i 's#sublime-text#sublime-text-3#g' 'sublime_text_3/sublime_text.desktop' + sed -i 's#/opt/sublime_text/sublime_text#/usr/bin/subl3#g' 'sublime_text_3/sublime_text.desktop' sed -i '\#^StartupNotify=#a StartupWMClass=subl3' 'sublime_text_3/sublime_text.desktop' install -dm755 "${pkgdir}/usr/share/applications" From 4d63fd9c7477af81cedb1aa928f22606b8d45c40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 12 Dec 2022 22:12:31 +0100 Subject: [PATCH 404/971] Initial upload: waifu2x-ncnn-vulkan 20220728-1 --- waifu2x-ncnn-vulkan/.SRCINFO | 20 +++++++++++++ waifu2x-ncnn-vulkan/PKGBUILD | 43 ++++++++++++++++++++++++++++ waifu2x-ncnn-vulkan/model_path.patch | 26 +++++++++++++++++ 3 files changed, 89 insertions(+) create mode 100644 waifu2x-ncnn-vulkan/.SRCINFO create mode 100644 waifu2x-ncnn-vulkan/PKGBUILD create mode 100644 waifu2x-ncnn-vulkan/model_path.patch diff --git a/waifu2x-ncnn-vulkan/.SRCINFO b/waifu2x-ncnn-vulkan/.SRCINFO new file mode 100644 index 0000000..6716718 --- /dev/null +++ b/waifu2x-ncnn-vulkan/.SRCINFO @@ -0,0 +1,20 @@ +pkgbase = waifu2x-ncnn-vulkan + pkgdesc = waifu2x converter ncnn version, runs fast on intel / amd / nvidia GPU with vulkan + pkgver = 20220728 + pkgrel = 1 + url = https://github.com/nihui/waifu2x-ncnn-vulkan + arch = x86_64 + arch = aarch64 + license = MIT + makedepends = cmake + makedepends = glslang + makedepends = vulkan-headers + makedepends = ncnn + depends = vulkan-icd-loader + depends = libwebp + source = https://github.com/nihui/waifu2x-ncnn-vulkan/archive/20220728/waifu2x-ncnn-vulkan-20220728.tar.gz + source = model_path.patch + sha512sums = ea17cbbcb7318586793222c6c7139f67395c49c567b601969b829fc426eb517308509b7c1da69171fcbf8e68baa5cec3e52e98159e3c5e6c35ce47a8514dadb7 + sha512sums = 1a286730a7168f63c56544b334277234b84415bcc4c2956c8f8f39ef0d864f9de4ecb38cb9491da91c45b43d5ecdba0018931c2926fb6e2aea98edf3ca42657a + +pkgname = waifu2x-ncnn-vulkan diff --git a/waifu2x-ncnn-vulkan/PKGBUILD b/waifu2x-ncnn-vulkan/PKGBUILD new file mode 100644 index 0000000..0bb30b9 --- /dev/null +++ b/waifu2x-ncnn-vulkan/PKGBUILD @@ -0,0 +1,43 @@ +# Maintainer: Manuel Hüsers + +pkgname=waifu2x-ncnn-vulkan +pkgver=20220728 +pkgrel=1 +pkgdesc='waifu2x converter ncnn version, runs fast on intel / amd / nvidia GPU with vulkan' +arch=('x86_64' 'aarch64') +url="https://github.com/nihui/$pkgname" +license=('MIT') +depends=('vulkan-icd-loader' 'libwebp') +makedepends=('cmake' 'glslang' 'vulkan-headers' 'ncnn') +source=("https://github.com/nihui/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz" + 'model_path.patch') +sha512sums=('ea17cbbcb7318586793222c6c7139f67395c49c567b601969b829fc426eb517308509b7c1da69171fcbf8e68baa5cec3e52e98159e3c5e6c35ce47a8514dadb7' + '1a286730a7168f63c56544b334277234b84415bcc4c2956c8f8f39ef0d864f9de4ecb38cb9491da91c45b43d5ecdba0018931c2926fb6e2aea98edf3ca42657a') + +prepare() { + cd $pkgname-$pkgver + + # TODO: Make proper patch + patch -Np1 < '../model_path.patch' +} + +build() { + cmake -B build -S "$pkgname-$pkgver/src" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DGLSLANG_TARGET_DIR=/usr/lib/cmake \ + -DCMAKE_BUILD_TYPE=Release \ + -DUSE_SYSTEM_NCNN=on \ + -DUSE_SYSTEM_WEBP=on + + cmake --build build +} + +package() { + install -Dm755 -t "$pkgdir/usr/bin" build/$pkgname + install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" $pkgname-$pkgver/LICENSE + + cd $pkgname-$pkgver/models + for f in models-*/*; do + install -Dm644 "$f" "$pkgdir/usr/share/$pkgname/$f" + done +} diff --git a/waifu2x-ncnn-vulkan/model_path.patch b/waifu2x-ncnn-vulkan/model_path.patch new file mode 100644 index 0000000..3fd7396 --- /dev/null +++ b/waifu2x-ncnn-vulkan/model_path.patch @@ -0,0 +1,26 @@ +diff --git a/src/filesystem_utils.h b/src/filesystem_utils.h +index fdf172c..9706dc9 100644 +--- a/src/filesystem_utils.h ++++ b/src/filesystem_utils.h +@@ -169,7 +169,7 @@ static path_t sanitize_filepath(const path_t& path) + if (filepath_is_readable(path)) + return path; + +- return get_executable_directory() + path; ++ return "/usr/share/waifu2x-ncnn-vulkan/" + path; + } + + #endif // FILESYSTEM_UTILS_H +diff --git a/src/main.cpp b/src/main.cpp +index fa10e6f..5590b2f 100644 +--- a/src/main.cpp ++++ b/src/main.cpp +@@ -470,7 +470,7 @@ int main(int argc, char** argv) + int noise = 0; + int scale = 2; + std::vector tilesize; +- path_t model = PATHSTR("models-cunet"); ++ path_t model = PATHSTR("/usr/share/waifu2x-ncnn-vulkan/models-cunet"); + std::vector gpuid; + int jobs_load = 1; + std::vector jobs_proc; From ee817d55638013f4bfd7b776279793901cdcc3a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 14 Dec 2022 08:08:55 +0100 Subject: [PATCH 405/971] upgpkg: sublime-text-dev 4.4144-4 --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 805938a..d74c2c8 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4141 + pkgver = 4.4144 pkgrel = 4 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -11,9 +11,9 @@ pkgbase = sublime-text-dev depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4141_x64.tar.xz - sha256sums_x86_64 = 785a3dbf8852ae9d60579e9a755c8507db0e02939794a36f5415b4c1b1581b88 - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4141_arm64.tar.xz - sha256sums_aarch64 = 326c12a6dbd21f9d3bf97f464fc182e2dcd917311f4f6a4a73efd0bb949b3243 + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4144_x64.tar.xz + sha256sums_x86_64 = d7cceb1e18c9d138045895eeef4044da6786cdf5422482d18fa33dd82cff85a7 + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4144_arm64.tar.xz + sha256sums_aarch64 = e496df0677fde467d277b7a76543fd4cd8572efd224b817737b2c3c367998368 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index a4a9be9..fadf69a 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4141 +pkgver=4.4144 pkgrel=4 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -17,8 +17,8 @@ install=${pkgname}.install source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha256sums_x86_64=('785a3dbf8852ae9d60579e9a755c8507db0e02939794a36f5415b4c1b1581b88') -sha256sums_aarch64=('326c12a6dbd21f9d3bf97f464fc182e2dcd917311f4f6a4a73efd0bb949b3243') +sha256sums_x86_64=('d7cceb1e18c9d138045895eeef4044da6786cdf5422482d18fa33dd82cff85a7') +sha256sums_aarch64=('e496df0677fde467d277b7a76543fd4cd8572efd224b817737b2c3c367998368') package() { cd "${srcdir}" From 9b7ffc00cf6f43b76dcca25117b43cd5f6dad427 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 14 Dec 2022 10:08:07 +0100 Subject: [PATCH 406/971] upgpkg: sublime-text-dev 4.4145-1 upstream release --- sublime-text-dev/.SRCINFO | 12 ++++++------ sublime-text-dev/PKGBUILD | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index d74c2c8..e5370bf 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4144 - pkgrel = 4 + pkgver = 4.4145 + pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install arch = x86_64 @@ -11,9 +11,9 @@ pkgbase = sublime-text-dev depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4144_x64.tar.xz - sha256sums_x86_64 = d7cceb1e18c9d138045895eeef4044da6786cdf5422482d18fa33dd82cff85a7 - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4144_arm64.tar.xz - sha256sums_aarch64 = e496df0677fde467d277b7a76543fd4cd8572efd224b817737b2c3c367998368 + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4145_x64.tar.xz + sha256sums_x86_64 = 7775582994c7dfee34a8338c55cae7326dcaca86a333e2baf08a9507bf4a0815 + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4145_arm64.tar.xz + sha256sums_aarch64 = 90ddd2eb6d5a8a58c776370286ab835da2eb0c81396cf936b89a08af2717df8b pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index fadf69a..fb386ee 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,8 +3,8 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4144 -pkgrel=4 +pkgver=4.4145 +pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') url='https://www.sublimetext.com/dev' @@ -17,8 +17,8 @@ install=${pkgname}.install source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha256sums_x86_64=('d7cceb1e18c9d138045895eeef4044da6786cdf5422482d18fa33dd82cff85a7') -sha256sums_aarch64=('e496df0677fde467d277b7a76543fd4cd8572efd224b817737b2c3c367998368') +sha256sums_x86_64=('7775582994c7dfee34a8338c55cae7326dcaca86a333e2baf08a9507bf4a0815') +sha256sums_aarch64=('90ddd2eb6d5a8a58c776370286ab835da2eb0c81396cf936b89a08af2717df8b') package() { cd "${srcdir}" From 88eb6634f2ab2ffd5dd152da96cb60020e0ca45b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 15 Dec 2022 13:00:07 +0100 Subject: [PATCH 407/971] upgpkg: sublime-text-dev 4.4146-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index e5370bf..0868501 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4145 + pkgver = 4.4146 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -11,9 +11,9 @@ pkgbase = sublime-text-dev depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4145_x64.tar.xz - sha256sums_x86_64 = 7775582994c7dfee34a8338c55cae7326dcaca86a333e2baf08a9507bf4a0815 - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4145_arm64.tar.xz - sha256sums_aarch64 = 90ddd2eb6d5a8a58c776370286ab835da2eb0c81396cf936b89a08af2717df8b + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4146_x64.tar.xz + sha256sums_x86_64 = 120212f57d5865b6a10cdfbcdecbe0a3b5789a8c6fbc44c804a1a41c02abffdf + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4146_arm64.tar.xz + sha256sums_aarch64 = 3e425fef260e6cba0ebf261d7b7970b8d35adc6831c85ce923288766659e337d pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index fb386ee..6301ca1 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4145 +pkgver=4.4146 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -17,8 +17,8 @@ install=${pkgname}.install source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha256sums_x86_64=('7775582994c7dfee34a8338c55cae7326dcaca86a333e2baf08a9507bf4a0815') -sha256sums_aarch64=('90ddd2eb6d5a8a58c776370286ab835da2eb0c81396cf936b89a08af2717df8b') +sha256sums_x86_64=('120212f57d5865b6a10cdfbcdecbe0a3b5789a8c6fbc44c804a1a41c02abffdf') +sha256sums_aarch64=('3e425fef260e6cba0ebf261d7b7970b8d35adc6831c85ce923288766659e337d') package() { cd "${srcdir}" From 483589bb94af4b8b4bee2d2e9244b541c1a1a54e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 16 Dec 2022 21:25:50 +0100 Subject: [PATCH 408/971] upgpkg: firefox-syncstorage 0.13.1-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index 5ccb692..c48ac11 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.13.0 + pkgver = 0.13.1 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -20,9 +20,9 @@ pkgbase = firefox-syncstorage depends = python-tokenlib optdepends = mysql: for use with a local database server backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.13.0/syncstorage-rs-0.13.0.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.13.1/syncstorage-rs-0.13.1.tar.gz source = firefox-syncstorage.service - sha256sums = 62c9922f3fc8067da511780fbdd7e41a55d18ec0790827ec253a17fcc60022a7 + sha256sums = b053729db8b3bba7632dd739cf734d5526697745b366645d7e9e93680b7fc1d5 sha256sums = 609e057cd835ea54b06b32b98e210cd946255f652e7754c9160fd7c94379a83d pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index b6ff601..e084645 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.13.0 +pkgver=0.13.1 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -17,7 +17,7 @@ optdepends=('mysql: for use with a local database server') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha256sums=('62c9922f3fc8067da511780fbdd7e41a55d18ec0790827ec253a17fcc60022a7' +sha256sums=('b053729db8b3bba7632dd739cf734d5526697745b366645d7e9e93680b7fc1d5' '609e057cd835ea54b06b32b98e210cd946255f652e7754c9160fd7c94379a83d') backup=("etc/${pkgname}.toml") From 7d45c4876a82034c5bde2f766a33883f97fe62fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 22 Dec 2022 17:53:06 +0100 Subject: [PATCH 409/971] upgpkg: sublime-text-dev 4.4147-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 0868501..1d4e2d5 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4146 + pkgver = 4.4147 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -11,9 +11,9 @@ pkgbase = sublime-text-dev depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4146_x64.tar.xz - sha256sums_x86_64 = 120212f57d5865b6a10cdfbcdecbe0a3b5789a8c6fbc44c804a1a41c02abffdf - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4146_arm64.tar.xz - sha256sums_aarch64 = 3e425fef260e6cba0ebf261d7b7970b8d35adc6831c85ce923288766659e337d + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4147_x64.tar.xz + sha256sums_x86_64 = f73b3ed9ca7ea62774cbfbf9b4724de23a7bb0cd68181e44806ccc0122f7cb8a + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4147_arm64.tar.xz + sha256sums_aarch64 = 2b2bc724fa8111f7904099eec96640eef1a15a4605a8c693331faecbeddc677d pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 6301ca1..88fa797 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4146 +pkgver=4.4147 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -17,8 +17,8 @@ install=${pkgname}.install source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha256sums_x86_64=('120212f57d5865b6a10cdfbcdecbe0a3b5789a8c6fbc44c804a1a41c02abffdf') -sha256sums_aarch64=('3e425fef260e6cba0ebf261d7b7970b8d35adc6831c85ce923288766659e337d') +sha256sums_x86_64=('f73b3ed9ca7ea62774cbfbf9b4724de23a7bb0cd68181e44806ccc0122f7cb8a') +sha256sums_aarch64=('2b2bc724fa8111f7904099eec96640eef1a15a4605a8c693331faecbeddc677d') package() { cd "${srcdir}" From 39d038f3ba49c565be94bac12a58a310f2b3ad46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 30 Dec 2022 14:05:48 +0100 Subject: [PATCH 410/971] upgpkg: clonezilla-unstable 5.3.3-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index cb3fa02..fdbc35e 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.3.1 + pkgver = 5.3.3 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.3.1.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.3.3.tar.xz source = usrbin.patch - sha256sums = 5e3aa9d4fbda0c06478896f7d4052f04c37413948e606b5909de7f3afe59e81c + sha256sums = f2a74ad67a2c4cf0fd6171c7a50c68f0333c128331e2fc0cf24f4def0f02f2a8 sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index d06e2dc..5382347 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.3.1 +pkgver=5.3.3 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('5e3aa9d4fbda0c06478896f7d4052f04c37413948e606b5909de7f3afe59e81c' +sha256sums=('f2a74ad67a2c4cf0fd6171c7a50c68f0333c128331e2fc0cf24f4def0f02f2a8' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From a44bdddd3c8bd53fc8fd5bd6e0f079a75aa35926 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 30 Dec 2022 14:05:48 +0100 Subject: [PATCH 411/971] upgpkg: clonezilla-unstable 5.3.3-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index cb3fa02..fdbc35e 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.3.1 + pkgver = 5.3.3 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.3.1.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.3.3.tar.xz source = usrbin.patch - sha256sums = 5e3aa9d4fbda0c06478896f7d4052f04c37413948e606b5909de7f3afe59e81c + sha256sums = f2a74ad67a2c4cf0fd6171c7a50c68f0333c128331e2fc0cf24f4def0f02f2a8 sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index d06e2dc..5382347 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.3.1 +pkgver=5.3.3 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('5e3aa9d4fbda0c06478896f7d4052f04c37413948e606b5909de7f3afe59e81c' +sha256sums=('f2a74ad67a2c4cf0fd6171c7a50c68f0333c128331e2fc0cf24f4def0f02f2a8' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From bdc1308751d6ad86527b99c8aed0f4bc0fb1bf4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 4 Jan 2023 23:07:02 +0100 Subject: [PATCH 412/971] upgpkg: gvisor-bin 20230102.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index d9d686b..496e11d 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20221205.0 + pkgver = 20230102.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20221205.0::https://storage.googleapis.com/gvisor/releases/release/20221205.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20221205.0::https://storage.googleapis.com/gvisor/releases/release/20221205.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = 71cc1902409048437c71755c51a351d986c6280dd2872961efd87beebf96a00b87013bc02697594f33053e376a8f17bbb24e67682ae48769a24a23d2d5555aaa - sha512sums_x86_64 = 03c8ae69c35d54296ed5064d8d7769a984a9b82b82e2edbdee4186d07cb363cb0db8c704458909a989f947ebbaa2da04f204277351d227868f4a2deedf3b4965 - source_aarch64 = runsc-aarch64-20221205.0::https://storage.googleapis.com/gvisor/releases/release/20221205.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20221205.0::https://storage.googleapis.com/gvisor/releases/release/20221205.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 186a4efd729b956e06ff19666b0dbbcc4b71ef9edba57a1f68db627c8d60eab2725be2d4814e62e4ba2950d8a783f479c259c7af5d81121fdc7fcd6f4d59efc8 - sha512sums_aarch64 = 9a9b9be295a3bbf123f7738ea3a805505098eed2966f074344e81a62691e05bc2c4264000adb2e7460e3813f8b45d573eb0863d41d0a2729c2a62bc7610be59e + source_x86_64 = runsc-x86_64-20230102.0::https://storage.googleapis.com/gvisor/releases/release/20230102.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20230102.0::https://storage.googleapis.com/gvisor/releases/release/20230102.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = 86fb3445a655b0927d0896c7fa5a4f1e80a836a38b4a3bb8783f9fa6e4a3ed251867bb460c919fa91848bcff43764491095da706a40b7e75a73894cf1adc4087 + sha512sums_x86_64 = a755d24368b83b6f4388fc922f60222b060b92d613a541b89e241e5c42889c5f9043e8095c5b4be5e34cca836cbbb00d258558595e6189f96cfdcff91293da22 + source_aarch64 = runsc-aarch64-20230102.0::https://storage.googleapis.com/gvisor/releases/release/20230102.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20230102.0::https://storage.googleapis.com/gvisor/releases/release/20230102.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = cfb1cd42507fbe44e74cda1bafafe67cb24d4f3142310ad5da0034418ff1c69ecb3e0c6b211571bb7b255679c346d372983f023e297e52208537b7a6f03f117e + sha512sums_aarch64 = 113e24d2dae9d614b2774e632abd509fe4b52320f4111a97b4892c20324659a31991aae08ccb32091d2a804a4a569ee3e488faba4d0fc68ef4c1a60e0a9b4608 pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index 2fb0a8b..17c139f 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20221205.0 +pkgver=20230102.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('71cc1902409048437c71755c51a351d986c6280dd2872961efd87beebf96a00b87013bc02697594f33053e376a8f17bbb24e67682ae48769a24a23d2d5555aaa' - '03c8ae69c35d54296ed5064d8d7769a984a9b82b82e2edbdee4186d07cb363cb0db8c704458909a989f947ebbaa2da04f204277351d227868f4a2deedf3b4965') -sha512sums_aarch64=('186a4efd729b956e06ff19666b0dbbcc4b71ef9edba57a1f68db627c8d60eab2725be2d4814e62e4ba2950d8a783f479c259c7af5d81121fdc7fcd6f4d59efc8' - '9a9b9be295a3bbf123f7738ea3a805505098eed2966f074344e81a62691e05bc2c4264000adb2e7460e3813f8b45d573eb0863d41d0a2729c2a62bc7610be59e') +sha512sums_x86_64=('86fb3445a655b0927d0896c7fa5a4f1e80a836a38b4a3bb8783f9fa6e4a3ed251867bb460c919fa91848bcff43764491095da706a40b7e75a73894cf1adc4087' + 'a755d24368b83b6f4388fc922f60222b060b92d613a541b89e241e5c42889c5f9043e8095c5b4be5e34cca836cbbb00d258558595e6189f96cfdcff91293da22') +sha512sums_aarch64=('cfb1cd42507fbe44e74cda1bafafe67cb24d4f3142310ad5da0034418ff1c69ecb3e0c6b211571bb7b255679c346d372983f023e297e52208537b7a6f03f117e' + '113e24d2dae9d614b2774e632abd509fe4b52320f4111a97b4892c20324659a31991aae08ccb32091d2a804a4a569ee3e488faba4d0fc68ef4c1a60e0a9b4608') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From 42e209e49adeed867d8cef13dfe5afb76c1108d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 4 Jan 2023 23:07:26 +0100 Subject: [PATCH 413/971] upgpkg: gvisor-git 20230102.0-1 --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index 9b24227..188b632 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20221205.0 + pkgver = 20230102.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index bacf97e..5e631e9 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20221205.0 +pkgver=20230102.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From f6926a9d8f03be6c0e34dcee770107dabed26184 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 8 Jan 2023 15:20:16 +0100 Subject: [PATCH 414/971] upgpkg: clonezilla-unstable 5.3.4-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index fdbc35e..46e0517 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.3.3 + pkgver = 5.3.4 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.3.3.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.3.4.tar.xz source = usrbin.patch - sha256sums = f2a74ad67a2c4cf0fd6171c7a50c68f0333c128331e2fc0cf24f4def0f02f2a8 + sha256sums = 2104ecd205f9bdb972f430558cbac890539fa861f0d84a2eb96b20f7850dc8ad sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 5382347..05cd55f 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.3.3 +pkgver=5.3.4 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('f2a74ad67a2c4cf0fd6171c7a50c68f0333c128331e2fc0cf24f4def0f02f2a8' +sha256sums=('2104ecd205f9bdb972f430558cbac890539fa861f0d84a2eb96b20f7850dc8ad' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From f6d6cb34612fc2df4994abd8d12eb2056bc42dd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 8 Jan 2023 15:20:16 +0100 Subject: [PATCH 415/971] upgpkg: clonezilla-unstable 5.3.4-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index fdbc35e..46e0517 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.3.3 + pkgver = 5.3.4 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.3.3.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.3.4.tar.xz source = usrbin.patch - sha256sums = f2a74ad67a2c4cf0fd6171c7a50c68f0333c128331e2fc0cf24f4def0f02f2a8 + sha256sums = 2104ecd205f9bdb972f430558cbac890539fa861f0d84a2eb96b20f7850dc8ad sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 5382347..05cd55f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.3.3 +pkgver=5.3.4 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('f2a74ad67a2c4cf0fd6171c7a50c68f0333c128331e2fc0cf24f4def0f02f2a8' +sha256sums=('2104ecd205f9bdb972f430558cbac890539fa861f0d84a2eb96b20f7850dc8ad' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From ad9d01d05705a6d6af0f30dce135f86f65c7a6ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 8 Jan 2023 17:08:46 +0100 Subject: [PATCH 416/971] upgpkg: clonezilla-unstable 5.3.5-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 46e0517..713cd01 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.3.4 + pkgver = 5.3.5 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.3.4.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.3.5.tar.xz source = usrbin.patch - sha256sums = 2104ecd205f9bdb972f430558cbac890539fa861f0d84a2eb96b20f7850dc8ad + sha256sums = be3210c2d6480cddbce25332ab0a424a9cbffb3a6a3dd000988450882d6a42b7 sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 05cd55f..60e8a7d 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.3.4 +pkgver=5.3.5 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('2104ecd205f9bdb972f430558cbac890539fa861f0d84a2eb96b20f7850dc8ad' +sha256sums=('be3210c2d6480cddbce25332ab0a424a9cbffb3a6a3dd000988450882d6a42b7' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From 23415b90dcc799ddf54b59da81032c497955f057 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 8 Jan 2023 17:08:46 +0100 Subject: [PATCH 417/971] upgpkg: clonezilla-unstable 5.3.5-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 46e0517..713cd01 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.3.4 + pkgver = 5.3.5 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.3.4.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.3.5.tar.xz source = usrbin.patch - sha256sums = 2104ecd205f9bdb972f430558cbac890539fa861f0d84a2eb96b20f7850dc8ad + sha256sums = be3210c2d6480cddbce25332ab0a424a9cbffb3a6a3dd000988450882d6a42b7 sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 05cd55f..60e8a7d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.3.4 +pkgver=5.3.5 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('2104ecd205f9bdb972f430558cbac890539fa861f0d84a2eb96b20f7850dc8ad' +sha256sums=('be3210c2d6480cddbce25332ab0a424a9cbffb3a6a3dd000988450882d6a42b7' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From da4062644b6339b303f6a3d37ec08b96d1967cb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 10 Jan 2023 16:40:49 +0100 Subject: [PATCH 418/971] upgpkg: clonezilla-unstable 5.3.6-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 713cd01..6b91666 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.3.5 + pkgver = 5.3.6 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.3.5.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.3.6.tar.xz source = usrbin.patch - sha256sums = be3210c2d6480cddbce25332ab0a424a9cbffb3a6a3dd000988450882d6a42b7 + sha256sums = 4bc47cd3c6177c54a7997c8cf017397ad05ab41b47e0b1ace1e039e900c3cd6c sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 60e8a7d..d9bad8e 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.3.5 +pkgver=5.3.6 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('be3210c2d6480cddbce25332ab0a424a9cbffb3a6a3dd000988450882d6a42b7' +sha256sums=('4bc47cd3c6177c54a7997c8cf017397ad05ab41b47e0b1ace1e039e900c3cd6c' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From 1f031908d21fca9de7aafbd41a55d51e3cf457a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 10 Jan 2023 16:40:49 +0100 Subject: [PATCH 419/971] upgpkg: clonezilla-unstable 5.3.6-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 713cd01..6b91666 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.3.5 + pkgver = 5.3.6 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.3.5.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.3.6.tar.xz source = usrbin.patch - sha256sums = be3210c2d6480cddbce25332ab0a424a9cbffb3a6a3dd000988450882d6a42b7 + sha256sums = 4bc47cd3c6177c54a7997c8cf017397ad05ab41b47e0b1ace1e039e900c3cd6c sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 60e8a7d..d9bad8e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.3.5 +pkgver=5.3.6 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('be3210c2d6480cddbce25332ab0a424a9cbffb3a6a3dd000988450882d6a42b7' +sha256sums=('4bc47cd3c6177c54a7997c8cf017397ad05ab41b47e0b1ace1e039e900c3cd6c' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From 7ba91c18cb57c4c477a5a519353c250ea9c2f773 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 15 Jan 2023 20:44:49 +0100 Subject: [PATCH 420/971] upgpkg: discord-electron-bin 0.0.24-1 upstream release --- discord-electron-bin/.SRCINFO | 6 +++--- discord-electron-bin/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-bin/.SRCINFO b/discord-electron-bin/.SRCINFO index 7ac5e32..f23b1ca 100644 --- a/discord-electron-bin/.SRCINFO +++ b/discord-electron-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-bin pkgdesc = Discord using system provided electron (v13) for increased security and performance - pkgver = 0.0.22 + pkgver = 0.0.24 pkgrel = 1 url = https://discord.com arch = x86_64 @@ -14,7 +14,7 @@ pkgbase = discord-electron-bin provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.22/discord-0.0.22.tar.gz - sha512sums = 96c8486577bee7ae165bf96aab50c0733d83a2d9435357d9a4d9a3e9f3225ae6a7bf46e1a7d8b419ecc7ab4e270755332621a4f786ddb89a842379f5da40b271 + source = https://dl.discordapp.net/apps/linux/0.0.24/discord-0.0.24.tar.gz + sha512sums = 9e1aa15bc1b1d8ebd2819ba88e7c012c47966d7f150264e732c849d4f15023729f8de4e5a5eb999603fa6102a02313dbf7d178b33cfacca58018dcd214ed4e40 pkgname = discord-electron-bin diff --git a/discord-electron-bin/PKGBUILD b/discord-electron-bin/PKGBUILD index 4c3dfc5..67bc483 100644 --- a/discord-electron-bin/PKGBUILD +++ b/discord-electron-bin/PKGBUILD @@ -13,7 +13,7 @@ pkgname=discord-electron-bin _pkgname=discord _electron=13 #_electron=19 -pkgver=0.0.22 +pkgver=0.0.24 pkgrel=1 pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') @@ -29,7 +29,7 @@ optdepends=( 'xdg-utils: Open files' ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/discord-${pkgver}.tar.gz") -sha512sums=('96c8486577bee7ae165bf96aab50c0733d83a2d9435357d9a4d9a3e9f3225ae6a7bf46e1a7d8b419ecc7ab4e270755332621a4f786ddb89a842379f5da40b271') +sha512sums=('9e1aa15bc1b1d8ebd2819ba88e7c012c47966d7f150264e732c849d4f15023729f8de4e5a5eb999603fa6102a02313dbf7d178b33cfacca58018dcd214ed4e40') _tarname='Discord' From 72874d274e48b44f676736eb1643904fe37fc514 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 17 Jan 2023 17:10:21 +0100 Subject: [PATCH 421/971] upgpkg: obs-vkcapture 1.3.0-1 upstream release --- obs-vkcapture/.SRCINFO | 6 +++--- obs-vkcapture/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/obs-vkcapture/.SRCINFO b/obs-vkcapture/.SRCINFO index 7d690a2..e91fbe3 100644 --- a/obs-vkcapture/.SRCINFO +++ b/obs-vkcapture/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = obs-vkcapture - pkgver = 1.2.2 + pkgver = 1.3.0 pkgrel = 1 url = https://github.com/nowrep/obs-vkcapture arch = x86_64 @@ -13,8 +13,8 @@ pkgbase = obs-vkcapture depends = vulkan-icd-loader depends = libgl depends = obs-studio>=27 - source = https://github.com/nowrep/obs-vkcapture/archive/v1.2.2/obs-vkcapture-1.2.2.tar.gz - sha512sums = 382578afbd9bfacc4e3b2bf16e244ab8318e07c1cfdbe2d887acae6eefea4eba5ccc03e0e96ddd06e1bb65a229c622eb8205a380dace0abb91dce07812419a31 + source = https://github.com/nowrep/obs-vkcapture/archive/v1.3.0/obs-vkcapture-1.3.0.tar.gz + sha512sums = 60e7bb315c8863fe97160e1cae19286ea70ff2d820d1868e45f84dd41955dc77bcc5e94b3075a81d05bfd32f523e84fbca0d57429a9e94ef0c80fb95b3dc8f68 pkgname = obs-vkcapture pkgdesc = OBS Linux Vulkan/OpenGL game capture diff --git a/obs-vkcapture/PKGBUILD b/obs-vkcapture/PKGBUILD index f5f50ae..5ed6b93 100644 --- a/obs-vkcapture/PKGBUILD +++ b/obs-vkcapture/PKGBUILD @@ -2,7 +2,7 @@ pkgbase=obs-vkcapture pkgname=("$pkgbase" "lib32-$pkgbase") -pkgver=1.2.2 +pkgver=1.3.0 pkgrel=1 url="https://github.com/nowrep/$pkgbase" license=('GPL2') @@ -10,7 +10,7 @@ arch=('x86_64') depends=('vulkan-icd-loader' 'libgl' 'obs-studio>=27') makedepends=('gcc' 'cmake' 'vulkan-headers' 'lib32-gcc-libs' 'lib32-vulkan-icd-loader' 'lib32-libgl') source=("https://github.com/nowrep/$pkgbase/archive/v$pkgver/$pkgbase-$pkgver.tar.gz") -sha512sums=('382578afbd9bfacc4e3b2bf16e244ab8318e07c1cfdbe2d887acae6eefea4eba5ccc03e0e96ddd06e1bb65a229c622eb8205a380dace0abb91dce07812419a31') +sha512sums=('60e7bb315c8863fe97160e1cae19286ea70ff2d820d1868e45f84dd41955dc77bcc5e94b3075a81d05bfd32f523e84fbca0d57429a9e94ef0c80fb95b3dc8f68') build() { cmake -B build -S "$pkgbase-$pkgver" \ From 01d0e8bc6065d7b6de0e2e65cb75bc7201400f83 Mon Sep 17 00:00:00 2001 From: haawda Date: Mon, 23 Jan 2023 19:57:28 +0100 Subject: [PATCH 422/971] update --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 9d04485..6233901 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = ect pkgdesc = file compressor, supports postcompression of PNG, JPEG, GZIP and ZIP files. - pkgver = 0.9.3 + pkgver = 0.9.4 pkgrel = 1 url = https://github.com/fhanau/Efficient-Compression-Tool arch = i686 @@ -10,7 +10,7 @@ pkgbase = ect makedepends = git makedepends = cmake depends = gcc-libs - source = git+https://github.com/fhanau/Efficient-Compression-Tool.git#commit=230133d6a84149910f05b5d2c6e8ac3fff9de4a6 + source = git+https://github.com/fhanau/Efficient-Compression-Tool.git#commit=503409a4de166ad1544adcb5d4e48fef308a2727 md5sums = SKIP pkgname = ect diff --git a/PKGBUILD b/PKGBUILD index cac98ad..9b16335 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,13 +3,13 @@ pkgname=ect _pkgname=Efficient-Compression-Tool -pkgver=0.9.3 +pkgver=0.9.4 pkgrel=1 pkgdesc='file compressor, supports postcompression of PNG, JPEG, GZIP and ZIP files.' url='https://github.com/fhanau/Efficient-Compression-Tool' arch=('i686' 'x86_64') license=('Apache') -source=("git+$url.git#commit=230133d6a84149910f05b5d2c6e8ac3fff9de4a6") +source=("git+$url.git#commit=503409a4de166ad1544adcb5d4e48fef308a2727") md5sums=('SKIP') depends=('gcc-libs') makedepends=('nasm' 'git' 'cmake') From 3995c198a8f8d57a162ee02e7910e4c0229e1c17 Mon Sep 17 00:00:00 2001 From: Christian Pellegrin Date: Sun, 29 Jan 2023 15:08:17 +0100 Subject: [PATCH 423/971] upgpkg: systemtap 4.8-1 updated repository location --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 1b651cb..5a1318a 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -15,8 +15,8 @@ pkgbase = systemtap depends = python depends = cpio optdepends = sqlite3: for storing results in a database - source = systemtap-4.8.tar.gz::https://sourceware.org/systemtap/ftp/releases/systemtap-4.8.tar.gz - source = systemtap-4.8.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/systemtap-4.8.tar.gz.sig + source = systemtap-4.8.tar.gz::https://sourceware.org/ftp/systemtap/releases/systemtap-4.8.tar.gz + source = systemtap-4.8.tar.gz.asc::https://sourceware.org/ftp/systemtap/releases/systemtap-4.8.tar.gz.sig validpgpkeys = F75E6545B9F8AA15AA932A444DE16D68FDBFFFB8 validpgpkeys = 5D38116FA4D3A7CC77E378D37E83610126DCC2E8 validpgpkeys = 159B0DF71150B8A8539A8802D7C256443CC637CA diff --git a/PKGBUILD b/PKGBUILD index 6ac031d..bfdbabb 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -13,8 +13,8 @@ license=('GPL') depends=('elfutils' 'nss' 'python' 'cpio') makedepends=('python-setuptools' 'python2-setuptools' 'xmlto') optdepends=('sqlite3: for storing results in a database') -source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz" - "${pkgname}-${pkgver}.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz.sig" +source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/ftp/systemtap/releases/${pkgname}-${pkgver}.tar.gz" + "${pkgname}-${pkgver}.tar.gz.asc::https://sourceware.org/ftp/systemtap/releases/${pkgname}-${pkgver}.tar.gz.sig" ) sha512sums=('fdcbc48ba17b2155c1419d99147a4cfbee2e69db945bfd0e6881b71ab11165bd23ea7ce9456856ae36807fb18f9934880a6b7c44456b63833ea260038744d9f2' 'SKIP') From 1abef8ab74b5b68ceb112fa879c2f443cd4f319e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 14 Feb 2023 20:59:04 +0100 Subject: [PATCH 424/971] upgpkg: discord-electron-bin 0.0.25-1 upstream release --- discord-electron-bin/.SRCINFO | 6 +++--- discord-electron-bin/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-bin/.SRCINFO b/discord-electron-bin/.SRCINFO index f23b1ca..348bd12 100644 --- a/discord-electron-bin/.SRCINFO +++ b/discord-electron-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-bin pkgdesc = Discord using system provided electron (v13) for increased security and performance - pkgver = 0.0.24 + pkgver = 0.0.25 pkgrel = 1 url = https://discord.com arch = x86_64 @@ -14,7 +14,7 @@ pkgbase = discord-electron-bin provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.24/discord-0.0.24.tar.gz - sha512sums = 9e1aa15bc1b1d8ebd2819ba88e7c012c47966d7f150264e732c849d4f15023729f8de4e5a5eb999603fa6102a02313dbf7d178b33cfacca58018dcd214ed4e40 + source = https://dl.discordapp.net/apps/linux/0.0.25/discord-0.0.25.tar.gz + sha512sums = 21a3e6dff2fd33fe0cd5b1c9c340cbeebc6fd214d9f0be8c05ac9faad2f287d17726bd45bebb4ecebe90533da20f501ad1156ac8097318d7545f78811ebe1224 pkgname = discord-electron-bin diff --git a/discord-electron-bin/PKGBUILD b/discord-electron-bin/PKGBUILD index 67bc483..d891d80 100644 --- a/discord-electron-bin/PKGBUILD +++ b/discord-electron-bin/PKGBUILD @@ -13,7 +13,7 @@ pkgname=discord-electron-bin _pkgname=discord _electron=13 #_electron=19 -pkgver=0.0.24 +pkgver=0.0.25 pkgrel=1 pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') @@ -29,7 +29,7 @@ optdepends=( 'xdg-utils: Open files' ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/discord-${pkgver}.tar.gz") -sha512sums=('9e1aa15bc1b1d8ebd2819ba88e7c012c47966d7f150264e732c849d4f15023729f8de4e5a5eb999603fa6102a02313dbf7d178b33cfacca58018dcd214ed4e40') +sha512sums=('21a3e6dff2fd33fe0cd5b1c9c340cbeebc6fd214d9f0be8c05ac9faad2f287d17726bd45bebb4ecebe90533da20f501ad1156ac8097318d7545f78811ebe1224') _tarname='Discord' From 8dfb31458f9b8edfe969dc5f4980d9174fbe2967 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 18 Feb 2023 22:53:48 +0100 Subject: [PATCH 425/971] upgpkg: bino 2.1-1 upstream release --- bino/.SRCINFO | 8 ++++---- bino/PKGBUILD | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bino/.SRCINFO b/bino/.SRCINFO index 528d8d7..04ac342 100644 --- a/bino/.SRCINFO +++ b/bino/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = bino pkgdesc = A video player with focus on 3D and Virtual Reality - pkgver = 2.0 + pkgver = 2.1 pkgrel = 1 url = https://bino3d.org/ arch = x86_64 @@ -10,10 +10,10 @@ pkgbase = bino depends = qt6-multimedia depends = qt6-svg depends = qvr - source = https://bino3d.org/releases/bino-2.0.tar.gz - source = https://bino3d.org/releases/bino-2.0.tar.gz.sig + source = https://bino3d.org/releases/bino-2.1.tar.gz + source = https://bino3d.org/releases/bino-2.1.tar.gz.sig validpgpkeys = 2F61B4828BBA779AECB3F32703A2A4AB1E32FD34 - sha512sums = 5620c506f4de1a9aa7f21f0a23481c5174e7a6a47e6401a84d048dc87843249ef325e33ebc49790d405eb4697c3c571550b0e202f24e758c446ce8e4014f98b3 + sha512sums = 6a7e22a311bdfce4fbfb4b0dedebc5524ea08af773d14e6ca235c3693c7aacea40b1941302e2a9c20564a0783b4728b38db9f6cbb727289df668d50dbba0180d sha512sums = SKIP pkgname = bino diff --git a/bino/PKGBUILD b/bino/PKGBUILD index 9a399de..63cdbe5 100644 --- a/bino/PKGBUILD +++ b/bino/PKGBUILD @@ -4,7 +4,7 @@ # Contributor: archtux pkgname=bino -pkgver=2.0 +pkgver=2.1 pkgrel=1 pkgdesc='A video player with focus on 3D and Virtual Reality' arch=('x86_64') @@ -13,7 +13,7 @@ license=('GPL3') depends=('qt6-multimedia' 'qt6-svg' 'qvr') makedepends=('cmake' 'qt6-tools') source=(https://bino3d.org/releases/$pkgname-$pkgver.tar.gz{,.sig}) -sha512sums=('5620c506f4de1a9aa7f21f0a23481c5174e7a6a47e6401a84d048dc87843249ef325e33ebc49790d405eb4697c3c571550b0e202f24e758c446ce8e4014f98b3' +sha512sums=('6a7e22a311bdfce4fbfb4b0dedebc5524ea08af773d14e6ca235c3693c7aacea40b1941302e2a9c20564a0783b4728b38db9f6cbb727289df668d50dbba0180d' 'SKIP') validpgpkeys=('2F61B4828BBA779AECB3F32703A2A4AB1E32FD34') From 31fc4a9a8bbc781cf04bbd336ed1a41c23beada9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 18 Feb 2023 22:55:17 +0100 Subject: [PATCH 426/971] upgpkg: gvisor-bin 20230214.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index 496e11d..85877bd 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20230102.0 + pkgver = 20230214.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20230102.0::https://storage.googleapis.com/gvisor/releases/release/20230102.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20230102.0::https://storage.googleapis.com/gvisor/releases/release/20230102.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = 86fb3445a655b0927d0896c7fa5a4f1e80a836a38b4a3bb8783f9fa6e4a3ed251867bb460c919fa91848bcff43764491095da706a40b7e75a73894cf1adc4087 - sha512sums_x86_64 = a755d24368b83b6f4388fc922f60222b060b92d613a541b89e241e5c42889c5f9043e8095c5b4be5e34cca836cbbb00d258558595e6189f96cfdcff91293da22 - source_aarch64 = runsc-aarch64-20230102.0::https://storage.googleapis.com/gvisor/releases/release/20230102.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20230102.0::https://storage.googleapis.com/gvisor/releases/release/20230102.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = cfb1cd42507fbe44e74cda1bafafe67cb24d4f3142310ad5da0034418ff1c69ecb3e0c6b211571bb7b255679c346d372983f023e297e52208537b7a6f03f117e - sha512sums_aarch64 = 113e24d2dae9d614b2774e632abd509fe4b52320f4111a97b4892c20324659a31991aae08ccb32091d2a804a4a569ee3e488faba4d0fc68ef4c1a60e0a9b4608 + source_x86_64 = runsc-x86_64-20230214.0::https://storage.googleapis.com/gvisor/releases/release/20230214.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20230214.0::https://storage.googleapis.com/gvisor/releases/release/20230214.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = 365f61f7c9c16621a66a6802012a1b2f438142b7f23f8039ff49023dc403fa70aaf323a789033c97e0c7f5ab864e923d1f229a8734a27b550c12947e6b4647f5 + sha512sums_x86_64 = da396e687136abc1750ed63f8db9cd0bc626e87d0f366d9feb37d8a3bcc01f248a3e30e4f8d2843c45f0974b1b88d3dcba3687ec1d5929bb00bd7cee9951e58a + source_aarch64 = runsc-aarch64-20230214.0::https://storage.googleapis.com/gvisor/releases/release/20230214.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20230214.0::https://storage.googleapis.com/gvisor/releases/release/20230214.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = a4c0c77e6d51b7eeadec11853aeb0fef6e6ec801fb020bf68a4368449e59b28d8e88dc4509d1f3793430cdde4b9adb1e3e2fb989de24547322cb135dc2c6e67d + sha512sums_aarch64 = ae044b03ca364f33d694f6caecea6c314f7a1572fc8a91bbfb8d1af1a5dbdc1f96bea8b5f055ea2ab9bee25da0c6019451c167e60be661c5d4cf267e29b41705 pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index 17c139f..6728c10 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20230102.0 +pkgver=20230214.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('86fb3445a655b0927d0896c7fa5a4f1e80a836a38b4a3bb8783f9fa6e4a3ed251867bb460c919fa91848bcff43764491095da706a40b7e75a73894cf1adc4087' - 'a755d24368b83b6f4388fc922f60222b060b92d613a541b89e241e5c42889c5f9043e8095c5b4be5e34cca836cbbb00d258558595e6189f96cfdcff91293da22') -sha512sums_aarch64=('cfb1cd42507fbe44e74cda1bafafe67cb24d4f3142310ad5da0034418ff1c69ecb3e0c6b211571bb7b255679c346d372983f023e297e52208537b7a6f03f117e' - '113e24d2dae9d614b2774e632abd509fe4b52320f4111a97b4892c20324659a31991aae08ccb32091d2a804a4a569ee3e488faba4d0fc68ef4c1a60e0a9b4608') +sha512sums_x86_64=('365f61f7c9c16621a66a6802012a1b2f438142b7f23f8039ff49023dc403fa70aaf323a789033c97e0c7f5ab864e923d1f229a8734a27b550c12947e6b4647f5' + 'da396e687136abc1750ed63f8db9cd0bc626e87d0f366d9feb37d8a3bcc01f248a3e30e4f8d2843c45f0974b1b88d3dcba3687ec1d5929bb00bd7cee9951e58a') +sha512sums_aarch64=('a4c0c77e6d51b7eeadec11853aeb0fef6e6ec801fb020bf68a4368449e59b28d8e88dc4509d1f3793430cdde4b9adb1e3e2fb989de24547322cb135dc2c6e67d' + 'ae044b03ca364f33d694f6caecea6c314f7a1572fc8a91bbfb8d1af1a5dbdc1f96bea8b5f055ea2ab9bee25da0c6019451c167e60be661c5d4cf267e29b41705') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From d1ea287c2fc39105ef94a1f1026c199daf953772 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 18 Feb 2023 22:55:33 +0100 Subject: [PATCH 427/971] upgpkg: gvisor-git 20230214.0-1 --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index 188b632..a57f2a2 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20230102.0 + pkgver = 20230214.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index 5e631e9..aebbe7b 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20230102.0 +pkgver=20230214.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From 1373ba279d62c60067abcd1e3fe52f2b90115576 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 18 Feb 2023 23:37:46 +0100 Subject: [PATCH 428/971] upgpkg: firefox-syncstorage 0.13.2-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index c48ac11..2d52359 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.13.1 + pkgver = 0.13.2 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -20,9 +20,9 @@ pkgbase = firefox-syncstorage depends = python-tokenlib optdepends = mysql: for use with a local database server backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.13.1/syncstorage-rs-0.13.1.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.13.2/syncstorage-rs-0.13.2.tar.gz source = firefox-syncstorage.service - sha256sums = b053729db8b3bba7632dd739cf734d5526697745b366645d7e9e93680b7fc1d5 + sha256sums = 794866d6b6ca57f643c2f1f9b460a4d73e174df87cadd22465123d6c43f32cd6 sha256sums = 609e057cd835ea54b06b32b98e210cd946255f652e7754c9160fd7c94379a83d pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index e084645..d9b3bf3 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.13.1 +pkgver=0.13.2 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -17,7 +17,7 @@ optdepends=('mysql: for use with a local database server') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha256sums=('b053729db8b3bba7632dd739cf734d5526697745b366645d7e9e93680b7fc1d5' +sha256sums=('794866d6b6ca57f643c2f1f9b460a4d73e174df87cadd22465123d6c43f32cd6' '609e057cd835ea54b06b32b98e210cd946255f652e7754c9160fd7c94379a83d') backup=("etc/${pkgname}.toml") From 5d6aa8616003ac9f83230a5432349f40383fd370 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 18 Feb 2023 23:38:32 +0100 Subject: [PATCH 429/971] upgpkg: tuned 2.20.0-1 upstream release --- tuned/.SRCINFO | 6 +++--- tuned/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tuned/.SRCINFO b/tuned/.SRCINFO index 6761ce0..d104877 100644 --- a/tuned/.SRCINFO +++ b/tuned/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = 2.19.0 + pkgver = 2.20.0 pkgrel = 1 url = https://github.com/redhat-performance/tuned install = tuned.install @@ -21,7 +21,7 @@ pkgbase = tuned optdepends = virt-what: For use with virtual machines optdepends = systemtap: Disk and net statistic monitoring systemtap scripts backup = etc/tuned/active_profile - source = https://github.com/redhat-performance/tuned/archive/v2.19.0/tuned-2.19.0.tar.gz - sha256sums = 3cb2aeb9ecebd66a1a1c3aaff9589f5c5402201d16f7caa01acf0b9374ed8724 + source = https://github.com/redhat-performance/tuned/archive/v2.20.0/tuned-2.20.0.tar.gz + sha256sums = df32ac7a25f2c413cc39368c8cfaf1d11bf75be14efd0944ecafad8a369e486c pkgname = tuned diff --git a/tuned/PKGBUILD b/tuned/PKGBUILD index dd318d6..95acc7d 100644 --- a/tuned/PKGBUILD +++ b/tuned/PKGBUILD @@ -4,7 +4,7 @@ # Contributor: Tom pkgname=tuned -pkgver=2.19.0 +pkgver=2.20.0 pkgrel=1 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') @@ -16,7 +16,7 @@ makedepends=('desktop-file-utils') backup=('etc/tuned/active_profile') install="${pkgname}.install" source=("https://github.com/redhat-performance/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz") -sha256sums=('3cb2aeb9ecebd66a1a1c3aaff9589f5c5402201d16f7caa01acf0b9374ed8724') +sha256sums=('df32ac7a25f2c413cc39368c8cfaf1d11bf75be14efd0944ecafad8a369e486c') prepare() { cd "${pkgname}-${pkgver}" From 31a2a13f072edf9036ad32980c657c6450c59fde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 21 Feb 2023 22:30:05 +0100 Subject: [PATCH 430/971] upgpkg: clonezilla-unstable 5.4.0-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 6b91666..f3c5617 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.3.6 + pkgver = 5.4.0 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.3.6.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.0.tar.xz source = usrbin.patch - sha256sums = 4bc47cd3c6177c54a7997c8cf017397ad05ab41b47e0b1ace1e039e900c3cd6c + sha256sums = 7c66576a9a223988ba4e66dbfa8d38ccf7ad0c5a36f1eb7c4176bdd26ef4f3d9 sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index d9bad8e..a1b2e74 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.3.6 +pkgver=5.4.0 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('4bc47cd3c6177c54a7997c8cf017397ad05ab41b47e0b1ace1e039e900c3cd6c' +sha256sums=('7c66576a9a223988ba4e66dbfa8d38ccf7ad0c5a36f1eb7c4176bdd26ef4f3d9' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From 18d425914b187dd6a446253d69649d3293a3f12a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 21 Feb 2023 22:30:05 +0100 Subject: [PATCH 431/971] upgpkg: clonezilla-unstable 5.4.0-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 6b91666..f3c5617 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.3.6 + pkgver = 5.4.0 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.3.6.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.0.tar.xz source = usrbin.patch - sha256sums = 4bc47cd3c6177c54a7997c8cf017397ad05ab41b47e0b1ace1e039e900c3cd6c + sha256sums = 7c66576a9a223988ba4e66dbfa8d38ccf7ad0c5a36f1eb7c4176bdd26ef4f3d9 sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index d9bad8e..a1b2e74 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.3.6 +pkgver=5.4.0 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('4bc47cd3c6177c54a7997c8cf017397ad05ab41b47e0b1ace1e039e900c3cd6c' +sha256sums=('7c66576a9a223988ba4e66dbfa8d38ccf7ad0c5a36f1eb7c4176bdd26ef4f3d9' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From 4e0f9a096e2d9af099e22371d53061ef7a216c53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 24 Feb 2023 23:23:47 +0100 Subject: [PATCH 432/971] upgpkg: firefox-syncstorage 0.13.4-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index 2d52359..10070b8 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.13.2 + pkgver = 0.13.4 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -20,9 +20,9 @@ pkgbase = firefox-syncstorage depends = python-tokenlib optdepends = mysql: for use with a local database server backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.13.2/syncstorage-rs-0.13.2.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.13.4/syncstorage-rs-0.13.4.tar.gz source = firefox-syncstorage.service - sha256sums = 794866d6b6ca57f643c2f1f9b460a4d73e174df87cadd22465123d6c43f32cd6 + sha256sums = adfa2161b523e08cb45a37b4fada2ef80585828576e6c6b49e1de550d1e7e7e3 sha256sums = 609e057cd835ea54b06b32b98e210cd946255f652e7754c9160fd7c94379a83d pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index d9b3bf3..e56a934 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.13.2 +pkgver=0.13.4 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -17,7 +17,7 @@ optdepends=('mysql: for use with a local database server') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha256sums=('794866d6b6ca57f643c2f1f9b460a4d73e174df87cadd22465123d6c43f32cd6' +sha256sums=('adfa2161b523e08cb45a37b4fada2ef80585828576e6c6b49e1de550d1e7e7e3' '609e057cd835ea54b06b32b98e210cd946255f652e7754c9160fd7c94379a83d') backup=("etc/${pkgname}.toml") From c0ba92f1052afd6cc746484831f6345fb1304fd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 24 Feb 2023 23:24:08 +0100 Subject: [PATCH 433/971] upgpkg: spot-client 0.4.0-1 upstream release --- spot-client/.SRCINFO | 6 +++--- spot-client/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/spot-client/.SRCINFO b/spot-client/.SRCINFO index 3641cda..150dd22 100644 --- a/spot-client/.SRCINFO +++ b/spot-client/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client - pkgver = 0.3.3 + pkgver = 0.4.0 pkgrel = 1 url = https://github.com/xou816/spot arch = x86_64 @@ -25,9 +25,9 @@ pkgbase = spot-client depends = pango optdepends = org.freedesktop.secrets options = !lto - source = https://github.com/xou816/spot/archive/0.3.3/spot-0.3.3.tar.gz + source = https://github.com/xou816/spot/archive/0.4.0/spot-0.4.0.tar.gz source = disable-clippy.patch - sha512sums = 8b116e5e9a79efbbb6aef21b89ca93d3ea6083fb02b245662a4e222f85feef76dbc5abcdacfb0a29bf8ee0d8062137b3f0a1648a47537b26a9c16dd7bf525a8a + sha512sums = 45b7b28250d6a3ccfd829984d5ee2f94fc8f052467cfa94403171d7c9fe803c65567759b3b01b86b8cc7a1d8cbdff64d99c82a72c34997192386ff9f51531d1d sha512sums = 1cb0faced2e6801cb994e9af7b81411355837b2efcd9c82b82751508e0bfcc967c50b3d6296bfdb8c017bbf2e7a503a3920d36cb896e44c896c23f5b9e1d13f1 pkgname = spot-client diff --git a/spot-client/PKGBUILD b/spot-client/PKGBUILD index 6ad2678..2d3e1af 100644 --- a/spot-client/PKGBUILD +++ b/spot-client/PKGBUILD @@ -4,7 +4,7 @@ _projectname='spot' pkgname="$_projectname-client" -pkgver='0.3.3' +pkgver='0.4.0' pkgrel='1' pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -19,7 +19,7 @@ source=( "https://github.com/xou816/$_projectname/archive/$pkgver/$_projectname-$pkgver.tar.gz" 'disable-clippy.patch' ) -sha512sums=('8b116e5e9a79efbbb6aef21b89ca93d3ea6083fb02b245662a4e222f85feef76dbc5abcdacfb0a29bf8ee0d8062137b3f0a1648a47537b26a9c16dd7bf525a8a' +sha512sums=('45b7b28250d6a3ccfd829984d5ee2f94fc8f052467cfa94403171d7c9fe803c65567759b3b01b86b8cc7a1d8cbdff64d99c82a72c34997192386ff9f51531d1d' '1cb0faced2e6801cb994e9af7b81411355837b2efcd9c82b82751508e0bfcc967c50b3d6296bfdb8c017bbf2e7a503a3920d36cb896e44c896c23f5b9e1d13f1') validpgpkeys=() # waiting for https://github.com/xou816/spot/issues/283 @@ -30,7 +30,7 @@ prepare() { cd "$srcdir/$_sourcedirectory/" # Disable clippy tests, as they don't realy make sense for user builds (https://gitlab.com/dpeukert/pkgbuilds/-/issues/37) - patch --forward -p1 < '../disable-clippy.patch' + patch -Np1 < '../disable-clippy.patch' } build() { From 5884d3904f3c6f71b11566ce43eb94cce0306d81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 4 Mar 2023 23:00:00 +0100 Subject: [PATCH 434/971] upgpkg: firefox-syncstorage 0.13.5-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index 10070b8..9e5cabf 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.13.4 + pkgver = 0.13.5 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -20,9 +20,9 @@ pkgbase = firefox-syncstorage depends = python-tokenlib optdepends = mysql: for use with a local database server backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.13.4/syncstorage-rs-0.13.4.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.13.5/syncstorage-rs-0.13.5.tar.gz source = firefox-syncstorage.service - sha256sums = adfa2161b523e08cb45a37b4fada2ef80585828576e6c6b49e1de550d1e7e7e3 + sha256sums = 882e90da8d89235bb36e7c5fa307408cfd9b83abeb53f43f6ad60d1a6f676665 sha256sums = 609e057cd835ea54b06b32b98e210cd946255f652e7754c9160fd7c94379a83d pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index e56a934..9dba5ec 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.13.4 +pkgver=0.13.5 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -17,7 +17,7 @@ optdepends=('mysql: for use with a local database server') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha256sums=('adfa2161b523e08cb45a37b4fada2ef80585828576e6c6b49e1de550d1e7e7e3' +sha256sums=('882e90da8d89235bb36e7c5fa307408cfd9b83abeb53f43f6ad60d1a6f676665' '609e057cd835ea54b06b32b98e210cd946255f652e7754c9160fd7c94379a83d') backup=("etc/${pkgname}.toml") From 395a67d8f0915a093677c1c3ffd00606d0b784cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 7 Mar 2023 21:57:07 +0100 Subject: [PATCH 435/971] upgpkg: firefox-syncstorage 0.13.6-1 upstream release remove obsolete openssl compatibility parameter --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index 9e5cabf..1fe6ece 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.13.5 + pkgver = 0.13.6 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -20,9 +20,9 @@ pkgbase = firefox-syncstorage depends = python-tokenlib optdepends = mysql: for use with a local database server backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.13.5/syncstorage-rs-0.13.5.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.13.6/syncstorage-rs-0.13.6.tar.gz source = firefox-syncstorage.service - sha256sums = 882e90da8d89235bb36e7c5fa307408cfd9b83abeb53f43f6ad60d1a6f676665 + sha256sums = ddf8169a0a9bd06db10bf032a2b9af7ea4e5816251e82d9e7627f87eba1f27bd sha256sums = 609e057cd835ea54b06b32b98e210cd946255f652e7754c9160fd7c94379a83d pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index 9dba5ec..8f0836e 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.13.5 +pkgver=0.13.6 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -17,13 +17,13 @@ optdepends=('mysql: for use with a local database server') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha256sums=('882e90da8d89235bb36e7c5fa307408cfd9b83abeb53f43f6ad60d1a6f676665' +sha256sums=('ddf8169a0a9bd06db10bf032a2b9af7ea4e5816251e82d9e7627f87eba1f27bd' '609e057cd835ea54b06b32b98e210cd946255f652e7754c9160fd7c94379a83d') backup=("etc/${pkgname}.toml") build() { cd "${_pkgname}-${pkgver}" - cargo build --release --features grpcio/openssl + cargo build --release } package() { From 6080c9b2a6d7e17a069feb6398abb59d610089f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 9 Mar 2023 20:38:08 +0100 Subject: [PATCH 436/971] upgpkg: gvisor-bin 20230306.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index 85877bd..2b0fe78 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20230214.0 + pkgver = 20230306.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20230214.0::https://storage.googleapis.com/gvisor/releases/release/20230214.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20230214.0::https://storage.googleapis.com/gvisor/releases/release/20230214.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = 365f61f7c9c16621a66a6802012a1b2f438142b7f23f8039ff49023dc403fa70aaf323a789033c97e0c7f5ab864e923d1f229a8734a27b550c12947e6b4647f5 - sha512sums_x86_64 = da396e687136abc1750ed63f8db9cd0bc626e87d0f366d9feb37d8a3bcc01f248a3e30e4f8d2843c45f0974b1b88d3dcba3687ec1d5929bb00bd7cee9951e58a - source_aarch64 = runsc-aarch64-20230214.0::https://storage.googleapis.com/gvisor/releases/release/20230214.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20230214.0::https://storage.googleapis.com/gvisor/releases/release/20230214.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = a4c0c77e6d51b7eeadec11853aeb0fef6e6ec801fb020bf68a4368449e59b28d8e88dc4509d1f3793430cdde4b9adb1e3e2fb989de24547322cb135dc2c6e67d - sha512sums_aarch64 = ae044b03ca364f33d694f6caecea6c314f7a1572fc8a91bbfb8d1af1a5dbdc1f96bea8b5f055ea2ab9bee25da0c6019451c167e60be661c5d4cf267e29b41705 + source_x86_64 = runsc-x86_64-20230306.0::https://storage.googleapis.com/gvisor/releases/release/20230306.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20230306.0::https://storage.googleapis.com/gvisor/releases/release/20230306.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = 48e2bc01c56a33a100c4f7141b9bd46d7d99116c9098265b5d27ab494e6076ed81580bdf5c8efae8c3afe13625d47ef56099259c06bc6fcef6694986da0841f7 + sha512sums_x86_64 = 91aef8fe51301414f09e143de81b0f063fca060a666b18db1b5b931d0b4dfd63a84eea652a29e5a95ecae47249f520de6ae892168a6421be457c9917331a162a + source_aarch64 = runsc-aarch64-20230306.0::https://storage.googleapis.com/gvisor/releases/release/20230306.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20230306.0::https://storage.googleapis.com/gvisor/releases/release/20230306.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = ff4e89cbb36af870679e0549f0d56a4daba074d0ff312155daf316ea55504f80ee568dadf75623fc8d2b95eff59a4bc8375429e5961156af72a68c56e714c00f + sha512sums_aarch64 = cbad3cd0d5921f530a551f95d09d386b574cc45e2c59ce6c85443d8fe47fb5a9f92c329a50801aa24ccb930bc887f32d15d28a0b3a2fb63fce499c9fcfe7bdd8 pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index 6728c10..68626e1 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20230214.0 +pkgver=20230306.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('365f61f7c9c16621a66a6802012a1b2f438142b7f23f8039ff49023dc403fa70aaf323a789033c97e0c7f5ab864e923d1f229a8734a27b550c12947e6b4647f5' - 'da396e687136abc1750ed63f8db9cd0bc626e87d0f366d9feb37d8a3bcc01f248a3e30e4f8d2843c45f0974b1b88d3dcba3687ec1d5929bb00bd7cee9951e58a') -sha512sums_aarch64=('a4c0c77e6d51b7eeadec11853aeb0fef6e6ec801fb020bf68a4368449e59b28d8e88dc4509d1f3793430cdde4b9adb1e3e2fb989de24547322cb135dc2c6e67d' - 'ae044b03ca364f33d694f6caecea6c314f7a1572fc8a91bbfb8d1af1a5dbdc1f96bea8b5f055ea2ab9bee25da0c6019451c167e60be661c5d4cf267e29b41705') +sha512sums_x86_64=('48e2bc01c56a33a100c4f7141b9bd46d7d99116c9098265b5d27ab494e6076ed81580bdf5c8efae8c3afe13625d47ef56099259c06bc6fcef6694986da0841f7' + '91aef8fe51301414f09e143de81b0f063fca060a666b18db1b5b931d0b4dfd63a84eea652a29e5a95ecae47249f520de6ae892168a6421be457c9917331a162a') +sha512sums_aarch64=('ff4e89cbb36af870679e0549f0d56a4daba074d0ff312155daf316ea55504f80ee568dadf75623fc8d2b95eff59a4bc8375429e5961156af72a68c56e714c00f' + 'cbad3cd0d5921f530a551f95d09d386b574cc45e2c59ce6c85443d8fe47fb5a9f92c329a50801aa24ccb930bc887f32d15d28a0b3a2fb63fce499c9fcfe7bdd8') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From 32463dab64d604e2a85e8e3e459e79d7634b9d65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 9 Mar 2023 20:39:07 +0100 Subject: [PATCH 437/971] upgpkg: gvisor-git 20230306.0-1 --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index a57f2a2..4fd534d 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20230214.0 + pkgver = 20230306.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index aebbe7b..2b8d8ec 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20230214.0 +pkgver=20230306.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From dcab26fcf3239a6c3b113e2fd33375e3a9d5ebc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 15 Mar 2023 19:04:40 +0100 Subject: [PATCH 438/971] upgpkg: sublime-text-dev 4.4148-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 1d4e2d5..07b5d38 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4147 + pkgver = 4.4148 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -11,9 +11,9 @@ pkgbase = sublime-text-dev depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4147_x64.tar.xz - sha256sums_x86_64 = f73b3ed9ca7ea62774cbfbf9b4724de23a7bb0cd68181e44806ccc0122f7cb8a - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4147_arm64.tar.xz - sha256sums_aarch64 = 2b2bc724fa8111f7904099eec96640eef1a15a4605a8c693331faecbeddc677d + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4148_x64.tar.xz + sha256sums_x86_64 = cbb09509e4d67d58c4f790d649daae2cc47d6efa5ba76ac709f3a3eb713e595f + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4148_arm64.tar.xz + sha256sums_aarch64 = 8ec5827077891a37dfa88395d830c7f051d37a5e9cb3cd0b2073c162f00a2629 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 88fa797..e6b6ff8 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4147 +pkgver=4.4148 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -17,8 +17,8 @@ install=${pkgname}.install source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha256sums_x86_64=('f73b3ed9ca7ea62774cbfbf9b4724de23a7bb0cd68181e44806ccc0122f7cb8a') -sha256sums_aarch64=('2b2bc724fa8111f7904099eec96640eef1a15a4605a8c693331faecbeddc677d') +sha256sums_x86_64=('cbb09509e4d67d58c4f790d649daae2cc47d6efa5ba76ac709f3a3eb713e595f') +sha256sums_aarch64=('8ec5827077891a37dfa88395d830c7f051d37a5e9cb3cd0b2073c162f00a2629') package() { cd "${srcdir}" From b6af281e9bf9419650714dfdedeb64776aa29a94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 16 Mar 2023 21:45:47 +0100 Subject: [PATCH 439/971] upgpkg: clonezilla-unstable 5.4.2-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index f3c5617..b916c43 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.4.0 + pkgver = 5.4.2 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.0.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.2.tar.xz source = usrbin.patch - sha256sums = 7c66576a9a223988ba4e66dbfa8d38ccf7ad0c5a36f1eb7c4176bdd26ef4f3d9 + sha256sums = e571ee48d1b5e35ec4e75f5562b173e80e426b24b477582843c84530880471a6 sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index a1b2e74..42001fd 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.4.0 +pkgver=5.4.2 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('7c66576a9a223988ba4e66dbfa8d38ccf7ad0c5a36f1eb7c4176bdd26ef4f3d9' +sha256sums=('e571ee48d1b5e35ec4e75f5562b173e80e426b24b477582843c84530880471a6' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From 92963edddac34ff955ce7256e1a828a9319dccae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 16 Mar 2023 21:45:47 +0100 Subject: [PATCH 440/971] upgpkg: clonezilla-unstable 5.4.2-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index f3c5617..b916c43 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.4.0 + pkgver = 5.4.2 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.0.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.2.tar.xz source = usrbin.patch - sha256sums = 7c66576a9a223988ba4e66dbfa8d38ccf7ad0c5a36f1eb7c4176bdd26ef4f3d9 + sha256sums = e571ee48d1b5e35ec4e75f5562b173e80e426b24b477582843c84530880471a6 sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index a1b2e74..42001fd 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.4.0 +pkgver=5.4.2 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('7c66576a9a223988ba4e66dbfa8d38ccf7ad0c5a36f1eb7c4176bdd26ef4f3d9' +sha256sums=('e571ee48d1b5e35ec4e75f5562b173e80e426b24b477582843c84530880471a6' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From c29e4a938dc598e25b74bf45f416e065b26a1b6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 18 Mar 2023 22:12:14 +0100 Subject: [PATCH 441/971] upgpkg: clonezilla-unstable 5.4.3-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index b916c43..3a5989c 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.4.2 + pkgver = 5.4.3 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.2.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.3.tar.xz source = usrbin.patch - sha256sums = e571ee48d1b5e35ec4e75f5562b173e80e426b24b477582843c84530880471a6 + sha256sums = 78b05e75ce09b5e257cb2d957065aa822d6f9b31c14760305106cd31190fb219 sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 42001fd..346392a 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.4.2 +pkgver=5.4.3 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('e571ee48d1b5e35ec4e75f5562b173e80e426b24b477582843c84530880471a6' +sha256sums=('78b05e75ce09b5e257cb2d957065aa822d6f9b31c14760305106cd31190fb219' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From c4961dfcccf555c5abc74a724413c5ed419ea5b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 18 Mar 2023 22:12:14 +0100 Subject: [PATCH 442/971] upgpkg: clonezilla-unstable 5.4.3-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index b916c43..3a5989c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.4.2 + pkgver = 5.4.3 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.2.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.3.tar.xz source = usrbin.patch - sha256sums = e571ee48d1b5e35ec4e75f5562b173e80e426b24b477582843c84530880471a6 + sha256sums = 78b05e75ce09b5e257cb2d957065aa822d6f9b31c14760305106cd31190fb219 sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 42001fd..346392a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.4.2 +pkgver=5.4.3 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('e571ee48d1b5e35ec4e75f5562b173e80e426b24b477582843c84530880471a6' +sha256sums=('78b05e75ce09b5e257cb2d957065aa822d6f9b31c14760305106cd31190fb219' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From 6fd0e3aa05cdf835f9bd9e92c314d68f607cf78a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 22 Mar 2023 19:56:10 +0100 Subject: [PATCH 443/971] upgpkg: clonezilla-unstable 5.4.4-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 3a5989c..2229307 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.4.3 + pkgver = 5.4.4 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.3.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.4.tar.xz source = usrbin.patch - sha256sums = 78b05e75ce09b5e257cb2d957065aa822d6f9b31c14760305106cd31190fb219 + sha256sums = fee24540d4891d337f561ee75002c3962612c825e8d5fe7e9208b1256ec4c93b sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 346392a..32d7093 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.4.3 +pkgver=5.4.4 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('78b05e75ce09b5e257cb2d957065aa822d6f9b31c14760305106cd31190fb219' +sha256sums=('fee24540d4891d337f561ee75002c3962612c825e8d5fe7e9208b1256ec4c93b' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From a1fefcf2e1257cb2b448e1e182d2f22ff31996a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 22 Mar 2023 19:56:10 +0100 Subject: [PATCH 444/971] upgpkg: clonezilla-unstable 5.4.4-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 3a5989c..2229307 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.4.3 + pkgver = 5.4.4 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.3.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.4.tar.xz source = usrbin.patch - sha256sums = 78b05e75ce09b5e257cb2d957065aa822d6f9b31c14760305106cd31190fb219 + sha256sums = fee24540d4891d337f561ee75002c3962612c825e8d5fe7e9208b1256ec4c93b sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 346392a..32d7093 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.4.3 +pkgver=5.4.4 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('78b05e75ce09b5e257cb2d957065aa822d6f9b31c14760305106cd31190fb219' +sha256sums=('fee24540d4891d337f561ee75002c3962612c825e8d5fe7e9208b1256ec4c93b' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From f366caae8a42b07feb0ac696be28ddbbb6abeec6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 22 Mar 2023 19:56:38 +0100 Subject: [PATCH 445/971] upgpkg: prometheus-postgresql-exporter 0.12.0-1 upstream release --- prometheus-postgresql-exporter/.SRCINFO | 6 +++--- prometheus-postgresql-exporter/PKGBUILD | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/prometheus-postgresql-exporter/.SRCINFO b/prometheus-postgresql-exporter/.SRCINFO index 479e389..498cf58 100644 --- a/prometheus-postgresql-exporter/.SRCINFO +++ b/prometheus-postgresql-exporter/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = prometheus-postgresql-exporter pkgdesc = Prometheus exporter for PostgreSQL - pkgver = 0.11.1 + pkgver = 0.12.0 pkgrel = 1 url = https://github.com/prometheus-community/postgres_exporter arch = x86_64 @@ -9,10 +9,10 @@ pkgbase = prometheus-postgresql-exporter makedepends = go makedepends = make backup = etc/conf.d/prometheus-postgresql-exporter - source = https://github.com/prometheus-community/postgres_exporter/archive/v0.11.1/postgres_exporter-0.11.1.tar.gz + source = https://github.com/prometheus-community/postgres_exporter/archive/v0.12.0/postgres_exporter-0.12.0.tar.gz source = prometheus-postgresql-exporter.service source = prometheus-postgresql-exporter.conf - sha256sums = 48e38e5cc8f093f93a84b1536c2ae7dc480760f9c443ae654a9f1f83d289a7bc + sha256sums = cc87fd77563f5c02de424564ca4e8f8c21261ad87328d703eead3054385b29ee sha256sums = 0d86e650d88c8d4a8bc5b26faecb75023e069eaf29582135bcb0202e4a69a9b9 sha256sums = 5436ad34fbcd6faab69da8675631f3eb5b89d964682eb23164bf4bb816ad1897 diff --git a/prometheus-postgresql-exporter/PKGBUILD b/prometheus-postgresql-exporter/PKGBUILD index d36f698..a9e75b9 100644 --- a/prometheus-postgresql-exporter/PKGBUILD +++ b/prometheus-postgresql-exporter/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Nils Czernia pkgname=prometheus-postgresql-exporter -pkgver=0.11.1 +pkgver=0.12.0 pkgrel=1 pkgdesc="Prometheus exporter for PostgreSQL" arch=('x86_64') @@ -13,9 +13,9 @@ backup=('etc/conf.d/prometheus-postgresql-exporter') source=("https://github.com/prometheus-community/postgres_exporter/archive/v${pkgver}/postgres_exporter-${pkgver}.tar.gz" "prometheus-postgresql-exporter.service" "prometheus-postgresql-exporter.conf") -sha256sums=('48e38e5cc8f093f93a84b1536c2ae7dc480760f9c443ae654a9f1f83d289a7bc' - '0d86e650d88c8d4a8bc5b26faecb75023e069eaf29582135bcb0202e4a69a9b9' - '5436ad34fbcd6faab69da8675631f3eb5b89d964682eb23164bf4bb816ad1897') +sha256sums=('cc87fd77563f5c02de424564ca4e8f8c21261ad87328d703eead3054385b29ee' + '0d86e650d88c8d4a8bc5b26faecb75023e069eaf29582135bcb0202e4a69a9b9' + '5436ad34fbcd6faab69da8675631f3eb5b89d964682eb23164bf4bb816ad1897') prepare() { cd "postgres_exporter-${pkgver}" From 06471774c5c3f8ea0faf9de4c75be7099c6b5f13 Mon Sep 17 00:00:00 2001 From: leo_sk Date: Sun, 26 Mar 2023 05:25:12 +0530 Subject: [PATCH 446/971] update to 1.3.3 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 5d7e33f..8e9d60f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sierra-breeze-enhanced pkgdesc = A kwin decoration with support for transparency, rounded corners, multiple titlebar button presets and more - pkgver = 1.3.1 + pkgver = 1.3.3 pkgrel = 1 url = https://github.com/kupiqu/SierraBreezeEnhanced/ arch = x86_64 @@ -8,7 +8,7 @@ pkgbase = sierra-breeze-enhanced makedepends = cmake makedepends = extra-cmake-modules depends = kwin - source = https://github.com/kupiqu/SierraBreezeEnhanced/archive/refs/tags/V1.3.1.tar.gz - sha256sums = e507084f359ceb1fd11f4b1a54cbd350601d6cebae837765412da7b5d2744b8c + source = https://github.com/kupiqu/SierraBreezeEnhanced/archive/refs/tags/V1.3.3.tar.gz + sha256sums = 37d10ee089091e33b48d27829c0659a2240c55bcb8b762fddd03cc6ab59458c0 pkgname = sierra-breeze-enhanced diff --git a/PKGBUILD b/PKGBUILD index 615395f..b36a880 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=sierra-breeze-enhanced _gitname=SierraBreezeEnhanced - pkgver=1.3.1 + pkgver=1.3.3 pkgrel=1 pkgdesc="A kwin decoration with support for transparency, rounded corners, multiple titlebar button presets and more" arch=('x86_64') @@ -11,7 +11,7 @@ depends=('kwin') makedepends=('cmake' 'extra-cmake-modules') source=("${url}archive/refs/tags/V${pkgver}.tar.gz") - sha256sums=('e507084f359ceb1fd11f4b1a54cbd350601d6cebae837765412da7b5d2744b8c') + sha256sums=('37d10ee089091e33b48d27829c0659a2240c55bcb8b762fddd03cc6ab59458c0') build() { From 57c47c4d64480a793ecdcaff934a3fd40cc98852 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 28 Mar 2023 00:58:31 +0200 Subject: [PATCH 447/971] upgpkg: obs-vkcapture 1.3.1-1 upstream release --- obs-vkcapture/.SRCINFO | 6 +++--- obs-vkcapture/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/obs-vkcapture/.SRCINFO b/obs-vkcapture/.SRCINFO index e91fbe3..880882d 100644 --- a/obs-vkcapture/.SRCINFO +++ b/obs-vkcapture/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = obs-vkcapture - pkgver = 1.3.0 + pkgver = 1.3.1 pkgrel = 1 url = https://github.com/nowrep/obs-vkcapture arch = x86_64 @@ -13,8 +13,8 @@ pkgbase = obs-vkcapture depends = vulkan-icd-loader depends = libgl depends = obs-studio>=27 - source = https://github.com/nowrep/obs-vkcapture/archive/v1.3.0/obs-vkcapture-1.3.0.tar.gz - sha512sums = 60e7bb315c8863fe97160e1cae19286ea70ff2d820d1868e45f84dd41955dc77bcc5e94b3075a81d05bfd32f523e84fbca0d57429a9e94ef0c80fb95b3dc8f68 + source = https://github.com/nowrep/obs-vkcapture/archive/v1.3.1/obs-vkcapture-1.3.1.tar.gz + sha512sums = d143a758c6901a40fae32f876d6b20bfcd0bdf3502e54e455e3e53888208e7901da26926268390bbfb7d92989dbc3874e551f8c8684c18cfbcf4292aaa6cf8f8 pkgname = obs-vkcapture pkgdesc = OBS Linux Vulkan/OpenGL game capture diff --git a/obs-vkcapture/PKGBUILD b/obs-vkcapture/PKGBUILD index 5ed6b93..32868b0 100644 --- a/obs-vkcapture/PKGBUILD +++ b/obs-vkcapture/PKGBUILD @@ -2,7 +2,7 @@ pkgbase=obs-vkcapture pkgname=("$pkgbase" "lib32-$pkgbase") -pkgver=1.3.0 +pkgver=1.3.1 pkgrel=1 url="https://github.com/nowrep/$pkgbase" license=('GPL2') @@ -10,7 +10,7 @@ arch=('x86_64') depends=('vulkan-icd-loader' 'libgl' 'obs-studio>=27') makedepends=('gcc' 'cmake' 'vulkan-headers' 'lib32-gcc-libs' 'lib32-vulkan-icd-loader' 'lib32-libgl') source=("https://github.com/nowrep/$pkgbase/archive/v$pkgver/$pkgbase-$pkgver.tar.gz") -sha512sums=('60e7bb315c8863fe97160e1cae19286ea70ff2d820d1868e45f84dd41955dc77bcc5e94b3075a81d05bfd32f523e84fbca0d57429a9e94ef0c80fb95b3dc8f68') +sha512sums=('d143a758c6901a40fae32f876d6b20bfcd0bdf3502e54e455e3e53888208e7901da26926268390bbfb7d92989dbc3874e551f8c8684c18cfbcf4292aaa6cf8f8') build() { cmake -B build -S "$pkgbase-$pkgver" \ From aed273fe059d6ddb53c9bce8e8d987457b916c03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 2 Apr 2023 01:28:03 +0200 Subject: [PATCH 448/971] upgpkg: discord-electron-bin 0.0.26-1 upstream release Discord now works correctly with the latest Electron version --- discord-electron-bin/.SRCINFO | 10 +++++----- discord-electron-bin/PKGBUILD | 8 +++----- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/discord-electron-bin/.SRCINFO b/discord-electron-bin/.SRCINFO index 348bd12..919b0f7 100644 --- a/discord-electron-bin/.SRCINFO +++ b/discord-electron-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-bin - pkgdesc = Discord using system provided electron (v13) for increased security and performance - pkgver = 0.0.25 + pkgdesc = Discord using system provided electron (v22) for increased security and performance + pkgver = 0.0.26 pkgrel = 1 url = https://discord.com arch = x86_64 @@ -8,13 +8,13 @@ pkgbase = discord-electron-bin makedepends = asar makedepends = curl makedepends = python-html2text - depends = electron13 + depends = electron22 optdepends = libpulse: Pulseaudio support optdepends = xdg-utils: Open files provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.25/discord-0.0.25.tar.gz - sha512sums = 21a3e6dff2fd33fe0cd5b1c9c340cbeebc6fd214d9f0be8c05ac9faad2f287d17726bd45bebb4ecebe90533da20f501ad1156ac8097318d7545f78811ebe1224 + source = https://dl.discordapp.net/apps/linux/0.0.26/discord-0.0.26.tar.gz + sha512sums = 65477c2c033f30850a699706a6502ff4f4af8838185716d968d641fdab3033555139b04bf91a111a847aca14113e33ba6248d49ba317fd43cbacb099e974117b pkgname = discord-electron-bin diff --git a/discord-electron-bin/PKGBUILD b/discord-electron-bin/PKGBUILD index d891d80..c153bda 100644 --- a/discord-electron-bin/PKGBUILD +++ b/discord-electron-bin/PKGBUILD @@ -11,9 +11,8 @@ pkgname=discord-electron-bin _pkgname=discord -_electron=13 -#_electron=19 -pkgver=0.0.25 +_electron=22 +pkgver=0.0.26 pkgrel=1 pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') @@ -29,7 +28,7 @@ optdepends=( 'xdg-utils: Open files' ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/discord-${pkgver}.tar.gz") -sha512sums=('21a3e6dff2fd33fe0cd5b1c9c340cbeebc6fd214d9f0be8c05ac9faad2f287d17726bd45bebb4ecebe90533da20f501ad1156ac8097318d7545f78811ebe1224') +sha512sums=('65477c2c033f30850a699706a6502ff4f4af8838185716d968d641fdab3033555139b04bf91a111a847aca14113e33ba6248d49ba317fd43cbacb099e974117b') _tarname='Discord' @@ -77,7 +76,6 @@ EOF rm $_tarname/resources/app.asar sed -i "s|process.resourcesPath|'/usr/lib/${_pkgname}'|" $_tarname/resources/app/app_bootstrap/buildInfo.js sed -i "s|exeDir,|'/usr/share/pixmaps',|" $_tarname/resources/app/app_bootstrap/autoStart/linux.js - sed -i "s#^module\.paths.*;#module.paths = [(process.env.XDG_CONFIG_HOME || (process.env.HOME + \"/.config\")) + \"/discord/$pkgver/modules\"];#" Discord/resources/app/app_bootstrap/requireNative.js asar p $_tarname/resources/app $_tarname/resources/app.asar --unpack-dir '**' rm -rf $_tarname/resources/app } From 05dacc1321a80087f34780ace0d3a1c5fab01f8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 2 Apr 2023 01:36:18 +0200 Subject: [PATCH 449/971] upgpkg: clonezilla-unstable 5.4.5-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 2229307..409570a 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.4.4 + pkgver = 5.4.5 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.4.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.5.tar.xz source = usrbin.patch - sha256sums = fee24540d4891d337f561ee75002c3962612c825e8d5fe7e9208b1256ec4c93b + sha256sums = 963ae87803abdbb16372d1172f3685f98fa36cbbf0df65ddfd1ad8fd4c2295eb sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 32d7093..66bb379 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.4.4 +pkgver=5.4.5 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('fee24540d4891d337f561ee75002c3962612c825e8d5fe7e9208b1256ec4c93b' +sha256sums=('963ae87803abdbb16372d1172f3685f98fa36cbbf0df65ddfd1ad8fd4c2295eb' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From 64ecc2466668570392477ed25b26179a7ec36e87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 2 Apr 2023 01:36:18 +0200 Subject: [PATCH 450/971] upgpkg: clonezilla-unstable 5.4.5-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 2229307..409570a 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.4.4 + pkgver = 5.4.5 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.4.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.5.tar.xz source = usrbin.patch - sha256sums = fee24540d4891d337f561ee75002c3962612c825e8d5fe7e9208b1256ec4c93b + sha256sums = 963ae87803abdbb16372d1172f3685f98fa36cbbf0df65ddfd1ad8fd4c2295eb sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 32d7093..66bb379 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.4.4 +pkgver=5.4.5 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('fee24540d4891d337f561ee75002c3962612c825e8d5fe7e9208b1256ec4c93b' +sha256sums=('963ae87803abdbb16372d1172f3685f98fa36cbbf0df65ddfd1ad8fd4c2295eb' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From 4fd007bb9f101d2e3e7a3672375e7af25c879085 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 2 Apr 2023 21:11:09 +0200 Subject: [PATCH 451/971] cage-vi: Update to latest master that includes vi patch --- cage-vi/.SRCINFO | 8 +- cage-vi/PKGBUILD | 21 +- cage-vi/{a81ab70.patch => bd5b20e.patch} | 932 +++++++++++++++++++---- cage-vi/virtual_input.patch | 218 ------ 4 files changed, 809 insertions(+), 370 deletions(-) rename cage-vi/{a81ab70.patch => bd5b20e.patch} (68%) delete mode 100644 cage-vi/virtual_input.patch diff --git a/cage-vi/.SRCINFO b/cage-vi/.SRCINFO index 1ae3fb5..7f2e870 100644 --- a/cage-vi/.SRCINFO +++ b/cage-vi/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = cage-vi pkgdesc = A Wayland kiosk, with virtual input patch applied - pkgver = 0.1.4+39+ga81ab70 + pkgver = 0.1.4+54+gbd5b20e pkgrel = 1 url = https://www.hjdskes.nl/projects/cage/ arch = x86_64 @@ -18,10 +18,8 @@ pkgbase = cage-vi provides = cage conflicts = cage source = https://github.com/Hjdskes/cage/releases/download/v0.1.4/cage-0.1.4.tar.gz - source = a81ab70.patch - source = virtual_input.patch + source = bd5b20e.patch sha256sums = dfe27fb0c7d43db72d6c82f01e2736580a0791a23ba69d7b56285d08af98ad90 - sha256sums = 8580568cc9b68b33de206a841e2110be14de730356c504b66fe366912d0abf76 - sha256sums = 352a3f33c2690a401c90c4de668d38e4cdff53db6c2fc9577a7c607d8a9ec369 + sha256sums = b3608b082c8859433158377ec875ee17ca72f10d61d8827eb5b1c2e01771c0ce pkgname = cage-vi diff --git a/cage-vi/PKGBUILD b/cage-vi/PKGBUILD index f1f4453..ad82ad2 100644 --- a/cage-vi/PKGBUILD +++ b/cage-vi/PKGBUILD @@ -1,6 +1,6 @@ pkgname=cage-vi _pkgname=${pkgname%%-*} -pkgver=0.1.4+39+ga81ab70 +pkgver=0.1.4+54+gbd5b20e _pkgver=${pkgver%%+*} pkgrel=1 pkgdesc='A Wayland kiosk, with virtual input patch applied' @@ -17,19 +17,20 @@ provides=("${_pkgname}") conflicts=("${_pkgname}") source=( "https://github.com/Hjdskes/${_pkgname}/releases/download/v${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" - 'a81ab70.patch' - 'virtual_input.patch' -) -sha256sums=( - 'dfe27fb0c7d43db72d6c82f01e2736580a0791a23ba69d7b56285d08af98ad90' - '8580568cc9b68b33de206a841e2110be14de730356c504b66fe366912d0abf76' - '352a3f33c2690a401c90c4de668d38e4cdff53db6c2fc9577a7c607d8a9ec369' + 'bd5b20e.patch' ) +sha256sums=('dfe27fb0c7d43db72d6c82f01e2736580a0791a23ba69d7b56285d08af98ad90' + 'b3608b082c8859433158377ec875ee17ca72f10d61d8827eb5b1c2e01771c0ce') + +#pkgver() { +# cd "${srcdir}/${_pkgname}-${_pkgver}" +# git describe --long --tags | sed 's/^v//;s/-/+/g' +#} + prepare() { cd "${srcdir}/${_pkgname}-${_pkgver}" - patch -Np1 -i '../a81ab70.patch' - patch -Np1 -i '../virtual_input.patch' + patch -Np1 -i '../bd5b20e.patch' meson --buildtype=release -Dxwayland=true --prefix /usr "$srcdir/build" } diff --git a/cage-vi/a81ab70.patch b/cage-vi/bd5b20e.patch similarity index 68% rename from cage-vi/a81ab70.patch rename to cage-vi/bd5b20e.patch index 6939578..d59ba45 100644 --- a/cage-vi/a81ab70.patch +++ b/cage-vi/bd5b20e.patch @@ -143,7 +143,7 @@ index 0000000..60dd059 \ No newline at end of file diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 -index 0000000..5e95347 +index 0000000..a98291a --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,76 @@ @@ -171,7 +171,7 @@ index 0000000..5e95347 + + - name: Install dependencies (Alpine) + if: "matrix.OS == 'alpine:edge'" -+ run: apk add build-base xcb-util-wm-dev libseat-dev clang git eudev-dev mesa-dev libdrm-dev libinput-dev libxkbcommon-dev pixman-dev wayland-dev meson wayland-protocols xwayland scdoc-doc ++ run: apk add build-base xcb-util-wm-dev libseat-dev clang git eudev-dev mesa-dev libdrm-dev libinput-dev libxkbcommon-dev pixman-dev wayland-dev meson wayland-protocols xwayland scdoc-doc hwdata + + - name: Install dependencies (Arch) + if: "matrix.OS == 'archlinux:base-devel'" @@ -180,7 +180,7 @@ index 0000000..5e95347 + pacman -Syu --noconfirm xcb-util-wm seatd git clang meson libinput libdrm mesa libxkbcommon wayland wayland-protocols xorg-server-xwayland scdoc + + - name: Fetch wlroots as a subproject -+ run: git clone https://gitlab.freedesktop.org/wlroots/wlroots.git subprojects/wlroots -b 0.15.0 ++ run: git clone https://gitlab.freedesktop.org/wlroots/wlroots.git subprojects/wlroots -b 0.16.0 + + # TODO: use --fatal-meson-warnings when on wlroots 0.15.0 + - name: Compile Cage (XWayland=${{ matrix.xwayland }}) @@ -197,9 +197,9 @@ index 0000000..5e95347 + - name: Install dependencies + run: | + pacman-key --init -+ pacman -Syu --noconfirm xcb-util-wm seatd git clang meson libinput libdrm mesa libxkbcommon wayland wayland-protocols xorg-server-xwayland scdoc ++ pacman -Syu --noconfirm xcb-util-wm seatd git clang meson libinput libdrm mesa libxkbcommon wayland wayland-protocols xorg-server-xwayland scdoc hwdata + - name: Fetch wlroots as a subproject -+ run: git clone https://gitlab.freedesktop.org/wlroots/wlroots.git subprojects/wlroots -b 0.15.0 ++ run: git clone https://gitlab.freedesktop.org/wlroots/wlroots.git subprojects/wlroots -b 0.16.0 + - name: Check for formatting changes + run: | + meson build-clang-format -Dxwayland=true @@ -216,15 +216,25 @@ index 0000000..5e95347 + - name: Install dependencies + run: | + pacman-key --init -+ pacman -Syu --noconfirm xcb-util-wm seatd git clang meson libinput libdrm mesa libxkbcommon wayland wayland-protocols xorg-server-xwayland scdoc ++ pacman -Syu --noconfirm xcb-util-wm seatd git clang meson libinput libdrm mesa libxkbcommon wayland wayland-protocols xorg-server-xwayland scdoc hwdata + - name: Fetch wlroots as a subproject -+ run: git clone https://gitlab.freedesktop.org/wlroots/wlroots.git subprojects/wlroots -b 0.15.0 ++ run: git clone https://gitlab.freedesktop.org/wlroots/wlroots.git subprojects/wlroots -b 0.16.0 + - name: Run scan-build + run: | + meson build-scan-build -Dxwayland=true + ninja -C build-scan-build scan-build +diff --git a/README.md b/README.md +index e1b6f56..752387e 100644 +--- a/README.md ++++ b/README.md +@@ -1,4 +1,4 @@ +-# Cage: a Wayland kiosk [![builds.sr.ht status](https://builds.sr.ht/~hjdskes.svg)](https://builds.sr.ht/~hjdskes?) ++# Cage: a Wayland kiosk + + Cage's logo + diff --git a/cage.c b/cage.c -index 5392535..95f0cc7 100644 +index 5392535..c5eda4d 100644 --- a/cage.c +++ b/cage.c @@ -19,6 +19,7 @@ @@ -235,7 +245,7 @@ index 5392535..95f0cc7 100644 #include #include #include -@@ -27,8 +28,11 @@ +@@ -27,8 +28,15 @@ #include #include #include @@ -243,11 +253,28 @@ index 5392535..95f0cc7 100644 +#include #include #include ++#include ++#include +#include ++#include ++#include #if CAGE_HAS_XWAYLAND #include #endif -@@ -185,9 +189,6 @@ usage(FILE *file, const char *cage) +@@ -145,7 +153,12 @@ cleanup_primary_client(pid_t pid) + static bool + drop_permissions(void) + { ++ if (getuid() == 0 || getgid() == 0) { ++ wlr_log(WLR_INFO, "Running as root user, this is dangerous"); ++ return true; ++ } + if (getuid() != geteuid() || getgid() != getegid()) { ++ wlr_log(WLR_INFO, "setuid/setgid bit detected, dropping permissions"); + // Set the gid and uid in the correct order. + if (setgid(getgid()) != 0 || setuid(getuid()) != 0) { + wlr_log(WLR_ERROR, "Unable to drop root, refusing to start"); +@@ -185,9 +198,6 @@ usage(FILE *file, const char *cage) "Usage: %s [OPTIONS] [--] APPLICATION\n" "\n" " -d\t Don't draw client side decorations, when possible\n" @@ -257,7 +284,7 @@ index 5392535..95f0cc7 100644 " -h\t Display this help message\n" " -m extend Extend the display across all connected outputs (default)\n" " -m last Use only the last connected output\n" -@@ -203,20 +204,11 @@ static bool +@@ -203,20 +213,11 @@ static bool parse_args(struct cg_server *server, int argc, char *argv[]) { int c; @@ -278,24 +305,29 @@ index 5392535..95f0cc7 100644 case 'h': usage(stdout, argv[0]); return false; -@@ -261,7 +253,6 @@ main(int argc, char *argv[]) +@@ -261,15 +262,20 @@ main(int argc, char *argv[]) struct wl_event_source *sigint_source = NULL; struct wl_event_source *sigterm_source = NULL; struct wl_event_source *sigchld_source = NULL; - struct wlr_renderer *renderer = NULL; struct wlr_compositor *compositor = NULL; ++ struct wlr_subcompositor *subcompositor = NULL; struct wlr_data_device_manager *data_device_manager = NULL; struct wlr_server_decoration_manager *server_decoration_manager = NULL; -@@ -270,6 +261,8 @@ main(int argc, char *argv[]) + struct wlr_xdg_decoration_manager_v1 *xdg_decoration_manager = NULL; + struct wlr_export_dmabuf_manager_v1 *export_dmabuf_manager = NULL; struct wlr_screencopy_manager_v1 *screencopy_manager = NULL; ++ struct wlr_single_pixel_buffer_manager_v1 *single_pixel_buffer = NULL; struct wlr_xdg_output_manager_v1 *output_manager = NULL; struct wlr_gamma_control_manager_v1 *gamma_control_manager = NULL; ++ struct wlr_virtual_keyboard_manager_v1 *virtual_keyboard = NULL; ++ struct wlr_virtual_pointer_manager_v1 *virtual_pointer = NULL; + struct wlr_viewporter *viewporter = NULL; + struct wlr_presentation *presentation = NULL; struct wlr_xdg_shell *xdg_shell = NULL; #if CAGE_HAS_XWAYLAND struct wlr_xwayland *xwayland = NULL; -@@ -316,8 +309,21 @@ main(int argc, char *argv[]) +@@ -316,8 +322,21 @@ main(int argc, char *argv[]) goto end; } @@ -319,7 +351,7 @@ index 5392535..95f0cc7 100644 wl_list_init(&server.views); wl_list_init(&server.outputs); -@@ -329,7 +335,16 @@ main(int argc, char *argv[]) +@@ -329,13 +348,29 @@ main(int argc, char *argv[]) goto end; } @@ -337,7 +369,29 @@ index 5392535..95f0cc7 100644 if (!compositor) { wlr_log(WLR_ERROR, "Unable to create the wlroots compositor"); ret = 1; -@@ -401,6 +416,21 @@ main(int argc, char *argv[]) + goto end; + } + ++ subcompositor = wlr_subcompositor_create(server.wl_display); ++ if (!subcompositor) { ++ wlr_log(WLR_ERROR, "Unable to create the wlroots subcompositor"); ++ ret = 1; ++ goto end; ++ } ++ + data_device_manager = wlr_data_device_manager_create(server.wl_display); + if (!data_device_manager) { + wlr_log(WLR_ERROR, "Unable to create the data device manager"); +@@ -373,7 +408,7 @@ main(int argc, char *argv[]) + wl_signal_add(&server.idle_inhibit_v1->events.new_inhibitor, &server.new_idle_inhibitor_v1); + wl_list_init(&server.inhibitors); + +- xdg_shell = wlr_xdg_shell_create(server.wl_display); ++ xdg_shell = wlr_xdg_shell_create(server.wl_display, 4); + if (!xdg_shell) { + wlr_log(WLR_ERROR, "Unable to create the XDG shell interface"); + ret = 1; +@@ -401,6 +436,21 @@ main(int argc, char *argv[]) server_decoration_manager, server.xdg_decoration ? WLR_SERVER_DECORATION_MANAGER_MODE_SERVER : WLR_SERVER_DECORATION_MANAGER_MODE_CLIENT); @@ -359,8 +413,57 @@ index 5392535..95f0cc7 100644 export_dmabuf_manager = wlr_export_dmabuf_manager_v1_create(server.wl_display); if (!export_dmabuf_manager) { wlr_log(WLR_ERROR, "Unable to create the export DMABUF manager"); +@@ -415,6 +465,13 @@ main(int argc, char *argv[]) + goto end; + } + ++ single_pixel_buffer = wlr_single_pixel_buffer_manager_v1_create(server.wl_display); ++ if (!single_pixel_buffer) { ++ wlr_log(WLR_ERROR, "Unable to create the single pixel buffer manager"); ++ ret = 1; ++ goto end; ++ } ++ + output_manager = wlr_xdg_output_manager_v1_create(server.wl_display, server.output_layout); + if (!output_manager) { + wlr_log(WLR_ERROR, "Unable to create the output manager"); +@@ -429,6 +486,22 @@ main(int argc, char *argv[]) + goto end; + } + ++ virtual_keyboard = wlr_virtual_keyboard_manager_v1_create(server.wl_display); ++ if (!virtual_keyboard) { ++ wlr_log(WLR_ERROR, "Unable to create the virtual keyboard manager"); ++ ret = 1; ++ goto end; ++ } ++ wl_signal_add(&virtual_keyboard->events.new_virtual_keyboard, &server.new_virtual_keyboard); ++ ++ virtual_pointer = wlr_virtual_pointer_manager_v1_create(server.wl_display); ++ if (!virtual_pointer) { ++ wlr_log(WLR_ERROR, "Unable to create the virtual pointer manager"); ++ ret = 1; ++ goto end; ++ } ++ wl_signal_add(&virtual_pointer->events.new_virtual_pointer, &server.new_virtual_pointer); ++ + #if CAGE_HAS_XWAYLAND + xwayland = wlr_xwayland_create(server.wl_display, compositor, true); + if (!xwayland) { +@@ -492,8 +565,9 @@ main(int argc, char *argv[]) + } + + /* Place the cursor in the center of the output layout. */ +- struct wlr_box *layout_box = wlr_output_layout_get_box(server.output_layout, NULL); +- wlr_cursor_warp(server.seat->cursor, NULL, layout_box->width / 2, layout_box->height / 2); ++ struct wlr_box layout_box; ++ wlr_output_layout_get_box(server.output_layout, NULL, &layout_box); ++ wlr_cursor_warp(server.seat->cursor, NULL, layout_box.width / 2, layout_box.height / 2); + + wl_display_run(server.wl_display); + diff --git a/meson.build b/meson.build -index 3a84794..5a8b28c 100644 +index 3a84794..fbd7e16 100644 --- a/meson.build +++ b/meson.build @@ -1,16 +1,17 @@ @@ -388,7 +491,7 @@ index 3a84794..5a8b28c 100644 endif -wlroots = dependency('wlroots', version: '>= 0.14.0') -+wlroots = dependency('wlroots', version: '>= 0.15.0', fallback: ['wlroots', 'wlroots']) ++wlroots = dependency('wlroots', version: '>= 0.16.0', fallback: ['wlroots', 'wlroots']) wayland_protos = dependency('wayland-protocols', version: '>=1.14') wayland_server = dependency('wayland-server') -pixman = dependency('pixman-1') @@ -474,7 +577,7 @@ index 3a84794..5a8b28c 100644 ], install: true, diff --git a/output.c b/output.c -index d8da3b9..c33bbe1 100644 +index d8da3b9..6eca0db 100644 --- a/output.c +++ b/output.c @@ -1,7 +1,7 @@ @@ -494,12 +597,18 @@ index d8da3b9..c33bbe1 100644 #include #include #include -@@ -26,216 +27,20 @@ +@@ -21,221 +22,25 @@ + #include + #endif + #include ++#include + #include + #include #include #include #include +-#include +#include - #include #include #include #include @@ -1187,53 +1296,44 @@ index 085b00b..0000000 - -#endif diff --git a/seat.c b/seat.c -index 08f25a3..4dce511 100644 +index 08f25a3..5d80e33 100644 --- a/seat.c +++ b/seat.c -@@ -8,6 +8,7 @@ +@@ -6,10 +6,14 @@ + * See the LICENSE file accompanying this file. + */ ++#define _POSIX_C_SOURCE 200809L ++ #include "config.h" +#include #include #include ++#include #include -@@ -18,6 +19,7 @@ + #include + #include +@@ -18,9 +22,11 @@ #include #include #include +#include #include - #include +-#include #include -@@ -41,42 +43,31 @@ static void drag_icon_update_position(struct cg_drag_icon *drag_icon); ++#include ++#include + #include + #include + #if CAGE_HAS_XWAYLAND +@@ -41,42 +47,42 @@ static void drag_icon_update_position(struct cg_drag_icon *drag_icon); * menus or tooltips. This function tests if any of those are underneath the * coordinates lx and ly (in output Layout Coordinates). If so, it sets the * surface pointer to that wlr_surface and the sx and sy coordinates to the - * coordinates relative to that surface's top-left corner. */ -static bool -view_at(struct cg_view *view, double lx, double ly, struct wlr_surface **surface, double *sx, double *sy) --{ -- double view_sx = lx - view->lx; -- double view_sy = ly - view->ly; -- -- double _sx, _sy; -- struct wlr_surface *_surface = view_wlr_surface_at(view, view_sx, view_sy, &_sx, &_sy); -- if (_surface != NULL) { -- *sx = _sx; -- *sy = _sy; -- *surface = _surface; -- return true; -- } -- -- return false; --} -- --/* This iterates over all of our surfaces and attempts to find one -- * under the cursor. This relies on server->views being ordered from -- * top-to-bottom. If desktop_view_at returns a view, there is also a -- * surface. There cannot be a surface without a view, either. It's -- * both or nothing. */ + * coordinates relative to that surface's top-left corner. + * + * This function iterates over all of our surfaces and attempts to find one @@ -1241,34 +1341,297 @@ index 08f25a3..4dce511 100644 + * surface. There cannot be a surface without a view, either. It's both or + * nothing. + */ - static struct cg_view * - desktop_view_at(struct cg_server *server, double lx, double ly, struct wlr_surface **surface, double *sx, double *sy) ++static struct cg_view * ++desktop_view_at(struct cg_server *server, double lx, double ly, struct wlr_surface **surface, double *sx, double *sy) { -- struct cg_view *view; -+ struct wlr_scene_node *node = wlr_scene_node_at(&server->scene->node, lx, ly, sx, sy); -+ if (node == NULL || node->type != WLR_SCENE_NODE_SURFACE) { +- double view_sx = lx - view->lx; +- double view_sy = ly - view->ly; ++ struct wlr_scene_node *node = wlr_scene_node_at(&server->scene->tree.node, lx, ly, sx, sy); ++ if (node == NULL || node->type != WLR_SCENE_NODE_BUFFER) { + return NULL; + } +- double _sx, _sy; +- struct wlr_surface *_surface = view_wlr_surface_at(view, view_sx, view_sy, &_sx, &_sy); +- if (_surface != NULL) { +- *sx = _sx; +- *sy = _sy; +- *surface = _surface; +- return true; ++ struct wlr_scene_buffer *scene_buffer = wlr_scene_buffer_from_node(node); ++ struct wlr_scene_surface *scene_surface = wlr_scene_surface_from_buffer(scene_buffer); ++ if (!scene_surface) { ++ return NULL; + } + +- return false; +-} ++ *surface = scene_surface->surface; + +-/* This iterates over all of our surfaces and attempts to find one +- * under the cursor. This relies on server->views being ordered from +- * top-to-bottom. If desktop_view_at returns a view, there is also a +- * surface. There cannot be a surface without a view, either. It's +- * both or nothing. */ +-static struct cg_view * +-desktop_view_at(struct cg_server *server, double lx, double ly, struct wlr_surface **surface, double *sx, double *sy) +-{ +- struct cg_view *view; +- - wl_list_for_each (view, &server->views, link) { - if (view_at(view, lx, ly, surface, sx, sy)) { - return view; -- } -+ *surface = wlr_scene_surface_from_node(node)->surface; -+ + /* Walk up the tree until we find a node with a data pointer. When done, + * we've found the node representing the view. */ -+ while (node != NULL && node->data == NULL) { -+ node = node->parent; ++ while (!node->data) { ++ if (!node->parent) { ++ node = NULL; ++ break; + } ++ ++ node = &node->parent->node; } -+ assert(node != NULL); - return NULL; ++ assert(node != NULL); + return node->data; } static void -@@ -351,17 +342,11 @@ handle_new_keyboard(struct cg_seat *seat, struct wlr_input_device *device) +@@ -127,16 +133,16 @@ update_capabilities(struct cg_seat *seat) + } + + static void +-map_input_device_to_output(struct cg_seat *seat, struct wlr_input_device *device) ++map_input_device_to_output(struct cg_seat *seat, struct wlr_input_device *device, const char *output_name) + { +- if (!device->output_name) { ++ if (!output_name) { + wlr_log(WLR_INFO, "Input device %s cannot be mapped to an output device\n", device->name); + return; + } + + struct cg_output *output; + wl_list_for_each (output, &seat->server->outputs, link) { +- if (strcmp(device->output_name, output->wlr_output->name) == 0) { ++ if (strcmp(output_name, output->wlr_output->name) == 0) { + wlr_log(WLR_INFO, "Mapping input device %s to output device %s\n", device->name, + output->wlr_output->name); + wlr_cursor_map_input_to_output(seat->cursor, device, output->wlr_output); +@@ -154,7 +160,7 @@ handle_touch_destroy(struct wl_listener *listener, void *data) + struct cg_seat *seat = touch->seat; + + wl_list_remove(&touch->link); +- wlr_cursor_detach_input_device(seat->cursor, touch->device); ++ wlr_cursor_detach_input_device(seat->cursor, &touch->touch->base); + wl_list_remove(&touch->destroy.link); + free(touch); + +@@ -162,7 +168,7 @@ handle_touch_destroy(struct wl_listener *listener, void *data) + } + + static void +-handle_new_touch(struct cg_seat *seat, struct wlr_input_device *device) ++handle_new_touch(struct cg_seat *seat, struct wlr_touch *wlr_touch) + { + struct cg_touch *touch = calloc(1, sizeof(struct cg_touch)); + if (!touch) { +@@ -171,14 +177,14 @@ handle_new_touch(struct cg_seat *seat, struct wlr_input_device *device) + } + + touch->seat = seat; +- touch->device = device; +- wlr_cursor_attach_input_device(seat->cursor, device); ++ touch->touch = wlr_touch; ++ wlr_cursor_attach_input_device(seat->cursor, &wlr_touch->base); + + wl_list_insert(&seat->touch, &touch->link); + touch->destroy.notify = handle_touch_destroy; +- wl_signal_add(&touch->device->events.destroy, &touch->destroy); ++ wl_signal_add(&wlr_touch->base.events.destroy, &touch->destroy); + +- map_input_device_to_output(seat, device); ++ map_input_device_to_output(seat, &wlr_touch->base, wlr_touch->output_name); + } + + static void +@@ -188,7 +194,7 @@ handle_pointer_destroy(struct wl_listener *listener, void *data) + struct cg_seat *seat = pointer->seat; + + wl_list_remove(&pointer->link); +- wlr_cursor_detach_input_device(seat->cursor, pointer->device); ++ wlr_cursor_detach_input_device(seat->cursor, &pointer->pointer->base); + wl_list_remove(&pointer->destroy.link); + free(pointer); + +@@ -196,7 +202,7 @@ handle_pointer_destroy(struct wl_listener *listener, void *data) + } + + static void +-handle_new_pointer(struct cg_seat *seat, struct wlr_input_device *device) ++handle_new_pointer(struct cg_seat *seat, struct wlr_pointer *wlr_pointer) + { + struct cg_pointer *pointer = calloc(1, sizeof(struct cg_pointer)); + if (!pointer) { +@@ -205,21 +211,42 @@ handle_new_pointer(struct cg_seat *seat, struct wlr_input_device *device) + } + + pointer->seat = seat; +- pointer->device = device; +- wlr_cursor_attach_input_device(seat->cursor, device); ++ pointer->pointer = wlr_pointer; ++ wlr_cursor_attach_input_device(seat->cursor, &wlr_pointer->base); + + wl_list_insert(&seat->pointers, &pointer->link); + pointer->destroy.notify = handle_pointer_destroy; +- wl_signal_add(&device->events.destroy, &pointer->destroy); ++ wl_signal_add(&wlr_pointer->base.events.destroy, &pointer->destroy); ++ ++ map_input_device_to_output(seat, &wlr_pointer->base, wlr_pointer->output_name); ++} + +- map_input_device_to_output(seat, device); ++static void ++handle_virtual_pointer(struct wl_listener *listener, void *data) ++{ ++ struct cg_server *server = wl_container_of(listener, server, new_virtual_pointer); ++ struct cg_seat *seat = server->seat; ++ struct wlr_virtual_pointer_v1_new_pointer_event *event = data; ++ struct wlr_virtual_pointer_v1 *pointer = event->new_pointer; ++ struct wlr_pointer *wlr_pointer = &pointer->pointer; ++ ++ /* We'll want to map the device back to an output later, this is a bit ++ * sub-optimal (we could just keep the suggested_output), but just copy ++ * its name so we do like other devices ++ */ ++ if (event->suggested_output != NULL) { ++ wlr_pointer->output_name = strdup(event->suggested_output->name); ++ } ++ /* TODO: event->suggested_seat should be checked if we handle multiple seats */ ++ handle_new_pointer(seat, wlr_pointer); ++ update_capabilities(seat); + } + + static void +-handle_modifier_event(struct wlr_input_device *device, struct cg_seat *seat) ++handle_modifier_event(struct wlr_keyboard *keyboard, struct cg_seat *seat) + { +- wlr_seat_set_keyboard(seat->seat, device); +- wlr_seat_keyboard_notify_modifiers(seat->seat, &device->keyboard->modifiers); ++ wlr_seat_set_keyboard(seat->seat, keyboard); ++ wlr_seat_keyboard_notify_modifiers(seat->seat, &keyboard->modifiers); + + wlr_idle_notify_activity(seat->server->idle, seat->seat); + } +@@ -249,18 +276,18 @@ handle_keybinding(struct cg_server *server, xkb_keysym_t sym) + } + + static void +-handle_key_event(struct wlr_input_device *device, struct cg_seat *seat, void *data) ++handle_key_event(struct wlr_keyboard *keyboard, struct cg_seat *seat, void *data) + { +- struct wlr_event_keyboard_key *event = data; ++ struct wlr_keyboard_key_event *event = data; + + /* Translate from libinput keycode to an xkbcommon keycode. */ + xkb_keycode_t keycode = event->keycode + 8; + + const xkb_keysym_t *syms; +- int nsyms = xkb_state_key_get_syms(device->keyboard->xkb_state, keycode, &syms); ++ int nsyms = xkb_state_key_get_syms(keyboard->xkb_state, keycode, &syms); + + bool handled = false; +- uint32_t modifiers = wlr_keyboard_get_modifiers(device->keyboard); ++ uint32_t modifiers = wlr_keyboard_get_modifiers(keyboard); + if ((modifiers & WLR_MODIFIER_ALT) && event->state == WL_KEYBOARD_KEY_STATE_PRESSED) { + /* If Alt is held down and this button was pressed, we + * attempt to process it as a compositor +@@ -272,7 +299,7 @@ handle_key_event(struct wlr_input_device *device, struct cg_seat *seat, void *da + + if (!handled) { + /* Otherwise, we pass it along to the client. */ +- wlr_seat_set_keyboard(seat->seat, device); ++ wlr_seat_set_keyboard(seat->seat, keyboard); + wlr_seat_keyboard_notify_key(seat->seat, event->time_msec, event->keycode, event->state); + } + +@@ -283,27 +310,32 @@ static void + handle_keyboard_group_key(struct wl_listener *listener, void *data) + { + struct cg_keyboard_group *cg_group = wl_container_of(listener, cg_group, key); +- handle_key_event(cg_group->wlr_group->input_device, cg_group->seat, data); ++ handle_key_event(&cg_group->wlr_group->keyboard, cg_group->seat, data); + } + + static void + handle_keyboard_group_modifiers(struct wl_listener *listener, void *data) + { + struct cg_keyboard_group *group = wl_container_of(listener, group, modifiers); +- handle_modifier_event(group->wlr_group->input_device, group->seat); ++ handle_modifier_event(&group->wlr_group->keyboard, group->seat); + } + + static void +-cg_keyboard_group_add(struct wlr_input_device *device, struct cg_seat *seat) ++cg_keyboard_group_add(struct wlr_keyboard *keyboard, struct cg_seat *seat, bool virtual) + { +- struct wlr_keyboard *wlr_keyboard = device->keyboard; +- +- struct cg_keyboard_group *group; +- wl_list_for_each (group, &seat->keyboard_groups, link) { +- struct wlr_keyboard_group *wlr_group = group->wlr_group; +- if (wlr_keyboard_group_add_keyboard(wlr_group, wlr_keyboard)) { +- wlr_log(WLR_DEBUG, "Added new keyboard to existing group"); +- return; ++ /* We apparently should not group virtual keyboards, ++ * so create a new group with it ++ */ ++ if (!virtual) { ++ struct cg_keyboard_group *group; ++ wl_list_for_each (group, &seat->keyboard_groups, link) { ++ if (group->is_virtual) ++ continue; ++ struct wlr_keyboard_group *wlr_group = group->wlr_group; ++ if (wlr_keyboard_group_add_keyboard(wlr_group, keyboard)) { ++ wlr_log(WLR_DEBUG, "Added new keyboard to existing group"); ++ return; ++ } + } + } + +@@ -315,6 +347,7 @@ cg_keyboard_group_add(struct wlr_input_device *device, struct cg_seat *seat) + return; + } + cg_group->seat = seat; ++ cg_group->is_virtual = virtual; + cg_group->wlr_group = wlr_keyboard_group_create(); + if (cg_group->wlr_group == NULL) { + wlr_log(WLR_ERROR, "Failed to create wlr keyboard group."); +@@ -322,14 +355,14 @@ cg_keyboard_group_add(struct wlr_input_device *device, struct cg_seat *seat) + } + + cg_group->wlr_group->data = cg_group; +- wlr_keyboard_set_keymap(&cg_group->wlr_group->keyboard, device->keyboard->keymap); ++ wlr_keyboard_set_keymap(&cg_group->wlr_group->keyboard, keyboard->keymap); + +- wlr_keyboard_set_repeat_info(&cg_group->wlr_group->keyboard, wlr_keyboard->repeat_info.rate, +- wlr_keyboard->repeat_info.delay); ++ wlr_keyboard_set_repeat_info(&cg_group->wlr_group->keyboard, keyboard->repeat_info.rate, ++ keyboard->repeat_info.delay); + + wlr_log(WLR_DEBUG, "Created keyboard group"); + +- wlr_keyboard_group_add_keyboard(cg_group->wlr_group, wlr_keyboard); ++ wlr_keyboard_group_add_keyboard(cg_group->wlr_group, keyboard); + wl_list_insert(&seat->keyboard_groups, &cg_group->link); + + wl_signal_add(&cg_group->wlr_group->keyboard.events.key, &cg_group->key); +@@ -347,36 +380,45 @@ cleanup: + } + + static void +-handle_new_keyboard(struct cg_seat *seat, struct wlr_input_device *device) ++handle_new_keyboard(struct cg_seat *seat, struct wlr_keyboard *keyboard, bool virtual) { struct xkb_context *context = xkb_context_new(XKB_CONTEXT_NO_FLAGS); if (!context) { @@ -1288,7 +1651,136 @@ index 08f25a3..4dce511 100644 if (!keymap) { wlr_log(WLR_ERROR, "Unable to configure keyboard: keymap does not exist"); xkb_context_unref(context); -@@ -569,10 +554,7 @@ process_cursor_motion(struct cg_seat *seat, uint32_t time) + return; + } + +- wlr_keyboard_set_keymap(device->keyboard, keymap); ++ wlr_keyboard_set_keymap(keyboard, keymap); + + xkb_keymap_unref(keymap); + xkb_context_unref(context); +- wlr_keyboard_set_repeat_info(device->keyboard, 25, 600); ++ wlr_keyboard_set_repeat_info(keyboard, 25, 600); ++ ++ cg_keyboard_group_add(keyboard, seat, virtual); ++ ++ wlr_seat_set_keyboard(seat->seat, keyboard); ++} + +- cg_keyboard_group_add(device, seat); ++static void ++handle_virtual_keyboard(struct wl_listener *listener, void *data) ++{ ++ struct cg_server *server = wl_container_of(listener, server, new_virtual_keyboard); ++ struct cg_seat *seat = server->seat; ++ struct wlr_virtual_keyboard_v1 *keyboard = data; ++ struct wlr_keyboard *wlr_keyboard = &keyboard->keyboard; ++ ++ /* TODO: If multiple seats are supported, check keyboard->seat ++ * to select the appropriate one */ + +- wlr_seat_set_keyboard(seat->seat, device); ++ handle_new_keyboard(seat, wlr_keyboard, true); ++ update_capabilities(seat); + } + + static void +@@ -387,13 +429,13 @@ handle_new_input(struct wl_listener *listener, void *data) + + switch (device->type) { + case WLR_INPUT_DEVICE_KEYBOARD: +- handle_new_keyboard(seat, device); ++ handle_new_keyboard(seat, wlr_keyboard_from_input_device(device), false); + break; + case WLR_INPUT_DEVICE_POINTER: +- handle_new_pointer(seat, device); ++ handle_new_pointer(seat, wlr_pointer_from_input_device(device)); + break; + case WLR_INPUT_DEVICE_TOUCH: +- handle_new_touch(seat, device); ++ handle_new_touch(seat, wlr_touch_from_input_device(device)); + break; + case WLR_INPUT_DEVICE_SWITCH: + wlr_log(WLR_DEBUG, "Switch input is not implemented"); +@@ -448,10 +490,10 @@ static void + handle_touch_down(struct wl_listener *listener, void *data) + { + struct cg_seat *seat = wl_container_of(listener, seat, touch_down); +- struct wlr_event_touch_down *event = data; ++ struct wlr_touch_down_event *event = data; + + double lx, ly; +- wlr_cursor_absolute_to_layout_coords(seat->cursor, event->device, event->x, event->y, &lx, &ly); ++ wlr_cursor_absolute_to_layout_coords(seat->cursor, &event->touch->base, event->x, event->y, &lx, &ly); + + double sx, sy; + struct wlr_surface *surface; +@@ -466,7 +508,7 @@ handle_touch_down(struct wl_listener *listener, void *data) + seat->touch_id = event->touch_id; + seat->touch_lx = lx; + seat->touch_ly = ly; +- press_cursor_button(seat, event->device, event->time_msec, BTN_LEFT, WLR_BUTTON_PRESSED, lx, ly); ++ press_cursor_button(seat, &event->touch->base, event->time_msec, BTN_LEFT, WLR_BUTTON_PRESSED, lx, ly); + } + + wlr_idle_notify_activity(seat->server->idle, seat->seat); +@@ -476,14 +518,14 @@ static void + handle_touch_up(struct wl_listener *listener, void *data) + { + struct cg_seat *seat = wl_container_of(listener, seat, touch_up); +- struct wlr_event_touch_up *event = data; ++ struct wlr_touch_up_event *event = data; + + if (!wlr_seat_touch_get_point(seat->seat, event->touch_id)) { + return; + } + + if (wlr_seat_touch_num_points(seat->seat) == 1) { +- press_cursor_button(seat, event->device, event->time_msec, BTN_LEFT, WLR_BUTTON_RELEASED, ++ press_cursor_button(seat, &event->touch->base, event->time_msec, BTN_LEFT, WLR_BUTTON_RELEASED, + seat->touch_lx, seat->touch_ly); + } + +@@ -495,14 +537,14 @@ static void + handle_touch_motion(struct wl_listener *listener, void *data) + { + struct cg_seat *seat = wl_container_of(listener, seat, touch_motion); +- struct wlr_event_touch_motion *event = data; ++ struct wlr_touch_motion_event *event = data; + + if (!wlr_seat_touch_get_point(seat->seat, event->touch_id)) { + return; + } + + double lx, ly; +- wlr_cursor_absolute_to_layout_coords(seat->cursor, event->device, event->x, event->y, &lx, &ly); ++ wlr_cursor_absolute_to_layout_coords(seat->cursor, &event->touch->base, event->x, event->y, &lx, &ly); + + double sx, sy; + struct wlr_surface *surface; +@@ -536,7 +578,7 @@ static void + handle_cursor_axis(struct wl_listener *listener, void *data) + { + struct cg_seat *seat = wl_container_of(listener, seat, cursor_axis); +- struct wlr_event_pointer_axis *event = data; ++ struct wlr_pointer_axis_event *event = data; + + wlr_seat_pointer_notify_axis(seat->seat, event->time_msec, event->orientation, event->delta, + event->delta_discrete, event->source); +@@ -547,10 +589,10 @@ static void + handle_cursor_button(struct wl_listener *listener, void *data) + { + struct cg_seat *seat = wl_container_of(listener, seat, cursor_button); +- struct wlr_event_pointer_button *event = data; ++ struct wlr_pointer_button_event *event = data; + + wlr_seat_pointer_notify_button(seat->seat, event->time_msec, event->button, event->state); +- press_cursor_button(seat, event->device, event->time_msec, event->button, event->state, seat->cursor->x, ++ press_cursor_button(seat, &event->pointer->base, event->time_msec, event->button, event->state, seat->cursor->x, + seat->cursor->y); + wlr_idle_notify_activity(seat->server->idle, seat->seat); + } +@@ -569,10 +611,7 @@ process_cursor_motion(struct cg_seat *seat, uint32_t time) } else { wlr_seat_pointer_notify_enter(wlr_seat, surface, sx, sy); @@ -1300,7 +1792,28 @@ index 08f25a3..4dce511 100644 } struct cg_drag_icon *drag_icon; -@@ -605,15 +587,6 @@ handle_cursor_motion(struct wl_listener *listener, void *data) +@@ -587,9 +626,9 @@ static void + handle_cursor_motion_absolute(struct wl_listener *listener, void *data) + { + struct cg_seat *seat = wl_container_of(listener, seat, cursor_motion_absolute); +- struct wlr_event_pointer_motion_absolute *event = data; ++ struct wlr_pointer_motion_absolute_event *event = data; + +- wlr_cursor_warp_absolute(seat->cursor, event->device, event->x, event->y); ++ wlr_cursor_warp_absolute(seat->cursor, &event->pointer->base, event->x, event->y); + process_cursor_motion(seat, event->time_msec); + wlr_idle_notify_activity(seat->server->idle, seat->seat); + } +@@ -598,22 +637,13 @@ static void + handle_cursor_motion(struct wl_listener *listener, void *data) + { + struct cg_seat *seat = wl_container_of(listener, seat, cursor_motion); +- struct wlr_event_pointer_motion *event = data; ++ struct wlr_pointer_motion_event *event = data; + +- wlr_cursor_move(seat->cursor, event->device, event->delta_x, event->delta_y); ++ wlr_cursor_move(seat->cursor, &event->pointer->base, event->delta_x, event->delta_y); + process_cursor_motion(seat, event->time_msec); wlr_idle_notify_activity(seat->server->idle, seat->seat); } @@ -1316,7 +1829,7 @@ index 08f25a3..4dce511 100644 static void drag_icon_update_position(struct cg_drag_icon *drag_icon) { -@@ -621,8 +594,6 @@ drag_icon_update_position(struct cg_drag_icon *drag_icon) +@@ -621,8 +651,6 @@ drag_icon_update_position(struct cg_drag_icon *drag_icon) struct cg_seat *seat = drag_icon->seat; struct wlr_touch_point *point; @@ -1325,36 +1838,46 @@ index 08f25a3..4dce511 100644 switch (wlr_icon->drag->grab_type) { case WLR_DRAG_GRAB_KEYBOARD: return; -@@ -640,7 +611,7 @@ drag_icon_update_position(struct cg_drag_icon *drag_icon) +@@ -640,7 +668,7 @@ drag_icon_update_position(struct cg_drag_icon *drag_icon) break; } - drag_icon_damage(drag_icon); -+ wlr_scene_node_set_position(drag_icon->scene_node, drag_icon->lx, drag_icon->ly); ++ wlr_scene_node_set_position(&drag_icon->scene_tree->node, drag_icon->lx, drag_icon->ly); } static void -@@ -650,6 +621,7 @@ handle_drag_icon_destroy(struct wl_listener *listener, void *data) +@@ -650,6 +678,7 @@ handle_drag_icon_destroy(struct wl_listener *listener, void *data) wl_list_remove(&drag_icon->link); wl_list_remove(&drag_icon->destroy.link); -+ wlr_scene_node_destroy(drag_icon->scene_node); ++ wlr_scene_node_destroy(&drag_icon->scene_tree->node); free(drag_icon); } -@@ -692,6 +664,11 @@ handle_start_drag(struct wl_listener *listener, void *data) +@@ -692,6 +721,11 @@ handle_start_drag(struct wl_listener *listener, void *data) } drag_icon->seat = seat; drag_icon->wlr_drag_icon = wlr_drag_icon; -+ drag_icon->scene_node = wlr_scene_subsurface_tree_create(&seat->server->scene->node, wlr_drag_icon->surface); -+ if (!drag_icon->scene_node) { ++ drag_icon->scene_tree = wlr_scene_subsurface_tree_create(&seat->server->scene->tree, wlr_drag_icon->surface); ++ if (!drag_icon->scene_tree) { + free(drag_icon); + return; + } drag_icon->destroy.notify = handle_drag_icon_destroy; wl_signal_add(&wlr_drag_icon->events.destroy, &drag_icon->destroy); -@@ -840,7 +817,10 @@ struct cg_view * +@@ -812,6 +846,9 @@ seat_create(struct cg_server *server, struct wlr_backend *backend) + seat->new_input.notify = handle_new_input; + wl_signal_add(&backend->events.new_input, &seat->new_input); + ++ server->new_virtual_keyboard.notify = handle_virtual_keyboard; ++ server->new_virtual_pointer.notify = handle_virtual_pointer; ++ + wl_list_init(&seat->drag_icons); + seat->request_start_drag.notify = handle_request_start_drag; + wl_signal_add(&seat->seat->events.request_start_drag, &seat->request_start_drag); +@@ -840,7 +877,10 @@ struct cg_view * seat_get_focus(struct cg_seat *seat) { struct wlr_surface *prev_surface = seat->seat->keyboard_state.focused_surface; @@ -1367,22 +1890,57 @@ index 08f25a3..4dce511 100644 void diff --git a/seat.h b/seat.h -index 188543d..5fb2db3 100644 +index 188543d..52cbee4 100644 --- a/seat.h +++ b/seat.h -@@ -77,6 +77,7 @@ struct cg_drag_icon { +@@ -55,12 +55,13 @@ struct cg_keyboard_group { + struct wl_listener key; + struct wl_listener modifiers; + struct wl_list link; // cg_seat::keyboard_groups ++ bool is_virtual; + }; + + struct cg_pointer { + struct wl_list link; // seat::pointers + struct cg_seat *seat; +- struct wlr_input_device *device; ++ struct wlr_pointer *pointer; + + struct wl_listener destroy; + }; +@@ -68,7 +69,7 @@ struct cg_pointer { + struct cg_touch { + struct wl_list link; // seat::touch + struct cg_seat *seat; +- struct wlr_input_device *device; ++ struct wlr_touch *touch; + + struct wl_listener destroy; + }; +@@ -77,6 +78,7 @@ struct cg_drag_icon { struct wl_list link; // seat::drag_icons struct cg_seat *seat; struct wlr_drag_icon *wlr_drag_icon; -+ struct wlr_scene_node *scene_node; ++ struct wlr_scene_tree *scene_tree; /* The drag icon has a position in layout coordinates. */ double lx, ly; diff --git a/server.h b/server.h -index 817637b..bb7f3c1 100644 +index 817637b..082a435 100644 --- a/server.h +++ b/server.h -@@ -25,6 +25,8 @@ struct cg_server { +@@ -12,10 +12,6 @@ + #include + #endif + +-#include "output.h" +-#include "seat.h" +-#include "view.h" +- + enum cg_multi_output_mode { + CAGE_MULTI_OUTPUT_MODE_EXTEND, + CAGE_MULTI_OUTPUT_MODE_LAST, +@@ -25,6 +21,8 @@ struct cg_server { struct wl_display *wl_display; struct wl_list views; struct wlr_backend *backend; @@ -1391,7 +1949,7 @@ index 817637b..bb7f3c1 100644 struct cg_seat *seat; struct wlr_idle *idle; -@@ -34,6 +36,7 @@ struct cg_server { +@@ -34,6 +32,7 @@ struct cg_server { enum cg_multi_output_mode output_mode; struct wlr_output_layout *output_layout; @@ -1399,7 +1957,17 @@ index 817637b..bb7f3c1 100644 /* Includes disabled outputs; depending on the output_mode * some outputs may be disabled. */ struct wl_list outputs; // cg_output::link -@@ -48,9 +51,6 @@ struct cg_server { +@@ -41,6 +40,9 @@ struct cg_server { + + struct wl_listener xdg_toplevel_decoration; + struct wl_listener new_xdg_shell_surface; ++ ++ struct wl_listener new_virtual_keyboard; ++ struct wl_listener new_virtual_pointer; + #if CAGE_HAS_XWAYLAND + struct wl_listener new_xwayland_surface; + #endif +@@ -48,9 +50,6 @@ struct cg_server { bool xdg_decoration; bool allow_vt_switch; enum wl_output_transform output_transform; @@ -1469,10 +2037,10 @@ index db6bc7d..0000000 - -#endif diff --git a/view.c b/view.c -index 3f3b0ed..6551142 100644 +index 3f3b0ed..b4a3eca 100644 --- a/view.c +++ b/view.c -@@ -1,19 +1,20 @@ +@@ -1,20 +1,20 @@ /* * Cage: A Wayland kiosk. * @@ -1491,11 +2059,12 @@ index 3f3b0ed..6551142 100644 #include -#include #include +-#include +#include - #include #include "output.h" -@@ -24,96 +25,6 @@ + #include "seat.h" +@@ -24,96 +24,6 @@ #include "xwayland.h" #endif @@ -1592,7 +2161,7 @@ index 3f3b0ed..6551142 100644 char * view_get_title(struct cg_view *view) { -@@ -136,24 +47,6 @@ view_is_transient_for(struct cg_view *child, struct cg_view *parent) +@@ -136,24 +46,6 @@ view_is_transient_for(struct cg_view *child, struct cg_view *parent) return child->impl->is_transient_for(child, parent); } @@ -1617,29 +2186,40 @@ index 3f3b0ed..6551142 100644 void view_activate(struct cg_view *view, bool activate) { -@@ -174,6 +67,9 @@ view_maximize(struct cg_view *view, struct wlr_box *layout_box) +@@ -174,6 +66,9 @@ view_maximize(struct cg_view *view, struct wlr_box *layout_box) { view->lx = layout_box->x; view->ly = layout_box->y; + -+ wlr_scene_node_set_position(view->scene_node, view->lx, view->ly); ++ wlr_scene_node_set_position(&view->scene_tree->node, view->lx, view->ly); + view->impl->maximize(view, layout_box->width, layout_box->height); } -@@ -185,6 +81,8 @@ view_center(struct cg_view *view, struct wlr_box *layout_box) +@@ -185,33 +80,21 @@ view_center(struct cg_view *view, struct wlr_box *layout_box) view->lx = (layout_box->width - width) / 2; view->ly = (layout_box->height - height) / 2; + -+ wlr_scene_node_set_position(view->scene_node, view->lx, view->ly); ++ wlr_scene_node_set_position(&view->scene_tree->node, view->lx, view->ly); } void -@@ -199,51 +97,29 @@ view_position(struct cg_view *view) - } - } + view_position(struct cg_view *view) + { +- struct wlr_box *layout_box = wlr_output_layout_get_box(view->server->output_layout, NULL); ++ struct wlr_box layout_box; ++ wlr_output_layout_get_box(view->server->output_layout, NULL, &layout_box); +- if (view_is_primary(view) || view_extends_output_layout(view, layout_box)) { +- view_maximize(view, layout_box); ++ if (view_is_primary(view) || view_extends_output_layout(view, &layout_box)) { ++ view_maximize(view, &layout_box); + } else { +- view_center(view, layout_box); +- } +-} +- -void -view_for_each_surface(struct cg_view *view, wlr_surface_iterator_func_t iterator, void *data) -{ @@ -1651,12 +2231,13 @@ index 3f3b0ed..6551142 100644 -{ - if (!view->impl->for_each_popup_surface) { - return; -- } ++ view_center(view, &layout_box); + } - view->impl->for_each_popup_surface(view, iterator, data); --} -- + } + void - view_unmap(struct cg_view *view) +@@ -219,31 +102,24 @@ view_unmap(struct cg_view *view) { wl_list_remove(&view->link); @@ -1666,7 +2247,7 @@ index 3f3b0ed..6551142 100644 - wl_list_for_each_safe (child, tmp, &view->children, link) { - child->destroy(child); - } -+ wlr_scene_node_destroy(view->scene_node); ++ wlr_scene_node_destroy(&view->scene_tree->node); + view->wlr_surface->data = NULL; view->wlr_surface = NULL; @@ -1683,12 +2264,12 @@ index 3f3b0ed..6551142 100644 - } - wl_list_for_each (subsurface, &view->wlr_surface->subsurfaces_above, parent_link) { - subsurface_create(view, subsurface); -+ view->scene_node = wlr_scene_subsurface_tree_create(&view->server->scene->node, surface); -+ if (!view->scene_node) { ++ view->scene_tree = wlr_scene_subsurface_tree_create(&view->server->scene->tree, surface); ++ if (!view->scene_tree) { + wl_resource_post_no_memory(surface->resource); + return; } -+ view->scene_node->data = view; ++ view->scene_tree->node.data = view; - view->new_subsurface.notify = handle_new_subsurface; - wl_signal_add(&view->wlr_surface->events.new_subsurface, &view->new_subsurface); @@ -1726,7 +2307,7 @@ index 3f3b0ed..6551142 100644 + return surface->data; } diff --git a/view.h b/view.h -index cd16e42..677a949 100644 +index cd16e42..5ae13dd 100644 --- a/view.h +++ b/view.h @@ -5,9 +5,9 @@ @@ -1734,7 +2315,8 @@ index cd16e42..677a949 100644 #include #include -#include - #include +-#include ++#include #include +#include #if CAGE_HAS_XWAYLAND @@ -1746,7 +2328,7 @@ index cd16e42..677a949 100644 struct wl_list link; // server::views - struct wl_list children; // cg_view_child::link struct wlr_surface *wlr_surface; -+ struct wlr_scene_node *scene_node; ++ struct wlr_scene_tree *scene_tree; /* The view has a position in layout coordinates. */ int lx, ly; @@ -1808,7 +2390,7 @@ index cd16e42..677a949 100644 #endif diff --git a/xdg_shell.c b/xdg_shell.c -index 2e42347..ede71f4 100644 +index 2e42347..c577dc5 100644 --- a/xdg_shell.c +++ b/xdg_shell.c @@ -6,10 +6,11 @@ @@ -1824,7 +2406,7 @@ index 2e42347..ede71f4 100644 #include #include -@@ -41,60 +42,32 @@ xdg_decoration_handle_request_mode(struct wl_listener *listener, void *data) +@@ -41,105 +42,47 @@ xdg_decoration_handle_request_mode(struct wl_listener *listener, void *data) wlr_xdg_toplevel_decoration_v1_set_mode(xdg_decoration->wlr_decoration, mode); } @@ -1846,16 +2428,16 @@ index 2e42347..ede71f4 100644 - -static void -handle_xdg_popup_map(struct wl_listener *listener, void *data) -+static struct cg_view * -+popup_get_view(struct wlr_xdg_popup *popup) - { +-{ - struct cg_xdg_popup *popup = wl_container_of(listener, popup, map); - view_damage_whole(popup->view_child.view); -} - -static void -handle_xdg_popup_unmap(struct wl_listener *listener, void *data) --{ ++static struct cg_view * ++popup_get_view(struct wlr_xdg_popup *popup) + { - struct cg_xdg_popup *popup = wl_container_of(listener, popup, unmap); - view_damage_whole(popup->view_child.view); -} @@ -1900,12 +2482,24 @@ index 2e42347..ede71f4 100644 - struct cg_view *view = popup->view_child.view; struct cg_server *server = view->server; - struct wlr_box *popup_box = &popup->wlr_popup->geometry; -+ struct wlr_box *popup_box = &popup->geometry; ++ struct wlr_box *popup_box = &popup->current.geometry; struct wlr_output_layout *output_layout = server->output_layout; struct wlr_output *wlr_output = -@@ -108,38 +81,7 @@ popup_unconstrain(struct cg_xdg_popup *popup) - .height = output_box->height, + wlr_output_layout_output_at(output_layout, view->lx + popup_box->x, view->ly + popup_box->y); +- struct wlr_box *output_box = wlr_output_layout_get_box(output_layout, wlr_output); ++ struct wlr_box output_box; ++ wlr_output_layout_get_box(output_layout, wlr_output, &output_box); + + struct wlr_box output_toplevel_box = { +- .x = output_box->x - view->lx, +- .y = output_box->y - view->ly, +- .width = output_box->width, +- .height = output_box->height, ++ .x = output_box.x - view->lx, ++ .y = output_box.y - view->ly, ++ .width = output_box.width, ++ .height = output_box.height, }; - wlr_xdg_popup_unconstrain_from_box(popup->wlr_popup, &output_toplevel_box); @@ -1944,23 +2538,76 @@ index 2e42347..ede71f4 100644 } static struct cg_xdg_shell_view * -@@ -170,9 +112,12 @@ static bool +@@ -152,7 +95,7 @@ static char * + get_title(struct cg_view *view) + { + struct cg_xdg_shell_view *xdg_shell_view = xdg_shell_view_from_view(view); +- return xdg_shell_view->xdg_surface->toplevel->title; ++ return xdg_shell_view->xdg_toplevel->title; + } + + static void +@@ -161,7 +104,7 @@ get_geometry(struct cg_view *view, int *width_out, int *height_out) + struct cg_xdg_shell_view *xdg_shell_view = xdg_shell_view_from_view(view); + struct wlr_box geom; + +- wlr_xdg_surface_get_geometry(xdg_shell_view->xdg_surface, &geom); ++ wlr_xdg_surface_get_geometry(xdg_shell_view->xdg_toplevel->base, &geom); + *width_out = geom.width; + *height_out = geom.height; + } +@@ -170,9 +113,9 @@ static bool is_primary(struct cg_view *view) { struct cg_xdg_shell_view *xdg_shell_view = xdg_shell_view_from_view(view); - struct wlr_xdg_surface *parent = xdg_shell_view->xdg_surface->toplevel->parent; - /* FIXME: role is 0? */ - return parent == NULL; /*&& role == WLR_XDG_SURFACE_ROLE_TOPLEVEL */ -+ struct wlr_xdg_surface *xdg_surface = xdg_shell_view->xdg_surface; ++ struct wlr_xdg_toplevel *parent = xdg_shell_view->xdg_toplevel->parent; + -+ struct wlr_xdg_surface *parent = xdg_surface->toplevel->parent; -+ enum wlr_xdg_surface_role role = xdg_surface->role; -+ -+ return parent == NULL && role == WLR_XDG_SURFACE_ROLE_TOPLEVEL; ++ return parent == NULL; } static bool -@@ -216,41 +161,20 @@ destroy(struct cg_view *view) +@@ -182,14 +125,13 @@ is_transient_for(struct cg_view *child, struct cg_view *parent) + return false; + } + struct cg_xdg_shell_view *_child = xdg_shell_view_from_view(child); +- struct wlr_xdg_surface *xdg_surface = _child->xdg_surface; ++ struct wlr_xdg_toplevel *xdg_toplevel = _child->xdg_toplevel; + struct cg_xdg_shell_view *_parent = xdg_shell_view_from_view(parent); +- struct wlr_xdg_surface *parent_xdg_surface = _parent->xdg_surface; +- while (xdg_surface) { +- if (xdg_surface->toplevel->parent == parent_xdg_surface) { ++ while (xdg_toplevel) { ++ if (xdg_toplevel->parent == _parent->xdg_toplevel) { + return true; + } +- xdg_surface = xdg_surface->toplevel->parent; ++ xdg_toplevel = xdg_toplevel->parent; + } + return false; + } +@@ -198,15 +140,15 @@ static void + activate(struct cg_view *view, bool activate) + { + struct cg_xdg_shell_view *xdg_shell_view = xdg_shell_view_from_view(view); +- wlr_xdg_toplevel_set_activated(xdg_shell_view->xdg_surface, activate); ++ wlr_xdg_toplevel_set_activated(xdg_shell_view->xdg_toplevel, activate); + } + + static void + maximize(struct cg_view *view, int output_width, int output_height) + { + struct cg_xdg_shell_view *xdg_shell_view = xdg_shell_view_from_view(view); +- wlr_xdg_toplevel_set_size(xdg_shell_view->xdg_surface, output_width, output_height); +- wlr_xdg_toplevel_set_maximized(xdg_shell_view->xdg_surface, true); ++ wlr_xdg_toplevel_set_size(xdg_shell_view->xdg_toplevel, output_width, output_height); ++ wlr_xdg_toplevel_set_maximized(xdg_shell_view->xdg_toplevel, true); + } + + static void +@@ -216,41 +158,21 @@ destroy(struct cg_view *view) free(xdg_shell_view); } @@ -1989,7 +2636,7 @@ index 2e42347..ede71f4 100644 handle_xdg_shell_surface_request_fullscreen(struct wl_listener *listener, void *data) { struct cg_xdg_shell_view *xdg_shell_view = wl_container_of(listener, xdg_shell_view, request_fullscreen); - struct wlr_xdg_toplevel_set_fullscreen_event *event = data; +- struct wlr_xdg_toplevel_set_fullscreen_event *event = data; - wlr_xdg_toplevel_set_fullscreen(xdg_shell_view->xdg_surface, event->fullscreen); -} @@ -2003,14 +2650,16 @@ index 2e42347..ede71f4 100644 + * Certain clients do not like figuring out their own window geometry if they + * display in fullscreen mode, so we set it here. + */ -+ struct wlr_box *layout_box = wlr_output_layout_get_box(xdg_shell_view->view.server->output_layout, NULL); -+ wlr_xdg_toplevel_set_size(xdg_shell_view->xdg_surface, layout_box->width, layout_box->height); ++ struct wlr_box layout_box; ++ wlr_output_layout_get_box(xdg_shell_view->view.server->output_layout, NULL, &layout_box); ++ wlr_xdg_toplevel_set_size(xdg_shell_view->xdg_toplevel, layout_box.width, layout_box.height); + -+ wlr_xdg_toplevel_set_fullscreen(xdg_shell_view->xdg_surface, event->fullscreen); ++ wlr_xdg_toplevel_set_fullscreen(xdg_shell_view->xdg_toplevel, ++ xdg_shell_view->xdg_toplevel->requested.fullscreen); } static void -@@ -259,10 +183,6 @@ handle_xdg_shell_surface_unmap(struct wl_listener *listener, void *data) +@@ -259,10 +181,6 @@ handle_xdg_shell_surface_unmap(struct wl_listener *listener, void *data) struct cg_xdg_shell_view *xdg_shell_view = wl_container_of(listener, xdg_shell_view, unmap); struct cg_view *view = &xdg_shell_view->view; @@ -2021,28 +2670,31 @@ index 2e42347..ede71f4 100644 view_unmap(view); } -@@ -272,12 +192,7 @@ handle_xdg_shell_surface_map(struct wl_listener *listener, void *data) +@@ -272,12 +190,7 @@ handle_xdg_shell_surface_map(struct wl_listener *listener, void *data) struct cg_xdg_shell_view *xdg_shell_view = wl_container_of(listener, xdg_shell_view, map); struct cg_view *view = &xdg_shell_view->view; - xdg_shell_view->commit.notify = handle_xdg_shell_surface_commit; - wl_signal_add(&xdg_shell_view->xdg_surface->surface->events.commit, &xdg_shell_view->commit); - - view_map(view, xdg_shell_view->xdg_surface->surface); +- view_map(view, xdg_shell_view->xdg_surface->surface); - - view_damage_whole(view); ++ view_map(view, xdg_shell_view->xdg_toplevel->base->surface); } static void -@@ -290,7 +205,6 @@ handle_xdg_shell_surface_destroy(struct wl_listener *listener, void *data) +@@ -290,8 +203,7 @@ handle_xdg_shell_surface_destroy(struct wl_listener *listener, void *data) wl_list_remove(&xdg_shell_view->unmap.link); wl_list_remove(&xdg_shell_view->destroy.link); wl_list_remove(&xdg_shell_view->request_fullscreen.link); - wl_list_remove(&xdg_shell_view->new_popup.link); - xdg_shell_view->xdg_surface = NULL; +- xdg_shell_view->xdg_surface = NULL; ++ xdg_shell_view->xdg_toplevel = NULL; view_destroy(view); -@@ -304,9 +218,6 @@ static const struct cg_view_impl xdg_shell_view_impl = { + } +@@ -304,9 +216,6 @@ static const struct cg_view_impl xdg_shell_view_impl = { .activate = activate, .maximize = maximize, .destroy = destroy, @@ -2052,7 +2704,7 @@ index 2e42347..ede71f4 100644 }; void -@@ -315,29 +226,64 @@ handle_xdg_shell_surface_new(struct wl_listener *listener, void *data) +@@ -315,29 +224,64 @@ handle_xdg_shell_surface_new(struct wl_listener *listener, void *data) struct cg_server *server = wl_container_of(listener, server, new_xdg_shell_surface); struct wlr_xdg_surface *xdg_surface = data; @@ -2073,7 +2725,7 @@ index 2e42347..ede71f4 100644 - return; - } + view_init(&xdg_shell_view->view, server, CAGE_XDG_SHELL_VIEW, &xdg_shell_view_impl); -+ xdg_shell_view->xdg_surface = xdg_surface; ++ xdg_shell_view->xdg_toplevel = xdg_surface->toplevel; + + xdg_shell_view->map.notify = handle_xdg_shell_surface_map; + wl_signal_add(&xdg_surface->events.map, &xdg_shell_view->map); @@ -2093,19 +2745,19 @@ index 2e42347..ede71f4 100644 + return; + } + -+ struct wlr_scene_node *parent_scene_node = NULL; ++ struct wlr_scene_tree *parent_scene_tree = NULL; + struct wlr_xdg_surface *parent = wlr_xdg_surface_from_wlr_surface(popup->parent); + switch (parent->role) { + case WLR_XDG_SURFACE_ROLE_TOPLEVEL:; -+ parent_scene_node = view->scene_node; ++ parent_scene_tree = view->scene_tree; + break; + case WLR_XDG_SURFACE_ROLE_POPUP: -+ parent_scene_node = parent->data; ++ parent_scene_tree = parent->data; + break; + case WLR_XDG_SURFACE_ROLE_NONE: + break; + } -+ if (parent_scene_node == NULL) { ++ if (parent_scene_tree == NULL) { + return; + } @@ -2122,15 +2774,15 @@ index 2e42347..ede71f4 100644 - wl_signal_add(&xdg_surface->toplevel->events.request_fullscreen, &xdg_shell_view->request_fullscreen); - xdg_shell_view->new_popup.notify = handle_new_xdg_popup; - wl_signal_add(&xdg_surface->events.new_popup, &xdg_shell_view->new_popup); -+ struct wlr_scene_node *popup_scene_node = wlr_scene_xdg_surface_create(parent_scene_node, xdg_surface); -+ if (popup_scene_node == NULL) { ++ struct wlr_scene_tree *popup_scene_tree = wlr_scene_xdg_surface_create(parent_scene_tree, xdg_surface); ++ if (popup_scene_tree == NULL) { + wlr_log(WLR_ERROR, "Failed to allocate scene-graph node for XDG popup"); + return; + } + + popup_unconstrain(view, popup); + -+ xdg_surface->data = popup_scene_node; ++ xdg_surface->data = popup_scene_tree; + break; + case WLR_XDG_SURFACE_ROLE_NONE: + assert(false); // unreachable @@ -2139,10 +2791,16 @@ index 2e42347..ede71f4 100644 void diff --git a/xdg_shell.h b/xdg_shell.h -index 45d87db..9a101c6 100644 +index 45d87db..2fd506a 100644 --- a/xdg_shell.h +++ b/xdg_shell.h -@@ -14,19 +14,7 @@ struct cg_xdg_shell_view { +@@ -9,24 +9,12 @@ + + struct cg_xdg_shell_view { + struct cg_view view; +- struct wlr_xdg_surface *xdg_surface; ++ struct wlr_xdg_toplevel *xdg_toplevel; + struct wl_listener destroy; struct wl_listener unmap; struct wl_listener map; diff --git a/cage-vi/virtual_input.patch b/cage-vi/virtual_input.patch deleted file mode 100644 index a34b567..0000000 --- a/cage-vi/virtual_input.patch +++ /dev/null @@ -1,218 +0,0 @@ -From 99956cd5301ad1c19e3a3d07e022c942ca8b312d Mon Sep 17 00:00:00 2001 -From: Dominique Martinet -Date: Tue, 18 May 2021 08:52:06 +0900 -Subject: [PATCH 1/2] seat: add wlr_virtual_keyboard_manager_v1 - ---- - seat.c | 43 ++++++++++++++++++++++++++++++++++++------- - seat.h | 4 ++++ - 2 files changed, 40 insertions(+), 7 deletions(-) - -diff --git a/seat.c b/seat.c -index 08f25a3..d8556f6 100644 ---- a/seat.c -+++ b/seat.c -@@ -21,6 +21,7 @@ - #include - #include - #include -+#include - #include - #include - #if CAGE_HAS_XWAYLAND -@@ -294,10 +295,16 @@ handle_keyboard_group_modifiers(struct wl_listener *listener, void *data) - } - - static void --cg_keyboard_group_add(struct wlr_input_device *device, struct cg_seat *seat) -+cg_keyboard_group_add(struct wlr_input_device *device, struct cg_seat *seat, bool virtual) - { - struct wlr_keyboard *wlr_keyboard = device->keyboard; - -+ if (virtual) -+ /* We apparently should not group virtual keyboards, -+ * so create a new group with it -+ */ -+ goto create_new; -+ - struct cg_keyboard_group *group; - wl_list_for_each (group, &seat->keyboard_groups, link) { - struct wlr_keyboard_group *wlr_group = group->wlr_group; -@@ -309,7 +316,9 @@ cg_keyboard_group_add(struct wlr_input_device *device, struct cg_seat *seat) - - /* This is reached if and only if the keyboard could not be inserted into - * any group */ -- struct cg_keyboard_group *cg_group = calloc(1, sizeof(struct cg_keyboard_group)); -+ struct cg_keyboard_group *cg_group; -+create_new: -+ cg_group = calloc(1, sizeof(struct cg_keyboard_group)); - if (cg_group == NULL) { - wlr_log(WLR_ERROR, "Failed to allocate keyboard group."); - return; -@@ -322,7 +331,7 @@ cg_keyboard_group_add(struct wlr_input_device *device, struct cg_seat *seat) - } - - cg_group->wlr_group->data = cg_group; -- wlr_keyboard_set_keymap(&cg_group->wlr_group->keyboard, device->keyboard->keymap); -+ wlr_keyboard_set_keymap(&cg_group->wlr_group->keyboard, wlr_keyboard->keymap); - - wlr_keyboard_set_repeat_info(&cg_group->wlr_group->keyboard, wlr_keyboard->repeat_info.rate, - wlr_keyboard->repeat_info.delay); -@@ -330,7 +339,10 @@ cg_keyboard_group_add(struct wlr_input_device *device, struct cg_seat *seat) - wlr_log(WLR_DEBUG, "Created keyboard group"); - - wlr_keyboard_group_add_keyboard(cg_group->wlr_group, wlr_keyboard); -- wl_list_insert(&seat->keyboard_groups, &cg_group->link); -+ if (!virtual) -+ wl_list_insert(&seat->keyboard_groups, &cg_group->link); -+ else -+ wl_list_init(&cg_group->link); - - wl_signal_add(&cg_group->wlr_group->keyboard.events.key, &cg_group->key); - cg_group->key.notify = handle_keyboard_group_key; -@@ -347,7 +359,7 @@ cg_keyboard_group_add(struct wlr_input_device *device, struct cg_seat *seat) - } - - static void --handle_new_keyboard(struct cg_seat *seat, struct wlr_input_device *device) -+handle_new_keyboard(struct cg_seat *seat, struct wlr_input_device *device, bool virtual) - { - struct xkb_context *context = xkb_context_new(XKB_CONTEXT_NO_FLAGS); - if (!context) { -@@ -374,11 +386,24 @@ handle_new_keyboard(struct cg_seat *seat, struct wlr_input_device *device) - xkb_context_unref(context); - wlr_keyboard_set_repeat_info(device->keyboard, 25, 600); - -- cg_keyboard_group_add(device, seat); -+ cg_keyboard_group_add(device, seat, virtual); - - wlr_seat_set_keyboard(seat->seat, device); - } - -+static void -+handle_virtual_keyboard(struct wl_listener *listener, void *data) -+{ -+ struct cg_seat *seat = wl_container_of(listener, seat, new_virtual_keyboard); -+ struct wlr_virtual_keyboard_v1 *keyboard = data; -+ struct wlr_input_device *device = &keyboard->input_device; -+ -+ /* If multiple seats are supported, check keyboard->seat -+ * to select the appropriate one */ -+ -+ handle_new_keyboard(seat, device, true); -+} -+ - static void - handle_new_input(struct wl_listener *listener, void *data) - { -@@ -387,7 +412,7 @@ handle_new_input(struct wl_listener *listener, void *data) - - switch (device->type) { - case WLR_INPUT_DEVICE_KEYBOARD: -- handle_new_keyboard(seat, device); -+ handle_new_keyboard(seat, device, false); - break; - case WLR_INPUT_DEVICE_POINTER: - handle_new_pointer(seat, device); -@@ -818,6 +843,10 @@ seat_create(struct cg_server *server, struct wlr_backend *backend) - seat->start_drag.notify = handle_start_drag; - wl_signal_add(&seat->seat->events.start_drag, &seat->start_drag); - -+ seat->virtual_keyboard = wlr_virtual_keyboard_manager_v1_create(server->wl_display); -+ wl_signal_add(&seat->virtual_keyboard->events.new_virtual_keyboard, &seat->new_virtual_keyboard); -+ seat->new_virtual_keyboard.notify = handle_virtual_keyboard; -+ - return seat; - } - -diff --git a/seat.h b/seat.h -index 188543d..428801a 100644 ---- a/seat.h -+++ b/seat.h -@@ -25,6 +25,10 @@ struct cg_seat { - struct wl_list touch; - struct wl_listener new_input; - -+ // These belong to higher level if multiple seats are allowed -+ struct wlr_virtual_keyboard_manager_v1 *virtual_keyboard; -+ struct wl_listener new_virtual_keyboard; -+ - struct wlr_cursor *cursor; - struct wlr_xcursor_manager *xcursor_manager; - struct wl_listener cursor_motion; - -From 9d2e1c2131c27fd656f37580689fce92a663dad0 Mon Sep 17 00:00:00 2001 -From: Dominique Martinet -Date: Tue, 18 May 2021 08:52:22 +0900 -Subject: [PATCH 2/2] seat: add wlr_virtual_pointer_manager_v1 - -together with the previous patch, wayvnc can now be used with cage: - $ cage something - # figure out which wayland socket cage used - $ WAYLAND_DISPLAY=wayland-0 wayvnc - -Note this does not appear to work with headless backend, e.g. starting cage with -WLR_BACKENDS=headless WLR_LIBINPUT_NO_DEVICES=1 cage something -does start and wayvnc connects/displays output, but there are tons of errors -and input does not work ---- - seat.c | 17 +++++++++++++++++ - seat.h | 2 ++ - 2 files changed, 19 insertions(+) - -diff --git a/seat.c b/seat.c -index d8556f6..9bf6672 100644 ---- a/seat.c -+++ b/seat.c -@@ -22,6 +22,7 @@ - #include - #include - #include -+#include - #include - #include - #if CAGE_HAS_XWAYLAND -@@ -216,6 +217,18 @@ handle_new_pointer(struct cg_seat *seat, struct wlr_input_device *device) - map_input_device_to_output(seat, device); - } - -+static void -+handle_virtual_pointer(struct wl_listener *listener, void *data) -+{ -+ struct cg_seat *seat = wl_container_of(listener, seat, new_virtual_pointer); -+ struct wlr_virtual_pointer_v1_new_pointer_event *event = data; -+ struct wlr_virtual_pointer_v1 *pointer = event->new_pointer; -+ struct wlr_input_device *device = &pointer->input_device; -+ -+ /* event->suggested_seat should be checked if we handle multiple seats */ -+ handle_new_pointer(seat, device); -+} -+ - static void - handle_modifier_event(struct wlr_input_device *device, struct cg_seat *seat) - { -@@ -847,6 +860,10 @@ seat_create(struct cg_server *server, struct wlr_backend *backend) - wl_signal_add(&seat->virtual_keyboard->events.new_virtual_keyboard, &seat->new_virtual_keyboard); - seat->new_virtual_keyboard.notify = handle_virtual_keyboard; - -+ seat->virtual_pointer = wlr_virtual_pointer_manager_v1_create(server->wl_display); -+ wl_signal_add(&seat->virtual_pointer->events.new_virtual_pointer, &seat->new_virtual_pointer); -+ seat->new_virtual_pointer.notify = handle_virtual_pointer; -+ - return seat; - } - -diff --git a/seat.h b/seat.h -index 428801a..0f6de59 100644 ---- a/seat.h -+++ b/seat.h -@@ -27,7 +27,9 @@ struct cg_seat { - - // These belong to higher level if multiple seats are allowed - struct wlr_virtual_keyboard_manager_v1 *virtual_keyboard; -+ struct wlr_virtual_pointer_manager_v1 *virtual_pointer; - struct wl_listener new_virtual_keyboard; -+ struct wl_listener new_virtual_pointer; - - struct wlr_cursor *cursor; - struct wlr_xcursor_manager *xcursor_manager; From f277aa9dbd30661fac95bf97fea96fe14e461204 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 3 Apr 2023 08:32:00 +0200 Subject: [PATCH 452/971] Rename package to discord-electron, PKGBUILD refactor --- discord-electron-bin/.SRCINFO | 20 ------ discord-electron-bin/PKGBUILD | 102 -------------------------- discord-electron/.SRCINFO | 27 +++---- discord-electron/.gitignore | 6 -- discord-electron/PKGBUILD | 132 ++++++++++++++++++++++------------ discord-electron/discord.sh | 2 - 6 files changed, 95 insertions(+), 194 deletions(-) delete mode 100644 discord-electron-bin/.SRCINFO delete mode 100644 discord-electron-bin/PKGBUILD delete mode 100644 discord-electron/.gitignore delete mode 100644 discord-electron/discord.sh diff --git a/discord-electron-bin/.SRCINFO b/discord-electron-bin/.SRCINFO deleted file mode 100644 index 919b0f7..0000000 --- a/discord-electron-bin/.SRCINFO +++ /dev/null @@ -1,20 +0,0 @@ -pkgbase = discord-electron-bin - pkgdesc = Discord using system provided electron (v22) for increased security and performance - pkgver = 0.0.26 - pkgrel = 1 - url = https://discord.com - arch = x86_64 - license = custom - makedepends = asar - makedepends = curl - makedepends = python-html2text - depends = electron22 - optdepends = libpulse: Pulseaudio support - optdepends = xdg-utils: Open files - provides = discord - conflicts = discord - options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.26/discord-0.0.26.tar.gz - sha512sums = 65477c2c033f30850a699706a6502ff4f4af8838185716d968d641fdab3033555139b04bf91a111a847aca14113e33ba6248d49ba317fd43cbacb099e974117b - -pkgname = discord-electron-bin diff --git a/discord-electron-bin/PKGBUILD b/discord-electron-bin/PKGBUILD deleted file mode 100644 index c153bda..0000000 --- a/discord-electron-bin/PKGBUILD +++ /dev/null @@ -1,102 +0,0 @@ -# Maintainer: Manuel Hüsers -# Contributor: Stick -# Contributor: johnnyapol -# Contributor: huyizheng -# Contributor: Filipe Laíns (FFY00) -# Contributor: Morgan - -# Based off the discord_arch_electron_wayland PKGBUILD from Stick -# Based off the discord_arch_electron PKGBUILD from johnnyapol and huyizheng -# Based off the discord community repo PKGBUILD by Filipe Laíns (FFY00) - -pkgname=discord-electron-bin -_pkgname=discord -_electron=22 -pkgver=0.0.26 -pkgrel=1 -pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" -arch=('x86_64') -provides=("${_pkgname}") -conflicts=("${_pkgname}") -url='https://discord.com' -license=('custom') -options=('!strip') -depends=("electron${_electron}") -makedepends=('asar' 'curl' 'python-html2text') -optdepends=( - 'libpulse: Pulseaudio support' - 'xdg-utils: Open files' -) -source=("https://dl.discordapp.net/apps/linux/${pkgver}/discord-${pkgver}.tar.gz") -sha512sums=('65477c2c033f30850a699706a6502ff4f4af8838185716d968d641fdab3033555139b04bf91a111a847aca14113e33ba6248d49ba317fd43cbacb099e974117b') - -_tarname='Discord' - -prepare() { - # create launcher script - cat >> "${srcdir}"/discord-launcher.sh <> $_tarname/$_pkgname.desktop - - # create the license files - curl https://discord.com/terms | html2text >"${srcdir}"/LICENSE.md - curl https://discord.com/licenses | html2text >"${srcdir}"/OSS-LICENSES.md - - # use system electron - asar e $_tarname/resources/app.asar $_tarname/resources/app - rm $_tarname/resources/app.asar - sed -i "s|process.resourcesPath|'/usr/lib/${_pkgname}'|" $_tarname/resources/app/app_bootstrap/buildInfo.js - sed -i "s|exeDir,|'/usr/share/pixmaps',|" $_tarname/resources/app/app_bootstrap/autoStart/linux.js - asar p $_tarname/resources/app $_tarname/resources/app.asar --unpack-dir '**' - rm -rf $_tarname/resources/app -} - -package() { - # create necessary directories - install -d "${pkgdir}"/usr/{lib/$_pkgname,bin} - install -d "${pkgdir}"/usr/share/{pixmaps,applications,licenses/$_pkgname} - - # copy relevant data - cp -r $_tarname/resources/* "${pkgdir}"/usr/lib/$_pkgname/ - - # install the binary - install -Dm 755 discord-launcher.sh "${pkgdir}"/usr/bin/$_pkgname - - cp $_tarname/$_pkgname.png \ - "${pkgdir}"/usr/share/pixmaps/$_pkgname.png - cp $_tarname/$_pkgname.desktop \ - "${pkgdir}"/usr/share/applications/$_pkgname.desktop - - # license - install -Dm 644 LICENSE.md "${pkgdir}"/usr/share/licenses/$_pkgname/ - install -Dm 644 OSS-LICENSES.md "${pkgdir}"/usr/share/licenses/$_pkgname/ -} diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 0b75bf1..3eb5b1c 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,27 +1,20 @@ pkgbase = discord-electron - pkgdesc = All-in-one voice and text chat for gamers that's free and secure. - pkgver = 0.0.15 + pkgdesc = Discord using system provided electron (v22) for increased security and performance + pkgver = 0.0.26 pkgrel = 1 - url = https://discordapp.com + url = https://discord.com arch = x86_64 license = custom makedepends = asar - depends = electron - depends = libnotify - depends = libxss - depends = nspr - depends = nss - depends = gtk3 + makedepends = curl + makedepends = python-html2text + depends = electron22 optdepends = libpulse: Pulseaudio support optdepends = xdg-utils: Open files + provides = discord conflicts = discord - source = https://dl.discordapp.net/apps/linux/0.0.15/discord-0.0.15.tar.gz - source = discord.sh - source = LICENSE.html::https://discordapp.com/terms - source = OSS-LICENSES.html::https://discordapp.com/licenses - sha512sums = 4f220ecd0e0c9fcd793ed065055479391506d9401b75ca541cde4136d0290f2720fccca87139091faf269fdb2c020adb5b7333710a31ca603ce8552f3dd4841b - sha512sums = b5fe7bfd31ae1867f3392605bd52ac155c6c02c4a2a132419d9806c08e61715461818919c2e480ba8e7f14b51aefcd588dcaa247f15d24286e177e45f43e17f9 - sha512sums = 6a2ebf7aadf06ba804c1c6f10677a014b2b9eb17a2bb34538426bf4c76686c4c11976bd682610965535f7a5d4a2f6b36dfa5aa875578defef1213ed866acb530 - sha512sums = f6d46b7a2dd6c8475625a988f36419788ab90149317c9a4e5e8ffea8613f27d0746c1557467332770c033349abd370bf721990ecadc383b4aee63cb8b74a280c + options = !strip + source = https://dl.discordapp.net/apps/linux/0.0.26/discord-0.0.26.tar.gz + sha512sums = 65477c2c033f30850a699706a6502ff4f4af8838185716d968d641fdab3033555139b04bf91a111a847aca14113e33ba6248d49ba317fd43cbacb099e974117b pkgname = discord-electron diff --git a/discord-electron/.gitignore b/discord-electron/.gitignore deleted file mode 100644 index 11fb5a8..0000000 --- a/discord-electron/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -pkg -src -*.tar.gz -*.pkg.tar.zst -LICENSE.html -OSS-LICENSES.html diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 77301fa..3e5f331 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,65 +1,103 @@ -# Maintainer: Dušan Simić +# Maintainer: Manuel Hüsers +# Contributor: Stick +# Contributor: johnnyapol +# Contributor: huyizheng +# Contributor: Filipe Laíns (FFY00) +# Contributor: Morgan + +# Based off the discord_arch_electron_wayland PKGBUILD from Stick +# Based off the discord_arch_electron PKGBUILD from johnnyapol and huyizheng +# Based off the discord community repo PKGBUILD by Filipe Laíns (FFY00) -_electron=electron pkgname=discord-electron _pkgname=discord -_Pkgname=Discord -pkgver=0.0.15 +_electron=22 +pkgver=0.0.26 pkgrel=1 -pkgdesc="All-in-one voice and text chat for gamers that's free and secure." +pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') -url='https://discordapp.com' +provides=("${_pkgname}") +conflicts=("${_pkgname}") +url='https://discord.com' license=('custom') -depends=("$_electron" 'libnotify' 'libxss' 'nspr' 'nss' 'gtk3') -makedepends=('asar') -optdepends=('libpulse: Pulseaudio support' - 'xdg-utils: Open files') -conflicts=(discord) -source=("https://dl.discordapp.net/apps/linux/$pkgver/$_pkgname-$pkgver.tar.gz" - 'discord.sh' - 'LICENSE.html::https://discordapp.com/terms' - 'OSS-LICENSES.html::https://discordapp.com/licenses') -sha512sums=('4f220ecd0e0c9fcd793ed065055479391506d9401b75ca541cde4136d0290f2720fccca87139091faf269fdb2c020adb5b7333710a31ca603ce8552f3dd4841b' - 'b5fe7bfd31ae1867f3392605bd52ac155c6c02c4a2a132419d9806c08e61715461818919c2e480ba8e7f14b51aefcd588dcaa247f15d24286e177e45f43e17f9' - '6a2ebf7aadf06ba804c1c6f10677a014b2b9eb17a2bb34538426bf4c76686c4c11976bd682610965535f7a5d4a2f6b36dfa5aa875578defef1213ed866acb530' - 'f6d46b7a2dd6c8475625a988f36419788ab90149317c9a4e5e8ffea8613f27d0746c1557467332770c033349abd370bf721990ecadc383b4aee63cb8b74a280c') +options=('!strip') +depends=("electron${_electron}") +makedepends=('asar' 'curl' 'python-html2text') +optdepends=( + 'libpulse: Pulseaudio support' + 'xdg-utils: Open files' +) +source=("https://dl.discordapp.net/apps/linux/${pkgver}/discord-${pkgver}.tar.gz") +sha512sums=('65477c2c033f30850a699706a6502ff4f4af8838185716d968d641fdab3033555139b04bf91a111a847aca14113e33ba6248d49ba317fd43cbacb099e974117b') prepare() { - cd "$_Pkgname" + # create launcher script + cat >> "${srcdir}"/discord-launcher.sh <> "$_pkgname.desktop" +if [ "\$XDG_SESSION_TYPE" = wayland ]; then + # Using wayland + exec electron${_electron} \\ + --enable-features=UseOzonePlatform \\ + --ozone-platform=wayland \\ + --enable-accelerated-mjpeg-decode \\ + --enable-accelerated-video \\ + --ignore-gpu-blacklist \\ + --enable-native-gpu-memory-buffers \\ + --enable-gpu-rasterization \\ + --enable-gpu \\ + --enable-features=WebRTCPipeWireCapturer \\ + /usr/lib/discord/app.asar \$@ +else + # Using x11 + exec electron${_electron} \\ + --enable-accelerated-mjpeg-decode \\ + --enable-accelerated-video \\ + --ignore-gpu-blacklist \\ + --enable-native-gpu-memory-buffers \\ + --enable-gpu-rasterization \\ + --enable-gpu \\ + /usr/lib/discord/app.asar \$@ +fi +EOF - # Change resource path in asar archive - asar extract resources/app.asar resources/app.asar.dest - sed -i "s|process\.resourcesPath|'/', 'opt', '$pkgname'|" resources/app.asar.dest/app_bootstrap/buildInfo.js - asar pack resources/app.asar.dest resources/app.asar - # Cleanup unpacked files - rm -r resources/app.asar.dest + # fix the .desktop file + sed -i "s|Exec=.*|Exec=/usr/bin/${_pkgname}|" Discord/$_pkgname.desktop + echo 'Path=/usr/bin' >> Discord/$_pkgname.desktop - cd "$srcdir" - - # Set electron version in startup script - sed -i "s|@ELECTRON@|$_electron|" "$_pkgname.sh" + # create the license files + curl https://discord.com/terms | html2text >"${srcdir}"/LICENSE.md + curl https://discord.com/licenses | html2text >"${srcdir}"/OSS-LICENSES.md } package() { - # Install the app - install -d "$pkgdir/opt/$pkgname" - cp -a "$_Pkgname/resources/." "$pkgdir/opt/$pkgname" + # create necessary directories + install -d "${pkgdir}"/usr/{lib/$_pkgname,bin} + install -d "${pkgdir}"/usr/share/{pixmaps,applications,licenses/$_pkgname} - # Install startup script - install -Dm755 "$_pkgname.sh" "$pkgdir/usr/bin/$pkgname" - ln -s "/usr/bin/$pkgname" "$pkgdir/usr/bin/$_pkgname" + cd "${srcdir}/Discord" - # Install icon and desktop file - install -Dm644 "$_Pkgname/$_pkgname.png" "$pkgdir/usr/share/pixmaps/$pkgname.png" - install -Dm644 "$_Pkgname/$_pkgname.desktop" "$pkgdir/usr/share/applications/$pkgname.desktop" + # use system electron + asar e resources/app.asar resources/app + rm resources/app.asar + sed -i "s|process.resourcesPath|'/usr/lib/${_pkgname}'|" resources/app/app_bootstrap/buildInfo.js + sed -i "s|exeDir,|'/usr/share/pixmaps',|" resources/app/app_bootstrap/autoStart/linux.js + asar p resources/app resources/app.asar + rm -rf resources/app - # Licenses - install -Dm644 LICENSE.html "$pkgdir/usr/share/licenses/$pkgname/LICENSE.html" - install -Dm644 OSS-LICENSES.html "$pkgdir/usr/share/licenses/$pkgname/OSS-LICENSES.html" + # copy relevant data + cp -r resources/* "${pkgdir}"/usr/lib/$_pkgname/ + cp $_pkgname.png \ + "${pkgdir}"/usr/share/pixmaps/$_pkgname.png + cp $_pkgname.desktop \ + "${pkgdir}"/usr/share/applications/$_pkgname.desktop + + cd "${srcdir}" + + # install the launch script + install -Dm 755 discord-launcher.sh "${pkgdir}"/usr/bin/$_pkgname + + # install licenses + install -Dm 644 LICENSE.md "${pkgdir}"/usr/share/licenses/$_pkgname/ + install -Dm 644 OSS-LICENSES.md "${pkgdir}"/usr/share/licenses/$_pkgname/ } - diff --git a/discord-electron/discord.sh b/discord-electron/discord.sh deleted file mode 100644 index 87f5542..0000000 --- a/discord-electron/discord.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -exec @ELECTRON@ /opt/discord-electron/app.asar --disable-dev-mode "$@" From c8eb82637983e85cd0a55f46690b6f9a4217015c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 3 Apr 2023 08:35:46 +0200 Subject: [PATCH 453/971] Initial upload: discord-electron-openasar 0.0.26+795-1 --- discord-electron-openasar/.SRCINFO | 24 +++++++ discord-electron-openasar/PKGBUILD | 108 +++++++++++++++++++++++++++++ 2 files changed, 132 insertions(+) create mode 100644 discord-electron-openasar/.SRCINFO create mode 100644 discord-electron-openasar/PKGBUILD diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO new file mode 100644 index 0000000..f6e1460 --- /dev/null +++ b/discord-electron-openasar/.SRCINFO @@ -0,0 +1,24 @@ +pkgbase = discord-electron-openasar + pkgdesc = Discord packaged with OpenAsar using system provided electron (v21) for increased security and performance + pkgver = 0.0.26+795 + pkgrel = 1 + url = https://discord.com + arch = x86_64 + license = custom + makedepends = git + makedepends = asar + makedepends = nodejs + makedepends = curl + makedepends = python-html2text + depends = electron21 + optdepends = libpulse: Pulseaudio support + optdepends = xdg-utils: Open files + provides = discord + conflicts = discord + options = !strip + source = https://dl.discordapp.net/apps/linux/0.0.26/discord-0.0.26.tar.gz + source = git+https://github.com/goosemod/openasar.git#commit=28e8ed4a6068aea8adf737f57cb5fd15a434f998 + sha512sums = 65477c2c033f30850a699706a6502ff4f4af8838185716d968d641fdab3033555139b04bf91a111a847aca14113e33ba6248d49ba317fd43cbacb099e974117b + sha512sums = SKIP + +pkgname = discord-electron-openasar diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD new file mode 100644 index 0000000..6993849 --- /dev/null +++ b/discord-electron-openasar/PKGBUILD @@ -0,0 +1,108 @@ +# Maintainer: Manuel Hüsers + +# Based off the discord_arch_electron_wayland PKGBUILD from Stick +# Based off the discord_arch_electron PKGBUILD from johnnyapol and huyizheng +# Based off the discord community repo PKGBUILD by Filipe Laíns (FFY00) + +pkgname=discord-electron-openasar +_pkgname=discord +_electron=21 +pkgver=0.0.26+795 +_pkgver=${pkgver%%+*} +pkgrel=1 +pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electron}) for increased security and performance" +arch=('x86_64') +provides=("${_pkgname}") +conflicts=("${_pkgname}") +url='https://discord.com' +license=('custom') +options=('!strip') +depends=("electron${_electron}") +makedepends=('git' 'asar' 'nodejs' 'curl' 'python-html2text') +optdepends=( + 'libpulse: Pulseaudio support' + 'xdg-utils: Open files' +) +source=("https://dl.discordapp.net/apps/linux/${_pkgver}/discord-${_pkgver}.tar.gz" + "git+https://github.com/goosemod/openasar.git#commit=28e8ed4a6068aea8adf737f57cb5fd15a434f998") +sha512sums=('65477c2c033f30850a699706a6502ff4f4af8838185716d968d641fdab3033555139b04bf91a111a847aca14113e33ba6248d49ba317fd43cbacb099e974117b' + 'SKIP') + +#pkgver() { +# cd "${srcdir}/openasar" +# printf "%s+%s" "$_pkgver" "$(git rev-list --count HEAD)" +#} + +prepare() { + # create launcher script + cat >> "${srcdir}"/discord-launcher.sh <> Discord/$_pkgname.desktop + + # create the license files + curl https://discord.com/terms | html2text >"${srcdir}"/LICENSE.md + curl https://discord.com/licenses | html2text >"${srcdir}"/OSS-LICENSES.md +} + +package() { + # create necessary directories + install -d "${pkgdir}"/usr/{lib/$_pkgname,bin} + install -d "${pkgdir}"/usr/share/{pixmaps,applications,licenses/$_pkgname} + + cd "${srcdir}/openasar" + + # pack openasar + sed -i -e "s/nightly/nightly-$(git rev-parse HEAD | cut -c 1-7)/" src/index.js + node scripts/strip.js + asar p src app.asar + + cd "${srcdir}/Discord" + + # copy relevant data + cp -r resources/* "${pkgdir}"/usr/lib/$_pkgname/ + cp $_pkgname.png \ + "${pkgdir}"/usr/share/pixmaps/$_pkgname.png + cp $_pkgname.desktop \ + "${pkgdir}"/usr/share/applications/$_pkgname.desktop + + cd "${srcdir}" + + # copy openasar + install -Dm 644 openasar/app.asar "${pkgdir}"/usr/lib/$_pkgname/ + + # install the launch script + install -Dm 755 discord-launcher.sh "${pkgdir}"/usr/bin/$_pkgname + + # install licenses + install -Dm 644 LICENSE.md "${pkgdir}"/usr/share/licenses/$_pkgname/ + install -Dm 644 OSS-LICENSES.md "${pkgdir}"/usr/share/licenses/$_pkgname/ +} From 872eb64faa003ef00783b89879007ae7ab562691 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 4 Apr 2023 00:58:31 +0200 Subject: [PATCH 454/971] upgpkg: obs-vkcapture 1.3.2-1 upstream release --- obs-vkcapture/.SRCINFO | 7 ++++--- obs-vkcapture/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/obs-vkcapture/.SRCINFO b/obs-vkcapture/.SRCINFO index 880882d..47dd077 100644 --- a/obs-vkcapture/.SRCINFO +++ b/obs-vkcapture/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = obs-vkcapture - pkgver = 1.3.1 + pkgver = 1.3.2 pkgrel = 1 url = https://github.com/nowrep/obs-vkcapture arch = x86_64 @@ -12,9 +12,10 @@ pkgbase = obs-vkcapture makedepends = lib32-libgl depends = vulkan-icd-loader depends = libgl + depends = libegl depends = obs-studio>=27 - source = https://github.com/nowrep/obs-vkcapture/archive/v1.3.1/obs-vkcapture-1.3.1.tar.gz - sha512sums = d143a758c6901a40fae32f876d6b20bfcd0bdf3502e54e455e3e53888208e7901da26926268390bbfb7d92989dbc3874e551f8c8684c18cfbcf4292aaa6cf8f8 + source = https://github.com/nowrep/obs-vkcapture/archive/v1.3.2/obs-vkcapture-1.3.2.tar.gz + sha512sums = ada2f6b2c453dade28a37abac0728096c84aa1522215588d97113eeb047d7af57b56b302016735ec342b7f5841dadf2cad554794647b7f82f9e01cc62e52603d pkgname = obs-vkcapture pkgdesc = OBS Linux Vulkan/OpenGL game capture diff --git a/obs-vkcapture/PKGBUILD b/obs-vkcapture/PKGBUILD index 32868b0..76f9bea 100644 --- a/obs-vkcapture/PKGBUILD +++ b/obs-vkcapture/PKGBUILD @@ -2,15 +2,15 @@ pkgbase=obs-vkcapture pkgname=("$pkgbase" "lib32-$pkgbase") -pkgver=1.3.1 +pkgver=1.3.2 pkgrel=1 url="https://github.com/nowrep/$pkgbase" license=('GPL2') arch=('x86_64') -depends=('vulkan-icd-loader' 'libgl' 'obs-studio>=27') +depends=('vulkan-icd-loader' 'libgl' 'libegl' 'obs-studio>=27') makedepends=('gcc' 'cmake' 'vulkan-headers' 'lib32-gcc-libs' 'lib32-vulkan-icd-loader' 'lib32-libgl') source=("https://github.com/nowrep/$pkgbase/archive/v$pkgver/$pkgbase-$pkgver.tar.gz") -sha512sums=('d143a758c6901a40fae32f876d6b20bfcd0bdf3502e54e455e3e53888208e7901da26926268390bbfb7d92989dbc3874e551f8c8684c18cfbcf4292aaa6cf8f8') +sha512sums=('ada2f6b2c453dade28a37abac0728096c84aa1522215588d97113eeb047d7af57b56b302016735ec342b7f5841dadf2cad554794647b7f82f9e01cc62e52603d') build() { cmake -B build -S "$pkgbase-$pkgver" \ From fe947b21ed5fdedf32230ec6839fc1c8dbcd889e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 6 Apr 2023 06:55:37 +0200 Subject: [PATCH 455/971] upgpkg: discord-electron-openasar 0.0.26+800-1 Update to latest OpenAsar commit --- discord-electron-openasar/.SRCINFO | 4 ++-- discord-electron-openasar/PKGBUILD | 13 +++++++------ 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index f6e1460..2ac2632 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v21) for increased security and performance - pkgver = 0.0.26+795 + pkgver = 0.0.26+800 pkgrel = 1 url = https://discord.com arch = x86_64 @@ -17,7 +17,7 @@ pkgbase = discord-electron-openasar conflicts = discord options = !strip source = https://dl.discordapp.net/apps/linux/0.0.26/discord-0.0.26.tar.gz - source = git+https://github.com/goosemod/openasar.git#commit=28e8ed4a6068aea8adf737f57cb5fd15a434f998 + source = git+https://github.com/goosemod/openasar.git#commit=6705ee9933c48e494ac0350936015796e6d61acc sha512sums = 65477c2c033f30850a699706a6502ff4f4af8838185716d968d641fdab3033555139b04bf91a111a847aca14113e33ba6248d49ba317fd43cbacb099e974117b sha512sums = SKIP diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 6993849..c9a18a3 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -7,7 +7,7 @@ pkgname=discord-electron-openasar _pkgname=discord _electron=21 -pkgver=0.0.26+795 +pkgver=0.0.26+800 _pkgver=${pkgver%%+*} pkgrel=1 pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electron}) for increased security and performance" @@ -24,14 +24,15 @@ optdepends=( 'xdg-utils: Open files' ) source=("https://dl.discordapp.net/apps/linux/${_pkgver}/discord-${_pkgver}.tar.gz" - "git+https://github.com/goosemod/openasar.git#commit=28e8ed4a6068aea8adf737f57cb5fd15a434f998") + "git+https://github.com/goosemod/openasar.git#commit=6705ee9933c48e494ac0350936015796e6d61acc") sha512sums=('65477c2c033f30850a699706a6502ff4f4af8838185716d968d641fdab3033555139b04bf91a111a847aca14113e33ba6248d49ba317fd43cbacb099e974117b' 'SKIP') -#pkgver() { -# cd "${srcdir}/openasar" -# printf "%s+%s" "$_pkgver" "$(git rev-list --count HEAD)" -#} +# just in case I get the version wrong +pkgver() { + cd "${srcdir}/openasar" + printf "%s+%s" "$_pkgver" "$(git rev-list --count HEAD)" +} prepare() { # create launcher script From 1acdf5088065d36bb8c2b4f56d07f3cef6ff10cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 16 Apr 2023 22:22:04 +0200 Subject: [PATCH 456/971] upgpkg: clonezilla-unstable 5.4.6-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 409570a..ddffc90 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.4.5 + pkgver = 5.4.6 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.5.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.6.tar.xz source = usrbin.patch - sha256sums = 963ae87803abdbb16372d1172f3685f98fa36cbbf0df65ddfd1ad8fd4c2295eb + sha256sums = ca9671f89ef72b4651e6b395ca0eff0993e6e14c9ee81649f25f06e5589947ca sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 66bb379..fb57bbb 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.4.5 +pkgver=5.4.6 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('963ae87803abdbb16372d1172f3685f98fa36cbbf0df65ddfd1ad8fd4c2295eb' +sha256sums=('ca9671f89ef72b4651e6b395ca0eff0993e6e14c9ee81649f25f06e5589947ca' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From 33610c183945cd8c8848ed7c939282c75cc842e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 16 Apr 2023 22:22:04 +0200 Subject: [PATCH 457/971] upgpkg: clonezilla-unstable 5.4.6-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 409570a..ddffc90 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.4.5 + pkgver = 5.4.6 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.5.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.6.tar.xz source = usrbin.patch - sha256sums = 963ae87803abdbb16372d1172f3685f98fa36cbbf0df65ddfd1ad8fd4c2295eb + sha256sums = ca9671f89ef72b4651e6b395ca0eff0993e6e14c9ee81649f25f06e5589947ca sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 66bb379..fb57bbb 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.4.5 +pkgver=5.4.6 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('963ae87803abdbb16372d1172f3685f98fa36cbbf0df65ddfd1ad8fd4c2295eb' +sha256sums=('ca9671f89ef72b4651e6b395ca0eff0993e6e14c9ee81649f25f06e5589947ca' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From f4edcadef0c289b984d0c8522aaeea361a457063 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 16 Apr 2023 22:30:44 +0200 Subject: [PATCH 458/971] upgpkg: discord-electron-openasar 0.0.26+803-1 Update to latest OpenAsar commit --- discord-electron-openasar/.SRCINFO | 4 ++-- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 2ac2632..c638937 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v21) for increased security and performance - pkgver = 0.0.26+800 + pkgver = 0.0.26+803 pkgrel = 1 url = https://discord.com arch = x86_64 @@ -17,7 +17,7 @@ pkgbase = discord-electron-openasar conflicts = discord options = !strip source = https://dl.discordapp.net/apps/linux/0.0.26/discord-0.0.26.tar.gz - source = git+https://github.com/goosemod/openasar.git#commit=6705ee9933c48e494ac0350936015796e6d61acc + source = git+https://github.com/goosemod/openasar.git#commit=20b5fa3165ca5c83629075a059a050e83130eb89 sha512sums = 65477c2c033f30850a699706a6502ff4f4af8838185716d968d641fdab3033555139b04bf91a111a847aca14113e33ba6248d49ba317fd43cbacb099e974117b sha512sums = SKIP diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index c9a18a3..cda4b84 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -7,7 +7,7 @@ pkgname=discord-electron-openasar _pkgname=discord _electron=21 -pkgver=0.0.26+800 +pkgver=0.0.26+803 _pkgver=${pkgver%%+*} pkgrel=1 pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electron}) for increased security and performance" @@ -24,7 +24,7 @@ optdepends=( 'xdg-utils: Open files' ) source=("https://dl.discordapp.net/apps/linux/${_pkgver}/discord-${_pkgver}.tar.gz" - "git+https://github.com/goosemod/openasar.git#commit=6705ee9933c48e494ac0350936015796e6d61acc") + "git+https://github.com/goosemod/openasar.git#commit=20b5fa3165ca5c83629075a059a050e83130eb89") sha512sums=('65477c2c033f30850a699706a6502ff4f4af8838185716d968d641fdab3033555139b04bf91a111a847aca14113e33ba6248d49ba317fd43cbacb099e974117b' 'SKIP') From 84b48e8713b9418dfbcc7cccaf009c781d618253 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 17 Apr 2023 22:30:04 +0200 Subject: [PATCH 459/971] upgpkg: discord-electron-openasar 0.0.26+803-2 Update Electron version to v22 --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index c638937..25cb57b 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar - pkgdesc = Discord packaged with OpenAsar using system provided electron (v21) for increased security and performance + pkgdesc = Discord packaged with OpenAsar using system provided electron (v22) for increased security and performance pkgver = 0.0.26+803 - pkgrel = 1 + pkgrel = 2 url = https://discord.com arch = x86_64 license = custom @@ -10,7 +10,7 @@ pkgbase = discord-electron-openasar makedepends = nodejs makedepends = curl makedepends = python-html2text - depends = electron21 + depends = electron22 optdepends = libpulse: Pulseaudio support optdepends = xdg-utils: Open files provides = discord diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index cda4b84..346a5eb 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -6,10 +6,10 @@ pkgname=discord-electron-openasar _pkgname=discord -_electron=21 +_electron=22 pkgver=0.0.26+803 _pkgver=${pkgver%%+*} -pkgrel=1 +pkgrel=2 pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') provides=("${_pkgname}") From 99bf69621cfeec326ac733d468b7a3d9e89550db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 19 Apr 2023 20:59:19 +0200 Subject: [PATCH 460/971] upgpkg: gvisor-bin 20230417.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index 2b0fe78..eeb92a6 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20230306.0 + pkgver = 20230417.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20230306.0::https://storage.googleapis.com/gvisor/releases/release/20230306.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20230306.0::https://storage.googleapis.com/gvisor/releases/release/20230306.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = 48e2bc01c56a33a100c4f7141b9bd46d7d99116c9098265b5d27ab494e6076ed81580bdf5c8efae8c3afe13625d47ef56099259c06bc6fcef6694986da0841f7 - sha512sums_x86_64 = 91aef8fe51301414f09e143de81b0f063fca060a666b18db1b5b931d0b4dfd63a84eea652a29e5a95ecae47249f520de6ae892168a6421be457c9917331a162a - source_aarch64 = runsc-aarch64-20230306.0::https://storage.googleapis.com/gvisor/releases/release/20230306.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20230306.0::https://storage.googleapis.com/gvisor/releases/release/20230306.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = ff4e89cbb36af870679e0549f0d56a4daba074d0ff312155daf316ea55504f80ee568dadf75623fc8d2b95eff59a4bc8375429e5961156af72a68c56e714c00f - sha512sums_aarch64 = cbad3cd0d5921f530a551f95d09d386b574cc45e2c59ce6c85443d8fe47fb5a9f92c329a50801aa24ccb930bc887f32d15d28a0b3a2fb63fce499c9fcfe7bdd8 + source_x86_64 = runsc-x86_64-20230417.0::https://storage.googleapis.com/gvisor/releases/release/20230417.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20230417.0::https://storage.googleapis.com/gvisor/releases/release/20230417.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = 2659be1cabe84ab2d6e8e72f1c94ad268b2214dd03a18ec67b57c39297d1a722c9f4b6ae5f098ef6941b967856fdd37ffcecda1a06405e4bad5307081091fa8a + sha512sums_x86_64 = 40019143a01980cca9d4ebbbef85892aed344567d9b1b302c32cc8f31d380b9abe07b7ca0a3fb4f60ce9950f6d2346db635b3b45f2d2034a48831da0fd0a107d + source_aarch64 = runsc-aarch64-20230417.0::https://storage.googleapis.com/gvisor/releases/release/20230417.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20230417.0::https://storage.googleapis.com/gvisor/releases/release/20230417.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 371ffc60854e0177980268e6140a6ce621ee665e8400e369a1bd558f1fc4963c30a58a9c467ec3ba6b424f57aa76bba5ed598762813a394a032ac84d950ce359 + sha512sums_aarch64 = 1829a9bfd6c90e6343c506625eeed9f54c2144472d3f64f4ecd9ab3c24d5087505d3ca36aa20d75c1c4c9ddf247641e5646bc08df518b1b5dd221068c29e5463 pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index 68626e1..d3a1381 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20230306.0 +pkgver=20230417.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('48e2bc01c56a33a100c4f7141b9bd46d7d99116c9098265b5d27ab494e6076ed81580bdf5c8efae8c3afe13625d47ef56099259c06bc6fcef6694986da0841f7' - '91aef8fe51301414f09e143de81b0f063fca060a666b18db1b5b931d0b4dfd63a84eea652a29e5a95ecae47249f520de6ae892168a6421be457c9917331a162a') -sha512sums_aarch64=('ff4e89cbb36af870679e0549f0d56a4daba074d0ff312155daf316ea55504f80ee568dadf75623fc8d2b95eff59a4bc8375429e5961156af72a68c56e714c00f' - 'cbad3cd0d5921f530a551f95d09d386b574cc45e2c59ce6c85443d8fe47fb5a9f92c329a50801aa24ccb930bc887f32d15d28a0b3a2fb63fce499c9fcfe7bdd8') +sha512sums_x86_64=('2659be1cabe84ab2d6e8e72f1c94ad268b2214dd03a18ec67b57c39297d1a722c9f4b6ae5f098ef6941b967856fdd37ffcecda1a06405e4bad5307081091fa8a' + '40019143a01980cca9d4ebbbef85892aed344567d9b1b302c32cc8f31d380b9abe07b7ca0a3fb4f60ce9950f6d2346db635b3b45f2d2034a48831da0fd0a107d') +sha512sums_aarch64=('371ffc60854e0177980268e6140a6ce621ee665e8400e369a1bd558f1fc4963c30a58a9c467ec3ba6b424f57aa76bba5ed598762813a394a032ac84d950ce359' + '1829a9bfd6c90e6343c506625eeed9f54c2144472d3f64f4ecd9ab3c24d5087505d3ca36aa20d75c1c4c9ddf247641e5646bc08df518b1b5dd221068c29e5463') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From 0df4b7ff3a305feee3b59fc14db4f38d52b7bcf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 19 Apr 2023 21:00:09 +0200 Subject: [PATCH 461/971] upgpkg: gvisor-git 20230417.0-1 --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index 4fd534d..dd356ea 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20230306.0 + pkgver = 20230417.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index 2b8d8ec..179d061 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20230306.0 +pkgver=20230417.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From 17b3fe7b1f5eb9ebf364bc786e28133971dd3d38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 19 Apr 2023 22:50:00 +0200 Subject: [PATCH 462/971] upgpkg: ntfs2btrfs-git 20220812.r10.gb8ae0f8-1 * PKGBUILD refactor to be same as non-git package * new versioning scheme --- ntfs2btrfs-git/.SRCINFO | 21 +++++++++++------ ntfs2btrfs-git/.gitignore | 4 ---- ntfs2btrfs-git/PKGBUILD | 49 ++++++++++++++++++++------------------- 3 files changed, 39 insertions(+), 35 deletions(-) delete mode 100644 ntfs2btrfs-git/.gitignore diff --git a/ntfs2btrfs-git/.SRCINFO b/ntfs2btrfs-git/.SRCINFO index f9a12f9..fd085fc 100644 --- a/ntfs2btrfs-git/.SRCINFO +++ b/ntfs2btrfs-git/.SRCINFO @@ -1,13 +1,20 @@ pkgbase = ntfs2btrfs-git - pkgdesc = Convertion from ntfs to btrfs keeping NT metadata - pkgver = r220.7664363 + pkgdesc = In-place conversion of Microsoft's NTFS filesystem to the open-source filesystem Btrfs + pkgver = 20220812.r10.gb8ae0f8 pkgrel = 1 - arch = any - license = GPL + url = https://github.com/maharmstone/ntfs2btrfs + arch = x86_64 + license = GPL2 + makedepends = git makedepends = cmake - makedepends = gcc + makedepends = pkgconf depends = fmt - source = git+https://github.com/maharmstone/ntfs2btrfs - md5sums = SKIP + depends = zlib + depends = lzo + depends = zstd + provides = ntfs2btrfs + conflicts = ntfs2btrfs + source = git+https://github.com/maharmstone/ntfs2btrfs.git + sha256sums = SKIP pkgname = ntfs2btrfs-git diff --git a/ntfs2btrfs-git/.gitignore b/ntfs2btrfs-git/.gitignore deleted file mode 100644 index 17864e6..0000000 --- a/ntfs2btrfs-git/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -ntfs2btrfs/ -pkg/ -src/ -*pkg.tar* diff --git a/ntfs2btrfs-git/PKGBUILD b/ntfs2btrfs-git/PKGBUILD index 9ccf8ba..9ef8d3d 100644 --- a/ntfs2btrfs-git/PKGBUILD +++ b/ntfs2btrfs-git/PKGBUILD @@ -1,34 +1,35 @@ -# Maintainer: N Fytilis -_pkgbase=ntfs2btrfs -pkgname=$_pkgbase-git -pkgbase=$_pkgbase-git -pkgver=r220.7664363 +# Maintainer: Manuel Hüsers +# Contributor: N Fytilis + +pkgname=ntfs2btrfs-git +pkgver=20220812.r10.gb8ae0f8 pkgrel=1 -epoch= -pkgdesc="Convertion from ntfs to btrfs keeping NT metadata" -arch=(any) -url="" -license=('GPL') -depends=(fmt) -makedepends=(cmake gcc) -source=("git+https://github.com/maharmstone/ntfs2btrfs") -md5sums=(SKIP) +pkgdesc="In-place conversion of Microsoft's NTFS filesystem to the open-source filesystem Btrfs" +arch=('x86_64') +url="https://github.com/maharmstone/${pkgname%-git}" +license=('GPL2') +depends=('fmt' 'zlib' 'lzo' 'zstd') +makedepends=('git' 'cmake' 'pkgconf') +provides=("${pkgname%-git}") +conflicts=("${pkgname%-git}") +source=("git+${url}.git") +sha256sums=('SKIP') pkgver() { - cd "$_pkgbase" - printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" + cd "${pkgname%-git}" + git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/release-//g;s/-/./g' } build() { - cd "$_pkgbase" - mkdir b || true - cd b - cmake -DCMAKE_INSTALL_PREFIX='/usr' .. - make + cmake -B build -S "${pkgname%-git}" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_SBINDIR=bin \ + -DCMAKE_BUILD_TYPE=Release \ + -DBUILD_TESTING=OFF + + cmake --build build } package() { - cd "$_pkgbase/b" - make DESTDIR="$pkgdir/" install - mv $pkgdir/usr/sbin $pkgdir/usr/bin + DESTDIR="$pkgdir" cmake --install build } From b903e811245e3b0c7dc89e201b3660f3a4a30ba9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 29 Apr 2023 14:52:00 +0200 Subject: [PATCH 463/971] upgpkg: clonezilla-unstable 5.4.6-2 Fix silently changed checksum --- clonezilla-unstable/.SRCINFO | 4 ++-- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index ddffc90..9e93121 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program pkgver = 5.4.6 - pkgrel = 1 + pkgrel = 2 url = https://clonezilla.org arch = any license = GPL2 @@ -31,7 +31,7 @@ pkgbase = clonezilla-unstable backup = etc/drbl/drbl-ocs.conf source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.6.tar.xz source = usrbin.patch - sha256sums = ca9671f89ef72b4651e6b395ca0eff0993e6e14c9ee81649f25f06e5589947ca + sha256sums = 93b8f584a97828603c752b1c05ce93dbed4c3d41a0e29213754cccbd6ee1e13c sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index fb57bbb..79c9ddb 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -3,7 +3,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla pkgver=5.4.6 -pkgrel=1 +pkgrel=2 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') url="https://clonezilla.org" @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('ca9671f89ef72b4651e6b395ca0eff0993e6e14c9ee81649f25f06e5589947ca' +sha256sums=('93b8f584a97828603c752b1c05ce93dbed4c3d41a0e29213754cccbd6ee1e13c' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From 527874abd5618e32a48e08f864af28717547d2df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 29 Apr 2023 14:52:00 +0200 Subject: [PATCH 464/971] upgpkg: clonezilla-unstable 5.4.6-2 Fix silently changed checksum --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index ddffc90..9e93121 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program pkgver = 5.4.6 - pkgrel = 1 + pkgrel = 2 url = https://clonezilla.org arch = any license = GPL2 @@ -31,7 +31,7 @@ pkgbase = clonezilla-unstable backup = etc/drbl/drbl-ocs.conf source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.6.tar.xz source = usrbin.patch - sha256sums = ca9671f89ef72b4651e6b395ca0eff0993e6e14c9ee81649f25f06e5589947ca + sha256sums = 93b8f584a97828603c752b1c05ce93dbed4c3d41a0e29213754cccbd6ee1e13c sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index fb57bbb..79c9ddb 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla pkgver=5.4.6 -pkgrel=1 +pkgrel=2 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') url="https://clonezilla.org" @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('ca9671f89ef72b4651e6b395ca0eff0993e6e14c9ee81649f25f06e5589947ca' +sha256sums=('93b8f584a97828603c752b1c05ce93dbed4c3d41a0e29213754cccbd6ee1e13c' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From a0d23ad7ef6274c081cdefae7d191be0dff562e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 29 Apr 2023 14:53:06 +0200 Subject: [PATCH 465/971] upgpkg: discord-electron 0.0.27-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 3eb5b1c..9e5707f 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v22) for increased security and performance - pkgver = 0.0.26 + pkgver = 0.0.27 pkgrel = 1 url = https://discord.com arch = x86_64 @@ -14,7 +14,7 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.26/discord-0.0.26.tar.gz - sha512sums = 65477c2c033f30850a699706a6502ff4f4af8838185716d968d641fdab3033555139b04bf91a111a847aca14113e33ba6248d49ba317fd43cbacb099e974117b + source = https://dl.discordapp.net/apps/linux/0.0.27/discord-0.0.27.tar.gz + sha512sums = 285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 3e5f331..4dd62cd 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -12,7 +12,7 @@ pkgname=discord-electron _pkgname=discord _electron=22 -pkgver=0.0.26 +pkgver=0.0.27 pkgrel=1 pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') @@ -28,7 +28,7 @@ optdepends=( 'xdg-utils: Open files' ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/discord-${pkgver}.tar.gz") -sha512sums=('65477c2c033f30850a699706a6502ff4f4af8838185716d968d641fdab3033555139b04bf91a111a847aca14113e33ba6248d49ba317fd43cbacb099e974117b') +sha512sums=('285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f') prepare() { # create launcher script From 536699a8b26b51cde392404e2826ea53a8123a9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 29 Apr 2023 14:53:17 +0200 Subject: [PATCH 466/971] upgpkg: discord-electron-openasar 0.0.27+808-1 upstream release Update to latest OpenAsar commit --- discord-electron-openasar/.SRCINFO | 10 +++++----- discord-electron-openasar/PKGBUILD | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 25cb57b..98e27e9 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v22) for increased security and performance - pkgver = 0.0.26+803 - pkgrel = 2 + pkgver = 0.0.27+808 + pkgrel = 1 url = https://discord.com arch = x86_64 license = custom @@ -16,9 +16,9 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.26/discord-0.0.26.tar.gz - source = git+https://github.com/goosemod/openasar.git#commit=20b5fa3165ca5c83629075a059a050e83130eb89 - sha512sums = 65477c2c033f30850a699706a6502ff4f4af8838185716d968d641fdab3033555139b04bf91a111a847aca14113e33ba6248d49ba317fd43cbacb099e974117b + source = https://dl.discordapp.net/apps/linux/0.0.27/discord-0.0.27.tar.gz + source = git+https://github.com/goosemod/openasar.git#commit=99cd4f53bf910f5f6ce5234905126f261a35fefa + sha512sums = 285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f sha512sums = SKIP pkgname = discord-electron-openasar diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 346a5eb..a62e6b7 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -7,9 +7,9 @@ pkgname=discord-electron-openasar _pkgname=discord _electron=22 -pkgver=0.0.26+803 +pkgver=0.0.27+808 _pkgver=${pkgver%%+*} -pkgrel=2 +pkgrel=1 pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') provides=("${_pkgname}") @@ -24,8 +24,8 @@ optdepends=( 'xdg-utils: Open files' ) source=("https://dl.discordapp.net/apps/linux/${_pkgver}/discord-${_pkgver}.tar.gz" - "git+https://github.com/goosemod/openasar.git#commit=20b5fa3165ca5c83629075a059a050e83130eb89") -sha512sums=('65477c2c033f30850a699706a6502ff4f4af8838185716d968d641fdab3033555139b04bf91a111a847aca14113e33ba6248d49ba317fd43cbacb099e974117b' + "git+https://github.com/goosemod/openasar.git#commit=99cd4f53bf910f5f6ce5234905126f261a35fefa") +sha512sums=('285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f' 'SKIP') # just in case I get the version wrong From 4024da54f42a06c792b3f76e044b6392e4b250bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 1 May 2023 23:23:32 +0200 Subject: [PATCH 467/971] upgpkg: ntfs2btrfs 20230501-1 upstream release --- ntfs2btrfs/.SRCINFO | 6 +++--- ntfs2btrfs/PKGBUILD | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ntfs2btrfs/.SRCINFO b/ntfs2btrfs/.SRCINFO index 6e77385..0b26e50 100644 --- a/ntfs2btrfs/.SRCINFO +++ b/ntfs2btrfs/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = ntfs2btrfs pkgdesc = In-place conversion of Microsoft's NTFS filesystem to the open-source filesystem Btrfs - pkgver = 20220812 + pkgver = 20230501 pkgrel = 1 url = https://github.com/maharmstone/ntfs2btrfs arch = x86_64 @@ -11,7 +11,7 @@ pkgbase = ntfs2btrfs depends = zlib depends = lzo depends = zstd - source = https://github.com/maharmstone/ntfs2btrfs/archive/20220812/ntfs2btrfs-20220812.tar.gz - sha256sums = 9ce07535e6191ab45f204a4dd281be4768d7917df4426ee7c71aa9c308a2fe93 + source = https://github.com/maharmstone/ntfs2btrfs/archive/20230501/ntfs2btrfs-20230501.tar.gz + sha256sums = 15924a22e9d80e4ca28bf5524708dd8f69d840df1e781a659ce953fee7d90730 pkgname = ntfs2btrfs diff --git a/ntfs2btrfs/PKGBUILD b/ntfs2btrfs/PKGBUILD index 09b6374..20c17b0 100644 --- a/ntfs2btrfs/PKGBUILD +++ b/ntfs2btrfs/PKGBUILD @@ -1,16 +1,16 @@ # Maintainer: Manuel Hüsers pkgname=ntfs2btrfs -pkgver=20220812 +pkgver=20230501 pkgrel=1 pkgdesc="In-place conversion of Microsoft's NTFS filesystem to the open-source filesystem Btrfs" arch=('x86_64') -url='https://github.com/maharmstone/ntfs2btrfs' +url="https://github.com/maharmstone/$pkgname" license=('GPL2') depends=('fmt' 'zlib' 'lzo' 'zstd') makedepends=('cmake' 'pkgconf') -source=("https://github.com/maharmstone/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz") -sha256sums=('9ce07535e6191ab45f204a4dd281be4768d7917df4426ee7c71aa9c308a2fe93') +source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz") +sha256sums=('15924a22e9d80e4ca28bf5524708dd8f69d840df1e781a659ce953fee7d90730') build() { cmake -B build -S "$pkgname-$pkgver" \ From d85101e522cf58cf1cad2bcb45fc8e1cb3391ad1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 1 May 2023 23:23:46 +0200 Subject: [PATCH 468/971] upgpkg: ntfs2btrfs-git 20230501.r0.ga8fd1a2-1 upstream release --- ntfs2btrfs-git/.SRCINFO | 2 +- ntfs2btrfs-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ntfs2btrfs-git/.SRCINFO b/ntfs2btrfs-git/.SRCINFO index fd085fc..1bfeed6 100644 --- a/ntfs2btrfs-git/.SRCINFO +++ b/ntfs2btrfs-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = ntfs2btrfs-git pkgdesc = In-place conversion of Microsoft's NTFS filesystem to the open-source filesystem Btrfs - pkgver = 20220812.r10.gb8ae0f8 + pkgver = 20230501.r0.ga8fd1a2 pkgrel = 1 url = https://github.com/maharmstone/ntfs2btrfs arch = x86_64 diff --git a/ntfs2btrfs-git/PKGBUILD b/ntfs2btrfs-git/PKGBUILD index 9ef8d3d..e37a8a2 100644 --- a/ntfs2btrfs-git/PKGBUILD +++ b/ntfs2btrfs-git/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: N Fytilis pkgname=ntfs2btrfs-git -pkgver=20220812.r10.gb8ae0f8 +pkgver=20230501.r0.ga8fd1a2 pkgrel=1 pkgdesc="In-place conversion of Microsoft's NTFS filesystem to the open-source filesystem Btrfs" arch=('x86_64') From d914671e59f33322b17ec08f033f395c38b6b518 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 3 May 2023 18:57:19 +0200 Subject: [PATCH 469/971] upgpkg: gvisor-bin 20230501.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index eeb92a6..e3d6cb7 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20230417.0 + pkgver = 20230501.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20230417.0::https://storage.googleapis.com/gvisor/releases/release/20230417.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20230417.0::https://storage.googleapis.com/gvisor/releases/release/20230417.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = 2659be1cabe84ab2d6e8e72f1c94ad268b2214dd03a18ec67b57c39297d1a722c9f4b6ae5f098ef6941b967856fdd37ffcecda1a06405e4bad5307081091fa8a - sha512sums_x86_64 = 40019143a01980cca9d4ebbbef85892aed344567d9b1b302c32cc8f31d380b9abe07b7ca0a3fb4f60ce9950f6d2346db635b3b45f2d2034a48831da0fd0a107d - source_aarch64 = runsc-aarch64-20230417.0::https://storage.googleapis.com/gvisor/releases/release/20230417.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20230417.0::https://storage.googleapis.com/gvisor/releases/release/20230417.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 371ffc60854e0177980268e6140a6ce621ee665e8400e369a1bd558f1fc4963c30a58a9c467ec3ba6b424f57aa76bba5ed598762813a394a032ac84d950ce359 - sha512sums_aarch64 = 1829a9bfd6c90e6343c506625eeed9f54c2144472d3f64f4ecd9ab3c24d5087505d3ca36aa20d75c1c4c9ddf247641e5646bc08df518b1b5dd221068c29e5463 + source_x86_64 = runsc-x86_64-20230501.0::https://storage.googleapis.com/gvisor/releases/release/20230501.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20230501.0::https://storage.googleapis.com/gvisor/releases/release/20230501.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = a4f745195a5040d33a1b2583bb455fbb417e4ad08a117b88db630e2158ffb067cf6de83d2481d0126b39f73ba77a440373500075860ce33c44dc1bb396f873e0 + sha512sums_x86_64 = 036b102b62fd8e932b2e7da9919597d4b541ec62cd691d57241658ed156aa62743c1ab648903d317d74a22dbb5d2a922f8d067e86af2cb436ce5eb55c7cf4f93 + source_aarch64 = runsc-aarch64-20230501.0::https://storage.googleapis.com/gvisor/releases/release/20230501.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20230501.0::https://storage.googleapis.com/gvisor/releases/release/20230501.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 18bac7c31934d705b226ca2a897f32247dbaacd51652c3b7d6a07bbcb4b18be61ff6253abe873325ed974ae7c254c689eeedaf26fff400f21391778f06b36290 + sha512sums_aarch64 = c051ce23a0dffbd520ae3f85da918cb120fd36cb33e6043a99f7f6ac942eea471b8d3b68a6688a9c7e23a0c6692565dcce2746aa0eca5cd5b486a14a6caa4824 pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index d3a1381..b571004 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20230417.0 +pkgver=20230501.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('2659be1cabe84ab2d6e8e72f1c94ad268b2214dd03a18ec67b57c39297d1a722c9f4b6ae5f098ef6941b967856fdd37ffcecda1a06405e4bad5307081091fa8a' - '40019143a01980cca9d4ebbbef85892aed344567d9b1b302c32cc8f31d380b9abe07b7ca0a3fb4f60ce9950f6d2346db635b3b45f2d2034a48831da0fd0a107d') -sha512sums_aarch64=('371ffc60854e0177980268e6140a6ce621ee665e8400e369a1bd558f1fc4963c30a58a9c467ec3ba6b424f57aa76bba5ed598762813a394a032ac84d950ce359' - '1829a9bfd6c90e6343c506625eeed9f54c2144472d3f64f4ecd9ab3c24d5087505d3ca36aa20d75c1c4c9ddf247641e5646bc08df518b1b5dd221068c29e5463') +sha512sums_x86_64=('a4f745195a5040d33a1b2583bb455fbb417e4ad08a117b88db630e2158ffb067cf6de83d2481d0126b39f73ba77a440373500075860ce33c44dc1bb396f873e0' + '036b102b62fd8e932b2e7da9919597d4b541ec62cd691d57241658ed156aa62743c1ab648903d317d74a22dbb5d2a922f8d067e86af2cb436ce5eb55c7cf4f93') +sha512sums_aarch64=('18bac7c31934d705b226ca2a897f32247dbaacd51652c3b7d6a07bbcb4b18be61ff6253abe873325ed974ae7c254c689eeedaf26fff400f21391778f06b36290' + 'c051ce23a0dffbd520ae3f85da918cb120fd36cb33e6043a99f7f6ac942eea471b8d3b68a6688a9c7e23a0c6692565dcce2746aa0eca5cd5b486a14a6caa4824') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From bdd26e0f5109ca36a9758e9379797ca8f2902ed6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 3 May 2023 18:57:50 +0200 Subject: [PATCH 470/971] upgpkg: gvisor-git 20230501.0-1 --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index dd356ea..c4dcb6b 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20230417.0 + pkgver = 20230501.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index 179d061..95aa68c 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20230417.0 +pkgver=20230501.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From e6d67b0e5214c4b602a5991110eec15b48d56867 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 4 May 2023 20:58:19 +0200 Subject: [PATCH 471/971] upgpkg: sublime-text-dev 4.4149-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 07b5d38..34041a8 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4148 + pkgver = 4.4149 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -11,9 +11,9 @@ pkgbase = sublime-text-dev depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4148_x64.tar.xz - sha256sums_x86_64 = cbb09509e4d67d58c4f790d649daae2cc47d6efa5ba76ac709f3a3eb713e595f - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4148_arm64.tar.xz - sha256sums_aarch64 = 8ec5827077891a37dfa88395d830c7f051d37a5e9cb3cd0b2073c162f00a2629 + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4149_x64.tar.xz + sha256sums_x86_64 = 85e3f7ed405436e95af1157cdad497c0a018c22d8336e6c70120f615c2d1923b + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4149_arm64.tar.xz + sha256sums_aarch64 = bb529423eb2dffe4fdb4d561faef7ee59490223dba6325c6b5046b8c1fa968e4 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index e6b6ff8..047f8ca 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4148 +pkgver=4.4149 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -17,8 +17,8 @@ install=${pkgname}.install source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha256sums_x86_64=('cbb09509e4d67d58c4f790d649daae2cc47d6efa5ba76ac709f3a3eb713e595f') -sha256sums_aarch64=('8ec5827077891a37dfa88395d830c7f051d37a5e9cb3cd0b2073c162f00a2629') +sha256sums_x86_64=('85e3f7ed405436e95af1157cdad497c0a018c22d8336e6c70120f615c2d1923b') +sha256sums_aarch64=('bb529423eb2dffe4fdb4d561faef7ee59490223dba6325c6b5046b8c1fa968e4') package() { cd "${srcdir}" From 48932538f540c1286aad12b4ea9b0d1815709a55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 5 May 2023 17:24:45 +0200 Subject: [PATCH 472/971] upgpkg: tuned 2.20.0-2 Trigger rebuild for Python 3.11 --- tuned/.SRCINFO | 2 +- tuned/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tuned/.SRCINFO b/tuned/.SRCINFO index d104877..342ae5b 100644 --- a/tuned/.SRCINFO +++ b/tuned/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system pkgver = 2.20.0 - pkgrel = 1 + pkgrel = 2 url = https://github.com/redhat-performance/tuned install = tuned.install arch = any diff --git a/tuned/PKGBUILD b/tuned/PKGBUILD index 95acc7d..3f93ada 100644 --- a/tuned/PKGBUILD +++ b/tuned/PKGBUILD @@ -5,7 +5,7 @@ pkgname=tuned pkgver=2.20.0 -pkgrel=1 +pkgrel=2 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url="https://github.com/redhat-performance/${pkgname}" From 3617e4debb03dab4c2d739f46f719f2d862925df Mon Sep 17 00:00:00 2001 From: Manuel Date: Sat, 13 May 2023 23:05:52 +0200 Subject: [PATCH 473/971] upgpkg: clonezilla-unstable 5.4.7-1 upstream release --- clonezilla-unstable/.SRCINFO | 8 ++++---- clonezilla-unstable/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 9e93121..02e13da 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.4.6 - pkgrel = 2 + pkgver = 5.4.7 + pkgrel = 1 url = https://clonezilla.org arch = any license = GPL2 @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.6.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.7.tar.xz source = usrbin.patch - sha256sums = 93b8f584a97828603c752b1c05ce93dbed4c3d41a0e29213754cccbd6ee1e13c + sha256sums = dd337f5711746d8e563aa5e9a34557bb66084a04df6355d566a996c545f2d3a6 sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 79c9ddb..9f8155a 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,8 +2,8 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.4.6 -pkgrel=2 +pkgver=5.4.7 +pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') url="https://clonezilla.org" @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('93b8f584a97828603c752b1c05ce93dbed4c3d41a0e29213754cccbd6ee1e13c' +sha256sums=('dd337f5711746d8e563aa5e9a34557bb66084a04df6355d566a996c545f2d3a6' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From 905b0de9981bac4d170b34c6d877633bb7c6a067 Mon Sep 17 00:00:00 2001 From: Manuel Date: Sat, 13 May 2023 23:05:52 +0200 Subject: [PATCH 474/971] upgpkg: clonezilla-unstable 5.4.7-1 upstream release --- .SRCINFO | 8 ++++---- PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 9e93121..02e13da 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.4.6 - pkgrel = 2 + pkgver = 5.4.7 + pkgrel = 1 url = https://clonezilla.org arch = any license = GPL2 @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.6.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.7.tar.xz source = usrbin.patch - sha256sums = 93b8f584a97828603c752b1c05ce93dbed4c3d41a0e29213754cccbd6ee1e13c + sha256sums = dd337f5711746d8e563aa5e9a34557bb66084a04df6355d566a996c545f2d3a6 sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 79c9ddb..9f8155a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,8 +2,8 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.4.6 -pkgrel=2 +pkgver=5.4.7 +pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') url="https://clonezilla.org" @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('93b8f584a97828603c752b1c05ce93dbed4c3d41a0e29213754cccbd6ee1e13c' +sha256sums=('dd337f5711746d8e563aa5e9a34557bb66084a04df6355d566a996c545f2d3a6' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From d24fe992957830d09274c51c855972036f6d194b Mon Sep 17 00:00:00 2001 From: Manuel Date: Sat, 13 May 2023 23:06:23 +0200 Subject: [PATCH 475/971] upgpkg: sublime-text-dev 4.4150-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 34041a8..d335f8c 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4149 + pkgver = 4.4150 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -11,9 +11,9 @@ pkgbase = sublime-text-dev depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4149_x64.tar.xz - sha256sums_x86_64 = 85e3f7ed405436e95af1157cdad497c0a018c22d8336e6c70120f615c2d1923b - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4149_arm64.tar.xz - sha256sums_aarch64 = bb529423eb2dffe4fdb4d561faef7ee59490223dba6325c6b5046b8c1fa968e4 + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4150_x64.tar.xz + sha256sums_x86_64 = e8a69fa783319829fdefc4aa8d263ca804fa61cffb582f14f63564214526507b + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4150_arm64.tar.xz + sha256sums_aarch64 = 74fc5ed912e83094bead5b5c55966930f43981f4c49d6fc835c9f36187851084 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 047f8ca..d9fb44f 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4149 +pkgver=4.4150 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -17,8 +17,8 @@ install=${pkgname}.install source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha256sums_x86_64=('85e3f7ed405436e95af1157cdad497c0a018c22d8336e6c70120f615c2d1923b') -sha256sums_aarch64=('bb529423eb2dffe4fdb4d561faef7ee59490223dba6325c6b5046b8c1fa968e4') +sha256sums_x86_64=('e8a69fa783319829fdefc4aa8d263ca804fa61cffb582f14f63564214526507b') +sha256sums_aarch64=('74fc5ed912e83094bead5b5c55966930f43981f4c49d6fc835c9f36187851084') package() { cd "${srcdir}" From 226d458800b19f6ff1c1df16c6a27c1daa51609c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 18 May 2023 17:58:32 +0200 Subject: [PATCH 476/971] upgpkg: clonezilla-unstable 5.4.8-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 02e13da..51b90c4 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.4.7 + pkgver = 5.4.8 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.7.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.8.tar.xz source = usrbin.patch - sha256sums = dd337f5711746d8e563aa5e9a34557bb66084a04df6355d566a996c545f2d3a6 + sha256sums = 07c71b197a1105ae28f664a58e394ab3acb9223ca884f03d03efca594192bfba sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 9f8155a..67e3e2f 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.4.7 +pkgver=5.4.8 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('dd337f5711746d8e563aa5e9a34557bb66084a04df6355d566a996c545f2d3a6' +sha256sums=('07c71b197a1105ae28f664a58e394ab3acb9223ca884f03d03efca594192bfba' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From 0f4b5311b2dd85582efc05dab1901be14f2dd030 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 18 May 2023 17:58:32 +0200 Subject: [PATCH 477/971] upgpkg: clonezilla-unstable 5.4.8-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 02e13da..51b90c4 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.4.7 + pkgver = 5.4.8 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.7.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.8.tar.xz source = usrbin.patch - sha256sums = dd337f5711746d8e563aa5e9a34557bb66084a04df6355d566a996c545f2d3a6 + sha256sums = 07c71b197a1105ae28f664a58e394ab3acb9223ca884f03d03efca594192bfba sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 9f8155a..67e3e2f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.4.7 +pkgver=5.4.8 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('dd337f5711746d8e563aa5e9a34557bb66084a04df6355d566a996c545f2d3a6' +sha256sums=('07c71b197a1105ae28f664a58e394ab3acb9223ca884f03d03efca594192bfba' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From e7fc2abcddc54fa2bbecf302f27c7e5c603f1dcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 27 May 2023 15:15:15 +0200 Subject: [PATCH 478/971] upgpkg: obs-vkcapture 1.3.3-1 upstream release --- obs-vkcapture/.SRCINFO | 7 ++++--- obs-vkcapture/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/obs-vkcapture/.SRCINFO b/obs-vkcapture/.SRCINFO index 47dd077..ba01688 100644 --- a/obs-vkcapture/.SRCINFO +++ b/obs-vkcapture/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = obs-vkcapture - pkgver = 1.3.2 + pkgver = 1.3.3 pkgrel = 1 url = https://github.com/nowrep/obs-vkcapture arch = x86_64 @@ -14,8 +14,8 @@ pkgbase = obs-vkcapture depends = libgl depends = libegl depends = obs-studio>=27 - source = https://github.com/nowrep/obs-vkcapture/archive/v1.3.2/obs-vkcapture-1.3.2.tar.gz - sha512sums = ada2f6b2c453dade28a37abac0728096c84aa1522215588d97113eeb047d7af57b56b302016735ec342b7f5841dadf2cad554794647b7f82f9e01cc62e52603d + source = https://github.com/nowrep/obs-vkcapture/archive/v1.3.3/obs-vkcapture-1.3.3.tar.gz + sha512sums = d4d234eff53ff9d0e53e6478b378fce8376b22dc4088c1366e194eeb826db5f24f5c3ce26925423e29f4979ef2b0c081ed69d208a8af27810636a2c9538e98e7 pkgname = obs-vkcapture pkgdesc = OBS Linux Vulkan/OpenGL game capture @@ -24,3 +24,4 @@ pkgname = lib32-obs-vkcapture pkgdesc = OBS Linux Vulkan/OpenGL game capture (32-bit) depends = lib32-vulkan-icd-loader depends = lib32-libgl + depends = lib32-libegl diff --git a/obs-vkcapture/PKGBUILD b/obs-vkcapture/PKGBUILD index 76f9bea..468cc34 100644 --- a/obs-vkcapture/PKGBUILD +++ b/obs-vkcapture/PKGBUILD @@ -2,7 +2,7 @@ pkgbase=obs-vkcapture pkgname=("$pkgbase" "lib32-$pkgbase") -pkgver=1.3.2 +pkgver=1.3.3 pkgrel=1 url="https://github.com/nowrep/$pkgbase" license=('GPL2') @@ -10,7 +10,7 @@ arch=('x86_64') depends=('vulkan-icd-loader' 'libgl' 'libegl' 'obs-studio>=27') makedepends=('gcc' 'cmake' 'vulkan-headers' 'lib32-gcc-libs' 'lib32-vulkan-icd-loader' 'lib32-libgl') source=("https://github.com/nowrep/$pkgbase/archive/v$pkgver/$pkgbase-$pkgver.tar.gz") -sha512sums=('ada2f6b2c453dade28a37abac0728096c84aa1522215588d97113eeb047d7af57b56b302016735ec342b7f5841dadf2cad554794647b7f82f9e01cc62e52603d') +sha512sums=('d4d234eff53ff9d0e53e6478b378fce8376b22dc4088c1366e194eeb826db5f24f5c3ce26925423e29f4979ef2b0c081ed69d208a8af27810636a2c9538e98e7') build() { cmake -B build -S "$pkgbase-$pkgver" \ @@ -42,7 +42,7 @@ package_obs-vkcapture() { package_lib32-obs-vkcapture() { pkgdesc='OBS Linux Vulkan/OpenGL game capture (32-bit)' - depends=('lib32-vulkan-icd-loader' 'lib32-libgl') + depends=('lib32-vulkan-icd-loader' 'lib32-libgl' 'lib32-libegl') DESTDIR="$pkgdir" cmake --install build32 rm -r "$pkgdir/usr/bin" From c21344130c8ef20c7a887d2de99d384305aab091 Mon Sep 17 00:00:00 2001 From: Manuel Date: Sat, 27 May 2023 19:58:24 +0200 Subject: [PATCH 479/971] Update chroot setup script and add makepkg.conf --- makepkg.conf | 166 ++++++++++++++++++++++++++++++++++++++++++++++ prepare-chroot.sh | 5 +- 2 files changed, 169 insertions(+), 2 deletions(-) create mode 100644 makepkg.conf diff --git a/makepkg.conf b/makepkg.conf new file mode 100644 index 0000000..28fd9ed --- /dev/null +++ b/makepkg.conf @@ -0,0 +1,166 @@ +#!/hint/bash +# shellcheck disable=2034 + +# +# /etc/makepkg.conf +# + +######################################################################### +# SOURCE ACQUISITION +######################################################################### +# +#-- The download utilities that makepkg should use to acquire sources +# Format: 'protocol::agent' +DLAGENTS=('file::/usr/bin/curl -qgC - -o %o %u' + 'ftp::/usr/bin/curl -qgfC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u' + 'http::/usr/bin/curl -qgb "" -fLC - --retry 3 --retry-delay 3 -o %o %u' + 'https::/usr/bin/curl -qgb "" -fLC - --retry 3 --retry-delay 3 -o %o %u' + 'rsync::/usr/bin/rsync --no-motd -z %u %o' + 'scp::/usr/bin/scp -C %u %o') + +# Other common tools: +# /usr/bin/snarf +# /usr/bin/lftpget -c +# /usr/bin/wget + +#-- The package required by makepkg to download VCS sources +# Format: 'protocol::package' +VCSCLIENTS=('bzr::bzr' + 'fossil::fossil' + 'git::git' + 'hg::mercurial' + 'svn::subversion') + +######################################################################### +# ARCHITECTURE, COMPILE FLAGS +######################################################################### +# +CARCH="x86_64" +CHOST="x86_64-pc-linux-gnu" + +#-- Compiler and Linker Flags +#CPPFLAGS="" +CFLAGS="-march=x86-64-v3 -O3 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -mpclmul" +CXXFLAGS="$CFLAGS -Wp,-D_GLIBCXX_ASSERTIONS" +LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now" +LTOFLAGS="-flto=auto -falign-functions=32" + +RUSTFLAGS="-Copt-level=3 -Ctarget-cpu=x86-64-v3 -Ccodegen-units=1" +#-- Make Flags: change this for DistCC/SMP systems + +MAKEFLAGS="-j $(nproc)" +#-- Debugging flags +DEBUG_CFLAGS="-g" +DEBUG_CXXFLAGS="$DEBUG_CFLAGS" +DEBUG_RUSTFLAGS="-C debuginfo=2" + +######################################################################### +# BUILD ENVIRONMENT +######################################################################### +# +# Makepkg defaults: BUILDENV=(!distcc !color !ccache check !sign) +# A negated environment option will do the opposite of the comments below. +# +#-- distcc: Use the Distributed C/C++/ObjC compiler +#-- color: Colorize output messages +#-- ccache: Use ccache to cache compilation +#-- check: Run the check() function if present in the PKGBUILD +#-- sign: Generate PGP signature file +# +BUILDENV=(!distcc color !ccache check !sign) +# +#-- If using DistCC, your MAKEFLAGS will also need modification. In addition, +#-- specify a space-delimited list of hosts running in the DistCC cluster. +#DISTCC_HOSTS="" +# +#-- Specify a directory for package building. +#BUILDDIR=/tmp/makepkg + +######################################################################### +# GLOBAL PACKAGE OPTIONS +# These are default values for the options=() settings +######################################################################### +# +# Makepkg defaults: OPTIONS=(!strip docs libtool staticlibs emptydirs !zipman !purge !debug !lto) +# A negated option will do the opposite of the comments below. +# +#-- strip: Strip symbols from binaries/libraries +#-- docs: Save doc directories specified by DOC_DIRS +#-- libtool: Leave libtool (.la) files in packages +#-- staticlibs: Leave static library (.a) files in packages +#-- emptydirs: Leave empty directories in packages +#-- zipman: Compress manual (man and info) pages in MAN_DIRS with gzip +#-- purge: Remove files specified by PURGE_TARGETS +#-- debug: Add debugging flags as specified in DEBUG_* variables +#-- lto: Add compile flags for building with link time optimization +# +OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge debug lto) + +#-- File integrity checks to use. Valid: md5, sha1, sha224, sha256, sha384, sha512, b2 +INTEGRITY_CHECK=(sha256) +#-- Options to be used when stripping binaries. See `man strip' for details. +STRIP_BINARIES="--strip-all" +#-- Options to be used when stripping shared libraries. See `man strip' for details. +STRIP_SHARED="--strip-unneeded" +#-- Options to be used when stripping static libraries. See `man strip' for details. +STRIP_STATIC="--strip-debug" +#-- Manual (man and info) directories to compress (if zipman is specified) +MAN_DIRS=({usr{,/local}{,/share},opt/*}/{man,info}) +#-- Doc directories to remove (if !docs is specified) +DOC_DIRS=(usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc}) +#-- Files to be removed from all packages (if purge is specified) +PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod) +#-- Directory to store source code in for debug packages +DBGSRCDIR="/usr/src/debug" + +######################################################################### +# PACKAGE OUTPUT +######################################################################### +# +# Default: put built package and cached source in build directory +# +#-- Destination: specify a fixed directory where all packages will be placed +#PKGDEST=/home/packages +#-- Source cache: specify a fixed directory where source files will be cached +#SRCDEST=/home/sources +#-- Source packages: specify a fixed directory where all src packages will be placed +#SRCPKGDEST=/home/srcpackages +#-- Log files: specify a fixed directory where all log files will be placed +#LOGDEST=/home/makepkglogs +#-- Packager: name/email of the person or organization building packages + +PACKAGER="Manuel Hüsers " +#-- Specify a key to use for package signing +#GPGKEY="" + +######################################################################### +# COMPRESSION DEFAULTS +######################################################################### +# +COMPRESSGZ=(gzip -c -f -n) +COMPRESSBZ2=(bzip2 -c -f) +COMPRESSXZ=(xz -c -z -) +COMPRESSZST=(zstd -c -T0 --ultra -20 -) +COMPRESSLRZ=(lrzip -q) +COMPRESSLZO=(lzop -q) +COMPRESSZ=(compress -c -f) +COMPRESSLZ4=(lz4 -q) +COMPRESSLZ=(lzip -c -f) + +######################################################################### +# EXTENSION DEFAULTS +######################################################################### +# +PKGEXT='.pkg.tar' +SRCEXT='.src.tar' + +######################################################################### +# OTHER +######################################################################### +# +#-- Command used to run pacman as root, instead of trying sudo and su +#PACMAN_AUTH=() +# vim: set ft=sh ts=2 sw=2 et: + +export GOAMD64=v3 +export CARGO_PROFILE_RELEASE_LTO=fat diff --git a/prepare-chroot.sh b/prepare-chroot.sh index e38dc6b..b307ece 100755 --- a/prepare-chroot.sh +++ b/prepare-chroot.sh @@ -4,10 +4,11 @@ sudo -v || exit 1 +[ ! -d "$CHROOT/root" ] && sudo mkarchroot -M "$(dirname "$0")"/makepkg.conf "$CHROOT/root" base-devel + arch-nspawn "$CHROOT/root" pacman -Syu mkdir -p -m 0755 "$CHROOT/$USER" -mountpoint -q "$CHROOT/$USER" -[ $? -gt 0 ] && sudo mount -t tmpfs -o defaults,nodev,mode=0755,uid=$(id -u),gid=$(id -g) tmpfs "$CHROOT/$USER" +[ ! $(mountpoint -q "$CHROOT/$USER") ] && sudo mount -t tmpfs -o defaults,nodev,mode=0755,uid=$(id -u),gid=$(id -g) tmpfs "$CHROOT/$USER" exit 0 From b09bd231d5b651f308b8d28aade1fb9f5bd839d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 27 May 2023 20:10:10 +0200 Subject: [PATCH 480/971] upgpkg: discord-electron 0.0.27-2 Update Discord launcher script (Original by Zoddo) Add libxss as dependency to fix Discord corruption warning Add install script to notify user about discord-flags.conf Remove duplicate Path variable in .desktop file Update contributor list --- discord-electron/.SRCINFO | 6 ++- discord-electron/PKGBUILD | 47 ++++++----------------- discord-electron/discord-electron.install | 18 +++++++++ discord-electron/discord-launcher.sh | 28 ++++++++++++++ 4 files changed, 63 insertions(+), 36 deletions(-) create mode 100644 discord-electron/discord-electron.install create mode 100644 discord-electron/discord-launcher.sh diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 9e5707f..9975a49 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,20 +1,24 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v22) for increased security and performance pkgver = 0.0.27 - pkgrel = 1 + pkgrel = 2 url = https://discord.com + install = discord-electron.install arch = x86_64 license = custom makedepends = asar makedepends = curl makedepends = python-html2text depends = electron22 + depends = libxss optdepends = libpulse: Pulseaudio support optdepends = xdg-utils: Open files provides = discord conflicts = discord options = !strip source = https://dl.discordapp.net/apps/linux/0.0.27/discord-0.0.27.tar.gz + source = discord-launcher.sh sha512sums = 285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f + sha512sums = d8c531d23014611b1e9dfa2d268747ba601f647c2cbfc26c15c9eebcec6f9feb454d10c6f603b9938e8da568da3080372b14309e966e0d00c0e1284a14591a83 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 4dd62cd..7ed6943 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,4 +1,6 @@ # Maintainer: Manuel Hüsers +# Contributor: Zoddo +# Contributor: Thaodan # Contributor: Stick # Contributor: johnnyapol # Contributor: huyizheng @@ -6,14 +8,14 @@ # Contributor: Morgan # Based off the discord_arch_electron_wayland PKGBUILD from Stick -# Based off the discord_arch_electron PKGBUILD from johnnyapol and huyizheng +# Based off the discord_arch_electron PKGBUILD from johnnyapol, huyizheng, Thaodan and Zoddo # Based off the discord community repo PKGBUILD by Filipe Laíns (FFY00) pkgname=discord-electron _pkgname=discord _electron=22 pkgver=0.0.27 -pkgrel=1 +pkgrel=2 pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') provides=("${_pkgname}") @@ -21,49 +23,24 @@ conflicts=("${_pkgname}") url='https://discord.com' license=('custom') options=('!strip') -depends=("electron${_electron}") +install="$pkgname.install" +depends=("electron${_electron}" 'libxss') makedepends=('asar' 'curl' 'python-html2text') optdepends=( 'libpulse: Pulseaudio support' 'xdg-utils: Open files' ) -source=("https://dl.discordapp.net/apps/linux/${pkgver}/discord-${pkgver}.tar.gz") -sha512sums=('285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f') +source=("https://dl.discordapp.net/apps/linux/${pkgver}/discord-${pkgver}.tar.gz" + 'discord-launcher.sh') +sha512sums=('285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f' + 'd8c531d23014611b1e9dfa2d268747ba601f647c2cbfc26c15c9eebcec6f9feb454d10c6f603b9938e8da568da3080372b14309e966e0d00c0e1284a14591a83') prepare() { - # create launcher script - cat >> "${srcdir}"/discord-launcher.sh <> Discord/$_pkgname.desktop # create the license files curl https://discord.com/terms | html2text >"${srcdir}"/LICENSE.md diff --git a/discord-electron/discord-electron.install b/discord-electron/discord-electron.install new file mode 100644 index 0000000..3947c77 --- /dev/null +++ b/discord-electron/discord-electron.install @@ -0,0 +1,18 @@ +post_upgrade() { + # return if old package version is greater than or equal to 0.0.27-2... + (( $(vercmp $2 '0.0.27-2') >= 0 )) && return + + cat < You can now add or uncomment additional Electron flags in + '~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set) + +EOF +} + +post_install() { + cat < In case of performance problems consider adding or uncommenting Electron + flags in '~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set) + +EOF +} diff --git a/discord-electron/discord-launcher.sh b/discord-electron/discord-launcher.sh new file mode 100644 index 0000000..398e61d --- /dev/null +++ b/discord-electron/discord-launcher.sh @@ -0,0 +1,28 @@ +#!/usr/bin/env bash + +set -euo pipefail + +flags_file="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@-flags.conf" + +declare -a flags + +if [[ -f "${flags_file}" ]]; then + mapfile -t < "${flags_file}" +else + cat > "${flags_file}" < Date: Sat, 27 May 2023 20:10:31 +0200 Subject: [PATCH 481/971] upgpkg: discord-electron-openasar 0.0.27+809-2 Update to latest OpenAsar commit Update Discord launcher script (Original by Zoddo) Add libxss as dependency to fix Discord corruption warning Add install script to notify user about discord-flags.conf Remove duplicate Path variable in .desktop file Update contributor list --- discord-electron-openasar/.SRCINFO | 10 +++-- discord-electron-openasar/PKGBUILD | 45 +++++-------------- .../discord-electron-openasar.install | 18 ++++++++ discord-electron-openasar/discord-launcher.sh | 28 ++++++++++++ 4 files changed, 63 insertions(+), 38 deletions(-) create mode 100644 discord-electron-openasar/discord-electron-openasar.install create mode 100644 discord-electron-openasar/discord-launcher.sh diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 98e27e9..217ad2f 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,8 +1,9 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v22) for increased security and performance - pkgver = 0.0.27+808 - pkgrel = 1 + pkgver = 0.0.27+809 + pkgrel = 2 url = https://discord.com + install = discord-electron-openasar.install arch = x86_64 license = custom makedepends = git @@ -11,14 +12,17 @@ pkgbase = discord-electron-openasar makedepends = curl makedepends = python-html2text depends = electron22 + depends = libxss optdepends = libpulse: Pulseaudio support optdepends = xdg-utils: Open files provides = discord conflicts = discord options = !strip source = https://dl.discordapp.net/apps/linux/0.0.27/discord-0.0.27.tar.gz - source = git+https://github.com/goosemod/openasar.git#commit=99cd4f53bf910f5f6ce5234905126f261a35fefa + source = discord-launcher.sh + source = git+https://github.com/goosemod/openasar.git#commit=a8b07392808032f95ac3a7c5856e76d2619c91ae sha512sums = 285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f + sha512sums = d8c531d23014611b1e9dfa2d268747ba601f647c2cbfc26c15c9eebcec6f9feb454d10c6f603b9938e8da568da3080372b14309e966e0d00c0e1284a14591a83 sha512sums = SKIP pkgname = discord-electron-openasar diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index a62e6b7..4e7d355 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -1,15 +1,15 @@ # Maintainer: Manuel Hüsers # Based off the discord_arch_electron_wayland PKGBUILD from Stick -# Based off the discord_arch_electron PKGBUILD from johnnyapol and huyizheng +# Based off the discord_arch_electron PKGBUILD from johnnyapol, huyizheng, Thaodan and Zoddo # Based off the discord community repo PKGBUILD by Filipe Laíns (FFY00) pkgname=discord-electron-openasar _pkgname=discord _electron=22 -pkgver=0.0.27+808 +pkgver=0.0.27+809 _pkgver=${pkgver%%+*} -pkgrel=1 +pkgrel=2 pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') provides=("${_pkgname}") @@ -17,15 +17,18 @@ conflicts=("${_pkgname}") url='https://discord.com' license=('custom') options=('!strip') -depends=("electron${_electron}") +install="$pkgname.install" +depends=("electron${_electron}" 'libxss') makedepends=('git' 'asar' 'nodejs' 'curl' 'python-html2text') optdepends=( 'libpulse: Pulseaudio support' 'xdg-utils: Open files' ) source=("https://dl.discordapp.net/apps/linux/${_pkgver}/discord-${_pkgver}.tar.gz" - "git+https://github.com/goosemod/openasar.git#commit=99cd4f53bf910f5f6ce5234905126f261a35fefa") + 'discord-launcher.sh' + "git+https://github.com/goosemod/openasar.git#commit=a8b07392808032f95ac3a7c5856e76d2619c91ae") sha512sums=('285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f' + 'd8c531d23014611b1e9dfa2d268747ba601f647c2cbfc26c15c9eebcec6f9feb454d10c6f603b9938e8da568da3080372b14309e966e0d00c0e1284a14591a83' 'SKIP') # just in case I get the version wrong @@ -35,39 +38,11 @@ pkgver() { } prepare() { - # create launcher script - cat >> "${srcdir}"/discord-launcher.sh <> Discord/$_pkgname.desktop # create the license files curl https://discord.com/terms | html2text >"${srcdir}"/LICENSE.md diff --git a/discord-electron-openasar/discord-electron-openasar.install b/discord-electron-openasar/discord-electron-openasar.install new file mode 100644 index 0000000..11da629 --- /dev/null +++ b/discord-electron-openasar/discord-electron-openasar.install @@ -0,0 +1,18 @@ +post_upgrade() { + # return if old package version is greater than or equal to 0.0.27+809-2... + (( $(vercmp $2 '0.0.27+809-2') >= 0 )) && return + + cat < You can now add or uncomment additional Electron flags in + '~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set) + +EOF +} + +post_install() { + cat < In case of performance problems consider adding or uncommenting Electron + flags in '~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set) + +EOF +} diff --git a/discord-electron-openasar/discord-launcher.sh b/discord-electron-openasar/discord-launcher.sh new file mode 100644 index 0000000..398e61d --- /dev/null +++ b/discord-electron-openasar/discord-launcher.sh @@ -0,0 +1,28 @@ +#!/usr/bin/env bash + +set -euo pipefail + +flags_file="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@-flags.conf" + +declare -a flags + +if [[ -f "${flags_file}" ]]; then + mapfile -t < "${flags_file}" +else + cat > "${flags_file}" < Date: Sat, 27 May 2023 21:55:10 +0200 Subject: [PATCH 482/971] upgpkg: discord-electron 0.0.27-3 Fix whitespace indentation in install file Replace ignore-gpu-blacklist with ignore-gpu-blocklist as the former does not work anymore --- discord-electron/.SRCINFO | 4 ++-- discord-electron/PKGBUILD | 4 ++-- discord-electron/discord-electron.install | 4 ++-- discord-electron/discord-launcher.sh | 3 ++- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 9975a49..09b64df 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v22) for increased security and performance pkgver = 0.0.27 - pkgrel = 2 + pkgrel = 3 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -19,6 +19,6 @@ pkgbase = discord-electron source = https://dl.discordapp.net/apps/linux/0.0.27/discord-0.0.27.tar.gz source = discord-launcher.sh sha512sums = 285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f - sha512sums = d8c531d23014611b1e9dfa2d268747ba601f647c2cbfc26c15c9eebcec6f9feb454d10c6f603b9938e8da568da3080372b14309e966e0d00c0e1284a14591a83 + sha512sums = ad2c16b6fc539f4315755df10c969822a38879558badfbd2ff9bf53558e755a7b215ce7415e35d7f294539a971ebc5c283f9293b79891893d5f28cd441ca6279 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 7ed6943..217c477 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -15,7 +15,7 @@ pkgname=discord-electron _pkgname=discord _electron=22 pkgver=0.0.27 -pkgrel=2 +pkgrel=3 pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') provides=("${_pkgname}") @@ -33,7 +33,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/discord-${pkgver}.tar.gz" 'discord-launcher.sh') sha512sums=('285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f' - 'd8c531d23014611b1e9dfa2d268747ba601f647c2cbfc26c15c9eebcec6f9feb454d10c6f603b9938e8da568da3080372b14309e966e0d00c0e1284a14591a83') + 'ad2c16b6fc539f4315755df10c969822a38879558badfbd2ff9bf53558e755a7b215ce7415e35d7f294539a971ebc5c283f9293b79891893d5f28cd441ca6279') prepare() { # prepare launcher and install script diff --git a/discord-electron/discord-electron.install b/discord-electron/discord-electron.install index 3947c77..797b262 100644 --- a/discord-electron/discord-electron.install +++ b/discord-electron/discord-electron.install @@ -4,7 +4,7 @@ post_upgrade() { cat < You can now add or uncomment additional Electron flags in - '~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set) + '~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set) EOF } @@ -12,7 +12,7 @@ EOF post_install() { cat < In case of performance problems consider adding or uncommenting Electron - flags in '~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set) + flags in '~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set) EOF } diff --git a/discord-electron/discord-launcher.sh b/discord-electron/discord-launcher.sh index 398e61d..492dac7 100644 --- a/discord-electron/discord-launcher.sh +++ b/discord-electron/discord-launcher.sh @@ -7,10 +7,11 @@ flags_file="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@-flags.conf" declare -a flags if [[ -f "${flags_file}" ]]; then + sed -i "s|--ignore-gpu-blacklist|--ignore-gpu-blocklist|" "${flags_file}" mapfile -t < "${flags_file}" else cat > "${flags_file}" < Date: Sat, 27 May 2023 21:55:29 +0200 Subject: [PATCH 483/971] upgpkg: discord-electron-openasar 0.0.27+809-3 Fix whitespace indentation in install file Replace ignore-gpu-blacklist with ignore-gpu-blocklist as the former does not work anymore --- discord-electron-openasar/.SRCINFO | 4 ++-- discord-electron-openasar/PKGBUILD | 4 ++-- discord-electron-openasar/discord-electron-openasar.install | 4 ++-- discord-electron-openasar/discord-launcher.sh | 3 ++- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 217ad2f..2b6c7a0 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v22) for increased security and performance pkgver = 0.0.27+809 - pkgrel = 2 + pkgrel = 3 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -22,7 +22,7 @@ pkgbase = discord-electron-openasar source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=a8b07392808032f95ac3a7c5856e76d2619c91ae sha512sums = 285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f - sha512sums = d8c531d23014611b1e9dfa2d268747ba601f647c2cbfc26c15c9eebcec6f9feb454d10c6f603b9938e8da568da3080372b14309e966e0d00c0e1284a14591a83 + sha512sums = ad2c16b6fc539f4315755df10c969822a38879558badfbd2ff9bf53558e755a7b215ce7415e35d7f294539a971ebc5c283f9293b79891893d5f28cd441ca6279 sha512sums = SKIP pkgname = discord-electron-openasar diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 4e7d355..963517b 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -9,7 +9,7 @@ _pkgname=discord _electron=22 pkgver=0.0.27+809 _pkgver=${pkgver%%+*} -pkgrel=2 +pkgrel=3 pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') provides=("${_pkgname}") @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/discord-${_pkgver}.tar. 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=a8b07392808032f95ac3a7c5856e76d2619c91ae") sha512sums=('285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f' - 'd8c531d23014611b1e9dfa2d268747ba601f647c2cbfc26c15c9eebcec6f9feb454d10c6f603b9938e8da568da3080372b14309e966e0d00c0e1284a14591a83' + 'ad2c16b6fc539f4315755df10c969822a38879558badfbd2ff9bf53558e755a7b215ce7415e35d7f294539a971ebc5c283f9293b79891893d5f28cd441ca6279' 'SKIP') # just in case I get the version wrong diff --git a/discord-electron-openasar/discord-electron-openasar.install b/discord-electron-openasar/discord-electron-openasar.install index 11da629..75e9ce8 100644 --- a/discord-electron-openasar/discord-electron-openasar.install +++ b/discord-electron-openasar/discord-electron-openasar.install @@ -4,7 +4,7 @@ post_upgrade() { cat < You can now add or uncomment additional Electron flags in - '~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set) + '~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set) EOF } @@ -12,7 +12,7 @@ EOF post_install() { cat < In case of performance problems consider adding or uncommenting Electron - flags in '~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set) + flags in '~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set) EOF } diff --git a/discord-electron-openasar/discord-launcher.sh b/discord-electron-openasar/discord-launcher.sh index 398e61d..492dac7 100644 --- a/discord-electron-openasar/discord-launcher.sh +++ b/discord-electron-openasar/discord-launcher.sh @@ -7,10 +7,11 @@ flags_file="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@-flags.conf" declare -a flags if [[ -f "${flags_file}" ]]; then + sed -i "s|--ignore-gpu-blacklist|--ignore-gpu-blocklist|" "${flags_file}" mapfile -t < "${flags_file}" else cat > "${flags_file}" < Date: Sun, 28 May 2023 23:55:25 +0200 Subject: [PATCH 484/971] upgpkg: discord-electron 0.0.27-4 Update launch script to not touch the flags file with sed on no match --- discord-electron/.SRCINFO | 4 ++-- discord-electron/PKGBUILD | 4 ++-- discord-electron/discord-launcher.sh | 3 ++- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 09b64df..734d978 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v22) for increased security and performance pkgver = 0.0.27 - pkgrel = 3 + pkgrel = 4 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -19,6 +19,6 @@ pkgbase = discord-electron source = https://dl.discordapp.net/apps/linux/0.0.27/discord-0.0.27.tar.gz source = discord-launcher.sh sha512sums = 285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f - sha512sums = ad2c16b6fc539f4315755df10c969822a38879558badfbd2ff9bf53558e755a7b215ce7415e35d7f294539a971ebc5c283f9293b79891893d5f28cd441ca6279 + sha512sums = 6337d1f40c9ac97f180862ed0bcf1ec6fb6d4ecf3cb215369550768a4a3600a9546c43f467855a77e95b0f314348a833de40f4284b5b8924d101b4a456b073f5 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 217c477..7cbd556 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -15,7 +15,7 @@ pkgname=discord-electron _pkgname=discord _electron=22 pkgver=0.0.27 -pkgrel=3 +pkgrel=4 pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') provides=("${_pkgname}") @@ -33,7 +33,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/discord-${pkgver}.tar.gz" 'discord-launcher.sh') sha512sums=('285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f' - 'ad2c16b6fc539f4315755df10c969822a38879558badfbd2ff9bf53558e755a7b215ce7415e35d7f294539a971ebc5c283f9293b79891893d5f28cd441ca6279') + '6337d1f40c9ac97f180862ed0bcf1ec6fb6d4ecf3cb215369550768a4a3600a9546c43f467855a77e95b0f314348a833de40f4284b5b8924d101b4a456b073f5') prepare() { # prepare launcher and install script diff --git a/discord-electron/discord-launcher.sh b/discord-electron/discord-launcher.sh index 492dac7..42e6f82 100644 --- a/discord-electron/discord-launcher.sh +++ b/discord-electron/discord-launcher.sh @@ -7,7 +7,8 @@ flags_file="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@-flags.conf" declare -a flags if [[ -f "${flags_file}" ]]; then - sed -i "s|--ignore-gpu-blacklist|--ignore-gpu-blocklist|" "${flags_file}" + grep -q '\--ignore-gpu-blacklist' "${flags_file}" && \ + sed -i "s|--ignore-gpu-blacklist|--ignore-gpu-blocklist|" "${flags_file}" mapfile -t < "${flags_file}" else cat > "${flags_file}" < Date: Sun, 28 May 2023 23:55:52 +0200 Subject: [PATCH 485/971] upgpkg: discord-electron-openasar 0.0.27+809-4 Update launch script to not touch the flags file with sed on no match --- discord-electron-openasar/.SRCINFO | 4 ++-- discord-electron-openasar/PKGBUILD | 4 ++-- discord-electron-openasar/discord-launcher.sh | 3 ++- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 2b6c7a0..86ad9eb 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v22) for increased security and performance pkgver = 0.0.27+809 - pkgrel = 3 + pkgrel = 4 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -22,7 +22,7 @@ pkgbase = discord-electron-openasar source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=a8b07392808032f95ac3a7c5856e76d2619c91ae sha512sums = 285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f - sha512sums = ad2c16b6fc539f4315755df10c969822a38879558badfbd2ff9bf53558e755a7b215ce7415e35d7f294539a971ebc5c283f9293b79891893d5f28cd441ca6279 + sha512sums = 6337d1f40c9ac97f180862ed0bcf1ec6fb6d4ecf3cb215369550768a4a3600a9546c43f467855a77e95b0f314348a833de40f4284b5b8924d101b4a456b073f5 sha512sums = SKIP pkgname = discord-electron-openasar diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 963517b..fc13373 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -9,7 +9,7 @@ _pkgname=discord _electron=22 pkgver=0.0.27+809 _pkgver=${pkgver%%+*} -pkgrel=3 +pkgrel=4 pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') provides=("${_pkgname}") @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/discord-${_pkgver}.tar. 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=a8b07392808032f95ac3a7c5856e76d2619c91ae") sha512sums=('285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f' - 'ad2c16b6fc539f4315755df10c969822a38879558badfbd2ff9bf53558e755a7b215ce7415e35d7f294539a971ebc5c283f9293b79891893d5f28cd441ca6279' + '6337d1f40c9ac97f180862ed0bcf1ec6fb6d4ecf3cb215369550768a4a3600a9546c43f467855a77e95b0f314348a833de40f4284b5b8924d101b4a456b073f5' 'SKIP') # just in case I get the version wrong diff --git a/discord-electron-openasar/discord-launcher.sh b/discord-electron-openasar/discord-launcher.sh index 492dac7..42e6f82 100644 --- a/discord-electron-openasar/discord-launcher.sh +++ b/discord-electron-openasar/discord-launcher.sh @@ -7,7 +7,8 @@ flags_file="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@-flags.conf" declare -a flags if [[ -f "${flags_file}" ]]; then - sed -i "s|--ignore-gpu-blacklist|--ignore-gpu-blocklist|" "${flags_file}" + grep -q '\--ignore-gpu-blacklist' "${flags_file}" && \ + sed -i "s|--ignore-gpu-blacklist|--ignore-gpu-blocklist|" "${flags_file}" mapfile -t < "${flags_file}" else cat > "${flags_file}" < Date: Sun, 28 May 2023 23:58:32 +0200 Subject: [PATCH 486/971] upgpkg: plasma5-wallpapers-wallpaper-engine 0.5.4-4 Include patch to fix build process --- plasma5-wallpapers-wallpaper-engine/.SRCINFO | 4 +++- plasma5-wallpapers-wallpaper-engine/PKGBUILD | 9 +++++--- .../fbda175.patch | 21 +++++++++++++++++++ 3 files changed, 30 insertions(+), 4 deletions(-) create mode 100644 plasma5-wallpapers-wallpaper-engine/fbda175.patch diff --git a/plasma5-wallpapers-wallpaper-engine/.SRCINFO b/plasma5-wallpapers-wallpaper-engine/.SRCINFO index e5871c2..1bd0f29 100644 --- a/plasma5-wallpapers-wallpaper-engine/.SRCINFO +++ b/plasma5-wallpapers-wallpaper-engine/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = plasma5-wallpapers-wallpaper-engine pkgdesc = A KDE wallpaper plugin integrating wallpaper engine pkgver = 0.5.4 - pkgrel = 3 + pkgrel = 4 url = https://github.com/catsout/wallpaper-engine-kde-plugin arch = x86_64 license = GPL2 @@ -18,7 +18,9 @@ pkgbase = plasma5-wallpapers-wallpaper-engine optdepends = mpv: alternative video backend source = https://github.com/catsout/wallpaper-engine-kde-plugin/archive/v0.5.4/wallpaper-engine-kde-plugin-0.5.4.tar.gz source = https://github.com/KhronosGroup/glslang/archive/11.11.0/glslang-11.11.0.tar.gz + source = fbda175.patch sha256sums = 83354734f7ea36e7077206506dd05f0e6877eb51294b820fdbdc398255c6f803 sha256sums = 26c216c3062512c018cbdd752224b8dad703b7e5bb90bf338ba2dbb5d4f11438 + sha256sums = 1a7e937ab126b4d42ac750b6ab997e604963aeed7c8177888cc37a71fafda07e pkgname = plasma5-wallpapers-wallpaper-engine diff --git a/plasma5-wallpapers-wallpaper-engine/PKGBUILD b/plasma5-wallpapers-wallpaper-engine/PKGBUILD index cd4053e..af16066 100644 --- a/plasma5-wallpapers-wallpaper-engine/PKGBUILD +++ b/plasma5-wallpapers-wallpaper-engine/PKGBUILD @@ -4,7 +4,7 @@ pkgname=plasma5-wallpapers-wallpaper-engine _pkgname=wallpaper-engine-kde-plugin pkgver=0.5.4 _pkgver_glslang=11.11.0 -pkgrel=3 +pkgrel=4 pkgdesc='A KDE wallpaper plugin integrating wallpaper engine' arch=('x86_64') url="https://github.com/catsout/${_pkgname}" @@ -14,12 +14,15 @@ makedepends=('extra-cmake-modules' 'qt5-webchannel' 'mpv' 'vulkan-headers') optdepends=('qt5-webchannel: for web support' 'mpv: alternative video backend') source=("https://github.com/catsout/${_pkgname}/archive/v${pkgver}/${_pkgname}-${pkgver}.tar.gz" - "https://github.com/KhronosGroup/glslang/archive/${_pkgver_glslang}/glslang-${_pkgver_glslang}.tar.gz") + "https://github.com/KhronosGroup/glslang/archive/${_pkgver_glslang}/glslang-${_pkgver_glslang}.tar.gz" + 'fbda175.patch') sha256sums=('83354734f7ea36e7077206506dd05f0e6877eb51294b820fdbdc398255c6f803' - '26c216c3062512c018cbdd752224b8dad703b7e5bb90bf338ba2dbb5d4f11438') + '26c216c3062512c018cbdd752224b8dad703b7e5bb90bf338ba2dbb5d4f11438' + '1a7e937ab126b4d42ac750b6ab997e604963aeed7c8177888cc37a71fafda07e') prepare() { mv -T "glslang-${_pkgver_glslang}" "${_pkgname}-${pkgver}/src/backend_scene/third_party/glslang" + patch -Np1 -d "${_pkgname}-${pkgver}" < 'fbda175.patch' } build() { diff --git a/plasma5-wallpapers-wallpaper-engine/fbda175.patch b/plasma5-wallpapers-wallpaper-engine/fbda175.patch new file mode 100644 index 0000000..5591a38 --- /dev/null +++ b/plasma5-wallpapers-wallpaper-engine/fbda175.patch @@ -0,0 +1,21 @@ +From fbda175be3b93458ec06c9a1db507b2855e4caa1 Mon Sep 17 00:00:00 2001 +From: Seymur Bagirov +Date: Sat, 8 Apr 2023 13:24:52 +0400 +Subject: [PATCH] add cstdio to fix build on openSUSE TW + +--- + src/backend_scene/third_party/vk_mem_alloc.h | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/src/backend_scene/third_party/vk_mem_alloc.h b/src/backend_scene/third_party/vk_mem_alloc.h +index 0d01d517..6a8f3e31 100644 +--- a/src/backend_scene/third_party/vk_mem_alloc.h ++++ b/src/backend_scene/third_party/vk_mem_alloc.h +@@ -2559,6 +2559,7 @@ remove them if not needed. + #include // for assert + #include // for min, max + #include ++ #include + #else + #include VMA_CONFIGURATION_USER_INCLUDES_H + #endif From dee0c4a1bb15c607ae70cbd084cb162bb1015b13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 2 Jun 2023 21:52:11 +0200 Subject: [PATCH 487/971] upgpkg: discord-electron 0.0.27-5 Include rudimentary patch to allow Krisp noise suppression support --- discord-electron/.SRCINFO | 5 +++-- discord-electron/PKGBUILD | 11 +++++++---- discord-electron/discord-electron.install | 13 +++++++++++-- discord-electron/discord-launcher.sh | 12 +++++++++++- 4 files changed, 32 insertions(+), 9 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 734d978..6e84783 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v22) for increased security and performance pkgver = 0.0.27 - pkgrel = 4 + pkgrel = 5 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -13,12 +13,13 @@ pkgbase = discord-electron depends = libxss optdepends = libpulse: Pulseaudio support optdepends = xdg-utils: Open files + optdepends = rizin: Allow patching Krisp support provides = discord conflicts = discord options = !strip source = https://dl.discordapp.net/apps/linux/0.0.27/discord-0.0.27.tar.gz source = discord-launcher.sh sha512sums = 285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f - sha512sums = 6337d1f40c9ac97f180862ed0bcf1ec6fb6d4ecf3cb215369550768a4a3600a9546c43f467855a77e95b0f314348a833de40f4284b5b8924d101b4a456b073f5 + sha512sums = 1da218eb240901ed48c392c154d061b02024daeb02ee7d991cdbc97ecba30a6f06af25abb602880872d89dcc63a8cd4d149c12414086b081035938deff8fe26d pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 7cbd556..ac3a63d 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -15,7 +15,7 @@ pkgname=discord-electron _pkgname=discord _electron=22 pkgver=0.0.27 -pkgrel=4 +pkgrel=5 pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') provides=("${_pkgname}") @@ -29,15 +29,18 @@ makedepends=('asar' 'curl' 'python-html2text') optdepends=( 'libpulse: Pulseaudio support' 'xdg-utils: Open files' + 'rizin: Allow patching Krisp support' ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/discord-${pkgver}.tar.gz" 'discord-launcher.sh') sha512sums=('285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f' - '6337d1f40c9ac97f180862ed0bcf1ec6fb6d4ecf3cb215369550768a4a3600a9546c43f467855a77e95b0f314348a833de40f4284b5b8924d101b4a456b073f5') + '1da218eb240901ed48c392c154d061b02024daeb02ee7d991cdbc97ecba30a6f06af25abb602880872d89dcc63a8cd4d149c12414086b081035938deff8fe26d') + +_krisp_b2sum='592f55259500afc0d7fd334a10d3c1991fae05db870bf12437edc43cf693988195341f2cb827aba333c0e65fb4cb40dccfcc5d6a84dea4a1645f9563505b6496' prepare() { - # prepare launcher and install script - sed -i "s|@PKGNAME@|${_pkgname}|;s|@ELECTRON@|${_electron}|" discord-launcher.sh + # prepare launcher script + sed -i "s|@PKGNAME@|${_pkgname}|g;s|@PKGVER@|${_pkgver}|g;s|@ELECTRON@|${_electron}|g;s|@KRISPB2@|${_krisp_b2sum}|g" discord-launcher.sh # fix the .desktop file sed -i "s|Exec=.*|Exec=/usr/bin/${_pkgname}|" Discord/$_pkgname.desktop diff --git a/discord-electron/discord-electron.install b/discord-electron/discord-electron.install index 797b262..5516bf2 100644 --- a/discord-electron/discord-electron.install +++ b/discord-electron/discord-electron.install @@ -1,18 +1,27 @@ post_upgrade() { + # return if old package version is greater than or equal to 0.0.27-5... + (( $(vercmp $2 '0.0.27-5') >= 0 )) && return + + cat < The launch script will now patch Krisp noise suppression support + if 'rizin' is installed. Restart your Discord client after update + to apply the patch +EOF + # return if old package version is greater than or equal to 0.0.27-2... (( $(vercmp $2 '0.0.27-2') >= 0 )) && return cat < You can now add or uncomment additional Electron flags in '~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set) - EOF } post_install() { cat < For Krisp noise suppression support consider installing 'rizin'. Restart + your Discord client after installation or update to apply the patch ==> In case of performance problems consider adding or uncommenting Electron flags in '~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set) - EOF } diff --git a/discord-electron/discord-launcher.sh b/discord-electron/discord-launcher.sh index 42e6f82..7e50f72 100644 --- a/discord-electron/discord-launcher.sh +++ b/discord-electron/discord-launcher.sh @@ -3,12 +3,22 @@ set -euo pipefail flags_file="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@-flags.conf" +krisp_bin="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@/@PKGVER@/modules/@PKGNAME@_krisp/@PKGNAME@_krisp.node" declare -a flags +if hash rizin &> /dev/null; then + # Patch Krisp binary to ignore signature check + if [[ -f "${krisp_bin}" && $(b2sum "${krisp_bin}" | head -c 128) == @KRISPB2@ ]]; then + addr=$(rz-find -x '4889dfe8........4889dfe8' "${krisp_bin}" | head -n1) + rizin -q -w -c "s $addr + 0x12 ; wao nop" "${krisp_bin}" &> /dev/null + fi +fi + if [[ -f "${flags_file}" ]]; then - grep -q '\--ignore-gpu-blacklist' "${flags_file}" && \ + if grep -q '\--ignore-gpu-blacklist' "${flags_file}"; then sed -i "s|--ignore-gpu-blacklist|--ignore-gpu-blocklist|" "${flags_file}" + fi mapfile -t < "${flags_file}" else cat > "${flags_file}" < Date: Fri, 2 Jun 2023 21:52:38 +0200 Subject: [PATCH 488/971] upgpkg: discord-electron-openasar 0.0.27+809-5 Include rudimentary patch to allow Krisp noise suppression support --- discord-electron-openasar/.SRCINFO | 5 +++-- discord-electron-openasar/PKGBUILD | 11 +++++++---- .../discord-electron-openasar.install | 13 +++++++++++-- discord-electron-openasar/discord-launcher.sh | 12 +++++++++++- 4 files changed, 32 insertions(+), 9 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 86ad9eb..bf89454 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v22) for increased security and performance pkgver = 0.0.27+809 - pkgrel = 4 + pkgrel = 5 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -15,6 +15,7 @@ pkgbase = discord-electron-openasar depends = libxss optdepends = libpulse: Pulseaudio support optdepends = xdg-utils: Open files + optdepends = rizin: Allow patching Krisp support provides = discord conflicts = discord options = !strip @@ -22,7 +23,7 @@ pkgbase = discord-electron-openasar source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=a8b07392808032f95ac3a7c5856e76d2619c91ae sha512sums = 285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f - sha512sums = 6337d1f40c9ac97f180862ed0bcf1ec6fb6d4ecf3cb215369550768a4a3600a9546c43f467855a77e95b0f314348a833de40f4284b5b8924d101b4a456b073f5 + sha512sums = 1da218eb240901ed48c392c154d061b02024daeb02ee7d991cdbc97ecba30a6f06af25abb602880872d89dcc63a8cd4d149c12414086b081035938deff8fe26d sha512sums = SKIP pkgname = discord-electron-openasar diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index fc13373..d910cf1 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -9,7 +9,7 @@ _pkgname=discord _electron=22 pkgver=0.0.27+809 _pkgver=${pkgver%%+*} -pkgrel=4 +pkgrel=5 pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') provides=("${_pkgname}") @@ -23,14 +23,17 @@ makedepends=('git' 'asar' 'nodejs' 'curl' 'python-html2text') optdepends=( 'libpulse: Pulseaudio support' 'xdg-utils: Open files' + 'rizin: Allow patching Krisp support' ) source=("https://dl.discordapp.net/apps/linux/${_pkgver}/discord-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=a8b07392808032f95ac3a7c5856e76d2619c91ae") sha512sums=('285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f' - '6337d1f40c9ac97f180862ed0bcf1ec6fb6d4ecf3cb215369550768a4a3600a9546c43f467855a77e95b0f314348a833de40f4284b5b8924d101b4a456b073f5' + '1da218eb240901ed48c392c154d061b02024daeb02ee7d991cdbc97ecba30a6f06af25abb602880872d89dcc63a8cd4d149c12414086b081035938deff8fe26d' 'SKIP') +_krisp_b2sum='592f55259500afc0d7fd334a10d3c1991fae05db870bf12437edc43cf693988195341f2cb827aba333c0e65fb4cb40dccfcc5d6a84dea4a1645f9563505b6496' + # just in case I get the version wrong pkgver() { cd "${srcdir}/openasar" @@ -38,8 +41,8 @@ pkgver() { } prepare() { - # prepare launcher and install script - sed -i "s|@PKGNAME@|${_pkgname}|;s|@ELECTRON@|${_electron}|" discord-launcher.sh + # prepare launcher script + sed -i "s|@PKGNAME@|${_pkgname}|g;s|@PKGVER@|${_pkgver}|g;s|@ELECTRON@|${_electron}|g;s|@KRISPB2@|${_krisp_b2sum}|g" discord-launcher.sh # fix the .desktop file sed -i "s|Exec=.*|Exec=/usr/bin/${_pkgname}|" Discord/$_pkgname.desktop diff --git a/discord-electron-openasar/discord-electron-openasar.install b/discord-electron-openasar/discord-electron-openasar.install index 75e9ce8..76da407 100644 --- a/discord-electron-openasar/discord-electron-openasar.install +++ b/discord-electron-openasar/discord-electron-openasar.install @@ -1,18 +1,27 @@ post_upgrade() { + # return if old package version is greater than or equal to 0.0.27-5... + (( $(vercmp $2 '0.0.27+809-5') >= 0 )) && return + + cat < The launch script will now patch Krisp noise suppression support + if 'rizin' is installed. Restart your Discord client after update + to apply the patch +EOF + # return if old package version is greater than or equal to 0.0.27+809-2... (( $(vercmp $2 '0.0.27+809-2') >= 0 )) && return cat < You can now add or uncomment additional Electron flags in '~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set) - EOF } post_install() { cat < For Krisp noise suppression support consider installing 'rizin'. Restart + your Discord client after installation or update to apply the patch ==> In case of performance problems consider adding or uncommenting Electron flags in '~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set) - EOF } diff --git a/discord-electron-openasar/discord-launcher.sh b/discord-electron-openasar/discord-launcher.sh index 42e6f82..7e50f72 100644 --- a/discord-electron-openasar/discord-launcher.sh +++ b/discord-electron-openasar/discord-launcher.sh @@ -3,12 +3,22 @@ set -euo pipefail flags_file="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@-flags.conf" +krisp_bin="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@/@PKGVER@/modules/@PKGNAME@_krisp/@PKGNAME@_krisp.node" declare -a flags +if hash rizin &> /dev/null; then + # Patch Krisp binary to ignore signature check + if [[ -f "${krisp_bin}" && $(b2sum "${krisp_bin}" | head -c 128) == @KRISPB2@ ]]; then + addr=$(rz-find -x '4889dfe8........4889dfe8' "${krisp_bin}" | head -n1) + rizin -q -w -c "s $addr + 0x12 ; wao nop" "${krisp_bin}" &> /dev/null + fi +fi + if [[ -f "${flags_file}" ]]; then - grep -q '\--ignore-gpu-blacklist' "${flags_file}" && \ + if grep -q '\--ignore-gpu-blacklist' "${flags_file}"; then sed -i "s|--ignore-gpu-blacklist|--ignore-gpu-blocklist|" "${flags_file}" + fi mapfile -t < "${flags_file}" else cat > "${flags_file}" < Date: Thu, 8 Jun 2023 21:40:39 +0200 Subject: [PATCH 489/971] upgpkg: clonezilla-unstable 5.4.9-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 51b90c4..783c48e 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.4.8 + pkgver = 5.4.9 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.8.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.9.tar.xz source = usrbin.patch - sha256sums = 07c71b197a1105ae28f664a58e394ab3acb9223ca884f03d03efca594192bfba + sha256sums = 059d6fdb859b6ac9089a788e78abb697277125580ff116720058cdc109e89cbd sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 67e3e2f..ecddabd 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.4.8 +pkgver=5.4.9 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('07c71b197a1105ae28f664a58e394ab3acb9223ca884f03d03efca594192bfba' +sha256sums=('059d6fdb859b6ac9089a788e78abb697277125580ff116720058cdc109e89cbd' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From 2ab01e49c6555206b9a6f55f0f04b9820c96f352 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 8 Jun 2023 21:40:39 +0200 Subject: [PATCH 490/971] upgpkg: clonezilla-unstable 5.4.9-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 51b90c4..783c48e 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.4.8 + pkgver = 5.4.9 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.8.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.9.tar.xz source = usrbin.patch - sha256sums = 07c71b197a1105ae28f664a58e394ab3acb9223ca884f03d03efca594192bfba + sha256sums = 059d6fdb859b6ac9089a788e78abb697277125580ff116720058cdc109e89cbd sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 67e3e2f..ecddabd 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.4.8 +pkgver=5.4.9 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('07c71b197a1105ae28f664a58e394ab3acb9223ca884f03d03efca594192bfba' +sha256sums=('059d6fdb859b6ac9089a788e78abb697277125580ff116720058cdc109e89cbd' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From 3924a50336972ec94c0838b248f0ba0258fabd32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 8 Jun 2023 21:41:09 +0200 Subject: [PATCH 491/971] upgpkg: gvisor-bin 20230605.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index e3d6cb7..9e195ee 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20230501.0 + pkgver = 20230605.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20230501.0::https://storage.googleapis.com/gvisor/releases/release/20230501.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20230501.0::https://storage.googleapis.com/gvisor/releases/release/20230501.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = a4f745195a5040d33a1b2583bb455fbb417e4ad08a117b88db630e2158ffb067cf6de83d2481d0126b39f73ba77a440373500075860ce33c44dc1bb396f873e0 - sha512sums_x86_64 = 036b102b62fd8e932b2e7da9919597d4b541ec62cd691d57241658ed156aa62743c1ab648903d317d74a22dbb5d2a922f8d067e86af2cb436ce5eb55c7cf4f93 - source_aarch64 = runsc-aarch64-20230501.0::https://storage.googleapis.com/gvisor/releases/release/20230501.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20230501.0::https://storage.googleapis.com/gvisor/releases/release/20230501.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 18bac7c31934d705b226ca2a897f32247dbaacd51652c3b7d6a07bbcb4b18be61ff6253abe873325ed974ae7c254c689eeedaf26fff400f21391778f06b36290 - sha512sums_aarch64 = c051ce23a0dffbd520ae3f85da918cb120fd36cb33e6043a99f7f6ac942eea471b8d3b68a6688a9c7e23a0c6692565dcce2746aa0eca5cd5b486a14a6caa4824 + source_x86_64 = runsc-x86_64-20230605.0::https://storage.googleapis.com/gvisor/releases/release/20230605.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20230605.0::https://storage.googleapis.com/gvisor/releases/release/20230605.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = b96374f8b5a13c5fd51097cc16032b55241e2a0c6d286657d9a1ca7198be2b587d85aa595b69527858121cda63e1cde5cfb49fb57864d2c320ce356c4271f4f6 + sha512sums_x86_64 = e3555d7be221a855148e1a4aec81a9ba217c31cd2d83bb35108eeb98b332f1df22eca2fdaaeff82a6cd452046aa72ccc8800890b2ee1a85497862ffd2c8158fb + source_aarch64 = runsc-aarch64-20230605.0::https://storage.googleapis.com/gvisor/releases/release/20230605.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20230605.0::https://storage.googleapis.com/gvisor/releases/release/20230605.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = d959d727e78769d4f1bb2b7c15a557df02611b3bc7349fae02416d206403c5f5e442bcbd60389498fe5bcce4eb7d23385294bacfbd845eeda3746e4cdd681de2 + sha512sums_aarch64 = a1f7288e8d6301ccfe97f4d28aa44d429535e3a577c6b9db32553f2b82b27eb08763ba8232b92c77445418c474d0df7fbf06f6fd24b3da82a7e0ecfc455e3f11 pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index b571004..693fb29 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20230501.0 +pkgver=20230605.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('a4f745195a5040d33a1b2583bb455fbb417e4ad08a117b88db630e2158ffb067cf6de83d2481d0126b39f73ba77a440373500075860ce33c44dc1bb396f873e0' - '036b102b62fd8e932b2e7da9919597d4b541ec62cd691d57241658ed156aa62743c1ab648903d317d74a22dbb5d2a922f8d067e86af2cb436ce5eb55c7cf4f93') -sha512sums_aarch64=('18bac7c31934d705b226ca2a897f32247dbaacd51652c3b7d6a07bbcb4b18be61ff6253abe873325ed974ae7c254c689eeedaf26fff400f21391778f06b36290' - 'c051ce23a0dffbd520ae3f85da918cb120fd36cb33e6043a99f7f6ac942eea471b8d3b68a6688a9c7e23a0c6692565dcce2746aa0eca5cd5b486a14a6caa4824') +sha512sums_x86_64=('b96374f8b5a13c5fd51097cc16032b55241e2a0c6d286657d9a1ca7198be2b587d85aa595b69527858121cda63e1cde5cfb49fb57864d2c320ce356c4271f4f6' + 'e3555d7be221a855148e1a4aec81a9ba217c31cd2d83bb35108eeb98b332f1df22eca2fdaaeff82a6cd452046aa72ccc8800890b2ee1a85497862ffd2c8158fb') +sha512sums_aarch64=('d959d727e78769d4f1bb2b7c15a557df02611b3bc7349fae02416d206403c5f5e442bcbd60389498fe5bcce4eb7d23385294bacfbd845eeda3746e4cdd681de2' + 'a1f7288e8d6301ccfe97f4d28aa44d429535e3a577c6b9db32553f2b82b27eb08763ba8232b92c77445418c474d0df7fbf06f6fd24b3da82a7e0ecfc455e3f11') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From 8689b4a782d4f132bab03b8462fb29dc3319eeac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 8 Jun 2023 21:41:49 +0200 Subject: [PATCH 492/971] upgpkg: gvisor-git 20230605.0-1 --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index c4dcb6b..ea52dd4 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20230501.0 + pkgver = 20230605.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index 95aa68c..9cf1318 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20230501.0 +pkgver=20230605.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From 7ad0778608d939559684207aaf3d9a196eba8e4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 8 Jun 2023 21:56:34 +0200 Subject: [PATCH 493/971] upgpkg: discord-electron-openasar 0.0.27+810-1 Update to latest OpenAsar commit Unset not needed variables in launch script Rewording install file text --- discord-electron-openasar/.SRCINFO | 8 ++++---- discord-electron-openasar/PKGBUILD | 8 ++++---- .../discord-electron-openasar.install | 12 +++++------- discord-electron-openasar/discord-launcher.sh | 11 ++++++++--- 4 files changed, 21 insertions(+), 18 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index bf89454..dea6d15 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v22) for increased security and performance - pkgver = 0.0.27+809 - pkgrel = 5 + pkgver = 0.0.27+810 + pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -21,9 +21,9 @@ pkgbase = discord-electron-openasar options = !strip source = https://dl.discordapp.net/apps/linux/0.0.27/discord-0.0.27.tar.gz source = discord-launcher.sh - source = git+https://github.com/goosemod/openasar.git#commit=a8b07392808032f95ac3a7c5856e76d2619c91ae + source = git+https://github.com/goosemod/openasar.git#commit=cd443572e5df630c446a5956ade19c4fc065aca9 sha512sums = 285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f - sha512sums = 1da218eb240901ed48c392c154d061b02024daeb02ee7d991cdbc97ecba30a6f06af25abb602880872d89dcc63a8cd4d149c12414086b081035938deff8fe26d + sha512sums = 4bbe010c28926ca898ac33da15ce8373060af44e0583e6956671fa2ee8a2a379a88a6ff9b4f886806fc05117428834852ba2e81a9163381c678c240067b7abd0 sha512sums = SKIP pkgname = discord-electron-openasar diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index d910cf1..1f62d45 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -7,9 +7,9 @@ pkgname=discord-electron-openasar _pkgname=discord _electron=22 -pkgver=0.0.27+809 +pkgver=0.0.27+810 _pkgver=${pkgver%%+*} -pkgrel=5 +pkgrel=1 pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') provides=("${_pkgname}") @@ -27,9 +27,9 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${_pkgver}/discord-${_pkgver}.tar.gz" 'discord-launcher.sh' - "git+https://github.com/goosemod/openasar.git#commit=a8b07392808032f95ac3a7c5856e76d2619c91ae") + "git+https://github.com/goosemod/openasar.git#commit=cd443572e5df630c446a5956ade19c4fc065aca9") sha512sums=('285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f' - '1da218eb240901ed48c392c154d061b02024daeb02ee7d991cdbc97ecba30a6f06af25abb602880872d89dcc63a8cd4d149c12414086b081035938deff8fe26d' + '4bbe010c28926ca898ac33da15ce8373060af44e0583e6956671fa2ee8a2a379a88a6ff9b4f886806fc05117428834852ba2e81a9163381c678c240067b7abd0' 'SKIP') _krisp_b2sum='592f55259500afc0d7fd334a10d3c1991fae05db870bf12437edc43cf693988195341f2cb827aba333c0e65fb4cb40dccfcc5d6a84dea4a1645f9563505b6496' diff --git a/discord-electron-openasar/discord-electron-openasar.install b/discord-electron-openasar/discord-electron-openasar.install index 76da407..997603e 100644 --- a/discord-electron-openasar/discord-electron-openasar.install +++ b/discord-electron-openasar/discord-electron-openasar.install @@ -1,27 +1,25 @@ post_upgrade() { - # return if old package version is greater than or equal to 0.0.27-5... + # return if old package version is greater than or equal to 0.0.27+809-5... (( $(vercmp $2 '0.0.27+809-5') >= 0 )) && return cat < The launch script will now patch Krisp noise suppression support if 'rizin' is installed. Restart your Discord client after update - to apply the patch + to apply the patch. EOF # return if old package version is greater than or equal to 0.0.27+809-2... (( $(vercmp $2 '0.0.27+809-2') >= 0 )) && return cat < You can now add or uncomment additional Electron flags in - '~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set) +==> You can now set additional Electron flags in '~/.config/discord-flags.conf'. EOF } post_install() { cat < For Krisp noise suppression support consider installing 'rizin'. Restart - your Discord client after installation or update to apply the patch -==> In case of performance problems consider adding or uncommenting Electron - flags in '~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set) + your Discord client after installation or update to apply the patch. +==> Additional Electron flags can be set in '~/.config/discord-flags.conf'. EOF } diff --git a/discord-electron-openasar/discord-launcher.sh b/discord-electron-openasar/discord-launcher.sh index 7e50f72..898e51e 100644 --- a/discord-electron-openasar/discord-launcher.sh +++ b/discord-electron-openasar/discord-launcher.sh @@ -2,14 +2,16 @@ set -euo pipefail +declare -a flags + + flags_file="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@-flags.conf" krisp_bin="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@/@PKGVER@/modules/@PKGNAME@_krisp/@PKGNAME@_krisp.node" - -declare -a flags +krisp_b2=@KRISPB2@ if hash rizin &> /dev/null; then # Patch Krisp binary to ignore signature check - if [[ -f "${krisp_bin}" && $(b2sum "${krisp_bin}" | head -c 128) == @KRISPB2@ ]]; then + if [[ -f "${krisp_bin}" && $(b2sum "${krisp_bin}" | head -c 128) == $krisp_b2 ]]; then addr=$(rz-find -x '4889dfe8........4889dfe8' "${krisp_bin}" | head -n1) rizin -q -w -c "s $addr + 0x12 ; wao nop" "${krisp_bin}" &> /dev/null fi @@ -34,6 +36,9 @@ for line in "${MAPFILE[@]}"; do fi done +unset flags_file krisp_bin krisp_b2 + + exec /usr/bin/electron@ELECTRON@ \ /usr/lib/@PKGNAME@/app.asar \ --ozone-platform-hint=auto \ From 428082d9ac96ab79adf129e80b8125af95b34c6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 17 Jun 2023 00:55:38 +0200 Subject: [PATCH 494/971] upgpkg: prometheus-postgresql-exporter 0.12.1-1 upstream release --- prometheus-postgresql-exporter/.SRCINFO | 6 +++--- prometheus-postgresql-exporter/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/prometheus-postgresql-exporter/.SRCINFO b/prometheus-postgresql-exporter/.SRCINFO index 498cf58..dfd006d 100644 --- a/prometheus-postgresql-exporter/.SRCINFO +++ b/prometheus-postgresql-exporter/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = prometheus-postgresql-exporter pkgdesc = Prometheus exporter for PostgreSQL - pkgver = 0.12.0 + pkgver = 0.12.1 pkgrel = 1 url = https://github.com/prometheus-community/postgres_exporter arch = x86_64 @@ -9,10 +9,10 @@ pkgbase = prometheus-postgresql-exporter makedepends = go makedepends = make backup = etc/conf.d/prometheus-postgresql-exporter - source = https://github.com/prometheus-community/postgres_exporter/archive/v0.12.0/postgres_exporter-0.12.0.tar.gz + source = https://github.com/prometheus-community/postgres_exporter/archive/v0.12.1/postgres_exporter-0.12.1.tar.gz source = prometheus-postgresql-exporter.service source = prometheus-postgresql-exporter.conf - sha256sums = cc87fd77563f5c02de424564ca4e8f8c21261ad87328d703eead3054385b29ee + sha256sums = 4287e58e04bcd5399784ba7d2608e881f5e95da60a6021597b99a5d4c07b7a24 sha256sums = 0d86e650d88c8d4a8bc5b26faecb75023e069eaf29582135bcb0202e4a69a9b9 sha256sums = 5436ad34fbcd6faab69da8675631f3eb5b89d964682eb23164bf4bb816ad1897 diff --git a/prometheus-postgresql-exporter/PKGBUILD b/prometheus-postgresql-exporter/PKGBUILD index a9e75b9..ca89959 100644 --- a/prometheus-postgresql-exporter/PKGBUILD +++ b/prometheus-postgresql-exporter/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Nils Czernia pkgname=prometheus-postgresql-exporter -pkgver=0.12.0 +pkgver=0.12.1 pkgrel=1 pkgdesc="Prometheus exporter for PostgreSQL" arch=('x86_64') @@ -13,7 +13,7 @@ backup=('etc/conf.d/prometheus-postgresql-exporter') source=("https://github.com/prometheus-community/postgres_exporter/archive/v${pkgver}/postgres_exporter-${pkgver}.tar.gz" "prometheus-postgresql-exporter.service" "prometheus-postgresql-exporter.conf") -sha256sums=('cc87fd77563f5c02de424564ca4e8f8c21261ad87328d703eead3054385b29ee' +sha256sums=('4287e58e04bcd5399784ba7d2608e881f5e95da60a6021597b99a5d4c07b7a24' '0d86e650d88c8d4a8bc5b26faecb75023e069eaf29582135bcb0202e4a69a9b9' '5436ad34fbcd6faab69da8675631f3eb5b89d964682eb23164bf4bb816ad1897') From 0d291b7ed658905614fb9f7e9bfd4c7ed5370ca7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 17 Jun 2023 00:56:06 +0200 Subject: [PATCH 495/971] upgpkg: obs-vkcapture 1.4.0-1 upstream release --- obs-vkcapture/.SRCINFO | 7 ++++--- obs-vkcapture/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/obs-vkcapture/.SRCINFO b/obs-vkcapture/.SRCINFO index ba01688..588caf9 100644 --- a/obs-vkcapture/.SRCINFO +++ b/obs-vkcapture/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = obs-vkcapture - pkgver = 1.3.3 + pkgver = 1.4.0 pkgrel = 1 url = https://github.com/nowrep/obs-vkcapture arch = x86_64 @@ -10,12 +10,13 @@ pkgbase = obs-vkcapture makedepends = lib32-gcc-libs makedepends = lib32-vulkan-icd-loader makedepends = lib32-libgl + makedepends = lib32-libegl depends = vulkan-icd-loader depends = libgl depends = libegl depends = obs-studio>=27 - source = https://github.com/nowrep/obs-vkcapture/archive/v1.3.3/obs-vkcapture-1.3.3.tar.gz - sha512sums = d4d234eff53ff9d0e53e6478b378fce8376b22dc4088c1366e194eeb826db5f24f5c3ce26925423e29f4979ef2b0c081ed69d208a8af27810636a2c9538e98e7 + source = https://github.com/nowrep/obs-vkcapture/archive/v1.4.0/obs-vkcapture-1.4.0.tar.gz + sha512sums = 8b487a09d54ada2482f218eb0b7d22228ca8bdb8ed7b71e8b9456554e48a2d2de80fc94ce336de1b574842b9839c402a98902039696df36a002e3f9e850b936d pkgname = obs-vkcapture pkgdesc = OBS Linux Vulkan/OpenGL game capture diff --git a/obs-vkcapture/PKGBUILD b/obs-vkcapture/PKGBUILD index 468cc34..62e981f 100644 --- a/obs-vkcapture/PKGBUILD +++ b/obs-vkcapture/PKGBUILD @@ -2,15 +2,15 @@ pkgbase=obs-vkcapture pkgname=("$pkgbase" "lib32-$pkgbase") -pkgver=1.3.3 +pkgver=1.4.0 pkgrel=1 url="https://github.com/nowrep/$pkgbase" license=('GPL2') arch=('x86_64') depends=('vulkan-icd-loader' 'libgl' 'libegl' 'obs-studio>=27') -makedepends=('gcc' 'cmake' 'vulkan-headers' 'lib32-gcc-libs' 'lib32-vulkan-icd-loader' 'lib32-libgl') +makedepends=('gcc' 'cmake' 'vulkan-headers' 'lib32-gcc-libs' 'lib32-vulkan-icd-loader' 'lib32-libgl' 'lib32-libegl') source=("https://github.com/nowrep/$pkgbase/archive/v$pkgver/$pkgbase-$pkgver.tar.gz") -sha512sums=('d4d234eff53ff9d0e53e6478b378fce8376b22dc4088c1366e194eeb826db5f24f5c3ce26925423e29f4979ef2b0c081ed69d208a8af27810636a2c9538e98e7') +sha512sums=('8b487a09d54ada2482f218eb0b7d22228ca8bdb8ed7b71e8b9456554e48a2d2de80fc94ce336de1b574842b9839c402a98902039696df36a002e3f9e850b936d') build() { cmake -B build -S "$pkgbase-$pkgver" \ From cb6b22fdc25e4dcba2713343c9b323b46c277fe6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 22 Jun 2023 23:58:52 +0200 Subject: [PATCH 496/971] upgpkg: prometheus-postgresql-exporter 0.13.0-1 upstream release --- prometheus-postgresql-exporter/.SRCINFO | 6 +++--- prometheus-postgresql-exporter/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/prometheus-postgresql-exporter/.SRCINFO b/prometheus-postgresql-exporter/.SRCINFO index dfd006d..e21ecb6 100644 --- a/prometheus-postgresql-exporter/.SRCINFO +++ b/prometheus-postgresql-exporter/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = prometheus-postgresql-exporter pkgdesc = Prometheus exporter for PostgreSQL - pkgver = 0.12.1 + pkgver = 0.13.0 pkgrel = 1 url = https://github.com/prometheus-community/postgres_exporter arch = x86_64 @@ -9,10 +9,10 @@ pkgbase = prometheus-postgresql-exporter makedepends = go makedepends = make backup = etc/conf.d/prometheus-postgresql-exporter - source = https://github.com/prometheus-community/postgres_exporter/archive/v0.12.1/postgres_exporter-0.12.1.tar.gz + source = https://github.com/prometheus-community/postgres_exporter/archive/v0.13.0/postgres_exporter-0.13.0.tar.gz source = prometheus-postgresql-exporter.service source = prometheus-postgresql-exporter.conf - sha256sums = 4287e58e04bcd5399784ba7d2608e881f5e95da60a6021597b99a5d4c07b7a24 + sha256sums = b3c83de5f796def25feb8924e68aa0f02eb614444d4a5b3afb0c899431d8df08 sha256sums = 0d86e650d88c8d4a8bc5b26faecb75023e069eaf29582135bcb0202e4a69a9b9 sha256sums = 5436ad34fbcd6faab69da8675631f3eb5b89d964682eb23164bf4bb816ad1897 diff --git a/prometheus-postgresql-exporter/PKGBUILD b/prometheus-postgresql-exporter/PKGBUILD index ca89959..5ab7223 100644 --- a/prometheus-postgresql-exporter/PKGBUILD +++ b/prometheus-postgresql-exporter/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Nils Czernia pkgname=prometheus-postgresql-exporter -pkgver=0.12.1 +pkgver=0.13.0 pkgrel=1 pkgdesc="Prometheus exporter for PostgreSQL" arch=('x86_64') @@ -13,7 +13,7 @@ backup=('etc/conf.d/prometheus-postgresql-exporter') source=("https://github.com/prometheus-community/postgres_exporter/archive/v${pkgver}/postgres_exporter-${pkgver}.tar.gz" "prometheus-postgresql-exporter.service" "prometheus-postgresql-exporter.conf") -sha256sums=('4287e58e04bcd5399784ba7d2608e881f5e95da60a6021597b99a5d4c07b7a24' +sha256sums=('b3c83de5f796def25feb8924e68aa0f02eb614444d4a5b3afb0c899431d8df08' '0d86e650d88c8d4a8bc5b26faecb75023e069eaf29582135bcb0202e4a69a9b9' '5436ad34fbcd6faab69da8675631f3eb5b89d964682eb23164bf4bb816ad1897') From d08c3f1875b652845289d4166f7714b6184d9b39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 27 Jun 2023 21:42:04 +0200 Subject: [PATCH 497/971] upgpkg: prometheus-postgresql-exporter 0.13.1-1 upstream release --- prometheus-postgresql-exporter/.SRCINFO | 6 +++--- prometheus-postgresql-exporter/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/prometheus-postgresql-exporter/.SRCINFO b/prometheus-postgresql-exporter/.SRCINFO index e21ecb6..a91ca00 100644 --- a/prometheus-postgresql-exporter/.SRCINFO +++ b/prometheus-postgresql-exporter/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = prometheus-postgresql-exporter pkgdesc = Prometheus exporter for PostgreSQL - pkgver = 0.13.0 + pkgver = 0.13.1 pkgrel = 1 url = https://github.com/prometheus-community/postgres_exporter arch = x86_64 @@ -9,10 +9,10 @@ pkgbase = prometheus-postgresql-exporter makedepends = go makedepends = make backup = etc/conf.d/prometheus-postgresql-exporter - source = https://github.com/prometheus-community/postgres_exporter/archive/v0.13.0/postgres_exporter-0.13.0.tar.gz + source = https://github.com/prometheus-community/postgres_exporter/archive/v0.13.1/postgres_exporter-0.13.1.tar.gz source = prometheus-postgresql-exporter.service source = prometheus-postgresql-exporter.conf - sha256sums = b3c83de5f796def25feb8924e68aa0f02eb614444d4a5b3afb0c899431d8df08 + sha256sums = a1c61f96e81872db707c59e8401044674db2cdbe5966548d954c0d6d81162bd5 sha256sums = 0d86e650d88c8d4a8bc5b26faecb75023e069eaf29582135bcb0202e4a69a9b9 sha256sums = 5436ad34fbcd6faab69da8675631f3eb5b89d964682eb23164bf4bb816ad1897 diff --git a/prometheus-postgresql-exporter/PKGBUILD b/prometheus-postgresql-exporter/PKGBUILD index 5ab7223..20025d1 100644 --- a/prometheus-postgresql-exporter/PKGBUILD +++ b/prometheus-postgresql-exporter/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Nils Czernia pkgname=prometheus-postgresql-exporter -pkgver=0.13.0 +pkgver=0.13.1 pkgrel=1 pkgdesc="Prometheus exporter for PostgreSQL" arch=('x86_64') @@ -13,7 +13,7 @@ backup=('etc/conf.d/prometheus-postgresql-exporter') source=("https://github.com/prometheus-community/postgres_exporter/archive/v${pkgver}/postgres_exporter-${pkgver}.tar.gz" "prometheus-postgresql-exporter.service" "prometheus-postgresql-exporter.conf") -sha256sums=('b3c83de5f796def25feb8924e68aa0f02eb614444d4a5b3afb0c899431d8df08' +sha256sums=('a1c61f96e81872db707c59e8401044674db2cdbe5966548d954c0d6d81162bd5' '0d86e650d88c8d4a8bc5b26faecb75023e069eaf29582135bcb0202e4a69a9b9' '5436ad34fbcd6faab69da8675631f3eb5b89d964682eb23164bf4bb816ad1897') From 299ee922886b001f4026ece99f735e628c57b207 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 28 Jun 2023 21:50:14 +0200 Subject: [PATCH 498/971] upgpkg: clonezilla-unstable 5.4.10-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 783c48e..f4b25b2 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.4.9 + pkgver = 5.4.10 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.9.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.10.tar.xz source = usrbin.patch - sha256sums = 059d6fdb859b6ac9089a788e78abb697277125580ff116720058cdc109e89cbd + sha256sums = 8d6ae4af1b6dfede329226c8f91ed53fb1b81006f7ebb12f3a6ca113e7b9b626 sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index ecddabd..4448c36 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.4.9 +pkgver=5.4.10 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('059d6fdb859b6ac9089a788e78abb697277125580ff116720058cdc109e89cbd' +sha256sums=('8d6ae4af1b6dfede329226c8f91ed53fb1b81006f7ebb12f3a6ca113e7b9b626' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From 0af6124593365eeff03550636ee10b846f4b1441 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 28 Jun 2023 21:50:14 +0200 Subject: [PATCH 499/971] upgpkg: clonezilla-unstable 5.4.10-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 783c48e..f4b25b2 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.4.9 + pkgver = 5.4.10 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.9.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.10.tar.xz source = usrbin.patch - sha256sums = 059d6fdb859b6ac9089a788e78abb697277125580ff116720058cdc109e89cbd + sha256sums = 8d6ae4af1b6dfede329226c8f91ed53fb1b81006f7ebb12f3a6ca113e7b9b626 sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index ecddabd..4448c36 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.4.9 +pkgver=5.4.10 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('059d6fdb859b6ac9089a788e78abb697277125580ff116720058cdc109e89cbd' +sha256sums=('8d6ae4af1b6dfede329226c8f91ed53fb1b81006f7ebb12f3a6ca113e7b9b626' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From 374d183eea13d3260a3ba02093253d405fc87ecf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 3 Jul 2023 22:56:16 +0200 Subject: [PATCH 500/971] upgpkg: discord-electron 0.0.27-6 Fix use of wrong pkgver variable (Thanks to @rsa) Unset not needed variables in launch script Rewording install file text --- discord-electron/.SRCINFO | 4 ++-- discord-electron/PKGBUILD | 6 +++--- discord-electron/discord-electron.install | 9 ++++----- discord-electron/discord-launcher.sh | 11 ++++++++--- 4 files changed, 17 insertions(+), 13 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 6e84783..0790f4b 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v22) for increased security and performance pkgver = 0.0.27 - pkgrel = 5 + pkgrel = 6 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -20,6 +20,6 @@ pkgbase = discord-electron source = https://dl.discordapp.net/apps/linux/0.0.27/discord-0.0.27.tar.gz source = discord-launcher.sh sha512sums = 285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f - sha512sums = 1da218eb240901ed48c392c154d061b02024daeb02ee7d991cdbc97ecba30a6f06af25abb602880872d89dcc63a8cd4d149c12414086b081035938deff8fe26d + sha512sums = 4bbe010c28926ca898ac33da15ce8373060af44e0583e6956671fa2ee8a2a379a88a6ff9b4f886806fc05117428834852ba2e81a9163381c678c240067b7abd0 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index ac3a63d..57b1983 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -15,7 +15,7 @@ pkgname=discord-electron _pkgname=discord _electron=22 pkgver=0.0.27 -pkgrel=5 +pkgrel=6 pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') provides=("${_pkgname}") @@ -34,13 +34,13 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/discord-${pkgver}.tar.gz" 'discord-launcher.sh') sha512sums=('285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f' - '1da218eb240901ed48c392c154d061b02024daeb02ee7d991cdbc97ecba30a6f06af25abb602880872d89dcc63a8cd4d149c12414086b081035938deff8fe26d') + '4bbe010c28926ca898ac33da15ce8373060af44e0583e6956671fa2ee8a2a379a88a6ff9b4f886806fc05117428834852ba2e81a9163381c678c240067b7abd0') _krisp_b2sum='592f55259500afc0d7fd334a10d3c1991fae05db870bf12437edc43cf693988195341f2cb827aba333c0e65fb4cb40dccfcc5d6a84dea4a1645f9563505b6496' prepare() { # prepare launcher script - sed -i "s|@PKGNAME@|${_pkgname}|g;s|@PKGVER@|${_pkgver}|g;s|@ELECTRON@|${_electron}|g;s|@KRISPB2@|${_krisp_b2sum}|g" discord-launcher.sh + sed -i "s|@PKGNAME@|${_pkgname}|g;s|@PKGVER@|${pkgver}|g;s|@ELECTRON@|${_electron}|g;s|@KRISPB2@|${_krisp_b2sum}|g" discord-launcher.sh # fix the .desktop file sed -i "s|Exec=.*|Exec=/usr/bin/${_pkgname}|" Discord/$_pkgname.desktop diff --git a/discord-electron/discord-electron.install b/discord-electron/discord-electron.install index 5516bf2..3d13381 100644 --- a/discord-electron/discord-electron.install +++ b/discord-electron/discord-electron.install @@ -5,23 +5,22 @@ post_upgrade() { cat < The launch script will now patch Krisp noise suppression support if 'rizin' is installed. Restart your Discord client after update - to apply the patch + to apply the patch. EOF # return if old package version is greater than or equal to 0.0.27-2... (( $(vercmp $2 '0.0.27-2') >= 0 )) && return cat < You can now add or uncomment additional Electron flags in - '~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set) +==> You can now set additional Electron flags in '~/.config/discord-flags.conf'. EOF } post_install() { cat < For Krisp noise suppression support consider installing 'rizin'. Restart - your Discord client after installation or update to apply the patch + your Discord client after installation or update to apply the patch. ==> In case of performance problems consider adding or uncommenting Electron - flags in '~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set) + flags in '~/.config/discord-flags.conf'. EOF } diff --git a/discord-electron/discord-launcher.sh b/discord-electron/discord-launcher.sh index 7e50f72..898e51e 100644 --- a/discord-electron/discord-launcher.sh +++ b/discord-electron/discord-launcher.sh @@ -2,14 +2,16 @@ set -euo pipefail +declare -a flags + + flags_file="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@-flags.conf" krisp_bin="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@/@PKGVER@/modules/@PKGNAME@_krisp/@PKGNAME@_krisp.node" - -declare -a flags +krisp_b2=@KRISPB2@ if hash rizin &> /dev/null; then # Patch Krisp binary to ignore signature check - if [[ -f "${krisp_bin}" && $(b2sum "${krisp_bin}" | head -c 128) == @KRISPB2@ ]]; then + if [[ -f "${krisp_bin}" && $(b2sum "${krisp_bin}" | head -c 128) == $krisp_b2 ]]; then addr=$(rz-find -x '4889dfe8........4889dfe8' "${krisp_bin}" | head -n1) rizin -q -w -c "s $addr + 0x12 ; wao nop" "${krisp_bin}" &> /dev/null fi @@ -34,6 +36,9 @@ for line in "${MAPFILE[@]}"; do fi done +unset flags_file krisp_bin krisp_b2 + + exec /usr/bin/electron@ELECTRON@ \ /usr/lib/@PKGNAME@/app.asar \ --ozone-platform-hint=auto \ From 310039dbd8f3d78d47bc863c575de77e07fc09c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 6 Jul 2023 08:19:33 +0200 Subject: [PATCH 501/971] upgpkg: clonezilla-unstable 5.4.11-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index f4b25b2..3b977d2 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.4.10 + pkgver = 5.4.11 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.10.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.11.tar.xz source = usrbin.patch - sha256sums = 8d6ae4af1b6dfede329226c8f91ed53fb1b81006f7ebb12f3a6ca113e7b9b626 + sha256sums = 0440ff6b57418fcccd69511343f9462bb9cfdf74e56e6c03f3e1634011292252 sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 4448c36..e0434c8 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.4.10 +pkgver=5.4.11 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('8d6ae4af1b6dfede329226c8f91ed53fb1b81006f7ebb12f3a6ca113e7b9b626' +sha256sums=('0440ff6b57418fcccd69511343f9462bb9cfdf74e56e6c03f3e1634011292252' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From 766f9921a1c9aa20c581bd2b9afb39fe0ccb9c91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 6 Jul 2023 08:19:33 +0200 Subject: [PATCH 502/971] upgpkg: clonezilla-unstable 5.4.11-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index f4b25b2..3b977d2 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.4.10 + pkgver = 5.4.11 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.10.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.11.tar.xz source = usrbin.patch - sha256sums = 8d6ae4af1b6dfede329226c8f91ed53fb1b81006f7ebb12f3a6ca113e7b9b626 + sha256sums = 0440ff6b57418fcccd69511343f9462bb9cfdf74e56e6c03f3e1634011292252 sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 4448c36..e0434c8 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.4.10 +pkgver=5.4.11 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('8d6ae4af1b6dfede329226c8f91ed53fb1b81006f7ebb12f3a6ca113e7b9b626' +sha256sums=('0440ff6b57418fcccd69511343f9462bb9cfdf74e56e6c03f3e1634011292252' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From 25fff397b1a0a6d51291bc4904ebac72ec4c87cb Mon Sep 17 00:00:00 2001 From: Manuel Date: Thu, 6 Jul 2023 08:22:20 +0200 Subject: [PATCH 503/971] Fix chroot setup script --- prepare-chroot.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/prepare-chroot.sh b/prepare-chroot.sh index b307ece..029b167 100755 --- a/prepare-chroot.sh +++ b/prepare-chroot.sh @@ -9,6 +9,7 @@ sudo -v || exit 1 arch-nspawn "$CHROOT/root" pacman -Syu mkdir -p -m 0755 "$CHROOT/$USER" -[ ! $(mountpoint -q "$CHROOT/$USER") ] && sudo mount -t tmpfs -o defaults,nodev,mode=0755,uid=$(id -u),gid=$(id -g) tmpfs "$CHROOT/$USER" +mountpoint -q "$CHROOT/$USER" +test $? -ne 0 && sudo mount -t tmpfs -o defaults,nodev,mode=0755,uid=$(id -u),gid=$(id -g) tmpfs "$CHROOT/$USER" exit 0 From 044f004f3a535bcdba5a6ee734be93b1887b0ac9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 7 Jul 2023 22:58:39 +0200 Subject: [PATCH 504/971] upgpkg: discord-electron 0.0.27-7 Update optdepends --- discord-electron/.SRCINFO | 3 ++- discord-electron/PKGBUILD | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 0790f4b..3253d47 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v22) for increased security and performance pkgver = 0.0.27 - pkgrel = 6 + pkgrel = 7 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -12,6 +12,7 @@ pkgbase = discord-electron depends = electron22 depends = libxss optdepends = libpulse: Pulseaudio support + optdepends = libappindicator-gtk3: Systray indicator support optdepends = xdg-utils: Open files optdepends = rizin: Allow patching Krisp support provides = discord diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 57b1983..6daa64b 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -15,7 +15,7 @@ pkgname=discord-electron _pkgname=discord _electron=22 pkgver=0.0.27 -pkgrel=6 +pkgrel=7 pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') provides=("${_pkgname}") @@ -28,6 +28,7 @@ depends=("electron${_electron}" 'libxss') makedepends=('asar' 'curl' 'python-html2text') optdepends=( 'libpulse: Pulseaudio support' + 'libappindicator-gtk3: Systray indicator support' 'xdg-utils: Open files' 'rizin: Allow patching Krisp support' ) From ad257ee67ad771178e9009f601b31536354fa0b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 7 Jul 2023 22:59:23 +0200 Subject: [PATCH 505/971] upgpkg: discord-electron-openasar 0.0.27+811-1 Update to latest OpenAsar commit Update optdepends --- discord-electron-openasar/.SRCINFO | 5 +++-- discord-electron-openasar/PKGBUILD | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index dea6d15..cd203ba 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v22) for increased security and performance - pkgver = 0.0.27+810 + pkgver = 0.0.27+811 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -14,6 +14,7 @@ pkgbase = discord-electron-openasar depends = electron22 depends = libxss optdepends = libpulse: Pulseaudio support + optdepends = libappindicator-gtk3: Systray indicator support optdepends = xdg-utils: Open files optdepends = rizin: Allow patching Krisp support provides = discord @@ -21,7 +22,7 @@ pkgbase = discord-electron-openasar options = !strip source = https://dl.discordapp.net/apps/linux/0.0.27/discord-0.0.27.tar.gz source = discord-launcher.sh - source = git+https://github.com/goosemod/openasar.git#commit=cd443572e5df630c446a5956ade19c4fc065aca9 + source = git+https://github.com/goosemod/openasar.git#commit=5ac246dc92e9a2a9b314d899df728f37096c482b sha512sums = 285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f sha512sums = 4bbe010c28926ca898ac33da15ce8373060af44e0583e6956671fa2ee8a2a379a88a6ff9b4f886806fc05117428834852ba2e81a9163381c678c240067b7abd0 sha512sums = SKIP diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 1f62d45..62f5158 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -7,7 +7,7 @@ pkgname=discord-electron-openasar _pkgname=discord _electron=22 -pkgver=0.0.27+810 +pkgver=0.0.27+811 _pkgver=${pkgver%%+*} pkgrel=1 pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electron}) for increased security and performance" @@ -22,12 +22,13 @@ depends=("electron${_electron}" 'libxss') makedepends=('git' 'asar' 'nodejs' 'curl' 'python-html2text') optdepends=( 'libpulse: Pulseaudio support' + 'libappindicator-gtk3: Systray indicator support' 'xdg-utils: Open files' 'rizin: Allow patching Krisp support' ) source=("https://dl.discordapp.net/apps/linux/${_pkgver}/discord-${_pkgver}.tar.gz" 'discord-launcher.sh' - "git+https://github.com/goosemod/openasar.git#commit=cd443572e5df630c446a5956ade19c4fc065aca9") + "git+https://github.com/goosemod/openasar.git#commit=5ac246dc92e9a2a9b314d899df728f37096c482b") sha512sums=('285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f' '4bbe010c28926ca898ac33da15ce8373060af44e0583e6956671fa2ee8a2a379a88a6ff9b4f886806fc05117428834852ba2e81a9163381c678c240067b7abd0' 'SKIP') From e665d9a64f05824ec8e5164f593af133cf8c4e46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 13 Jul 2023 06:37:14 +0200 Subject: [PATCH 506/971] upgpkg: obs-vkcapture 1.4.1-1 upstream release --- obs-vkcapture/.SRCINFO | 6 +++--- obs-vkcapture/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/obs-vkcapture/.SRCINFO b/obs-vkcapture/.SRCINFO index 588caf9..f725f1d 100644 --- a/obs-vkcapture/.SRCINFO +++ b/obs-vkcapture/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = obs-vkcapture - pkgver = 1.4.0 + pkgver = 1.4.1 pkgrel = 1 url = https://github.com/nowrep/obs-vkcapture arch = x86_64 @@ -15,8 +15,8 @@ pkgbase = obs-vkcapture depends = libgl depends = libegl depends = obs-studio>=27 - source = https://github.com/nowrep/obs-vkcapture/archive/v1.4.0/obs-vkcapture-1.4.0.tar.gz - sha512sums = 8b487a09d54ada2482f218eb0b7d22228ca8bdb8ed7b71e8b9456554e48a2d2de80fc94ce336de1b574842b9839c402a98902039696df36a002e3f9e850b936d + source = https://github.com/nowrep/obs-vkcapture/archive/v1.4.1/obs-vkcapture-1.4.1.tar.gz + sha512sums = 3fa64486df0966f8e33262f821833a9a37a9d2a0e27fb9c6ffc9393e5c829444b995155aa54ddc60ab2cb07ca4f7f01c6581dc6c550335a26fddebd46ff604df pkgname = obs-vkcapture pkgdesc = OBS Linux Vulkan/OpenGL game capture diff --git a/obs-vkcapture/PKGBUILD b/obs-vkcapture/PKGBUILD index 62e981f..f757920 100644 --- a/obs-vkcapture/PKGBUILD +++ b/obs-vkcapture/PKGBUILD @@ -2,7 +2,7 @@ pkgbase=obs-vkcapture pkgname=("$pkgbase" "lib32-$pkgbase") -pkgver=1.4.0 +pkgver=1.4.1 pkgrel=1 url="https://github.com/nowrep/$pkgbase" license=('GPL2') @@ -10,7 +10,7 @@ arch=('x86_64') depends=('vulkan-icd-loader' 'libgl' 'libegl' 'obs-studio>=27') makedepends=('gcc' 'cmake' 'vulkan-headers' 'lib32-gcc-libs' 'lib32-vulkan-icd-loader' 'lib32-libgl' 'lib32-libegl') source=("https://github.com/nowrep/$pkgbase/archive/v$pkgver/$pkgbase-$pkgver.tar.gz") -sha512sums=('8b487a09d54ada2482f218eb0b7d22228ca8bdb8ed7b71e8b9456554e48a2d2de80fc94ce336de1b574842b9839c402a98902039696df36a002e3f9e850b936d') +sha512sums=('3fa64486df0966f8e33262f821833a9a37a9d2a0e27fb9c6ffc9393e5c829444b995155aa54ddc60ab2cb07ca4f7f01c6581dc6c550335a26fddebd46ff604df') build() { cmake -B build -S "$pkgbase-$pkgver" \ From 2650a49fac049ff46fa07b133a94079647584059 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 13 Jul 2023 06:38:02 +0200 Subject: [PATCH 507/971] upgpkg: gvisor-bin 20230710.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index 9e195ee..da23ccc 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20230605.0 + pkgver = 20230710.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20230605.0::https://storage.googleapis.com/gvisor/releases/release/20230605.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20230605.0::https://storage.googleapis.com/gvisor/releases/release/20230605.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = b96374f8b5a13c5fd51097cc16032b55241e2a0c6d286657d9a1ca7198be2b587d85aa595b69527858121cda63e1cde5cfb49fb57864d2c320ce356c4271f4f6 - sha512sums_x86_64 = e3555d7be221a855148e1a4aec81a9ba217c31cd2d83bb35108eeb98b332f1df22eca2fdaaeff82a6cd452046aa72ccc8800890b2ee1a85497862ffd2c8158fb - source_aarch64 = runsc-aarch64-20230605.0::https://storage.googleapis.com/gvisor/releases/release/20230605.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20230605.0::https://storage.googleapis.com/gvisor/releases/release/20230605.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = d959d727e78769d4f1bb2b7c15a557df02611b3bc7349fae02416d206403c5f5e442bcbd60389498fe5bcce4eb7d23385294bacfbd845eeda3746e4cdd681de2 - sha512sums_aarch64 = a1f7288e8d6301ccfe97f4d28aa44d429535e3a577c6b9db32553f2b82b27eb08763ba8232b92c77445418c474d0df7fbf06f6fd24b3da82a7e0ecfc455e3f11 + source_x86_64 = runsc-x86_64-20230710.0::https://storage.googleapis.com/gvisor/releases/release/20230710.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20230710.0::https://storage.googleapis.com/gvisor/releases/release/20230710.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = 40fe7f27de606c2ee35cf93e165b21502cf4c01610601a8b320a923785457ddd2353e5d519a7907ba7ef1b42577fce1c38d5c7d104e7a18f165cdf4d2124c030 + sha512sums_x86_64 = 61723a7a40ac826fd688a564e5a15843415032b29ec1582f526b08abcfb8c8f260f0106f09a6c8886cf16349268a1157e8a55ec27cf0d4db0945c5e9fe535eb4 + source_aarch64 = runsc-aarch64-20230710.0::https://storage.googleapis.com/gvisor/releases/release/20230710.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20230710.0::https://storage.googleapis.com/gvisor/releases/release/20230710.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = b7a4962f8cb267a45b623ec2a5fcd2da33f5849e9e036a34b1cb95e7fd559a0706d964c9d9aa07235d20abc2fe981ea244adcd05a3ff76263fcabb4d06690a94 + sha512sums_aarch64 = d50c7c661a5ff7de8ed0b5533f979f26946590dcf2b207e99846015358242aca61e2ea800f730c93940c109fdb4cf709fe428a9a8bf90218dc53d3a5b2dc5871 pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index 693fb29..b5d1bbe 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20230605.0 +pkgver=20230710.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('b96374f8b5a13c5fd51097cc16032b55241e2a0c6d286657d9a1ca7198be2b587d85aa595b69527858121cda63e1cde5cfb49fb57864d2c320ce356c4271f4f6' - 'e3555d7be221a855148e1a4aec81a9ba217c31cd2d83bb35108eeb98b332f1df22eca2fdaaeff82a6cd452046aa72ccc8800890b2ee1a85497862ffd2c8158fb') -sha512sums_aarch64=('d959d727e78769d4f1bb2b7c15a557df02611b3bc7349fae02416d206403c5f5e442bcbd60389498fe5bcce4eb7d23385294bacfbd845eeda3746e4cdd681de2' - 'a1f7288e8d6301ccfe97f4d28aa44d429535e3a577c6b9db32553f2b82b27eb08763ba8232b92c77445418c474d0df7fbf06f6fd24b3da82a7e0ecfc455e3f11') +sha512sums_x86_64=('40fe7f27de606c2ee35cf93e165b21502cf4c01610601a8b320a923785457ddd2353e5d519a7907ba7ef1b42577fce1c38d5c7d104e7a18f165cdf4d2124c030' + '61723a7a40ac826fd688a564e5a15843415032b29ec1582f526b08abcfb8c8f260f0106f09a6c8886cf16349268a1157e8a55ec27cf0d4db0945c5e9fe535eb4') +sha512sums_aarch64=('b7a4962f8cb267a45b623ec2a5fcd2da33f5849e9e036a34b1cb95e7fd559a0706d964c9d9aa07235d20abc2fe981ea244adcd05a3ff76263fcabb4d06690a94' + 'd50c7c661a5ff7de8ed0b5533f979f26946590dcf2b207e99846015358242aca61e2ea800f730c93940c109fdb4cf709fe428a9a8bf90218dc53d3a5b2dc5871') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From 0359d05d6825f6b3276126ff116bc51362ca8084 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 13 Jul 2023 06:38:29 +0200 Subject: [PATCH 508/971] upgpkg: gvisor-git 20230710.0-1 --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index ea52dd4..9f6558d 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20230605.0 + pkgver = 20230710.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index 9cf1318..e04f8e3 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20230605.0 +pkgver=20230710.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From 746bf996c0e487081d8c124da4180cde53e24148 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 13 Jul 2023 06:40:03 +0200 Subject: [PATCH 509/971] upgpkg: discord-electron 0.0.28-1 upstream release Refactor PKGBUILD slightly Update Krisp checksum Check for empty lines when parsing flags --- discord-electron/.SRCINFO | 10 ++++---- discord-electron/PKGBUILD | 36 ++++++++++++++-------------- discord-electron/discord-launcher.sh | 2 +- 3 files changed, 24 insertions(+), 24 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 3253d47..95cab16 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v22) for increased security and performance - pkgver = 0.0.27 - pkgrel = 7 + pkgver = 0.0.28 + pkgrel = 1 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.27/discord-0.0.27.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.28/discord-0.0.28.tar.gz source = discord-launcher.sh - sha512sums = 285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f - sha512sums = 4bbe010c28926ca898ac33da15ce8373060af44e0583e6956671fa2ee8a2a379a88a6ff9b4f886806fc05117428834852ba2e81a9163381c678c240067b7abd0 + sha512sums = 763fe47a0fb21a13e852bcc818d4e0e2ea4faf23fcfdc02fddfe06e8c829499e028e27b45d807d3b3edcc36788990f3f21c0460b9b8efc538b62f3b41aeb744d + sha512sums = f516b1dba10f423f1ebe69b14f70740232b19d343b603c3479ba1e1dd2b7bcf472e92d354fde3a9d553bfae78207ae0420be60372a4b38ba78c3421172230826 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 6daa64b..f631a5b 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -14,8 +14,8 @@ pkgname=discord-electron _pkgname=discord _electron=22 -pkgver=0.0.27 -pkgrel=7 +pkgver=0.0.28 +pkgrel=1 pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') provides=("${_pkgname}") @@ -32,31 +32,27 @@ optdepends=( 'xdg-utils: Open files' 'rizin: Allow patching Krisp support' ) -source=("https://dl.discordapp.net/apps/linux/${pkgver}/discord-${pkgver}.tar.gz" +source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f' - '4bbe010c28926ca898ac33da15ce8373060af44e0583e6956671fa2ee8a2a379a88a6ff9b4f886806fc05117428834852ba2e81a9163381c678c240067b7abd0') +sha512sums=('763fe47a0fb21a13e852bcc818d4e0e2ea4faf23fcfdc02fddfe06e8c829499e028e27b45d807d3b3edcc36788990f3f21c0460b9b8efc538b62f3b41aeb744d' + 'f516b1dba10f423f1ebe69b14f70740232b19d343b603c3479ba1e1dd2b7bcf472e92d354fde3a9d553bfae78207ae0420be60372a4b38ba78c3421172230826') -_krisp_b2sum='592f55259500afc0d7fd334a10d3c1991fae05db870bf12437edc43cf693988195341f2cb827aba333c0e65fb4cb40dccfcc5d6a84dea4a1645f9563505b6496' +_krisp_b2sum='56c8c5167e3c4b51720accf0acfe46e7e073b015600088b6bb4d2b7a259cd788c4facba2d7332b535cfa39b91ee94840d6ea905c5d0c9cca43fa0a26f5185cc9' prepare() { # prepare launcher script sed -i "s|@PKGNAME@|${_pkgname}|g;s|@PKGVER@|${pkgver}|g;s|@ELECTRON@|${_electron}|g;s|@KRISPB2@|${_krisp_b2sum}|g" discord-launcher.sh # fix the .desktop file - sed -i "s|Exec=.*|Exec=/usr/bin/${_pkgname}|" Discord/$_pkgname.desktop + sed -i "s|Exec=.*|Exec=/usr/bin/${_pkgname}|" ${_pkgname^}/$_pkgname.desktop # create the license files curl https://discord.com/terms | html2text >"${srcdir}"/LICENSE.md curl https://discord.com/licenses | html2text >"${srcdir}"/OSS-LICENSES.md } -package() { - # create necessary directories - install -d "${pkgdir}"/usr/{lib/$_pkgname,bin} - install -d "${pkgdir}"/usr/share/{pixmaps,applications,licenses/$_pkgname} - - cd "${srcdir}/Discord" +build() { + cd "${srcdir}"/${_pkgname^} # use system electron asar e resources/app.asar resources/app @@ -65,16 +61,20 @@ package() { sed -i "s|exeDir,|'/usr/share/pixmaps',|" resources/app/app_bootstrap/autoStart/linux.js asar p resources/app resources/app.asar rm -rf resources/app +} + +package() { + # create necessary directories + install -d "${pkgdir}"/usr/{lib/$_pkgname,bin} + install -d "${pkgdir}"/usr/share/{pixmaps,applications,licenses/$_pkgname} # copy relevant data - cp -r resources/* "${pkgdir}"/usr/lib/$_pkgname/ - cp $_pkgname.png \ + cp -r ${_pkgname^}/resources/* "${pkgdir}"/usr/lib/$_pkgname/ + cp ${_pkgname^}/$_pkgname.png \ "${pkgdir}"/usr/share/pixmaps/$_pkgname.png - cp $_pkgname.desktop \ + cp ${_pkgname^}/$_pkgname.desktop \ "${pkgdir}"/usr/share/applications/$_pkgname.desktop - cd "${srcdir}" - # install the launch script install -Dm 755 discord-launcher.sh "${pkgdir}"/usr/bin/$_pkgname diff --git a/discord-electron/discord-launcher.sh b/discord-electron/discord-launcher.sh index 898e51e..6012a36 100644 --- a/discord-electron/discord-launcher.sh +++ b/discord-electron/discord-launcher.sh @@ -31,7 +31,7 @@ EOF fi for line in "${MAPFILE[@]}"; do - if [[ ! "${line}" =~ ^[[:space:]]*#.* ]]; then + if [[ ! "${line}" =~ ^[[:space:]]*#.* ]] && [[ -n "${line}" ]]; then flags+=("${line}") fi done From 454ccfafa44a9c450a49ba76b2ab2ff5f0ef7200 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 13 Jul 2023 06:40:55 +0200 Subject: [PATCH 510/971] upgpkg: discord-electron-openasar 0.0.28+811-1 upstream release Refactor PKGBUILD slightly Update Krisp checksum Check for empty lines when parsing flags --- discord-electron-openasar/.SRCINFO | 8 ++-- discord-electron-openasar/PKGBUILD | 40 +++++++++---------- discord-electron-openasar/discord-launcher.sh | 2 +- 3 files changed, 24 insertions(+), 26 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index cd203ba..dfc2ecb 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v22) for increased security and performance - pkgver = 0.0.27+811 + pkgver = 0.0.28+811 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -20,11 +20,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.27/discord-0.0.27.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.28/discord-0.0.28.tar.gz source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=5ac246dc92e9a2a9b314d899df728f37096c482b - sha512sums = 285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f - sha512sums = 4bbe010c28926ca898ac33da15ce8373060af44e0583e6956671fa2ee8a2a379a88a6ff9b4f886806fc05117428834852ba2e81a9163381c678c240067b7abd0 + sha512sums = 763fe47a0fb21a13e852bcc818d4e0e2ea4faf23fcfdc02fddfe06e8c829499e028e27b45d807d3b3edcc36788990f3f21c0460b9b8efc538b62f3b41aeb744d + sha512sums = f516b1dba10f423f1ebe69b14f70740232b19d343b603c3479ba1e1dd2b7bcf472e92d354fde3a9d553bfae78207ae0420be60372a4b38ba78c3421172230826 sha512sums = SKIP pkgname = discord-electron-openasar diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 62f5158..d4430dd 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -7,7 +7,7 @@ pkgname=discord-electron-openasar _pkgname=discord _electron=22 -pkgver=0.0.27+811 +pkgver=0.0.28+811 _pkgver=${pkgver%%+*} pkgrel=1 pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electron}) for increased security and performance" @@ -26,14 +26,14 @@ optdepends=( 'xdg-utils: Open files' 'rizin: Allow patching Krisp support' ) -source=("https://dl.discordapp.net/apps/linux/${_pkgver}/discord-${_pkgver}.tar.gz" +source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=5ac246dc92e9a2a9b314d899df728f37096c482b") -sha512sums=('285a0119b4740402a3fa94d3679a52bc8d883413ee32187e90087960a4d34aaf316788d2708bbccafe3f995c2b99767b45bc4b7c731704ef887a8de1b3d3926f' - '4bbe010c28926ca898ac33da15ce8373060af44e0583e6956671fa2ee8a2a379a88a6ff9b4f886806fc05117428834852ba2e81a9163381c678c240067b7abd0' +sha512sums=('763fe47a0fb21a13e852bcc818d4e0e2ea4faf23fcfdc02fddfe06e8c829499e028e27b45d807d3b3edcc36788990f3f21c0460b9b8efc538b62f3b41aeb744d' + 'f516b1dba10f423f1ebe69b14f70740232b19d343b603c3479ba1e1dd2b7bcf472e92d354fde3a9d553bfae78207ae0420be60372a4b38ba78c3421172230826' 'SKIP') -_krisp_b2sum='592f55259500afc0d7fd334a10d3c1991fae05db870bf12437edc43cf693988195341f2cb827aba333c0e65fb4cb40dccfcc5d6a84dea4a1645f9563505b6496' +_krisp_b2sum='56c8c5167e3c4b51720accf0acfe46e7e073b015600088b6bb4d2b7a259cd788c4facba2d7332b535cfa39b91ee94840d6ea905c5d0c9cca43fa0a26f5185cc9' # just in case I get the version wrong pkgver() { @@ -46,37 +46,35 @@ prepare() { sed -i "s|@PKGNAME@|${_pkgname}|g;s|@PKGVER@|${_pkgver}|g;s|@ELECTRON@|${_electron}|g;s|@KRISPB2@|${_krisp_b2sum}|g" discord-launcher.sh # fix the .desktop file - sed -i "s|Exec=.*|Exec=/usr/bin/${_pkgname}|" Discord/$_pkgname.desktop + sed -i "s|Exec=.*|Exec=/usr/bin/${_pkgname}|" ${_pkgname^}/$_pkgname.desktop # create the license files curl https://discord.com/terms | html2text >"${srcdir}"/LICENSE.md curl https://discord.com/licenses | html2text >"${srcdir}"/OSS-LICENSES.md } +build() { + cd "${srcdir}"/openasar + + # pack openasar + sed -i -e "s/nightly/nightly-$(git rev-parse HEAD | cut -c 1-7)/" src/index.js + node scripts/strip.js + asar p src app.asar +} + package() { # create necessary directories install -d "${pkgdir}"/usr/{lib/$_pkgname,bin} install -d "${pkgdir}"/usr/share/{pixmaps,applications,licenses/$_pkgname} - cd "${srcdir}/openasar" - - # pack openasar - sed -i -e "s/nightly/nightly-$(git rev-parse HEAD | cut -c 1-7)/" src/index.js - node scripts/strip.js - asar p src app.asar - - cd "${srcdir}/Discord" - # copy relevant data - cp -r resources/* "${pkgdir}"/usr/lib/$_pkgname/ - cp $_pkgname.png \ + cp -r ${_pkgname^}/resources/* "${pkgdir}"/usr/lib/$_pkgname/ + cp ${_pkgname^}/$_pkgname.png \ "${pkgdir}"/usr/share/pixmaps/$_pkgname.png - cp $_pkgname.desktop \ + cp ${_pkgname^}/$_pkgname.desktop \ "${pkgdir}"/usr/share/applications/$_pkgname.desktop - cd "${srcdir}" - - # copy openasar + # overwrite Discord asar install -Dm 644 openasar/app.asar "${pkgdir}"/usr/lib/$_pkgname/ # install the launch script diff --git a/discord-electron-openasar/discord-launcher.sh b/discord-electron-openasar/discord-launcher.sh index 898e51e..6012a36 100644 --- a/discord-electron-openasar/discord-launcher.sh +++ b/discord-electron-openasar/discord-launcher.sh @@ -31,7 +31,7 @@ EOF fi for line in "${MAPFILE[@]}"; do - if [[ ! "${line}" =~ ^[[:space:]]*#.* ]]; then + if [[ ! "${line}" =~ ^[[:space:]]*#.* ]] && [[ -n "${line}" ]]; then flags+=("${line}") fi done From 218e460b908b9bde5cd3be4dddc3bda46255ef02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 13 Jul 2023 17:15:00 +0200 Subject: [PATCH 511/971] upgpkg: clonezilla-unstable 5.4.12-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 3b977d2..b6f5eb9 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.4.11 + pkgver = 5.4.12 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.11.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.12.tar.xz source = usrbin.patch - sha256sums = 0440ff6b57418fcccd69511343f9462bb9cfdf74e56e6c03f3e1634011292252 + sha256sums = c6dba53d00a24da502ce1a09197b27769326f91d7d126ab8a5a9815159ff8646 sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index e0434c8..8d18cac 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.4.11 +pkgver=5.4.12 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('0440ff6b57418fcccd69511343f9462bb9cfdf74e56e6c03f3e1634011292252' +sha256sums=('c6dba53d00a24da502ce1a09197b27769326f91d7d126ab8a5a9815159ff8646' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From 172a50734fcb92560631f38961a841674533a461 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 13 Jul 2023 17:15:00 +0200 Subject: [PATCH 512/971] upgpkg: clonezilla-unstable 5.4.12-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 3b977d2..b6f5eb9 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.4.11 + pkgver = 5.4.12 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.11.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.12.tar.xz source = usrbin.patch - sha256sums = 0440ff6b57418fcccd69511343f9462bb9cfdf74e56e6c03f3e1634011292252 + sha256sums = c6dba53d00a24da502ce1a09197b27769326f91d7d126ab8a5a9815159ff8646 sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index e0434c8..8d18cac 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.4.11 +pkgver=5.4.12 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('0440ff6b57418fcccd69511343f9462bb9cfdf74e56e6c03f3e1634011292252' +sha256sums=('c6dba53d00a24da502ce1a09197b27769326f91d7d126ab8a5a9815159ff8646' '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') prepare() { From d909dffc9930bc2a94a43fe07f3bfbe3d7feb060 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 21 Jul 2023 20:45:52 +0200 Subject: [PATCH 513/971] upgpkg: clonezilla-unstable 5.5.1-1 upstream release --- clonezilla-unstable/.SRCINFO | 8 ++++---- clonezilla-unstable/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index b6f5eb9..df6cefd 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.4.12 + pkgver = 5.5.1 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.12.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.1.tar.xz source = usrbin.patch - sha256sums = c6dba53d00a24da502ce1a09197b27769326f91d7d126ab8a5a9815159ff8646 - sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 + sha512sums = 3a013814d3ea7ccd63103aacc73bb3fb052e6e120e42d84f4360402657560e8e3b0b893a652ece39f6f1867430158556ba9e36f690f50144e57af678263bdf24 + sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 8d18cac..dfb1b0b 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.4.12 +pkgver=5.5.1 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,8 +16,8 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('c6dba53d00a24da502ce1a09197b27769326f91d7d126ab8a5a9815159ff8646' - '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') +sha512sums=('3a013814d3ea7ccd63103aacc73bb3fb052e6e120e42d84f4360402657560e8e3b0b893a652ece39f6f1867430158556ba9e36f690f50144e57af678263bdf24' + '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { cd "${_pkgname}-${pkgver}" From 4c4022c24a98eee357288592742292b6c8012885 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 21 Jul 2023 20:45:52 +0200 Subject: [PATCH 514/971] upgpkg: clonezilla-unstable 5.5.1-1 upstream release --- .SRCINFO | 8 ++++---- PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index b6f5eb9..df6cefd 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.4.12 + pkgver = 5.5.1 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.4.12.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.1.tar.xz source = usrbin.patch - sha256sums = c6dba53d00a24da502ce1a09197b27769326f91d7d126ab8a5a9815159ff8646 - sha256sums = 9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6 + sha512sums = 3a013814d3ea7ccd63103aacc73bb3fb052e6e120e42d84f4360402657560e8e3b0b893a652ece39f6f1867430158556ba9e36f690f50144e57af678263bdf24 + sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 8d18cac..dfb1b0b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.4.12 +pkgver=5.5.1 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,8 +16,8 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha256sums=('c6dba53d00a24da502ce1a09197b27769326f91d7d126ab8a5a9815159ff8646' - '9340f18b27a1b3b41c4935c5831f6503e4cadf333f03433769906da40a6e38e6') +sha512sums=('3a013814d3ea7ccd63103aacc73bb3fb052e6e120e42d84f4360402657560e8e3b0b893a652ece39f6f1867430158556ba9e36f690f50144e57af678263bdf24' + '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { cd "${_pkgname}-${pkgver}" From ca31d75eb8ac42d431cfab48b2afebc436d51c74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 24 Jul 2023 22:28:09 +0200 Subject: [PATCH 515/971] upgpkg: prometheus-postgresql-exporter 0.13.2-1 upstream release --- prometheus-postgresql-exporter/.SRCINFO | 10 +++++----- prometheus-postgresql-exporter/PKGBUILD | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/prometheus-postgresql-exporter/.SRCINFO b/prometheus-postgresql-exporter/.SRCINFO index a91ca00..00002ef 100644 --- a/prometheus-postgresql-exporter/.SRCINFO +++ b/prometheus-postgresql-exporter/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = prometheus-postgresql-exporter pkgdesc = Prometheus exporter for PostgreSQL - pkgver = 0.13.1 + pkgver = 0.13.2 pkgrel = 1 url = https://github.com/prometheus-community/postgres_exporter arch = x86_64 @@ -9,11 +9,11 @@ pkgbase = prometheus-postgresql-exporter makedepends = go makedepends = make backup = etc/conf.d/prometheus-postgresql-exporter - source = https://github.com/prometheus-community/postgres_exporter/archive/v0.13.1/postgres_exporter-0.13.1.tar.gz + source = https://github.com/prometheus-community/postgres_exporter/archive/v0.13.2/postgres_exporter-0.13.2.tar.gz source = prometheus-postgresql-exporter.service source = prometheus-postgresql-exporter.conf - sha256sums = a1c61f96e81872db707c59e8401044674db2cdbe5966548d954c0d6d81162bd5 - sha256sums = 0d86e650d88c8d4a8bc5b26faecb75023e069eaf29582135bcb0202e4a69a9b9 - sha256sums = 5436ad34fbcd6faab69da8675631f3eb5b89d964682eb23164bf4bb816ad1897 + sha512sums = d3f6e6d22cd967a31eec75a0df19e53df6df959c9e749f501e753de0881c1f958019cecf5ee2a65f8fa1b3424385ea2d3e92eb7abbdd1fdcf7b8eeebb7dad564 + sha512sums = 598d201054de604ac78e2b335ad9a219c5d130de6901a6fe64643ac5c9d74314548b65ba2ee675095d8a140b0b48a896cadf6745848e210143761d81e2534402 + sha512sums = 70e5f4a0a184322d21204a7a7a17fd604dc425b106e9ab1897c6805c52469ecad732e96f7b0f0d35763f6bc3945dc5562cd27459776e83c609834c931d09508f pkgname = prometheus-postgresql-exporter diff --git a/prometheus-postgresql-exporter/PKGBUILD b/prometheus-postgresql-exporter/PKGBUILD index 20025d1..4ce37ea 100644 --- a/prometheus-postgresql-exporter/PKGBUILD +++ b/prometheus-postgresql-exporter/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Nils Czernia pkgname=prometheus-postgresql-exporter -pkgver=0.13.1 +pkgver=0.13.2 pkgrel=1 pkgdesc="Prometheus exporter for PostgreSQL" arch=('x86_64') @@ -13,9 +13,9 @@ backup=('etc/conf.d/prometheus-postgresql-exporter') source=("https://github.com/prometheus-community/postgres_exporter/archive/v${pkgver}/postgres_exporter-${pkgver}.tar.gz" "prometheus-postgresql-exporter.service" "prometheus-postgresql-exporter.conf") -sha256sums=('a1c61f96e81872db707c59e8401044674db2cdbe5966548d954c0d6d81162bd5' - '0d86e650d88c8d4a8bc5b26faecb75023e069eaf29582135bcb0202e4a69a9b9' - '5436ad34fbcd6faab69da8675631f3eb5b89d964682eb23164bf4bb816ad1897') +sha512sums=('d3f6e6d22cd967a31eec75a0df19e53df6df959c9e749f501e753de0881c1f958019cecf5ee2a65f8fa1b3424385ea2d3e92eb7abbdd1fdcf7b8eeebb7dad564' + '598d201054de604ac78e2b335ad9a219c5d130de6901a6fe64643ac5c9d74314548b65ba2ee675095d8a140b0b48a896cadf6745848e210143761d81e2534402' + '70e5f4a0a184322d21204a7a7a17fd604dc425b106e9ab1897c6805c52469ecad732e96f7b0f0d35763f6bc3945dc5562cd27459776e83c609834c931d09508f') prepare() { cd "postgres_exporter-${pkgver}" From 0cd1e6cf168e23b63a17ab13743d0e1f89eeb7c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 27 Jul 2023 16:20:40 +0200 Subject: [PATCH 516/971] upgpkg: clonezilla-unstable 5.5.2-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index df6cefd..992fcc1 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.1 + pkgver = 5.5.2 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.1.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.2.tar.xz source = usrbin.patch - sha512sums = 3a013814d3ea7ccd63103aacc73bb3fb052e6e120e42d84f4360402657560e8e3b0b893a652ece39f6f1867430158556ba9e36f690f50144e57af678263bdf24 + sha512sums = f066de05ee9187383a523848df7f6889710f584cd6191529f1a5785bc578b61d1ff982c3e52d7b046c8faa6f8a5a25ba8c49ae9247b14b428a2b49bd1eacd779 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index dfb1b0b..11603f0 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.1 +pkgver=5.5.2 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('3a013814d3ea7ccd63103aacc73bb3fb052e6e120e42d84f4360402657560e8e3b0b893a652ece39f6f1867430158556ba9e36f690f50144e57af678263bdf24' +sha512sums=('f066de05ee9187383a523848df7f6889710f584cd6191529f1a5785bc578b61d1ff982c3e52d7b046c8faa6f8a5a25ba8c49ae9247b14b428a2b49bd1eacd779' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 4c601baf2b8b010258e47c37af11411fac9fc85b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 27 Jul 2023 16:20:40 +0200 Subject: [PATCH 517/971] upgpkg: clonezilla-unstable 5.5.2-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index df6cefd..992fcc1 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.1 + pkgver = 5.5.2 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.1.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.2.tar.xz source = usrbin.patch - sha512sums = 3a013814d3ea7ccd63103aacc73bb3fb052e6e120e42d84f4360402657560e8e3b0b893a652ece39f6f1867430158556ba9e36f690f50144e57af678263bdf24 + sha512sums = f066de05ee9187383a523848df7f6889710f584cd6191529f1a5785bc578b61d1ff982c3e52d7b046c8faa6f8a5a25ba8c49ae9247b14b428a2b49bd1eacd779 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index dfb1b0b..11603f0 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.1 +pkgver=5.5.2 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('3a013814d3ea7ccd63103aacc73bb3fb052e6e120e42d84f4360402657560e8e3b0b893a652ece39f6f1867430158556ba9e36f690f50144e57af678263bdf24' +sha512sums=('f066de05ee9187383a523848df7f6889710f584cd6191529f1a5785bc578b61d1ff982c3e52d7b046c8faa6f8a5a25ba8c49ae9247b14b428a2b49bd1eacd779' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 69284968ac3238d0f2e5ed5ba0efbc9d4b92bd12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 28 Jul 2023 20:48:28 +0200 Subject: [PATCH 518/971] upgpkg: clonezilla-unstable 5.5.3-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 992fcc1..2c4c999 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.2 + pkgver = 5.5.3 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.2.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.3.tar.xz source = usrbin.patch - sha512sums = f066de05ee9187383a523848df7f6889710f584cd6191529f1a5785bc578b61d1ff982c3e52d7b046c8faa6f8a5a25ba8c49ae9247b14b428a2b49bd1eacd779 + sha512sums = 6ca2e58374bea3a47397a4c1ca785565d269fe4a7658350c2dfe7f8657773851eacc83cb41d8a3a5e9435b013ff7102d07a16995f7d14c94611fbd57dfc7992c sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 11603f0..c8d0662 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.2 +pkgver=5.5.3 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('f066de05ee9187383a523848df7f6889710f584cd6191529f1a5785bc578b61d1ff982c3e52d7b046c8faa6f8a5a25ba8c49ae9247b14b428a2b49bd1eacd779' +sha512sums=('6ca2e58374bea3a47397a4c1ca785565d269fe4a7658350c2dfe7f8657773851eacc83cb41d8a3a5e9435b013ff7102d07a16995f7d14c94611fbd57dfc7992c' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From f48f1d89c37b538dd9d00e730dec29b2475520e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 28 Jul 2023 20:48:28 +0200 Subject: [PATCH 519/971] upgpkg: clonezilla-unstable 5.5.3-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 992fcc1..2c4c999 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.2 + pkgver = 5.5.3 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.2.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.3.tar.xz source = usrbin.patch - sha512sums = f066de05ee9187383a523848df7f6889710f584cd6191529f1a5785bc578b61d1ff982c3e52d7b046c8faa6f8a5a25ba8c49ae9247b14b428a2b49bd1eacd779 + sha512sums = 6ca2e58374bea3a47397a4c1ca785565d269fe4a7658350c2dfe7f8657773851eacc83cb41d8a3a5e9435b013ff7102d07a16995f7d14c94611fbd57dfc7992c sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 11603f0..c8d0662 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.2 +pkgver=5.5.3 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('f066de05ee9187383a523848df7f6889710f584cd6191529f1a5785bc578b61d1ff982c3e52d7b046c8faa6f8a5a25ba8c49ae9247b14b428a2b49bd1eacd779' +sha512sums=('6ca2e58374bea3a47397a4c1ca785565d269fe4a7658350c2dfe7f8657773851eacc83cb41d8a3a5e9435b013ff7102d07a16995f7d14c94611fbd57dfc7992c' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 41b612facad747c216a5147f966e5a2fe3149bab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 29 Jul 2023 15:09:01 +0200 Subject: [PATCH 520/971] upgpkg: clonezilla-unstable 5.5.4-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 2c4c999..e34ebe7 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.3 + pkgver = 5.5.4 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.3.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.4.tar.xz source = usrbin.patch - sha512sums = 6ca2e58374bea3a47397a4c1ca785565d269fe4a7658350c2dfe7f8657773851eacc83cb41d8a3a5e9435b013ff7102d07a16995f7d14c94611fbd57dfc7992c + sha512sums = 0ace1de7ac1f640388dc3bfdfebbe301b158f9808d63d516d95c697cac70596452d993f8e8d6a8411f57c83e4753e57ecc3ec2035b0ec6295f3a04429614574c sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index c8d0662..a5bd982 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.3 +pkgver=5.5.4 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('6ca2e58374bea3a47397a4c1ca785565d269fe4a7658350c2dfe7f8657773851eacc83cb41d8a3a5e9435b013ff7102d07a16995f7d14c94611fbd57dfc7992c' +sha512sums=('0ace1de7ac1f640388dc3bfdfebbe301b158f9808d63d516d95c697cac70596452d993f8e8d6a8411f57c83e4753e57ecc3ec2035b0ec6295f3a04429614574c' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 104bfeec537bae1f6c2761f8237f634f73a3d1b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 29 Jul 2023 15:09:01 +0200 Subject: [PATCH 521/971] upgpkg: clonezilla-unstable 5.5.4-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 2c4c999..e34ebe7 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.3 + pkgver = 5.5.4 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.3.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.4.tar.xz source = usrbin.patch - sha512sums = 6ca2e58374bea3a47397a4c1ca785565d269fe4a7658350c2dfe7f8657773851eacc83cb41d8a3a5e9435b013ff7102d07a16995f7d14c94611fbd57dfc7992c + sha512sums = 0ace1de7ac1f640388dc3bfdfebbe301b158f9808d63d516d95c697cac70596452d993f8e8d6a8411f57c83e4753e57ecc3ec2035b0ec6295f3a04429614574c sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index c8d0662..a5bd982 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.3 +pkgver=5.5.4 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('6ca2e58374bea3a47397a4c1ca785565d269fe4a7658350c2dfe7f8657773851eacc83cb41d8a3a5e9435b013ff7102d07a16995f7d14c94611fbd57dfc7992c' +sha512sums=('0ace1de7ac1f640388dc3bfdfebbe301b158f9808d63d516d95c697cac70596452d993f8e8d6a8411f57c83e4753e57ecc3ec2035b0ec6295f3a04429614574c' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 1503b1d0b8b93cc4a6425c913dc72d87b52846bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 2 Aug 2023 21:04:17 +0200 Subject: [PATCH 522/971] upgpkg: clonezilla-unstable 5.5.5-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index e34ebe7..79efb04 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.4 + pkgver = 5.5.5 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.4.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.5.tar.xz source = usrbin.patch - sha512sums = 0ace1de7ac1f640388dc3bfdfebbe301b158f9808d63d516d95c697cac70596452d993f8e8d6a8411f57c83e4753e57ecc3ec2035b0ec6295f3a04429614574c + sha512sums = ef516d1d6425138610a044e31daa3f5d2514002108da60f8985bde0950f89e59b240e507650f3779be3a7e25eb2d285c2822ccba4669dfea12f47bd693bd9634 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index a5bd982..9219631 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.4 +pkgver=5.5.5 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('0ace1de7ac1f640388dc3bfdfebbe301b158f9808d63d516d95c697cac70596452d993f8e8d6a8411f57c83e4753e57ecc3ec2035b0ec6295f3a04429614574c' +sha512sums=('ef516d1d6425138610a044e31daa3f5d2514002108da60f8985bde0950f89e59b240e507650f3779be3a7e25eb2d285c2822ccba4669dfea12f47bd693bd9634' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From e3b1fee86fe5a4ed46fe29eaae4172a68b8503b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 2 Aug 2023 21:04:17 +0200 Subject: [PATCH 523/971] upgpkg: clonezilla-unstable 5.5.5-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index e34ebe7..79efb04 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.4 + pkgver = 5.5.5 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.4.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.5.tar.xz source = usrbin.patch - sha512sums = 0ace1de7ac1f640388dc3bfdfebbe301b158f9808d63d516d95c697cac70596452d993f8e8d6a8411f57c83e4753e57ecc3ec2035b0ec6295f3a04429614574c + sha512sums = ef516d1d6425138610a044e31daa3f5d2514002108da60f8985bde0950f89e59b240e507650f3779be3a7e25eb2d285c2822ccba4669dfea12f47bd693bd9634 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index a5bd982..9219631 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.4 +pkgver=5.5.5 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('0ace1de7ac1f640388dc3bfdfebbe301b158f9808d63d516d95c697cac70596452d993f8e8d6a8411f57c83e4753e57ecc3ec2035b0ec6295f3a04429614574c' +sha512sums=('ef516d1d6425138610a044e31daa3f5d2514002108da60f8985bde0950f89e59b240e507650f3779be3a7e25eb2d285c2822ccba4669dfea12f47bd693bd9634' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 29bdcba26fd1ca62bd05c0c8bfae2cc68037989a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 2 Aug 2023 21:05:00 +0200 Subject: [PATCH 524/971] upgpkg: sublime-text-4 4.4151-1 upstream release --- sublime-text-4/.SRCINFO | 12 ++++++------ sublime-text-4/PKGBUILD | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/sublime-text-4/.SRCINFO b/sublime-text-4/.SRCINFO index 9874f08..b8dc7fb 100644 --- a/sublime-text-4/.SRCINFO +++ b/sublime-text-4/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = sublime-text-4 pkgdesc = Sophisticated text editor for code, html and prose - stable build - pkgver = 4.4143 - pkgrel = 4 + pkgver = 4.4151 + pkgrel = 1 url = https://www.sublimetext.com/download arch = x86_64 arch = aarch64 @@ -10,9 +10,9 @@ pkgbase = sublime-text-4 depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4143_x64.tar.xz - sha256sums_x86_64 = 7de862c38d19367414117110328dded754ac709fed54c8cc5cb0737c894c073c - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4143_arm64.tar.xz - sha256sums_aarch64 = e33a4d1d51073bdf2f1dc5936ea9b096b078f87230a10a23790beaee702a4a93 + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4151_x64.tar.xz + sha512sums_x86_64 = 74e1c11117a0cfedd7b435143d0d36ce1fef058ea9b1008e979b4b91c405c0fc6a0e0490b34db2bea9699371c0f938a1f0e558b4b0dbeb0d452c942d2c07f21d + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4151_arm64.tar.xz + sha512sums_aarch64 = 2989a66a7e3fc3ac752a50467415428712d5724f62ca188429550e9c546b20e0e77da022877c3c588bf743b950fad1133d5b9c43a4ad5df04e4d2eca93a35050 pkgname = sublime-text-4 diff --git a/sublime-text-4/PKGBUILD b/sublime-text-4/PKGBUILD index 58f042b..6497d80 100644 --- a/sublime-text-4/PKGBUILD +++ b/sublime-text-4/PKGBUILD @@ -1,8 +1,8 @@ # Maintainer: Manuel Hüsers pkgname=sublime-text-4 -pkgver=4.4143 -pkgrel=4 +pkgver=4.4151 +pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - stable build' arch=('x86_64' 'aarch64') url='https://www.sublimetext.com/download' @@ -14,8 +14,8 @@ provides=('sublime-text') source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha256sums_x86_64=('7de862c38d19367414117110328dded754ac709fed54c8cc5cb0737c894c073c') -sha256sums_aarch64=('e33a4d1d51073bdf2f1dc5936ea9b096b078f87230a10a23790beaee702a4a93') +sha512sums_x86_64=('74e1c11117a0cfedd7b435143d0d36ce1fef058ea9b1008e979b4b91c405c0fc6a0e0490b34db2bea9699371c0f938a1f0e558b4b0dbeb0d452c942d2c07f21d') +sha512sums_aarch64=('2989a66a7e3fc3ac752a50467415428712d5724f62ca188429550e9c546b20e0e77da022877c3c588bf743b950fad1133d5b9c43a4ad5df04e4d2eca93a35050') package() { cd "${srcdir}" From 7a63ba662d2343b22ba0088a3739c17f90fc6e4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 2 Aug 2023 21:30:51 +0200 Subject: [PATCH 525/971] upgpkg: sublime-text-4 4.4152-1 upstream release --- sublime-text-4/.SRCINFO | 10 +++++----- sublime-text-4/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-4/.SRCINFO b/sublime-text-4/.SRCINFO index b8dc7fb..0a3e5e9 100644 --- a/sublime-text-4/.SRCINFO +++ b/sublime-text-4/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-4 pkgdesc = Sophisticated text editor for code, html and prose - stable build - pkgver = 4.4151 + pkgver = 4.4152 pkgrel = 1 url = https://www.sublimetext.com/download arch = x86_64 @@ -10,9 +10,9 @@ pkgbase = sublime-text-4 depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4151_x64.tar.xz - sha512sums_x86_64 = 74e1c11117a0cfedd7b435143d0d36ce1fef058ea9b1008e979b4b91c405c0fc6a0e0490b34db2bea9699371c0f938a1f0e558b4b0dbeb0d452c942d2c07f21d - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4151_arm64.tar.xz - sha512sums_aarch64 = 2989a66a7e3fc3ac752a50467415428712d5724f62ca188429550e9c546b20e0e77da022877c3c588bf743b950fad1133d5b9c43a4ad5df04e4d2eca93a35050 + source_x86_64 = https://download.sublimetext.com/sublime_text_build_4152_x64.tar.xz + sha512sums_x86_64 = 8ed3d7ed4a5e235bda670cea1b24d3d9511a47368dced0dbd44e802fcc250f9b33b3562014553bed0ac61daf6ce0871409a5f655aa013c1f09a007b7721f4a37 + source_aarch64 = https://download.sublimetext.com/sublime_text_build_4152_arm64.tar.xz + sha512sums_aarch64 = 2e696e3abfdf6b6d897b65565e0ecbd05a425a7048eb1f89cede350aca65048498a64b5b688e1227c4bd0ee697c1a7f5ea7fbba3538de070577f4f348fa02c8a pkgname = sublime-text-4 diff --git a/sublime-text-4/PKGBUILD b/sublime-text-4/PKGBUILD index 6497d80..1fa4db0 100644 --- a/sublime-text-4/PKGBUILD +++ b/sublime-text-4/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Manuel Hüsers pkgname=sublime-text-4 -pkgver=4.4151 +pkgver=4.4152 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - stable build' arch=('x86_64' 'aarch64') @@ -14,8 +14,8 @@ provides=('sublime-text') source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha512sums_x86_64=('74e1c11117a0cfedd7b435143d0d36ce1fef058ea9b1008e979b4b91c405c0fc6a0e0490b34db2bea9699371c0f938a1f0e558b4b0dbeb0d452c942d2c07f21d') -sha512sums_aarch64=('2989a66a7e3fc3ac752a50467415428712d5724f62ca188429550e9c546b20e0e77da022877c3c588bf743b950fad1133d5b9c43a4ad5df04e4d2eca93a35050') +sha512sums_x86_64=('8ed3d7ed4a5e235bda670cea1b24d3d9511a47368dced0dbd44e802fcc250f9b33b3562014553bed0ac61daf6ce0871409a5f655aa013c1f09a007b7721f4a37') +sha512sums_aarch64=('2e696e3abfdf6b6d897b65565e0ecbd05a425a7048eb1f89cede350aca65048498a64b5b688e1227c4bd0ee697c1a7f5ea7fbba3538de070577f4f348fa02c8a') package() { cd "${srcdir}" From 5232b91096619b02d3ac04c5a4c9efaa8f3fc37f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 4 Aug 2023 20:38:08 +0200 Subject: [PATCH 526/971] upgpkg: sublime-text-4 4.4152-2 Fix silently changed checksums --- sublime-text-4/.SRCINFO | 6 +++--- sublime-text-4/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/sublime-text-4/.SRCINFO b/sublime-text-4/.SRCINFO index 0a3e5e9..5949c6d 100644 --- a/sublime-text-4/.SRCINFO +++ b/sublime-text-4/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = sublime-text-4 pkgdesc = Sophisticated text editor for code, html and prose - stable build pkgver = 4.4152 - pkgrel = 1 + pkgrel = 2 url = https://www.sublimetext.com/download arch = x86_64 arch = aarch64 @@ -11,8 +11,8 @@ pkgbase = sublime-text-4 provides = sublime-text conflicts = sublime-text source_x86_64 = https://download.sublimetext.com/sublime_text_build_4152_x64.tar.xz - sha512sums_x86_64 = 8ed3d7ed4a5e235bda670cea1b24d3d9511a47368dced0dbd44e802fcc250f9b33b3562014553bed0ac61daf6ce0871409a5f655aa013c1f09a007b7721f4a37 + sha512sums_x86_64 = 447a3219841150e22c66b45c8a6d0415e1b309512764060f4310c7f685c93a5b4cba2dd7f202ced01f2a3d910c30784bbf5bbb85bae915296845005a69b0bdf4 source_aarch64 = https://download.sublimetext.com/sublime_text_build_4152_arm64.tar.xz - sha512sums_aarch64 = 2e696e3abfdf6b6d897b65565e0ecbd05a425a7048eb1f89cede350aca65048498a64b5b688e1227c4bd0ee697c1a7f5ea7fbba3538de070577f4f348fa02c8a + sha512sums_aarch64 = dd206f4b174db0809fa80a0e1eef33ffdd59d15d951be91a5438bd2b7774bc2bf8e81521c0e48d54e712d909d9f5d6a485fd3e3de0eb9fa83546a322123864e7 pkgname = sublime-text-4 diff --git a/sublime-text-4/PKGBUILD b/sublime-text-4/PKGBUILD index 1fa4db0..60ed52a 100644 --- a/sublime-text-4/PKGBUILD +++ b/sublime-text-4/PKGBUILD @@ -2,7 +2,7 @@ pkgname=sublime-text-4 pkgver=4.4152 -pkgrel=1 +pkgrel=2 pkgdesc='Sophisticated text editor for code, html and prose - stable build' arch=('x86_64' 'aarch64') url='https://www.sublimetext.com/download' @@ -14,8 +14,8 @@ provides=('sublime-text') source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha512sums_x86_64=('8ed3d7ed4a5e235bda670cea1b24d3d9511a47368dced0dbd44e802fcc250f9b33b3562014553bed0ac61daf6ce0871409a5f655aa013c1f09a007b7721f4a37') -sha512sums_aarch64=('2e696e3abfdf6b6d897b65565e0ecbd05a425a7048eb1f89cede350aca65048498a64b5b688e1227c4bd0ee697c1a7f5ea7fbba3538de070577f4f348fa02c8a') +sha512sums_x86_64=('447a3219841150e22c66b45c8a6d0415e1b309512764060f4310c7f685c93a5b4cba2dd7f202ced01f2a3d910c30784bbf5bbb85bae915296845005a69b0bdf4') +sha512sums_aarch64=('dd206f4b174db0809fa80a0e1eef33ffdd59d15d951be91a5438bd2b7774bc2bf8e81521c0e48d54e712d909d9f5d6a485fd3e3de0eb9fa83546a322123864e7') package() { cd "${srcdir}" From 73a994cff176207aa090f2134f2994f4f3124761 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 5 Aug 2023 15:15:05 +0200 Subject: [PATCH 527/971] upgpkg: gvisor-bin 20230801.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index da23ccc..2c6cdfb 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20230710.0 + pkgver = 20230801.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20230710.0::https://storage.googleapis.com/gvisor/releases/release/20230710.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20230710.0::https://storage.googleapis.com/gvisor/releases/release/20230710.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = 40fe7f27de606c2ee35cf93e165b21502cf4c01610601a8b320a923785457ddd2353e5d519a7907ba7ef1b42577fce1c38d5c7d104e7a18f165cdf4d2124c030 - sha512sums_x86_64 = 61723a7a40ac826fd688a564e5a15843415032b29ec1582f526b08abcfb8c8f260f0106f09a6c8886cf16349268a1157e8a55ec27cf0d4db0945c5e9fe535eb4 - source_aarch64 = runsc-aarch64-20230710.0::https://storage.googleapis.com/gvisor/releases/release/20230710.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20230710.0::https://storage.googleapis.com/gvisor/releases/release/20230710.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = b7a4962f8cb267a45b623ec2a5fcd2da33f5849e9e036a34b1cb95e7fd559a0706d964c9d9aa07235d20abc2fe981ea244adcd05a3ff76263fcabb4d06690a94 - sha512sums_aarch64 = d50c7c661a5ff7de8ed0b5533f979f26946590dcf2b207e99846015358242aca61e2ea800f730c93940c109fdb4cf709fe428a9a8bf90218dc53d3a5b2dc5871 + source_x86_64 = runsc-x86_64-20230801.0::https://storage.googleapis.com/gvisor/releases/release/20230801.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20230801.0::https://storage.googleapis.com/gvisor/releases/release/20230801.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = 97346171e61ba253a00646ca5b9a49156181e069c7db6f48abc6ef621b5b5970a2917ba21e797b5906a11f5d5fc31ab60b9238f0a4d98d404e5d19b1b5ec0e9c + sha512sums_x86_64 = 58aa688e3a98d81b86f1f739b29a8d6598bb3f7007a35a90303996e86883a77c8ab56a49534f246bdf37db82025911a3f38fcd9fd73b2c1e78f966e777bdc1be + source_aarch64 = runsc-aarch64-20230801.0::https://storage.googleapis.com/gvisor/releases/release/20230801.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20230801.0::https://storage.googleapis.com/gvisor/releases/release/20230801.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = c3115c0bdb8f2acd97df6c2484a30c131af7220d988c7c4ca3cae759194ba0a18ecf3d756a59a18c7bd2dec8e57f7cbc467132ed74211c08d34e8712d48b9c43 + sha512sums_aarch64 = c0fe327a21013466f8e0fa763a32381f98f8191c6368be9862b5685e1b1c8a284eb6f44abc22c5e38e2e55de9a2df0bdc79708844ad90ef19d30b718a056bf58 pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index b5d1bbe..79f95d6 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20230710.0 +pkgver=20230801.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('40fe7f27de606c2ee35cf93e165b21502cf4c01610601a8b320a923785457ddd2353e5d519a7907ba7ef1b42577fce1c38d5c7d104e7a18f165cdf4d2124c030' - '61723a7a40ac826fd688a564e5a15843415032b29ec1582f526b08abcfb8c8f260f0106f09a6c8886cf16349268a1157e8a55ec27cf0d4db0945c5e9fe535eb4') -sha512sums_aarch64=('b7a4962f8cb267a45b623ec2a5fcd2da33f5849e9e036a34b1cb95e7fd559a0706d964c9d9aa07235d20abc2fe981ea244adcd05a3ff76263fcabb4d06690a94' - 'd50c7c661a5ff7de8ed0b5533f979f26946590dcf2b207e99846015358242aca61e2ea800f730c93940c109fdb4cf709fe428a9a8bf90218dc53d3a5b2dc5871') +sha512sums_x86_64=('97346171e61ba253a00646ca5b9a49156181e069c7db6f48abc6ef621b5b5970a2917ba21e797b5906a11f5d5fc31ab60b9238f0a4d98d404e5d19b1b5ec0e9c' + '58aa688e3a98d81b86f1f739b29a8d6598bb3f7007a35a90303996e86883a77c8ab56a49534f246bdf37db82025911a3f38fcd9fd73b2c1e78f966e777bdc1be') +sha512sums_aarch64=('c3115c0bdb8f2acd97df6c2484a30c131af7220d988c7c4ca3cae759194ba0a18ecf3d756a59a18c7bd2dec8e57f7cbc467132ed74211c08d34e8712d48b9c43' + 'c0fe327a21013466f8e0fa763a32381f98f8191c6368be9862b5685e1b1c8a284eb6f44abc22c5e38e2e55de9a2df0bdc79708844ad90ef19d30b718a056bf58') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From 57e8c87d9bf9a2300d55063267c20af270d9f39e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 5 Aug 2023 15:15:29 +0200 Subject: [PATCH 528/971] upgpkg: gvisor-git 20230801.0-1 upstream release Better support debug packages Remove unnecessary GO111MODULE=on Fix version not being written correctly --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index 9f6558d..938437e 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20230710.0 + pkgver = 20230801.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index e04f8e3..876a32c 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20230710.0 +pkgver=20230801.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -32,10 +32,10 @@ build() { export CGO_CFLAGS="${CFLAGS}" export CGO_CXXFLAGS="${CXXFLAGS}" export CGO_LDFLAGS="${LDFLAGS}" - export GO111MODULE=on + export GOPATH="${srcdir}" export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw" - CGO_ENABLED=0 go build -v -o "bin/$_pkgbin" -ldflags "-X main.version=${pkgver}" gvisor.dev/gvisor/runsc - go build -v -o "bin/$_pkgshim" gvisor.dev/gvisor/shim + CGO_ENABLED=0 go build -v -o "bin/$_pkgbin" -ldflags "-linkmode=external -compressdwarf=false -X gvisor.dev/gvisor/runsc/version.version=${pkgver}" gvisor.dev/gvisor/runsc + go build -v -o "bin/$_pkgshim" -ldflags "-linkmode=external -compressdwarf=false" gvisor.dev/gvisor/shim } package() { From f685b8ea8ffc0e3a7de9327339b6a768163ff72f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 7 Aug 2023 17:43:41 +0200 Subject: [PATCH 529/971] sublime-text-dev: Rename source files, Use sha512 --- sublime-text-dev/.SRCINFO | 8 ++++---- sublime-text-dev/PKGBUILD | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index d335f8c..4e765f8 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -11,9 +11,9 @@ pkgbase = sublime-text-dev depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4150_x64.tar.xz - sha256sums_x86_64 = e8a69fa783319829fdefc4aa8d263ca804fa61cffb582f14f63564214526507b - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4150_arm64.tar.xz - sha256sums_aarch64 = 74fc5ed912e83094bead5b5c55966930f43981f4c49d6fc835c9f36187851084 + source_x86_64 = sublime_text_dev_4_4150_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4150_x64.tar.xz + sha512sums_x86_64 = 0e78bdc35935e751512b1527081882a5438de49cd7f6ecdb6304ff13043cf5caf885beecb6588721064660bd822a6bcb4bd138f272773e728fd44b20150b2f84 + source_aarch64 = sublime_text_dev_4_4150_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4150_arm64.tar.xz + sha512sums_aarch64 = b6aefc8704f758553614821aab55677a88afcb8a18278e3c9e3edf9c9a726d412afc2d795db3c60688d28b2853f7d8cbbd53693e5b0ced785619d5436310cf20 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index d9fb44f..329e4b3 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -14,11 +14,11 @@ conflicts=('sublime-text') provides=('sublime-text') install=${pkgname}.install -source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") -source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") +source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") +source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha256sums_x86_64=('e8a69fa783319829fdefc4aa8d263ca804fa61cffb582f14f63564214526507b') -sha256sums_aarch64=('74fc5ed912e83094bead5b5c55966930f43981f4c49d6fc835c9f36187851084') +sha512sums_x86_64=('0e78bdc35935e751512b1527081882a5438de49cd7f6ecdb6304ff13043cf5caf885beecb6588721064660bd822a6bcb4bd138f272773e728fd44b20150b2f84') +sha512sums_aarch64=('b6aefc8704f758553614821aab55677a88afcb8a18278e3c9e3edf9c9a726d412afc2d795db3c60688d28b2853f7d8cbbd53693e5b0ced785619d5436310cf20') package() { cd "${srcdir}" From ea0ea4dcb74901cede164ab08668953171ddd0a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 7 Aug 2023 17:44:27 +0200 Subject: [PATCH 530/971] sublime-text-4: Rename source files --- sublime-text-4/.SRCINFO | 4 ++-- sublime-text-4/PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sublime-text-4/.SRCINFO b/sublime-text-4/.SRCINFO index 5949c6d..34f5c8d 100644 --- a/sublime-text-4/.SRCINFO +++ b/sublime-text-4/.SRCINFO @@ -10,9 +10,9 @@ pkgbase = sublime-text-4 depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = https://download.sublimetext.com/sublime_text_build_4152_x64.tar.xz + source_x86_64 = sublime_text_4_4_4152_2_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4152_x64.tar.xz sha512sums_x86_64 = 447a3219841150e22c66b45c8a6d0415e1b309512764060f4310c7f685c93a5b4cba2dd7f202ced01f2a3d910c30784bbf5bbb85bae915296845005a69b0bdf4 - source_aarch64 = https://download.sublimetext.com/sublime_text_build_4152_arm64.tar.xz + source_aarch64 = sublime_text_4_4_4152_2_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4152_arm64.tar.xz sha512sums_aarch64 = dd206f4b174db0809fa80a0e1eef33ffdd59d15d951be91a5438bd2b7774bc2bf8e81521c0e48d54e712d909d9f5d6a485fd3e3de0eb9fa83546a322123864e7 pkgname = sublime-text-4 diff --git a/sublime-text-4/PKGBUILD b/sublime-text-4/PKGBUILD index 60ed52a..4ecc3b4 100644 --- a/sublime-text-4/PKGBUILD +++ b/sublime-text-4/PKGBUILD @@ -11,8 +11,8 @@ depends=('libpng' 'gtk3') conflicts=('sublime-text') provides=('sublime-text') -source_x86_64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") -source_aarch64=("https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") +source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") +source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha512sums_x86_64=('447a3219841150e22c66b45c8a6d0415e1b309512764060f4310c7f685c93a5b4cba2dd7f202ced01f2a3d910c30784bbf5bbb85bae915296845005a69b0bdf4') sha512sums_aarch64=('dd206f4b174db0809fa80a0e1eef33ffdd59d15d951be91a5438bd2b7774bc2bf8e81521c0e48d54e712d909d9f5d6a485fd3e3de0eb9fa83546a322123864e7') From d1877600d121462f4b4fc67a2c26e2ca653a70c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 7 Aug 2023 22:35:28 +0200 Subject: [PATCH 531/971] upgpkg: clonezilla-unstable 5.5.7-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 79efb04..dfe98d8 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.5 + pkgver = 5.5.7 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.5.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.7.tar.xz source = usrbin.patch - sha512sums = ef516d1d6425138610a044e31daa3f5d2514002108da60f8985bde0950f89e59b240e507650f3779be3a7e25eb2d285c2822ccba4669dfea12f47bd693bd9634 + sha512sums = 390ee93e023841672e3e860b77840542ddc66509cd2537cd0378022fbf2130b19cd2bfbf2fb482fb6884916a0b733777c3b1c73de0d5673d5a8b67216931aa4d sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 9219631..1c3e24c 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.5 +pkgver=5.5.7 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('ef516d1d6425138610a044e31daa3f5d2514002108da60f8985bde0950f89e59b240e507650f3779be3a7e25eb2d285c2822ccba4669dfea12f47bd693bd9634' +sha512sums=('390ee93e023841672e3e860b77840542ddc66509cd2537cd0378022fbf2130b19cd2bfbf2fb482fb6884916a0b733777c3b1c73de0d5673d5a8b67216931aa4d' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 0937fcdeec8ebf5e5b456ad691db3f5a83144d69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 7 Aug 2023 22:35:28 +0200 Subject: [PATCH 532/971] upgpkg: clonezilla-unstable 5.5.7-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 79efb04..dfe98d8 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.5 + pkgver = 5.5.7 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.5.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.7.tar.xz source = usrbin.patch - sha512sums = ef516d1d6425138610a044e31daa3f5d2514002108da60f8985bde0950f89e59b240e507650f3779be3a7e25eb2d285c2822ccba4669dfea12f47bd693bd9634 + sha512sums = 390ee93e023841672e3e860b77840542ddc66509cd2537cd0378022fbf2130b19cd2bfbf2fb482fb6884916a0b733777c3b1c73de0d5673d5a8b67216931aa4d sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 9219631..1c3e24c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.5 +pkgver=5.5.7 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('ef516d1d6425138610a044e31daa3f5d2514002108da60f8985bde0950f89e59b240e507650f3779be3a7e25eb2d285c2822ccba4669dfea12f47bd693bd9634' +sha512sums=('390ee93e023841672e3e860b77840542ddc66509cd2537cd0378022fbf2130b19cd2bfbf2fb482fb6884916a0b733777c3b1c73de0d5673d5a8b67216931aa4d' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From b0a8905ef4cae47b1602b3213141424020a15de2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 8 Aug 2023 18:41:16 +0200 Subject: [PATCH 533/971] upgpkg: sublime-text-dev 4.4154-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 4e765f8..71d4ac7 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4150 + pkgver = 4.4154 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -11,9 +11,9 @@ pkgbase = sublime-text-dev depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = sublime_text_dev_4_4150_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4150_x64.tar.xz - sha512sums_x86_64 = 0e78bdc35935e751512b1527081882a5438de49cd7f6ecdb6304ff13043cf5caf885beecb6588721064660bd822a6bcb4bd138f272773e728fd44b20150b2f84 - source_aarch64 = sublime_text_dev_4_4150_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4150_arm64.tar.xz - sha512sums_aarch64 = b6aefc8704f758553614821aab55677a88afcb8a18278e3c9e3edf9c9a726d412afc2d795db3c60688d28b2853f7d8cbbd53693e5b0ced785619d5436310cf20 + source_x86_64 = sublime_text_dev_4_4154_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4154_x64.tar.xz + sha512sums_x86_64 = b7898f1525aba60b8dbf9e1f8ff4425885f595a55e8571bfece56c1157b3638de3d565549d9454c2f75b123f7b789b3feed8a246f7677ab63c8a383d7ba815fe + source_aarch64 = sublime_text_dev_4_4154_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4154_arm64.tar.xz + sha512sums_aarch64 = 68ccccf72218e05797846aff4f4cea8446e7b17a2042b462c702710cc3d592bc89250d9ea70a4517d460177b695b051f13c39cd9deb8d3e6b111629853cd350a pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 329e4b3..e5b6331 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4150 +pkgver=4.4154 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -17,8 +17,8 @@ install=${pkgname}.install source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha512sums_x86_64=('0e78bdc35935e751512b1527081882a5438de49cd7f6ecdb6304ff13043cf5caf885beecb6588721064660bd822a6bcb4bd138f272773e728fd44b20150b2f84') -sha512sums_aarch64=('b6aefc8704f758553614821aab55677a88afcb8a18278e3c9e3edf9c9a726d412afc2d795db3c60688d28b2853f7d8cbbd53693e5b0ced785619d5436310cf20') +sha512sums_x86_64=('b7898f1525aba60b8dbf9e1f8ff4425885f595a55e8571bfece56c1157b3638de3d565549d9454c2f75b123f7b789b3feed8a246f7677ab63c8a383d7ba815fe') +sha512sums_aarch64=('68ccccf72218e05797846aff4f4cea8446e7b17a2042b462c702710cc3d592bc89250d9ea70a4517d460177b695b051f13c39cd9deb8d3e6b111629853cd350a') package() { cd "${srcdir}" From cb6fe38dba8f95d0591a06279b4de19c24bb72a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 12 Aug 2023 17:00:38 +0200 Subject: [PATCH 534/971] upgpkg: discord-electron-openasar 0.0.28+812-1 Update to latest OpenAsar commit --- discord-electron-openasar/.SRCINFO | 4 ++-- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index dfc2ecb..b267d53 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v22) for increased security and performance - pkgver = 0.0.28+811 + pkgver = 0.0.28+812 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -22,7 +22,7 @@ pkgbase = discord-electron-openasar options = !strip source = https://dl.discordapp.net/apps/linux/0.0.28/discord-0.0.28.tar.gz source = discord-launcher.sh - source = git+https://github.com/goosemod/openasar.git#commit=5ac246dc92e9a2a9b314d899df728f37096c482b + source = git+https://github.com/goosemod/openasar.git#commit=85220650bde84ff1b27f496da5d7a9cbc995874c sha512sums = 763fe47a0fb21a13e852bcc818d4e0e2ea4faf23fcfdc02fddfe06e8c829499e028e27b45d807d3b3edcc36788990f3f21c0460b9b8efc538b62f3b41aeb744d sha512sums = f516b1dba10f423f1ebe69b14f70740232b19d343b603c3479ba1e1dd2b7bcf472e92d354fde3a9d553bfae78207ae0420be60372a4b38ba78c3421172230826 sha512sums = SKIP diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index d4430dd..bfb9814 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -7,7 +7,7 @@ pkgname=discord-electron-openasar _pkgname=discord _electron=22 -pkgver=0.0.28+811 +pkgver=0.0.28+812 _pkgver=${pkgver%%+*} pkgrel=1 pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electron}) for increased security and performance" @@ -28,7 +28,7 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' - "git+https://github.com/goosemod/openasar.git#commit=5ac246dc92e9a2a9b314d899df728f37096c482b") + "git+https://github.com/goosemod/openasar.git#commit=85220650bde84ff1b27f496da5d7a9cbc995874c") sha512sums=('763fe47a0fb21a13e852bcc818d4e0e2ea4faf23fcfdc02fddfe06e8c829499e028e27b45d807d3b3edcc36788990f3f21c0460b9b8efc538b62f3b41aeb744d' 'f516b1dba10f423f1ebe69b14f70740232b19d343b603c3479ba1e1dd2b7bcf472e92d354fde3a9d553bfae78207ae0420be60372a4b38ba78c3421172230826' 'SKIP') From 892291f73c64bf371946f4508eb917ce5b027ce8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 12 Aug 2023 17:02:03 +0200 Subject: [PATCH 535/971] upgpkg: clonezilla-unstable 5.5.8-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index dfe98d8..b1c2f38 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.7 + pkgver = 5.5.8 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.7.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.8.tar.xz source = usrbin.patch - sha512sums = 390ee93e023841672e3e860b77840542ddc66509cd2537cd0378022fbf2130b19cd2bfbf2fb482fb6884916a0b733777c3b1c73de0d5673d5a8b67216931aa4d + sha512sums = cdfe01ab25e173395895c8cd76b97b61f8677918d58d75cea2319bc31e028649de561ab77e23d8e0037bfee8705940245602209b0df6323f0ef33ead62450884 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 1c3e24c..3494672 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.7 +pkgver=5.5.8 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('390ee93e023841672e3e860b77840542ddc66509cd2537cd0378022fbf2130b19cd2bfbf2fb482fb6884916a0b733777c3b1c73de0d5673d5a8b67216931aa4d' +sha512sums=('cdfe01ab25e173395895c8cd76b97b61f8677918d58d75cea2319bc31e028649de561ab77e23d8e0037bfee8705940245602209b0df6323f0ef33ead62450884' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From ec7d2c13a11cf9291ea9969293a3ae7f9c0e913c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 12 Aug 2023 17:02:03 +0200 Subject: [PATCH 536/971] upgpkg: clonezilla-unstable 5.5.8-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index dfe98d8..b1c2f38 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.7 + pkgver = 5.5.8 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.7.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.8.tar.xz source = usrbin.patch - sha512sums = 390ee93e023841672e3e860b77840542ddc66509cd2537cd0378022fbf2130b19cd2bfbf2fb482fb6884916a0b733777c3b1c73de0d5673d5a8b67216931aa4d + sha512sums = cdfe01ab25e173395895c8cd76b97b61f8677918d58d75cea2319bc31e028649de561ab77e23d8e0037bfee8705940245602209b0df6323f0ef33ead62450884 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 1c3e24c..3494672 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.7 +pkgver=5.5.8 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('390ee93e023841672e3e860b77840542ddc66509cd2537cd0378022fbf2130b19cd2bfbf2fb482fb6884916a0b733777c3b1c73de0d5673d5a8b67216931aa4d' +sha512sums=('cdfe01ab25e173395895c8cd76b97b61f8677918d58d75cea2319bc31e028649de561ab77e23d8e0037bfee8705940245602209b0df6323f0ef33ead62450884' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 18c875d7bd63765417f14761f8a49b0b849cf8ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 18 Aug 2023 16:47:42 +0200 Subject: [PATCH 537/971] upgpkg: clonezilla-unstable 5.5.9-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index b1c2f38..6edadd8 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.8 + pkgver = 5.5.9 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.8.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.9.tar.xz source = usrbin.patch - sha512sums = cdfe01ab25e173395895c8cd76b97b61f8677918d58d75cea2319bc31e028649de561ab77e23d8e0037bfee8705940245602209b0df6323f0ef33ead62450884 + sha512sums = 0a4a5e9b1207d6aaa572251fff36a741c6131503f0b1429ce6ff4c2a6bb65e27456d0f03c9d1603858e821f8d3cb6cf2096be26fbe4581d4cb8678b52eaba932 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 3494672..391b20a 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.8 +pkgver=5.5.9 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('cdfe01ab25e173395895c8cd76b97b61f8677918d58d75cea2319bc31e028649de561ab77e23d8e0037bfee8705940245602209b0df6323f0ef33ead62450884' +sha512sums=('0a4a5e9b1207d6aaa572251fff36a741c6131503f0b1429ce6ff4c2a6bb65e27456d0f03c9d1603858e821f8d3cb6cf2096be26fbe4581d4cb8678b52eaba932' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From f93bea6960f6291399e807c4d8dcc5985bfd7f58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 18 Aug 2023 16:47:42 +0200 Subject: [PATCH 538/971] upgpkg: clonezilla-unstable 5.5.9-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index b1c2f38..6edadd8 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.8 + pkgver = 5.5.9 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.8.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.9.tar.xz source = usrbin.patch - sha512sums = cdfe01ab25e173395895c8cd76b97b61f8677918d58d75cea2319bc31e028649de561ab77e23d8e0037bfee8705940245602209b0df6323f0ef33ead62450884 + sha512sums = 0a4a5e9b1207d6aaa572251fff36a741c6131503f0b1429ce6ff4c2a6bb65e27456d0f03c9d1603858e821f8d3cb6cf2096be26fbe4581d4cb8678b52eaba932 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 3494672..391b20a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.8 +pkgver=5.5.9 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('cdfe01ab25e173395895c8cd76b97b61f8677918d58d75cea2319bc31e028649de561ab77e23d8e0037bfee8705940245602209b0df6323f0ef33ead62450884' +sha512sums=('0a4a5e9b1207d6aaa572251fff36a741c6131503f0b1429ce6ff4c2a6bb65e27456d0f03c9d1603858e821f8d3cb6cf2096be26fbe4581d4cb8678b52eaba932' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 390b9c53fcbf57c4d5248bb3c077ccee35abd229 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 26 Aug 2023 18:56:00 +0200 Subject: [PATCH 539/971] upgpkg: sublime-text-dev 4.4155-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 71d4ac7..2422d81 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4154 + pkgver = 4.4155 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -11,9 +11,9 @@ pkgbase = sublime-text-dev depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = sublime_text_dev_4_4154_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4154_x64.tar.xz - sha512sums_x86_64 = b7898f1525aba60b8dbf9e1f8ff4425885f595a55e8571bfece56c1157b3638de3d565549d9454c2f75b123f7b789b3feed8a246f7677ab63c8a383d7ba815fe - source_aarch64 = sublime_text_dev_4_4154_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4154_arm64.tar.xz - sha512sums_aarch64 = 68ccccf72218e05797846aff4f4cea8446e7b17a2042b462c702710cc3d592bc89250d9ea70a4517d460177b695b051f13c39cd9deb8d3e6b111629853cd350a + source_x86_64 = sublime_text_dev_4_4155_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4155_x64.tar.xz + sha512sums_x86_64 = 404fc0f2a998ebde2d8c95e52a345d64d8da06ca171fc02c9242d86e4deb7ee3f5fbfcee4eea4a86633bce0a2eb044de27d6dffe66b722ccf385af5ff4746277 + source_aarch64 = sublime_text_dev_4_4155_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4155_arm64.tar.xz + sha512sums_aarch64 = 616c2f35d441ef687ce3cdae0d99b5f641bcc639374080331c212daaf02596b42436ed73a530a4a1c70436ef40d8de63283925d6ca03837cab8d72ce52afd585 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index e5b6331..6722e9f 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4154 +pkgver=4.4155 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -17,8 +17,8 @@ install=${pkgname}.install source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha512sums_x86_64=('b7898f1525aba60b8dbf9e1f8ff4425885f595a55e8571bfece56c1157b3638de3d565549d9454c2f75b123f7b789b3feed8a246f7677ab63c8a383d7ba815fe') -sha512sums_aarch64=('68ccccf72218e05797846aff4f4cea8446e7b17a2042b462c702710cc3d592bc89250d9ea70a4517d460177b695b051f13c39cd9deb8d3e6b111629853cd350a') +sha512sums_x86_64=('404fc0f2a998ebde2d8c95e52a345d64d8da06ca171fc02c9242d86e4deb7ee3f5fbfcee4eea4a86633bce0a2eb044de27d6dffe66b722ccf385af5ff4746277') +sha512sums_aarch64=('616c2f35d441ef687ce3cdae0d99b5f641bcc639374080331c212daaf02596b42436ed73a530a4a1c70436ef40d8de63283925d6ca03837cab8d72ce52afd585') package() { cd "${srcdir}" From 8abf193e81d96616547ff71c52b57c64f59f641d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 29 Aug 2023 17:44:00 +0200 Subject: [PATCH 540/971] upgpkg: tuned 2.21.0-1 upstream release --- tuned/.SRCINFO | 8 ++++---- tuned/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tuned/.SRCINFO b/tuned/.SRCINFO index 342ae5b..a66f225 100644 --- a/tuned/.SRCINFO +++ b/tuned/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = 2.20.0 - pkgrel = 2 + pkgver = 2.21.0 + pkgrel = 1 url = https://github.com/redhat-performance/tuned install = tuned.install arch = any @@ -21,7 +21,7 @@ pkgbase = tuned optdepends = virt-what: For use with virtual machines optdepends = systemtap: Disk and net statistic monitoring systemtap scripts backup = etc/tuned/active_profile - source = https://github.com/redhat-performance/tuned/archive/v2.20.0/tuned-2.20.0.tar.gz - sha256sums = df32ac7a25f2c413cc39368c8cfaf1d11bf75be14efd0944ecafad8a369e486c + source = https://github.com/redhat-performance/tuned/archive/v2.21.0/tuned-2.21.0.tar.gz + sha512sums = f1f58d582997db7789af990895c63c1fd4f6329b95cda7fa0fb314f95f05be120b90228e347d0239e4a4bed13baad66a42f006880e369f46741ecf8705bb92d0 pkgname = tuned diff --git a/tuned/PKGBUILD b/tuned/PKGBUILD index 3f93ada..5247ae4 100644 --- a/tuned/PKGBUILD +++ b/tuned/PKGBUILD @@ -4,8 +4,8 @@ # Contributor: Tom pkgname=tuned -pkgver=2.20.0 -pkgrel=2 +pkgver=2.21.0 +pkgrel=1 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url="https://github.com/redhat-performance/${pkgname}" @@ -16,7 +16,7 @@ makedepends=('desktop-file-utils') backup=('etc/tuned/active_profile') install="${pkgname}.install" source=("https://github.com/redhat-performance/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz") -sha256sums=('df32ac7a25f2c413cc39368c8cfaf1d11bf75be14efd0944ecafad8a369e486c') +sha512sums=('f1f58d582997db7789af990895c63c1fd4f6329b95cda7fa0fb314f95f05be120b90228e347d0239e4a4bed13baad66a42f006880e369f46741ecf8705bb92d0') prepare() { cd "${pkgname}-${pkgver}" From 32bc0bf1d427c6db8ccc0575e91159a018338043 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 30 Aug 2023 19:22:50 +0200 Subject: [PATCH 541/971] upgpkg: discord-electron 0.0.29-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 7 ++++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 95cab16..a192c38 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v22) for increased security and performance - pkgver = 0.0.28 + pkgver = 0.0.29 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.28/discord-0.0.28.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.29/discord-0.0.29.tar.gz source = discord-launcher.sh - sha512sums = 763fe47a0fb21a13e852bcc818d4e0e2ea4faf23fcfdc02fddfe06e8c829499e028e27b45d807d3b3edcc36788990f3f21c0460b9b8efc538b62f3b41aeb744d + sha512sums = 38e4c21872fdf7b7716680b70e6f677274be50fce04d16831ed180d894965ca2f8cc8814148e16ca540f8dcba2bb749788f6980180f51d8b1f1556e1a8a368e0 sha512sums = f516b1dba10f423f1ebe69b14f70740232b19d343b603c3479ba1e1dd2b7bcf472e92d354fde3a9d553bfae78207ae0420be60372a4b38ba78c3421172230826 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index f631a5b..360c1a3 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -14,7 +14,7 @@ pkgname=discord-electron _pkgname=discord _electron=22 -pkgver=0.0.28 +pkgver=0.0.29 pkgrel=1 pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') @@ -34,10 +34,11 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('763fe47a0fb21a13e852bcc818d4e0e2ea4faf23fcfdc02fddfe06e8c829499e028e27b45d807d3b3edcc36788990f3f21c0460b9b8efc538b62f3b41aeb744d' +sha512sums=('38e4c21872fdf7b7716680b70e6f677274be50fce04d16831ed180d894965ca2f8cc8814148e16ca540f8dcba2bb749788f6980180f51d8b1f1556e1a8a368e0' 'f516b1dba10f423f1ebe69b14f70740232b19d343b603c3479ba1e1dd2b7bcf472e92d354fde3a9d553bfae78207ae0420be60372a4b38ba78c3421172230826') -_krisp_b2sum='56c8c5167e3c4b51720accf0acfe46e7e073b015600088b6bb4d2b7a259cd788c4facba2d7332b535cfa39b91ee94840d6ea905c5d0c9cca43fa0a26f5185cc9' +# Krisp patch stopped working, will update later +_krisp_b2sum='' prepare() { # prepare launcher script From 4b238b04776f396204c32312645c0caa8431ff98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 30 Aug 2023 19:23:33 +0200 Subject: [PATCH 542/971] upgpkg: discord-electron-openasar 0.0.29+812-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 7 ++++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index b267d53..0c15cb3 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v22) for increased security and performance - pkgver = 0.0.28+812 + pkgver = 0.0.29+812 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -20,10 +20,10 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.28/discord-0.0.28.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.29/discord-0.0.29.tar.gz source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=85220650bde84ff1b27f496da5d7a9cbc995874c - sha512sums = 763fe47a0fb21a13e852bcc818d4e0e2ea4faf23fcfdc02fddfe06e8c829499e028e27b45d807d3b3edcc36788990f3f21c0460b9b8efc538b62f3b41aeb744d + sha512sums = 38e4c21872fdf7b7716680b70e6f677274be50fce04d16831ed180d894965ca2f8cc8814148e16ca540f8dcba2bb749788f6980180f51d8b1f1556e1a8a368e0 sha512sums = f516b1dba10f423f1ebe69b14f70740232b19d343b603c3479ba1e1dd2b7bcf472e92d354fde3a9d553bfae78207ae0420be60372a4b38ba78c3421172230826 sha512sums = SKIP diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index bfb9814..159052b 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -7,7 +7,7 @@ pkgname=discord-electron-openasar _pkgname=discord _electron=22 -pkgver=0.0.28+812 +pkgver=0.0.29+812 _pkgver=${pkgver%%+*} pkgrel=1 pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electron}) for increased security and performance" @@ -29,11 +29,12 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=85220650bde84ff1b27f496da5d7a9cbc995874c") -sha512sums=('763fe47a0fb21a13e852bcc818d4e0e2ea4faf23fcfdc02fddfe06e8c829499e028e27b45d807d3b3edcc36788990f3f21c0460b9b8efc538b62f3b41aeb744d' +sha512sums=('38e4c21872fdf7b7716680b70e6f677274be50fce04d16831ed180d894965ca2f8cc8814148e16ca540f8dcba2bb749788f6980180f51d8b1f1556e1a8a368e0' 'f516b1dba10f423f1ebe69b14f70740232b19d343b603c3479ba1e1dd2b7bcf472e92d354fde3a9d553bfae78207ae0420be60372a4b38ba78c3421172230826' 'SKIP') -_krisp_b2sum='56c8c5167e3c4b51720accf0acfe46e7e073b015600088b6bb4d2b7a259cd788c4facba2d7332b535cfa39b91ee94840d6ea905c5d0c9cca43fa0a26f5185cc9' +# Krisp patch stopped working, will update later +_krisp_b2sum='' # just in case I get the version wrong pkgver() { From 91e85d8a11e9761e1988899ec33b1c250942e087 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 30 Aug 2023 23:55:45 +0200 Subject: [PATCH 543/971] upgpkg: discord-electron 0.0.29-2 Update Electron version to 24 Update Krisp patch --- discord-electron/.SRCINFO | 8 ++++---- discord-electron/PKGBUILD | 9 ++++----- discord-electron/discord-launcher.sh | 4 ++-- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index a192c38..ba4e272 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron - pkgdesc = Discord using system provided electron (v22) for increased security and performance + pkgdesc = Discord using system provided electron (v24) for increased security and performance pkgver = 0.0.29 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -9,7 +9,7 @@ pkgbase = discord-electron makedepends = asar makedepends = curl makedepends = python-html2text - depends = electron22 + depends = electron24 depends = libxss optdepends = libpulse: Pulseaudio support optdepends = libappindicator-gtk3: Systray indicator support @@ -21,6 +21,6 @@ pkgbase = discord-electron source = https://dl.discordapp.net/apps/linux/0.0.29/discord-0.0.29.tar.gz source = discord-launcher.sh sha512sums = 38e4c21872fdf7b7716680b70e6f677274be50fce04d16831ed180d894965ca2f8cc8814148e16ca540f8dcba2bb749788f6980180f51d8b1f1556e1a8a368e0 - sha512sums = f516b1dba10f423f1ebe69b14f70740232b19d343b603c3479ba1e1dd2b7bcf472e92d354fde3a9d553bfae78207ae0420be60372a4b38ba78c3421172230826 + sha512sums = b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 360c1a3..d1c1db7 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -13,9 +13,9 @@ pkgname=discord-electron _pkgname=discord -_electron=22 +_electron=24 pkgver=0.0.29 -pkgrel=1 +pkgrel=2 pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') provides=("${_pkgname}") @@ -35,10 +35,9 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') sha512sums=('38e4c21872fdf7b7716680b70e6f677274be50fce04d16831ed180d894965ca2f8cc8814148e16ca540f8dcba2bb749788f6980180f51d8b1f1556e1a8a368e0' - 'f516b1dba10f423f1ebe69b14f70740232b19d343b603c3479ba1e1dd2b7bcf472e92d354fde3a9d553bfae78207ae0420be60372a4b38ba78c3421172230826') + 'b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab') -# Krisp patch stopped working, will update later -_krisp_b2sum='' +_krisp_b2sum='09db0a3b1e736049f39d8fb6c726b6468e725e503dc9109ebb17930d68007cc3818c7123ad836c36df704da9c803f944b77b3412a1b0418552c87be56ed11604' prepare() { # prepare launcher script diff --git a/discord-electron/discord-launcher.sh b/discord-electron/discord-launcher.sh index 6012a36..86fc394 100644 --- a/discord-electron/discord-launcher.sh +++ b/discord-electron/discord-launcher.sh @@ -12,8 +12,8 @@ krisp_b2=@KRISPB2@ if hash rizin &> /dev/null; then # Patch Krisp binary to ignore signature check if [[ -f "${krisp_bin}" && $(b2sum "${krisp_bin}" | head -c 128) == $krisp_b2 ]]; then - addr=$(rz-find -x '4889dfe8........4889dfe8' "${krisp_bin}" | head -n1) - rizin -q -w -c "s $addr + 0x12 ; wao nop" "${krisp_bin}" &> /dev/null + addr=$(rz-find -x '4881ec00010000' "${krisp_bin}" | head -n1) + rizin -q -w -c "s $addr + 0x30 ; wao nop" "${krisp_bin}" &> /dev/null fi fi From a88690c3d89c8e1baee2b9513878793ce8eb9e48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 30 Aug 2023 23:56:00 +0200 Subject: [PATCH 544/971] upgpkg: discord-electron-openasar 0.0.29+812-2 Update Electron version to 24 Update Krisp patch --- discord-electron-openasar/.SRCINFO | 8 ++++---- discord-electron-openasar/PKGBUILD | 9 ++++----- discord-electron-openasar/discord-launcher.sh | 4 ++-- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 0c15cb3..ccc2131 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar - pkgdesc = Discord packaged with OpenAsar using system provided electron (v22) for increased security and performance + pkgdesc = Discord packaged with OpenAsar using system provided electron (v24) for increased security and performance pkgver = 0.0.29+812 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -11,7 +11,7 @@ pkgbase = discord-electron-openasar makedepends = nodejs makedepends = curl makedepends = python-html2text - depends = electron22 + depends = electron24 depends = libxss optdepends = libpulse: Pulseaudio support optdepends = libappindicator-gtk3: Systray indicator support @@ -24,7 +24,7 @@ pkgbase = discord-electron-openasar source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=85220650bde84ff1b27f496da5d7a9cbc995874c sha512sums = 38e4c21872fdf7b7716680b70e6f677274be50fce04d16831ed180d894965ca2f8cc8814148e16ca540f8dcba2bb749788f6980180f51d8b1f1556e1a8a368e0 - sha512sums = f516b1dba10f423f1ebe69b14f70740232b19d343b603c3479ba1e1dd2b7bcf472e92d354fde3a9d553bfae78207ae0420be60372a4b38ba78c3421172230826 + sha512sums = b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab sha512sums = SKIP pkgname = discord-electron-openasar diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 159052b..68c294a 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -6,10 +6,10 @@ pkgname=discord-electron-openasar _pkgname=discord -_electron=22 +_electron=24 pkgver=0.0.29+812 _pkgver=${pkgver%%+*} -pkgrel=1 +pkgrel=2 pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') provides=("${_pkgname}") @@ -30,11 +30,10 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=85220650bde84ff1b27f496da5d7a9cbc995874c") sha512sums=('38e4c21872fdf7b7716680b70e6f677274be50fce04d16831ed180d894965ca2f8cc8814148e16ca540f8dcba2bb749788f6980180f51d8b1f1556e1a8a368e0' - 'f516b1dba10f423f1ebe69b14f70740232b19d343b603c3479ba1e1dd2b7bcf472e92d354fde3a9d553bfae78207ae0420be60372a4b38ba78c3421172230826' + 'b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab' 'SKIP') -# Krisp patch stopped working, will update later -_krisp_b2sum='' +_krisp_b2sum='09db0a3b1e736049f39d8fb6c726b6468e725e503dc9109ebb17930d68007cc3818c7123ad836c36df704da9c803f944b77b3412a1b0418552c87be56ed11604' # just in case I get the version wrong pkgver() { diff --git a/discord-electron-openasar/discord-launcher.sh b/discord-electron-openasar/discord-launcher.sh index 6012a36..86fc394 100644 --- a/discord-electron-openasar/discord-launcher.sh +++ b/discord-electron-openasar/discord-launcher.sh @@ -12,8 +12,8 @@ krisp_b2=@KRISPB2@ if hash rizin &> /dev/null; then # Patch Krisp binary to ignore signature check if [[ -f "${krisp_bin}" && $(b2sum "${krisp_bin}" | head -c 128) == $krisp_b2 ]]; then - addr=$(rz-find -x '4889dfe8........4889dfe8' "${krisp_bin}" | head -n1) - rizin -q -w -c "s $addr + 0x12 ; wao nop" "${krisp_bin}" &> /dev/null + addr=$(rz-find -x '4881ec00010000' "${krisp_bin}" | head -n1) + rizin -q -w -c "s $addr + 0x30 ; wao nop" "${krisp_bin}" &> /dev/null fi fi From e99aa26030cb3ffddb134bcf7f61a31a5c68c357 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 7 Sep 2023 19:59:45 +0200 Subject: [PATCH 545/971] upgpkg: obs-vkcapture 1.4.2-1 upstream release --- obs-vkcapture/.SRCINFO | 6 +++--- obs-vkcapture/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/obs-vkcapture/.SRCINFO b/obs-vkcapture/.SRCINFO index f725f1d..243eb18 100644 --- a/obs-vkcapture/.SRCINFO +++ b/obs-vkcapture/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = obs-vkcapture - pkgver = 1.4.1 + pkgver = 1.4.2 pkgrel = 1 url = https://github.com/nowrep/obs-vkcapture arch = x86_64 @@ -15,8 +15,8 @@ pkgbase = obs-vkcapture depends = libgl depends = libegl depends = obs-studio>=27 - source = https://github.com/nowrep/obs-vkcapture/archive/v1.4.1/obs-vkcapture-1.4.1.tar.gz - sha512sums = 3fa64486df0966f8e33262f821833a9a37a9d2a0e27fb9c6ffc9393e5c829444b995155aa54ddc60ab2cb07ca4f7f01c6581dc6c550335a26fddebd46ff604df + source = https://github.com/nowrep/obs-vkcapture/archive/v1.4.2/obs-vkcapture-1.4.2.tar.gz + sha512sums = e1cd00ae2eca15ec98f008f7d009397f87298a1edf9b588814a09ec9b80795f1d4b11b04cdae6d5ada2c4250e22bd6e14c3cce570f9664c0c62b42f61078a07b pkgname = obs-vkcapture pkgdesc = OBS Linux Vulkan/OpenGL game capture diff --git a/obs-vkcapture/PKGBUILD b/obs-vkcapture/PKGBUILD index f757920..302fbb0 100644 --- a/obs-vkcapture/PKGBUILD +++ b/obs-vkcapture/PKGBUILD @@ -2,7 +2,7 @@ pkgbase=obs-vkcapture pkgname=("$pkgbase" "lib32-$pkgbase") -pkgver=1.4.1 +pkgver=1.4.2 pkgrel=1 url="https://github.com/nowrep/$pkgbase" license=('GPL2') @@ -10,7 +10,7 @@ arch=('x86_64') depends=('vulkan-icd-loader' 'libgl' 'libegl' 'obs-studio>=27') makedepends=('gcc' 'cmake' 'vulkan-headers' 'lib32-gcc-libs' 'lib32-vulkan-icd-loader' 'lib32-libgl' 'lib32-libegl') source=("https://github.com/nowrep/$pkgbase/archive/v$pkgver/$pkgbase-$pkgver.tar.gz") -sha512sums=('3fa64486df0966f8e33262f821833a9a37a9d2a0e27fb9c6ffc9393e5c829444b995155aa54ddc60ab2cb07ca4f7f01c6581dc6c550335a26fddebd46ff604df') +sha512sums=('e1cd00ae2eca15ec98f008f7d009397f87298a1edf9b588814a09ec9b80795f1d4b11b04cdae6d5ada2c4250e22bd6e14c3cce570f9664c0c62b42f61078a07b') build() { cmake -B build -S "$pkgbase-$pkgver" \ From db049e56853c9bb189da3949164a1f937d2b71e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 8 Sep 2023 23:55:25 +0200 Subject: [PATCH 546/971] upgpkg: gvisor-bin 20230904.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index 2c6cdfb..4b2ea7a 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20230801.0 + pkgver = 20230904.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20230801.0::https://storage.googleapis.com/gvisor/releases/release/20230801.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20230801.0::https://storage.googleapis.com/gvisor/releases/release/20230801.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = 97346171e61ba253a00646ca5b9a49156181e069c7db6f48abc6ef621b5b5970a2917ba21e797b5906a11f5d5fc31ab60b9238f0a4d98d404e5d19b1b5ec0e9c - sha512sums_x86_64 = 58aa688e3a98d81b86f1f739b29a8d6598bb3f7007a35a90303996e86883a77c8ab56a49534f246bdf37db82025911a3f38fcd9fd73b2c1e78f966e777bdc1be - source_aarch64 = runsc-aarch64-20230801.0::https://storage.googleapis.com/gvisor/releases/release/20230801.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20230801.0::https://storage.googleapis.com/gvisor/releases/release/20230801.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = c3115c0bdb8f2acd97df6c2484a30c131af7220d988c7c4ca3cae759194ba0a18ecf3d756a59a18c7bd2dec8e57f7cbc467132ed74211c08d34e8712d48b9c43 - sha512sums_aarch64 = c0fe327a21013466f8e0fa763a32381f98f8191c6368be9862b5685e1b1c8a284eb6f44abc22c5e38e2e55de9a2df0bdc79708844ad90ef19d30b718a056bf58 + source_x86_64 = runsc-x86_64-20230904.0::https://storage.googleapis.com/gvisor/releases/release/20230904.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20230904.0::https://storage.googleapis.com/gvisor/releases/release/20230904.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = af3dbb48d8c1476e648ee700228b4cbfb5fbdd8f1dac9e36881f949d2b84559d588c192f5e54e314bb240acc15b3df054ce03f92f4fecf33f2a6f45a9abe5d1e + sha512sums_x86_64 = 677dbe314190855c807c9ec7cbaed721812d21a8cf042218da1440df6af60d9554bf45f295cf9753cff2ad30a5ef439f215da38e036718619c1b5a5019ffe623 + source_aarch64 = runsc-aarch64-20230904.0::https://storage.googleapis.com/gvisor/releases/release/20230904.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20230904.0::https://storage.googleapis.com/gvisor/releases/release/20230904.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 0c9cda69b8b765877ec6202ea082dc31afe87ff28714e8dc127114a41dbbee0d5a477ac65b58ed171de3658ccd7de5606295694a654172bb75c07f3bb8dca62c + sha512sums_aarch64 = 2cc0a33518f3dcb1b341e1a04f821955c96615fcf68583fbd591b51618ace63cadc846efac67cd11b50d44455a2de59df37a2ca5a1afc513bd07aa9a2838b66a pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index 79f95d6..cc37a2f 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20230801.0 +pkgver=20230904.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('97346171e61ba253a00646ca5b9a49156181e069c7db6f48abc6ef621b5b5970a2917ba21e797b5906a11f5d5fc31ab60b9238f0a4d98d404e5d19b1b5ec0e9c' - '58aa688e3a98d81b86f1f739b29a8d6598bb3f7007a35a90303996e86883a77c8ab56a49534f246bdf37db82025911a3f38fcd9fd73b2c1e78f966e777bdc1be') -sha512sums_aarch64=('c3115c0bdb8f2acd97df6c2484a30c131af7220d988c7c4ca3cae759194ba0a18ecf3d756a59a18c7bd2dec8e57f7cbc467132ed74211c08d34e8712d48b9c43' - 'c0fe327a21013466f8e0fa763a32381f98f8191c6368be9862b5685e1b1c8a284eb6f44abc22c5e38e2e55de9a2df0bdc79708844ad90ef19d30b718a056bf58') +sha512sums_x86_64=('af3dbb48d8c1476e648ee700228b4cbfb5fbdd8f1dac9e36881f949d2b84559d588c192f5e54e314bb240acc15b3df054ce03f92f4fecf33f2a6f45a9abe5d1e' + '677dbe314190855c807c9ec7cbaed721812d21a8cf042218da1440df6af60d9554bf45f295cf9753cff2ad30a5ef439f215da38e036718619c1b5a5019ffe623') +sha512sums_aarch64=('0c9cda69b8b765877ec6202ea082dc31afe87ff28714e8dc127114a41dbbee0d5a477ac65b58ed171de3658ccd7de5606295694a654172bb75c07f3bb8dca62c' + '2cc0a33518f3dcb1b341e1a04f821955c96615fcf68583fbd591b51618ace63cadc846efac67cd11b50d44455a2de59df37a2ca5a1afc513bd07aa9a2838b66a') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From e39593a985f66cf317f2c3b0cbf62f5c394d2157 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 8 Sep 2023 23:57:58 +0200 Subject: [PATCH 547/971] upgpkg: gvisor-git 20230904.0-1 upstream release --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index 938437e..cb1746d 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20230801.0 + pkgver = 20230904.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index 876a32c..e434497 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20230801.0 +pkgver=20230904.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From 2038cc4260aabae558438707a548126c6d9f2989 Mon Sep 17 00:00:00 2001 From: Jonathan Liu Date: Sat, 16 Sep 2023 20:43:49 +1000 Subject: [PATCH 548/971] Update to 0.0.29-1 --- .SRCINFO | 8 ++++---- PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 6098e0c..c2927e0 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,14 +1,14 @@ pkgbase = wxedid pkgdesc = wxWidgets-based EDID (Extended Display Identification Data) editor - pkgver = 0.0.27 - pkgrel = 2 + pkgver = 0.0.29 + pkgrel = 1 url = https://sourceforge.net/projects/wxedid/ arch = i686 arch = x86_64 license = GPL3 depends = wxwidgets-gtk3 options = !buildflags - source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.27.tar.gz - md5sums = 1093c29241b01bc3c0a48729156f1afd + source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.29.tar.gz + md5sums = 3fc9e1814ae990752defbd48a14670ec pkgname = wxedid diff --git a/PKGBUILD b/PKGBUILD index d0360e7..7fdbe3c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Jonathan Liu pkgname=wxedid -pkgver=0.0.27 -pkgrel=2 +pkgver=0.0.29 +pkgrel=1 pkgdesc="wxWidgets-based EDID (Extended Display Identification Data) editor" arch=('i686' 'x86_64') url="https://sourceforge.net/projects/wxedid/" @@ -9,7 +9,7 @@ license=('GPL3') depends=('wxwidgets-gtk3') options=('!buildflags') source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz") -md5sums=('1093c29241b01bc3c0a48729156f1afd') +md5sums=('3fc9e1814ae990752defbd48a14670ec') build() { cd "$pkgname-$pkgver" From 779ff26dda576e281287cfdb340a6145bed1cd42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 18 Sep 2023 23:29:20 +0200 Subject: [PATCH 549/971] upgpkg: discord-electron 0.0.30-1 upstream release --- discord-electron/.SRCINFO | 8 ++++---- discord-electron/PKGBUILD | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index ba4e272..1f5fcf4 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v24) for increased security and performance - pkgver = 0.0.29 - pkgrel = 2 + pkgver = 0.0.30 + pkgrel = 1 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.29/discord-0.0.29.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.30/discord-0.0.30.tar.gz source = discord-launcher.sh - sha512sums = 38e4c21872fdf7b7716680b70e6f677274be50fce04d16831ed180d894965ca2f8cc8814148e16ca540f8dcba2bb749788f6980180f51d8b1f1556e1a8a368e0 + sha512sums = 2da18ea98c429345b97e6168cebf8b3422f1f1d8a60e5e2ab0154732cc033774a75b94f85e5b834acbdf7362c13f3707bb767ad6c19290fc39a2a10997aff554 sha512sums = b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index d1c1db7..ee93680 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -14,8 +14,8 @@ pkgname=discord-electron _pkgname=discord _electron=24 -pkgver=0.0.29 -pkgrel=2 +pkgver=0.0.30 +pkgrel=1 pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') provides=("${_pkgname}") @@ -34,10 +34,10 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('38e4c21872fdf7b7716680b70e6f677274be50fce04d16831ed180d894965ca2f8cc8814148e16ca540f8dcba2bb749788f6980180f51d8b1f1556e1a8a368e0' +sha512sums=('2da18ea98c429345b97e6168cebf8b3422f1f1d8a60e5e2ab0154732cc033774a75b94f85e5b834acbdf7362c13f3707bb767ad6c19290fc39a2a10997aff554' 'b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab') -_krisp_b2sum='09db0a3b1e736049f39d8fb6c726b6468e725e503dc9109ebb17930d68007cc3818c7123ad836c36df704da9c803f944b77b3412a1b0418552c87be56ed11604' +_krisp_b2sum='7781ec747f539dbdb800b178273e8e63fb0ed19e80fa3372444dec60db0dcb2f414400b0b31a850ae9e663731cb11fe0589501634a316e9a3315de3d0b99269a' prepare() { # prepare launcher script From 7c6c39ebd990febab8651ce32131842c33c2fccb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 18 Sep 2023 23:29:46 +0200 Subject: [PATCH 550/971] upgpkg: discord-electron-openasar 0.0.30+812-1 upstream release --- discord-electron-openasar/.SRCINFO | 8 ++++---- discord-electron-openasar/PKGBUILD | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index ccc2131..1635c77 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v24) for increased security and performance - pkgver = 0.0.29+812 - pkgrel = 2 + pkgver = 0.0.30+812 + pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -20,10 +20,10 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.29/discord-0.0.29.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.30/discord-0.0.30.tar.gz source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=85220650bde84ff1b27f496da5d7a9cbc995874c - sha512sums = 38e4c21872fdf7b7716680b70e6f677274be50fce04d16831ed180d894965ca2f8cc8814148e16ca540f8dcba2bb749788f6980180f51d8b1f1556e1a8a368e0 + sha512sums = 2da18ea98c429345b97e6168cebf8b3422f1f1d8a60e5e2ab0154732cc033774a75b94f85e5b834acbdf7362c13f3707bb767ad6c19290fc39a2a10997aff554 sha512sums = b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab sha512sums = SKIP diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 68c294a..49d436f 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -7,9 +7,9 @@ pkgname=discord-electron-openasar _pkgname=discord _electron=24 -pkgver=0.0.29+812 +pkgver=0.0.30+812 _pkgver=${pkgver%%+*} -pkgrel=2 +pkgrel=1 pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') provides=("${_pkgname}") @@ -29,11 +29,11 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=85220650bde84ff1b27f496da5d7a9cbc995874c") -sha512sums=('38e4c21872fdf7b7716680b70e6f677274be50fce04d16831ed180d894965ca2f8cc8814148e16ca540f8dcba2bb749788f6980180f51d8b1f1556e1a8a368e0' +sha512sums=('2da18ea98c429345b97e6168cebf8b3422f1f1d8a60e5e2ab0154732cc033774a75b94f85e5b834acbdf7362c13f3707bb767ad6c19290fc39a2a10997aff554' 'b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab' 'SKIP') -_krisp_b2sum='09db0a3b1e736049f39d8fb6c726b6468e725e503dc9109ebb17930d68007cc3818c7123ad836c36df704da9c803f944b77b3412a1b0418552c87be56ed11604' +_krisp_b2sum='7781ec747f539dbdb800b178273e8e63fb0ed19e80fa3372444dec60db0dcb2f414400b0b31a850ae9e663731cb11fe0589501634a316e9a3315de3d0b99269a' # just in case I get the version wrong pkgver() { From 92d541265d5e3c1875d29ba904d47ee6220267d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 18 Sep 2023 23:50:47 +0200 Subject: [PATCH 551/971] upgpkg: obs-vkcapture 1.4.3-1 upstream release --- obs-vkcapture/.SRCINFO | 6 +++--- obs-vkcapture/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/obs-vkcapture/.SRCINFO b/obs-vkcapture/.SRCINFO index 243eb18..4dd38ee 100644 --- a/obs-vkcapture/.SRCINFO +++ b/obs-vkcapture/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = obs-vkcapture - pkgver = 1.4.2 + pkgver = 1.4.3 pkgrel = 1 url = https://github.com/nowrep/obs-vkcapture arch = x86_64 @@ -15,8 +15,8 @@ pkgbase = obs-vkcapture depends = libgl depends = libegl depends = obs-studio>=27 - source = https://github.com/nowrep/obs-vkcapture/archive/v1.4.2/obs-vkcapture-1.4.2.tar.gz - sha512sums = e1cd00ae2eca15ec98f008f7d009397f87298a1edf9b588814a09ec9b80795f1d4b11b04cdae6d5ada2c4250e22bd6e14c3cce570f9664c0c62b42f61078a07b + source = https://github.com/nowrep/obs-vkcapture/archive/v1.4.3/obs-vkcapture-1.4.3.tar.gz + sha512sums = be5917b1e25ccb17c964ac95f15ca05ab151650652f106a5c22d6b7344b2d20e5b265afa664eb74130c819990eaaa6822fa73fbf9085c35b4c041d0058e570a0 pkgname = obs-vkcapture pkgdesc = OBS Linux Vulkan/OpenGL game capture diff --git a/obs-vkcapture/PKGBUILD b/obs-vkcapture/PKGBUILD index 302fbb0..1048071 100644 --- a/obs-vkcapture/PKGBUILD +++ b/obs-vkcapture/PKGBUILD @@ -2,7 +2,7 @@ pkgbase=obs-vkcapture pkgname=("$pkgbase" "lib32-$pkgbase") -pkgver=1.4.2 +pkgver=1.4.3 pkgrel=1 url="https://github.com/nowrep/$pkgbase" license=('GPL2') @@ -10,7 +10,7 @@ arch=('x86_64') depends=('vulkan-icd-loader' 'libgl' 'libegl' 'obs-studio>=27') makedepends=('gcc' 'cmake' 'vulkan-headers' 'lib32-gcc-libs' 'lib32-vulkan-icd-loader' 'lib32-libgl' 'lib32-libegl') source=("https://github.com/nowrep/$pkgbase/archive/v$pkgver/$pkgbase-$pkgver.tar.gz") -sha512sums=('e1cd00ae2eca15ec98f008f7d009397f87298a1edf9b588814a09ec9b80795f1d4b11b04cdae6d5ada2c4250e22bd6e14c3cce570f9664c0c62b42f61078a07b') +sha512sums=('be5917b1e25ccb17c964ac95f15ca05ab151650652f106a5c22d6b7344b2d20e5b265afa664eb74130c819990eaaa6822fa73fbf9085c35b4c041d0058e570a0') build() { cmake -B build -S "$pkgbase-$pkgver" \ From ac264e52cf811eb8ea397c7031ad08f474db2819 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 18 Sep 2023 23:51:04 +0200 Subject: [PATCH 552/971] upgpkg: sublime-text-dev 4.4156-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 2422d81..2a5272c 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4155 + pkgver = 4.4156 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -11,9 +11,9 @@ pkgbase = sublime-text-dev depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = sublime_text_dev_4_4155_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4155_x64.tar.xz - sha512sums_x86_64 = 404fc0f2a998ebde2d8c95e52a345d64d8da06ca171fc02c9242d86e4deb7ee3f5fbfcee4eea4a86633bce0a2eb044de27d6dffe66b722ccf385af5ff4746277 - source_aarch64 = sublime_text_dev_4_4155_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4155_arm64.tar.xz - sha512sums_aarch64 = 616c2f35d441ef687ce3cdae0d99b5f641bcc639374080331c212daaf02596b42436ed73a530a4a1c70436ef40d8de63283925d6ca03837cab8d72ce52afd585 + source_x86_64 = sublime_text_dev_4_4156_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4156_x64.tar.xz + sha512sums_x86_64 = 9d00274e630cf5d459bb2ccee04457a77604ffa2e402ec4cdb2191520afcfde03081616e14f857e3b3bcdb17ea24fafe5aeabd1ce5d5808faa905ee1164bab96 + source_aarch64 = sublime_text_dev_4_4156_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4156_arm64.tar.xz + sha512sums_aarch64 = f49a62242b71faf074bd19680578e1386601ff27dd3ad88e6668e26fb9c43b03052dedce45e49c52ec9bf7e0d4dec301870f1a4baf2690647729db913d98dbfc pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 6722e9f..75087cc 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4155 +pkgver=4.4156 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -17,8 +17,8 @@ install=${pkgname}.install source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha512sums_x86_64=('404fc0f2a998ebde2d8c95e52a345d64d8da06ca171fc02c9242d86e4deb7ee3f5fbfcee4eea4a86633bce0a2eb044de27d6dffe66b722ccf385af5ff4746277') -sha512sums_aarch64=('616c2f35d441ef687ce3cdae0d99b5f641bcc639374080331c212daaf02596b42436ed73a530a4a1c70436ef40d8de63283925d6ca03837cab8d72ce52afd585') +sha512sums_x86_64=('9d00274e630cf5d459bb2ccee04457a77604ffa2e402ec4cdb2191520afcfde03081616e14f857e3b3bcdb17ea24fafe5aeabd1ce5d5808faa905ee1164bab96') +sha512sums_aarch64=('f49a62242b71faf074bd19680578e1386601ff27dd3ad88e6668e26fb9c43b03052dedce45e49c52ec9bf7e0d4dec301870f1a4baf2690647729db913d98dbfc') package() { cd "${srcdir}" From 806856866f095839369db68154508e49bc702aa9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 21 Sep 2023 20:00:03 +0200 Subject: [PATCH 553/971] upgpkg: prometheus-postgresql-exporter 0.14.0-1 upstream release --- prometheus-postgresql-exporter/.SRCINFO | 6 +++--- prometheus-postgresql-exporter/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/prometheus-postgresql-exporter/.SRCINFO b/prometheus-postgresql-exporter/.SRCINFO index 00002ef..fa45902 100644 --- a/prometheus-postgresql-exporter/.SRCINFO +++ b/prometheus-postgresql-exporter/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = prometheus-postgresql-exporter pkgdesc = Prometheus exporter for PostgreSQL - pkgver = 0.13.2 + pkgver = 0.14.0 pkgrel = 1 url = https://github.com/prometheus-community/postgres_exporter arch = x86_64 @@ -9,10 +9,10 @@ pkgbase = prometheus-postgresql-exporter makedepends = go makedepends = make backup = etc/conf.d/prometheus-postgresql-exporter - source = https://github.com/prometheus-community/postgres_exporter/archive/v0.13.2/postgres_exporter-0.13.2.tar.gz + source = https://github.com/prometheus-community/postgres_exporter/archive/v0.14.0/postgres_exporter-0.14.0.tar.gz source = prometheus-postgresql-exporter.service source = prometheus-postgresql-exporter.conf - sha512sums = d3f6e6d22cd967a31eec75a0df19e53df6df959c9e749f501e753de0881c1f958019cecf5ee2a65f8fa1b3424385ea2d3e92eb7abbdd1fdcf7b8eeebb7dad564 + sha512sums = 47a0aa844512d0a3d7853253ef9382ebb51514e02566bbac479cea0c5f20a4f03889fe56ff9cb37a85d75c18d5241764ec1113961759affdd07ae6f6b8152ce3 sha512sums = 598d201054de604ac78e2b335ad9a219c5d130de6901a6fe64643ac5c9d74314548b65ba2ee675095d8a140b0b48a896cadf6745848e210143761d81e2534402 sha512sums = 70e5f4a0a184322d21204a7a7a17fd604dc425b106e9ab1897c6805c52469ecad732e96f7b0f0d35763f6bc3945dc5562cd27459776e83c609834c931d09508f diff --git a/prometheus-postgresql-exporter/PKGBUILD b/prometheus-postgresql-exporter/PKGBUILD index 4ce37ea..3135d36 100644 --- a/prometheus-postgresql-exporter/PKGBUILD +++ b/prometheus-postgresql-exporter/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Nils Czernia pkgname=prometheus-postgresql-exporter -pkgver=0.13.2 +pkgver=0.14.0 pkgrel=1 pkgdesc="Prometheus exporter for PostgreSQL" arch=('x86_64') @@ -13,7 +13,7 @@ backup=('etc/conf.d/prometheus-postgresql-exporter') source=("https://github.com/prometheus-community/postgres_exporter/archive/v${pkgver}/postgres_exporter-${pkgver}.tar.gz" "prometheus-postgresql-exporter.service" "prometheus-postgresql-exporter.conf") -sha512sums=('d3f6e6d22cd967a31eec75a0df19e53df6df959c9e749f501e753de0881c1f958019cecf5ee2a65f8fa1b3424385ea2d3e92eb7abbdd1fdcf7b8eeebb7dad564' +sha512sums=('47a0aa844512d0a3d7853253ef9382ebb51514e02566bbac479cea0c5f20a4f03889fe56ff9cb37a85d75c18d5241764ec1113961759affdd07ae6f6b8152ce3' '598d201054de604ac78e2b335ad9a219c5d130de6901a6fe64643ac5c9d74314548b65ba2ee675095d8a140b0b48a896cadf6745848e210143761d81e2534402' '70e5f4a0a184322d21204a7a7a17fd604dc425b106e9ab1897c6805c52469ecad732e96f7b0f0d35763f6bc3945dc5562cd27459776e83c609834c931d09508f') From 69c83dfdf5ae5662d95204c682bb97d87005ebdf Mon Sep 17 00:00:00 2001 From: Joseph DiGiovanni Date: Sun, 24 Sep 2023 10:51:52 -0400 Subject: [PATCH 554/971] Initial commit --- .SRCINFO | 14 ++++++++++++++ .gitignore | 13 +++++++++++++ PKGBUILD | 26 ++++++++++++++++++++++++++ rcedit | 2 ++ 4 files changed, 55 insertions(+) create mode 100644 .SRCINFO create mode 100644 .gitignore create mode 100644 PKGBUILD create mode 100755 rcedit diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..25c7aa5 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,14 @@ +pkgbase = rcedit-bin + pkgdesc = Command line tool to edit resources of exe files. + pkgver = 1.1.1 + pkgrel = 1 + url = https://github.com/electron/rcedit/ + arch = any + license = MIT + depends = wine + source = https://github.com/electron/rcedit/releases/download/v1.1.1/rcedit-x64.exe + source = rcedit + sha256sums = 02e8e8c5d430d8b768980f517b62d7792d690982b9ba0f7e04163cbc1a6e7915 + sha256sums = 9c32c0930c2f7c1635854696845d20cb2d421582a45cd72f60c2da4332c86b2b + +pkgname = rcedit-bin diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b739055 --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +*.tar +*.tar.* +*.jar +*.exe +*.msi +*.zip +*.tgz +*.log +*.log.* +*.sig + +pkg/ +src/ diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..4e26813 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: jdigi78 + +pkgname=rcedit-bin +pkgver=1.1.1 +pkgrel=1 +pkgdesc='Command line tool to edit resources of exe files.' +arch=('any') +url='https://github.com/electron/rcedit/' +license=('MIT') +depends=('wine') +source=("https://github.com/electron/rcedit/releases/download/v${pkgver}/rcedit-x64.exe" + 'rcedit') +sha256sums=('02e8e8c5d430d8b768980f517b62d7792d690982b9ba0f7e04163cbc1a6e7915' + '9c32c0930c2f7c1635854696845d20cb2d421582a45cd72f60c2da4332c86b2b') + +installdir="/opt/rcedit" + +package() { + install -dm755 "${pkgdir}"/usr/bin/ + install -dm755 "${pkgdir}${installdir}" + + install -Dm755 "${srcdir}/rcedit-x64.exe" "${pkgdir}${installdir}/rcedit-x64.exe" + install -Dm755 "${srcdir}/rcedit" "${pkgdir}${installdir}/rcedit" + + ln -s "${installdir}/rcedit" "${pkgdir}/usr/bin/rcedit" +} diff --git a/rcedit b/rcedit new file mode 100755 index 0000000..6a083fa --- /dev/null +++ b/rcedit @@ -0,0 +1,2 @@ +#!/bin/sh +exec wine rcedit-x64.exe "$@" From 3425beb572139711a37accab75a26d27064ca8d5 Mon Sep 17 00:00:00 2001 From: Joseph DiGiovanni Date: Sun, 24 Sep 2023 11:07:22 -0400 Subject: [PATCH 555/971] Fixed launch script --- .SRCINFO | 4 ++-- PKGBUILD | 15 ++++----------- rcedit | 2 +- 3 files changed, 7 insertions(+), 14 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 25c7aa5..4ea338b 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = rcedit-bin pkgdesc = Command line tool to edit resources of exe files. pkgver = 1.1.1 - pkgrel = 1 + pkgrel = 2 url = https://github.com/electron/rcedit/ arch = any license = MIT @@ -9,6 +9,6 @@ pkgbase = rcedit-bin source = https://github.com/electron/rcedit/releases/download/v1.1.1/rcedit-x64.exe source = rcedit sha256sums = 02e8e8c5d430d8b768980f517b62d7792d690982b9ba0f7e04163cbc1a6e7915 - sha256sums = 9c32c0930c2f7c1635854696845d20cb2d421582a45cd72f60c2da4332c86b2b + sha256sums = 147cf514f855475edba9cd9267700b091c75ce424a8aae4bf24c339d72752766 pkgname = rcedit-bin diff --git a/PKGBUILD b/PKGBUILD index 4e26813..874d560 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=rcedit-bin pkgver=1.1.1 -pkgrel=1 +pkgrel=2 pkgdesc='Command line tool to edit resources of exe files.' arch=('any') url='https://github.com/electron/rcedit/' @@ -11,16 +11,9 @@ depends=('wine') source=("https://github.com/electron/rcedit/releases/download/v${pkgver}/rcedit-x64.exe" 'rcedit') sha256sums=('02e8e8c5d430d8b768980f517b62d7792d690982b9ba0f7e04163cbc1a6e7915' - '9c32c0930c2f7c1635854696845d20cb2d421582a45cd72f60c2da4332c86b2b') - -installdir="/opt/rcedit" + '147cf514f855475edba9cd9267700b091c75ce424a8aae4bf24c339d72752766') package() { - install -dm755 "${pkgdir}"/usr/bin/ - install -dm755 "${pkgdir}${installdir}" - - install -Dm755 "${srcdir}/rcedit-x64.exe" "${pkgdir}${installdir}/rcedit-x64.exe" - install -Dm755 "${srcdir}/rcedit" "${pkgdir}${installdir}/rcedit" - - ln -s "${installdir}/rcedit" "${pkgdir}/usr/bin/rcedit" + install -Dm755 "${srcdir}/rcedit-x64.exe" "${pkgdir}/opt/rcedit/rcedit-x64.exe" + install -Dm755 "${srcdir}/rcedit" "${pkgdir}/usr/bin//rcedit" } diff --git a/rcedit b/rcedit index 6a083fa..e3ff267 100755 --- a/rcedit +++ b/rcedit @@ -1,2 +1,2 @@ #!/bin/sh -exec wine rcedit-x64.exe "$@" +exec wine /opt/rcedit/rcedit-x64.exe "$@" From 9bc21e291e4f59821ae2f459d3846345628408ab Mon Sep 17 00:00:00 2001 From: Joseph DiGiovanni Date: Sun, 24 Sep 2023 11:21:52 -0400 Subject: [PATCH 556/971] Disable wine debug messages --- .SRCINFO | 2 +- PKGBUILD | 2 +- rcedit | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 4ea338b..cf92ed4 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = rcedit-bin pkgdesc = Command line tool to edit resources of exe files. pkgver = 1.1.1 - pkgrel = 2 + pkgrel = 3 url = https://github.com/electron/rcedit/ arch = any license = MIT diff --git a/PKGBUILD b/PKGBUILD index 874d560..b5f5c80 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=rcedit-bin pkgver=1.1.1 -pkgrel=2 +pkgrel=3 pkgdesc='Command line tool to edit resources of exe files.' arch=('any') url='https://github.com/electron/rcedit/' diff --git a/rcedit b/rcedit index e3ff267..d1e527c 100755 --- a/rcedit +++ b/rcedit @@ -1,2 +1,3 @@ #!/bin/sh +export WINEDEBUG=-all exec wine /opt/rcedit/rcedit-x64.exe "$@" From 1a10f963ab9d0786e1c1abc956577ce2537bb31f Mon Sep 17 00:00:00 2001 From: Joseph DiGiovanni Date: Sun, 24 Sep 2023 11:30:34 -0400 Subject: [PATCH 557/971] Update launch script checksum --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index cf92ed4..f45ce19 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -9,6 +9,6 @@ pkgbase = rcedit-bin source = https://github.com/electron/rcedit/releases/download/v1.1.1/rcedit-x64.exe source = rcedit sha256sums = 02e8e8c5d430d8b768980f517b62d7792d690982b9ba0f7e04163cbc1a6e7915 - sha256sums = 147cf514f855475edba9cd9267700b091c75ce424a8aae4bf24c339d72752766 + sha256sums = 4d42d20aafe098f9403db50ab804070c9710d57f07462eef98ee5a77976e2d17 pkgname = rcedit-bin diff --git a/PKGBUILD b/PKGBUILD index b5f5c80..0ff6ae4 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -11,7 +11,7 @@ depends=('wine') source=("https://github.com/electron/rcedit/releases/download/v${pkgver}/rcedit-x64.exe" 'rcedit') sha256sums=('02e8e8c5d430d8b768980f517b62d7792d690982b9ba0f7e04163cbc1a6e7915' - '147cf514f855475edba9cd9267700b091c75ce424a8aae4bf24c339d72752766') + '4d42d20aafe098f9403db50ab804070c9710d57f07462eef98ee5a77976e2d17') package() { install -Dm755 "${srcdir}/rcedit-x64.exe" "${pkgdir}/opt/rcedit/rcedit-x64.exe" From c13999d451756cf661a4abf9126ea14c9b402079 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 3 Oct 2023 20:40:18 +0200 Subject: [PATCH 558/971] upgpkg: clonezilla-unstable 5.5.11-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 6edadd8..63f5689 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.9 + pkgver = 5.5.11 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.9.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.11.tar.xz source = usrbin.patch - sha512sums = 0a4a5e9b1207d6aaa572251fff36a741c6131503f0b1429ce6ff4c2a6bb65e27456d0f03c9d1603858e821f8d3cb6cf2096be26fbe4581d4cb8678b52eaba932 + sha512sums = ba094d02b4e6b24f1bb79121507efe76320356e2e4d0cff55e21be258fb6a3ed894bced5b57efe6730b7d5f119588d0a559a26747df0fc7b64537aeb4cc4d5ef sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 391b20a..acbd8f1 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.9 +pkgver=5.5.11 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('0a4a5e9b1207d6aaa572251fff36a741c6131503f0b1429ce6ff4c2a6bb65e27456d0f03c9d1603858e821f8d3cb6cf2096be26fbe4581d4cb8678b52eaba932' +sha512sums=('ba094d02b4e6b24f1bb79121507efe76320356e2e4d0cff55e21be258fb6a3ed894bced5b57efe6730b7d5f119588d0a559a26747df0fc7b64537aeb4cc4d5ef' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 4f0ca810aaf4d0a553c5bad96414b16eb60a7d7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 3 Oct 2023 20:40:18 +0200 Subject: [PATCH 559/971] upgpkg: clonezilla-unstable 5.5.11-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 6edadd8..63f5689 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.9 + pkgver = 5.5.11 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.9.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.11.tar.xz source = usrbin.patch - sha512sums = 0a4a5e9b1207d6aaa572251fff36a741c6131503f0b1429ce6ff4c2a6bb65e27456d0f03c9d1603858e821f8d3cb6cf2096be26fbe4581d4cb8678b52eaba932 + sha512sums = ba094d02b4e6b24f1bb79121507efe76320356e2e4d0cff55e21be258fb6a3ed894bced5b57efe6730b7d5f119588d0a559a26747df0fc7b64537aeb4cc4d5ef sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 391b20a..acbd8f1 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.9 +pkgver=5.5.11 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('0a4a5e9b1207d6aaa572251fff36a741c6131503f0b1429ce6ff4c2a6bb65e27456d0f03c9d1603858e821f8d3cb6cf2096be26fbe4581d4cb8678b52eaba932' +sha512sums=('ba094d02b4e6b24f1bb79121507efe76320356e2e4d0cff55e21be258fb6a3ed894bced5b57efe6730b7d5f119588d0a559a26747df0fc7b64537aeb4cc4d5ef' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From f1574df6e9a518e981275da0185a5e1b32aaa8f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 3 Oct 2023 20:42:00 +0200 Subject: [PATCH 560/971] upgpkg: obs-vkcapture 1.4.4-1 upstream release --- obs-vkcapture/.SRCINFO | 6 +++--- obs-vkcapture/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/obs-vkcapture/.SRCINFO b/obs-vkcapture/.SRCINFO index 4dd38ee..1ba8869 100644 --- a/obs-vkcapture/.SRCINFO +++ b/obs-vkcapture/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = obs-vkcapture - pkgver = 1.4.3 + pkgver = 1.4.4 pkgrel = 1 url = https://github.com/nowrep/obs-vkcapture arch = x86_64 @@ -15,8 +15,8 @@ pkgbase = obs-vkcapture depends = libgl depends = libegl depends = obs-studio>=27 - source = https://github.com/nowrep/obs-vkcapture/archive/v1.4.3/obs-vkcapture-1.4.3.tar.gz - sha512sums = be5917b1e25ccb17c964ac95f15ca05ab151650652f106a5c22d6b7344b2d20e5b265afa664eb74130c819990eaaa6822fa73fbf9085c35b4c041d0058e570a0 + source = https://github.com/nowrep/obs-vkcapture/archive/v1.4.4/obs-vkcapture-1.4.4.tar.gz + sha512sums = 656a0b1b0b59002b9688a7876412747f3af00637b140728be01c43b0bfd6ea6ae26d95ef0313e2a8e159102a4a0068a1a9b4730672ef99abb4362b8b1bf1a2a9 pkgname = obs-vkcapture pkgdesc = OBS Linux Vulkan/OpenGL game capture diff --git a/obs-vkcapture/PKGBUILD b/obs-vkcapture/PKGBUILD index 1048071..44b9db2 100644 --- a/obs-vkcapture/PKGBUILD +++ b/obs-vkcapture/PKGBUILD @@ -2,7 +2,7 @@ pkgbase=obs-vkcapture pkgname=("$pkgbase" "lib32-$pkgbase") -pkgver=1.4.3 +pkgver=1.4.4 pkgrel=1 url="https://github.com/nowrep/$pkgbase" license=('GPL2') @@ -10,7 +10,7 @@ arch=('x86_64') depends=('vulkan-icd-loader' 'libgl' 'libegl' 'obs-studio>=27') makedepends=('gcc' 'cmake' 'vulkan-headers' 'lib32-gcc-libs' 'lib32-vulkan-icd-loader' 'lib32-libgl' 'lib32-libegl') source=("https://github.com/nowrep/$pkgbase/archive/v$pkgver/$pkgbase-$pkgver.tar.gz") -sha512sums=('be5917b1e25ccb17c964ac95f15ca05ab151650652f106a5c22d6b7344b2d20e5b265afa664eb74130c819990eaaa6822fa73fbf9085c35b4c041d0058e570a0') +sha512sums=('656a0b1b0b59002b9688a7876412747f3af00637b140728be01c43b0bfd6ea6ae26d95ef0313e2a8e159102a4a0068a1a9b4730672ef99abb4362b8b1bf1a2a9') build() { cmake -B build -S "$pkgbase-$pkgver" \ From adf6c51a1ffcbe588894273446070375db1c7256 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 4 Oct 2023 23:45:15 +0200 Subject: [PATCH 561/971] upgpkg: firefox-syncstorage 0.14.0-1 upstream release --- firefox-syncstorage/.SRCINFO | 9 +++++---- firefox-syncstorage/PKGBUILD | 7 ++++--- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index 1fe6ece..8621ac5 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.13.6 + pkgver = 0.14.0 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -19,10 +19,11 @@ pkgbase = firefox-syncstorage depends = python-fxa depends = python-tokenlib optdepends = mysql: for use with a local database server + options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.13.6/syncstorage-rs-0.13.6.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.14.0/syncstorage-rs-0.14.0.tar.gz source = firefox-syncstorage.service - sha256sums = ddf8169a0a9bd06db10bf032a2b9af7ea4e5816251e82d9e7627f87eba1f27bd - sha256sums = 609e057cd835ea54b06b32b98e210cd946255f652e7754c9160fd7c94379a83d + sha512sums = 678f445f9ad9f9cb94f0a7d231e008052aaeec3b6da2d90ac9b80b3da5ee36275d8433a52a49850a7df01d41ed7ad5e90eb54f8b654355c723dc8d4c6fc3f80a + sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index 8f0836e..b4bed1f 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.13.6 +pkgver=0.14.0 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -14,11 +14,12 @@ license=('MPL2') depends=('openssl' 'python-fxa' 'python-tokenlib') makedepends=('rust' 'cmake' 'pkgconf' 'mariadb-libs') optdepends=('mysql: for use with a local database server') +options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha256sums=('ddf8169a0a9bd06db10bf032a2b9af7ea4e5816251e82d9e7627f87eba1f27bd' - '609e057cd835ea54b06b32b98e210cd946255f652e7754c9160fd7c94379a83d') +sha512sums=('678f445f9ad9f9cb94f0a7d231e008052aaeec3b6da2d90ac9b80b3da5ee36275d8433a52a49850a7df01d41ed7ad5e90eb54f8b654355c723dc8d4c6fc3f80a' + '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") build() { From ce943e50849a7fa1dc273aa69fa439d3e4744d88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 5 Oct 2023 22:29:25 +0200 Subject: [PATCH 562/971] upgpkg: discord-electron 0.0.31-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 1f5fcf4..e8ef457 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v24) for increased security and performance - pkgver = 0.0.30 + pkgver = 0.0.31 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.30/discord-0.0.30.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.31/discord-0.0.31.tar.gz source = discord-launcher.sh - sha512sums = 2da18ea98c429345b97e6168cebf8b3422f1f1d8a60e5e2ab0154732cc033774a75b94f85e5b834acbdf7362c13f3707bb767ad6c19290fc39a2a10997aff554 + sha512sums = 596f0e2271e61798594d97a85728eea2bfa851db7f1e8b7fa65e1631dfeb347fa8d6087556854c0e775b88678a03b8ece97d0c1293b156e7ea908f6570645248 sha512sums = b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index ee93680..8a8262f 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -14,7 +14,7 @@ pkgname=discord-electron _pkgname=discord _electron=24 -pkgver=0.0.30 +pkgver=0.0.31 pkgrel=1 pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') @@ -34,10 +34,10 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('2da18ea98c429345b97e6168cebf8b3422f1f1d8a60e5e2ab0154732cc033774a75b94f85e5b834acbdf7362c13f3707bb767ad6c19290fc39a2a10997aff554' +sha512sums=('596f0e2271e61798594d97a85728eea2bfa851db7f1e8b7fa65e1631dfeb347fa8d6087556854c0e775b88678a03b8ece97d0c1293b156e7ea908f6570645248' 'b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab') -_krisp_b2sum='7781ec747f539dbdb800b178273e8e63fb0ed19e80fa3372444dec60db0dcb2f414400b0b31a850ae9e663731cb11fe0589501634a316e9a3315de3d0b99269a' +_krisp_b2sum='d164c2ee27826c97fc18bd1bce1351b4199daf0bdc4be635666ab146a56a09106af241f34fa1f5c123bc86d9c27503bded9a015835d6040b17c238a9aab699a5' prepare() { # prepare launcher script From c9d0b678342e90706fd512fe0f85aff3870f8809 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 5 Oct 2023 22:30:06 +0200 Subject: [PATCH 563/971] upgpkg: discord-electron-openasar 0.0.31+812-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 1635c77..b7bb28d 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v24) for increased security and performance - pkgver = 0.0.30+812 + pkgver = 0.0.31+812 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -20,10 +20,10 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.30/discord-0.0.30.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.31/discord-0.0.31.tar.gz source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=85220650bde84ff1b27f496da5d7a9cbc995874c - sha512sums = 2da18ea98c429345b97e6168cebf8b3422f1f1d8a60e5e2ab0154732cc033774a75b94f85e5b834acbdf7362c13f3707bb767ad6c19290fc39a2a10997aff554 + sha512sums = 596f0e2271e61798594d97a85728eea2bfa851db7f1e8b7fa65e1631dfeb347fa8d6087556854c0e775b88678a03b8ece97d0c1293b156e7ea908f6570645248 sha512sums = b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab sha512sums = SKIP diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 49d436f..d63dd9d 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -7,7 +7,7 @@ pkgname=discord-electron-openasar _pkgname=discord _electron=24 -pkgver=0.0.30+812 +pkgver=0.0.31+812 _pkgver=${pkgver%%+*} pkgrel=1 pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electron}) for increased security and performance" @@ -29,11 +29,11 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=85220650bde84ff1b27f496da5d7a9cbc995874c") -sha512sums=('2da18ea98c429345b97e6168cebf8b3422f1f1d8a60e5e2ab0154732cc033774a75b94f85e5b834acbdf7362c13f3707bb767ad6c19290fc39a2a10997aff554' +sha512sums=('596f0e2271e61798594d97a85728eea2bfa851db7f1e8b7fa65e1631dfeb347fa8d6087556854c0e775b88678a03b8ece97d0c1293b156e7ea908f6570645248' 'b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab' 'SKIP') -_krisp_b2sum='7781ec747f539dbdb800b178273e8e63fb0ed19e80fa3372444dec60db0dcb2f414400b0b31a850ae9e663731cb11fe0589501634a316e9a3315de3d0b99269a' +_krisp_b2sum='d164c2ee27826c97fc18bd1bce1351b4199daf0bdc4be635666ab146a56a09106af241f34fa1f5c123bc86d9c27503bded9a015835d6040b17c238a9aab699a5' # just in case I get the version wrong pkgver() { From b8f306d2a83c834676ea02796855103e7e2a9093 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 7 Oct 2023 20:25:10 +0200 Subject: [PATCH 564/971] upgpkg: clonezilla-unstable 5.5.12-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 63f5689..98d29fe 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.11 + pkgver = 5.5.12 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.11.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.12.tar.xz source = usrbin.patch - sha512sums = ba094d02b4e6b24f1bb79121507efe76320356e2e4d0cff55e21be258fb6a3ed894bced5b57efe6730b7d5f119588d0a559a26747df0fc7b64537aeb4cc4d5ef + sha512sums = f7fa037a5e86e8b97086f2ac7e26484370a659ff819d63d4ec8b77fde9bd546dcc8021cd8b56ed5822b0dd72912a48d060fc01fd97eeb53cb568e615d59a6843 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index acbd8f1..137f594 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.11 +pkgver=5.5.12 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('ba094d02b4e6b24f1bb79121507efe76320356e2e4d0cff55e21be258fb6a3ed894bced5b57efe6730b7d5f119588d0a559a26747df0fc7b64537aeb4cc4d5ef' +sha512sums=('f7fa037a5e86e8b97086f2ac7e26484370a659ff819d63d4ec8b77fde9bd546dcc8021cd8b56ed5822b0dd72912a48d060fc01fd97eeb53cb568e615d59a6843' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 7872e2c1544809693f5e0d4da85dfed9e28abeb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 7 Oct 2023 20:25:10 +0200 Subject: [PATCH 565/971] upgpkg: clonezilla-unstable 5.5.12-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 63f5689..98d29fe 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.11 + pkgver = 5.5.12 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.11.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.12.tar.xz source = usrbin.patch - sha512sums = ba094d02b4e6b24f1bb79121507efe76320356e2e4d0cff55e21be258fb6a3ed894bced5b57efe6730b7d5f119588d0a559a26747df0fc7b64537aeb4cc4d5ef + sha512sums = f7fa037a5e86e8b97086f2ac7e26484370a659ff819d63d4ec8b77fde9bd546dcc8021cd8b56ed5822b0dd72912a48d060fc01fd97eeb53cb568e615d59a6843 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index acbd8f1..137f594 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.11 +pkgver=5.5.12 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('ba094d02b4e6b24f1bb79121507efe76320356e2e4d0cff55e21be258fb6a3ed894bced5b57efe6730b7d5f119588d0a559a26747df0fc7b64537aeb4cc4d5ef' +sha512sums=('f7fa037a5e86e8b97086f2ac7e26484370a659ff819d63d4ec8b77fde9bd546dcc8021cd8b56ed5822b0dd72912a48d060fc01fd97eeb53cb568e615d59a6843' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 12c586fe62f62e989127860fbe801019f4da4396 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 12 Oct 2023 21:50:21 +0200 Subject: [PATCH 566/971] upgpkg: gvisor-bin 20231009.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index 4b2ea7a..cbd83fe 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20230904.0 + pkgver = 20231009.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20230904.0::https://storage.googleapis.com/gvisor/releases/release/20230904.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20230904.0::https://storage.googleapis.com/gvisor/releases/release/20230904.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = af3dbb48d8c1476e648ee700228b4cbfb5fbdd8f1dac9e36881f949d2b84559d588c192f5e54e314bb240acc15b3df054ce03f92f4fecf33f2a6f45a9abe5d1e - sha512sums_x86_64 = 677dbe314190855c807c9ec7cbaed721812d21a8cf042218da1440df6af60d9554bf45f295cf9753cff2ad30a5ef439f215da38e036718619c1b5a5019ffe623 - source_aarch64 = runsc-aarch64-20230904.0::https://storage.googleapis.com/gvisor/releases/release/20230904.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20230904.0::https://storage.googleapis.com/gvisor/releases/release/20230904.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 0c9cda69b8b765877ec6202ea082dc31afe87ff28714e8dc127114a41dbbee0d5a477ac65b58ed171de3658ccd7de5606295694a654172bb75c07f3bb8dca62c - sha512sums_aarch64 = 2cc0a33518f3dcb1b341e1a04f821955c96615fcf68583fbd591b51618ace63cadc846efac67cd11b50d44455a2de59df37a2ca5a1afc513bd07aa9a2838b66a + source_x86_64 = runsc-x86_64-20231009.0::https://storage.googleapis.com/gvisor/releases/release/20231009.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20231009.0::https://storage.googleapis.com/gvisor/releases/release/20231009.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = a641723d442991cca50fd55b5e1e5c53e1efcad2ae4634ca1e2425ef33cc04515c88b4c43e7e1e0fb4cd61fdc285f08dd914e0ab9271cdcc921807d760b02543 + sha512sums_x86_64 = fffd6e03bd5aa2481300c3b9cecb02c1c6b64d97560ca12aa19fd886243e84ece370370ac960d6c849a258d47be399c94f7b5ba2b8fcad6787eabc86b0bfba94 + source_aarch64 = runsc-aarch64-20231009.0::https://storage.googleapis.com/gvisor/releases/release/20231009.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20231009.0::https://storage.googleapis.com/gvisor/releases/release/20231009.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 26e2e9750c05f9919e4e150f6ce2f4e9536444bed6817cc5bb6cdfda374cd123e3f82b30f5c1b55b0b71ddfaffbf150c2fdc3aabecc55a0ed226fdda3f05d8de + sha512sums_aarch64 = d6eec33d5ba7f557f19f9499ade502d510cb4e4d9d3525a677fc1942403a984c343be5ecb64f2904823d478e626027b3aea69c9e641240cac3c2c8c9e8feaa00 pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index cc37a2f..43313fe 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20230904.0 +pkgver=20231009.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('af3dbb48d8c1476e648ee700228b4cbfb5fbdd8f1dac9e36881f949d2b84559d588c192f5e54e314bb240acc15b3df054ce03f92f4fecf33f2a6f45a9abe5d1e' - '677dbe314190855c807c9ec7cbaed721812d21a8cf042218da1440df6af60d9554bf45f295cf9753cff2ad30a5ef439f215da38e036718619c1b5a5019ffe623') -sha512sums_aarch64=('0c9cda69b8b765877ec6202ea082dc31afe87ff28714e8dc127114a41dbbee0d5a477ac65b58ed171de3658ccd7de5606295694a654172bb75c07f3bb8dca62c' - '2cc0a33518f3dcb1b341e1a04f821955c96615fcf68583fbd591b51618ace63cadc846efac67cd11b50d44455a2de59df37a2ca5a1afc513bd07aa9a2838b66a') +sha512sums_x86_64=('a641723d442991cca50fd55b5e1e5c53e1efcad2ae4634ca1e2425ef33cc04515c88b4c43e7e1e0fb4cd61fdc285f08dd914e0ab9271cdcc921807d760b02543' + 'fffd6e03bd5aa2481300c3b9cecb02c1c6b64d97560ca12aa19fd886243e84ece370370ac960d6c849a258d47be399c94f7b5ba2b8fcad6787eabc86b0bfba94') +sha512sums_aarch64=('26e2e9750c05f9919e4e150f6ce2f4e9536444bed6817cc5bb6cdfda374cd123e3f82b30f5c1b55b0b71ddfaffbf150c2fdc3aabecc55a0ed226fdda3f05d8de' + 'd6eec33d5ba7f557f19f9499ade502d510cb4e4d9d3525a677fc1942403a984c343be5ecb64f2904823d478e626027b3aea69c9e641240cac3c2c8c9e8feaa00') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From 88e08b1d6dfd93be7f4ba991e18a124d9dedd2e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 12 Oct 2023 21:53:21 +0200 Subject: [PATCH 567/971] upgpkg: gvisor-git 20231009.0-1 upstream release --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index cb1746d..dd2c410 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20230904.0 + pkgver = 20231009.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index e434497..12a365b 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20230904.0 +pkgver=20231009.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From b5712056b039546107b4e914d5815d2da117e8d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 17 Oct 2023 02:53:35 +0200 Subject: [PATCH 568/971] upgpkg: discord-electron 0.0.32-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index e8ef457..e20f1a3 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v24) for increased security and performance - pkgver = 0.0.31 + pkgver = 0.0.32 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.31/discord-0.0.31.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.32/discord-0.0.32.tar.gz source = discord-launcher.sh - sha512sums = 596f0e2271e61798594d97a85728eea2bfa851db7f1e8b7fa65e1631dfeb347fa8d6087556854c0e775b88678a03b8ece97d0c1293b156e7ea908f6570645248 + sha512sums = e3ca9075e4a66c7c4358bdccb748f8f849de24cf3036b85d2c42dd15f8e56125fc42e86e73920751126b0e4fa73596a1d7af1f21ac9903911d6c843637c46813 sha512sums = b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 8a8262f..cc88b18 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -14,7 +14,7 @@ pkgname=discord-electron _pkgname=discord _electron=24 -pkgver=0.0.31 +pkgver=0.0.32 pkgrel=1 pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') @@ -34,10 +34,10 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('596f0e2271e61798594d97a85728eea2bfa851db7f1e8b7fa65e1631dfeb347fa8d6087556854c0e775b88678a03b8ece97d0c1293b156e7ea908f6570645248' +sha512sums=('e3ca9075e4a66c7c4358bdccb748f8f849de24cf3036b85d2c42dd15f8e56125fc42e86e73920751126b0e4fa73596a1d7af1f21ac9903911d6c843637c46813' 'b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab') -_krisp_b2sum='d164c2ee27826c97fc18bd1bce1351b4199daf0bdc4be635666ab146a56a09106af241f34fa1f5c123bc86d9c27503bded9a015835d6040b17c238a9aab699a5' +_krisp_b2sum='90c3fbf6aab16638995fe21c49d4b8f93dbec9a9147cc7b1424c591c630aae84c362ee2b1a81507311b31e442e6b2706e6f48e1df8edd7248f5659108bbb3711' prepare() { # prepare launcher script From 4f84bf4314f61dfb904c3debc5ad0fe7cfc901f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 17 Oct 2023 02:53:47 +0200 Subject: [PATCH 569/971] upgpkg: discord-electron-openasar 0.0.32+812-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index b7bb28d..71a3a47 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v24) for increased security and performance - pkgver = 0.0.31+812 + pkgver = 0.0.32+812 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -20,10 +20,10 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.31/discord-0.0.31.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.32/discord-0.0.32.tar.gz source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=85220650bde84ff1b27f496da5d7a9cbc995874c - sha512sums = 596f0e2271e61798594d97a85728eea2bfa851db7f1e8b7fa65e1631dfeb347fa8d6087556854c0e775b88678a03b8ece97d0c1293b156e7ea908f6570645248 + sha512sums = e3ca9075e4a66c7c4358bdccb748f8f849de24cf3036b85d2c42dd15f8e56125fc42e86e73920751126b0e4fa73596a1d7af1f21ac9903911d6c843637c46813 sha512sums = b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab sha512sums = SKIP diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index d63dd9d..d09a4a5 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -7,7 +7,7 @@ pkgname=discord-electron-openasar _pkgname=discord _electron=24 -pkgver=0.0.31+812 +pkgver=0.0.32+812 _pkgver=${pkgver%%+*} pkgrel=1 pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electron}) for increased security and performance" @@ -29,11 +29,11 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=85220650bde84ff1b27f496da5d7a9cbc995874c") -sha512sums=('596f0e2271e61798594d97a85728eea2bfa851db7f1e8b7fa65e1631dfeb347fa8d6087556854c0e775b88678a03b8ece97d0c1293b156e7ea908f6570645248' +sha512sums=('e3ca9075e4a66c7c4358bdccb748f8f849de24cf3036b85d2c42dd15f8e56125fc42e86e73920751126b0e4fa73596a1d7af1f21ac9903911d6c843637c46813' 'b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab' 'SKIP') -_krisp_b2sum='d164c2ee27826c97fc18bd1bce1351b4199daf0bdc4be635666ab146a56a09106af241f34fa1f5c123bc86d9c27503bded9a015835d6040b17c238a9aab699a5' +_krisp_b2sum='90c3fbf6aab16638995fe21c49d4b8f93dbec9a9147cc7b1424c591c630aae84c362ee2b1a81507311b31e442e6b2706e6f48e1df8edd7248f5659108bbb3711' # just in case I get the version wrong pkgver() { From a9d8072b0fff3be64e98528aaa4a78c117dd8ab3 Mon Sep 17 00:00:00 2001 From: Joseph DiGiovanni Date: Thu, 19 Oct 2023 23:59:53 -0400 Subject: [PATCH 570/971] Include licence and general clean up --- .SRCINFO | 4 +++- .gitignore | 1 + PKGBUILD | 13 +++++++++---- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index f45ce19..9ed1b2b 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,14 +1,16 @@ pkgbase = rcedit-bin pkgdesc = Command line tool to edit resources of exe files. pkgver = 1.1.1 - pkgrel = 3 + pkgrel = 4 url = https://github.com/electron/rcedit/ arch = any license = MIT depends = wine source = https://github.com/electron/rcedit/releases/download/v1.1.1/rcedit-x64.exe + source = https://raw.githubusercontent.com/electron/rcedit/b807b34a644c86c0b0d89c7f073967e79202731a/LICENSE source = rcedit sha256sums = 02e8e8c5d430d8b768980f517b62d7792d690982b9ba0f7e04163cbc1a6e7915 + sha256sums = 224fcc506ef97afd088b487edab374abcad7e3d4de55fb8cce4f04328397213f sha256sums = 4d42d20aafe098f9403db50ab804070c9710d57f07462eef98ee5a77976e2d17 pkgname = rcedit-bin diff --git a/.gitignore b/.gitignore index b739055..b388f09 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ pkg/ src/ +LICENSE diff --git a/PKGBUILD b/PKGBUILD index 0ff6ae4..2555c1b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,18 +2,23 @@ pkgname=rcedit-bin pkgver=1.1.1 -pkgrel=3 +pkgrel=4 pkgdesc='Command line tool to edit resources of exe files.' arch=('any') url='https://github.com/electron/rcedit/' license=('MIT') depends=('wine') + source=("https://github.com/electron/rcedit/releases/download/v${pkgver}/rcedit-x64.exe" - 'rcedit') + "https://raw.githubusercontent.com/electron/rcedit/b807b34a644c86c0b0d89c7f073967e79202731a/LICENSE" + "rcedit") + sha256sums=('02e8e8c5d430d8b768980f517b62d7792d690982b9ba0f7e04163cbc1a6e7915' + '224fcc506ef97afd088b487edab374abcad7e3d4de55fb8cce4f04328397213f' '4d42d20aafe098f9403db50ab804070c9710d57f07462eef98ee5a77976e2d17') package() { - install -Dm755 "${srcdir}/rcedit-x64.exe" "${pkgdir}/opt/rcedit/rcedit-x64.exe" - install -Dm755 "${srcdir}/rcedit" "${pkgdir}/usr/bin//rcedit" + install -Dm755 "rcedit-x64.exe" "${pkgdir}/opt/rcedit/rcedit-x64.exe" + install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" + install -Dm755 "rcedit" "${pkgdir}/usr/bin/rcedit" } From 5f723c4136bd08b7ea1065ecea34c11803ef6f25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 20 Oct 2023 10:22:36 +0200 Subject: [PATCH 571/971] upgpkg: plasma5-wallpapers-wallpaper-engine 0.5.4-5 Update dependencies and use sha512 checksums --- plasma5-wallpapers-wallpaper-engine/.SRCINFO | 10 +++++----- plasma5-wallpapers-wallpaper-engine/PKGBUILD | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/plasma5-wallpapers-wallpaper-engine/.SRCINFO b/plasma5-wallpapers-wallpaper-engine/.SRCINFO index 1bd0f29..71ced00 100644 --- a/plasma5-wallpapers-wallpaper-engine/.SRCINFO +++ b/plasma5-wallpapers-wallpaper-engine/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = plasma5-wallpapers-wallpaper-engine pkgdesc = A KDE wallpaper plugin integrating wallpaper engine pkgver = 0.5.4 - pkgrel = 4 + pkgrel = 5 url = https://github.com/catsout/wallpaper-engine-kde-plugin arch = x86_64 license = GPL2 @@ -11,7 +11,7 @@ pkgbase = plasma5-wallpapers-wallpaper-engine makedepends = vulkan-headers depends = gst-libav depends = python-websockets - depends = plasma-framework + depends = plasma-framework5 depends = qt5-declarative depends = qt5-websockets optdepends = qt5-webchannel: for web support @@ -19,8 +19,8 @@ pkgbase = plasma5-wallpapers-wallpaper-engine source = https://github.com/catsout/wallpaper-engine-kde-plugin/archive/v0.5.4/wallpaper-engine-kde-plugin-0.5.4.tar.gz source = https://github.com/KhronosGroup/glslang/archive/11.11.0/glslang-11.11.0.tar.gz source = fbda175.patch - sha256sums = 83354734f7ea36e7077206506dd05f0e6877eb51294b820fdbdc398255c6f803 - sha256sums = 26c216c3062512c018cbdd752224b8dad703b7e5bb90bf338ba2dbb5d4f11438 - sha256sums = 1a7e937ab126b4d42ac750b6ab997e604963aeed7c8177888cc37a71fafda07e + sha512sums = 73a0e134430659b457a73e95d8b96b3fd875e44146ec02f5e5662785ecbe8f73a74b642b69a293297e829d6332d7bfba75acaef2c7f6508141d5b60ceadb8e13 + sha512sums = c018271d499efff03540e4572a9c2f1f752c81c87efe7f2e63c2631ac47cecfedffdcfee68eddaf9187603eaae8ccd9a3e5640a022ba9fd7d05950f7827bf8cd + sha512sums = c386bde62b16a179f37d82cc2bfc86ee4bcd1f410130ad77aaa207a4a65c2d509b663da34feaf826edebd656d73bde36315f1d89df49cf1a22c016f450655aab pkgname = plasma5-wallpapers-wallpaper-engine diff --git a/plasma5-wallpapers-wallpaper-engine/PKGBUILD b/plasma5-wallpapers-wallpaper-engine/PKGBUILD index af16066..c056c0d 100644 --- a/plasma5-wallpapers-wallpaper-engine/PKGBUILD +++ b/plasma5-wallpapers-wallpaper-engine/PKGBUILD @@ -4,21 +4,21 @@ pkgname=plasma5-wallpapers-wallpaper-engine _pkgname=wallpaper-engine-kde-plugin pkgver=0.5.4 _pkgver_glslang=11.11.0 -pkgrel=4 +pkgrel=5 pkgdesc='A KDE wallpaper plugin integrating wallpaper engine' arch=('x86_64') url="https://github.com/catsout/${_pkgname}" license=('GPL2') -depends=('gst-libav' 'python-websockets' 'plasma-framework' 'qt5-declarative' 'qt5-websockets') +depends=('gst-libav' 'python-websockets' 'plasma-framework5' 'qt5-declarative' 'qt5-websockets') makedepends=('extra-cmake-modules' 'qt5-webchannel' 'mpv' 'vulkan-headers') optdepends=('qt5-webchannel: for web support' 'mpv: alternative video backend') source=("https://github.com/catsout/${_pkgname}/archive/v${pkgver}/${_pkgname}-${pkgver}.tar.gz" "https://github.com/KhronosGroup/glslang/archive/${_pkgver_glslang}/glslang-${_pkgver_glslang}.tar.gz" 'fbda175.patch') -sha256sums=('83354734f7ea36e7077206506dd05f0e6877eb51294b820fdbdc398255c6f803' - '26c216c3062512c018cbdd752224b8dad703b7e5bb90bf338ba2dbb5d4f11438' - '1a7e937ab126b4d42ac750b6ab997e604963aeed7c8177888cc37a71fafda07e') +sha512sums=('73a0e134430659b457a73e95d8b96b3fd875e44146ec02f5e5662785ecbe8f73a74b642b69a293297e829d6332d7bfba75acaef2c7f6508141d5b60ceadb8e13' + 'c018271d499efff03540e4572a9c2f1f752c81c87efe7f2e63c2631ac47cecfedffdcfee68eddaf9187603eaae8ccd9a3e5640a022ba9fd7d05950f7827bf8cd' + 'c386bde62b16a179f37d82cc2bfc86ee4bcd1f410130ad77aaa207a4a65c2d509b663da34feaf826edebd656d73bde36315f1d89df49cf1a22c016f450655aab') prepare() { mv -T "glslang-${_pkgver_glslang}" "${_pkgname}-${pkgver}/src/backend_scene/third_party/glslang" From 5c9842adb02452d204c9e4b69fc527ffad2a698e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 20 Oct 2023 11:01:59 +0200 Subject: [PATCH 572/971] upgpkg: sublime-text-dev 4.4159-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 2a5272c..107f709 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4156 + pkgver = 4.4159 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -11,9 +11,9 @@ pkgbase = sublime-text-dev depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = sublime_text_dev_4_4156_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4156_x64.tar.xz - sha512sums_x86_64 = 9d00274e630cf5d459bb2ccee04457a77604ffa2e402ec4cdb2191520afcfde03081616e14f857e3b3bcdb17ea24fafe5aeabd1ce5d5808faa905ee1164bab96 - source_aarch64 = sublime_text_dev_4_4156_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4156_arm64.tar.xz - sha512sums_aarch64 = f49a62242b71faf074bd19680578e1386601ff27dd3ad88e6668e26fb9c43b03052dedce45e49c52ec9bf7e0d4dec301870f1a4baf2690647729db913d98dbfc + source_x86_64 = sublime_text_dev_4_4159_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4159_x64.tar.xz + sha512sums_x86_64 = f3a7454160266bb229f4a45366750799a831af24a1fd48b031d717d58c393ce5b154ae0448d6b51feedfc34b50089bc6f97029e1d3e99444add9282c1cdf850e + source_aarch64 = sublime_text_dev_4_4159_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4159_arm64.tar.xz + sha512sums_aarch64 = b3d5feda95fc731b3ad1676aca7ff7b18cda8e3b07cc9c16af0b4c29fb8d430e7e359ca1b9223f8c8620d7dace40a2348cade31927f5aa588411eb24b55dc103 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 75087cc..7c68a48 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4156 +pkgver=4.4159 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -17,8 +17,8 @@ install=${pkgname}.install source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha512sums_x86_64=('9d00274e630cf5d459bb2ccee04457a77604ffa2e402ec4cdb2191520afcfde03081616e14f857e3b3bcdb17ea24fafe5aeabd1ce5d5808faa905ee1164bab96') -sha512sums_aarch64=('f49a62242b71faf074bd19680578e1386601ff27dd3ad88e6668e26fb9c43b03052dedce45e49c52ec9bf7e0d4dec301870f1a4baf2690647729db913d98dbfc') +sha512sums_x86_64=('f3a7454160266bb229f4a45366750799a831af24a1fd48b031d717d58c393ce5b154ae0448d6b51feedfc34b50089bc6f97029e1d3e99444add9282c1cdf850e') +sha512sums_aarch64=('b3d5feda95fc731b3ad1676aca7ff7b18cda8e3b07cc9c16af0b4c29fb8d430e7e359ca1b9223f8c8620d7dace40a2348cade31927f5aa588411eb24b55dc103') package() { cd "${srcdir}" From 35d9cb45baa81c62982b8e1545aa7568cb9361ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 24 Oct 2023 09:09:06 +0200 Subject: [PATCH 573/971] upgpkg: sublime-text-dev 4.4160-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 107f709..91147b7 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4159 + pkgver = 4.4160 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -11,9 +11,9 @@ pkgbase = sublime-text-dev depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = sublime_text_dev_4_4159_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4159_x64.tar.xz - sha512sums_x86_64 = f3a7454160266bb229f4a45366750799a831af24a1fd48b031d717d58c393ce5b154ae0448d6b51feedfc34b50089bc6f97029e1d3e99444add9282c1cdf850e - source_aarch64 = sublime_text_dev_4_4159_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4159_arm64.tar.xz - sha512sums_aarch64 = b3d5feda95fc731b3ad1676aca7ff7b18cda8e3b07cc9c16af0b4c29fb8d430e7e359ca1b9223f8c8620d7dace40a2348cade31927f5aa588411eb24b55dc103 + source_x86_64 = sublime_text_dev_4_4160_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4160_x64.tar.xz + sha512sums_x86_64 = b32e716ef8a336a9e80517c6837df0a97fcc5c9fcd5587a151ea3821e40b87b3be614a761757e0b3ef646ecd12d190201dbe89e19c59db8c28d98c733439a08a + source_aarch64 = sublime_text_dev_4_4160_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4160_arm64.tar.xz + sha512sums_aarch64 = bf9d9022430f5d571938715ed77dc4ed55a3591e6d98140293d3597e9a5809f04c73e0ae8cc0405a40b374868ef34606c922e488a2f8bf1fc784fc2c27b166ba pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 7c68a48..371072c 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4159 +pkgver=4.4160 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -17,8 +17,8 @@ install=${pkgname}.install source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha512sums_x86_64=('f3a7454160266bb229f4a45366750799a831af24a1fd48b031d717d58c393ce5b154ae0448d6b51feedfc34b50089bc6f97029e1d3e99444add9282c1cdf850e') -sha512sums_aarch64=('b3d5feda95fc731b3ad1676aca7ff7b18cda8e3b07cc9c16af0b4c29fb8d430e7e359ca1b9223f8c8620d7dace40a2348cade31927f5aa588411eb24b55dc103') +sha512sums_x86_64=('b32e716ef8a336a9e80517c6837df0a97fcc5c9fcd5587a151ea3821e40b87b3be614a761757e0b3ef646ecd12d190201dbe89e19c59db8c28d98c733439a08a') +sha512sums_aarch64=('bf9d9022430f5d571938715ed77dc4ed55a3591e6d98140293d3597e9a5809f04c73e0ae8cc0405a40b374868ef34606c922e488a2f8bf1fc784fc2c27b166ba') package() { cd "${srcdir}" From fac7f702e85844262a4f0682e7115ff584c5e473 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 25 Oct 2023 07:11:20 +0200 Subject: [PATCH 574/971] upgpkg: discord-electron-openasar 0.0.32+813-1 Update to latest OpenAsar commit --- discord-electron-openasar/.SRCINFO | 4 ++-- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 71a3a47..5ff662a 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v24) for increased security and performance - pkgver = 0.0.32+812 + pkgver = 0.0.32+813 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -22,7 +22,7 @@ pkgbase = discord-electron-openasar options = !strip source = https://dl.discordapp.net/apps/linux/0.0.32/discord-0.0.32.tar.gz source = discord-launcher.sh - source = git+https://github.com/goosemod/openasar.git#commit=85220650bde84ff1b27f496da5d7a9cbc995874c + source = git+https://github.com/goosemod/openasar.git#commit=eee9bab822e3dbd97a735d0050ddd41ba27917f2 sha512sums = e3ca9075e4a66c7c4358bdccb748f8f849de24cf3036b85d2c42dd15f8e56125fc42e86e73920751126b0e4fa73596a1d7af1f21ac9903911d6c843637c46813 sha512sums = b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab sha512sums = SKIP diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index d09a4a5..a05067a 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -7,7 +7,7 @@ pkgname=discord-electron-openasar _pkgname=discord _electron=24 -pkgver=0.0.32+812 +pkgver=0.0.32+813 _pkgver=${pkgver%%+*} pkgrel=1 pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electron}) for increased security and performance" @@ -28,7 +28,7 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' - "git+https://github.com/goosemod/openasar.git#commit=85220650bde84ff1b27f496da5d7a9cbc995874c") + "git+https://github.com/goosemod/openasar.git#commit=eee9bab822e3dbd97a735d0050ddd41ba27917f2") sha512sums=('e3ca9075e4a66c7c4358bdccb748f8f849de24cf3036b85d2c42dd15f8e56125fc42e86e73920751126b0e4fa73596a1d7af1f21ac9903911d6c843637c46813' 'b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab' 'SKIP') From f51803c4f216568a8dd02f0156719c1c2c6d23df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 29 Oct 2023 12:58:25 +0100 Subject: [PATCH 575/971] upgpkg: firefox-syncstorage 0.14.1-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index 8621ac5..dd5e21a 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.14.0 + pkgver = 0.14.1 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -21,9 +21,9 @@ pkgbase = firefox-syncstorage optdepends = mysql: for use with a local database server options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.14.0/syncstorage-rs-0.14.0.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.14.1/syncstorage-rs-0.14.1.tar.gz source = firefox-syncstorage.service - sha512sums = 678f445f9ad9f9cb94f0a7d231e008052aaeec3b6da2d90ac9b80b3da5ee36275d8433a52a49850a7df01d41ed7ad5e90eb54f8b654355c723dc8d4c6fc3f80a + sha512sums = 7bddee5488f7b014f124104764a6393351e5e59385c5f567a24cb3ad3b727d27a682ba8603a718c85fc47d612e9d65f99613e2e9a6a1cc1f60569c06c326f816 sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index b4bed1f..5a2b82f 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.14.0 +pkgver=0.14.1 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -18,7 +18,7 @@ options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha512sums=('678f445f9ad9f9cb94f0a7d231e008052aaeec3b6da2d90ac9b80b3da5ee36275d8433a52a49850a7df01d41ed7ad5e90eb54f8b654355c723dc8d4c6fc3f80a' +sha512sums=('7bddee5488f7b014f124104764a6393351e5e59385c5f567a24cb3ad3b727d27a682ba8603a718c85fc47d612e9d65f99613e2e9a6a1cc1f60569c06c326f816' '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") From 218aa2d708bda5974df7cde53c0e9eda41199799 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 30 Oct 2023 18:50:14 +0100 Subject: [PATCH 576/971] upgpkg: clonezilla-unstable 5.5.14-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 98d29fe..27a970e 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.12 + pkgver = 5.5.14 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.12.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.14.tar.xz source = usrbin.patch - sha512sums = f7fa037a5e86e8b97086f2ac7e26484370a659ff819d63d4ec8b77fde9bd546dcc8021cd8b56ed5822b0dd72912a48d060fc01fd97eeb53cb568e615d59a6843 + sha512sums = a67f883f2fe0ab903016e0a09208f96f5d1483d90110e8738ba179babb54897d56a4918234fd421c6f9830b9f7cce67a66c7763e67836334efa294ff2ee961ae sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 137f594..18a0461 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.12 +pkgver=5.5.14 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('f7fa037a5e86e8b97086f2ac7e26484370a659ff819d63d4ec8b77fde9bd546dcc8021cd8b56ed5822b0dd72912a48d060fc01fd97eeb53cb568e615d59a6843' +sha512sums=('a67f883f2fe0ab903016e0a09208f96f5d1483d90110e8738ba179babb54897d56a4918234fd421c6f9830b9f7cce67a66c7763e67836334efa294ff2ee961ae' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 33bcba113fcd82e6df87ac737ae70623e1e35e0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 30 Oct 2023 18:50:14 +0100 Subject: [PATCH 577/971] upgpkg: clonezilla-unstable 5.5.14-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 98d29fe..27a970e 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.12 + pkgver = 5.5.14 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.12.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.14.tar.xz source = usrbin.patch - sha512sums = f7fa037a5e86e8b97086f2ac7e26484370a659ff819d63d4ec8b77fde9bd546dcc8021cd8b56ed5822b0dd72912a48d060fc01fd97eeb53cb568e615d59a6843 + sha512sums = a67f883f2fe0ab903016e0a09208f96f5d1483d90110e8738ba179babb54897d56a4918234fd421c6f9830b9f7cce67a66c7763e67836334efa294ff2ee961ae sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 137f594..18a0461 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.12 +pkgver=5.5.14 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('f7fa037a5e86e8b97086f2ac7e26484370a659ff819d63d4ec8b77fde9bd546dcc8021cd8b56ed5822b0dd72912a48d060fc01fd97eeb53cb568e615d59a6843' +sha512sums=('a67f883f2fe0ab903016e0a09208f96f5d1483d90110e8738ba179babb54897d56a4918234fd421c6f9830b9f7cce67a66c7763e67836334efa294ff2ee961ae' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 6c5619e5c9bcadda6520538b6bfa90e826bd6446 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 31 Oct 2023 12:52:31 +0100 Subject: [PATCH 578/971] upgpkg: discord-electron-openasar 0.0.32+813-2 Add unzip as dependency --- discord-electron-openasar/.SRCINFO | 3 ++- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 5ff662a..fc7f1cb 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v24) for increased security and performance pkgver = 0.0.32+813 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -13,6 +13,7 @@ pkgbase = discord-electron-openasar makedepends = python-html2text depends = electron24 depends = libxss + depends = unzip optdepends = libpulse: Pulseaudio support optdepends = libappindicator-gtk3: Systray indicator support optdepends = xdg-utils: Open files diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index a05067a..fdc424b 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -9,7 +9,7 @@ _pkgname=discord _electron=24 pkgver=0.0.32+813 _pkgver=${pkgver%%+*} -pkgrel=1 +pkgrel=2 pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') provides=("${_pkgname}") @@ -18,7 +18,7 @@ url='https://discord.com' license=('custom') options=('!strip') install="$pkgname.install" -depends=("electron${_electron}" 'libxss') +depends=("electron${_electron}" 'libxss' 'unzip') makedepends=('git' 'asar' 'nodejs' 'curl' 'python-html2text') optdepends=( 'libpulse: Pulseaudio support' From 69456792b57f1eff27fb955ae320250698ab192d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 31 Oct 2023 18:51:45 +0100 Subject: [PATCH 579/971] upgpkg: discord-electron 0.0.33-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index e20f1a3..6fc7fe9 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v24) for increased security and performance - pkgver = 0.0.32 + pkgver = 0.0.33 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.32/discord-0.0.32.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.33/discord-0.0.33.tar.gz source = discord-launcher.sh - sha512sums = e3ca9075e4a66c7c4358bdccb748f8f849de24cf3036b85d2c42dd15f8e56125fc42e86e73920751126b0e4fa73596a1d7af1f21ac9903911d6c843637c46813 + sha512sums = 83e848d12137a2576f70834fcf612cdd0a0f3216916d450830813b7492efa53f7baaeefd37cd58091a0ed8303e3b037f32e995b51a35c416388c1a6d6998036f sha512sums = b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index cc88b18..56b510a 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -14,7 +14,7 @@ pkgname=discord-electron _pkgname=discord _electron=24 -pkgver=0.0.32 +pkgver=0.0.33 pkgrel=1 pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') @@ -34,10 +34,10 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('e3ca9075e4a66c7c4358bdccb748f8f849de24cf3036b85d2c42dd15f8e56125fc42e86e73920751126b0e4fa73596a1d7af1f21ac9903911d6c843637c46813' +sha512sums=('83e848d12137a2576f70834fcf612cdd0a0f3216916d450830813b7492efa53f7baaeefd37cd58091a0ed8303e3b037f32e995b51a35c416388c1a6d6998036f' 'b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab') -_krisp_b2sum='90c3fbf6aab16638995fe21c49d4b8f93dbec9a9147cc7b1424c591c630aae84c362ee2b1a81507311b31e442e6b2706e6f48e1df8edd7248f5659108bbb3711' +_krisp_b2sum='e36c3308b34e96f4c33425bb1d7ac0d8130fa5450c9db2ee3fbdbfa10887ab15f3ec06f9fdbd446553f9224052af0705a0eebfc92b55776a33a9cfdf0c3c53e4' prepare() { # prepare launcher script From 6d5edd7bafd3f7bb42537f137bda7ac89837efc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 31 Oct 2023 18:52:01 +0100 Subject: [PATCH 580/971] upgpkg: discord-electron-openasar 0.0.33+813-1 upstream release --- discord-electron-openasar/.SRCINFO | 8 ++++---- discord-electron-openasar/PKGBUILD | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index fc7f1cb..cbfe2c0 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v24) for increased security and performance - pkgver = 0.0.32+813 - pkgrel = 2 + pkgver = 0.0.33+813 + pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -21,10 +21,10 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.32/discord-0.0.32.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.33/discord-0.0.33.tar.gz source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=eee9bab822e3dbd97a735d0050ddd41ba27917f2 - sha512sums = e3ca9075e4a66c7c4358bdccb748f8f849de24cf3036b85d2c42dd15f8e56125fc42e86e73920751126b0e4fa73596a1d7af1f21ac9903911d6c843637c46813 + sha512sums = 83e848d12137a2576f70834fcf612cdd0a0f3216916d450830813b7492efa53f7baaeefd37cd58091a0ed8303e3b037f32e995b51a35c416388c1a6d6998036f sha512sums = b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab sha512sums = SKIP diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index fdc424b..d30a01c 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -7,9 +7,9 @@ pkgname=discord-electron-openasar _pkgname=discord _electron=24 -pkgver=0.0.32+813 +pkgver=0.0.33+813 _pkgver=${pkgver%%+*} -pkgrel=2 +pkgrel=1 pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') provides=("${_pkgname}") @@ -29,11 +29,11 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=eee9bab822e3dbd97a735d0050ddd41ba27917f2") -sha512sums=('e3ca9075e4a66c7c4358bdccb748f8f849de24cf3036b85d2c42dd15f8e56125fc42e86e73920751126b0e4fa73596a1d7af1f21ac9903911d6c843637c46813' +sha512sums=('83e848d12137a2576f70834fcf612cdd0a0f3216916d450830813b7492efa53f7baaeefd37cd58091a0ed8303e3b037f32e995b51a35c416388c1a6d6998036f' 'b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab' 'SKIP') -_krisp_b2sum='90c3fbf6aab16638995fe21c49d4b8f93dbec9a9147cc7b1424c591c630aae84c362ee2b1a81507311b31e442e6b2706e6f48e1df8edd7248f5659108bbb3711' +_krisp_b2sum='e36c3308b34e96f4c33425bb1d7ac0d8130fa5450c9db2ee3fbdbfa10887ab15f3ec06f9fdbd446553f9224052af0705a0eebfc92b55776a33a9cfdf0c3c53e4' # just in case I get the version wrong pkgver() { From 6821e6bbcf482971d72586bfda48f015c10951b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 2 Nov 2023 15:40:06 +0100 Subject: [PATCH 581/971] upgpkg: clonezilla-unstable 5.5.15-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 27a970e..d7088d8 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.14 + pkgver = 5.5.15 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.14.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.15.tar.xz source = usrbin.patch - sha512sums = a67f883f2fe0ab903016e0a09208f96f5d1483d90110e8738ba179babb54897d56a4918234fd421c6f9830b9f7cce67a66c7763e67836334efa294ff2ee961ae + sha512sums = a7d3dc61d327dfcc492ebe0d6974a934a816b0cea4583eb5687fdd37f106d4cd4305a7073a300024b57d25abe41fc658024d8c631d36f1b4555a13491ae93e51 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 18a0461..17dc95e 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.14 +pkgver=5.5.15 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('a67f883f2fe0ab903016e0a09208f96f5d1483d90110e8738ba179babb54897d56a4918234fd421c6f9830b9f7cce67a66c7763e67836334efa294ff2ee961ae' +sha512sums=('a7d3dc61d327dfcc492ebe0d6974a934a816b0cea4583eb5687fdd37f106d4cd4305a7073a300024b57d25abe41fc658024d8c631d36f1b4555a13491ae93e51' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 2cf04432759ae69bf36d70507395b331a774c5c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 2 Nov 2023 15:40:06 +0100 Subject: [PATCH 582/971] upgpkg: clonezilla-unstable 5.5.15-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 27a970e..d7088d8 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.14 + pkgver = 5.5.15 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.14.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.15.tar.xz source = usrbin.patch - sha512sums = a67f883f2fe0ab903016e0a09208f96f5d1483d90110e8738ba179babb54897d56a4918234fd421c6f9830b9f7cce67a66c7763e67836334efa294ff2ee961ae + sha512sums = a7d3dc61d327dfcc492ebe0d6974a934a816b0cea4583eb5687fdd37f106d4cd4305a7073a300024b57d25abe41fc658024d8c631d36f1b4555a13491ae93e51 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 18a0461..17dc95e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.14 +pkgver=5.5.15 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('a67f883f2fe0ab903016e0a09208f96f5d1483d90110e8738ba179babb54897d56a4918234fd421c6f9830b9f7cce67a66c7763e67836334efa294ff2ee961ae' +sha512sums=('a7d3dc61d327dfcc492ebe0d6974a934a816b0cea4583eb5687fdd37f106d4cd4305a7073a300024b57d25abe41fc658024d8c631d36f1b4555a13491ae93e51' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 0c81657cbac436f93b2a0645269a280a029d269e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 7 Nov 2023 00:09:09 +0100 Subject: [PATCH 583/971] upgpkg: discord-electron 0.0.34-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 6fc7fe9..cbe92db 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v24) for increased security and performance - pkgver = 0.0.33 + pkgver = 0.0.34 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.33/discord-0.0.33.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.34/discord-0.0.34.tar.gz source = discord-launcher.sh - sha512sums = 83e848d12137a2576f70834fcf612cdd0a0f3216916d450830813b7492efa53f7baaeefd37cd58091a0ed8303e3b037f32e995b51a35c416388c1a6d6998036f + sha512sums = 28ab59e18ca3c800030c7c4b4f016efed033e741ad42f18b993e8493d51a78d430a4ff3c0a3457fdf8b43907a013f3145e67748e7a896d440af56074226c5c46 sha512sums = b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 56b510a..8adad78 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -14,7 +14,7 @@ pkgname=discord-electron _pkgname=discord _electron=24 -pkgver=0.0.33 +pkgver=0.0.34 pkgrel=1 pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" arch=('x86_64') @@ -34,7 +34,7 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('83e848d12137a2576f70834fcf612cdd0a0f3216916d450830813b7492efa53f7baaeefd37cd58091a0ed8303e3b037f32e995b51a35c416388c1a6d6998036f' +sha512sums=('28ab59e18ca3c800030c7c4b4f016efed033e741ad42f18b993e8493d51a78d430a4ff3c0a3457fdf8b43907a013f3145e67748e7a896d440af56074226c5c46' 'b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab') _krisp_b2sum='e36c3308b34e96f4c33425bb1d7ac0d8130fa5450c9db2ee3fbdbfa10887ab15f3ec06f9fdbd446553f9224052af0705a0eebfc92b55776a33a9cfdf0c3c53e4' From 3ee86baca87dfebd1500d0293a88a29995c172d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 7 Nov 2023 00:09:21 +0100 Subject: [PATCH 584/971] upgpkg: discord-electron-openasar 0.0.34+813-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index cbfe2c0..3af7e9c 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v24) for increased security and performance - pkgver = 0.0.33+813 + pkgver = 0.0.34+813 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,10 +21,10 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.33/discord-0.0.33.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.34/discord-0.0.34.tar.gz source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=eee9bab822e3dbd97a735d0050ddd41ba27917f2 - sha512sums = 83e848d12137a2576f70834fcf612cdd0a0f3216916d450830813b7492efa53f7baaeefd37cd58091a0ed8303e3b037f32e995b51a35c416388c1a6d6998036f + sha512sums = 28ab59e18ca3c800030c7c4b4f016efed033e741ad42f18b993e8493d51a78d430a4ff3c0a3457fdf8b43907a013f3145e67748e7a896d440af56074226c5c46 sha512sums = b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab sha512sums = SKIP diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index d30a01c..3338357 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -7,7 +7,7 @@ pkgname=discord-electron-openasar _pkgname=discord _electron=24 -pkgver=0.0.33+813 +pkgver=0.0.34+813 _pkgver=${pkgver%%+*} pkgrel=1 pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electron}) for increased security and performance" @@ -29,7 +29,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=eee9bab822e3dbd97a735d0050ddd41ba27917f2") -sha512sums=('83e848d12137a2576f70834fcf612cdd0a0f3216916d450830813b7492efa53f7baaeefd37cd58091a0ed8303e3b037f32e995b51a35c416388c1a6d6998036f' +sha512sums=('28ab59e18ca3c800030c7c4b4f016efed033e741ad42f18b993e8493d51a78d430a4ff3c0a3457fdf8b43907a013f3145e67748e7a896d440af56074226c5c46' 'b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab' 'SKIP') From 0f8adabe09cc1c0210ea8f7c143961699c60af21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 7 Nov 2023 18:15:10 +0100 Subject: [PATCH 585/971] upgpkg: clonezilla-unstable 5.5.16-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index d7088d8..3c94f15 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.15 + pkgver = 5.5.16 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.15.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.16.tar.xz source = usrbin.patch - sha512sums = a7d3dc61d327dfcc492ebe0d6974a934a816b0cea4583eb5687fdd37f106d4cd4305a7073a300024b57d25abe41fc658024d8c631d36f1b4555a13491ae93e51 + sha512sums = deb85929665797e939515027e22441315d3b28dc6d760649879c806772e76627f877d7f4044367b84f9a5b635a52be7d5de0bab6bc4e621e644d8a78c5a964c0 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 17dc95e..62f84ad 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.15 +pkgver=5.5.16 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('a7d3dc61d327dfcc492ebe0d6974a934a816b0cea4583eb5687fdd37f106d4cd4305a7073a300024b57d25abe41fc658024d8c631d36f1b4555a13491ae93e51' +sha512sums=('deb85929665797e939515027e22441315d3b28dc6d760649879c806772e76627f877d7f4044367b84f9a5b635a52be7d5de0bab6bc4e621e644d8a78c5a964c0' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 0b4c4cf9bbb87a6daac9bfd2f246db13e7ef52b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 7 Nov 2023 18:15:10 +0100 Subject: [PATCH 586/971] upgpkg: clonezilla-unstable 5.5.16-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index d7088d8..3c94f15 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.15 + pkgver = 5.5.16 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.15.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.16.tar.xz source = usrbin.patch - sha512sums = a7d3dc61d327dfcc492ebe0d6974a934a816b0cea4583eb5687fdd37f106d4cd4305a7073a300024b57d25abe41fc658024d8c631d36f1b4555a13491ae93e51 + sha512sums = deb85929665797e939515027e22441315d3b28dc6d760649879c806772e76627f877d7f4044367b84f9a5b635a52be7d5de0bab6bc4e621e644d8a78c5a964c0 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 17dc95e..62f84ad 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.15 +pkgver=5.5.16 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('a7d3dc61d327dfcc492ebe0d6974a934a816b0cea4583eb5687fdd37f106d4cd4305a7073a300024b57d25abe41fc658024d8c631d36f1b4555a13491ae93e51' +sha512sums=('deb85929665797e939515027e22441315d3b28dc6d760649879c806772e76627f877d7f4044367b84f9a5b635a52be7d5de0bab6bc4e621e644d8a78c5a964c0' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 4e6bd1aff12a62e1efeb9ab953760f28e9f6ef84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 7 Nov 2023 18:36:18 +0100 Subject: [PATCH 587/971] upgpkg: prometheus-postgresql-exporter 0.15.0-1 upstream release --- prometheus-postgresql-exporter/.SRCINFO | 6 +++--- prometheus-postgresql-exporter/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/prometheus-postgresql-exporter/.SRCINFO b/prometheus-postgresql-exporter/.SRCINFO index fa45902..725c69e 100644 --- a/prometheus-postgresql-exporter/.SRCINFO +++ b/prometheus-postgresql-exporter/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = prometheus-postgresql-exporter pkgdesc = Prometheus exporter for PostgreSQL - pkgver = 0.14.0 + pkgver = 0.15.0 pkgrel = 1 url = https://github.com/prometheus-community/postgres_exporter arch = x86_64 @@ -9,10 +9,10 @@ pkgbase = prometheus-postgresql-exporter makedepends = go makedepends = make backup = etc/conf.d/prometheus-postgresql-exporter - source = https://github.com/prometheus-community/postgres_exporter/archive/v0.14.0/postgres_exporter-0.14.0.tar.gz + source = https://github.com/prometheus-community/postgres_exporter/archive/v0.15.0/postgres_exporter-0.15.0.tar.gz source = prometheus-postgresql-exporter.service source = prometheus-postgresql-exporter.conf - sha512sums = 47a0aa844512d0a3d7853253ef9382ebb51514e02566bbac479cea0c5f20a4f03889fe56ff9cb37a85d75c18d5241764ec1113961759affdd07ae6f6b8152ce3 + sha512sums = 332700809454dba11e1e6b9cbc46be9683925a6c692e110efa1204ce1ad1457a8d2237ee8af20f1ee6d5c663266fc1629da6f4f5ff9151faf294a26af8be7682 sha512sums = 598d201054de604ac78e2b335ad9a219c5d130de6901a6fe64643ac5c9d74314548b65ba2ee675095d8a140b0b48a896cadf6745848e210143761d81e2534402 sha512sums = 70e5f4a0a184322d21204a7a7a17fd604dc425b106e9ab1897c6805c52469ecad732e96f7b0f0d35763f6bc3945dc5562cd27459776e83c609834c931d09508f diff --git a/prometheus-postgresql-exporter/PKGBUILD b/prometheus-postgresql-exporter/PKGBUILD index 3135d36..b4e5ab1 100644 --- a/prometheus-postgresql-exporter/PKGBUILD +++ b/prometheus-postgresql-exporter/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Nils Czernia pkgname=prometheus-postgresql-exporter -pkgver=0.14.0 +pkgver=0.15.0 pkgrel=1 pkgdesc="Prometheus exporter for PostgreSQL" arch=('x86_64') @@ -13,7 +13,7 @@ backup=('etc/conf.d/prometheus-postgresql-exporter') source=("https://github.com/prometheus-community/postgres_exporter/archive/v${pkgver}/postgres_exporter-${pkgver}.tar.gz" "prometheus-postgresql-exporter.service" "prometheus-postgresql-exporter.conf") -sha512sums=('47a0aa844512d0a3d7853253ef9382ebb51514e02566bbac479cea0c5f20a4f03889fe56ff9cb37a85d75c18d5241764ec1113961759affdd07ae6f6b8152ce3' +sha512sums=('332700809454dba11e1e6b9cbc46be9683925a6c692e110efa1204ce1ad1457a8d2237ee8af20f1ee6d5c663266fc1629da6f4f5ff9151faf294a26af8be7682' '598d201054de604ac78e2b335ad9a219c5d130de6901a6fe64643ac5c9d74314548b65ba2ee675095d8a140b0b48a896cadf6745848e210143761d81e2534402' '70e5f4a0a184322d21204a7a7a17fd604dc425b106e9ab1897c6805c52469ecad732e96f7b0f0d35763f6bc3945dc5562cd27459776e83c609834c931d09508f') From a6cd5da46157fe4d7548203105ca2b8dd84d3589 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 8 Nov 2023 17:08:22 +0100 Subject: [PATCH 588/971] upgpkg: sublime-text-dev 4.4164-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 91147b7..8d6ac50 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4160 + pkgver = 4.4164 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -11,9 +11,9 @@ pkgbase = sublime-text-dev depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = sublime_text_dev_4_4160_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4160_x64.tar.xz - sha512sums_x86_64 = b32e716ef8a336a9e80517c6837df0a97fcc5c9fcd5587a151ea3821e40b87b3be614a761757e0b3ef646ecd12d190201dbe89e19c59db8c28d98c733439a08a - source_aarch64 = sublime_text_dev_4_4160_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4160_arm64.tar.xz - sha512sums_aarch64 = bf9d9022430f5d571938715ed77dc4ed55a3591e6d98140293d3597e9a5809f04c73e0ae8cc0405a40b374868ef34606c922e488a2f8bf1fc784fc2c27b166ba + source_x86_64 = sublime_text_dev_4_4164_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4164_x64.tar.xz + sha512sums_x86_64 = f6a60dccdb4ac66a2c9b5bc0493ca5efb7f358ad3bb0e3ace6085c2ac62ec045787a24c29cbd8a771fa389e73858f4632f9704660b924fff32fd3634136ae70c + source_aarch64 = sublime_text_dev_4_4164_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4164_arm64.tar.xz + sha512sums_aarch64 = 6e5779a63abc805b1b2a1be9eb8024afde6c406fdea570e62d7401adbb4bb7a8c070577234f7e18fae8c839bc37fbd57c03c0b881b642c8453bde805c83526f7 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 371072c..d2eec59 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4160 +pkgver=4.4164 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -17,8 +17,8 @@ install=${pkgname}.install source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha512sums_x86_64=('b32e716ef8a336a9e80517c6837df0a97fcc5c9fcd5587a151ea3821e40b87b3be614a761757e0b3ef646ecd12d190201dbe89e19c59db8c28d98c733439a08a') -sha512sums_aarch64=('bf9d9022430f5d571938715ed77dc4ed55a3591e6d98140293d3597e9a5809f04c73e0ae8cc0405a40b374868ef34606c922e488a2f8bf1fc784fc2c27b166ba') +sha512sums_x86_64=('f6a60dccdb4ac66a2c9b5bc0493ca5efb7f358ad3bb0e3ace6085c2ac62ec045787a24c29cbd8a771fa389e73858f4632f9704660b924fff32fd3634136ae70c') +sha512sums_aarch64=('6e5779a63abc805b1b2a1be9eb8024afde6c406fdea570e62d7401adbb4bb7a8c070577234f7e18fae8c839bc37fbd57c03c0b881b642c8453bde805c83526f7') package() { cd "${srcdir}" From ea9cbc9a6b5afddc6ea3275cdb8b5cae43008ce8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 9 Nov 2023 14:48:15 +0100 Subject: [PATCH 589/971] upgpkg: gvisor-bin 20231106.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index cbd83fe..9ca0d21 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20231009.0 + pkgver = 20231106.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20231009.0::https://storage.googleapis.com/gvisor/releases/release/20231009.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20231009.0::https://storage.googleapis.com/gvisor/releases/release/20231009.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = a641723d442991cca50fd55b5e1e5c53e1efcad2ae4634ca1e2425ef33cc04515c88b4c43e7e1e0fb4cd61fdc285f08dd914e0ab9271cdcc921807d760b02543 - sha512sums_x86_64 = fffd6e03bd5aa2481300c3b9cecb02c1c6b64d97560ca12aa19fd886243e84ece370370ac960d6c849a258d47be399c94f7b5ba2b8fcad6787eabc86b0bfba94 - source_aarch64 = runsc-aarch64-20231009.0::https://storage.googleapis.com/gvisor/releases/release/20231009.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20231009.0::https://storage.googleapis.com/gvisor/releases/release/20231009.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 26e2e9750c05f9919e4e150f6ce2f4e9536444bed6817cc5bb6cdfda374cd123e3f82b30f5c1b55b0b71ddfaffbf150c2fdc3aabecc55a0ed226fdda3f05d8de - sha512sums_aarch64 = d6eec33d5ba7f557f19f9499ade502d510cb4e4d9d3525a677fc1942403a984c343be5ecb64f2904823d478e626027b3aea69c9e641240cac3c2c8c9e8feaa00 + source_x86_64 = runsc-x86_64-20231106.0::https://storage.googleapis.com/gvisor/releases/release/20231106.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20231106.0::https://storage.googleapis.com/gvisor/releases/release/20231106.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = ff9a8e04add827496936b6f8d7d673ed88a29c27b21c50a8232674b7a86a2e426a42f71fd6c27425e1401d60a7afa0e684c8ac92d990f367b5991f84bce85d25 + sha512sums_x86_64 = f304dbff8992645adcf0f598cbf58117b18f23bdcba9b7f121c2d0d53e45160007759e1f89d35a5639053166a001ea9c6400a084949b720d72d342dbff437c95 + source_aarch64 = runsc-aarch64-20231106.0::https://storage.googleapis.com/gvisor/releases/release/20231106.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20231106.0::https://storage.googleapis.com/gvisor/releases/release/20231106.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 1d84f118c9e7ff53071cea3b883bf82b5af63dff67f539358443747681f668f9ea2808e720b297dc137574a503bfd8e27227077a98a396bcb0007497cac5bec8 + sha512sums_aarch64 = 0073d46f92a2b66ba9b9a79313a9e370d534ee9614d02181395741ae5f793600540e765913599866ecce0252f411d6b77429ccd2e39a1d4fd289801fccf0978b pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index 43313fe..bcc7f72 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20231009.0 +pkgver=20231106.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('a641723d442991cca50fd55b5e1e5c53e1efcad2ae4634ca1e2425ef33cc04515c88b4c43e7e1e0fb4cd61fdc285f08dd914e0ab9271cdcc921807d760b02543' - 'fffd6e03bd5aa2481300c3b9cecb02c1c6b64d97560ca12aa19fd886243e84ece370370ac960d6c849a258d47be399c94f7b5ba2b8fcad6787eabc86b0bfba94') -sha512sums_aarch64=('26e2e9750c05f9919e4e150f6ce2f4e9536444bed6817cc5bb6cdfda374cd123e3f82b30f5c1b55b0b71ddfaffbf150c2fdc3aabecc55a0ed226fdda3f05d8de' - 'd6eec33d5ba7f557f19f9499ade502d510cb4e4d9d3525a677fc1942403a984c343be5ecb64f2904823d478e626027b3aea69c9e641240cac3c2c8c9e8feaa00') +sha512sums_x86_64=('ff9a8e04add827496936b6f8d7d673ed88a29c27b21c50a8232674b7a86a2e426a42f71fd6c27425e1401d60a7afa0e684c8ac92d990f367b5991f84bce85d25' + 'f304dbff8992645adcf0f598cbf58117b18f23bdcba9b7f121c2d0d53e45160007759e1f89d35a5639053166a001ea9c6400a084949b720d72d342dbff437c95') +sha512sums_aarch64=('1d84f118c9e7ff53071cea3b883bf82b5af63dff67f539358443747681f668f9ea2808e720b297dc137574a503bfd8e27227077a98a396bcb0007497cac5bec8' + '0073d46f92a2b66ba9b9a79313a9e370d534ee9614d02181395741ae5f793600540e765913599866ecce0252f411d6b77429ccd2e39a1d4fd289801fccf0978b') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From c483c7acdcdb668be0db3865dcf404481b96700e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 9 Nov 2023 14:48:33 +0100 Subject: [PATCH 590/971] upgpkg: gvisor-git 20231106.0-1 upstream release --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index dd2c410..113968e 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20231009.0 + pkgver = 20231106.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index 12a365b..3ce3147 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20231009.0 +pkgver=20231106.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From 5f26ecb9eddb8b69d03b4029cddd10295cc9410a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 9 Nov 2023 16:57:04 +0100 Subject: [PATCH 591/971] upgpkg: discord-electron 0.0.34-2: fix autostart * Fix autostart as suggested by @LRitzdorf * Improve use of sed commands * Directly execute electron binary --- discord-electron/.SRCINFO | 4 ++-- discord-electron/PKGBUILD | 27 ++++++++++++++++++--------- discord-electron/discord-launcher.sh | 2 +- 3 files changed, 21 insertions(+), 12 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index cbe92db..a131066 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v24) for increased security and performance pkgver = 0.0.34 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -21,6 +21,6 @@ pkgbase = discord-electron source = https://dl.discordapp.net/apps/linux/0.0.34/discord-0.0.34.tar.gz source = discord-launcher.sh sha512sums = 28ab59e18ca3c800030c7c4b4f016efed033e741ad42f18b993e8493d51a78d430a4ff3c0a3457fdf8b43907a013f3145e67748e7a896d440af56074226c5c46 - sha512sums = b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab + sha512sums = 723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 8adad78..0b3864e 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -13,10 +13,11 @@ pkgname=discord-electron _pkgname=discord -_electron=24 pkgver=0.0.34 -pkgrel=1 -pkgdesc="Discord using system provided electron (v${_electron}) for increased security and performance" +pkgrel=2 +_electronver=24 +_electronname="electron${_electronver}" +pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" arch=('x86_64') provides=("${_pkgname}") conflicts=("${_pkgname}") @@ -24,7 +25,7 @@ url='https://discord.com' license=('custom') options=('!strip') install="$pkgname.install" -depends=("electron${_electron}" 'libxss') +depends=("${_electronname}" 'libxss') makedepends=('asar' 'curl' 'python-html2text') optdepends=( 'libpulse: Pulseaudio support' @@ -35,16 +36,20 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') sha512sums=('28ab59e18ca3c800030c7c4b4f016efed033e741ad42f18b993e8493d51a78d430a4ff3c0a3457fdf8b43907a013f3145e67748e7a896d440af56074226c5c46' - 'b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab') + '723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5') _krisp_b2sum='e36c3308b34e96f4c33425bb1d7ac0d8130fa5450c9db2ee3fbdbfa10887ab15f3ec06f9fdbd446553f9224052af0705a0eebfc92b55776a33a9cfdf0c3c53e4' prepare() { # prepare launcher script - sed -i "s|@PKGNAME@|${_pkgname}|g;s|@PKGVER@|${pkgver}|g;s|@ELECTRON@|${_electron}|g;s|@KRISPB2@|${_krisp_b2sum}|g" discord-launcher.sh + sed -i -e "s|@PKGNAME@|${_pkgname}|g" \ + -e "s|@PKGVER@|${pkgver}|g" \ + -e "s|@ELECTRON@|${_electronname}|g" \ + -e "s|@KRISPB2@|${_krisp_b2sum}|g" \ + discord-launcher.sh # fix the .desktop file - sed -i "s|Exec=.*|Exec=/usr/bin/${_pkgname}|" ${_pkgname^}/$_pkgname.desktop + sed -i -e "s|Exec=.*|Exec=/usr/bin/${_pkgname}|" ${_pkgname^}/$_pkgname.desktop # create the license files curl https://discord.com/terms | html2text >"${srcdir}"/LICENSE.md @@ -57,8 +62,12 @@ build() { # use system electron asar e resources/app.asar resources/app rm resources/app.asar - sed -i "s|process.resourcesPath|'/usr/lib/${_pkgname}'|" resources/app/app_bootstrap/buildInfo.js - sed -i "s|exeDir,|'/usr/share/pixmaps',|" resources/app/app_bootstrap/autoStart/linux.js + sed -i -e "s|process.resourcesPath|'/usr/lib/${_pkgname}'|" resources/app/app_bootstrap/buildInfo.js + sed -i -e "/^const appName/d" -e "/^const exePath/d" -e "/^const exeDir/d" -e "/^const iconPath/d" \ + -e "s|^Exec=\${exePath}$|Exec=/usr/bin/${_pkgname}|" \ + -e "s|^Name=\${appName}$|Name=${_pkgname^}|" \ + -e "s|^Icon=\${iconPath}$|Icon=/usr/share/pixmaps/${_pkgname}.png|" \ + resources/app/app_bootstrap/autoStart/linux.js asar p resources/app resources/app.asar rm -rf resources/app } diff --git a/discord-electron/discord-launcher.sh b/discord-electron/discord-launcher.sh index 86fc394..1d29967 100644 --- a/discord-electron/discord-launcher.sh +++ b/discord-electron/discord-launcher.sh @@ -39,7 +39,7 @@ done unset flags_file krisp_bin krisp_b2 -exec /usr/bin/electron@ELECTRON@ \ +exec /usr/lib/@ELECTRON@/electron \ /usr/lib/@PKGNAME@/app.asar \ --ozone-platform-hint=auto \ "${flags[@]}" "$@" From c2fffeaf877f90d405ea82f686a525939e63b5b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 9 Nov 2023 16:57:54 +0100 Subject: [PATCH 592/971] upgpkg: discord-electron-openasar 0.0.34+816-2: fix autostart * Fix autostart desktop file * Improve use of sed commands * Directly execute electron binary * Update to latest OpenAsar commit (no asar changes) --- discord-electron-openasar/.SRCINFO | 8 +++--- discord-electron-openasar/PKGBUILD | 27 ++++++++++++------- discord-electron-openasar/discord-launcher.sh | 2 +- 3 files changed, 22 insertions(+), 15 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 3af7e9c..608edd1 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v24) for increased security and performance - pkgver = 0.0.34+813 - pkgrel = 1 + pkgver = 0.0.34+816 + pkgrel = 2 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -23,9 +23,9 @@ pkgbase = discord-electron-openasar options = !strip source = https://dl.discordapp.net/apps/linux/0.0.34/discord-0.0.34.tar.gz source = discord-launcher.sh - source = git+https://github.com/goosemod/openasar.git#commit=eee9bab822e3dbd97a735d0050ddd41ba27917f2 + source = git+https://github.com/goosemod/openasar.git#commit=403878f068006a826afc5af86ea4c6aaede1509a sha512sums = 28ab59e18ca3c800030c7c4b4f016efed033e741ad42f18b993e8493d51a78d430a4ff3c0a3457fdf8b43907a013f3145e67748e7a896d440af56074226c5c46 - sha512sums = b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab + sha512sums = 723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5 sha512sums = SKIP pkgname = discord-electron-openasar diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 3338357..ef19838 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -6,11 +6,12 @@ pkgname=discord-electron-openasar _pkgname=discord -_electron=24 -pkgver=0.0.34+813 +pkgver=0.0.34+816 _pkgver=${pkgver%%+*} -pkgrel=1 -pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electron}) for increased security and performance" +pkgrel=2 +_electronver=24 +_electronname="electron${_electronver}" +pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" arch=('x86_64') provides=("${_pkgname}") conflicts=("${_pkgname}") @@ -18,7 +19,7 @@ url='https://discord.com' license=('custom') options=('!strip') install="$pkgname.install" -depends=("electron${_electron}" 'libxss' 'unzip') +depends=("${_electronname}" 'libxss' 'unzip') makedepends=('git' 'asar' 'nodejs' 'curl' 'python-html2text') optdepends=( 'libpulse: Pulseaudio support' @@ -28,9 +29,9 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' - "git+https://github.com/goosemod/openasar.git#commit=eee9bab822e3dbd97a735d0050ddd41ba27917f2") + "git+https://github.com/goosemod/openasar.git#commit=403878f068006a826afc5af86ea4c6aaede1509a") sha512sums=('28ab59e18ca3c800030c7c4b4f016efed033e741ad42f18b993e8493d51a78d430a4ff3c0a3457fdf8b43907a013f3145e67748e7a896d440af56074226c5c46' - 'b0961f546a4016e24d516c6d1125c1af0e8ca84ab960f6abe10ec98c2c18543da2168ffb2676189ed110e9abbdb889abfb2c610954019250041a0a89b0b03bab' + '723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5' 'SKIP') _krisp_b2sum='e36c3308b34e96f4c33425bb1d7ac0d8130fa5450c9db2ee3fbdbfa10887ab15f3ec06f9fdbd446553f9224052af0705a0eebfc92b55776a33a9cfdf0c3c53e4' @@ -43,10 +44,14 @@ pkgver() { prepare() { # prepare launcher script - sed -i "s|@PKGNAME@|${_pkgname}|g;s|@PKGVER@|${_pkgver}|g;s|@ELECTRON@|${_electron}|g;s|@KRISPB2@|${_krisp_b2sum}|g" discord-launcher.sh + sed -i -e "s|@PKGNAME@|${_pkgname}|g" \ + -e "s|@PKGVER@|${_pkgver}|g" \ + -e "s|@ELECTRON@|${_electronname}|g" \ + -e "s|@KRISPB2@|${_krisp_b2sum}|g" \ + discord-launcher.sh # fix the .desktop file - sed -i "s|Exec=.*|Exec=/usr/bin/${_pkgname}|" ${_pkgname^}/$_pkgname.desktop + sed -i -e "s|Exec=.*|Exec=/usr/bin/${_pkgname}|" ${_pkgname^}/$_pkgname.desktop # create the license files curl https://discord.com/terms | html2text >"${srcdir}"/LICENSE.md @@ -57,7 +62,9 @@ build() { cd "${srcdir}"/openasar # pack openasar - sed -i -e "s/nightly/nightly-$(git rev-parse HEAD | cut -c 1-7)/" src/index.js + sed -i -e "s|nightly|nightly-$(git rev-parse HEAD | cut -c 1-7)|" src/index.js + sed -i -e "s|^Exec=\${exec}$|Exec=/usr/bin/${_pkgname}|" \ + -e "s|^Name=\${basename(exec)}$|Name=${_pkgname^}|" src/autoStart.js node scripts/strip.js asar p src app.asar } diff --git a/discord-electron-openasar/discord-launcher.sh b/discord-electron-openasar/discord-launcher.sh index 86fc394..1d29967 100644 --- a/discord-electron-openasar/discord-launcher.sh +++ b/discord-electron-openasar/discord-launcher.sh @@ -39,7 +39,7 @@ done unset flags_file krisp_bin krisp_b2 -exec /usr/bin/electron@ELECTRON@ \ +exec /usr/lib/@ELECTRON@/electron \ /usr/lib/@PKGNAME@/app.asar \ --ozone-platform-hint=auto \ "${flags[@]}" "$@" From e0ada1cb4e0bc2bcf05d0388477eb962b2813b67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 9 Nov 2023 17:06:03 +0100 Subject: [PATCH 593/971] upgpkg: obs-vkcapture 1.4.5-1 upstream release --- obs-vkcapture/.SRCINFO | 6 +++--- obs-vkcapture/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/obs-vkcapture/.SRCINFO b/obs-vkcapture/.SRCINFO index 1ba8869..2c4c413 100644 --- a/obs-vkcapture/.SRCINFO +++ b/obs-vkcapture/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = obs-vkcapture - pkgver = 1.4.4 + pkgver = 1.4.5 pkgrel = 1 url = https://github.com/nowrep/obs-vkcapture arch = x86_64 @@ -15,8 +15,8 @@ pkgbase = obs-vkcapture depends = libgl depends = libegl depends = obs-studio>=27 - source = https://github.com/nowrep/obs-vkcapture/archive/v1.4.4/obs-vkcapture-1.4.4.tar.gz - sha512sums = 656a0b1b0b59002b9688a7876412747f3af00637b140728be01c43b0bfd6ea6ae26d95ef0313e2a8e159102a4a0068a1a9b4730672ef99abb4362b8b1bf1a2a9 + source = https://github.com/nowrep/obs-vkcapture/archive/v1.4.5/obs-vkcapture-1.4.5.tar.gz + sha512sums = 37e72d9dc01fc63dde666d90f17ef04e309771cbcf5e6fbd3e4115f9e88a788ca03bca0970182d9a1014d916b0a51fe799f70f2dc4579831bf3327764d33764c pkgname = obs-vkcapture pkgdesc = OBS Linux Vulkan/OpenGL game capture diff --git a/obs-vkcapture/PKGBUILD b/obs-vkcapture/PKGBUILD index 44b9db2..95ba7be 100644 --- a/obs-vkcapture/PKGBUILD +++ b/obs-vkcapture/PKGBUILD @@ -2,7 +2,7 @@ pkgbase=obs-vkcapture pkgname=("$pkgbase" "lib32-$pkgbase") -pkgver=1.4.4 +pkgver=1.4.5 pkgrel=1 url="https://github.com/nowrep/$pkgbase" license=('GPL2') @@ -10,7 +10,7 @@ arch=('x86_64') depends=('vulkan-icd-loader' 'libgl' 'libegl' 'obs-studio>=27') makedepends=('gcc' 'cmake' 'vulkan-headers' 'lib32-gcc-libs' 'lib32-vulkan-icd-loader' 'lib32-libgl' 'lib32-libegl') source=("https://github.com/nowrep/$pkgbase/archive/v$pkgver/$pkgbase-$pkgver.tar.gz") -sha512sums=('656a0b1b0b59002b9688a7876412747f3af00637b140728be01c43b0bfd6ea6ae26d95ef0313e2a8e159102a4a0068a1a9b4730672ef99abb4362b8b1bf1a2a9') +sha512sums=('37e72d9dc01fc63dde666d90f17ef04e309771cbcf5e6fbd3e4115f9e88a788ca03bca0970182d9a1014d916b0a51fe799f70f2dc4579831bf3327764d33764c') build() { cmake -B build -S "$pkgbase-$pkgver" \ From 804d2bd47790bc7879b92f5502a8939559e14afb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 13 Nov 2023 19:50:30 +0100 Subject: [PATCH 594/971] upgpkg: discord-electron 0.0.35-1 upstream release --- discord-electron/.SRCINFO | 8 ++++---- discord-electron/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index a131066..6d4ebdb 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v24) for increased security and performance - pkgver = 0.0.34 - pkgrel = 2 + pkgver = 0.0.35 + pkgrel = 1 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.34/discord-0.0.34.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.35/discord-0.0.35.tar.gz source = discord-launcher.sh - sha512sums = 28ab59e18ca3c800030c7c4b4f016efed033e741ad42f18b993e8493d51a78d430a4ff3c0a3457fdf8b43907a013f3145e67748e7a896d440af56074226c5c46 + sha512sums = a0f1db24e38a2d48ea8521a7e8e638a401bdfc407b64e21c7a0dde241eb10e4988fcdc916ed13d45012ae4ce25b3c53d36bf97b011cf569cb81e9f1b7c2d6eeb sha512sums = 723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 0b3864e..9a9735c 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -13,8 +13,8 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.34 -pkgrel=2 +pkgver=0.0.35 +pkgrel=1 _electronver=24 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" @@ -35,7 +35,7 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('28ab59e18ca3c800030c7c4b4f016efed033e741ad42f18b993e8493d51a78d430a4ff3c0a3457fdf8b43907a013f3145e67748e7a896d440af56074226c5c46' +sha512sums=('a0f1db24e38a2d48ea8521a7e8e638a401bdfc407b64e21c7a0dde241eb10e4988fcdc916ed13d45012ae4ce25b3c53d36bf97b011cf569cb81e9f1b7c2d6eeb' '723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5') _krisp_b2sum='e36c3308b34e96f4c33425bb1d7ac0d8130fa5450c9db2ee3fbdbfa10887ab15f3ec06f9fdbd446553f9224052af0705a0eebfc92b55776a33a9cfdf0c3c53e4' From bb7fc99d5fcdd708b515f7c7fe53cb215f52c8a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 13 Nov 2023 19:50:49 +0100 Subject: [PATCH 595/971] upgpkg: discord-electron-openasar 0.0.35+816-1 upstream release --- discord-electron-openasar/.SRCINFO | 8 ++++---- discord-electron-openasar/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 608edd1..108a756 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v24) for increased security and performance - pkgver = 0.0.34+816 - pkgrel = 2 + pkgver = 0.0.35+816 + pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -21,10 +21,10 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.34/discord-0.0.34.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.35/discord-0.0.35.tar.gz source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=403878f068006a826afc5af86ea4c6aaede1509a - sha512sums = 28ab59e18ca3c800030c7c4b4f016efed033e741ad42f18b993e8493d51a78d430a4ff3c0a3457fdf8b43907a013f3145e67748e7a896d440af56074226c5c46 + sha512sums = a0f1db24e38a2d48ea8521a7e8e638a401bdfc407b64e21c7a0dde241eb10e4988fcdc916ed13d45012ae4ce25b3c53d36bf97b011cf569cb81e9f1b7c2d6eeb sha512sums = 723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5 sha512sums = SKIP diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index ef19838..6af367f 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -6,9 +6,9 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.34+816 +pkgver=0.0.35+816 _pkgver=${pkgver%%+*} -pkgrel=2 +pkgrel=1 _electronver=24 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" @@ -30,7 +30,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=403878f068006a826afc5af86ea4c6aaede1509a") -sha512sums=('28ab59e18ca3c800030c7c4b4f016efed033e741ad42f18b993e8493d51a78d430a4ff3c0a3457fdf8b43907a013f3145e67748e7a896d440af56074226c5c46' +sha512sums=('a0f1db24e38a2d48ea8521a7e8e638a401bdfc407b64e21c7a0dde241eb10e4988fcdc916ed13d45012ae4ce25b3c53d36bf97b011cf569cb81e9f1b7c2d6eeb' '723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5' 'SKIP') From e92ee34c5d9bef9a10e9f2afe90a946975dc9951 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 16 Nov 2023 18:56:20 +0100 Subject: [PATCH 596/971] upgpkg: sublime-text-dev 4.4165-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 8d6ac50..6cdcb0b 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4164 + pkgver = 4.4165 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -11,9 +11,9 @@ pkgbase = sublime-text-dev depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = sublime_text_dev_4_4164_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4164_x64.tar.xz - sha512sums_x86_64 = f6a60dccdb4ac66a2c9b5bc0493ca5efb7f358ad3bb0e3ace6085c2ac62ec045787a24c29cbd8a771fa389e73858f4632f9704660b924fff32fd3634136ae70c - source_aarch64 = sublime_text_dev_4_4164_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4164_arm64.tar.xz - sha512sums_aarch64 = 6e5779a63abc805b1b2a1be9eb8024afde6c406fdea570e62d7401adbb4bb7a8c070577234f7e18fae8c839bc37fbd57c03c0b881b642c8453bde805c83526f7 + source_x86_64 = sublime_text_dev_4_4165_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4165_x64.tar.xz + sha512sums_x86_64 = 0c5d075f4906a3ce7aeb0972f6510a3b2c92c609fdb78183a49136df5de26e9ee3e77473037604e91811975c225bbc5d0ff6e3455d5104ab15b36a07186cb044 + source_aarch64 = sublime_text_dev_4_4165_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4165_arm64.tar.xz + sha512sums_aarch64 = 304e5da4f5cd580fdf09d0b6f769600cded57778406b9a32c78e5aec6714424f7f265e2a3ce3ca4d3308f0d4a6242fe6b5b5eea2acd986634c2f9733bcb2f0ad pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index d2eec59..3a3fa2e 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4164 +pkgver=4.4165 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -17,8 +17,8 @@ install=${pkgname}.install source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha512sums_x86_64=('f6a60dccdb4ac66a2c9b5bc0493ca5efb7f358ad3bb0e3ace6085c2ac62ec045787a24c29cbd8a771fa389e73858f4632f9704660b924fff32fd3634136ae70c') -sha512sums_aarch64=('6e5779a63abc805b1b2a1be9eb8024afde6c406fdea570e62d7401adbb4bb7a8c070577234f7e18fae8c839bc37fbd57c03c0b881b642c8453bde805c83526f7') +sha512sums_x86_64=('0c5d075f4906a3ce7aeb0972f6510a3b2c92c609fdb78183a49136df5de26e9ee3e77473037604e91811975c225bbc5d0ff6e3455d5104ab15b36a07186cb044') +sha512sums_aarch64=('304e5da4f5cd580fdf09d0b6f769600cded57778406b9a32c78e5aec6714424f7f265e2a3ce3ca4d3308f0d4a6242fe6b5b5eea2acd986634c2f9733bcb2f0ad') package() { cd "${srcdir}" From 4f3f00a94091b96bb42db33df2226b762b903666 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 20 Nov 2023 18:57:55 +0100 Subject: [PATCH 597/971] upgpkg: sublime-text-dev 4.4166-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 6cdcb0b..ab4fe4e 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4165 + pkgver = 4.4166 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -11,9 +11,9 @@ pkgbase = sublime-text-dev depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = sublime_text_dev_4_4165_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4165_x64.tar.xz - sha512sums_x86_64 = 0c5d075f4906a3ce7aeb0972f6510a3b2c92c609fdb78183a49136df5de26e9ee3e77473037604e91811975c225bbc5d0ff6e3455d5104ab15b36a07186cb044 - source_aarch64 = sublime_text_dev_4_4165_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4165_arm64.tar.xz - sha512sums_aarch64 = 304e5da4f5cd580fdf09d0b6f769600cded57778406b9a32c78e5aec6714424f7f265e2a3ce3ca4d3308f0d4a6242fe6b5b5eea2acd986634c2f9733bcb2f0ad + source_x86_64 = sublime_text_dev_4_4166_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4166_x64.tar.xz + sha512sums_x86_64 = a4e5a957160cc47e6c5fc71f3162edea5d6fe03e6a7af33f52074a49dbbd2cd49460b35e0924d38d4083561291469bc0ff43e7aea81232dbc97be6847612c4e1 + source_aarch64 = sublime_text_dev_4_4166_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4166_arm64.tar.xz + sha512sums_aarch64 = f175d7a7f840e44dab310f9ef9c0efce92e50c8aa03701a0cd06fe3fcc8584db040121c1cd50f0e7c90bf75ee37dd6e8c83f806f9f1bb7f1a436fdab1be6f102 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 3a3fa2e..747a42c 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4165 +pkgver=4.4166 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -17,8 +17,8 @@ install=${pkgname}.install source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha512sums_x86_64=('0c5d075f4906a3ce7aeb0972f6510a3b2c92c609fdb78183a49136df5de26e9ee3e77473037604e91811975c225bbc5d0ff6e3455d5104ab15b36a07186cb044') -sha512sums_aarch64=('304e5da4f5cd580fdf09d0b6f769600cded57778406b9a32c78e5aec6714424f7f265e2a3ce3ca4d3308f0d4a6242fe6b5b5eea2acd986634c2f9733bcb2f0ad') +sha512sums_x86_64=('a4e5a957160cc47e6c5fc71f3162edea5d6fe03e6a7af33f52074a49dbbd2cd49460b35e0924d38d4083561291469bc0ff43e7aea81232dbc97be6847612c4e1') +sha512sums_aarch64=('f175d7a7f840e44dab310f9ef9c0efce92e50c8aa03701a0cd06fe3fcc8584db040121c1cd50f0e7c90bf75ee37dd6e8c83f806f9f1bb7f1a436fdab1be6f102') package() { cd "${srcdir}" From bac9365dd698e8a8e90ca71b916013f8032009e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 20 Nov 2023 18:58:06 +0100 Subject: [PATCH 598/971] upgpkg: sublime-text-4 4.4166-1 upstream release --- sublime-text-4/.SRCINFO | 12 ++++++------ sublime-text-4/PKGBUILD | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/sublime-text-4/.SRCINFO b/sublime-text-4/.SRCINFO index 34f5c8d..974c7a9 100644 --- a/sublime-text-4/.SRCINFO +++ b/sublime-text-4/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = sublime-text-4 pkgdesc = Sophisticated text editor for code, html and prose - stable build - pkgver = 4.4152 - pkgrel = 2 + pkgver = 4.4166 + pkgrel = 1 url = https://www.sublimetext.com/download arch = x86_64 arch = aarch64 @@ -10,9 +10,9 @@ pkgbase = sublime-text-4 depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = sublime_text_4_4_4152_2_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4152_x64.tar.xz - sha512sums_x86_64 = 447a3219841150e22c66b45c8a6d0415e1b309512764060f4310c7f685c93a5b4cba2dd7f202ced01f2a3d910c30784bbf5bbb85bae915296845005a69b0bdf4 - source_aarch64 = sublime_text_4_4_4152_2_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4152_arm64.tar.xz - sha512sums_aarch64 = dd206f4b174db0809fa80a0e1eef33ffdd59d15d951be91a5438bd2b7774bc2bf8e81521c0e48d54e712d909d9f5d6a485fd3e3de0eb9fa83546a322123864e7 + source_x86_64 = sublime_text_4_4_4166_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4166_x64.tar.xz + sha512sums_x86_64 = a4e5a957160cc47e6c5fc71f3162edea5d6fe03e6a7af33f52074a49dbbd2cd49460b35e0924d38d4083561291469bc0ff43e7aea81232dbc97be6847612c4e1 + source_aarch64 = sublime_text_4_4_4166_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4166_arm64.tar.xz + sha512sums_aarch64 = f175d7a7f840e44dab310f9ef9c0efce92e50c8aa03701a0cd06fe3fcc8584db040121c1cd50f0e7c90bf75ee37dd6e8c83f806f9f1bb7f1a436fdab1be6f102 pkgname = sublime-text-4 diff --git a/sublime-text-4/PKGBUILD b/sublime-text-4/PKGBUILD index 4ecc3b4..ab30ba1 100644 --- a/sublime-text-4/PKGBUILD +++ b/sublime-text-4/PKGBUILD @@ -1,8 +1,8 @@ # Maintainer: Manuel Hüsers pkgname=sublime-text-4 -pkgver=4.4152 -pkgrel=2 +pkgver=4.4166 +pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - stable build' arch=('x86_64' 'aarch64') url='https://www.sublimetext.com/download' @@ -14,8 +14,8 @@ provides=('sublime-text') source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha512sums_x86_64=('447a3219841150e22c66b45c8a6d0415e1b309512764060f4310c7f685c93a5b4cba2dd7f202ced01f2a3d910c30784bbf5bbb85bae915296845005a69b0bdf4') -sha512sums_aarch64=('dd206f4b174db0809fa80a0e1eef33ffdd59d15d951be91a5438bd2b7774bc2bf8e81521c0e48d54e712d909d9f5d6a485fd3e3de0eb9fa83546a322123864e7') +sha512sums_x86_64=('a4e5a957160cc47e6c5fc71f3162edea5d6fe03e6a7af33f52074a49dbbd2cd49460b35e0924d38d4083561291469bc0ff43e7aea81232dbc97be6847612c4e1') +sha512sums_aarch64=('f175d7a7f840e44dab310f9ef9c0efce92e50c8aa03701a0cd06fe3fcc8584db040121c1cd50f0e7c90bf75ee37dd6e8c83f806f9f1bb7f1a436fdab1be6f102') package() { cd "${srcdir}" From 73c58452b0509745a0d1228de79d27cb1c662733 Mon Sep 17 00:00:00 2001 From: Joseph DiGiovanni Date: Wed, 22 Nov 2023 01:18:15 -0500 Subject: [PATCH 599/971] Update to release v2.0.0 --- .SRCINFO | 8 ++++---- PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 9ed1b2b..6a030ff 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,15 +1,15 @@ pkgbase = rcedit-bin pkgdesc = Command line tool to edit resources of exe files. - pkgver = 1.1.1 - pkgrel = 4 + pkgver = 2.0.0 + pkgrel = 1 url = https://github.com/electron/rcedit/ arch = any license = MIT depends = wine - source = https://github.com/electron/rcedit/releases/download/v1.1.1/rcedit-x64.exe + source = https://github.com/electron/rcedit/releases/download/v2.0.0/rcedit-x64.exe source = https://raw.githubusercontent.com/electron/rcedit/b807b34a644c86c0b0d89c7f073967e79202731a/LICENSE source = rcedit - sha256sums = 02e8e8c5d430d8b768980f517b62d7792d690982b9ba0f7e04163cbc1a6e7915 + sha256sums = 3e7801db1a5edbec91b49a24a094aad776cb4515488ea5a4ca2289c400eade2a sha256sums = 224fcc506ef97afd088b487edab374abcad7e3d4de55fb8cce4f04328397213f sha256sums = 4d42d20aafe098f9403db50ab804070c9710d57f07462eef98ee5a77976e2d17 diff --git a/PKGBUILD b/PKGBUILD index 2555c1b..7a7011d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,8 +1,8 @@ # Maintainer: jdigi78 pkgname=rcedit-bin -pkgver=1.1.1 -pkgrel=4 +pkgver=2.0.0 +pkgrel=1 pkgdesc='Command line tool to edit resources of exe files.' arch=('any') url='https://github.com/electron/rcedit/' @@ -13,7 +13,7 @@ source=("https://github.com/electron/rcedit/releases/download/v${pkgver}/rcedit- "https://raw.githubusercontent.com/electron/rcedit/b807b34a644c86c0b0d89c7f073967e79202731a/LICENSE" "rcedit") -sha256sums=('02e8e8c5d430d8b768980f517b62d7792d690982b9ba0f7e04163cbc1a6e7915' +sha256sums=('3e7801db1a5edbec91b49a24a094aad776cb4515488ea5a4ca2289c400eade2a' '224fcc506ef97afd088b487edab374abcad7e3d4de55fb8cce4f04328397213f' '4d42d20aafe098f9403db50ab804070c9710d57f07462eef98ee5a77976e2d17') From b3be47dc282341b7cdb329415576b7788a9f0df4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 23 Nov 2023 22:16:42 +0100 Subject: [PATCH 600/971] upgpkg: sublime-text-dev 4.4168-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index ab4fe4e..911d5a2 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4166 + pkgver = 4.4168 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -11,9 +11,9 @@ pkgbase = sublime-text-dev depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = sublime_text_dev_4_4166_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4166_x64.tar.xz - sha512sums_x86_64 = a4e5a957160cc47e6c5fc71f3162edea5d6fe03e6a7af33f52074a49dbbd2cd49460b35e0924d38d4083561291469bc0ff43e7aea81232dbc97be6847612c4e1 - source_aarch64 = sublime_text_dev_4_4166_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4166_arm64.tar.xz - sha512sums_aarch64 = f175d7a7f840e44dab310f9ef9c0efce92e50c8aa03701a0cd06fe3fcc8584db040121c1cd50f0e7c90bf75ee37dd6e8c83f806f9f1bb7f1a436fdab1be6f102 + source_x86_64 = sublime_text_dev_4_4168_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4168_x64.tar.xz + sha512sums_x86_64 = 8a0e8bcedcac5dd1cfd239be47f1811b69aa39ff11afb313b64abc10b66acaad531082dc213c0ff652a27c6d4481a3f015d8d64e32389667734b72b84aabcf7e + source_aarch64 = sublime_text_dev_4_4168_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4168_arm64.tar.xz + sha512sums_aarch64 = a9b191bda6046324e6345285f9445deb2ab99adfd45c8ccac8c78c92c3908f3895c613e4549e1f9965b7ad17c35facc4431c68939e704c67cb0f294482de099d pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 747a42c..572048b 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4166 +pkgver=4.4168 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -17,8 +17,8 @@ install=${pkgname}.install source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha512sums_x86_64=('a4e5a957160cc47e6c5fc71f3162edea5d6fe03e6a7af33f52074a49dbbd2cd49460b35e0924d38d4083561291469bc0ff43e7aea81232dbc97be6847612c4e1') -sha512sums_aarch64=('f175d7a7f840e44dab310f9ef9c0efce92e50c8aa03701a0cd06fe3fcc8584db040121c1cd50f0e7c90bf75ee37dd6e8c83f806f9f1bb7f1a436fdab1be6f102') +sha512sums_x86_64=('8a0e8bcedcac5dd1cfd239be47f1811b69aa39ff11afb313b64abc10b66acaad531082dc213c0ff652a27c6d4481a3f015d8d64e32389667734b72b84aabcf7e') +sha512sums_aarch64=('a9b191bda6046324e6345285f9445deb2ab99adfd45c8ccac8c78c92c3908f3895c613e4549e1f9965b7ad17c35facc4431c68939e704c67cb0f294482de099d') package() { cd "${srcdir}" From 82fbd3c743577670410e2fc835afea66ff4db291 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 23 Nov 2023 22:18:18 +0100 Subject: [PATCH 601/971] upgpkg: discord-electron-openasar 0.0.35+821-1 Update to latest OpenAsar commit --- discord-electron-openasar/.SRCINFO | 4 ++-- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 108a756..68532be 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v24) for increased security and performance - pkgver = 0.0.35+816 + pkgver = 0.0.35+821 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -23,7 +23,7 @@ pkgbase = discord-electron-openasar options = !strip source = https://dl.discordapp.net/apps/linux/0.0.35/discord-0.0.35.tar.gz source = discord-launcher.sh - source = git+https://github.com/goosemod/openasar.git#commit=403878f068006a826afc5af86ea4c6aaede1509a + source = git+https://github.com/goosemod/openasar.git#commit=1c24e099dddc6830876121fac27649765e2cb622 sha512sums = a0f1db24e38a2d48ea8521a7e8e638a401bdfc407b64e21c7a0dde241eb10e4988fcdc916ed13d45012ae4ce25b3c53d36bf97b011cf569cb81e9f1b7c2d6eeb sha512sums = 723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5 sha512sums = SKIP diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 6af367f..4e8c740 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -6,7 +6,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.35+816 +pkgver=0.0.35+821 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=24 @@ -29,7 +29,7 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' - "git+https://github.com/goosemod/openasar.git#commit=403878f068006a826afc5af86ea4c6aaede1509a") + "git+https://github.com/goosemod/openasar.git#commit=1c24e099dddc6830876121fac27649765e2cb622") sha512sums=('a0f1db24e38a2d48ea8521a7e8e638a401bdfc407b64e21c7a0dde241eb10e4988fcdc916ed13d45012ae4ce25b3c53d36bf97b011cf569cb81e9f1b7c2d6eeb' '723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5' 'SKIP') From a36fa33c471665576ddac7b8d19ef4d23a9e88db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 23 Nov 2023 23:31:16 +0100 Subject: [PATCH 602/971] upgpkg: sublime-text-dev 4.4169-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 911d5a2..137c105 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4168 + pkgver = 4.4169 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -11,9 +11,9 @@ pkgbase = sublime-text-dev depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = sublime_text_dev_4_4168_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4168_x64.tar.xz - sha512sums_x86_64 = 8a0e8bcedcac5dd1cfd239be47f1811b69aa39ff11afb313b64abc10b66acaad531082dc213c0ff652a27c6d4481a3f015d8d64e32389667734b72b84aabcf7e - source_aarch64 = sublime_text_dev_4_4168_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4168_arm64.tar.xz - sha512sums_aarch64 = a9b191bda6046324e6345285f9445deb2ab99adfd45c8ccac8c78c92c3908f3895c613e4549e1f9965b7ad17c35facc4431c68939e704c67cb0f294482de099d + source_x86_64 = sublime_text_dev_4_4169_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4169_x64.tar.xz + sha512sums_x86_64 = 6764363f8f92f65532d64ba014023e28b18f40dc62a1b114239b59360257d445494f9a2f57580174b5f4994c8fa06cd8f562c9419cfda92324c9ebf25d15e576 + source_aarch64 = sublime_text_dev_4_4169_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4169_arm64.tar.xz + sha512sums_aarch64 = e9964f55a5bff89fc0ad13266cc7695c8e0cc41d86caed212836fd737c3b52d84400c683b3f9699b554e71fa2d3ed3cc4351cfebcf9f182512211227465db3d6 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 572048b..f599c11 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4168 +pkgver=4.4169 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -17,8 +17,8 @@ install=${pkgname}.install source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha512sums_x86_64=('8a0e8bcedcac5dd1cfd239be47f1811b69aa39ff11afb313b64abc10b66acaad531082dc213c0ff652a27c6d4481a3f015d8d64e32389667734b72b84aabcf7e') -sha512sums_aarch64=('a9b191bda6046324e6345285f9445deb2ab99adfd45c8ccac8c78c92c3908f3895c613e4549e1f9965b7ad17c35facc4431c68939e704c67cb0f294482de099d') +sha512sums_x86_64=('6764363f8f92f65532d64ba014023e28b18f40dc62a1b114239b59360257d445494f9a2f57580174b5f4994c8fa06cd8f562c9419cfda92324c9ebf25d15e576') +sha512sums_aarch64=('e9964f55a5bff89fc0ad13266cc7695c8e0cc41d86caed212836fd737c3b52d84400c683b3f9699b554e71fa2d3ed3cc4351cfebcf9f182512211227465db3d6') package() { cd "${srcdir}" From 8803ba4b5609fa54a25151a3e7a82dca012b8532 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 23 Nov 2023 23:31:27 +0100 Subject: [PATCH 603/971] upgpkg: sublime-text-4 4.4169-1 upstream release --- sublime-text-4/.SRCINFO | 10 +++++----- sublime-text-4/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-4/.SRCINFO b/sublime-text-4/.SRCINFO index 974c7a9..ee46166 100644 --- a/sublime-text-4/.SRCINFO +++ b/sublime-text-4/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-4 pkgdesc = Sophisticated text editor for code, html and prose - stable build - pkgver = 4.4166 + pkgver = 4.4169 pkgrel = 1 url = https://www.sublimetext.com/download arch = x86_64 @@ -10,9 +10,9 @@ pkgbase = sublime-text-4 depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = sublime_text_4_4_4166_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4166_x64.tar.xz - sha512sums_x86_64 = a4e5a957160cc47e6c5fc71f3162edea5d6fe03e6a7af33f52074a49dbbd2cd49460b35e0924d38d4083561291469bc0ff43e7aea81232dbc97be6847612c4e1 - source_aarch64 = sublime_text_4_4_4166_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4166_arm64.tar.xz - sha512sums_aarch64 = f175d7a7f840e44dab310f9ef9c0efce92e50c8aa03701a0cd06fe3fcc8584db040121c1cd50f0e7c90bf75ee37dd6e8c83f806f9f1bb7f1a436fdab1be6f102 + source_x86_64 = sublime_text_4_4_4169_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4169_x64.tar.xz + sha512sums_x86_64 = 6764363f8f92f65532d64ba014023e28b18f40dc62a1b114239b59360257d445494f9a2f57580174b5f4994c8fa06cd8f562c9419cfda92324c9ebf25d15e576 + source_aarch64 = sublime_text_4_4_4169_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4169_arm64.tar.xz + sha512sums_aarch64 = e9964f55a5bff89fc0ad13266cc7695c8e0cc41d86caed212836fd737c3b52d84400c683b3f9699b554e71fa2d3ed3cc4351cfebcf9f182512211227465db3d6 pkgname = sublime-text-4 diff --git a/sublime-text-4/PKGBUILD b/sublime-text-4/PKGBUILD index ab30ba1..4102e4a 100644 --- a/sublime-text-4/PKGBUILD +++ b/sublime-text-4/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Manuel Hüsers pkgname=sublime-text-4 -pkgver=4.4166 +pkgver=4.4169 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - stable build' arch=('x86_64' 'aarch64') @@ -14,8 +14,8 @@ provides=('sublime-text') source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha512sums_x86_64=('a4e5a957160cc47e6c5fc71f3162edea5d6fe03e6a7af33f52074a49dbbd2cd49460b35e0924d38d4083561291469bc0ff43e7aea81232dbc97be6847612c4e1') -sha512sums_aarch64=('f175d7a7f840e44dab310f9ef9c0efce92e50c8aa03701a0cd06fe3fcc8584db040121c1cd50f0e7c90bf75ee37dd6e8c83f806f9f1bb7f1a436fdab1be6f102') +sha512sums_x86_64=('6764363f8f92f65532d64ba014023e28b18f40dc62a1b114239b59360257d445494f9a2f57580174b5f4994c8fa06cd8f562c9419cfda92324c9ebf25d15e576') +sha512sums_aarch64=('e9964f55a5bff89fc0ad13266cc7695c8e0cc41d86caed212836fd737c3b52d84400c683b3f9699b554e71fa2d3ed3cc4351cfebcf9f182512211227465db3d6') package() { cd "${srcdir}" From 51ebf060d2fe3e0358813a90b22995666d002f0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 25 Nov 2023 21:29:32 +0100 Subject: [PATCH 604/971] upgpkg: clonezilla-unstable 5.5.17-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 3c94f15..f90e60b 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.16 + pkgver = 5.5.17 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.16.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.17.tar.xz source = usrbin.patch - sha512sums = deb85929665797e939515027e22441315d3b28dc6d760649879c806772e76627f877d7f4044367b84f9a5b635a52be7d5de0bab6bc4e621e644d8a78c5a964c0 + sha512sums = b0aad503dae042ef3a03fe7bf5539cfcfff20faedb499f38fec676be61505514bfd18284614cf2a48892a5a7deecce1d0447d2382909491014003f73218206b8 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 62f84ad..c3c54c6 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.16 +pkgver=5.5.17 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('deb85929665797e939515027e22441315d3b28dc6d760649879c806772e76627f877d7f4044367b84f9a5b635a52be7d5de0bab6bc4e621e644d8a78c5a964c0' +sha512sums=('b0aad503dae042ef3a03fe7bf5539cfcfff20faedb499f38fec676be61505514bfd18284614cf2a48892a5a7deecce1d0447d2382909491014003f73218206b8' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 7f82f81bcf4bc96e6aa64495e5d24645a23981bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 25 Nov 2023 21:29:32 +0100 Subject: [PATCH 605/971] upgpkg: clonezilla-unstable 5.5.17-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 3c94f15..f90e60b 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.16 + pkgver = 5.5.17 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.16.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.17.tar.xz source = usrbin.patch - sha512sums = deb85929665797e939515027e22441315d3b28dc6d760649879c806772e76627f877d7f4044367b84f9a5b635a52be7d5de0bab6bc4e621e644d8a78c5a964c0 + sha512sums = b0aad503dae042ef3a03fe7bf5539cfcfff20faedb499f38fec676be61505514bfd18284614cf2a48892a5a7deecce1d0447d2382909491014003f73218206b8 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 62f84ad..c3c54c6 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.16 +pkgver=5.5.17 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('deb85929665797e939515027e22441315d3b28dc6d760649879c806772e76627f877d7f4044367b84f9a5b635a52be7d5de0bab6bc4e621e644d8a78c5a964c0' +sha512sums=('b0aad503dae042ef3a03fe7bf5539cfcfff20faedb499f38fec676be61505514bfd18284614cf2a48892a5a7deecce1d0447d2382909491014003f73218206b8' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From aaebd5388acbd04d06cd04a59331f6797c85e311 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 29 Nov 2023 01:17:45 +0100 Subject: [PATCH 606/971] upgpkg: discord-electron 0.0.36-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 6d4ebdb..fc0f23a 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v24) for increased security and performance - pkgver = 0.0.35 + pkgver = 0.0.36 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.35/discord-0.0.35.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.36/discord-0.0.36.tar.gz source = discord-launcher.sh - sha512sums = a0f1db24e38a2d48ea8521a7e8e638a401bdfc407b64e21c7a0dde241eb10e4988fcdc916ed13d45012ae4ce25b3c53d36bf97b011cf569cb81e9f1b7c2d6eeb + sha512sums = e72ed0e559ebc8ad24c3aa41011af408aa5d3d1c4561cca3f16345aa3a5e18326017564ff2f4a3c1bf1e84f00333e206557cebad2f483c6a1c71bf48df23546b sha512sums = 723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 9a9735c..42a28f1 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -13,7 +13,7 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.35 +pkgver=0.0.36 pkgrel=1 _electronver=24 _electronname="electron${_electronver}" @@ -35,7 +35,7 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('a0f1db24e38a2d48ea8521a7e8e638a401bdfc407b64e21c7a0dde241eb10e4988fcdc916ed13d45012ae4ce25b3c53d36bf97b011cf569cb81e9f1b7c2d6eeb' +sha512sums=('e72ed0e559ebc8ad24c3aa41011af408aa5d3d1c4561cca3f16345aa3a5e18326017564ff2f4a3c1bf1e84f00333e206557cebad2f483c6a1c71bf48df23546b' '723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5') _krisp_b2sum='e36c3308b34e96f4c33425bb1d7ac0d8130fa5450c9db2ee3fbdbfa10887ab15f3ec06f9fdbd446553f9224052af0705a0eebfc92b55776a33a9cfdf0c3c53e4' From 55545213bc9c91fd396455ce4c28ae299a1efb3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 29 Nov 2023 01:18:04 +0100 Subject: [PATCH 607/971] upgpkg: discord-electron-openasar 0.0.36+821-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 68532be..cc5b0b4 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v24) for increased security and performance - pkgver = 0.0.35+821 + pkgver = 0.0.36+821 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,10 +21,10 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.35/discord-0.0.35.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.36/discord-0.0.36.tar.gz source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=1c24e099dddc6830876121fac27649765e2cb622 - sha512sums = a0f1db24e38a2d48ea8521a7e8e638a401bdfc407b64e21c7a0dde241eb10e4988fcdc916ed13d45012ae4ce25b3c53d36bf97b011cf569cb81e9f1b7c2d6eeb + sha512sums = e72ed0e559ebc8ad24c3aa41011af408aa5d3d1c4561cca3f16345aa3a5e18326017564ff2f4a3c1bf1e84f00333e206557cebad2f483c6a1c71bf48df23546b sha512sums = 723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5 sha512sums = SKIP diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 4e8c740..c668d80 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -6,7 +6,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.35+821 +pkgver=0.0.36+821 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=24 @@ -30,7 +30,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=1c24e099dddc6830876121fac27649765e2cb622") -sha512sums=('a0f1db24e38a2d48ea8521a7e8e638a401bdfc407b64e21c7a0dde241eb10e4988fcdc916ed13d45012ae4ce25b3c53d36bf97b011cf569cb81e9f1b7c2d6eeb' +sha512sums=('e72ed0e559ebc8ad24c3aa41011af408aa5d3d1c4561cca3f16345aa3a5e18326017564ff2f4a3c1bf1e84f00333e206557cebad2f483c6a1c71bf48df23546b' '723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5' 'SKIP') From 4e12c64e308d9871dcc951181cdbf0dffcaa423c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 30 Nov 2023 19:36:15 +0100 Subject: [PATCH 608/971] upgpkg: firefox-syncstorage 0.14.3-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index dd5e21a..b86befc 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.14.1 + pkgver = 0.14.3 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -21,9 +21,9 @@ pkgbase = firefox-syncstorage optdepends = mysql: for use with a local database server options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.14.1/syncstorage-rs-0.14.1.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.14.3/syncstorage-rs-0.14.3.tar.gz source = firefox-syncstorage.service - sha512sums = 7bddee5488f7b014f124104764a6393351e5e59385c5f567a24cb3ad3b727d27a682ba8603a718c85fc47d612e9d65f99613e2e9a6a1cc1f60569c06c326f816 + sha512sums = bd30e696c6974cbedb61648fb3d63baea06209913f899fa5c8f8a3c771089959749aba5503374ec804133172cfdd344f02037dfb9a61f01aa150dbfb0d97cfe3 sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index 5a2b82f..4b4deed 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.14.1 +pkgver=0.14.3 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -18,7 +18,7 @@ options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha512sums=('7bddee5488f7b014f124104764a6393351e5e59385c5f567a24cb3ad3b727d27a682ba8603a718c85fc47d612e9d65f99613e2e9a6a1cc1f60569c06c326f816' +sha512sums=('bd30e696c6974cbedb61648fb3d63baea06209913f899fa5c8f8a3c771089959749aba5503374ec804133172cfdd344f02037dfb9a61f01aa150dbfb0d97cfe3' '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") From 66d2a4511d963e95da8b0d38c7732bf57248a165 Mon Sep 17 00:00:00 2001 From: Manuel Date: Thu, 30 Nov 2023 19:37:02 +0100 Subject: [PATCH 609/971] Update makepkg.conf --- makepkg.conf | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/makepkg.conf b/makepkg.conf index 28fd9ed..6d15ed4 100644 --- a/makepkg.conf +++ b/makepkg.conf @@ -25,7 +25,7 @@ DLAGENTS=('file::/usr/bin/curl -qgC - -o %o %u' #-- The package required by makepkg to download VCS sources # Format: 'protocol::package' -VCSCLIENTS=('bzr::bzr' +VCSCLIENTS=('bzr::breezy' 'fossil::fossil' 'git::git' 'hg::mercurial' @@ -42,10 +42,10 @@ CHOST="x86_64-pc-linux-gnu" #CPPFLAGS="" CFLAGS="-march=x86-64-v3 -O3 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -mpclmul" CXXFLAGS="$CFLAGS -Wp,-D_GLIBCXX_ASSERTIONS" -LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now" +LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now,-z,pack-relative-relocs" LTOFLAGS="-flto=auto -falign-functions=32" -RUSTFLAGS="-Copt-level=3 -Ctarget-cpu=x86-64-v3 -Ccodegen-units=1" +RUSTFLAGS="-Copt-level=3 -Ctarget-cpu=x86-64-v3 -Clink-arg=-z -Clink-arg=pack-relative-relocs -Ccodegen-units=1" #-- Make Flags: change this for DistCC/SMP systems MAKEFLAGS="-j $(nproc)" @@ -162,5 +162,9 @@ SRCEXT='.src.tar' #PACMAN_AUTH=() # vim: set ft=sh ts=2 sw=2 et: +export KCPPFLAGS=" -march=x86-64-v3 -O3" +export FCFLAGS=$CFLAGS +export KCFLAGS=" -march=x86-64-v3 -O3" +export FFLAGS=$CFLAGS export GOAMD64=v3 export CARGO_PROFILE_RELEASE_LTO=fat From 6ff795b9930d02d4f2bc3d2c0735041462c26324 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 1 Dec 2023 20:09:34 +0100 Subject: [PATCH 610/971] upgpkg: obs-vkcapture 1.4.6-1 upstream release --- obs-vkcapture/.SRCINFO | 6 +++--- obs-vkcapture/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/obs-vkcapture/.SRCINFO b/obs-vkcapture/.SRCINFO index 2c4c413..e2eed24 100644 --- a/obs-vkcapture/.SRCINFO +++ b/obs-vkcapture/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = obs-vkcapture - pkgver = 1.4.5 + pkgver = 1.4.6 pkgrel = 1 url = https://github.com/nowrep/obs-vkcapture arch = x86_64 @@ -15,8 +15,8 @@ pkgbase = obs-vkcapture depends = libgl depends = libegl depends = obs-studio>=27 - source = https://github.com/nowrep/obs-vkcapture/archive/v1.4.5/obs-vkcapture-1.4.5.tar.gz - sha512sums = 37e72d9dc01fc63dde666d90f17ef04e309771cbcf5e6fbd3e4115f9e88a788ca03bca0970182d9a1014d916b0a51fe799f70f2dc4579831bf3327764d33764c + source = https://github.com/nowrep/obs-vkcapture/archive/v1.4.6/obs-vkcapture-1.4.6.tar.gz + sha512sums = 153da9248671f1d343dfae47a50bbf08d3e3812b7b62c5f892fb56a72970138bf39b3f09888ee86a86cce1213f632f5cdf27767957163372e3be666a1cf22b3c pkgname = obs-vkcapture pkgdesc = OBS Linux Vulkan/OpenGL game capture diff --git a/obs-vkcapture/PKGBUILD b/obs-vkcapture/PKGBUILD index 95ba7be..b5b5d25 100644 --- a/obs-vkcapture/PKGBUILD +++ b/obs-vkcapture/PKGBUILD @@ -2,7 +2,7 @@ pkgbase=obs-vkcapture pkgname=("$pkgbase" "lib32-$pkgbase") -pkgver=1.4.5 +pkgver=1.4.6 pkgrel=1 url="https://github.com/nowrep/$pkgbase" license=('GPL2') @@ -10,7 +10,7 @@ arch=('x86_64') depends=('vulkan-icd-loader' 'libgl' 'libegl' 'obs-studio>=27') makedepends=('gcc' 'cmake' 'vulkan-headers' 'lib32-gcc-libs' 'lib32-vulkan-icd-loader' 'lib32-libgl' 'lib32-libegl') source=("https://github.com/nowrep/$pkgbase/archive/v$pkgver/$pkgbase-$pkgver.tar.gz") -sha512sums=('37e72d9dc01fc63dde666d90f17ef04e309771cbcf5e6fbd3e4115f9e88a788ca03bca0970182d9a1014d916b0a51fe799f70f2dc4579831bf3327764d33764c') +sha512sums=('153da9248671f1d343dfae47a50bbf08d3e3812b7b62c5f892fb56a72970138bf39b3f09888ee86a86cce1213f632f5cdf27767957163372e3be666a1cf22b3c') build() { cmake -B build -S "$pkgbase-$pkgver" \ From df0ba439fc45b21307de0f088e3cf58bb130dd9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 3 Dec 2023 19:15:11 +0100 Subject: [PATCH 611/971] upgpkg: obs-vkcapture 1.4.7-1 upstream release --- obs-vkcapture/.SRCINFO | 6 +++--- obs-vkcapture/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/obs-vkcapture/.SRCINFO b/obs-vkcapture/.SRCINFO index e2eed24..85013bf 100644 --- a/obs-vkcapture/.SRCINFO +++ b/obs-vkcapture/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = obs-vkcapture - pkgver = 1.4.6 + pkgver = 1.4.7 pkgrel = 1 url = https://github.com/nowrep/obs-vkcapture arch = x86_64 @@ -15,8 +15,8 @@ pkgbase = obs-vkcapture depends = libgl depends = libegl depends = obs-studio>=27 - source = https://github.com/nowrep/obs-vkcapture/archive/v1.4.6/obs-vkcapture-1.4.6.tar.gz - sha512sums = 153da9248671f1d343dfae47a50bbf08d3e3812b7b62c5f892fb56a72970138bf39b3f09888ee86a86cce1213f632f5cdf27767957163372e3be666a1cf22b3c + source = https://github.com/nowrep/obs-vkcapture/archive/v1.4.7/obs-vkcapture-1.4.7.tar.gz + sha512sums = 6ac1b25feb5a9bc0d57723caf073ca7b1758ab6d8b5a6ab3a3070b14612a27b5892e5a165544069a4eb744116bb4abcbc999291f4331ce865c019687996e3f51 pkgname = obs-vkcapture pkgdesc = OBS Linux Vulkan/OpenGL game capture diff --git a/obs-vkcapture/PKGBUILD b/obs-vkcapture/PKGBUILD index b5b5d25..27f89cf 100644 --- a/obs-vkcapture/PKGBUILD +++ b/obs-vkcapture/PKGBUILD @@ -2,7 +2,7 @@ pkgbase=obs-vkcapture pkgname=("$pkgbase" "lib32-$pkgbase") -pkgver=1.4.6 +pkgver=1.4.7 pkgrel=1 url="https://github.com/nowrep/$pkgbase" license=('GPL2') @@ -10,7 +10,7 @@ arch=('x86_64') depends=('vulkan-icd-loader' 'libgl' 'libegl' 'obs-studio>=27') makedepends=('gcc' 'cmake' 'vulkan-headers' 'lib32-gcc-libs' 'lib32-vulkan-icd-loader' 'lib32-libgl' 'lib32-libegl') source=("https://github.com/nowrep/$pkgbase/archive/v$pkgver/$pkgbase-$pkgver.tar.gz") -sha512sums=('153da9248671f1d343dfae47a50bbf08d3e3812b7b62c5f892fb56a72970138bf39b3f09888ee86a86cce1213f632f5cdf27767957163372e3be666a1cf22b3c') +sha512sums=('6ac1b25feb5a9bc0d57723caf073ca7b1758ab6d8b5a6ab3a3070b14612a27b5892e5a165544069a4eb744116bb4abcbc999291f4331ce865c019687996e3f51') build() { cmake -B build -S "$pkgbase-$pkgver" \ From 3bd443b8d8394aad03446839290033683b0f6870 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 3 Dec 2023 20:20:10 +0100 Subject: [PATCH 612/971] Initial upload: amdvlk-2023q3.3 2023.Q3.3-1 --- amdvlk-2023q3.3/.SRCINFO | 29 ++++++++++++++++++ amdvlk-2023q3.3/PKGBUILD | 64 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 93 insertions(+) create mode 100644 amdvlk-2023q3.3/.SRCINFO create mode 100644 amdvlk-2023q3.3/PKGBUILD diff --git a/amdvlk-2023q3.3/.SRCINFO b/amdvlk-2023q3.3/.SRCINFO new file mode 100644 index 0000000..9a9c308 --- /dev/null +++ b/amdvlk-2023q3.3/.SRCINFO @@ -0,0 +1,29 @@ +pkgbase = amdvlk-2023q3.3 + pkgdesc = AMD's standalone Vulkan driver for Pre-GFX10 GPUs (Vega, Polaris) + pkgver = 2023.Q3.3 + pkgrel = 1 + url = https://github.com/GPUOpen-Drivers + arch = x86_64 + license = MIT + makedepends = perl-xml-xpath + makedepends = python + makedepends = wayland + makedepends = libxrandr + makedepends = xorg-server-devel + makedepends = directx-shader-compiler + makedepends = glslang + makedepends = cmake + makedepends = ninja + makedepends = git + provides = amdvlk + provides = vulkan-driver + conflicts = amdvlk + options = !lto + source = https://github.com/GPUOpen-Drivers/AMDVLK/archive/v-2023.Q3.3.tar.gz + sha512sums = 19e799030daee33d516f1276e08cd598a8ea7f8341b3955bda31b8576459486dbd3401d33670bfabb1872341025716e9610a8e9c4072a07a206eac90bd0f6ace + +pkgname = amdvlk-2023q3.3 + depends = glibc + depends = gcc-libs + depends = zlib + depends = zstd diff --git a/amdvlk-2023q3.3/PKGBUILD b/amdvlk-2023q3.3/PKGBUILD new file mode 100644 index 0000000..fffd31c --- /dev/null +++ b/amdvlk-2023q3.3/PKGBUILD @@ -0,0 +1,64 @@ +# Maintainer: Manuel Hüsers +# Contributor: Laurent Carlier +# Contributor: lod + +pkgname=amdvlk-2023q3.3 +_pkgname=amdvlk +pkgver=2023.Q3.3 +pkgrel=1 +pkgdesc="AMD's standalone Vulkan driver for Pre-GFX10 GPUs (Vega, Polaris)" +arch=('x86_64') +url="https://github.com/GPUOpen-Drivers" +license=('MIT') +provides=("${_pkgname}" 'vulkan-driver') +conflicts=("${_pkgname}") +makedepends=('perl-xml-xpath' 'python' 'wayland' 'libxrandr' 'xorg-server-devel' 'directx-shader-compiler' 'glslang' 'cmake' 'ninja' 'git') +options=('!lto') +source=("https://github.com/GPUOpen-Drivers/AMDVLK/archive/v-${pkgver}.tar.gz") +sha512sums=('19e799030daee33d516f1276e08cd598a8ea7f8341b3955bda31b8576459486dbd3401d33670bfabb1872341025716e9610a8e9c4072a07a206eac90bd0f6ace') + +prepare() { + local nrepos path name revision + + nrepos=$(xpath -q -e //project AMDVLK-v-${pkgver}/default.xml | wc -l) + + while (($nrepos>0)) + do + path=$(xpath -q -e //project[$nrepos]/@path AMDVLK-v-${pkgver}/default.xml | sed 's/ path="drivers\/\(.*\)"/\1/g') + name=$(xpath -q -e //project[$nrepos]/@name AMDVLK-v-${pkgver}/default.xml | sed 's/ name="\(.*\)"/\1/g') + revision=$(xpath -q -e //project[$nrepos]/@revision AMDVLK-v-${pkgver}/default.xml | sed 's/ revision="\(.*\)"/\1/g') + git clone --recurse-submodules https://github.com/GPUOpen-Drivers/$name $path + pushd $path + git checkout $revision + git submodule update + popd + (( nrepos-- )) + done +} + +build() { + cd ${srcdir}/xgl + cmake -H. -Bbuilds/Release64 \ + -DCMAKE_BUILD_TYPE=Release \ + -DBUILD_WAYLAND_SUPPORT=On \ + -G Ninja + + ninja -C builds/Release64 +} + +package() { + depends=('glibc' 'gcc-libs' 'zlib' 'zstd') + + install -m755 -d "${pkgdir}"/usr/lib + install -m755 -d "${pkgdir}"/usr/share/vulkan/icd.d + install -m755 -d "${pkgdir}"/usr/share/vulkan/implicit_layer.d + install -m755 -d "${pkgdir}"/usr/share/licenses/${pkgname} + + install xgl/builds/Release64/icd/amdvlk64.so "${pkgdir}"/usr/lib/ + install xgl/builds/Release64/icd/amd_icd64.json "${pkgdir}"/usr/share/vulkan/icd.d/ + install xgl/builds/Release64/icd/amd_icd64.json "${pkgdir}"/usr/share/vulkan/implicit_layer.d/ + install AMDVLK-v-${pkgver}/LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/ + + sed -i "s#/lib64#/lib#g" "${pkgdir}"/usr/share/vulkan/icd.d/amd_icd64.json + sed -i "s#/lib64#/lib#g" "${pkgdir}"/usr/share/vulkan/implicit_layer.d/amd_icd64.json +} From be0a240ffbf8cdce962a07e404e62e26a61a0df3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 3 Dec 2023 20:27:52 +0100 Subject: [PATCH 613/971] waifu2x-ncnn-vulkan: Remove maintainer comment Package currently only kept for preservation --- waifu2x-ncnn-vulkan/PKGBUILD | 2 -- 1 file changed, 2 deletions(-) diff --git a/waifu2x-ncnn-vulkan/PKGBUILD b/waifu2x-ncnn-vulkan/PKGBUILD index 0bb30b9..60fa12d 100644 --- a/waifu2x-ncnn-vulkan/PKGBUILD +++ b/waifu2x-ncnn-vulkan/PKGBUILD @@ -1,5 +1,3 @@ -# Maintainer: Manuel Hüsers - pkgname=waifu2x-ncnn-vulkan pkgver=20220728 pkgrel=1 From c73c86f9fee089fbccb67db2de0c29a075c8211b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 3 Dec 2023 20:30:13 +0100 Subject: [PATCH 614/971] polkit-explorer-git: Refactor --- polkit-explorer-git/PKGBUILD | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/polkit-explorer-git/PKGBUILD b/polkit-explorer-git/PKGBUILD index 2424e6d..f53d881 100644 --- a/polkit-explorer-git/PKGBUILD +++ b/polkit-explorer-git/PKGBUILD @@ -6,21 +6,21 @@ pkgver=15.fac8d70 pkgrel=3 pkgdesc='Present PolicyKit information in a human-readable form.' arch=('any') -url="https://github.com/scarygliders/${pkgname//-git}" +url="https://github.com/scarygliders/${pkgname%-git}" license=('ISC') depends=('python-pyqt5' 'python-lxml') conflicts=('polkit-explorer') provides=('polkit-explorer') -source=("git+https://github.com/scarygliders/${pkgname//-git}.git") +source=("git+${url}.git") sha256sums=('SKIP') pkgver() { - cd "${srcdir}/${pkgname//-git}" + cd "${srcdir}/${pkgname%-git}" printf '%s.%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" } package() { - cd "${srcdir}/${pkgname//-git}" + cd "${srcdir}/${pkgname%-git}" install -d -m755 "${pkgdir}"/{usr/bin,opt/$pkgname} install -m644 Ui_*.py "${pkgdir}/opt/${pkgname}/" From 1255e6487315a4d2356ec701a963c73c67d58cab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 3 Dec 2023 20:31:07 +0100 Subject: [PATCH 615/971] Replace checksums with sha512 --- cage-vi/.SRCINFO | 4 ++-- cage-vi/PKGBUILD | 4 ++-- nginx-mod-traffic-accounting/.SRCINFO | 8 ++++---- nginx-mod-traffic-accounting/PKGBUILD | 8 ++++---- ntfs2btrfs-git/.SRCINFO | 2 +- ntfs2btrfs-git/PKGBUILD | 2 +- ntfs2btrfs/.SRCINFO | 2 +- ntfs2btrfs/PKGBUILD | 2 +- 8 files changed, 16 insertions(+), 16 deletions(-) diff --git a/cage-vi/.SRCINFO b/cage-vi/.SRCINFO index 7f2e870..7e5f5a8 100644 --- a/cage-vi/.SRCINFO +++ b/cage-vi/.SRCINFO @@ -19,7 +19,7 @@ pkgbase = cage-vi conflicts = cage source = https://github.com/Hjdskes/cage/releases/download/v0.1.4/cage-0.1.4.tar.gz source = bd5b20e.patch - sha256sums = dfe27fb0c7d43db72d6c82f01e2736580a0791a23ba69d7b56285d08af98ad90 - sha256sums = b3608b082c8859433158377ec875ee17ca72f10d61d8827eb5b1c2e01771c0ce + sha512sums = 55773fac44bf9e98086e53cbc20d17e3aad7046bedfe638ef8f896543388481be3989fede6f950d4f8cb0583f701cbf79617dfa011c7777a7c8b22c9bcddd64f + sha512sums = e30d9596bf12a793e744a170dc859224f62d807bfc1f980ad26044ffe6170bedd1a1e8a9e9321b3bffb93aa3d42a152e67f60dd6735c6e13a4a2b987131a3394 pkgname = cage-vi diff --git a/cage-vi/PKGBUILD b/cage-vi/PKGBUILD index ad82ad2..c68cc30 100644 --- a/cage-vi/PKGBUILD +++ b/cage-vi/PKGBUILD @@ -19,8 +19,8 @@ source=( "https://github.com/Hjdskes/${_pkgname}/releases/download/v${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'bd5b20e.patch' ) -sha256sums=('dfe27fb0c7d43db72d6c82f01e2736580a0791a23ba69d7b56285d08af98ad90' - 'b3608b082c8859433158377ec875ee17ca72f10d61d8827eb5b1c2e01771c0ce') +sha512sums=('55773fac44bf9e98086e53cbc20d17e3aad7046bedfe638ef8f896543388481be3989fede6f950d4f8cb0583f701cbf79617dfa011c7777a7c8b22c9bcddd64f' + 'e30d9596bf12a793e744a170dc859224f62d807bfc1f980ad26044ffe6170bedd1a1e8a9e9321b3bffb93aa3d42a152e67f60dd6735c6e13a4a2b987131a3394') #pkgver() { # cd "${srcdir}/${_pkgname}-${_pkgver}" diff --git a/nginx-mod-traffic-accounting/.SRCINFO b/nginx-mod-traffic-accounting/.SRCINFO index 3f4630c..9d4cf33 100644 --- a/nginx-mod-traffic-accounting/.SRCINFO +++ b/nginx-mod-traffic-accounting/.SRCINFO @@ -11,9 +11,9 @@ pkgbase = nginx-mod-traffic-accounting source = d53a4a6.patch source = server_addr.patch source = succ_collect.patch - sha256sums = 8c99c5313e5c822aa5683691c8a0641499b2fa8c67f9e55652817042e21f5986 - sha256sums = 9bad093fba01d67098d98122202693ffba20feb20668f73e7712d9d9b9915bf1 - sha256sums = e25f170801179e067c7186f1e27fcb3f4273ac5683f6a4962dee821d5eddc8d0 - sha256sums = e9075be4a309948eaddaed2ceb038dcbf1d3aed92fcfe6c068e415ef6461696d + sha512sums = 0df34c3765e18dc5cc5a053d3a17dbee17a686a1f6e76ad057c262741c4e4465c66bcef86e627a19258f836cad5f14745bf046fd396b00960ad79ed20c2a07bb + sha512sums = c99fea97563bcb9463d5f4ef1880fe336ed8a675d964687cf3d70fdc50e8d2b2b7d83efbe3fe8ba35945cfaa83a17a6b9b432dc5daa5fc3228efff568ac6ff44 + sha512sums = 8624b4201e390465ceb0274c8e6241ed9075c9d600661c52ad2d77078f92b19fd011d8fe9878a4453519db465d644f430439eabb438ab7810d126955ee814910 + sha512sums = 1d0993d1f3f00f3682d6717192f95836bbf0f1d113e1fdf8b1437dd3f2ec250e36a687ed6238cc17019a829ce6d59baea7bda79bab154b5cba5b088452b0aec8 pkgname = nginx-mod-traffic-accounting diff --git a/nginx-mod-traffic-accounting/PKGBUILD b/nginx-mod-traffic-accounting/PKGBUILD index 4fc36ee..1b256ea 100644 --- a/nginx-mod-traffic-accounting/PKGBUILD +++ b/nginx-mod-traffic-accounting/PKGBUILD @@ -19,10 +19,10 @@ source=( "server_addr.patch" "succ_collect.patch" ) -sha256sums=('8c99c5313e5c822aa5683691c8a0641499b2fa8c67f9e55652817042e21f5986' - '9bad093fba01d67098d98122202693ffba20feb20668f73e7712d9d9b9915bf1' - 'e25f170801179e067c7186f1e27fcb3f4273ac5683f6a4962dee821d5eddc8d0' - 'e9075be4a309948eaddaed2ceb038dcbf1d3aed92fcfe6c068e415ef6461696d') +sha512sums=('0df34c3765e18dc5cc5a053d3a17dbee17a686a1f6e76ad057c262741c4e4465c66bcef86e627a19258f836cad5f14745bf046fd396b00960ad79ed20c2a07bb' + 'c99fea97563bcb9463d5f4ef1880fe336ed8a675d964687cf3d70fdc50e8d2b2b7d83efbe3fe8ba35945cfaa83a17a6b9b432dc5daa5fc3228efff568ac6ff44' + '8624b4201e390465ceb0274c8e6241ed9075c9d600661c52ad2d77078f92b19fd011d8fe9878a4453519db465d644f430439eabb438ab7810d126955ee814910' + '1d0993d1f3f00f3682d6717192f95836bbf0f1d113e1fdf8b1437dd3f2ec250e36a687ed6238cc17019a829ce6d59baea7bda79bab154b5cba5b088452b0aec8') prepare() { mkdir -p build diff --git a/ntfs2btrfs-git/.SRCINFO b/ntfs2btrfs-git/.SRCINFO index 1bfeed6..54eeda1 100644 --- a/ntfs2btrfs-git/.SRCINFO +++ b/ntfs2btrfs-git/.SRCINFO @@ -15,6 +15,6 @@ pkgbase = ntfs2btrfs-git provides = ntfs2btrfs conflicts = ntfs2btrfs source = git+https://github.com/maharmstone/ntfs2btrfs.git - sha256sums = SKIP + sha512sums = SKIP pkgname = ntfs2btrfs-git diff --git a/ntfs2btrfs-git/PKGBUILD b/ntfs2btrfs-git/PKGBUILD index e37a8a2..a8065c2 100644 --- a/ntfs2btrfs-git/PKGBUILD +++ b/ntfs2btrfs-git/PKGBUILD @@ -13,7 +13,7 @@ makedepends=('git' 'cmake' 'pkgconf') provides=("${pkgname%-git}") conflicts=("${pkgname%-git}") source=("git+${url}.git") -sha256sums=('SKIP') +sha512sums=('SKIP') pkgver() { cd "${pkgname%-git}" diff --git a/ntfs2btrfs/.SRCINFO b/ntfs2btrfs/.SRCINFO index 0b26e50..4236370 100644 --- a/ntfs2btrfs/.SRCINFO +++ b/ntfs2btrfs/.SRCINFO @@ -12,6 +12,6 @@ pkgbase = ntfs2btrfs depends = lzo depends = zstd source = https://github.com/maharmstone/ntfs2btrfs/archive/20230501/ntfs2btrfs-20230501.tar.gz - sha256sums = 15924a22e9d80e4ca28bf5524708dd8f69d840df1e781a659ce953fee7d90730 + sha512sums = ad10850280f591cbdc169bb8e0b1768f7c4051b3110283c941ab76beb0d2b728d30ac64caecdbe6f90068b2486170ddced0704d741d1469944c58ecf0b168e0a pkgname = ntfs2btrfs diff --git a/ntfs2btrfs/PKGBUILD b/ntfs2btrfs/PKGBUILD index 20c17b0..007957f 100644 --- a/ntfs2btrfs/PKGBUILD +++ b/ntfs2btrfs/PKGBUILD @@ -10,7 +10,7 @@ license=('GPL2') depends=('fmt' 'zlib' 'lzo' 'zstd') makedepends=('cmake' 'pkgconf') source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz") -sha256sums=('15924a22e9d80e4ca28bf5524708dd8f69d840df1e781a659ce953fee7d90730') +sha512sums=('ad10850280f591cbdc169bb8e0b1768f7c4051b3110283c941ab76beb0d2b728d30ac64caecdbe6f90068b2486170ddced0704d741d1469944c58ecf0b168e0a') build() { cmake -B build -S "$pkgname-$pkgver" \ From 5d935954812b5004750ea41385585c6a8636772e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 3 Dec 2023 22:57:37 +0100 Subject: [PATCH 616/971] Initial upload: lib32-amdvlk-2023q3.3 2023.Q3.3-1 --- lib32-amdvlk-2023q3.3/.SRCINFO | 28 +++++++++++++ lib32-amdvlk-2023q3.3/PKGBUILD | 72 ++++++++++++++++++++++++++++++++++ 2 files changed, 100 insertions(+) create mode 100644 lib32-amdvlk-2023q3.3/.SRCINFO create mode 100644 lib32-amdvlk-2023q3.3/PKGBUILD diff --git a/lib32-amdvlk-2023q3.3/.SRCINFO b/lib32-amdvlk-2023q3.3/.SRCINFO new file mode 100644 index 0000000..bfd7b22 --- /dev/null +++ b/lib32-amdvlk-2023q3.3/.SRCINFO @@ -0,0 +1,28 @@ +pkgbase = lib32-amdvlk-2023q3.3 + pkgdesc = AMD's standalone Vulkan driver for Pre-GFX10 GPUs (Vega, Polaris) + pkgver = 2023.Q3.3 + pkgrel = 1 + url = https://github.com/GPUOpen-Drivers + arch = x86_64 + license = MIT + makedepends = perl-xml-xpath + makedepends = python + makedepends = lib32-wayland + makedepends = lib32-libxrandr + makedepends = xorg-server-devel + makedepends = cmake + makedepends = ninja + makedepends = git + depends = lib32-zstd + provides = lib32-amdvlk + provides = lib32-vulkan-driver + conflicts = lib32-amdvlk + options = !lto + source = https://github.com/GPUOpen-Drivers/AMDVLK/archive/v-2023.Q3.3.tar.gz + sha512sums = 19e799030daee33d516f1276e08cd598a8ea7f8341b3955bda31b8576459486dbd3401d33670bfabb1872341025716e9610a8e9c4072a07a206eac90bd0f6ace + +pkgname = lib32-amdvlk-2023q3.3 + depends = lib32-glibc + depends = lib32-gcc-libs + depends = lib32-zlib + depends = lib32-zstd diff --git a/lib32-amdvlk-2023q3.3/PKGBUILD b/lib32-amdvlk-2023q3.3/PKGBUILD new file mode 100644 index 0000000..261560b --- /dev/null +++ b/lib32-amdvlk-2023q3.3/PKGBUILD @@ -0,0 +1,72 @@ +# Maintainer: Manuel Hüsers +# Contributor: Laurent Carlier +# Contributor: lod + +pkgname=lib32-amdvlk-2023q3.3 +_pkgname=lib32-amdvlk +pkgver=2023.Q3.3 +pkgrel=1 +pkgdesc="AMD's standalone Vulkan driver for Pre-GFX10 GPUs (Vega, Polaris)" +arch=('x86_64') +url="https://github.com/GPUOpen-Drivers" +license=('MIT') +provides=("${_pkgname}" 'lib32-vulkan-driver') +conflicts=("${_pkgname}") +depends=('lib32-zstd') +makedepends=('perl-xml-xpath' 'python' 'lib32-wayland' 'lib32-libxrandr' 'xorg-server-devel' 'cmake' 'ninja' 'git') +options=('!lto') +source=("https://github.com/GPUOpen-Drivers/AMDVLK/archive/v-${pkgver}.tar.gz") +sha512sums=('19e799030daee33d516f1276e08cd598a8ea7f8341b3955bda31b8576459486dbd3401d33670bfabb1872341025716e9610a8e9c4072a07a206eac90bd0f6ace') + +prepare() { + local nrepos path name revision + + nrepos=$(xpath -q -e //project AMDVLK-v-${pkgver}/default.xml | wc -l) + + while (($nrepos>0)) + do + path=$(xpath -q -e //project[$nrepos]/@path AMDVLK-v-${pkgver}/default.xml | sed 's/ path="drivers\/\(.*\)"/\1/g') + name=$(xpath -q -e //project[$nrepos]/@name AMDVLK-v-${pkgver}/default.xml | sed 's/ name="\(.*\)"/\1/g') + revision=$(xpath -q -e //project[$nrepos]/@revision AMDVLK-v-${pkgver}/default.xml | sed 's/ revision="\(.*\)"/\1/g') + git clone --recurse-submodules https://github.com/GPUOpen-Drivers/$name $path + pushd $path + git checkout $revision + git submodule update + popd + (( nrepos-- )) + done +} + +build() { + export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" + + cd ${srcdir}/xgl + cmake -H. -Bbuilds/Release \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_C_FLAGS=-m32 \ + -DCMAKE_CXX_FLAGS=-m32 \ + -DLLVM_TARGET_ARCH:STRING=i686 \ + -DLLVM_DEFAULT_TARGET_TRIPLE="i686-pc-linux-gnu" \ + -DBUILD_WAYLAND_SUPPORT=On \ + -DVKI_RAY_TRACING=Off \ + -G Ninja + + ninja -C builds/Release +} + +package() { + depends=('lib32-glibc' 'lib32-gcc-libs' 'lib32-zlib' 'lib32-zstd') + + install -m755 -d "${pkgdir}"/usr/lib32 + install -m755 -d "${pkgdir}"/usr/share/vulkan/icd.d + install -m755 -d "${pkgdir}"/usr/share/vulkan/implicit_layer.d + install -m755 -d "${pkgdir}"/usr/share/licenses/${pkgname} + + install xgl/builds/Release/icd/amdvlk32.so "${pkgdir}"/usr/lib32/ + install xgl/builds/Release/icd/amd_icd32.json "${pkgdir}"/usr/share/vulkan/icd.d/ + install xgl/builds/Release/icd/amd_icd32.json "${pkgdir}"/usr/share/vulkan/implicit_layer.d/ + install AMDVLK-v-${pkgver}/LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/ + + sed -i "s/\/lib/\/lib32/g" "${pkgdir}"/usr/share/vulkan/icd.d/amd_icd32.json + sed -i "s/\/lib/\/lib32/g" "${pkgdir}"/usr/share/vulkan/implicit_layer.d/amd_icd32.json +} From 524ae9ecb341fc5df94054e2b9b317cd9bd74c4a Mon Sep 17 00:00:00 2001 From: Joseph DiGiovanni Date: Tue, 5 Dec 2023 00:57:34 -0500 Subject: [PATCH 617/971] minor pkgbuild consistency changes --- PKGBUILD | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 7a7011d..1bee8e7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,15 +1,15 @@ -# Maintainer: jdigi78 +# Maintainer: jdigi78 pkgname=rcedit-bin pkgver=2.0.0 pkgrel=1 -pkgdesc='Command line tool to edit resources of exe files.' +pkgdesc='Command line tool to edit resources of windows exe files' arch=('any') url='https://github.com/electron/rcedit/' license=('MIT') depends=('wine') -source=("https://github.com/electron/rcedit/releases/download/v${pkgver}/rcedit-x64.exe" +source=("https://github.com/electron/rcedit/releases/download/v$pkgver/rcedit-x64.exe" "https://raw.githubusercontent.com/electron/rcedit/b807b34a644c86c0b0d89c7f073967e79202731a/LICENSE" "rcedit") @@ -18,7 +18,7 @@ sha256sums=('3e7801db1a5edbec91b49a24a094aad776cb4515488ea5a4ca2289c400eade2a' '4d42d20aafe098f9403db50ab804070c9710d57f07462eef98ee5a77976e2d17') package() { - install -Dm755 "rcedit-x64.exe" "${pkgdir}/opt/rcedit/rcedit-x64.exe" + install -Dm755 "rcedit-x64.exe" "$pkgdir/opt/rcedit/rcedit-x64.exe" install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" - install -Dm755 "rcedit" "${pkgdir}/usr/bin/rcedit" + install -Dm755 "rcedit" "$pkgdir/usr/bin/rcedit" } From f2a8d65c240a9ba8788c65093c25093158b02cf2 Mon Sep 17 00:00:00 2001 From: Joseph DiGiovanni Date: Tue, 5 Dec 2023 00:59:49 -0500 Subject: [PATCH 618/971] update srcinfo --- .SRCINFO | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.SRCINFO b/.SRCINFO index 6a030ff..fd9b18e 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = rcedit-bin - pkgdesc = Command line tool to edit resources of exe files. + pkgdesc = Command line tool to edit resources of windows exe files pkgver = 2.0.0 pkgrel = 1 url = https://github.com/electron/rcedit/ From efa8e9c2285fe0d99da12a788e8d4b55415b796c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 5 Dec 2023 20:29:57 +0100 Subject: [PATCH 619/971] upgpkg: clonezilla-unstable 5.5.18-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index f90e60b..aca133b 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.17 + pkgver = 5.5.18 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.17.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.18.tar.xz source = usrbin.patch - sha512sums = b0aad503dae042ef3a03fe7bf5539cfcfff20faedb499f38fec676be61505514bfd18284614cf2a48892a5a7deecce1d0447d2382909491014003f73218206b8 + sha512sums = c7289516b010abbffbb6d6de41e0dc00492f16ef65bca47bf0af7e54d9e7040c43c21926f292140c49126c51dc90a770712c121732d6576c76d2db48b63be555 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index c3c54c6..9be51f7 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.17 +pkgver=5.5.18 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('b0aad503dae042ef3a03fe7bf5539cfcfff20faedb499f38fec676be61505514bfd18284614cf2a48892a5a7deecce1d0447d2382909491014003f73218206b8' +sha512sums=('c7289516b010abbffbb6d6de41e0dc00492f16ef65bca47bf0af7e54d9e7040c43c21926f292140c49126c51dc90a770712c121732d6576c76d2db48b63be555' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From dbe164ff1fd288390228402c1b1ab8a1268608f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 5 Dec 2023 20:29:57 +0100 Subject: [PATCH 620/971] upgpkg: clonezilla-unstable 5.5.18-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index f90e60b..aca133b 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.17 + pkgver = 5.5.18 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.17.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.18.tar.xz source = usrbin.patch - sha512sums = b0aad503dae042ef3a03fe7bf5539cfcfff20faedb499f38fec676be61505514bfd18284614cf2a48892a5a7deecce1d0447d2382909491014003f73218206b8 + sha512sums = c7289516b010abbffbb6d6de41e0dc00492f16ef65bca47bf0af7e54d9e7040c43c21926f292140c49126c51dc90a770712c121732d6576c76d2db48b63be555 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index c3c54c6..9be51f7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.17 +pkgver=5.5.18 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('b0aad503dae042ef3a03fe7bf5539cfcfff20faedb499f38fec676be61505514bfd18284614cf2a48892a5a7deecce1d0447d2382909491014003f73218206b8' +sha512sums=('c7289516b010abbffbb6d6de41e0dc00492f16ef65bca47bf0af7e54d9e7040c43c21926f292140c49126c51dc90a770712c121732d6576c76d2db48b63be555' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 0a1b550524e53c7ff1cb543efa1862018c41dfb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 5 Dec 2023 21:28:13 +0100 Subject: [PATCH 621/971] upgpkg: discord-electron 0.0.37-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index fc0f23a..27e4e30 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v24) for increased security and performance - pkgver = 0.0.36 + pkgver = 0.0.37 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.36/discord-0.0.36.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.37/discord-0.0.37.tar.gz source = discord-launcher.sh - sha512sums = e72ed0e559ebc8ad24c3aa41011af408aa5d3d1c4561cca3f16345aa3a5e18326017564ff2f4a3c1bf1e84f00333e206557cebad2f483c6a1c71bf48df23546b + sha512sums = 495969155a99364a22fef5d830adec5c03c25ac118d560b1e346fa9190866f9a038c07664124f8f835b77ba4e4d2a268a8eab86dea54274de4904ec374a2c005 sha512sums = 723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 42a28f1..3147662 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -13,7 +13,7 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.36 +pkgver=0.0.37 pkgrel=1 _electronver=24 _electronname="electron${_electronver}" @@ -35,10 +35,10 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('e72ed0e559ebc8ad24c3aa41011af408aa5d3d1c4561cca3f16345aa3a5e18326017564ff2f4a3c1bf1e84f00333e206557cebad2f483c6a1c71bf48df23546b' +sha512sums=('495969155a99364a22fef5d830adec5c03c25ac118d560b1e346fa9190866f9a038c07664124f8f835b77ba4e4d2a268a8eab86dea54274de4904ec374a2c005' '723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5') -_krisp_b2sum='e36c3308b34e96f4c33425bb1d7ac0d8130fa5450c9db2ee3fbdbfa10887ab15f3ec06f9fdbd446553f9224052af0705a0eebfc92b55776a33a9cfdf0c3c53e4' +_krisp_b2sum='189a812d6947da0cc1998de9f4e7f9ed98f145dd0b53261d0cc6c2a9c463a8b978eed0ea92b7c01a861d5ee1a0e503dde7b637b35859b041536f7f2820f11da7' prepare() { # prepare launcher script From 3c85dd9e420de682fecc8f58be764ce43af7611e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 5 Dec 2023 21:28:39 +0100 Subject: [PATCH 622/971] upgpkg: discord-electron-openasar 0.0.37+824-1 upstream release Update to latest OpenAsar commit (no asar changes) --- discord-electron-openasar/.SRCINFO | 8 ++++---- discord-electron-openasar/PKGBUILD | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index cc5b0b4..9a8563c 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v24) for increased security and performance - pkgver = 0.0.36+821 + pkgver = 0.0.37+824 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,10 +21,10 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.36/discord-0.0.36.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.37/discord-0.0.37.tar.gz source = discord-launcher.sh - source = git+https://github.com/goosemod/openasar.git#commit=1c24e099dddc6830876121fac27649765e2cb622 - sha512sums = e72ed0e559ebc8ad24c3aa41011af408aa5d3d1c4561cca3f16345aa3a5e18326017564ff2f4a3c1bf1e84f00333e206557cebad2f483c6a1c71bf48df23546b + source = git+https://github.com/goosemod/openasar.git#commit=9f68f8dcb61a5c0c469930aab504dd03aa05f060 + sha512sums = 495969155a99364a22fef5d830adec5c03c25ac118d560b1e346fa9190866f9a038c07664124f8f835b77ba4e4d2a268a8eab86dea54274de4904ec374a2c005 sha512sums = 723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5 sha512sums = SKIP diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index c668d80..ccaf645 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -6,7 +6,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.36+821 +pkgver=0.0.37+824 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=24 @@ -29,12 +29,12 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' - "git+https://github.com/goosemod/openasar.git#commit=1c24e099dddc6830876121fac27649765e2cb622") -sha512sums=('e72ed0e559ebc8ad24c3aa41011af408aa5d3d1c4561cca3f16345aa3a5e18326017564ff2f4a3c1bf1e84f00333e206557cebad2f483c6a1c71bf48df23546b' + "git+https://github.com/goosemod/openasar.git#commit=9f68f8dcb61a5c0c469930aab504dd03aa05f060") +sha512sums=('495969155a99364a22fef5d830adec5c03c25ac118d560b1e346fa9190866f9a038c07664124f8f835b77ba4e4d2a268a8eab86dea54274de4904ec374a2c005' '723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5' 'SKIP') -_krisp_b2sum='e36c3308b34e96f4c33425bb1d7ac0d8130fa5450c9db2ee3fbdbfa10887ab15f3ec06f9fdbd446553f9224052af0705a0eebfc92b55776a33a9cfdf0c3c53e4' +_krisp_b2sum='189a812d6947da0cc1998de9f4e7f9ed98f145dd0b53261d0cc6c2a9c463a8b978eed0ea92b7c01a861d5ee1a0e503dde7b637b35859b041536f7f2820f11da7' # just in case I get the version wrong pkgver() { From fcde69e24cd9c0431f8c4086efc6e0b7f0c09f33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 6 Dec 2023 22:36:28 +0100 Subject: [PATCH 623/971] upgpkg: gvisor-bin 20231204.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index 9ca0d21..bc463b3 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20231106.0 + pkgver = 20231204.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20231106.0::https://storage.googleapis.com/gvisor/releases/release/20231106.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20231106.0::https://storage.googleapis.com/gvisor/releases/release/20231106.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = ff9a8e04add827496936b6f8d7d673ed88a29c27b21c50a8232674b7a86a2e426a42f71fd6c27425e1401d60a7afa0e684c8ac92d990f367b5991f84bce85d25 - sha512sums_x86_64 = f304dbff8992645adcf0f598cbf58117b18f23bdcba9b7f121c2d0d53e45160007759e1f89d35a5639053166a001ea9c6400a084949b720d72d342dbff437c95 - source_aarch64 = runsc-aarch64-20231106.0::https://storage.googleapis.com/gvisor/releases/release/20231106.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20231106.0::https://storage.googleapis.com/gvisor/releases/release/20231106.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 1d84f118c9e7ff53071cea3b883bf82b5af63dff67f539358443747681f668f9ea2808e720b297dc137574a503bfd8e27227077a98a396bcb0007497cac5bec8 - sha512sums_aarch64 = 0073d46f92a2b66ba9b9a79313a9e370d534ee9614d02181395741ae5f793600540e765913599866ecce0252f411d6b77429ccd2e39a1d4fd289801fccf0978b + source_x86_64 = runsc-x86_64-20231204.0::https://storage.googleapis.com/gvisor/releases/release/20231204.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20231204.0::https://storage.googleapis.com/gvisor/releases/release/20231204.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = 916cf0accb069eac8ab22a6ba69e79bcc894e63d36a039ec3a1c41b52714c479c2f88b7f067b086c1491a6db5273dc230bd2c7c4506d3b3f0fdcf21b05fde75e + sha512sums_x86_64 = e5c4f8badd3217782a4ed96cdea81c9fcbdf79a64cf8b3ad64d362c6a5755fa51ceb77219c4b0f0a29674026ea11615605e54eeef774e99220a8156eb1adcb6b + source_aarch64 = runsc-aarch64-20231204.0::https://storage.googleapis.com/gvisor/releases/release/20231204.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20231204.0::https://storage.googleapis.com/gvisor/releases/release/20231204.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = eab2e0ea8fbda9e4d3c15f17f24015a117af677e51b42d2f030c7b8a81c38a5f1d984113961c8789508bb14046975da9c689475b05e2d6633b7296b1bffd9038 + sha512sums_aarch64 = b380ed0aa1d420d041286d9ad622673ea397592fe320542521b7e03c776f8902b9a78059f5b741d68beb20ea9d5b6f195f8123aa5d6c011933d4456f09a4ed3f pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index bcc7f72..8456052 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20231106.0 +pkgver=20231204.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('ff9a8e04add827496936b6f8d7d673ed88a29c27b21c50a8232674b7a86a2e426a42f71fd6c27425e1401d60a7afa0e684c8ac92d990f367b5991f84bce85d25' - 'f304dbff8992645adcf0f598cbf58117b18f23bdcba9b7f121c2d0d53e45160007759e1f89d35a5639053166a001ea9c6400a084949b720d72d342dbff437c95') -sha512sums_aarch64=('1d84f118c9e7ff53071cea3b883bf82b5af63dff67f539358443747681f668f9ea2808e720b297dc137574a503bfd8e27227077a98a396bcb0007497cac5bec8' - '0073d46f92a2b66ba9b9a79313a9e370d534ee9614d02181395741ae5f793600540e765913599866ecce0252f411d6b77429ccd2e39a1d4fd289801fccf0978b') +sha512sums_x86_64=('916cf0accb069eac8ab22a6ba69e79bcc894e63d36a039ec3a1c41b52714c479c2f88b7f067b086c1491a6db5273dc230bd2c7c4506d3b3f0fdcf21b05fde75e' + 'e5c4f8badd3217782a4ed96cdea81c9fcbdf79a64cf8b3ad64d362c6a5755fa51ceb77219c4b0f0a29674026ea11615605e54eeef774e99220a8156eb1adcb6b') +sha512sums_aarch64=('eab2e0ea8fbda9e4d3c15f17f24015a117af677e51b42d2f030c7b8a81c38a5f1d984113961c8789508bb14046975da9c689475b05e2d6633b7296b1bffd9038' + 'b380ed0aa1d420d041286d9ad622673ea397592fe320542521b7e03c776f8902b9a78059f5b741d68beb20ea9d5b6f195f8123aa5d6c011933d4456f09a4ed3f') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From 79e98d992c5e71e5de4ce370dfb65f0e3fa0a154 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 6 Dec 2023 22:36:53 +0100 Subject: [PATCH 624/971] upgpkg: gvisor-git 20231204.0-1 upstream release --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index 113968e..c5cf004 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20231106.0 + pkgver = 20231204.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index 3ce3147..1af0f50 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20231106.0 +pkgver=20231204.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From af44a9bf6ba56e0da41bb5bbecfcb50a0ce4d74d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 11 Dec 2023 22:57:37 +0100 Subject: [PATCH 625/971] upgpkg: firefox-syncstorage 0.14.4-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index b86befc..3284f83 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.14.3 + pkgver = 0.14.4 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -21,9 +21,9 @@ pkgbase = firefox-syncstorage optdepends = mysql: for use with a local database server options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.14.3/syncstorage-rs-0.14.3.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.14.4/syncstorage-rs-0.14.4.tar.gz source = firefox-syncstorage.service - sha512sums = bd30e696c6974cbedb61648fb3d63baea06209913f899fa5c8f8a3c771089959749aba5503374ec804133172cfdd344f02037dfb9a61f01aa150dbfb0d97cfe3 + sha512sums = 3205a1a159db51e73ae9252c41ad16dafcaf8ee0bcb243750335b322ce30d5cf9ffde37f90a5b78d7b123bef5441ff20dfd4c90a859f539ec1f312a08c844059 sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index 4b4deed..554ef88 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.14.3 +pkgver=0.14.4 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -18,7 +18,7 @@ options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha512sums=('bd30e696c6974cbedb61648fb3d63baea06209913f899fa5c8f8a3c771089959749aba5503374ec804133172cfdd344f02037dfb9a61f01aa150dbfb0d97cfe3' +sha512sums=('3205a1a159db51e73ae9252c41ad16dafcaf8ee0bcb243750335b322ce30d5cf9ffde37f90a5b78d7b123bef5441ff20dfd4c90a859f539ec1f312a08c844059' '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") From 7d151dddadc34e0b8bd3c119d2734b3fa9b64325 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 12 Dec 2023 23:46:26 +0100 Subject: [PATCH 626/971] upgpkg: discord-electron 0.0.38-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 27e4e30..5ee5d02 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v24) for increased security and performance - pkgver = 0.0.37 + pkgver = 0.0.38 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.37/discord-0.0.37.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.38/discord-0.0.38.tar.gz source = discord-launcher.sh - sha512sums = 495969155a99364a22fef5d830adec5c03c25ac118d560b1e346fa9190866f9a038c07664124f8f835b77ba4e4d2a268a8eab86dea54274de4904ec374a2c005 + sha512sums = b526231453bd2eabacd8fd353a8cd33fbc2a3992f5a29a4f21dd32ad79a4caa16cda21652b7d7b261b3a0bf6276a8d443e75d4deca5f47fc25540dbe23996598 sha512sums = 723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 3147662..54018ef 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -13,7 +13,7 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.37 +pkgver=0.0.38 pkgrel=1 _electronver=24 _electronname="electron${_electronver}" @@ -35,7 +35,7 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('495969155a99364a22fef5d830adec5c03c25ac118d560b1e346fa9190866f9a038c07664124f8f835b77ba4e4d2a268a8eab86dea54274de4904ec374a2c005' +sha512sums=('b526231453bd2eabacd8fd353a8cd33fbc2a3992f5a29a4f21dd32ad79a4caa16cda21652b7d7b261b3a0bf6276a8d443e75d4deca5f47fc25540dbe23996598' '723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5') _krisp_b2sum='189a812d6947da0cc1998de9f4e7f9ed98f145dd0b53261d0cc6c2a9c463a8b978eed0ea92b7c01a861d5ee1a0e503dde7b637b35859b041536f7f2820f11da7' From 714ad61a204201af6e283c6bef00b6a30dbbae5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 12 Dec 2023 23:46:43 +0100 Subject: [PATCH 627/971] upgpkg: discord-electron-openasar 0.0.38+824-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 9a8563c..9f465d4 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v24) for increased security and performance - pkgver = 0.0.37+824 + pkgver = 0.0.38+824 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,10 +21,10 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.37/discord-0.0.37.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.38/discord-0.0.38.tar.gz source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=9f68f8dcb61a5c0c469930aab504dd03aa05f060 - sha512sums = 495969155a99364a22fef5d830adec5c03c25ac118d560b1e346fa9190866f9a038c07664124f8f835b77ba4e4d2a268a8eab86dea54274de4904ec374a2c005 + sha512sums = b526231453bd2eabacd8fd353a8cd33fbc2a3992f5a29a4f21dd32ad79a4caa16cda21652b7d7b261b3a0bf6276a8d443e75d4deca5f47fc25540dbe23996598 sha512sums = 723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5 sha512sums = SKIP diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index ccaf645..1bc9246 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -6,7 +6,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.37+824 +pkgver=0.0.38+824 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=24 @@ -30,7 +30,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=9f68f8dcb61a5c0c469930aab504dd03aa05f060") -sha512sums=('495969155a99364a22fef5d830adec5c03c25ac118d560b1e346fa9190866f9a038c07664124f8f835b77ba4e4d2a268a8eab86dea54274de4904ec374a2c005' +sha512sums=('b526231453bd2eabacd8fd353a8cd33fbc2a3992f5a29a4f21dd32ad79a4caa16cda21652b7d7b261b3a0bf6276a8d443e75d4deca5f47fc25540dbe23996598' '723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5' 'SKIP') From 293816424143b5b85485a70a8ba03eb6d718d664 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 18 Dec 2023 12:27:44 +0100 Subject: [PATCH 628/971] upgpkg: clonezilla-unstable 5.5.20-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index aca133b..f381d32 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.18 + pkgver = 5.5.20 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.18.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.20.tar.xz source = usrbin.patch - sha512sums = c7289516b010abbffbb6d6de41e0dc00492f16ef65bca47bf0af7e54d9e7040c43c21926f292140c49126c51dc90a770712c121732d6576c76d2db48b63be555 + sha512sums = e49fd9a1a4ff1d777f1c710a856491a425ab08e5ff2cd1937146c625461c61e942bdf69634c0dbd44e2ea808fa82d91bcd195ff57cdbb4804fcfd34cadf709b6 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 9be51f7..7087a95 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.18 +pkgver=5.5.20 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('c7289516b010abbffbb6d6de41e0dc00492f16ef65bca47bf0af7e54d9e7040c43c21926f292140c49126c51dc90a770712c121732d6576c76d2db48b63be555' +sha512sums=('e49fd9a1a4ff1d777f1c710a856491a425ab08e5ff2cd1937146c625461c61e942bdf69634c0dbd44e2ea808fa82d91bcd195ff57cdbb4804fcfd34cadf709b6' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 7dc6841da544264c369312eac04ebcd4c1f3ce29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 18 Dec 2023 12:27:44 +0100 Subject: [PATCH 629/971] upgpkg: clonezilla-unstable 5.5.20-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index aca133b..f381d32 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.18 + pkgver = 5.5.20 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.18.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.20.tar.xz source = usrbin.patch - sha512sums = c7289516b010abbffbb6d6de41e0dc00492f16ef65bca47bf0af7e54d9e7040c43c21926f292140c49126c51dc90a770712c121732d6576c76d2db48b63be555 + sha512sums = e49fd9a1a4ff1d777f1c710a856491a425ab08e5ff2cd1937146c625461c61e942bdf69634c0dbd44e2ea808fa82d91bcd195ff57cdbb4804fcfd34cadf709b6 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 9be51f7..7087a95 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.18 +pkgver=5.5.20 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('c7289516b010abbffbb6d6de41e0dc00492f16ef65bca47bf0af7e54d9e7040c43c21926f292140c49126c51dc90a770712c121732d6576c76d2db48b63be555' +sha512sums=('e49fd9a1a4ff1d777f1c710a856491a425ab08e5ff2cd1937146c625461c61e942bdf69634c0dbd44e2ea808fa82d91bcd195ff57cdbb4804fcfd34cadf709b6' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From be400f3ecd941375af1f5458cd91c63418e5f1c7 Mon Sep 17 00:00:00 2001 From: Joseph DiGiovanni Date: Tue, 19 Dec 2023 02:02:59 -0500 Subject: [PATCH 630/971] Update launch script Hide wine-mono install message --- .SRCINFO | 7 +++++-- PKGBUILD | 19 +++++++++++-------- rcedit | 1 + 3 files changed, 17 insertions(+), 10 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index fd9b18e..c3c9ec3 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,16 +1,19 @@ pkgbase = rcedit-bin pkgdesc = Command line tool to edit resources of windows exe files pkgver = 2.0.0 - pkgrel = 1 + pkgrel = 2 url = https://github.com/electron/rcedit/ arch = any license = MIT depends = wine + provides = rcedit + conflicts = rcedit + conflicts = rcedit-git source = https://github.com/electron/rcedit/releases/download/v2.0.0/rcedit-x64.exe source = https://raw.githubusercontent.com/electron/rcedit/b807b34a644c86c0b0d89c7f073967e79202731a/LICENSE source = rcedit sha256sums = 3e7801db1a5edbec91b49a24a094aad776cb4515488ea5a4ca2289c400eade2a sha256sums = 224fcc506ef97afd088b487edab374abcad7e3d4de55fb8cce4f04328397213f - sha256sums = 4d42d20aafe098f9403db50ab804070c9710d57f07462eef98ee5a77976e2d17 + sha256sums = 51ff67860d12a15d52794cd2fd1d1d8bd751ad30cc111890e940f6dd4c7cb84b pkgname = rcedit-bin diff --git a/PKGBUILD b/PKGBUILD index 1bee8e7..6e642da 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,12 +2,7 @@ pkgname=rcedit-bin pkgver=2.0.0 -pkgrel=1 -pkgdesc='Command line tool to edit resources of windows exe files' -arch=('any') -url='https://github.com/electron/rcedit/' -license=('MIT') -depends=('wine') +pkgrel=2 source=("https://github.com/electron/rcedit/releases/download/v$pkgver/rcedit-x64.exe" "https://raw.githubusercontent.com/electron/rcedit/b807b34a644c86c0b0d89c7f073967e79202731a/LICENSE" @@ -15,10 +10,18 @@ source=("https://github.com/electron/rcedit/releases/download/v$pkgver/rcedit-x6 sha256sums=('3e7801db1a5edbec91b49a24a094aad776cb4515488ea5a4ca2289c400eade2a' '224fcc506ef97afd088b487edab374abcad7e3d4de55fb8cce4f04328397213f' - '4d42d20aafe098f9403db50ab804070c9710d57f07462eef98ee5a77976e2d17') + '51ff67860d12a15d52794cd2fd1d1d8bd751ad30cc111890e940f6dd4c7cb84b') + +pkgdesc='Command line tool to edit resources of windows exe files' +arch=('any') +url='https://github.com/electron/rcedit/' +license=('MIT') +depends=('wine') +provides=('rcedit') +conflicts=('rcedit' 'rcedit-git') package() { install -Dm755 "rcedit-x64.exe" "$pkgdir/opt/rcedit/rcedit-x64.exe" - install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" install -Dm755 "rcedit" "$pkgdir/usr/bin/rcedit" + install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } diff --git a/rcedit b/rcedit index d1e527c..e967df7 100755 --- a/rcedit +++ b/rcedit @@ -1,3 +1,4 @@ #!/bin/sh export WINEDEBUG=-all +export WINEDLLOVERRIDES="mscoree=" exec wine /opt/rcedit/rcedit-x64.exe "$@" From 61e7eacd64b897473a5a2d70e1539ddf78b17e21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 19 Dec 2023 21:47:13 +0100 Subject: [PATCH 631/971] upgpkg: discord-electron 0.0.39-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 5ee5d02..25317d8 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v24) for increased security and performance - pkgver = 0.0.38 + pkgver = 0.0.39 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.38/discord-0.0.38.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.39/discord-0.0.39.tar.gz source = discord-launcher.sh - sha512sums = b526231453bd2eabacd8fd353a8cd33fbc2a3992f5a29a4f21dd32ad79a4caa16cda21652b7d7b261b3a0bf6276a8d443e75d4deca5f47fc25540dbe23996598 + sha512sums = 9f18aea5d82f5db4efa9db9babbc440b24e47dc80df18df5cc58d99d677f1c0863df21ed96d69896785f8fbe0dc0ff1f7317398b8f39606289da79f5a38074f1 sha512sums = 723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 54018ef..a9bcffd 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -13,7 +13,7 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.38 +pkgver=0.0.39 pkgrel=1 _electronver=24 _electronname="electron${_electronver}" @@ -35,10 +35,10 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('b526231453bd2eabacd8fd353a8cd33fbc2a3992f5a29a4f21dd32ad79a4caa16cda21652b7d7b261b3a0bf6276a8d443e75d4deca5f47fc25540dbe23996598' +sha512sums=('9f18aea5d82f5db4efa9db9babbc440b24e47dc80df18df5cc58d99d677f1c0863df21ed96d69896785f8fbe0dc0ff1f7317398b8f39606289da79f5a38074f1' '723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5') -_krisp_b2sum='189a812d6947da0cc1998de9f4e7f9ed98f145dd0b53261d0cc6c2a9c463a8b978eed0ea92b7c01a861d5ee1a0e503dde7b637b35859b041536f7f2820f11da7' +_krisp_b2sum='310e3d5ad2311ceace91d20004a677c1a1e49fa1cd5c0458ee5bdb31c01c49df68cac625e66dadcaddf90c67568cde22c2cec3c0b6bca8385225141a8d8d53c1' prepare() { # prepare launcher script From 1161de6464827c6b012fab727f12aed13cbef8ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 19 Dec 2023 21:47:42 +0100 Subject: [PATCH 632/971] upgpkg: discord-electron-openasar 0.0.39+824-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 9f465d4..e706bd4 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v24) for increased security and performance - pkgver = 0.0.38+824 + pkgver = 0.0.39+824 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,10 +21,10 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.38/discord-0.0.38.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.39/discord-0.0.39.tar.gz source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=9f68f8dcb61a5c0c469930aab504dd03aa05f060 - sha512sums = b526231453bd2eabacd8fd353a8cd33fbc2a3992f5a29a4f21dd32ad79a4caa16cda21652b7d7b261b3a0bf6276a8d443e75d4deca5f47fc25540dbe23996598 + sha512sums = 9f18aea5d82f5db4efa9db9babbc440b24e47dc80df18df5cc58d99d677f1c0863df21ed96d69896785f8fbe0dc0ff1f7317398b8f39606289da79f5a38074f1 sha512sums = 723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5 sha512sums = SKIP diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 1bc9246..be62f40 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -6,7 +6,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.38+824 +pkgver=0.0.39+824 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=24 @@ -30,11 +30,11 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=9f68f8dcb61a5c0c469930aab504dd03aa05f060") -sha512sums=('b526231453bd2eabacd8fd353a8cd33fbc2a3992f5a29a4f21dd32ad79a4caa16cda21652b7d7b261b3a0bf6276a8d443e75d4deca5f47fc25540dbe23996598' +sha512sums=('9f18aea5d82f5db4efa9db9babbc440b24e47dc80df18df5cc58d99d677f1c0863df21ed96d69896785f8fbe0dc0ff1f7317398b8f39606289da79f5a38074f1' '723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5' 'SKIP') -_krisp_b2sum='189a812d6947da0cc1998de9f4e7f9ed98f145dd0b53261d0cc6c2a9c463a8b978eed0ea92b7c01a861d5ee1a0e503dde7b637b35859b041536f7f2820f11da7' +_krisp_b2sum='310e3d5ad2311ceace91d20004a677c1a1e49fa1cd5c0458ee5bdb31c01c49df68cac625e66dadcaddf90c67568cde22c2cec3c0b6bca8385225141a8d8d53c1' # just in case I get the version wrong pkgver() { From da5e91ba5e6a939f5d508d368aad5632b6add82a Mon Sep 17 00:00:00 2001 From: Joseph DiGiovanni Date: Thu, 21 Dec 2023 15:09:50 -0500 Subject: [PATCH 633/971] Update launch script Hide all wine windows --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- rcedit | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index c3c9ec3..2333d0a 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = rcedit-bin pkgdesc = Command line tool to edit resources of windows exe files pkgver = 2.0.0 - pkgrel = 2 + pkgrel = 3 url = https://github.com/electron/rcedit/ arch = any license = MIT @@ -14,6 +14,6 @@ pkgbase = rcedit-bin source = rcedit sha256sums = 3e7801db1a5edbec91b49a24a094aad776cb4515488ea5a4ca2289c400eade2a sha256sums = 224fcc506ef97afd088b487edab374abcad7e3d4de55fb8cce4f04328397213f - sha256sums = 51ff67860d12a15d52794cd2fd1d1d8bd751ad30cc111890e940f6dd4c7cb84b + sha256sums = e599937ebd901f89899794ed78f1ca8fc6348efd996600f6c074cf39ef3a625e pkgname = rcedit-bin diff --git a/PKGBUILD b/PKGBUILD index 6e642da..56e0b2a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=rcedit-bin pkgver=2.0.0 -pkgrel=2 +pkgrel=3 source=("https://github.com/electron/rcedit/releases/download/v$pkgver/rcedit-x64.exe" "https://raw.githubusercontent.com/electron/rcedit/b807b34a644c86c0b0d89c7f073967e79202731a/LICENSE" @@ -10,7 +10,7 @@ source=("https://github.com/electron/rcedit/releases/download/v$pkgver/rcedit-x6 sha256sums=('3e7801db1a5edbec91b49a24a094aad776cb4515488ea5a4ca2289c400eade2a' '224fcc506ef97afd088b487edab374abcad7e3d4de55fb8cce4f04328397213f' - '51ff67860d12a15d52794cd2fd1d1d8bd751ad30cc111890e940f6dd4c7cb84b') + 'e599937ebd901f89899794ed78f1ca8fc6348efd996600f6c074cf39ef3a625e') pkgdesc='Command line tool to edit resources of windows exe files' arch=('any') diff --git a/rcedit b/rcedit index e967df7..32aa13a 100755 --- a/rcedit +++ b/rcedit @@ -1,4 +1,4 @@ #!/bin/sh export WINEDEBUG=-all -export WINEDLLOVERRIDES="mscoree=" +export DISPLAY="" exec wine /opt/rcedit/rcedit-x64.exe "$@" From 1f7fac9ee7d236a61a4cb3a7d111a2925762d9f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 30 Dec 2023 09:56:09 +0100 Subject: [PATCH 634/971] upgpkg: obs-vkcapture 1.4.8-1 upstream release --- obs-vkcapture/.SRCINFO | 6 +++--- obs-vkcapture/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/obs-vkcapture/.SRCINFO b/obs-vkcapture/.SRCINFO index 85013bf..eb80e5f 100644 --- a/obs-vkcapture/.SRCINFO +++ b/obs-vkcapture/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = obs-vkcapture - pkgver = 1.4.7 + pkgver = 1.4.8 pkgrel = 1 url = https://github.com/nowrep/obs-vkcapture arch = x86_64 @@ -15,8 +15,8 @@ pkgbase = obs-vkcapture depends = libgl depends = libegl depends = obs-studio>=27 - source = https://github.com/nowrep/obs-vkcapture/archive/v1.4.7/obs-vkcapture-1.4.7.tar.gz - sha512sums = 6ac1b25feb5a9bc0d57723caf073ca7b1758ab6d8b5a6ab3a3070b14612a27b5892e5a165544069a4eb744116bb4abcbc999291f4331ce865c019687996e3f51 + source = https://github.com/nowrep/obs-vkcapture/archive/v1.4.8/obs-vkcapture-1.4.8.tar.gz + sha512sums = a46149132143bfddc3cbfd6d97427b6f055efd4bc83989672446fa94eee27b1b56f3e810bd62e4725a7028d33d995a20e3b0a03f03c457e4c3d738e414c8f421 pkgname = obs-vkcapture pkgdesc = OBS Linux Vulkan/OpenGL game capture diff --git a/obs-vkcapture/PKGBUILD b/obs-vkcapture/PKGBUILD index 27f89cf..962af5f 100644 --- a/obs-vkcapture/PKGBUILD +++ b/obs-vkcapture/PKGBUILD @@ -2,7 +2,7 @@ pkgbase=obs-vkcapture pkgname=("$pkgbase" "lib32-$pkgbase") -pkgver=1.4.7 +pkgver=1.4.8 pkgrel=1 url="https://github.com/nowrep/$pkgbase" license=('GPL2') @@ -10,7 +10,7 @@ arch=('x86_64') depends=('vulkan-icd-loader' 'libgl' 'libegl' 'obs-studio>=27') makedepends=('gcc' 'cmake' 'vulkan-headers' 'lib32-gcc-libs' 'lib32-vulkan-icd-loader' 'lib32-libgl' 'lib32-libegl') source=("https://github.com/nowrep/$pkgbase/archive/v$pkgver/$pkgbase-$pkgver.tar.gz") -sha512sums=('6ac1b25feb5a9bc0d57723caf073ca7b1758ab6d8b5a6ab3a3070b14612a27b5892e5a165544069a4eb744116bb4abcbc999291f4331ce865c019687996e3f51') +sha512sums=('a46149132143bfddc3cbfd6d97427b6f055efd4bc83989672446fa94eee27b1b56f3e810bd62e4725a7028d33d995a20e3b0a03f03c457e4c3d738e414c8f421') build() { cmake -B build -S "$pkgbase-$pkgver" \ From 27a74ff54348e1d9b21a8d10cacd74264f980ac4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 4 Jan 2024 15:07:13 +0100 Subject: [PATCH 635/971] upgpkg: discord-electron 0.0.39-2: update electron * Update Electron version to 27 * Update launch script to require config variable set in order to patch Krisp binary --- discord-electron/.SRCINFO | 8 ++++---- discord-electron/PKGBUILD | 6 +++--- discord-electron/discord-electron.install | 17 +++++++++++++---- discord-electron/discord-launcher.sh | 15 ++++++--------- 4 files changed, 26 insertions(+), 20 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 25317d8..27ae8eb 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron - pkgdesc = Discord using system provided electron (v24) for increased security and performance + pkgdesc = Discord using system provided electron (v27) for increased security and performance pkgver = 0.0.39 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -9,7 +9,7 @@ pkgbase = discord-electron makedepends = asar makedepends = curl makedepends = python-html2text - depends = electron24 + depends = electron27 depends = libxss optdepends = libpulse: Pulseaudio support optdepends = libappindicator-gtk3: Systray indicator support @@ -21,6 +21,6 @@ pkgbase = discord-electron source = https://dl.discordapp.net/apps/linux/0.0.39/discord-0.0.39.tar.gz source = discord-launcher.sh sha512sums = 9f18aea5d82f5db4efa9db9babbc440b24e47dc80df18df5cc58d99d677f1c0863df21ed96d69896785f8fbe0dc0ff1f7317398b8f39606289da79f5a38074f1 - sha512sums = 723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5 + sha512sums = e68467468e9ebfe7aae873442998bda03212598a87d9af1b9ac976fdbafc81eb376e7770dccca6eb943d579f39717a0473fa4f0a46a0c3e436460688827a2dc7 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index a9bcffd..b31630a 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -14,8 +14,8 @@ pkgname=discord-electron _pkgname=discord pkgver=0.0.39 -pkgrel=1 -_electronver=24 +pkgrel=2 +_electronver=27 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" arch=('x86_64') @@ -36,7 +36,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') sha512sums=('9f18aea5d82f5db4efa9db9babbc440b24e47dc80df18df5cc58d99d677f1c0863df21ed96d69896785f8fbe0dc0ff1f7317398b8f39606289da79f5a38074f1' - '723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5') + 'e68467468e9ebfe7aae873442998bda03212598a87d9af1b9ac976fdbafc81eb376e7770dccca6eb943d579f39717a0473fa4f0a46a0c3e436460688827a2dc7') _krisp_b2sum='310e3d5ad2311ceace91d20004a677c1a1e49fa1cd5c0458ee5bdb31c01c49df68cac625e66dadcaddf90c67568cde22c2cec3c0b6bca8385225141a8d8d53c1' diff --git a/discord-electron/discord-electron.install b/discord-electron/discord-electron.install index 3d13381..893fcd9 100644 --- a/discord-electron/discord-electron.install +++ b/discord-electron/discord-electron.install @@ -1,4 +1,12 @@ post_upgrade() { + # return if old package version is greater than or equal to 0.0.39-1... + (( $(vercmp $2 '0.0.39-2') >= 0 )) && return + + cat < In order to patch Krisp noise suppression support set 'PATCH_KRISP=true' + in '~/.config/discord.conf' in addition to having 'rizin' installed. +EOF + # return if old package version is greater than or equal to 0.0.27-5... (( $(vercmp $2 '0.0.27-5') >= 0 )) && return @@ -18,9 +26,10 @@ EOF post_install() { cat < For Krisp noise suppression support consider installing 'rizin'. Restart - your Discord client after installation or update to apply the patch. -==> In case of performance problems consider adding or uncommenting Electron - flags in '~/.config/discord-flags.conf'. +==> For Krisp noise suppression support consider installing 'rizin' and + setting 'PATCH_KRISP=true' in '~/.config/discord.conf'. Restart your + Discord client afterwards to apply the patch. +==> In case of performance problems consider setting additional flags + in '~/.config/discord-flags.conf'. EOF } diff --git a/discord-electron/discord-launcher.sh b/discord-electron/discord-launcher.sh index 1d29967..33d525c 100644 --- a/discord-electron/discord-launcher.sh +++ b/discord-electron/discord-launcher.sh @@ -5,29 +5,26 @@ set -euo pipefail declare -a flags +[[ -r "${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@.conf" ]] && source "${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@.conf" + flags_file="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@-flags.conf" krisp_bin="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@/@PKGVER@/modules/@PKGNAME@_krisp/@PKGNAME@_krisp.node" krisp_b2=@KRISPB2@ -if hash rizin &> /dev/null; then +if hash rizin &> /dev/null && [[ "${PATCH_KRISP}" == true ]]; then # Patch Krisp binary to ignore signature check - if [[ -f "${krisp_bin}" && $(b2sum "${krisp_bin}" | head -c 128) == $krisp_b2 ]]; then + if [[ -w "${krisp_bin}" && $(b2sum "${krisp_bin}" | head -c 128) == $krisp_b2 ]]; then addr=$(rz-find -x '4881ec00010000' "${krisp_bin}" | head -n1) rizin -q -w -c "s $addr + 0x30 ; wao nop" "${krisp_bin}" &> /dev/null fi fi -if [[ -f "${flags_file}" ]]; then +if [[ -w "${flags_file}" ]]; then + # Replacing because old flag does not work if grep -q '\--ignore-gpu-blacklist' "${flags_file}"; then sed -i "s|--ignore-gpu-blacklist|--ignore-gpu-blocklist|" "${flags_file}" fi mapfile -t < "${flags_file}" -else - cat > "${flags_file}" < Date: Thu, 4 Jan 2024 15:07:27 +0100 Subject: [PATCH 636/971] upgpkg: discord-electron-openasar 0.0.39+824-2: update electron * Update Electron version to 28 * Update launch script to require config variable set in order to patch Krisp binary --- discord-electron-openasar/.SRCINFO | 8 ++++---- discord-electron-openasar/PKGBUILD | 6 +++--- .../discord-electron-openasar.install | 13 +++++++++++-- discord-electron-openasar/discord-launcher.sh | 15 ++++++--------- 4 files changed, 24 insertions(+), 18 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index e706bd4..fffb29f 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar - pkgdesc = Discord packaged with OpenAsar using system provided electron (v24) for increased security and performance + pkgdesc = Discord packaged with OpenAsar using system provided electron (v28) for increased security and performance pkgver = 0.0.39+824 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -11,7 +11,7 @@ pkgbase = discord-electron-openasar makedepends = nodejs makedepends = curl makedepends = python-html2text - depends = electron24 + depends = electron28 depends = libxss depends = unzip optdepends = libpulse: Pulseaudio support @@ -25,7 +25,7 @@ pkgbase = discord-electron-openasar source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=9f68f8dcb61a5c0c469930aab504dd03aa05f060 sha512sums = 9f18aea5d82f5db4efa9db9babbc440b24e47dc80df18df5cc58d99d677f1c0863df21ed96d69896785f8fbe0dc0ff1f7317398b8f39606289da79f5a38074f1 - sha512sums = 723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5 + sha512sums = e68467468e9ebfe7aae873442998bda03212598a87d9af1b9ac976fdbafc81eb376e7770dccca6eb943d579f39717a0473fa4f0a46a0c3e436460688827a2dc7 sha512sums = SKIP pkgname = discord-electron-openasar diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index be62f40..c14b735 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -8,8 +8,8 @@ pkgname=discord-electron-openasar _pkgname=discord pkgver=0.0.39+824 _pkgver=${pkgver%%+*} -pkgrel=1 -_electronver=24 +pkgrel=2 +_electronver=28 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" arch=('x86_64') @@ -31,7 +31,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=9f68f8dcb61a5c0c469930aab504dd03aa05f060") sha512sums=('9f18aea5d82f5db4efa9db9babbc440b24e47dc80df18df5cc58d99d677f1c0863df21ed96d69896785f8fbe0dc0ff1f7317398b8f39606289da79f5a38074f1' - '723250b70c7f5367701675c6581e9eac2143263910c4ffc35957a6ab858492c5febe89ea0d46fce19ac1416c23d9ca3953e48b9db5aa174b4a401fb6efa5daf5' + 'e68467468e9ebfe7aae873442998bda03212598a87d9af1b9ac976fdbafc81eb376e7770dccca6eb943d579f39717a0473fa4f0a46a0c3e436460688827a2dc7' 'SKIP') _krisp_b2sum='310e3d5ad2311ceace91d20004a677c1a1e49fa1cd5c0458ee5bdb31c01c49df68cac625e66dadcaddf90c67568cde22c2cec3c0b6bca8385225141a8d8d53c1' diff --git a/discord-electron-openasar/discord-electron-openasar.install b/discord-electron-openasar/discord-electron-openasar.install index 997603e..7011466 100644 --- a/discord-electron-openasar/discord-electron-openasar.install +++ b/discord-electron-openasar/discord-electron-openasar.install @@ -1,4 +1,12 @@ post_upgrade() { + # return if old package version is greater than or equal to 0.0.39+824-2... + (( $(vercmp $2 '0.0.39+824-2') >= 0 )) && return + + cat < In order to patch Krisp noise suppression support set 'PATCH_KRISP=true' + in '~/.config/discord.conf' in addition to having 'rizin' installed. +EOF + # return if old package version is greater than or equal to 0.0.27+809-5... (( $(vercmp $2 '0.0.27+809-5') >= 0 )) && return @@ -18,8 +26,9 @@ EOF post_install() { cat < For Krisp noise suppression support consider installing 'rizin'. Restart - your Discord client after installation or update to apply the patch. +==> For Krisp noise suppression support consider installing 'rizin' and + setting 'PATCH_KRISP=true' in '~/.config/discord.conf'. Restart your + Discord client afterwards to apply the patch. ==> Additional Electron flags can be set in '~/.config/discord-flags.conf'. EOF } diff --git a/discord-electron-openasar/discord-launcher.sh b/discord-electron-openasar/discord-launcher.sh index 1d29967..33d525c 100644 --- a/discord-electron-openasar/discord-launcher.sh +++ b/discord-electron-openasar/discord-launcher.sh @@ -5,29 +5,26 @@ set -euo pipefail declare -a flags +[[ -r "${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@.conf" ]] && source "${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@.conf" + flags_file="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@-flags.conf" krisp_bin="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@/@PKGVER@/modules/@PKGNAME@_krisp/@PKGNAME@_krisp.node" krisp_b2=@KRISPB2@ -if hash rizin &> /dev/null; then +if hash rizin &> /dev/null && [[ "${PATCH_KRISP}" == true ]]; then # Patch Krisp binary to ignore signature check - if [[ -f "${krisp_bin}" && $(b2sum "${krisp_bin}" | head -c 128) == $krisp_b2 ]]; then + if [[ -w "${krisp_bin}" && $(b2sum "${krisp_bin}" | head -c 128) == $krisp_b2 ]]; then addr=$(rz-find -x '4881ec00010000' "${krisp_bin}" | head -n1) rizin -q -w -c "s $addr + 0x30 ; wao nop" "${krisp_bin}" &> /dev/null fi fi -if [[ -f "${flags_file}" ]]; then +if [[ -w "${flags_file}" ]]; then + # Replacing because old flag does not work if grep -q '\--ignore-gpu-blacklist' "${flags_file}"; then sed -i "s|--ignore-gpu-blacklist|--ignore-gpu-blocklist|" "${flags_file}" fi mapfile -t < "${flags_file}" -else - cat > "${flags_file}" < Date: Thu, 4 Jan 2024 15:47:48 +0100 Subject: [PATCH 637/971] upgpkg: clonezilla-unstable 5.5.23-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index f381d32..025bf2e 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.20 + pkgver = 5.5.23 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.20.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.23.tar.xz source = usrbin.patch - sha512sums = e49fd9a1a4ff1d777f1c710a856491a425ab08e5ff2cd1937146c625461c61e942bdf69634c0dbd44e2ea808fa82d91bcd195ff57cdbb4804fcfd34cadf709b6 + sha512sums = cda9cda27a1ccd4b5127d544ce2eda6ceef8365270cebbddf01e2e935f454557ddf300c1df33af81622aa1d2b3cd3efddc5f797e9b05fc28cee6df51e64dd8b0 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 7087a95..dba80a9 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.20 +pkgver=5.5.23 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('e49fd9a1a4ff1d777f1c710a856491a425ab08e5ff2cd1937146c625461c61e942bdf69634c0dbd44e2ea808fa82d91bcd195ff57cdbb4804fcfd34cadf709b6' +sha512sums=('cda9cda27a1ccd4b5127d544ce2eda6ceef8365270cebbddf01e2e935f454557ddf300c1df33af81622aa1d2b3cd3efddc5f797e9b05fc28cee6df51e64dd8b0' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From f536e76e6735e88dd47ed35288186250455d15f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 4 Jan 2024 15:47:48 +0100 Subject: [PATCH 638/971] upgpkg: clonezilla-unstable 5.5.23-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index f381d32..025bf2e 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.20 + pkgver = 5.5.23 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.20.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.23.tar.xz source = usrbin.patch - sha512sums = e49fd9a1a4ff1d777f1c710a856491a425ab08e5ff2cd1937146c625461c61e942bdf69634c0dbd44e2ea808fa82d91bcd195ff57cdbb4804fcfd34cadf709b6 + sha512sums = cda9cda27a1ccd4b5127d544ce2eda6ceef8365270cebbddf01e2e935f454557ddf300c1df33af81622aa1d2b3cd3efddc5f797e9b05fc28cee6df51e64dd8b0 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 7087a95..dba80a9 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.20 +pkgver=5.5.23 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('e49fd9a1a4ff1d777f1c710a856491a425ab08e5ff2cd1937146c625461c61e942bdf69634c0dbd44e2ea808fa82d91bcd195ff57cdbb4804fcfd34cadf709b6' +sha512sums=('cda9cda27a1ccd4b5127d544ce2eda6ceef8365270cebbddf01e2e935f454557ddf300c1df33af81622aa1d2b3cd3efddc5f797e9b05fc28cee6df51e64dd8b0' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 92981e8b1f2dec0f15f9531de2fe8426293d01a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 4 Jan 2024 22:47:25 +0100 Subject: [PATCH 639/971] upgpkg: discord-electron 0.0.39-3: fix launcher * Fix launcher error if config variable not set but rizin is installed * Fix typo --- discord-electron/.SRCINFO | 4 ++-- discord-electron/PKGBUILD | 4 ++-- discord-electron/discord-electron.install | 2 +- discord-electron/discord-launcher.sh | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 27ae8eb..e8b5291 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v27) for increased security and performance pkgver = 0.0.39 - pkgrel = 2 + pkgrel = 3 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -21,6 +21,6 @@ pkgbase = discord-electron source = https://dl.discordapp.net/apps/linux/0.0.39/discord-0.0.39.tar.gz source = discord-launcher.sh sha512sums = 9f18aea5d82f5db4efa9db9babbc440b24e47dc80df18df5cc58d99d677f1c0863df21ed96d69896785f8fbe0dc0ff1f7317398b8f39606289da79f5a38074f1 - sha512sums = e68467468e9ebfe7aae873442998bda03212598a87d9af1b9ac976fdbafc81eb376e7770dccca6eb943d579f39717a0473fa4f0a46a0c3e436460688827a2dc7 + sha512sums = ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index b31630a..5be444e 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -14,7 +14,7 @@ pkgname=discord-electron _pkgname=discord pkgver=0.0.39 -pkgrel=2 +pkgrel=3 _electronver=27 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" @@ -36,7 +36,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') sha512sums=('9f18aea5d82f5db4efa9db9babbc440b24e47dc80df18df5cc58d99d677f1c0863df21ed96d69896785f8fbe0dc0ff1f7317398b8f39606289da79f5a38074f1' - 'e68467468e9ebfe7aae873442998bda03212598a87d9af1b9ac976fdbafc81eb376e7770dccca6eb943d579f39717a0473fa4f0a46a0c3e436460688827a2dc7') + 'ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566') _krisp_b2sum='310e3d5ad2311ceace91d20004a677c1a1e49fa1cd5c0458ee5bdb31c01c49df68cac625e66dadcaddf90c67568cde22c2cec3c0b6bca8385225141a8d8d53c1' diff --git a/discord-electron/discord-electron.install b/discord-electron/discord-electron.install index 893fcd9..193b455 100644 --- a/discord-electron/discord-electron.install +++ b/discord-electron/discord-electron.install @@ -1,5 +1,5 @@ post_upgrade() { - # return if old package version is greater than or equal to 0.0.39-1... + # return if old package version is greater than or equal to 0.0.39-2... (( $(vercmp $2 '0.0.39-2') >= 0 )) && return cat < /dev/null && [[ "${PATCH_KRISP}" == true ]]; then fi fi -if [[ -w "${flags_file}" ]]; then +if [[ -r "${flags_file}" ]]; then # Replacing because old flag does not work - if grep -q '\--ignore-gpu-blacklist' "${flags_file}"; then + if [[ -w "${flags_file}" ]] && grep -q '\--ignore-gpu-blacklist' "${flags_file}"; then sed -i "s|--ignore-gpu-blacklist|--ignore-gpu-blocklist|" "${flags_file}" fi mapfile -t < "${flags_file}" From f51b16e9a6af9a6373b231d847326803aec8d327 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 4 Jan 2024 22:47:50 +0100 Subject: [PATCH 640/971] upgpkg: discord-electron-openasar 0.0.39+824-3: fix launcher * Fix launcher error if config variable not set but rizin is installed --- discord-electron-openasar/.SRCINFO | 4 ++-- discord-electron-openasar/PKGBUILD | 4 ++-- discord-electron-openasar/discord-launcher.sh | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index fffb29f..e8d1d3b 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v28) for increased security and performance pkgver = 0.0.39+824 - pkgrel = 2 + pkgrel = 3 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -25,7 +25,7 @@ pkgbase = discord-electron-openasar source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=9f68f8dcb61a5c0c469930aab504dd03aa05f060 sha512sums = 9f18aea5d82f5db4efa9db9babbc440b24e47dc80df18df5cc58d99d677f1c0863df21ed96d69896785f8fbe0dc0ff1f7317398b8f39606289da79f5a38074f1 - sha512sums = e68467468e9ebfe7aae873442998bda03212598a87d9af1b9ac976fdbafc81eb376e7770dccca6eb943d579f39717a0473fa4f0a46a0c3e436460688827a2dc7 + sha512sums = ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566 sha512sums = SKIP pkgname = discord-electron-openasar diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index c14b735..91d58de 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -8,7 +8,7 @@ pkgname=discord-electron-openasar _pkgname=discord pkgver=0.0.39+824 _pkgver=${pkgver%%+*} -pkgrel=2 +pkgrel=3 _electronver=28 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" @@ -31,7 +31,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=9f68f8dcb61a5c0c469930aab504dd03aa05f060") sha512sums=('9f18aea5d82f5db4efa9db9babbc440b24e47dc80df18df5cc58d99d677f1c0863df21ed96d69896785f8fbe0dc0ff1f7317398b8f39606289da79f5a38074f1' - 'e68467468e9ebfe7aae873442998bda03212598a87d9af1b9ac976fdbafc81eb376e7770dccca6eb943d579f39717a0473fa4f0a46a0c3e436460688827a2dc7' + 'ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566' 'SKIP') _krisp_b2sum='310e3d5ad2311ceace91d20004a677c1a1e49fa1cd5c0458ee5bdb31c01c49df68cac625e66dadcaddf90c67568cde22c2cec3c0b6bca8385225141a8d8d53c1' diff --git a/discord-electron-openasar/discord-launcher.sh b/discord-electron-openasar/discord-launcher.sh index 33d525c..55ff2a0 100644 --- a/discord-electron-openasar/discord-launcher.sh +++ b/discord-electron-openasar/discord-launcher.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -euo pipefail +set -eo pipefail declare -a flags @@ -19,9 +19,9 @@ if hash rizin &> /dev/null && [[ "${PATCH_KRISP}" == true ]]; then fi fi -if [[ -w "${flags_file}" ]]; then +if [[ -r "${flags_file}" ]]; then # Replacing because old flag does not work - if grep -q '\--ignore-gpu-blacklist' "${flags_file}"; then + if [[ -w "${flags_file}" ]] && grep -q '\--ignore-gpu-blacklist' "${flags_file}"; then sed -i "s|--ignore-gpu-blacklist|--ignore-gpu-blocklist|" "${flags_file}" fi mapfile -t < "${flags_file}" From ecd597da60ca03e48669df2f48d4874cf3368cb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 8 Jan 2024 19:57:58 +0100 Subject: [PATCH 641/971] upgpkg: ect 0.9.5-1 upstream release --- ect/.SRCINFO | 15 +++++++++------ ect/PKGBUILD | 47 +++++++++++++++++++++++++---------------------- 2 files changed, 34 insertions(+), 28 deletions(-) diff --git a/ect/.SRCINFO b/ect/.SRCINFO index 6233901..7ddd757 100644 --- a/ect/.SRCINFO +++ b/ect/.SRCINFO @@ -1,16 +1,19 @@ pkgbase = ect - pkgdesc = file compressor, supports postcompression of PNG, JPEG, GZIP and ZIP files. - pkgver = 0.9.4 + pkgdesc = File compressor, supports postcompression of PNG, JPEG, GZIP and ZIP files + pkgver = 0.9.5 pkgrel = 1 - url = https://github.com/fhanau/Efficient-Compression-Tool - arch = i686 + url = https://github.com/fhanau/efficient-compression-tool arch = x86_64 license = Apache makedepends = nasm makedepends = git makedepends = cmake depends = gcc-libs - source = git+https://github.com/fhanau/Efficient-Compression-Tool.git#commit=503409a4de166ad1544adcb5d4e48fef308a2727 - md5sums = SKIP + source = git+https://github.com/fhanau/efficient-compression-tool.git#tag=v0.9.5 + source = git+https://github.com/glennrp/libpng.git#commit=f135775ad4e5d4408d2e12ffcc71bb36e6b48551 + source = git+https://github.com/fhanau/mozjpeg.git#commit=182457e3e26e1e078d5dbd09137cf04865be2e49 + sha512sums = SKIP + sha512sums = SKIP + sha512sums = SKIP pkgname = ect diff --git a/ect/PKGBUILD b/ect/PKGBUILD index 9b16335..2a91697 100644 --- a/ect/PKGBUILD +++ b/ect/PKGBUILD @@ -1,38 +1,41 @@ +# Maintainer: Manuel Hüsers +# Contributor: Stefan Husmann # Contributor: William J. Bowman -# Maintainer: Stefan Husmann pkgname=ect -_pkgname=Efficient-Compression-Tool -pkgver=0.9.4 +_pkgname=efficient-compression-tool +pkgver=0.9.5 pkgrel=1 -pkgdesc='file compressor, supports postcompression of PNG, JPEG, GZIP and ZIP files.' -url='https://github.com/fhanau/Efficient-Compression-Tool' -arch=('i686' 'x86_64') +pkgdesc='File compressor, supports postcompression of PNG, JPEG, GZIP and ZIP files' +url="https://github.com/fhanau/$_pkgname" +arch=('x86_64') license=('Apache') -source=("git+$url.git#commit=503409a4de166ad1544adcb5d4e48fef308a2727") -md5sums=('SKIP') depends=('gcc-libs') makedepends=('nasm' 'git' 'cmake') +source=("git+$url.git#tag=v$pkgver" + 'git+https://github.com/glennrp/libpng.git#commit=f135775ad4e5d4408d2e12ffcc71bb36e6b48551' + 'git+https://github.com/fhanau/mozjpeg.git#commit=182457e3e26e1e078d5dbd09137cf04865be2e49') +sha512sums=('SKIP' + 'SKIP' + 'SKIP') prepare() { - cd ${_pkgname} - git submodule init - git submodule update --init --recursive --recommend-shallow + cd "$_pkgname" + git submodule init + git config submodule.lib/libpng.url "$srcdir"/src/libpng + git config submodule.lib/mozjpeg.url "$srcdir"/src/mozjpeg + git -c protocol.file.allow=always submodule update } build() { - cd ${_pkgname} - [ -d build ] || mkdir build - cd build - cmake -DECT_FOLDER_SUPPORT=off ../src - make + cmake -B build -S "$_pkgname"/src \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release + cmake --build build } package() { - cd ${_pkgname}/build - install -Dm755 ect "$pkgdir"/usr/bin/ect - cd "${pkgdir}"/usr/bin - - # Some things expect this to be an all-caps name - ln -s ect ECT + DESTDIR="$pkgdir" cmake --install build + # Some things expect this to be an all-caps name + ln -s ect "$pkgdir"/usr/bin/ECT } From 073095acdc3af0afb146f5c86dbebe2734761993 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 8 Jan 2024 20:54:10 +0100 Subject: [PATCH 642/971] ect: Fix submodule path --- ect/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ect/PKGBUILD b/ect/PKGBUILD index 2a91697..9acc7cd 100644 --- a/ect/PKGBUILD +++ b/ect/PKGBUILD @@ -22,8 +22,8 @@ sha512sums=('SKIP' prepare() { cd "$_pkgname" git submodule init - git config submodule.lib/libpng.url "$srcdir"/src/libpng - git config submodule.lib/mozjpeg.url "$srcdir"/src/mozjpeg + git config submodule.src/libpng.url "$srcdir"/libpng + git config submodule.src/mozjpeg.url "$srcdir"/mozjpeg git -c protocol.file.allow=always submodule update } From 7f90a526a5fe54b9cfdfa2859966ec842f752009 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 9 Jan 2024 20:38:00 +0100 Subject: [PATCH 643/971] upgpkg: discord-electron 0.0.40-1 upstream release --- discord-electron/.SRCINFO | 8 ++++---- discord-electron/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index e8b5291..c57b98b 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v27) for increased security and performance - pkgver = 0.0.39 - pkgrel = 3 + pkgver = 0.0.40 + pkgrel = 1 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.39/discord-0.0.39.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.40/discord-0.0.40.tar.gz source = discord-launcher.sh - sha512sums = 9f18aea5d82f5db4efa9db9babbc440b24e47dc80df18df5cc58d99d677f1c0863df21ed96d69896785f8fbe0dc0ff1f7317398b8f39606289da79f5a38074f1 + sha512sums = 64fd9cf5c8ebb55cd5cd7c1fc0ae04a7e7cb9df6cc18a7c992f1156f46dac5415d87003622078e5d4aa0e48234c3d69d0d12633a57d55291e359cbb40511ca3a sha512sums = ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 5be444e..533e08e 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -13,8 +13,8 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.39 -pkgrel=3 +pkgver=0.0.40 +pkgrel=1 _electronver=27 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" @@ -35,7 +35,7 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('9f18aea5d82f5db4efa9db9babbc440b24e47dc80df18df5cc58d99d677f1c0863df21ed96d69896785f8fbe0dc0ff1f7317398b8f39606289da79f5a38074f1' +sha512sums=('64fd9cf5c8ebb55cd5cd7c1fc0ae04a7e7cb9df6cc18a7c992f1156f46dac5415d87003622078e5d4aa0e48234c3d69d0d12633a57d55291e359cbb40511ca3a' 'ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566') _krisp_b2sum='310e3d5ad2311ceace91d20004a677c1a1e49fa1cd5c0458ee5bdb31c01c49df68cac625e66dadcaddf90c67568cde22c2cec3c0b6bca8385225141a8d8d53c1' From 3119c4169cb74cd613160553ae77afcd89bb88d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 9 Jan 2024 20:38:14 +0100 Subject: [PATCH 644/971] upgpkg: discord-electron-openasar 0.0.40+824-1 upstream release --- discord-electron-openasar/.SRCINFO | 8 ++++---- discord-electron-openasar/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index e8d1d3b..9193190 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v28) for increased security and performance - pkgver = 0.0.39+824 - pkgrel = 3 + pkgver = 0.0.40+824 + pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -21,10 +21,10 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.39/discord-0.0.39.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.40/discord-0.0.40.tar.gz source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=9f68f8dcb61a5c0c469930aab504dd03aa05f060 - sha512sums = 9f18aea5d82f5db4efa9db9babbc440b24e47dc80df18df5cc58d99d677f1c0863df21ed96d69896785f8fbe0dc0ff1f7317398b8f39606289da79f5a38074f1 + sha512sums = 64fd9cf5c8ebb55cd5cd7c1fc0ae04a7e7cb9df6cc18a7c992f1156f46dac5415d87003622078e5d4aa0e48234c3d69d0d12633a57d55291e359cbb40511ca3a sha512sums = ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566 sha512sums = SKIP diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 91d58de..9440ea5 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -6,9 +6,9 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.39+824 +pkgver=0.0.40+824 _pkgver=${pkgver%%+*} -pkgrel=3 +pkgrel=1 _electronver=28 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" @@ -30,7 +30,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=9f68f8dcb61a5c0c469930aab504dd03aa05f060") -sha512sums=('9f18aea5d82f5db4efa9db9babbc440b24e47dc80df18df5cc58d99d677f1c0863df21ed96d69896785f8fbe0dc0ff1f7317398b8f39606289da79f5a38074f1' +sha512sums=('64fd9cf5c8ebb55cd5cd7c1fc0ae04a7e7cb9df6cc18a7c992f1156f46dac5415d87003622078e5d4aa0e48234c3d69d0d12633a57d55291e359cbb40511ca3a' 'ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566' 'SKIP') From ce8f60a0ab143da1aa66a8b2e7a2dc483b90412b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 10 Jan 2024 21:52:13 +0100 Subject: [PATCH 645/971] upgpkg: discord-electron-openasar 0.0.40+826-1 Update to latest OpenAsar commit --- discord-electron-openasar/.SRCINFO | 4 ++-- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 9193190..b16d143 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v28) for increased security and performance - pkgver = 0.0.40+824 + pkgver = 0.0.40+826 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -23,7 +23,7 @@ pkgbase = discord-electron-openasar options = !strip source = https://dl.discordapp.net/apps/linux/0.0.40/discord-0.0.40.tar.gz source = discord-launcher.sh - source = git+https://github.com/goosemod/openasar.git#commit=9f68f8dcb61a5c0c469930aab504dd03aa05f060 + source = git+https://github.com/goosemod/openasar.git#commit=84b3df4ecd56540523a3a499b4058525d6cff6db sha512sums = 64fd9cf5c8ebb55cd5cd7c1fc0ae04a7e7cb9df6cc18a7c992f1156f46dac5415d87003622078e5d4aa0e48234c3d69d0d12633a57d55291e359cbb40511ca3a sha512sums = ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566 sha512sums = SKIP diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 9440ea5..ccff7a6 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -6,7 +6,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.40+824 +pkgver=0.0.40+826 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=28 @@ -29,7 +29,7 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' - "git+https://github.com/goosemod/openasar.git#commit=9f68f8dcb61a5c0c469930aab504dd03aa05f060") + "git+https://github.com/goosemod/openasar.git#commit=84b3df4ecd56540523a3a499b4058525d6cff6db") sha512sums=('64fd9cf5c8ebb55cd5cd7c1fc0ae04a7e7cb9df6cc18a7c992f1156f46dac5415d87003622078e5d4aa0e48234c3d69d0d12633a57d55291e359cbb40511ca3a' 'ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566' 'SKIP') From c83ebec04d24713a2d03854b4b0329115bb5ba0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 12 Jan 2024 13:55:59 +0100 Subject: [PATCH 646/971] upgpkg: gvisor-bin 20240109.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index bc463b3..39e9e2c 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20231204.0 + pkgver = 20240109.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20231204.0::https://storage.googleapis.com/gvisor/releases/release/20231204.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20231204.0::https://storage.googleapis.com/gvisor/releases/release/20231204.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = 916cf0accb069eac8ab22a6ba69e79bcc894e63d36a039ec3a1c41b52714c479c2f88b7f067b086c1491a6db5273dc230bd2c7c4506d3b3f0fdcf21b05fde75e - sha512sums_x86_64 = e5c4f8badd3217782a4ed96cdea81c9fcbdf79a64cf8b3ad64d362c6a5755fa51ceb77219c4b0f0a29674026ea11615605e54eeef774e99220a8156eb1adcb6b - source_aarch64 = runsc-aarch64-20231204.0::https://storage.googleapis.com/gvisor/releases/release/20231204.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20231204.0::https://storage.googleapis.com/gvisor/releases/release/20231204.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = eab2e0ea8fbda9e4d3c15f17f24015a117af677e51b42d2f030c7b8a81c38a5f1d984113961c8789508bb14046975da9c689475b05e2d6633b7296b1bffd9038 - sha512sums_aarch64 = b380ed0aa1d420d041286d9ad622673ea397592fe320542521b7e03c776f8902b9a78059f5b741d68beb20ea9d5b6f195f8123aa5d6c011933d4456f09a4ed3f + source_x86_64 = runsc-x86_64-20240109.0::https://storage.googleapis.com/gvisor/releases/release/20240109.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20240109.0::https://storage.googleapis.com/gvisor/releases/release/20240109.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = 49f27ed23fba6bc83602aca41e20e826aa09016bc71a70cd5c3b66ff4a8bc96182c95a7aee36e862b5699bd5a3329703ac03c1fef83ecb18ad7a8368e70ed516 + sha512sums_x86_64 = 2976f90726ba3b9b4289aad3d34d5ad0346bed3d589f6d6d77ee5a4ae246f25c86609a8c53cdec6fb489fbdde5f60db8f6ceca0c5e3eb420ac25b73232cf71a5 + source_aarch64 = runsc-aarch64-20240109.0::https://storage.googleapis.com/gvisor/releases/release/20240109.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20240109.0::https://storage.googleapis.com/gvisor/releases/release/20240109.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 252a755eab563dd21b13962a7aa2f8ad8d8bc4236a5b99f12323c63cc037e5cc94d8d61cff1d910aa414c85ae3b0e22c2d32894edc3d48c68e94cb72544d1e4d + sha512sums_aarch64 = 1133d8d027c19f3ace39b0731562fc94a378ab9845a5d7d8a5776d5703575d6ce324acb32c466a314231bb445605adbac696cec958ab73477eaea1b693195b26 pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index 8456052..c28dadb 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20231204.0 +pkgver=20240109.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('916cf0accb069eac8ab22a6ba69e79bcc894e63d36a039ec3a1c41b52714c479c2f88b7f067b086c1491a6db5273dc230bd2c7c4506d3b3f0fdcf21b05fde75e' - 'e5c4f8badd3217782a4ed96cdea81c9fcbdf79a64cf8b3ad64d362c6a5755fa51ceb77219c4b0f0a29674026ea11615605e54eeef774e99220a8156eb1adcb6b') -sha512sums_aarch64=('eab2e0ea8fbda9e4d3c15f17f24015a117af677e51b42d2f030c7b8a81c38a5f1d984113961c8789508bb14046975da9c689475b05e2d6633b7296b1bffd9038' - 'b380ed0aa1d420d041286d9ad622673ea397592fe320542521b7e03c776f8902b9a78059f5b741d68beb20ea9d5b6f195f8123aa5d6c011933d4456f09a4ed3f') +sha512sums_x86_64=('49f27ed23fba6bc83602aca41e20e826aa09016bc71a70cd5c3b66ff4a8bc96182c95a7aee36e862b5699bd5a3329703ac03c1fef83ecb18ad7a8368e70ed516' + '2976f90726ba3b9b4289aad3d34d5ad0346bed3d589f6d6d77ee5a4ae246f25c86609a8c53cdec6fb489fbdde5f60db8f6ceca0c5e3eb420ac25b73232cf71a5') +sha512sums_aarch64=('252a755eab563dd21b13962a7aa2f8ad8d8bc4236a5b99f12323c63cc037e5cc94d8d61cff1d910aa414c85ae3b0e22c2d32894edc3d48c68e94cb72544d1e4d' + '1133d8d027c19f3ace39b0731562fc94a378ab9845a5d7d8a5776d5703575d6ce324acb32c466a314231bb445605adbac696cec958ab73477eaea1b693195b26') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From f9f560d04ae17387350c905b39a2ac2a9b65f1a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 12 Jan 2024 13:56:12 +0100 Subject: [PATCH 647/971] upgpkg: gvisor-git 20240109.0-1 upstream release --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index c5cf004..faf0265 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20231204.0 + pkgver = 20240109.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index 1af0f50..7751a81 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20231204.0 +pkgver=20240109.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From e213d0c0285d5ac68bc510d55956b09bde90b962 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 23 Jan 2024 21:03:56 +0100 Subject: [PATCH 648/971] upgpkg: discord-electron 0.0.41-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index c57b98b..0313ed5 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v27) for increased security and performance - pkgver = 0.0.40 + pkgver = 0.0.41 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.40/discord-0.0.40.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.41/discord-0.0.41.tar.gz source = discord-launcher.sh - sha512sums = 64fd9cf5c8ebb55cd5cd7c1fc0ae04a7e7cb9df6cc18a7c992f1156f46dac5415d87003622078e5d4aa0e48234c3d69d0d12633a57d55291e359cbb40511ca3a + sha512sums = 4442fcff4eadc84ce9ec325c4209dccd07a361dd925418ef0f58e0a059ae906314dd538dfc10f5763aac994beecfa70a6628fb445b244f6f9aab21f73973b80c sha512sums = ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 533e08e..adb9fc6 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -13,7 +13,7 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.40 +pkgver=0.0.41 pkgrel=1 _electronver=27 _electronname="electron${_electronver}" @@ -35,10 +35,10 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('64fd9cf5c8ebb55cd5cd7c1fc0ae04a7e7cb9df6cc18a7c992f1156f46dac5415d87003622078e5d4aa0e48234c3d69d0d12633a57d55291e359cbb40511ca3a' +sha512sums=('4442fcff4eadc84ce9ec325c4209dccd07a361dd925418ef0f58e0a059ae906314dd538dfc10f5763aac994beecfa70a6628fb445b244f6f9aab21f73973b80c' 'ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566') -_krisp_b2sum='310e3d5ad2311ceace91d20004a677c1a1e49fa1cd5c0458ee5bdb31c01c49df68cac625e66dadcaddf90c67568cde22c2cec3c0b6bca8385225141a8d8d53c1' +_krisp_b2sum='7001c22b01e6f64203b0f9a0ce6d693c1fba212492a0c551befa3a875e688f2efc24ceae21c91949a5e1d813746b55931856e46450a2f203c7a29a9ef483b914' prepare() { # prepare launcher script From 2f3cd45a858fa1553dc04db4253e7d443baef2c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 23 Jan 2024 21:04:15 +0100 Subject: [PATCH 649/971] upgpkg: discord-electron-openasar 0.0.41+826-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index b16d143..cc8678b 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v28) for increased security and performance - pkgver = 0.0.40+826 + pkgver = 0.0.41+826 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,10 +21,10 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.40/discord-0.0.40.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.41/discord-0.0.41.tar.gz source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=84b3df4ecd56540523a3a499b4058525d6cff6db - sha512sums = 64fd9cf5c8ebb55cd5cd7c1fc0ae04a7e7cb9df6cc18a7c992f1156f46dac5415d87003622078e5d4aa0e48234c3d69d0d12633a57d55291e359cbb40511ca3a + sha512sums = 4442fcff4eadc84ce9ec325c4209dccd07a361dd925418ef0f58e0a059ae906314dd538dfc10f5763aac994beecfa70a6628fb445b244f6f9aab21f73973b80c sha512sums = ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566 sha512sums = SKIP diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index ccff7a6..c1e339b 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -6,7 +6,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.40+826 +pkgver=0.0.41+826 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=28 @@ -30,11 +30,11 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=84b3df4ecd56540523a3a499b4058525d6cff6db") -sha512sums=('64fd9cf5c8ebb55cd5cd7c1fc0ae04a7e7cb9df6cc18a7c992f1156f46dac5415d87003622078e5d4aa0e48234c3d69d0d12633a57d55291e359cbb40511ca3a' +sha512sums=('4442fcff4eadc84ce9ec325c4209dccd07a361dd925418ef0f58e0a059ae906314dd538dfc10f5763aac994beecfa70a6628fb445b244f6f9aab21f73973b80c' 'ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566' 'SKIP') -_krisp_b2sum='310e3d5ad2311ceace91d20004a677c1a1e49fa1cd5c0458ee5bdb31c01c49df68cac625e66dadcaddf90c67568cde22c2cec3c0b6bca8385225141a8d8d53c1' +_krisp_b2sum='7001c22b01e6f64203b0f9a0ce6d693c1fba212492a0c551befa3a875e688f2efc24ceae21c91949a5e1d813746b55931856e46450a2f203c7a29a9ef483b914' # just in case I get the version wrong pkgver() { From 7c1ee2f3349dcb5349da8d7b0f3b9396275361f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 29 Jan 2024 21:34:18 +0100 Subject: [PATCH 650/971] upgpkg: discord-electron 0.0.42-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 0313ed5..3dc1a38 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v27) for increased security and performance - pkgver = 0.0.41 + pkgver = 0.0.42 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.41/discord-0.0.41.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.42/discord-0.0.42.tar.gz source = discord-launcher.sh - sha512sums = 4442fcff4eadc84ce9ec325c4209dccd07a361dd925418ef0f58e0a059ae906314dd538dfc10f5763aac994beecfa70a6628fb445b244f6f9aab21f73973b80c + sha512sums = ec11acfe3f96762cd7c230eb38e098818d9ebf32ff530f061ed3dbb5d08c3303bb4d20206510e3621f21ba89c08474367c13e7fd3c46f80b7229db37fb81db6c sha512sums = ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index adb9fc6..3de3c2e 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -13,7 +13,7 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.41 +pkgver=0.0.42 pkgrel=1 _electronver=27 _electronname="electron${_electronver}" @@ -35,7 +35,7 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('4442fcff4eadc84ce9ec325c4209dccd07a361dd925418ef0f58e0a059ae906314dd538dfc10f5763aac994beecfa70a6628fb445b244f6f9aab21f73973b80c' +sha512sums=('ec11acfe3f96762cd7c230eb38e098818d9ebf32ff530f061ed3dbb5d08c3303bb4d20206510e3621f21ba89c08474367c13e7fd3c46f80b7229db37fb81db6c' 'ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566') _krisp_b2sum='7001c22b01e6f64203b0f9a0ce6d693c1fba212492a0c551befa3a875e688f2efc24ceae21c91949a5e1d813746b55931856e46450a2f203c7a29a9ef483b914' From 96da01cf905a20556b958df37f9a9e7bf06a8202 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 29 Jan 2024 21:34:31 +0100 Subject: [PATCH 651/971] upgpkg: discord-electron-openasar 0.0.42+827-1 upstream release Update to latest OpenAsar commit --- discord-electron-openasar/.SRCINFO | 8 ++++---- discord-electron-openasar/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index cc8678b..778372f 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v28) for increased security and performance - pkgver = 0.0.41+826 + pkgver = 0.0.42+827 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,10 +21,10 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.41/discord-0.0.41.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.42/discord-0.0.42.tar.gz source = discord-launcher.sh - source = git+https://github.com/goosemod/openasar.git#commit=84b3df4ecd56540523a3a499b4058525d6cff6db - sha512sums = 4442fcff4eadc84ce9ec325c4209dccd07a361dd925418ef0f58e0a059ae906314dd538dfc10f5763aac994beecfa70a6628fb445b244f6f9aab21f73973b80c + source = git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d + sha512sums = ec11acfe3f96762cd7c230eb38e098818d9ebf32ff530f061ed3dbb5d08c3303bb4d20206510e3621f21ba89c08474367c13e7fd3c46f80b7229db37fb81db6c sha512sums = ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566 sha512sums = SKIP diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index c1e339b..23cbd43 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -6,7 +6,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.41+826 +pkgver=0.0.42+827 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=28 @@ -29,8 +29,8 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' - "git+https://github.com/goosemod/openasar.git#commit=84b3df4ecd56540523a3a499b4058525d6cff6db") -sha512sums=('4442fcff4eadc84ce9ec325c4209dccd07a361dd925418ef0f58e0a059ae906314dd538dfc10f5763aac994beecfa70a6628fb445b244f6f9aab21f73973b80c' + "git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d") +sha512sums=('ec11acfe3f96762cd7c230eb38e098818d9ebf32ff530f061ed3dbb5d08c3303bb4d20206510e3621f21ba89c08474367c13e7fd3c46f80b7229db37fb81db6c' 'ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566' 'SKIP') From d992d9b5ee2e20f70e145703b3dfb1cf6cb29deb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 7 Feb 2024 20:37:58 +0100 Subject: [PATCH 652/971] Deleted package: prometheus-postgresql-exporter: moved to extra --- prometheus-postgresql-exporter/.SRCINFO | 19 -------- prometheus-postgresql-exporter/PKGBUILD | 47 ------------------- .../prometheus-postgresql-exporter.conf | 2 - .../prometheus-postgresql-exporter.service | 26 ---------- 4 files changed, 94 deletions(-) delete mode 100644 prometheus-postgresql-exporter/.SRCINFO delete mode 100644 prometheus-postgresql-exporter/PKGBUILD delete mode 100644 prometheus-postgresql-exporter/prometheus-postgresql-exporter.conf delete mode 100644 prometheus-postgresql-exporter/prometheus-postgresql-exporter.service diff --git a/prometheus-postgresql-exporter/.SRCINFO b/prometheus-postgresql-exporter/.SRCINFO deleted file mode 100644 index 725c69e..0000000 --- a/prometheus-postgresql-exporter/.SRCINFO +++ /dev/null @@ -1,19 +0,0 @@ -pkgbase = prometheus-postgresql-exporter - pkgdesc = Prometheus exporter for PostgreSQL - pkgver = 0.15.0 - pkgrel = 1 - url = https://github.com/prometheus-community/postgres_exporter - arch = x86_64 - license = Apache - makedepends = git - makedepends = go - makedepends = make - backup = etc/conf.d/prometheus-postgresql-exporter - source = https://github.com/prometheus-community/postgres_exporter/archive/v0.15.0/postgres_exporter-0.15.0.tar.gz - source = prometheus-postgresql-exporter.service - source = prometheus-postgresql-exporter.conf - sha512sums = 332700809454dba11e1e6b9cbc46be9683925a6c692e110efa1204ce1ad1457a8d2237ee8af20f1ee6d5c663266fc1629da6f4f5ff9151faf294a26af8be7682 - sha512sums = 598d201054de604ac78e2b335ad9a219c5d130de6901a6fe64643ac5c9d74314548b65ba2ee675095d8a140b0b48a896cadf6745848e210143761d81e2534402 - sha512sums = 70e5f4a0a184322d21204a7a7a17fd604dc425b106e9ab1897c6805c52469ecad732e96f7b0f0d35763f6bc3945dc5562cd27459776e83c609834c931d09508f - -pkgname = prometheus-postgresql-exporter diff --git a/prometheus-postgresql-exporter/PKGBUILD b/prometheus-postgresql-exporter/PKGBUILD deleted file mode 100644 index b4e5ab1..0000000 --- a/prometheus-postgresql-exporter/PKGBUILD +++ /dev/null @@ -1,47 +0,0 @@ -# Maintainer: Manuel Hüsers -# Contributor: Nils Czernia - -pkgname=prometheus-postgresql-exporter -pkgver=0.15.0 -pkgrel=1 -pkgdesc="Prometheus exporter for PostgreSQL" -arch=('x86_64') -url="https://github.com/prometheus-community/postgres_exporter" -license=('Apache') -makedepends=('git' 'go' 'make') -backup=('etc/conf.d/prometheus-postgresql-exporter') -source=("https://github.com/prometheus-community/postgres_exporter/archive/v${pkgver}/postgres_exporter-${pkgver}.tar.gz" - "prometheus-postgresql-exporter.service" - "prometheus-postgresql-exporter.conf") -sha512sums=('332700809454dba11e1e6b9cbc46be9683925a6c692e110efa1204ce1ad1457a8d2237ee8af20f1ee6d5c663266fc1629da6f4f5ff9151faf294a26af8be7682' - '598d201054de604ac78e2b335ad9a219c5d130de6901a6fe64643ac5c9d74314548b65ba2ee675095d8a140b0b48a896cadf6745848e210143761d81e2534402' - '70e5f4a0a184322d21204a7a7a17fd604dc425b106e9ab1897c6805c52469ecad732e96f7b0f0d35763f6bc3945dc5562cd27459776e83c609834c931d09508f') - -prepare() { - cd "postgres_exporter-${pkgver}" - - export GOPATH="${srcdir}/gopath" - mkdir -p "${GOPATH}/src/github.com/prometheus-community" - ln -snf "${srcdir}/postgres_exporter-${pkgver}" "${GOPATH}/src/github.com/prometheus-community/postgres_exporter" -} - -build() { - export CGO_CPPFLAGS="${CPPFLAGS}" - export CGO_CFLAGS="${CFLAGS}" - export CGO_CXXFLAGS="${CXXFLAGS}" - export CGO_LDFLAGS="${LDFLAGS}" - export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw" - export GOPATH="${srcdir}/gopath" - cd "${GOPATH}/src/github.com/prometheus-community/postgres_exporter" - make build -} - -package() { - install -Dm644 "prometheus-postgresql-exporter.service" \ - "${pkgdir}/usr/lib/systemd/system/prometheus-postgresql-exporter.service" - install -Dm644 "prometheus-postgresql-exporter.conf" \ - "${pkgdir}/etc/conf.d/prometheus-postgresql-exporter" - - cd "postgres_exporter-${pkgver}" - install -Dm755 "postgres_exporter" "${pkgdir}/usr/bin/prometheus_postgresql_exporter" -} diff --git a/prometheus-postgresql-exporter/prometheus-postgresql-exporter.conf b/prometheus-postgresql-exporter/prometheus-postgresql-exporter.conf deleted file mode 100644 index 3a15630..0000000 --- a/prometheus-postgresql-exporter/prometheus-postgresql-exporter.conf +++ /dev/null @@ -1,2 +0,0 @@ -DATA_SOURCE_NAME="" -POSTGRES_EXPORTER_ARGS="" \ No newline at end of file diff --git a/prometheus-postgresql-exporter/prometheus-postgresql-exporter.service b/prometheus-postgresql-exporter/prometheus-postgresql-exporter.service deleted file mode 100644 index 9c045e1..0000000 --- a/prometheus-postgresql-exporter/prometheus-postgresql-exporter.service +++ /dev/null @@ -1,26 +0,0 @@ -[Unit] -Description=Prometheus exporter for PostgreSQL -After=network.target - -[Service] -EnvironmentFile=-/etc/conf.d/prometheus-postgresql-exporter -ExecStart=/usr/bin/prometheus_postgresql_exporter $POSTGRES_EXPORTER_ARGS -Restart=on-failure - -DynamicUser=true -ProtectKernelModules=true -ProtectKernelTunables=true -LockPersonality=true -ProtectHostname=true -ProtectHome=true -ProtectClock=true -ProtectControlGroups=true -ProtectKernelLogs=true -PrivateDevices=true -PrivateUsers=true -RestrictRealtime=true -CapabilityBoundingSet= -MemoryDenyWriteExecute=true - -[Install] -WantedBy=multi-user.target From 9250f543bcc50a81386143cd8bf6b6005b8538d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 11 Feb 2024 06:22:39 +0100 Subject: [PATCH 653/971] upgpkg: discord-electron 0.0.42-2: update electron * Patch app.asar to support Electron version 28 --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 5 +++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 3dc1a38..675e335 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron - pkgdesc = Discord using system provided electron (v27) for increased security and performance + pkgdesc = Discord using system provided electron (v28) for increased security and performance pkgver = 0.0.42 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -9,7 +9,7 @@ pkgbase = discord-electron makedepends = asar makedepends = curl makedepends = python-html2text - depends = electron27 + depends = electron28 depends = libxss optdepends = libpulse: Pulseaudio support optdepends = libappindicator-gtk3: Systray indicator support diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 3de3c2e..61e554f 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -14,8 +14,8 @@ pkgname=discord-electron _pkgname=discord pkgver=0.0.42 -pkgrel=1 -_electronver=27 +pkgrel=2 +_electronver=28 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" arch=('x86_64') @@ -62,6 +62,7 @@ build() { # use system electron asar e resources/app.asar resources/app rm resources/app.asar + sed -i -e "/resourcesPath = .*;$/d" -e "s|return resourcesPath|return '/usr/lib/${_pkgname}'|" resources/app/common/paths.js sed -i -e "s|process.resourcesPath|'/usr/lib/${_pkgname}'|" resources/app/app_bootstrap/buildInfo.js sed -i -e "/^const appName/d" -e "/^const exePath/d" -e "/^const exeDir/d" -e "/^const iconPath/d" \ -e "s|^Exec=\${exePath}$|Exec=/usr/bin/${_pkgname}|" \ From f4f0b069301bb451775fe15deeff4b08ae93172c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 11 Feb 2024 06:25:22 +0100 Subject: [PATCH 654/971] upgpkg: discord-electron-openasar 0.0.42+827-2: fix resource path * Patch app.asar to use correct resource path after latest Electron update --- discord-electron-openasar/.SRCINFO | 2 +- discord-electron-openasar/PKGBUILD | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 778372f..a74f00f 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v28) for increased security and performance pkgver = 0.0.42+827 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 23cbd43..cb10deb 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -8,7 +8,7 @@ pkgname=discord-electron-openasar _pkgname=discord pkgver=0.0.42+827 _pkgver=${pkgver%%+*} -pkgrel=1 +pkgrel=2 _electronver=28 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" @@ -63,6 +63,7 @@ build() { # pack openasar sed -i -e "s|nightly|nightly-$(git rev-parse HEAD | cut -c 1-7)|" src/index.js + sed -i -e "s|process.resourcesPath|'/usr/lib/${_pkgname}'|" src/utils/buildInfo.js sed -i -e "s|^Exec=\${exec}$|Exec=/usr/bin/${_pkgname}|" \ -e "s|^Name=\${basename(exec)}$|Name=${_pkgname^}|" src/autoStart.js node scripts/strip.js From 69fc0d1d939de45d48a6e1208a07dcac91f58f97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 11 Feb 2024 06:57:44 +0100 Subject: [PATCH 655/971] upgpkg: discord-electron-openasar 0.0.42+827-3: disable autoupdate * Set autoupdate to false by default --- discord-electron-openasar/.SRCINFO | 2 +- discord-electron-openasar/PKGBUILD | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index a74f00f..cf7bddd 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v28) for increased security and performance pkgver = 0.0.42+827 - pkgrel = 2 + pkgrel = 3 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index cb10deb..a4346cb 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -8,7 +8,7 @@ pkgname=discord-electron-openasar _pkgname=discord pkgver=0.0.42+827 _pkgver=${pkgver%%+*} -pkgrel=2 +pkgrel=3 _electronver=28 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" @@ -63,6 +63,7 @@ build() { # pack openasar sed -i -e "s|nightly|nightly-$(git rev-parse HEAD | cut -c 1-7)|" src/index.js + sed -i -e "/config.setup = true/a\ config.autoupdate = false;" src/config/index.js sed -i -e "s|process.resourcesPath|'/usr/lib/${_pkgname}'|" src/utils/buildInfo.js sed -i -e "s|^Exec=\${exec}$|Exec=/usr/bin/${_pkgname}|" \ -e "s|^Name=\${basename(exec)}$|Name=${_pkgname^}|" src/autoStart.js From 46d0dbc55ec9ca0446b5f367ddf5c05f112d1726 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 11 Feb 2024 12:11:20 +0100 Subject: [PATCH 656/971] upgpkg: gvisor-bin 20240206.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index 39e9e2c..780b341 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20240109.0 + pkgver = 20240206.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20240109.0::https://storage.googleapis.com/gvisor/releases/release/20240109.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20240109.0::https://storage.googleapis.com/gvisor/releases/release/20240109.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = 49f27ed23fba6bc83602aca41e20e826aa09016bc71a70cd5c3b66ff4a8bc96182c95a7aee36e862b5699bd5a3329703ac03c1fef83ecb18ad7a8368e70ed516 - sha512sums_x86_64 = 2976f90726ba3b9b4289aad3d34d5ad0346bed3d589f6d6d77ee5a4ae246f25c86609a8c53cdec6fb489fbdde5f60db8f6ceca0c5e3eb420ac25b73232cf71a5 - source_aarch64 = runsc-aarch64-20240109.0::https://storage.googleapis.com/gvisor/releases/release/20240109.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20240109.0::https://storage.googleapis.com/gvisor/releases/release/20240109.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 252a755eab563dd21b13962a7aa2f8ad8d8bc4236a5b99f12323c63cc037e5cc94d8d61cff1d910aa414c85ae3b0e22c2d32894edc3d48c68e94cb72544d1e4d - sha512sums_aarch64 = 1133d8d027c19f3ace39b0731562fc94a378ab9845a5d7d8a5776d5703575d6ce324acb32c466a314231bb445605adbac696cec958ab73477eaea1b693195b26 + source_x86_64 = runsc-x86_64-20240206.0::https://storage.googleapis.com/gvisor/releases/release/20240206.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20240206.0::https://storage.googleapis.com/gvisor/releases/release/20240206.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = 9dca345fa47513c5c9353802b70bd0f00bd00f28d96186229cd94adaa14898105a7ac343c54ac8a3304f99d7a5508e4e1f96d8de68231a0717e13ab705d6408f + sha512sums_x86_64 = d0d32377107ee82ad13c4babaa17552f0c48cca533e3f5290a9271811bfc5e20595c63d014637bec63761bbe9a54fbb87ff9f6f091e273dffe9649bdd177733b + source_aarch64 = runsc-aarch64-20240206.0::https://storage.googleapis.com/gvisor/releases/release/20240206.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20240206.0::https://storage.googleapis.com/gvisor/releases/release/20240206.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = efb41e38e92561e0a7158d22f6523cc7ed56736b4af61efdf6330dede377c908f23d26b0e841d81f8e9886968023edb732008c13f5eda97d220be93bb50a19a8 + sha512sums_aarch64 = 6cf5504dcb2fadeb8efb5d31f2d9507ecb60288d4357fbdcc9fa5f304edb0c18812c37a34f87637b9a61b2a6269b900e354817abe3119fe6e66ccaa9b2d661c6 pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index c28dadb..e98bf18 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20240109.0 +pkgver=20240206.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('49f27ed23fba6bc83602aca41e20e826aa09016bc71a70cd5c3b66ff4a8bc96182c95a7aee36e862b5699bd5a3329703ac03c1fef83ecb18ad7a8368e70ed516' - '2976f90726ba3b9b4289aad3d34d5ad0346bed3d589f6d6d77ee5a4ae246f25c86609a8c53cdec6fb489fbdde5f60db8f6ceca0c5e3eb420ac25b73232cf71a5') -sha512sums_aarch64=('252a755eab563dd21b13962a7aa2f8ad8d8bc4236a5b99f12323c63cc037e5cc94d8d61cff1d910aa414c85ae3b0e22c2d32894edc3d48c68e94cb72544d1e4d' - '1133d8d027c19f3ace39b0731562fc94a378ab9845a5d7d8a5776d5703575d6ce324acb32c466a314231bb445605adbac696cec958ab73477eaea1b693195b26') +sha512sums_x86_64=('9dca345fa47513c5c9353802b70bd0f00bd00f28d96186229cd94adaa14898105a7ac343c54ac8a3304f99d7a5508e4e1f96d8de68231a0717e13ab705d6408f' + 'd0d32377107ee82ad13c4babaa17552f0c48cca533e3f5290a9271811bfc5e20595c63d014637bec63761bbe9a54fbb87ff9f6f091e273dffe9649bdd177733b') +sha512sums_aarch64=('efb41e38e92561e0a7158d22f6523cc7ed56736b4af61efdf6330dede377c908f23d26b0e841d81f8e9886968023edb732008c13f5eda97d220be93bb50a19a8' + '6cf5504dcb2fadeb8efb5d31f2d9507ecb60288d4357fbdcc9fa5f304edb0c18812c37a34f87637b9a61b2a6269b900e354817abe3119fe6e66ccaa9b2d661c6') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From 389c8ac42d42d3ed53fe1aebb52a16724a5846a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 11 Feb 2024 12:11:47 +0100 Subject: [PATCH 657/971] upgpkg: gvisor-git 20240206.0-1 upstream release --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index faf0265..754f0bd 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20240109.0 + pkgver = 20240206.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index 7751a81..2345944 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20240109.0 +pkgver=20240206.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From 168682ce88d2b2407cf10225e81d5b3b67c84586 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 11 Feb 2024 17:57:25 +0100 Subject: [PATCH 658/971] upgpkg: obs-vkcapture 1.4.9-1 upstream release --- obs-vkcapture/.SRCINFO | 6 +++--- obs-vkcapture/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/obs-vkcapture/.SRCINFO b/obs-vkcapture/.SRCINFO index eb80e5f..6aad056 100644 --- a/obs-vkcapture/.SRCINFO +++ b/obs-vkcapture/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = obs-vkcapture - pkgver = 1.4.8 + pkgver = 1.4.9 pkgrel = 1 url = https://github.com/nowrep/obs-vkcapture arch = x86_64 @@ -15,8 +15,8 @@ pkgbase = obs-vkcapture depends = libgl depends = libegl depends = obs-studio>=27 - source = https://github.com/nowrep/obs-vkcapture/archive/v1.4.8/obs-vkcapture-1.4.8.tar.gz - sha512sums = a46149132143bfddc3cbfd6d97427b6f055efd4bc83989672446fa94eee27b1b56f3e810bd62e4725a7028d33d995a20e3b0a03f03c457e4c3d738e414c8f421 + source = https://github.com/nowrep/obs-vkcapture/archive/v1.4.9/obs-vkcapture-1.4.9.tar.gz + sha512sums = 1a9da496cd2b1ce2d678ac118845709efdff13b2ddce8816b20c9c4b210b652b674f5e10da5c51a5fd648dce7d52305afa83ff984da5148ce8ca04d43da0c7a1 pkgname = obs-vkcapture pkgdesc = OBS Linux Vulkan/OpenGL game capture diff --git a/obs-vkcapture/PKGBUILD b/obs-vkcapture/PKGBUILD index 962af5f..b9b6000 100644 --- a/obs-vkcapture/PKGBUILD +++ b/obs-vkcapture/PKGBUILD @@ -2,7 +2,7 @@ pkgbase=obs-vkcapture pkgname=("$pkgbase" "lib32-$pkgbase") -pkgver=1.4.8 +pkgver=1.4.9 pkgrel=1 url="https://github.com/nowrep/$pkgbase" license=('GPL2') @@ -10,7 +10,7 @@ arch=('x86_64') depends=('vulkan-icd-loader' 'libgl' 'libegl' 'obs-studio>=27') makedepends=('gcc' 'cmake' 'vulkan-headers' 'lib32-gcc-libs' 'lib32-vulkan-icd-loader' 'lib32-libgl' 'lib32-libegl') source=("https://github.com/nowrep/$pkgbase/archive/v$pkgver/$pkgbase-$pkgver.tar.gz") -sha512sums=('a46149132143bfddc3cbfd6d97427b6f055efd4bc83989672446fa94eee27b1b56f3e810bd62e4725a7028d33d995a20e3b0a03f03c457e4c3d738e414c8f421') +sha512sums=('1a9da496cd2b1ce2d678ac118845709efdff13b2ddce8816b20c9c4b210b652b674f5e10da5c51a5fd648dce7d52305afa83ff984da5148ce8ca04d43da0c7a1') build() { cmake -B build -S "$pkgbase-$pkgver" \ From d6fda86458cdb22966d0a6a2ba1da1e5e607ac56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 12 Feb 2024 23:30:37 +0100 Subject: [PATCH 659/971] upgpkg: discord-electron 0.0.43-1 upstream release --- discord-electron/.SRCINFO | 8 ++++---- discord-electron/PKGBUILD | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 675e335..da13c7a 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v28) for increased security and performance - pkgver = 0.0.42 - pkgrel = 2 + pkgver = 0.0.43 + pkgrel = 1 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.42/discord-0.0.42.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.43/discord-0.0.43.tar.gz source = discord-launcher.sh - sha512sums = ec11acfe3f96762cd7c230eb38e098818d9ebf32ff530f061ed3dbb5d08c3303bb4d20206510e3621f21ba89c08474367c13e7fd3c46f80b7229db37fb81db6c + sha512sums = 2780079975c144ff510973d6149b34c691d1cb0784ef4b8ac6663280263d3b10ca900c9966728579973be377f6b42f8c17ed1038fdef9b699672dddc53e08055 sha512sums = ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 61e554f..1980a16 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -13,8 +13,8 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.42 -pkgrel=2 +pkgver=0.0.43 +pkgrel=1 _electronver=28 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" @@ -35,10 +35,10 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('ec11acfe3f96762cd7c230eb38e098818d9ebf32ff530f061ed3dbb5d08c3303bb4d20206510e3621f21ba89c08474367c13e7fd3c46f80b7229db37fb81db6c' +sha512sums=('2780079975c144ff510973d6149b34c691d1cb0784ef4b8ac6663280263d3b10ca900c9966728579973be377f6b42f8c17ed1038fdef9b699672dddc53e08055' 'ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566') -_krisp_b2sum='7001c22b01e6f64203b0f9a0ce6d693c1fba212492a0c551befa3a875e688f2efc24ceae21c91949a5e1d813746b55931856e46450a2f203c7a29a9ef483b914' +_krisp_b2sum='f87b6004f1efa0608b4a4c5d996226bd414bd14a93a1adcb21d6a8415e1ff57b1010b76ba2d8c4c765fcb222a4625439299a56f520d5af3124111cafcfb45ec7' prepare() { # prepare launcher script From 6c4b27529e6605039d725825affdbf59712a0d91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 12 Feb 2024 23:30:54 +0100 Subject: [PATCH 660/971] upgpkg: discord-electron-openasar 0.0.43+827-1 upstream release --- discord-electron-openasar/.SRCINFO | 8 ++++---- discord-electron-openasar/PKGBUILD | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index cf7bddd..fac8f5d 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v28) for increased security and performance - pkgver = 0.0.42+827 - pkgrel = 3 + pkgver = 0.0.43+827 + pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -21,10 +21,10 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.42/discord-0.0.42.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.43/discord-0.0.43.tar.gz source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d - sha512sums = ec11acfe3f96762cd7c230eb38e098818d9ebf32ff530f061ed3dbb5d08c3303bb4d20206510e3621f21ba89c08474367c13e7fd3c46f80b7229db37fb81db6c + sha512sums = 2780079975c144ff510973d6149b34c691d1cb0784ef4b8ac6663280263d3b10ca900c9966728579973be377f6b42f8c17ed1038fdef9b699672dddc53e08055 sha512sums = ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566 sha512sums = SKIP diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index a4346cb..ac5923e 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -6,9 +6,9 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.42+827 +pkgver=0.0.43+827 _pkgver=${pkgver%%+*} -pkgrel=3 +pkgrel=1 _electronver=28 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" @@ -30,11 +30,11 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d") -sha512sums=('ec11acfe3f96762cd7c230eb38e098818d9ebf32ff530f061ed3dbb5d08c3303bb4d20206510e3621f21ba89c08474367c13e7fd3c46f80b7229db37fb81db6c' +sha512sums=('2780079975c144ff510973d6149b34c691d1cb0784ef4b8ac6663280263d3b10ca900c9966728579973be377f6b42f8c17ed1038fdef9b699672dddc53e08055' 'ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566' 'SKIP') -_krisp_b2sum='7001c22b01e6f64203b0f9a0ce6d693c1fba212492a0c551befa3a875e688f2efc24ceae21c91949a5e1d813746b55931856e46450a2f203c7a29a9ef483b914' +_krisp_b2sum='f87b6004f1efa0608b4a4c5d996226bd414bd14a93a1adcb21d6a8415e1ff57b1010b76ba2d8c4c765fcb222a4625439299a56f520d5af3124111cafcfb45ec7' # just in case I get the version wrong pkgver() { From 4edc35f5a38ed61365e28b37da89da02796c633b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 17 Feb 2024 09:45:14 +0100 Subject: [PATCH 661/971] upgpkg: tuned 2.22.0-1 upstream release --- tuned/.SRCINFO | 6 +++--- tuned/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tuned/.SRCINFO b/tuned/.SRCINFO index a66f225..c54a3d2 100644 --- a/tuned/.SRCINFO +++ b/tuned/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = 2.21.0 + pkgver = 2.22.0 pkgrel = 1 url = https://github.com/redhat-performance/tuned install = tuned.install @@ -21,7 +21,7 @@ pkgbase = tuned optdepends = virt-what: For use with virtual machines optdepends = systemtap: Disk and net statistic monitoring systemtap scripts backup = etc/tuned/active_profile - source = https://github.com/redhat-performance/tuned/archive/v2.21.0/tuned-2.21.0.tar.gz - sha512sums = f1f58d582997db7789af990895c63c1fd4f6329b95cda7fa0fb314f95f05be120b90228e347d0239e4a4bed13baad66a42f006880e369f46741ecf8705bb92d0 + source = https://github.com/redhat-performance/tuned/archive/v2.22.0/tuned-2.22.0.tar.gz + sha512sums = 653f946e8eff57eaa7e26b05c9215d60c8dcec6760b4a41a2855328e86b65f4dcbc0b2fd7d9f9355d00aae93f601c035a38d4e1611f30cb5003b417e31bea4dc pkgname = tuned diff --git a/tuned/PKGBUILD b/tuned/PKGBUILD index 5247ae4..bc18719 100644 --- a/tuned/PKGBUILD +++ b/tuned/PKGBUILD @@ -4,7 +4,7 @@ # Contributor: Tom pkgname=tuned -pkgver=2.21.0 +pkgver=2.22.0 pkgrel=1 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') @@ -16,7 +16,7 @@ makedepends=('desktop-file-utils') backup=('etc/tuned/active_profile') install="${pkgname}.install" source=("https://github.com/redhat-performance/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz") -sha512sums=('f1f58d582997db7789af990895c63c1fd4f6329b95cda7fa0fb314f95f05be120b90228e347d0239e4a4bed13baad66a42f006880e369f46741ecf8705bb92d0') +sha512sums=('653f946e8eff57eaa7e26b05c9215d60c8dcec6760b4a41a2855328e86b65f4dcbc0b2fd7d9f9355d00aae93f601c035a38d4e1611f30cb5003b417e31bea4dc') prepare() { cd "${pkgname}-${pkgver}" From 4744e0f1a43c19474f5548205dd01ac37030a109 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 21 Feb 2024 09:46:00 +0100 Subject: [PATCH 662/971] upgpkg: sublime-text-dev 4.4171-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 137c105..0ac9cb8 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4169 + pkgver = 4.4171 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -11,9 +11,9 @@ pkgbase = sublime-text-dev depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = sublime_text_dev_4_4169_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4169_x64.tar.xz - sha512sums_x86_64 = 6764363f8f92f65532d64ba014023e28b18f40dc62a1b114239b59360257d445494f9a2f57580174b5f4994c8fa06cd8f562c9419cfda92324c9ebf25d15e576 - source_aarch64 = sublime_text_dev_4_4169_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4169_arm64.tar.xz - sha512sums_aarch64 = e9964f55a5bff89fc0ad13266cc7695c8e0cc41d86caed212836fd737c3b52d84400c683b3f9699b554e71fa2d3ed3cc4351cfebcf9f182512211227465db3d6 + source_x86_64 = sublime_text_dev_4_4171_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4171_x64.tar.xz + sha512sums_x86_64 = de094c80819132d6bdde37b4c29b0315bb355ec72bc25db748a14bb3ee386eafd001dffb8d86b77fefb5c9762118392032560d328b1393cc9c1576a0a98e8b4c + source_aarch64 = sublime_text_dev_4_4171_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4171_arm64.tar.xz + sha512sums_aarch64 = 2fa951324aa4372da69750323595fe1f95d59d3d9247320864535ea2dc475caa719f85401c0f60caf16509e5c80fe4b2c7d1b5af6951c136c47c66faab604941 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index f599c11..596a6fc 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4169 +pkgver=4.4171 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -17,8 +17,8 @@ install=${pkgname}.install source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha512sums_x86_64=('6764363f8f92f65532d64ba014023e28b18f40dc62a1b114239b59360257d445494f9a2f57580174b5f4994c8fa06cd8f562c9419cfda92324c9ebf25d15e576') -sha512sums_aarch64=('e9964f55a5bff89fc0ad13266cc7695c8e0cc41d86caed212836fd737c3b52d84400c683b3f9699b554e71fa2d3ed3cc4351cfebcf9f182512211227465db3d6') +sha512sums_x86_64=('de094c80819132d6bdde37b4c29b0315bb355ec72bc25db748a14bb3ee386eafd001dffb8d86b77fefb5c9762118392032560d328b1393cc9c1576a0a98e8b4c') +sha512sums_aarch64=('2fa951324aa4372da69750323595fe1f95d59d3d9247320864535ea2dc475caa719f85401c0f60caf16509e5c80fe4b2c7d1b5af6951c136c47c66faab604941') package() { cd "${srcdir}" From a2bcb46ecfb0a6435b5099cbdd3914621dd384e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 21 Feb 2024 19:25:35 +0100 Subject: [PATCH 663/971] upgpkg: tuned 2.22.0-2: add ppd service * Install optional PPD-to-TuneD daemon that translates DBus API calls to power-profiles-daemon into TuneD API calls. --- tuned/.SRCINFO | 6 +++--- tuned/PKGBUILD | 7 ++++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/tuned/.SRCINFO b/tuned/.SRCINFO index c54a3d2..701e700 100644 --- a/tuned/.SRCINFO +++ b/tuned/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system pkgver = 2.22.0 - pkgrel = 1 + pkgrel = 2 url = https://github.com/redhat-performance/tuned install = tuned.install arch = any @@ -18,8 +18,8 @@ pkgbase = tuned depends = python-linux-procfs depends = python-perf depends = python-pyudev - optdepends = virt-what: For use with virtual machines - optdepends = systemtap: Disk and net statistic monitoring systemtap scripts + optdepends = virt-what: virtual machine detection + optdepends = systemtap: detailed system monitoring backup = etc/tuned/active_profile source = https://github.com/redhat-performance/tuned/archive/v2.22.0/tuned-2.22.0.tar.gz sha512sums = 653f946e8eff57eaa7e26b05c9215d60c8dcec6760b4a41a2855328e86b65f4dcbc0b2fd7d9f9355d00aae93f601c035a38d4e1611f30cb5003b417e31bea4dc diff --git a/tuned/PKGBUILD b/tuned/PKGBUILD index bc18719..d71e4c4 100644 --- a/tuned/PKGBUILD +++ b/tuned/PKGBUILD @@ -5,13 +5,14 @@ pkgname=tuned pkgver=2.22.0 -pkgrel=1 +pkgrel=2 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url="https://github.com/redhat-performance/${pkgname}" license=('GPL') depends=('dbus-glib' 'ethtool' 'gawk' 'hdparm' 'polkit' 'python-configobj' 'python-dbus' 'python-gobject' 'python-linux-procfs' 'python-perf' 'python-pyudev') -optdepends=('virt-what: For use with virtual machines' 'systemtap: Disk and net statistic monitoring systemtap scripts') +optdepends=('virt-what: virtual machine detection' + 'systemtap: detailed system monitoring') makedepends=('desktop-file-utils') backup=('etc/tuned/active_profile') install="${pkgname}.install" @@ -29,7 +30,7 @@ prepare() { package() { cd "${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install + make DESTDIR="${pkgdir}" install install-ppd rm -r "${pkgdir}"/{run,var} python -m compileall -d /usr/lib "${pkgdir}/usr/lib" From 78cca39e5095bab45897f5248117c8c227ae0f2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 22 Feb 2024 07:02:00 +0100 Subject: [PATCH 664/971] upgpkg: sublime-text-dev 4.4172-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 0ac9cb8..4f42b5f 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4171 + pkgver = 4.4172 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -11,9 +11,9 @@ pkgbase = sublime-text-dev depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = sublime_text_dev_4_4171_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4171_x64.tar.xz - sha512sums_x86_64 = de094c80819132d6bdde37b4c29b0315bb355ec72bc25db748a14bb3ee386eafd001dffb8d86b77fefb5c9762118392032560d328b1393cc9c1576a0a98e8b4c - source_aarch64 = sublime_text_dev_4_4171_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4171_arm64.tar.xz - sha512sums_aarch64 = 2fa951324aa4372da69750323595fe1f95d59d3d9247320864535ea2dc475caa719f85401c0f60caf16509e5c80fe4b2c7d1b5af6951c136c47c66faab604941 + source_x86_64 = sublime_text_dev_4_4172_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4172_x64.tar.xz + sha512sums_x86_64 = 27f4aea7ab87edf0688ca3847e97936fd0a44096bca5df20b1a151d189eb6339b203ab7d9e8ca338c554b20815d53ce1066dc0f7281feec81d6b9f1a306ad133 + source_aarch64 = sublime_text_dev_4_4172_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4172_arm64.tar.xz + sha512sums_aarch64 = 0b7b9757f80fec82c32960f87b137f990fb6bd5b36249fd3791b06871955ea8165bd8bb1314b8acc1035aea13b67f30d8e7fda2b4bb285ad73884ec63146c367 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 596a6fc..e9e44e3 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4171 +pkgver=4.4172 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -17,8 +17,8 @@ install=${pkgname}.install source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha512sums_x86_64=('de094c80819132d6bdde37b4c29b0315bb355ec72bc25db748a14bb3ee386eafd001dffb8d86b77fefb5c9762118392032560d328b1393cc9c1576a0a98e8b4c') -sha512sums_aarch64=('2fa951324aa4372da69750323595fe1f95d59d3d9247320864535ea2dc475caa719f85401c0f60caf16509e5c80fe4b2c7d1b5af6951c136c47c66faab604941') +sha512sums_x86_64=('27f4aea7ab87edf0688ca3847e97936fd0a44096bca5df20b1a151d189eb6339b203ab7d9e8ca338c554b20815d53ce1066dc0f7281feec81d6b9f1a306ad133') +sha512sums_aarch64=('0b7b9757f80fec82c32960f87b137f990fb6bd5b36249fd3791b06871955ea8165bd8bb1314b8acc1035aea13b67f30d8e7fda2b4bb285ad73884ec63146c367') package() { cd "${srcdir}" From 81e521c013865263542f7563e74f5a60345d1ba7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 22 Feb 2024 07:36:00 +0100 Subject: [PATCH 665/971] upgpkg: tuned 2.22.0-3: split package * Split package to make ppd service optional since it conflicts with power-profiles-daemon package * Added missing backup files for tuned so that config files may not be overwritten on update --- tuned/.SRCINFO | 26 ++++++++++++++++++++----- tuned/PKGBUILD | 51 +++++++++++++++++++++++++++++++++++--------------- 2 files changed, 57 insertions(+), 20 deletions(-) diff --git a/tuned/.SRCINFO b/tuned/.SRCINFO index 701e700..9f308e1 100644 --- a/tuned/.SRCINFO +++ b/tuned/.SRCINFO @@ -1,9 +1,8 @@ pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system pkgver = 2.22.0 - pkgrel = 2 + pkgrel = 3 url = https://github.com/redhat-performance/tuned - install = tuned.install arch = any license = GPL makedepends = desktop-file-utils @@ -18,10 +17,27 @@ pkgbase = tuned depends = python-linux-procfs depends = python-perf depends = python-pyudev - optdepends = virt-what: virtual machine detection - optdepends = systemtap: detailed system monitoring - backup = etc/tuned/active_profile + options = !emptydirs source = https://github.com/redhat-performance/tuned/archive/v2.22.0/tuned-2.22.0.tar.gz sha512sums = 653f946e8eff57eaa7e26b05c9215d60c8dcec6760b4a41a2855328e86b65f4dcbc0b2fd7d9f9355d00aae93f601c035a38d4e1611f30cb5003b417e31bea4dc pkgname = tuned + install = tuned.install + optdepends = virt-what: virtual machine detection + optdepends = systemtap: detailed system monitoring + optdepends = tuned-ppd: power-profiles-daemon api translation + backup = etc/tuned/active_profile + backup = etc/tuned/bootcmdline + backup = etc/tuned/cpu-partitioning-powersave-variables.conf + backup = etc/tuned/cpu-partitioning-variables.conf + backup = etc/tuned/post_loaded_profile + backup = etc/tuned/realtime-variables.conf + backup = etc/tuned/realtime-virtual-guest-variables.conf + backup = etc/tuned/realtime-virtual-host-variables.conf + backup = etc/tuned/tuned-main.conf + +pkgname = tuned-ppd + pkgdesc = Daemon that allows applications to easily transition to TuneD from power-profiles-daemon (PPD) + depends = tuned + conflicts = power-profiles-daemon + backup = etc/tuned/ppd.conf diff --git a/tuned/PKGBUILD b/tuned/PKGBUILD index d71e4c4..62194d7 100644 --- a/tuned/PKGBUILD +++ b/tuned/PKGBUILD @@ -3,38 +3,59 @@ # Contributor: Timothée Ravier # Contributor: Tom -pkgname=tuned +pkgbase=tuned +pkgname=("${pkgbase}" "${pkgbase}-ppd") pkgver=2.22.0 -pkgrel=2 +pkgrel=3 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') -url="https://github.com/redhat-performance/${pkgname}" +url="https://github.com/redhat-performance/${pkgbase}" license=('GPL') depends=('dbus-glib' 'ethtool' 'gawk' 'hdparm' 'polkit' 'python-configobj' 'python-dbus' 'python-gobject' 'python-linux-procfs' 'python-perf' 'python-pyudev') -optdepends=('virt-what: virtual machine detection' - 'systemtap: detailed system monitoring') makedepends=('desktop-file-utils') -backup=('etc/tuned/active_profile') -install="${pkgname}.install" -source=("https://github.com/redhat-performance/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz") +options=('!emptydirs') +source=("https://github.com/redhat-performance/${pkgbase}/archive/v${pkgver}/${pkgbase}-${pkgver}.tar.gz") sha512sums=('653f946e8eff57eaa7e26b05c9215d60c8dcec6760b4a41a2855328e86b65f4dcbc0b2fd7d9f9355d00aae93f601c035a38d4e1611f30cb5003b417e31bea4dc') prepare() { - cd "${pkgname}-${pkgver}" + cd "${pkgbase}-${pkgver}" mv libexec lib sed -i 's/libexec/lib/g' Makefile sed -i 's/sbin/bin/g' Makefile + sed -i 's/install-ppd: install$/install-ppd: install-dirs/' Makefile } -package() { - cd "${pkgname}-${pkgver}" +package_tuned() { + optdepends=('virt-what: virtual machine detection' + 'systemtap: detailed system monitoring' + 'tuned-ppd: power-profiles-daemon api translation') + backup=('etc/tuned/active_profile' + 'etc/tuned/bootcmdline' + 'etc/tuned/cpu-partitioning-powersave-variables.conf' + 'etc/tuned/cpu-partitioning-variables.conf' + 'etc/tuned/post_loaded_profile' + 'etc/tuned/realtime-variables.conf' + 'etc/tuned/realtime-virtual-guest-variables.conf' + 'etc/tuned/realtime-virtual-host-variables.conf' + 'etc/tuned/tuned-main.conf') + install="${pkgbase}.install" - make DESTDIR="${pkgdir}" install install-ppd - rm -r "${pkgdir}"/{run,var} + cd "${pkgbase}-${pkgver}" + + make DESTDIR="${pkgdir}" install python -m compileall -d /usr/lib "${pkgdir}/usr/lib" python -O -m compileall -d /usr/lib "${pkgdir}/usr/lib" - - install -Dm644 tuned.service "${pkgdir}/usr/lib/systemd/system/" +} + +package_tuned-ppd() { + pkgdesc='Daemon that allows applications to easily transition to TuneD from power-profiles-daemon (PPD)' + depends=('tuned') + conflicts=('power-profiles-daemon') + backup=('etc/tuned/ppd.conf') + + cd "${pkgbase}-${pkgver}" + + make DESTDIR="${pkgdir}" install-ppd } From b9740407f34a32e37ee067a77b8e2c55632d3726 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 22 Feb 2024 14:26:00 +0100 Subject: [PATCH 666/971] upgpkg: tuned 2.22.1-1 upstream release --- tuned/.SRCINFO | 8 ++++---- tuned/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tuned/.SRCINFO b/tuned/.SRCINFO index 9f308e1..0462747 100644 --- a/tuned/.SRCINFO +++ b/tuned/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = 2.22.0 - pkgrel = 3 + pkgver = 2.22.1 + pkgrel = 1 url = https://github.com/redhat-performance/tuned arch = any license = GPL @@ -18,8 +18,8 @@ pkgbase = tuned depends = python-perf depends = python-pyudev options = !emptydirs - source = https://github.com/redhat-performance/tuned/archive/v2.22.0/tuned-2.22.0.tar.gz - sha512sums = 653f946e8eff57eaa7e26b05c9215d60c8dcec6760b4a41a2855328e86b65f4dcbc0b2fd7d9f9355d00aae93f601c035a38d4e1611f30cb5003b417e31bea4dc + source = https://github.com/redhat-performance/tuned/archive/v2.22.1/tuned-2.22.1.tar.gz + sha512sums = 160b1cab5477d84a0da89f584fe646b32162527a138d9b5957799c5f26598b98449733040710133a1c5bdd5588eee72549131ff163e777a105fc24e92edc6d8f pkgname = tuned install = tuned.install diff --git a/tuned/PKGBUILD b/tuned/PKGBUILD index 62194d7..41a2468 100644 --- a/tuned/PKGBUILD +++ b/tuned/PKGBUILD @@ -5,8 +5,8 @@ pkgbase=tuned pkgname=("${pkgbase}" "${pkgbase}-ppd") -pkgver=2.22.0 -pkgrel=3 +pkgver=2.22.1 +pkgrel=1 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url="https://github.com/redhat-performance/${pkgbase}" @@ -15,7 +15,7 @@ depends=('dbus-glib' 'ethtool' 'gawk' 'hdparm' 'polkit' 'python-configobj' 'pyth makedepends=('desktop-file-utils') options=('!emptydirs') source=("https://github.com/redhat-performance/${pkgbase}/archive/v${pkgver}/${pkgbase}-${pkgver}.tar.gz") -sha512sums=('653f946e8eff57eaa7e26b05c9215d60c8dcec6760b4a41a2855328e86b65f4dcbc0b2fd7d9f9355d00aae93f601c035a38d4e1611f30cb5003b417e31bea4dc') +sha512sums=('160b1cab5477d84a0da89f584fe646b32162527a138d9b5957799c5f26598b98449733040710133a1c5bdd5588eee72549131ff163e777a105fc24e92edc6d8f') prepare() { cd "${pkgbase}-${pkgver}" From 43cf71aa74427887e19a305443e06d7f4e1ac4e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 27 Feb 2024 19:44:00 +0100 Subject: [PATCH 667/971] upgpkg: sublime-text-dev 4.4173-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 4f42b5f..2d48626 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4172 + pkgver = 4.4173 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -11,9 +11,9 @@ pkgbase = sublime-text-dev depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = sublime_text_dev_4_4172_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4172_x64.tar.xz - sha512sums_x86_64 = 27f4aea7ab87edf0688ca3847e97936fd0a44096bca5df20b1a151d189eb6339b203ab7d9e8ca338c554b20815d53ce1066dc0f7281feec81d6b9f1a306ad133 - source_aarch64 = sublime_text_dev_4_4172_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4172_arm64.tar.xz - sha512sums_aarch64 = 0b7b9757f80fec82c32960f87b137f990fb6bd5b36249fd3791b06871955ea8165bd8bb1314b8acc1035aea13b67f30d8e7fda2b4bb285ad73884ec63146c367 + source_x86_64 = sublime_text_dev_4_4173_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4173_x64.tar.xz + sha512sums_x86_64 = 91c1359be4789caf5bfa206ae48736a2dd777559a84f8b282f7a7101a9b8b50fe5e073bdb1496475cdcfe1b9c14707ed9d0fedaa7ef37802085d2e2197c18317 + source_aarch64 = sublime_text_dev_4_4173_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4173_arm64.tar.xz + sha512sums_aarch64 = 2d49124aa8493e0e6460e8ea42f89774dde791952f17ada942e99d45703bddd09cfc98d0918a9df411712afe6b957f60d0c879def7eb5fd8f7a860f02388ebda pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index e9e44e3..68d95ef 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4172 +pkgver=4.4173 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -17,8 +17,8 @@ install=${pkgname}.install source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") -sha512sums_x86_64=('27f4aea7ab87edf0688ca3847e97936fd0a44096bca5df20b1a151d189eb6339b203ab7d9e8ca338c554b20815d53ce1066dc0f7281feec81d6b9f1a306ad133') -sha512sums_aarch64=('0b7b9757f80fec82c32960f87b137f990fb6bd5b36249fd3791b06871955ea8165bd8bb1314b8acc1035aea13b67f30d8e7fda2b4bb285ad73884ec63146c367') +sha512sums_x86_64=('91c1359be4789caf5bfa206ae48736a2dd777559a84f8b282f7a7101a9b8b50fe5e073bdb1496475cdcfe1b9c14707ed9d0fedaa7ef37802085d2e2197c18317') +sha512sums_aarch64=('2d49124aa8493e0e6460e8ea42f89774dde791952f17ada942e99d45703bddd09cfc98d0918a9df411712afe6b957f60d0c879def7eb5fd8f7a860f02388ebda') package() { cd "${srcdir}" From 68b0ac6acaeaf5abb200212104793f53d0243235 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 1 Mar 2024 20:45:00 +0100 Subject: [PATCH 668/971] upgpkg: firefox-syncstorage 0.15.0-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index 3284f83..c6ebbc5 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.14.4 + pkgver = 0.15.0 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -21,9 +21,9 @@ pkgbase = firefox-syncstorage optdepends = mysql: for use with a local database server options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.14.4/syncstorage-rs-0.14.4.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.15.0/syncstorage-rs-0.15.0.tar.gz source = firefox-syncstorage.service - sha512sums = 3205a1a159db51e73ae9252c41ad16dafcaf8ee0bcb243750335b322ce30d5cf9ffde37f90a5b78d7b123bef5441ff20dfd4c90a859f539ec1f312a08c844059 + sha512sums = 73966b7e56f66e5c2549dcad1d00cfe9012dc01d23c3d2ca44e8b3c3a712f7fcddbd710465f926379fc5c2b3402f84ba2ccf517d0a960d46be46f0a18bd2e51c sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index 554ef88..ce6fdd0 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.14.4 +pkgver=0.15.0 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -18,7 +18,7 @@ options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha512sums=('3205a1a159db51e73ae9252c41ad16dafcaf8ee0bcb243750335b322ce30d5cf9ffde37f90a5b78d7b123bef5441ff20dfd4c90a859f539ec1f312a08c844059' +sha512sums=('73966b7e56f66e5c2549dcad1d00cfe9012dc01d23c3d2ca44e8b3c3a712f7fcddbd710465f926379fc5c2b3402f84ba2ccf517d0a960d46be46f0a18bd2e51c' '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") From 3573dd835def7cc90e78ba73b6cc2644570681b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 1 Mar 2024 20:45:30 +0100 Subject: [PATCH 669/971] upgpkg: clonezilla-unstable 5.5.24-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 025bf2e..6ff9574 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.23 + pkgver = 5.5.24 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.23.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.24.tar.xz source = usrbin.patch - sha512sums = cda9cda27a1ccd4b5127d544ce2eda6ceef8365270cebbddf01e2e935f454557ddf300c1df33af81622aa1d2b3cd3efddc5f797e9b05fc28cee6df51e64dd8b0 + sha512sums = c5c9c9092810a39be5cd43ed9268daeffd3e7b8734a8c2f3f7db85591b3c61bae3a4beca0229707a6b475035483a9de3e3ae051735f225db6d1f2a04ca3383ab sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index dba80a9..6a4114d 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.23 +pkgver=5.5.24 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('cda9cda27a1ccd4b5127d544ce2eda6ceef8365270cebbddf01e2e935f454557ddf300c1df33af81622aa1d2b3cd3efddc5f797e9b05fc28cee6df51e64dd8b0' +sha512sums=('c5c9c9092810a39be5cd43ed9268daeffd3e7b8734a8c2f3f7db85591b3c61bae3a4beca0229707a6b475035483a9de3e3ae051735f225db6d1f2a04ca3383ab' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 7cb2c351f0e367e90369fe00a177789e4bb67eb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 1 Mar 2024 20:45:30 +0100 Subject: [PATCH 670/971] upgpkg: clonezilla-unstable 5.5.24-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 025bf2e..6ff9574 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.23 + pkgver = 5.5.24 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.23.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.24.tar.xz source = usrbin.patch - sha512sums = cda9cda27a1ccd4b5127d544ce2eda6ceef8365270cebbddf01e2e935f454557ddf300c1df33af81622aa1d2b3cd3efddc5f797e9b05fc28cee6df51e64dd8b0 + sha512sums = c5c9c9092810a39be5cd43ed9268daeffd3e7b8734a8c2f3f7db85591b3c61bae3a4beca0229707a6b475035483a9de3e3ae051735f225db6d1f2a04ca3383ab sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index dba80a9..6a4114d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.23 +pkgver=5.5.24 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('cda9cda27a1ccd4b5127d544ce2eda6ceef8365270cebbddf01e2e935f454557ddf300c1df33af81622aa1d2b3cd3efddc5f797e9b05fc28cee6df51e64dd8b0' +sha512sums=('c5c9c9092810a39be5cd43ed9268daeffd3e7b8734a8c2f3f7db85591b3c61bae3a4beca0229707a6b475035483a9de3e3ae051735f225db6d1f2a04ca3383ab' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 7f7d59436baed13ceedc18dc7f5fb505b0894b8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 5 Mar 2024 20:32:38 +0100 Subject: [PATCH 671/971] upgpkg: firefox-syncstorage 0.15.1-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index c6ebbc5..f3c8b5f 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.15.0 + pkgver = 0.15.1 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -21,9 +21,9 @@ pkgbase = firefox-syncstorage optdepends = mysql: for use with a local database server options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.15.0/syncstorage-rs-0.15.0.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.15.1/syncstorage-rs-0.15.1.tar.gz source = firefox-syncstorage.service - sha512sums = 73966b7e56f66e5c2549dcad1d00cfe9012dc01d23c3d2ca44e8b3c3a712f7fcddbd710465f926379fc5c2b3402f84ba2ccf517d0a960d46be46f0a18bd2e51c + sha512sums = cf5af9995dbbf0c8ce130a1ce025c69b6221de2340b8fc242eda4f5748d26632656e133d2bb32ea9979fbed77d5ea963a5d3d0c0c76089c65160d4443cde7fc4 sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index ce6fdd0..15ed218 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.15.0 +pkgver=0.15.1 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -18,7 +18,7 @@ options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha512sums=('73966b7e56f66e5c2549dcad1d00cfe9012dc01d23c3d2ca44e8b3c3a712f7fcddbd710465f926379fc5c2b3402f84ba2ccf517d0a960d46be46f0a18bd2e51c' +sha512sums=('cf5af9995dbbf0c8ce130a1ce025c69b6221de2340b8fc242eda4f5748d26632656e133d2bb32ea9979fbed77d5ea963a5d3d0c0c76089c65160d4443cde7fc4' '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") From ceda92e0cd84d636132d42a125433465639ea430 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 7 Mar 2024 06:50:54 +0100 Subject: [PATCH 672/971] upgpkg: discord-electron 0.0.44-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index da13c7a..9e1598e 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v28) for increased security and performance - pkgver = 0.0.43 + pkgver = 0.0.44 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.43/discord-0.0.43.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.44/discord-0.0.44.tar.gz source = discord-launcher.sh - sha512sums = 2780079975c144ff510973d6149b34c691d1cb0784ef4b8ac6663280263d3b10ca900c9966728579973be377f6b42f8c17ed1038fdef9b699672dddc53e08055 + sha512sums = fece1f1ab30c089f569eb31a8990da813382ce15ec13dbe0394539921a76f3c6ac22cde98264da429e81a817f1e89861fb4185e8cc5f2875b1d103b4b245652c sha512sums = ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 1980a16..0fce252 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -13,7 +13,7 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.43 +pkgver=0.0.44 pkgrel=1 _electronver=28 _electronname="electron${_electronver}" @@ -35,10 +35,10 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('2780079975c144ff510973d6149b34c691d1cb0784ef4b8ac6663280263d3b10ca900c9966728579973be377f6b42f8c17ed1038fdef9b699672dddc53e08055' +sha512sums=('fece1f1ab30c089f569eb31a8990da813382ce15ec13dbe0394539921a76f3c6ac22cde98264da429e81a817f1e89861fb4185e8cc5f2875b1d103b4b245652c' 'ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566') -_krisp_b2sum='f87b6004f1efa0608b4a4c5d996226bd414bd14a93a1adcb21d6a8415e1ff57b1010b76ba2d8c4c765fcb222a4625439299a56f520d5af3124111cafcfb45ec7' +_krisp_b2sum='2d4bfad1d64643dfa8f5643ce050affc0e3b7b7e49eba96a876fcedb797d4fb2945151664f07cf32eba89d59956c17aa3ef2699f9c0b369f697775f6853f0492' prepare() { # prepare launcher script From 33b25206a13c9b1de1aecd8ae0d75893d9a09d00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 7 Mar 2024 06:51:56 +0100 Subject: [PATCH 673/971] upgpkg: discord-electron-openasar 0.0.44+827-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index fac8f5d..e21c844 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v28) for increased security and performance - pkgver = 0.0.43+827 + pkgver = 0.0.44+827 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,10 +21,10 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.43/discord-0.0.43.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.44/discord-0.0.44.tar.gz source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d - sha512sums = 2780079975c144ff510973d6149b34c691d1cb0784ef4b8ac6663280263d3b10ca900c9966728579973be377f6b42f8c17ed1038fdef9b699672dddc53e08055 + sha512sums = fece1f1ab30c089f569eb31a8990da813382ce15ec13dbe0394539921a76f3c6ac22cde98264da429e81a817f1e89861fb4185e8cc5f2875b1d103b4b245652c sha512sums = ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566 sha512sums = SKIP diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index ac5923e..a7ce593 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -6,7 +6,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.43+827 +pkgver=0.0.44+827 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=28 @@ -30,11 +30,11 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d") -sha512sums=('2780079975c144ff510973d6149b34c691d1cb0784ef4b8ac6663280263d3b10ca900c9966728579973be377f6b42f8c17ed1038fdef9b699672dddc53e08055' +sha512sums=('fece1f1ab30c089f569eb31a8990da813382ce15ec13dbe0394539921a76f3c6ac22cde98264da429e81a817f1e89861fb4185e8cc5f2875b1d103b4b245652c' 'ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566' 'SKIP') -_krisp_b2sum='f87b6004f1efa0608b4a4c5d996226bd414bd14a93a1adcb21d6a8415e1ff57b1010b76ba2d8c4c765fcb222a4625439299a56f520d5af3124111cafcfb45ec7' +_krisp_b2sum='2d4bfad1d64643dfa8f5643ce050affc0e3b7b7e49eba96a876fcedb797d4fb2945151664f07cf32eba89d59956c17aa3ef2699f9c0b369f697775f6853f0492' # just in case I get the version wrong pkgver() { From cef2df01d76426262174956ce68a3f05301d4f79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 7 Mar 2024 06:53:08 +0100 Subject: [PATCH 674/971] upgpkg: gvisor-bin 20240305.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index 780b341..93cc153 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20240206.0 + pkgver = 20240305.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20240206.0::https://storage.googleapis.com/gvisor/releases/release/20240206.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20240206.0::https://storage.googleapis.com/gvisor/releases/release/20240206.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = 9dca345fa47513c5c9353802b70bd0f00bd00f28d96186229cd94adaa14898105a7ac343c54ac8a3304f99d7a5508e4e1f96d8de68231a0717e13ab705d6408f - sha512sums_x86_64 = d0d32377107ee82ad13c4babaa17552f0c48cca533e3f5290a9271811bfc5e20595c63d014637bec63761bbe9a54fbb87ff9f6f091e273dffe9649bdd177733b - source_aarch64 = runsc-aarch64-20240206.0::https://storage.googleapis.com/gvisor/releases/release/20240206.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20240206.0::https://storage.googleapis.com/gvisor/releases/release/20240206.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = efb41e38e92561e0a7158d22f6523cc7ed56736b4af61efdf6330dede377c908f23d26b0e841d81f8e9886968023edb732008c13f5eda97d220be93bb50a19a8 - sha512sums_aarch64 = 6cf5504dcb2fadeb8efb5d31f2d9507ecb60288d4357fbdcc9fa5f304edb0c18812c37a34f87637b9a61b2a6269b900e354817abe3119fe6e66ccaa9b2d661c6 + source_x86_64 = runsc-x86_64-20240305.0::https://storage.googleapis.com/gvisor/releases/release/20240305.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20240305.0::https://storage.googleapis.com/gvisor/releases/release/20240305.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = 6fe6f09ea45c9d73592c823834632debbb4cb1fae64b23e7feb0dba37e925cb6b39d4c98a804b20d10c9f5c4bb9c2dd2055a1460999f450bee32aa49894b8a95 + sha512sums_x86_64 = ae2e6efc9a510135c6478153efc58e865d4376e9147bde7ddcf5fa7a9ad221f479af1c3ea17f34c96f380d6f669e6de7277b9ed48efdcd0ea5c46e4d7a338761 + source_aarch64 = runsc-aarch64-20240305.0::https://storage.googleapis.com/gvisor/releases/release/20240305.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20240305.0::https://storage.googleapis.com/gvisor/releases/release/20240305.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = fc14d1996b84fa757518407183e1fe50bb1ac60c678521c10e1ebb2489211addc24722317746a24fa5f2838e49adfb118b9d966c4ff5713e08931f293a736ccb + sha512sums_aarch64 = 587682b89914401b65d40e1a5dd1969c7a526c1b34feff6ef042c96659eec2a74a4d32c12fedf176a6751c4941cc1b9bd8584230bc719e7e5babfdb8957ddcd2 pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index e98bf18..3db9c99 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20240206.0 +pkgver=20240305.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('9dca345fa47513c5c9353802b70bd0f00bd00f28d96186229cd94adaa14898105a7ac343c54ac8a3304f99d7a5508e4e1f96d8de68231a0717e13ab705d6408f' - 'd0d32377107ee82ad13c4babaa17552f0c48cca533e3f5290a9271811bfc5e20595c63d014637bec63761bbe9a54fbb87ff9f6f091e273dffe9649bdd177733b') -sha512sums_aarch64=('efb41e38e92561e0a7158d22f6523cc7ed56736b4af61efdf6330dede377c908f23d26b0e841d81f8e9886968023edb732008c13f5eda97d220be93bb50a19a8' - '6cf5504dcb2fadeb8efb5d31f2d9507ecb60288d4357fbdcc9fa5f304edb0c18812c37a34f87637b9a61b2a6269b900e354817abe3119fe6e66ccaa9b2d661c6') +sha512sums_x86_64=('6fe6f09ea45c9d73592c823834632debbb4cb1fae64b23e7feb0dba37e925cb6b39d4c98a804b20d10c9f5c4bb9c2dd2055a1460999f450bee32aa49894b8a95' + 'ae2e6efc9a510135c6478153efc58e865d4376e9147bde7ddcf5fa7a9ad221f479af1c3ea17f34c96f380d6f669e6de7277b9ed48efdcd0ea5c46e4d7a338761') +sha512sums_aarch64=('fc14d1996b84fa757518407183e1fe50bb1ac60c678521c10e1ebb2489211addc24722317746a24fa5f2838e49adfb118b9d966c4ff5713e08931f293a736ccb' + '587682b89914401b65d40e1a5dd1969c7a526c1b34feff6ef042c96659eec2a74a4d32c12fedf176a6751c4941cc1b9bd8584230bc719e7e5babfdb8957ddcd2') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From 25c882d365c81c63a3723a22ec7d17c31af7c860 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 7 Mar 2024 06:53:26 +0100 Subject: [PATCH 675/971] upgpkg: gvisor-git 20240305.0-1 upstream release --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index 754f0bd..6422aaa 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20240206.0 + pkgver = 20240305.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index 2345944..1c7a24a 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20240206.0 +pkgver=20240305.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -34,7 +34,7 @@ build() { export CGO_LDFLAGS="${LDFLAGS}" export GOPATH="${srcdir}" export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw" - CGO_ENABLED=0 go build -v -o "bin/$_pkgbin" -ldflags "-linkmode=external -compressdwarf=false -X gvisor.dev/gvisor/runsc/version.version=${pkgver}" gvisor.dev/gvisor/runsc + go build -v -o "bin/$_pkgbin" -ldflags "-linkmode=external -compressdwarf=false -X gvisor.dev/gvisor/runsc/version.version=${pkgver}" gvisor.dev/gvisor/runsc go build -v -o "bin/$_pkgshim" -ldflags "-linkmode=external -compressdwarf=false" gvisor.dev/gvisor/shim } From cec85ec3fd93c6905a4733b4758b0fcf762461e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 12 Mar 2024 19:22:50 +0100 Subject: [PATCH 676/971] upgpkg: discord-electron 0.0.45-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 9e1598e..bfcb05e 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v28) for increased security and performance - pkgver = 0.0.44 + pkgver = 0.0.45 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.44/discord-0.0.44.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.45/discord-0.0.45.tar.gz source = discord-launcher.sh - sha512sums = fece1f1ab30c089f569eb31a8990da813382ce15ec13dbe0394539921a76f3c6ac22cde98264da429e81a817f1e89861fb4185e8cc5f2875b1d103b4b245652c + sha512sums = e2a64eed20267e40b1bc068166a8bfcb76211da12381ff43dfddcb250050901f0a4dd1db2f4c9ed4fc5618fcddef02a13d3cefc452801d7c8f674cf029dd7422 sha512sums = ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 0fce252..e93e3ca 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -13,7 +13,7 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.44 +pkgver=0.0.45 pkgrel=1 _electronver=28 _electronname="electron${_electronver}" @@ -35,10 +35,10 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('fece1f1ab30c089f569eb31a8990da813382ce15ec13dbe0394539921a76f3c6ac22cde98264da429e81a817f1e89861fb4185e8cc5f2875b1d103b4b245652c' +sha512sums=('e2a64eed20267e40b1bc068166a8bfcb76211da12381ff43dfddcb250050901f0a4dd1db2f4c9ed4fc5618fcddef02a13d3cefc452801d7c8f674cf029dd7422' 'ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566') -_krisp_b2sum='2d4bfad1d64643dfa8f5643ce050affc0e3b7b7e49eba96a876fcedb797d4fb2945151664f07cf32eba89d59956c17aa3ef2699f9c0b369f697775f6853f0492' +_krisp_b2sum='8b2f34f116c35eaa417bf2585f7d80bd394791c01ffc4a5761670fe3c6323c9560e6357d787f29adb56c20342b5b400e1103bc28257fb0a70e207e1d2070f2d4' prepare() { # prepare launcher script From 604753f819f7c518bb15346f6bf368262925f84f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 12 Mar 2024 19:23:10 +0100 Subject: [PATCH 677/971] upgpkg: discord-electron-openasar 0.0.45+827-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index e21c844..0a0025b 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v28) for increased security and performance - pkgver = 0.0.44+827 + pkgver = 0.0.45+827 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,10 +21,10 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.44/discord-0.0.44.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.45/discord-0.0.45.tar.gz source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d - sha512sums = fece1f1ab30c089f569eb31a8990da813382ce15ec13dbe0394539921a76f3c6ac22cde98264da429e81a817f1e89861fb4185e8cc5f2875b1d103b4b245652c + sha512sums = e2a64eed20267e40b1bc068166a8bfcb76211da12381ff43dfddcb250050901f0a4dd1db2f4c9ed4fc5618fcddef02a13d3cefc452801d7c8f674cf029dd7422 sha512sums = ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566 sha512sums = SKIP diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index a7ce593..4603e1c 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -6,7 +6,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.44+827 +pkgver=0.0.45+827 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=28 @@ -30,11 +30,11 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d") -sha512sums=('fece1f1ab30c089f569eb31a8990da813382ce15ec13dbe0394539921a76f3c6ac22cde98264da429e81a817f1e89861fb4185e8cc5f2875b1d103b4b245652c' +sha512sums=('e2a64eed20267e40b1bc068166a8bfcb76211da12381ff43dfddcb250050901f0a4dd1db2f4c9ed4fc5618fcddef02a13d3cefc452801d7c8f674cf029dd7422' 'ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566' 'SKIP') -_krisp_b2sum='2d4bfad1d64643dfa8f5643ce050affc0e3b7b7e49eba96a876fcedb797d4fb2945151664f07cf32eba89d59956c17aa3ef2699f9c0b369f697775f6853f0492' +_krisp_b2sum='8b2f34f116c35eaa417bf2585f7d80bd394791c01ffc4a5761670fe3c6323c9560e6357d787f29adb56c20342b5b400e1103bc28257fb0a70e207e1d2070f2d4' # just in case I get the version wrong pkgver() { From 78ce8c3ffc5073f313285d9469cc5f30aa4c5b65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 12 Mar 2024 19:24:23 +0100 Subject: [PATCH 678/971] upgpkg: clonezilla-unstable 5.5.27-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 6ff9574..27a0093 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.24 + pkgver = 5.5.27 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.24.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.27.tar.xz source = usrbin.patch - sha512sums = c5c9c9092810a39be5cd43ed9268daeffd3e7b8734a8c2f3f7db85591b3c61bae3a4beca0229707a6b475035483a9de3e3ae051735f225db6d1f2a04ca3383ab + sha512sums = 34cd69db95fc02713b7811ec18728dcd559cd439c2ebb750a857697d98224eeee924298909c3623f08ae96346d82ab1a8181154c1c31890144fa6a336e997420 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 6a4114d..e9bbfc2 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.24 +pkgver=5.5.27 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('c5c9c9092810a39be5cd43ed9268daeffd3e7b8734a8c2f3f7db85591b3c61bae3a4beca0229707a6b475035483a9de3e3ae051735f225db6d1f2a04ca3383ab' +sha512sums=('34cd69db95fc02713b7811ec18728dcd559cd439c2ebb750a857697d98224eeee924298909c3623f08ae96346d82ab1a8181154c1c31890144fa6a336e997420' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 00b9bec9e91965b34a578906e11368174328f53e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 12 Mar 2024 19:24:23 +0100 Subject: [PATCH 679/971] upgpkg: clonezilla-unstable 5.5.27-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 6ff9574..27a0093 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.24 + pkgver = 5.5.27 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.24.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.27.tar.xz source = usrbin.patch - sha512sums = c5c9c9092810a39be5cd43ed9268daeffd3e7b8734a8c2f3f7db85591b3c61bae3a4beca0229707a6b475035483a9de3e3ae051735f225db6d1f2a04ca3383ab + sha512sums = 34cd69db95fc02713b7811ec18728dcd559cd439c2ebb750a857697d98224eeee924298909c3623f08ae96346d82ab1a8181154c1c31890144fa6a336e997420 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 6a4114d..e9bbfc2 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.24 +pkgver=5.5.27 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('c5c9c9092810a39be5cd43ed9268daeffd3e7b8734a8c2f3f7db85591b3c61bae3a4beca0229707a6b475035483a9de3e3ae051735f225db6d1f2a04ca3383ab' +sha512sums=('34cd69db95fc02713b7811ec18728dcd559cd439c2ebb750a857697d98224eeee924298909c3623f08ae96346d82ab1a8181154c1c31890144fa6a336e997420' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 07dab3a33f91b860dc53cbc018d4786004fd5a3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 17 Mar 2024 14:55:21 +0100 Subject: [PATCH 680/971] upgpkg: clonezilla-unstable 5.5.31-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 27a0093..302fa2f 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.27 + pkgver = 5.5.31 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.27.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.31.tar.xz source = usrbin.patch - sha512sums = 34cd69db95fc02713b7811ec18728dcd559cd439c2ebb750a857697d98224eeee924298909c3623f08ae96346d82ab1a8181154c1c31890144fa6a336e997420 + sha512sums = ac80d66468b3fb19684ea6bfefa8d2b3d91f256a381248fb8a7eeb8c137947c3cfd2231a66acfc357dd69715f46605efa3f72d42bd583998ce3d937d67408187 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index e9bbfc2..a6a649b 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.27 +pkgver=5.5.31 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('34cd69db95fc02713b7811ec18728dcd559cd439c2ebb750a857697d98224eeee924298909c3623f08ae96346d82ab1a8181154c1c31890144fa6a336e997420' +sha512sums=('ac80d66468b3fb19684ea6bfefa8d2b3d91f256a381248fb8a7eeb8c137947c3cfd2231a66acfc357dd69715f46605efa3f72d42bd583998ce3d937d67408187' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From b660127697e5e6958e55a33ccae6266071f11257 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 17 Mar 2024 14:55:21 +0100 Subject: [PATCH 681/971] upgpkg: clonezilla-unstable 5.5.31-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 27a0093..302fa2f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.27 + pkgver = 5.5.31 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.27.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.31.tar.xz source = usrbin.patch - sha512sums = 34cd69db95fc02713b7811ec18728dcd559cd439c2ebb750a857697d98224eeee924298909c3623f08ae96346d82ab1a8181154c1c31890144fa6a336e997420 + sha512sums = ac80d66468b3fb19684ea6bfefa8d2b3d91f256a381248fb8a7eeb8c137947c3cfd2231a66acfc357dd69715f46605efa3f72d42bd583998ce3d937d67408187 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index e9bbfc2..a6a649b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.27 +pkgver=5.5.31 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('34cd69db95fc02713b7811ec18728dcd559cd439c2ebb750a857697d98224eeee924298909c3623f08ae96346d82ab1a8181154c1c31890144fa6a336e997420' +sha512sums=('ac80d66468b3fb19684ea6bfefa8d2b3d91f256a381248fb8a7eeb8c137947c3cfd2231a66acfc357dd69715f46605efa3f72d42bd583998ce3d937d67408187' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 235e77f70689d7e0342fad85e69a8a88c18adc66 Mon Sep 17 00:00:00 2001 From: Manuel Date: Sun, 17 Mar 2024 14:57:36 +0100 Subject: [PATCH 682/971] Add .gitattributes --- .gitattributes | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..3ba4f65 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +* text=auto eol=lf +*.install linguist-language=Shell From 16c6e8f08d1383069e0ef82a910db3f801624a9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 18 Mar 2024 19:47:28 +0100 Subject: [PATCH 683/971] upgpkg: discord-electron 0.0.46-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index bfcb05e..7024594 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v28) for increased security and performance - pkgver = 0.0.45 + pkgver = 0.0.46 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.45/discord-0.0.45.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.46/discord-0.0.46.tar.gz source = discord-launcher.sh - sha512sums = e2a64eed20267e40b1bc068166a8bfcb76211da12381ff43dfddcb250050901f0a4dd1db2f4c9ed4fc5618fcddef02a13d3cefc452801d7c8f674cf029dd7422 + sha512sums = 7f88a1f5281beb5bcdb9741ae4d984ec71c09931f31c4265e15f63b5710baff0124b38421971e45e217e20d7de14e4b5ab9e0b7da6afc3eb8ff3456643f692e8 sha512sums = ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index e93e3ca..35ce9fc 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -13,7 +13,7 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.45 +pkgver=0.0.46 pkgrel=1 _electronver=28 _electronname="electron${_electronver}" @@ -35,10 +35,10 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('e2a64eed20267e40b1bc068166a8bfcb76211da12381ff43dfddcb250050901f0a4dd1db2f4c9ed4fc5618fcddef02a13d3cefc452801d7c8f674cf029dd7422' +sha512sums=('7f88a1f5281beb5bcdb9741ae4d984ec71c09931f31c4265e15f63b5710baff0124b38421971e45e217e20d7de14e4b5ab9e0b7da6afc3eb8ff3456643f692e8' 'ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566') -_krisp_b2sum='8b2f34f116c35eaa417bf2585f7d80bd394791c01ffc4a5761670fe3c6323c9560e6357d787f29adb56c20342b5b400e1103bc28257fb0a70e207e1d2070f2d4' +_krisp_b2sum='7d0a17a9c43c84c87b494c79af56325b3498f1d136708167adf53a0bab67cb152e746a804e18434153b9ee0ad889af0886ff1d55e7ad5bc09e7bd9c4f3db0d10' prepare() { # prepare launcher script From f3f922dbbcae6032e3598ea3f4eafb4ce3a40d81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 18 Mar 2024 19:47:43 +0100 Subject: [PATCH 684/971] upgpkg: discord-electron-openasar 0.0.46+827-1 upstream release --- discord-electron-openasar/.SRCINFO | 8 ++++---- discord-electron-openasar/PKGBUILD | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 0a0025b..9badf42 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v28) for increased security and performance - pkgver = 0.0.45+827 + pkgver = 0.0.46+827 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.45/discord-0.0.45.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.46/discord-0.0.46.tar.gz source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d - sha512sums = e2a64eed20267e40b1bc068166a8bfcb76211da12381ff43dfddcb250050901f0a4dd1db2f4c9ed4fc5618fcddef02a13d3cefc452801d7c8f674cf029dd7422 + sha512sums = 7f88a1f5281beb5bcdb9741ae4d984ec71c09931f31c4265e15f63b5710baff0124b38421971e45e217e20d7de14e4b5ab9e0b7da6afc3eb8ff3456643f692e8 sha512sums = ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566 - sha512sums = SKIP + sha512sums = 055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849 pkgname = discord-electron-openasar diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 4603e1c..99e2c61 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -6,7 +6,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.45+827 +pkgver=0.0.46+827 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=28 @@ -30,11 +30,11 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d") -sha512sums=('e2a64eed20267e40b1bc068166a8bfcb76211da12381ff43dfddcb250050901f0a4dd1db2f4c9ed4fc5618fcddef02a13d3cefc452801d7c8f674cf029dd7422' +sha512sums=('7f88a1f5281beb5bcdb9741ae4d984ec71c09931f31c4265e15f63b5710baff0124b38421971e45e217e20d7de14e4b5ab9e0b7da6afc3eb8ff3456643f692e8' 'ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566' - 'SKIP') + '055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849') -_krisp_b2sum='8b2f34f116c35eaa417bf2585f7d80bd394791c01ffc4a5761670fe3c6323c9560e6357d787f29adb56c20342b5b400e1103bc28257fb0a70e207e1d2070f2d4' +_krisp_b2sum='7d0a17a9c43c84c87b494c79af56325b3498f1d136708167adf53a0bab67cb152e746a804e18434153b9ee0ad889af0886ff1d55e7ad5bc09e7bd9c4f3db0d10' # just in case I get the version wrong pkgver() { From a0a553d1228c2d6d222a6b579265a3b8f23ff6d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 25 Mar 2024 20:29:29 +0100 Subject: [PATCH 685/971] upgpkg: discord-electron 0.0.47-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 7024594..079d7c8 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v28) for increased security and performance - pkgver = 0.0.46 + pkgver = 0.0.47 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.46/discord-0.0.46.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.47/discord-0.0.47.tar.gz source = discord-launcher.sh - sha512sums = 7f88a1f5281beb5bcdb9741ae4d984ec71c09931f31c4265e15f63b5710baff0124b38421971e45e217e20d7de14e4b5ab9e0b7da6afc3eb8ff3456643f692e8 + sha512sums = da08bd801210d7194f8c5de1b43948e018dfccffc7685adbc28d0710351fbf9161f77ccb1e8c0c34b13d1955f53f8dd58f15470415b05d2e22057fe7ae73c703 sha512sums = ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 35ce9fc..fe7eae1 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -13,7 +13,7 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.46 +pkgver=0.0.47 pkgrel=1 _electronver=28 _electronname="electron${_electronver}" @@ -35,10 +35,10 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('7f88a1f5281beb5bcdb9741ae4d984ec71c09931f31c4265e15f63b5710baff0124b38421971e45e217e20d7de14e4b5ab9e0b7da6afc3eb8ff3456643f692e8' +sha512sums=('da08bd801210d7194f8c5de1b43948e018dfccffc7685adbc28d0710351fbf9161f77ccb1e8c0c34b13d1955f53f8dd58f15470415b05d2e22057fe7ae73c703' 'ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566') -_krisp_b2sum='7d0a17a9c43c84c87b494c79af56325b3498f1d136708167adf53a0bab67cb152e746a804e18434153b9ee0ad889af0886ff1d55e7ad5bc09e7bd9c4f3db0d10' +_krisp_b2sum='61e6a4b2a28c83eb0ea99b9c5eaa4c6552f0549e004dcc86967ec560b86f2975b3023cde6bfcba8ee9fd758b07a49d9a6028096e6fe8c2d6489ea713b38049ef' prepare() { # prepare launcher script From 3505453af426113fba8f9f1429a52a4a9a936da6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 25 Mar 2024 20:29:56 +0100 Subject: [PATCH 686/971] upgpkg: discord-electron-openasar 0.0.47+827-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 9badf42..d93a95f 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v28) for increased security and performance - pkgver = 0.0.46+827 + pkgver = 0.0.47+827 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,10 +21,10 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.46/discord-0.0.46.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.47/discord-0.0.47.tar.gz source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d - sha512sums = 7f88a1f5281beb5bcdb9741ae4d984ec71c09931f31c4265e15f63b5710baff0124b38421971e45e217e20d7de14e4b5ab9e0b7da6afc3eb8ff3456643f692e8 + sha512sums = da08bd801210d7194f8c5de1b43948e018dfccffc7685adbc28d0710351fbf9161f77ccb1e8c0c34b13d1955f53f8dd58f15470415b05d2e22057fe7ae73c703 sha512sums = ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566 sha512sums = 055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 99e2c61..848c665 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -6,7 +6,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.46+827 +pkgver=0.0.47+827 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=28 @@ -30,11 +30,11 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d") -sha512sums=('7f88a1f5281beb5bcdb9741ae4d984ec71c09931f31c4265e15f63b5710baff0124b38421971e45e217e20d7de14e4b5ab9e0b7da6afc3eb8ff3456643f692e8' +sha512sums=('da08bd801210d7194f8c5de1b43948e018dfccffc7685adbc28d0710351fbf9161f77ccb1e8c0c34b13d1955f53f8dd58f15470415b05d2e22057fe7ae73c703' 'ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566' '055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849') -_krisp_b2sum='7d0a17a9c43c84c87b494c79af56325b3498f1d136708167adf53a0bab67cb152e746a804e18434153b9ee0ad889af0886ff1d55e7ad5bc09e7bd9c4f3db0d10' +_krisp_b2sum='61e6a4b2a28c83eb0ea99b9c5eaa4c6552f0549e004dcc86967ec560b86f2975b3023cde6bfcba8ee9fd758b07a49d9a6028096e6fe8c2d6489ea713b38049ef' # just in case I get the version wrong pkgver() { From 5b05d8a34ef2c992fd6d22a13c66ff75931db108 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 1 Apr 2024 19:48:21 +0200 Subject: [PATCH 687/971] upgpkg: obs-vkcapture 1.5.0-1 upstream release --- obs-vkcapture/.SRCINFO | 6 +++--- obs-vkcapture/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/obs-vkcapture/.SRCINFO b/obs-vkcapture/.SRCINFO index 6aad056..8febee2 100644 --- a/obs-vkcapture/.SRCINFO +++ b/obs-vkcapture/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = obs-vkcapture - pkgver = 1.4.9 + pkgver = 1.5.0 pkgrel = 1 url = https://github.com/nowrep/obs-vkcapture arch = x86_64 @@ -15,8 +15,8 @@ pkgbase = obs-vkcapture depends = libgl depends = libegl depends = obs-studio>=27 - source = https://github.com/nowrep/obs-vkcapture/archive/v1.4.9/obs-vkcapture-1.4.9.tar.gz - sha512sums = 1a9da496cd2b1ce2d678ac118845709efdff13b2ddce8816b20c9c4b210b652b674f5e10da5c51a5fd648dce7d52305afa83ff984da5148ce8ca04d43da0c7a1 + source = https://github.com/nowrep/obs-vkcapture/archive/v1.5.0/obs-vkcapture-1.5.0.tar.gz + sha512sums = 856a735ca3d1ed9f04c91c7e4a006aca2a72389a4ac0dee13d2b1f87da8e622d71dda400bb263499ddd04b1bc4294e7270382fc12e91e82a8ed554de8e3a4c96 pkgname = obs-vkcapture pkgdesc = OBS Linux Vulkan/OpenGL game capture diff --git a/obs-vkcapture/PKGBUILD b/obs-vkcapture/PKGBUILD index b9b6000..cd82c59 100644 --- a/obs-vkcapture/PKGBUILD +++ b/obs-vkcapture/PKGBUILD @@ -2,7 +2,7 @@ pkgbase=obs-vkcapture pkgname=("$pkgbase" "lib32-$pkgbase") -pkgver=1.4.9 +pkgver=1.5.0 pkgrel=1 url="https://github.com/nowrep/$pkgbase" license=('GPL2') @@ -10,7 +10,7 @@ arch=('x86_64') depends=('vulkan-icd-loader' 'libgl' 'libegl' 'obs-studio>=27') makedepends=('gcc' 'cmake' 'vulkan-headers' 'lib32-gcc-libs' 'lib32-vulkan-icd-loader' 'lib32-libgl' 'lib32-libegl') source=("https://github.com/nowrep/$pkgbase/archive/v$pkgver/$pkgbase-$pkgver.tar.gz") -sha512sums=('1a9da496cd2b1ce2d678ac118845709efdff13b2ddce8816b20c9c4b210b652b674f5e10da5c51a5fd648dce7d52305afa83ff984da5148ce8ca04d43da0c7a1') +sha512sums=('856a735ca3d1ed9f04c91c7e4a006aca2a72389a4ac0dee13d2b1f87da8e622d71dda400bb263499ddd04b1bc4294e7270382fc12e91e82a8ed554de8e3a4c96') build() { cmake -B build -S "$pkgbase-$pkgver" \ From 39422c29ffb0c8a3e9c980c919e051e75e9141e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 5 Apr 2024 21:24:47 +0200 Subject: [PATCH 688/971] upgpkg: gvisor-bin 20240401.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index 93cc153..ab7d2a8 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20240305.0 + pkgver = 20240401.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20240305.0::https://storage.googleapis.com/gvisor/releases/release/20240305.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20240305.0::https://storage.googleapis.com/gvisor/releases/release/20240305.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = 6fe6f09ea45c9d73592c823834632debbb4cb1fae64b23e7feb0dba37e925cb6b39d4c98a804b20d10c9f5c4bb9c2dd2055a1460999f450bee32aa49894b8a95 - sha512sums_x86_64 = ae2e6efc9a510135c6478153efc58e865d4376e9147bde7ddcf5fa7a9ad221f479af1c3ea17f34c96f380d6f669e6de7277b9ed48efdcd0ea5c46e4d7a338761 - source_aarch64 = runsc-aarch64-20240305.0::https://storage.googleapis.com/gvisor/releases/release/20240305.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20240305.0::https://storage.googleapis.com/gvisor/releases/release/20240305.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = fc14d1996b84fa757518407183e1fe50bb1ac60c678521c10e1ebb2489211addc24722317746a24fa5f2838e49adfb118b9d966c4ff5713e08931f293a736ccb - sha512sums_aarch64 = 587682b89914401b65d40e1a5dd1969c7a526c1b34feff6ef042c96659eec2a74a4d32c12fedf176a6751c4941cc1b9bd8584230bc719e7e5babfdb8957ddcd2 + source_x86_64 = runsc-x86_64-20240401.0::https://storage.googleapis.com/gvisor/releases/release/20240401.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20240401.0::https://storage.googleapis.com/gvisor/releases/release/20240401.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = c48737d39cf9f85cdfca9717237322eeba52a05e5aef8e6a843bbdbdabda998616f878eef2c4a4f26cb9348cabd02fc78389d12bdff614758cc385b6eded0448 + sha512sums_x86_64 = 6c653476af1d2cb5817323af05c224d1ba5d807006224bdc6f391e90087d896977106023a5a578ce8edc144d945b8abe3a05bb79ae25507d1fdd85c6b90d145e + source_aarch64 = runsc-aarch64-20240401.0::https://storage.googleapis.com/gvisor/releases/release/20240401.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20240401.0::https://storage.googleapis.com/gvisor/releases/release/20240401.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 933735a562d02d2c332ec80222c11292317578e44d1135ec19e5757b2c64456f70adabfb688383e8ae3079da6b309ffe84be1cf1dd90268b776f879331e33f14 + sha512sums_aarch64 = d313fe8cb1a14e6b92507e8e128270f8fadedb66efff47586765983236a50ce07a02d6dc40726fc8b7ccc037b46f2593f3a6824ade227a0e269bc71fa7eb0868 pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index 3db9c99..bdab9bb 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20240305.0 +pkgver=20240401.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('6fe6f09ea45c9d73592c823834632debbb4cb1fae64b23e7feb0dba37e925cb6b39d4c98a804b20d10c9f5c4bb9c2dd2055a1460999f450bee32aa49894b8a95' - 'ae2e6efc9a510135c6478153efc58e865d4376e9147bde7ddcf5fa7a9ad221f479af1c3ea17f34c96f380d6f669e6de7277b9ed48efdcd0ea5c46e4d7a338761') -sha512sums_aarch64=('fc14d1996b84fa757518407183e1fe50bb1ac60c678521c10e1ebb2489211addc24722317746a24fa5f2838e49adfb118b9d966c4ff5713e08931f293a736ccb' - '587682b89914401b65d40e1a5dd1969c7a526c1b34feff6ef042c96659eec2a74a4d32c12fedf176a6751c4941cc1b9bd8584230bc719e7e5babfdb8957ddcd2') +sha512sums_x86_64=('c48737d39cf9f85cdfca9717237322eeba52a05e5aef8e6a843bbdbdabda998616f878eef2c4a4f26cb9348cabd02fc78389d12bdff614758cc385b6eded0448' + '6c653476af1d2cb5817323af05c224d1ba5d807006224bdc6f391e90087d896977106023a5a578ce8edc144d945b8abe3a05bb79ae25507d1fdd85c6b90d145e') +sha512sums_aarch64=('933735a562d02d2c332ec80222c11292317578e44d1135ec19e5757b2c64456f70adabfb688383e8ae3079da6b309ffe84be1cf1dd90268b776f879331e33f14' + 'd313fe8cb1a14e6b92507e8e128270f8fadedb66efff47586765983236a50ce07a02d6dc40726fc8b7ccc037b46f2593f3a6824ade227a0e269bc71fa7eb0868') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From ee35ff2f47739b36f4680bb71c39880b1ce01383 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 5 Apr 2024 21:25:08 +0200 Subject: [PATCH 689/971] upgpkg: gvisor-git 20240401.0-1 upstream release --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index 6422aaa..4cee48a 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20240305.0 + pkgver = 20240401.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index 1c7a24a..8c594da 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20240305.0 +pkgver=20240401.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From 8a5209b50c31f213958da59c9f74004582866b4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 8 Apr 2024 20:50:23 +0200 Subject: [PATCH 690/971] upgpkg: clonezilla-unstable 5.6.1-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 302fa2f..eb5d92b 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.31 + pkgver = 5.6.1 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.31.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.1.tar.xz source = usrbin.patch - sha512sums = ac80d66468b3fb19684ea6bfefa8d2b3d91f256a381248fb8a7eeb8c137947c3cfd2231a66acfc357dd69715f46605efa3f72d42bd583998ce3d937d67408187 + sha512sums = 0ebcfe7bd749998e4fc636333213e3ac6709eb8e06b94554edaafc36913da7abf3f95c73a7530b9b7e2e682f29d9e13f0d78f8014818f4a307760194694007ce sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index a6a649b..6c02199 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.31 +pkgver=5.6.1 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('ac80d66468b3fb19684ea6bfefa8d2b3d91f256a381248fb8a7eeb8c137947c3cfd2231a66acfc357dd69715f46605efa3f72d42bd583998ce3d937d67408187' +sha512sums=('0ebcfe7bd749998e4fc636333213e3ac6709eb8e06b94554edaafc36913da7abf3f95c73a7530b9b7e2e682f29d9e13f0d78f8014818f4a307760194694007ce' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 6b96f5d8e478d400b3a1afd0c7b8ff2f3a40c044 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 8 Apr 2024 20:50:23 +0200 Subject: [PATCH 691/971] upgpkg: clonezilla-unstable 5.6.1-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 302fa2f..eb5d92b 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.5.31 + pkgver = 5.6.1 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.5.31.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.1.tar.xz source = usrbin.patch - sha512sums = ac80d66468b3fb19684ea6bfefa8d2b3d91f256a381248fb8a7eeb8c137947c3cfd2231a66acfc357dd69715f46605efa3f72d42bd583998ce3d937d67408187 + sha512sums = 0ebcfe7bd749998e4fc636333213e3ac6709eb8e06b94554edaafc36913da7abf3f95c73a7530b9b7e2e682f29d9e13f0d78f8014818f4a307760194694007ce sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index a6a649b..6c02199 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.5.31 +pkgver=5.6.1 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('ac80d66468b3fb19684ea6bfefa8d2b3d91f256a381248fb8a7eeb8c137947c3cfd2231a66acfc357dd69715f46605efa3f72d42bd583998ce3d937d67408187' +sha512sums=('0ebcfe7bd749998e4fc636333213e3ac6709eb8e06b94554edaafc36913da7abf3f95c73a7530b9b7e2e682f29d9e13f0d78f8014818f4a307760194694007ce' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From f0ba3f4d4314a10312cfc0ada46573759e3b3fb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 8 Apr 2024 20:50:38 +0200 Subject: [PATCH 692/971] upgpkg: discord-electron 0.0.48-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 079d7c8..bfcd37d 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v28) for increased security and performance - pkgver = 0.0.47 + pkgver = 0.0.48 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.47/discord-0.0.47.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.48/discord-0.0.48.tar.gz source = discord-launcher.sh - sha512sums = da08bd801210d7194f8c5de1b43948e018dfccffc7685adbc28d0710351fbf9161f77ccb1e8c0c34b13d1955f53f8dd58f15470415b05d2e22057fe7ae73c703 + sha512sums = 3cffb469283de46a234f09fc42bf9963d4497ae28f71637db1230d5f8531c0d9fe00ceb6002e5f65f085a1a9511fd3ac8dd48e23431e190555d6cf8e62519f2b sha512sums = ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index fe7eae1..144d29d 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -13,7 +13,7 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.47 +pkgver=0.0.48 pkgrel=1 _electronver=28 _electronname="electron${_electronver}" @@ -35,10 +35,10 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('da08bd801210d7194f8c5de1b43948e018dfccffc7685adbc28d0710351fbf9161f77ccb1e8c0c34b13d1955f53f8dd58f15470415b05d2e22057fe7ae73c703' +sha512sums=('3cffb469283de46a234f09fc42bf9963d4497ae28f71637db1230d5f8531c0d9fe00ceb6002e5f65f085a1a9511fd3ac8dd48e23431e190555d6cf8e62519f2b' 'ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566') -_krisp_b2sum='61e6a4b2a28c83eb0ea99b9c5eaa4c6552f0549e004dcc86967ec560b86f2975b3023cde6bfcba8ee9fd758b07a49d9a6028096e6fe8c2d6489ea713b38049ef' +_krisp_b2sum='5f72dcddf45a680d16a49961d1756ac26ca555a94771ff5ece43c66783f9f311948e070f57d60c562675d993b69fc4f3375dd22e2f0d1692c1094258d71bb162' prepare() { # prepare launcher script From b43228e4bdd973a5da20806385910df054414a6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 8 Apr 2024 20:50:43 +0200 Subject: [PATCH 693/971] upgpkg: discord-electron-openasar 0.0.48+827-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index d93a95f..0dfdd6f 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v28) for increased security and performance - pkgver = 0.0.47+827 + pkgver = 0.0.48+827 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,10 +21,10 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.47/discord-0.0.47.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.48/discord-0.0.48.tar.gz source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d - sha512sums = da08bd801210d7194f8c5de1b43948e018dfccffc7685adbc28d0710351fbf9161f77ccb1e8c0c34b13d1955f53f8dd58f15470415b05d2e22057fe7ae73c703 + sha512sums = 3cffb469283de46a234f09fc42bf9963d4497ae28f71637db1230d5f8531c0d9fe00ceb6002e5f65f085a1a9511fd3ac8dd48e23431e190555d6cf8e62519f2b sha512sums = ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566 sha512sums = 055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 848c665..23291f3 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -6,7 +6,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.47+827 +pkgver=0.0.48+827 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=28 @@ -30,11 +30,11 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d") -sha512sums=('da08bd801210d7194f8c5de1b43948e018dfccffc7685adbc28d0710351fbf9161f77ccb1e8c0c34b13d1955f53f8dd58f15470415b05d2e22057fe7ae73c703' +sha512sums=('3cffb469283de46a234f09fc42bf9963d4497ae28f71637db1230d5f8531c0d9fe00ceb6002e5f65f085a1a9511fd3ac8dd48e23431e190555d6cf8e62519f2b' 'ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566' '055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849') -_krisp_b2sum='61e6a4b2a28c83eb0ea99b9c5eaa4c6552f0549e004dcc86967ec560b86f2975b3023cde6bfcba8ee9fd758b07a49d9a6028096e6fe8c2d6489ea713b38049ef' +_krisp_b2sum='5f72dcddf45a680d16a49961d1756ac26ca555a94771ff5ece43c66783f9f311948e070f57d60c562675d993b69fc4f3375dd22e2f0d1692c1094258d71bb162' # just in case I get the version wrong pkgver() { From 5d5194dd5f1ff768b8cf0d15beb3914151859321 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 8 Apr 2024 21:54:49 +0200 Subject: [PATCH 694/971] upgpkg: systemtap 5.0-1 upstream release --- systemtap/.SRCINFO | 17 ++++----- systemtap/PKGBUILD | 74 ++++++++++++++++--------------------- systemtap/systemtap.install | 20 +++++----- 3 files changed, 49 insertions(+), 62 deletions(-) diff --git a/systemtap/.SRCINFO b/systemtap/.SRCINFO index 5a1318a..5e93981 100644 --- a/systemtap/.SRCINFO +++ b/systemtap/.SRCINFO @@ -1,26 +1,23 @@ pkgbase = systemtap pkgdesc = Infrastructure to simplify the gathering of information about the running Linux system - pkgver = 4.8 + pkgver = 5.0 pkgrel = 1 - url = http://sourceware.org/systemtap/ + url = https://sourceware.org/systemtap/ install = systemtap.install arch = x86_64 - arch = i686 license = GPL makedepends = python-setuptools - makedepends = python2-setuptools makedepends = xmlto depends = elfutils depends = nss depends = python depends = cpio optdepends = sqlite3: for storing results in a database - source = systemtap-4.8.tar.gz::https://sourceware.org/ftp/systemtap/releases/systemtap-4.8.tar.gz - source = systemtap-4.8.tar.gz.asc::https://sourceware.org/ftp/systemtap/releases/systemtap-4.8.tar.gz.sig - validpgpkeys = F75E6545B9F8AA15AA932A444DE16D68FDBFFFB8 - validpgpkeys = 5D38116FA4D3A7CC77E378D37E83610126DCC2E8 - validpgpkeys = 159B0DF71150B8A8539A8802D7C256443CC637CA - sha512sums = fdcbc48ba17b2155c1419d99147a4cfbee2e69db945bfd0e6881b71ab11165bd23ea7ce9456856ae36807fb18f9934880a6b7c44456b63833ea260038744d9f2 + options = !emptydirs + source = https://sourceware.org/ftp/systemtap/releases/systemtap-5.0.tar.gz + source = https://sourceware.org/ftp/systemtap/releases/systemtap-5.0.tar.gz.asc + validpgpkeys = 41A0C11274B1E87FE28E4C53E3D77E1F95161991 + sha512sums = dc511a05e66abcbbd8c926973962751196180f3c571d0cd2a3b158ae367c5339ad32967a680ecd03224ab5f7ed2c55be7064867e4fb1b1cd7ea1cb21b2436e4c sha512sums = SKIP pkgname = systemtap diff --git a/systemtap/PKGBUILD b/systemtap/PKGBUILD index bfdbabb..a899440 100644 --- a/systemtap/PKGBUILD +++ b/systemtap/PKGBUILD @@ -1,56 +1,46 @@ -# Maintainer: Christian Pellegrin (chripell) -# Original Maintainer: An Nguyen (stk) -# Original Maintainer: George Angelopoulos -# Original Maintainer: Christian Rebischke -# Original Maintainer: dront78 +# Maintainer: Manuel Hüsers +# Contributor: Christian Pellegrin (chripell) +# Contributor: An Nguyen (stk) +# Contributor: George Angelopoulos +# Contributor: Christian Rebischke +# Contributor: dront78 + pkgname=systemtap -pkgver=4.8 +pkgver=5.0 pkgrel=1 pkgdesc="Infrastructure to simplify the gathering of information about the running Linux system" -url="http://sourceware.org/systemtap/" -arch=('x86_64' 'i686') +url="https://sourceware.org/systemtap/" +arch=('x86_64') license=('GPL') depends=('elfutils' 'nss' 'python' 'cpio') -makedepends=('python-setuptools' 'python2-setuptools' 'xmlto') +makedepends=('python-setuptools' 'xmlto') optdepends=('sqlite3: for storing results in a database') -source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/ftp/systemtap/releases/${pkgname}-${pkgver}.tar.gz" - "${pkgname}-${pkgver}.tar.gz.asc::https://sourceware.org/ftp/systemtap/releases/${pkgname}-${pkgver}.tar.gz.sig" - ) -sha512sums=('fdcbc48ba17b2155c1419d99147a4cfbee2e69db945bfd0e6881b71ab11165bd23ea7ce9456856ae36807fb18f9934880a6b7c44456b63833ea260038744d9f2' +options=('!emptydirs') +install="${pkgname}.install" +source=("https://sourceware.org/ftp/${pkgname}/releases/${pkgname}-${pkgver}.tar.gz"{,.asc}) +sha512sums=('dc511a05e66abcbbd8c926973962751196180f3c571d0cd2a3b158ae367c5339ad32967a680ecd03224ab5f7ed2c55be7064867e4fb1b1cd7ea1cb21b2436e4c' 'SKIP') -install='systemtap.install' -# Note, you need to run: -# gpg --recv-keys --keyserver hkps://keys.openpgp.org/ 0xD7C256443CC637CA -# unless /etc/pacman.d/gnupg/gpg.conf is updated. -validpgpkeys=('F75E6545B9F8AA15AA932A444DE16D68FDBFFFB8' # "Serhei Makarov (for Red Hat 2018..onwards) " - '5D38116FA4D3A7CC77E378D37E83610126DCC2E8' - '159B0DF71150B8A8539A8802D7C256443CC637CA') -prepare() { - cd "${pkgname}-${pkgver}" -} +validpgpkeys=('41A0C11274B1E87FE28E4C53E3D77E1F95161991') build() { - cd "${pkgname}-${pkgver}" - ./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --libexecdir=/usr/lib/"${pkgname}" \ - --libdir=/usr/lib/"${pkgname}" \ - --mandir=/usr/share/man/ \ - --sbindir=/usr/bin \ - --localstatedir=/var \ - --enable-pie \ - --disable-docs \ - --enable-htmldocs \ - --with-python3 - make + cd "${pkgname}-${pkgver}" + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib/"${pkgname}" \ + --libdir=/usr/lib/"${pkgname}" \ + --mandir=/usr/share/man/ \ + --sbindir=/usr/bin \ + --localstatedir=/var \ + --enable-pie \ + --disable-docs \ + --enable-htmldocs \ + --with-python3 + make } package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install - rmdir "${pkgdir}/var/run/stap-server/" - rmdir "${pkgdir}/var/run/" - rm -r "${pkgdir}/usr/include" + cd "${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install } diff --git a/systemtap/systemtap.install b/systemtap/systemtap.install index bde565f..f39e7c3 100644 --- a/systemtap/systemtap.install +++ b/systemtap/systemtap.install @@ -1,18 +1,18 @@ post_install() { - getent group stapusr >/dev/null || groupadd -g 156 -r stapusr 2>/dev/null || groupadd -r stapusr - getent group stapsys >/dev/null || groupadd -g 157 -r stapsys 2>/dev/null || groupadd -r stapsys - getent group stapdev >/dev/null || groupadd -g 158 -r stapdev 2>/dev/null || groupadd -r stapdev + getent group stapusr >/dev/null || groupadd -g 156 -r stapusr 2>/dev/null || groupadd -r stapusr + getent group stapsys >/dev/null || groupadd -g 157 -r stapsys 2>/dev/null || groupadd -r stapsys + getent group stapdev >/dev/null || groupadd -g 158 -r stapdev 2>/dev/null || groupadd -r stapdev - getent group stapusr >/dev/null && chgrp stapusr /usr/bin/stapbpf - chmod 04110 /usr/bin/stapbpf + getent group stapusr >/dev/null && chgrp stapusr /usr/bin/stapbpf + chmod 04110 /usr/bin/stapbpf - getent group stapusr >/dev/null && chgrp stapusr /usr/bin/staprun - chmod 04110 /usr/bin/staprun + getent group stapusr >/dev/null && chgrp stapusr /usr/bin/staprun + chmod 04110 /usr/bin/staprun - echo "CONFIG_DEBUG_INFO is disabled on default. You need to recompile" - echo "the kernel with CONFIG_DEBUG_INFO enabled." + echo "CONFIG_DEBUG_INFO is disabled on default. You need to recompile" + echo "the kernel with CONFIG_DEBUG_INFO enabled." } post_upgrade() { - post_install $1 + post_install $1 } From 0e512c060b93a2e053737f9879af889ef6207aca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 8 Apr 2024 22:42:14 +0200 Subject: [PATCH 695/971] upgpkg: sublime-text-3 3.3211-5 Fix title bar icon by using a launcher script instead of symlink --- sublime-text-3/.SRCINFO | 6 ++++-- sublime-text-3/PKGBUILD | 29 +++++++++++++++++------------ sublime-text-3/sublime-text-3.sh | 3 +++ 3 files changed, 24 insertions(+), 14 deletions(-) create mode 100644 sublime-text-3/sublime-text-3.sh diff --git a/sublime-text-3/.SRCINFO b/sublime-text-3/.SRCINFO index 1b75679..4f75fb2 100644 --- a/sublime-text-3/.SRCINFO +++ b/sublime-text-3/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = sublime-text-3 pkgdesc = Sophisticated text editor for code, html and prose (legacy version) pkgver = 3.3211 - pkgrel = 4 + pkgrel = 5 url = https://www.sublimetext.com/3 install = sublime-text-3.install arch = x86_64 @@ -9,6 +9,8 @@ pkgbase = sublime-text-3 depends = libpng depends = gtk2 source = https://download.sublimetext.com/sublime_text_3_build_3211_x64.tar.bz2 - sha256sums = 0b3c8ca5e6df376c3c24a4b9ac2e3b391333f73b229bc6e87d0b4a5f636d74ee + source = sublime-text-3.sh + sha512sums = a6a068119eff95c5360e9ccbe1d845e7a93e4ad13b3659073752a7bd0e87f4691555820185514875649e677a4e8702e2338f74f5584fc80f69c16b323685d6f1 + sha512sums = ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9 pkgname = sublime-text-3 diff --git a/sublime-text-3/PKGBUILD b/sublime-text-3/PKGBUILD index 2172438..b607d65 100644 --- a/sublime-text-3/PKGBUILD +++ b/sublime-text-3/PKGBUILD @@ -3,19 +3,29 @@ pkgname=sublime-text-3 pkgver=3.3211 -pkgrel=4 +pkgrel=5 pkgdesc='Sophisticated text editor for code, html and prose (legacy version)' arch=('x86_64') url='https://www.sublimetext.com/3' license=('custom') depends=('libpng' 'gtk2') install="${pkgname}.install" -source=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2") -sha256sums=('0b3c8ca5e6df376c3c24a4b9ac2e3b391333f73b229bc6e87d0b4a5f636d74ee') +source=("https://download.sublimetext.com/sublime_text_3_build_${pkgver:2}_x64.tar.bz2" + "${pkgname}.sh") +sha512sums=('a6a068119eff95c5360e9ccbe1d845e7a93e4ad13b3659073752a7bd0e87f4691555820185514875649e677a4e8702e2338f74f5584fc80f69c16b323685d6f1' + 'ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9') + +prepare() { + sed -i -e "s|@ST_PATH@|/opt/sublime_text_3|g" "${pkgname}.sh" + + # Adjust naming in desktop entry + sed -i -e 's#Sublime Text#Sublime Text 3#g' 'sublime_text_3/sublime_text.desktop' + sed -i -e 's#sublime-text#sublime-text-3#g' 'sublime_text_3/sublime_text.desktop' + sed -i -e 's#/opt/sublime_text/sublime_text#/usr/bin/subl3#g' 'sublime_text_3/sublime_text.desktop' + sed -i -e '\#^StartupNotify=#a StartupWMClass=subl3' 'sublime_text_3/sublime_text.desktop' +} package() { - cd "${srcdir}" - # Install sublime text 3 install -dm755 "${pkgdir}/opt" cp --preserve=mode -r 'sublime_text_3' "${pkgdir}/opt/sublime_text_3" @@ -27,15 +37,10 @@ package() { ln -s "/opt/sublime_text_3/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text-3.png" done - # Adjust naming and install desktop entry and executable - sed -i 's#Sublime Text#Sublime Text 3#g' 'sublime_text_3/sublime_text.desktop' - sed -i 's#sublime-text#sublime-text-3#g' 'sublime_text_3/sublime_text.desktop' - sed -i 's#/opt/sublime_text/sublime_text#/usr/bin/subl3#g' 'sublime_text_3/sublime_text.desktop' - sed -i '\#^StartupNotify=#a StartupWMClass=subl3' 'sublime_text_3/sublime_text.desktop' - + # Install desktop entry and executable install -dm755 "${pkgdir}/usr/share/applications" install -Dm644 'sublime_text_3/sublime_text.desktop' "${pkgdir}/usr/share/applications/sublime_text_3.desktop" install -dm755 "${pkgdir}/usr/bin" - ln -s '/opt/sublime_text_3/sublime_text' "${pkgdir}/usr/bin/subl3" + install -Dm755 "${pkgname}.sh" "${pkgdir}/usr/bin/subl3" } diff --git a/sublime-text-3/sublime-text-3.sh b/sublime-text-3/sublime-text-3.sh new file mode 100644 index 0000000..5d228a4 --- /dev/null +++ b/sublime-text-3/sublime-text-3.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +exec @ST_PATH@/sublime_text "$@" From 227dddd05f97dedca3a36ed16c7751ed4a76e6d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 8 Apr 2024 22:42:42 +0200 Subject: [PATCH 696/971] upgpkg: sublime-text-4 4.4169-2 Fix title bar icon by using a launcher script instead of symlink --- sublime-text-4/.SRCINFO | 8 +++++--- sublime-text-4/PKGBUILD | 17 ++++++++++------- sublime-text-4/sublime-text-4.sh | 3 +++ 3 files changed, 18 insertions(+), 10 deletions(-) create mode 100644 sublime-text-4/sublime-text-4.sh diff --git a/sublime-text-4/.SRCINFO b/sublime-text-4/.SRCINFO index ee46166..1fd492b 100644 --- a/sublime-text-4/.SRCINFO +++ b/sublime-text-4/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = sublime-text-4 pkgdesc = Sophisticated text editor for code, html and prose - stable build pkgver = 4.4169 - pkgrel = 1 + pkgrel = 2 url = https://www.sublimetext.com/download arch = x86_64 arch = aarch64 @@ -10,9 +10,11 @@ pkgbase = sublime-text-4 depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = sublime_text_4_4_4169_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4169_x64.tar.xz + source = sublime-text-4.sh + sha512sums = ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9 + source_x86_64 = sublime_text_4_4_4169_2_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4169_x64.tar.xz sha512sums_x86_64 = 6764363f8f92f65532d64ba014023e28b18f40dc62a1b114239b59360257d445494f9a2f57580174b5f4994c8fa06cd8f562c9419cfda92324c9ebf25d15e576 - source_aarch64 = sublime_text_4_4_4169_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4169_arm64.tar.xz + source_aarch64 = sublime_text_4_4_4169_2_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4169_arm64.tar.xz sha512sums_aarch64 = e9964f55a5bff89fc0ad13266cc7695c8e0cc41d86caed212836fd737c3b52d84400c683b3f9699b554e71fa2d3ed3cc4351cfebcf9f182512211227465db3d6 pkgname = sublime-text-4 diff --git a/sublime-text-4/PKGBUILD b/sublime-text-4/PKGBUILD index 4102e4a..fe0dc34 100644 --- a/sublime-text-4/PKGBUILD +++ b/sublime-text-4/PKGBUILD @@ -2,7 +2,7 @@ pkgname=sublime-text-4 pkgver=4.4169 -pkgrel=1 +pkgrel=2 pkgdesc='Sophisticated text editor for code, html and prose - stable build' arch=('x86_64' 'aarch64') url='https://www.sublimetext.com/download' @@ -11,15 +11,21 @@ depends=('libpng' 'gtk3') conflicts=('sublime-text') provides=('sublime-text') +source=("${pkgname}.sh") source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") +sha512sums=('ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9') sha512sums_x86_64=('6764363f8f92f65532d64ba014023e28b18f40dc62a1b114239b59360257d445494f9a2f57580174b5f4994c8fa06cd8f562c9419cfda92324c9ebf25d15e576') sha512sums_aarch64=('e9964f55a5bff89fc0ad13266cc7695c8e0cc41d86caed212836fd737c3b52d84400c683b3f9699b554e71fa2d3ed3cc4351cfebcf9f182512211227465db3d6') -package() { - cd "${srcdir}" +prepare() { + sed -i -e "s|@ST_PATH@|/opt/sublime_text|g" "${pkgname}.sh" + sed -i -e 's#/opt/sublime_text/sublime_text#/usr/bin/subl#g' 'sublime_text/sublime_text.desktop' + sed -i -e '\#^StartupNotify=#a StartupWMClass=subl' 'sublime_text/sublime_text.desktop' +} +package() { install -dm755 "${pkgdir}/opt" cp --preserve=mode -r 'sublime_text' "${pkgdir}/opt/sublime_text" rm -f "${pkgdir}/opt/sublime_text/sublime_text.desktop" @@ -29,12 +35,9 @@ package() { ln -s "/opt/sublime_text/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text.png" done - sed -i 's#/opt/sublime_text/sublime_text#/usr/bin/subl#g' 'sublime_text/sublime_text.desktop' - sed -i '\#^StartupNotify=#a StartupWMClass=subl' 'sublime_text/sublime_text.desktop' - install -dm755 "${pkgdir}/usr/share/applications" install -Dm644 'sublime_text/sublime_text.desktop' "${pkgdir}/usr/share/applications/sublime_text.desktop" install -dm755 "${pkgdir}/usr/bin" - ln -s '/opt/sublime_text/sublime_text' "${pkgdir}/usr/bin/subl" + install -Dm755 "${pkgname}.sh" "${pkgdir}/usr/bin/subl" } diff --git a/sublime-text-4/sublime-text-4.sh b/sublime-text-4/sublime-text-4.sh new file mode 100644 index 0000000..5d228a4 --- /dev/null +++ b/sublime-text-4/sublime-text-4.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +exec @ST_PATH@/sublime_text "$@" From e4020df88d4a2bcacf91d9e0f4d7717a9dcee3c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 8 Apr 2024 22:43:02 +0200 Subject: [PATCH 697/971] upgpkg: sublime-text-dev 4.4173-2 Fix title bar icon by using a launcher script instead of symlink --- sublime-text-dev/.SRCINFO | 8 +++++--- sublime-text-dev/PKGBUILD | 17 ++++++++++------- sublime-text-dev/sublime-text-dev.sh | 3 +++ 3 files changed, 18 insertions(+), 10 deletions(-) create mode 100644 sublime-text-dev/sublime-text-dev.sh diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 2d48626..503b8d6 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build pkgver = 4.4173 - pkgrel = 1 + pkgrel = 2 url = https://www.sublimetext.com/dev install = sublime-text-dev.install arch = x86_64 @@ -11,9 +11,11 @@ pkgbase = sublime-text-dev depends = gtk3 provides = sublime-text conflicts = sublime-text - source_x86_64 = sublime_text_dev_4_4173_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4173_x64.tar.xz + source = sublime-text-dev.sh + sha512sums = ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9 + source_x86_64 = sublime_text_dev_4_4173_2_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4173_x64.tar.xz sha512sums_x86_64 = 91c1359be4789caf5bfa206ae48736a2dd777559a84f8b282f7a7101a9b8b50fe5e073bdb1496475cdcfe1b9c14707ed9d0fedaa7ef37802085d2e2197c18317 - source_aarch64 = sublime_text_dev_4_4173_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4173_arm64.tar.xz + source_aarch64 = sublime_text_dev_4_4173_2_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4173_arm64.tar.xz sha512sums_aarch64 = 2d49124aa8493e0e6460e8ea42f89774dde791952f17ada942e99d45703bddd09cfc98d0918a9df411712afe6b957f60d0c879def7eb5fd8f7a860f02388ebda pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 68d95ef..be25333 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -4,7 +4,7 @@ pkgname=sublime-text-dev pkgver=4.4173 -pkgrel=1 +pkgrel=2 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') url='https://www.sublimetext.com/dev' @@ -14,15 +14,21 @@ conflicts=('sublime-text') provides=('sublime-text') install=${pkgname}.install +source=("${pkgname}.sh") source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_x64.tar.xz") source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") +sha512sums=('ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9') sha512sums_x86_64=('91c1359be4789caf5bfa206ae48736a2dd777559a84f8b282f7a7101a9b8b50fe5e073bdb1496475cdcfe1b9c14707ed9d0fedaa7ef37802085d2e2197c18317') sha512sums_aarch64=('2d49124aa8493e0e6460e8ea42f89774dde791952f17ada942e99d45703bddd09cfc98d0918a9df411712afe6b957f60d0c879def7eb5fd8f7a860f02388ebda') -package() { - cd "${srcdir}" +prepare() { + sed -i -e "s|@ST_PATH@|/opt/sublime_text|g" "${pkgname}.sh" + sed -i -e 's#/opt/sublime_text/sublime_text#/usr/bin/subl#g' 'sublime_text/sublime_text.desktop' + sed -i -e '\#^StartupNotify=#a StartupWMClass=subl' 'sublime_text/sublime_text.desktop' +} +package() { install -dm755 "${pkgdir}/opt" cp --preserve=mode -r 'sublime_text' "${pkgdir}/opt/sublime_text" rm -f "${pkgdir}/opt/sublime_text/sublime_text.desktop" @@ -32,12 +38,9 @@ package() { ln -s "/opt/sublime_text/Icon/${res}/sublime-text.png" "${pkgdir}/usr/share/icons/hicolor/${res}/apps/sublime-text.png" done - sed -i 's#/opt/sublime_text/sublime_text#/usr/bin/subl#g' 'sublime_text/sublime_text.desktop' - sed -i '\#^StartupNotify=#a StartupWMClass=subl' 'sublime_text/sublime_text.desktop' - install -dm755 "${pkgdir}/usr/share/applications" install -Dm644 'sublime_text/sublime_text.desktop' "${pkgdir}/usr/share/applications/sublime_text.desktop" install -dm755 "${pkgdir}/usr/bin" - ln -s '/opt/sublime_text/sublime_text' "${pkgdir}/usr/bin/subl" + install -Dm755 "${pkgname}.sh" "${pkgdir}/usr/bin/subl" } diff --git a/sublime-text-dev/sublime-text-dev.sh b/sublime-text-dev/sublime-text-dev.sh new file mode 100644 index 0000000..5d228a4 --- /dev/null +++ b/sublime-text-dev/sublime-text-dev.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +exec @ST_PATH@/sublime_text "$@" From f3206040a9818752040ff399aac11790010e64b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 8 Apr 2024 22:53:57 +0200 Subject: [PATCH 698/971] systemtap: Remove redundant .gitignore --- systemtap/.gitignore | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 systemtap/.gitignore diff --git a/systemtap/.gitignore b/systemtap/.gitignore deleted file mode 100644 index e93be39..0000000 --- a/systemtap/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -*.tar.xz -*.tar.gz -*.asc -pkg -src From f38a0ff4a3682b34f9e915c1f8e77ddd8797ca4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 8 Apr 2024 22:58:27 +0200 Subject: [PATCH 699/971] ect: Add sha512 checksums --- ect/.SRCINFO | 6 +++--- ect/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ect/.SRCINFO b/ect/.SRCINFO index 7ddd757..eda3aaf 100644 --- a/ect/.SRCINFO +++ b/ect/.SRCINFO @@ -12,8 +12,8 @@ pkgbase = ect source = git+https://github.com/fhanau/efficient-compression-tool.git#tag=v0.9.5 source = git+https://github.com/glennrp/libpng.git#commit=f135775ad4e5d4408d2e12ffcc71bb36e6b48551 source = git+https://github.com/fhanau/mozjpeg.git#commit=182457e3e26e1e078d5dbd09137cf04865be2e49 - sha512sums = SKIP - sha512sums = SKIP - sha512sums = SKIP + sha512sums = a1d0ad86aa8e6d720575daf7e833c3b787ac51595774b99b6fd4a8ece616150c2e2c174aa97a2bc0b89e16d6cd93ec0c0d657430c1a41bf08b121368af0a4abc + sha512sums = 13e286cf091b284d15888a959a8be5a90977bed92d861fd72d465199bd6112641b47d74a525d4100868d528a25921958e9ab579643b705befe48e5756ffa301f + sha512sums = 2d3f96c90cfa355797c4ebed9e5568d53f7fe7a1a225007908ea356c0a808cef856004b411b91beb2311102c3c77ea2eed37f3b8b2a9c057b8905c1d21d06383 pkgname = ect diff --git a/ect/PKGBUILD b/ect/PKGBUILD index 9acc7cd..9984843 100644 --- a/ect/PKGBUILD +++ b/ect/PKGBUILD @@ -15,9 +15,9 @@ makedepends=('nasm' 'git' 'cmake') source=("git+$url.git#tag=v$pkgver" 'git+https://github.com/glennrp/libpng.git#commit=f135775ad4e5d4408d2e12ffcc71bb36e6b48551' 'git+https://github.com/fhanau/mozjpeg.git#commit=182457e3e26e1e078d5dbd09137cf04865be2e49') -sha512sums=('SKIP' - 'SKIP' - 'SKIP') +sha512sums=('a1d0ad86aa8e6d720575daf7e833c3b787ac51595774b99b6fd4a8ece616150c2e2c174aa97a2bc0b89e16d6cd93ec0c0d657430c1a41bf08b121368af0a4abc' + '13e286cf091b284d15888a959a8be5a90977bed92d861fd72d465199bd6112641b47d74a525d4100868d528a25921958e9ab579643b705befe48e5756ffa301f' + '2d3f96c90cfa355797c4ebed9e5568d53f7fe7a1a225007908ea356c0a808cef856004b411b91beb2311102c3c77ea2eed37f3b8b2a9c057b8905c1d21d06383') prepare() { cd "$_pkgname" From 4814f84b92eb69e4ba2fbaac93eb1ec6e7724c3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 8 Apr 2024 23:10:35 +0200 Subject: [PATCH 700/971] Replace checksums with sha512 --- florence/.SRCINFO | 2 +- florence/PKGBUILD | 2 +- libqxt/.SRCINFO | 10 +++++----- libqxt/PKGBUILD | 10 +++++----- nginx-mod-form-input/.SRCINFO | 5 ++--- nginx-mod-form-input/PKGBUILD | 6 +++--- plymouth-theme-arch-logo/.SRCINFO | 2 +- plymouth-theme-arch-logo/PKGBUILD | 4 +--- polkit-explorer-git/.SRCINFO | 2 +- polkit-explorer-git/PKGBUILD | 2 +- rc-local/.SRCINFO | 4 ++-- rc-local/PKGBUILD | 4 ++-- 12 files changed, 25 insertions(+), 28 deletions(-) diff --git a/florence/.SRCINFO b/florence/.SRCINFO index bdb10fa..8c5fde2 100644 --- a/florence/.SRCINFO +++ b/florence/.SRCINFO @@ -14,6 +14,6 @@ pkgbase = florence depends = gettext depends = gstreamer>=1.0 source = http://sourceforge.net/projects/florence/files/florence/0.6.3/florence-0.6.3.tar.bz2 - sha256sums = 422992fd07d285be73cce721a203e22cee21320d69b0fda1579ce62944c5091e + sha512sums = c527e8c40c9a594106420a6187945d79dfa7ddb4f628805cd188c8a37f79f42cbc1f74b80e21186f104a79c4d5e90c7a9d93cbe35bf1c6ebfe874db047fbef3c pkgname = florence diff --git a/florence/PKGBUILD b/florence/PKGBUILD index 0f6f8d5..3b64907 100644 --- a/florence/PKGBUILD +++ b/florence/PKGBUILD @@ -13,7 +13,7 @@ license=('GPL') depends=('gtk3' 'libxml2' 'librsvg' 'libxtst' 'gettext' 'gstreamer>=1.0') # http://florence.sourceforge.net/english/install.html makedepends=('intltool>=0.23') source=("http://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2") -sha256sums=('422992fd07d285be73cce721a203e22cee21320d69b0fda1579ce62944c5091e') +sha512sums=('c527e8c40c9a594106420a6187945d79dfa7ddb4f628805cd188c8a37f79f42cbc1f74b80e21186f104a79c4d5e90c7a9d93cbe35bf1c6ebfe874db047fbef3c') build() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/libqxt/.SRCINFO b/libqxt/.SRCINFO index 967e8c2..5aecc88 100644 --- a/libqxt/.SRCINFO +++ b/libqxt/.SRCINFO @@ -19,10 +19,10 @@ pkgbase = libqxt source = libqxt-media-keys.patch source = libqxt-header-fix.patch source = libqxt-gcc6.patch - sha256sums = be890afa72158a2074e1f625dcc16716e3e61202f035f1b8528af570760b466b - sha256sums = 0a993e1b45ab885e87fbcceb31652833a287b93d33d0184b6c6786d76f9a7b50 - sha256sums = 2696813b70ddaea284228901fd545213c0b8dacc8aa0cd0f2a7e10537ff1e3cc - sha256sums = 3f92674e0c4aa54351362c61f98606957a7224a43eedfa337081f2013203cd85 - sha256sums = 48f54a303371813c1325293c00d15bb597d689947fddab630f8edc373f59d3fc + sha512sums = 13bc6d33694b43b07a1f40c27641389e21c5b172d75ee2f5cca1b818dc6c89e5f7d458cc6085b00079ae0b6dc63bca20fb2522125d293845e24612124e8d2592 + sha512sums = 6694fdea69fb0a84f4e8fc48c004f75599689624ca3a2b4cb60dd30115c8a2e3cd4e54a5a4e105050888d390610671f2e6087603135ccee9b899d1df24e982b9 + sha512sums = 35c5374d86f5a16a2e1bf002a4e02e2f33aa819db0ec568a73822daf5174a23b6496d96977ca319b0c3d2f312f2e31d75cd6b9983a87c8cd1b20520d20d504a3 + sha512sums = 01497cccc20ae7c39209cdb37260267e756d8e7bb276685019001f4288bff900b2aed0dcfefd5e2afdf411258bec078c4c0803a99eb218ceb230eed5f54ce958 + sha512sums = 0f508074218c50aa004896038b6834b98a7a9a5f790b21db673d5c71536f7598be86fae0c0b674dc428fb102d987bedd752c6f5689b8062b9581cb92615f48c0 pkgname = libqxt diff --git a/libqxt/PKGBUILD b/libqxt/PKGBUILD index aace942..b621e48 100644 --- a/libqxt/PKGBUILD +++ b/libqxt/PKGBUILD @@ -20,11 +20,11 @@ source=("http://bitbucket.org/${pkgname}/${pkgname}/get/v${pkgver}.tar.bz2" 'libqxt-media-keys.patch' 'libqxt-header-fix.patch' 'libqxt-gcc6.patch') -sha256sums=('be890afa72158a2074e1f625dcc16716e3e61202f035f1b8528af570760b466b' - '0a993e1b45ab885e87fbcceb31652833a287b93d33d0184b6c6786d76f9a7b50' - '2696813b70ddaea284228901fd545213c0b8dacc8aa0cd0f2a7e10537ff1e3cc' - '3f92674e0c4aa54351362c61f98606957a7224a43eedfa337081f2013203cd85' - '48f54a303371813c1325293c00d15bb597d689947fddab630f8edc373f59d3fc') +sha512sums=('13bc6d33694b43b07a1f40c27641389e21c5b172d75ee2f5cca1b818dc6c89e5f7d458cc6085b00079ae0b6dc63bca20fb2522125d293845e24612124e8d2592' + '6694fdea69fb0a84f4e8fc48c004f75599689624ca3a2b4cb60dd30115c8a2e3cd4e54a5a4e105050888d390610671f2e6087603135ccee9b899d1df24e982b9' + '35c5374d86f5a16a2e1bf002a4e02e2f33aa819db0ec568a73822daf5174a23b6496d96977ca319b0c3d2f312f2e31d75cd6b9983a87c8cd1b20520d20d504a3' + '01497cccc20ae7c39209cdb37260267e756d8e7bb276685019001f4288bff900b2aed0dcfefd5e2afdf411258bec078c4c0803a99eb218ceb230eed5f54ce958' + '0f508074218c50aa004896038b6834b98a7a9a5f790b21db673d5c71536f7598be86fae0c0b674dc428fb102d987bedd752c6f5689b8062b9581cb92615f48c0') prepare() { cd "${srcdir}/${pkgname}-${pkgname}-${_pkgsuffix}" diff --git a/nginx-mod-form-input/.SRCINFO b/nginx-mod-form-input/.SRCINFO index 7c14234..95bb58a 100644 --- a/nginx-mod-form-input/.SRCINFO +++ b/nginx-mod-form-input/.SRCINFO @@ -10,8 +10,7 @@ pkgbase = nginx-mod-form-input depends = nginx-mod-ndk source = https://github.com/vision5/ngx_devel_kit/archive/v0.3.1/ngx_devel_kit-0.3.1.tar.gz source = https://github.com/calio/form-input-nginx-module/archive/v0.12/form-input-0.12.tar.gz - sha256sums = 0e971105e210d272a497567fa2e2c256f4e39b845a5ba80d373e26ba1abfbd85 - sha256sums = 5c1869d55897075adb3fdf840b21060dc54669a1f840a36d1539acc7e59dd106 + sha512sums = de1e3349d8dd08e5982279b2219dc8a8006739f0409b8e0f5c50d93434beff1fbafba43e9c5ac85a5fab90afc5c0a7244a340610339c36f82f2cba7233e72de9 + sha512sums = 1c5c5ab74156cac09da44a2dcdd84f7c03c9919a23a847e63613e00e3781ecd73d5ad12446174b4fdef9d064257a31570a8dbcccc00d8266f7048e3dcde0362e pkgname = nginx-mod-form-input - diff --git a/nginx-mod-form-input/PKGBUILD b/nginx-mod-form-input/PKGBUILD index c6ee75b..b52645e 100644 --- a/nginx-mod-form-input/PKGBUILD +++ b/nginx-mod-form-input/PKGBUILD @@ -19,8 +19,8 @@ source=( https://github.com/vision5/ngx_devel_kit/archive/v$_ndkver/ngx_devel_kit-$_ndkver.tar.gz https://github.com/calio/$_modname-nginx-module/archive/v$pkgver/$_modname-$pkgver.tar.gz ) -sha256sums=('0e971105e210d272a497567fa2e2c256f4e39b845a5ba80d373e26ba1abfbd85' - '5c1869d55897075adb3fdf840b21060dc54669a1f840a36d1539acc7e59dd106') +sha512sums=('de1e3349d8dd08e5982279b2219dc8a8006739f0409b8e0f5c50d93434beff1fbafba43e9c5ac85a5fab90afc5c0a7244a340610339c36f82f2cba7233e72de9' + '1c5c5ab74156cac09da44a2dcdd84f7c03c9919a23a847e63613e00e3781ecd73d5ad12446174b4fdef9d064257a31570a8dbcccc00d8266f7048e3dcde0362e') build() { cp -r /usr/src/nginx . @@ -39,4 +39,4 @@ package() { install -Dm644 "$srcdir"/$_modname-nginx-module-$pkgver/README.md \ "$pkgdir"/usr/share/licenses/$pkgname/README.md -} \ No newline at end of file +} diff --git a/plymouth-theme-arch-logo/.SRCINFO b/plymouth-theme-arch-logo/.SRCINFO index 18b7aa6..ba5dbab 100644 --- a/plymouth-theme-arch-logo/.SRCINFO +++ b/plymouth-theme-arch-logo/.SRCINFO @@ -8,6 +8,6 @@ pkgbase = plymouth-theme-arch-logo license = GPL depends = plymouth source = plymouth-theme-arch-logo.tar.gz - sha256sums = 553ab3efd51abefc50c10b521c24183df9ef879d080a75c54fb1c1512fbc94e6 + sha512sums = 0c834bccc32d8d2df1a0bf2ae859487eef273ddf8047a7444f3630dffbbf04a9d014242304c5b2bcd9172bea2e04195f329dfe1fe4661bcc5af29ca64104af06 pkgname = plymouth-theme-arch-logo diff --git a/plymouth-theme-arch-logo/PKGBUILD b/plymouth-theme-arch-logo/PKGBUILD index 5e1dfc7..e90fbb8 100644 --- a/plymouth-theme-arch-logo/PKGBUILD +++ b/plymouth-theme-arch-logo/PKGBUILD @@ -16,9 +16,7 @@ install="${pkgname}.install" source=( 'plymouth-theme-arch-logo.tar.gz' ) -sha256sums=( - '553ab3efd51abefc50c10b521c24183df9ef879d080a75c54fb1c1512fbc94e6' -) +sha512sums=('0c834bccc32d8d2df1a0bf2ae859487eef273ddf8047a7444f3630dffbbf04a9d014242304c5b2bcd9172bea2e04195f329dfe1fe4661bcc5af29ca64104af06') package() { cd "${srcdir}/arch-logo" diff --git a/polkit-explorer-git/.SRCINFO b/polkit-explorer-git/.SRCINFO index b037b3c..4ea97f4 100644 --- a/polkit-explorer-git/.SRCINFO +++ b/polkit-explorer-git/.SRCINFO @@ -10,6 +10,6 @@ pkgbase = polkit-explorer-git provides = polkit-explorer conflicts = polkit-explorer source = git+https://github.com/scarygliders/polkit-explorer.git - sha256sums = SKIP + sha512sums = SKIP pkgname = polkit-explorer-git diff --git a/polkit-explorer-git/PKGBUILD b/polkit-explorer-git/PKGBUILD index f53d881..40e33ad 100644 --- a/polkit-explorer-git/PKGBUILD +++ b/polkit-explorer-git/PKGBUILD @@ -12,7 +12,7 @@ depends=('python-pyqt5' 'python-lxml') conflicts=('polkit-explorer') provides=('polkit-explorer') source=("git+${url}.git") -sha256sums=('SKIP') +sha512sums=('SKIP') pkgver() { cd "${srcdir}/${pkgname%-git}" diff --git a/rc-local/.SRCINFO b/rc-local/.SRCINFO index 41dea38..1e0ddda 100644 --- a/rc-local/.SRCINFO +++ b/rc-local/.SRCINFO @@ -10,7 +10,7 @@ pkgbase = rc-local backup = etc/rc.local source = rc.local source = rc-local.service - sha256sums = 8aa661c15cf9a35c32c79055bf69ab2d16354128ddd67a1bce0a7e48fe26f2e3 - sha256sums = f8c4f7a72833bb568bd4848ad16442cb3150b438184e0a6d30348fb518f969ae + sha512sums = 4c3f8498957d47cf2c6ed6d755f6d6a6e42a59ac176b5a752ea4cdd23418d009c180bd53609bc34a1b11f720d71e702d71b4014ae4f98008c89f86323dc9afab + sha512sums = 85c7eafe5d79c4829b48c4df867e28bdb0b4464cab3581fd67e288648d416ceb69fe4e6b5193f86517f1e9578ef05fba8f708097625de6b903c6794fbec5078e pkgname = rc-local diff --git a/rc-local/PKGBUILD b/rc-local/PKGBUILD index a35cf70..984f4be 100644 --- a/rc-local/PKGBUILD +++ b/rc-local/PKGBUILD @@ -14,8 +14,8 @@ depends=('systemd') backup=('etc/rc.local') source=('rc.local' 'rc-local.service') -sha256sums=('8aa661c15cf9a35c32c79055bf69ab2d16354128ddd67a1bce0a7e48fe26f2e3' - 'f8c4f7a72833bb568bd4848ad16442cb3150b438184e0a6d30348fb518f969ae') +sha512sums=('4c3f8498957d47cf2c6ed6d755f6d6a6e42a59ac176b5a752ea4cdd23418d009c180bd53609bc34a1b11f720d71e702d71b4014ae4f98008c89f86323dc9afab' + '85c7eafe5d79c4829b48c4df867e28bdb0b4464cab3581fd67e288648d416ceb69fe4e6b5193f86517f1e9578ef05fba8f708097625de6b903c6794fbec5078e') package() { install -Dm755 'rc.local' "${pkgdir}/etc/rc.local" From 6e3a7a3ca508ae0c0dcf3c001c7b5e1db8d91cd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 9 Apr 2024 12:07:40 +0200 Subject: [PATCH 701/971] upgpkg: discord-electron 0.0.48-2: update electron, mod compat * Update Electron version to 29 * Move asar to resources subfolder for Discord client mod compatibility --- discord-electron/.SRCINFO | 8 ++++---- discord-electron/PKGBUILD | 10 +++++----- discord-electron/discord-launcher.sh | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index bfcd37d..359e633 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron - pkgdesc = Discord using system provided electron (v28) for increased security and performance + pkgdesc = Discord using system provided electron (v29) for increased security and performance pkgver = 0.0.48 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -9,7 +9,7 @@ pkgbase = discord-electron makedepends = asar makedepends = curl makedepends = python-html2text - depends = electron28 + depends = electron29 depends = libxss optdepends = libpulse: Pulseaudio support optdepends = libappindicator-gtk3: Systray indicator support @@ -21,6 +21,6 @@ pkgbase = discord-electron source = https://dl.discordapp.net/apps/linux/0.0.48/discord-0.0.48.tar.gz source = discord-launcher.sh sha512sums = 3cffb469283de46a234f09fc42bf9963d4497ae28f71637db1230d5f8531c0d9fe00ceb6002e5f65f085a1a9511fd3ac8dd48e23431e190555d6cf8e62519f2b - sha512sums = ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566 + sha512sums = 9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 144d29d..acfbd3b 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -14,8 +14,8 @@ pkgname=discord-electron _pkgname=discord pkgver=0.0.48 -pkgrel=1 -_electronver=28 +pkgrel=2 +_electronver=29 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" arch=('x86_64') @@ -36,7 +36,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') sha512sums=('3cffb469283de46a234f09fc42bf9963d4497ae28f71637db1230d5f8531c0d9fe00ceb6002e5f65f085a1a9511fd3ac8dd48e23431e190555d6cf8e62519f2b' - 'ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566') + '9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40') _krisp_b2sum='5f72dcddf45a680d16a49961d1756ac26ca555a94771ff5ece43c66783f9f311948e070f57d60c562675d993b69fc4f3375dd22e2f0d1692c1094258d71bb162' @@ -63,7 +63,7 @@ build() { asar e resources/app.asar resources/app rm resources/app.asar sed -i -e "/resourcesPath = .*;$/d" -e "s|return resourcesPath|return '/usr/lib/${_pkgname}'|" resources/app/common/paths.js - sed -i -e "s|process.resourcesPath|'/usr/lib/${_pkgname}'|" resources/app/app_bootstrap/buildInfo.js + sed -i -e "s|process.resourcesPath|'/usr/lib/${_pkgname}/resources'|" resources/app/app_bootstrap/buildInfo.js sed -i -e "/^const appName/d" -e "/^const exePath/d" -e "/^const exeDir/d" -e "/^const iconPath/d" \ -e "s|^Exec=\${exePath}$|Exec=/usr/bin/${_pkgname}|" \ -e "s|^Name=\${appName}$|Name=${_pkgname^}|" \ @@ -79,7 +79,7 @@ package() { install -d "${pkgdir}"/usr/share/{pixmaps,applications,licenses/$_pkgname} # copy relevant data - cp -r ${_pkgname^}/resources/* "${pkgdir}"/usr/lib/$_pkgname/ + cp -r ${_pkgname^}/resources "${pkgdir}"/usr/lib/$_pkgname/ cp ${_pkgname^}/$_pkgname.png \ "${pkgdir}"/usr/share/pixmaps/$_pkgname.png cp ${_pkgname^}/$_pkgname.desktop \ diff --git a/discord-electron/discord-launcher.sh b/discord-electron/discord-launcher.sh index 55ff2a0..c63b91c 100644 --- a/discord-electron/discord-launcher.sh +++ b/discord-electron/discord-launcher.sh @@ -37,6 +37,6 @@ unset flags_file krisp_bin krisp_b2 exec /usr/lib/@ELECTRON@/electron \ - /usr/lib/@PKGNAME@/app.asar \ + /usr/lib/@PKGNAME@/resources/app.asar \ --ozone-platform-hint=auto \ "${flags[@]}" "$@" From e58dddf2818368c244130963825dec06939db2a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 9 Apr 2024 12:08:16 +0200 Subject: [PATCH 702/971] upgpkg: discord-electron-openasar 0.0.48+827-2: update electron, mod compat * Update Electron version to 29 * Move asar to resources subfolder for Discord client mod compatibility --- discord-electron-openasar/.SRCINFO | 8 ++++---- discord-electron-openasar/PKGBUILD | 12 ++++++------ discord-electron-openasar/discord-launcher.sh | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 0dfdd6f..19ae440 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar - pkgdesc = Discord packaged with OpenAsar using system provided electron (v28) for increased security and performance + pkgdesc = Discord packaged with OpenAsar using system provided electron (v29) for increased security and performance pkgver = 0.0.48+827 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -11,7 +11,7 @@ pkgbase = discord-electron-openasar makedepends = nodejs makedepends = curl makedepends = python-html2text - depends = electron28 + depends = electron29 depends = libxss depends = unzip optdepends = libpulse: Pulseaudio support @@ -25,7 +25,7 @@ pkgbase = discord-electron-openasar source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d sha512sums = 3cffb469283de46a234f09fc42bf9963d4497ae28f71637db1230d5f8531c0d9fe00ceb6002e5f65f085a1a9511fd3ac8dd48e23431e190555d6cf8e62519f2b - sha512sums = ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566 + sha512sums = 9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40 sha512sums = 055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849 pkgname = discord-electron-openasar diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 23291f3..f4ce55c 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -8,8 +8,8 @@ pkgname=discord-electron-openasar _pkgname=discord pkgver=0.0.48+827 _pkgver=${pkgver%%+*} -pkgrel=1 -_electronver=28 +pkgrel=2 +_electronver=29 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" arch=('x86_64') @@ -31,7 +31,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d") sha512sums=('3cffb469283de46a234f09fc42bf9963d4497ae28f71637db1230d5f8531c0d9fe00ceb6002e5f65f085a1a9511fd3ac8dd48e23431e190555d6cf8e62519f2b' - 'ceaeb357a84df0695fe65867f81d2fa35a65a6f47f47a29022e09fa15cc816b3e250f63eee1025388f51665e6bc39262de7cb7a137f25caf1d922bbacd217566' + '9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40' '055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849') _krisp_b2sum='5f72dcddf45a680d16a49961d1756ac26ca555a94771ff5ece43c66783f9f311948e070f57d60c562675d993b69fc4f3375dd22e2f0d1692c1094258d71bb162' @@ -64,7 +64,7 @@ build() { # pack openasar sed -i -e "s|nightly|nightly-$(git rev-parse HEAD | cut -c 1-7)|" src/index.js sed -i -e "/config.setup = true/a\ config.autoupdate = false;" src/config/index.js - sed -i -e "s|process.resourcesPath|'/usr/lib/${_pkgname}'|" src/utils/buildInfo.js + sed -i -e "s|process.resourcesPath|'/usr/lib/${_pkgname}/resources'|" src/utils/buildInfo.js sed -i -e "s|^Exec=\${exec}$|Exec=/usr/bin/${_pkgname}|" \ -e "s|^Name=\${basename(exec)}$|Name=${_pkgname^}|" src/autoStart.js node scripts/strip.js @@ -77,14 +77,14 @@ package() { install -d "${pkgdir}"/usr/share/{pixmaps,applications,licenses/$_pkgname} # copy relevant data - cp -r ${_pkgname^}/resources/* "${pkgdir}"/usr/lib/$_pkgname/ + cp -r ${_pkgname^}/resources "${pkgdir}"/usr/lib/$_pkgname/ cp ${_pkgname^}/$_pkgname.png \ "${pkgdir}"/usr/share/pixmaps/$_pkgname.png cp ${_pkgname^}/$_pkgname.desktop \ "${pkgdir}"/usr/share/applications/$_pkgname.desktop # overwrite Discord asar - install -Dm 644 openasar/app.asar "${pkgdir}"/usr/lib/$_pkgname/ + install -Dm 644 openasar/app.asar "${pkgdir}"/usr/lib/$_pkgname/resources/ # install the launch script install -Dm 755 discord-launcher.sh "${pkgdir}"/usr/bin/$_pkgname diff --git a/discord-electron-openasar/discord-launcher.sh b/discord-electron-openasar/discord-launcher.sh index 55ff2a0..c63b91c 100644 --- a/discord-electron-openasar/discord-launcher.sh +++ b/discord-electron-openasar/discord-launcher.sh @@ -37,6 +37,6 @@ unset flags_file krisp_bin krisp_b2 exec /usr/lib/@ELECTRON@/electron \ - /usr/lib/@PKGNAME@/app.asar \ + /usr/lib/@PKGNAME@/resources/app.asar \ --ozone-platform-hint=auto \ "${flags[@]}" "$@" From 7080b90ae13e0bb6a399632a52ce95c660ed0ae8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 9 Apr 2024 20:16:20 +0200 Subject: [PATCH 703/971] upgpkg: discord-electron 0.0.49-1 upstream release --- discord-electron/.SRCINFO | 8 ++++---- discord-electron/PKGBUILD | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 359e633..04ac3f1 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v29) for increased security and performance - pkgver = 0.0.48 - pkgrel = 2 + pkgver = 0.0.49 + pkgrel = 1 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.48/discord-0.0.48.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.49/discord-0.0.49.tar.gz source = discord-launcher.sh - sha512sums = 3cffb469283de46a234f09fc42bf9963d4497ae28f71637db1230d5f8531c0d9fe00ceb6002e5f65f085a1a9511fd3ac8dd48e23431e190555d6cf8e62519f2b + sha512sums = b8b1509c31e4c237255d678bbc3e8c4d0cd8b3731050b732e149399f8dda8abb12a46ad9ea3e718016f430ebfe17f88629d0964fe1266efe8b4cd20a2f9abbce sha512sums = 9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index acfbd3b..49a8b40 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -13,8 +13,8 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.48 -pkgrel=2 +pkgver=0.0.49 +pkgrel=1 _electronver=29 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" @@ -35,10 +35,10 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('3cffb469283de46a234f09fc42bf9963d4497ae28f71637db1230d5f8531c0d9fe00ceb6002e5f65f085a1a9511fd3ac8dd48e23431e190555d6cf8e62519f2b' +sha512sums=('b8b1509c31e4c237255d678bbc3e8c4d0cd8b3731050b732e149399f8dda8abb12a46ad9ea3e718016f430ebfe17f88629d0964fe1266efe8b4cd20a2f9abbce' '9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40') -_krisp_b2sum='5f72dcddf45a680d16a49961d1756ac26ca555a94771ff5ece43c66783f9f311948e070f57d60c562675d993b69fc4f3375dd22e2f0d1692c1094258d71bb162' +_krisp_b2sum='f0452620769e3a53c25b4cea257fb1a3d7be4740e77d583b6998f162dae1db1c63eabd7989adecb5b423421a6373b0ef164e23a7cff0edd8a5df3108bce938f4' prepare() { # prepare launcher script From 3f2c2f1494a40b5b22a538417a344559de54c9a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 9 Apr 2024 20:16:29 +0200 Subject: [PATCH 704/971] upgpkg: discord-electron-openasar 0.0.49+827-1 upstream release --- discord-electron-openasar/.SRCINFO | 8 ++++---- discord-electron-openasar/PKGBUILD | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 19ae440..8742a3b 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v29) for increased security and performance - pkgver = 0.0.48+827 - pkgrel = 2 + pkgver = 0.0.49+827 + pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -21,10 +21,10 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.48/discord-0.0.48.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.49/discord-0.0.49.tar.gz source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d - sha512sums = 3cffb469283de46a234f09fc42bf9963d4497ae28f71637db1230d5f8531c0d9fe00ceb6002e5f65f085a1a9511fd3ac8dd48e23431e190555d6cf8e62519f2b + sha512sums = b8b1509c31e4c237255d678bbc3e8c4d0cd8b3731050b732e149399f8dda8abb12a46ad9ea3e718016f430ebfe17f88629d0964fe1266efe8b4cd20a2f9abbce sha512sums = 9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40 sha512sums = 055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index f4ce55c..d197eb1 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -6,9 +6,9 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.48+827 +pkgver=0.0.49+827 _pkgver=${pkgver%%+*} -pkgrel=2 +pkgrel=1 _electronver=29 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" @@ -30,11 +30,11 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d") -sha512sums=('3cffb469283de46a234f09fc42bf9963d4497ae28f71637db1230d5f8531c0d9fe00ceb6002e5f65f085a1a9511fd3ac8dd48e23431e190555d6cf8e62519f2b' +sha512sums=('b8b1509c31e4c237255d678bbc3e8c4d0cd8b3731050b732e149399f8dda8abb12a46ad9ea3e718016f430ebfe17f88629d0964fe1266efe8b4cd20a2f9abbce' '9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40' '055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849') -_krisp_b2sum='5f72dcddf45a680d16a49961d1756ac26ca555a94771ff5ece43c66783f9f311948e070f57d60c562675d993b69fc4f3375dd22e2f0d1692c1094258d71bb162' +_krisp_b2sum='f0452620769e3a53c25b4cea257fb1a3d7be4740e77d583b6998f162dae1db1c63eabd7989adecb5b423421a6373b0ef164e23a7cff0edd8a5df3108bce938f4' # just in case I get the version wrong pkgver() { From cf8acd973c9ecb35012548e7b385a5e643947637 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 10 Apr 2024 19:49:02 +0200 Subject: [PATCH 705/971] Deleted package: plasma5-wallpapers-wallpaper-engine --- plasma5-wallpapers-wallpaper-engine/.SRCINFO | 26 -------------- plasma5-wallpapers-wallpaper-engine/PKGBUILD | 36 ------------------- .../fbda175.patch | 21 ----------- 3 files changed, 83 deletions(-) delete mode 100644 plasma5-wallpapers-wallpaper-engine/.SRCINFO delete mode 100644 plasma5-wallpapers-wallpaper-engine/PKGBUILD delete mode 100644 plasma5-wallpapers-wallpaper-engine/fbda175.patch diff --git a/plasma5-wallpapers-wallpaper-engine/.SRCINFO b/plasma5-wallpapers-wallpaper-engine/.SRCINFO deleted file mode 100644 index 71ced00..0000000 --- a/plasma5-wallpapers-wallpaper-engine/.SRCINFO +++ /dev/null @@ -1,26 +0,0 @@ -pkgbase = plasma5-wallpapers-wallpaper-engine - pkgdesc = A KDE wallpaper plugin integrating wallpaper engine - pkgver = 0.5.4 - pkgrel = 5 - url = https://github.com/catsout/wallpaper-engine-kde-plugin - arch = x86_64 - license = GPL2 - makedepends = extra-cmake-modules - makedepends = qt5-webchannel - makedepends = mpv - makedepends = vulkan-headers - depends = gst-libav - depends = python-websockets - depends = plasma-framework5 - depends = qt5-declarative - depends = qt5-websockets - optdepends = qt5-webchannel: for web support - optdepends = mpv: alternative video backend - source = https://github.com/catsout/wallpaper-engine-kde-plugin/archive/v0.5.4/wallpaper-engine-kde-plugin-0.5.4.tar.gz - source = https://github.com/KhronosGroup/glslang/archive/11.11.0/glslang-11.11.0.tar.gz - source = fbda175.patch - sha512sums = 73a0e134430659b457a73e95d8b96b3fd875e44146ec02f5e5662785ecbe8f73a74b642b69a293297e829d6332d7bfba75acaef2c7f6508141d5b60ceadb8e13 - sha512sums = c018271d499efff03540e4572a9c2f1f752c81c87efe7f2e63c2631ac47cecfedffdcfee68eddaf9187603eaae8ccd9a3e5640a022ba9fd7d05950f7827bf8cd - sha512sums = c386bde62b16a179f37d82cc2bfc86ee4bcd1f410130ad77aaa207a4a65c2d509b663da34feaf826edebd656d73bde36315f1d89df49cf1a22c016f450655aab - -pkgname = plasma5-wallpapers-wallpaper-engine diff --git a/plasma5-wallpapers-wallpaper-engine/PKGBUILD b/plasma5-wallpapers-wallpaper-engine/PKGBUILD deleted file mode 100644 index c056c0d..0000000 --- a/plasma5-wallpapers-wallpaper-engine/PKGBUILD +++ /dev/null @@ -1,36 +0,0 @@ -# Maintainer: Manuel Hüsers - -pkgname=plasma5-wallpapers-wallpaper-engine -_pkgname=wallpaper-engine-kde-plugin -pkgver=0.5.4 -_pkgver_glslang=11.11.0 -pkgrel=5 -pkgdesc='A KDE wallpaper plugin integrating wallpaper engine' -arch=('x86_64') -url="https://github.com/catsout/${_pkgname}" -license=('GPL2') -depends=('gst-libav' 'python-websockets' 'plasma-framework5' 'qt5-declarative' 'qt5-websockets') -makedepends=('extra-cmake-modules' 'qt5-webchannel' 'mpv' 'vulkan-headers') -optdepends=('qt5-webchannel: for web support' - 'mpv: alternative video backend') -source=("https://github.com/catsout/${_pkgname}/archive/v${pkgver}/${_pkgname}-${pkgver}.tar.gz" - "https://github.com/KhronosGroup/glslang/archive/${_pkgver_glslang}/glslang-${_pkgver_glslang}.tar.gz" - 'fbda175.patch') -sha512sums=('73a0e134430659b457a73e95d8b96b3fd875e44146ec02f5e5662785ecbe8f73a74b642b69a293297e829d6332d7bfba75acaef2c7f6508141d5b60ceadb8e13' - 'c018271d499efff03540e4572a9c2f1f752c81c87efe7f2e63c2631ac47cecfedffdcfee68eddaf9187603eaae8ccd9a3e5640a022ba9fd7d05950f7827bf8cd' - 'c386bde62b16a179f37d82cc2bfc86ee4bcd1f410130ad77aaa207a4a65c2d509b663da34feaf826edebd656d73bde36315f1d89df49cf1a22c016f450655aab') - -prepare() { - mv -T "glslang-${_pkgver_glslang}" "${_pkgname}-${pkgver}/src/backend_scene/third_party/glslang" - patch -Np1 -d "${_pkgname}-${pkgver}" < 'fbda175.patch' -} - -build() { - cmake -B build -S "${_pkgname}-${pkgver}" \ - -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF - cmake --build build -} - -package() { - DESTDIR="$pkgdir" cmake --install build -} diff --git a/plasma5-wallpapers-wallpaper-engine/fbda175.patch b/plasma5-wallpapers-wallpaper-engine/fbda175.patch deleted file mode 100644 index 5591a38..0000000 --- a/plasma5-wallpapers-wallpaper-engine/fbda175.patch +++ /dev/null @@ -1,21 +0,0 @@ -From fbda175be3b93458ec06c9a1db507b2855e4caa1 Mon Sep 17 00:00:00 2001 -From: Seymur Bagirov -Date: Sat, 8 Apr 2023 13:24:52 +0400 -Subject: [PATCH] add cstdio to fix build on openSUSE TW - ---- - src/backend_scene/third_party/vk_mem_alloc.h | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/src/backend_scene/third_party/vk_mem_alloc.h b/src/backend_scene/third_party/vk_mem_alloc.h -index 0d01d517..6a8f3e31 100644 ---- a/src/backend_scene/third_party/vk_mem_alloc.h -+++ b/src/backend_scene/third_party/vk_mem_alloc.h -@@ -2559,6 +2559,7 @@ remove them if not needed. - #include // for assert - #include // for min, max - #include -+ #include - #else - #include VMA_CONFIGURATION_USER_INCLUDES_H - #endif From 093355368ba8a38f4c792f915058a7182c155470 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 10 Apr 2024 19:50:11 +0200 Subject: [PATCH 706/971] upgpkg: discord-electron 0.0.49-2: fix error on launch * Fix mistake when I moved asar into resources subfolder --- discord-electron/.SRCINFO | 2 +- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 04ac3f1..4195385 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v29) for increased security and performance pkgver = 0.0.49 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron.install arch = x86_64 diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 49a8b40..5186a35 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -14,7 +14,7 @@ pkgname=discord-electron _pkgname=discord pkgver=0.0.49 -pkgrel=1 +pkgrel=2 _electronver=29 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" @@ -62,7 +62,7 @@ build() { # use system electron asar e resources/app.asar resources/app rm resources/app.asar - sed -i -e "/resourcesPath = .*;$/d" -e "s|return resourcesPath|return '/usr/lib/${_pkgname}'|" resources/app/common/paths.js + sed -i -e "/resourcesPath = .*;$/d" -e "s|return resourcesPath|return '/usr/lib/${_pkgname}/resources'|" resources/app/common/paths.js sed -i -e "s|process.resourcesPath|'/usr/lib/${_pkgname}/resources'|" resources/app/app_bootstrap/buildInfo.js sed -i -e "/^const appName/d" -e "/^const exePath/d" -e "/^const exeDir/d" -e "/^const iconPath/d" \ -e "s|^Exec=\${exePath}$|Exec=/usr/bin/${_pkgname}|" \ From 4a2e60ace85d288ffd69f6f868ca0027ad3da43f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 11 Apr 2024 19:29:05 +0200 Subject: [PATCH 707/971] upgpkg: amdvlk-2023q3.3 2023.Q3.3-2: fix paths * Use correct directory for license files --- amdvlk-2023q3.3/.SRCINFO | 2 +- amdvlk-2023q3.3/PKGBUILD | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/amdvlk-2023q3.3/.SRCINFO b/amdvlk-2023q3.3/.SRCINFO index 9a9c308..55645be 100644 --- a/amdvlk-2023q3.3/.SRCINFO +++ b/amdvlk-2023q3.3/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = amdvlk-2023q3.3 pkgdesc = AMD's standalone Vulkan driver for Pre-GFX10 GPUs (Vega, Polaris) pkgver = 2023.Q3.3 - pkgrel = 1 + pkgrel = 2 url = https://github.com/GPUOpen-Drivers arch = x86_64 license = MIT diff --git a/amdvlk-2023q3.3/PKGBUILD b/amdvlk-2023q3.3/PKGBUILD index fffd31c..95e8f1c 100644 --- a/amdvlk-2023q3.3/PKGBUILD +++ b/amdvlk-2023q3.3/PKGBUILD @@ -5,7 +5,7 @@ pkgname=amdvlk-2023q3.3 _pkgname=amdvlk pkgver=2023.Q3.3 -pkgrel=1 +pkgrel=2 pkgdesc="AMD's standalone Vulkan driver for Pre-GFX10 GPUs (Vega, Polaris)" arch=('x86_64') url="https://github.com/GPUOpen-Drivers" @@ -52,12 +52,12 @@ package() { install -m755 -d "${pkgdir}"/usr/lib install -m755 -d "${pkgdir}"/usr/share/vulkan/icd.d install -m755 -d "${pkgdir}"/usr/share/vulkan/implicit_layer.d - install -m755 -d "${pkgdir}"/usr/share/licenses/${pkgname} + install -m755 -d "${pkgdir}"/usr/share/licenses/${_pkgname} install xgl/builds/Release64/icd/amdvlk64.so "${pkgdir}"/usr/lib/ install xgl/builds/Release64/icd/amd_icd64.json "${pkgdir}"/usr/share/vulkan/icd.d/ install xgl/builds/Release64/icd/amd_icd64.json "${pkgdir}"/usr/share/vulkan/implicit_layer.d/ - install AMDVLK-v-${pkgver}/LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/ + install AMDVLK-v-${pkgver}/LICENSE.txt "${pkgdir}"/usr/share/licenses/${_pkgname}/ sed -i "s#/lib64#/lib#g" "${pkgdir}"/usr/share/vulkan/icd.d/amd_icd64.json sed -i "s#/lib64#/lib#g" "${pkgdir}"/usr/share/vulkan/implicit_layer.d/amd_icd64.json From 5575561f3a1a45a2e20c17508687f0dd2254cbe2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 11 Apr 2024 19:29:49 +0200 Subject: [PATCH 708/971] upgpkg: lib32-amdvlk-2023q3.3 2023.Q3.3-2: fix paths * Use correct directory for license files --- lib32-amdvlk-2023q3.3/.SRCINFO | 2 +- lib32-amdvlk-2023q3.3/PKGBUILD | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib32-amdvlk-2023q3.3/.SRCINFO b/lib32-amdvlk-2023q3.3/.SRCINFO index bfd7b22..19d9de7 100644 --- a/lib32-amdvlk-2023q3.3/.SRCINFO +++ b/lib32-amdvlk-2023q3.3/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = lib32-amdvlk-2023q3.3 pkgdesc = AMD's standalone Vulkan driver for Pre-GFX10 GPUs (Vega, Polaris) pkgver = 2023.Q3.3 - pkgrel = 1 + pkgrel = 2 url = https://github.com/GPUOpen-Drivers arch = x86_64 license = MIT diff --git a/lib32-amdvlk-2023q3.3/PKGBUILD b/lib32-amdvlk-2023q3.3/PKGBUILD index 261560b..7797596 100644 --- a/lib32-amdvlk-2023q3.3/PKGBUILD +++ b/lib32-amdvlk-2023q3.3/PKGBUILD @@ -5,7 +5,7 @@ pkgname=lib32-amdvlk-2023q3.3 _pkgname=lib32-amdvlk pkgver=2023.Q3.3 -pkgrel=1 +pkgrel=2 pkgdesc="AMD's standalone Vulkan driver for Pre-GFX10 GPUs (Vega, Polaris)" arch=('x86_64') url="https://github.com/GPUOpen-Drivers" @@ -60,12 +60,12 @@ package() { install -m755 -d "${pkgdir}"/usr/lib32 install -m755 -d "${pkgdir}"/usr/share/vulkan/icd.d install -m755 -d "${pkgdir}"/usr/share/vulkan/implicit_layer.d - install -m755 -d "${pkgdir}"/usr/share/licenses/${pkgname} + install -m755 -d "${pkgdir}"/usr/share/licenses/${_pkgname} install xgl/builds/Release/icd/amdvlk32.so "${pkgdir}"/usr/lib32/ install xgl/builds/Release/icd/amd_icd32.json "${pkgdir}"/usr/share/vulkan/icd.d/ install xgl/builds/Release/icd/amd_icd32.json "${pkgdir}"/usr/share/vulkan/implicit_layer.d/ - install AMDVLK-v-${pkgver}/LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/ + install AMDVLK-v-${pkgver}/LICENSE.txt "${pkgdir}"/usr/share/licenses/${_pkgname}/ sed -i "s/\/lib/\/lib32/g" "${pkgdir}"/usr/share/vulkan/icd.d/amd_icd32.json sed -i "s/\/lib/\/lib32/g" "${pkgdir}"/usr/share/vulkan/implicit_layer.d/amd_icd32.json From ced121c843cb21d58643afc198931778d6bef3ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 11 Apr 2024 19:30:16 +0200 Subject: [PATCH 709/971] upgpkg: ntfs2btrfs 20240115-1 upstream release: Version was not marked as 'latest', other distros updated to this version though --- ntfs2btrfs/.SRCINFO | 6 +++--- ntfs2btrfs/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ntfs2btrfs/.SRCINFO b/ntfs2btrfs/.SRCINFO index 4236370..6ff63d5 100644 --- a/ntfs2btrfs/.SRCINFO +++ b/ntfs2btrfs/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = ntfs2btrfs pkgdesc = In-place conversion of Microsoft's NTFS filesystem to the open-source filesystem Btrfs - pkgver = 20230501 + pkgver = 20240115 pkgrel = 1 url = https://github.com/maharmstone/ntfs2btrfs arch = x86_64 @@ -11,7 +11,7 @@ pkgbase = ntfs2btrfs depends = zlib depends = lzo depends = zstd - source = https://github.com/maharmstone/ntfs2btrfs/archive/20230501/ntfs2btrfs-20230501.tar.gz - sha512sums = ad10850280f591cbdc169bb8e0b1768f7c4051b3110283c941ab76beb0d2b728d30ac64caecdbe6f90068b2486170ddced0704d741d1469944c58ecf0b168e0a + source = https://github.com/maharmstone/ntfs2btrfs/archive/20240115/ntfs2btrfs-20240115.tar.gz + sha512sums = c614e33b83a4dad25b07335f42161223804935bbee19a72a6576fe361a7edf91502773facc14c767e02abff03fd26d902ab2cd0d8f8bcde8ba10c56869d01873 pkgname = ntfs2btrfs diff --git a/ntfs2btrfs/PKGBUILD b/ntfs2btrfs/PKGBUILD index 007957f..1281884 100644 --- a/ntfs2btrfs/PKGBUILD +++ b/ntfs2btrfs/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Manuel Hüsers pkgname=ntfs2btrfs -pkgver=20230501 +pkgver=20240115 pkgrel=1 pkgdesc="In-place conversion of Microsoft's NTFS filesystem to the open-source filesystem Btrfs" arch=('x86_64') @@ -10,7 +10,7 @@ license=('GPL2') depends=('fmt' 'zlib' 'lzo' 'zstd') makedepends=('cmake' 'pkgconf') source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz") -sha512sums=('ad10850280f591cbdc169bb8e0b1768f7c4051b3110283c941ab76beb0d2b728d30ac64caecdbe6f90068b2486170ddced0704d741d1469944c58ecf0b168e0a') +sha512sums=('c614e33b83a4dad25b07335f42161223804935bbee19a72a6576fe361a7edf91502773facc14c767e02abff03fd26d902ab2cd0d8f8bcde8ba10c56869d01873') build() { cmake -B build -S "$pkgname-$pkgver" \ From a5c0a2e4686e1f7fbfc073e6a9a61e56e902c2f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 11 Apr 2024 19:31:33 +0200 Subject: [PATCH 710/971] upgpkg: ntfs2btrfs-git 20240115.r0.g1d55788-1 upstream release --- ntfs2btrfs-git/.SRCINFO | 2 +- ntfs2btrfs-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ntfs2btrfs-git/.SRCINFO b/ntfs2btrfs-git/.SRCINFO index 54eeda1..1d22772 100644 --- a/ntfs2btrfs-git/.SRCINFO +++ b/ntfs2btrfs-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = ntfs2btrfs-git pkgdesc = In-place conversion of Microsoft's NTFS filesystem to the open-source filesystem Btrfs - pkgver = 20230501.r0.ga8fd1a2 + pkgver = 20240115.r0.g1d55788 pkgrel = 1 url = https://github.com/maharmstone/ntfs2btrfs arch = x86_64 diff --git a/ntfs2btrfs-git/PKGBUILD b/ntfs2btrfs-git/PKGBUILD index a8065c2..b6e25ed 100644 --- a/ntfs2btrfs-git/PKGBUILD +++ b/ntfs2btrfs-git/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: N Fytilis pkgname=ntfs2btrfs-git -pkgver=20230501.r0.ga8fd1a2 +pkgver=20240115.r0.g1d55788 pkgrel=1 pkgdesc="In-place conversion of Microsoft's NTFS filesystem to the open-source filesystem Btrfs" arch=('x86_64') From f44ebb794d627dbd916151717ed9d30066b503a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 11 Apr 2024 19:39:30 +0200 Subject: [PATCH 711/971] upgpkg: polkit-explorer-git 15.fac8d70-4: fix paths * Use correct (non-git) paths --- polkit-explorer-git/.SRCINFO | 3 ++- polkit-explorer-git/PKGBUILD | 22 ++++++++++++---------- 2 files changed, 14 insertions(+), 11 deletions(-) diff --git a/polkit-explorer-git/.SRCINFO b/polkit-explorer-git/.SRCINFO index 4ea97f4..75ee242 100644 --- a/polkit-explorer-git/.SRCINFO +++ b/polkit-explorer-git/.SRCINFO @@ -1,10 +1,11 @@ pkgbase = polkit-explorer-git pkgdesc = Present PolicyKit information in a human-readable form. pkgver = 15.fac8d70 - pkgrel = 3 + pkgrel = 4 url = https://github.com/scarygliders/polkit-explorer arch = any license = ISC + makedepends = git depends = python-pyqt5 depends = python-lxml provides = polkit-explorer diff --git a/polkit-explorer-git/PKGBUILD b/polkit-explorer-git/PKGBUILD index 40e33ad..de390f0 100644 --- a/polkit-explorer-git/PKGBUILD +++ b/polkit-explorer-git/PKGBUILD @@ -2,32 +2,34 @@ # Contributor: Alad Wenter pkgname=polkit-explorer-git +_pkgname=${pkgname%-git} pkgver=15.fac8d70 -pkgrel=3 +pkgrel=4 pkgdesc='Present PolicyKit information in a human-readable form.' arch=('any') -url="https://github.com/scarygliders/${pkgname%-git}" +url="https://github.com/scarygliders/${_pkgname}" license=('ISC') depends=('python-pyqt5' 'python-lxml') +makedepends=('git') conflicts=('polkit-explorer') provides=('polkit-explorer') source=("git+${url}.git") sha512sums=('SKIP') pkgver() { - cd "${srcdir}/${pkgname%-git}" + cd "${srcdir}/${_pkgname}" printf '%s.%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" } package() { - cd "${srcdir}/${pkgname%-git}" + cd "${srcdir}/${_pkgname}" - install -d -m755 "${pkgdir}"/{usr/bin,opt/$pkgname} - install -m644 Ui_*.py "${pkgdir}/opt/${pkgname}/" + install -d -m755 "${pkgdir}"/{usr/bin,opt/$_pkgname} + install -m644 Ui_*.py "${pkgdir}/opt/${_pkgname}/" - install -m755 'polkitex.py' "${pkgdir}/opt/${pkgname}/" - ln -s "/opt/${pkgname}/polkitex.py" "${pkgdir}/usr/bin/polkitex" + install -m755 'polkitex.py' "${pkgdir}/opt/${_pkgname}/" + ln -s "/opt/${_pkgname}/polkitex.py" "${pkgdir}/usr/bin/polkitex" - install -Dm644 'LICENSE' "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" - install -Dm644 "polkitex.desktop" "${pkgdir}/usr/share/applications/${pkgname}.desktop" + install -Dm644 'LICENSE' "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE" + install -Dm644 "polkitex.desktop" "${pkgdir}/usr/share/applications/${_pkgname}.desktop" } From 76f0ba5644ccc8e9956aa4f2614a5499d34cb1d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 11 Apr 2024 19:42:55 +0200 Subject: [PATCH 712/971] upgpkg: rcedit-bin 2.0.0-4: refactor * Refactor PKGBUILD * Remove redundant .gitignore --- rcedit-bin/.SRCINFO | 15 +++++++-------- rcedit-bin/.gitignore | 14 -------------- rcedit-bin/PKGBUILD | 33 ++++++++++++++++---------------- rcedit-bin/{rcedit => rcedit.sh} | 0 4 files changed, 23 insertions(+), 39 deletions(-) delete mode 100644 rcedit-bin/.gitignore rename rcedit-bin/{rcedit => rcedit.sh} (100%) diff --git a/rcedit-bin/.SRCINFO b/rcedit-bin/.SRCINFO index 2333d0a..0a22d92 100644 --- a/rcedit-bin/.SRCINFO +++ b/rcedit-bin/.SRCINFO @@ -1,19 +1,18 @@ pkgbase = rcedit-bin pkgdesc = Command line tool to edit resources of windows exe files pkgver = 2.0.0 - pkgrel = 3 - url = https://github.com/electron/rcedit/ + pkgrel = 4 + url = https://github.com/electron/rcedit arch = any license = MIT depends = wine provides = rcedit conflicts = rcedit - conflicts = rcedit-git source = https://github.com/electron/rcedit/releases/download/v2.0.0/rcedit-x64.exe - source = https://raw.githubusercontent.com/electron/rcedit/b807b34a644c86c0b0d89c7f073967e79202731a/LICENSE - source = rcedit - sha256sums = 3e7801db1a5edbec91b49a24a094aad776cb4515488ea5a4ca2289c400eade2a - sha256sums = 224fcc506ef97afd088b487edab374abcad7e3d4de55fb8cce4f04328397213f - sha256sums = e599937ebd901f89899794ed78f1ca8fc6348efd996600f6c074cf39ef3a625e + source = https://raw.githubusercontent.com/electron/rcedit/v2.0.0/LICENSE + source = rcedit.sh + sha512sums = c13e7ffd60169c348e16a3ea59a171c1777acdb241f950c11a6e9b69c955a3a4eb3432182aee7f489a87a555d0bd51fde3b597826f7c1e6488f1f5097359ab4d + sha512sums = ca664e9ec12e6e23878c55f2b56e44fac50fc8b88c71499a4794fe3a0e8de18008c7435970628c8386410534dd5cc27af3ea5e7a818d6244f6159bc183969638 + sha512sums = ce46f14c4e7c945c69fdfbc48bfd22c8241f653a974f4950d8378bb81943144f5b3ee2e49cb08a26637c46558327184c6504714f7e781f86fbf7b0c64f561bd0 pkgname = rcedit-bin diff --git a/rcedit-bin/.gitignore b/rcedit-bin/.gitignore deleted file mode 100644 index b388f09..0000000 --- a/rcedit-bin/.gitignore +++ /dev/null @@ -1,14 +0,0 @@ -*.tar -*.tar.* -*.jar -*.exe -*.msi -*.zip -*.tgz -*.log -*.log.* -*.sig - -pkg/ -src/ -LICENSE diff --git a/rcedit-bin/PKGBUILD b/rcedit-bin/PKGBUILD index 56e0b2a..1ccd122 100644 --- a/rcedit-bin/PKGBUILD +++ b/rcedit-bin/PKGBUILD @@ -1,27 +1,26 @@ -# Maintainer: jdigi78 +# Maintainer: Manuel Hüsers +# Contributor: jdigi78 pkgname=rcedit-bin +_pkgname=${pkgname%-bin} pkgver=2.0.0 -pkgrel=3 - -source=("https://github.com/electron/rcedit/releases/download/v$pkgver/rcedit-x64.exe" - "https://raw.githubusercontent.com/electron/rcedit/b807b34a644c86c0b0d89c7f073967e79202731a/LICENSE" - "rcedit") - -sha256sums=('3e7801db1a5edbec91b49a24a094aad776cb4515488ea5a4ca2289c400eade2a' - '224fcc506ef97afd088b487edab374abcad7e3d4de55fb8cce4f04328397213f' - 'e599937ebd901f89899794ed78f1ca8fc6348efd996600f6c074cf39ef3a625e') - +pkgrel=4 pkgdesc='Command line tool to edit resources of windows exe files' arch=('any') -url='https://github.com/electron/rcedit/' +url="https://github.com/electron/${_pkgname}" license=('MIT') depends=('wine') -provides=('rcedit') -conflicts=('rcedit' 'rcedit-git') +provides=("${_pkgname}") +conflicts=("${_pkgname}") +source=("https://github.com/electron/${_pkgname}/releases/download/v${pkgver}/${_pkgname}-x64.exe" + "https://raw.githubusercontent.com/electron/${_pkgname}/v${pkgver}/LICENSE" + "${_pkgname}.sh") +sha512sums=('c13e7ffd60169c348e16a3ea59a171c1777acdb241f950c11a6e9b69c955a3a4eb3432182aee7f489a87a555d0bd51fde3b597826f7c1e6488f1f5097359ab4d' + 'ca664e9ec12e6e23878c55f2b56e44fac50fc8b88c71499a4794fe3a0e8de18008c7435970628c8386410534dd5cc27af3ea5e7a818d6244f6159bc183969638' + 'ce46f14c4e7c945c69fdfbc48bfd22c8241f653a974f4950d8378bb81943144f5b3ee2e49cb08a26637c46558327184c6504714f7e781f86fbf7b0c64f561bd0') package() { - install -Dm755 "rcedit-x64.exe" "$pkgdir/opt/rcedit/rcedit-x64.exe" - install -Dm755 "rcedit" "$pkgdir/usr/bin/rcedit" - install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" + install -Dm755 "${_pkgname}-x64.exe" "${pkgdir}/opt/${_pkgname}/${_pkgname}-x64.exe" + install -Dm755 "${_pkgname}.sh" "${pkgdir}/usr/bin/${_pkgname}" + install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE" } diff --git a/rcedit-bin/rcedit b/rcedit-bin/rcedit.sh similarity index 100% rename from rcedit-bin/rcedit rename to rcedit-bin/rcedit.sh From 9473e1da58f2217ac91b17ae629b85b70d773f9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 11 Apr 2024 19:45:27 +0200 Subject: [PATCH 713/971] upgpkg: wxedid 0.0.31-1 upstream release --- wxedid/.SRCINFO | 8 +++----- wxedid/PKGBUILD | 35 +++++++++++++++++------------------ 2 files changed, 20 insertions(+), 23 deletions(-) diff --git a/wxedid/.SRCINFO b/wxedid/.SRCINFO index c2927e0..4ffccd1 100644 --- a/wxedid/.SRCINFO +++ b/wxedid/.SRCINFO @@ -1,14 +1,12 @@ pkgbase = wxedid pkgdesc = wxWidgets-based EDID (Extended Display Identification Data) editor - pkgver = 0.0.29 + pkgver = 0.0.31 pkgrel = 1 url = https://sourceforge.net/projects/wxedid/ - arch = i686 arch = x86_64 license = GPL3 depends = wxwidgets-gtk3 - options = !buildflags - source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.29.tar.gz - md5sums = 3fc9e1814ae990752defbd48a14670ec + source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.31.tar.gz + sha512sums = 9e83ce46912ef1a43bccfa4e4086697cfec444ef932040e618210d682a6fa4a40bf78aece953e10a959ae7a38671b5782a0a4562cd776f71b5784c3bd1fcda5d pkgname = wxedid diff --git a/wxedid/PKGBUILD b/wxedid/PKGBUILD index 7fdbe3c..719a0b6 100644 --- a/wxedid/PKGBUILD +++ b/wxedid/PKGBUILD @@ -1,31 +1,30 @@ -# Maintainer: Jonathan Liu +# Maintainer: Manuel Hüsers +# Contributor: Jonathan Liu + pkgname=wxedid -pkgver=0.0.29 +pkgver=0.0.31 pkgrel=1 -pkgdesc="wxWidgets-based EDID (Extended Display Identification Data) editor" -arch=('i686' 'x86_64') -url="https://sourceforge.net/projects/wxedid/" +pkgdesc='wxWidgets-based EDID (Extended Display Identification Data) editor' +arch=('x86_64') +url='https://sourceforge.net/projects/wxedid/' license=('GPL3') depends=('wxwidgets-gtk3') -options=('!buildflags') -source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz") -md5sums=('3fc9e1814ae990752defbd48a14670ec') +source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz") +sha512sums=('9e83ce46912ef1a43bccfa4e4086697cfec444ef932040e618210d682a6fa4a40bf78aece953e10a959ae7a38671b5782a0a4562cd776f71b5784c3bd1fcda5d') build() { - cd "$pkgname-$pkgver" - autoreconf -f -i - ./configure --prefix=/usr - make + cd "${pkgname}-${pkgver}" + autoreconf -f -i + ./configure --prefix=/usr + make } check() { - cd "$pkgname-$pkgver" - make -k check + cd "${pkgname}-${pkgver}" + make -k check } package() { - cd "$pkgname-$pkgver" - make DESTDIR="$pkgdir" install + cd "${pkgname}-${pkgver}" + make DESTDIR="$pkgdir" install } - -# vim:set ts=2 sw=2 et: From a09253c381042e4da9f0e9c728360b2f3b3e3c1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 16 Apr 2024 22:49:16 +0200 Subject: [PATCH 714/971] upgpkg: firefox-syncstorage 0.15.2-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index f3c8b5f..ff49a09 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.15.1 + pkgver = 0.15.2 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -21,9 +21,9 @@ pkgbase = firefox-syncstorage optdepends = mysql: for use with a local database server options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.15.1/syncstorage-rs-0.15.1.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.15.2/syncstorage-rs-0.15.2.tar.gz source = firefox-syncstorage.service - sha512sums = cf5af9995dbbf0c8ce130a1ce025c69b6221de2340b8fc242eda4f5748d26632656e133d2bb32ea9979fbed77d5ea963a5d3d0c0c76089c65160d4443cde7fc4 + sha512sums = 0d3c9aae18ab139f03c537a7084d16c43918afd97864b17213fa5735e3d1f63844210f20f6b1da0fb87b06de27d9340afd738723ffc10af868aaa17425f3170e sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index 15ed218..8dfa2e5 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.15.1 +pkgver=0.15.2 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -18,7 +18,7 @@ options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha512sums=('cf5af9995dbbf0c8ce130a1ce025c69b6221de2340b8fc242eda4f5748d26632656e133d2bb32ea9979fbed77d5ea963a5d3d0c0c76089c65160d4443cde7fc4' +sha512sums=('0d3c9aae18ab139f03c537a7084d16c43918afd97864b17213fa5735e3d1f63844210f20f6b1da0fb87b06de27d9340afd738723ffc10af868aaa17425f3170e' '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") From 8e4b63460c4b83aa87a947942374ed42557340de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 16 Apr 2024 22:56:54 +0200 Subject: [PATCH 715/971] upgpkg: discord-electron 0.0.50-1 upstream release --- discord-electron/.SRCINFO | 8 ++++---- discord-electron/PKGBUILD | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 4195385..42f1879 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v29) for increased security and performance - pkgver = 0.0.49 - pkgrel = 2 + pkgver = 0.0.50 + pkgrel = 1 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.49/discord-0.0.49.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.50/discord-0.0.50.tar.gz source = discord-launcher.sh - sha512sums = b8b1509c31e4c237255d678bbc3e8c4d0cd8b3731050b732e149399f8dda8abb12a46ad9ea3e718016f430ebfe17f88629d0964fe1266efe8b4cd20a2f9abbce + sha512sums = 8e745436645ab8aa3fae582e125224b81c8556b74b40476ead337594f377fab95684a96287c53510d3838e948a64e0397f07ca8a76f6d99cd243af6a06080873 sha512sums = 9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 5186a35..0021fe8 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -13,8 +13,8 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.49 -pkgrel=2 +pkgver=0.0.50 +pkgrel=1 _electronver=29 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" @@ -35,10 +35,10 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('b8b1509c31e4c237255d678bbc3e8c4d0cd8b3731050b732e149399f8dda8abb12a46ad9ea3e718016f430ebfe17f88629d0964fe1266efe8b4cd20a2f9abbce' +sha512sums=('8e745436645ab8aa3fae582e125224b81c8556b74b40476ead337594f377fab95684a96287c53510d3838e948a64e0397f07ca8a76f6d99cd243af6a06080873' '9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40') -_krisp_b2sum='f0452620769e3a53c25b4cea257fb1a3d7be4740e77d583b6998f162dae1db1c63eabd7989adecb5b423421a6373b0ef164e23a7cff0edd8a5df3108bce938f4' +_krisp_b2sum='13fc5dfed0e3a6a6cff67e9308a7c907e53ac7dc09301bd995dc4c7f470c452097df18c9c9f14f5072daabeb15bc648e7f8a483850b7738d1b8caba87b877d5d' prepare() { # prepare launcher script From 75ea660891f094734db64f02057bdbc2935151f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 16 Apr 2024 22:57:08 +0200 Subject: [PATCH 716/971] upgpkg: discord-electron-openasar 0.0.50+827-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 8742a3b..d4697d8 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v29) for increased security and performance - pkgver = 0.0.49+827 + pkgver = 0.0.50+827 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,10 +21,10 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.49/discord-0.0.49.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.50/discord-0.0.50.tar.gz source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d - sha512sums = b8b1509c31e4c237255d678bbc3e8c4d0cd8b3731050b732e149399f8dda8abb12a46ad9ea3e718016f430ebfe17f88629d0964fe1266efe8b4cd20a2f9abbce + sha512sums = 8e745436645ab8aa3fae582e125224b81c8556b74b40476ead337594f377fab95684a96287c53510d3838e948a64e0397f07ca8a76f6d99cd243af6a06080873 sha512sums = 9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40 sha512sums = 055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index d197eb1..dba7c82 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -6,7 +6,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.49+827 +pkgver=0.0.50+827 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=29 @@ -30,11 +30,11 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d") -sha512sums=('b8b1509c31e4c237255d678bbc3e8c4d0cd8b3731050b732e149399f8dda8abb12a46ad9ea3e718016f430ebfe17f88629d0964fe1266efe8b4cd20a2f9abbce' +sha512sums=('8e745436645ab8aa3fae582e125224b81c8556b74b40476ead337594f377fab95684a96287c53510d3838e948a64e0397f07ca8a76f6d99cd243af6a06080873' '9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40' '055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849') -_krisp_b2sum='f0452620769e3a53c25b4cea257fb1a3d7be4740e77d583b6998f162dae1db1c63eabd7989adecb5b423421a6373b0ef164e23a7cff0edd8a5df3108bce938f4' +_krisp_b2sum='13fc5dfed0e3a6a6cff67e9308a7c907e53ac7dc09301bd995dc4c7f470c452097df18c9c9f14f5072daabeb15bc648e7f8a483850b7738d1b8caba87b877d5d' # just in case I get the version wrong pkgver() { From 8c698f9c96d4ced43bb8b0dd7b4ff5dbd36f5103 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 21 Apr 2024 09:39:59 +0200 Subject: [PATCH 717/971] upgpkg: discord-electron 0.0.50-2: update electron * Update Electron version to 30 --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 42f1879..a5dc0e8 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron - pkgdesc = Discord using system provided electron (v29) for increased security and performance + pkgdesc = Discord using system provided electron (v30) for increased security and performance pkgver = 0.0.50 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -9,7 +9,7 @@ pkgbase = discord-electron makedepends = asar makedepends = curl makedepends = python-html2text - depends = electron29 + depends = electron30 depends = libxss optdepends = libpulse: Pulseaudio support optdepends = libappindicator-gtk3: Systray indicator support diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 0021fe8..9de3ceb 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -14,8 +14,8 @@ pkgname=discord-electron _pkgname=discord pkgver=0.0.50 -pkgrel=1 -_electronver=29 +pkgrel=2 +_electronver=30 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" arch=('x86_64') From 497b43a8142b3449beddc41d96278b26f018aa43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 21 Apr 2024 09:40:36 +0200 Subject: [PATCH 718/971] upgpkg: discord-electron-openasar 0.0.50+827-2: update electron * Update Electron version to 30 --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index d4697d8..4b8e7f5 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar - pkgdesc = Discord packaged with OpenAsar using system provided electron (v29) for increased security and performance + pkgdesc = Discord packaged with OpenAsar using system provided electron (v30) for increased security and performance pkgver = 0.0.50+827 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -11,7 +11,7 @@ pkgbase = discord-electron-openasar makedepends = nodejs makedepends = curl makedepends = python-html2text - depends = electron29 + depends = electron30 depends = libxss depends = unzip optdepends = libpulse: Pulseaudio support diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index dba7c82..7d63b44 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -8,8 +8,8 @@ pkgname=discord-electron-openasar _pkgname=discord pkgver=0.0.50+827 _pkgver=${pkgver%%+*} -pkgrel=1 -_electronver=29 +pkgrel=2 +_electronver=30 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" arch=('x86_64') From d8f14fe7db0f84e348279d5e284dc784073f160a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 23 Apr 2024 06:55:37 +0200 Subject: [PATCH 719/971] upgpkg: discord-electron 0.0.51-1 upstream release --- discord-electron/.SRCINFO | 8 ++++---- discord-electron/PKGBUILD | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index a5dc0e8..19aed40 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v30) for increased security and performance - pkgver = 0.0.50 - pkgrel = 2 + pkgver = 0.0.51 + pkgrel = 1 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.50/discord-0.0.50.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.51/discord-0.0.51.tar.gz source = discord-launcher.sh - sha512sums = 8e745436645ab8aa3fae582e125224b81c8556b74b40476ead337594f377fab95684a96287c53510d3838e948a64e0397f07ca8a76f6d99cd243af6a06080873 + sha512sums = b98072a64cfb593176e7e057b926fcf2d9e1a4aa555a659cebb8abe20fe463ff135a8028fd0fc36dc6c1bd40235da98c7c055c372e707cae00b882c8b0462dd9 sha512sums = 9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 9de3ceb..acceeed 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -13,8 +13,8 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.50 -pkgrel=2 +pkgver=0.0.51 +pkgrel=1 _electronver=30 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" @@ -35,10 +35,10 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('8e745436645ab8aa3fae582e125224b81c8556b74b40476ead337594f377fab95684a96287c53510d3838e948a64e0397f07ca8a76f6d99cd243af6a06080873' +sha512sums=('b98072a64cfb593176e7e057b926fcf2d9e1a4aa555a659cebb8abe20fe463ff135a8028fd0fc36dc6c1bd40235da98c7c055c372e707cae00b882c8b0462dd9' '9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40') -_krisp_b2sum='13fc5dfed0e3a6a6cff67e9308a7c907e53ac7dc09301bd995dc4c7f470c452097df18c9c9f14f5072daabeb15bc648e7f8a483850b7738d1b8caba87b877d5d' +_krisp_b2sum='80f55a743d307567516e83021681dda9100f0f8f8881e30fd539bd2c84a4825d2e4aedef6e8d403945956b5edb4c788bade6c38954e797fdd32cd6a21f2bea09' prepare() { # prepare launcher script From d46497867c4b81436d3a44da09376891f1746897 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 23 Apr 2024 06:56:01 +0200 Subject: [PATCH 720/971] upgpkg: discord-electron-openasar 0.0.51+827-1 upstream release --- discord-electron-openasar/.SRCINFO | 8 ++++---- discord-electron-openasar/PKGBUILD | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 4b8e7f5..5d9b56c 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v30) for increased security and performance - pkgver = 0.0.50+827 - pkgrel = 2 + pkgver = 0.0.51+827 + pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -21,10 +21,10 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.50/discord-0.0.50.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.51/discord-0.0.51.tar.gz source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d - sha512sums = 8e745436645ab8aa3fae582e125224b81c8556b74b40476ead337594f377fab95684a96287c53510d3838e948a64e0397f07ca8a76f6d99cd243af6a06080873 + sha512sums = b98072a64cfb593176e7e057b926fcf2d9e1a4aa555a659cebb8abe20fe463ff135a8028fd0fc36dc6c1bd40235da98c7c055c372e707cae00b882c8b0462dd9 sha512sums = 9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40 sha512sums = 055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 7d63b44..a71ed64 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -6,9 +6,9 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.50+827 +pkgver=0.0.51+827 _pkgver=${pkgver%%+*} -pkgrel=2 +pkgrel=1 _electronver=30 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" @@ -30,11 +30,11 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d") -sha512sums=('8e745436645ab8aa3fae582e125224b81c8556b74b40476ead337594f377fab95684a96287c53510d3838e948a64e0397f07ca8a76f6d99cd243af6a06080873' +sha512sums=('b98072a64cfb593176e7e057b926fcf2d9e1a4aa555a659cebb8abe20fe463ff135a8028fd0fc36dc6c1bd40235da98c7c055c372e707cae00b882c8b0462dd9' '9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40' '055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849') -_krisp_b2sum='13fc5dfed0e3a6a6cff67e9308a7c907e53ac7dc09301bd995dc4c7f470c452097df18c9c9f14f5072daabeb15bc648e7f8a483850b7738d1b8caba87b877d5d' +_krisp_b2sum='80f55a743d307567516e83021681dda9100f0f8f8881e30fd539bd2c84a4825d2e4aedef6e8d403945956b5edb4c788bade6c38954e797fdd32cd6a21f2bea09' # just in case I get the version wrong pkgver() { From 6405619721beb2ce57547cef5367a333f3e12b4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 24 Apr 2024 07:19:02 +0200 Subject: [PATCH 721/971] upgpkg: clonezilla-unstable 5.6.2-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index eb5d92b..14a47e8 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.1 + pkgver = 5.6.2 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.1.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.2.tar.xz source = usrbin.patch - sha512sums = 0ebcfe7bd749998e4fc636333213e3ac6709eb8e06b94554edaafc36913da7abf3f95c73a7530b9b7e2e682f29d9e13f0d78f8014818f4a307760194694007ce + sha512sums = 197d4d17b099c4d2136020f102365d9f6c95468a8006b98c1e16214d8f2c6f8c6a42f513048b50081d401e0d96516c0a98e3cdf055f64685ba7f77e1a813e436 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 6c02199..9446646 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.1 +pkgver=5.6.2 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('0ebcfe7bd749998e4fc636333213e3ac6709eb8e06b94554edaafc36913da7abf3f95c73a7530b9b7e2e682f29d9e13f0d78f8014818f4a307760194694007ce' +sha512sums=('197d4d17b099c4d2136020f102365d9f6c95468a8006b98c1e16214d8f2c6f8c6a42f513048b50081d401e0d96516c0a98e3cdf055f64685ba7f77e1a813e436' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 57bc0fa570c0f91d016f05027a8958ae5eb573a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 24 Apr 2024 07:19:02 +0200 Subject: [PATCH 722/971] upgpkg: clonezilla-unstable 5.6.2-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index eb5d92b..14a47e8 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.1 + pkgver = 5.6.2 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.1.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.2.tar.xz source = usrbin.patch - sha512sums = 0ebcfe7bd749998e4fc636333213e3ac6709eb8e06b94554edaafc36913da7abf3f95c73a7530b9b7e2e682f29d9e13f0d78f8014818f4a307760194694007ce + sha512sums = 197d4d17b099c4d2136020f102365d9f6c95468a8006b98c1e16214d8f2c6f8c6a42f513048b50081d401e0d96516c0a98e3cdf055f64685ba7f77e1a813e436 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 6c02199..9446646 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.1 +pkgver=5.6.2 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('0ebcfe7bd749998e4fc636333213e3ac6709eb8e06b94554edaafc36913da7abf3f95c73a7530b9b7e2e682f29d9e13f0d78f8014818f4a307760194694007ce' +sha512sums=('197d4d17b099c4d2136020f102365d9f6c95468a8006b98c1e16214d8f2c6f8c6a42f513048b50081d401e0d96516c0a98e3cdf055f64685ba7f77e1a813e436' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 6edeb95575e95af8f621031d5fa918e729bef98b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 24 Apr 2024 07:19:24 +0200 Subject: [PATCH 723/971] upgpkg: systemtap 5.0-2: fix conflict, add check * Fix filesystem conflict by excluding include files already provided by glibc * Add make check target --- systemtap/.SRCINFO | 2 +- systemtap/PKGBUILD | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/systemtap/.SRCINFO b/systemtap/.SRCINFO index 5e93981..2b9c955 100644 --- a/systemtap/.SRCINFO +++ b/systemtap/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = systemtap pkgdesc = Infrastructure to simplify the gathering of information about the running Linux system pkgver = 5.0 - pkgrel = 1 + pkgrel = 2 url = https://sourceware.org/systemtap/ install = systemtap.install arch = x86_64 diff --git a/systemtap/PKGBUILD b/systemtap/PKGBUILD index a899440..36a3f5e 100644 --- a/systemtap/PKGBUILD +++ b/systemtap/PKGBUILD @@ -7,7 +7,7 @@ pkgname=systemtap pkgver=5.0 -pkgrel=1 +pkgrel=2 pkgdesc="Infrastructure to simplify the gathering of information about the running Linux system" url="https://sourceware.org/systemtap/" arch=('x86_64') @@ -40,7 +40,13 @@ build() { make } +check() { + cd "${pkgname}-${pkgver}" + make check +} + package() { cd "${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install + rm -r "${pkgdir}/usr/include/sys" } From d7a06808ffb643ed6c2a6cea4d388ef8f6b27496 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 27 Apr 2024 20:57:00 +0200 Subject: [PATCH 724/971] upgpkg: tuned 2.22.1-2: rebuild * Trigger rebuild for Python 3.12 --- tuned/.SRCINFO | 2 +- tuned/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tuned/.SRCINFO b/tuned/.SRCINFO index 0462747..55cb52d 100644 --- a/tuned/.SRCINFO +++ b/tuned/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system pkgver = 2.22.1 - pkgrel = 1 + pkgrel = 2 url = https://github.com/redhat-performance/tuned arch = any license = GPL diff --git a/tuned/PKGBUILD b/tuned/PKGBUILD index 41a2468..f80563c 100644 --- a/tuned/PKGBUILD +++ b/tuned/PKGBUILD @@ -6,7 +6,7 @@ pkgbase=tuned pkgname=("${pkgbase}" "${pkgbase}-ppd") pkgver=2.22.1 -pkgrel=1 +pkgrel=2 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url="https://github.com/redhat-performance/${pkgbase}" From 6913e9da39e4f4a7d74784af83de0e2bd7f79fd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 30 Apr 2024 18:45:00 +0200 Subject: [PATCH 725/971] upgpkg: discord-electron 0.0.52-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 19aed40..cc89bf7 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v30) for increased security and performance - pkgver = 0.0.51 + pkgver = 0.0.52 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.51/discord-0.0.51.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.52/discord-0.0.52.tar.gz source = discord-launcher.sh - sha512sums = b98072a64cfb593176e7e057b926fcf2d9e1a4aa555a659cebb8abe20fe463ff135a8028fd0fc36dc6c1bd40235da98c7c055c372e707cae00b882c8b0462dd9 + sha512sums = 42ff4b59a0dd846f06a297a1a8b5a1e28f37daa6951b4ce597d103492458c5ae90f69545908cd41238c5ed91b249ad2dd9b9cec3ef4feeb9ad22245c692eaa72 sha512sums = 9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index acceeed..e07fa4a 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -13,7 +13,7 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.51 +pkgver=0.0.52 pkgrel=1 _electronver=30 _electronname="electron${_electronver}" @@ -35,10 +35,10 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('b98072a64cfb593176e7e057b926fcf2d9e1a4aa555a659cebb8abe20fe463ff135a8028fd0fc36dc6c1bd40235da98c7c055c372e707cae00b882c8b0462dd9' +sha512sums=('42ff4b59a0dd846f06a297a1a8b5a1e28f37daa6951b4ce597d103492458c5ae90f69545908cd41238c5ed91b249ad2dd9b9cec3ef4feeb9ad22245c692eaa72' '9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40') -_krisp_b2sum='80f55a743d307567516e83021681dda9100f0f8f8881e30fd539bd2c84a4825d2e4aedef6e8d403945956b5edb4c788bade6c38954e797fdd32cd6a21f2bea09' +_krisp_b2sum='ef14b1dc86613fdac87e3cd975f020192d9fd4dd5a88e685c3edbb245e343924c75179acb7724d81ae3e5b0b7b5f52d208f3f1a9b1ccd73a7fe06e96662c4e81' prepare() { # prepare launcher script From b71f207c0aa2b43e1a35058934a1e8d672e8640a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 30 Apr 2024 18:45:18 +0200 Subject: [PATCH 726/971] upgpkg: discord-electron-openasar 0.0.52+827-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 5d9b56c..0e757b1 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v30) for increased security and performance - pkgver = 0.0.51+827 + pkgver = 0.0.52+827 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,10 +21,10 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.51/discord-0.0.51.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.52/discord-0.0.52.tar.gz source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d - sha512sums = b98072a64cfb593176e7e057b926fcf2d9e1a4aa555a659cebb8abe20fe463ff135a8028fd0fc36dc6c1bd40235da98c7c055c372e707cae00b882c8b0462dd9 + sha512sums = 42ff4b59a0dd846f06a297a1a8b5a1e28f37daa6951b4ce597d103492458c5ae90f69545908cd41238c5ed91b249ad2dd9b9cec3ef4feeb9ad22245c692eaa72 sha512sums = 9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40 sha512sums = 055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index a71ed64..9a41ac6 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -6,7 +6,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.51+827 +pkgver=0.0.52+827 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=30 @@ -30,11 +30,11 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d") -sha512sums=('b98072a64cfb593176e7e057b926fcf2d9e1a4aa555a659cebb8abe20fe463ff135a8028fd0fc36dc6c1bd40235da98c7c055c372e707cae00b882c8b0462dd9' +sha512sums=('42ff4b59a0dd846f06a297a1a8b5a1e28f37daa6951b4ce597d103492458c5ae90f69545908cd41238c5ed91b249ad2dd9b9cec3ef4feeb9ad22245c692eaa72' '9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40' '055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849') -_krisp_b2sum='80f55a743d307567516e83021681dda9100f0f8f8881e30fd539bd2c84a4825d2e4aedef6e8d403945956b5edb4c788bade6c38954e797fdd32cd6a21f2bea09' +_krisp_b2sum='ef14b1dc86613fdac87e3cd975f020192d9fd4dd5a88e685c3edbb245e343924c75179acb7724d81ae3e5b0b7b5f52d208f3f1a9b1ccd73a7fe06e96662c4e81' # just in case I get the version wrong pkgver() { From 2ef7e351d4a388a1ecb4e67dd30cb4e117962d9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 30 Apr 2024 21:48:48 +0200 Subject: [PATCH 727/971] upgpkg: firefox-syncstorage 0.15.5-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index ff49a09..820f2ae 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.15.2 + pkgver = 0.15.5 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -21,9 +21,9 @@ pkgbase = firefox-syncstorage optdepends = mysql: for use with a local database server options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.15.2/syncstorage-rs-0.15.2.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.15.5/syncstorage-rs-0.15.5.tar.gz source = firefox-syncstorage.service - sha512sums = 0d3c9aae18ab139f03c537a7084d16c43918afd97864b17213fa5735e3d1f63844210f20f6b1da0fb87b06de27d9340afd738723ffc10af868aaa17425f3170e + sha512sums = bbce43c4d504ce972f9706755594524bc8678dd95ebd640d9c23494d2c2b941720154af7c1ca702f0551e587cebd2c7497aadc8317a28b03890b41b39cf07679 sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index 8dfa2e5..90d239d 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.15.2 +pkgver=0.15.5 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -18,7 +18,7 @@ options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha512sums=('0d3c9aae18ab139f03c537a7084d16c43918afd97864b17213fa5735e3d1f63844210f20f6b1da0fb87b06de27d9340afd738723ffc10af868aaa17425f3170e' +sha512sums=('bbce43c4d504ce972f9706755594524bc8678dd95ebd640d9c23494d2c2b941720154af7c1ca702f0551e587cebd2c7497aadc8317a28b03890b41b39cf07679' '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") From 3ec66e826f5cd6845b1bccfac81c5f8cef062d34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 7 May 2024 18:58:08 +0200 Subject: [PATCH 728/971] upgpkg: linpack 2024.1.0-1 upstream release --- linpack/.SRCINFO | 15 ++++++----- linpack/PKGBUILD | 50 ++++++++++++++++++++---------------- linpack/linpack_runme_xeon64 | 2 +- 3 files changed, 37 insertions(+), 30 deletions(-) diff --git a/linpack/.SRCINFO b/linpack/.SRCINFO index dc7beb3..2c97dd3 100644 --- a/linpack/.SRCINFO +++ b/linpack/.SRCINFO @@ -1,16 +1,17 @@ pkgbase = linpack - pkgver = 2022.0.2.84 + pkgdesc = Benchmark that measures a system's floating-point rate of execution by solving dense linear equations + pkgver = 2024.1.0 pkgrel = 1 url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download arch = x86_64 license = custom - source = https://downloadmirror.intel.com/721397/l-onemklbench-p-2022-0-2-84.tgz + options = !strip + backup = etc/linpack.conf + source = https://downloadmirror.intel.com/819583/l_onemklbench_p_2024.1.0_517.tgz source = linpack.conf source = linpack_runme_xeon64 - sha1sums = 3c9f41fcd1454bfbb5525a1056b18edc7f58aae5 - sha1sums = 96636f441f3ab48b2df5e24afd2775ff5f954446 - sha1sums = 9529264752433c0fa5fe33c9712ffc3cf83acc2a + sha512sums = c4b0704668f77deb5a3120f07a5e75dbecbf1a796294ec9ab83f1a4bcf2eb5a27d42a7c34bbcd462baf5ac35d8294be237210d481c7739efeffe302bbea65206 + sha512sums = 69b049a3a1c0b674e471bc61e1f88f729db1dd454eb0bfc9adde7c3a4876bb396a91f57f19d5e1add906ee4282068d8cd0fa5f1a59bf8a96784846a3c9f63ab1 + sha512sums = 3e880d4e0af8154ac1d591177e08ceda28f5ff5fbf698e47f99de8621e37137ecf26024048bd0ee81fc7af73ca8ae0deeb0a309325970a701ac5f13b571bdb60 pkgname = linpack - pkgdesc = Benchmark based on linear algebra excellent app for stress testing. - backup = etc/linpack.conf diff --git a/linpack/PKGBUILD b/linpack/PKGBUILD index 2a8c7a7..168ad58 100644 --- a/linpack/PKGBUILD +++ b/linpack/PKGBUILD @@ -1,25 +1,31 @@ +# Maintainer: Manuel Hüsers # Contributor: graysky -pkgname=('linpack') -pkgver=2022.0.2.84 -_math_kernel_lib=2022.0.2 -pkgrel=1 -arch=('x86_64') -license=('custom') -url="http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download" -source=("https://downloadmirror.intel.com/721397/l-onemklbench-p-${pkgver//./-}.tgz" -'linpack.conf' 'linpack_runme_xeon64') -sha1sums=('3c9f41fcd1454bfbb5525a1056b18edc7f58aae5' - '96636f441f3ab48b2df5e24afd2775ff5f954446' - '9529264752433c0fa5fe33c9712ffc3cf83acc2a') -package_linpack() { - pkgdesc='Benchmark based on linear algebra excellent app for stress testing.' - backup=(etc/linpack.conf) - _base="$srcdir/benchmarks_$_math_kernel_lib" - _test="$_base/linux/mkl/benchmarks/linpack" - - install -Dm755 linpack_runme_xeon64 "$pkgdir/usr/bin/linpack_runme_xeon64" - install -Dm644 linpack.conf "$pkgdir/usr/share/$pkgname/linpack.conf" - install -Dm644 "$_base/license.txt" "$pkgdir/usr/share/licenses/linpack/license.txt" - install -Dm755 "$_test/xlinpack_xeon64" "$pkgdir/usr/bin/xlinpack_xeon64" +pkgname='linpack' +_pkgver=2024.1.0_517 +_pkgid=819583 +pkgver=${_pkgver%%_*} +_math_kernel_lib=${pkgver%%.0} +pkgrel=1 +pkgdesc="Benchmark that measures a system's floating-point rate of execution by solving dense linear equations" +arch=('x86_64') +url='http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download' +license=('custom') +backup=('etc/linpack.conf') +options=('!strip') +source=("https://downloadmirror.intel.com/${_pkgid}/l_onemklbench_p_${_pkgver}.tgz" + 'linpack.conf' + 'linpack_runme_xeon64') +sha512sums=('c4b0704668f77deb5a3120f07a5e75dbecbf1a796294ec9ab83f1a4bcf2eb5a27d42a7c34bbcd462baf5ac35d8294be237210d481c7739efeffe302bbea65206' + '69b049a3a1c0b674e471bc61e1f88f729db1dd454eb0bfc9adde7c3a4876bb396a91f57f19d5e1add906ee4282068d8cd0fa5f1a59bf8a96784846a3c9f63ab1' + '3e880d4e0af8154ac1d591177e08ceda28f5ff5fbf698e47f99de8621e37137ecf26024048bd0ee81fc7af73ca8ae0deeb0a309325970a701ac5f13b571bdb60') + +package() { + local _base="${srcdir}/benchmarks_${_math_kernel_lib}" + local _test="${_base}/linux/share/mkl/benchmarks/linpack" + + install -Dm755 linpack_runme_xeon64 "${pkgdir}/usr/bin/linpack_runme_xeon64" + install -Dm644 linpack.conf "${pkgdir}/usr/share/${pkgname}/linpack.conf" + install -Dm644 "${_base}/license.txt" "${pkgdir}/usr/share/licenses/linpack/license.txt" + install -Dm755 "${_test}/xlinpack_xeon64" "${pkgdir}/usr/bin/xlinpack_xeon64" } diff --git a/linpack/linpack_runme_xeon64 b/linpack/linpack_runme_xeon64 index b4b5b97..bb10793 100644 --- a/linpack/linpack_runme_xeon64 +++ b/linpack/linpack_runme_xeon64 @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # export KMP_AFFINITY=nowarnings,compact From 13ee2ac405948466c2886885e00a46ed6b898964 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 7 May 2024 18:58:27 +0200 Subject: [PATCH 729/971] upgpkg: spot-client 0.4.1-1 upstream release --- spot-client/.SRCINFO | 11 ++++++----- spot-client/PKGBUILD | 21 +++++++++------------ spot-client/disable-clippy.patch | 25 +++++++++++++++---------- 3 files changed, 30 insertions(+), 27 deletions(-) diff --git a/spot-client/.SRCINFO b/spot-client/.SRCINFO index 150dd22..7d9f2b3 100644 --- a/spot-client/.SRCINFO +++ b/spot-client/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client - pkgver = 0.4.0 + pkgver = 0.4.1 pkgrel = 1 url = https://github.com/xou816/spot arch = x86_64 @@ -12,7 +12,8 @@ pkgbase = spot-client license = MIT checkdepends = appstream-glib makedepends = cargo - makedepends = meson>=0.50.0 + makedepends = meson>=0.59.0 + makedepends = blueprint-compiler>=0.8.1 depends = alsa-lib depends = cairo depends = glib2 @@ -25,9 +26,9 @@ pkgbase = spot-client depends = pango optdepends = org.freedesktop.secrets options = !lto - source = https://github.com/xou816/spot/archive/0.4.0/spot-0.4.0.tar.gz + source = https://github.com/xou816/spot/archive/0.4.1/spot-0.4.1.tar.gz source = disable-clippy.patch - sha512sums = 45b7b28250d6a3ccfd829984d5ee2f94fc8f052467cfa94403171d7c9fe803c65567759b3b01b86b8cc7a1d8cbdff64d99c82a72c34997192386ff9f51531d1d - sha512sums = 1cb0faced2e6801cb994e9af7b81411355837b2efcd9c82b82751508e0bfcc967c50b3d6296bfdb8c017bbf2e7a503a3920d36cb896e44c896c23f5b9e1d13f1 + sha512sums = 05ee8ce9277230a0f6c25411b41788a508551a61cd436bdd6bb0d8245030b0523232c0e30c7d2f98977382e687ec0f502cb6eb9b95a7dbaae97042ec596f407e + sha512sums = 4e38fff2a5867c46749959ceb0fb16372f12c8f8038b6a33d43e126e741f43e524e1499bb9b514e56b036097aaa0ac5dd149823c2c9eba277ab0ea4f58d5fb55 pkgname = spot-client diff --git a/spot-client/PKGBUILD b/spot-client/PKGBUILD index 2d3e1af..72a90dc 100644 --- a/spot-client/PKGBUILD +++ b/spot-client/PKGBUILD @@ -4,7 +4,7 @@ _projectname='spot' pkgname="$_projectname-client" -pkgver='0.4.0' +pkgver='0.4.1' pkgrel='1' pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -12,24 +12,21 @@ url="https://github.com/xou816/$_projectname" license=('MIT') depends=('alsa-lib' 'cairo' 'glib2' 'glibc' 'graphene' 'gtk4' 'libadwaita' 'libpulse' 'openssl' 'pango') optdepends=('org.freedesktop.secrets') -makedepends=('cargo' 'meson>=0.50.0') +makedepends=('cargo' 'meson>=0.59.0' 'blueprint-compiler>=0.8.1') checkdepends=('appstream-glib') -options=('!lto') # build breaks with LTO enabled (https://gitlab.com/dpeukert/pkgbuilds/-/issues/38) -source=( - "https://github.com/xou816/$_projectname/archive/$pkgver/$_projectname-$pkgver.tar.gz" - 'disable-clippy.patch' -) -sha512sums=('45b7b28250d6a3ccfd829984d5ee2f94fc8f052467cfa94403171d7c9fe803c65567759b3b01b86b8cc7a1d8cbdff64d99c82a72c34997192386ff9f51531d1d' - '1cb0faced2e6801cb994e9af7b81411355837b2efcd9c82b82751508e0bfcc967c50b3d6296bfdb8c017bbf2e7a503a3920d36cb896e44c896c23f5b9e1d13f1') -validpgpkeys=() # waiting for https://github.com/xou816/spot/issues/283 +options=('!lto') # Build breaks with LTO enabled +source=("https://github.com/xou816/$_projectname/archive/$pkgver/$_projectname-$pkgver.tar.gz" + 'disable-clippy.patch') +sha512sums=('05ee8ce9277230a0f6c25411b41788a508551a61cd436bdd6bb0d8245030b0523232c0e30c7d2f98977382e687ec0f502cb6eb9b95a7dbaae97042ec596f407e' + '4e38fff2a5867c46749959ceb0fb16372f12c8f8038b6a33d43e126e741f43e524e1499bb9b514e56b036097aaa0ac5dd149823c2c9eba277ab0ea4f58d5fb55') +validpgpkeys=() # Waiting for https://github.com/xou816/spot/issues/283 _sourcedirectory="$_projectname-$pkgver" _builddirectory='build' prepare() { cd "$srcdir/$_sourcedirectory/" - - # Disable clippy tests, as they don't realy make sense for user builds (https://gitlab.com/dpeukert/pkgbuilds/-/issues/37) + # Disable failing clippy tests patch -Np1 < '../disable-clippy.patch' } diff --git a/spot-client/disable-clippy.patch b/spot-client/disable-clippy.patch index 25b9544..a845936 100644 --- a/spot-client/disable-clippy.patch +++ b/spot-client/disable-clippy.patch @@ -1,19 +1,24 @@ diff --git a/src/meson.build b/src/meson.build -index 755d870..fac1b77 100644 +index 900f3fa..e08b062 100644 --- a/src/meson.build +++ b/src/meson.build -@@ -208,14 +208,3 @@ test('Unit tests', - ], - timeout: 180 +@@ -149,19 +149,3 @@ test('Unit tests', + timeout: 180, + env: env ) - --cargo_clippy = find_program(meson.source_root() / 'build-aux/clippy.sh') -test('Clippy', -- cargo_clippy, +- cargo, - args: [ -- meson.source_root(), -- meson.build_root(), -- get_option('offline') ? 'true' : 'false' +- 'clippy', +- '--manifest-path', cargo_manifest, +- '--target-dir', meson.project_build_root() / 'src', +- '--', +- '-D', 'warnings', +- '-A', 'clippy::module_inception', +- '-A', 'clippy::new_without_default', +- '-A', 'clippy::enum-variant-names' - ], -- timeout: 180 +- timeout: 180, +- env: env -) From d859014f0684b973716da7952f9c1995c66310d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 7 May 2024 18:59:31 +0200 Subject: [PATCH 730/971] upgpkg: sublime-text-dev 4.4175-1 upstream release --- sublime-text-dev/.SRCINFO | 12 ++++++------ sublime-text-dev/PKGBUILD | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 503b8d6..336166f 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4173 - pkgrel = 2 + pkgver = 4.4175 + pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install arch = x86_64 @@ -13,9 +13,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime-text-dev.sh sha512sums = ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9 - source_x86_64 = sublime_text_dev_4_4173_2_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4173_x64.tar.xz - sha512sums_x86_64 = 91c1359be4789caf5bfa206ae48736a2dd777559a84f8b282f7a7101a9b8b50fe5e073bdb1496475cdcfe1b9c14707ed9d0fedaa7ef37802085d2e2197c18317 - source_aarch64 = sublime_text_dev_4_4173_2_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4173_arm64.tar.xz - sha512sums_aarch64 = 2d49124aa8493e0e6460e8ea42f89774dde791952f17ada942e99d45703bddd09cfc98d0918a9df411712afe6b957f60d0c879def7eb5fd8f7a860f02388ebda + source_x86_64 = sublime_text_dev_4_4175_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4175_x64.tar.xz + sha512sums_x86_64 = 7ffc30c53dbdb40fe12bdccce03fe522a569ae3c9a43241f9392067b19377e58e2ca49179c0b1c4a3b210913efbcb5b6c1729f7521b07eaceecf637aa8e333b5 + source_aarch64 = sublime_text_dev_4_4175_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4175_arm64.tar.xz + sha512sums_aarch64 = dfb228c13e76febf73d121c822faa8a48cb63185d7269aa68cd7e69d7c9e2efd2566b87ea3e61b1556862734758edfa2e2a77649e28aed130bf179f07b01c989 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index be25333..98fc965 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,8 +3,8 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4173 -pkgrel=2 +pkgver=4.4175 +pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') url='https://www.sublimetext.com/dev' @@ -19,8 +19,8 @@ source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://down source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha512sums=('ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9') -sha512sums_x86_64=('91c1359be4789caf5bfa206ae48736a2dd777559a84f8b282f7a7101a9b8b50fe5e073bdb1496475cdcfe1b9c14707ed9d0fedaa7ef37802085d2e2197c18317') -sha512sums_aarch64=('2d49124aa8493e0e6460e8ea42f89774dde791952f17ada942e99d45703bddd09cfc98d0918a9df411712afe6b957f60d0c879def7eb5fd8f7a860f02388ebda') +sha512sums_x86_64=('7ffc30c53dbdb40fe12bdccce03fe522a569ae3c9a43241f9392067b19377e58e2ca49179c0b1c4a3b210913efbcb5b6c1729f7521b07eaceecf637aa8e333b5') +sha512sums_aarch64=('dfb228c13e76febf73d121c822faa8a48cb63185d7269aa68cd7e69d7c9e2efd2566b87ea3e61b1556862734758edfa2e2a77649e28aed130bf179f07b01c989') prepare() { sed -i -e "s|@ST_PATH@|/opt/sublime_text|g" "${pkgname}.sh" From ce7a5ee839e32036654077426dbfbb8bbe47f477 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 7 May 2024 19:41:02 +0200 Subject: [PATCH 731/971] upgpkg: gvisor-bin 20240501.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index ab7d2a8..c0d0855 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20240401.0 + pkgver = 20240501.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20240401.0::https://storage.googleapis.com/gvisor/releases/release/20240401.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20240401.0::https://storage.googleapis.com/gvisor/releases/release/20240401.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = c48737d39cf9f85cdfca9717237322eeba52a05e5aef8e6a843bbdbdabda998616f878eef2c4a4f26cb9348cabd02fc78389d12bdff614758cc385b6eded0448 - sha512sums_x86_64 = 6c653476af1d2cb5817323af05c224d1ba5d807006224bdc6f391e90087d896977106023a5a578ce8edc144d945b8abe3a05bb79ae25507d1fdd85c6b90d145e - source_aarch64 = runsc-aarch64-20240401.0::https://storage.googleapis.com/gvisor/releases/release/20240401.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20240401.0::https://storage.googleapis.com/gvisor/releases/release/20240401.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 933735a562d02d2c332ec80222c11292317578e44d1135ec19e5757b2c64456f70adabfb688383e8ae3079da6b309ffe84be1cf1dd90268b776f879331e33f14 - sha512sums_aarch64 = d313fe8cb1a14e6b92507e8e128270f8fadedb66efff47586765983236a50ce07a02d6dc40726fc8b7ccc037b46f2593f3a6824ade227a0e269bc71fa7eb0868 + source_x86_64 = runsc-x86_64-20240501.0::https://storage.googleapis.com/gvisor/releases/release/20240501.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20240501.0::https://storage.googleapis.com/gvisor/releases/release/20240501.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = 34e11b0a9479adc6a39e8202af6a96c697b044a26ab952c0d225b4d46cbd04248358ed2ab93b6c3f616b1380f8fe59e4d61fe89a42233728bb3decd10e158e85 + sha512sums_x86_64 = a011d53a261d0b9394121c667af1f85e8e02e209fc62e5241c80c69ff98018198984ee32426a2f0e6992b833d960df8f8eeb3991e499f39015536de2d11b5a13 + source_aarch64 = runsc-aarch64-20240501.0::https://storage.googleapis.com/gvisor/releases/release/20240501.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20240501.0::https://storage.googleapis.com/gvisor/releases/release/20240501.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 93ed2233018c14f3b22ab67b43c3bc734139a55d2a30056f1d8be39ca679be618013a850dfe726edb40f5a2394d76d85e5ff56662e8c350f2df656bec28daa8e + sha512sums_aarch64 = 16b07544260a9463e242df5744ecf0e7897d7d7c320c1be002fbb69f482ca897b00672380c097a6af8593c69475e17c6c357848be96f2f6b062e96e8d1ac5bab pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index bdab9bb..1c2f68a 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20240401.0 +pkgver=20240501.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('c48737d39cf9f85cdfca9717237322eeba52a05e5aef8e6a843bbdbdabda998616f878eef2c4a4f26cb9348cabd02fc78389d12bdff614758cc385b6eded0448' - '6c653476af1d2cb5817323af05c224d1ba5d807006224bdc6f391e90087d896977106023a5a578ce8edc144d945b8abe3a05bb79ae25507d1fdd85c6b90d145e') -sha512sums_aarch64=('933735a562d02d2c332ec80222c11292317578e44d1135ec19e5757b2c64456f70adabfb688383e8ae3079da6b309ffe84be1cf1dd90268b776f879331e33f14' - 'd313fe8cb1a14e6b92507e8e128270f8fadedb66efff47586765983236a50ce07a02d6dc40726fc8b7ccc037b46f2593f3a6824ade227a0e269bc71fa7eb0868') +sha512sums_x86_64=('34e11b0a9479adc6a39e8202af6a96c697b044a26ab952c0d225b4d46cbd04248358ed2ab93b6c3f616b1380f8fe59e4d61fe89a42233728bb3decd10e158e85' + 'a011d53a261d0b9394121c667af1f85e8e02e209fc62e5241c80c69ff98018198984ee32426a2f0e6992b833d960df8f8eeb3991e499f39015536de2d11b5a13') +sha512sums_aarch64=('93ed2233018c14f3b22ab67b43c3bc734139a55d2a30056f1d8be39ca679be618013a850dfe726edb40f5a2394d76d85e5ff56662e8c350f2df656bec28daa8e' + '16b07544260a9463e242df5744ecf0e7897d7d7c320c1be002fbb69f482ca897b00672380c097a6af8593c69475e17c6c357848be96f2f6b062e96e8d1ac5bab') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From 104661d3a4942ff04c6049a2870cdbba18a7db3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 7 May 2024 19:41:09 +0200 Subject: [PATCH 732/971] upgpkg: gvisor-git 20240501.0-1 upstream release --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index 4cee48a..6fa877b 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20240401.0 + pkgver = 20240501.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index 8c594da..f1ede18 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20240401.0 +pkgver=20240501.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From a90086660fa3ae19167075b437b1f4fc27ddf928 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 7 May 2024 19:42:26 +0200 Subject: [PATCH 733/971] upgpkg: firefox-syncstorage 0.15.7-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index 820f2ae..9b57a22 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.15.5 + pkgver = 0.15.7 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -21,9 +21,9 @@ pkgbase = firefox-syncstorage optdepends = mysql: for use with a local database server options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.15.5/syncstorage-rs-0.15.5.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.15.7/syncstorage-rs-0.15.7.tar.gz source = firefox-syncstorage.service - sha512sums = bbce43c4d504ce972f9706755594524bc8678dd95ebd640d9c23494d2c2b941720154af7c1ca702f0551e587cebd2c7497aadc8317a28b03890b41b39cf07679 + sha512sums = e546861d1464babb9ee6daef7fa8c2ae2002b1c00833a0eccd6a5b46627e028f06bec9ca3dab257e18d4f2c8a15fae6dc828a6fbb942d26f5e250cdb8e2992fd sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index 90d239d..082cdc5 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.15.5 +pkgver=0.15.7 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -18,7 +18,7 @@ options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha512sums=('bbce43c4d504ce972f9706755594524bc8678dd95ebd640d9c23494d2c2b941720154af7c1ca702f0551e587cebd2c7497aadc8317a28b03890b41b39cf07679' +sha512sums=('e546861d1464babb9ee6daef7fa8c2ae2002b1c00833a0eccd6a5b46627e028f06bec9ca3dab257e18d4f2c8a15fae6dc828a6fbb942d26f5e250cdb8e2992fd' '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") From a103a051b78489fd58bec2a1eb495774cae4b80d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 7 May 2024 19:44:46 +0200 Subject: [PATCH 734/971] discord-electron: Remove maintainer notice * Package removed from AUR but kept here for preservation --- discord-electron/PKGBUILD | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index e07fa4a..57ed8d5 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,16 +1,3 @@ -# Maintainer: Manuel Hüsers -# Contributor: Zoddo -# Contributor: Thaodan -# Contributor: Stick -# Contributor: johnnyapol -# Contributor: huyizheng -# Contributor: Filipe Laíns (FFY00) -# Contributor: Morgan - -# Based off the discord_arch_electron_wayland PKGBUILD from Stick -# Based off the discord_arch_electron PKGBUILD from johnnyapol, huyizheng, Thaodan and Zoddo -# Based off the discord community repo PKGBUILD by Filipe Laíns (FFY00) - pkgname=discord-electron _pkgname=discord pkgver=0.0.52 From a71208ca9b7aa50ca7633121b0088a41b6f942ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 7 May 2024 19:45:59 +0200 Subject: [PATCH 735/971] upgpkg: discord-electron 0.0.53-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index cc89bf7..37d9d06 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v30) for increased security and performance - pkgver = 0.0.52 + pkgver = 0.0.53 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.52/discord-0.0.52.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.53/discord-0.0.53.tar.gz source = discord-launcher.sh - sha512sums = 42ff4b59a0dd846f06a297a1a8b5a1e28f37daa6951b4ce597d103492458c5ae90f69545908cd41238c5ed91b249ad2dd9b9cec3ef4feeb9ad22245c692eaa72 + sha512sums = dfc92d477397324383a4656a770c0aac153527002b07bac56ec5e3947443f2ab6d0958b2c508d6cf5ed2ecaff83b64616387b7a2459d340b438c3d73ab0f6f83 sha512sums = 9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 57ed8d5..ebe989a 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.52 +pkgver=0.0.53 pkgrel=1 _electronver=30 _electronname="electron${_electronver}" @@ -22,10 +22,10 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('42ff4b59a0dd846f06a297a1a8b5a1e28f37daa6951b4ce597d103492458c5ae90f69545908cd41238c5ed91b249ad2dd9b9cec3ef4feeb9ad22245c692eaa72' +sha512sums=('dfc92d477397324383a4656a770c0aac153527002b07bac56ec5e3947443f2ab6d0958b2c508d6cf5ed2ecaff83b64616387b7a2459d340b438c3d73ab0f6f83' '9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40') -_krisp_b2sum='ef14b1dc86613fdac87e3cd975f020192d9fd4dd5a88e685c3edbb245e343924c75179acb7724d81ae3e5b0b7b5f52d208f3f1a9b1ccd73a7fe06e96662c4e81' +_krisp_b2sum='c4e49b1a0be64cacd23474c5e474130084755f2de36af01686ce94c6eceea67426b6d6aa81889a418f9d08476476e99d63479b6131d1f7eaef987ecf4d779cf9' prepare() { # prepare launcher script From 2691361ed793619868013c465f457f363b58ac9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 7 May 2024 19:46:31 +0200 Subject: [PATCH 736/971] upgpkg: discord-electron-openasar 0.0.53+827-1 upstream release Remove obsolete package origin notice --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 10 +++------- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 0e757b1..5ca02be 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v30) for increased security and performance - pkgver = 0.0.52+827 + pkgver = 0.0.53+827 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,10 +21,10 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.52/discord-0.0.52.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.53/discord-0.0.53.tar.gz source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d - sha512sums = 42ff4b59a0dd846f06a297a1a8b5a1e28f37daa6951b4ce597d103492458c5ae90f69545908cd41238c5ed91b249ad2dd9b9cec3ef4feeb9ad22245c692eaa72 + sha512sums = dfc92d477397324383a4656a770c0aac153527002b07bac56ec5e3947443f2ab6d0958b2c508d6cf5ed2ecaff83b64616387b7a2459d340b438c3d73ab0f6f83 sha512sums = 9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40 sha512sums = 055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 9a41ac6..bb1b80f 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -1,12 +1,8 @@ # Maintainer: Manuel Hüsers -# Based off the discord_arch_electron_wayland PKGBUILD from Stick -# Based off the discord_arch_electron PKGBUILD from johnnyapol, huyizheng, Thaodan and Zoddo -# Based off the discord community repo PKGBUILD by Filipe Laíns (FFY00) - pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.52+827 +pkgver=0.0.53+827 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=30 @@ -30,11 +26,11 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d") -sha512sums=('42ff4b59a0dd846f06a297a1a8b5a1e28f37daa6951b4ce597d103492458c5ae90f69545908cd41238c5ed91b249ad2dd9b9cec3ef4feeb9ad22245c692eaa72' +sha512sums=('dfc92d477397324383a4656a770c0aac153527002b07bac56ec5e3947443f2ab6d0958b2c508d6cf5ed2ecaff83b64616387b7a2459d340b438c3d73ab0f6f83' '9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40' '055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849') -_krisp_b2sum='ef14b1dc86613fdac87e3cd975f020192d9fd4dd5a88e685c3edbb245e343924c75179acb7724d81ae3e5b0b7b5f52d208f3f1a9b1ccd73a7fe06e96662c4e81' +_krisp_b2sum='c4e49b1a0be64cacd23474c5e474130084755f2de36af01686ce94c6eceea67426b6d6aa81889a418f9d08476476e99d63479b6131d1f7eaef987ecf4d779cf9' # just in case I get the version wrong pkgver() { From 9352ffefd1538ecf9a9c3637fe913130e9591cf7 Mon Sep 17 00:00:00 2001 From: Manuel Date: Tue, 7 May 2024 20:48:28 +0200 Subject: [PATCH 737/971] Update makepkg.conf * Include latest ALHP changes * Enable compression for archives again --- makepkg.conf | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/makepkg.conf b/makepkg.conf index 6d15ed4..703c3ad 100644 --- a/makepkg.conf +++ b/makepkg.conf @@ -40,9 +40,10 @@ CHOST="x86_64-pc-linux-gnu" #-- Compiler and Linker Flags #CPPFLAGS="" -CFLAGS="-march=x86-64-v3 -O3 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -mpclmul" +CFLAGS="-march=x86-64-v3 -O3 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=3 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mpclmul" CXXFLAGS="$CFLAGS -Wp,-D_GLIBCXX_ASSERTIONS" -LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now,-z,pack-relative-relocs" +LDFLAGS="-Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now \ + -Wl,-z,pack-relative-relocs" LTOFLAGS="-flto=auto -falign-functions=32" RUSTFLAGS="-Copt-level=3 -Ctarget-cpu=x86-64-v3 -Clink-arg=-z -Clink-arg=pack-relative-relocs -Ccodegen-units=1" @@ -151,8 +152,8 @@ COMPRESSLZ=(lzip -c -f) # EXTENSION DEFAULTS ######################################################################### # -PKGEXT='.pkg.tar' -SRCEXT='.src.tar' +PKGEXT='.pkg.tar.zst' +SRCEXT='.src.tar.gz' ######################################################################### # OTHER @@ -163,8 +164,8 @@ SRCEXT='.src.tar' # vim: set ft=sh ts=2 sw=2 et: export KCPPFLAGS=" -march=x86-64-v3 -O3" -export FCFLAGS=$CFLAGS -export KCFLAGS=" -march=x86-64-v3 -O3" export FFLAGS=$CFLAGS +export KCFLAGS=" -march=x86-64-v3 -O3" +export FCFLAGS=$CFLAGS export GOAMD64=v3 export CARGO_PROFILE_RELEASE_LTO=fat From ed4692db908f7facf696876e8b482a3098071b16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 13 May 2024 06:56:15 +0200 Subject: [PATCH 738/971] upgpkg: firefox-syncstorage 0.15.8-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index 9b57a22..5614202 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.15.7 + pkgver = 0.15.8 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -21,9 +21,9 @@ pkgbase = firefox-syncstorage optdepends = mysql: for use with a local database server options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.15.7/syncstorage-rs-0.15.7.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.15.8/syncstorage-rs-0.15.8.tar.gz source = firefox-syncstorage.service - sha512sums = e546861d1464babb9ee6daef7fa8c2ae2002b1c00833a0eccd6a5b46627e028f06bec9ca3dab257e18d4f2c8a15fae6dc828a6fbb942d26f5e250cdb8e2992fd + sha512sums = 154d628bbaf999a1890d45278a3c00806fab5c3bce1c9b001c13f7fd68b1d95cbc9acc13586eab0285930a6d64c9d70b10cd83378479902056e2b40d3a5f591b sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index 082cdc5..9ce2055 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.15.7 +pkgver=0.15.8 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -18,7 +18,7 @@ options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha512sums=('e546861d1464babb9ee6daef7fa8c2ae2002b1c00833a0eccd6a5b46627e028f06bec9ca3dab257e18d4f2c8a15fae6dc828a6fbb942d26f5e250cdb8e2992fd' +sha512sums=('154d628bbaf999a1890d45278a3c00806fab5c3bce1c9b001c13f7fd68b1d95cbc9acc13586eab0285930a6d64c9d70b10cd83378479902056e2b40d3a5f591b' '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") From 5468d9f52703fd291bfb3415aaee4ab47d62f542 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 13 May 2024 06:56:37 +0200 Subject: [PATCH 739/971] upgpkg: clonezilla-unstable 5.6.4-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 14a47e8..e3dc131 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.2 + pkgver = 5.6.4 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.2.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.4.tar.xz source = usrbin.patch - sha512sums = 197d4d17b099c4d2136020f102365d9f6c95468a8006b98c1e16214d8f2c6f8c6a42f513048b50081d401e0d96516c0a98e3cdf055f64685ba7f77e1a813e436 + sha512sums = 8538dbcf13fccea246fb027708230bfe31f864e1f86800532fb34556cfd29aaa7f054dc4f0ff07438492852f129ac46aa1c6acde57804fd5567e82ac149480f0 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 9446646..0012b94 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.2 +pkgver=5.6.4 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('197d4d17b099c4d2136020f102365d9f6c95468a8006b98c1e16214d8f2c6f8c6a42f513048b50081d401e0d96516c0a98e3cdf055f64685ba7f77e1a813e436' +sha512sums=('8538dbcf13fccea246fb027708230bfe31f864e1f86800532fb34556cfd29aaa7f054dc4f0ff07438492852f129ac46aa1c6acde57804fd5567e82ac149480f0' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 5c88a337dc1e0672ccd88d06e91b7d3aa04bef52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 13 May 2024 06:56:37 +0200 Subject: [PATCH 740/971] upgpkg: clonezilla-unstable 5.6.4-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 14a47e8..e3dc131 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.2 + pkgver = 5.6.4 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.2.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.4.tar.xz source = usrbin.patch - sha512sums = 197d4d17b099c4d2136020f102365d9f6c95468a8006b98c1e16214d8f2c6f8c6a42f513048b50081d401e0d96516c0a98e3cdf055f64685ba7f77e1a813e436 + sha512sums = 8538dbcf13fccea246fb027708230bfe31f864e1f86800532fb34556cfd29aaa7f054dc4f0ff07438492852f129ac46aa1c6acde57804fd5567e82ac149480f0 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 9446646..0012b94 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.2 +pkgver=5.6.4 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('197d4d17b099c4d2136020f102365d9f6c95468a8006b98c1e16214d8f2c6f8c6a42f513048b50081d401e0d96516c0a98e3cdf055f64685ba7f77e1a813e436' +sha512sums=('8538dbcf13fccea246fb027708230bfe31f864e1f86800532fb34556cfd29aaa7f054dc4f0ff07438492852f129ac46aa1c6acde57804fd5567e82ac149480f0' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From d637a764819dfb2d62cd7c18390a31820dc15195 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 13 May 2024 06:56:52 +0200 Subject: [PATCH 741/971] upgpkg: systemtap 5.1-1 upstream release --- systemtap/.SRCINFO | 10 +++++----- systemtap/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/systemtap/.SRCINFO b/systemtap/.SRCINFO index 2b9c955..710496c 100644 --- a/systemtap/.SRCINFO +++ b/systemtap/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = systemtap pkgdesc = Infrastructure to simplify the gathering of information about the running Linux system - pkgver = 5.0 - pkgrel = 2 + pkgver = 5.1 + pkgrel = 1 url = https://sourceware.org/systemtap/ install = systemtap.install arch = x86_64 @@ -14,10 +14,10 @@ pkgbase = systemtap depends = cpio optdepends = sqlite3: for storing results in a database options = !emptydirs - source = https://sourceware.org/ftp/systemtap/releases/systemtap-5.0.tar.gz - source = https://sourceware.org/ftp/systemtap/releases/systemtap-5.0.tar.gz.asc + source = https://sourceware.org/ftp/systemtap/releases/systemtap-5.1.tar.gz + source = https://sourceware.org/ftp/systemtap/releases/systemtap-5.1.tar.gz.asc validpgpkeys = 41A0C11274B1E87FE28E4C53E3D77E1F95161991 - sha512sums = dc511a05e66abcbbd8c926973962751196180f3c571d0cd2a3b158ae367c5339ad32967a680ecd03224ab5f7ed2c55be7064867e4fb1b1cd7ea1cb21b2436e4c + sha512sums = da0fe237d2124031a5786d1221dbb420d90da5497376715fd43a7a9f61a354a229c1128e67ce6becbc012aa3796dc5d337149e239e3c1def0651b179e5bf199f sha512sums = SKIP pkgname = systemtap diff --git a/systemtap/PKGBUILD b/systemtap/PKGBUILD index 36a3f5e..c6dab89 100644 --- a/systemtap/PKGBUILD +++ b/systemtap/PKGBUILD @@ -6,8 +6,8 @@ # Contributor: dront78 pkgname=systemtap -pkgver=5.0 -pkgrel=2 +pkgver=5.1 +pkgrel=1 pkgdesc="Infrastructure to simplify the gathering of information about the running Linux system" url="https://sourceware.org/systemtap/" arch=('x86_64') @@ -18,7 +18,7 @@ optdepends=('sqlite3: for storing results in a database') options=('!emptydirs') install="${pkgname}.install" source=("https://sourceware.org/ftp/${pkgname}/releases/${pkgname}-${pkgver}.tar.gz"{,.asc}) -sha512sums=('dc511a05e66abcbbd8c926973962751196180f3c571d0cd2a3b158ae367c5339ad32967a680ecd03224ab5f7ed2c55be7064867e4fb1b1cd7ea1cb21b2436e4c' +sha512sums=('da0fe237d2124031a5786d1221dbb420d90da5497376715fd43a7a9f61a354a229c1128e67ce6becbc012aa3796dc5d337149e239e3c1def0651b179e5bf199f' 'SKIP') validpgpkeys=('41A0C11274B1E87FE28E4C53E3D77E1F95161991') From 09e109da22091aa12412ed3e3ab57cde961d9212 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 14 May 2024 07:58:13 +0200 Subject: [PATCH 742/971] upgpkg: discord-electron 0.0.54-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 37d9d06..a25909c 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v30) for increased security and performance - pkgver = 0.0.53 + pkgver = 0.0.54 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,9 +18,9 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.53/discord-0.0.53.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.54/discord-0.0.54.tar.gz source = discord-launcher.sh - sha512sums = dfc92d477397324383a4656a770c0aac153527002b07bac56ec5e3947443f2ab6d0958b2c508d6cf5ed2ecaff83b64616387b7a2459d340b438c3d73ab0f6f83 + sha512sums = ceb6265e846fafd27e3c2941f00f0a2d4e045abe5471a2691b070bedb330ef345edee838a706b27ff65ecce40aec46b1a1dd9c4bb9763dadaa907ec181c1a222 sha512sums = 9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index ebe989a..825a770 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.53 +pkgver=0.0.54 pkgrel=1 _electronver=30 _electronname="electron${_electronver}" @@ -22,7 +22,7 @@ optdepends=( ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh') -sha512sums=('dfc92d477397324383a4656a770c0aac153527002b07bac56ec5e3947443f2ab6d0958b2c508d6cf5ed2ecaff83b64616387b7a2459d340b438c3d73ab0f6f83' +sha512sums=('ceb6265e846fafd27e3c2941f00f0a2d4e045abe5471a2691b070bedb330ef345edee838a706b27ff65ecce40aec46b1a1dd9c4bb9763dadaa907ec181c1a222' '9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40') _krisp_b2sum='c4e49b1a0be64cacd23474c5e474130084755f2de36af01686ce94c6eceea67426b6d6aa81889a418f9d08476476e99d63479b6131d1f7eaef987ecf4d779cf9' From 1fd3ff62f276e4fb58530cd9c361a89d7427cebb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 14 May 2024 07:58:32 +0200 Subject: [PATCH 743/971] upgpkg: discord-electron-openasar 0.0.54+827-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 5ca02be..35dba20 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v30) for increased security and performance - pkgver = 0.0.53+827 + pkgver = 0.0.54+827 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,10 +21,10 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.53/discord-0.0.53.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.54/discord-0.0.54.tar.gz source = discord-launcher.sh source = git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d - sha512sums = dfc92d477397324383a4656a770c0aac153527002b07bac56ec5e3947443f2ab6d0958b2c508d6cf5ed2ecaff83b64616387b7a2459d340b438c3d73ab0f6f83 + sha512sums = ceb6265e846fafd27e3c2941f00f0a2d4e045abe5471a2691b070bedb330ef345edee838a706b27ff65ecce40aec46b1a1dd9c4bb9763dadaa907ec181c1a222 sha512sums = 9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40 sha512sums = 055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index bb1b80f..0e1ac1a 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.53+827 +pkgver=0.0.54+827 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=30 @@ -26,7 +26,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' "git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d") -sha512sums=('dfc92d477397324383a4656a770c0aac153527002b07bac56ec5e3947443f2ab6d0958b2c508d6cf5ed2ecaff83b64616387b7a2459d340b438c3d73ab0f6f83' +sha512sums=('ceb6265e846fafd27e3c2941f00f0a2d4e045abe5471a2691b070bedb330ef345edee838a706b27ff65ecce40aec46b1a1dd9c4bb9763dadaa907ec181c1a222' '9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40' '055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849') From dfb6d97ad5cf4b595b28147cdf5490353b54255a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 9 Jun 2024 17:45:40 +0200 Subject: [PATCH 744/971] upgpkg: clonezilla-unstable 5.6.9-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index e3dc131..33f83dc 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.4 + pkgver = 5.6.9 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.4.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.9.tar.xz source = usrbin.patch - sha512sums = 8538dbcf13fccea246fb027708230bfe31f864e1f86800532fb34556cfd29aaa7f054dc4f0ff07438492852f129ac46aa1c6acde57804fd5567e82ac149480f0 + sha512sums = 118324af060ce4967269668979baa8e97ea9bdce67d8dd8bcf470c9a59062ccf45b8e219e4a18511a3a674a1a205ee1990e2493b9fc38fbf7b654aa7643d5f3b sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 0012b94..e8825a4 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.4 +pkgver=5.6.9 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('8538dbcf13fccea246fb027708230bfe31f864e1f86800532fb34556cfd29aaa7f054dc4f0ff07438492852f129ac46aa1c6acde57804fd5567e82ac149480f0' +sha512sums=('118324af060ce4967269668979baa8e97ea9bdce67d8dd8bcf470c9a59062ccf45b8e219e4a18511a3a674a1a205ee1990e2493b9fc38fbf7b654aa7643d5f3b' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 7f7874fc0c7121818716d5adf6c653613e71e12d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 9 Jun 2024 17:45:40 +0200 Subject: [PATCH 745/971] upgpkg: clonezilla-unstable 5.6.9-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index e3dc131..33f83dc 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.4 + pkgver = 5.6.9 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.4.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.9.tar.xz source = usrbin.patch - sha512sums = 8538dbcf13fccea246fb027708230bfe31f864e1f86800532fb34556cfd29aaa7f054dc4f0ff07438492852f129ac46aa1c6acde57804fd5567e82ac149480f0 + sha512sums = 118324af060ce4967269668979baa8e97ea9bdce67d8dd8bcf470c9a59062ccf45b8e219e4a18511a3a674a1a205ee1990e2493b9fc38fbf7b654aa7643d5f3b sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 0012b94..e8825a4 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.4 +pkgver=5.6.9 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('8538dbcf13fccea246fb027708230bfe31f864e1f86800532fb34556cfd29aaa7f054dc4f0ff07438492852f129ac46aa1c6acde57804fd5567e82ac149480f0' +sha512sums=('118324af060ce4967269668979baa8e97ea9bdce67d8dd8bcf470c9a59062ccf45b8e219e4a18511a3a674a1a205ee1990e2493b9fc38fbf7b654aa7643d5f3b' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From db2f1a14b9b3df9adc65965e8782e852afeec5dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 9 Jun 2024 17:46:52 +0200 Subject: [PATCH 746/971] upgpkg: qvr 4.0.2-1 upstream release --- qvr/.SRCINFO | 10 +++++----- qvr/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/qvr/.SRCINFO b/qvr/.SRCINFO index 94d9f52..0fc34f9 100644 --- a/qvr/.SRCINFO +++ b/qvr/.SRCINFO @@ -1,16 +1,16 @@ pkgbase = qvr pkgdesc = A library that makes writing Virtual Reality (VR) applications very easy - pkgver = 4.0.1 - pkgrel = 3 + pkgver = 4.0.2 + pkgrel = 1 url = https://marlam.de/qvr/ arch = x86_64 license = MIT makedepends = cmake depends = qt6-base - source = https://marlam.de/qvr/releases/qvr-4.0.1.tar.gz - source = https://marlam.de/qvr/releases/qvr-4.0.1.tar.gz.sig + source = https://marlam.de/qvr/releases/qvr-4.0.2.tar.gz + source = https://marlam.de/qvr/releases/qvr-4.0.2.tar.gz.sig validpgpkeys = 2F61B4828BBA779AECB3F32703A2A4AB1E32FD34 - sha512sums = 9d306d013873354ec875d1433fe7648219b8e43d34dd510fc72d70b80eabae1049d155e5cf8f8a314f7aed0988bd34ce14cb266b84ff737b8e80cdbb2e5c0a52 + sha512sums = 9c973ee15f87026ef30dabc7a1cabcaac7cf2cfce8720434935db136e0352c749b448fc1036dd8242dc124c28d596aea13b3fd43840adbf330c892e2dffabc69 sha512sums = SKIP pkgname = qvr diff --git a/qvr/PKGBUILD b/qvr/PKGBUILD index c9b5e56..9a976fb 100644 --- a/qvr/PKGBUILD +++ b/qvr/PKGBUILD @@ -1,8 +1,8 @@ # Maintainer: Manuel Hüsers pkgname=qvr -pkgver=4.0.1 -pkgrel=3 +pkgver=4.0.2 +pkgrel=1 pkgdesc='A library that makes writing Virtual Reality (VR) applications very easy' arch=('x86_64') url='https://marlam.de/qvr/' @@ -10,7 +10,7 @@ license=('MIT') depends=('qt6-base') makedepends=('cmake') source=(https://marlam.de/qvr/releases/$pkgname-$pkgver.tar.gz{,.sig}) -sha512sums=('9d306d013873354ec875d1433fe7648219b8e43d34dd510fc72d70b80eabae1049d155e5cf8f8a314f7aed0988bd34ce14cb266b84ff737b8e80cdbb2e5c0a52' +sha512sums=('9c973ee15f87026ef30dabc7a1cabcaac7cf2cfce8720434935db136e0352c749b448fc1036dd8242dc124c28d596aea13b3fd43840adbf330c892e2dffabc69' 'SKIP') validpgpkeys=('2F61B4828BBA779AECB3F32703A2A4AB1E32FD34') From 6ca428c950bdcdb6d29af5487139497588a0a2ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 9 Jun 2024 17:47:01 +0200 Subject: [PATCH 747/971] upgpkg: bino 2.2-1 upstream release --- bino/.SRCINFO | 8 ++++---- bino/PKGBUILD | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bino/.SRCINFO b/bino/.SRCINFO index 04ac342..1febe50 100644 --- a/bino/.SRCINFO +++ b/bino/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = bino pkgdesc = A video player with focus on 3D and Virtual Reality - pkgver = 2.1 + pkgver = 2.2 pkgrel = 1 url = https://bino3d.org/ arch = x86_64 @@ -10,10 +10,10 @@ pkgbase = bino depends = qt6-multimedia depends = qt6-svg depends = qvr - source = https://bino3d.org/releases/bino-2.1.tar.gz - source = https://bino3d.org/releases/bino-2.1.tar.gz.sig + source = https://bino3d.org/releases/bino-2.2.tar.gz + source = https://bino3d.org/releases/bino-2.2.tar.gz.sig validpgpkeys = 2F61B4828BBA779AECB3F32703A2A4AB1E32FD34 - sha512sums = 6a7e22a311bdfce4fbfb4b0dedebc5524ea08af773d14e6ca235c3693c7aacea40b1941302e2a9c20564a0783b4728b38db9f6cbb727289df668d50dbba0180d + sha512sums = 73e6207db4a71673f88ebbd8999054acfc8f70a069fc74089976786082373d0eb7ae675786b1d3cf8907987267d9b1b50ddb05366b8b70f880c6898da765cd7b sha512sums = SKIP pkgname = bino diff --git a/bino/PKGBUILD b/bino/PKGBUILD index 63cdbe5..90d33d2 100644 --- a/bino/PKGBUILD +++ b/bino/PKGBUILD @@ -4,7 +4,7 @@ # Contributor: archtux pkgname=bino -pkgver=2.1 +pkgver=2.2 pkgrel=1 pkgdesc='A video player with focus on 3D and Virtual Reality' arch=('x86_64') @@ -13,7 +13,7 @@ license=('GPL3') depends=('qt6-multimedia' 'qt6-svg' 'qvr') makedepends=('cmake' 'qt6-tools') source=(https://bino3d.org/releases/$pkgname-$pkgver.tar.gz{,.sig}) -sha512sums=('6a7e22a311bdfce4fbfb4b0dedebc5524ea08af773d14e6ca235c3693c7aacea40b1941302e2a9c20564a0783b4728b38db9f6cbb727289df668d50dbba0180d' +sha512sums=('73e6207db4a71673f88ebbd8999054acfc8f70a069fc74089976786082373d0eb7ae675786b1d3cf8907987267d9b1b50ddb05366b8b70f880c6898da765cd7b' 'SKIP') validpgpkeys=('2F61B4828BBA779AECB3F32703A2A4AB1E32FD34') From 7d104b42402f7ec5e710eb8143a092467b748bd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 9 Jun 2024 17:47:31 +0200 Subject: [PATCH 748/971] upgpkg: firefox-syncstorage 0.15.9-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index 5614202..150edf5 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.15.8 + pkgver = 0.15.9 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -21,9 +21,9 @@ pkgbase = firefox-syncstorage optdepends = mysql: for use with a local database server options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.15.8/syncstorage-rs-0.15.8.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.15.9/syncstorage-rs-0.15.9.tar.gz source = firefox-syncstorage.service - sha512sums = 154d628bbaf999a1890d45278a3c00806fab5c3bce1c9b001c13f7fd68b1d95cbc9acc13586eab0285930a6d64c9d70b10cd83378479902056e2b40d3a5f591b + sha512sums = 4fc085af4a8942cb3e07ccc23423c37d0b9a5e858e304b3e0cdfa415ea50a71e407486d510d30f1de6fec8dcd11a82460cc0a273daa1c80a87001dc1fbbe4d2f sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index 9ce2055..781451d 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.15.8 +pkgver=0.15.9 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -18,7 +18,7 @@ options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha512sums=('154d628bbaf999a1890d45278a3c00806fab5c3bce1c9b001c13f7fd68b1d95cbc9acc13586eab0285930a6d64c9d70b10cd83378479902056e2b40d3a5f591b' +sha512sums=('4fc085af4a8942cb3e07ccc23423c37d0b9a5e858e304b3e0cdfa415ea50a71e407486d510d30f1de6fec8dcd11a82460cc0a273daa1c80a87001dc1fbbe4d2f' '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") From dca59af8cb7bf03920bf05dc706611fae618800a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 9 Jun 2024 17:54:31 +0200 Subject: [PATCH 749/971] upgpkg: tuned 2.23.0-1 upstream release --- tuned/.SRCINFO | 9 +++++---- tuned/PKGBUILD | 13 +++++++------ 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/tuned/.SRCINFO b/tuned/.SRCINFO index 55cb52d..09af01b 100644 --- a/tuned/.SRCINFO +++ b/tuned/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = 2.22.1 - pkgrel = 2 + pkgver = 2.23.0 + pkgrel = 1 url = https://github.com/redhat-performance/tuned arch = any license = GPL @@ -18,8 +18,8 @@ pkgbase = tuned depends = python-perf depends = python-pyudev options = !emptydirs - source = https://github.com/redhat-performance/tuned/archive/v2.22.1/tuned-2.22.1.tar.gz - sha512sums = 160b1cab5477d84a0da89f584fe646b32162527a138d9b5957799c5f26598b98449733040710133a1c5bdd5588eee72549131ff163e777a105fc24e92edc6d8f + source = https://github.com/redhat-performance/tuned/archive/v2.23.0/tuned-2.23.0.tar.gz + sha512sums = b7d95b17ab38ac944e6e5b8b4345ddf65120a03ebb73cdb1795525c237852a8fa4223dcef6ce28189874e5010c8076816bd3646fd7f700983f2449400a2057d8 pkgname = tuned install = tuned.install @@ -31,6 +31,7 @@ pkgname = tuned backup = etc/tuned/cpu-partitioning-powersave-variables.conf backup = etc/tuned/cpu-partitioning-variables.conf backup = etc/tuned/post_loaded_profile + backup = etc/tuned/profile_mode backup = etc/tuned/realtime-variables.conf backup = etc/tuned/realtime-virtual-guest-variables.conf backup = etc/tuned/realtime-virtual-host-variables.conf diff --git a/tuned/PKGBUILD b/tuned/PKGBUILD index f80563c..07b5dd4 100644 --- a/tuned/PKGBUILD +++ b/tuned/PKGBUILD @@ -5,8 +5,8 @@ pkgbase=tuned pkgname=("${pkgbase}" "${pkgbase}-ppd") -pkgver=2.22.1 -pkgrel=2 +pkgver=2.23.0 +pkgrel=1 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url="https://github.com/redhat-performance/${pkgbase}" @@ -15,15 +15,15 @@ depends=('dbus-glib' 'ethtool' 'gawk' 'hdparm' 'polkit' 'python-configobj' 'pyth makedepends=('desktop-file-utils') options=('!emptydirs') source=("https://github.com/redhat-performance/${pkgbase}/archive/v${pkgver}/${pkgbase}-${pkgver}.tar.gz") -sha512sums=('160b1cab5477d84a0da89f584fe646b32162527a138d9b5957799c5f26598b98449733040710133a1c5bdd5588eee72549131ff163e777a105fc24e92edc6d8f') +sha512sums=('b7d95b17ab38ac944e6e5b8b4345ddf65120a03ebb73cdb1795525c237852a8fa4223dcef6ce28189874e5010c8076816bd3646fd7f700983f2449400a2057d8') prepare() { cd "${pkgbase}-${pkgver}" mv libexec lib - sed -i 's/libexec/lib/g' Makefile - sed -i 's/sbin/bin/g' Makefile - sed -i 's/install-ppd: install$/install-ppd: install-dirs/' Makefile + sed -i 's|/libexec/|/lib/|g' Makefile + sed -i 's|/sbin/|/bin/|g' Makefile tuned.service tuned-gui.py tuned-gui.desktop tuned/ppd/tuned-ppd.service + sed -i 's|install-ppd: install$|install-ppd: install-dirs|' Makefile } package_tuned() { @@ -35,6 +35,7 @@ package_tuned() { 'etc/tuned/cpu-partitioning-powersave-variables.conf' 'etc/tuned/cpu-partitioning-variables.conf' 'etc/tuned/post_loaded_profile' + 'etc/tuned/profile_mode' 'etc/tuned/realtime-variables.conf' 'etc/tuned/realtime-virtual-guest-variables.conf' 'etc/tuned/realtime-virtual-host-variables.conf' From 44f59b0502547a9a8d74934dcb2424a39e9b783a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 9 Jun 2024 21:50:07 +0200 Subject: [PATCH 750/971] upgpkg: discord-electron 0.0.55-1: refactor, replace krisp patcher * upstream release * Slight refactor of package function and launcher script * Replace Krisp patcher with more robust Python script * Add support for DISCORD_USER_DATA_DIR env var --- discord-electron/.SRCINFO | 14 ++-- discord-electron/PKGBUILD | 36 +++++----- discord-electron/discord-electron.install | 15 +++- discord-electron/discord-launcher.sh | 16 ++--- discord-electron/krisp-patcher.py | 83 +++++++++++++++++++++++ discord-electron/update-package.sh | 57 ++++++++++++++++ 6 files changed, 186 insertions(+), 35 deletions(-) create mode 100644 discord-electron/krisp-patcher.py create mode 100755 discord-electron/update-package.sh diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index a25909c..c07b47d 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v30) for increased security and performance - pkgver = 0.0.54 + pkgver = 0.0.55 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -11,16 +11,20 @@ pkgbase = discord-electron makedepends = python-html2text depends = electron30 depends = libxss + depends = python optdepends = libpulse: Pulseaudio support optdepends = libappindicator-gtk3: Systray indicator support optdepends = xdg-utils: Open files - optdepends = rizin: Allow patching Krisp support + optdepends = python-pyelftools: Required for Krisp patcher + optdepends = python-capstone: Required for Krisp patcher provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.54/discord-0.0.54.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.55/discord-0.0.55.tar.gz source = discord-launcher.sh - sha512sums = ceb6265e846fafd27e3c2941f00f0a2d4e045abe5471a2691b070bedb330ef345edee838a706b27ff65ecce40aec46b1a1dd9c4bb9763dadaa907ec181c1a222 - sha512sums = 9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40 + source = krisp-patcher.py + sha512sums = c12365109cb4db94033fda101073d2a3d6af7bdc9728e025494ee8d44ebf5f27623861879ec38bb7dd88d40de7cddede268e0f5e44bfeb586fc12713a3758c5b + sha512sums = fc25a6ac9ca2881a94158ed972039a4dcc082db91a8ba072f2f896b65a788c9decb4456c71da977ac2976e72d081c6c66aa4bb27b5d58cf946dfea6086b0d557 + sha512sums = 3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 825a770..16c4084 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.54 +pkgver=0.0.55 pkgrel=1 _electronver=30 _electronname="electron${_electronver}" @@ -12,27 +12,27 @@ url='https://discord.com' license=('custom') options=('!strip') install="$pkgname.install" -depends=("${_electronname}" 'libxss') +depends=("${_electronname}" 'libxss' 'python') makedepends=('asar' 'curl' 'python-html2text') optdepends=( 'libpulse: Pulseaudio support' 'libappindicator-gtk3: Systray indicator support' 'xdg-utils: Open files' - 'rizin: Allow patching Krisp support' + 'python-pyelftools: Required for Krisp patcher' + 'python-capstone: Required for Krisp patcher' ) source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" - 'discord-launcher.sh') -sha512sums=('ceb6265e846fafd27e3c2941f00f0a2d4e045abe5471a2691b070bedb330ef345edee838a706b27ff65ecce40aec46b1a1dd9c4bb9763dadaa907ec181c1a222' - '9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40') - -_krisp_b2sum='c4e49b1a0be64cacd23474c5e474130084755f2de36af01686ce94c6eceea67426b6d6aa81889a418f9d08476476e99d63479b6131d1f7eaef987ecf4d779cf9' + 'discord-launcher.sh' + 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py +sha512sums=('c12365109cb4db94033fda101073d2a3d6af7bdc9728e025494ee8d44ebf5f27623861879ec38bb7dd88d40de7cddede268e0f5e44bfeb586fc12713a3758c5b' + 'fc25a6ac9ca2881a94158ed972039a4dcc082db91a8ba072f2f896b65a788c9decb4456c71da977ac2976e72d081c6c66aa4bb27b5d58cf946dfea6086b0d557' + '3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f') prepare() { # prepare launcher script sed -i -e "s|@PKGNAME@|${_pkgname}|g" \ -e "s|@PKGVER@|${pkgver}|g" \ -e "s|@ELECTRON@|${_electronname}|g" \ - -e "s|@KRISPB2@|${_krisp_b2sum}|g" \ discord-launcher.sh # fix the .desktop file @@ -62,20 +62,22 @@ build() { package() { # create necessary directories - install -d "${pkgdir}"/usr/{lib/$_pkgname,bin} - install -d "${pkgdir}"/usr/share/{pixmaps,applications,licenses/$_pkgname} + install -d "${pkgdir}"/usr/lib/$_pkgname # copy relevant data cp -r ${_pkgname^}/resources "${pkgdir}"/usr/lib/$_pkgname/ - cp ${_pkgname^}/$_pkgname.png \ - "${pkgdir}"/usr/share/pixmaps/$_pkgname.png - cp ${_pkgname^}/$_pkgname.desktop \ - "${pkgdir}"/usr/share/applications/$_pkgname.desktop + + # intall icon and desktop file + install -Dm 644 ${_pkgname^}/$_pkgname.png "${pkgdir}"/usr/share/pixmaps/$_pkgname.png + install -Dm 644 ${_pkgname^}/$_pkgname.desktop "${pkgdir}"/usr/share/applications/$_pkgname.desktop # install the launch script install -Dm 755 discord-launcher.sh "${pkgdir}"/usr/bin/$_pkgname + # install krisp patcher + install -Dm 644 krisp-patcher.py "${pkgdir}"/usr/lib/${_pkgname}/ + # install licenses - install -Dm 644 LICENSE.md "${pkgdir}"/usr/share/licenses/$_pkgname/ - install -Dm 644 OSS-LICENSES.md "${pkgdir}"/usr/share/licenses/$_pkgname/ + install -Dm 644 LICENSE.md "${pkgdir}"/usr/share/licenses/$_pkgname/LICENSE.md + install -Dm 644 OSS-LICENSES.md "${pkgdir}"/usr/share/licenses/$_pkgname/OSS-LICENSES.md } diff --git a/discord-electron/discord-electron.install b/discord-electron/discord-electron.install index 193b455..fe95226 100644 --- a/discord-electron/discord-electron.install +++ b/discord-electron/discord-electron.install @@ -1,4 +1,13 @@ post_upgrade() { + # return if old package version is greater than or equal to 0.0.55-1... + (( $(vercmp $2 '0.0.55-1') >= 0 )) && return + + cat < Instead of using 'rizin' to patch Krisp support a patcher written in Python + is now used. Consider installing the necessary optional dependencies to use + this feature. +EOF + # return if old package version is greater than or equal to 0.0.39-2... (( $(vercmp $2 '0.0.39-2') >= 0 )) && return @@ -26,9 +35,9 @@ EOF post_install() { cat < For Krisp noise suppression support consider installing 'rizin' and - setting 'PATCH_KRISP=true' in '~/.config/discord.conf'. Restart your - Discord client afterwards to apply the patch. +==> For Krisp noise suppression support consider installing the necessary optional + dependencies and setting 'PATCH_KRISP=true' in '~/.config/discord.conf'. + Restart your Discord client afterwards to apply the patch. ==> In case of performance problems consider setting additional flags in '~/.config/discord-flags.conf'. EOF diff --git a/discord-electron/discord-launcher.sh b/discord-electron/discord-launcher.sh index c63b91c..e0604e2 100644 --- a/discord-electron/discord-launcher.sh +++ b/discord-electron/discord-launcher.sh @@ -1,22 +1,18 @@ #!/usr/bin/env bash -set -eo pipefail +set -euo pipefail declare -a flags - +declare -l PATCH_KRISP [[ -r "${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@.conf" ]] && source "${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@.conf" flags_file="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@-flags.conf" -krisp_bin="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@/@PKGVER@/modules/@PKGNAME@_krisp/@PKGNAME@_krisp.node" -krisp_b2=@KRISPB2@ +krisp_bin="${DISCORD_USER_DATA_DIR:-${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@}/@PKGVER@/modules/@PKGNAME@_krisp/@PKGNAME@_krisp.node" -if hash rizin &> /dev/null && [[ "${PATCH_KRISP}" == true ]]; then +if [[ "${PATCH_KRISP}" == true ]] && [[ -w "${krisp_bin}" ]] && python -c "import capstone; import elftools" &> /dev/null; then # Patch Krisp binary to ignore signature check - if [[ -w "${krisp_bin}" && $(b2sum "${krisp_bin}" | head -c 128) == $krisp_b2 ]]; then - addr=$(rz-find -x '4881ec00010000' "${krisp_bin}" | head -n1) - rizin -q -w -c "s $addr + 0x30 ; wao nop" "${krisp_bin}" &> /dev/null - fi + python /usr/lib/@PKGNAME@/krisp-patcher.py "${krisp_bin}" fi if [[ -r "${flags_file}" ]]; then @@ -33,7 +29,7 @@ for line in "${MAPFILE[@]}"; do fi done -unset flags_file krisp_bin krisp_b2 +unset flags_file krisp_bin exec /usr/lib/@ELECTRON@/electron \ diff --git a/discord-electron/krisp-patcher.py b/discord-electron/krisp-patcher.py new file mode 100644 index 0000000..5597290 --- /dev/null +++ b/discord-electron/krisp-patcher.py @@ -0,0 +1,83 @@ +import sys +import shutil + +from elftools.elf.elffile import ELFFile +from capstone import * +from capstone.x86 import * + +if len(sys.argv) < 2: + print(f"Usage: {sys.argv[0]} [path to discord_krisp.node]") + # "Unix programs generally use 2 for command line syntax errors and 1 for all other kind of errors." + sys.exit(2) + +executable = sys.argv[1] + +elf = ELFFile(open(executable, "rb")) +symtab = elf.get_section_by_name('.symtab') + +krisp_initialize_address = symtab.get_symbol_by_name("_ZN7discord15KrispInitializeEv")[0].entry.st_value +isSignedByDiscord_address = symtab.get_symbol_by_name("_ZN7discord4util17IsSignedByDiscordERKNSt4__Cr12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE")[0].entry.st_value + +text = elf.get_section_by_name('.text') +text_start = text['sh_addr'] +text_start_file = text['sh_offset'] +# This seems to always be zero (.text starts at the right offset in the file). Do it just in case? +address_to_file = text_start_file - text_start + +# Done with the ELF now. +# elf.close() + +krisp_initialize_offset = krisp_initialize_address - address_to_file +isSignedByDiscord_offset = krisp_initialize_address - address_to_file + +f = open(executable, "rb") +f.seek(krisp_initialize_offset) +krisp_initialize = f.read(64) +f.close() + +# States +found_issigned_by_discord_call = False +found_issigned_by_discord_test = False +found_issigned_by_discord_je = False +found_already_patched = False +je_location = None + +# We are looking for a call to IsSignedByDiscord, followed by a test, followed by a je. +# Then we patch the je into a two byte nop. + +md = Cs(CS_ARCH_X86, CS_MODE_64) +md.detail = True +for i in md.disasm(krisp_initialize, krisp_initialize_address): + if i.id == X86_INS_CALL: + if i.operands[0].type == X86_OP_IMM: + if i.operands[0].imm == isSignedByDiscord_address: + found_issigned_by_discord_call = True + + if i.id == X86_INS_TEST: + if found_issigned_by_discord_call: + found_issigned_by_discord_test = True + + if i.id == X86_INS_JE: + if found_issigned_by_discord_test: + found_issigned_by_discord_je = True + je_location = i.address + break + + if i.id == X86_INS_NOP: + if found_issigned_by_discord_test: + found_already_patched = True + break + +if je_location: + print(f"Found patch location: 0x{je_location:x}") + + shutil.copyfile(executable, executable + ".orig") + f = open(executable, 'rb+') + f.seek(je_location - address_to_file) + f.write(b'\x66\x90') # Two byte NOP + f.close() +else: + if found_already_patched: + print("Couldn't find patch location - already patched.") + else: + print("Couldn't find patch location - review manually. Sorry.") diff --git a/discord-electron/update-package.sh b/discord-electron/update-package.sh new file mode 100755 index 0000000..90cdc1e --- /dev/null +++ b/discord-electron/update-package.sh @@ -0,0 +1,57 @@ +#!/usr/bin/env bash + +set -euo pipefail + +readonly all_off="$(tput sgr0)" +readonly bold="${all_off}$(tput bold)" +readonly white="${bold}$(tput setaf 7)" +readonly blue="${bold}$(tput setaf 4)" +readonly red="${bold}$(tput setaf 1)" + +msg() { + printf "${blue}::${white} $1${all_off}\n" +} + +error() { + printf "${red}::${white} $1${all_off}\n" +} + +msgbegin() { + printf "${blue}::${white} $1" +} + +msgend() { + printf "$1${all_off}\n" +} + + +readonly krisp_zip='discord_krisp-1.zip' +readonly krisp_bin='discord_krisp.node' + +# head to directory of this script +cd $(dirname "$0") + +# update package to version used in PKGBUILD +source PKGBUILD + +msg "Running updpkgsums (Updating checksums)" +updpkgsums + +msg "Running mksrcinfo (Updating SRCINFO file)" +makepkg --printsrcinfo > .SRCINFO + +msg "Getting Krisp module" +curl -O "https://dl.discordapp.net/apps/linux/${_pkgver:-${pkgver}}/modules/${krisp_zip}" +unzip "${krisp_zip}" "${krisp_bin}" + +msg "Checking if Krisp module is patchable (watch output)" +python krisp-patcher.py "${krisp_bin}" + +#msg "Updating Krisp module checksum" +#readonly chcksm=$(b2sum "${krisp_bin}.orig" | head -c 128) +#sed -i "s/^_krisp_b2sum='.*'$/_krisp_b2sum='${chcksm}'/" PKGBUILD + +msgbegin "Cleaning up... " +rm -f "${krisp_zip}" "${krisp_bin}" "${krisp_bin}.orig" + +msgend "Done" From 3dcb012e0520b69f1298f3d0b97d33f2c0bd62b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 9 Jun 2024 21:51:20 +0200 Subject: [PATCH 751/971] upgpkg: discord-electron-openasar 0.0.55+827-1: refactor, replace krisp patcher * upstream release * Slight refactor of package function and launcher script * Replace Krisp patcher with more robust Python script * Add support for DISCORD_USER_DATA_DIR env var --- discord-electron-openasar/.SRCINFO | 14 ++-- discord-electron-openasar/PKGBUILD | 34 ++++---- .../discord-electron-openasar.install | 15 +++- discord-electron-openasar/discord-launcher.sh | 16 ++-- discord-electron-openasar/krisp-patcher.py | 83 +++++++++++++++++++ discord-electron-openasar/update-package.sh | 57 +++++++++++++ 6 files changed, 185 insertions(+), 34 deletions(-) create mode 100644 discord-electron-openasar/krisp-patcher.py create mode 100755 discord-electron-openasar/update-package.sh diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 35dba20..b24b4e3 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v30) for increased security and performance - pkgver = 0.0.54+827 + pkgver = 0.0.55+827 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -14,18 +14,22 @@ pkgbase = discord-electron-openasar depends = electron30 depends = libxss depends = unzip + depends = python optdepends = libpulse: Pulseaudio support optdepends = libappindicator-gtk3: Systray indicator support optdepends = xdg-utils: Open files - optdepends = rizin: Allow patching Krisp support + optdepends = python-pyelftools: Required for Krisp patcher + optdepends = python-capstone: Required for Krisp patcher provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.54/discord-0.0.54.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.55/discord-0.0.55.tar.gz source = discord-launcher.sh + source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d - sha512sums = ceb6265e846fafd27e3c2941f00f0a2d4e045abe5471a2691b070bedb330ef345edee838a706b27ff65ecce40aec46b1a1dd9c4bb9763dadaa907ec181c1a222 - sha512sums = 9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40 + sha512sums = c12365109cb4db94033fda101073d2a3d6af7bdc9728e025494ee8d44ebf5f27623861879ec38bb7dd88d40de7cddede268e0f5e44bfeb586fc12713a3758c5b + sha512sums = fc25a6ac9ca2881a94158ed972039a4dcc082db91a8ba072f2f896b65a788c9decb4456c71da977ac2976e72d081c6c66aa4bb27b5d58cf946dfea6086b0d557 + sha512sums = 3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f sha512sums = 055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849 pkgname = discord-electron-openasar diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 0e1ac1a..43f3145 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.54+827 +pkgver=0.0.55+827 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=30 @@ -15,23 +15,24 @@ url='https://discord.com' license=('custom') options=('!strip') install="$pkgname.install" -depends=("${_electronname}" 'libxss' 'unzip') +depends=("${_electronname}" 'libxss' 'unzip' 'python') makedepends=('git' 'asar' 'nodejs' 'curl' 'python-html2text') optdepends=( 'libpulse: Pulseaudio support' 'libappindicator-gtk3: Systray indicator support' 'xdg-utils: Open files' - 'rizin: Allow patching Krisp support' + 'python-pyelftools: Required for Krisp patcher' + 'python-capstone: Required for Krisp patcher' ) source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' + 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d") -sha512sums=('ceb6265e846fafd27e3c2941f00f0a2d4e045abe5471a2691b070bedb330ef345edee838a706b27ff65ecce40aec46b1a1dd9c4bb9763dadaa907ec181c1a222' - '9d00f9d2e05c2ba31c930c066f247954700bb0f96f2fc605e61c3973d7dacf962bf372659b71e05e5d8d4e152cc884bf12ec1fb5ecbfc4da55d22ab2591c4c40' +sha512sums=('c12365109cb4db94033fda101073d2a3d6af7bdc9728e025494ee8d44ebf5f27623861879ec38bb7dd88d40de7cddede268e0f5e44bfeb586fc12713a3758c5b' + 'fc25a6ac9ca2881a94158ed972039a4dcc082db91a8ba072f2f896b65a788c9decb4456c71da977ac2976e72d081c6c66aa4bb27b5d58cf946dfea6086b0d557' + '3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f' '055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849') -_krisp_b2sum='c4e49b1a0be64cacd23474c5e474130084755f2de36af01686ce94c6eceea67426b6d6aa81889a418f9d08476476e99d63479b6131d1f7eaef987ecf4d779cf9' - # just in case I get the version wrong pkgver() { cd "${srcdir}/openasar" @@ -43,7 +44,6 @@ prepare() { sed -i -e "s|@PKGNAME@|${_pkgname}|g" \ -e "s|@PKGVER@|${_pkgver}|g" \ -e "s|@ELECTRON@|${_electronname}|g" \ - -e "s|@KRISPB2@|${_krisp_b2sum}|g" \ discord-launcher.sh # fix the .desktop file @@ -69,15 +69,14 @@ build() { package() { # create necessary directories - install -d "${pkgdir}"/usr/{lib/$_pkgname,bin} - install -d "${pkgdir}"/usr/share/{pixmaps,applications,licenses/$_pkgname} + install -d "${pkgdir}"/usr/lib/$_pkgname # copy relevant data cp -r ${_pkgname^}/resources "${pkgdir}"/usr/lib/$_pkgname/ - cp ${_pkgname^}/$_pkgname.png \ - "${pkgdir}"/usr/share/pixmaps/$_pkgname.png - cp ${_pkgname^}/$_pkgname.desktop \ - "${pkgdir}"/usr/share/applications/$_pkgname.desktop + + # intall icon and desktop file + install -Dm 644 ${_pkgname^}/$_pkgname.png "${pkgdir}"/usr/share/pixmaps/$_pkgname.png + install -Dm 644 ${_pkgname^}/$_pkgname.desktop "${pkgdir}"/usr/share/applications/$_pkgname.desktop # overwrite Discord asar install -Dm 644 openasar/app.asar "${pkgdir}"/usr/lib/$_pkgname/resources/ @@ -85,7 +84,10 @@ package() { # install the launch script install -Dm 755 discord-launcher.sh "${pkgdir}"/usr/bin/$_pkgname + # install krisp patcher + install -Dm 644 krisp-patcher.py "${pkgdir}"/usr/lib/${_pkgname}/ + # install licenses - install -Dm 644 LICENSE.md "${pkgdir}"/usr/share/licenses/$_pkgname/ - install -Dm 644 OSS-LICENSES.md "${pkgdir}"/usr/share/licenses/$_pkgname/ + install -Dm 644 LICENSE.md "${pkgdir}"/usr/share/licenses/$_pkgname/LICENSE.md + install -Dm 644 OSS-LICENSES.md "${pkgdir}"/usr/share/licenses/$_pkgname/OSS-LICENSES.md } diff --git a/discord-electron-openasar/discord-electron-openasar.install b/discord-electron-openasar/discord-electron-openasar.install index 7011466..1732135 100644 --- a/discord-electron-openasar/discord-electron-openasar.install +++ b/discord-electron-openasar/discord-electron-openasar.install @@ -1,4 +1,13 @@ post_upgrade() { + # return if old package version is greater than or equal to 0.0.55+827-1... + (( $(vercmp $2 '0.0.55+827-1') >= 0 )) && return + + cat < Instead of using 'rizin' to patch Krisp support a patcher written in Python + is now used. Consider installing the necessary optional dependencies to use + this feature. +EOF + # return if old package version is greater than or equal to 0.0.39+824-2... (( $(vercmp $2 '0.0.39+824-2') >= 0 )) && return @@ -26,9 +35,9 @@ EOF post_install() { cat < For Krisp noise suppression support consider installing 'rizin' and - setting 'PATCH_KRISP=true' in '~/.config/discord.conf'. Restart your - Discord client afterwards to apply the patch. +==> For Krisp noise suppression support consider installing the necessary optional + dependencies and setting 'PATCH_KRISP=true' in '~/.config/discord.conf'. + Restart your Discord client afterwards to apply the patch. ==> Additional Electron flags can be set in '~/.config/discord-flags.conf'. EOF } diff --git a/discord-electron-openasar/discord-launcher.sh b/discord-electron-openasar/discord-launcher.sh index c63b91c..e0604e2 100644 --- a/discord-electron-openasar/discord-launcher.sh +++ b/discord-electron-openasar/discord-launcher.sh @@ -1,22 +1,18 @@ #!/usr/bin/env bash -set -eo pipefail +set -euo pipefail declare -a flags - +declare -l PATCH_KRISP [[ -r "${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@.conf" ]] && source "${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@.conf" flags_file="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@-flags.conf" -krisp_bin="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@/@PKGVER@/modules/@PKGNAME@_krisp/@PKGNAME@_krisp.node" -krisp_b2=@KRISPB2@ +krisp_bin="${DISCORD_USER_DATA_DIR:-${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@}/@PKGVER@/modules/@PKGNAME@_krisp/@PKGNAME@_krisp.node" -if hash rizin &> /dev/null && [[ "${PATCH_KRISP}" == true ]]; then +if [[ "${PATCH_KRISP}" == true ]] && [[ -w "${krisp_bin}" ]] && python -c "import capstone; import elftools" &> /dev/null; then # Patch Krisp binary to ignore signature check - if [[ -w "${krisp_bin}" && $(b2sum "${krisp_bin}" | head -c 128) == $krisp_b2 ]]; then - addr=$(rz-find -x '4881ec00010000' "${krisp_bin}" | head -n1) - rizin -q -w -c "s $addr + 0x30 ; wao nop" "${krisp_bin}" &> /dev/null - fi + python /usr/lib/@PKGNAME@/krisp-patcher.py "${krisp_bin}" fi if [[ -r "${flags_file}" ]]; then @@ -33,7 +29,7 @@ for line in "${MAPFILE[@]}"; do fi done -unset flags_file krisp_bin krisp_b2 +unset flags_file krisp_bin exec /usr/lib/@ELECTRON@/electron \ diff --git a/discord-electron-openasar/krisp-patcher.py b/discord-electron-openasar/krisp-patcher.py new file mode 100644 index 0000000..5597290 --- /dev/null +++ b/discord-electron-openasar/krisp-patcher.py @@ -0,0 +1,83 @@ +import sys +import shutil + +from elftools.elf.elffile import ELFFile +from capstone import * +from capstone.x86 import * + +if len(sys.argv) < 2: + print(f"Usage: {sys.argv[0]} [path to discord_krisp.node]") + # "Unix programs generally use 2 for command line syntax errors and 1 for all other kind of errors." + sys.exit(2) + +executable = sys.argv[1] + +elf = ELFFile(open(executable, "rb")) +symtab = elf.get_section_by_name('.symtab') + +krisp_initialize_address = symtab.get_symbol_by_name("_ZN7discord15KrispInitializeEv")[0].entry.st_value +isSignedByDiscord_address = symtab.get_symbol_by_name("_ZN7discord4util17IsSignedByDiscordERKNSt4__Cr12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE")[0].entry.st_value + +text = elf.get_section_by_name('.text') +text_start = text['sh_addr'] +text_start_file = text['sh_offset'] +# This seems to always be zero (.text starts at the right offset in the file). Do it just in case? +address_to_file = text_start_file - text_start + +# Done with the ELF now. +# elf.close() + +krisp_initialize_offset = krisp_initialize_address - address_to_file +isSignedByDiscord_offset = krisp_initialize_address - address_to_file + +f = open(executable, "rb") +f.seek(krisp_initialize_offset) +krisp_initialize = f.read(64) +f.close() + +# States +found_issigned_by_discord_call = False +found_issigned_by_discord_test = False +found_issigned_by_discord_je = False +found_already_patched = False +je_location = None + +# We are looking for a call to IsSignedByDiscord, followed by a test, followed by a je. +# Then we patch the je into a two byte nop. + +md = Cs(CS_ARCH_X86, CS_MODE_64) +md.detail = True +for i in md.disasm(krisp_initialize, krisp_initialize_address): + if i.id == X86_INS_CALL: + if i.operands[0].type == X86_OP_IMM: + if i.operands[0].imm == isSignedByDiscord_address: + found_issigned_by_discord_call = True + + if i.id == X86_INS_TEST: + if found_issigned_by_discord_call: + found_issigned_by_discord_test = True + + if i.id == X86_INS_JE: + if found_issigned_by_discord_test: + found_issigned_by_discord_je = True + je_location = i.address + break + + if i.id == X86_INS_NOP: + if found_issigned_by_discord_test: + found_already_patched = True + break + +if je_location: + print(f"Found patch location: 0x{je_location:x}") + + shutil.copyfile(executable, executable + ".orig") + f = open(executable, 'rb+') + f.seek(je_location - address_to_file) + f.write(b'\x66\x90') # Two byte NOP + f.close() +else: + if found_already_patched: + print("Couldn't find patch location - already patched.") + else: + print("Couldn't find patch location - review manually. Sorry.") diff --git a/discord-electron-openasar/update-package.sh b/discord-electron-openasar/update-package.sh new file mode 100755 index 0000000..90cdc1e --- /dev/null +++ b/discord-electron-openasar/update-package.sh @@ -0,0 +1,57 @@ +#!/usr/bin/env bash + +set -euo pipefail + +readonly all_off="$(tput sgr0)" +readonly bold="${all_off}$(tput bold)" +readonly white="${bold}$(tput setaf 7)" +readonly blue="${bold}$(tput setaf 4)" +readonly red="${bold}$(tput setaf 1)" + +msg() { + printf "${blue}::${white} $1${all_off}\n" +} + +error() { + printf "${red}::${white} $1${all_off}\n" +} + +msgbegin() { + printf "${blue}::${white} $1" +} + +msgend() { + printf "$1${all_off}\n" +} + + +readonly krisp_zip='discord_krisp-1.zip' +readonly krisp_bin='discord_krisp.node' + +# head to directory of this script +cd $(dirname "$0") + +# update package to version used in PKGBUILD +source PKGBUILD + +msg "Running updpkgsums (Updating checksums)" +updpkgsums + +msg "Running mksrcinfo (Updating SRCINFO file)" +makepkg --printsrcinfo > .SRCINFO + +msg "Getting Krisp module" +curl -O "https://dl.discordapp.net/apps/linux/${_pkgver:-${pkgver}}/modules/${krisp_zip}" +unzip "${krisp_zip}" "${krisp_bin}" + +msg "Checking if Krisp module is patchable (watch output)" +python krisp-patcher.py "${krisp_bin}" + +#msg "Updating Krisp module checksum" +#readonly chcksm=$(b2sum "${krisp_bin}.orig" | head -c 128) +#sed -i "s/^_krisp_b2sum='.*'$/_krisp_b2sum='${chcksm}'/" PKGBUILD + +msgbegin "Cleaning up... " +rm -f "${krisp_zip}" "${krisp_bin}" "${krisp_bin}.orig" + +msgend "Done" From dd92dab7021477b879df0cc99684f5e7a318c7f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 9 Jun 2024 23:41:51 +0200 Subject: [PATCH 752/971] upgpkg: discord-electron 0.0.55-2: fix unset variable * Fix unbound variable in launcher script if discord.conf is not used --- discord-electron/.SRCINFO | 4 ++-- discord-electron/PKGBUILD | 4 ++-- discord-electron/discord-launcher.sh | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index c07b47d..98cf60a 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v30) for increased security and performance pkgver = 0.0.55 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -24,7 +24,7 @@ pkgbase = discord-electron source = discord-launcher.sh source = krisp-patcher.py sha512sums = c12365109cb4db94033fda101073d2a3d6af7bdc9728e025494ee8d44ebf5f27623861879ec38bb7dd88d40de7cddede268e0f5e44bfeb586fc12713a3758c5b - sha512sums = fc25a6ac9ca2881a94158ed972039a4dcc082db91a8ba072f2f896b65a788c9decb4456c71da977ac2976e72d081c6c66aa4bb27b5d58cf946dfea6086b0d557 + sha512sums = 100fd089bd17dce7cbb05d4dd757cfa438e713edac02814d127a944814017e3e55afa28331826a420211544b1cd796255fe8bd92b9e07c9d17b12528a8099b8c sha512sums = 3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 16c4084..4e55ce4 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,7 +1,7 @@ pkgname=discord-electron _pkgname=discord pkgver=0.0.55 -pkgrel=1 +pkgrel=2 _electronver=30 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" @@ -25,7 +25,7 @@ source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.ta 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py sha512sums=('c12365109cb4db94033fda101073d2a3d6af7bdc9728e025494ee8d44ebf5f27623861879ec38bb7dd88d40de7cddede268e0f5e44bfeb586fc12713a3758c5b' - 'fc25a6ac9ca2881a94158ed972039a4dcc082db91a8ba072f2f896b65a788c9decb4456c71da977ac2976e72d081c6c66aa4bb27b5d58cf946dfea6086b0d557' + '100fd089bd17dce7cbb05d4dd757cfa438e713edac02814d127a944814017e3e55afa28331826a420211544b1cd796255fe8bd92b9e07c9d17b12528a8099b8c' '3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f') prepare() { diff --git a/discord-electron/discord-launcher.sh b/discord-electron/discord-launcher.sh index e0604e2..58c27ba 100644 --- a/discord-electron/discord-launcher.sh +++ b/discord-electron/discord-launcher.sh @@ -10,7 +10,7 @@ declare -l PATCH_KRISP flags_file="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@-flags.conf" krisp_bin="${DISCORD_USER_DATA_DIR:-${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@}/@PKGVER@/modules/@PKGNAME@_krisp/@PKGNAME@_krisp.node" -if [[ "${PATCH_KRISP}" == true ]] && [[ -w "${krisp_bin}" ]] && python -c "import capstone; import elftools" &> /dev/null; then +if [[ "${PATCH_KRISP:-}" == true ]] && [[ -w "${krisp_bin}" ]] && python -c "import capstone; import elftools" &> /dev/null; then # Patch Krisp binary to ignore signature check python /usr/lib/@PKGNAME@/krisp-patcher.py "${krisp_bin}" fi From 4dbda26af7eff44e984bc51034b19d80186f3bed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 9 Jun 2024 23:43:33 +0200 Subject: [PATCH 753/971] upgpkg: discord-electron-openasar 0.0.55+827-2: fix unset variable * Fix unbound variable in launcher script if discord.conf is not used --- discord-electron-openasar/.SRCINFO | 4 ++-- discord-electron-openasar/PKGBUILD | 4 ++-- discord-electron-openasar/discord-launcher.sh | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index b24b4e3..7f10c2b 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v30) for increased security and performance pkgver = 0.0.55+827 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -28,7 +28,7 @@ pkgbase = discord-electron-openasar source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d sha512sums = c12365109cb4db94033fda101073d2a3d6af7bdc9728e025494ee8d44ebf5f27623861879ec38bb7dd88d40de7cddede268e0f5e44bfeb586fc12713a3758c5b - sha512sums = fc25a6ac9ca2881a94158ed972039a4dcc082db91a8ba072f2f896b65a788c9decb4456c71da977ac2976e72d081c6c66aa4bb27b5d58cf946dfea6086b0d557 + sha512sums = 100fd089bd17dce7cbb05d4dd757cfa438e713edac02814d127a944814017e3e55afa28331826a420211544b1cd796255fe8bd92b9e07c9d17b12528a8099b8c sha512sums = 3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f sha512sums = 055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 43f3145..617169c 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -4,7 +4,7 @@ pkgname=discord-electron-openasar _pkgname=discord pkgver=0.0.55+827 _pkgver=${pkgver%%+*} -pkgrel=1 +pkgrel=2 _electronver=30 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" @@ -29,7 +29,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d") sha512sums=('c12365109cb4db94033fda101073d2a3d6af7bdc9728e025494ee8d44ebf5f27623861879ec38bb7dd88d40de7cddede268e0f5e44bfeb586fc12713a3758c5b' - 'fc25a6ac9ca2881a94158ed972039a4dcc082db91a8ba072f2f896b65a788c9decb4456c71da977ac2976e72d081c6c66aa4bb27b5d58cf946dfea6086b0d557' + '100fd089bd17dce7cbb05d4dd757cfa438e713edac02814d127a944814017e3e55afa28331826a420211544b1cd796255fe8bd92b9e07c9d17b12528a8099b8c' '3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f' '055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849') diff --git a/discord-electron-openasar/discord-launcher.sh b/discord-electron-openasar/discord-launcher.sh index e0604e2..58c27ba 100644 --- a/discord-electron-openasar/discord-launcher.sh +++ b/discord-electron-openasar/discord-launcher.sh @@ -10,7 +10,7 @@ declare -l PATCH_KRISP flags_file="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@-flags.conf" krisp_bin="${DISCORD_USER_DATA_DIR:-${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@}/@PKGVER@/modules/@PKGNAME@_krisp/@PKGNAME@_krisp.node" -if [[ "${PATCH_KRISP}" == true ]] && [[ -w "${krisp_bin}" ]] && python -c "import capstone; import elftools" &> /dev/null; then +if [[ "${PATCH_KRISP:-}" == true ]] && [[ -w "${krisp_bin}" ]] && python -c "import capstone; import elftools" &> /dev/null; then # Patch Krisp binary to ignore signature check python /usr/lib/@PKGNAME@/krisp-patcher.py "${krisp_bin}" fi From 0191e29653f721d6ef975b732c913f42d88440a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 10 Jun 2024 20:33:14 +0200 Subject: [PATCH 754/971] upgpkg: discord-electron 0.0.55-3: remove python dep * Check for Python availability in launcher script as it's only necessary for Krisp patcher --- discord-electron/.SRCINFO | 5 ++--- discord-electron/PKGBUILD | 6 +++--- discord-electron/discord-launcher.sh | 11 +++++++---- 3 files changed, 12 insertions(+), 10 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 98cf60a..da5f59e 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v30) for increased security and performance pkgver = 0.0.55 - pkgrel = 2 + pkgrel = 3 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -11,7 +11,6 @@ pkgbase = discord-electron makedepends = python-html2text depends = electron30 depends = libxss - depends = python optdepends = libpulse: Pulseaudio support optdepends = libappindicator-gtk3: Systray indicator support optdepends = xdg-utils: Open files @@ -24,7 +23,7 @@ pkgbase = discord-electron source = discord-launcher.sh source = krisp-patcher.py sha512sums = c12365109cb4db94033fda101073d2a3d6af7bdc9728e025494ee8d44ebf5f27623861879ec38bb7dd88d40de7cddede268e0f5e44bfeb586fc12713a3758c5b - sha512sums = 100fd089bd17dce7cbb05d4dd757cfa438e713edac02814d127a944814017e3e55afa28331826a420211544b1cd796255fe8bd92b9e07c9d17b12528a8099b8c + sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 4e55ce4..852dde9 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,7 +1,7 @@ pkgname=discord-electron _pkgname=discord pkgver=0.0.55 -pkgrel=2 +pkgrel=3 _electronver=30 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" @@ -12,7 +12,7 @@ url='https://discord.com' license=('custom') options=('!strip') install="$pkgname.install" -depends=("${_electronname}" 'libxss' 'python') +depends=("${_electronname}" 'libxss') makedepends=('asar' 'curl' 'python-html2text') optdepends=( 'libpulse: Pulseaudio support' @@ -25,7 +25,7 @@ source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.ta 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py sha512sums=('c12365109cb4db94033fda101073d2a3d6af7bdc9728e025494ee8d44ebf5f27623861879ec38bb7dd88d40de7cddede268e0f5e44bfeb586fc12713a3758c5b' - '100fd089bd17dce7cbb05d4dd757cfa438e713edac02814d127a944814017e3e55afa28331826a420211544b1cd796255fe8bd92b9e07c9d17b12528a8099b8c' + '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f') prepare() { diff --git a/discord-electron/discord-launcher.sh b/discord-electron/discord-launcher.sh index 58c27ba..87c66fb 100644 --- a/discord-electron/discord-launcher.sh +++ b/discord-electron/discord-launcher.sh @@ -10,15 +10,18 @@ declare -l PATCH_KRISP flags_file="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@-flags.conf" krisp_bin="${DISCORD_USER_DATA_DIR:-${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@}/@PKGVER@/modules/@PKGNAME@_krisp/@PKGNAME@_krisp.node" -if [[ "${PATCH_KRISP:-}" == true ]] && [[ -w "${krisp_bin}" ]] && python -c "import capstone; import elftools" &> /dev/null; then - # Patch Krisp binary to ignore signature check - python /usr/lib/@PKGNAME@/krisp-patcher.py "${krisp_bin}" +if [[ "${PATCH_KRISP:-}" == true ]] && [[ -w "${krisp_bin}" ]]; then + if hash python &> /dev/null && python -c 'import capstone; import elftools' &> /dev/null; then + # Patch Krisp binary to ignore signature check + echo -n 'Running Krisp patcher... ' + python /usr/lib/@PKGNAME@/krisp-patcher.py "${krisp_bin}" + fi fi if [[ -r "${flags_file}" ]]; then # Replacing because old flag does not work if [[ -w "${flags_file}" ]] && grep -q '\--ignore-gpu-blacklist' "${flags_file}"; then - sed -i "s|--ignore-gpu-blacklist|--ignore-gpu-blocklist|" "${flags_file}" + sed -i 's|--ignore-gpu-blacklist|--ignore-gpu-blocklist|' "${flags_file}" fi mapfile -t < "${flags_file}" fi From 20605b3001597ac307551b2e7e03d8bdec8e3cb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 10 Jun 2024 20:33:44 +0200 Subject: [PATCH 755/971] upgpkg: discord-electron-openasar 0.0.55+827-3: remove python dep * Check for Python availability in launcher script as it's only necessary for Krisp patcher --- discord-electron-openasar/.SRCINFO | 5 ++--- discord-electron-openasar/PKGBUILD | 6 +++--- discord-electron-openasar/discord-launcher.sh | 11 +++++++---- 3 files changed, 12 insertions(+), 10 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 7f10c2b..ccb3da7 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v30) for increased security and performance pkgver = 0.0.55+827 - pkgrel = 2 + pkgrel = 3 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -14,7 +14,6 @@ pkgbase = discord-electron-openasar depends = electron30 depends = libxss depends = unzip - depends = python optdepends = libpulse: Pulseaudio support optdepends = libappindicator-gtk3: Systray indicator support optdepends = xdg-utils: Open files @@ -28,7 +27,7 @@ pkgbase = discord-electron-openasar source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d sha512sums = c12365109cb4db94033fda101073d2a3d6af7bdc9728e025494ee8d44ebf5f27623861879ec38bb7dd88d40de7cddede268e0f5e44bfeb586fc12713a3758c5b - sha512sums = 100fd089bd17dce7cbb05d4dd757cfa438e713edac02814d127a944814017e3e55afa28331826a420211544b1cd796255fe8bd92b9e07c9d17b12528a8099b8c + sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f sha512sums = 055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 617169c..9a2c749 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -4,7 +4,7 @@ pkgname=discord-electron-openasar _pkgname=discord pkgver=0.0.55+827 _pkgver=${pkgver%%+*} -pkgrel=2 +pkgrel=3 _electronver=30 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" @@ -15,7 +15,7 @@ url='https://discord.com' license=('custom') options=('!strip') install="$pkgname.install" -depends=("${_electronname}" 'libxss' 'unzip' 'python') +depends=("${_electronname}" 'libxss' 'unzip') makedepends=('git' 'asar' 'nodejs' 'curl' 'python-html2text') optdepends=( 'libpulse: Pulseaudio support' @@ -29,7 +29,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d") sha512sums=('c12365109cb4db94033fda101073d2a3d6af7bdc9728e025494ee8d44ebf5f27623861879ec38bb7dd88d40de7cddede268e0f5e44bfeb586fc12713a3758c5b' - '100fd089bd17dce7cbb05d4dd757cfa438e713edac02814d127a944814017e3e55afa28331826a420211544b1cd796255fe8bd92b9e07c9d17b12528a8099b8c' + '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f' '055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849') diff --git a/discord-electron-openasar/discord-launcher.sh b/discord-electron-openasar/discord-launcher.sh index 58c27ba..87c66fb 100644 --- a/discord-electron-openasar/discord-launcher.sh +++ b/discord-electron-openasar/discord-launcher.sh @@ -10,15 +10,18 @@ declare -l PATCH_KRISP flags_file="${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@-flags.conf" krisp_bin="${DISCORD_USER_DATA_DIR:-${XDG_CONFIG_HOME:-$HOME/.config}/@PKGNAME@}/@PKGVER@/modules/@PKGNAME@_krisp/@PKGNAME@_krisp.node" -if [[ "${PATCH_KRISP:-}" == true ]] && [[ -w "${krisp_bin}" ]] && python -c "import capstone; import elftools" &> /dev/null; then - # Patch Krisp binary to ignore signature check - python /usr/lib/@PKGNAME@/krisp-patcher.py "${krisp_bin}" +if [[ "${PATCH_KRISP:-}" == true ]] && [[ -w "${krisp_bin}" ]]; then + if hash python &> /dev/null && python -c 'import capstone; import elftools' &> /dev/null; then + # Patch Krisp binary to ignore signature check + echo -n 'Running Krisp patcher... ' + python /usr/lib/@PKGNAME@/krisp-patcher.py "${krisp_bin}" + fi fi if [[ -r "${flags_file}" ]]; then # Replacing because old flag does not work if [[ -w "${flags_file}" ]] && grep -q '\--ignore-gpu-blacklist' "${flags_file}"; then - sed -i "s|--ignore-gpu-blacklist|--ignore-gpu-blocklist|" "${flags_file}" + sed -i 's|--ignore-gpu-blacklist|--ignore-gpu-blocklist|' "${flags_file}" fi mapfile -t < "${flags_file}" fi From 8e93021a869b2a31f1e9e6fdefa7897723417ccd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 11 Jun 2024 21:53:23 +0200 Subject: [PATCH 756/971] upgpkg: discord-electron 0.0.56-1 upstream release --- discord-electron/.SRCINFO | 8 ++++---- discord-electron/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index da5f59e..46b0927 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v30) for increased security and performance - pkgver = 0.0.55 - pkgrel = 3 + pkgver = 0.0.56 + pkgrel = 1 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -19,10 +19,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.55/discord-0.0.55.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.56/discord-0.0.56.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = c12365109cb4db94033fda101073d2a3d6af7bdc9728e025494ee8d44ebf5f27623861879ec38bb7dd88d40de7cddede268e0f5e44bfeb586fc12713a3758c5b + sha512sums = 799d6cf5fcdeff83aaad20662668b17ff0cf88edab1bf404ad366340d0783269fef8800382a111f8505b353031c80cd17ab804a56f51f3c8bb2e2a2c5e6b86ec sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 852dde9..a81c1e2 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,7 +1,7 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.55 -pkgrel=3 +pkgver=0.0.56 +pkgrel=1 _electronver=30 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('c12365109cb4db94033fda101073d2a3d6af7bdc9728e025494ee8d44ebf5f27623861879ec38bb7dd88d40de7cddede268e0f5e44bfeb586fc12713a3758c5b' +sha512sums=('799d6cf5fcdeff83aaad20662668b17ff0cf88edab1bf404ad366340d0783269fef8800382a111f8505b353031c80cd17ab804a56f51f3c8bb2e2a2c5e6b86ec' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f') From 1ad7c969755fac04c82dfb9b24b20a780fd0df2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 11 Jun 2024 21:53:43 +0200 Subject: [PATCH 757/971] upgpkg: discord-electron-openasar 0.0.56+827-1 upstream release --- discord-electron-openasar/.SRCINFO | 8 ++++---- discord-electron-openasar/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index ccb3da7..ada64f7 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v30) for increased security and performance - pkgver = 0.0.55+827 - pkgrel = 3 + pkgver = 0.0.56+827 + pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -22,11 +22,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.55/discord-0.0.55.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.56/discord-0.0.56.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d - sha512sums = c12365109cb4db94033fda101073d2a3d6af7bdc9728e025494ee8d44ebf5f27623861879ec38bb7dd88d40de7cddede268e0f5e44bfeb586fc12713a3758c5b + sha512sums = 799d6cf5fcdeff83aaad20662668b17ff0cf88edab1bf404ad366340d0783269fef8800382a111f8505b353031c80cd17ab804a56f51f3c8bb2e2a2c5e6b86ec sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f sha512sums = 055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 9a2c749..bd48abe 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,9 +2,9 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.55+827 +pkgver=0.0.56+827 _pkgver=${pkgver%%+*} -pkgrel=3 +pkgrel=1 _electronver=30 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d") -sha512sums=('c12365109cb4db94033fda101073d2a3d6af7bdc9728e025494ee8d44ebf5f27623861879ec38bb7dd88d40de7cddede268e0f5e44bfeb586fc12713a3758c5b' +sha512sums=('799d6cf5fcdeff83aaad20662668b17ff0cf88edab1bf404ad366340d0783269fef8800382a111f8505b353031c80cd17ab804a56f51f3c8bb2e2a2c5e6b86ec' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f' '055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849') From 5c19fadc89aacaa45c63c7ad0fa5c0c4783590da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 11 Jun 2024 21:54:11 +0200 Subject: [PATCH 758/971] upgpkg: gvisor-bin 20240603.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index c0d0855..d982f67 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20240501.0 + pkgver = 20240603.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20240501.0::https://storage.googleapis.com/gvisor/releases/release/20240501.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20240501.0::https://storage.googleapis.com/gvisor/releases/release/20240501.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = 34e11b0a9479adc6a39e8202af6a96c697b044a26ab952c0d225b4d46cbd04248358ed2ab93b6c3f616b1380f8fe59e4d61fe89a42233728bb3decd10e158e85 - sha512sums_x86_64 = a011d53a261d0b9394121c667af1f85e8e02e209fc62e5241c80c69ff98018198984ee32426a2f0e6992b833d960df8f8eeb3991e499f39015536de2d11b5a13 - source_aarch64 = runsc-aarch64-20240501.0::https://storage.googleapis.com/gvisor/releases/release/20240501.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20240501.0::https://storage.googleapis.com/gvisor/releases/release/20240501.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 93ed2233018c14f3b22ab67b43c3bc734139a55d2a30056f1d8be39ca679be618013a850dfe726edb40f5a2394d76d85e5ff56662e8c350f2df656bec28daa8e - sha512sums_aarch64 = 16b07544260a9463e242df5744ecf0e7897d7d7c320c1be002fbb69f482ca897b00672380c097a6af8593c69475e17c6c357848be96f2f6b062e96e8d1ac5bab + source_x86_64 = runsc-x86_64-20240603.0::https://storage.googleapis.com/gvisor/releases/release/20240603.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20240603.0::https://storage.googleapis.com/gvisor/releases/release/20240603.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = 1c110c28bdf48fa20ba061a164e4a9f18ffd09c18f50fe353a7963f4d002ac63a0e8459c743b6988bc551dbda4018fa7603d69b909fcf810f5dc8f2e14fb4347 + sha512sums_x86_64 = be6c24182f25bb06e0befe2a2fd83b31c4867bc9ceae795310a19c7d75485be405282d0b8afb60b4218ce55b668bc1c73affbaa6071ff562aa3a25f674502c7a + source_aarch64 = runsc-aarch64-20240603.0::https://storage.googleapis.com/gvisor/releases/release/20240603.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20240603.0::https://storage.googleapis.com/gvisor/releases/release/20240603.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 107d63e743b215f5cb8580151453955a2b38ae9249e38bc9d2f2373f827d97900573a7b2e129816c45ea1fddd5c1484a9a9a26870083290bccee0261356dc1c7 + sha512sums_aarch64 = 81067427707a5588670d7a3040c7ca4ed84e2cea2310a84a96758013807eb5b27b7f890a65bc23e1aad07c060f572d42152edae4513995b9a3c44831aa7d1537 pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index 1c2f68a..efdad39 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20240501.0 +pkgver=20240603.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('34e11b0a9479adc6a39e8202af6a96c697b044a26ab952c0d225b4d46cbd04248358ed2ab93b6c3f616b1380f8fe59e4d61fe89a42233728bb3decd10e158e85' - 'a011d53a261d0b9394121c667af1f85e8e02e209fc62e5241c80c69ff98018198984ee32426a2f0e6992b833d960df8f8eeb3991e499f39015536de2d11b5a13') -sha512sums_aarch64=('93ed2233018c14f3b22ab67b43c3bc734139a55d2a30056f1d8be39ca679be618013a850dfe726edb40f5a2394d76d85e5ff56662e8c350f2df656bec28daa8e' - '16b07544260a9463e242df5744ecf0e7897d7d7c320c1be002fbb69f482ca897b00672380c097a6af8593c69475e17c6c357848be96f2f6b062e96e8d1ac5bab') +sha512sums_x86_64=('1c110c28bdf48fa20ba061a164e4a9f18ffd09c18f50fe353a7963f4d002ac63a0e8459c743b6988bc551dbda4018fa7603d69b909fcf810f5dc8f2e14fb4347' + 'be6c24182f25bb06e0befe2a2fd83b31c4867bc9ceae795310a19c7d75485be405282d0b8afb60b4218ce55b668bc1c73affbaa6071ff562aa3a25f674502c7a') +sha512sums_aarch64=('107d63e743b215f5cb8580151453955a2b38ae9249e38bc9d2f2373f827d97900573a7b2e129816c45ea1fddd5c1484a9a9a26870083290bccee0261356dc1c7' + '81067427707a5588670d7a3040c7ca4ed84e2cea2310a84a96758013807eb5b27b7f890a65bc23e1aad07c060f572d42152edae4513995b9a3c44831aa7d1537') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From d4d37f81193903861d1a7a1541af139eecd31a64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 11 Jun 2024 21:54:21 +0200 Subject: [PATCH 759/971] upgpkg: gvisor-git 20240603.0-1 upstream release --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index 6fa877b..0535cb6 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20240501.0 + pkgver = 20240603.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index f1ede18..26f8a45 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20240501.0 +pkgver=20240603.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From 184ac946415dc09c5008da935cfe0ec2bae1c819 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 13 Jun 2024 21:59:48 +0200 Subject: [PATCH 760/971] upgpkg: firefox-syncstorage 0.16.0-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index 150edf5..4375cac 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.15.9 + pkgver = 0.16.0 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -21,9 +21,9 @@ pkgbase = firefox-syncstorage optdepends = mysql: for use with a local database server options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.15.9/syncstorage-rs-0.15.9.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.16.0/syncstorage-rs-0.16.0.tar.gz source = firefox-syncstorage.service - sha512sums = 4fc085af4a8942cb3e07ccc23423c37d0b9a5e858e304b3e0cdfa415ea50a71e407486d510d30f1de6fec8dcd11a82460cc0a273daa1c80a87001dc1fbbe4d2f + sha512sums = c61ba804783d407db4e5b4388eecbc6041c7a041e6f3e3b9e776c4aefec863cacfe82863107423920a35ec19337906e6eeae254f90d070eb5ad7a94bc8b107ba sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index 781451d..2a97a7f 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.15.9 +pkgver=0.16.0 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -18,7 +18,7 @@ options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha512sums=('4fc085af4a8942cb3e07ccc23423c37d0b9a5e858e304b3e0cdfa415ea50a71e407486d510d30f1de6fec8dcd11a82460cc0a273daa1c80a87001dc1fbbe4d2f' +sha512sums=('c61ba804783d407db4e5b4388eecbc6041c7a041e6f3e3b9e776c4aefec863cacfe82863107423920a35ec19337906e6eeae254f90d070eb5ad7a94bc8b107ba' '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") From 10ec259366f4cb44c145eb2baf4bd3d72f154d5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 15 Jun 2024 18:56:33 +0200 Subject: [PATCH 761/971] upgpkg: firefox-syncstorage 0.17.0-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index 4375cac..5bf77da 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.16.0 + pkgver = 0.17.0 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -21,9 +21,9 @@ pkgbase = firefox-syncstorage optdepends = mysql: for use with a local database server options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.16.0/syncstorage-rs-0.16.0.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.17.0/syncstorage-rs-0.17.0.tar.gz source = firefox-syncstorage.service - sha512sums = c61ba804783d407db4e5b4388eecbc6041c7a041e6f3e3b9e776c4aefec863cacfe82863107423920a35ec19337906e6eeae254f90d070eb5ad7a94bc8b107ba + sha512sums = dfee7aa96042831313961b8e65f04b2d053afaf79c38445637bdd105530395bb0938872b3a7f04184c7de4edcfe86270a0a7d2bbadcbd5c361b0a736e8c389ba sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index 2a97a7f..a8538ed 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.16.0 +pkgver=0.17.0 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -18,7 +18,7 @@ options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha512sums=('c61ba804783d407db4e5b4388eecbc6041c7a041e6f3e3b9e776c4aefec863cacfe82863107423920a35ec19337906e6eeae254f90d070eb5ad7a94bc8b107ba' +sha512sums=('dfee7aa96042831313961b8e65f04b2d053afaf79c38445637bdd105530395bb0938872b3a7f04184c7de4edcfe86270a0a7d2bbadcbd5c361b0a736e8c389ba' '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") From 1411cdc42afe3ba547382c881a115d8bffba7dd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 15 Jun 2024 18:57:25 +0200 Subject: [PATCH 762/971] upgpkg: discord-electron 0.0.56-2: update electron * Update Electron version to 31 --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 46b0927..f04c247 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron - pkgdesc = Discord using system provided electron (v30) for increased security and performance + pkgdesc = Discord using system provided electron (v31) for increased security and performance pkgver = 0.0.56 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -9,7 +9,7 @@ pkgbase = discord-electron makedepends = asar makedepends = curl makedepends = python-html2text - depends = electron30 + depends = electron31 depends = libxss optdepends = libpulse: Pulseaudio support optdepends = libappindicator-gtk3: Systray indicator support diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index a81c1e2..a22675e 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,8 +1,8 @@ pkgname=discord-electron _pkgname=discord pkgver=0.0.56 -pkgrel=1 -_electronver=30 +pkgrel=2 +_electronver=31 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" arch=('x86_64') From f3f564b4aa3c27198ba16ba802f7f35be1c3d371 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 15 Jun 2024 18:58:13 +0200 Subject: [PATCH 763/971] upgpkg: discord-electron-openasar 0.0.56+827-2: update electron * Update Electron version to 31 --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index ada64f7..826f3f7 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar - pkgdesc = Discord packaged with OpenAsar using system provided electron (v30) for increased security and performance + pkgdesc = Discord packaged with OpenAsar using system provided electron (v31) for increased security and performance pkgver = 0.0.56+827 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -11,7 +11,7 @@ pkgbase = discord-electron-openasar makedepends = nodejs makedepends = curl makedepends = python-html2text - depends = electron30 + depends = electron31 depends = libxss depends = unzip optdepends = libpulse: Pulseaudio support diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index bd48abe..73f5f48 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -4,8 +4,8 @@ pkgname=discord-electron-openasar _pkgname=discord pkgver=0.0.56+827 _pkgver=${pkgver%%+*} -pkgrel=1 -_electronver=30 +pkgrel=2 +_electronver=31 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" arch=('x86_64') From f7362d494f95fc83e2af0e0b5af5d60b024b43c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 17 Jun 2024 21:19:12 +0200 Subject: [PATCH 764/971] upgpkg: tuned 2.23.0-2: preserve empty config dirs * Fix tuned-gui crash by preserving empty directories in `/etc/tuned` --- tuned/.SRCINFO | 4 ++-- tuned/PKGBUILD | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/tuned/.SRCINFO b/tuned/.SRCINFO index 09af01b..479c28b 100644 --- a/tuned/.SRCINFO +++ b/tuned/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system pkgver = 2.23.0 - pkgrel = 1 + pkgrel = 2 url = https://github.com/redhat-performance/tuned arch = any license = GPL @@ -17,7 +17,6 @@ pkgbase = tuned depends = python-linux-procfs depends = python-perf depends = python-pyudev - options = !emptydirs source = https://github.com/redhat-performance/tuned/archive/v2.23.0/tuned-2.23.0.tar.gz sha512sums = b7d95b17ab38ac944e6e5b8b4345ddf65120a03ebb73cdb1795525c237852a8fa4223dcef6ce28189874e5010c8076816bd3646fd7f700983f2449400a2057d8 @@ -41,4 +40,5 @@ pkgname = tuned-ppd pkgdesc = Daemon that allows applications to easily transition to TuneD from power-profiles-daemon (PPD) depends = tuned conflicts = power-profiles-daemon + options = !emptydirs backup = etc/tuned/ppd.conf diff --git a/tuned/PKGBUILD b/tuned/PKGBUILD index 07b5dd4..a0086a1 100644 --- a/tuned/PKGBUILD +++ b/tuned/PKGBUILD @@ -6,14 +6,13 @@ pkgbase=tuned pkgname=("${pkgbase}" "${pkgbase}-ppd") pkgver=2.23.0 -pkgrel=1 +pkgrel=2 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url="https://github.com/redhat-performance/${pkgbase}" license=('GPL') depends=('dbus-glib' 'ethtool' 'gawk' 'hdparm' 'polkit' 'python-configobj' 'python-dbus' 'python-gobject' 'python-linux-procfs' 'python-perf' 'python-pyudev') makedepends=('desktop-file-utils') -options=('!emptydirs') source=("https://github.com/redhat-performance/${pkgbase}/archive/v${pkgver}/${pkgbase}-${pkgver}.tar.gz") sha512sums=('b7d95b17ab38ac944e6e5b8b4345ddf65120a03ebb73cdb1795525c237852a8fa4223dcef6ce28189874e5010c8076816bd3646fd7f700983f2449400a2057d8') @@ -45,6 +44,7 @@ package_tuned() { cd "${pkgbase}-${pkgver}" make DESTDIR="${pkgdir}" install + rm -rv "${pkgdir}"/{run,var} python -m compileall -d /usr/lib "${pkgdir}/usr/lib" python -O -m compileall -d /usr/lib "${pkgdir}/usr/lib" @@ -55,6 +55,7 @@ package_tuned-ppd() { depends=('tuned') conflicts=('power-profiles-daemon') backup=('etc/tuned/ppd.conf') + options=('!emptydirs') cd "${pkgbase}-${pkgver}" From 17503e97302771ee42a3fae380118c8da1b0b221 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 17 Jun 2024 21:24:20 +0200 Subject: [PATCH 765/971] upgpkg: discord-electron 0.0.57-1 upstream release --- discord-electron/.SRCINFO | 8 ++++---- discord-electron/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index f04c247..f38818f 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v31) for increased security and performance - pkgver = 0.0.56 - pkgrel = 2 + pkgver = 0.0.57 + pkgrel = 1 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -19,10 +19,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.56/discord-0.0.56.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.57/discord-0.0.57.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = 799d6cf5fcdeff83aaad20662668b17ff0cf88edab1bf404ad366340d0783269fef8800382a111f8505b353031c80cd17ab804a56f51f3c8bb2e2a2c5e6b86ec + sha512sums = 5db4a92ca32fd697f7319f81fd4dc29ac6df0296e8a2c55acae25df7225e546880760f3e0b72a09734a01251444aa37320a3db671cf052592daaef78856e7fee sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index a22675e..c302d47 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,7 +1,7 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.56 -pkgrel=2 +pkgver=0.0.57 +pkgrel=1 _electronver=31 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('799d6cf5fcdeff83aaad20662668b17ff0cf88edab1bf404ad366340d0783269fef8800382a111f8505b353031c80cd17ab804a56f51f3c8bb2e2a2c5e6b86ec' +sha512sums=('5db4a92ca32fd697f7319f81fd4dc29ac6df0296e8a2c55acae25df7225e546880760f3e0b72a09734a01251444aa37320a3db671cf052592daaef78856e7fee' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f') From fd174f156afe292bf964ef9754fb7b5ac36ce8c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 17 Jun 2024 21:24:31 +0200 Subject: [PATCH 766/971] upgpkg: discord-electron-openasar 0.0.57+827-1 upstream release --- discord-electron-openasar/.SRCINFO | 8 ++++---- discord-electron-openasar/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 826f3f7..1085b15 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v31) for increased security and performance - pkgver = 0.0.56+827 - pkgrel = 2 + pkgver = 0.0.57+827 + pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -22,11 +22,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.56/discord-0.0.56.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.57/discord-0.0.57.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d - sha512sums = 799d6cf5fcdeff83aaad20662668b17ff0cf88edab1bf404ad366340d0783269fef8800382a111f8505b353031c80cd17ab804a56f51f3c8bb2e2a2c5e6b86ec + sha512sums = 5db4a92ca32fd697f7319f81fd4dc29ac6df0296e8a2c55acae25df7225e546880760f3e0b72a09734a01251444aa37320a3db671cf052592daaef78856e7fee sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f sha512sums = 055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 73f5f48..838c572 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,9 +2,9 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.56+827 +pkgver=0.0.57+827 _pkgver=${pkgver%%+*} -pkgrel=2 +pkgrel=1 _electronver=31 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d") -sha512sums=('799d6cf5fcdeff83aaad20662668b17ff0cf88edab1bf404ad366340d0783269fef8800382a111f8505b353031c80cd17ab804a56f51f3c8bb2e2a2c5e6b86ec' +sha512sums=('5db4a92ca32fd697f7319f81fd4dc29ac6df0296e8a2c55acae25df7225e546880760f3e0b72a09734a01251444aa37320a3db671cf052592daaef78856e7fee' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f' '055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849') From c0b207e877a668689bf767c853cd057de63a2d85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 24 Jun 2024 22:45:40 +0200 Subject: [PATCH 767/971] upgpkg: linpack 2024.2.0-1 upstream release --- linpack/.SRCINFO | 6 +++--- linpack/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/linpack/.SRCINFO b/linpack/.SRCINFO index 2c97dd3..ecaa110 100644 --- a/linpack/.SRCINFO +++ b/linpack/.SRCINFO @@ -1,16 +1,16 @@ pkgbase = linpack pkgdesc = Benchmark that measures a system's floating-point rate of execution by solving dense linear equations - pkgver = 2024.1.0 + pkgver = 2024.2.0 pkgrel = 1 url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download arch = x86_64 license = custom options = !strip backup = etc/linpack.conf - source = https://downloadmirror.intel.com/819583/l_onemklbench_p_2024.1.0_517.tgz + source = https://downloadmirror.intel.com/825890/l_onemklbench_p_2024.2.0_527.tgz source = linpack.conf source = linpack_runme_xeon64 - sha512sums = c4b0704668f77deb5a3120f07a5e75dbecbf1a796294ec9ab83f1a4bcf2eb5a27d42a7c34bbcd462baf5ac35d8294be237210d481c7739efeffe302bbea65206 + sha512sums = 589be7ea199e362ad9eb6ef6deb7d3fc2d751417515b475fb64682f602c84d39f2dd26477869092a9499a919223ab9e7e15eaa7a2e4593b8bd47526a6d1bec89 sha512sums = 69b049a3a1c0b674e471bc61e1f88f729db1dd454eb0bfc9adde7c3a4876bb396a91f57f19d5e1add906ee4282068d8cd0fa5f1a59bf8a96784846a3c9f63ab1 sha512sums = 3e880d4e0af8154ac1d591177e08ceda28f5ff5fbf698e47f99de8621e37137ecf26024048bd0ee81fc7af73ca8ae0deeb0a309325970a701ac5f13b571bdb60 diff --git a/linpack/PKGBUILD b/linpack/PKGBUILD index 168ad58..0c47b00 100644 --- a/linpack/PKGBUILD +++ b/linpack/PKGBUILD @@ -2,8 +2,8 @@ # Contributor: graysky pkgname='linpack' -_pkgver=2024.1.0_517 -_pkgid=819583 +_pkgver=2024.2.0_527 +_pkgid=825890 pkgver=${_pkgver%%_*} _math_kernel_lib=${pkgver%%.0} pkgrel=1 @@ -16,7 +16,7 @@ options=('!strip') source=("https://downloadmirror.intel.com/${_pkgid}/l_onemklbench_p_${_pkgver}.tgz" 'linpack.conf' 'linpack_runme_xeon64') -sha512sums=('c4b0704668f77deb5a3120f07a5e75dbecbf1a796294ec9ab83f1a4bcf2eb5a27d42a7c34bbcd462baf5ac35d8294be237210d481c7739efeffe302bbea65206' +sha512sums=('589be7ea199e362ad9eb6ef6deb7d3fc2d751417515b475fb64682f602c84d39f2dd26477869092a9499a919223ab9e7e15eaa7a2e4593b8bd47526a6d1bec89' '69b049a3a1c0b674e471bc61e1f88f729db1dd454eb0bfc9adde7c3a4876bb396a91f57f19d5e1add906ee4282068d8cd0fa5f1a59bf8a96784846a3c9f63ab1' '3e880d4e0af8154ac1d591177e08ceda28f5ff5fbf698e47f99de8621e37137ecf26024048bd0ee81fc7af73ca8ae0deeb0a309325970a701ac5f13b571bdb60') From 2d416d122f5b86d5704b7dd3349d28349d6595cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 24 Jun 2024 22:53:13 +0200 Subject: [PATCH 768/971] upgpkg: discord-electron 0.0.57-2 * Temporarily downgrade Electron version to 30 again due to issues with window maximizing (#42560) --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index f38818f..38328ed 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron - pkgdesc = Discord using system provided electron (v31) for increased security and performance + pkgdesc = Discord using system provided electron (v30) for increased security and performance pkgver = 0.0.57 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -9,7 +9,7 @@ pkgbase = discord-electron makedepends = asar makedepends = curl makedepends = python-html2text - depends = electron31 + depends = electron30 depends = libxss optdepends = libpulse: Pulseaudio support optdepends = libappindicator-gtk3: Systray indicator support diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index c302d47..78b13dc 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,8 +1,8 @@ pkgname=discord-electron _pkgname=discord pkgver=0.0.57 -pkgrel=1 -_electronver=31 +pkgrel=2 +_electronver=30 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" arch=('x86_64') From 6de66a5c415868c8b5346c2929ac621ca462aafd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 24 Jun 2024 22:55:43 +0200 Subject: [PATCH 769/971] upgpkg: discord-electron-openasar 0.0.57+827-2 * Temporarily downgrade Electron version to 30 again due to issues with window maximizing (#42560) --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 1085b15..eaeb0c8 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar - pkgdesc = Discord packaged with OpenAsar using system provided electron (v31) for increased security and performance + pkgdesc = Discord packaged with OpenAsar using system provided electron (v30) for increased security and performance pkgver = 0.0.57+827 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -11,7 +11,7 @@ pkgbase = discord-electron-openasar makedepends = nodejs makedepends = curl makedepends = python-html2text - depends = electron31 + depends = electron30 depends = libxss depends = unzip optdepends = libpulse: Pulseaudio support diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 838c572..c5a7904 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -4,8 +4,8 @@ pkgname=discord-electron-openasar _pkgname=discord pkgver=0.0.57+827 _pkgver=${pkgver%%+*} -pkgrel=1 -_electronver=31 +pkgrel=2 +_electronver=30 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" arch=('x86_64') From 276c7641f9de9d7e958bb11bd7b6e14581525e4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 25 Jun 2024 19:31:00 +0200 Subject: [PATCH 770/971] upgpkg: discord-electron 0.0.58-1 upstream release --- discord-electron/.SRCINFO | 8 ++++---- discord-electron/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 38328ed..6aad4da 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v30) for increased security and performance - pkgver = 0.0.57 - pkgrel = 2 + pkgver = 0.0.58 + pkgrel = 1 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -19,10 +19,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.57/discord-0.0.57.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.58/discord-0.0.58.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = 5db4a92ca32fd697f7319f81fd4dc29ac6df0296e8a2c55acae25df7225e546880760f3e0b72a09734a01251444aa37320a3db671cf052592daaef78856e7fee + sha512sums = 8efab6f4a476c05b620f3e95c082ae3f5423a2aaab310687f8b67711b0b34e7c82105e8c9ea5d4e0b92fc368443bc6a0e8970143d28ef7cb2d5f9e05f85b038d sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 78b13dc..e22d3c4 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,7 +1,7 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.57 -pkgrel=2 +pkgver=0.0.58 +pkgrel=1 _electronver=30 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('5db4a92ca32fd697f7319f81fd4dc29ac6df0296e8a2c55acae25df7225e546880760f3e0b72a09734a01251444aa37320a3db671cf052592daaef78856e7fee' +sha512sums=('8efab6f4a476c05b620f3e95c082ae3f5423a2aaab310687f8b67711b0b34e7c82105e8c9ea5d4e0b92fc368443bc6a0e8970143d28ef7cb2d5f9e05f85b038d' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f') From 7a3603777da593fbb80c3204fa145df91c902732 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 25 Jun 2024 19:31:20 +0200 Subject: [PATCH 771/971] upgpkg: discord-electron-openasar 0.0.58+827-1 upstream release --- discord-electron-openasar/.SRCINFO | 8 ++++---- discord-electron-openasar/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index eaeb0c8..3b41f29 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v30) for increased security and performance - pkgver = 0.0.57+827 - pkgrel = 2 + pkgver = 0.0.58+827 + pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -22,11 +22,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.57/discord-0.0.57.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.58/discord-0.0.58.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d - sha512sums = 5db4a92ca32fd697f7319f81fd4dc29ac6df0296e8a2c55acae25df7225e546880760f3e0b72a09734a01251444aa37320a3db671cf052592daaef78856e7fee + sha512sums = 8efab6f4a476c05b620f3e95c082ae3f5423a2aaab310687f8b67711b0b34e7c82105e8c9ea5d4e0b92fc368443bc6a0e8970143d28ef7cb2d5f9e05f85b038d sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f sha512sums = 055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index c5a7904..de69efb 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,9 +2,9 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.57+827 +pkgver=0.0.58+827 _pkgver=${pkgver%%+*} -pkgrel=2 +pkgrel=1 _electronver=30 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d") -sha512sums=('5db4a92ca32fd697f7319f81fd4dc29ac6df0296e8a2c55acae25df7225e546880760f3e0b72a09734a01251444aa37320a3db671cf052592daaef78856e7fee' +sha512sums=('8efab6f4a476c05b620f3e95c082ae3f5423a2aaab310687f8b67711b0b34e7c82105e8c9ea5d4e0b92fc368443bc6a0e8970143d28ef7cb2d5f9e05f85b038d' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f' '055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849') From b0221e873a6c63a1080e6cb9c80bf23e3c1c1f40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 30 Jun 2024 20:42:28 +0200 Subject: [PATCH 772/971] upgpkg: clonezilla-unstable 5.6.10-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 33f83dc..ed3d58f 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.9 + pkgver = 5.6.10 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.9.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.10.tar.xz source = usrbin.patch - sha512sums = 118324af060ce4967269668979baa8e97ea9bdce67d8dd8bcf470c9a59062ccf45b8e219e4a18511a3a674a1a205ee1990e2493b9fc38fbf7b654aa7643d5f3b + sha512sums = 5bbc53035e5141a3bbbee767b64a9c355ee6cde3d73c2be9fc81d1ece1c7f769a71aed1134973a16c5015392856c221991f409760d1652cdfe80e65e57f6cad7 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index e8825a4..5ca2ddf 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.9 +pkgver=5.6.10 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('118324af060ce4967269668979baa8e97ea9bdce67d8dd8bcf470c9a59062ccf45b8e219e4a18511a3a674a1a205ee1990e2493b9fc38fbf7b654aa7643d5f3b' +sha512sums=('5bbc53035e5141a3bbbee767b64a9c355ee6cde3d73c2be9fc81d1ece1c7f769a71aed1134973a16c5015392856c221991f409760d1652cdfe80e65e57f6cad7' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 52481512b77131c887d0bc9b77e38bdaeb3ab128 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 30 Jun 2024 20:42:28 +0200 Subject: [PATCH 773/971] upgpkg: clonezilla-unstable 5.6.10-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 33f83dc..ed3d58f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.9 + pkgver = 5.6.10 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.9.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.10.tar.xz source = usrbin.patch - sha512sums = 118324af060ce4967269668979baa8e97ea9bdce67d8dd8bcf470c9a59062ccf45b8e219e4a18511a3a674a1a205ee1990e2493b9fc38fbf7b654aa7643d5f3b + sha512sums = 5bbc53035e5141a3bbbee767b64a9c355ee6cde3d73c2be9fc81d1ece1c7f769a71aed1134973a16c5015392856c221991f409760d1652cdfe80e65e57f6cad7 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index e8825a4..5ca2ddf 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.9 +pkgver=5.6.10 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('118324af060ce4967269668979baa8e97ea9bdce67d8dd8bcf470c9a59062ccf45b8e219e4a18511a3a674a1a205ee1990e2493b9fc38fbf7b654aa7643d5f3b' +sha512sums=('5bbc53035e5141a3bbbee767b64a9c355ee6cde3d73c2be9fc81d1ece1c7f769a71aed1134973a16c5015392856c221991f409760d1652cdfe80e65e57f6cad7' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From fb248ffc24f8140cf428b86a780a1addc32cd059 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 30 Jun 2024 20:50:37 +0200 Subject: [PATCH 774/971] upgpkg: discord-electron 0.0.58-2: update electron, remove makedep * Update Electron version to 31 again as electron issue #42560 is fixed with 31.1.0 * Remove unnecessary make dependency and keep license files in html format --- discord-electron/.SRCINFO | 7 +++---- discord-electron/PKGBUILD | 14 +++++++------- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 6aad4da..3f7a570 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,15 +1,14 @@ pkgbase = discord-electron - pkgdesc = Discord using system provided electron (v30) for increased security and performance + pkgdesc = Discord using system provided electron (v31) for increased security and performance pkgver = 0.0.58 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron.install arch = x86_64 license = custom makedepends = asar makedepends = curl - makedepends = python-html2text - depends = electron30 + depends = electron31 depends = libxss optdepends = libpulse: Pulseaudio support optdepends = libappindicator-gtk3: Systray indicator support diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index e22d3c4..f9501e1 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,8 +1,8 @@ pkgname=discord-electron _pkgname=discord pkgver=0.0.58 -pkgrel=1 -_electronver=30 +pkgrel=2 +_electronver=31 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" arch=('x86_64') @@ -13,7 +13,7 @@ license=('custom') options=('!strip') install="$pkgname.install" depends=("${_electronname}" 'libxss') -makedepends=('asar' 'curl' 'python-html2text') +makedepends=('asar' 'curl') optdepends=( 'libpulse: Pulseaudio support' 'libappindicator-gtk3: Systray indicator support' @@ -39,8 +39,8 @@ prepare() { sed -i -e "s|Exec=.*|Exec=/usr/bin/${_pkgname}|" ${_pkgname^}/$_pkgname.desktop # create the license files - curl https://discord.com/terms | html2text >"${srcdir}"/LICENSE.md - curl https://discord.com/licenses | html2text >"${srcdir}"/OSS-LICENSES.md + curl -o LICENSE.html https://discord.com/terms + curl -o OSS-LICENSES.html https://discord.com/licenses } build() { @@ -78,6 +78,6 @@ package() { install -Dm 644 krisp-patcher.py "${pkgdir}"/usr/lib/${_pkgname}/ # install licenses - install -Dm 644 LICENSE.md "${pkgdir}"/usr/share/licenses/$_pkgname/LICENSE.md - install -Dm 644 OSS-LICENSES.md "${pkgdir}"/usr/share/licenses/$_pkgname/OSS-LICENSES.md + install -Dm 644 LICENSE.html "${pkgdir}"/usr/share/licenses/$_pkgname/LICENSE.html + install -Dm 644 OSS-LICENSES.html "${pkgdir}"/usr/share/licenses/$_pkgname/OSS-LICENSES.html } From 571ca93a81712da62ca9b5fbda6b99bdfd5f06fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 30 Jun 2024 20:53:38 +0200 Subject: [PATCH 775/971] upgpkg: discord-electron-openasar 0.0.58+828-1: update electron & openasar, remove makedep * Update Electron version to 31 again as electron issue #42560 is fixed with 31.1.0 * Remove unnecessary make dependency and keep license files in html format * Update to latest OpenAsar commit --- discord-electron-openasar/.SRCINFO | 11 +++++------ discord-electron-openasar/PKGBUILD | 18 +++++++++--------- 2 files changed, 14 insertions(+), 15 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 3b41f29..41f4b17 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar - pkgdesc = Discord packaged with OpenAsar using system provided electron (v30) for increased security and performance - pkgver = 0.0.58+827 + pkgdesc = Discord packaged with OpenAsar using system provided electron (v31) for increased security and performance + pkgver = 0.0.58+828 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -10,8 +10,7 @@ pkgbase = discord-electron-openasar makedepends = asar makedepends = nodejs makedepends = curl - makedepends = python-html2text - depends = electron30 + depends = electron31 depends = libxss depends = unzip optdepends = libpulse: Pulseaudio support @@ -25,10 +24,10 @@ pkgbase = discord-electron-openasar source = https://dl.discordapp.net/apps/linux/0.0.58/discord-0.0.58.tar.gz source = discord-launcher.sh source = krisp-patcher.py - source = git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d + source = git+https://github.com/goosemod/openasar.git#commit=5c875eb048e96543f1ec711fae522ace5e4a836c sha512sums = 8efab6f4a476c05b620f3e95c082ae3f5423a2aaab310687f8b67711b0b34e7c82105e8c9ea5d4e0b92fc368443bc6a0e8970143d28ef7cb2d5f9e05f85b038d sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f - sha512sums = 055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849 + sha512sums = 36b7747ec2dad8ddcc84533dbe2013eae7166affd9fdaa3b5c8571faf4e1361fda2aadde719df4d4d18a7da513be51fe8e0726dbf589ebe545a0abc12960bb22 pkgname = discord-electron-openasar diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index de69efb..9e2a089 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,10 +2,10 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.58+827 +pkgver=0.0.58+828 _pkgver=${pkgver%%+*} pkgrel=1 -_electronver=30 +_electronver=31 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" arch=('x86_64') @@ -16,7 +16,7 @@ license=('custom') options=('!strip') install="$pkgname.install" depends=("${_electronname}" 'libxss' 'unzip') -makedepends=('git' 'asar' 'nodejs' 'curl' 'python-html2text') +makedepends=('git' 'asar' 'nodejs' 'curl') optdepends=( 'libpulse: Pulseaudio support' 'libappindicator-gtk3: Systray indicator support' @@ -27,11 +27,11 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py - "git+https://github.com/goosemod/openasar.git#commit=4f264d860a5a6a32e1862ce26178b9cf6402335d") + "git+https://github.com/goosemod/openasar.git#commit=5c875eb048e96543f1ec711fae522ace5e4a836c") sha512sums=('8efab6f4a476c05b620f3e95c082ae3f5423a2aaab310687f8b67711b0b34e7c82105e8c9ea5d4e0b92fc368443bc6a0e8970143d28ef7cb2d5f9e05f85b038d' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f' - '055bbe5fbc63a715ab8357db8aabacad282e3d176b48e322d7133a5887291577687456bbfaf7b832d19f13b1a5a373e2c0f6f82664887509feb3c193ee4f1849') + '36b7747ec2dad8ddcc84533dbe2013eae7166affd9fdaa3b5c8571faf4e1361fda2aadde719df4d4d18a7da513be51fe8e0726dbf589ebe545a0abc12960bb22') # just in case I get the version wrong pkgver() { @@ -50,8 +50,8 @@ prepare() { sed -i -e "s|Exec=.*|Exec=/usr/bin/${_pkgname}|" ${_pkgname^}/$_pkgname.desktop # create the license files - curl https://discord.com/terms | html2text >"${srcdir}"/LICENSE.md - curl https://discord.com/licenses | html2text >"${srcdir}"/OSS-LICENSES.md + curl -o LICENSE.html https://discord.com/terms + curl -o OSS-LICENSES.html https://discord.com/licenses } build() { @@ -88,6 +88,6 @@ package() { install -Dm 644 krisp-patcher.py "${pkgdir}"/usr/lib/${_pkgname}/ # install licenses - install -Dm 644 LICENSE.md "${pkgdir}"/usr/share/licenses/$_pkgname/LICENSE.md - install -Dm 644 OSS-LICENSES.md "${pkgdir}"/usr/share/licenses/$_pkgname/OSS-LICENSES.md + install -Dm 644 LICENSE.html "${pkgdir}"/usr/share/licenses/$_pkgname/LICENSE.html + install -Dm 644 OSS-LICENSES.html "${pkgdir}"/usr/share/licenses/$_pkgname/OSS-LICENSES.html } From 1a323e7e3e58985a9a3ca328ad799cadd6e6e86e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 8 Jul 2024 22:56:13 +0200 Subject: [PATCH 776/971] upgpkg: discord-electron 0.0.59-1 upstream release --- discord-electron/.SRCINFO | 8 ++++---- discord-electron/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 3f7a570..8042375 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v31) for increased security and performance - pkgver = 0.0.58 - pkgrel = 2 + pkgver = 0.0.59 + pkgrel = 1 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.58/discord-0.0.58.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.59/discord-0.0.59.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = 8efab6f4a476c05b620f3e95c082ae3f5423a2aaab310687f8b67711b0b34e7c82105e8c9ea5d4e0b92fc368443bc6a0e8970143d28ef7cb2d5f9e05f85b038d + sha512sums = 43a911d03d62f9d73e8058771b59d148500fc48a0cf51be90899f4927979034d73326086084d342b4885ebe74560b4b99598d8514be9a51f00a9dd2010c74132 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index f9501e1..20b2914 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,7 +1,7 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.58 -pkgrel=2 +pkgver=0.0.59 +pkgrel=1 _electronver=31 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('8efab6f4a476c05b620f3e95c082ae3f5423a2aaab310687f8b67711b0b34e7c82105e8c9ea5d4e0b92fc368443bc6a0e8970143d28ef7cb2d5f9e05f85b038d' +sha512sums=('43a911d03d62f9d73e8058771b59d148500fc48a0cf51be90899f4927979034d73326086084d342b4885ebe74560b4b99598d8514be9a51f00a9dd2010c74132' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f') From 3f7bbee433ebe4985490c1ba66c36022c26d9858 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 8 Jul 2024 22:56:35 +0200 Subject: [PATCH 777/971] upgpkg: discord-electron-openasar 0.0.59+828-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 41f4b17..d6fe1e3 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v31) for increased security and performance - pkgver = 0.0.58+828 + pkgver = 0.0.59+828 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.58/discord-0.0.58.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.59/discord-0.0.59.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=5c875eb048e96543f1ec711fae522ace5e4a836c - sha512sums = 8efab6f4a476c05b620f3e95c082ae3f5423a2aaab310687f8b67711b0b34e7c82105e8c9ea5d4e0b92fc368443bc6a0e8970143d28ef7cb2d5f9e05f85b038d + sha512sums = 43a911d03d62f9d73e8058771b59d148500fc48a0cf51be90899f4927979034d73326086084d342b4885ebe74560b4b99598d8514be9a51f00a9dd2010c74132 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f sha512sums = 36b7747ec2dad8ddcc84533dbe2013eae7166affd9fdaa3b5c8571faf4e1361fda2aadde719df4d4d18a7da513be51fe8e0726dbf589ebe545a0abc12960bb22 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 9e2a089..4f33c4c 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.58+828 +pkgver=0.0.59+828 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=31 @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=5c875eb048e96543f1ec711fae522ace5e4a836c") -sha512sums=('8efab6f4a476c05b620f3e95c082ae3f5423a2aaab310687f8b67711b0b34e7c82105e8c9ea5d4e0b92fc368443bc6a0e8970143d28ef7cb2d5f9e05f85b038d' +sha512sums=('43a911d03d62f9d73e8058771b59d148500fc48a0cf51be90899f4927979034d73326086084d342b4885ebe74560b4b99598d8514be9a51f00a9dd2010c74132' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f' '36b7747ec2dad8ddcc84533dbe2013eae7166affd9fdaa3b5c8571faf4e1361fda2aadde719df4d4d18a7da513be51fe8e0726dbf589ebe545a0abc12960bb22') From 40d44afdcca90b8b95e11feac87f62a8c09af518 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 9 Jul 2024 19:27:33 +0200 Subject: [PATCH 778/971] upgpkg: clonezilla-unstable 5.6.11-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index ed3d58f..c659002 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.10 + pkgver = 5.6.11 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.10.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.11.tar.xz source = usrbin.patch - sha512sums = 5bbc53035e5141a3bbbee767b64a9c355ee6cde3d73c2be9fc81d1ece1c7f769a71aed1134973a16c5015392856c221991f409760d1652cdfe80e65e57f6cad7 + sha512sums = a085834ee885ca2b5e7a3a2015b172e296a123336468a7d55fa59ccd220c304eaade444367ad0f5a036570e031a13f4bb116400410aa81fb35aa29cc4bce7d55 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 5ca2ddf..c02b78f 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.10 +pkgver=5.6.11 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('5bbc53035e5141a3bbbee767b64a9c355ee6cde3d73c2be9fc81d1ece1c7f769a71aed1134973a16c5015392856c221991f409760d1652cdfe80e65e57f6cad7' +sha512sums=('a085834ee885ca2b5e7a3a2015b172e296a123336468a7d55fa59ccd220c304eaade444367ad0f5a036570e031a13f4bb116400410aa81fb35aa29cc4bce7d55' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From c67b4544ca6702d1210365ffb855dbdffdcfc3c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 9 Jul 2024 19:27:33 +0200 Subject: [PATCH 779/971] upgpkg: clonezilla-unstable 5.6.11-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index ed3d58f..c659002 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.10 + pkgver = 5.6.11 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.10.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.11.tar.xz source = usrbin.patch - sha512sums = 5bbc53035e5141a3bbbee767b64a9c355ee6cde3d73c2be9fc81d1ece1c7f769a71aed1134973a16c5015392856c221991f409760d1652cdfe80e65e57f6cad7 + sha512sums = a085834ee885ca2b5e7a3a2015b172e296a123336468a7d55fa59ccd220c304eaade444367ad0f5a036570e031a13f4bb116400410aa81fb35aa29cc4bce7d55 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 5ca2ddf..c02b78f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.10 +pkgver=5.6.11 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('5bbc53035e5141a3bbbee767b64a9c355ee6cde3d73c2be9fc81d1ece1c7f769a71aed1134973a16c5015392856c221991f409760d1652cdfe80e65e57f6cad7' +sha512sums=('a085834ee885ca2b5e7a3a2015b172e296a123336468a7d55fa59ccd220c304eaade444367ad0f5a036570e031a13f4bb116400410aa81fb35aa29cc4bce7d55' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From a19f7a248f865b97eb95b85e0f1645fb352b353f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 14 Jul 2024 23:50:51 +0200 Subject: [PATCH 780/971] upgpkg: clonezilla-unstable 5.6.12-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index c659002..fa62798 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.11 + pkgver = 5.6.12 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.11.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.12.tar.xz source = usrbin.patch - sha512sums = a085834ee885ca2b5e7a3a2015b172e296a123336468a7d55fa59ccd220c304eaade444367ad0f5a036570e031a13f4bb116400410aa81fb35aa29cc4bce7d55 + sha512sums = 04705403e9b052dbfb07a5bfb345f3281502487d5d00bfef83869640778b51b6351aaa11f82218653f8886225cf9b35d5af4348668f0d54246554a7cc31ab70b sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index c02b78f..1fd952c 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.11 +pkgver=5.6.12 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('a085834ee885ca2b5e7a3a2015b172e296a123336468a7d55fa59ccd220c304eaade444367ad0f5a036570e031a13f4bb116400410aa81fb35aa29cc4bce7d55' +sha512sums=('04705403e9b052dbfb07a5bfb345f3281502487d5d00bfef83869640778b51b6351aaa11f82218653f8886225cf9b35d5af4348668f0d54246554a7cc31ab70b' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 213c22aa516cab3849d7b9957782037e918de162 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 14 Jul 2024 23:50:51 +0200 Subject: [PATCH 781/971] upgpkg: clonezilla-unstable 5.6.12-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index c659002..fa62798 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.11 + pkgver = 5.6.12 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.11.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.12.tar.xz source = usrbin.patch - sha512sums = a085834ee885ca2b5e7a3a2015b172e296a123336468a7d55fa59ccd220c304eaade444367ad0f5a036570e031a13f4bb116400410aa81fb35aa29cc4bce7d55 + sha512sums = 04705403e9b052dbfb07a5bfb345f3281502487d5d00bfef83869640778b51b6351aaa11f82218653f8886225cf9b35d5af4348668f0d54246554a7cc31ab70b sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index c02b78f..1fd952c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.11 +pkgver=5.6.12 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('a085834ee885ca2b5e7a3a2015b172e296a123336468a7d55fa59ccd220c304eaade444367ad0f5a036570e031a13f4bb116400410aa81fb35aa29cc4bce7d55' +sha512sums=('04705403e9b052dbfb07a5bfb345f3281502487d5d00bfef83869640778b51b6351aaa11f82218653f8886225cf9b35d5af4348668f0d54246554a7cc31ab70b' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 10a0cea6bfb2df928581f22ead9062135f69bf2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 14 Jul 2024 23:57:09 +0200 Subject: [PATCH 782/971] upgpkg: discord-electron 0.0.59-2: update krisp patcher * Fix segfault after patching Krisp binary --- discord-electron/.SRCINFO | 4 ++-- discord-electron/PKGBUILD | 4 ++-- discord-electron/krisp-patcher.py | 6 ++++-- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 8042375..d2fae40 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v31) for increased security and performance pkgver = 0.0.59 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -23,6 +23,6 @@ pkgbase = discord-electron source = krisp-patcher.py sha512sums = 43a911d03d62f9d73e8058771b59d148500fc48a0cf51be90899f4927979034d73326086084d342b4885ebe74560b4b99598d8514be9a51f00a9dd2010c74132 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 - sha512sums = 3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f + sha512sums = ac1212b09c3c1e7af3f93294d799765a0547f20a8373bea0ecb1a3e2bcb165488eb1412141c4e577d53ae87122646b12b9339b0a3f8e6817c3865fbb3f642938 pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 20b2914..f070e7d 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,7 +1,7 @@ pkgname=discord-electron _pkgname=discord pkgver=0.0.59 -pkgrel=1 +pkgrel=2 _electronver=31 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" @@ -26,7 +26,7 @@ source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.ta 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py sha512sums=('43a911d03d62f9d73e8058771b59d148500fc48a0cf51be90899f4927979034d73326086084d342b4885ebe74560b4b99598d8514be9a51f00a9dd2010c74132' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' - '3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f') + 'ac1212b09c3c1e7af3f93294d799765a0547f20a8373bea0ecb1a3e2bcb165488eb1412141c4e577d53ae87122646b12b9339b0a3f8e6817c3865fbb3f642938') prepare() { # prepare launcher script diff --git a/discord-electron/krisp-patcher.py b/discord-electron/krisp-patcher.py index 5597290..6bd44f4 100644 --- a/discord-electron/krisp-patcher.py +++ b/discord-electron/krisp-patcher.py @@ -41,9 +41,10 @@ found_issigned_by_discord_test = False found_issigned_by_discord_je = False found_already_patched = False je_location = None +je_size = 0 # We are looking for a call to IsSignedByDiscord, followed by a test, followed by a je. -# Then we patch the je into a two byte nop. +# Then we replace the je with nops. md = Cs(CS_ARCH_X86, CS_MODE_64) md.detail = True @@ -61,6 +62,7 @@ for i in md.disasm(krisp_initialize, krisp_initialize_address): if found_issigned_by_discord_test: found_issigned_by_discord_je = True je_location = i.address + je_size = len(i.bytes) break if i.id == X86_INS_NOP: @@ -74,7 +76,7 @@ if je_location: shutil.copyfile(executable, executable + ".orig") f = open(executable, 'rb+') f.seek(je_location - address_to_file) - f.write(b'\x66\x90') # Two byte NOP + f.write(b'\x90' * je_size) # je can be larger than 2 bytes given a large enough displacement :( f.close() else: if found_already_patched: From a18f9f79d4926746c8a646c8ef380d7eb52d140e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 14 Jul 2024 23:57:30 +0200 Subject: [PATCH 783/971] upgpkg: discord-electron-openasar 0.0.59+828-2: update krisp patcher * Fix segfault after patching Krisp binary --- discord-electron-openasar/.SRCINFO | 4 ++-- discord-electron-openasar/PKGBUILD | 4 ++-- discord-electron-openasar/krisp-patcher.py | 6 ++++-- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index d6fe1e3..7515cd7 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v31) for increased security and performance pkgver = 0.0.59+828 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -27,7 +27,7 @@ pkgbase = discord-electron-openasar source = git+https://github.com/goosemod/openasar.git#commit=5c875eb048e96543f1ec711fae522ace5e4a836c sha512sums = 43a911d03d62f9d73e8058771b59d148500fc48a0cf51be90899f4927979034d73326086084d342b4885ebe74560b4b99598d8514be9a51f00a9dd2010c74132 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 - sha512sums = 3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f + sha512sums = ac1212b09c3c1e7af3f93294d799765a0547f20a8373bea0ecb1a3e2bcb165488eb1412141c4e577d53ae87122646b12b9339b0a3f8e6817c3865fbb3f642938 sha512sums = 36b7747ec2dad8ddcc84533dbe2013eae7166affd9fdaa3b5c8571faf4e1361fda2aadde719df4d4d18a7da513be51fe8e0726dbf589ebe545a0abc12960bb22 pkgname = discord-electron-openasar diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 4f33c4c..4f33676 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -4,7 +4,7 @@ pkgname=discord-electron-openasar _pkgname=discord pkgver=0.0.59+828 _pkgver=${pkgver%%+*} -pkgrel=1 +pkgrel=2 _electronver=31 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" @@ -30,7 +30,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. "git+https://github.com/goosemod/openasar.git#commit=5c875eb048e96543f1ec711fae522ace5e4a836c") sha512sums=('43a911d03d62f9d73e8058771b59d148500fc48a0cf51be90899f4927979034d73326086084d342b4885ebe74560b4b99598d8514be9a51f00a9dd2010c74132' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' - '3c1021592fa856f3561072c76b5ee0b5a34a53bc230336e6d36827efb4866c9d801ef7abb24650d3a7210c61dd57f35e2812ae89226fc157cc8d9ffce032155f' + 'ac1212b09c3c1e7af3f93294d799765a0547f20a8373bea0ecb1a3e2bcb165488eb1412141c4e577d53ae87122646b12b9339b0a3f8e6817c3865fbb3f642938' '36b7747ec2dad8ddcc84533dbe2013eae7166affd9fdaa3b5c8571faf4e1361fda2aadde719df4d4d18a7da513be51fe8e0726dbf589ebe545a0abc12960bb22') # just in case I get the version wrong diff --git a/discord-electron-openasar/krisp-patcher.py b/discord-electron-openasar/krisp-patcher.py index 5597290..6bd44f4 100644 --- a/discord-electron-openasar/krisp-patcher.py +++ b/discord-electron-openasar/krisp-patcher.py @@ -41,9 +41,10 @@ found_issigned_by_discord_test = False found_issigned_by_discord_je = False found_already_patched = False je_location = None +je_size = 0 # We are looking for a call to IsSignedByDiscord, followed by a test, followed by a je. -# Then we patch the je into a two byte nop. +# Then we replace the je with nops. md = Cs(CS_ARCH_X86, CS_MODE_64) md.detail = True @@ -61,6 +62,7 @@ for i in md.disasm(krisp_initialize, krisp_initialize_address): if found_issigned_by_discord_test: found_issigned_by_discord_je = True je_location = i.address + je_size = len(i.bytes) break if i.id == X86_INS_NOP: @@ -74,7 +76,7 @@ if je_location: shutil.copyfile(executable, executable + ".orig") f = open(executable, 'rb+') f.seek(je_location - address_to_file) - f.write(b'\x66\x90') # Two byte NOP + f.write(b'\x90' * je_size) # je can be larger than 2 bytes given a large enough displacement :( f.close() else: if found_already_patched: From 3fab9765681ad92b810d2ec2f224ffc1bffbd8e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 15 Jul 2024 21:59:42 +0200 Subject: [PATCH 784/971] upgpkg: clonezilla-unstable 5.6.13-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index fa62798..0dbe61b 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.12 + pkgver = 5.6.13 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.12.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.13.tar.xz source = usrbin.patch - sha512sums = 04705403e9b052dbfb07a5bfb345f3281502487d5d00bfef83869640778b51b6351aaa11f82218653f8886225cf9b35d5af4348668f0d54246554a7cc31ab70b + sha512sums = 2fadd1039ed27302ff369e97f436dfc8306d33c0fb3ff56ec740301c8fef4d5838738367a5e8012166b66a90f0a11dbb0c61661edaec415ab085dff016894e6d sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 1fd952c..c1d92ec 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.12 +pkgver=5.6.13 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('04705403e9b052dbfb07a5bfb345f3281502487d5d00bfef83869640778b51b6351aaa11f82218653f8886225cf9b35d5af4348668f0d54246554a7cc31ab70b' +sha512sums=('2fadd1039ed27302ff369e97f436dfc8306d33c0fb3ff56ec740301c8fef4d5838738367a5e8012166b66a90f0a11dbb0c61661edaec415ab085dff016894e6d' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From f4e692357789ccacdd1c10b8644680b0801f617d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 15 Jul 2024 21:59:42 +0200 Subject: [PATCH 785/971] upgpkg: clonezilla-unstable 5.6.13-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index fa62798..0dbe61b 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.12 + pkgver = 5.6.13 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.12.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.13.tar.xz source = usrbin.patch - sha512sums = 04705403e9b052dbfb07a5bfb345f3281502487d5d00bfef83869640778b51b6351aaa11f82218653f8886225cf9b35d5af4348668f0d54246554a7cc31ab70b + sha512sums = 2fadd1039ed27302ff369e97f436dfc8306d33c0fb3ff56ec740301c8fef4d5838738367a5e8012166b66a90f0a11dbb0c61661edaec415ab085dff016894e6d sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 1fd952c..c1d92ec 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.12 +pkgver=5.6.13 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('04705403e9b052dbfb07a5bfb345f3281502487d5d00bfef83869640778b51b6351aaa11f82218653f8886225cf9b35d5af4348668f0d54246554a7cc31ab70b' +sha512sums=('2fadd1039ed27302ff369e97f436dfc8306d33c0fb3ff56ec740301c8fef4d5838738367a5e8012166b66a90f0a11dbb0c61661edaec415ab085dff016894e6d' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From bb31220c56a0a97fa362392c8cd62459158c3fa2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 15 Jul 2024 22:00:03 +0200 Subject: [PATCH 786/971] upgpkg: discord-electron 0.0.60-1 upstream release --- discord-electron/.SRCINFO | 8 ++++---- discord-electron/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index d2fae40..6d03476 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v31) for increased security and performance - pkgver = 0.0.59 - pkgrel = 2 + pkgver = 0.0.60 + pkgrel = 1 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.59/discord-0.0.59.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.60/discord-0.0.60.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = 43a911d03d62f9d73e8058771b59d148500fc48a0cf51be90899f4927979034d73326086084d342b4885ebe74560b4b99598d8514be9a51f00a9dd2010c74132 + sha512sums = eb83cf67e33e92a128808f225b9fa304fac708157a70a10c3539853d2e582e451c87e5c6ba6d1553a57db7b0dcd89823b7cf5eae2468d1d5dcd3b2f1fa396d4e sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = ac1212b09c3c1e7af3f93294d799765a0547f20a8373bea0ecb1a3e2bcb165488eb1412141c4e577d53ae87122646b12b9339b0a3f8e6817c3865fbb3f642938 diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index f070e7d..3d7f64a 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,7 +1,7 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.59 -pkgrel=2 +pkgver=0.0.60 +pkgrel=1 _electronver=31 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('43a911d03d62f9d73e8058771b59d148500fc48a0cf51be90899f4927979034d73326086084d342b4885ebe74560b4b99598d8514be9a51f00a9dd2010c74132' +sha512sums=('eb83cf67e33e92a128808f225b9fa304fac708157a70a10c3539853d2e582e451c87e5c6ba6d1553a57db7b0dcd89823b7cf5eae2468d1d5dcd3b2f1fa396d4e' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' 'ac1212b09c3c1e7af3f93294d799765a0547f20a8373bea0ecb1a3e2bcb165488eb1412141c4e577d53ae87122646b12b9339b0a3f8e6817c3865fbb3f642938') From 68882fa30cb51350caf2f941c6aa08fb81c7520d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 15 Jul 2024 22:00:11 +0200 Subject: [PATCH 787/971] upgpkg: discord-electron-openasar 0.0.60+828-1 upstream release --- discord-electron-openasar/.SRCINFO | 8 ++++---- discord-electron-openasar/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 7515cd7..c9cc229 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v31) for increased security and performance - pkgver = 0.0.59+828 - pkgrel = 2 + pkgver = 0.0.60+828 + pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.59/discord-0.0.59.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.60/discord-0.0.60.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=5c875eb048e96543f1ec711fae522ace5e4a836c - sha512sums = 43a911d03d62f9d73e8058771b59d148500fc48a0cf51be90899f4927979034d73326086084d342b4885ebe74560b4b99598d8514be9a51f00a9dd2010c74132 + sha512sums = eb83cf67e33e92a128808f225b9fa304fac708157a70a10c3539853d2e582e451c87e5c6ba6d1553a57db7b0dcd89823b7cf5eae2468d1d5dcd3b2f1fa396d4e sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = ac1212b09c3c1e7af3f93294d799765a0547f20a8373bea0ecb1a3e2bcb165488eb1412141c4e577d53ae87122646b12b9339b0a3f8e6817c3865fbb3f642938 sha512sums = 36b7747ec2dad8ddcc84533dbe2013eae7166affd9fdaa3b5c8571faf4e1361fda2aadde719df4d4d18a7da513be51fe8e0726dbf589ebe545a0abc12960bb22 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 4f33676..ee0d6ff 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,9 +2,9 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.59+828 +pkgver=0.0.60+828 _pkgver=${pkgver%%+*} -pkgrel=2 +pkgrel=1 _electronver=31 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=5c875eb048e96543f1ec711fae522ace5e4a836c") -sha512sums=('43a911d03d62f9d73e8058771b59d148500fc48a0cf51be90899f4927979034d73326086084d342b4885ebe74560b4b99598d8514be9a51f00a9dd2010c74132' +sha512sums=('eb83cf67e33e92a128808f225b9fa304fac708157a70a10c3539853d2e582e451c87e5c6ba6d1553a57db7b0dcd89823b7cf5eae2468d1d5dcd3b2f1fa396d4e' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' 'ac1212b09c3c1e7af3f93294d799765a0547f20a8373bea0ecb1a3e2bcb165488eb1412141c4e577d53ae87122646b12b9339b0a3f8e6817c3865fbb3f642938' '36b7747ec2dad8ddcc84533dbe2013eae7166affd9fdaa3b5c8571faf4e1361fda2aadde719df4d4d18a7da513be51fe8e0726dbf589ebe545a0abc12960bb22') From 561ccc04b05ad930fcfa008f02c9c1b7e4ae5f10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 16 Jul 2024 23:15:58 +0200 Subject: [PATCH 788/971] upgpkg: firefox-syncstorage 0.17.1-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index 5bf77da..25a5949 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.17.0 + pkgver = 0.17.1 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -21,9 +21,9 @@ pkgbase = firefox-syncstorage optdepends = mysql: for use with a local database server options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.17.0/syncstorage-rs-0.17.0.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.17.1/syncstorage-rs-0.17.1.tar.gz source = firefox-syncstorage.service - sha512sums = dfee7aa96042831313961b8e65f04b2d053afaf79c38445637bdd105530395bb0938872b3a7f04184c7de4edcfe86270a0a7d2bbadcbd5c361b0a736e8c389ba + sha512sums = 8dbf7739ef0fe2e54fbc9b64bfa3922aeb60dbee7a14c0a3ee88bfd94d87bde918cd0cbeec7323f60ca575c75801f44786e6360723d4e2f4439fc2dfb9ebd3e6 sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index a8538ed..fe87e02 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.17.0 +pkgver=0.17.1 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -18,7 +18,7 @@ options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha512sums=('dfee7aa96042831313961b8e65f04b2d053afaf79c38445637bdd105530395bb0938872b3a7f04184c7de4edcfe86270a0a7d2bbadcbd5c361b0a736e8c389ba' +sha512sums=('8dbf7739ef0fe2e54fbc9b64bfa3922aeb60dbee7a14c0a3ee88bfd94d87bde918cd0cbeec7323f60ca575c75801f44786e6360723d4e2f4439fc2dfb9ebd3e6' '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") From 22120a640cd3e8da80cca4f287dc8ebd62e8f384 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 16 Jul 2024 23:16:32 +0200 Subject: [PATCH 789/971] upgpkg: sublime-text-dev 4.4177-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 336166f..34bf0e1 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4175 + pkgver = 4.4177 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -13,9 +13,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime-text-dev.sh sha512sums = ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9 - source_x86_64 = sublime_text_dev_4_4175_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4175_x64.tar.xz - sha512sums_x86_64 = 7ffc30c53dbdb40fe12bdccce03fe522a569ae3c9a43241f9392067b19377e58e2ca49179c0b1c4a3b210913efbcb5b6c1729f7521b07eaceecf637aa8e333b5 - source_aarch64 = sublime_text_dev_4_4175_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4175_arm64.tar.xz - sha512sums_aarch64 = dfb228c13e76febf73d121c822faa8a48cb63185d7269aa68cd7e69d7c9e2efd2566b87ea3e61b1556862734758edfa2e2a77649e28aed130bf179f07b01c989 + source_x86_64 = sublime_text_dev_4_4177_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4177_x64.tar.xz + sha512sums_x86_64 = b569dca7a9e277d236f7e7172878e23d5ab8841e8103b447447a796e5b60f86b04934b543928da2d352a44e19db39bcb87294a7dffac77efc97d0d1f925f4bbf + source_aarch64 = sublime_text_dev_4_4177_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4177_arm64.tar.xz + sha512sums_aarch64 = 1a73b5c349140226948cbf06122697cd2d4151850b5a3375b3e268cbeb83eb95fb399a3415bf7de824cf69da2a9c6069776cf5b163ad934aaa524e8bb9a9f0c2 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 98fc965..b33b2bb 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4175 +pkgver=4.4177 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -19,8 +19,8 @@ source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://down source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha512sums=('ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9') -sha512sums_x86_64=('7ffc30c53dbdb40fe12bdccce03fe522a569ae3c9a43241f9392067b19377e58e2ca49179c0b1c4a3b210913efbcb5b6c1729f7521b07eaceecf637aa8e333b5') -sha512sums_aarch64=('dfb228c13e76febf73d121c822faa8a48cb63185d7269aa68cd7e69d7c9e2efd2566b87ea3e61b1556862734758edfa2e2a77649e28aed130bf179f07b01c989') +sha512sums_x86_64=('b569dca7a9e277d236f7e7172878e23d5ab8841e8103b447447a796e5b60f86b04934b543928da2d352a44e19db39bcb87294a7dffac77efc97d0d1f925f4bbf') +sha512sums_aarch64=('1a73b5c349140226948cbf06122697cd2d4151850b5a3375b3e268cbeb83eb95fb399a3415bf7de824cf69da2a9c6069776cf5b163ad934aaa524e8bb9a9f0c2') prepare() { sed -i -e "s|@ST_PATH@|/opt/sublime_text|g" "${pkgname}.sh" From cc9e320509313a1914f00ea504fe0151ab4e4c3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 21 Jul 2024 07:32:40 +0200 Subject: [PATCH 790/971] Adopt SPDX identifiers for license fields --- bino/.SRCINFO | 2 +- bino/PKGBUILD | 2 +- clonezilla-unstable/.SRCINFO | 2 +- clonezilla-unstable/PKGBUILD | 2 +- ect/.SRCINFO | 2 +- ect/PKGBUILD | 2 +- firefox-syncstorage/.SRCINFO | 2 +- firefox-syncstorage/PKGBUILD | 2 +- florence/.SRCINFO | 2 +- florence/PKGBUILD | 2 +- gvisor-bin/.SRCINFO | 2 +- gvisor-bin/PKGBUILD | 2 +- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- libqxt/.SRCINFO | 3 +-- libqxt/PKGBUILD | 2 +- linpack/.SRCINFO | 4 ++-- linpack/PKGBUILD | 4 ++-- nginx-mod-form-input/.SRCINFO | 2 +- nginx-mod-form-input/PKGBUILD | 2 +- nginx-mod-traffic-accounting/.SRCINFO | 2 +- nginx-mod-traffic-accounting/PKGBUILD | 2 +- ntfs2btrfs-git/.SRCINFO | 2 +- ntfs2btrfs-git/PKGBUILD | 2 +- ntfs2btrfs/.SRCINFO | 2 +- ntfs2btrfs/PKGBUILD | 2 +- obs-vkcapture/.SRCINFO | 2 +- obs-vkcapture/PKGBUILD | 2 +- plymouth-theme-arch-logo/.SRCINFO | 2 +- plymouth-theme-arch-logo/PKGBUILD | 2 +- rc-local/.SRCINFO | 2 +- rc-local/PKGBUILD | 2 +- systemtap/.SRCINFO | 2 +- systemtap/PKGBUILD | 2 +- tuned/.SRCINFO | 2 +- tuned/PKGBUILD | 2 +- wxedid/.SRCINFO | 2 +- wxedid/PKGBUILD | 6 +++--- 38 files changed, 42 insertions(+), 43 deletions(-) diff --git a/bino/.SRCINFO b/bino/.SRCINFO index 1febe50..72eb71e 100644 --- a/bino/.SRCINFO +++ b/bino/.SRCINFO @@ -4,7 +4,7 @@ pkgbase = bino pkgrel = 1 url = https://bino3d.org/ arch = x86_64 - license = GPL3 + license = GPL-3.0-or-later makedepends = cmake makedepends = qt6-tools depends = qt6-multimedia diff --git a/bino/PKGBUILD b/bino/PKGBUILD index 90d33d2..954e504 100644 --- a/bino/PKGBUILD +++ b/bino/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=1 pkgdesc='A video player with focus on 3D and Virtual Reality' arch=('x86_64') url='https://bino3d.org/' -license=('GPL3') +license=('GPL-3.0-or-later') depends=('qt6-multimedia' 'qt6-svg' 'qvr') makedepends=('cmake' 'qt6-tools') source=(https://bino3d.org/releases/$pkgname-$pkgver.tar.gz{,.sig}) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 0dbe61b..20b0eb3 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -4,7 +4,7 @@ pkgbase = clonezilla-unstable pkgrel = 1 url = https://clonezilla.org arch = any - license = GPL2 + license = GPL-2.0-or-later depends = drbl depends = partclone depends = ntfs-3g diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index c1d92ec..3f24d81 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') url="https://clonezilla.org" -license=('GPL2') +license=('GPL-2.0-or-later') depends=('drbl' 'partclone' 'ntfs-3g' 'partimage' 'pigz' 'sshfs' 'parted' 'gptfdisk' 'dosfstools' 'gzip' 'bzip2' 'pbzip2' 'lbzip2' 'lrzip' 'xz' 'pixz' 'lzop' 'ecryptfs-utils' 'screen' 'perl' 'cifs-utils') diff --git a/ect/.SRCINFO b/ect/.SRCINFO index eda3aaf..e05ad1e 100644 --- a/ect/.SRCINFO +++ b/ect/.SRCINFO @@ -4,7 +4,7 @@ pkgbase = ect pkgrel = 1 url = https://github.com/fhanau/efficient-compression-tool arch = x86_64 - license = Apache + license = Apache-2.0 makedepends = nasm makedepends = git makedepends = cmake diff --git a/ect/PKGBUILD b/ect/PKGBUILD index 9984843..04fc7f9 100644 --- a/ect/PKGBUILD +++ b/ect/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=1 pkgdesc='File compressor, supports postcompression of PNG, JPEG, GZIP and ZIP files' url="https://github.com/fhanau/$_pkgname" arch=('x86_64') -license=('Apache') +license=('Apache-2.0') depends=('gcc-libs') makedepends=('nasm' 'git' 'cmake') source=("git+$url.git#tag=v$pkgver" diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index 25a5949..9b8cfbb 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -10,7 +10,7 @@ pkgbase = firefox-syncstorage arch = armv6h arch = armv7h arch = aarch64 - license = MPL2 + license = MPL-2.0 makedepends = rust makedepends = cmake makedepends = pkgconf diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index fe87e02..80d2604 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -10,7 +10,7 @@ pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') url="https://github.com/mozilla-services/${_pkgname}" -license=('MPL2') +license=('MPL-2.0') depends=('openssl' 'python-fxa' 'python-tokenlib') makedepends=('rust' 'cmake' 'pkgconf' 'mariadb-libs') optdepends=('mysql: for use with a local database server') diff --git a/florence/.SRCINFO b/florence/.SRCINFO index 8c5fde2..c362466 100644 --- a/florence/.SRCINFO +++ b/florence/.SRCINFO @@ -5,7 +5,7 @@ pkgbase = florence url = http://sourceforge.net/projects/florence/ arch = i686 arch = x86_64 - license = GPL + license = GPL-2.0-or-later makedepends = intltool>=0.23 depends = gtk3 depends = libxml2 diff --git a/florence/PKGBUILD b/florence/PKGBUILD index 3b64907..fd0e1bf 100644 --- a/florence/PKGBUILD +++ b/florence/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=3 pkgdesc='A configurable on-screen virtual keyboard' arch=('i686' 'x86_64') url="http://sourceforge.net/projects/${pkgname}/" -license=('GPL') +license=('GPL-2.0-or-later') depends=('gtk3' 'libxml2' 'librsvg' 'libxtst' 'gettext' 'gstreamer>=1.0') # http://florence.sourceforge.net/english/install.html makedepends=('intltool>=0.23') source=("http://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2") diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index d982f67..64dfa1c 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -5,7 +5,7 @@ pkgbase = gvisor-bin url = https://gvisor.dev arch = x86_64 arch = aarch64 - license = Apache + license = Apache-2.0 optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index efdad39..7b5bba8 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') url='https://gvisor.dev' -license=('Apache') +license=('Apache-2.0') optdepends=('docker: for Docker runtime support') provides=( "${pkgname%-bin}" diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index 0535cb6..cfa7715 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -5,7 +5,7 @@ pkgbase = gvisor-git url = https://gvisor.dev arch = x86_64 arch = aarch64 - license = Apache + license = Apache-2.0 makedepends = git makedepends = go optdepends = docker: for Docker runtime support diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index 26f8a45..4046440 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') url='https://gvisor.dev' -license=('Apache') +license=('Apache-2.0') makedepends=('git' 'go') optdepends=('docker: for Docker runtime support') provides=( diff --git a/libqxt/.SRCINFO b/libqxt/.SRCINFO index 5aecc88..3ce1d51 100644 --- a/libqxt/.SRCINFO +++ b/libqxt/.SRCINFO @@ -5,8 +5,7 @@ pkgbase = libqxt url = http://www.libqxt.org arch = i686 arch = x86_64 - license = CPL - license = LGPL2.1 + license = CPL-1.0 OR LGPL-2.1-only makedepends = avahi makedepends = libxrandr depends = qt4 diff --git a/libqxt/PKGBUILD b/libqxt/PKGBUILD index b621e48..903caca 100644 --- a/libqxt/PKGBUILD +++ b/libqxt/PKGBUILD @@ -10,7 +10,7 @@ _pkgsuffix=dadc327c2a6a pkgdesc='Provides a suite of cross-platform utility classes to add functionality not readily available in the Qt toolkit' arch=('i686' 'x86_64') url='http://www.libqxt.org' -license=('CPL' 'LGPL2.1') +license=('CPL-1.0 OR LGPL-2.1-only') depends=('qt4' 'openssl' 'db') makedepends=('avahi' 'libxrandr') optdepends=('avahi: Zeroconf support') diff --git a/linpack/.SRCINFO b/linpack/.SRCINFO index ecaa110..201c93c 100644 --- a/linpack/.SRCINFO +++ b/linpack/.SRCINFO @@ -2,9 +2,9 @@ pkgbase = linpack pkgdesc = Benchmark that measures a system's floating-point rate of execution by solving dense linear equations pkgver = 2024.2.0 pkgrel = 1 - url = http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download + url = https://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download arch = x86_64 - license = custom + license = LicenseRef-Intel-SmpL-2022 options = !strip backup = etc/linpack.conf source = https://downloadmirror.intel.com/825890/l_onemklbench_p_2024.2.0_527.tgz diff --git a/linpack/PKGBUILD b/linpack/PKGBUILD index 0c47b00..fafcdc5 100644 --- a/linpack/PKGBUILD +++ b/linpack/PKGBUILD @@ -9,8 +9,8 @@ _math_kernel_lib=${pkgver%%.0} pkgrel=1 pkgdesc="Benchmark that measures a system's floating-point rate of execution by solving dense linear equations" arch=('x86_64') -url='http://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download' -license=('custom') +url='https://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download' +license=('LicenseRef-Intel-SmpL-2022') backup=('etc/linpack.conf') options=('!strip') source=("https://downloadmirror.intel.com/${_pkgid}/l_onemklbench_p_${_pkgver}.tgz" diff --git a/nginx-mod-form-input/.SRCINFO b/nginx-mod-form-input/.SRCINFO index 95bb58a..3b32d5d 100644 --- a/nginx-mod-form-input/.SRCINFO +++ b/nginx-mod-form-input/.SRCINFO @@ -4,7 +4,7 @@ pkgbase = nginx-mod-form-input pkgrel = 1 url = https://github.com/calio/form-input-nginx-module arch = x86_64 - license = BSD + license = BSD-2-Clause makedepends = nginx-src depends = nginx depends = nginx-mod-ndk diff --git a/nginx-mod-form-input/PKGBUILD b/nginx-mod-form-input/PKGBUILD index b52645e..9e4f2ed 100644 --- a/nginx-mod-form-input/PKGBUILD +++ b/nginx-mod-form-input/PKGBUILD @@ -13,7 +13,7 @@ arch=('x86_64') depends=('nginx' 'nginx-mod-ndk') makedepends=('nginx-src') url="https://github.com/calio/$_modname-nginx-module" -license=('BSD') +license=('BSD-2-Clause') source=( https://github.com/vision5/ngx_devel_kit/archive/v$_ndkver/ngx_devel_kit-$_ndkver.tar.gz diff --git a/nginx-mod-traffic-accounting/.SRCINFO b/nginx-mod-traffic-accounting/.SRCINFO index 9d4cf33..9c18352 100644 --- a/nginx-mod-traffic-accounting/.SRCINFO +++ b/nginx-mod-traffic-accounting/.SRCINFO @@ -4,7 +4,7 @@ pkgbase = nginx-mod-traffic-accounting pkgrel = 1 url = https://github.com/Lax/traffic-accounting-nginx-module arch = x86_64 - license = BSD + license = BSD-2-Clause makedepends = nginx-src depends = nginx source = https://github.com/Lax/traffic-accounting-nginx-module/archive/v2.0/traffic-accounting-nginx-module-2.0.tar.gz diff --git a/nginx-mod-traffic-accounting/PKGBUILD b/nginx-mod-traffic-accounting/PKGBUILD index 1b256ea..03ba726 100644 --- a/nginx-mod-traffic-accounting/PKGBUILD +++ b/nginx-mod-traffic-accounting/PKGBUILD @@ -11,7 +11,7 @@ arch=('x86_64') makedepends=('nginx-src') depends=('nginx') url="https://github.com/Lax/${_modname}" -license=('BSD') +license=('BSD-2-Clause') source=( "https://github.com/Lax/${_modname}/archive/v${pkgver%%+*}/${_modname}-${pkgver%%+*}.tar.gz" diff --git a/ntfs2btrfs-git/.SRCINFO b/ntfs2btrfs-git/.SRCINFO index 1d22772..0856a1c 100644 --- a/ntfs2btrfs-git/.SRCINFO +++ b/ntfs2btrfs-git/.SRCINFO @@ -4,7 +4,7 @@ pkgbase = ntfs2btrfs-git pkgrel = 1 url = https://github.com/maharmstone/ntfs2btrfs arch = x86_64 - license = GPL2 + license = GPL-2.0-or-later makedepends = git makedepends = cmake makedepends = pkgconf diff --git a/ntfs2btrfs-git/PKGBUILD b/ntfs2btrfs-git/PKGBUILD index b6e25ed..bc27729 100644 --- a/ntfs2btrfs-git/PKGBUILD +++ b/ntfs2btrfs-git/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="In-place conversion of Microsoft's NTFS filesystem to the open-source filesystem Btrfs" arch=('x86_64') url="https://github.com/maharmstone/${pkgname%-git}" -license=('GPL2') +license=('GPL-2.0-or-later') depends=('fmt' 'zlib' 'lzo' 'zstd') makedepends=('git' 'cmake' 'pkgconf') provides=("${pkgname%-git}") diff --git a/ntfs2btrfs/.SRCINFO b/ntfs2btrfs/.SRCINFO index 6ff63d5..dd83ad4 100644 --- a/ntfs2btrfs/.SRCINFO +++ b/ntfs2btrfs/.SRCINFO @@ -4,7 +4,7 @@ pkgbase = ntfs2btrfs pkgrel = 1 url = https://github.com/maharmstone/ntfs2btrfs arch = x86_64 - license = GPL2 + license = GPL-2.0-or-later makedepends = cmake makedepends = pkgconf depends = fmt diff --git a/ntfs2btrfs/PKGBUILD b/ntfs2btrfs/PKGBUILD index 1281884..f869042 100644 --- a/ntfs2btrfs/PKGBUILD +++ b/ntfs2btrfs/PKGBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="In-place conversion of Microsoft's NTFS filesystem to the open-source filesystem Btrfs" arch=('x86_64') url="https://github.com/maharmstone/$pkgname" -license=('GPL2') +license=('GPL-2.0-or-later') depends=('fmt' 'zlib' 'lzo' 'zstd') makedepends=('cmake' 'pkgconf') source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz") diff --git a/obs-vkcapture/.SRCINFO b/obs-vkcapture/.SRCINFO index 8febee2..ab52e36 100644 --- a/obs-vkcapture/.SRCINFO +++ b/obs-vkcapture/.SRCINFO @@ -3,7 +3,7 @@ pkgbase = obs-vkcapture pkgrel = 1 url = https://github.com/nowrep/obs-vkcapture arch = x86_64 - license = GPL2 + license = GPL-2.0-or-later makedepends = gcc makedepends = cmake makedepends = vulkan-headers diff --git a/obs-vkcapture/PKGBUILD b/obs-vkcapture/PKGBUILD index cd82c59..d374332 100644 --- a/obs-vkcapture/PKGBUILD +++ b/obs-vkcapture/PKGBUILD @@ -5,7 +5,7 @@ pkgname=("$pkgbase" "lib32-$pkgbase") pkgver=1.5.0 pkgrel=1 url="https://github.com/nowrep/$pkgbase" -license=('GPL2') +license=('GPL-2.0-or-later') arch=('x86_64') depends=('vulkan-icd-loader' 'libgl' 'libegl' 'obs-studio>=27') makedepends=('gcc' 'cmake' 'vulkan-headers' 'lib32-gcc-libs' 'lib32-vulkan-icd-loader' 'lib32-libgl' 'lib32-libegl') diff --git a/plymouth-theme-arch-logo/.SRCINFO b/plymouth-theme-arch-logo/.SRCINFO index ba5dbab..aa82fa3 100644 --- a/plymouth-theme-arch-logo/.SRCINFO +++ b/plymouth-theme-arch-logo/.SRCINFO @@ -5,7 +5,7 @@ pkgbase = plymouth-theme-arch-logo url = https://www.gnome-look.org/content/show.php/Arch-logo+plymouth?content=141697 install = plymouth-theme-arch-logo.install arch = any - license = GPL + license = GPL-3.0-or-later depends = plymouth source = plymouth-theme-arch-logo.tar.gz sha512sums = 0c834bccc32d8d2df1a0bf2ae859487eef273ddf8047a7444f3630dffbbf04a9d014242304c5b2bcd9172bea2e04195f329dfe1fe4661bcc5af29ca64104af06 diff --git a/plymouth-theme-arch-logo/PKGBUILD b/plymouth-theme-arch-logo/PKGBUILD index e90fbb8..16f65bf 100644 --- a/plymouth-theme-arch-logo/PKGBUILD +++ b/plymouth-theme-arch-logo/PKGBUILD @@ -10,7 +10,7 @@ arch=('any') # Alternative website(s) #url='http://karlinux.deviantart.com/art/Arch-Logo-Plymouth-Theme-209553250' url='https://www.gnome-look.org/content/show.php/Arch-logo+plymouth?content=141697' -license=('GPL') +license=('GPL-3.0-or-later') depends=('plymouth') install="${pkgname}.install" source=( diff --git a/rc-local/.SRCINFO b/rc-local/.SRCINFO index 1e0ddda..20915f2 100644 --- a/rc-local/.SRCINFO +++ b/rc-local/.SRCINFO @@ -5,7 +5,7 @@ pkgbase = rc-local url = https://aur.archlinux.org/packages/rc-local/ install = rc-local.install arch = any - license = LGPL2.1 + license = LGPL-2.1-or-later depends = systemd backup = etc/rc.local source = rc.local diff --git a/rc-local/PKGBUILD b/rc-local/PKGBUILD index 984f4be..4ac415a 100644 --- a/rc-local/PKGBUILD +++ b/rc-local/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc='Support for legacy rc.local scripts' url="https://aur.archlinux.org/packages/${pkgname}/" arch=('any') -license=('LGPL2.1') +license=('LGPL-2.1-or-later') install="${pkgname}.install" depends=('systemd') backup=('etc/rc.local') diff --git a/systemtap/.SRCINFO b/systemtap/.SRCINFO index 710496c..e200204 100644 --- a/systemtap/.SRCINFO +++ b/systemtap/.SRCINFO @@ -5,7 +5,7 @@ pkgbase = systemtap url = https://sourceware.org/systemtap/ install = systemtap.install arch = x86_64 - license = GPL + license = GPL-2.0-or-later makedepends = python-setuptools makedepends = xmlto depends = elfutils diff --git a/systemtap/PKGBUILD b/systemtap/PKGBUILD index c6dab89..f7222fe 100644 --- a/systemtap/PKGBUILD +++ b/systemtap/PKGBUILD @@ -11,7 +11,7 @@ pkgrel=1 pkgdesc="Infrastructure to simplify the gathering of information about the running Linux system" url="https://sourceware.org/systemtap/" arch=('x86_64') -license=('GPL') +license=('GPL-2.0-or-later') depends=('elfutils' 'nss' 'python' 'cpio') makedepends=('python-setuptools' 'xmlto') optdepends=('sqlite3: for storing results in a database') diff --git a/tuned/.SRCINFO b/tuned/.SRCINFO index 479c28b..f34ad0a 100644 --- a/tuned/.SRCINFO +++ b/tuned/.SRCINFO @@ -4,7 +4,7 @@ pkgbase = tuned pkgrel = 2 url = https://github.com/redhat-performance/tuned arch = any - license = GPL + license = GPL-2.0-or-later makedepends = desktop-file-utils depends = dbus-glib depends = ethtool diff --git a/tuned/PKGBUILD b/tuned/PKGBUILD index a0086a1..8149569 100644 --- a/tuned/PKGBUILD +++ b/tuned/PKGBUILD @@ -10,7 +10,7 @@ pkgrel=2 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url="https://github.com/redhat-performance/${pkgbase}" -license=('GPL') +license=('GPL-2.0-or-later') depends=('dbus-glib' 'ethtool' 'gawk' 'hdparm' 'polkit' 'python-configobj' 'python-dbus' 'python-gobject' 'python-linux-procfs' 'python-perf' 'python-pyudev') makedepends=('desktop-file-utils') source=("https://github.com/redhat-performance/${pkgbase}/archive/v${pkgver}/${pkgbase}-${pkgver}.tar.gz") diff --git a/wxedid/.SRCINFO b/wxedid/.SRCINFO index 4ffccd1..cd3c3f3 100644 --- a/wxedid/.SRCINFO +++ b/wxedid/.SRCINFO @@ -4,7 +4,7 @@ pkgbase = wxedid pkgrel = 1 url = https://sourceforge.net/projects/wxedid/ arch = x86_64 - license = GPL3 + license = GPL-3.0-or-later depends = wxwidgets-gtk3 source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.31.tar.gz sha512sums = 9e83ce46912ef1a43bccfa4e4086697cfec444ef932040e618210d682a6fa4a40bf78aece953e10a959ae7a38671b5782a0a4562cd776f71b5784c3bd1fcda5d diff --git a/wxedid/PKGBUILD b/wxedid/PKGBUILD index 719a0b6..9a13384 100644 --- a/wxedid/PKGBUILD +++ b/wxedid/PKGBUILD @@ -6,8 +6,8 @@ pkgver=0.0.31 pkgrel=1 pkgdesc='wxWidgets-based EDID (Extended Display Identification Data) editor' arch=('x86_64') -url='https://sourceforge.net/projects/wxedid/' -license=('GPL3') +url="https://sourceforge.net/projects/${pkgname}/" +license=('GPL-3.0-or-later') depends=('wxwidgets-gtk3') source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz") sha512sums=('9e83ce46912ef1a43bccfa4e4086697cfec444ef932040e618210d682a6fa4a40bf78aece953e10a959ae7a38671b5782a0a4562cd776f71b5784c3bd1fcda5d') @@ -21,7 +21,7 @@ build() { check() { cd "${pkgname}-${pkgver}" - make -k check + make check } package() { From 9ff0dd06784d7d7680a48d3c48a6ce784b481677 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 21 Jul 2024 07:32:40 +0200 Subject: [PATCH 791/971] Adopt SPDX identifiers for license fields --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 0dbe61b..20b0eb3 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -4,7 +4,7 @@ pkgbase = clonezilla-unstable pkgrel = 1 url = https://clonezilla.org arch = any - license = GPL2 + license = GPL-2.0-or-later depends = drbl depends = partclone depends = ntfs-3g diff --git a/PKGBUILD b/PKGBUILD index c1d92ec..3f24d81 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') url="https://clonezilla.org" -license=('GPL2') +license=('GPL-2.0-or-later') depends=('drbl' 'partclone' 'ntfs-3g' 'partimage' 'pigz' 'sshfs' 'parted' 'gptfdisk' 'dosfstools' 'gzip' 'bzip2' 'pbzip2' 'lbzip2' 'lrzip' 'xz' 'pixz' 'lzop' 'ecryptfs-utils' 'screen' 'perl' 'cifs-utils') From 2452d70ad9a6d85289b9d3e70bfcb1665bbc04d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 21 Jul 2024 07:39:09 +0200 Subject: [PATCH 792/971] upgpkg: gvisor-bin 20240715.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index 64dfa1c..c38de6d 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20240603.0 + pkgver = 20240715.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20240603.0::https://storage.googleapis.com/gvisor/releases/release/20240603.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20240603.0::https://storage.googleapis.com/gvisor/releases/release/20240603.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = 1c110c28bdf48fa20ba061a164e4a9f18ffd09c18f50fe353a7963f4d002ac63a0e8459c743b6988bc551dbda4018fa7603d69b909fcf810f5dc8f2e14fb4347 - sha512sums_x86_64 = be6c24182f25bb06e0befe2a2fd83b31c4867bc9ceae795310a19c7d75485be405282d0b8afb60b4218ce55b668bc1c73affbaa6071ff562aa3a25f674502c7a - source_aarch64 = runsc-aarch64-20240603.0::https://storage.googleapis.com/gvisor/releases/release/20240603.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20240603.0::https://storage.googleapis.com/gvisor/releases/release/20240603.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 107d63e743b215f5cb8580151453955a2b38ae9249e38bc9d2f2373f827d97900573a7b2e129816c45ea1fddd5c1484a9a9a26870083290bccee0261356dc1c7 - sha512sums_aarch64 = 81067427707a5588670d7a3040c7ca4ed84e2cea2310a84a96758013807eb5b27b7f890a65bc23e1aad07c060f572d42152edae4513995b9a3c44831aa7d1537 + source_x86_64 = runsc-x86_64-20240715.0::https://storage.googleapis.com/gvisor/releases/release/20240715.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20240715.0::https://storage.googleapis.com/gvisor/releases/release/20240715.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = 9170a4cd1cd3451164bb6b5e013d78064960b9200442744034f7aef7b7653eca7251fc159202e4f355391943af77799fab213719663addd755c0696d5ceb6afb + sha512sums_x86_64 = da60cdc019b61cfecf8e2fefa12e1d2486adf7ba7d92947d04102f17accf72f393385fe47e33e26236308c0abc025579f7b5251110d9669ac02c3d05c81b98d7 + source_aarch64 = runsc-aarch64-20240715.0::https://storage.googleapis.com/gvisor/releases/release/20240715.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20240715.0::https://storage.googleapis.com/gvisor/releases/release/20240715.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 8424bc2fad7845453d1c1245c26df5986a704c53787fb12fd438f81b9b044e3d828ebbbc91806f55c81b5747b2f6dcf2eca0bbfd460ed6d5932a76c00222357d + sha512sums_aarch64 = aa040217f54f987a65c052eba3bddde24bc63542717eec7afb8ab4d8701dc828c039e39af95079cc2fee293a53ed597c248ba07232c6ddad43b5fd73fcf41731 pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index 7b5bba8..9f42344 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20240603.0 +pkgver=20240715.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('1c110c28bdf48fa20ba061a164e4a9f18ffd09c18f50fe353a7963f4d002ac63a0e8459c743b6988bc551dbda4018fa7603d69b909fcf810f5dc8f2e14fb4347' - 'be6c24182f25bb06e0befe2a2fd83b31c4867bc9ceae795310a19c7d75485be405282d0b8afb60b4218ce55b668bc1c73affbaa6071ff562aa3a25f674502c7a') -sha512sums_aarch64=('107d63e743b215f5cb8580151453955a2b38ae9249e38bc9d2f2373f827d97900573a7b2e129816c45ea1fddd5c1484a9a9a26870083290bccee0261356dc1c7' - '81067427707a5588670d7a3040c7ca4ed84e2cea2310a84a96758013807eb5b27b7f890a65bc23e1aad07c060f572d42152edae4513995b9a3c44831aa7d1537') +sha512sums_x86_64=('9170a4cd1cd3451164bb6b5e013d78064960b9200442744034f7aef7b7653eca7251fc159202e4f355391943af77799fab213719663addd755c0696d5ceb6afb' + 'da60cdc019b61cfecf8e2fefa12e1d2486adf7ba7d92947d04102f17accf72f393385fe47e33e26236308c0abc025579f7b5251110d9669ac02c3d05c81b98d7') +sha512sums_aarch64=('8424bc2fad7845453d1c1245c26df5986a704c53787fb12fd438f81b9b044e3d828ebbbc91806f55c81b5747b2f6dcf2eca0bbfd460ed6d5932a76c00222357d' + 'aa040217f54f987a65c052eba3bddde24bc63542717eec7afb8ab4d8701dc828c039e39af95079cc2fee293a53ed597c248ba07232c6ddad43b5fd73fcf41731') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From 08d8095668023d7e775fd54d406fcd3ca0a0106e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 21 Jul 2024 07:39:22 +0200 Subject: [PATCH 793/971] upgpkg: gvisor-git 20240715.0-1 upstream release --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index cfa7715..28bd017 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20240603.0 + pkgver = 20240715.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index 4046440..47f187d 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20240603.0 +pkgver=20240715.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From 3c159d6ba423053af0fe6fed636d1e8675bcac80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 21 Jul 2024 07:40:38 +0200 Subject: [PATCH 794/971] upgpkg: obs-vkcapture 1.5.1-1 upstream release --- obs-vkcapture/.SRCINFO | 6 +++--- obs-vkcapture/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/obs-vkcapture/.SRCINFO b/obs-vkcapture/.SRCINFO index ab52e36..bc3722a 100644 --- a/obs-vkcapture/.SRCINFO +++ b/obs-vkcapture/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = obs-vkcapture - pkgver = 1.5.0 + pkgver = 1.5.1 pkgrel = 1 url = https://github.com/nowrep/obs-vkcapture arch = x86_64 @@ -15,8 +15,8 @@ pkgbase = obs-vkcapture depends = libgl depends = libegl depends = obs-studio>=27 - source = https://github.com/nowrep/obs-vkcapture/archive/v1.5.0/obs-vkcapture-1.5.0.tar.gz - sha512sums = 856a735ca3d1ed9f04c91c7e4a006aca2a72389a4ac0dee13d2b1f87da8e622d71dda400bb263499ddd04b1bc4294e7270382fc12e91e82a8ed554de8e3a4c96 + source = https://github.com/nowrep/obs-vkcapture/archive/v1.5.1/obs-vkcapture-1.5.1.tar.gz + sha512sums = 9477fd738cdf80e09aad46e58ee5e325aa4f5ae72fbe1cb22918d4910fd997ba2a012ce7ca3b24b1b3734983b94e9b7df391f3deca569a79c90c5d115a1a5eed pkgname = obs-vkcapture pkgdesc = OBS Linux Vulkan/OpenGL game capture diff --git a/obs-vkcapture/PKGBUILD b/obs-vkcapture/PKGBUILD index d374332..9ccc8e5 100644 --- a/obs-vkcapture/PKGBUILD +++ b/obs-vkcapture/PKGBUILD @@ -2,7 +2,7 @@ pkgbase=obs-vkcapture pkgname=("$pkgbase" "lib32-$pkgbase") -pkgver=1.5.0 +pkgver=1.5.1 pkgrel=1 url="https://github.com/nowrep/$pkgbase" license=('GPL-2.0-or-later') @@ -10,7 +10,7 @@ arch=('x86_64') depends=('vulkan-icd-loader' 'libgl' 'libegl' 'obs-studio>=27') makedepends=('gcc' 'cmake' 'vulkan-headers' 'lib32-gcc-libs' 'lib32-vulkan-icd-loader' 'lib32-libgl' 'lib32-libegl') source=("https://github.com/nowrep/$pkgbase/archive/v$pkgver/$pkgbase-$pkgver.tar.gz") -sha512sums=('856a735ca3d1ed9f04c91c7e4a006aca2a72389a4ac0dee13d2b1f87da8e622d71dda400bb263499ddd04b1bc4294e7270382fc12e91e82a8ed554de8e3a4c96') +sha512sums=('9477fd738cdf80e09aad46e58ee5e325aa4f5ae72fbe1cb22918d4910fd997ba2a012ce7ca3b24b1b3734983b94e9b7df391f3deca569a79c90c5d115a1a5eed') build() { cmake -B build -S "$pkgbase-$pkgver" \ From acef876efa954676eda33999e03c78231c0c0f1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 23 Jul 2024 06:56:56 +0200 Subject: [PATCH 795/971] upgpkg: discord-electron 0.0.61-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 6d03476..639c08e 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v31) for increased security and performance - pkgver = 0.0.60 + pkgver = 0.0.61 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.60/discord-0.0.60.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.61/discord-0.0.61.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = eb83cf67e33e92a128808f225b9fa304fac708157a70a10c3539853d2e582e451c87e5c6ba6d1553a57db7b0dcd89823b7cf5eae2468d1d5dcd3b2f1fa396d4e + sha512sums = 2b7955e93f2352a244ab0838c24399b556174179eb3aa7ef8ed32d914f7ab1e49165cf8ab374b15c90bddd8ec8150146d2ebcc94c7e1aa8c914c56d4b6a03d29 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = ac1212b09c3c1e7af3f93294d799765a0547f20a8373bea0ecb1a3e2bcb165488eb1412141c4e577d53ae87122646b12b9339b0a3f8e6817c3865fbb3f642938 diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 3d7f64a..76ba0eb 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.60 +pkgver=0.0.61 pkgrel=1 _electronver=31 _electronname="electron${_electronver}" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('eb83cf67e33e92a128808f225b9fa304fac708157a70a10c3539853d2e582e451c87e5c6ba6d1553a57db7b0dcd89823b7cf5eae2468d1d5dcd3b2f1fa396d4e' +sha512sums=('2b7955e93f2352a244ab0838c24399b556174179eb3aa7ef8ed32d914f7ab1e49165cf8ab374b15c90bddd8ec8150146d2ebcc94c7e1aa8c914c56d4b6a03d29' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' 'ac1212b09c3c1e7af3f93294d799765a0547f20a8373bea0ecb1a3e2bcb165488eb1412141c4e577d53ae87122646b12b9339b0a3f8e6817c3865fbb3f642938') From 6b21e2107ecfdcd2d35d1e07b6fb59ca0cf270f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 23 Jul 2024 06:57:25 +0200 Subject: [PATCH 796/971] upgpkg: discord-electron-openasar 0.0.61+828-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index c9cc229..4638945 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v31) for increased security and performance - pkgver = 0.0.60+828 + pkgver = 0.0.61+828 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.60/discord-0.0.60.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.61/discord-0.0.61.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=5c875eb048e96543f1ec711fae522ace5e4a836c - sha512sums = eb83cf67e33e92a128808f225b9fa304fac708157a70a10c3539853d2e582e451c87e5c6ba6d1553a57db7b0dcd89823b7cf5eae2468d1d5dcd3b2f1fa396d4e + sha512sums = 2b7955e93f2352a244ab0838c24399b556174179eb3aa7ef8ed32d914f7ab1e49165cf8ab374b15c90bddd8ec8150146d2ebcc94c7e1aa8c914c56d4b6a03d29 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = ac1212b09c3c1e7af3f93294d799765a0547f20a8373bea0ecb1a3e2bcb165488eb1412141c4e577d53ae87122646b12b9339b0a3f8e6817c3865fbb3f642938 sha512sums = 36b7747ec2dad8ddcc84533dbe2013eae7166affd9fdaa3b5c8571faf4e1361fda2aadde719df4d4d18a7da513be51fe8e0726dbf589ebe545a0abc12960bb22 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index ee0d6ff..6a3daef 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.60+828 +pkgver=0.0.61+828 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=31 @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=5c875eb048e96543f1ec711fae522ace5e4a836c") -sha512sums=('eb83cf67e33e92a128808f225b9fa304fac708157a70a10c3539853d2e582e451c87e5c6ba6d1553a57db7b0dcd89823b7cf5eae2468d1d5dcd3b2f1fa396d4e' +sha512sums=('2b7955e93f2352a244ab0838c24399b556174179eb3aa7ef8ed32d914f7ab1e49165cf8ab374b15c90bddd8ec8150146d2ebcc94c7e1aa8c914c56d4b6a03d29' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' 'ac1212b09c3c1e7af3f93294d799765a0547f20a8373bea0ecb1a3e2bcb165488eb1412141c4e577d53ae87122646b12b9339b0a3f8e6817c3865fbb3f642938' '36b7747ec2dad8ddcc84533dbe2013eae7166affd9fdaa3b5c8571faf4e1361fda2aadde719df4d4d18a7da513be51fe8e0726dbf589ebe545a0abc12960bb22') From dc0cdb562fa189c08aae5c7b866aa063ff9a083d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 30 Jul 2024 19:28:48 +0200 Subject: [PATCH 797/971] upgpkg: discord-electron 0.0.62-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 639c08e..4fcc741 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v31) for increased security and performance - pkgver = 0.0.61 + pkgver = 0.0.62 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.61/discord-0.0.61.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.62/discord-0.0.62.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = 2b7955e93f2352a244ab0838c24399b556174179eb3aa7ef8ed32d914f7ab1e49165cf8ab374b15c90bddd8ec8150146d2ebcc94c7e1aa8c914c56d4b6a03d29 + sha512sums = 6271382410340c0f38c4403af766fe18ea7548279f3bc75ebe748a75281c304d7738e2d857e208b8867a2330b2a9e22d292ad63421578db35b79e4d16267456f sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = ac1212b09c3c1e7af3f93294d799765a0547f20a8373bea0ecb1a3e2bcb165488eb1412141c4e577d53ae87122646b12b9339b0a3f8e6817c3865fbb3f642938 diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 76ba0eb..55c7c8b 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.61 +pkgver=0.0.62 pkgrel=1 _electronver=31 _electronname="electron${_electronver}" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('2b7955e93f2352a244ab0838c24399b556174179eb3aa7ef8ed32d914f7ab1e49165cf8ab374b15c90bddd8ec8150146d2ebcc94c7e1aa8c914c56d4b6a03d29' +sha512sums=('6271382410340c0f38c4403af766fe18ea7548279f3bc75ebe748a75281c304d7738e2d857e208b8867a2330b2a9e22d292ad63421578db35b79e4d16267456f' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' 'ac1212b09c3c1e7af3f93294d799765a0547f20a8373bea0ecb1a3e2bcb165488eb1412141c4e577d53ae87122646b12b9339b0a3f8e6817c3865fbb3f642938') From 43bc183c3c401fb486ef529d1e6906ef22cac84d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 30 Jul 2024 19:29:07 +0200 Subject: [PATCH 798/971] upgpkg: discord-electron-openasar 0.0.62+828-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 4638945..b6093a6 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v31) for increased security and performance - pkgver = 0.0.61+828 + pkgver = 0.0.62+828 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.61/discord-0.0.61.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.62/discord-0.0.62.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=5c875eb048e96543f1ec711fae522ace5e4a836c - sha512sums = 2b7955e93f2352a244ab0838c24399b556174179eb3aa7ef8ed32d914f7ab1e49165cf8ab374b15c90bddd8ec8150146d2ebcc94c7e1aa8c914c56d4b6a03d29 + sha512sums = 6271382410340c0f38c4403af766fe18ea7548279f3bc75ebe748a75281c304d7738e2d857e208b8867a2330b2a9e22d292ad63421578db35b79e4d16267456f sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = ac1212b09c3c1e7af3f93294d799765a0547f20a8373bea0ecb1a3e2bcb165488eb1412141c4e577d53ae87122646b12b9339b0a3f8e6817c3865fbb3f642938 sha512sums = 36b7747ec2dad8ddcc84533dbe2013eae7166affd9fdaa3b5c8571faf4e1361fda2aadde719df4d4d18a7da513be51fe8e0726dbf589ebe545a0abc12960bb22 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 6a3daef..4cefde0 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.61+828 +pkgver=0.0.62+828 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=31 @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=5c875eb048e96543f1ec711fae522ace5e4a836c") -sha512sums=('2b7955e93f2352a244ab0838c24399b556174179eb3aa7ef8ed32d914f7ab1e49165cf8ab374b15c90bddd8ec8150146d2ebcc94c7e1aa8c914c56d4b6a03d29' +sha512sums=('6271382410340c0f38c4403af766fe18ea7548279f3bc75ebe748a75281c304d7738e2d857e208b8867a2330b2a9e22d292ad63421578db35b79e4d16267456f' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' 'ac1212b09c3c1e7af3f93294d799765a0547f20a8373bea0ecb1a3e2bcb165488eb1412141c4e577d53ae87122646b12b9339b0a3f8e6817c3865fbb3f642938' '36b7747ec2dad8ddcc84533dbe2013eae7166affd9fdaa3b5c8571faf4e1361fda2aadde719df4d4d18a7da513be51fe8e0726dbf589ebe545a0abc12960bb22') From 995a265f8b2bfca84ba44409dba6b3784d90825f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 3 Aug 2024 18:48:00 +0200 Subject: [PATCH 799/971] upgpkg: sublime-text-dev 4.4178-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 34bf0e1..f1c5344 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4177 + pkgver = 4.4178 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -13,9 +13,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime-text-dev.sh sha512sums = ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9 - source_x86_64 = sublime_text_dev_4_4177_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4177_x64.tar.xz - sha512sums_x86_64 = b569dca7a9e277d236f7e7172878e23d5ab8841e8103b447447a796e5b60f86b04934b543928da2d352a44e19db39bcb87294a7dffac77efc97d0d1f925f4bbf - source_aarch64 = sublime_text_dev_4_4177_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4177_arm64.tar.xz - sha512sums_aarch64 = 1a73b5c349140226948cbf06122697cd2d4151850b5a3375b3e268cbeb83eb95fb399a3415bf7de824cf69da2a9c6069776cf5b163ad934aaa524e8bb9a9f0c2 + source_x86_64 = sublime_text_dev_4_4178_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4178_x64.tar.xz + sha512sums_x86_64 = 29fe5f077a9295e201e599a228538f0fded5fbae4d414e366c1d4d689655870aa1418132c33f6d7313ef570aa110944ca2385f8ca5c165026d6b6e5f4110ec67 + source_aarch64 = sublime_text_dev_4_4178_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4178_arm64.tar.xz + sha512sums_aarch64 = f8a824acdea0a9fd732ad2a28896e19abe4e56a37b5736d40ec4fa7b4b9e161b2a787b41062c686b9a7c356815bd2cbbeac418af89022d181f3b82fccdd8ab20 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index b33b2bb..e8e5946 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4177 +pkgver=4.4178 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -19,8 +19,8 @@ source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://down source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha512sums=('ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9') -sha512sums_x86_64=('b569dca7a9e277d236f7e7172878e23d5ab8841e8103b447447a796e5b60f86b04934b543928da2d352a44e19db39bcb87294a7dffac77efc97d0d1f925f4bbf') -sha512sums_aarch64=('1a73b5c349140226948cbf06122697cd2d4151850b5a3375b3e268cbeb83eb95fb399a3415bf7de824cf69da2a9c6069776cf5b163ad934aaa524e8bb9a9f0c2') +sha512sums_x86_64=('29fe5f077a9295e201e599a228538f0fded5fbae4d414e366c1d4d689655870aa1418132c33f6d7313ef570aa110944ca2385f8ca5c165026d6b6e5f4110ec67') +sha512sums_aarch64=('f8a824acdea0a9fd732ad2a28896e19abe4e56a37b5736d40ec4fa7b4b9e161b2a787b41062c686b9a7c356815bd2cbbeac418af89022d181f3b82fccdd8ab20') prepare() { sed -i -e "s|@ST_PATH@|/opt/sublime_text|g" "${pkgname}.sh" From f768052bc6e438aa4733f0afa170081bb9b76ef3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 6 Aug 2024 20:48:22 +0200 Subject: [PATCH 800/971] upgpkg: sublime-text-4 4.4180-1 upstream release --- sublime-text-4/.SRCINFO | 12 ++++++------ sublime-text-4/PKGBUILD | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/sublime-text-4/.SRCINFO b/sublime-text-4/.SRCINFO index 1fd492b..dc99295 100644 --- a/sublime-text-4/.SRCINFO +++ b/sublime-text-4/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = sublime-text-4 pkgdesc = Sophisticated text editor for code, html and prose - stable build - pkgver = 4.4169 - pkgrel = 2 + pkgver = 4.4180 + pkgrel = 1 url = https://www.sublimetext.com/download arch = x86_64 arch = aarch64 @@ -12,9 +12,9 @@ pkgbase = sublime-text-4 conflicts = sublime-text source = sublime-text-4.sh sha512sums = ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9 - source_x86_64 = sublime_text_4_4_4169_2_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4169_x64.tar.xz - sha512sums_x86_64 = 6764363f8f92f65532d64ba014023e28b18f40dc62a1b114239b59360257d445494f9a2f57580174b5f4994c8fa06cd8f562c9419cfda92324c9ebf25d15e576 - source_aarch64 = sublime_text_4_4_4169_2_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4169_arm64.tar.xz - sha512sums_aarch64 = e9964f55a5bff89fc0ad13266cc7695c8e0cc41d86caed212836fd737c3b52d84400c683b3f9699b554e71fa2d3ed3cc4351cfebcf9f182512211227465db3d6 + source_x86_64 = sublime_text_4_4_4180_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4180_x64.tar.xz + sha512sums_x86_64 = a115a352311a964268a1460710c562a7843b52c14c452745edb8706ac726e97b867931659b1a3286d44cb19b880f42f00af5bffe88aaa7916181a690e8324e1a + source_aarch64 = sublime_text_4_4_4180_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4180_arm64.tar.xz + sha512sums_aarch64 = b127def4ad73cf390fc4fc69cae0bf71b9171b20579a742fbf2b18e3e40d3e0c37e1f8ceff7f7e2d1d8e71bcf3967a6ba282b1a94af5a5bbc88f0f99d89f9b84 pkgname = sublime-text-4 diff --git a/sublime-text-4/PKGBUILD b/sublime-text-4/PKGBUILD index fe0dc34..45f7924 100644 --- a/sublime-text-4/PKGBUILD +++ b/sublime-text-4/PKGBUILD @@ -1,8 +1,8 @@ # Maintainer: Manuel Hüsers pkgname=sublime-text-4 -pkgver=4.4169 -pkgrel=2 +pkgver=4.4180 +pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - stable build' arch=('x86_64' 'aarch64') url='https://www.sublimetext.com/download' @@ -16,8 +16,8 @@ source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://down source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha512sums=('ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9') -sha512sums_x86_64=('6764363f8f92f65532d64ba014023e28b18f40dc62a1b114239b59360257d445494f9a2f57580174b5f4994c8fa06cd8f562c9419cfda92324c9ebf25d15e576') -sha512sums_aarch64=('e9964f55a5bff89fc0ad13266cc7695c8e0cc41d86caed212836fd737c3b52d84400c683b3f9699b554e71fa2d3ed3cc4351cfebcf9f182512211227465db3d6') +sha512sums_x86_64=('a115a352311a964268a1460710c562a7843b52c14c452745edb8706ac726e97b867931659b1a3286d44cb19b880f42f00af5bffe88aaa7916181a690e8324e1a') +sha512sums_aarch64=('b127def4ad73cf390fc4fc69cae0bf71b9171b20579a742fbf2b18e3e40d3e0c37e1f8ceff7f7e2d1d8e71bcf3967a6ba282b1a94af5a5bbc88f0f99d89f9b84') prepare() { sed -i -e "s|@ST_PATH@|/opt/sublime_text|g" "${pkgname}.sh" From 2caee9ad2c0b221ed110cdf88609f91481d3896f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 6 Aug 2024 20:48:47 +0200 Subject: [PATCH 801/971] upgpkg: sublime-text-dev 4.4180-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index f1c5344..12b9a8b 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4178 + pkgver = 4.4180 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -13,9 +13,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime-text-dev.sh sha512sums = ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9 - source_x86_64 = sublime_text_dev_4_4178_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4178_x64.tar.xz - sha512sums_x86_64 = 29fe5f077a9295e201e599a228538f0fded5fbae4d414e366c1d4d689655870aa1418132c33f6d7313ef570aa110944ca2385f8ca5c165026d6b6e5f4110ec67 - source_aarch64 = sublime_text_dev_4_4178_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4178_arm64.tar.xz - sha512sums_aarch64 = f8a824acdea0a9fd732ad2a28896e19abe4e56a37b5736d40ec4fa7b4b9e161b2a787b41062c686b9a7c356815bd2cbbeac418af89022d181f3b82fccdd8ab20 + source_x86_64 = sublime_text_dev_4_4180_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4180_x64.tar.xz + sha512sums_x86_64 = a115a352311a964268a1460710c562a7843b52c14c452745edb8706ac726e97b867931659b1a3286d44cb19b880f42f00af5bffe88aaa7916181a690e8324e1a + source_aarch64 = sublime_text_dev_4_4180_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4180_arm64.tar.xz + sha512sums_aarch64 = b127def4ad73cf390fc4fc69cae0bf71b9171b20579a742fbf2b18e3e40d3e0c37e1f8ceff7f7e2d1d8e71bcf3967a6ba282b1a94af5a5bbc88f0f99d89f9b84 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index e8e5946..30d7e3e 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4178 +pkgver=4.4180 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -19,8 +19,8 @@ source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://down source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha512sums=('ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9') -sha512sums_x86_64=('29fe5f077a9295e201e599a228538f0fded5fbae4d414e366c1d4d689655870aa1418132c33f6d7313ef570aa110944ca2385f8ca5c165026d6b6e5f4110ec67') -sha512sums_aarch64=('f8a824acdea0a9fd732ad2a28896e19abe4e56a37b5736d40ec4fa7b4b9e161b2a787b41062c686b9a7c356815bd2cbbeac418af89022d181f3b82fccdd8ab20') +sha512sums_x86_64=('a115a352311a964268a1460710c562a7843b52c14c452745edb8706ac726e97b867931659b1a3286d44cb19b880f42f00af5bffe88aaa7916181a690e8324e1a') +sha512sums_aarch64=('b127def4ad73cf390fc4fc69cae0bf71b9171b20579a742fbf2b18e3e40d3e0c37e1f8ceff7f7e2d1d8e71bcf3967a6ba282b1a94af5a5bbc88f0f99d89f9b84') prepare() { sed -i -e "s|@ST_PATH@|/opt/sublime_text|g" "${pkgname}.sh" From 8e7b80d0fdcb8b1c9c1db3b16e62546621d3db87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 6 Aug 2024 20:53:35 +0200 Subject: [PATCH 802/971] upgpkg: discord-electron 0.0.63-1 upstream release --- discord-electron/.SRCINFO | 8 ++++---- discord-electron/PKGBUILD | 6 +++--- discord-electron/krisp-patcher.py | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 4fcc741..4f0c436 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v31) for increased security and performance - pkgver = 0.0.62 + pkgver = 0.0.63 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,11 +18,11 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.62/discord-0.0.62.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.63/discord-0.0.63.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = 6271382410340c0f38c4403af766fe18ea7548279f3bc75ebe748a75281c304d7738e2d857e208b8867a2330b2a9e22d292ad63421578db35b79e4d16267456f + sha512sums = b1695d2790b59b395c9b4c570ddcbb9b8da7629d02eab33e330f77cf5ed81db121fbe805bb40264eb32ae3a858fcdc3ede4d90982b1c13498474d45b82cb6d6e sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 - sha512sums = ac1212b09c3c1e7af3f93294d799765a0547f20a8373bea0ecb1a3e2bcb165488eb1412141c4e577d53ae87122646b12b9339b0a3f8e6817c3865fbb3f642938 + sha512sums = e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 55c7c8b..b280af6 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.62 +pkgver=0.0.63 pkgrel=1 _electronver=31 _electronname="electron${_electronver}" @@ -24,9 +24,9 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('6271382410340c0f38c4403af766fe18ea7548279f3bc75ebe748a75281c304d7738e2d857e208b8867a2330b2a9e22d292ad63421578db35b79e4d16267456f' +sha512sums=('b1695d2790b59b395c9b4c570ddcbb9b8da7629d02eab33e330f77cf5ed81db121fbe805bb40264eb32ae3a858fcdc3ede4d90982b1c13498474d45b82cb6d6e' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' - 'ac1212b09c3c1e7af3f93294d799765a0547f20a8373bea0ecb1a3e2bcb165488eb1412141c4e577d53ae87122646b12b9339b0a3f8e6817c3865fbb3f642938') + 'e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff') prepare() { # prepare launcher script diff --git a/discord-electron/krisp-patcher.py b/discord-electron/krisp-patcher.py index 6bd44f4..6423234 100644 --- a/discord-electron/krisp-patcher.py +++ b/discord-electron/krisp-patcher.py @@ -15,7 +15,7 @@ executable = sys.argv[1] elf = ELFFile(open(executable, "rb")) symtab = elf.get_section_by_name('.symtab') -krisp_initialize_address = symtab.get_symbol_by_name("_ZN7discord15KrispInitializeEv")[0].entry.st_value +krisp_initialize_address = symtab.get_symbol_by_name("_ZN7discordL17DoKrispInitializeEv")[0].entry.st_value isSignedByDiscord_address = symtab.get_symbol_by_name("_ZN7discord4util17IsSignedByDiscordERKNSt4__Cr12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE")[0].entry.st_value text = elf.get_section_by_name('.text') From d80ab5f18b7f2f8d07a39e88f4c280870c03364b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 6 Aug 2024 20:53:49 +0200 Subject: [PATCH 803/971] upgpkg: discord-electron-openasar 0.0.63+828-1 upstream release --- discord-electron-openasar/.SRCINFO | 8 ++++---- discord-electron-openasar/PKGBUILD | 6 +++--- discord-electron-openasar/krisp-patcher.py | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index b6093a6..9fa6678 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v31) for increased security and performance - pkgver = 0.0.62+828 + pkgver = 0.0.63+828 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,13 +21,13 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.62/discord-0.0.62.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.63/discord-0.0.63.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=5c875eb048e96543f1ec711fae522ace5e4a836c - sha512sums = 6271382410340c0f38c4403af766fe18ea7548279f3bc75ebe748a75281c304d7738e2d857e208b8867a2330b2a9e22d292ad63421578db35b79e4d16267456f + sha512sums = b1695d2790b59b395c9b4c570ddcbb9b8da7629d02eab33e330f77cf5ed81db121fbe805bb40264eb32ae3a858fcdc3ede4d90982b1c13498474d45b82cb6d6e sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 - sha512sums = ac1212b09c3c1e7af3f93294d799765a0547f20a8373bea0ecb1a3e2bcb165488eb1412141c4e577d53ae87122646b12b9339b0a3f8e6817c3865fbb3f642938 + sha512sums = e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff sha512sums = 36b7747ec2dad8ddcc84533dbe2013eae7166affd9fdaa3b5c8571faf4e1361fda2aadde719df4d4d18a7da513be51fe8e0726dbf589ebe545a0abc12960bb22 pkgname = discord-electron-openasar diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 4cefde0..2812474 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.62+828 +pkgver=0.0.63+828 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=31 @@ -28,9 +28,9 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=5c875eb048e96543f1ec711fae522ace5e4a836c") -sha512sums=('6271382410340c0f38c4403af766fe18ea7548279f3bc75ebe748a75281c304d7738e2d857e208b8867a2330b2a9e22d292ad63421578db35b79e4d16267456f' +sha512sums=('b1695d2790b59b395c9b4c570ddcbb9b8da7629d02eab33e330f77cf5ed81db121fbe805bb40264eb32ae3a858fcdc3ede4d90982b1c13498474d45b82cb6d6e' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' - 'ac1212b09c3c1e7af3f93294d799765a0547f20a8373bea0ecb1a3e2bcb165488eb1412141c4e577d53ae87122646b12b9339b0a3f8e6817c3865fbb3f642938' + 'e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff' '36b7747ec2dad8ddcc84533dbe2013eae7166affd9fdaa3b5c8571faf4e1361fda2aadde719df4d4d18a7da513be51fe8e0726dbf589ebe545a0abc12960bb22') # just in case I get the version wrong diff --git a/discord-electron-openasar/krisp-patcher.py b/discord-electron-openasar/krisp-patcher.py index 6bd44f4..6423234 100644 --- a/discord-electron-openasar/krisp-patcher.py +++ b/discord-electron-openasar/krisp-patcher.py @@ -15,7 +15,7 @@ executable = sys.argv[1] elf = ELFFile(open(executable, "rb")) symtab = elf.get_section_by_name('.symtab') -krisp_initialize_address = symtab.get_symbol_by_name("_ZN7discord15KrispInitializeEv")[0].entry.st_value +krisp_initialize_address = symtab.get_symbol_by_name("_ZN7discordL17DoKrispInitializeEv")[0].entry.st_value isSignedByDiscord_address = symtab.get_symbol_by_name("_ZN7discord4util17IsSignedByDiscordERKNSt4__Cr12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE")[0].entry.st_value text = elf.get_section_by_name('.text') From c651013a526c332dff707e11cf0411abee3ac471 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 6 Aug 2024 20:57:01 +0200 Subject: [PATCH 804/971] upgpkg: clonezilla-unstable 5.6.14-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 20b0eb3..ea1d353 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.13 + pkgver = 5.6.14 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.13.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.14.tar.xz source = usrbin.patch - sha512sums = 2fadd1039ed27302ff369e97f436dfc8306d33c0fb3ff56ec740301c8fef4d5838738367a5e8012166b66a90f0a11dbb0c61661edaec415ab085dff016894e6d + sha512sums = ad8eacb28e24b1c07bc0698cf86f4c2c851c9a48a45c38f5419e09a8573a97424246917aaad1ca608d87937ea1995431f1e78dc53d9b1ff000d84cc73095ba02 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 3f24d81..a2a24a6 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.13 +pkgver=5.6.14 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('2fadd1039ed27302ff369e97f436dfc8306d33c0fb3ff56ec740301c8fef4d5838738367a5e8012166b66a90f0a11dbb0c61661edaec415ab085dff016894e6d' +sha512sums=('ad8eacb28e24b1c07bc0698cf86f4c2c851c9a48a45c38f5419e09a8573a97424246917aaad1ca608d87937ea1995431f1e78dc53d9b1ff000d84cc73095ba02' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 47149f4594f9b6423202ead21dcd0989cc067429 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 6 Aug 2024 20:57:01 +0200 Subject: [PATCH 805/971] upgpkg: clonezilla-unstable 5.6.14-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 20b0eb3..ea1d353 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.13 + pkgver = 5.6.14 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.13.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.14.tar.xz source = usrbin.patch - sha512sums = 2fadd1039ed27302ff369e97f436dfc8306d33c0fb3ff56ec740301c8fef4d5838738367a5e8012166b66a90f0a11dbb0c61661edaec415ab085dff016894e6d + sha512sums = ad8eacb28e24b1c07bc0698cf86f4c2c851c9a48a45c38f5419e09a8573a97424246917aaad1ca608d87937ea1995431f1e78dc53d9b1ff000d84cc73095ba02 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 3f24d81..a2a24a6 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.13 +pkgver=5.6.14 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('2fadd1039ed27302ff369e97f436dfc8306d33c0fb3ff56ec740301c8fef4d5838738367a5e8012166b66a90f0a11dbb0c61661edaec415ab085dff016894e6d' +sha512sums=('ad8eacb28e24b1c07bc0698cf86f4c2c851c9a48a45c38f5419e09a8573a97424246917aaad1ca608d87937ea1995431f1e78dc53d9b1ff000d84cc73095ba02' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From c81a56a4927465bc3bd4a64d01e51e99db4dd6c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 7 Aug 2024 23:10:00 +0200 Subject: [PATCH 806/971] upgpkg: tuned 2.24.0-1 upstream release --- tuned/.SRCINFO | 8 ++++---- tuned/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tuned/.SRCINFO b/tuned/.SRCINFO index f34ad0a..67444b9 100644 --- a/tuned/.SRCINFO +++ b/tuned/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = 2.23.0 - pkgrel = 2 + pkgver = 2.24.0 + pkgrel = 1 url = https://github.com/redhat-performance/tuned arch = any license = GPL-2.0-or-later @@ -17,8 +17,8 @@ pkgbase = tuned depends = python-linux-procfs depends = python-perf depends = python-pyudev - source = https://github.com/redhat-performance/tuned/archive/v2.23.0/tuned-2.23.0.tar.gz - sha512sums = b7d95b17ab38ac944e6e5b8b4345ddf65120a03ebb73cdb1795525c237852a8fa4223dcef6ce28189874e5010c8076816bd3646fd7f700983f2449400a2057d8 + source = https://github.com/redhat-performance/tuned/archive/v2.24.0/tuned-2.24.0.tar.gz + sha512sums = d004cd621e26195fff14b39f29b2143cf47de09641454acd3029d61142c3d000a452f018356c84c32772bd99fc766f6ee847d2a8eddbde8ae34aaa0ecefa644e pkgname = tuned install = tuned.install diff --git a/tuned/PKGBUILD b/tuned/PKGBUILD index 8149569..cd7f9f6 100644 --- a/tuned/PKGBUILD +++ b/tuned/PKGBUILD @@ -5,8 +5,8 @@ pkgbase=tuned pkgname=("${pkgbase}" "${pkgbase}-ppd") -pkgver=2.23.0 -pkgrel=2 +pkgver=2.24.0 +pkgrel=1 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url="https://github.com/redhat-performance/${pkgbase}" @@ -14,7 +14,7 @@ license=('GPL-2.0-or-later') depends=('dbus-glib' 'ethtool' 'gawk' 'hdparm' 'polkit' 'python-configobj' 'python-dbus' 'python-gobject' 'python-linux-procfs' 'python-perf' 'python-pyudev') makedepends=('desktop-file-utils') source=("https://github.com/redhat-performance/${pkgbase}/archive/v${pkgver}/${pkgbase}-${pkgver}.tar.gz") -sha512sums=('b7d95b17ab38ac944e6e5b8b4345ddf65120a03ebb73cdb1795525c237852a8fa4223dcef6ce28189874e5010c8076816bd3646fd7f700983f2449400a2057d8') +sha512sums=('d004cd621e26195fff14b39f29b2143cf47de09641454acd3029d61142c3d000a452f018356c84c32772bd99fc766f6ee847d2a8eddbde8ae34aaa0ecefa644e') prepare() { cd "${pkgbase}-${pkgver}" From c576481eae68acb947f4a724d4ee3e57557ba246 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 9 Aug 2024 16:56:06 +0200 Subject: [PATCH 807/971] upgpkg: gvisor-bin 20240807.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index c38de6d..5852057 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20240715.0 + pkgver = 20240807.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20240715.0::https://storage.googleapis.com/gvisor/releases/release/20240715.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20240715.0::https://storage.googleapis.com/gvisor/releases/release/20240715.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = 9170a4cd1cd3451164bb6b5e013d78064960b9200442744034f7aef7b7653eca7251fc159202e4f355391943af77799fab213719663addd755c0696d5ceb6afb - sha512sums_x86_64 = da60cdc019b61cfecf8e2fefa12e1d2486adf7ba7d92947d04102f17accf72f393385fe47e33e26236308c0abc025579f7b5251110d9669ac02c3d05c81b98d7 - source_aarch64 = runsc-aarch64-20240715.0::https://storage.googleapis.com/gvisor/releases/release/20240715.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20240715.0::https://storage.googleapis.com/gvisor/releases/release/20240715.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 8424bc2fad7845453d1c1245c26df5986a704c53787fb12fd438f81b9b044e3d828ebbbc91806f55c81b5747b2f6dcf2eca0bbfd460ed6d5932a76c00222357d - sha512sums_aarch64 = aa040217f54f987a65c052eba3bddde24bc63542717eec7afb8ab4d8701dc828c039e39af95079cc2fee293a53ed597c248ba07232c6ddad43b5fd73fcf41731 + source_x86_64 = runsc-x86_64-20240807.0::https://storage.googleapis.com/gvisor/releases/release/20240807.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20240807.0::https://storage.googleapis.com/gvisor/releases/release/20240807.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = 058853fa657216499bdfd33cf779b2570c8edb408a9eb816e0c87a22d30eedae93d18ea61fda85ae1fa93523e483c380164abe680f9018c27ee352a9ed7f4ea9 + sha512sums_x86_64 = 48a0a53d914fb2d67ad581c6983a9309fc2dcfbb9e012ca3ef09d16b0c1e72b97a18d4997254336342fc000ae875b89f46173fab5ab65b56a4eec9b316bfc787 + source_aarch64 = runsc-aarch64-20240807.0::https://storage.googleapis.com/gvisor/releases/release/20240807.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20240807.0::https://storage.googleapis.com/gvisor/releases/release/20240807.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 1b463345d6986810152f420b45f48cdd5b4a28cc07820094daab7621ac555cd2c8a1e9dfa7f9b2952c6fe3b41acfee0253822f62c8de9a87048de627e0254a01 + sha512sums_aarch64 = 9143044b1ba9cfd2a38b72e605feedef60dd202d8723ba102e81b81235f1c9e736711189a2d3c166c96a79c97b154e33c9e449b4451ea5b92c5191564d565805 pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index 9f42344..1bc1107 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20240715.0 +pkgver=20240807.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('9170a4cd1cd3451164bb6b5e013d78064960b9200442744034f7aef7b7653eca7251fc159202e4f355391943af77799fab213719663addd755c0696d5ceb6afb' - 'da60cdc019b61cfecf8e2fefa12e1d2486adf7ba7d92947d04102f17accf72f393385fe47e33e26236308c0abc025579f7b5251110d9669ac02c3d05c81b98d7') -sha512sums_aarch64=('8424bc2fad7845453d1c1245c26df5986a704c53787fb12fd438f81b9b044e3d828ebbbc91806f55c81b5747b2f6dcf2eca0bbfd460ed6d5932a76c00222357d' - 'aa040217f54f987a65c052eba3bddde24bc63542717eec7afb8ab4d8701dc828c039e39af95079cc2fee293a53ed597c248ba07232c6ddad43b5fd73fcf41731') +sha512sums_x86_64=('058853fa657216499bdfd33cf779b2570c8edb408a9eb816e0c87a22d30eedae93d18ea61fda85ae1fa93523e483c380164abe680f9018c27ee352a9ed7f4ea9' + '48a0a53d914fb2d67ad581c6983a9309fc2dcfbb9e012ca3ef09d16b0c1e72b97a18d4997254336342fc000ae875b89f46173fab5ab65b56a4eec9b316bfc787') +sha512sums_aarch64=('1b463345d6986810152f420b45f48cdd5b4a28cc07820094daab7621ac555cd2c8a1e9dfa7f9b2952c6fe3b41acfee0253822f62c8de9a87048de627e0254a01' + '9143044b1ba9cfd2a38b72e605feedef60dd202d8723ba102e81b81235f1c9e736711189a2d3c166c96a79c97b154e33c9e449b4451ea5b92c5191564d565805') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From 280ebaf463906fa54e175e0a63c067a77afdd53f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 9 Aug 2024 16:56:36 +0200 Subject: [PATCH 808/971] upgpkg: gvisor-git 20240807.0-1 upstream release --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index 28bd017..a21971a 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20240715.0 + pkgver = 20240807.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index 47f187d..96e203e 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20240715.0 +pkgver=20240807.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From 505d518f6756d835f7e19df2898080756b6474a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 13 Aug 2024 21:49:01 +0200 Subject: [PATCH 809/971] upgpkg: discord-electron 0.0.64-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 4f0c436..bd326c5 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v31) for increased security and performance - pkgver = 0.0.63 + pkgver = 0.0.64 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.63/discord-0.0.63.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.64/discord-0.0.64.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = b1695d2790b59b395c9b4c570ddcbb9b8da7629d02eab33e330f77cf5ed81db121fbe805bb40264eb32ae3a858fcdc3ede4d90982b1c13498474d45b82cb6d6e + sha512sums = 835a1a1ac6c583e41d7c3521b5cbdafaf669d18b5ba1521109c3a3554d10015ef1198aba3697a149bdebb3cd747de4534dd923d448138891be661af96fbee26f sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index b280af6..05b225f 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.63 +pkgver=0.0.64 pkgrel=1 _electronver=31 _electronname="electron${_electronver}" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('b1695d2790b59b395c9b4c570ddcbb9b8da7629d02eab33e330f77cf5ed81db121fbe805bb40264eb32ae3a858fcdc3ede4d90982b1c13498474d45b82cb6d6e' +sha512sums=('835a1a1ac6c583e41d7c3521b5cbdafaf669d18b5ba1521109c3a3554d10015ef1198aba3697a149bdebb3cd747de4534dd923d448138891be661af96fbee26f' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' 'e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff') From a3abc3ef0443418b8266d6397367290da5710d2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 13 Aug 2024 21:49:18 +0200 Subject: [PATCH 810/971] upgpkg: discord-electron-openasar 0.0.64+828-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 9fa6678..ed0d3b0 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v31) for increased security and performance - pkgver = 0.0.63+828 + pkgver = 0.0.64+828 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.63/discord-0.0.63.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.64/discord-0.0.64.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=5c875eb048e96543f1ec711fae522ace5e4a836c - sha512sums = b1695d2790b59b395c9b4c570ddcbb9b8da7629d02eab33e330f77cf5ed81db121fbe805bb40264eb32ae3a858fcdc3ede4d90982b1c13498474d45b82cb6d6e + sha512sums = 835a1a1ac6c583e41d7c3521b5cbdafaf669d18b5ba1521109c3a3554d10015ef1198aba3697a149bdebb3cd747de4534dd923d448138891be661af96fbee26f sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff sha512sums = 36b7747ec2dad8ddcc84533dbe2013eae7166affd9fdaa3b5c8571faf4e1361fda2aadde719df4d4d18a7da513be51fe8e0726dbf589ebe545a0abc12960bb22 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 2812474..09da832 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.63+828 +pkgver=0.0.64+828 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=31 @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=5c875eb048e96543f1ec711fae522ace5e4a836c") -sha512sums=('b1695d2790b59b395c9b4c570ddcbb9b8da7629d02eab33e330f77cf5ed81db121fbe805bb40264eb32ae3a858fcdc3ede4d90982b1c13498474d45b82cb6d6e' +sha512sums=('835a1a1ac6c583e41d7c3521b5cbdafaf669d18b5ba1521109c3a3554d10015ef1198aba3697a149bdebb3cd747de4534dd923d448138891be661af96fbee26f' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' 'e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff' '36b7747ec2dad8ddcc84533dbe2013eae7166affd9fdaa3b5c8571faf4e1361fda2aadde719df4d4d18a7da513be51fe8e0726dbf589ebe545a0abc12960bb22') From 997cd5ea2158cdcdc181f0f702e785b4badd1b52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 23 Aug 2024 15:09:58 +0200 Subject: [PATCH 811/971] upgpkg: discord-electron 0.0.65-1 upstream release Update Electron version to 32 --- discord-electron/.SRCINFO | 10 +++++----- discord-electron/PKGBUILD | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index bd326c5..092a798 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron - pkgdesc = Discord using system provided electron (v31) for increased security and performance - pkgver = 0.0.64 + pkgdesc = Discord using system provided electron (v32) for increased security and performance + pkgver = 0.0.65 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -8,7 +8,7 @@ pkgbase = discord-electron license = custom makedepends = asar makedepends = curl - depends = electron31 + depends = electron32 depends = libxss optdepends = libpulse: Pulseaudio support optdepends = libappindicator-gtk3: Systray indicator support @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.64/discord-0.0.64.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.65/discord-0.0.65.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = 835a1a1ac6c583e41d7c3521b5cbdafaf669d18b5ba1521109c3a3554d10015ef1198aba3697a149bdebb3cd747de4534dd923d448138891be661af96fbee26f + sha512sums = 48a6d9d4939babe7b7243ae465e592baac357ed6a79513be3e78a78bbc7c5ce4b22bdb6edae31d43f2adb3e578d9a7ecb9b4fb62aed63da84d20e1daede4fc8e sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 05b225f..19782e2 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,8 +1,8 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.64 +pkgver=0.0.65 pkgrel=1 -_electronver=31 +_electronver=32 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" arch=('x86_64') @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('835a1a1ac6c583e41d7c3521b5cbdafaf669d18b5ba1521109c3a3554d10015ef1198aba3697a149bdebb3cd747de4534dd923d448138891be661af96fbee26f' +sha512sums=('48a6d9d4939babe7b7243ae465e592baac357ed6a79513be3e78a78bbc7c5ce4b22bdb6edae31d43f2adb3e578d9a7ecb9b4fb62aed63da84d20e1daede4fc8e' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' 'e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff') @@ -75,7 +75,7 @@ package() { install -Dm 755 discord-launcher.sh "${pkgdir}"/usr/bin/$_pkgname # install krisp patcher - install -Dm 644 krisp-patcher.py "${pkgdir}"/usr/lib/${_pkgname}/ + install -Dm 644 krisp-patcher.py "${pkgdir}"/usr/lib/$_pkgname/ # install licenses install -Dm 644 LICENSE.html "${pkgdir}"/usr/share/licenses/$_pkgname/LICENSE.html From adb5f484cdbcf52261b54d8a64a0a8cb79df6b4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 23 Aug 2024 15:10:32 +0200 Subject: [PATCH 812/971] upgpkg: discord-electron-openasar 0.0.65+828-1 upstream release Update Electron version to 32 --- discord-electron-openasar/.SRCINFO | 10 +++++----- discord-electron-openasar/PKGBUILD | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index ed0d3b0..a3f84df 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar - pkgdesc = Discord packaged with OpenAsar using system provided electron (v31) for increased security and performance - pkgver = 0.0.64+828 + pkgdesc = Discord packaged with OpenAsar using system provided electron (v32) for increased security and performance + pkgver = 0.0.65+828 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -10,7 +10,7 @@ pkgbase = discord-electron-openasar makedepends = asar makedepends = nodejs makedepends = curl - depends = electron31 + depends = electron32 depends = libxss depends = unzip optdepends = libpulse: Pulseaudio support @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.64/discord-0.0.64.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.65/discord-0.0.65.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=5c875eb048e96543f1ec711fae522ace5e4a836c - sha512sums = 835a1a1ac6c583e41d7c3521b5cbdafaf669d18b5ba1521109c3a3554d10015ef1198aba3697a149bdebb3cd747de4534dd923d448138891be661af96fbee26f + sha512sums = 48a6d9d4939babe7b7243ae465e592baac357ed6a79513be3e78a78bbc7c5ce4b22bdb6edae31d43f2adb3e578d9a7ecb9b4fb62aed63da84d20e1daede4fc8e sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff sha512sums = 36b7747ec2dad8ddcc84533dbe2013eae7166affd9fdaa3b5c8571faf4e1361fda2aadde719df4d4d18a7da513be51fe8e0726dbf589ebe545a0abc12960bb22 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 09da832..cf715dc 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,10 +2,10 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.64+828 +pkgver=0.0.65+828 _pkgver=${pkgver%%+*} pkgrel=1 -_electronver=31 +_electronver=32 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" arch=('x86_64') @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=5c875eb048e96543f1ec711fae522ace5e4a836c") -sha512sums=('835a1a1ac6c583e41d7c3521b5cbdafaf669d18b5ba1521109c3a3554d10015ef1198aba3697a149bdebb3cd747de4534dd923d448138891be661af96fbee26f' +sha512sums=('48a6d9d4939babe7b7243ae465e592baac357ed6a79513be3e78a78bbc7c5ce4b22bdb6edae31d43f2adb3e578d9a7ecb9b4fb62aed63da84d20e1daede4fc8e' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' 'e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff' '36b7747ec2dad8ddcc84533dbe2013eae7166affd9fdaa3b5c8571faf4e1361fda2aadde719df4d4d18a7da513be51fe8e0726dbf589ebe545a0abc12960bb22') @@ -85,7 +85,7 @@ package() { install -Dm 755 discord-launcher.sh "${pkgdir}"/usr/bin/$_pkgname # install krisp patcher - install -Dm 644 krisp-patcher.py "${pkgdir}"/usr/lib/${_pkgname}/ + install -Dm 644 krisp-patcher.py "${pkgdir}"/usr/lib/$_pkgname/ # install licenses install -Dm 644 LICENSE.html "${pkgdir}"/usr/share/licenses/$_pkgname/LICENSE.html From 73bcc07e74edcef863522d29e86de9e089d40300 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 23 Aug 2024 15:13:30 +0200 Subject: [PATCH 813/971] upgpkg: clonezilla-unstable 5.6.15-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index ea1d353..3623b66 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.14 + pkgver = 5.6.15 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.14.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.15.tar.xz source = usrbin.patch - sha512sums = ad8eacb28e24b1c07bc0698cf86f4c2c851c9a48a45c38f5419e09a8573a97424246917aaad1ca608d87937ea1995431f1e78dc53d9b1ff000d84cc73095ba02 + sha512sums = 4600529ff60423c1af2a8ee9641592a6e5016419c415635d8f4d0363d4d0a20bd2ddda5879c59b076e263d4de5ea967f94d0d3407951c9b4cbea69e83429ef8c sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index a2a24a6..2d950e5 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.14 +pkgver=5.6.15 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('ad8eacb28e24b1c07bc0698cf86f4c2c851c9a48a45c38f5419e09a8573a97424246917aaad1ca608d87937ea1995431f1e78dc53d9b1ff000d84cc73095ba02' +sha512sums=('4600529ff60423c1af2a8ee9641592a6e5016419c415635d8f4d0363d4d0a20bd2ddda5879c59b076e263d4de5ea967f94d0d3407951c9b4cbea69e83429ef8c' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 56fd79737f77f8589be433e65c7043d87cac5b52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 23 Aug 2024 15:13:30 +0200 Subject: [PATCH 814/971] upgpkg: clonezilla-unstable 5.6.15-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index ea1d353..3623b66 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.14 + pkgver = 5.6.15 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.14.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.15.tar.xz source = usrbin.patch - sha512sums = ad8eacb28e24b1c07bc0698cf86f4c2c851c9a48a45c38f5419e09a8573a97424246917aaad1ca608d87937ea1995431f1e78dc53d9b1ff000d84cc73095ba02 + sha512sums = 4600529ff60423c1af2a8ee9641592a6e5016419c415635d8f4d0363d4d0a20bd2ddda5879c59b076e263d4de5ea967f94d0d3407951c9b4cbea69e83429ef8c sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index a2a24a6..2d950e5 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.14 +pkgver=5.6.15 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('ad8eacb28e24b1c07bc0698cf86f4c2c851c9a48a45c38f5419e09a8573a97424246917aaad1ca608d87937ea1995431f1e78dc53d9b1ff000d84cc73095ba02' +sha512sums=('4600529ff60423c1af2a8ee9641592a6e5016419c415635d8f4d0363d4d0a20bd2ddda5879c59b076e263d4de5ea967f94d0d3407951c9b4cbea69e83429ef8c' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 86fd9b13ad6d2dfa7f5243c55e7e27d045fd2ea5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 27 Aug 2024 21:58:04 +0200 Subject: [PATCH 815/971] upgpkg: discord-electron 0.0.66-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 092a798..fc4b12a 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v32) for increased security and performance - pkgver = 0.0.65 + pkgver = 0.0.66 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.65/discord-0.0.65.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.66/discord-0.0.66.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = 48a6d9d4939babe7b7243ae465e592baac357ed6a79513be3e78a78bbc7c5ce4b22bdb6edae31d43f2adb3e578d9a7ecb9b4fb62aed63da84d20e1daede4fc8e + sha512sums = e521af930bf68d8da4fa9db1d86be84d17ad661213ba20a29eb05a67042625630d9d2ce5d8147146276b5c1356e07a0beba9312b0b558eb5cc5861244418e32b sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 19782e2..8fcb85e 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.65 +pkgver=0.0.66 pkgrel=1 _electronver=32 _electronname="electron${_electronver}" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('48a6d9d4939babe7b7243ae465e592baac357ed6a79513be3e78a78bbc7c5ce4b22bdb6edae31d43f2adb3e578d9a7ecb9b4fb62aed63da84d20e1daede4fc8e' +sha512sums=('e521af930bf68d8da4fa9db1d86be84d17ad661213ba20a29eb05a67042625630d9d2ce5d8147146276b5c1356e07a0beba9312b0b558eb5cc5861244418e32b' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' 'e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff') From 04ddc68038defe9d10e1429c1414f378ffcfa73f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 27 Aug 2024 21:58:24 +0200 Subject: [PATCH 816/971] upgpkg: discord-electron-openasar 0.0.66+828-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index a3f84df..c0c2c1b 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v32) for increased security and performance - pkgver = 0.0.65+828 + pkgver = 0.0.66+828 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.65/discord-0.0.65.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.66/discord-0.0.66.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=5c875eb048e96543f1ec711fae522ace5e4a836c - sha512sums = 48a6d9d4939babe7b7243ae465e592baac357ed6a79513be3e78a78bbc7c5ce4b22bdb6edae31d43f2adb3e578d9a7ecb9b4fb62aed63da84d20e1daede4fc8e + sha512sums = e521af930bf68d8da4fa9db1d86be84d17ad661213ba20a29eb05a67042625630d9d2ce5d8147146276b5c1356e07a0beba9312b0b558eb5cc5861244418e32b sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff sha512sums = 36b7747ec2dad8ddcc84533dbe2013eae7166affd9fdaa3b5c8571faf4e1361fda2aadde719df4d4d18a7da513be51fe8e0726dbf589ebe545a0abc12960bb22 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index cf715dc..cefb052 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.65+828 +pkgver=0.0.66+828 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=32 @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=5c875eb048e96543f1ec711fae522ace5e4a836c") -sha512sums=('48a6d9d4939babe7b7243ae465e592baac357ed6a79513be3e78a78bbc7c5ce4b22bdb6edae31d43f2adb3e578d9a7ecb9b4fb62aed63da84d20e1daede4fc8e' +sha512sums=('e521af930bf68d8da4fa9db1d86be84d17ad661213ba20a29eb05a67042625630d9d2ce5d8147146276b5c1356e07a0beba9312b0b558eb5cc5861244418e32b' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' 'e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff' '36b7747ec2dad8ddcc84533dbe2013eae7166affd9fdaa3b5c8571faf4e1361fda2aadde719df4d4d18a7da513be51fe8e0726dbf589ebe545a0abc12960bb22') From 3fde3309227042f3a09874b1155e163823c54c91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 4 Sep 2024 19:27:01 +0200 Subject: [PATCH 817/971] upgpkg: clonezilla-unstable 5.6.16-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 3623b66..7a2f389 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.15 + pkgver = 5.6.16 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.15.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.16.tar.xz source = usrbin.patch - sha512sums = 4600529ff60423c1af2a8ee9641592a6e5016419c415635d8f4d0363d4d0a20bd2ddda5879c59b076e263d4de5ea967f94d0d3407951c9b4cbea69e83429ef8c + sha512sums = 670a812d79d1a50269de5b01488b0734d5ae8815193ee9266c448f828fef6a958db6023275cadfebafb7b6d4774c9061a6e1efe632c5835ca3694dd0ceed522c sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 2d950e5..45276f1 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.15 +pkgver=5.6.16 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('4600529ff60423c1af2a8ee9641592a6e5016419c415635d8f4d0363d4d0a20bd2ddda5879c59b076e263d4de5ea967f94d0d3407951c9b4cbea69e83429ef8c' +sha512sums=('670a812d79d1a50269de5b01488b0734d5ae8815193ee9266c448f828fef6a958db6023275cadfebafb7b6d4774c9061a6e1efe632c5835ca3694dd0ceed522c' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 6282e73f29d7fb19ff0f62fed30f8971aaa1c375 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 4 Sep 2024 19:27:01 +0200 Subject: [PATCH 818/971] upgpkg: clonezilla-unstable 5.6.16-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 3623b66..7a2f389 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.15 + pkgver = 5.6.16 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.15.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.16.tar.xz source = usrbin.patch - sha512sums = 4600529ff60423c1af2a8ee9641592a6e5016419c415635d8f4d0363d4d0a20bd2ddda5879c59b076e263d4de5ea967f94d0d3407951c9b4cbea69e83429ef8c + sha512sums = 670a812d79d1a50269de5b01488b0734d5ae8815193ee9266c448f828fef6a958db6023275cadfebafb7b6d4774c9061a6e1efe632c5835ca3694dd0ceed522c sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 2d950e5..45276f1 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.15 +pkgver=5.6.16 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('4600529ff60423c1af2a8ee9641592a6e5016419c415635d8f4d0363d4d0a20bd2ddda5879c59b076e263d4de5ea967f94d0d3407951c9b4cbea69e83429ef8c' +sha512sums=('670a812d79d1a50269de5b01488b0734d5ae8815193ee9266c448f828fef6a958db6023275cadfebafb7b6d4774c9061a6e1efe632c5835ca3694dd0ceed522c' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 02f2d95de6a919c205facace4ceb50b23137763c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 4 Sep 2024 19:27:38 +0200 Subject: [PATCH 819/971] upgpkg: firefox-syncstorage 0.17.3-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index 9b8cfbb..99fd923 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.17.1 + pkgver = 0.17.3 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -21,9 +21,9 @@ pkgbase = firefox-syncstorage optdepends = mysql: for use with a local database server options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.17.1/syncstorage-rs-0.17.1.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.17.3/syncstorage-rs-0.17.3.tar.gz source = firefox-syncstorage.service - sha512sums = 8dbf7739ef0fe2e54fbc9b64bfa3922aeb60dbee7a14c0a3ee88bfd94d87bde918cd0cbeec7323f60ca575c75801f44786e6360723d4e2f4439fc2dfb9ebd3e6 + sha512sums = c75abd1b932ae8dfd7dc0c509af6b11c09dad2af83d1f8bcff33959e7e4581acc9a94451f6851c44a13dd93d788b403d0bc6c2c190aa6a72fe5eafee92315033 sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index 80d2604..08610de 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.17.1 +pkgver=0.17.3 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -18,7 +18,7 @@ options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha512sums=('8dbf7739ef0fe2e54fbc9b64bfa3922aeb60dbee7a14c0a3ee88bfd94d87bde918cd0cbeec7323f60ca575c75801f44786e6360723d4e2f4439fc2dfb9ebd3e6' +sha512sums=('c75abd1b932ae8dfd7dc0c509af6b11c09dad2af83d1f8bcff33959e7e4581acc9a94451f6851c44a13dd93d788b403d0bc6c2c190aa6a72fe5eafee92315033' '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") From d20c0c00fb9cb7aae8ac424ec85d8fa276d3770a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 4 Sep 2024 19:27:49 +0200 Subject: [PATCH 820/971] upgpkg: discord-electron 0.0.67-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index fc4b12a..44774ac 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v32) for increased security and performance - pkgver = 0.0.66 + pkgver = 0.0.67 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.66/discord-0.0.66.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.67/discord-0.0.67.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = e521af930bf68d8da4fa9db1d86be84d17ad661213ba20a29eb05a67042625630d9d2ce5d8147146276b5c1356e07a0beba9312b0b558eb5cc5861244418e32b + sha512sums = 59b29f2fcf841553547b94b0555d47a43d56ff4ae29bae1ae00a2ae5d78c01a995f27953daa3bf306f5e379af165889361a017a85ef2d09b6f9e38b1cfffcd6c sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 8fcb85e..b824153 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.66 +pkgver=0.0.67 pkgrel=1 _electronver=32 _electronname="electron${_electronver}" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('e521af930bf68d8da4fa9db1d86be84d17ad661213ba20a29eb05a67042625630d9d2ce5d8147146276b5c1356e07a0beba9312b0b558eb5cc5861244418e32b' +sha512sums=('59b29f2fcf841553547b94b0555d47a43d56ff4ae29bae1ae00a2ae5d78c01a995f27953daa3bf306f5e379af165889361a017a85ef2d09b6f9e38b1cfffcd6c' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' 'e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff') From 4b1a2bbcffc49e50bd7e0654e36b426434c3b909 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 4 Sep 2024 19:27:57 +0200 Subject: [PATCH 821/971] upgpkg: discord-electron-openasar 0.0.67+828-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index c0c2c1b..04c02fe 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v32) for increased security and performance - pkgver = 0.0.66+828 + pkgver = 0.0.67+828 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.66/discord-0.0.66.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.67/discord-0.0.67.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=5c875eb048e96543f1ec711fae522ace5e4a836c - sha512sums = e521af930bf68d8da4fa9db1d86be84d17ad661213ba20a29eb05a67042625630d9d2ce5d8147146276b5c1356e07a0beba9312b0b558eb5cc5861244418e32b + sha512sums = 59b29f2fcf841553547b94b0555d47a43d56ff4ae29bae1ae00a2ae5d78c01a995f27953daa3bf306f5e379af165889361a017a85ef2d09b6f9e38b1cfffcd6c sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff sha512sums = 36b7747ec2dad8ddcc84533dbe2013eae7166affd9fdaa3b5c8571faf4e1361fda2aadde719df4d4d18a7da513be51fe8e0726dbf589ebe545a0abc12960bb22 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index cefb052..e488441 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.66+828 +pkgver=0.0.67+828 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=32 @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=5c875eb048e96543f1ec711fae522ace5e4a836c") -sha512sums=('e521af930bf68d8da4fa9db1d86be84d17ad661213ba20a29eb05a67042625630d9d2ce5d8147146276b5c1356e07a0beba9312b0b558eb5cc5861244418e32b' +sha512sums=('59b29f2fcf841553547b94b0555d47a43d56ff4ae29bae1ae00a2ae5d78c01a995f27953daa3bf306f5e379af165889361a017a85ef2d09b6f9e38b1cfffcd6c' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' 'e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff' '36b7747ec2dad8ddcc84533dbe2013eae7166affd9fdaa3b5c8571faf4e1361fda2aadde719df4d4d18a7da513be51fe8e0726dbf589ebe545a0abc12960bb22') From eff45b227945294a5071761084bf66bb16141a92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 6 Sep 2024 21:10:44 +0200 Subject: [PATCH 822/971] upgpkg: clonezilla-unstable 5.6.17-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 7a2f389..4c57ca6 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.16 + pkgver = 5.6.17 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.16.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.17.tar.xz source = usrbin.patch - sha512sums = 670a812d79d1a50269de5b01488b0734d5ae8815193ee9266c448f828fef6a958db6023275cadfebafb7b6d4774c9061a6e1efe632c5835ca3694dd0ceed522c + sha512sums = 2278be98fed000b9e6a3770f0b652defa98fbd10dd8643d1eee70953c21ece3b42dfd65a34dc9b8c9e6bd2c778978bbea5c590669549069117034a0f92f7dcb1 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 45276f1..488742c 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.16 +pkgver=5.6.17 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('670a812d79d1a50269de5b01488b0734d5ae8815193ee9266c448f828fef6a958db6023275cadfebafb7b6d4774c9061a6e1efe632c5835ca3694dd0ceed522c' +sha512sums=('2278be98fed000b9e6a3770f0b652defa98fbd10dd8643d1eee70953c21ece3b42dfd65a34dc9b8c9e6bd2c778978bbea5c590669549069117034a0f92f7dcb1' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From f43fca67b3cdf290c107f767a11ecbaa9d715c5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 6 Sep 2024 21:10:44 +0200 Subject: [PATCH 823/971] upgpkg: clonezilla-unstable 5.6.17-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 7a2f389..4c57ca6 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.16 + pkgver = 5.6.17 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.16.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.17.tar.xz source = usrbin.patch - sha512sums = 670a812d79d1a50269de5b01488b0734d5ae8815193ee9266c448f828fef6a958db6023275cadfebafb7b6d4774c9061a6e1efe632c5835ca3694dd0ceed522c + sha512sums = 2278be98fed000b9e6a3770f0b652defa98fbd10dd8643d1eee70953c21ece3b42dfd65a34dc9b8c9e6bd2c778978bbea5c590669549069117034a0f92f7dcb1 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 45276f1..488742c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.16 +pkgver=5.6.17 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('670a812d79d1a50269de5b01488b0734d5ae8815193ee9266c448f828fef6a958db6023275cadfebafb7b6d4774c9061a6e1efe632c5835ca3694dd0ceed522c' +sha512sums=('2278be98fed000b9e6a3770f0b652defa98fbd10dd8643d1eee70953c21ece3b42dfd65a34dc9b8c9e6bd2c778978bbea5c590669549069117034a0f92f7dcb1' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 358b9da5f040bc1377c15e45bb64405880856dbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 6 Sep 2024 21:12:15 +0200 Subject: [PATCH 824/971] upgpkg: discord-electron-openasar 0.0.67+830-1 Update to latest OpenAsar commit --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 04c02fe..427fe16 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v32) for increased security and performance - pkgver = 0.0.67+828 + pkgver = 0.0.67+830 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -24,10 +24,10 @@ pkgbase = discord-electron-openasar source = https://dl.discordapp.net/apps/linux/0.0.67/discord-0.0.67.tar.gz source = discord-launcher.sh source = krisp-patcher.py - source = git+https://github.com/goosemod/openasar.git#commit=5c875eb048e96543f1ec711fae522ace5e4a836c + source = git+https://github.com/goosemod/openasar.git#commit=f92ee8c3dc6b6ff9829f69a1339e0f82a877929c sha512sums = 59b29f2fcf841553547b94b0555d47a43d56ff4ae29bae1ae00a2ae5d78c01a995f27953daa3bf306f5e379af165889361a017a85ef2d09b6f9e38b1cfffcd6c sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff - sha512sums = 36b7747ec2dad8ddcc84533dbe2013eae7166affd9fdaa3b5c8571faf4e1361fda2aadde719df4d4d18a7da513be51fe8e0726dbf589ebe545a0abc12960bb22 + sha512sums = 4befe9f30b7d11da966692242353becca3f86f7d5b3eb73c48b6f42073b88f7c8a21141d3f84ee2ff10f74a4596d1391f0b200134599a36c9589074bec298573 pkgname = discord-electron-openasar diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index e488441..05ecc12 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.67+828 +pkgver=0.0.67+830 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=32 @@ -27,11 +27,11 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py - "git+https://github.com/goosemod/openasar.git#commit=5c875eb048e96543f1ec711fae522ace5e4a836c") + "git+https://github.com/goosemod/openasar.git#commit=f92ee8c3dc6b6ff9829f69a1339e0f82a877929c") sha512sums=('59b29f2fcf841553547b94b0555d47a43d56ff4ae29bae1ae00a2ae5d78c01a995f27953daa3bf306f5e379af165889361a017a85ef2d09b6f9e38b1cfffcd6c' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' 'e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff' - '36b7747ec2dad8ddcc84533dbe2013eae7166affd9fdaa3b5c8571faf4e1361fda2aadde719df4d4d18a7da513be51fe8e0726dbf589ebe545a0abc12960bb22') + '4befe9f30b7d11da966692242353becca3f86f7d5b3eb73c48b6f42073b88f7c8a21141d3f84ee2ff10f74a4596d1391f0b200134599a36c9589074bec298573') # just in case I get the version wrong pkgver() { From 9231f9bcac15a94f4da8a651fd511e2eed5d54bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 6 Sep 2024 21:50:25 +0200 Subject: [PATCH 825/971] upgpkg: firefox-syncstorage 0.17.4-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index 99fd923..beae44a 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.17.3 + pkgver = 0.17.4 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -21,9 +21,9 @@ pkgbase = firefox-syncstorage optdepends = mysql: for use with a local database server options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.17.3/syncstorage-rs-0.17.3.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.17.4/syncstorage-rs-0.17.4.tar.gz source = firefox-syncstorage.service - sha512sums = c75abd1b932ae8dfd7dc0c509af6b11c09dad2af83d1f8bcff33959e7e4581acc9a94451f6851c44a13dd93d788b403d0bc6c2c190aa6a72fe5eafee92315033 + sha512sums = 9c7a73a5026f66a3d6792363ede45f6da4abf6a3ad16cb19051c7ff38d90aca4509159572960981c205a40195c6452c4b4a5dd3904bcd645136aa4232fa40338 sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index 08610de..bfe9a05 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.17.3 +pkgver=0.17.4 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -18,7 +18,7 @@ options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha512sums=('c75abd1b932ae8dfd7dc0c509af6b11c09dad2af83d1f8bcff33959e7e4581acc9a94451f6851c44a13dd93d788b403d0bc6c2c190aa6a72fe5eafee92315033' +sha512sums=('9c7a73a5026f66a3d6792363ede45f6da4abf6a3ad16cb19051c7ff38d90aca4509159572960981c205a40195c6452c4b4a5dd3904bcd645136aa4232fa40338' '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") From 853edb74cc872489c66d9d1491bb2bd8b24bd865 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 10 Sep 2024 19:35:31 +0200 Subject: [PATCH 826/971] upgpkg: clonezilla-unstable 5.6.18-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 4c57ca6..bbb756f 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.17 + pkgver = 5.6.18 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.17.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.18.tar.xz source = usrbin.patch - sha512sums = 2278be98fed000b9e6a3770f0b652defa98fbd10dd8643d1eee70953c21ece3b42dfd65a34dc9b8c9e6bd2c778978bbea5c590669549069117034a0f92f7dcb1 + sha512sums = 84858d5de7debe3aefe2633cdad1459798ca00cc1c7b546864bbf40d0a3769113e508b77dc042d451ef7277515f62589b2d5df5adda1baed656e989c3cf6e152 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 488742c..571dba2 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.17 +pkgver=5.6.18 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('2278be98fed000b9e6a3770f0b652defa98fbd10dd8643d1eee70953c21ece3b42dfd65a34dc9b8c9e6bd2c778978bbea5c590669549069117034a0f92f7dcb1' +sha512sums=('84858d5de7debe3aefe2633cdad1459798ca00cc1c7b546864bbf40d0a3769113e508b77dc042d451ef7277515f62589b2d5df5adda1baed656e989c3cf6e152' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 29175cd0c9e0d1814e869243a765662d4a0ad5cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 10 Sep 2024 19:35:31 +0200 Subject: [PATCH 827/971] upgpkg: clonezilla-unstable 5.6.18-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 4c57ca6..bbb756f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.17 + pkgver = 5.6.18 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.17.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.18.tar.xz source = usrbin.patch - sha512sums = 2278be98fed000b9e6a3770f0b652defa98fbd10dd8643d1eee70953c21ece3b42dfd65a34dc9b8c9e6bd2c778978bbea5c590669549069117034a0f92f7dcb1 + sha512sums = 84858d5de7debe3aefe2633cdad1459798ca00cc1c7b546864bbf40d0a3769113e508b77dc042d451ef7277515f62589b2d5df5adda1baed656e989c3cf6e152 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 488742c..571dba2 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.17 +pkgver=5.6.18 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('2278be98fed000b9e6a3770f0b652defa98fbd10dd8643d1eee70953c21ece3b42dfd65a34dc9b8c9e6bd2c778978bbea5c590669549069117034a0f92f7dcb1' +sha512sums=('84858d5de7debe3aefe2633cdad1459798ca00cc1c7b546864bbf40d0a3769113e508b77dc042d451ef7277515f62589b2d5df5adda1baed656e989c3cf6e152' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 039681842b5a8dba6b5b8f899d7baefd4bf55b44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 10 Sep 2024 19:36:07 +0200 Subject: [PATCH 828/971] upgpkg: discord-electron 0.0.68-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 44774ac..4932b76 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v32) for increased security and performance - pkgver = 0.0.67 + pkgver = 0.0.68 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.67/discord-0.0.67.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.68/discord-0.0.68.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = 59b29f2fcf841553547b94b0555d47a43d56ff4ae29bae1ae00a2ae5d78c01a995f27953daa3bf306f5e379af165889361a017a85ef2d09b6f9e38b1cfffcd6c + sha512sums = 38375d2c778a36ce5676b6409ac399ad1fcb4e79abd0b08918132fa2c3fcd287b51e95457d8d4c9745957bbbad614041f925fbf7141f2d6d517ef79c9e878f9a sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index b824153..7d82410 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.67 +pkgver=0.0.68 pkgrel=1 _electronver=32 _electronname="electron${_electronver}" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('59b29f2fcf841553547b94b0555d47a43d56ff4ae29bae1ae00a2ae5d78c01a995f27953daa3bf306f5e379af165889361a017a85ef2d09b6f9e38b1cfffcd6c' +sha512sums=('38375d2c778a36ce5676b6409ac399ad1fcb4e79abd0b08918132fa2c3fcd287b51e95457d8d4c9745957bbbad614041f925fbf7141f2d6d517ef79c9e878f9a' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' 'e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff') From d3032b13762c1095eba7cde2751a98c0870f122b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 10 Sep 2024 19:36:14 +0200 Subject: [PATCH 829/971] upgpkg: discord-electron-openasar 0.0.68+830-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 427fe16..9b355d3 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v32) for increased security and performance - pkgver = 0.0.67+830 + pkgver = 0.0.68+830 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.67/discord-0.0.67.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.68/discord-0.0.68.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=f92ee8c3dc6b6ff9829f69a1339e0f82a877929c - sha512sums = 59b29f2fcf841553547b94b0555d47a43d56ff4ae29bae1ae00a2ae5d78c01a995f27953daa3bf306f5e379af165889361a017a85ef2d09b6f9e38b1cfffcd6c + sha512sums = 38375d2c778a36ce5676b6409ac399ad1fcb4e79abd0b08918132fa2c3fcd287b51e95457d8d4c9745957bbbad614041f925fbf7141f2d6d517ef79c9e878f9a sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff sha512sums = 4befe9f30b7d11da966692242353becca3f86f7d5b3eb73c48b6f42073b88f7c8a21141d3f84ee2ff10f74a4596d1391f0b200134599a36c9589074bec298573 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 05ecc12..389a9ec 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.67+830 +pkgver=0.0.68+830 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=32 @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=f92ee8c3dc6b6ff9829f69a1339e0f82a877929c") -sha512sums=('59b29f2fcf841553547b94b0555d47a43d56ff4ae29bae1ae00a2ae5d78c01a995f27953daa3bf306f5e379af165889361a017a85ef2d09b6f9e38b1cfffcd6c' +sha512sums=('38375d2c778a36ce5676b6409ac399ad1fcb4e79abd0b08918132fa2c3fcd287b51e95457d8d4c9745957bbbad614041f925fbf7141f2d6d517ef79c9e878f9a' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' 'e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff' '4befe9f30b7d11da966692242353becca3f86f7d5b3eb73c48b6f42073b88f7c8a21141d3f84ee2ff10f74a4596d1391f0b200134599a36c9589074bec298573') From f15c35c0368861523d49135e2acb9e4db0ad8a9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 19 Sep 2024 19:55:11 +0200 Subject: [PATCH 830/971] upgpkg: firefox-syncstorage 0.17.6-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index beae44a..9dbeb58 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.17.4 + pkgver = 0.17.6 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -21,9 +21,9 @@ pkgbase = firefox-syncstorage optdepends = mysql: for use with a local database server options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.17.4/syncstorage-rs-0.17.4.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.17.6/syncstorage-rs-0.17.6.tar.gz source = firefox-syncstorage.service - sha512sums = 9c7a73a5026f66a3d6792363ede45f6da4abf6a3ad16cb19051c7ff38d90aca4509159572960981c205a40195c6452c4b4a5dd3904bcd645136aa4232fa40338 + sha512sums = 1340fa468df6978390b21f94799649b768f7e4bb1bf4f4169aefc8b8ce8d999455576f53a14ffcc567e90045e7071933ca26240d392907e5442e0ab32159007a sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index bfe9a05..e7ccf01 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.17.4 +pkgver=0.17.6 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -18,7 +18,7 @@ options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha512sums=('9c7a73a5026f66a3d6792363ede45f6da4abf6a3ad16cb19051c7ff38d90aca4509159572960981c205a40195c6452c4b4a5dd3904bcd645136aa4232fa40338' +sha512sums=('1340fa468df6978390b21f94799649b768f7e4bb1bf4f4169aefc8b8ce8d999455576f53a14ffcc567e90045e7071933ca26240d392907e5442e0ab32159007a' '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") From 822122f202b3484b48a352eb85407bed16e6d0e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 19 Sep 2024 19:55:45 +0200 Subject: [PATCH 831/971] upgpkg: gvisor-bin 20240916.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index 5852057..6ba36c6 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20240807.0 + pkgver = 20240916.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20240807.0::https://storage.googleapis.com/gvisor/releases/release/20240807.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20240807.0::https://storage.googleapis.com/gvisor/releases/release/20240807.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = 058853fa657216499bdfd33cf779b2570c8edb408a9eb816e0c87a22d30eedae93d18ea61fda85ae1fa93523e483c380164abe680f9018c27ee352a9ed7f4ea9 - sha512sums_x86_64 = 48a0a53d914fb2d67ad581c6983a9309fc2dcfbb9e012ca3ef09d16b0c1e72b97a18d4997254336342fc000ae875b89f46173fab5ab65b56a4eec9b316bfc787 - source_aarch64 = runsc-aarch64-20240807.0::https://storage.googleapis.com/gvisor/releases/release/20240807.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20240807.0::https://storage.googleapis.com/gvisor/releases/release/20240807.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 1b463345d6986810152f420b45f48cdd5b4a28cc07820094daab7621ac555cd2c8a1e9dfa7f9b2952c6fe3b41acfee0253822f62c8de9a87048de627e0254a01 - sha512sums_aarch64 = 9143044b1ba9cfd2a38b72e605feedef60dd202d8723ba102e81b81235f1c9e736711189a2d3c166c96a79c97b154e33c9e449b4451ea5b92c5191564d565805 + source_x86_64 = runsc-x86_64-20240916.0::https://storage.googleapis.com/gvisor/releases/release/20240916.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20240916.0::https://storage.googleapis.com/gvisor/releases/release/20240916.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = d229a0df493c358182b827b2751ee0cdd46d9b486fa410639e5c18dc4de38f18e6fae823c2a868354929ffc494014406fe42543b6180b2859d07d7706a2ced6d + sha512sums_x86_64 = 59db8a4648abae2b55cab3e3653eb7a3bca187b72d241903b639209e8f21e96f3a9132b4d7ae5d048b2fa488fb331bdb6cb185c385eeedbebc674e0946e44330 + source_aarch64 = runsc-aarch64-20240916.0::https://storage.googleapis.com/gvisor/releases/release/20240916.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20240916.0::https://storage.googleapis.com/gvisor/releases/release/20240916.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 6931f8e09804c8042fc755c88b8957af3cf5c3ebf5cec3d3d9c11229bcaf4123ac10acb84e75dfaa22b25132e7a8c0c3fd25af4b1e255662907249ba1e42a284 + sha512sums_aarch64 = a0c22cdb8dda985c82022503be3b69164bdc4d8a706f6819e969895bc9162e96ad88cb8e9531e88552843a0271964d03fc141ddcd4f3c765b344afdfe77330fb pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index 1bc1107..960928e 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20240807.0 +pkgver=20240916.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('058853fa657216499bdfd33cf779b2570c8edb408a9eb816e0c87a22d30eedae93d18ea61fda85ae1fa93523e483c380164abe680f9018c27ee352a9ed7f4ea9' - '48a0a53d914fb2d67ad581c6983a9309fc2dcfbb9e012ca3ef09d16b0c1e72b97a18d4997254336342fc000ae875b89f46173fab5ab65b56a4eec9b316bfc787') -sha512sums_aarch64=('1b463345d6986810152f420b45f48cdd5b4a28cc07820094daab7621ac555cd2c8a1e9dfa7f9b2952c6fe3b41acfee0253822f62c8de9a87048de627e0254a01' - '9143044b1ba9cfd2a38b72e605feedef60dd202d8723ba102e81b81235f1c9e736711189a2d3c166c96a79c97b154e33c9e449b4451ea5b92c5191564d565805') +sha512sums_x86_64=('d229a0df493c358182b827b2751ee0cdd46d9b486fa410639e5c18dc4de38f18e6fae823c2a868354929ffc494014406fe42543b6180b2859d07d7706a2ced6d' + '59db8a4648abae2b55cab3e3653eb7a3bca187b72d241903b639209e8f21e96f3a9132b4d7ae5d048b2fa488fb331bdb6cb185c385eeedbebc674e0946e44330') +sha512sums_aarch64=('6931f8e09804c8042fc755c88b8957af3cf5c3ebf5cec3d3d9c11229bcaf4123ac10acb84e75dfaa22b25132e7a8c0c3fd25af4b1e255662907249ba1e42a284' + 'a0c22cdb8dda985c82022503be3b69164bdc4d8a706f6819e969895bc9162e96ad88cb8e9531e88552843a0271964d03fc141ddcd4f3c765b344afdfe77330fb') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From e420ae3f81331541ee465924af38d3f28f47c2e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 19 Sep 2024 19:55:52 +0200 Subject: [PATCH 832/971] upgpkg: gvisor-git 20240916.0-1 upstream release --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index a21971a..68eb43c 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20240807.0 + pkgver = 20240916.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index 96e203e..078155c 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20240807.0 +pkgver=20240916.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From 425dfbcd6ac62754e6f9cd8ab560a8e5dcd45f7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 19 Sep 2024 19:56:01 +0200 Subject: [PATCH 833/971] upgpkg: clonezilla-unstable 5.6.19-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index bbb756f..ecc7ec1 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.18 + pkgver = 5.6.19 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.18.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.19.tar.xz source = usrbin.patch - sha512sums = 84858d5de7debe3aefe2633cdad1459798ca00cc1c7b546864bbf40d0a3769113e508b77dc042d451ef7277515f62589b2d5df5adda1baed656e989c3cf6e152 + sha512sums = 98b60f6d8ba9894e57b9e3e827c1d219a4a214b6105d2592a6f6767ce061627e0b0b6af75eaab022b1c98c7fb77df56d33bf952fd804fabee43ab570efd6d628 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 571dba2..69fd8e1 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.18 +pkgver=5.6.19 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('84858d5de7debe3aefe2633cdad1459798ca00cc1c7b546864bbf40d0a3769113e508b77dc042d451ef7277515f62589b2d5df5adda1baed656e989c3cf6e152' +sha512sums=('98b60f6d8ba9894e57b9e3e827c1d219a4a214b6105d2592a6f6767ce061627e0b0b6af75eaab022b1c98c7fb77df56d33bf952fd804fabee43ab570efd6d628' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From b37131b6b50c9af5ada8675ea3c335cdc7f90f0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 19 Sep 2024 19:56:01 +0200 Subject: [PATCH 834/971] upgpkg: clonezilla-unstable 5.6.19-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index bbb756f..ecc7ec1 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.18 + pkgver = 5.6.19 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.18.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.19.tar.xz source = usrbin.patch - sha512sums = 84858d5de7debe3aefe2633cdad1459798ca00cc1c7b546864bbf40d0a3769113e508b77dc042d451ef7277515f62589b2d5df5adda1baed656e989c3cf6e152 + sha512sums = 98b60f6d8ba9894e57b9e3e827c1d219a4a214b6105d2592a6f6767ce061627e0b0b6af75eaab022b1c98c7fb77df56d33bf952fd804fabee43ab570efd6d628 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 571dba2..69fd8e1 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.18 +pkgver=5.6.19 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('84858d5de7debe3aefe2633cdad1459798ca00cc1c7b546864bbf40d0a3769113e508b77dc042d451ef7277515f62589b2d5df5adda1baed656e989c3cf6e152' +sha512sums=('98b60f6d8ba9894e57b9e3e827c1d219a4a214b6105d2592a6f6767ce061627e0b0b6af75eaab022b1c98c7fb77df56d33bf952fd804fabee43ab570efd6d628' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 8507de66f2059453b4c8cff9f013ae965f6b7a84 Mon Sep 17 00:00:00 2001 From: Manuel Date: Thu, 19 Sep 2024 19:58:27 +0200 Subject: [PATCH 835/971] Update makepkg.conf * Include latest upstream changes --- makepkg.conf | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/makepkg.conf b/makepkg.conf index 703c3ad..eb74a7c 100644 --- a/makepkg.conf +++ b/makepkg.conf @@ -82,7 +82,7 @@ BUILDENV=(!distcc color !ccache check !sign) # These are default values for the options=() settings ######################################################################### # -# Makepkg defaults: OPTIONS=(!strip docs libtool staticlibs emptydirs !zipman !purge !debug !lto) +# Makepkg defaults: OPTIONS=(!strip docs libtool staticlibs emptydirs !zipman !purge !debug !lto !autodeps) # A negated option will do the opposite of the comments below. # #-- strip: Strip symbols from binaries/libraries @@ -94,6 +94,7 @@ BUILDENV=(!distcc color !ccache check !sign) #-- purge: Remove files specified by PURGE_TARGETS #-- debug: Add debugging flags as specified in DEBUG_* variables #-- lto: Add compile flags for building with link time optimization +#-- autodeps: Automatically add depends/provides # OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge debug lto) @@ -113,6 +114,8 @@ DOC_DIRS=(usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc}) PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod) #-- Directory to store source code in for debug packages DBGSRCDIR="/usr/src/debug" +#-- Prefix and directories for library autodeps +LIB_DIRS=('lib:usr/lib' 'lib32:usr/lib32') ######################################################################### # PACKAGE OUTPUT @@ -141,7 +144,7 @@ PACKAGER="Manuel Hüsers " COMPRESSGZ=(gzip -c -f -n) COMPRESSBZ2=(bzip2 -c -f) COMPRESSXZ=(xz -c -z -) -COMPRESSZST=(zstd -c -T0 --ultra -20 -) +COMPRESSZST=(zstd -c -T0 -) COMPRESSLRZ=(lrzip -q) COMPRESSLZO=(lzop -q) COMPRESSZ=(compress -c -f) From 83e626a15324020cd17d4e24095c68e260e1f0f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 23 Sep 2024 20:05:42 +0200 Subject: [PATCH 836/971] upgpkg: qvr 4.1.0-1 upstream release --- qvr/.SRCINFO | 8 ++++---- qvr/PKGBUILD | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/qvr/.SRCINFO b/qvr/.SRCINFO index 0fc34f9..4fff039 100644 --- a/qvr/.SRCINFO +++ b/qvr/.SRCINFO @@ -1,16 +1,16 @@ pkgbase = qvr pkgdesc = A library that makes writing Virtual Reality (VR) applications very easy - pkgver = 4.0.2 + pkgver = 4.1.0 pkgrel = 1 url = https://marlam.de/qvr/ arch = x86_64 license = MIT makedepends = cmake depends = qt6-base - source = https://marlam.de/qvr/releases/qvr-4.0.2.tar.gz - source = https://marlam.de/qvr/releases/qvr-4.0.2.tar.gz.sig + source = https://marlam.de/qvr/releases/qvr-4.1.0.tar.gz + source = https://marlam.de/qvr/releases/qvr-4.1.0.tar.gz.sig validpgpkeys = 2F61B4828BBA779AECB3F32703A2A4AB1E32FD34 - sha512sums = 9c973ee15f87026ef30dabc7a1cabcaac7cf2cfce8720434935db136e0352c749b448fc1036dd8242dc124c28d596aea13b3fd43840adbf330c892e2dffabc69 + sha512sums = 609b706f06d21668db85dbdc282a1b86931ba380c0044e2918bbcd11903748ccc83579d9790dcf372ea8ebc7c86daa6810f12a43b8d7fc941b32b17f34c0b716 sha512sums = SKIP pkgname = qvr diff --git a/qvr/PKGBUILD b/qvr/PKGBUILD index 9a976fb..d46769c 100644 --- a/qvr/PKGBUILD +++ b/qvr/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Manuel Hüsers pkgname=qvr -pkgver=4.0.2 +pkgver=4.1.0 pkgrel=1 pkgdesc='A library that makes writing Virtual Reality (VR) applications very easy' arch=('x86_64') @@ -10,7 +10,7 @@ license=('MIT') depends=('qt6-base') makedepends=('cmake') source=(https://marlam.de/qvr/releases/$pkgname-$pkgver.tar.gz{,.sig}) -sha512sums=('9c973ee15f87026ef30dabc7a1cabcaac7cf2cfce8720434935db136e0352c749b448fc1036dd8242dc124c28d596aea13b3fd43840adbf330c892e2dffabc69' +sha512sums=('609b706f06d21668db85dbdc282a1b86931ba380c0044e2918bbcd11903748ccc83579d9790dcf372ea8ebc7c86daa6810f12a43b8d7fc941b32b17f34c0b716' 'SKIP') validpgpkeys=('2F61B4828BBA779AECB3F32703A2A4AB1E32FD34') From 9c77c062b5e751b3382d8b82ad02bd7234ef7fb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 23 Sep 2024 20:06:23 +0200 Subject: [PATCH 837/971] upgpkg: firefox-syncstorage 0.17.7-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index 9dbeb58..8e781df 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.17.6 + pkgver = 0.17.7 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -21,9 +21,9 @@ pkgbase = firefox-syncstorage optdepends = mysql: for use with a local database server options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.17.6/syncstorage-rs-0.17.6.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.17.7/syncstorage-rs-0.17.7.tar.gz source = firefox-syncstorage.service - sha512sums = 1340fa468df6978390b21f94799649b768f7e4bb1bf4f4169aefc8b8ce8d999455576f53a14ffcc567e90045e7071933ca26240d392907e5442e0ab32159007a + sha512sums = ac70bf6dc0b298b709e1d9b920deee711cdeaf3ecddb234199eb93b8eb24c6f71ddafe4458fb69d5f03b3c0532ddca91a9105e76f02b3227f08d58e157726f7a sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index e7ccf01..80a8a42 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.17.6 +pkgver=0.17.7 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -18,7 +18,7 @@ options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha512sums=('1340fa468df6978390b21f94799649b768f7e4bb1bf4f4169aefc8b8ce8d999455576f53a14ffcc567e90045e7071933ca26240d392907e5442e0ab32159007a' +sha512sums=('ac70bf6dc0b298b709e1d9b920deee711cdeaf3ecddb234199eb93b8eb24c6f71ddafe4458fb69d5f03b3c0532ddca91a9105e76f02b3227f08d58e157726f7a' '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") From c7f26183a65aff3b3ab68ce865b3b224ebedc899 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 23 Sep 2024 20:06:44 +0200 Subject: [PATCH 838/971] upgpkg: ect 0.9.5-2: fix checksum --- ect/.SRCINFO | 4 ++-- ect/PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ect/.SRCINFO b/ect/.SRCINFO index e05ad1e..84109a8 100644 --- a/ect/.SRCINFO +++ b/ect/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = ect pkgdesc = File compressor, supports postcompression of PNG, JPEG, GZIP and ZIP files pkgver = 0.9.5 - pkgrel = 1 + pkgrel = 2 url = https://github.com/fhanau/efficient-compression-tool arch = x86_64 license = Apache-2.0 @@ -14,6 +14,6 @@ pkgbase = ect source = git+https://github.com/fhanau/mozjpeg.git#commit=182457e3e26e1e078d5dbd09137cf04865be2e49 sha512sums = a1d0ad86aa8e6d720575daf7e833c3b787ac51595774b99b6fd4a8ece616150c2e2c174aa97a2bc0b89e16d6cd93ec0c0d657430c1a41bf08b121368af0a4abc sha512sums = 13e286cf091b284d15888a959a8be5a90977bed92d861fd72d465199bd6112641b47d74a525d4100868d528a25921958e9ab579643b705befe48e5756ffa301f - sha512sums = 2d3f96c90cfa355797c4ebed9e5568d53f7fe7a1a225007908ea356c0a808cef856004b411b91beb2311102c3c77ea2eed37f3b8b2a9c057b8905c1d21d06383 + sha512sums = 1bdd9efa8d9c49a16cf5f2135ed29dc120bc1b31eec7130802d22b3d09bf10fe337f734b39b38e422bbe6e1719aca6744d49e2b435c2cb94cbf401d89086947a pkgname = ect diff --git a/ect/PKGBUILD b/ect/PKGBUILD index 04fc7f9..35918cf 100644 --- a/ect/PKGBUILD +++ b/ect/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ect _pkgname=efficient-compression-tool pkgver=0.9.5 -pkgrel=1 +pkgrel=2 pkgdesc='File compressor, supports postcompression of PNG, JPEG, GZIP and ZIP files' url="https://github.com/fhanau/$_pkgname" arch=('x86_64') @@ -17,7 +17,7 @@ source=("git+$url.git#tag=v$pkgver" 'git+https://github.com/fhanau/mozjpeg.git#commit=182457e3e26e1e078d5dbd09137cf04865be2e49') sha512sums=('a1d0ad86aa8e6d720575daf7e833c3b787ac51595774b99b6fd4a8ece616150c2e2c174aa97a2bc0b89e16d6cd93ec0c0d657430c1a41bf08b121368af0a4abc' '13e286cf091b284d15888a959a8be5a90977bed92d861fd72d465199bd6112641b47d74a525d4100868d528a25921958e9ab579643b705befe48e5756ffa301f' - '2d3f96c90cfa355797c4ebed9e5568d53f7fe7a1a225007908ea356c0a808cef856004b411b91beb2311102c3c77ea2eed37f3b8b2a9c057b8905c1d21d06383') + '1bdd9efa8d9c49a16cf5f2135ed29dc120bc1b31eec7130802d22b3d09bf10fe337f734b39b38e422bbe6e1719aca6744d49e2b435c2cb94cbf401d89086947a') prepare() { cd "$_pkgname" From c662c882abbf3a1256a1a36b063d536a79defbff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 23 Sep 2024 20:07:34 +0200 Subject: [PATCH 839/971] upgpkg: discord-electron 0.0.69-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 4932b76..b696c56 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v32) for increased security and performance - pkgver = 0.0.68 + pkgver = 0.0.69 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.68/discord-0.0.68.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.69/discord-0.0.69.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = 38375d2c778a36ce5676b6409ac399ad1fcb4e79abd0b08918132fa2c3fcd287b51e95457d8d4c9745957bbbad614041f925fbf7141f2d6d517ef79c9e878f9a + sha512sums = b91cf295f7571ed0378f3759932e0144823ab0996ace1716169bb77fff0f8bdcb473b51c9eef7a1b93fc94d135cb7108441ec6a2fa7e718d0cd104670fac7d31 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 7d82410..0849993 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.68 +pkgver=0.0.69 pkgrel=1 _electronver=32 _electronname="electron${_electronver}" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('38375d2c778a36ce5676b6409ac399ad1fcb4e79abd0b08918132fa2c3fcd287b51e95457d8d4c9745957bbbad614041f925fbf7141f2d6d517ef79c9e878f9a' +sha512sums=('b91cf295f7571ed0378f3759932e0144823ab0996ace1716169bb77fff0f8bdcb473b51c9eef7a1b93fc94d135cb7108441ec6a2fa7e718d0cd104670fac7d31' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' 'e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff') From 32c180a132beec1ccf0accf2f5fd262f290b502c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 23 Sep 2024 20:07:40 +0200 Subject: [PATCH 840/971] upgpkg: discord-electron-openasar 0.0.69+830-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 9b355d3..822ca93 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v32) for increased security and performance - pkgver = 0.0.68+830 + pkgver = 0.0.69+830 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.68/discord-0.0.68.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.69/discord-0.0.69.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=f92ee8c3dc6b6ff9829f69a1339e0f82a877929c - sha512sums = 38375d2c778a36ce5676b6409ac399ad1fcb4e79abd0b08918132fa2c3fcd287b51e95457d8d4c9745957bbbad614041f925fbf7141f2d6d517ef79c9e878f9a + sha512sums = b91cf295f7571ed0378f3759932e0144823ab0996ace1716169bb77fff0f8bdcb473b51c9eef7a1b93fc94d135cb7108441ec6a2fa7e718d0cd104670fac7d31 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff sha512sums = 4befe9f30b7d11da966692242353becca3f86f7d5b3eb73c48b6f42073b88f7c8a21141d3f84ee2ff10f74a4596d1391f0b200134599a36c9589074bec298573 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 389a9ec..e8404a7 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.68+830 +pkgver=0.0.69+830 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=32 @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=f92ee8c3dc6b6ff9829f69a1339e0f82a877929c") -sha512sums=('38375d2c778a36ce5676b6409ac399ad1fcb4e79abd0b08918132fa2c3fcd287b51e95457d8d4c9745957bbbad614041f925fbf7141f2d6d517ef79c9e878f9a' +sha512sums=('b91cf295f7571ed0378f3759932e0144823ab0996ace1716169bb77fff0f8bdcb473b51c9eef7a1b93fc94d135cb7108441ec6a2fa7e718d0cd104670fac7d31' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' 'e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff' '4befe9f30b7d11da966692242353becca3f86f7d5b3eb73c48b6f42073b88f7c8a21141d3f84ee2ff10f74a4596d1391f0b200134599a36c9589074bec298573') From 97218d08249061963ba7e6f2e3c124851805c757 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 29 Sep 2024 20:58:06 +0200 Subject: [PATCH 841/971] upgpkg: sublime-text-dev 4.4183-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 12b9a8b..76a3188 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4180 + pkgver = 4.4183 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -13,9 +13,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime-text-dev.sh sha512sums = ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9 - source_x86_64 = sublime_text_dev_4_4180_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4180_x64.tar.xz - sha512sums_x86_64 = a115a352311a964268a1460710c562a7843b52c14c452745edb8706ac726e97b867931659b1a3286d44cb19b880f42f00af5bffe88aaa7916181a690e8324e1a - source_aarch64 = sublime_text_dev_4_4180_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4180_arm64.tar.xz - sha512sums_aarch64 = b127def4ad73cf390fc4fc69cae0bf71b9171b20579a742fbf2b18e3e40d3e0c37e1f8ceff7f7e2d1d8e71bcf3967a6ba282b1a94af5a5bbc88f0f99d89f9b84 + source_x86_64 = sublime_text_dev_4_4183_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4183_x64.tar.xz + sha512sums_x86_64 = f7218a7486b22937618e9eaa20fbc4d47d8d58a5bdef1579c1bd68aeca147c3195c34b988675d317c00c2be529e56c5e2ff01b5a9f64f9755e1d6bd89f5b21f0 + source_aarch64 = sublime_text_dev_4_4183_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4183_arm64.tar.xz + sha512sums_aarch64 = 329a54202c5837832f5666de8e32de53b80fbb61e3c1fcd424e12de8d793c5ddb7f1179053a0d60f19882895c24445f38c64f758dc2ca953d646e0dc19ea626a pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 30d7e3e..dd53ec0 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4180 +pkgver=4.4183 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -19,8 +19,8 @@ source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://down source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha512sums=('ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9') -sha512sums_x86_64=('a115a352311a964268a1460710c562a7843b52c14c452745edb8706ac726e97b867931659b1a3286d44cb19b880f42f00af5bffe88aaa7916181a690e8324e1a') -sha512sums_aarch64=('b127def4ad73cf390fc4fc69cae0bf71b9171b20579a742fbf2b18e3e40d3e0c37e1f8ceff7f7e2d1d8e71bcf3967a6ba282b1a94af5a5bbc88f0f99d89f9b84') +sha512sums_x86_64=('f7218a7486b22937618e9eaa20fbc4d47d8d58a5bdef1579c1bd68aeca147c3195c34b988675d317c00c2be529e56c5e2ff01b5a9f64f9755e1d6bd89f5b21f0') +sha512sums_aarch64=('329a54202c5837832f5666de8e32de53b80fbb61e3c1fcd424e12de8d793c5ddb7f1179053a0d60f19882895c24445f38c64f758dc2ca953d646e0dc19ea626a') prepare() { sed -i -e "s|@ST_PATH@|/opt/sublime_text|g" "${pkgname}.sh" From 4ce47bc6be8351eb15044fe68ad884a78d925799 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 29 Sep 2024 20:58:27 +0200 Subject: [PATCH 842/971] upgpkg: firefox-syncstorage 0.17.9-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index 8e781df..2b74997 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.17.7 + pkgver = 0.17.9 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -21,9 +21,9 @@ pkgbase = firefox-syncstorage optdepends = mysql: for use with a local database server options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.17.7/syncstorage-rs-0.17.7.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.17.9/syncstorage-rs-0.17.9.tar.gz source = firefox-syncstorage.service - sha512sums = ac70bf6dc0b298b709e1d9b920deee711cdeaf3ecddb234199eb93b8eb24c6f71ddafe4458fb69d5f03b3c0532ddca91a9105e76f02b3227f08d58e157726f7a + sha512sums = 238d9e6ad768010d14d56f3cd0c84d5f256eb5f854cdbae32bc881047819bd1d1fd5a02cfa53e1c145cbc40b9d652c0d7661c43d3bd3102017bb662b322b32eb sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index 80a8a42..922b5fb 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.17.7 +pkgver=0.17.9 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -18,7 +18,7 @@ options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha512sums=('ac70bf6dc0b298b709e1d9b920deee711cdeaf3ecddb234199eb93b8eb24c6f71ddafe4458fb69d5f03b3c0532ddca91a9105e76f02b3227f08d58e157726f7a' +sha512sums=('238d9e6ad768010d14d56f3cd0c84d5f256eb5f854cdbae32bc881047819bd1d1fd5a02cfa53e1c145cbc40b9d652c0d7661c43d3bd3102017bb662b322b32eb' '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") From 5d55501ccb365b7b82f476f7b53210415075b4b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 29 Sep 2024 20:58:40 +0200 Subject: [PATCH 843/971] upgpkg: clonezilla-unstable 5.6.21-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index ecc7ec1..a930449 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.19 + pkgver = 5.6.21 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.19.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.21.tar.xz source = usrbin.patch - sha512sums = 98b60f6d8ba9894e57b9e3e827c1d219a4a214b6105d2592a6f6767ce061627e0b0b6af75eaab022b1c98c7fb77df56d33bf952fd804fabee43ab570efd6d628 + sha512sums = 3839a217e579e529783d4078124055c10e40ed7450d496a7be3aa951bb169c19f0fbe0aa88a92299ae47a4ba986c79bb1d9bee6843d4d436bedbdfaef2faf79d sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 69fd8e1..dd53299 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.19 +pkgver=5.6.21 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('98b60f6d8ba9894e57b9e3e827c1d219a4a214b6105d2592a6f6767ce061627e0b0b6af75eaab022b1c98c7fb77df56d33bf952fd804fabee43ab570efd6d628' +sha512sums=('3839a217e579e529783d4078124055c10e40ed7450d496a7be3aa951bb169c19f0fbe0aa88a92299ae47a4ba986c79bb1d9bee6843d4d436bedbdfaef2faf79d' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From bed3d77ee1e4939f570c0a1323647b67fee34a35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 29 Sep 2024 20:58:40 +0200 Subject: [PATCH 844/971] upgpkg: clonezilla-unstable 5.6.21-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index ecc7ec1..a930449 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.19 + pkgver = 5.6.21 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.19.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.21.tar.xz source = usrbin.patch - sha512sums = 98b60f6d8ba9894e57b9e3e827c1d219a4a214b6105d2592a6f6767ce061627e0b0b6af75eaab022b1c98c7fb77df56d33bf952fd804fabee43ab570efd6d628 + sha512sums = 3839a217e579e529783d4078124055c10e40ed7450d496a7be3aa951bb169c19f0fbe0aa88a92299ae47a4ba986c79bb1d9bee6843d4d436bedbdfaef2faf79d sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 69fd8e1..dd53299 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.19 +pkgver=5.6.21 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('98b60f6d8ba9894e57b9e3e827c1d219a4a214b6105d2592a6f6767ce061627e0b0b6af75eaab022b1c98c7fb77df56d33bf952fd804fabee43ab570efd6d628' +sha512sums=('3839a217e579e529783d4078124055c10e40ed7450d496a7be3aa951bb169c19f0fbe0aa88a92299ae47a4ba986c79bb1d9bee6843d4d436bedbdfaef2faf79d' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 15ab04746f9104460052db56cf695ca4d16a315c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 1 Oct 2024 20:29:35 +0200 Subject: [PATCH 845/971] upgpkg: discord-electron 0.0.70-1 upstream release --- discord-electron/.SRCINFO | 8 ++++---- discord-electron/PKGBUILD | 6 +++--- discord-electron/krisp-patcher.py | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index b696c56..fd6f2e3 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v32) for increased security and performance - pkgver = 0.0.69 + pkgver = 0.0.70 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,11 +18,11 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.69/discord-0.0.69.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.70/discord-0.0.70.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = b91cf295f7571ed0378f3759932e0144823ab0996ace1716169bb77fff0f8bdcb473b51c9eef7a1b93fc94d135cb7108441ec6a2fa7e718d0cd104670fac7d31 + sha512sums = 78aa941ce759345c0f2dc5fc3f741462e9ae8d756ecfcd492a42b9e4a16168c4772e4f732e838fd06a305348c4923a6c601450eb80bf4bd3db6f4468ae803e17 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 - sha512sums = e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff + sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c pkgname = discord-electron diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 0849993..b1a0b7e 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.69 +pkgver=0.0.70 pkgrel=1 _electronver=32 _electronname="electron${_electronver}" @@ -24,9 +24,9 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('b91cf295f7571ed0378f3759932e0144823ab0996ace1716169bb77fff0f8bdcb473b51c9eef7a1b93fc94d135cb7108441ec6a2fa7e718d0cd104670fac7d31' +sha512sums=('78aa941ce759345c0f2dc5fc3f741462e9ae8d756ecfcd492a42b9e4a16168c4772e4f732e838fd06a305348c4923a6c601450eb80bf4bd3db6f4468ae803e17' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' - 'e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff') + '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c') prepare() { # prepare launcher script diff --git a/discord-electron/krisp-patcher.py b/discord-electron/krisp-patcher.py index 6423234..99107bf 100644 --- a/discord-electron/krisp-patcher.py +++ b/discord-electron/krisp-patcher.py @@ -32,7 +32,7 @@ isSignedByDiscord_offset = krisp_initialize_address - address_to_file f = open(executable, "rb") f.seek(krisp_initialize_offset) -krisp_initialize = f.read(64) +krisp_initialize = f.read(96) f.close() # States From f711b77fc86b613f796379f3ab20e9f0c8f9a161 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 1 Oct 2024 20:29:53 +0200 Subject: [PATCH 846/971] upgpkg: discord-electron-openasar 0.0.70+830-1 upstream release --- discord-electron-openasar/.SRCINFO | 8 ++++---- discord-electron-openasar/PKGBUILD | 6 +++--- discord-electron-openasar/krisp-patcher.py | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 822ca93..b459a01 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v32) for increased security and performance - pkgver = 0.0.69+830 + pkgver = 0.0.70+830 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,13 +21,13 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.69/discord-0.0.69.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.70/discord-0.0.70.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=f92ee8c3dc6b6ff9829f69a1339e0f82a877929c - sha512sums = b91cf295f7571ed0378f3759932e0144823ab0996ace1716169bb77fff0f8bdcb473b51c9eef7a1b93fc94d135cb7108441ec6a2fa7e718d0cd104670fac7d31 + sha512sums = 78aa941ce759345c0f2dc5fc3f741462e9ae8d756ecfcd492a42b9e4a16168c4772e4f732e838fd06a305348c4923a6c601450eb80bf4bd3db6f4468ae803e17 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 - sha512sums = e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff + sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c sha512sums = 4befe9f30b7d11da966692242353becca3f86f7d5b3eb73c48b6f42073b88f7c8a21141d3f84ee2ff10f74a4596d1391f0b200134599a36c9589074bec298573 pkgname = discord-electron-openasar diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index e8404a7..ab46062 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.69+830 +pkgver=0.0.70+830 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=32 @@ -28,9 +28,9 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=f92ee8c3dc6b6ff9829f69a1339e0f82a877929c") -sha512sums=('b91cf295f7571ed0378f3759932e0144823ab0996ace1716169bb77fff0f8bdcb473b51c9eef7a1b93fc94d135cb7108441ec6a2fa7e718d0cd104670fac7d31' +sha512sums=('78aa941ce759345c0f2dc5fc3f741462e9ae8d756ecfcd492a42b9e4a16168c4772e4f732e838fd06a305348c4923a6c601450eb80bf4bd3db6f4468ae803e17' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' - 'e5b4d549b29b41a71b2d871d69ef6c622bd1daefb52104165ca2f33e82a3ef02cd697bf48ff12d29895bec2da15b6fe603b0b3c93bf503b3169edf2e812038ff' + '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c' '4befe9f30b7d11da966692242353becca3f86f7d5b3eb73c48b6f42073b88f7c8a21141d3f84ee2ff10f74a4596d1391f0b200134599a36c9589074bec298573') # just in case I get the version wrong diff --git a/discord-electron-openasar/krisp-patcher.py b/discord-electron-openasar/krisp-patcher.py index 6423234..99107bf 100644 --- a/discord-electron-openasar/krisp-patcher.py +++ b/discord-electron-openasar/krisp-patcher.py @@ -32,7 +32,7 @@ isSignedByDiscord_offset = krisp_initialize_address - address_to_file f = open(executable, "rb") f.seek(krisp_initialize_offset) -krisp_initialize = f.read(64) +krisp_initialize = f.read(96) f.close() # States From 4fc114f43660031d861bf3482a9f9cb10d3e91f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 6 Oct 2024 18:53:07 +0200 Subject: [PATCH 847/971] Deleted package: cage-vi * Virtual input patch included since Cage v0.1.5 --- cage-vi/.SRCINFO | 25 - cage-vi/PKGBUILD | 45 - cage-vi/bd5b20e.patch | 2914 ----------------------------------------- 3 files changed, 2984 deletions(-) delete mode 100644 cage-vi/.SRCINFO delete mode 100644 cage-vi/PKGBUILD delete mode 100644 cage-vi/bd5b20e.patch diff --git a/cage-vi/.SRCINFO b/cage-vi/.SRCINFO deleted file mode 100644 index 7e5f5a8..0000000 --- a/cage-vi/.SRCINFO +++ /dev/null @@ -1,25 +0,0 @@ -pkgbase = cage-vi - pkgdesc = A Wayland kiosk, with virtual input patch applied - pkgver = 0.1.4+54+gbd5b20e - pkgrel = 1 - url = https://www.hjdskes.nl/projects/cage/ - arch = x86_64 - license = MIT - makedepends = meson - makedepends = pixman - makedepends = scdoc - makedepends = wayland-protocols - makedepends = xorg-xwayland - depends = glibc - depends = wayland - depends = wlroots - optdepends = polkit: System privilege control. Required if not using seatd service - optdepends = xorg-xwayland: X11 support - provides = cage - conflicts = cage - source = https://github.com/Hjdskes/cage/releases/download/v0.1.4/cage-0.1.4.tar.gz - source = bd5b20e.patch - sha512sums = 55773fac44bf9e98086e53cbc20d17e3aad7046bedfe638ef8f896543388481be3989fede6f950d4f8cb0583f701cbf79617dfa011c7777a7c8b22c9bcddd64f - sha512sums = e30d9596bf12a793e744a170dc859224f62d807bfc1f980ad26044ffe6170bedd1a1e8a9e9321b3bffb93aa3d42a152e67f60dd6735c6e13a4a2b987131a3394 - -pkgname = cage-vi diff --git a/cage-vi/PKGBUILD b/cage-vi/PKGBUILD deleted file mode 100644 index c68cc30..0000000 --- a/cage-vi/PKGBUILD +++ /dev/null @@ -1,45 +0,0 @@ -pkgname=cage-vi -_pkgname=${pkgname%%-*} -pkgver=0.1.4+54+gbd5b20e -_pkgver=${pkgver%%+*} -pkgrel=1 -pkgdesc='A Wayland kiosk, with virtual input patch applied' -arch=('x86_64') -url="https://www.hjdskes.nl/projects/${_pkgname}/" -license=('MIT') -depends=('glibc' 'wayland' 'wlroots') -makedepends=('meson' 'pixman' 'scdoc' 'wayland-protocols' 'xorg-xwayland') -optdepends=( - 'polkit: System privilege control. Required if not using seatd service' - 'xorg-xwayland: X11 support' -) -provides=("${_pkgname}") -conflicts=("${_pkgname}") -source=( - "https://github.com/Hjdskes/${_pkgname}/releases/download/v${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" - 'bd5b20e.patch' -) -sha512sums=('55773fac44bf9e98086e53cbc20d17e3aad7046bedfe638ef8f896543388481be3989fede6f950d4f8cb0583f701cbf79617dfa011c7777a7c8b22c9bcddd64f' - 'e30d9596bf12a793e744a170dc859224f62d807bfc1f980ad26044ffe6170bedd1a1e8a9e9321b3bffb93aa3d42a152e67f60dd6735c6e13a4a2b987131a3394') - -#pkgver() { -# cd "${srcdir}/${_pkgname}-${_pkgver}" -# git describe --long --tags | sed 's/^v//;s/-/+/g' -#} - - -prepare() { - cd "${srcdir}/${_pkgname}-${_pkgver}" - patch -Np1 -i '../bd5b20e.patch' - meson --buildtype=release -Dxwayland=true --prefix /usr "$srcdir/build" -} - -build() { - cd "${srcdir}/${_pkgname}-${_pkgver}" - ninja -C "$srcdir/build" -} - -package() { - cd "${srcdir}/${_pkgname}-${_pkgver}" - DESTDIR="$pkgdir/" ninja -C "$srcdir/build" install -} diff --git a/cage-vi/bd5b20e.patch b/cage-vi/bd5b20e.patch deleted file mode 100644 index d59ba45..0000000 --- a/cage-vi/bd5b20e.patch +++ /dev/null @@ -1,2914 +0,0 @@ -diff --git a/.builds/alpine.yml b/.builds/alpine.yml -deleted file mode 100644 -index ef32a95..0000000 ---- a/.builds/alpine.yml -+++ /dev/null -@@ -1,35 +0,0 @@ --image: alpine/edge --packages: -- - eudev-dev -- - mesa-dev -- - meson -- - libinput-dev -- - libxkbcommon-dev -- - pixman-dev -- - scdoc -- - wayland-dev -- - wayland-protocols -- - xcb-util-wm-dev -- - xwayland --sources: -- - https://github.com/swaywm/wlroots -- - https://github.com/Hjdskes/cage --tasks: -- # Install wlroots, which is required by Cage. Note that we compile a tagged -- # version, instead of master, to avoid any breaking changes in wlroots. -- - wlroots: | -- cd wlroots -- git checkout 0.14.0 -- meson --prefix=/usr build -Dexamples=false -- ninja -C build -- sudo ninja -C build install -- - build: | -- cd cage -- meson build --werror -Dxwayland=true -- ninja -C build -- rm -rf build -- - build-no-xwayland: | -- cd cage -- meson build --werror -Dxwayland=false -- ninja -C build -- rm -rf build -diff --git a/.builds/archlinux.yml b/.builds/archlinux.yml -deleted file mode 100644 -index 99cdd24..0000000 ---- a/.builds/archlinux.yml -+++ /dev/null -@@ -1,45 +0,0 @@ --image: archlinux --packages: -- - clang -- - meson -- - libinput -- - libxkbcommon -- - mesa -- - scdoc -- - wayland -- - wayland-protocols -- - xcb-util-wm -- - xorg-xwayland --sources: -- - https://github.com/swaywm/wlroots -- - https://github.com/Hjdskes/cage --tasks: -- # Install wlroots, which is required by Cage. Note that we compile a tagged -- # version, instead of master, to avoid any breaking changes in wlroots. -- - wlroots: | -- cd wlroots -- git checkout 0.14.0 -- meson --prefix=/usr build -Dexamples=false -- ninja -C build -- sudo ninja -C build install -- - build: | -- cd cage -- meson build --werror -Dxwayland=true -- ninja -C build -- rm -rf build -- - build-no-xwayland: | -- cd cage -- meson build --werror -Dxwayland=false -- ninja -C build -- rm -rf build -- - scan-build: | -- cd cage -- CC=clang meson build --werror -Dxwayland=true -- CC=clang ninja -C build scan-build -- rm -rf build -- - clang-format: | -- cd cage -- meson build --werror -Dxwayland=true -- ninja -C build clang-format -- rm -rf build -- git diff --exit-code -diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml -deleted file mode 100644 -index 92a2119..0000000 ---- a/.builds/freebsd.yml -+++ /dev/null -@@ -1,37 +0,0 @@ --image: freebsd/latest --packages: -- - devel/evdev-proto -- - devel/meson -- - devel/libepoll-shim -- - devel/pkgconf -- - graphics/mesa-libs -- - graphics/wayland -- - graphics/wayland-protocols -- - textproc/scdoc -- - x11/libinput -- - x11/libxkbcommon -- - x11/pixman -- - x11/xcb-util-wm -- - x11-servers/xwayland --sources: -- - https://github.com/swaywm/wlroots -- - https://github.com/Hjdskes/cage --tasks: -- # Install wlroots, which is required by Cage. Note that we compile a tagged -- # version, instead of master, to avoid any breaking changes in wlroots. -- - wlroots: | -- cd wlroots -- git checkout 0.14.0 -- meson --prefix=/usr/local build -Dexamples=false -- ninja -C build -- sudo ninja -C build install -- - build: | -- cd cage -- PKG_CONFIG_PATH=/usr/local/lib/pkgconfig meson build --werror -Dxwayland=true -- PKG_CONFIG_PATH=/usr/local/lib/pkgconfig ninja -C build -- rm -rf build -- - build-no-xwayland: | -- cd cage -- PKG_CONFIG_PATH=/usr/local/lib/pkgconfig meson build --werror -Dxwayland=false -- PKG_CONFIG_PATH=/usr/local/lib/pkgconfig ninja -C build -- rm -rf build -diff --git a/.clang-format-ignore b/.clang-format-ignore -new file mode 100644 -index 0000000..60dd059 ---- /dev/null -+++ b/.clang-format-ignore -@@ -0,0 +1 @@ -+subprojects/**/* -\ No newline at end of file -diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml -new file mode 100644 -index 0000000..a98291a ---- /dev/null -+++ b/.github/workflows/main.yml -@@ -0,0 +1,76 @@ -+name: Continuous integration build -+on: -+ push: -+ branches: [ master ] -+ pull_request: -+ branches: [ master ] -+ -+jobs: -+ compile: -+ runs-on: ubuntu-latest -+ strategy: -+ matrix: -+ CC: [ gcc, clang ] -+ OS: [ "alpine:edge", "archlinux:base-devel" ] -+ xwayland: [ true, false ] -+ container: ${{ matrix.OS }} -+ env: -+ CC: ${{ matrix.CC }} -+ steps: -+ - name: Checkout Cage -+ uses: actions/checkout@v2 -+ -+ - name: Install dependencies (Alpine) -+ if: "matrix.OS == 'alpine:edge'" -+ run: apk add build-base xcb-util-wm-dev libseat-dev clang git eudev-dev mesa-dev libdrm-dev libinput-dev libxkbcommon-dev pixman-dev wayland-dev meson wayland-protocols xwayland scdoc-doc hwdata -+ -+ - name: Install dependencies (Arch) -+ if: "matrix.OS == 'archlinux:base-devel'" -+ run: | -+ pacman-key --init -+ pacman -Syu --noconfirm xcb-util-wm seatd git clang meson libinput libdrm mesa libxkbcommon wayland wayland-protocols xorg-server-xwayland scdoc -+ -+ - name: Fetch wlroots as a subproject -+ run: git clone https://gitlab.freedesktop.org/wlroots/wlroots.git subprojects/wlroots -b 0.16.0 -+ -+ # TODO: use --fatal-meson-warnings when on wlroots 0.15.0 -+ - name: Compile Cage (XWayland=${{ matrix.xwayland }}) -+ run: | -+ meson build-${{ matrix.CC }}-${{matrix.xwayland }} -Dxwayland=${{ matrix.xwayland }} -+ ninja -C build-${{ matrix.CC }}-${{matrix.xwayland }} -+ -+ format: -+ runs-on: ubuntu-latest -+ container: "archlinux:base-devel" -+ steps: -+ - name: Checkout Cage -+ uses: actions/checkout@v2 -+ - name: Install dependencies -+ run: | -+ pacman-key --init -+ pacman -Syu --noconfirm xcb-util-wm seatd git clang meson libinput libdrm mesa libxkbcommon wayland wayland-protocols xorg-server-xwayland scdoc hwdata -+ - name: Fetch wlroots as a subproject -+ run: git clone https://gitlab.freedesktop.org/wlroots/wlroots.git subprojects/wlroots -b 0.16.0 -+ - name: Check for formatting changes -+ run: | -+ meson build-clang-format -Dxwayland=true -+ ninja -C build-clang-format clang-format-check -+ -+ scan-build: -+ runs-on: ubuntu-latest -+ container: "archlinux:base-devel" -+ env: -+ CC: clang -+ steps: -+ - name: Checkout Cage -+ uses: actions/checkout@v2 -+ - name: Install dependencies -+ run: | -+ pacman-key --init -+ pacman -Syu --noconfirm xcb-util-wm seatd git clang meson libinput libdrm mesa libxkbcommon wayland wayland-protocols xorg-server-xwayland scdoc hwdata -+ - name: Fetch wlroots as a subproject -+ run: git clone https://gitlab.freedesktop.org/wlroots/wlroots.git subprojects/wlroots -b 0.16.0 -+ - name: Run scan-build -+ run: | -+ meson build-scan-build -Dxwayland=true -+ ninja -C build-scan-build scan-build -diff --git a/README.md b/README.md -index e1b6f56..752387e 100644 ---- a/README.md -+++ b/README.md -@@ -1,4 +1,4 @@ --# Cage: a Wayland kiosk [![builds.sr.ht status](https://builds.sr.ht/~hjdskes.svg)](https://builds.sr.ht/~hjdskes?) -+# Cage: a Wayland kiosk - - Cage's logo - -diff --git a/cage.c b/cage.c -index 5392535..c5eda4d 100644 ---- a/cage.c -+++ b/cage.c -@@ -19,6 +19,7 @@ - #include - #include - #include -+#include - #include - #include - #include -@@ -27,8 +28,15 @@ - #include - #include - #include -+#include -+#include - #include - #include -+#include -+#include -+#include -+#include -+#include - #if CAGE_HAS_XWAYLAND - #include - #endif -@@ -145,7 +153,12 @@ cleanup_primary_client(pid_t pid) - static bool - drop_permissions(void) - { -+ if (getuid() == 0 || getgid() == 0) { -+ wlr_log(WLR_INFO, "Running as root user, this is dangerous"); -+ return true; -+ } - if (getuid() != geteuid() || getgid() != getegid()) { -+ wlr_log(WLR_INFO, "setuid/setgid bit detected, dropping permissions"); - // Set the gid and uid in the correct order. - if (setgid(getgid()) != 0 || setuid(getuid()) != 0) { - wlr_log(WLR_ERROR, "Unable to drop root, refusing to start"); -@@ -185,9 +198,6 @@ usage(FILE *file, const char *cage) - "Usage: %s [OPTIONS] [--] APPLICATION\n" - "\n" - " -d\t Don't draw client side decorations, when possible\n" --#ifdef DEBUG -- " -D\t Turn on damage tracking debugging\n" --#endif - " -h\t Display this help message\n" - " -m extend Extend the display across all connected outputs (default)\n" - " -m last Use only the last connected output\n" -@@ -203,20 +213,11 @@ static bool - parse_args(struct cg_server *server, int argc, char *argv[]) - { - int c; --#ifdef DEBUG -- while ((c = getopt(argc, argv, "dDhm:rsv")) != -1) { --#else - while ((c = getopt(argc, argv, "dhm:rsv")) != -1) { --#endif - switch (c) { - case 'd': - server->xdg_decoration = true; - break; --#ifdef DEBUG -- case 'D': -- server->debug_damage_tracking = true; -- break; --#endif - case 'h': - usage(stdout, argv[0]); - return false; -@@ -261,15 +262,20 @@ main(int argc, char *argv[]) - struct wl_event_source *sigint_source = NULL; - struct wl_event_source *sigterm_source = NULL; - struct wl_event_source *sigchld_source = NULL; -- struct wlr_renderer *renderer = NULL; - struct wlr_compositor *compositor = NULL; -+ struct wlr_subcompositor *subcompositor = NULL; - struct wlr_data_device_manager *data_device_manager = NULL; - struct wlr_server_decoration_manager *server_decoration_manager = NULL; - struct wlr_xdg_decoration_manager_v1 *xdg_decoration_manager = NULL; - struct wlr_export_dmabuf_manager_v1 *export_dmabuf_manager = NULL; - struct wlr_screencopy_manager_v1 *screencopy_manager = NULL; -+ struct wlr_single_pixel_buffer_manager_v1 *single_pixel_buffer = NULL; - struct wlr_xdg_output_manager_v1 *output_manager = NULL; - struct wlr_gamma_control_manager_v1 *gamma_control_manager = NULL; -+ struct wlr_virtual_keyboard_manager_v1 *virtual_keyboard = NULL; -+ struct wlr_virtual_pointer_manager_v1 *virtual_pointer = NULL; -+ struct wlr_viewporter *viewporter = NULL; -+ struct wlr_presentation *presentation = NULL; - struct wlr_xdg_shell *xdg_shell = NULL; - #if CAGE_HAS_XWAYLAND - struct wlr_xwayland *xwayland = NULL; -@@ -316,8 +322,21 @@ main(int argc, char *argv[]) - goto end; - } - -- renderer = wlr_backend_get_renderer(server.backend); -- wlr_renderer_init_wl_display(renderer, server.wl_display); -+ server.renderer = wlr_renderer_autocreate(server.backend); -+ if (!server.renderer) { -+ wlr_log(WLR_ERROR, "Unable to create the wlroots renderer"); -+ ret = 1; -+ goto end; -+ } -+ -+ server.allocator = wlr_allocator_autocreate(server.backend, server.renderer); -+ if (!server.allocator) { -+ wlr_log(WLR_ERROR, "Unable to create the wlroots allocator"); -+ ret = 1; -+ goto end; -+ } -+ -+ wlr_renderer_init_wl_display(server.renderer, server.wl_display); - - wl_list_init(&server.views); - wl_list_init(&server.outputs); -@@ -329,13 +348,29 @@ main(int argc, char *argv[]) - goto end; - } - -- compositor = wlr_compositor_create(server.wl_display, renderer); -+ server.scene = wlr_scene_create(); -+ if (!server.scene) { -+ wlr_log(WLR_ERROR, "Unable to create scene"); -+ ret = 1; -+ goto end; -+ } -+ -+ wlr_scene_attach_output_layout(server.scene, server.output_layout); -+ -+ compositor = wlr_compositor_create(server.wl_display, server.renderer); - if (!compositor) { - wlr_log(WLR_ERROR, "Unable to create the wlroots compositor"); - ret = 1; - goto end; - } - -+ subcompositor = wlr_subcompositor_create(server.wl_display); -+ if (!subcompositor) { -+ wlr_log(WLR_ERROR, "Unable to create the wlroots subcompositor"); -+ ret = 1; -+ goto end; -+ } -+ - data_device_manager = wlr_data_device_manager_create(server.wl_display); - if (!data_device_manager) { - wlr_log(WLR_ERROR, "Unable to create the data device manager"); -@@ -373,7 +408,7 @@ main(int argc, char *argv[]) - wl_signal_add(&server.idle_inhibit_v1->events.new_inhibitor, &server.new_idle_inhibitor_v1); - wl_list_init(&server.inhibitors); - -- xdg_shell = wlr_xdg_shell_create(server.wl_display); -+ xdg_shell = wlr_xdg_shell_create(server.wl_display, 4); - if (!xdg_shell) { - wlr_log(WLR_ERROR, "Unable to create the XDG shell interface"); - ret = 1; -@@ -401,6 +436,21 @@ main(int argc, char *argv[]) - server_decoration_manager, server.xdg_decoration ? WLR_SERVER_DECORATION_MANAGER_MODE_SERVER - : WLR_SERVER_DECORATION_MANAGER_MODE_CLIENT); - -+ viewporter = wlr_viewporter_create(server.wl_display); -+ if (!viewporter) { -+ wlr_log(WLR_ERROR, "Unable to create the viewporter interface"); -+ ret = 1; -+ goto end; -+ } -+ -+ presentation = wlr_presentation_create(server.wl_display, server.backend); -+ if (!presentation) { -+ wlr_log(WLR_ERROR, "Unable to create the presentation interface"); -+ ret = 1; -+ goto end; -+ } -+ wlr_scene_set_presentation(server.scene, presentation); -+ - export_dmabuf_manager = wlr_export_dmabuf_manager_v1_create(server.wl_display); - if (!export_dmabuf_manager) { - wlr_log(WLR_ERROR, "Unable to create the export DMABUF manager"); -@@ -415,6 +465,13 @@ main(int argc, char *argv[]) - goto end; - } - -+ single_pixel_buffer = wlr_single_pixel_buffer_manager_v1_create(server.wl_display); -+ if (!single_pixel_buffer) { -+ wlr_log(WLR_ERROR, "Unable to create the single pixel buffer manager"); -+ ret = 1; -+ goto end; -+ } -+ - output_manager = wlr_xdg_output_manager_v1_create(server.wl_display, server.output_layout); - if (!output_manager) { - wlr_log(WLR_ERROR, "Unable to create the output manager"); -@@ -429,6 +486,22 @@ main(int argc, char *argv[]) - goto end; - } - -+ virtual_keyboard = wlr_virtual_keyboard_manager_v1_create(server.wl_display); -+ if (!virtual_keyboard) { -+ wlr_log(WLR_ERROR, "Unable to create the virtual keyboard manager"); -+ ret = 1; -+ goto end; -+ } -+ wl_signal_add(&virtual_keyboard->events.new_virtual_keyboard, &server.new_virtual_keyboard); -+ -+ virtual_pointer = wlr_virtual_pointer_manager_v1_create(server.wl_display); -+ if (!virtual_pointer) { -+ wlr_log(WLR_ERROR, "Unable to create the virtual pointer manager"); -+ ret = 1; -+ goto end; -+ } -+ wl_signal_add(&virtual_pointer->events.new_virtual_pointer, &server.new_virtual_pointer); -+ - #if CAGE_HAS_XWAYLAND - xwayland = wlr_xwayland_create(server.wl_display, compositor, true); - if (!xwayland) { -@@ -492,8 +565,9 @@ main(int argc, char *argv[]) - } - - /* Place the cursor in the center of the output layout. */ -- struct wlr_box *layout_box = wlr_output_layout_get_box(server.output_layout, NULL); -- wlr_cursor_warp(server.seat->cursor, NULL, layout_box->width / 2, layout_box->height / 2); -+ struct wlr_box layout_box; -+ wlr_output_layout_get_box(server.output_layout, NULL, &layout_box); -+ wlr_cursor_warp(server.seat->cursor, NULL, layout_box.width / 2, layout_box.height / 2); - - wl_display_run(server.wl_display); - -diff --git a/meson.build b/meson.build -index 3a84794..fbd7e16 100644 ---- a/meson.build -+++ b/meson.build -@@ -1,16 +1,17 @@ - project('cage', 'c', - version: '0.1.4', - license: 'MIT', -+ meson_version: '>=0.58.1', - default_options: [ - 'c_std=c11', -- 'warning_level=3', -+ 'warning_level=2', -+ 'werror=true', - ], - ) - - add_project_arguments( - [ - '-DWLR_USE_UNSTABLE', -- '-Wall', - '-Wundef', - '-Wno-unused-parameter', - ], -@@ -34,14 +35,13 @@ if is_freebsd - ) - endif - --wlroots = dependency('wlroots', version: '>= 0.14.0') -+wlroots = dependency('wlroots', version: '>= 0.16.0', fallback: ['wlroots', 'wlroots']) - wayland_protos = dependency('wayland-protocols', version: '>=1.14') - wayland_server = dependency('wayland-server') --pixman = dependency('pixman-1') - xkbcommon = dependency('xkbcommon') - math = cc.find_library('m') - --wl_protocol_dir = wayland_protos.get_pkgconfig_variable('pkgdatadir') -+wl_protocol_dir = wayland_protos.get_variable('pkgdatadir') - wayland_scanner = find_program('wayland-scanner') - wayland_scanner_server = generator( - wayland_scanner, -@@ -65,12 +65,11 @@ server_protos = declare_dependency( - ) - - if get_option('xwayland') -- wlroots_has_xwayland = cc.get_define('WLR_HAS_XWAYLAND', prefix: '#include ', dependencies: wlroots) == '1' -+ wlroots_has_xwayland = wlroots.get_variable(pkgconfig: 'have_xwayland', internal: 'have_xwayland') == 'true' - if not wlroots_has_xwayland - error('Cannot build Cage with XWayland support: wlroots has been built without it') -- else -- have_xwayland = true - endif -+ have_xwayland = true - else - have_xwayland = false - endif -@@ -78,8 +77,8 @@ endif - version = '@0@'.format(meson.project_version()) - git = find_program('git', native: true, required: false) - if git.found() -- git_commit = run_command([git, 'rev-parse', '--short', 'HEAD']) -- git_branch = run_command([git, 'rev-parse', '--abbrev-ref', 'HEAD']) -+ git_commit = run_command([git, 'rev-parse', '--short', 'HEAD'], check: false) -+ git_branch = run_command([git, 'rev-parse', '--abbrev-ref', 'HEAD'], check: false) - if git_commit.returncode() == 0 and git_branch.returncode() == 0 - version = '@0@-@1@ (branch \'@2@\')'.format( - meson.project_version(), -@@ -95,7 +94,7 @@ conf_data.set_quoted('CAGE_VERSION', version) - - scdoc = dependency('scdoc', version: '>=1.9.2', native: true, required: get_option('man-pages')) - if scdoc.found() -- scdoc_prog = find_program(scdoc.get_pkgconfig_variable('scdoc'), native: true) -+ scdoc_prog = find_program(scdoc.get_variable('scdoc'), native: true) - sh = find_program('sh', native: true) - mandir = get_option('mandir') - man_files = [ -@@ -111,7 +110,7 @@ if scdoc.found() - input: filename, - output: output, - command: [ -- sh, '-c', '@0@ < @INPUT@ > @1@'.format(scdoc_prog.path(), output) -+ sh, '-c', '@0@ < @INPUT@ > @1@'.format(scdoc_prog.full_path(), output) - ], - install: true, - install_dir: '@0@/man@1@'.format(mandir, section) -@@ -123,9 +122,7 @@ cage_sources = [ - 'cage.c', - 'idle_inhibit_v1.c', - 'output.c', -- 'render.c', - 'seat.c', -- 'util.c', - 'view.c', - 'xdg_shell.c', - ] -@@ -136,10 +133,8 @@ cage_headers = [ - configuration: conf_data), - 'idle_inhibit_v1.h', - 'output.h', -- 'render.h', - 'seat.h', - 'server.h', -- 'util.h', - 'view.h', - 'xdg_shell.h', - ] -@@ -157,7 +152,6 @@ executable( - wayland_server, - wlroots, - xkbcommon, -- pixman, - math, - ], - install: true, -diff --git a/output.c b/output.c -index d8da3b9..6eca0db 100644 ---- a/output.c -+++ b/output.c -@@ -1,7 +1,7 @@ - /* - * Cage: A Wayland kiosk. - * -- * Copyright (C) 2018-2020 Jente Hidskes -+ * Copyright (C) 2018-2021 Jente Hidskes - * Copyright (C) 2019 The Sway authors - * - * See the LICENSE file accompanying this file. -@@ -11,6 +11,7 @@ - - #include "config.h" - -+#include - #include - #include - #include -@@ -21,221 +22,25 @@ - #include - #endif - #include -+#include - #include - #include - #include - #include - #include --#include -+#include - #include - #include - #include - - #include "output.h" --#include "render.h" - #include "seat.h" - #include "server.h" --#include "util.h" - #include "view.h" - #if CAGE_HAS_XWAYLAND - #include "xwayland.h" - #endif - --static void output_for_each_surface(struct cg_output *output, cg_surface_iterator_func_t iterator, void *user_data); -- --struct surface_iterator_data { -- cg_surface_iterator_func_t user_iterator; -- void *user_data; -- -- struct cg_output *output; -- -- /* Output-local coordinates. */ -- double ox, oy; --}; -- --static bool --intersects_with_output(struct cg_output *output, struct wlr_output_layout *output_layout, struct wlr_box *surface_box) --{ -- /* Since the surface_box's x- and y-coordinates are already output local, -- * the x- and y-coordinates of this box need to be 0 for this function to -- * work correctly. */ -- struct wlr_box output_box = {0}; -- wlr_output_effective_resolution(output->wlr_output, &output_box.width, &output_box.height); -- -- struct wlr_box intersection; -- return wlr_box_intersection(&intersection, &output_box, surface_box); --} -- --static void --output_for_each_surface_iterator(struct wlr_surface *surface, int sx, int sy, void *user_data) --{ -- struct surface_iterator_data *data = user_data; -- struct cg_output *output = data->output; -- -- if (!wlr_surface_has_buffer(surface)) { -- return; -- } -- -- struct wlr_box surface_box = { -- .x = data->ox + sx + surface->sx, -- .y = data->oy + sy + surface->sy, -- .width = surface->current.width, -- .height = surface->current.height, -- }; -- -- if (!intersects_with_output(output, output->server->output_layout, &surface_box)) { -- return; -- } -- -- data->user_iterator(data->output, surface, &surface_box, data->user_data); --} -- --void --output_surface_for_each_surface(struct cg_output *output, struct wlr_surface *surface, double ox, double oy, -- cg_surface_iterator_func_t iterator, void *user_data) --{ -- struct surface_iterator_data data = { -- .user_iterator = iterator, -- .user_data = user_data, -- .output = output, -- .ox = ox, -- .oy = oy, -- }; -- -- wlr_surface_for_each_surface(surface, output_for_each_surface_iterator, &data); --} -- --static void --output_view_for_each_surface(struct cg_output *output, struct cg_view *view, cg_surface_iterator_func_t iterator, -- void *user_data) --{ -- struct surface_iterator_data data = { -- .user_iterator = iterator, -- .user_data = user_data, -- .output = output, -- .ox = view->lx, -- .oy = view->ly, -- }; -- -- wlr_output_layout_output_coords(output->server->output_layout, output->wlr_output, &data.ox, &data.oy); -- view_for_each_surface(view, output_for_each_surface_iterator, &data); --} -- --void --output_view_for_each_popup_surface(struct cg_output *output, struct cg_view *view, cg_surface_iterator_func_t iterator, -- void *user_data) --{ -- struct surface_iterator_data data = { -- .user_iterator = iterator, -- .user_data = user_data, -- .output = output, -- .ox = view->lx, -- .oy = view->ly, -- }; -- -- wlr_output_layout_output_coords(output->server->output_layout, output->wlr_output, &data.ox, &data.oy); -- view_for_each_popup_surface(view, output_for_each_surface_iterator, &data); --} -- --void --output_drag_icons_for_each_surface(struct cg_output *output, struct wl_list *drag_icons, -- cg_surface_iterator_func_t iterator, void *user_data) --{ -- struct cg_drag_icon *drag_icon; -- wl_list_for_each (drag_icon, drag_icons, link) { -- if (drag_icon->wlr_drag_icon->mapped) { -- double ox = drag_icon->lx; -- double oy = drag_icon->ly; -- wlr_output_layout_output_coords(output->server->output_layout, output->wlr_output, &ox, &oy); -- output_surface_for_each_surface(output, drag_icon->wlr_drag_icon->surface, ox, oy, iterator, -- user_data); -- } -- } --} -- --static void --output_for_each_surface(struct cg_output *output, cg_surface_iterator_func_t iterator, void *user_data) --{ -- struct cg_view *view; -- wl_list_for_each_reverse (view, &output->server->views, link) { -- output_view_for_each_surface(output, view, iterator, user_data); -- } -- -- output_drag_icons_for_each_surface(output, &output->server->seat->drag_icons, iterator, user_data); --} -- --struct send_frame_done_data { -- struct timespec when; --}; -- --static void --send_frame_done_iterator(struct cg_output *output, struct wlr_surface *surface, struct wlr_box *box, void *user_data) --{ -- struct send_frame_done_data *data = user_data; -- wlr_surface_send_frame_done(surface, &data->when); --} -- --static void --send_frame_done(struct cg_output *output, struct send_frame_done_data *data) --{ -- output_for_each_surface(output, send_frame_done_iterator, data); --} -- --static void --count_surface_iterator(struct cg_output *output, struct wlr_surface *surface, struct wlr_box *_box, void *data) --{ -- size_t *n = data; -- n++; --} -- --static bool --scan_out_primary_view(struct cg_output *output) --{ -- struct cg_server *server = output->server; -- struct wlr_output *wlr_output = output->wlr_output; -- -- struct cg_drag_icon *drag_icon; -- wl_list_for_each (drag_icon, &server->seat->drag_icons, link) { -- if (drag_icon->wlr_drag_icon->mapped) { -- return false; -- } -- } -- -- struct cg_view *view = seat_get_focus(server->seat); -- if (!view || !view->wlr_surface) { -- return false; -- } -- -- size_t n_surfaces = 0; -- output_view_for_each_surface(output, view, count_surface_iterator, &n_surfaces); -- if (n_surfaces > 1) { -- return false; -- } -- --#if CAGE_HAS_XWAYLAND -- if (view->type == CAGE_XWAYLAND_VIEW) { -- struct cg_xwayland_view *xwayland_view = xwayland_view_from_view(view); -- if (!wl_list_empty(&xwayland_view->xwayland_surface->children)) { -- return false; -- } -- } --#endif -- -- struct wlr_surface *surface = view->wlr_surface; -- -- if (!surface->buffer) { -- return false; -- } -- -- if ((float) surface->current.scale != wlr_output->scale || -- surface->current.transform != wlr_output->transform) { -- return false; -- } -- -- wlr_output_attach_buffer(wlr_output, &surface->buffer->base); -- return wlr_output_commit(wlr_output); --} -- - static void - output_enable(struct cg_output *output) - { -@@ -249,6 +54,9 @@ output_enable(struct cg_output *output) - wlr_output_layout_add_auto(output->server->output_layout, wlr_output); - wlr_output_enable(wlr_output, true); - wlr_output_commit(wlr_output); -+ -+ output->scene_output = wlr_scene_get_scene_output(output->server->scene, wlr_output); -+ assert(output->scene_output != NULL); - } - - static void -@@ -261,6 +69,8 @@ output_disable(struct cg_output *output) - return; - } - -+ output->scene_output = NULL; -+ - wlr_log(WLR_DEBUG, "Disabling output %s", wlr_output->name); - wlr_output_enable(wlr_output, false); - wlr_output_layout_remove(output->server->output_layout, wlr_output); -@@ -268,93 +78,19 @@ output_disable(struct cg_output *output) - } - - static void --damage_surface_iterator(struct cg_output *output, struct wlr_surface *surface, struct wlr_box *box, void *user_data) -+handle_output_frame(struct wl_listener *listener, void *data) - { -- struct wlr_output *wlr_output = output->wlr_output; -- bool whole = *(bool *) user_data; -- -- scale_box(box, output->wlr_output->scale); -- -- if (whole) { -- wlr_output_damage_add_box(output->damage, box); -- } else if (pixman_region32_not_empty(&surface->buffer_damage)) { -- pixman_region32_t damage; -- pixman_region32_init(&damage); -- wlr_surface_get_effective_damage(surface, &damage); -- -- wlr_region_scale(&damage, &damage, wlr_output->scale); -- if (ceil(wlr_output->scale) > surface->current.scale) { -- /* When scaling up a surface it'll become -- blurry, so we need to expand the damage -- region. */ -- wlr_region_expand(&damage, &damage, ceil(wlr_output->scale) - surface->current.scale); -- } -- pixman_region32_translate(&damage, box->x, box->y); -- wlr_output_damage_add(output->damage, &damage); -- pixman_region32_fini(&damage); -- } --} -+ struct cg_output *output = wl_container_of(listener, output, frame); - --void --output_damage_surface(struct cg_output *output, struct wlr_surface *surface, double lx, double ly, bool whole) --{ - if (!output->wlr_output->enabled) { -- wlr_log(WLR_DEBUG, "Not adding damage for disabled output %s", output->wlr_output->name); - return; - } - -- double ox = lx, oy = ly; -- wlr_output_layout_output_coords(output->server->output_layout, output->wlr_output, &ox, &oy); -- output_surface_for_each_surface(output, surface, ox, oy, damage_surface_iterator, &whole); --} -+ wlr_scene_output_commit(output->scene_output); - --static void --handle_output_damage_frame(struct wl_listener *listener, void *data) --{ -- struct cg_output *output = wl_container_of(listener, output, damage_frame); -- struct send_frame_done_data frame_data = {0}; -- -- if (!output->wlr_output->enabled) { -- return; -- } -- -- /* Check if we can scan-out the primary view. */ -- static bool last_scanned_out = false; -- bool scanned_out = scan_out_primary_view(output); -- -- if (scanned_out && !last_scanned_out) { -- wlr_log(WLR_DEBUG, "Scanning out primary view"); -- } -- if (last_scanned_out && !scanned_out) { -- wlr_log(WLR_DEBUG, "Stopping primary view scan out"); -- } -- last_scanned_out = scanned_out; -- -- if (scanned_out) { -- goto frame_done; -- } -- -- bool needs_frame; -- pixman_region32_t damage; -- pixman_region32_init(&damage); -- if (!wlr_output_damage_attach_render(output->damage, &needs_frame, &damage)) { -- wlr_log(WLR_ERROR, "Cannot make damage output current"); -- goto damage_finish; -- } -- -- if (!needs_frame) { -- wlr_output_rollback(output->wlr_output); -- goto damage_finish; -- } -- -- output_render(output, &damage); -- --damage_finish: -- pixman_region32_fini(&damage); -- --frame_done: -- clock_gettime(CLOCK_MONOTONIC, &frame_data.when); -- send_frame_done(output, &frame_data); -+ struct timespec now = {0}; -+ clock_gettime(CLOCK_MONOTONIC, &now); -+ wlr_scene_output_send_frame_done(output->scene_output, &now); - } - - static void -@@ -395,11 +131,12 @@ output_destroy(struct cg_output *output) - { - struct cg_server *server = output->server; - -+ output->wlr_output->data = NULL; -+ - wl_list_remove(&output->destroy.link); - wl_list_remove(&output->commit.link); - wl_list_remove(&output->mode.link); -- wl_list_remove(&output->damage_frame.link); -- wl_list_remove(&output->damage_destroy.link); -+ wl_list_remove(&output->frame.link); - wl_list_remove(&output->link); - - wlr_output_layout_remove(server->output_layout, output->wlr_output); -@@ -421,18 +158,10 @@ output_destroy(struct cg_output *output) - } - } - --static void --handle_output_damage_destroy(struct wl_listener *listener, void *data) --{ -- struct cg_output *output = wl_container_of(listener, output, damage_destroy); -- output_destroy(output); --} -- - static void - handle_output_destroy(struct wl_listener *listener, void *data) - { - struct cg_output *output = wl_container_of(listener, output, destroy); -- wlr_output_damage_destroy(output->damage); - output_destroy(output); - } - -@@ -442,6 +171,11 @@ handle_new_output(struct wl_listener *listener, void *data) - struct cg_server *server = wl_container_of(listener, server, new_output); - struct wlr_output *wlr_output = data; - -+ if (!wlr_output_init_render(wlr_output, server->allocator, server->renderer)) { -+ wlr_log(WLR_ERROR, "Failed to initialize output rendering"); -+ return; -+ } -+ - struct cg_output *output = calloc(1, sizeof(struct cg_output)); - if (!output) { - wlr_log(WLR_ERROR, "Failed to allocate output"); -@@ -449,8 +183,9 @@ handle_new_output(struct wl_listener *listener, void *data) - } - - output->wlr_output = wlr_output; -+ wlr_output->data = output; - output->server = server; -- output->damage = wlr_output_damage_create(wlr_output); -+ - wl_list_insert(&server->outputs, &output->link); - - output->commit.notify = handle_output_commit; -@@ -459,15 +194,29 @@ handle_new_output(struct wl_listener *listener, void *data) - wl_signal_add(&wlr_output->events.mode, &output->mode); - output->destroy.notify = handle_output_destroy; - wl_signal_add(&wlr_output->events.destroy, &output->destroy); -- output->damage_frame.notify = handle_output_damage_frame; -- wl_signal_add(&output->damage->events.frame, &output->damage_frame); -- output->damage_destroy.notify = handle_output_damage_destroy; -- wl_signal_add(&output->damage->events.destroy, &output->damage_destroy); -- -- struct wlr_output_mode *preferred_mode = wlr_output_preferred_mode(wlr_output); -- if (preferred_mode) { -- wlr_output_set_mode(wlr_output, preferred_mode); -+ output->frame.notify = handle_output_frame; -+ wl_signal_add(&wlr_output->events.frame, &output->frame); -+ -+ if (!wl_list_empty(&wlr_output->modes)) { -+ struct wlr_output_mode *preferred_mode = wlr_output_preferred_mode(wlr_output); -+ if (preferred_mode) { -+ wlr_output_set_mode(wlr_output, preferred_mode); -+ } -+ if (!wlr_output_test(wlr_output)) { -+ struct wlr_output_mode *mode; -+ wl_list_for_each (mode, &wlr_output->modes, link) { -+ if (mode == preferred_mode) { -+ continue; -+ } -+ -+ wlr_output_set_mode(wlr_output, mode); -+ if (wlr_output_test(wlr_output)) { -+ break; -+ } -+ } -+ } - } -+ - wlr_output_set_transform(wlr_output, output->server->output_transform); - - if (server->output_mode == CAGE_MULTI_OUTPUT_MODE_LAST) { -diff --git a/output.h b/output.h -index b3fd3b4..ced06f6 100644 ---- a/output.h -+++ b/output.h -@@ -11,28 +11,17 @@ - struct cg_output { - struct cg_server *server; - struct wlr_output *wlr_output; -- struct wlr_output_damage *damage; -+ struct wlr_scene_output *scene_output; - - struct wl_listener commit; - struct wl_listener mode; - struct wl_listener destroy; -- struct wl_listener damage_frame; -- struct wl_listener damage_destroy; -+ struct wl_listener frame; - - struct wl_list link; // cg_server::outputs - }; - --typedef void (*cg_surface_iterator_func_t)(struct cg_output *output, struct wlr_surface *surface, struct wlr_box *box, -- void *user_data); -- - void handle_new_output(struct wl_listener *listener, void *data); --void output_surface_for_each_surface(struct cg_output *output, struct wlr_surface *surface, double ox, double oy, -- cg_surface_iterator_func_t iterator, void *user_data); --void output_view_for_each_popup_surface(struct cg_output *output, struct cg_view *view, -- cg_surface_iterator_func_t iterator, void *user_data); --void output_drag_icons_for_each_surface(struct cg_output *output, struct wl_list *drag_icons, -- cg_surface_iterator_func_t iterator, void *user_data); --void output_damage_surface(struct cg_output *output, struct wlr_surface *surface, double lx, double ly, bool whole); - void output_set_window_title(struct cg_output *output, const char *title); - - #endif -diff --git a/render.c b/render.c -deleted file mode 100644 -index 166a088..0000000 ---- a/render.c -+++ /dev/null -@@ -1,205 +0,0 @@ --/* -- * Cage: A Wayland kiosk. -- * -- * Copyright (C) 2018-2020 Jente Hidskes -- * Copyright (C) 2019 The Sway authors -- * -- * See the LICENSE file accompanying this file. -- */ -- --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include -- --#include "output.h" --#include "seat.h" --#include "server.h" --#include "util.h" --#include "view.h" -- --static void --scissor_output(struct wlr_output *output, pixman_box32_t *rect) --{ -- struct wlr_renderer *renderer = wlr_backend_get_renderer(output->backend); -- -- struct wlr_box box = { -- .x = rect->x1, -- .y = rect->y1, -- .width = rect->x2 - rect->x1, -- .height = rect->y2 - rect->y1, -- }; -- -- int output_width, output_height; -- wlr_output_transformed_resolution(output, &output_width, &output_height); -- enum wl_output_transform transform = wlr_output_transform_invert(output->transform); -- wlr_box_transform(&box, &box, transform, output_width, output_height); -- -- wlr_renderer_scissor(renderer, &box); --} -- --struct render_data { -- pixman_region32_t *damage; --}; -- --static void --render_texture(struct wlr_output *wlr_output, pixman_region32_t *output_damage, struct wlr_texture *texture, -- const struct wlr_box *box, const float matrix[static 9]) --{ -- struct wlr_renderer *renderer = wlr_backend_get_renderer(wlr_output->backend); -- -- pixman_region32_t damage; -- pixman_region32_init(&damage); -- pixman_region32_union_rect(&damage, &damage, box->x, box->y, box->width, box->height); -- pixman_region32_intersect(&damage, &damage, output_damage); -- if (!pixman_region32_not_empty(&damage)) { -- goto damage_finish; -- } -- -- int nrects; -- pixman_box32_t *rects = pixman_region32_rectangles(&damage, &nrects); -- for (int i = 0; i < nrects; i++) { -- scissor_output(wlr_output, &rects[i]); -- wlr_render_texture_with_matrix(renderer, texture, matrix, 1.0f); -- } -- --damage_finish: -- pixman_region32_fini(&damage); --} -- --static void --render_surface_iterator(struct cg_output *output, struct wlr_surface *surface, struct wlr_box *box, void *user_data) --{ -- struct render_data *data = user_data; -- struct wlr_output *wlr_output = output->wlr_output; -- pixman_region32_t *output_damage = data->damage; -- -- struct wlr_texture *texture = wlr_surface_get_texture(surface); -- if (!texture) { -- wlr_log(WLR_DEBUG, "Cannot obtain surface texture"); -- return; -- } -- -- scale_box(box, wlr_output->scale); -- -- float matrix[9]; -- enum wl_output_transform transform = wlr_output_transform_invert(surface->current.transform); -- wlr_matrix_project_box(matrix, box, transform, 0.0f, wlr_output->transform_matrix); -- -- render_texture(wlr_output, output_damage, texture, box, matrix); --} -- --static void --render_drag_icons(struct cg_output *output, pixman_region32_t *damage, struct wl_list *drag_icons) --{ -- struct render_data data = { -- .damage = damage, -- }; -- output_drag_icons_for_each_surface(output, drag_icons, render_surface_iterator, &data); --} -- --/** -- * Render all toplevels without descending into popups. -- */ --static void --render_view_toplevels(struct cg_view *view, struct cg_output *output, pixman_region32_t *damage) --{ -- struct render_data data = { -- .damage = damage, -- }; -- double ox = view->lx; -- double oy = view->ly; -- wlr_output_layout_output_coords(output->server->output_layout, output->wlr_output, &ox, &oy); -- output_surface_for_each_surface(output, view->wlr_surface, ox, oy, render_surface_iterator, &data); --} -- --static void --render_view_popups(struct cg_view *view, struct cg_output *output, pixman_region32_t *damage) --{ -- struct render_data data = { -- .damage = damage, -- }; -- output_view_for_each_popup_surface(output, view, render_surface_iterator, &data); --} -- --void --output_render(struct cg_output *output, pixman_region32_t *damage) --{ -- struct cg_server *server = output->server; -- struct wlr_output *wlr_output = output->wlr_output; -- -- struct wlr_renderer *renderer = wlr_backend_get_renderer(wlr_output->backend); -- if (!renderer) { -- wlr_log(WLR_DEBUG, "Expected the output backend to have a renderer"); -- return; -- } -- -- wlr_renderer_begin(renderer, wlr_output->width, wlr_output->height); -- -- if (!pixman_region32_not_empty(damage)) { -- wlr_log(WLR_DEBUG, "Output isn't damaged but needs a buffer swap"); -- goto renderer_end; -- } -- --#ifdef DEBUG -- if (server->debug_damage_tracking) { -- wlr_renderer_clear(renderer, (float[]){1.0f, 0.0f, 0.0f, 1.0f}); -- } --#endif -- -- float color[4] = {0.0f, 0.0f, 0.0f, 1.0f}; -- int nrects; -- pixman_box32_t *rects = pixman_region32_rectangles(damage, &nrects); -- for (int i = 0; i < nrects; i++) { -- scissor_output(wlr_output, &rects[i]); -- wlr_renderer_clear(renderer, color); -- } -- -- // TODO: render only top view, possibly use focused view for this, see #35. -- struct cg_view *view; -- wl_list_for_each_reverse (view, &server->views, link) { -- render_view_toplevels(view, output, damage); -- } -- -- struct cg_view *focused_view = seat_get_focus(server->seat); -- if (focused_view) { -- render_view_popups(focused_view, output, damage); -- } -- -- render_drag_icons(output, damage, &server->seat->drag_icons); -- --renderer_end: -- /* Draw software cursor in case hardware cursors aren't -- available. This is a no-op when they are. */ -- wlr_output_render_software_cursors(wlr_output, damage); -- wlr_renderer_scissor(renderer, NULL); -- wlr_renderer_end(renderer); -- -- int output_width, output_height; -- wlr_output_transformed_resolution(wlr_output, &output_width, &output_height); -- -- pixman_region32_t frame_damage; -- pixman_region32_init(&frame_damage); -- -- enum wl_output_transform transform = wlr_output_transform_invert(wlr_output->transform); -- wlr_region_transform(&frame_damage, &output->damage->current, transform, output_width, output_height); -- --#ifdef DEBUG -- if (server->debug_damage_tracking) { -- pixman_region32_union_rect(&frame_damage, &frame_damage, 0, 0, output_width, output_height); -- } --#endif -- -- wlr_output_set_damage(wlr_output, &frame_damage); -- pixman_region32_fini(&frame_damage); -- -- if (!wlr_output_commit(wlr_output)) { -- wlr_log(WLR_ERROR, "Could not commit output"); -- } --} -diff --git a/render.h b/render.h -deleted file mode 100644 -index 085b00b..0000000 ---- a/render.h -+++ /dev/null -@@ -1,8 +0,0 @@ --#ifndef CG_RENDER_H --#define CG_RENDER_H -- --#include "output.h" -- --void output_render(struct cg_output *output, pixman_region32_t *damage); -- --#endif -diff --git a/seat.c b/seat.c -index 08f25a3..5d80e33 100644 ---- a/seat.c -+++ b/seat.c -@@ -6,10 +6,14 @@ - * See the LICENSE file accompanying this file. - */ - -+#define _POSIX_C_SOURCE 200809L -+ - #include "config.h" - -+#include - #include - #include -+#include - #include - #include - #include -@@ -18,9 +22,11 @@ - #include - #include - #include -+#include - #include --#include - #include -+#include -+#include - #include - #include - #if CAGE_HAS_XWAYLAND -@@ -41,42 +47,42 @@ static void drag_icon_update_position(struct cg_drag_icon *drag_icon); - * menus or tooltips. This function tests if any of those are underneath the - * coordinates lx and ly (in output Layout Coordinates). If so, it sets the - * surface pointer to that wlr_surface and the sx and sy coordinates to the -- * coordinates relative to that surface's top-left corner. */ --static bool --view_at(struct cg_view *view, double lx, double ly, struct wlr_surface **surface, double *sx, double *sy) -+ * coordinates relative to that surface's top-left corner. -+ * -+ * This function iterates over all of our surfaces and attempts to find one -+ * under the cursor. If desktop_view_at returns a view, there is also a -+ * surface. There cannot be a surface without a view, either. It's both or -+ * nothing. -+ */ -+static struct cg_view * -+desktop_view_at(struct cg_server *server, double lx, double ly, struct wlr_surface **surface, double *sx, double *sy) - { -- double view_sx = lx - view->lx; -- double view_sy = ly - view->ly; -+ struct wlr_scene_node *node = wlr_scene_node_at(&server->scene->tree.node, lx, ly, sx, sy); -+ if (node == NULL || node->type != WLR_SCENE_NODE_BUFFER) { -+ return NULL; -+ } - -- double _sx, _sy; -- struct wlr_surface *_surface = view_wlr_surface_at(view, view_sx, view_sy, &_sx, &_sy); -- if (_surface != NULL) { -- *sx = _sx; -- *sy = _sy; -- *surface = _surface; -- return true; -+ struct wlr_scene_buffer *scene_buffer = wlr_scene_buffer_from_node(node); -+ struct wlr_scene_surface *scene_surface = wlr_scene_surface_from_buffer(scene_buffer); -+ if (!scene_surface) { -+ return NULL; - } - -- return false; --} -+ *surface = scene_surface->surface; - --/* This iterates over all of our surfaces and attempts to find one -- * under the cursor. This relies on server->views being ordered from -- * top-to-bottom. If desktop_view_at returns a view, there is also a -- * surface. There cannot be a surface without a view, either. It's -- * both or nothing. */ --static struct cg_view * --desktop_view_at(struct cg_server *server, double lx, double ly, struct wlr_surface **surface, double *sx, double *sy) --{ -- struct cg_view *view; -- -- wl_list_for_each (view, &server->views, link) { -- if (view_at(view, lx, ly, surface, sx, sy)) { -- return view; -+ /* Walk up the tree until we find a node with a data pointer. When done, -+ * we've found the node representing the view. */ -+ while (!node->data) { -+ if (!node->parent) { -+ node = NULL; -+ break; - } -+ -+ node = &node->parent->node; - } - -- return NULL; -+ assert(node != NULL); -+ return node->data; - } - - static void -@@ -127,16 +133,16 @@ update_capabilities(struct cg_seat *seat) - } - - static void --map_input_device_to_output(struct cg_seat *seat, struct wlr_input_device *device) -+map_input_device_to_output(struct cg_seat *seat, struct wlr_input_device *device, const char *output_name) - { -- if (!device->output_name) { -+ if (!output_name) { - wlr_log(WLR_INFO, "Input device %s cannot be mapped to an output device\n", device->name); - return; - } - - struct cg_output *output; - wl_list_for_each (output, &seat->server->outputs, link) { -- if (strcmp(device->output_name, output->wlr_output->name) == 0) { -+ if (strcmp(output_name, output->wlr_output->name) == 0) { - wlr_log(WLR_INFO, "Mapping input device %s to output device %s\n", device->name, - output->wlr_output->name); - wlr_cursor_map_input_to_output(seat->cursor, device, output->wlr_output); -@@ -154,7 +160,7 @@ handle_touch_destroy(struct wl_listener *listener, void *data) - struct cg_seat *seat = touch->seat; - - wl_list_remove(&touch->link); -- wlr_cursor_detach_input_device(seat->cursor, touch->device); -+ wlr_cursor_detach_input_device(seat->cursor, &touch->touch->base); - wl_list_remove(&touch->destroy.link); - free(touch); - -@@ -162,7 +168,7 @@ handle_touch_destroy(struct wl_listener *listener, void *data) - } - - static void --handle_new_touch(struct cg_seat *seat, struct wlr_input_device *device) -+handle_new_touch(struct cg_seat *seat, struct wlr_touch *wlr_touch) - { - struct cg_touch *touch = calloc(1, sizeof(struct cg_touch)); - if (!touch) { -@@ -171,14 +177,14 @@ handle_new_touch(struct cg_seat *seat, struct wlr_input_device *device) - } - - touch->seat = seat; -- touch->device = device; -- wlr_cursor_attach_input_device(seat->cursor, device); -+ touch->touch = wlr_touch; -+ wlr_cursor_attach_input_device(seat->cursor, &wlr_touch->base); - - wl_list_insert(&seat->touch, &touch->link); - touch->destroy.notify = handle_touch_destroy; -- wl_signal_add(&touch->device->events.destroy, &touch->destroy); -+ wl_signal_add(&wlr_touch->base.events.destroy, &touch->destroy); - -- map_input_device_to_output(seat, device); -+ map_input_device_to_output(seat, &wlr_touch->base, wlr_touch->output_name); - } - - static void -@@ -188,7 +194,7 @@ handle_pointer_destroy(struct wl_listener *listener, void *data) - struct cg_seat *seat = pointer->seat; - - wl_list_remove(&pointer->link); -- wlr_cursor_detach_input_device(seat->cursor, pointer->device); -+ wlr_cursor_detach_input_device(seat->cursor, &pointer->pointer->base); - wl_list_remove(&pointer->destroy.link); - free(pointer); - -@@ -196,7 +202,7 @@ handle_pointer_destroy(struct wl_listener *listener, void *data) - } - - static void --handle_new_pointer(struct cg_seat *seat, struct wlr_input_device *device) -+handle_new_pointer(struct cg_seat *seat, struct wlr_pointer *wlr_pointer) - { - struct cg_pointer *pointer = calloc(1, sizeof(struct cg_pointer)); - if (!pointer) { -@@ -205,21 +211,42 @@ handle_new_pointer(struct cg_seat *seat, struct wlr_input_device *device) - } - - pointer->seat = seat; -- pointer->device = device; -- wlr_cursor_attach_input_device(seat->cursor, device); -+ pointer->pointer = wlr_pointer; -+ wlr_cursor_attach_input_device(seat->cursor, &wlr_pointer->base); - - wl_list_insert(&seat->pointers, &pointer->link); - pointer->destroy.notify = handle_pointer_destroy; -- wl_signal_add(&device->events.destroy, &pointer->destroy); -+ wl_signal_add(&wlr_pointer->base.events.destroy, &pointer->destroy); -+ -+ map_input_device_to_output(seat, &wlr_pointer->base, wlr_pointer->output_name); -+} - -- map_input_device_to_output(seat, device); -+static void -+handle_virtual_pointer(struct wl_listener *listener, void *data) -+{ -+ struct cg_server *server = wl_container_of(listener, server, new_virtual_pointer); -+ struct cg_seat *seat = server->seat; -+ struct wlr_virtual_pointer_v1_new_pointer_event *event = data; -+ struct wlr_virtual_pointer_v1 *pointer = event->new_pointer; -+ struct wlr_pointer *wlr_pointer = &pointer->pointer; -+ -+ /* We'll want to map the device back to an output later, this is a bit -+ * sub-optimal (we could just keep the suggested_output), but just copy -+ * its name so we do like other devices -+ */ -+ if (event->suggested_output != NULL) { -+ wlr_pointer->output_name = strdup(event->suggested_output->name); -+ } -+ /* TODO: event->suggested_seat should be checked if we handle multiple seats */ -+ handle_new_pointer(seat, wlr_pointer); -+ update_capabilities(seat); - } - - static void --handle_modifier_event(struct wlr_input_device *device, struct cg_seat *seat) -+handle_modifier_event(struct wlr_keyboard *keyboard, struct cg_seat *seat) - { -- wlr_seat_set_keyboard(seat->seat, device); -- wlr_seat_keyboard_notify_modifiers(seat->seat, &device->keyboard->modifiers); -+ wlr_seat_set_keyboard(seat->seat, keyboard); -+ wlr_seat_keyboard_notify_modifiers(seat->seat, &keyboard->modifiers); - - wlr_idle_notify_activity(seat->server->idle, seat->seat); - } -@@ -249,18 +276,18 @@ handle_keybinding(struct cg_server *server, xkb_keysym_t sym) - } - - static void --handle_key_event(struct wlr_input_device *device, struct cg_seat *seat, void *data) -+handle_key_event(struct wlr_keyboard *keyboard, struct cg_seat *seat, void *data) - { -- struct wlr_event_keyboard_key *event = data; -+ struct wlr_keyboard_key_event *event = data; - - /* Translate from libinput keycode to an xkbcommon keycode. */ - xkb_keycode_t keycode = event->keycode + 8; - - const xkb_keysym_t *syms; -- int nsyms = xkb_state_key_get_syms(device->keyboard->xkb_state, keycode, &syms); -+ int nsyms = xkb_state_key_get_syms(keyboard->xkb_state, keycode, &syms); - - bool handled = false; -- uint32_t modifiers = wlr_keyboard_get_modifiers(device->keyboard); -+ uint32_t modifiers = wlr_keyboard_get_modifiers(keyboard); - if ((modifiers & WLR_MODIFIER_ALT) && event->state == WL_KEYBOARD_KEY_STATE_PRESSED) { - /* If Alt is held down and this button was pressed, we - * attempt to process it as a compositor -@@ -272,7 +299,7 @@ handle_key_event(struct wlr_input_device *device, struct cg_seat *seat, void *da - - if (!handled) { - /* Otherwise, we pass it along to the client. */ -- wlr_seat_set_keyboard(seat->seat, device); -+ wlr_seat_set_keyboard(seat->seat, keyboard); - wlr_seat_keyboard_notify_key(seat->seat, event->time_msec, event->keycode, event->state); - } - -@@ -283,27 +310,32 @@ static void - handle_keyboard_group_key(struct wl_listener *listener, void *data) - { - struct cg_keyboard_group *cg_group = wl_container_of(listener, cg_group, key); -- handle_key_event(cg_group->wlr_group->input_device, cg_group->seat, data); -+ handle_key_event(&cg_group->wlr_group->keyboard, cg_group->seat, data); - } - - static void - handle_keyboard_group_modifiers(struct wl_listener *listener, void *data) - { - struct cg_keyboard_group *group = wl_container_of(listener, group, modifiers); -- handle_modifier_event(group->wlr_group->input_device, group->seat); -+ handle_modifier_event(&group->wlr_group->keyboard, group->seat); - } - - static void --cg_keyboard_group_add(struct wlr_input_device *device, struct cg_seat *seat) -+cg_keyboard_group_add(struct wlr_keyboard *keyboard, struct cg_seat *seat, bool virtual) - { -- struct wlr_keyboard *wlr_keyboard = device->keyboard; -- -- struct cg_keyboard_group *group; -- wl_list_for_each (group, &seat->keyboard_groups, link) { -- struct wlr_keyboard_group *wlr_group = group->wlr_group; -- if (wlr_keyboard_group_add_keyboard(wlr_group, wlr_keyboard)) { -- wlr_log(WLR_DEBUG, "Added new keyboard to existing group"); -- return; -+ /* We apparently should not group virtual keyboards, -+ * so create a new group with it -+ */ -+ if (!virtual) { -+ struct cg_keyboard_group *group; -+ wl_list_for_each (group, &seat->keyboard_groups, link) { -+ if (group->is_virtual) -+ continue; -+ struct wlr_keyboard_group *wlr_group = group->wlr_group; -+ if (wlr_keyboard_group_add_keyboard(wlr_group, keyboard)) { -+ wlr_log(WLR_DEBUG, "Added new keyboard to existing group"); -+ return; -+ } - } - } - -@@ -315,6 +347,7 @@ cg_keyboard_group_add(struct wlr_input_device *device, struct cg_seat *seat) - return; - } - cg_group->seat = seat; -+ cg_group->is_virtual = virtual; - cg_group->wlr_group = wlr_keyboard_group_create(); - if (cg_group->wlr_group == NULL) { - wlr_log(WLR_ERROR, "Failed to create wlr keyboard group."); -@@ -322,14 +355,14 @@ cg_keyboard_group_add(struct wlr_input_device *device, struct cg_seat *seat) - } - - cg_group->wlr_group->data = cg_group; -- wlr_keyboard_set_keymap(&cg_group->wlr_group->keyboard, device->keyboard->keymap); -+ wlr_keyboard_set_keymap(&cg_group->wlr_group->keyboard, keyboard->keymap); - -- wlr_keyboard_set_repeat_info(&cg_group->wlr_group->keyboard, wlr_keyboard->repeat_info.rate, -- wlr_keyboard->repeat_info.delay); -+ wlr_keyboard_set_repeat_info(&cg_group->wlr_group->keyboard, keyboard->repeat_info.rate, -+ keyboard->repeat_info.delay); - - wlr_log(WLR_DEBUG, "Created keyboard group"); - -- wlr_keyboard_group_add_keyboard(cg_group->wlr_group, wlr_keyboard); -+ wlr_keyboard_group_add_keyboard(cg_group->wlr_group, keyboard); - wl_list_insert(&seat->keyboard_groups, &cg_group->link); - - wl_signal_add(&cg_group->wlr_group->keyboard.events.key, &cg_group->key); -@@ -347,36 +380,45 @@ cleanup: - } - - static void --handle_new_keyboard(struct cg_seat *seat, struct wlr_input_device *device) -+handle_new_keyboard(struct cg_seat *seat, struct wlr_keyboard *keyboard, bool virtual) - { - struct xkb_context *context = xkb_context_new(XKB_CONTEXT_NO_FLAGS); - if (!context) { -- wlr_log(WLR_ERROR, "Unable to create XBK context"); -+ wlr_log(WLR_ERROR, "Unable to create XKB context"); - return; - } - -- struct xkb_rule_names rules = {0}; -- rules.rules = getenv("XKB_DEFAULT_RULES"); -- rules.model = getenv("XKB_DEFAULT_MODEL"); -- rules.layout = getenv("XKB_DEFAULT_LAYOUT"); -- rules.variant = getenv("XKB_DEFAULT_VARIANT"); -- rules.options = getenv("XKB_DEFAULT_OPTIONS"); -- struct xkb_keymap *keymap = xkb_map_new_from_names(context, &rules, XKB_KEYMAP_COMPILE_NO_FLAGS); -+ struct xkb_keymap *keymap = xkb_keymap_new_from_names(context, NULL, XKB_KEYMAP_COMPILE_NO_FLAGS); - if (!keymap) { - wlr_log(WLR_ERROR, "Unable to configure keyboard: keymap does not exist"); - xkb_context_unref(context); - return; - } - -- wlr_keyboard_set_keymap(device->keyboard, keymap); -+ wlr_keyboard_set_keymap(keyboard, keymap); - - xkb_keymap_unref(keymap); - xkb_context_unref(context); -- wlr_keyboard_set_repeat_info(device->keyboard, 25, 600); -+ wlr_keyboard_set_repeat_info(keyboard, 25, 600); -+ -+ cg_keyboard_group_add(keyboard, seat, virtual); -+ -+ wlr_seat_set_keyboard(seat->seat, keyboard); -+} - -- cg_keyboard_group_add(device, seat); -+static void -+handle_virtual_keyboard(struct wl_listener *listener, void *data) -+{ -+ struct cg_server *server = wl_container_of(listener, server, new_virtual_keyboard); -+ struct cg_seat *seat = server->seat; -+ struct wlr_virtual_keyboard_v1 *keyboard = data; -+ struct wlr_keyboard *wlr_keyboard = &keyboard->keyboard; -+ -+ /* TODO: If multiple seats are supported, check keyboard->seat -+ * to select the appropriate one */ - -- wlr_seat_set_keyboard(seat->seat, device); -+ handle_new_keyboard(seat, wlr_keyboard, true); -+ update_capabilities(seat); - } - - static void -@@ -387,13 +429,13 @@ handle_new_input(struct wl_listener *listener, void *data) - - switch (device->type) { - case WLR_INPUT_DEVICE_KEYBOARD: -- handle_new_keyboard(seat, device); -+ handle_new_keyboard(seat, wlr_keyboard_from_input_device(device), false); - break; - case WLR_INPUT_DEVICE_POINTER: -- handle_new_pointer(seat, device); -+ handle_new_pointer(seat, wlr_pointer_from_input_device(device)); - break; - case WLR_INPUT_DEVICE_TOUCH: -- handle_new_touch(seat, device); -+ handle_new_touch(seat, wlr_touch_from_input_device(device)); - break; - case WLR_INPUT_DEVICE_SWITCH: - wlr_log(WLR_DEBUG, "Switch input is not implemented"); -@@ -448,10 +490,10 @@ static void - handle_touch_down(struct wl_listener *listener, void *data) - { - struct cg_seat *seat = wl_container_of(listener, seat, touch_down); -- struct wlr_event_touch_down *event = data; -+ struct wlr_touch_down_event *event = data; - - double lx, ly; -- wlr_cursor_absolute_to_layout_coords(seat->cursor, event->device, event->x, event->y, &lx, &ly); -+ wlr_cursor_absolute_to_layout_coords(seat->cursor, &event->touch->base, event->x, event->y, &lx, &ly); - - double sx, sy; - struct wlr_surface *surface; -@@ -466,7 +508,7 @@ handle_touch_down(struct wl_listener *listener, void *data) - seat->touch_id = event->touch_id; - seat->touch_lx = lx; - seat->touch_ly = ly; -- press_cursor_button(seat, event->device, event->time_msec, BTN_LEFT, WLR_BUTTON_PRESSED, lx, ly); -+ press_cursor_button(seat, &event->touch->base, event->time_msec, BTN_LEFT, WLR_BUTTON_PRESSED, lx, ly); - } - - wlr_idle_notify_activity(seat->server->idle, seat->seat); -@@ -476,14 +518,14 @@ static void - handle_touch_up(struct wl_listener *listener, void *data) - { - struct cg_seat *seat = wl_container_of(listener, seat, touch_up); -- struct wlr_event_touch_up *event = data; -+ struct wlr_touch_up_event *event = data; - - if (!wlr_seat_touch_get_point(seat->seat, event->touch_id)) { - return; - } - - if (wlr_seat_touch_num_points(seat->seat) == 1) { -- press_cursor_button(seat, event->device, event->time_msec, BTN_LEFT, WLR_BUTTON_RELEASED, -+ press_cursor_button(seat, &event->touch->base, event->time_msec, BTN_LEFT, WLR_BUTTON_RELEASED, - seat->touch_lx, seat->touch_ly); - } - -@@ -495,14 +537,14 @@ static void - handle_touch_motion(struct wl_listener *listener, void *data) - { - struct cg_seat *seat = wl_container_of(listener, seat, touch_motion); -- struct wlr_event_touch_motion *event = data; -+ struct wlr_touch_motion_event *event = data; - - if (!wlr_seat_touch_get_point(seat->seat, event->touch_id)) { - return; - } - - double lx, ly; -- wlr_cursor_absolute_to_layout_coords(seat->cursor, event->device, event->x, event->y, &lx, &ly); -+ wlr_cursor_absolute_to_layout_coords(seat->cursor, &event->touch->base, event->x, event->y, &lx, &ly); - - double sx, sy; - struct wlr_surface *surface; -@@ -536,7 +578,7 @@ static void - handle_cursor_axis(struct wl_listener *listener, void *data) - { - struct cg_seat *seat = wl_container_of(listener, seat, cursor_axis); -- struct wlr_event_pointer_axis *event = data; -+ struct wlr_pointer_axis_event *event = data; - - wlr_seat_pointer_notify_axis(seat->seat, event->time_msec, event->orientation, event->delta, - event->delta_discrete, event->source); -@@ -547,10 +589,10 @@ static void - handle_cursor_button(struct wl_listener *listener, void *data) - { - struct cg_seat *seat = wl_container_of(listener, seat, cursor_button); -- struct wlr_event_pointer_button *event = data; -+ struct wlr_pointer_button_event *event = data; - - wlr_seat_pointer_notify_button(seat->seat, event->time_msec, event->button, event->state); -- press_cursor_button(seat, event->device, event->time_msec, event->button, event->state, seat->cursor->x, -+ press_cursor_button(seat, &event->pointer->base, event->time_msec, event->button, event->state, seat->cursor->x, - seat->cursor->y); - wlr_idle_notify_activity(seat->server->idle, seat->seat); - } -@@ -569,10 +611,7 @@ process_cursor_motion(struct cg_seat *seat, uint32_t time) - } else { - wlr_seat_pointer_notify_enter(wlr_seat, surface, sx, sy); - -- bool focus_changed = wlr_seat->pointer_state.focused_surface != surface; -- if (!focus_changed && time > 0) { -- wlr_seat_pointer_notify_motion(wlr_seat, time, sx, sy); -- } -+ wlr_seat_pointer_notify_motion(wlr_seat, time, sx, sy); - } - - struct cg_drag_icon *drag_icon; -@@ -587,9 +626,9 @@ static void - handle_cursor_motion_absolute(struct wl_listener *listener, void *data) - { - struct cg_seat *seat = wl_container_of(listener, seat, cursor_motion_absolute); -- struct wlr_event_pointer_motion_absolute *event = data; -+ struct wlr_pointer_motion_absolute_event *event = data; - -- wlr_cursor_warp_absolute(seat->cursor, event->device, event->x, event->y); -+ wlr_cursor_warp_absolute(seat->cursor, &event->pointer->base, event->x, event->y); - process_cursor_motion(seat, event->time_msec); - wlr_idle_notify_activity(seat->server->idle, seat->seat); - } -@@ -598,22 +637,13 @@ static void - handle_cursor_motion(struct wl_listener *listener, void *data) - { - struct cg_seat *seat = wl_container_of(listener, seat, cursor_motion); -- struct wlr_event_pointer_motion *event = data; -+ struct wlr_pointer_motion_event *event = data; - -- wlr_cursor_move(seat->cursor, event->device, event->delta_x, event->delta_y); -+ wlr_cursor_move(seat->cursor, &event->pointer->base, event->delta_x, event->delta_y); - process_cursor_motion(seat, event->time_msec); - wlr_idle_notify_activity(seat->server->idle, seat->seat); - } - --static void --drag_icon_damage(struct cg_drag_icon *drag_icon) --{ -- struct cg_output *output; -- wl_list_for_each (output, &drag_icon->seat->server->outputs, link) { -- output_damage_surface(output, drag_icon->wlr_drag_icon->surface, drag_icon->lx, drag_icon->ly, true); -- } --} -- - static void - drag_icon_update_position(struct cg_drag_icon *drag_icon) - { -@@ -621,8 +651,6 @@ drag_icon_update_position(struct cg_drag_icon *drag_icon) - struct cg_seat *seat = drag_icon->seat; - struct wlr_touch_point *point; - -- drag_icon_damage(drag_icon); -- - switch (wlr_icon->drag->grab_type) { - case WLR_DRAG_GRAB_KEYBOARD: - return; -@@ -640,7 +668,7 @@ drag_icon_update_position(struct cg_drag_icon *drag_icon) - break; - } - -- drag_icon_damage(drag_icon); -+ wlr_scene_node_set_position(&drag_icon->scene_tree->node, drag_icon->lx, drag_icon->ly); - } - - static void -@@ -650,6 +678,7 @@ handle_drag_icon_destroy(struct wl_listener *listener, void *data) - - wl_list_remove(&drag_icon->link); - wl_list_remove(&drag_icon->destroy.link); -+ wlr_scene_node_destroy(&drag_icon->scene_tree->node); - free(drag_icon); - } - -@@ -692,6 +721,11 @@ handle_start_drag(struct wl_listener *listener, void *data) - } - drag_icon->seat = seat; - drag_icon->wlr_drag_icon = wlr_drag_icon; -+ drag_icon->scene_tree = wlr_scene_subsurface_tree_create(&seat->server->scene->tree, wlr_drag_icon->surface); -+ if (!drag_icon->scene_tree) { -+ free(drag_icon); -+ return; -+ } - - drag_icon->destroy.notify = handle_drag_icon_destroy; - wl_signal_add(&wlr_drag_icon->events.destroy, &drag_icon->destroy); -@@ -812,6 +846,9 @@ seat_create(struct cg_server *server, struct wlr_backend *backend) - seat->new_input.notify = handle_new_input; - wl_signal_add(&backend->events.new_input, &seat->new_input); - -+ server->new_virtual_keyboard.notify = handle_virtual_keyboard; -+ server->new_virtual_pointer.notify = handle_virtual_pointer; -+ - wl_list_init(&seat->drag_icons); - seat->request_start_drag.notify = handle_request_start_drag; - wl_signal_add(&seat->seat->events.request_start_drag, &seat->request_start_drag); -@@ -840,7 +877,10 @@ struct cg_view * - seat_get_focus(struct cg_seat *seat) - { - struct wlr_surface *prev_surface = seat->seat->keyboard_state.focused_surface; -- return view_from_wlr_surface(seat->server, prev_surface); -+ if (!prev_surface) { -+ return NULL; -+ } -+ return view_from_wlr_surface(prev_surface); - } - - void -diff --git a/seat.h b/seat.h -index 188543d..52cbee4 100644 ---- a/seat.h -+++ b/seat.h -@@ -55,12 +55,13 @@ struct cg_keyboard_group { - struct wl_listener key; - struct wl_listener modifiers; - struct wl_list link; // cg_seat::keyboard_groups -+ bool is_virtual; - }; - - struct cg_pointer { - struct wl_list link; // seat::pointers - struct cg_seat *seat; -- struct wlr_input_device *device; -+ struct wlr_pointer *pointer; - - struct wl_listener destroy; - }; -@@ -68,7 +69,7 @@ struct cg_pointer { - struct cg_touch { - struct wl_list link; // seat::touch - struct cg_seat *seat; -- struct wlr_input_device *device; -+ struct wlr_touch *touch; - - struct wl_listener destroy; - }; -@@ -77,6 +78,7 @@ struct cg_drag_icon { - struct wl_list link; // seat::drag_icons - struct cg_seat *seat; - struct wlr_drag_icon *wlr_drag_icon; -+ struct wlr_scene_tree *scene_tree; - - /* The drag icon has a position in layout coordinates. */ - double lx, ly; -diff --git a/server.h b/server.h -index 817637b..082a435 100644 ---- a/server.h -+++ b/server.h -@@ -12,10 +12,6 @@ - #include - #endif - --#include "output.h" --#include "seat.h" --#include "view.h" -- - enum cg_multi_output_mode { - CAGE_MULTI_OUTPUT_MODE_EXTEND, - CAGE_MULTI_OUTPUT_MODE_LAST, -@@ -25,6 +21,8 @@ struct cg_server { - struct wl_display *wl_display; - struct wl_list views; - struct wlr_backend *backend; -+ struct wlr_renderer *renderer; -+ struct wlr_allocator *allocator; - - struct cg_seat *seat; - struct wlr_idle *idle; -@@ -34,6 +32,7 @@ struct cg_server { - - enum cg_multi_output_mode output_mode; - struct wlr_output_layout *output_layout; -+ struct wlr_scene *scene; - /* Includes disabled outputs; depending on the output_mode - * some outputs may be disabled. */ - struct wl_list outputs; // cg_output::link -@@ -41,6 +40,9 @@ struct cg_server { - - struct wl_listener xdg_toplevel_decoration; - struct wl_listener new_xdg_shell_surface; -+ -+ struct wl_listener new_virtual_keyboard; -+ struct wl_listener new_virtual_pointer; - #if CAGE_HAS_XWAYLAND - struct wl_listener new_xwayland_surface; - #endif -@@ -48,9 +50,6 @@ struct cg_server { - bool xdg_decoration; - bool allow_vt_switch; - enum wl_output_transform output_transform; --#ifdef DEBUG -- bool debug_damage_tracking; --#endif - }; - - #endif -diff --git a/util.c b/util.c -deleted file mode 100644 -index 95de499..0000000 ---- a/util.c -+++ /dev/null -@@ -1,36 +0,0 @@ --/* -- * Cage: A Wayland kiosk. -- * -- * Copyright (C) 2019 The Sway authors -- * -- * See the LICENSE file accompanying this file. -- */ -- --#include -- --#include "util.h" -- --int --scale_length(int length, int offset, float scale) --{ -- /** -- * One does not simply multiply the width by the scale. We allow fractional -- * scaling, which means the resulting scaled width might be a decimal. -- * So we round it. -- * -- * But even this can produce undesirable results depending on the X or Y -- * offset of the box. For example, with a scale of 1.5, a box with -- * width=1 should not scale to 2px if its X coordinate is 1, because the -- * X coordinate would have scaled to 2px. -- */ -- return round((offset + length) * scale) - round(offset * scale); --} -- --void --scale_box(struct wlr_box *box, float scale) --{ -- box->width = scale_length(box->width, box->x, scale); -- box->height = scale_length(box->height, box->y, scale); -- box->x = round(box->x * scale); -- box->y = round(box->y * scale); --} -diff --git a/util.h b/util.h -deleted file mode 100644 -index db6bc7d..0000000 ---- a/util.h -+++ /dev/null -@@ -1,11 +0,0 @@ --#ifndef CG_UTIL_H --#define CG_UTIL_H -- --#include -- --/** Apply scale to a width or height. */ --int scale_length(int length, int offset, float scale); -- --void scale_box(struct wlr_box *box, float scale); -- --#endif -diff --git a/view.c b/view.c -index 3f3b0ed..b4a3eca 100644 ---- a/view.c -+++ b/view.c -@@ -1,20 +1,20 @@ - /* - * Cage: A Wayland kiosk. - * -- * Copyright (C) 2018-2020 Jente Hidskes -+ * Copyright (C) 2018-2021 Jente Hidskes - * - * See the LICENSE file accompanying this file. - */ - - #define _POSIX_C_SOURCE 200809L - -+#include - #include - #include - #include - #include --#include - #include --#include -+#include - - #include "output.h" - #include "seat.h" -@@ -24,96 +24,6 @@ - #include "xwayland.h" - #endif - --static void --view_child_handle_commit(struct wl_listener *listener, void *data) --{ -- struct cg_view_child *child = wl_container_of(listener, child, commit); -- view_damage_part(child->view); --} -- --static void subsurface_create(struct cg_view *view, struct wlr_subsurface *wlr_subsurface); -- --static void --view_child_handle_new_subsurface(struct wl_listener *listener, void *data) --{ -- struct cg_view_child *child = wl_container_of(listener, child, new_subsurface); -- struct wlr_subsurface *wlr_subsurface = data; -- subsurface_create(child->view, wlr_subsurface); --} -- --void --view_child_finish(struct cg_view_child *child) --{ -- if (!child) { -- return; -- } -- -- view_damage_whole(child->view); -- -- wl_list_remove(&child->link); -- wl_list_remove(&child->commit.link); -- wl_list_remove(&child->new_subsurface.link); --} -- --void --view_child_init(struct cg_view_child *child, struct cg_view *view, struct wlr_surface *wlr_surface) --{ -- child->view = view; -- child->wlr_surface = wlr_surface; -- -- child->commit.notify = view_child_handle_commit; -- wl_signal_add(&wlr_surface->events.commit, &child->commit); -- child->new_subsurface.notify = view_child_handle_new_subsurface; -- wl_signal_add(&wlr_surface->events.new_subsurface, &child->new_subsurface); -- -- wl_list_insert(&view->children, &child->link); --} -- --static void --subsurface_destroy(struct cg_view_child *child) --{ -- if (!child) { -- return; -- } -- -- struct cg_subsurface *subsurface = (struct cg_subsurface *) child; -- wl_list_remove(&subsurface->destroy.link); -- view_child_finish(&subsurface->view_child); -- free(subsurface); --} -- --static void --subsurface_handle_destroy(struct wl_listener *listener, void *data) --{ -- struct cg_subsurface *subsurface = wl_container_of(listener, subsurface, destroy); -- struct cg_view_child *view_child = (struct cg_view_child *) subsurface; -- subsurface_destroy(view_child); --} -- --static void --subsurface_create(struct cg_view *view, struct wlr_subsurface *wlr_subsurface) --{ -- struct cg_subsurface *subsurface = calloc(1, sizeof(struct cg_subsurface)); -- if (!subsurface) { -- return; -- } -- -- view_child_init(&subsurface->view_child, view, wlr_subsurface->surface); -- subsurface->view_child.destroy = subsurface_destroy; -- subsurface->wlr_subsurface = wlr_subsurface; -- -- subsurface->destroy.notify = subsurface_handle_destroy; -- wl_signal_add(&wlr_subsurface->events.destroy, &subsurface->destroy); --} -- --static void --handle_new_subsurface(struct wl_listener *listener, void *data) --{ -- struct cg_view *view = wl_container_of(listener, view, new_subsurface); -- struct wlr_subsurface *wlr_subsurface = data; -- subsurface_create(view, wlr_subsurface); --} -- - char * - view_get_title(struct cg_view *view) - { -@@ -136,24 +46,6 @@ view_is_transient_for(struct cg_view *child, struct cg_view *parent) - return child->impl->is_transient_for(child, parent); - } - --void --view_damage_part(struct cg_view *view) --{ -- struct cg_output *output; -- wl_list_for_each (output, &view->server->outputs, link) { -- output_damage_surface(output, view->wlr_surface, view->lx, view->ly, false); -- } --} -- --void --view_damage_whole(struct cg_view *view) --{ -- struct cg_output *output; -- wl_list_for_each (output, &view->server->outputs, link) { -- output_damage_surface(output, view->wlr_surface, view->lx, view->ly, true); -- } --} -- - void - view_activate(struct cg_view *view, bool activate) - { -@@ -174,6 +66,9 @@ view_maximize(struct cg_view *view, struct wlr_box *layout_box) - { - view->lx = layout_box->x; - view->ly = layout_box->y; -+ -+ wlr_scene_node_set_position(&view->scene_tree->node, view->lx, view->ly); -+ - view->impl->maximize(view, layout_box->width, layout_box->height); - } - -@@ -185,33 +80,21 @@ view_center(struct cg_view *view, struct wlr_box *layout_box) - - view->lx = (layout_box->width - width) / 2; - view->ly = (layout_box->height - height) / 2; -+ -+ wlr_scene_node_set_position(&view->scene_tree->node, view->lx, view->ly); - } - - void - view_position(struct cg_view *view) - { -- struct wlr_box *layout_box = wlr_output_layout_get_box(view->server->output_layout, NULL); -+ struct wlr_box layout_box; -+ wlr_output_layout_get_box(view->server->output_layout, NULL, &layout_box); - -- if (view_is_primary(view) || view_extends_output_layout(view, layout_box)) { -- view_maximize(view, layout_box); -+ if (view_is_primary(view) || view_extends_output_layout(view, &layout_box)) { -+ view_maximize(view, &layout_box); - } else { -- view_center(view, layout_box); -- } --} -- --void --view_for_each_surface(struct cg_view *view, wlr_surface_iterator_func_t iterator, void *data) --{ -- view->impl->for_each_surface(view, iterator, data); --} -- --void --view_for_each_popup_surface(struct cg_view *view, wlr_surface_iterator_func_t iterator, void *data) --{ -- if (!view->impl->for_each_popup_surface) { -- return; -+ view_center(view, &layout_box); - } -- view->impl->for_each_popup_surface(view, iterator, data); - } - - void -@@ -219,31 +102,24 @@ view_unmap(struct cg_view *view) - { - wl_list_remove(&view->link); - -- wl_list_remove(&view->new_subsurface.link); -- -- struct cg_view_child *child, *tmp; -- wl_list_for_each_safe (child, tmp, &view->children, link) { -- child->destroy(child); -- } -+ wlr_scene_node_destroy(&view->scene_tree->node); - -+ view->wlr_surface->data = NULL; - view->wlr_surface = NULL; - } - - void - view_map(struct cg_view *view, struct wlr_surface *surface) - { -- view->wlr_surface = surface; -- -- struct wlr_subsurface *subsurface; -- wl_list_for_each (subsurface, &view->wlr_surface->subsurfaces_below, parent_link) { -- subsurface_create(view, subsurface); -- } -- wl_list_for_each (subsurface, &view->wlr_surface->subsurfaces_above, parent_link) { -- subsurface_create(view, subsurface); -+ view->scene_tree = wlr_scene_subsurface_tree_create(&view->server->scene->tree, surface); -+ if (!view->scene_tree) { -+ wl_resource_post_no_memory(surface->resource); -+ return; - } -+ view->scene_tree->node.data = view; - -- view->new_subsurface.notify = handle_new_subsurface; -- wl_signal_add(&view->wlr_surface->events.new_subsurface, &view->new_subsurface); -+ view->wlr_surface = surface; -+ surface->data = view; - - #if CAGE_HAS_XWAYLAND - /* We shouldn't position override-redirect windows. They set -@@ -283,24 +159,11 @@ view_init(struct cg_view *view, struct cg_server *server, enum cg_view_type type - view->server = server; - view->type = type; - view->impl = impl; -- -- wl_list_init(&view->children); - } - - struct cg_view * --view_from_wlr_surface(struct cg_server *server, struct wlr_surface *surface) --{ -- struct cg_view *view; -- wl_list_for_each (view, &server->views, link) { -- if (view->wlr_surface == surface) { -- return view; -- } -- } -- return NULL; --} -- --struct wlr_surface * --view_wlr_surface_at(struct cg_view *view, double sx, double sy, double *sub_x, double *sub_y) -+view_from_wlr_surface(struct wlr_surface *surface) - { -- return view->impl->wlr_surface_at(view, sx, sy, sub_x, sub_y); -+ assert(surface); -+ return surface->data; - } -diff --git a/view.h b/view.h -index cd16e42..5ae13dd 100644 ---- a/view.h -+++ b/view.h -@@ -5,9 +5,9 @@ - - #include - #include --#include --#include -+#include - #include -+#include - #if CAGE_HAS_XWAYLAND - #include - #endif -@@ -24,16 +24,14 @@ enum cg_view_type { - struct cg_view { - struct cg_server *server; - struct wl_list link; // server::views -- struct wl_list children; // cg_view_child::link - struct wlr_surface *wlr_surface; -+ struct wlr_scene_tree *scene_tree; - - /* The view has a position in layout coordinates. */ - int lx, ly; - - enum cg_view_type type; - const struct cg_view_impl *impl; -- -- struct wl_listener new_subsurface; - }; - - struct cg_view_impl { -@@ -44,47 +42,18 @@ struct cg_view_impl { - void (*activate)(struct cg_view *view, bool activate); - void (*maximize)(struct cg_view *view, int output_width, int output_height); - void (*destroy)(struct cg_view *view); -- void (*for_each_surface)(struct cg_view *view, wlr_surface_iterator_func_t iterator, void *data); -- void (*for_each_popup_surface)(struct cg_view *view, wlr_surface_iterator_func_t iterator, void *data); -- struct wlr_surface *(*wlr_surface_at)(struct cg_view *view, double sx, double sy, double *sub_x, double *sub_y); --}; -- --struct cg_view_child { -- struct cg_view *view; -- struct wlr_surface *wlr_surface; -- struct wl_list link; -- -- struct wl_listener commit; -- struct wl_listener new_subsurface; -- -- void (*destroy)(struct cg_view_child *child); --}; -- --struct cg_subsurface { -- struct cg_view_child view_child; -- struct wlr_subsurface *wlr_subsurface; -- -- struct wl_listener destroy; - }; - - char *view_get_title(struct cg_view *view); - bool view_is_primary(struct cg_view *view); - bool view_is_transient_for(struct cg_view *child, struct cg_view *parent); --void view_damage_part(struct cg_view *view); --void view_damage_whole(struct cg_view *view); - void view_activate(struct cg_view *view, bool activate); - void view_position(struct cg_view *view); --void view_for_each_surface(struct cg_view *view, wlr_surface_iterator_func_t iterator, void *data); --void view_for_each_popup_surface(struct cg_view *view, wlr_surface_iterator_func_t iterator, void *data); - void view_unmap(struct cg_view *view); - void view_map(struct cg_view *view, struct wlr_surface *surface); - void view_destroy(struct cg_view *view); - void view_init(struct cg_view *view, struct cg_server *server, enum cg_view_type type, const struct cg_view_impl *impl); - --struct cg_view *view_from_wlr_surface(struct cg_server *server, struct wlr_surface *surface); --struct wlr_surface *view_wlr_surface_at(struct cg_view *view, double sx, double sy, double *sub_x, double *sub_y); -- --void view_child_finish(struct cg_view_child *child); --void view_child_init(struct cg_view_child *child, struct cg_view *view, struct wlr_surface *wlr_surface); -+struct cg_view *view_from_wlr_surface(struct wlr_surface *surface); - - #endif -diff --git a/xdg_shell.c b/xdg_shell.c -index 2e42347..c577dc5 100644 ---- a/xdg_shell.c -+++ b/xdg_shell.c -@@ -6,10 +6,11 @@ - * See the LICENSE file accompanying this file. - */ - -+#include - #include - #include - #include --#include -+#include - #include - #include - -@@ -41,105 +42,47 @@ xdg_decoration_handle_request_mode(struct wl_listener *listener, void *data) - wlr_xdg_toplevel_decoration_v1_set_mode(xdg_decoration->wlr_decoration, mode); - } - --static void --xdg_popup_destroy(struct cg_view_child *child) --{ -- if (!child) { -- return; -- } -- -- struct cg_xdg_popup *popup = (struct cg_xdg_popup *) child; -- wl_list_remove(&popup->destroy.link); -- wl_list_remove(&popup->map.link); -- wl_list_remove(&popup->unmap.link); -- wl_list_remove(&popup->new_popup.link); -- view_child_finish(&popup->view_child); -- free(popup); --} -- --static void --handle_xdg_popup_map(struct wl_listener *listener, void *data) --{ -- struct cg_xdg_popup *popup = wl_container_of(listener, popup, map); -- view_damage_whole(popup->view_child.view); --} -- --static void --handle_xdg_popup_unmap(struct wl_listener *listener, void *data) -+static struct cg_view * -+popup_get_view(struct wlr_xdg_popup *popup) - { -- struct cg_xdg_popup *popup = wl_container_of(listener, popup, unmap); -- view_damage_whole(popup->view_child.view); --} -- --static void --handle_xdg_popup_destroy(struct wl_listener *listener, void *data) --{ -- struct cg_xdg_popup *popup = wl_container_of(listener, popup, destroy); -- struct cg_view_child *view_child = (struct cg_view_child *) popup; -- xdg_popup_destroy(view_child); --} -- --static void xdg_popup_create(struct cg_view *view, struct wlr_xdg_popup *wlr_popup); -+ while (true) { -+ if (popup->parent == NULL || !wlr_surface_is_xdg_surface(popup->parent)) { -+ return NULL; -+ } - --static void --popup_handle_new_xdg_popup(struct wl_listener *listener, void *data) --{ -- struct cg_xdg_popup *popup = wl_container_of(listener, popup, new_popup); -- struct wlr_xdg_popup *wlr_popup = data; -- xdg_popup_create(popup->view_child.view, wlr_popup); -+ struct wlr_xdg_surface *xdg_surface = wlr_xdg_surface_from_wlr_surface(popup->parent); -+ switch (xdg_surface->role) { -+ case WLR_XDG_SURFACE_ROLE_TOPLEVEL: -+ return xdg_surface->data; -+ case WLR_XDG_SURFACE_ROLE_POPUP: -+ popup = xdg_surface->popup; -+ break; -+ case WLR_XDG_SURFACE_ROLE_NONE: -+ return NULL; -+ } -+ } - } - - static void --popup_unconstrain(struct cg_xdg_popup *popup) -+popup_unconstrain(struct cg_view *view, struct wlr_xdg_popup *popup) - { -- struct cg_view *view = popup->view_child.view; - struct cg_server *server = view->server; -- struct wlr_box *popup_box = &popup->wlr_popup->geometry; -+ struct wlr_box *popup_box = &popup->current.geometry; - - struct wlr_output_layout *output_layout = server->output_layout; - struct wlr_output *wlr_output = - wlr_output_layout_output_at(output_layout, view->lx + popup_box->x, view->ly + popup_box->y); -- struct wlr_box *output_box = wlr_output_layout_get_box(output_layout, wlr_output); -+ struct wlr_box output_box; -+ wlr_output_layout_get_box(output_layout, wlr_output, &output_box); - - struct wlr_box output_toplevel_box = { -- .x = output_box->x - view->lx, -- .y = output_box->y - view->ly, -- .width = output_box->width, -- .height = output_box->height, -+ .x = output_box.x - view->lx, -+ .y = output_box.y - view->ly, -+ .width = output_box.width, -+ .height = output_box.height, - }; - -- wlr_xdg_popup_unconstrain_from_box(popup->wlr_popup, &output_toplevel_box); --} -- --static void --xdg_popup_create(struct cg_view *view, struct wlr_xdg_popup *wlr_popup) --{ -- struct cg_xdg_popup *popup = calloc(1, sizeof(struct cg_xdg_popup)); -- if (!popup) { -- return; -- } -- -- popup->wlr_popup = wlr_popup; -- view_child_init(&popup->view_child, view, wlr_popup->base->surface); -- popup->view_child.destroy = xdg_popup_destroy; -- popup->destroy.notify = handle_xdg_popup_destroy; -- wl_signal_add(&wlr_popup->base->events.destroy, &popup->destroy); -- popup->map.notify = handle_xdg_popup_map; -- wl_signal_add(&wlr_popup->base->events.map, &popup->map); -- popup->unmap.notify = handle_xdg_popup_unmap; -- wl_signal_add(&wlr_popup->base->events.unmap, &popup->unmap); -- popup->new_popup.notify = popup_handle_new_xdg_popup; -- wl_signal_add(&wlr_popup->base->events.new_popup, &popup->new_popup); -- -- popup_unconstrain(popup); --} -- --static void --handle_new_xdg_popup(struct wl_listener *listener, void *data) --{ -- struct cg_xdg_shell_view *xdg_shell_view = wl_container_of(listener, xdg_shell_view, new_popup); -- struct wlr_xdg_popup *wlr_popup = data; -- xdg_popup_create(&xdg_shell_view->view, wlr_popup); -+ wlr_xdg_popup_unconstrain_from_box(popup, &output_toplevel_box); - } - - static struct cg_xdg_shell_view * -@@ -152,7 +95,7 @@ static char * - get_title(struct cg_view *view) - { - struct cg_xdg_shell_view *xdg_shell_view = xdg_shell_view_from_view(view); -- return xdg_shell_view->xdg_surface->toplevel->title; -+ return xdg_shell_view->xdg_toplevel->title; - } - - static void -@@ -161,7 +104,7 @@ get_geometry(struct cg_view *view, int *width_out, int *height_out) - struct cg_xdg_shell_view *xdg_shell_view = xdg_shell_view_from_view(view); - struct wlr_box geom; - -- wlr_xdg_surface_get_geometry(xdg_shell_view->xdg_surface, &geom); -+ wlr_xdg_surface_get_geometry(xdg_shell_view->xdg_toplevel->base, &geom); - *width_out = geom.width; - *height_out = geom.height; - } -@@ -170,9 +113,9 @@ static bool - is_primary(struct cg_view *view) - { - struct cg_xdg_shell_view *xdg_shell_view = xdg_shell_view_from_view(view); -- struct wlr_xdg_surface *parent = xdg_shell_view->xdg_surface->toplevel->parent; -- /* FIXME: role is 0? */ -- return parent == NULL; /*&& role == WLR_XDG_SURFACE_ROLE_TOPLEVEL */ -+ struct wlr_xdg_toplevel *parent = xdg_shell_view->xdg_toplevel->parent; -+ -+ return parent == NULL; - } - - static bool -@@ -182,14 +125,13 @@ is_transient_for(struct cg_view *child, struct cg_view *parent) - return false; - } - struct cg_xdg_shell_view *_child = xdg_shell_view_from_view(child); -- struct wlr_xdg_surface *xdg_surface = _child->xdg_surface; -+ struct wlr_xdg_toplevel *xdg_toplevel = _child->xdg_toplevel; - struct cg_xdg_shell_view *_parent = xdg_shell_view_from_view(parent); -- struct wlr_xdg_surface *parent_xdg_surface = _parent->xdg_surface; -- while (xdg_surface) { -- if (xdg_surface->toplevel->parent == parent_xdg_surface) { -+ while (xdg_toplevel) { -+ if (xdg_toplevel->parent == _parent->xdg_toplevel) { - return true; - } -- xdg_surface = xdg_surface->toplevel->parent; -+ xdg_toplevel = xdg_toplevel->parent; - } - return false; - } -@@ -198,15 +140,15 @@ static void - activate(struct cg_view *view, bool activate) - { - struct cg_xdg_shell_view *xdg_shell_view = xdg_shell_view_from_view(view); -- wlr_xdg_toplevel_set_activated(xdg_shell_view->xdg_surface, activate); -+ wlr_xdg_toplevel_set_activated(xdg_shell_view->xdg_toplevel, activate); - } - - static void - maximize(struct cg_view *view, int output_width, int output_height) - { - struct cg_xdg_shell_view *xdg_shell_view = xdg_shell_view_from_view(view); -- wlr_xdg_toplevel_set_size(xdg_shell_view->xdg_surface, output_width, output_height); -- wlr_xdg_toplevel_set_maximized(xdg_shell_view->xdg_surface, true); -+ wlr_xdg_toplevel_set_size(xdg_shell_view->xdg_toplevel, output_width, output_height); -+ wlr_xdg_toplevel_set_maximized(xdg_shell_view->xdg_toplevel, true); - } - - static void -@@ -216,41 +158,21 @@ destroy(struct cg_view *view) - free(xdg_shell_view); - } - --static void --for_each_surface(struct cg_view *view, wlr_surface_iterator_func_t iterator, void *data) --{ -- struct cg_xdg_shell_view *xdg_shell_view = xdg_shell_view_from_view(view); -- wlr_xdg_surface_for_each_surface(xdg_shell_view->xdg_surface, iterator, data); --} -- --static void --for_each_popup_surface(struct cg_view *view, wlr_surface_iterator_func_t iterator, void *data) --{ -- struct cg_xdg_shell_view *xdg_shell_view = xdg_shell_view_from_view(view); -- wlr_xdg_surface_for_each_popup_surface(xdg_shell_view->xdg_surface, iterator, data); --} -- --static struct wlr_surface * --wlr_surface_at(struct cg_view *view, double sx, double sy, double *sub_x, double *sub_y) --{ -- struct cg_xdg_shell_view *xdg_shell_view = xdg_shell_view_from_view(view); -- return wlr_xdg_surface_surface_at(xdg_shell_view->xdg_surface, sx, sy, sub_x, sub_y); --} -- - static void - handle_xdg_shell_surface_request_fullscreen(struct wl_listener *listener, void *data) - { - struct cg_xdg_shell_view *xdg_shell_view = wl_container_of(listener, xdg_shell_view, request_fullscreen); -- struct wlr_xdg_toplevel_set_fullscreen_event *event = data; -- wlr_xdg_toplevel_set_fullscreen(xdg_shell_view->xdg_surface, event->fullscreen); --} - --static void --handle_xdg_shell_surface_commit(struct wl_listener *listener, void *data) --{ -- struct cg_xdg_shell_view *xdg_shell_view = wl_container_of(listener, xdg_shell_view, commit); -- struct cg_view *view = &xdg_shell_view->view; -- view_damage_part(view); -+ /** -+ * Certain clients do not like figuring out their own window geometry if they -+ * display in fullscreen mode, so we set it here. -+ */ -+ struct wlr_box layout_box; -+ wlr_output_layout_get_box(xdg_shell_view->view.server->output_layout, NULL, &layout_box); -+ wlr_xdg_toplevel_set_size(xdg_shell_view->xdg_toplevel, layout_box.width, layout_box.height); -+ -+ wlr_xdg_toplevel_set_fullscreen(xdg_shell_view->xdg_toplevel, -+ xdg_shell_view->xdg_toplevel->requested.fullscreen); - } - - static void -@@ -259,10 +181,6 @@ handle_xdg_shell_surface_unmap(struct wl_listener *listener, void *data) - struct cg_xdg_shell_view *xdg_shell_view = wl_container_of(listener, xdg_shell_view, unmap); - struct cg_view *view = &xdg_shell_view->view; - -- view_damage_whole(view); -- -- wl_list_remove(&xdg_shell_view->commit.link); -- - view_unmap(view); - } - -@@ -272,12 +190,7 @@ handle_xdg_shell_surface_map(struct wl_listener *listener, void *data) - struct cg_xdg_shell_view *xdg_shell_view = wl_container_of(listener, xdg_shell_view, map); - struct cg_view *view = &xdg_shell_view->view; - -- xdg_shell_view->commit.notify = handle_xdg_shell_surface_commit; -- wl_signal_add(&xdg_shell_view->xdg_surface->surface->events.commit, &xdg_shell_view->commit); -- -- view_map(view, xdg_shell_view->xdg_surface->surface); -- -- view_damage_whole(view); -+ view_map(view, xdg_shell_view->xdg_toplevel->base->surface); - } - - static void -@@ -290,8 +203,7 @@ handle_xdg_shell_surface_destroy(struct wl_listener *listener, void *data) - wl_list_remove(&xdg_shell_view->unmap.link); - wl_list_remove(&xdg_shell_view->destroy.link); - wl_list_remove(&xdg_shell_view->request_fullscreen.link); -- wl_list_remove(&xdg_shell_view->new_popup.link); -- xdg_shell_view->xdg_surface = NULL; -+ xdg_shell_view->xdg_toplevel = NULL; - - view_destroy(view); - } -@@ -304,9 +216,6 @@ static const struct cg_view_impl xdg_shell_view_impl = { - .activate = activate, - .maximize = maximize, - .destroy = destroy, -- .for_each_surface = for_each_surface, -- .for_each_popup_surface = for_each_popup_surface, -- .wlr_surface_at = wlr_surface_at, - }; - - void -@@ -315,29 +224,64 @@ handle_xdg_shell_surface_new(struct wl_listener *listener, void *data) - struct cg_server *server = wl_container_of(listener, server, new_xdg_shell_surface); - struct wlr_xdg_surface *xdg_surface = data; - -- if (xdg_surface->role != WLR_XDG_SURFACE_ROLE_TOPLEVEL) { -- return; -- } -+ switch (xdg_surface->role) { -+ case WLR_XDG_SURFACE_ROLE_TOPLEVEL:; -+ struct cg_xdg_shell_view *xdg_shell_view = calloc(1, sizeof(struct cg_xdg_shell_view)); -+ if (!xdg_shell_view) { -+ wlr_log(WLR_ERROR, "Failed to allocate XDG Shell view"); -+ return; -+ } - -- struct cg_xdg_shell_view *xdg_shell_view = calloc(1, sizeof(struct cg_xdg_shell_view)); -- if (!xdg_shell_view) { -- wlr_log(WLR_ERROR, "Failed to allocate XDG Shell view"); -- return; -- } -+ view_init(&xdg_shell_view->view, server, CAGE_XDG_SHELL_VIEW, &xdg_shell_view_impl); -+ xdg_shell_view->xdg_toplevel = xdg_surface->toplevel; -+ -+ xdg_shell_view->map.notify = handle_xdg_shell_surface_map; -+ wl_signal_add(&xdg_surface->events.map, &xdg_shell_view->map); -+ xdg_shell_view->unmap.notify = handle_xdg_shell_surface_unmap; -+ wl_signal_add(&xdg_surface->events.unmap, &xdg_shell_view->unmap); -+ xdg_shell_view->destroy.notify = handle_xdg_shell_surface_destroy; -+ wl_signal_add(&xdg_surface->events.destroy, &xdg_shell_view->destroy); -+ xdg_shell_view->request_fullscreen.notify = handle_xdg_shell_surface_request_fullscreen; -+ wl_signal_add(&xdg_surface->toplevel->events.request_fullscreen, &xdg_shell_view->request_fullscreen); -+ -+ xdg_surface->data = xdg_shell_view; -+ break; -+ case WLR_XDG_SURFACE_ROLE_POPUP:; -+ struct wlr_xdg_popup *popup = xdg_surface->popup; -+ struct cg_view *view = popup_get_view(popup); -+ if (view == NULL) { -+ return; -+ } -+ -+ struct wlr_scene_tree *parent_scene_tree = NULL; -+ struct wlr_xdg_surface *parent = wlr_xdg_surface_from_wlr_surface(popup->parent); -+ switch (parent->role) { -+ case WLR_XDG_SURFACE_ROLE_TOPLEVEL:; -+ parent_scene_tree = view->scene_tree; -+ break; -+ case WLR_XDG_SURFACE_ROLE_POPUP: -+ parent_scene_tree = parent->data; -+ break; -+ case WLR_XDG_SURFACE_ROLE_NONE: -+ break; -+ } -+ if (parent_scene_tree == NULL) { -+ return; -+ } - -- view_init(&xdg_shell_view->view, server, CAGE_XDG_SHELL_VIEW, &xdg_shell_view_impl); -- xdg_shell_view->xdg_surface = xdg_surface; -- -- xdg_shell_view->map.notify = handle_xdg_shell_surface_map; -- wl_signal_add(&xdg_surface->events.map, &xdg_shell_view->map); -- xdg_shell_view->unmap.notify = handle_xdg_shell_surface_unmap; -- wl_signal_add(&xdg_surface->events.unmap, &xdg_shell_view->unmap); -- xdg_shell_view->destroy.notify = handle_xdg_shell_surface_destroy; -- wl_signal_add(&xdg_surface->events.destroy, &xdg_shell_view->destroy); -- xdg_shell_view->request_fullscreen.notify = handle_xdg_shell_surface_request_fullscreen; -- wl_signal_add(&xdg_surface->toplevel->events.request_fullscreen, &xdg_shell_view->request_fullscreen); -- xdg_shell_view->new_popup.notify = handle_new_xdg_popup; -- wl_signal_add(&xdg_surface->events.new_popup, &xdg_shell_view->new_popup); -+ struct wlr_scene_tree *popup_scene_tree = wlr_scene_xdg_surface_create(parent_scene_tree, xdg_surface); -+ if (popup_scene_tree == NULL) { -+ wlr_log(WLR_ERROR, "Failed to allocate scene-graph node for XDG popup"); -+ return; -+ } -+ -+ popup_unconstrain(view, popup); -+ -+ xdg_surface->data = popup_scene_tree; -+ break; -+ case WLR_XDG_SURFACE_ROLE_NONE: -+ assert(false); // unreachable -+ } - } - - void -diff --git a/xdg_shell.h b/xdg_shell.h -index 45d87db..2fd506a 100644 ---- a/xdg_shell.h -+++ b/xdg_shell.h -@@ -9,24 +9,12 @@ - - struct cg_xdg_shell_view { - struct cg_view view; -- struct wlr_xdg_surface *xdg_surface; -+ struct wlr_xdg_toplevel *xdg_toplevel; - - struct wl_listener destroy; - struct wl_listener unmap; - struct wl_listener map; -- struct wl_listener commit; - struct wl_listener request_fullscreen; -- struct wl_listener new_popup; --}; -- --struct cg_xdg_popup { -- struct cg_view_child view_child; -- struct wlr_xdg_popup *wlr_popup; -- -- struct wl_listener destroy; -- struct wl_listener map; -- struct wl_listener unmap; -- struct wl_listener new_popup; - }; - - struct cg_xdg_decoration { -diff --git a/xwayland.c b/xwayland.c -index 2aae0f9..ef37a49 100644 ---- a/xwayland.c -+++ b/xwayland.c -@@ -9,7 +9,6 @@ - #include - #include - #include --#include - #include - #include - -@@ -96,18 +95,6 @@ destroy(struct cg_view *view) - free(xwayland_view); - } - --static void --for_each_surface(struct cg_view *view, wlr_surface_iterator_func_t iterator, void *data) --{ -- wlr_surface_for_each_surface(view->wlr_surface, iterator, data); --} -- --static struct wlr_surface * --wlr_surface_at(struct cg_view *view, double sx, double sy, double *sub_x, double *sub_y) --{ -- return wlr_surface_surface_at(view->wlr_surface, sx, sy, sub_x, sub_y); --} -- - static void - handle_xwayland_surface_request_fullscreen(struct wl_listener *listener, void *data) - { -@@ -116,24 +103,12 @@ handle_xwayland_surface_request_fullscreen(struct wl_listener *listener, void *d - wlr_xwayland_surface_set_fullscreen(xwayland_view->xwayland_surface, xwayland_surface->fullscreen); - } - --static void --handle_xwayland_surface_commit(struct wl_listener *listener, void *data) --{ -- struct cg_xwayland_view *xwayland_view = wl_container_of(listener, xwayland_view, commit); -- struct cg_view *view = &xwayland_view->view; -- view_damage_part(view); --} -- - static void - handle_xwayland_surface_unmap(struct wl_listener *listener, void *data) - { - struct cg_xwayland_view *xwayland_view = wl_container_of(listener, xwayland_view, unmap); - struct cg_view *view = &xwayland_view->view; - -- view_damage_whole(view); -- -- wl_list_remove(&xwayland_view->commit.link); -- - view_unmap(view); - } - -@@ -148,12 +123,7 @@ handle_xwayland_surface_map(struct wl_listener *listener, void *data) - view->ly = xwayland_view->xwayland_surface->y; - } - -- xwayland_view->commit.notify = handle_xwayland_surface_commit; -- wl_signal_add(&xwayland_view->xwayland_surface->surface->events.commit, &xwayland_view->commit); -- - view_map(view, xwayland_view->xwayland_surface->surface); -- -- view_damage_whole(view); - } - - static void -@@ -179,10 +149,6 @@ static const struct cg_view_impl xwayland_view_impl = { - .activate = activate, - .maximize = maximize, - .destroy = destroy, -- .for_each_surface = for_each_surface, -- /* XWayland doesn't have a separate popup iterator. */ -- .for_each_popup_surface = NULL, -- .wlr_surface_at = wlr_surface_at, - }; - - void -diff --git a/xwayland.h b/xwayland.h -index d257f57..31edb8f 100644 ---- a/xwayland.h -+++ b/xwayland.h -@@ -12,7 +12,6 @@ struct cg_xwayland_view { - struct wl_listener destroy; - struct wl_listener unmap; - struct wl_listener map; -- struct wl_listener commit; - struct wl_listener request_fullscreen; - }; - From d25438660f247106aeaefa3ff883254282332c93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 6 Oct 2024 18:56:32 +0200 Subject: [PATCH 848/971] upgpkg: clonezilla-unstable 5.6.22-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index a930449..d9dba78 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.21 + pkgver = 5.6.22 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.21.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.22.tar.xz source = usrbin.patch - sha512sums = 3839a217e579e529783d4078124055c10e40ed7450d496a7be3aa951bb169c19f0fbe0aa88a92299ae47a4ba986c79bb1d9bee6843d4d436bedbdfaef2faf79d + sha512sums = e1b58bbde1cf6fe42b94e5788207b9e1fb88b48522a0bae90567dd60ff26167aadcab0dfde2a1fb84701e0409928f991c91f4c44070fa740425095efb25657cc sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index dd53299..df4f371 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.21 +pkgver=5.6.22 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('3839a217e579e529783d4078124055c10e40ed7450d496a7be3aa951bb169c19f0fbe0aa88a92299ae47a4ba986c79bb1d9bee6843d4d436bedbdfaef2faf79d' +sha512sums=('e1b58bbde1cf6fe42b94e5788207b9e1fb88b48522a0bae90567dd60ff26167aadcab0dfde2a1fb84701e0409928f991c91f4c44070fa740425095efb25657cc' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 04df95d814a644e1e14a1e9271f50ebf04607f9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 6 Oct 2024 18:56:32 +0200 Subject: [PATCH 849/971] upgpkg: clonezilla-unstable 5.6.22-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index a930449..d9dba78 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.21 + pkgver = 5.6.22 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.21.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.22.tar.xz source = usrbin.patch - sha512sums = 3839a217e579e529783d4078124055c10e40ed7450d496a7be3aa951bb169c19f0fbe0aa88a92299ae47a4ba986c79bb1d9bee6843d4d436bedbdfaef2faf79d + sha512sums = e1b58bbde1cf6fe42b94e5788207b9e1fb88b48522a0bae90567dd60ff26167aadcab0dfde2a1fb84701e0409928f991c91f4c44070fa740425095efb25657cc sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index dd53299..df4f371 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.21 +pkgver=5.6.22 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('3839a217e579e529783d4078124055c10e40ed7450d496a7be3aa951bb169c19f0fbe0aa88a92299ae47a4ba986c79bb1d9bee6843d4d436bedbdfaef2faf79d' +sha512sums=('e1b58bbde1cf6fe42b94e5788207b9e1fb88b48522a0bae90567dd60ff26167aadcab0dfde2a1fb84701e0409928f991c91f4c44070fa740425095efb25657cc' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 03c53b67f37be07868c228a6c1ca790c7f5296ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 6 Oct 2024 18:56:42 +0200 Subject: [PATCH 850/971] upgpkg: bino 2.3-1 upstream release --- bino/.SRCINFO | 8 ++++---- bino/PKGBUILD | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bino/.SRCINFO b/bino/.SRCINFO index 72eb71e..38e61f3 100644 --- a/bino/.SRCINFO +++ b/bino/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = bino pkgdesc = A video player with focus on 3D and Virtual Reality - pkgver = 2.2 + pkgver = 2.3 pkgrel = 1 url = https://bino3d.org/ arch = x86_64 @@ -10,10 +10,10 @@ pkgbase = bino depends = qt6-multimedia depends = qt6-svg depends = qvr - source = https://bino3d.org/releases/bino-2.2.tar.gz - source = https://bino3d.org/releases/bino-2.2.tar.gz.sig + source = https://bino3d.org/releases/bino-2.3.tar.gz + source = https://bino3d.org/releases/bino-2.3.tar.gz.sig validpgpkeys = 2F61B4828BBA779AECB3F32703A2A4AB1E32FD34 - sha512sums = 73e6207db4a71673f88ebbd8999054acfc8f70a069fc74089976786082373d0eb7ae675786b1d3cf8907987267d9b1b50ddb05366b8b70f880c6898da765cd7b + sha512sums = 9750deb7e777237c87d3bd1e7d5411b23b55c4c3bac5361848effb59c3253fb4f9355fddbae62c922026318c349657a7fdfecdf4041cd756a92f0440c1e29f4c sha512sums = SKIP pkgname = bino diff --git a/bino/PKGBUILD b/bino/PKGBUILD index 954e504..c2b36f1 100644 --- a/bino/PKGBUILD +++ b/bino/PKGBUILD @@ -4,7 +4,7 @@ # Contributor: archtux pkgname=bino -pkgver=2.2 +pkgver=2.3 pkgrel=1 pkgdesc='A video player with focus on 3D and Virtual Reality' arch=('x86_64') @@ -13,7 +13,7 @@ license=('GPL-3.0-or-later') depends=('qt6-multimedia' 'qt6-svg' 'qvr') makedepends=('cmake' 'qt6-tools') source=(https://bino3d.org/releases/$pkgname-$pkgver.tar.gz{,.sig}) -sha512sums=('73e6207db4a71673f88ebbd8999054acfc8f70a069fc74089976786082373d0eb7ae675786b1d3cf8907987267d9b1b50ddb05366b8b70f880c6898da765cd7b' +sha512sums=('9750deb7e777237c87d3bd1e7d5411b23b55c4c3bac5361848effb59c3253fb4f9355fddbae62c922026318c349657a7fdfecdf4041cd756a92f0440c1e29f4c' 'SKIP') validpgpkeys=('2F61B4828BBA779AECB3F32703A2A4AB1E32FD34') From 884b57ad5fb2d61df5b952717a80c007cd8e38c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 9 Oct 2024 22:03:01 +0200 Subject: [PATCH 851/971] upgpkg: sierra-breeze-enhanced 2.0.1-1 upstream release --- sierra-breeze-enhanced/.SRCINFO | 10 +++--- sierra-breeze-enhanced/PKGBUILD | 56 ++++++++++++++++----------------- 2 files changed, 32 insertions(+), 34 deletions(-) diff --git a/sierra-breeze-enhanced/.SRCINFO b/sierra-breeze-enhanced/.SRCINFO index 8e9d60f..193b7aa 100644 --- a/sierra-breeze-enhanced/.SRCINFO +++ b/sierra-breeze-enhanced/.SRCINFO @@ -1,14 +1,14 @@ pkgbase = sierra-breeze-enhanced pkgdesc = A kwin decoration with support for transparency, rounded corners, multiple titlebar button presets and more - pkgver = 1.3.3 + pkgver = 2.0.1 pkgrel = 1 - url = https://github.com/kupiqu/SierraBreezeEnhanced/ + url = https://github.com/kupiqu/sierrabreezeenhanced arch = x86_64 - license = GPL3 + license = GPL-3.0-or-later makedepends = cmake makedepends = extra-cmake-modules depends = kwin - source = https://github.com/kupiqu/SierraBreezeEnhanced/archive/refs/tags/V1.3.3.tar.gz - sha256sums = 37d10ee089091e33b48d27829c0659a2240c55bcb8b762fddd03cc6ab59458c0 + source = https://github.com/kupiqu/sierrabreezeenhanced/archive/V2.0.1/sierra-breeze-enhanced-V2.0.1.tar.gz + sha512sums = 1c7f55e979c854135a4c6e21d9838df8de0b7dd0ee252f100c8b622e72224d19bf8e06318ad43367112f6c3422ac5ac44242b74635cce5e96107c1ea447ce838 pkgname = sierra-breeze-enhanced diff --git a/sierra-breeze-enhanced/PKGBUILD b/sierra-breeze-enhanced/PKGBUILD index b36a880..ba740c7 100644 --- a/sierra-breeze-enhanced/PKGBUILD +++ b/sierra-breeze-enhanced/PKGBUILD @@ -1,32 +1,30 @@ - # Maintainer: Leo sk +# Maintainer: Manuel Hüsers +# Contributor: Leo sk - pkgname=sierra-breeze-enhanced - _gitname=SierraBreezeEnhanced - pkgver=1.3.3 - pkgrel=1 - pkgdesc="A kwin decoration with support for transparency, rounded corners, multiple titlebar button presets and more" - arch=('x86_64') - url="https://github.com/kupiqu/SierraBreezeEnhanced/" - license=('GPL3') - depends=('kwin') - makedepends=('cmake' 'extra-cmake-modules') - source=("${url}archive/refs/tags/V${pkgver}.tar.gz") - sha256sums=('37d10ee089091e33b48d27829c0659a2240c55bcb8b762fddd03cc6ab59458c0') +pkgname=sierra-breeze-enhanced +_pkgname=SierraBreezeEnhanced +pkgver=2.0.1 +pkgrel=1 +pkgdesc="A kwin decoration with support for transparency, rounded corners, multiple titlebar button presets and more" +arch=('x86_64') +url="https://github.com/kupiqu/${_pkgname,,}" +license=('GPL-3.0-or-later') +depends=('kwin') +makedepends=('cmake' 'extra-cmake-modules') +source=("${url}/archive/V${pkgver}/${pkgname}-V${pkgver}.tar.gz") +sha512sums=('1c7f55e979c854135a4c6e21d9838df8de0b7dd0ee252f100c8b622e72224d19bf8e06318ad43367112f6c3422ac5ac44242b74635cce5e96107c1ea447ce838') - build() { +build() { + cmake -B build -S "${_pkgname}-${pkgver}" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release \ + -DKDE_INSTALL_LIBDIR=lib \ + -DBUILD_TESTING=OFF \ + -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \ + -Wno-dev +} - cd "${srcdir}/${_gitname}-${pkgver}" - - mkdir build && cd build - cmake .. \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_BUILD_TYPE=Release \ - -DKDE_INSTALL_LIBDIR=lib \ - -DBUILD_TESTING=OFF \ - -DKDE_INSTALL_USE_QT_SYS_PATHS=ON - - } - - package() { - make -C ${srcdir}/${_gitname}-${pkgver}/build DESTDIR="$pkgdir" install - } +package() { + #DESTDIR="$pkgdir" cmake --install build + make -C build DESTDIR="$pkgdir" install +} From d29f2fed9d0ddf5a1a0dd3fb3a16c8b86be248dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 9 Oct 2024 22:39:57 +0200 Subject: [PATCH 852/971] upgpkg: discord-electron 0.0.71-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index fd6f2e3..6359d89 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v32) for increased security and performance - pkgver = 0.0.70 + pkgver = 0.0.71 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.70/discord-0.0.70.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.71/discord-0.0.71.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = 78aa941ce759345c0f2dc5fc3f741462e9ae8d756ecfcd492a42b9e4a16168c4772e4f732e838fd06a305348c4923a6c601450eb80bf4bd3db6f4468ae803e17 + sha512sums = c4042a56e8ad170901367ed562831d0f8933d8f0babf246639f8b5b17d7b437b58d6cf696f3c3d6a30674c041567115d0419a3e4c00de7064db58a4c77a61a93 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index b1a0b7e..84a705a 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.70 +pkgver=0.0.71 pkgrel=1 _electronver=32 _electronname="electron${_electronver}" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('78aa941ce759345c0f2dc5fc3f741462e9ae8d756ecfcd492a42b9e4a16168c4772e4f732e838fd06a305348c4923a6c601450eb80bf4bd3db6f4468ae803e17' +sha512sums=('c4042a56e8ad170901367ed562831d0f8933d8f0babf246639f8b5b17d7b437b58d6cf696f3c3d6a30674c041567115d0419a3e4c00de7064db58a4c77a61a93' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c') From b80d5ed555646b55f61c69438b156a1066f733ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 9 Oct 2024 22:40:23 +0200 Subject: [PATCH 853/971] upgpkg: discord-electron-openasar 0.0.71+830-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index b459a01..6c7d55e 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v32) for increased security and performance - pkgver = 0.0.70+830 + pkgver = 0.0.71+830 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.70/discord-0.0.70.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.71/discord-0.0.71.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=f92ee8c3dc6b6ff9829f69a1339e0f82a877929c - sha512sums = 78aa941ce759345c0f2dc5fc3f741462e9ae8d756ecfcd492a42b9e4a16168c4772e4f732e838fd06a305348c4923a6c601450eb80bf4bd3db6f4468ae803e17 + sha512sums = c4042a56e8ad170901367ed562831d0f8933d8f0babf246639f8b5b17d7b437b58d6cf696f3c3d6a30674c041567115d0419a3e4c00de7064db58a4c77a61a93 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c sha512sums = 4befe9f30b7d11da966692242353becca3f86f7d5b3eb73c48b6f42073b88f7c8a21141d3f84ee2ff10f74a4596d1391f0b200134599a36c9589074bec298573 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index ab46062..1367572 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.70+830 +pkgver=0.0.71+830 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=32 @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=f92ee8c3dc6b6ff9829f69a1339e0f82a877929c") -sha512sums=('78aa941ce759345c0f2dc5fc3f741462e9ae8d756ecfcd492a42b9e4a16168c4772e4f732e838fd06a305348c4923a6c601450eb80bf4bd3db6f4468ae803e17' +sha512sums=('c4042a56e8ad170901367ed562831d0f8933d8f0babf246639f8b5b17d7b437b58d6cf696f3c3d6a30674c041567115d0419a3e4c00de7064db58a4c77a61a93' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c' '4befe9f30b7d11da966692242353becca3f86f7d5b3eb73c48b6f42073b88f7c8a21141d3f84ee2ff10f74a4596d1391f0b200134599a36c9589074bec298573') From 5225061beda85a87afc24f5d89125176bb3e2624 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 9 Oct 2024 22:44:18 +0200 Subject: [PATCH 854/971] upgpkg: tuned 2.24.0-2 * Add wireless_tools as optional dependency * Make tuned-ppd provide power-profiles-daemon --- tuned/.SRCINFO | 4 +++- tuned/PKGBUILD | 6 ++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/tuned/.SRCINFO b/tuned/.SRCINFO index 67444b9..c946156 100644 --- a/tuned/.SRCINFO +++ b/tuned/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system pkgver = 2.24.0 - pkgrel = 1 + pkgrel = 2 url = https://github.com/redhat-performance/tuned arch = any license = GPL-2.0-or-later @@ -25,6 +25,7 @@ pkgname = tuned optdepends = virt-what: virtual machine detection optdepends = systemtap: detailed system monitoring optdepends = tuned-ppd: power-profiles-daemon api translation + optdepends = wireless_tools: wireless device power management backup = etc/tuned/active_profile backup = etc/tuned/bootcmdline backup = etc/tuned/cpu-partitioning-powersave-variables.conf @@ -39,6 +40,7 @@ pkgname = tuned pkgname = tuned-ppd pkgdesc = Daemon that allows applications to easily transition to TuneD from power-profiles-daemon (PPD) depends = tuned + provides = power-profiles-daemon conflicts = power-profiles-daemon options = !emptydirs backup = etc/tuned/ppd.conf diff --git a/tuned/PKGBUILD b/tuned/PKGBUILD index cd7f9f6..0b74b94 100644 --- a/tuned/PKGBUILD +++ b/tuned/PKGBUILD @@ -6,7 +6,7 @@ pkgbase=tuned pkgname=("${pkgbase}" "${pkgbase}-ppd") pkgver=2.24.0 -pkgrel=1 +pkgrel=2 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url="https://github.com/redhat-performance/${pkgbase}" @@ -28,7 +28,8 @@ prepare() { package_tuned() { optdepends=('virt-what: virtual machine detection' 'systemtap: detailed system monitoring' - 'tuned-ppd: power-profiles-daemon api translation') + 'tuned-ppd: power-profiles-daemon api translation' + 'wireless_tools: wireless device power management') backup=('etc/tuned/active_profile' 'etc/tuned/bootcmdline' 'etc/tuned/cpu-partitioning-powersave-variables.conf' @@ -53,6 +54,7 @@ package_tuned() { package_tuned-ppd() { pkgdesc='Daemon that allows applications to easily transition to TuneD from power-profiles-daemon (PPD)' depends=('tuned') + provides=('power-profiles-daemon') conflicts=('power-profiles-daemon') backup=('etc/tuned/ppd.conf') options=('!emptydirs') From cb9d5e0a28705f0af129c96dd25b08f990b70f89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 9 Oct 2024 23:12:41 +0200 Subject: [PATCH 855/971] upgpkg: gvisor-bin 20241007.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index 6ba36c6..7e027ce 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20240916.0 + pkgver = 20241007.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20240916.0::https://storage.googleapis.com/gvisor/releases/release/20240916.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20240916.0::https://storage.googleapis.com/gvisor/releases/release/20240916.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = d229a0df493c358182b827b2751ee0cdd46d9b486fa410639e5c18dc4de38f18e6fae823c2a868354929ffc494014406fe42543b6180b2859d07d7706a2ced6d - sha512sums_x86_64 = 59db8a4648abae2b55cab3e3653eb7a3bca187b72d241903b639209e8f21e96f3a9132b4d7ae5d048b2fa488fb331bdb6cb185c385eeedbebc674e0946e44330 - source_aarch64 = runsc-aarch64-20240916.0::https://storage.googleapis.com/gvisor/releases/release/20240916.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20240916.0::https://storage.googleapis.com/gvisor/releases/release/20240916.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 6931f8e09804c8042fc755c88b8957af3cf5c3ebf5cec3d3d9c11229bcaf4123ac10acb84e75dfaa22b25132e7a8c0c3fd25af4b1e255662907249ba1e42a284 - sha512sums_aarch64 = a0c22cdb8dda985c82022503be3b69164bdc4d8a706f6819e969895bc9162e96ad88cb8e9531e88552843a0271964d03fc141ddcd4f3c765b344afdfe77330fb + source_x86_64 = runsc-x86_64-20241007.0::https://storage.googleapis.com/gvisor/releases/release/20241007.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20241007.0::https://storage.googleapis.com/gvisor/releases/release/20241007.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = 4c14a5a1d41ed505376feba6ab90dd0cff8444eb1a0b8c735febec818b84e5bb33b4e7c9b800a0bbc0d75acc73e1b97455e1319a12cff60e0a40b0db3a8b5f12 + sha512sums_x86_64 = b7cb0ab08ad91689e2b2c8a1afe8b457d7d7af3692d002c24c23e9ddbfa1fcfc62c1a81386c4bf15ae58b0c514447104b1c7b83a57133de62b1c10e3f9c8e73c + source_aarch64 = runsc-aarch64-20241007.0::https://storage.googleapis.com/gvisor/releases/release/20241007.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20241007.0::https://storage.googleapis.com/gvisor/releases/release/20241007.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = e3807ab44a473c9c856503d97850023c84c174b375e37ed66ea0c791789ff17805c6496b64194fa3564614f7c27e2f90ce38d0bb7de794edce280b5f2550dc2d + sha512sums_aarch64 = cd7d19c16a15877c18ddab638db22452f2e58c02077116773338f84acd57bf8fe2d9d4401ae35e3cdcb1301a61e560c5793320754fb53645bbbaeea4944936bd pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index 960928e..f5315f0 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20240916.0 +pkgver=20241007.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('d229a0df493c358182b827b2751ee0cdd46d9b486fa410639e5c18dc4de38f18e6fae823c2a868354929ffc494014406fe42543b6180b2859d07d7706a2ced6d' - '59db8a4648abae2b55cab3e3653eb7a3bca187b72d241903b639209e8f21e96f3a9132b4d7ae5d048b2fa488fb331bdb6cb185c385eeedbebc674e0946e44330') -sha512sums_aarch64=('6931f8e09804c8042fc755c88b8957af3cf5c3ebf5cec3d3d9c11229bcaf4123ac10acb84e75dfaa22b25132e7a8c0c3fd25af4b1e255662907249ba1e42a284' - 'a0c22cdb8dda985c82022503be3b69164bdc4d8a706f6819e969895bc9162e96ad88cb8e9531e88552843a0271964d03fc141ddcd4f3c765b344afdfe77330fb') +sha512sums_x86_64=('4c14a5a1d41ed505376feba6ab90dd0cff8444eb1a0b8c735febec818b84e5bb33b4e7c9b800a0bbc0d75acc73e1b97455e1319a12cff60e0a40b0db3a8b5f12' + 'b7cb0ab08ad91689e2b2c8a1afe8b457d7d7af3692d002c24c23e9ddbfa1fcfc62c1a81386c4bf15ae58b0c514447104b1c7b83a57133de62b1c10e3f9c8e73c') +sha512sums_aarch64=('e3807ab44a473c9c856503d97850023c84c174b375e37ed66ea0c791789ff17805c6496b64194fa3564614f7c27e2f90ce38d0bb7de794edce280b5f2550dc2d' + 'cd7d19c16a15877c18ddab638db22452f2e58c02077116773338f84acd57bf8fe2d9d4401ae35e3cdcb1301a61e560c5793320754fb53645bbbaeea4944936bd') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From c5bb7378f46b972ebcf39135b25add75768031e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 9 Oct 2024 23:12:50 +0200 Subject: [PATCH 856/971] upgpkg: gvisor-git 20241007.0-1 upstream release --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index 68eb43c..741163a 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20240916.0 + pkgver = 20241007.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index 078155c..6559ff5 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20240916.0 +pkgver=20241007.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From 3bcbc9e00cab7b499306079d8d5ee8a21526c46a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 10 Oct 2024 11:59:45 +0200 Subject: [PATCH 857/971] upgpkg: tuned 2.24.0-3: remove install file --- tuned/.SRCINFO | 3 +-- tuned/PKGBUILD | 3 +-- tuned/tuned.install | 7 ------- 3 files changed, 2 insertions(+), 11 deletions(-) delete mode 100644 tuned/tuned.install diff --git a/tuned/.SRCINFO b/tuned/.SRCINFO index c946156..f1ede23 100644 --- a/tuned/.SRCINFO +++ b/tuned/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = tuned pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system pkgver = 2.24.0 - pkgrel = 2 + pkgrel = 3 url = https://github.com/redhat-performance/tuned arch = any license = GPL-2.0-or-later @@ -21,7 +21,6 @@ pkgbase = tuned sha512sums = d004cd621e26195fff14b39f29b2143cf47de09641454acd3029d61142c3d000a452f018356c84c32772bd99fc766f6ee847d2a8eddbde8ae34aaa0ecefa644e pkgname = tuned - install = tuned.install optdepends = virt-what: virtual machine detection optdepends = systemtap: detailed system monitoring optdepends = tuned-ppd: power-profiles-daemon api translation diff --git a/tuned/PKGBUILD b/tuned/PKGBUILD index 0b74b94..ee2408d 100644 --- a/tuned/PKGBUILD +++ b/tuned/PKGBUILD @@ -6,7 +6,7 @@ pkgbase=tuned pkgname=("${pkgbase}" "${pkgbase}-ppd") pkgver=2.24.0 -pkgrel=2 +pkgrel=3 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url="https://github.com/redhat-performance/${pkgbase}" @@ -40,7 +40,6 @@ package_tuned() { 'etc/tuned/realtime-virtual-guest-variables.conf' 'etc/tuned/realtime-virtual-host-variables.conf' 'etc/tuned/tuned-main.conf') - install="${pkgbase}.install" cd "${pkgbase}-${pkgver}" diff --git a/tuned/tuned.install b/tuned/tuned.install deleted file mode 100644 index 974c867..0000000 --- a/tuned/tuned.install +++ /dev/null @@ -1,7 +0,0 @@ -post_install() { - systemd-tmpfiles --create tuned.conf -} - -pre_remove() { - systemd-tmpfiles --remove tuned.conf -} From 93170f9ecdff1837e81a27decc4e4d715d4a8419 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 10 Oct 2024 12:02:29 +0200 Subject: [PATCH 858/971] upgpkg: clonezilla-unstable 5.6.23-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index d9dba78..20c758f 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.22 + pkgver = 5.6.23 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.22.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.23.tar.xz source = usrbin.patch - sha512sums = e1b58bbde1cf6fe42b94e5788207b9e1fb88b48522a0bae90567dd60ff26167aadcab0dfde2a1fb84701e0409928f991c91f4c44070fa740425095efb25657cc + sha512sums = 49e2066b3c1393795c3674512d1c44ccdfac769189d140cf361d2236625a439e72d066bf409ae25b9660638d906d217870c194b0cec770ee0230221433408108 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index df4f371..b17d387 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.22 +pkgver=5.6.23 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('e1b58bbde1cf6fe42b94e5788207b9e1fb88b48522a0bae90567dd60ff26167aadcab0dfde2a1fb84701e0409928f991c91f4c44070fa740425095efb25657cc' +sha512sums=('49e2066b3c1393795c3674512d1c44ccdfac769189d140cf361d2236625a439e72d066bf409ae25b9660638d906d217870c194b0cec770ee0230221433408108' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 55d2b2a4ecde7d20c760df335f6ef9535084f483 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 10 Oct 2024 12:02:29 +0200 Subject: [PATCH 859/971] upgpkg: clonezilla-unstable 5.6.23-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index d9dba78..20c758f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.22 + pkgver = 5.6.23 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.22.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.23.tar.xz source = usrbin.patch - sha512sums = e1b58bbde1cf6fe42b94e5788207b9e1fb88b48522a0bae90567dd60ff26167aadcab0dfde2a1fb84701e0409928f991c91f4c44070fa740425095efb25657cc + sha512sums = 49e2066b3c1393795c3674512d1c44ccdfac769189d140cf361d2236625a439e72d066bf409ae25b9660638d906d217870c194b0cec770ee0230221433408108 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index df4f371..b17d387 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.22 +pkgver=5.6.23 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('e1b58bbde1cf6fe42b94e5788207b9e1fb88b48522a0bae90567dd60ff26167aadcab0dfde2a1fb84701e0409928f991c91f4c44070fa740425095efb25657cc' +sha512sums=('49e2066b3c1393795c3674512d1c44ccdfac769189d140cf361d2236625a439e72d066bf409ae25b9660638d906d217870c194b0cec770ee0230221433408108' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 8284bbcb32f6e52d50ea8e3d14ae3c628f465eab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 16 Oct 2024 18:58:38 +0200 Subject: [PATCH 860/971] upgpkg: discord-electron 0.0.71-2 Update Electron version to 33 --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 6359d89..7005887 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,14 +1,14 @@ pkgbase = discord-electron - pkgdesc = Discord using system provided electron (v32) for increased security and performance + pkgdesc = Discord using system provided electron (v33) for increased security and performance pkgver = 0.0.71 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron.install arch = x86_64 license = custom makedepends = asar makedepends = curl - depends = electron32 + depends = electron33 depends = libxss optdepends = libpulse: Pulseaudio support optdepends = libappindicator-gtk3: Systray indicator support diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 84a705a..7eb2e88 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,8 +1,8 @@ pkgname=discord-electron _pkgname=discord pkgver=0.0.71 -pkgrel=1 -_electronver=32 +pkgrel=2 +_electronver=33 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" arch=('x86_64') From 1e6cbc9974880c4d2d65f126c32ee6c01957025a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 16 Oct 2024 18:59:01 +0200 Subject: [PATCH 861/971] upgpkg: discord-electron-openasar 0.0.71+830-2 Update Electron version to 33 --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 6c7d55e..09d0727 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar - pkgdesc = Discord packaged with OpenAsar using system provided electron (v32) for increased security and performance + pkgdesc = Discord packaged with OpenAsar using system provided electron (v33) for increased security and performance pkgver = 0.0.71+830 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -10,7 +10,7 @@ pkgbase = discord-electron-openasar makedepends = asar makedepends = nodejs makedepends = curl - depends = electron32 + depends = electron33 depends = libxss depends = unzip optdepends = libpulse: Pulseaudio support diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 1367572..475653a 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -4,8 +4,8 @@ pkgname=discord-electron-openasar _pkgname=discord pkgver=0.0.71+830 _pkgver=${pkgver%%+*} -pkgrel=1 -_electronver=32 +pkgrel=2 +_electronver=33 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" arch=('x86_64') From 997cf996cef383dd9b373cf1c1421e8b7c328f79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 21 Oct 2024 23:44:42 +0200 Subject: [PATCH 862/971] Deleted package: tuned Moved to [extra] --- tuned/.SRCINFO | 45 ----------------------------------- tuned/PKGBUILD | 64 -------------------------------------------------- 2 files changed, 109 deletions(-) delete mode 100644 tuned/.SRCINFO delete mode 100644 tuned/PKGBUILD diff --git a/tuned/.SRCINFO b/tuned/.SRCINFO deleted file mode 100644 index f1ede23..0000000 --- a/tuned/.SRCINFO +++ /dev/null @@ -1,45 +0,0 @@ -pkgbase = tuned - pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = 2.24.0 - pkgrel = 3 - url = https://github.com/redhat-performance/tuned - arch = any - license = GPL-2.0-or-later - makedepends = desktop-file-utils - depends = dbus-glib - depends = ethtool - depends = gawk - depends = hdparm - depends = polkit - depends = python-configobj - depends = python-dbus - depends = python-gobject - depends = python-linux-procfs - depends = python-perf - depends = python-pyudev - source = https://github.com/redhat-performance/tuned/archive/v2.24.0/tuned-2.24.0.tar.gz - sha512sums = d004cd621e26195fff14b39f29b2143cf47de09641454acd3029d61142c3d000a452f018356c84c32772bd99fc766f6ee847d2a8eddbde8ae34aaa0ecefa644e - -pkgname = tuned - optdepends = virt-what: virtual machine detection - optdepends = systemtap: detailed system monitoring - optdepends = tuned-ppd: power-profiles-daemon api translation - optdepends = wireless_tools: wireless device power management - backup = etc/tuned/active_profile - backup = etc/tuned/bootcmdline - backup = etc/tuned/cpu-partitioning-powersave-variables.conf - backup = etc/tuned/cpu-partitioning-variables.conf - backup = etc/tuned/post_loaded_profile - backup = etc/tuned/profile_mode - backup = etc/tuned/realtime-variables.conf - backup = etc/tuned/realtime-virtual-guest-variables.conf - backup = etc/tuned/realtime-virtual-host-variables.conf - backup = etc/tuned/tuned-main.conf - -pkgname = tuned-ppd - pkgdesc = Daemon that allows applications to easily transition to TuneD from power-profiles-daemon (PPD) - depends = tuned - provides = power-profiles-daemon - conflicts = power-profiles-daemon - options = !emptydirs - backup = etc/tuned/ppd.conf diff --git a/tuned/PKGBUILD b/tuned/PKGBUILD deleted file mode 100644 index ee2408d..0000000 --- a/tuned/PKGBUILD +++ /dev/null @@ -1,64 +0,0 @@ -# Maintainer: Manuel Hüsers -# Contributor: Iwan Timmer -# Contributor: Timothée Ravier -# Contributor: Tom - -pkgbase=tuned -pkgname=("${pkgbase}" "${pkgbase}-ppd") -pkgver=2.24.0 -pkgrel=3 -pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' -arch=('any') -url="https://github.com/redhat-performance/${pkgbase}" -license=('GPL-2.0-or-later') -depends=('dbus-glib' 'ethtool' 'gawk' 'hdparm' 'polkit' 'python-configobj' 'python-dbus' 'python-gobject' 'python-linux-procfs' 'python-perf' 'python-pyudev') -makedepends=('desktop-file-utils') -source=("https://github.com/redhat-performance/${pkgbase}/archive/v${pkgver}/${pkgbase}-${pkgver}.tar.gz") -sha512sums=('d004cd621e26195fff14b39f29b2143cf47de09641454acd3029d61142c3d000a452f018356c84c32772bd99fc766f6ee847d2a8eddbde8ae34aaa0ecefa644e') - -prepare() { - cd "${pkgbase}-${pkgver}" - mv libexec lib - - sed -i 's|/libexec/|/lib/|g' Makefile - sed -i 's|/sbin/|/bin/|g' Makefile tuned.service tuned-gui.py tuned-gui.desktop tuned/ppd/tuned-ppd.service - sed -i 's|install-ppd: install$|install-ppd: install-dirs|' Makefile -} - -package_tuned() { - optdepends=('virt-what: virtual machine detection' - 'systemtap: detailed system monitoring' - 'tuned-ppd: power-profiles-daemon api translation' - 'wireless_tools: wireless device power management') - backup=('etc/tuned/active_profile' - 'etc/tuned/bootcmdline' - 'etc/tuned/cpu-partitioning-powersave-variables.conf' - 'etc/tuned/cpu-partitioning-variables.conf' - 'etc/tuned/post_loaded_profile' - 'etc/tuned/profile_mode' - 'etc/tuned/realtime-variables.conf' - 'etc/tuned/realtime-virtual-guest-variables.conf' - 'etc/tuned/realtime-virtual-host-variables.conf' - 'etc/tuned/tuned-main.conf') - - cd "${pkgbase}-${pkgver}" - - make DESTDIR="${pkgdir}" install - rm -rv "${pkgdir}"/{run,var} - - python -m compileall -d /usr/lib "${pkgdir}/usr/lib" - python -O -m compileall -d /usr/lib "${pkgdir}/usr/lib" -} - -package_tuned-ppd() { - pkgdesc='Daemon that allows applications to easily transition to TuneD from power-profiles-daemon (PPD)' - depends=('tuned') - provides=('power-profiles-daemon') - conflicts=('power-profiles-daemon') - backup=('etc/tuned/ppd.conf') - options=('!emptydirs') - - cd "${pkgbase}-${pkgver}" - - make DESTDIR="${pkgdir}" install-ppd -} From c515f3e3ba91153d4dbe96b1dc748022240696ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 21 Oct 2024 23:45:11 +0200 Subject: [PATCH 863/971] Deleted package: systemtap Moved to [extra] --- systemtap/.SRCINFO | 23 ---------------- systemtap/PKGBUILD | 52 ------------------------------------- systemtap/systemtap.install | 18 ------------- 3 files changed, 93 deletions(-) delete mode 100644 systemtap/.SRCINFO delete mode 100644 systemtap/PKGBUILD delete mode 100644 systemtap/systemtap.install diff --git a/systemtap/.SRCINFO b/systemtap/.SRCINFO deleted file mode 100644 index e200204..0000000 --- a/systemtap/.SRCINFO +++ /dev/null @@ -1,23 +0,0 @@ -pkgbase = systemtap - pkgdesc = Infrastructure to simplify the gathering of information about the running Linux system - pkgver = 5.1 - pkgrel = 1 - url = https://sourceware.org/systemtap/ - install = systemtap.install - arch = x86_64 - license = GPL-2.0-or-later - makedepends = python-setuptools - makedepends = xmlto - depends = elfutils - depends = nss - depends = python - depends = cpio - optdepends = sqlite3: for storing results in a database - options = !emptydirs - source = https://sourceware.org/ftp/systemtap/releases/systemtap-5.1.tar.gz - source = https://sourceware.org/ftp/systemtap/releases/systemtap-5.1.tar.gz.asc - validpgpkeys = 41A0C11274B1E87FE28E4C53E3D77E1F95161991 - sha512sums = da0fe237d2124031a5786d1221dbb420d90da5497376715fd43a7a9f61a354a229c1128e67ce6becbc012aa3796dc5d337149e239e3c1def0651b179e5bf199f - sha512sums = SKIP - -pkgname = systemtap diff --git a/systemtap/PKGBUILD b/systemtap/PKGBUILD deleted file mode 100644 index f7222fe..0000000 --- a/systemtap/PKGBUILD +++ /dev/null @@ -1,52 +0,0 @@ -# Maintainer: Manuel Hüsers -# Contributor: Christian Pellegrin (chripell) -# Contributor: An Nguyen (stk) -# Contributor: George Angelopoulos -# Contributor: Christian Rebischke -# Contributor: dront78 - -pkgname=systemtap -pkgver=5.1 -pkgrel=1 -pkgdesc="Infrastructure to simplify the gathering of information about the running Linux system" -url="https://sourceware.org/systemtap/" -arch=('x86_64') -license=('GPL-2.0-or-later') -depends=('elfutils' 'nss' 'python' 'cpio') -makedepends=('python-setuptools' 'xmlto') -optdepends=('sqlite3: for storing results in a database') -options=('!emptydirs') -install="${pkgname}.install" -source=("https://sourceware.org/ftp/${pkgname}/releases/${pkgname}-${pkgver}.tar.gz"{,.asc}) -sha512sums=('da0fe237d2124031a5786d1221dbb420d90da5497376715fd43a7a9f61a354a229c1128e67ce6becbc012aa3796dc5d337149e239e3c1def0651b179e5bf199f' - 'SKIP') - -validpgpkeys=('41A0C11274B1E87FE28E4C53E3D77E1F95161991') - -build() { - cd "${pkgname}-${pkgver}" - ./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --libexecdir=/usr/lib/"${pkgname}" \ - --libdir=/usr/lib/"${pkgname}" \ - --mandir=/usr/share/man/ \ - --sbindir=/usr/bin \ - --localstatedir=/var \ - --enable-pie \ - --disable-docs \ - --enable-htmldocs \ - --with-python3 - make -} - -check() { - cd "${pkgname}-${pkgver}" - make check -} - -package() { - cd "${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install - rm -r "${pkgdir}/usr/include/sys" -} diff --git a/systemtap/systemtap.install b/systemtap/systemtap.install deleted file mode 100644 index f39e7c3..0000000 --- a/systemtap/systemtap.install +++ /dev/null @@ -1,18 +0,0 @@ -post_install() { - getent group stapusr >/dev/null || groupadd -g 156 -r stapusr 2>/dev/null || groupadd -r stapusr - getent group stapsys >/dev/null || groupadd -g 157 -r stapsys 2>/dev/null || groupadd -r stapsys - getent group stapdev >/dev/null || groupadd -g 158 -r stapdev 2>/dev/null || groupadd -r stapdev - - getent group stapusr >/dev/null && chgrp stapusr /usr/bin/stapbpf - chmod 04110 /usr/bin/stapbpf - - getent group stapusr >/dev/null && chgrp stapusr /usr/bin/staprun - chmod 04110 /usr/bin/staprun - - echo "CONFIG_DEBUG_INFO is disabled on default. You need to recompile" - echo "the kernel with CONFIG_DEBUG_INFO enabled." -} - -post_upgrade() { - post_install $1 -} From 1150336506ae99cb684ac64f8511f3304c273574 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 22 Oct 2024 00:10:47 +0200 Subject: [PATCH 864/971] upgpkg: tuned-git 2.24.0.r6.g35eed3c-1: refactor * Refactor of PKGBUILD for parity with non-git package --- tuned-git/.SRCINFO | 61 +++++++++++++++++---------- tuned-git/PKGBUILD | 92 +++++++++++++++++++++++++++++------------ tuned-git/tuned.install | 3 -- 3 files changed, 104 insertions(+), 52 deletions(-) delete mode 100644 tuned-git/tuned.install diff --git a/tuned-git/.SRCINFO b/tuned-git/.SRCINFO index 962694f..e9eb87d 100644 --- a/tuned-git/.SRCINFO +++ b/tuned-git/.SRCINFO @@ -1,33 +1,50 @@ pkgbase = tuned-git pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = 2.10.0.r75.g26db89d - pkgrel = 4 + pkgver = 2.24.0.r6.g35eed3c + pkgrel = 1 url = https://github.com/redhat-performance/tuned - install = tuned.install arch = any - license = GPL - makedepends = git + license = GPL-2.0-or-later makedepends = desktop-file-utils + makedepends = git + depends = dbus-glib depends = ethtool - depends = python-configobj - depends = python-pyudev - depends = python-gobject - depends = python-decorator - depends = python-dbus - depends = python-schedutils - depends = python-linux-procfs - depends = perf + depends = gawk depends = hdparm depends = polkit - depends = hicolor-icon-theme - optdepends = virt-what - optdepends = systemtap - optdepends = python-dmidecode - optdepends = x86_energy_perf_policy - provides = tuned - backup = etc/tuned/active_profile - source = tuned-git::git://github.com/redhat-performance/tuned - sha256sums = SKIP + depends = python-configobj + depends = python-dbus + depends = python-gobject + depends = python-linux-procfs + depends = python-perf + depends = python-pyudev + source = git+https://github.com/redhat-performance/tuned.git + sha512sums = SKIP pkgname = tuned-git + optdepends = virt-what: virtual machine detection + optdepends = systemtap: detailed system monitoring + optdepends = tuned-ppd: power-profiles-daemon api translation + optdepends = wireless_tools: wireless device power management + provides = tuned + conflicts = tuned + backup = etc/tuned/active_profile + backup = etc/tuned/bootcmdline + backup = etc/tuned/cpu-partitioning-powersave-variables.conf + backup = etc/tuned/cpu-partitioning-variables.conf + backup = etc/tuned/post_loaded_profile + backup = etc/tuned/profile_mode + backup = etc/tuned/realtime-variables.conf + backup = etc/tuned/realtime-virtual-guest-variables.conf + backup = etc/tuned/realtime-virtual-host-variables.conf + backup = etc/tuned/tuned-main.conf +pkgname = tuned-ppd-git + pkgdesc = Daemon that allows applications to easily transition to TuneD from power-profiles-daemon (PPD) + depends = tuned + provides = tuned-ppd + provides = power-profiles-daemon + conflicts = tuned-ppd + conflicts = power-profiles-daemon + options = !emptydirs + backup = etc/tuned/ppd.conf diff --git a/tuned-git/PKGBUILD b/tuned-git/PKGBUILD index be6f5f5..946233b 100644 --- a/tuned-git/PKGBUILD +++ b/tuned-git/PKGBUILD @@ -1,37 +1,75 @@ -# Maintainer: Wes Jackson < icebal dot 7 at gmail dot com > -# Contributor: Tom < reztho at archlinux dot org > +# Maintainer: Manuel Hüsers +# Contributor: Wes Jackson +# Contributor: Iwan Timmer +# Contributor: Timothée Ravier +# Contributor: Tom -pkgname=tuned-git -pkgver=2.10.0.r75.g26db89d -pkgrel=4 +_pkgbase=tuned +pkgbase="${_pkgbase}-git" +pkgname=("${_pkgbase}-git" "${_pkgbase}-ppd-git") +pkgver=2.24.0.r6.g35eed3c +pkgrel=1 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') -url='https://github.com/redhat-performance/tuned' -license=('GPL') -depends=('ethtool' 'python-configobj' 'python-pyudev' 'python-gobject' 'python-decorator' 'python-dbus' 'python-schedutils' 'python-linux-procfs' 'perf' 'hdparm' 'polkit' 'hicolor-icon-theme') -optdepends=('virt-what' 'systemtap' 'python-dmidecode' 'x86_energy_perf_policy') -makedepends=('git' 'desktop-file-utils') -provides=('tuned') -backup=('etc/tuned/active_profile') -install="${pkgname/-git}.install" -source=("${pkgname}::git://github.com/redhat-performance/tuned") -sha256sums=('SKIP') +url="https://github.com/redhat-performance/${_pkgbase}" +license=('GPL-2.0-or-later') +depends=('dbus-glib' 'ethtool' 'gawk' 'hdparm' 'polkit' 'python-configobj' + 'python-dbus' 'python-gobject' 'python-linux-procfs' 'python-perf' + 'python-pyudev') +makedepends=('desktop-file-utils' 'git') +source=("git+${url}.git") +sha512sums=('SKIP') pkgver() { - cd ${pkgname} - local ver=$(git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g') - printf "%s\n" "${ver:1}" + cd "${_pkgbase}" + git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/^v//g;s/-/./g' } -package() { - cd ${pkgname} +prepare() { + cd "${_pkgbase}" + mv libexec lib - make DESTDIR="${pkgdir}" install - - mv "${pkgdir}"/usr/sbin/* "${pkgdir}"/usr/bin/ - mv "${pkgdir}"/usr/libexec/tuned/* "${pkgdir}"/usr/lib/tuned/ - rm -r "${pkgdir}"/run "${pkgdir}"/usr/sbin "${pkgdir}"/usr/libexec - install -Dm 0644 "${srcdir}"/${pkgname}/tuned.service "${pkgdir}"/usr/lib/systemd/system/tuned.service + sed -i 's|/libexec/|/lib/|g' Makefile + sed -i 's|/sbin/|/bin/|g' Makefile tuned.service tuned-gui.py tuned-gui.desktop tuned/ppd/tuned-ppd.service + sed -i 's|install-ppd: install$|install-ppd: install-dirs|' Makefile } -# vim:set ts=2 sw=2 et: +package_tuned-git() { + optdepends=('virt-what: virtual machine detection' + 'systemtap: detailed system monitoring' + 'tuned-ppd: power-profiles-daemon api translation' + 'wireless_tools: wireless device power management') + provides=("${_pkgbase}") + conflicts=("${_pkgbase}") + backup=('etc/tuned/active_profile' + 'etc/tuned/bootcmdline' + 'etc/tuned/cpu-partitioning-powersave-variables.conf' + 'etc/tuned/cpu-partitioning-variables.conf' + 'etc/tuned/post_loaded_profile' + 'etc/tuned/profile_mode' + 'etc/tuned/realtime-variables.conf' + 'etc/tuned/realtime-virtual-guest-variables.conf' + 'etc/tuned/realtime-virtual-host-variables.conf' + 'etc/tuned/tuned-main.conf') + + cd "${_pkgbase}" + + make DESTDIR="${pkgdir}" install + rm -rv "${pkgdir}"/{run,var} + + python -m compileall -d /usr/lib "${pkgdir}/usr/lib" + python -O -m compileall -d /usr/lib "${pkgdir}/usr/lib" +} + +package_tuned-ppd-git() { + pkgdesc='Daemon that allows applications to easily transition to TuneD from power-profiles-daemon (PPD)' + depends=("${_pkgbase}") + provides=("${_pkgbase}-ppd" 'power-profiles-daemon') + conflicts=("${_pkgbase}-ppd" 'power-profiles-daemon') + backup=('etc/tuned/ppd.conf') + options=('!emptydirs') + + cd "${_pkgbase}" + + make DESTDIR="${pkgdir}" install-ppd +} diff --git a/tuned-git/tuned.install b/tuned-git/tuned.install deleted file mode 100644 index dbe414b..0000000 --- a/tuned-git/tuned.install +++ /dev/null @@ -1,3 +0,0 @@ -post_install() { - systemd-tmpfiles --create tuned.conf -} From ecbe182fe134214d3c64f1d18b86506d0983eeea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 22 Oct 2024 00:14:04 +0200 Subject: [PATCH 865/971] upgpkg: discord-electron 0.0.72-1 upstream release --- discord-electron/.SRCINFO | 8 ++++---- discord-electron/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 7005887..09a0d71 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v33) for increased security and performance - pkgver = 0.0.71 - pkgrel = 2 + pkgver = 0.0.72 + pkgrel = 1 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.71/discord-0.0.71.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.72/discord-0.0.72.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = c4042a56e8ad170901367ed562831d0f8933d8f0babf246639f8b5b17d7b437b58d6cf696f3c3d6a30674c041567115d0419a3e4c00de7064db58a4c77a61a93 + sha512sums = ddb791e1a92a30f2cab24fd7a686b621be33d51c2a7c0a0eed3293b4edd05f814ea850cbf43c9910f4576b17dc9e9c1367960f3d1536e7ec1ede372904c6c424 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 7eb2e88..5bba7ca 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,7 +1,7 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.71 -pkgrel=2 +pkgver=0.0.72 +pkgrel=1 _electronver=33 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('c4042a56e8ad170901367ed562831d0f8933d8f0babf246639f8b5b17d7b437b58d6cf696f3c3d6a30674c041567115d0419a3e4c00de7064db58a4c77a61a93' +sha512sums=('ddb791e1a92a30f2cab24fd7a686b621be33d51c2a7c0a0eed3293b4edd05f814ea850cbf43c9910f4576b17dc9e9c1367960f3d1536e7ec1ede372904c6c424' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c') From a66a4a7981e3fd931b67deb644df325e42b87ad6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 22 Oct 2024 00:14:11 +0200 Subject: [PATCH 866/971] upgpkg: discord-electron-openasar 0.0.72+830-1 upstream release --- discord-electron-openasar/.SRCINFO | 8 ++++---- discord-electron-openasar/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 09d0727..9e4ddc0 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v33) for increased security and performance - pkgver = 0.0.71+830 - pkgrel = 2 + pkgver = 0.0.72+830 + pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.71/discord-0.0.71.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.72/discord-0.0.72.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=f92ee8c3dc6b6ff9829f69a1339e0f82a877929c - sha512sums = c4042a56e8ad170901367ed562831d0f8933d8f0babf246639f8b5b17d7b437b58d6cf696f3c3d6a30674c041567115d0419a3e4c00de7064db58a4c77a61a93 + sha512sums = ddb791e1a92a30f2cab24fd7a686b621be33d51c2a7c0a0eed3293b4edd05f814ea850cbf43c9910f4576b17dc9e9c1367960f3d1536e7ec1ede372904c6c424 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c sha512sums = 4befe9f30b7d11da966692242353becca3f86f7d5b3eb73c48b6f42073b88f7c8a21141d3f84ee2ff10f74a4596d1391f0b200134599a36c9589074bec298573 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 475653a..8056913 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,9 +2,9 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.71+830 +pkgver=0.0.72+830 _pkgver=${pkgver%%+*} -pkgrel=2 +pkgrel=1 _electronver=33 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=f92ee8c3dc6b6ff9829f69a1339e0f82a877929c") -sha512sums=('c4042a56e8ad170901367ed562831d0f8933d8f0babf246639f8b5b17d7b437b58d6cf696f3c3d6a30674c041567115d0419a3e4c00de7064db58a4c77a61a93' +sha512sums=('ddb791e1a92a30f2cab24fd7a686b621be33d51c2a7c0a0eed3293b4edd05f814ea850cbf43c9910f4576b17dc9e9c1367960f3d1536e7ec1ede372904c6c424' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c' '4befe9f30b7d11da966692242353becca3f86f7d5b3eb73c48b6f42073b88f7c8a21141d3f84ee2ff10f74a4596d1391f0b200134599a36c9589074bec298573') From fd3f3ea7489f09331621dd103f09332aabee70a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 22 Oct 2024 23:24:13 +0200 Subject: [PATCH 867/971] upgpkg: tuned-git 2.24.0.r6.g35eed3c-2: fix deps See https://gitlab.archlinux.org/archlinux/packaging/packages/tuned/-/merge_requests/1 --- tuned-git/.SRCINFO | 12 ++++++------ tuned-git/PKGBUILD | 14 +++++++------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/tuned-git/.SRCINFO b/tuned-git/.SRCINFO index e9eb87d..2cda61e 100644 --- a/tuned-git/.SRCINFO +++ b/tuned-git/.SRCINFO @@ -1,31 +1,31 @@ pkgbase = tuned-git pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system pkgver = 2.24.0.r6.g35eed3c - pkgrel = 1 + pkgrel = 2 url = https://github.com/redhat-performance/tuned arch = any license = GPL-2.0-or-later makedepends = desktop-file-utils makedepends = git - depends = dbus-glib depends = ethtool depends = gawk depends = hdparm depends = polkit + depends = perf depends = python-configobj depends = python-dbus depends = python-gobject depends = python-linux-procfs - depends = python-perf depends = python-pyudev source = git+https://github.com/redhat-performance/tuned.git sha512sums = SKIP pkgname = tuned-git - optdepends = virt-what: virtual machine detection - optdepends = systemtap: detailed system monitoring + optdepends = virt-what: Virtual machine detection + optdepends = systemtap: Detailed system monitoring optdepends = tuned-ppd: power-profiles-daemon api translation - optdepends = wireless_tools: wireless device power management + optdepends = wireless_tools: Wireless device power management + optdepends = x86_energy_perf_policy: Energy Performance Bias (EPB) support provides = tuned conflicts = tuned backup = etc/tuned/active_profile diff --git a/tuned-git/PKGBUILD b/tuned-git/PKGBUILD index 946233b..036226b 100644 --- a/tuned-git/PKGBUILD +++ b/tuned-git/PKGBUILD @@ -8,14 +8,13 @@ _pkgbase=tuned pkgbase="${_pkgbase}-git" pkgname=("${_pkgbase}-git" "${_pkgbase}-ppd-git") pkgver=2.24.0.r6.g35eed3c -pkgrel=1 +pkgrel=2 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url="https://github.com/redhat-performance/${_pkgbase}" license=('GPL-2.0-or-later') -depends=('dbus-glib' 'ethtool' 'gawk' 'hdparm' 'polkit' 'python-configobj' - 'python-dbus' 'python-gobject' 'python-linux-procfs' 'python-perf' - 'python-pyudev') +depends=('ethtool' 'gawk' 'hdparm' 'polkit' 'perf' 'python-configobj' + 'python-dbus' 'python-gobject' 'python-linux-procfs' 'python-pyudev') makedepends=('desktop-file-utils' 'git') source=("git+${url}.git") sha512sums=('SKIP') @@ -35,10 +34,11 @@ prepare() { } package_tuned-git() { - optdepends=('virt-what: virtual machine detection' - 'systemtap: detailed system monitoring' + optdepends=('virt-what: Virtual machine detection' + 'systemtap: Detailed system monitoring' 'tuned-ppd: power-profiles-daemon api translation' - 'wireless_tools: wireless device power management') + 'wireless_tools: Wireless device power management' + 'x86_energy_perf_policy: Energy Performance Bias (EPB) support') provides=("${_pkgbase}") conflicts=("${_pkgbase}") backup=('etc/tuned/active_profile' From a2d0aaaa52b0cf0c3181e80c769b07ea15f9b83f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 24 Oct 2024 23:57:31 +0200 Subject: [PATCH 868/971] upgpkg: firefox-syncstorage 0.17.11-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index 2b74997..f28eb4d 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.17.9 + pkgver = 0.17.11 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -21,9 +21,9 @@ pkgbase = firefox-syncstorage optdepends = mysql: for use with a local database server options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.17.9/syncstorage-rs-0.17.9.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.17.11/syncstorage-rs-0.17.11.tar.gz source = firefox-syncstorage.service - sha512sums = 238d9e6ad768010d14d56f3cd0c84d5f256eb5f854cdbae32bc881047819bd1d1fd5a02cfa53e1c145cbc40b9d652c0d7661c43d3bd3102017bb662b322b32eb + sha512sums = 6bad9636d3893c38da9b73b7000cf287fc4f837632811a8f1bf8b5ef1d723e151bade9a8641e2ce1f8bd7fceda1251d57a71f1a6e2b8d6040177ebf876380a3e sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index 922b5fb..d8720fc 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.17.9 +pkgver=0.17.11 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -18,7 +18,7 @@ options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha512sums=('238d9e6ad768010d14d56f3cd0c84d5f256eb5f854cdbae32bc881047819bd1d1fd5a02cfa53e1c145cbc40b9d652c0d7661c43d3bd3102017bb662b322b32eb' +sha512sums=('6bad9636d3893c38da9b73b7000cf287fc4f837632811a8f1bf8b5ef1d723e151bade9a8641e2ce1f8bd7fceda1251d57a71f1a6e2b8d6040177ebf876380a3e' '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") From 4503924ffee0d2bf88864d84bfef8c41c0f45a16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 25 Oct 2024 20:28:30 +0200 Subject: [PATCH 869/971] upgpkg: polkit-explorer-git 22.3ad139b-5 * Update to Qt6 --- polkit-explorer-git/.SRCINFO | 6 +++--- polkit-explorer-git/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/polkit-explorer-git/.SRCINFO b/polkit-explorer-git/.SRCINFO index 75ee242..fc24cd5 100644 --- a/polkit-explorer-git/.SRCINFO +++ b/polkit-explorer-git/.SRCINFO @@ -1,12 +1,12 @@ pkgbase = polkit-explorer-git pkgdesc = Present PolicyKit information in a human-readable form. - pkgver = 15.fac8d70 - pkgrel = 4 + pkgver = 22.3ad139b + pkgrel = 5 url = https://github.com/scarygliders/polkit-explorer arch = any license = ISC makedepends = git - depends = python-pyqt5 + depends = pyside6 depends = python-lxml provides = polkit-explorer conflicts = polkit-explorer diff --git a/polkit-explorer-git/PKGBUILD b/polkit-explorer-git/PKGBUILD index de390f0..bc56b51 100644 --- a/polkit-explorer-git/PKGBUILD +++ b/polkit-explorer-git/PKGBUILD @@ -3,13 +3,13 @@ pkgname=polkit-explorer-git _pkgname=${pkgname%-git} -pkgver=15.fac8d70 -pkgrel=4 +pkgver=22.3ad139b +pkgrel=5 pkgdesc='Present PolicyKit information in a human-readable form.' arch=('any') url="https://github.com/scarygliders/${_pkgname}" license=('ISC') -depends=('python-pyqt5' 'python-lxml') +depends=('pyside6' 'python-lxml') makedepends=('git') conflicts=('polkit-explorer') provides=('polkit-explorer') From dd187c59633b62ce2e1432b77b8ab37b18d22c71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 30 Oct 2024 19:57:25 +0100 Subject: [PATCH 870/971] upgpkg: firefox-syncstorage 0.17.12-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index f28eb4d..14cba19 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.17.11 + pkgver = 0.17.12 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -21,9 +21,9 @@ pkgbase = firefox-syncstorage optdepends = mysql: for use with a local database server options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.17.11/syncstorage-rs-0.17.11.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.17.12/syncstorage-rs-0.17.12.tar.gz source = firefox-syncstorage.service - sha512sums = 6bad9636d3893c38da9b73b7000cf287fc4f837632811a8f1bf8b5ef1d723e151bade9a8641e2ce1f8bd7fceda1251d57a71f1a6e2b8d6040177ebf876380a3e + sha512sums = 3fa5b587626554172f5b356eac5b3eff74b16abd8189996331f02e5237b5df1e9496fb64eed425fadc843f652c1f36b7b3d8f5a3d831e49852f58188763fbe54 sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index d8720fc..f10c745 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.17.11 +pkgver=0.17.12 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -18,7 +18,7 @@ options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha512sums=('6bad9636d3893c38da9b73b7000cf287fc4f837632811a8f1bf8b5ef1d723e151bade9a8641e2ce1f8bd7fceda1251d57a71f1a6e2b8d6040177ebf876380a3e' +sha512sums=('3fa5b587626554172f5b356eac5b3eff74b16abd8189996331f02e5237b5df1e9496fb64eed425fadc843f652c1f36b7b3d8f5a3d831e49852f58188763fbe54' '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") From 39268ce386bd220f702a589c80b0481c06fe3235 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 31 Oct 2024 22:57:21 +0100 Subject: [PATCH 871/971] upgpkg: firefox-syncstorage 0.17.13-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index 14cba19..d0f6f84 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.17.12 + pkgver = 0.17.13 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -21,9 +21,9 @@ pkgbase = firefox-syncstorage optdepends = mysql: for use with a local database server options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.17.12/syncstorage-rs-0.17.12.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.17.13/syncstorage-rs-0.17.13.tar.gz source = firefox-syncstorage.service - sha512sums = 3fa5b587626554172f5b356eac5b3eff74b16abd8189996331f02e5237b5df1e9496fb64eed425fadc843f652c1f36b7b3d8f5a3d831e49852f58188763fbe54 + sha512sums = 5966864b6699a3d38ea598280fa2415826ff3d737862a4d7c412502fd8d5821665985ae85e11e1f3255c7e6c154da29d808532778bed490c6f166aeb60477a73 sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index f10c745..afe5980 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.17.12 +pkgver=0.17.13 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -18,7 +18,7 @@ options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha512sums=('3fa5b587626554172f5b356eac5b3eff74b16abd8189996331f02e5237b5df1e9496fb64eed425fadc843f652c1f36b7b3d8f5a3d831e49852f58188763fbe54' +sha512sums=('5966864b6699a3d38ea598280fa2415826ff3d737862a4d7c412502fd8d5821665985ae85e11e1f3255c7e6c154da29d808532778bed490c6f166aeb60477a73' '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") From bb287a94e3b907b4d38a76e05f80b2ad14b5d172 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 4 Nov 2024 20:11:34 +0100 Subject: [PATCH 872/971] upgpkg: clonezilla-unstable 5.7.6-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 20c758f..ebba091 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.23 + pkgver = 5.7.6 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.23.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.7.6.tar.xz source = usrbin.patch - sha512sums = 49e2066b3c1393795c3674512d1c44ccdfac769189d140cf361d2236625a439e72d066bf409ae25b9660638d906d217870c194b0cec770ee0230221433408108 + sha512sums = f2dbb53059e1c0ff2ac282c820a3216b8e1a95102bf8443c69453fe201b179e18b80ab6e591bd624a7b5a1173bf7764754bc7f608d3af0a7d625de6632ebe9b9 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index b17d387..ebdcdc7 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.23 +pkgver=5.7.6 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('49e2066b3c1393795c3674512d1c44ccdfac769189d140cf361d2236625a439e72d066bf409ae25b9660638d906d217870c194b0cec770ee0230221433408108' +sha512sums=('f2dbb53059e1c0ff2ac282c820a3216b8e1a95102bf8443c69453fe201b179e18b80ab6e591bd624a7b5a1173bf7764754bc7f608d3af0a7d625de6632ebe9b9' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From de2ed732d1a323b9524701144a5889186a57fdbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 4 Nov 2024 20:11:34 +0100 Subject: [PATCH 873/971] upgpkg: clonezilla-unstable 5.7.6-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 20c758f..ebba091 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.6.23 + pkgver = 5.7.6 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.23.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.7.6.tar.xz source = usrbin.patch - sha512sums = 49e2066b3c1393795c3674512d1c44ccdfac769189d140cf361d2236625a439e72d066bf409ae25b9660638d906d217870c194b0cec770ee0230221433408108 + sha512sums = f2dbb53059e1c0ff2ac282c820a3216b8e1a95102bf8443c69453fe201b179e18b80ab6e591bd624a7b5a1173bf7764754bc7f608d3af0a7d625de6632ebe9b9 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index b17d387..ebdcdc7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.6.23 +pkgver=5.7.6 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('49e2066b3c1393795c3674512d1c44ccdfac769189d140cf361d2236625a439e72d066bf409ae25b9660638d906d217870c194b0cec770ee0230221433408108' +sha512sums=('f2dbb53059e1c0ff2ac282c820a3216b8e1a95102bf8443c69453fe201b179e18b80ab6e591bd624a7b5a1173bf7764754bc7f608d3af0a7d625de6632ebe9b9' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From cb7cd0a1f07c4171906c2b3e4fefa65487dc8e75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 4 Nov 2024 20:11:55 +0100 Subject: [PATCH 874/971] upgpkg: discord-electron 0.0.73-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 09a0d71..b4181a9 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v33) for increased security and performance - pkgver = 0.0.72 + pkgver = 0.0.73 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.72/discord-0.0.72.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.73/discord-0.0.73.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = ddb791e1a92a30f2cab24fd7a686b621be33d51c2a7c0a0eed3293b4edd05f814ea850cbf43c9910f4576b17dc9e9c1367960f3d1536e7ec1ede372904c6c424 + sha512sums = 2af7c5f606b60587551a9a84f50a7f499fd0398c3151bfc960e3761742ea402f8cdc164de1f969fb8308c26fd294b57db79d674de185d4a19979c298a53cb185 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 5bba7ca..d3d5724 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.72 +pkgver=0.0.73 pkgrel=1 _electronver=33 _electronname="electron${_electronver}" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('ddb791e1a92a30f2cab24fd7a686b621be33d51c2a7c0a0eed3293b4edd05f814ea850cbf43c9910f4576b17dc9e9c1367960f3d1536e7ec1ede372904c6c424' +sha512sums=('2af7c5f606b60587551a9a84f50a7f499fd0398c3151bfc960e3761742ea402f8cdc164de1f969fb8308c26fd294b57db79d674de185d4a19979c298a53cb185' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c') From fb1f5d1899e0b405b11c182072a4922065660d5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 4 Nov 2024 20:12:01 +0100 Subject: [PATCH 875/971] upgpkg: discord-electron-openasar 0.0.73+830-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 9e4ddc0..333a18b 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v33) for increased security and performance - pkgver = 0.0.72+830 + pkgver = 0.0.73+830 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.72/discord-0.0.72.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.73/discord-0.0.73.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=f92ee8c3dc6b6ff9829f69a1339e0f82a877929c - sha512sums = ddb791e1a92a30f2cab24fd7a686b621be33d51c2a7c0a0eed3293b4edd05f814ea850cbf43c9910f4576b17dc9e9c1367960f3d1536e7ec1ede372904c6c424 + sha512sums = 2af7c5f606b60587551a9a84f50a7f499fd0398c3151bfc960e3761742ea402f8cdc164de1f969fb8308c26fd294b57db79d674de185d4a19979c298a53cb185 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c sha512sums = 4befe9f30b7d11da966692242353becca3f86f7d5b3eb73c48b6f42073b88f7c8a21141d3f84ee2ff10f74a4596d1391f0b200134599a36c9589074bec298573 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 8056913..9117630 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.72+830 +pkgver=0.0.73+830 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=33 @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=f92ee8c3dc6b6ff9829f69a1339e0f82a877929c") -sha512sums=('ddb791e1a92a30f2cab24fd7a686b621be33d51c2a7c0a0eed3293b4edd05f814ea850cbf43c9910f4576b17dc9e9c1367960f3d1536e7ec1ede372904c6c424' +sha512sums=('2af7c5f606b60587551a9a84f50a7f499fd0398c3151bfc960e3761742ea402f8cdc164de1f969fb8308c26fd294b57db79d674de185d4a19979c298a53cb185' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c' '4befe9f30b7d11da966692242353becca3f86f7d5b3eb73c48b6f42073b88f7c8a21141d3f84ee2ff10f74a4596d1391f0b200134599a36c9589074bec298573') From 34fb7fa492cb471a5adabd92ed509a2d8580111e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 5 Nov 2024 19:55:25 +0100 Subject: [PATCH 876/971] upgpkg: linpack 2025.0.0-1 upstream release --- linpack/.SRCINFO | 6 +++--- linpack/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/linpack/.SRCINFO b/linpack/.SRCINFO index 201c93c..363c6dc 100644 --- a/linpack/.SRCINFO +++ b/linpack/.SRCINFO @@ -1,16 +1,16 @@ pkgbase = linpack pkgdesc = Benchmark that measures a system's floating-point rate of execution by solving dense linear equations - pkgver = 2024.2.0 + pkgver = 2025.0.0 pkgrel = 1 url = https://software.intel.com/en-us/articles/intel-math-kernel-library-linpack-download arch = x86_64 license = LicenseRef-Intel-SmpL-2022 options = !strip backup = etc/linpack.conf - source = https://downloadmirror.intel.com/825890/l_onemklbench_p_2024.2.0_527.tgz + source = https://downloadmirror.intel.com/837792/l_onemklbench_p_2025.0.0_777.tgz source = linpack.conf source = linpack_runme_xeon64 - sha512sums = 589be7ea199e362ad9eb6ef6deb7d3fc2d751417515b475fb64682f602c84d39f2dd26477869092a9499a919223ab9e7e15eaa7a2e4593b8bd47526a6d1bec89 + sha512sums = b8d44e945c928f6128aab3474d1a8ff3d3fc6caf1d13df5726382c3f2f6e598633f47e4e29293f3540a11e4d24896b2b1ab016d5abbe4d8b6fdcdcc8c5974ca0 sha512sums = 69b049a3a1c0b674e471bc61e1f88f729db1dd454eb0bfc9adde7c3a4876bb396a91f57f19d5e1add906ee4282068d8cd0fa5f1a59bf8a96784846a3c9f63ab1 sha512sums = 3e880d4e0af8154ac1d591177e08ceda28f5ff5fbf698e47f99de8621e37137ecf26024048bd0ee81fc7af73ca8ae0deeb0a309325970a701ac5f13b571bdb60 diff --git a/linpack/PKGBUILD b/linpack/PKGBUILD index fafcdc5..520455a 100644 --- a/linpack/PKGBUILD +++ b/linpack/PKGBUILD @@ -2,8 +2,8 @@ # Contributor: graysky pkgname='linpack' -_pkgver=2024.2.0_527 -_pkgid=825890 +_pkgver=2025.0.0_777 +_pkgid=837792 pkgver=${_pkgver%%_*} _math_kernel_lib=${pkgver%%.0} pkgrel=1 @@ -16,7 +16,7 @@ options=('!strip') source=("https://downloadmirror.intel.com/${_pkgid}/l_onemklbench_p_${_pkgver}.tgz" 'linpack.conf' 'linpack_runme_xeon64') -sha512sums=('589be7ea199e362ad9eb6ef6deb7d3fc2d751417515b475fb64682f602c84d39f2dd26477869092a9499a919223ab9e7e15eaa7a2e4593b8bd47526a6d1bec89' +sha512sums=('b8d44e945c928f6128aab3474d1a8ff3d3fc6caf1d13df5726382c3f2f6e598633f47e4e29293f3540a11e4d24896b2b1ab016d5abbe4d8b6fdcdcc8c5974ca0' '69b049a3a1c0b674e471bc61e1f88f729db1dd454eb0bfc9adde7c3a4876bb396a91f57f19d5e1add906ee4282068d8cd0fa5f1a59bf8a96784846a3c9f63ab1' '3e880d4e0af8154ac1d591177e08ceda28f5ff5fbf698e47f99de8621e37137ecf26024048bd0ee81fc7af73ca8ae0deeb0a309325970a701ac5f13b571bdb60') From d8b44559e7c6d4dea66cc4cbe6f7f0969178a430 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 8 Nov 2024 21:49:18 +0100 Subject: [PATCH 877/971] upgpkg: gvisor-bin 20241104.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index 7e027ce..0790b3e 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20241007.0 + pkgver = 20241104.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20241007.0::https://storage.googleapis.com/gvisor/releases/release/20241007.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20241007.0::https://storage.googleapis.com/gvisor/releases/release/20241007.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = 4c14a5a1d41ed505376feba6ab90dd0cff8444eb1a0b8c735febec818b84e5bb33b4e7c9b800a0bbc0d75acc73e1b97455e1319a12cff60e0a40b0db3a8b5f12 - sha512sums_x86_64 = b7cb0ab08ad91689e2b2c8a1afe8b457d7d7af3692d002c24c23e9ddbfa1fcfc62c1a81386c4bf15ae58b0c514447104b1c7b83a57133de62b1c10e3f9c8e73c - source_aarch64 = runsc-aarch64-20241007.0::https://storage.googleapis.com/gvisor/releases/release/20241007.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20241007.0::https://storage.googleapis.com/gvisor/releases/release/20241007.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = e3807ab44a473c9c856503d97850023c84c174b375e37ed66ea0c791789ff17805c6496b64194fa3564614f7c27e2f90ce38d0bb7de794edce280b5f2550dc2d - sha512sums_aarch64 = cd7d19c16a15877c18ddab638db22452f2e58c02077116773338f84acd57bf8fe2d9d4401ae35e3cdcb1301a61e560c5793320754fb53645bbbaeea4944936bd + source_x86_64 = runsc-x86_64-20241104.0::https://storage.googleapis.com/gvisor/releases/release/20241104.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20241104.0::https://storage.googleapis.com/gvisor/releases/release/20241104.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = cc7377e0edc89e1dc11b6c4b678ebc3df4f356baa6a0bf73b78fbb1483694b378592b731b7b27900cc0035ed747d6b35449cdce25bfb7e3a5be3bb11806cf5f7 + sha512sums_x86_64 = 955254fba6c8199d6ee20aac2b7c0fde3aa97a752a827a7ef26d34f2e3ea5cdf27cb78648413dbc03e4278a5828c7a43240c6a5b2656029c62778fbee9e7c22c + source_aarch64 = runsc-aarch64-20241104.0::https://storage.googleapis.com/gvisor/releases/release/20241104.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20241104.0::https://storage.googleapis.com/gvisor/releases/release/20241104.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 89cc1914b390e206cfd60ece8987338f501e35b771e9d55f775a392508c1c371119a937f0bd6c76857a60f73010b29f4baf124b1047d57e0a8bdbfb046cfba45 + sha512sums_aarch64 = c24f4ba4a08eb8025d204cf83cb0bbdb72913ac63a5e91f600e66c3fcdb7f97817056e8c9045a3d47187da88f59e27bf417e92fbb12b593d42c633e1f895fb24 pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index f5315f0..b9d24dd 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20241007.0 +pkgver=20241104.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('4c14a5a1d41ed505376feba6ab90dd0cff8444eb1a0b8c735febec818b84e5bb33b4e7c9b800a0bbc0d75acc73e1b97455e1319a12cff60e0a40b0db3a8b5f12' - 'b7cb0ab08ad91689e2b2c8a1afe8b457d7d7af3692d002c24c23e9ddbfa1fcfc62c1a81386c4bf15ae58b0c514447104b1c7b83a57133de62b1c10e3f9c8e73c') -sha512sums_aarch64=('e3807ab44a473c9c856503d97850023c84c174b375e37ed66ea0c791789ff17805c6496b64194fa3564614f7c27e2f90ce38d0bb7de794edce280b5f2550dc2d' - 'cd7d19c16a15877c18ddab638db22452f2e58c02077116773338f84acd57bf8fe2d9d4401ae35e3cdcb1301a61e560c5793320754fb53645bbbaeea4944936bd') +sha512sums_x86_64=('cc7377e0edc89e1dc11b6c4b678ebc3df4f356baa6a0bf73b78fbb1483694b378592b731b7b27900cc0035ed747d6b35449cdce25bfb7e3a5be3bb11806cf5f7' + '955254fba6c8199d6ee20aac2b7c0fde3aa97a752a827a7ef26d34f2e3ea5cdf27cb78648413dbc03e4278a5828c7a43240c6a5b2656029c62778fbee9e7c22c') +sha512sums_aarch64=('89cc1914b390e206cfd60ece8987338f501e35b771e9d55f775a392508c1c371119a937f0bd6c76857a60f73010b29f4baf124b1047d57e0a8bdbfb046cfba45' + 'c24f4ba4a08eb8025d204cf83cb0bbdb72913ac63a5e91f600e66c3fcdb7f97817056e8c9045a3d47187da88f59e27bf417e92fbb12b593d42c633e1f895fb24') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From 04e158defae8dab93de276495a10ff9105431b88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 8 Nov 2024 21:49:39 +0100 Subject: [PATCH 878/971] upgpkg: gvisor-git 20241104.0-1 upstream release --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index 741163a..ed6a6d3 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20241007.0 + pkgver = 20241104.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index 6559ff5..65668ce 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20241007.0 +pkgver=20241104.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From fcac0a55d97503a017b602cce7c633f788c14ae5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 12 Nov 2024 23:58:47 +0100 Subject: [PATCH 879/971] upgpkg: discord-electron 0.0.74-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index b4181a9..4bfb200 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v33) for increased security and performance - pkgver = 0.0.73 + pkgver = 0.0.74 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.73/discord-0.0.73.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.74/discord-0.0.74.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = 2af7c5f606b60587551a9a84f50a7f499fd0398c3151bfc960e3761742ea402f8cdc164de1f969fb8308c26fd294b57db79d674de185d4a19979c298a53cb185 + sha512sums = 204add0f20df85a45a88c371c419ff6f11c35f783e9ed1ce6323963d0f6570b142d3168512065d17f34aa56e910de30b4bf4153c5d1f306e04b5ca46032de606 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index d3d5724..058bb22 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.73 +pkgver=0.0.74 pkgrel=1 _electronver=33 _electronname="electron${_electronver}" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('2af7c5f606b60587551a9a84f50a7f499fd0398c3151bfc960e3761742ea402f8cdc164de1f969fb8308c26fd294b57db79d674de185d4a19979c298a53cb185' +sha512sums=('204add0f20df85a45a88c371c419ff6f11c35f783e9ed1ce6323963d0f6570b142d3168512065d17f34aa56e910de30b4bf4153c5d1f306e04b5ca46032de606' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c') From a74051ab589282dcf8bcb17eac44c99130d9b452 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 12 Nov 2024 23:59:06 +0100 Subject: [PATCH 880/971] upgpkg: discord-electron-openasar 0.0.74+830-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 333a18b..375fcdc 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v33) for increased security and performance - pkgver = 0.0.73+830 + pkgver = 0.0.74+830 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.73/discord-0.0.73.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.74/discord-0.0.74.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=f92ee8c3dc6b6ff9829f69a1339e0f82a877929c - sha512sums = 2af7c5f606b60587551a9a84f50a7f499fd0398c3151bfc960e3761742ea402f8cdc164de1f969fb8308c26fd294b57db79d674de185d4a19979c298a53cb185 + sha512sums = 204add0f20df85a45a88c371c419ff6f11c35f783e9ed1ce6323963d0f6570b142d3168512065d17f34aa56e910de30b4bf4153c5d1f306e04b5ca46032de606 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c sha512sums = 4befe9f30b7d11da966692242353becca3f86f7d5b3eb73c48b6f42073b88f7c8a21141d3f84ee2ff10f74a4596d1391f0b200134599a36c9589074bec298573 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 9117630..7fe79bc 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.73+830 +pkgver=0.0.74+830 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=33 @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=f92ee8c3dc6b6ff9829f69a1339e0f82a877929c") -sha512sums=('2af7c5f606b60587551a9a84f50a7f499fd0398c3151bfc960e3761742ea402f8cdc164de1f969fb8308c26fd294b57db79d674de185d4a19979c298a53cb185' +sha512sums=('204add0f20df85a45a88c371c419ff6f11c35f783e9ed1ce6323963d0f6570b142d3168512065d17f34aa56e910de30b4bf4153c5d1f306e04b5ca46032de606' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c' '4befe9f30b7d11da966692242353becca3f86f7d5b3eb73c48b6f42073b88f7c8a21141d3f84ee2ff10f74a4596d1391f0b200134599a36c9589074bec298573') From 1dcf9c748d056fc3761a8136bca533e813612b12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 19 Nov 2024 20:32:21 +0100 Subject: [PATCH 881/971] upgpkg: discord-electron 0.0.75-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 4bfb200..5295948 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v33) for increased security and performance - pkgver = 0.0.74 + pkgver = 0.0.75 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.74/discord-0.0.74.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.75/discord-0.0.75.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = 204add0f20df85a45a88c371c419ff6f11c35f783e9ed1ce6323963d0f6570b142d3168512065d17f34aa56e910de30b4bf4153c5d1f306e04b5ca46032de606 + sha512sums = 3c05f5ca4faebbe4973ffd977a17da6f398a1725fd3be18d9b025faf3ed7b99cb71e7b3219147492e1180b7b341b05886aeeb39f15a85b180b633db56c9821b7 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 058bb22..7f9b33e 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.74 +pkgver=0.0.75 pkgrel=1 _electronver=33 _electronname="electron${_electronver}" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('204add0f20df85a45a88c371c419ff6f11c35f783e9ed1ce6323963d0f6570b142d3168512065d17f34aa56e910de30b4bf4153c5d1f306e04b5ca46032de606' +sha512sums=('3c05f5ca4faebbe4973ffd977a17da6f398a1725fd3be18d9b025faf3ed7b99cb71e7b3219147492e1180b7b341b05886aeeb39f15a85b180b633db56c9821b7' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c') From 407a0bc664374cb7a1c269e18eaeec875afe9fd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 19 Nov 2024 20:32:40 +0100 Subject: [PATCH 882/971] upgpkg: discord-electron-openasar 0.0.75+832-1 upstream release Update to latest OpenAsar commit --- discord-electron-openasar/.SRCINFO | 10 +++++----- discord-electron-openasar/PKGBUILD | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 375fcdc..45515c8 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v33) for increased security and performance - pkgver = 0.0.74+830 + pkgver = 0.0.75+832 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,13 +21,13 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.74/discord-0.0.74.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.75/discord-0.0.75.tar.gz source = discord-launcher.sh source = krisp-patcher.py - source = git+https://github.com/goosemod/openasar.git#commit=f92ee8c3dc6b6ff9829f69a1339e0f82a877929c - sha512sums = 204add0f20df85a45a88c371c419ff6f11c35f783e9ed1ce6323963d0f6570b142d3168512065d17f34aa56e910de30b4bf4153c5d1f306e04b5ca46032de606 + source = git+https://github.com/goosemod/openasar.git#commit=ef4470849624032a8eb7265eabd23158aa5a2356 + sha512sums = 3c05f5ca4faebbe4973ffd977a17da6f398a1725fd3be18d9b025faf3ed7b99cb71e7b3219147492e1180b7b341b05886aeeb39f15a85b180b633db56c9821b7 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c - sha512sums = 4befe9f30b7d11da966692242353becca3f86f7d5b3eb73c48b6f42073b88f7c8a21141d3f84ee2ff10f74a4596d1391f0b200134599a36c9589074bec298573 + sha512sums = 0ae2aacd3939274d32fa4dcd80054c54f3d0571d803f775ec80f4c75ea52f2de90ec51ee46b4622222c8895225416068157f6985c493e39efcdc224c053d7ef0 pkgname = discord-electron-openasar diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 7fe79bc..630e573 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.74+830 +pkgver=0.0.75+832 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=33 @@ -27,11 +27,11 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py - "git+https://github.com/goosemod/openasar.git#commit=f92ee8c3dc6b6ff9829f69a1339e0f82a877929c") -sha512sums=('204add0f20df85a45a88c371c419ff6f11c35f783e9ed1ce6323963d0f6570b142d3168512065d17f34aa56e910de30b4bf4153c5d1f306e04b5ca46032de606' + "git+https://github.com/goosemod/openasar.git#commit=ef4470849624032a8eb7265eabd23158aa5a2356") +sha512sums=('3c05f5ca4faebbe4973ffd977a17da6f398a1725fd3be18d9b025faf3ed7b99cb71e7b3219147492e1180b7b341b05886aeeb39f15a85b180b633db56c9821b7' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c' - '4befe9f30b7d11da966692242353becca3f86f7d5b3eb73c48b6f42073b88f7c8a21141d3f84ee2ff10f74a4596d1391f0b200134599a36c9589074bec298573') + '0ae2aacd3939274d32fa4dcd80054c54f3d0571d803f775ec80f4c75ea52f2de90ec51ee46b4622222c8895225416068157f6985c493e39efcdc224c053d7ef0') # just in case I get the version wrong pkgver() { From e9b695b1b20234eb0253c00160028d09ba6f9d6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 19 Nov 2024 20:34:42 +0100 Subject: [PATCH 883/971] upgpkg: firefox-syncstorage 0.17.14-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index d0f6f84..4c4e78d 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.17.13 + pkgver = 0.17.14 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -21,9 +21,9 @@ pkgbase = firefox-syncstorage optdepends = mysql: for use with a local database server options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.17.13/syncstorage-rs-0.17.13.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.17.14/syncstorage-rs-0.17.14.tar.gz source = firefox-syncstorage.service - sha512sums = 5966864b6699a3d38ea598280fa2415826ff3d737862a4d7c412502fd8d5821665985ae85e11e1f3255c7e6c154da29d808532778bed490c6f166aeb60477a73 + sha512sums = ba661ef6c5d8af8ea8752b972fce06f016fbc700de6be30086871c15b07ccf7b55da8f4a46b3090fe7abc16301955562d3b136247cfac9821e900d456621e8bd sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index afe5980..3f68ce4 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.17.13 +pkgver=0.17.14 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -18,7 +18,7 @@ options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha512sums=('5966864b6699a3d38ea598280fa2415826ff3d737862a4d7c412502fd8d5821665985ae85e11e1f3255c7e6c154da29d808532778bed490c6f166aeb60477a73' +sha512sums=('ba661ef6c5d8af8ea8752b972fce06f016fbc700de6be30086871c15b07ccf7b55da8f4a46b3090fe7abc16301955562d3b136247cfac9821e900d456621e8bd' '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") From 91e638fdaef6f636a191eec8b33509d49f6a5565 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 22 Nov 2024 21:24:41 +0100 Subject: [PATCH 884/971] upgpkg: firefox-syncstorage 0.17.15-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index 4c4e78d..ea06d3a 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.17.14 + pkgver = 0.17.15 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -21,9 +21,9 @@ pkgbase = firefox-syncstorage optdepends = mysql: for use with a local database server options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.17.14/syncstorage-rs-0.17.14.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.17.15/syncstorage-rs-0.17.15.tar.gz source = firefox-syncstorage.service - sha512sums = ba661ef6c5d8af8ea8752b972fce06f016fbc700de6be30086871c15b07ccf7b55da8f4a46b3090fe7abc16301955562d3b136247cfac9821e900d456621e8bd + sha512sums = 349e736da7edd2170c6f2c88d2d394a9a8ac1b1e359326a573baed614492c684b14cb3c38c0d56df17136569e66e33f568d9ba984d8e0b40300213041f433e60 sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index 3f68ce4..4aaf857 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.17.14 +pkgver=0.17.15 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -18,7 +18,7 @@ options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha512sums=('ba661ef6c5d8af8ea8752b972fce06f016fbc700de6be30086871c15b07ccf7b55da8f4a46b3090fe7abc16301955562d3b136247cfac9821e900d456621e8bd' +sha512sums=('349e736da7edd2170c6f2c88d2d394a9a8ac1b1e359326a573baed614492c684b14cb3c38c0d56df17136569e66e33f568d9ba984d8e0b40300213041f433e60' '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") From eb5534448675a0d03a19336290464cca2de159ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 25 Nov 2024 21:00:54 +0100 Subject: [PATCH 885/971] upgpkg: discord-electron 0.0.76-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 5295948..631276f 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v33) for increased security and performance - pkgver = 0.0.75 + pkgver = 0.0.76 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.75/discord-0.0.75.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.76/discord-0.0.76.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = 3c05f5ca4faebbe4973ffd977a17da6f398a1725fd3be18d9b025faf3ed7b99cb71e7b3219147492e1180b7b341b05886aeeb39f15a85b180b633db56c9821b7 + sha512sums = 3a5bdd4ce366f142c40e6acc4ab9faf1f61480c8aaa984abb3c37755e586ee2143c083af561595ff18f6587d3bceffe9d27c9b1069134abd612f63e7db636ee6 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 7f9b33e..74eb0bb 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.75 +pkgver=0.0.76 pkgrel=1 _electronver=33 _electronname="electron${_electronver}" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('3c05f5ca4faebbe4973ffd977a17da6f398a1725fd3be18d9b025faf3ed7b99cb71e7b3219147492e1180b7b341b05886aeeb39f15a85b180b633db56c9821b7' +sha512sums=('3a5bdd4ce366f142c40e6acc4ab9faf1f61480c8aaa984abb3c37755e586ee2143c083af561595ff18f6587d3bceffe9d27c9b1069134abd612f63e7db636ee6' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c') From d55a96f70b34647d168f2d3c60c13867cc82d73c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 25 Nov 2024 21:01:12 +0100 Subject: [PATCH 886/971] upgpkg: discord-electron-openasar 0.0.76+832-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 45515c8..3653aa6 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v33) for increased security and performance - pkgver = 0.0.75+832 + pkgver = 0.0.76+832 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.75/discord-0.0.75.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.76/discord-0.0.76.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=ef4470849624032a8eb7265eabd23158aa5a2356 - sha512sums = 3c05f5ca4faebbe4973ffd977a17da6f398a1725fd3be18d9b025faf3ed7b99cb71e7b3219147492e1180b7b341b05886aeeb39f15a85b180b633db56c9821b7 + sha512sums = 3a5bdd4ce366f142c40e6acc4ab9faf1f61480c8aaa984abb3c37755e586ee2143c083af561595ff18f6587d3bceffe9d27c9b1069134abd612f63e7db636ee6 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c sha512sums = 0ae2aacd3939274d32fa4dcd80054c54f3d0571d803f775ec80f4c75ea52f2de90ec51ee46b4622222c8895225416068157f6985c493e39efcdc224c053d7ef0 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 630e573..8f95920 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.75+832 +pkgver=0.0.76+832 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=33 @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=ef4470849624032a8eb7265eabd23158aa5a2356") -sha512sums=('3c05f5ca4faebbe4973ffd977a17da6f398a1725fd3be18d9b025faf3ed7b99cb71e7b3219147492e1180b7b341b05886aeeb39f15a85b180b633db56c9821b7' +sha512sums=('3a5bdd4ce366f142c40e6acc4ab9faf1f61480c8aaa984abb3c37755e586ee2143c083af561595ff18f6587d3bceffe9d27c9b1069134abd612f63e7db636ee6' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c' '0ae2aacd3939274d32fa4dcd80054c54f3d0571d803f775ec80f4c75ea52f2de90ec51ee46b4622222c8895225416068157f6985c493e39efcdc224c053d7ef0') From a62a9921f846fe3ac6c6bb5ccd0486b11602bf69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 27 Nov 2024 23:40:36 +0100 Subject: [PATCH 887/971] upgpkg: sublime-text-dev 4.4184-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 76a3188..88448f3 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4183 + pkgver = 4.4184 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -13,9 +13,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime-text-dev.sh sha512sums = ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9 - source_x86_64 = sublime_text_dev_4_4183_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4183_x64.tar.xz - sha512sums_x86_64 = f7218a7486b22937618e9eaa20fbc4d47d8d58a5bdef1579c1bd68aeca147c3195c34b988675d317c00c2be529e56c5e2ff01b5a9f64f9755e1d6bd89f5b21f0 - source_aarch64 = sublime_text_dev_4_4183_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4183_arm64.tar.xz - sha512sums_aarch64 = 329a54202c5837832f5666de8e32de53b80fbb61e3c1fcd424e12de8d793c5ddb7f1179053a0d60f19882895c24445f38c64f758dc2ca953d646e0dc19ea626a + source_x86_64 = sublime_text_dev_4_4184_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4184_x64.tar.xz + sha512sums_x86_64 = d10977ee222f6fd5abba4d9a7ce6dec64450a0a200222ffcadc11c94be0b9238a6f2cad41854e595e4f15e9f5b4b938f8e2bf952b2fdfc68e08f191955539521 + source_aarch64 = sublime_text_dev_4_4184_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4184_arm64.tar.xz + sha512sums_aarch64 = 6de63905eb12366c730de09571bd50954b044011bfd7127e251fe9bfa9e0a39a71f2159689985e114370ab3455ebfcb6adef9aff0eac712b60f61e758653a299 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index dd53ec0..e88d04c 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4183 +pkgver=4.4184 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -19,8 +19,8 @@ source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://down source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha512sums=('ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9') -sha512sums_x86_64=('f7218a7486b22937618e9eaa20fbc4d47d8d58a5bdef1579c1bd68aeca147c3195c34b988675d317c00c2be529e56c5e2ff01b5a9f64f9755e1d6bd89f5b21f0') -sha512sums_aarch64=('329a54202c5837832f5666de8e32de53b80fbb61e3c1fcd424e12de8d793c5ddb7f1179053a0d60f19882895c24445f38c64f758dc2ca953d646e0dc19ea626a') +sha512sums_x86_64=('d10977ee222f6fd5abba4d9a7ce6dec64450a0a200222ffcadc11c94be0b9238a6f2cad41854e595e4f15e9f5b4b938f8e2bf952b2fdfc68e08f191955539521') +sha512sums_aarch64=('6de63905eb12366c730de09571bd50954b044011bfd7127e251fe9bfa9e0a39a71f2159689985e114370ab3455ebfcb6adef9aff0eac712b60f61e758653a299') prepare() { sed -i -e "s|@ST_PATH@|/opt/sublime_text|g" "${pkgname}.sh" From 3458cfb18c5a2b954255f8a60bccf852bea9e0dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 27 Nov 2024 23:41:01 +0100 Subject: [PATCH 888/971] upgpkg: firefox-syncstorage 0.18.1-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index ea06d3a..6829703 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.17.15 + pkgver = 0.18.1 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -21,9 +21,9 @@ pkgbase = firefox-syncstorage optdepends = mysql: for use with a local database server options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.17.15/syncstorage-rs-0.17.15.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.18.1/syncstorage-rs-0.18.1.tar.gz source = firefox-syncstorage.service - sha512sums = 349e736da7edd2170c6f2c88d2d394a9a8ac1b1e359326a573baed614492c684b14cb3c38c0d56df17136569e66e33f568d9ba984d8e0b40300213041f433e60 + sha512sums = ef8b152f10f5fc00f922cdd6d15563f8dea1322ca0461796153882355645a1307da884ed2cb1d6ce98704a691f4e458a1634654c7b2aa6f1964b0207240c0f28 sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index 4aaf857..5fe1cfa 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.17.15 +pkgver=0.18.1 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -18,7 +18,7 @@ options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha512sums=('349e736da7edd2170c6f2c88d2d394a9a8ac1b1e359326a573baed614492c684b14cb3c38c0d56df17136569e66e33f568d9ba984d8e0b40300213041f433e60' +sha512sums=('ef8b152f10f5fc00f922cdd6d15563f8dea1322ca0461796153882355645a1307da884ed2cb1d6ce98704a691f4e458a1634654c7b2aa6f1964b0207240c0f28' '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") From 716947a4e28b261529d2bd87ea80611b05e1a370 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 27 Nov 2024 23:42:20 +0100 Subject: [PATCH 889/971] upgpkg: tuned-git 2.24.1.r0.g90c24ee-1 upstream release Remove unnecessary sed instruction and options variable due to upstream changes --- tuned-git/.SRCINFO | 5 ++--- tuned-git/PKGBUILD | 6 ++---- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/tuned-git/.SRCINFO b/tuned-git/.SRCINFO index 2cda61e..cedbe23 100644 --- a/tuned-git/.SRCINFO +++ b/tuned-git/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = tuned-git pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = 2.24.0.r6.g35eed3c - pkgrel = 2 + pkgver = 2.24.1.r0.g90c24ee + pkgrel = 1 url = https://github.com/redhat-performance/tuned arch = any license = GPL-2.0-or-later @@ -46,5 +46,4 @@ pkgname = tuned-ppd-git provides = power-profiles-daemon conflicts = tuned-ppd conflicts = power-profiles-daemon - options = !emptydirs backup = etc/tuned/ppd.conf diff --git a/tuned-git/PKGBUILD b/tuned-git/PKGBUILD index 036226b..a263354 100644 --- a/tuned-git/PKGBUILD +++ b/tuned-git/PKGBUILD @@ -7,8 +7,8 @@ _pkgbase=tuned pkgbase="${_pkgbase}-git" pkgname=("${_pkgbase}-git" "${_pkgbase}-ppd-git") -pkgver=2.24.0.r6.g35eed3c -pkgrel=2 +pkgver=2.24.1.r0.g90c24ee +pkgrel=1 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') url="https://github.com/redhat-performance/${_pkgbase}" @@ -30,7 +30,6 @@ prepare() { sed -i 's|/libexec/|/lib/|g' Makefile sed -i 's|/sbin/|/bin/|g' Makefile tuned.service tuned-gui.py tuned-gui.desktop tuned/ppd/tuned-ppd.service - sed -i 's|install-ppd: install$|install-ppd: install-dirs|' Makefile } package_tuned-git() { @@ -67,7 +66,6 @@ package_tuned-ppd-git() { provides=("${_pkgbase}-ppd" 'power-profiles-daemon') conflicts=("${_pkgbase}-ppd" 'power-profiles-daemon') backup=('etc/tuned/ppd.conf') - options=('!emptydirs') cd "${_pkgbase}" From 64b9caf8f211e59dc1756cd582f56b89a3dd76ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 29 Nov 2024 07:20:53 +0100 Subject: [PATCH 890/971] upgpkg: spot-client 0.5.0-1 upstream release --- spot-client/.SRCINFO | 6 +++--- spot-client/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/spot-client/.SRCINFO b/spot-client/.SRCINFO index 7d9f2b3..7cd862e 100644 --- a/spot-client/.SRCINFO +++ b/spot-client/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = spot-client pkgdesc = Gtk/Rust native Spotify client - pkgver = 0.4.1 + pkgver = 0.5.0 pkgrel = 1 url = https://github.com/xou816/spot arch = x86_64 @@ -26,9 +26,9 @@ pkgbase = spot-client depends = pango optdepends = org.freedesktop.secrets options = !lto - source = https://github.com/xou816/spot/archive/0.4.1/spot-0.4.1.tar.gz + source = https://github.com/xou816/spot/archive/0.5.0/spot-0.5.0.tar.gz source = disable-clippy.patch - sha512sums = 05ee8ce9277230a0f6c25411b41788a508551a61cd436bdd6bb0d8245030b0523232c0e30c7d2f98977382e687ec0f502cb6eb9b95a7dbaae97042ec596f407e + sha512sums = a2acbc2666c3acea86562227b490373bdeff67831bef7275b47e759db366cacbeb2411578f56be824cca6cd72c833e5830db89c203af1c8165e06927eabcf3ec sha512sums = 4e38fff2a5867c46749959ceb0fb16372f12c8f8038b6a33d43e126e741f43e524e1499bb9b514e56b036097aaa0ac5dd149823c2c9eba277ab0ea4f58d5fb55 pkgname = spot-client diff --git a/spot-client/PKGBUILD b/spot-client/PKGBUILD index 72a90dc..0b50251 100644 --- a/spot-client/PKGBUILD +++ b/spot-client/PKGBUILD @@ -4,8 +4,8 @@ _projectname='spot' pkgname="$_projectname-client" -pkgver='0.4.1' -pkgrel='1' +pkgver=0.5.0 +pkgrel=1 pkgdesc='Gtk/Rust native Spotify client' arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64') url="https://github.com/xou816/$_projectname" @@ -17,7 +17,7 @@ checkdepends=('appstream-glib') options=('!lto') # Build breaks with LTO enabled source=("https://github.com/xou816/$_projectname/archive/$pkgver/$_projectname-$pkgver.tar.gz" 'disable-clippy.patch') -sha512sums=('05ee8ce9277230a0f6c25411b41788a508551a61cd436bdd6bb0d8245030b0523232c0e30c7d2f98977382e687ec0f502cb6eb9b95a7dbaae97042ec596f407e' +sha512sums=('a2acbc2666c3acea86562227b490373bdeff67831bef7275b47e759db366cacbeb2411578f56be824cca6cd72c833e5830db89c203af1c8165e06927eabcf3ec' '4e38fff2a5867c46749959ceb0fb16372f12c8f8038b6a33d43e126e741f43e524e1499bb9b514e56b036097aaa0ac5dd149823c2c9eba277ab0ea4f58d5fb55') validpgpkeys=() # Waiting for https://github.com/xou816/spot/issues/283 From 0b73f88fb7fd298d3640400ff38f4ea9bba5936f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 30 Nov 2024 00:01:36 +0100 Subject: [PATCH 891/971] upgpkg: clonezilla-unstable 5.7.8-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index ebba091..8ce94fa 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.7.6 + pkgver = 5.7.8 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.7.6.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.7.8.tar.xz source = usrbin.patch - sha512sums = f2dbb53059e1c0ff2ac282c820a3216b8e1a95102bf8443c69453fe201b179e18b80ab6e591bd624a7b5a1173bf7764754bc7f608d3af0a7d625de6632ebe9b9 + sha512sums = 153a12a9a4beae97b708f6c22feed2a7dda77123ac43f927eafe544ee262e364111e0b877d69e28244acd37beed613d1ea3033b1b99e27cbbd8d188ad06b7354 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index ebdcdc7..8380169 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.7.6 +pkgver=5.7.8 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('f2dbb53059e1c0ff2ac282c820a3216b8e1a95102bf8443c69453fe201b179e18b80ab6e591bd624a7b5a1173bf7764754bc7f608d3af0a7d625de6632ebe9b9' +sha512sums=('153a12a9a4beae97b708f6c22feed2a7dda77123ac43f927eafe544ee262e364111e0b877d69e28244acd37beed613d1ea3033b1b99e27cbbd8d188ad06b7354' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 296fc260a2e31d7d61d6d9ab30dba92d4aa16a57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 30 Nov 2024 00:01:36 +0100 Subject: [PATCH 892/971] upgpkg: clonezilla-unstable 5.7.8-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index ebba091..8ce94fa 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.7.6 + pkgver = 5.7.8 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.7.6.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.7.8.tar.xz source = usrbin.patch - sha512sums = f2dbb53059e1c0ff2ac282c820a3216b8e1a95102bf8443c69453fe201b179e18b80ab6e591bd624a7b5a1173bf7764754bc7f608d3af0a7d625de6632ebe9b9 + sha512sums = 153a12a9a4beae97b708f6c22feed2a7dda77123ac43f927eafe544ee262e364111e0b877d69e28244acd37beed613d1ea3033b1b99e27cbbd8d188ad06b7354 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index ebdcdc7..8380169 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.7.6 +pkgver=5.7.8 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('f2dbb53059e1c0ff2ac282c820a3216b8e1a95102bf8443c69453fe201b179e18b80ab6e591bd624a7b5a1173bf7764754bc7f608d3af0a7d625de6632ebe9b9' +sha512sums=('153a12a9a4beae97b708f6c22feed2a7dda77123ac43f927eafe544ee262e364111e0b877d69e28244acd37beed613d1ea3033b1b99e27cbbd8d188ad06b7354' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 748f8e0af3a21f89c3ebff2c71f77d134617f53b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 2 Dec 2024 09:02:46 +0100 Subject: [PATCH 893/971] upgpkg: wxedid 0.0.32-1 upstream release --- wxedid/.SRCINFO | 6 +++--- wxedid/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/wxedid/.SRCINFO b/wxedid/.SRCINFO index cd3c3f3..858c8c4 100644 --- a/wxedid/.SRCINFO +++ b/wxedid/.SRCINFO @@ -1,12 +1,12 @@ pkgbase = wxedid pkgdesc = wxWidgets-based EDID (Extended Display Identification Data) editor - pkgver = 0.0.31 + pkgver = 0.0.32 pkgrel = 1 url = https://sourceforge.net/projects/wxedid/ arch = x86_64 license = GPL-3.0-or-later depends = wxwidgets-gtk3 - source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.31.tar.gz - sha512sums = 9e83ce46912ef1a43bccfa4e4086697cfec444ef932040e618210d682a6fa4a40bf78aece953e10a959ae7a38671b5782a0a4562cd776f71b5784c3bd1fcda5d + source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.32.tar.gz + sha512sums = 46aaf8a9fb578ea2ed725aa6a60a33f359dc76701226695d1f8e5c252d1fa834dc972fbf1f8788e4045699115bf3e7143bc70bc9d2b6a9731e69e0f51dfb6376 pkgname = wxedid diff --git a/wxedid/PKGBUILD b/wxedid/PKGBUILD index 9a13384..e136aba 100644 --- a/wxedid/PKGBUILD +++ b/wxedid/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Jonathan Liu pkgname=wxedid -pkgver=0.0.31 +pkgver=0.0.32 pkgrel=1 pkgdesc='wxWidgets-based EDID (Extended Display Identification Data) editor' arch=('x86_64') @@ -10,7 +10,7 @@ url="https://sourceforge.net/projects/${pkgname}/" license=('GPL-3.0-or-later') depends=('wxwidgets-gtk3') source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz") -sha512sums=('9e83ce46912ef1a43bccfa4e4086697cfec444ef932040e618210d682a6fa4a40bf78aece953e10a959ae7a38671b5782a0a4562cd776f71b5784c3bd1fcda5d') +sha512sums=('46aaf8a9fb578ea2ed725aa6a60a33f359dc76701226695d1f8e5c252d1fa834dc972fbf1f8788e4045699115bf3e7143bc70bc9d2b6a9731e69e0f51dfb6376') build() { cd "${pkgname}-${pkgver}" From b207fa82e6cf6c53f447e0ad30794d83290787f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 3 Dec 2024 08:54:23 +0100 Subject: [PATCH 894/971] Deleted package: florence * Package scheduled for deletion in AUR --- florence/.SRCINFO | 19 ------------------- florence/PKGBUILD | 36 ------------------------------------ 2 files changed, 55 deletions(-) delete mode 100644 florence/.SRCINFO delete mode 100644 florence/PKGBUILD diff --git a/florence/.SRCINFO b/florence/.SRCINFO deleted file mode 100644 index c362466..0000000 --- a/florence/.SRCINFO +++ /dev/null @@ -1,19 +0,0 @@ -pkgbase = florence - pkgdesc = A configurable on-screen virtual keyboard - pkgver = 0.6.3 - pkgrel = 3 - url = http://sourceforge.net/projects/florence/ - arch = i686 - arch = x86_64 - license = GPL-2.0-or-later - makedepends = intltool>=0.23 - depends = gtk3 - depends = libxml2 - depends = librsvg - depends = libxtst - depends = gettext - depends = gstreamer>=1.0 - source = http://sourceforge.net/projects/florence/files/florence/0.6.3/florence-0.6.3.tar.bz2 - sha512sums = c527e8c40c9a594106420a6187945d79dfa7ddb4f628805cd188c8a37f79f42cbc1f74b80e21186f104a79c4d5e90c7a9d93cbe35bf1c6ebfe874db047fbef3c - -pkgname = florence diff --git a/florence/PKGBUILD b/florence/PKGBUILD deleted file mode 100644 index fd0e1bf..0000000 --- a/florence/PKGBUILD +++ /dev/null @@ -1,36 +0,0 @@ -# Maintainer: Manuel Hüsers -# Contributor: UshakovVasilii -# Contributor: Charon77 -# Contributor: debdj - -pkgname=florence -pkgver=0.6.3 -pkgrel=3 -pkgdesc='A configurable on-screen virtual keyboard' -arch=('i686' 'x86_64') -url="http://sourceforge.net/projects/${pkgname}/" -license=('GPL-2.0-or-later') -depends=('gtk3' 'libxml2' 'librsvg' 'libxtst' 'gettext' 'gstreamer>=1.0') # http://florence.sourceforge.net/english/install.html -makedepends=('intltool>=0.23') -source=("http://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2") -sha512sums=('c527e8c40c9a594106420a6187945d79dfa7ddb4f628805cd188c8a37f79f42cbc1f74b80e21186f104a79c4d5e90c7a9d93cbe35bf1c6ebfe874db047fbef3c') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - ./configure --prefix=/usr \ - --without-notification \ - --without-at-spi \ - --with-panelapplet \ - --with-xtst \ - --with-docs \ - --disable-static \ - --without-docs - make -j1 -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - - make -j1 DESTDIR="${pkgdir}" install -} From 091841b83d0cce63a27102efdbd2a95a900494dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 3 Dec 2024 08:54:45 +0100 Subject: [PATCH 895/971] Deleted package: nginx-mod-form-input * Package scheduled for deletion in AUR --- nginx-mod-form-input/.SRCINFO | 16 ------------- nginx-mod-form-input/PKGBUILD | 42 ----------------------------------- 2 files changed, 58 deletions(-) delete mode 100644 nginx-mod-form-input/.SRCINFO delete mode 100644 nginx-mod-form-input/PKGBUILD diff --git a/nginx-mod-form-input/.SRCINFO b/nginx-mod-form-input/.SRCINFO deleted file mode 100644 index 3b32d5d..0000000 --- a/nginx-mod-form-input/.SRCINFO +++ /dev/null @@ -1,16 +0,0 @@ -pkgbase = nginx-mod-form-input - pkgdesc = Nginx module that reads HTTP POST and PUT request body encoded in "application/x-www-form-urlencoded", and parse the arguments in request body into nginx variables. - pkgver = 0.12 - pkgrel = 1 - url = https://github.com/calio/form-input-nginx-module - arch = x86_64 - license = BSD-2-Clause - makedepends = nginx-src - depends = nginx - depends = nginx-mod-ndk - source = https://github.com/vision5/ngx_devel_kit/archive/v0.3.1/ngx_devel_kit-0.3.1.tar.gz - source = https://github.com/calio/form-input-nginx-module/archive/v0.12/form-input-0.12.tar.gz - sha512sums = de1e3349d8dd08e5982279b2219dc8a8006739f0409b8e0f5c50d93434beff1fbafba43e9c5ac85a5fab90afc5c0a7244a340610339c36f82f2cba7233e72de9 - sha512sums = 1c5c5ab74156cac09da44a2dcdd84f7c03c9919a23a847e63613e00e3781ecd73d5ad12446174b4fdef9d064257a31570a8dbcccc00d8266f7048e3dcde0362e - -pkgname = nginx-mod-form-input diff --git a/nginx-mod-form-input/PKGBUILD b/nginx-mod-form-input/PKGBUILD deleted file mode 100644 index 9e4f2ed..0000000 --- a/nginx-mod-form-input/PKGBUILD +++ /dev/null @@ -1,42 +0,0 @@ -# Maintainer: Manuel Hüsers -# Contributor: Manuel Hüsers - -pkgname=nginx-mod-form-input -pkgver=0.12 -pkgrel=1 - -_modname="${pkgname#nginx-mod-}" -_ndkver='0.3.1' - -pkgdesc='Nginx module that reads HTTP POST and PUT request body encoded in "application/x-www-form-urlencoded", and parse the arguments in request body into nginx variables.' -arch=('x86_64') -depends=('nginx' 'nginx-mod-ndk') -makedepends=('nginx-src') -url="https://github.com/calio/$_modname-nginx-module" -license=('BSD-2-Clause') - -source=( - https://github.com/vision5/ngx_devel_kit/archive/v$_ndkver/ngx_devel_kit-$_ndkver.tar.gz - https://github.com/calio/$_modname-nginx-module/archive/v$pkgver/$_modname-$pkgver.tar.gz -) -sha512sums=('de1e3349d8dd08e5982279b2219dc8a8006739f0409b8e0f5c50d93434beff1fbafba43e9c5ac85a5fab90afc5c0a7244a340610339c36f82f2cba7233e72de9' - '1c5c5ab74156cac09da44a2dcdd84f7c03c9919a23a847e63613e00e3781ecd73d5ad12446174b4fdef9d064257a31570a8dbcccc00d8266f7048e3dcde0362e') - -build() { - cp -r /usr/src/nginx . - cd "$srcdir"/nginx - ./configure --with-compat \ - --add-module=../ngx_devel_kit-$_ndkver \ - --add-dynamic-module=../$_modname-nginx-module-$pkgver - make modules -} - -package() { - cd "$srcdir"/nginx/objs - for mod in *.so; do - install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod - done - - install -Dm644 "$srcdir"/$_modname-nginx-module-$pkgver/README.md \ - "$pkgdir"/usr/share/licenses/$pkgname/README.md -} From 51885980593acf8067c61eefdbc06a1a63a43590 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 7 Dec 2024 08:10:00 +0100 Subject: [PATCH 896/971] upgpkg: gvisor-bin 20241202.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index 0790b3e..74629a2 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20241104.0 + pkgver = 20241202.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20241104.0::https://storage.googleapis.com/gvisor/releases/release/20241104.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20241104.0::https://storage.googleapis.com/gvisor/releases/release/20241104.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = cc7377e0edc89e1dc11b6c4b678ebc3df4f356baa6a0bf73b78fbb1483694b378592b731b7b27900cc0035ed747d6b35449cdce25bfb7e3a5be3bb11806cf5f7 - sha512sums_x86_64 = 955254fba6c8199d6ee20aac2b7c0fde3aa97a752a827a7ef26d34f2e3ea5cdf27cb78648413dbc03e4278a5828c7a43240c6a5b2656029c62778fbee9e7c22c - source_aarch64 = runsc-aarch64-20241104.0::https://storage.googleapis.com/gvisor/releases/release/20241104.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20241104.0::https://storage.googleapis.com/gvisor/releases/release/20241104.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 89cc1914b390e206cfd60ece8987338f501e35b771e9d55f775a392508c1c371119a937f0bd6c76857a60f73010b29f4baf124b1047d57e0a8bdbfb046cfba45 - sha512sums_aarch64 = c24f4ba4a08eb8025d204cf83cb0bbdb72913ac63a5e91f600e66c3fcdb7f97817056e8c9045a3d47187da88f59e27bf417e92fbb12b593d42c633e1f895fb24 + source_x86_64 = runsc-x86_64-20241202.0::https://storage.googleapis.com/gvisor/releases/release/20241202.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20241202.0::https://storage.googleapis.com/gvisor/releases/release/20241202.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = f084c92f1fdd24d8685ed0bc3e255bdb867790dc3144720f58532b9a94071b50af795e163483d9f0630d4df009b2ec1d55c7d948651deca607eae671680954ad + sha512sums_x86_64 = 75468d59e64963f9613dd65d89e0c2ff396e01e4ba5e4cd62f86baca07c42d5eedba69f720aad107d030d7498a31510dd007d4dd459f46bba9cbec6d38a95a34 + source_aarch64 = runsc-aarch64-20241202.0::https://storage.googleapis.com/gvisor/releases/release/20241202.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20241202.0::https://storage.googleapis.com/gvisor/releases/release/20241202.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 8e9169cc221a666da6521877ffd5ba0259f4047d76b18d13c677d08c33491e937775beea702248b5fcd084560c2053f9363dce00f1245db329545f2a63d256c0 + sha512sums_aarch64 = e5d6ab0906460b1fc8b0339e054c8dd64e3d7d38511fd0e153e3ad5d3c2b5b8a08b9fe24f4045a1fc1a7b56521ec49b3269be69f6ed3ee6f9e6a98f2d7a0b401 pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index b9d24dd..4c32752 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20241104.0 +pkgver=20241202.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('cc7377e0edc89e1dc11b6c4b678ebc3df4f356baa6a0bf73b78fbb1483694b378592b731b7b27900cc0035ed747d6b35449cdce25bfb7e3a5be3bb11806cf5f7' - '955254fba6c8199d6ee20aac2b7c0fde3aa97a752a827a7ef26d34f2e3ea5cdf27cb78648413dbc03e4278a5828c7a43240c6a5b2656029c62778fbee9e7c22c') -sha512sums_aarch64=('89cc1914b390e206cfd60ece8987338f501e35b771e9d55f775a392508c1c371119a937f0bd6c76857a60f73010b29f4baf124b1047d57e0a8bdbfb046cfba45' - 'c24f4ba4a08eb8025d204cf83cb0bbdb72913ac63a5e91f600e66c3fcdb7f97817056e8c9045a3d47187da88f59e27bf417e92fbb12b593d42c633e1f895fb24') +sha512sums_x86_64=('f084c92f1fdd24d8685ed0bc3e255bdb867790dc3144720f58532b9a94071b50af795e163483d9f0630d4df009b2ec1d55c7d948651deca607eae671680954ad' + '75468d59e64963f9613dd65d89e0c2ff396e01e4ba5e4cd62f86baca07c42d5eedba69f720aad107d030d7498a31510dd007d4dd459f46bba9cbec6d38a95a34') +sha512sums_aarch64=('8e9169cc221a666da6521877ffd5ba0259f4047d76b18d13c677d08c33491e937775beea702248b5fcd084560c2053f9363dce00f1245db329545f2a63d256c0' + 'e5d6ab0906460b1fc8b0339e054c8dd64e3d7d38511fd0e153e3ad5d3c2b5b8a08b9fe24f4045a1fc1a7b56521ec49b3269be69f6ed3ee6f9e6a98f2d7a0b401') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From 010200472320dcef052935c56edc74ec6b6bdb0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 7 Dec 2024 08:10:22 +0100 Subject: [PATCH 897/971] upgpkg: gvisor-git 20241202.0-1 upstream release --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index ed6a6d3..f1f82a7 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20241104.0 + pkgver = 20241202.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index 65668ce..98cb986 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20241104.0 +pkgver=20241202.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From 6349d4f7a322caa68dbdb10be8602ae8d9c36fea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 7 Dec 2024 08:10:31 +0100 Subject: [PATCH 898/971] upgpkg: firefox-syncstorage 0.18.2-1 upstream release --- firefox-syncstorage/.SRCINFO | 6 +++--- firefox-syncstorage/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/firefox-syncstorage/.SRCINFO b/firefox-syncstorage/.SRCINFO index 6829703..db02de8 100644 --- a/firefox-syncstorage/.SRCINFO +++ b/firefox-syncstorage/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = firefox-syncstorage pkgdesc = Sync storage server with built-in token server for running a self-hosted firefox sync server - pkgver = 0.18.1 + pkgver = 0.18.2 pkgrel = 1 url = https://github.com/mozilla-services/syncstorage-rs install = firefox-syncstorage.install @@ -21,9 +21,9 @@ pkgbase = firefox-syncstorage optdepends = mysql: for use with a local database server options = !lto backup = etc/firefox-syncstorage.toml - source = https://github.com/mozilla-services/syncstorage-rs/archive/0.18.1/syncstorage-rs-0.18.1.tar.gz + source = https://github.com/mozilla-services/syncstorage-rs/archive/0.18.2/syncstorage-rs-0.18.2.tar.gz source = firefox-syncstorage.service - sha512sums = ef8b152f10f5fc00f922cdd6d15563f8dea1322ca0461796153882355645a1307da884ed2cb1d6ce98704a691f4e458a1634654c7b2aa6f1964b0207240c0f28 + sha512sums = 4689b5eca15a983f020dad13c8290f1eb3d62ea8dc52aa3c5c289e256911090d90255b0f9adf88bf9c3bfaec4f11790ecdb18ba94c67aedcdb9ff1fd85fea480 sha512sums = 4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95 pkgname = firefox-syncstorage diff --git a/firefox-syncstorage/PKGBUILD b/firefox-syncstorage/PKGBUILD index 5fe1cfa..6f7ac8f 100644 --- a/firefox-syncstorage/PKGBUILD +++ b/firefox-syncstorage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=firefox-syncstorage _pkgname=syncstorage-rs -pkgver=0.18.1 +pkgver=0.18.2 pkgrel=1 pkgdesc='Sync storage server with built-in token server for running a self-hosted firefox sync server' arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') @@ -18,7 +18,7 @@ options=('!lto') install="${pkgname}.install" source=("https://github.com/mozilla-services/${_pkgname}/archive/${pkgver}/${_pkgname}-${pkgver}.tar.gz" "${pkgname}.service") -sha512sums=('ef8b152f10f5fc00f922cdd6d15563f8dea1322ca0461796153882355645a1307da884ed2cb1d6ce98704a691f4e458a1634654c7b2aa6f1964b0207240c0f28' +sha512sums=('4689b5eca15a983f020dad13c8290f1eb3d62ea8dc52aa3c5c289e256911090d90255b0f9adf88bf9c3bfaec4f11790ecdb18ba94c67aedcdb9ff1fd85fea480' '4c5fbb99160613ba3fb0fedce97f04f63b92699fe79c6edd899d4ec5f297c5a98c0c211df3eb9a6579c12c57f4c63513747ed8944a60fc76e32f1e0c0f5e3a95') backup=("etc/${pkgname}.toml") From 3450c21eb1a13b5cfe81b02636a3ace651a69c3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 7 Dec 2024 08:34:48 +0100 Subject: [PATCH 899/971] upgpkg: clonezilla-unstable 5.7.9-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 8ce94fa..67ffcfd 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.7.8 + pkgver = 5.7.9 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.7.8.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.7.9.tar.xz source = usrbin.patch - sha512sums = 153a12a9a4beae97b708f6c22feed2a7dda77123ac43f927eafe544ee262e364111e0b877d69e28244acd37beed613d1ea3033b1b99e27cbbd8d188ad06b7354 + sha512sums = 08b6fd97233d33aec84ec49da5671281bf7b775f161120167df6e9176258bba23a8b34fa0d1b4e9743c682ca5514512486a207fa768d447ba99507b1fc0bb59e sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 8380169..4c58485 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.7.8 +pkgver=5.7.9 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('153a12a9a4beae97b708f6c22feed2a7dda77123ac43f927eafe544ee262e364111e0b877d69e28244acd37beed613d1ea3033b1b99e27cbbd8d188ad06b7354' +sha512sums=('08b6fd97233d33aec84ec49da5671281bf7b775f161120167df6e9176258bba23a8b34fa0d1b4e9743c682ca5514512486a207fa768d447ba99507b1fc0bb59e' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From ddfb5a299e79f4b3f8cbdbee11a3a71bae4c43f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 7 Dec 2024 08:34:48 +0100 Subject: [PATCH 900/971] upgpkg: clonezilla-unstable 5.7.9-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 8ce94fa..67ffcfd 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.7.8 + pkgver = 5.7.9 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.7.8.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.7.9.tar.xz source = usrbin.patch - sha512sums = 153a12a9a4beae97b708f6c22feed2a7dda77123ac43f927eafe544ee262e364111e0b877d69e28244acd37beed613d1ea3033b1b99e27cbbd8d188ad06b7354 + sha512sums = 08b6fd97233d33aec84ec49da5671281bf7b775f161120167df6e9176258bba23a8b34fa0d1b4e9743c682ca5514512486a207fa768d447ba99507b1fc0bb59e sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 8380169..4c58485 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.7.8 +pkgver=5.7.9 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('153a12a9a4beae97b708f6c22feed2a7dda77123ac43f927eafe544ee262e364111e0b877d69e28244acd37beed613d1ea3033b1b99e27cbbd8d188ad06b7354' +sha512sums=('08b6fd97233d33aec84ec49da5671281bf7b775f161120167df6e9176258bba23a8b34fa0d1b4e9743c682ca5514512486a207fa768d447ba99507b1fc0bb59e' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 32f92fd5405bf534cdab19b7860cf8c48f157208 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 8 Dec 2024 11:39:03 +0100 Subject: [PATCH 901/971] upgpkg: clonezilla-unstable 5.7.10-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 67ffcfd..00b99e0 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.7.9 + pkgver = 5.7.10 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.7.9.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.7.10.tar.xz source = usrbin.patch - sha512sums = 08b6fd97233d33aec84ec49da5671281bf7b775f161120167df6e9176258bba23a8b34fa0d1b4e9743c682ca5514512486a207fa768d447ba99507b1fc0bb59e + sha512sums = b6304a63266c126495427845c6b2c0be87da0a3ea3e75935d7eee15ed82a976ba9023897949f32161aa519832db1fd68a78e9e09e0e4fc14e9a0fb6d1a43d453 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 4c58485..d8d9640 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.7.9 +pkgver=5.7.10 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('08b6fd97233d33aec84ec49da5671281bf7b775f161120167df6e9176258bba23a8b34fa0d1b4e9743c682ca5514512486a207fa768d447ba99507b1fc0bb59e' +sha512sums=('b6304a63266c126495427845c6b2c0be87da0a3ea3e75935d7eee15ed82a976ba9023897949f32161aa519832db1fd68a78e9e09e0e4fc14e9a0fb6d1a43d453' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 6da37c5e2fcef46bb5004df2ef3a6a0d74de8f03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 8 Dec 2024 11:39:03 +0100 Subject: [PATCH 902/971] upgpkg: clonezilla-unstable 5.7.10-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 67ffcfd..00b99e0 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.7.9 + pkgver = 5.7.10 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.7.9.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.7.10.tar.xz source = usrbin.patch - sha512sums = 08b6fd97233d33aec84ec49da5671281bf7b775f161120167df6e9176258bba23a8b34fa0d1b4e9743c682ca5514512486a207fa768d447ba99507b1fc0bb59e + sha512sums = b6304a63266c126495427845c6b2c0be87da0a3ea3e75935d7eee15ed82a976ba9023897949f32161aa519832db1fd68a78e9e09e0e4fc14e9a0fb6d1a43d453 sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 4c58485..d8d9640 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.7.9 +pkgver=5.7.10 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('08b6fd97233d33aec84ec49da5671281bf7b775f161120167df6e9176258bba23a8b34fa0d1b4e9743c682ca5514512486a207fa768d447ba99507b1fc0bb59e' +sha512sums=('b6304a63266c126495427845c6b2c0be87da0a3ea3e75935d7eee15ed82a976ba9023897949f32161aa519832db1fd68a78e9e09e0e4fc14e9a0fb6d1a43d453' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From eb64541bb662124a7f3d700c3b875739d22b3388 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 10 Dec 2024 09:59:40 +0100 Subject: [PATCH 903/971] upgpkg: discord-electron 0.0.77-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 631276f..e88e8c9 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v33) for increased security and performance - pkgver = 0.0.76 + pkgver = 0.0.77 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.76/discord-0.0.76.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.77/discord-0.0.77.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = 3a5bdd4ce366f142c40e6acc4ab9faf1f61480c8aaa984abb3c37755e586ee2143c083af561595ff18f6587d3bceffe9d27c9b1069134abd612f63e7db636ee6 + sha512sums = c7f5a2ffa5e748911ae672e5eb0cc8d805547e9da5474826838f4bb45328937b7d7fa56ba036598fea88bb2b60a1133c591eff731573ded2f574e2664bc69817 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 74eb0bb..a5775d8 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.76 +pkgver=0.0.77 pkgrel=1 _electronver=33 _electronname="electron${_electronver}" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('3a5bdd4ce366f142c40e6acc4ab9faf1f61480c8aaa984abb3c37755e586ee2143c083af561595ff18f6587d3bceffe9d27c9b1069134abd612f63e7db636ee6' +sha512sums=('c7f5a2ffa5e748911ae672e5eb0cc8d805547e9da5474826838f4bb45328937b7d7fa56ba036598fea88bb2b60a1133c591eff731573ded2f574e2664bc69817' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c') From c2ec5ff595c48227785a928f9e92e32342ed231c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 10 Dec 2024 10:00:00 +0100 Subject: [PATCH 904/971] upgpkg: discord-electron-openasar 0.0.77+832-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 3653aa6..3b65e7d 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v33) for increased security and performance - pkgver = 0.0.76+832 + pkgver = 0.0.77+832 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.76/discord-0.0.76.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.77/discord-0.0.77.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=ef4470849624032a8eb7265eabd23158aa5a2356 - sha512sums = 3a5bdd4ce366f142c40e6acc4ab9faf1f61480c8aaa984abb3c37755e586ee2143c083af561595ff18f6587d3bceffe9d27c9b1069134abd612f63e7db636ee6 + sha512sums = c7f5a2ffa5e748911ae672e5eb0cc8d805547e9da5474826838f4bb45328937b7d7fa56ba036598fea88bb2b60a1133c591eff731573ded2f574e2664bc69817 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c sha512sums = 0ae2aacd3939274d32fa4dcd80054c54f3d0571d803f775ec80f4c75ea52f2de90ec51ee46b4622222c8895225416068157f6985c493e39efcdc224c053d7ef0 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 8f95920..f730407 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.76+832 +pkgver=0.0.77+832 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=33 @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=ef4470849624032a8eb7265eabd23158aa5a2356") -sha512sums=('3a5bdd4ce366f142c40e6acc4ab9faf1f61480c8aaa984abb3c37755e586ee2143c083af561595ff18f6587d3bceffe9d27c9b1069134abd612f63e7db636ee6' +sha512sums=('c7f5a2ffa5e748911ae672e5eb0cc8d805547e9da5474826838f4bb45328937b7d7fa56ba036598fea88bb2b60a1133c591eff731573ded2f574e2664bc69817' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c' '0ae2aacd3939274d32fa4dcd80054c54f3d0571d803f775ec80f4c75ea52f2de90ec51ee46b4622222c8895225416068157f6985c493e39efcdc224c053d7ef0') From 08b60321e65a628eabe9b2b5b05f5a2dba9d1f8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 11 Dec 2024 08:54:45 +0100 Subject: [PATCH 905/971] upgpkg: sublime-text-dev 4.4185-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 88448f3..a135cd9 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4184 + pkgver = 4.4185 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -13,9 +13,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime-text-dev.sh sha512sums = ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9 - source_x86_64 = sublime_text_dev_4_4184_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4184_x64.tar.xz - sha512sums_x86_64 = d10977ee222f6fd5abba4d9a7ce6dec64450a0a200222ffcadc11c94be0b9238a6f2cad41854e595e4f15e9f5b4b938f8e2bf952b2fdfc68e08f191955539521 - source_aarch64 = sublime_text_dev_4_4184_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4184_arm64.tar.xz - sha512sums_aarch64 = 6de63905eb12366c730de09571bd50954b044011bfd7127e251fe9bfa9e0a39a71f2159689985e114370ab3455ebfcb6adef9aff0eac712b60f61e758653a299 + source_x86_64 = sublime_text_dev_4_4185_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4185_x64.tar.xz + sha512sums_x86_64 = 609c8d7676dce8264ae4ddd7b7999d19ee15f0eb6a3b386fa1b0f983e55f4a01f3b0bd615a5162ee68e2ec18ab8549a3e8bf4ce57ed5c81a3ac5bd4b81773360 + source_aarch64 = sublime_text_dev_4_4185_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4185_arm64.tar.xz + sha512sums_aarch64 = 51b3826b5135ce0619c9239329f975b524a7d31352727f48fa55c156fec0e20fff115022a291577e26ec263d4d3c648a811dc0c8b75329e3de479a9ed57e16f8 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index e88d04c..18f33ce 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4184 +pkgver=4.4185 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -19,8 +19,8 @@ source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://down source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha512sums=('ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9') -sha512sums_x86_64=('d10977ee222f6fd5abba4d9a7ce6dec64450a0a200222ffcadc11c94be0b9238a6f2cad41854e595e4f15e9f5b4b938f8e2bf952b2fdfc68e08f191955539521') -sha512sums_aarch64=('6de63905eb12366c730de09571bd50954b044011bfd7127e251fe9bfa9e0a39a71f2159689985e114370ab3455ebfcb6adef9aff0eac712b60f61e758653a299') +sha512sums_x86_64=('609c8d7676dce8264ae4ddd7b7999d19ee15f0eb6a3b386fa1b0f983e55f4a01f3b0bd615a5162ee68e2ec18ab8549a3e8bf4ce57ed5c81a3ac5bd4b81773360') +sha512sums_aarch64=('51b3826b5135ce0619c9239329f975b524a7d31352727f48fa55c156fec0e20fff115022a291577e26ec263d4d3c648a811dc0c8b75329e3de479a9ed57e16f8') prepare() { sed -i -e "s|@ST_PATH@|/opt/sublime_text|g" "${pkgname}.sh" From f3644aa6d2fc1e50827b5135660ceea75b9b9a3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 13 Dec 2024 09:38:42 +0100 Subject: [PATCH 906/971] upgpkg: clonezilla-unstable 5.7.12-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 00b99e0..8f0a13d 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.7.10 + pkgver = 5.7.12 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.7.10.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.7.12.tar.xz source = usrbin.patch - sha512sums = b6304a63266c126495427845c6b2c0be87da0a3ea3e75935d7eee15ed82a976ba9023897949f32161aa519832db1fd68a78e9e09e0e4fc14e9a0fb6d1a43d453 + sha512sums = ebd96fb15f1e3e185e7fd478fa64d1a7820e7b07e2d48cd09f318fdd25fe50bf959755b9e6cf7ff0007fb37bd4e5f3ec265a8e106b5f04a359724b64d96f3c7a sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index d8d9640..54219eb 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.7.10 +pkgver=5.7.12 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('b6304a63266c126495427845c6b2c0be87da0a3ea3e75935d7eee15ed82a976ba9023897949f32161aa519832db1fd68a78e9e09e0e4fc14e9a0fb6d1a43d453' +sha512sums=('ebd96fb15f1e3e185e7fd478fa64d1a7820e7b07e2d48cd09f318fdd25fe50bf959755b9e6cf7ff0007fb37bd4e5f3ec265a8e106b5f04a359724b64d96f3c7a' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 57e627fedacceda4b77cce4cef8194dbe390efb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Fri, 13 Dec 2024 09:38:42 +0100 Subject: [PATCH 907/971] upgpkg: clonezilla-unstable 5.7.12-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 00b99e0..8f0a13d 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.7.10 + pkgver = 5.7.12 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.7.10.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.7.12.tar.xz source = usrbin.patch - sha512sums = b6304a63266c126495427845c6b2c0be87da0a3ea3e75935d7eee15ed82a976ba9023897949f32161aa519832db1fd68a78e9e09e0e4fc14e9a0fb6d1a43d453 + sha512sums = ebd96fb15f1e3e185e7fd478fa64d1a7820e7b07e2d48cd09f318fdd25fe50bf959755b9e6cf7ff0007fb37bd4e5f3ec265a8e106b5f04a359724b64d96f3c7a sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index d8d9640..54219eb 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.7.10 +pkgver=5.7.12 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('b6304a63266c126495427845c6b2c0be87da0a3ea3e75935d7eee15ed82a976ba9023897949f32161aa519832db1fd68a78e9e09e0e4fc14e9a0fb6d1a43d453' +sha512sums=('ebd96fb15f1e3e185e7fd478fa64d1a7820e7b07e2d48cd09f318fdd25fe50bf959755b9e6cf7ff0007fb37bd4e5f3ec265a8e106b5f04a359724b64d96f3c7a' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 2b65953e381860ec0e5708a3b4f9b1ac6e95ddab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 17 Dec 2024 11:29:32 +0100 Subject: [PATCH 908/971] upgpkg: sublime-text-4 4.4186-1 upstream release --- sublime-text-4/.SRCINFO | 10 +++++----- sublime-text-4/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-4/.SRCINFO b/sublime-text-4/.SRCINFO index dc99295..6ac944c 100644 --- a/sublime-text-4/.SRCINFO +++ b/sublime-text-4/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-4 pkgdesc = Sophisticated text editor for code, html and prose - stable build - pkgver = 4.4180 + pkgver = 4.4186 pkgrel = 1 url = https://www.sublimetext.com/download arch = x86_64 @@ -12,9 +12,9 @@ pkgbase = sublime-text-4 conflicts = sublime-text source = sublime-text-4.sh sha512sums = ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9 - source_x86_64 = sublime_text_4_4_4180_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4180_x64.tar.xz - sha512sums_x86_64 = a115a352311a964268a1460710c562a7843b52c14c452745edb8706ac726e97b867931659b1a3286d44cb19b880f42f00af5bffe88aaa7916181a690e8324e1a - source_aarch64 = sublime_text_4_4_4180_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4180_arm64.tar.xz - sha512sums_aarch64 = b127def4ad73cf390fc4fc69cae0bf71b9171b20579a742fbf2b18e3e40d3e0c37e1f8ceff7f7e2d1d8e71bcf3967a6ba282b1a94af5a5bbc88f0f99d89f9b84 + source_x86_64 = sublime_text_4_4_4186_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4186_x64.tar.xz + sha512sums_x86_64 = 845b8dd7be9d616f681d0ce96f7f13ab138096d05da3271e7e42d7864078398d6e412d50afee1c6f73b90f539d19f597292cebba6d6b742862274488b8f3e807 + source_aarch64 = sublime_text_4_4_4186_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4186_arm64.tar.xz + sha512sums_aarch64 = e838cc963ba851dec8ef1a0676399726f594f600151da5a43fbec7b6e76c9973b0a70cd94c64924a40bfc745b31c4a967830393f5da97bc7bcd9e6109a1ee158 pkgname = sublime-text-4 diff --git a/sublime-text-4/PKGBUILD b/sublime-text-4/PKGBUILD index 45f7924..cc70097 100644 --- a/sublime-text-4/PKGBUILD +++ b/sublime-text-4/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Manuel Hüsers pkgname=sublime-text-4 -pkgver=4.4180 +pkgver=4.4186 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - stable build' arch=('x86_64' 'aarch64') @@ -16,8 +16,8 @@ source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://down source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha512sums=('ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9') -sha512sums_x86_64=('a115a352311a964268a1460710c562a7843b52c14c452745edb8706ac726e97b867931659b1a3286d44cb19b880f42f00af5bffe88aaa7916181a690e8324e1a') -sha512sums_aarch64=('b127def4ad73cf390fc4fc69cae0bf71b9171b20579a742fbf2b18e3e40d3e0c37e1f8ceff7f7e2d1d8e71bcf3967a6ba282b1a94af5a5bbc88f0f99d89f9b84') +sha512sums_x86_64=('845b8dd7be9d616f681d0ce96f7f13ab138096d05da3271e7e42d7864078398d6e412d50afee1c6f73b90f539d19f597292cebba6d6b742862274488b8f3e807') +sha512sums_aarch64=('e838cc963ba851dec8ef1a0676399726f594f600151da5a43fbec7b6e76c9973b0a70cd94c64924a40bfc745b31c4a967830393f5da97bc7bcd9e6109a1ee158') prepare() { sed -i -e "s|@ST_PATH@|/opt/sublime_text|g" "${pkgname}.sh" From 0dbd7b226ecacb13691118f53cac6937c5b69b2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 17 Dec 2024 11:29:51 +0100 Subject: [PATCH 909/971] upgpkg: sublime-text-dev 4.4186-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index a135cd9..dccb04a 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4185 + pkgver = 4.4186 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -13,9 +13,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime-text-dev.sh sha512sums = ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9 - source_x86_64 = sublime_text_dev_4_4185_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4185_x64.tar.xz - sha512sums_x86_64 = 609c8d7676dce8264ae4ddd7b7999d19ee15f0eb6a3b386fa1b0f983e55f4a01f3b0bd615a5162ee68e2ec18ab8549a3e8bf4ce57ed5c81a3ac5bd4b81773360 - source_aarch64 = sublime_text_dev_4_4185_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4185_arm64.tar.xz - sha512sums_aarch64 = 51b3826b5135ce0619c9239329f975b524a7d31352727f48fa55c156fec0e20fff115022a291577e26ec263d4d3c648a811dc0c8b75329e3de479a9ed57e16f8 + source_x86_64 = sublime_text_dev_4_4186_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4186_x64.tar.xz + sha512sums_x86_64 = 845b8dd7be9d616f681d0ce96f7f13ab138096d05da3271e7e42d7864078398d6e412d50afee1c6f73b90f539d19f597292cebba6d6b742862274488b8f3e807 + source_aarch64 = sublime_text_dev_4_4186_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4186_arm64.tar.xz + sha512sums_aarch64 = e838cc963ba851dec8ef1a0676399726f594f600151da5a43fbec7b6e76c9973b0a70cd94c64924a40bfc745b31c4a967830393f5da97bc7bcd9e6109a1ee158 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 18f33ce..e8ff27d 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4185 +pkgver=4.4186 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -19,8 +19,8 @@ source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://down source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha512sums=('ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9') -sha512sums_x86_64=('609c8d7676dce8264ae4ddd7b7999d19ee15f0eb6a3b386fa1b0f983e55f4a01f3b0bd615a5162ee68e2ec18ab8549a3e8bf4ce57ed5c81a3ac5bd4b81773360') -sha512sums_aarch64=('51b3826b5135ce0619c9239329f975b524a7d31352727f48fa55c156fec0e20fff115022a291577e26ec263d4d3c648a811dc0c8b75329e3de479a9ed57e16f8') +sha512sums_x86_64=('845b8dd7be9d616f681d0ce96f7f13ab138096d05da3271e7e42d7864078398d6e412d50afee1c6f73b90f539d19f597292cebba6d6b742862274488b8f3e807') +sha512sums_aarch64=('e838cc963ba851dec8ef1a0676399726f594f600151da5a43fbec7b6e76c9973b0a70cd94c64924a40bfc745b31c4a967830393f5da97bc7bcd9e6109a1ee158') prepare() { sed -i -e "s|@ST_PATH@|/opt/sublime_text|g" "${pkgname}.sh" From 35501e370fe3b8f8a629a82edbe806c057294776 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 18 Dec 2024 05:58:51 +0100 Subject: [PATCH 910/971] upgpkg: discord-electron 0.0.78-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index e88e8c9..6327635 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v33) for increased security and performance - pkgver = 0.0.77 + pkgver = 0.0.78 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.77/discord-0.0.77.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.78/discord-0.0.78.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = c7f5a2ffa5e748911ae672e5eb0cc8d805547e9da5474826838f4bb45328937b7d7fa56ba036598fea88bb2b60a1133c591eff731573ded2f574e2664bc69817 + sha512sums = a0f1ad6f8e28e6ef014f7e5659fd20fe11eece13f2d7e453baa8ae0d65c8b2758e26510964108fe28e23ccd8b3e6dc64b97d2fa7394637d0463d7d529fbe944e sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index a5775d8..97d02d3 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.77 +pkgver=0.0.78 pkgrel=1 _electronver=33 _electronname="electron${_electronver}" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('c7f5a2ffa5e748911ae672e5eb0cc8d805547e9da5474826838f4bb45328937b7d7fa56ba036598fea88bb2b60a1133c591eff731573ded2f574e2664bc69817' +sha512sums=('a0f1ad6f8e28e6ef014f7e5659fd20fe11eece13f2d7e453baa8ae0d65c8b2758e26510964108fe28e23ccd8b3e6dc64b97d2fa7394637d0463d7d529fbe944e' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c') From 36cb54376ee2055dedea5f5c794ac54366d48118 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 18 Dec 2024 05:59:09 +0100 Subject: [PATCH 911/971] upgpkg: discord-electron-openasar 0.0.78+832-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 3b65e7d..40ab424 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v33) for increased security and performance - pkgver = 0.0.77+832 + pkgver = 0.0.78+832 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.77/discord-0.0.77.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.78/discord-0.0.78.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=ef4470849624032a8eb7265eabd23158aa5a2356 - sha512sums = c7f5a2ffa5e748911ae672e5eb0cc8d805547e9da5474826838f4bb45328937b7d7fa56ba036598fea88bb2b60a1133c591eff731573ded2f574e2664bc69817 + sha512sums = a0f1ad6f8e28e6ef014f7e5659fd20fe11eece13f2d7e453baa8ae0d65c8b2758e26510964108fe28e23ccd8b3e6dc64b97d2fa7394637d0463d7d529fbe944e sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c sha512sums = 0ae2aacd3939274d32fa4dcd80054c54f3d0571d803f775ec80f4c75ea52f2de90ec51ee46b4622222c8895225416068157f6985c493e39efcdc224c053d7ef0 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index f730407..f367639 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.77+832 +pkgver=0.0.78+832 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=33 @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=ef4470849624032a8eb7265eabd23158aa5a2356") -sha512sums=('c7f5a2ffa5e748911ae672e5eb0cc8d805547e9da5474826838f4bb45328937b7d7fa56ba036598fea88bb2b60a1133c591eff731573ded2f574e2664bc69817' +sha512sums=('a0f1ad6f8e28e6ef014f7e5659fd20fe11eece13f2d7e453baa8ae0d65c8b2758e26510964108fe28e23ccd8b3e6dc64b97d2fa7394637d0463d7d529fbe944e' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c' '0ae2aacd3939274d32fa4dcd80054c54f3d0571d803f775ec80f4c75ea52f2de90ec51ee46b4622222c8895225416068157f6985c493e39efcdc224c053d7ef0') From 426a13255e1667948c449abb48b5c9d8be7e7ed6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 18 Dec 2024 05:59:24 +0100 Subject: [PATCH 912/971] upgpkg: sublime-text-dev 4.4187-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index dccb04a..042af7e 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4186 + pkgver = 4.4187 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -13,9 +13,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime-text-dev.sh sha512sums = ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9 - source_x86_64 = sublime_text_dev_4_4186_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4186_x64.tar.xz - sha512sums_x86_64 = 845b8dd7be9d616f681d0ce96f7f13ab138096d05da3271e7e42d7864078398d6e412d50afee1c6f73b90f539d19f597292cebba6d6b742862274488b8f3e807 - source_aarch64 = sublime_text_dev_4_4186_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4186_arm64.tar.xz - sha512sums_aarch64 = e838cc963ba851dec8ef1a0676399726f594f600151da5a43fbec7b6e76c9973b0a70cd94c64924a40bfc745b31c4a967830393f5da97bc7bcd9e6109a1ee158 + source_x86_64 = sublime_text_dev_4_4187_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4187_x64.tar.xz + sha512sums_x86_64 = ed93d6b5252fa00827898bebc4d48b1016c5824630c95d6c98f0ea5abe18d52c9555d4069e7eb890ecd853aaf10f99e398a9e9df66274e1d5e1a7c8c70518028 + source_aarch64 = sublime_text_dev_4_4187_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4187_arm64.tar.xz + sha512sums_aarch64 = f84fa55a17420bbee513ca930ba759df7f70383e53b324c4812d6167a718e1db1f2a74f957a1a1b49cdf1ebc3249aebcf2640bc1ef0f3260d1cefe2cbf6272c8 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index e8ff27d..5d1c26e 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4186 +pkgver=4.4187 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -19,8 +19,8 @@ source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://down source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha512sums=('ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9') -sha512sums_x86_64=('845b8dd7be9d616f681d0ce96f7f13ab138096d05da3271e7e42d7864078398d6e412d50afee1c6f73b90f539d19f597292cebba6d6b742862274488b8f3e807') -sha512sums_aarch64=('e838cc963ba851dec8ef1a0676399726f594f600151da5a43fbec7b6e76c9973b0a70cd94c64924a40bfc745b31c4a967830393f5da97bc7bcd9e6109a1ee158') +sha512sums_x86_64=('ed93d6b5252fa00827898bebc4d48b1016c5824630c95d6c98f0ea5abe18d52c9555d4069e7eb890ecd853aaf10f99e398a9e9df66274e1d5e1a7c8c70518028') +sha512sums_aarch64=('f84fa55a17420bbee513ca930ba759df7f70383e53b324c4812d6167a718e1db1f2a74f957a1a1b49cdf1ebc3249aebcf2640bc1ef0f3260d1cefe2cbf6272c8') prepare() { sed -i -e "s|@ST_PATH@|/opt/sublime_text|g" "${pkgname}.sh" From 074754eab5d299b350618ac22111b48274c5556a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 19 Dec 2024 18:59:31 +0100 Subject: [PATCH 913/971] upgpkg: sublime-text-dev 4.4188-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 042af7e..2a7d6d6 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4187 + pkgver = 4.4188 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -13,9 +13,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime-text-dev.sh sha512sums = ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9 - source_x86_64 = sublime_text_dev_4_4187_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4187_x64.tar.xz - sha512sums_x86_64 = ed93d6b5252fa00827898bebc4d48b1016c5824630c95d6c98f0ea5abe18d52c9555d4069e7eb890ecd853aaf10f99e398a9e9df66274e1d5e1a7c8c70518028 - source_aarch64 = sublime_text_dev_4_4187_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4187_arm64.tar.xz - sha512sums_aarch64 = f84fa55a17420bbee513ca930ba759df7f70383e53b324c4812d6167a718e1db1f2a74f957a1a1b49cdf1ebc3249aebcf2640bc1ef0f3260d1cefe2cbf6272c8 + source_x86_64 = sublime_text_dev_4_4188_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4188_x64.tar.xz + sha512sums_x86_64 = e43d6f4d708dd2b163d234d0ed7c8d924b7680d136247fdebf2c6eb0e1b5ea18967aaf05776e901f4598764c79304e220b9b4828ef954defa15616854ab222d2 + source_aarch64 = sublime_text_dev_4_4188_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4188_arm64.tar.xz + sha512sums_aarch64 = cfa4644893c36f5136c2c4834c3e15ee8e95a66675c8f091ab1fe2a796090b053265eac96c71cfece1d57211ad6ee86fa4a383ffb9182a598f8d5461ec5d82c9 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 5d1c26e..d01b9f2 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4187 +pkgver=4.4188 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -19,8 +19,8 @@ source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://down source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha512sums=('ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9') -sha512sums_x86_64=('ed93d6b5252fa00827898bebc4d48b1016c5824630c95d6c98f0ea5abe18d52c9555d4069e7eb890ecd853aaf10f99e398a9e9df66274e1d5e1a7c8c70518028') -sha512sums_aarch64=('f84fa55a17420bbee513ca930ba759df7f70383e53b324c4812d6167a718e1db1f2a74f957a1a1b49cdf1ebc3249aebcf2640bc1ef0f3260d1cefe2cbf6272c8') +sha512sums_x86_64=('e43d6f4d708dd2b163d234d0ed7c8d924b7680d136247fdebf2c6eb0e1b5ea18967aaf05776e901f4598764c79304e220b9b4828ef954defa15616854ab222d2') +sha512sums_aarch64=('cfa4644893c36f5136c2c4834c3e15ee8e95a66675c8f091ab1fe2a796090b053265eac96c71cfece1d57211ad6ee86fa4a383ffb9182a598f8d5461ec5d82c9') prepare() { sed -i -e "s|@ST_PATH@|/opt/sublime_text|g" "${pkgname}.sh" From 6ba5b28ef4180e7aa1afab7df7162b2b85e892d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 21 Dec 2024 14:48:10 +0100 Subject: [PATCH 914/971] upgpkg: sublime-text-dev 4.4189-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 2a7d6d6..457b429 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4188 + pkgver = 4.4189 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -13,9 +13,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime-text-dev.sh sha512sums = ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9 - source_x86_64 = sublime_text_dev_4_4188_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4188_x64.tar.xz - sha512sums_x86_64 = e43d6f4d708dd2b163d234d0ed7c8d924b7680d136247fdebf2c6eb0e1b5ea18967aaf05776e901f4598764c79304e220b9b4828ef954defa15616854ab222d2 - source_aarch64 = sublime_text_dev_4_4188_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4188_arm64.tar.xz - sha512sums_aarch64 = cfa4644893c36f5136c2c4834c3e15ee8e95a66675c8f091ab1fe2a796090b053265eac96c71cfece1d57211ad6ee86fa4a383ffb9182a598f8d5461ec5d82c9 + source_x86_64 = sublime_text_dev_4_4189_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4189_x64.tar.xz + sha512sums_x86_64 = 7413f9655367ef57285f8e79b42947e1cb1c316baed6e89c6e3cea9c76d4c8f819684ce383e4c97ba8d369608dbe264445e6e21ebb42961fd282298db90d2b49 + source_aarch64 = sublime_text_dev_4_4189_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4189_arm64.tar.xz + sha512sums_aarch64 = 0d8dd09f94b3ac7748b4a884bd1d5b412009d4adfbffecabed062ac6926f22e3038d96700ea09132b735d7d3d3163364e2da90628508b66a06d7abacf84d9071 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index d01b9f2..e1cc9b5 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4188 +pkgver=4.4189 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -19,8 +19,8 @@ source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://down source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha512sums=('ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9') -sha512sums_x86_64=('e43d6f4d708dd2b163d234d0ed7c8d924b7680d136247fdebf2c6eb0e1b5ea18967aaf05776e901f4598764c79304e220b9b4828ef954defa15616854ab222d2') -sha512sums_aarch64=('cfa4644893c36f5136c2c4834c3e15ee8e95a66675c8f091ab1fe2a796090b053265eac96c71cfece1d57211ad6ee86fa4a383ffb9182a598f8d5461ec5d82c9') +sha512sums_x86_64=('7413f9655367ef57285f8e79b42947e1cb1c316baed6e89c6e3cea9c76d4c8f819684ce383e4c97ba8d369608dbe264445e6e21ebb42961fd282298db90d2b49') +sha512sums_aarch64=('0d8dd09f94b3ac7748b4a884bd1d5b412009d4adfbffecabed062ac6926f22e3038d96700ea09132b735d7d3d3163364e2da90628508b66a06d7abacf84d9071') prepare() { sed -i -e "s|@ST_PATH@|/opt/sublime_text|g" "${pkgname}.sh" From 85bb1439c745e406377fef970dc38cea18f3cfca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 21 Dec 2024 15:19:39 +0100 Subject: [PATCH 915/971] upgpkg: sublime-text-4 4.4189-1 upstream release --- sublime-text-4/.SRCINFO | 10 +++++----- sublime-text-4/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-4/.SRCINFO b/sublime-text-4/.SRCINFO index 6ac944c..2e2b982 100644 --- a/sublime-text-4/.SRCINFO +++ b/sublime-text-4/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-4 pkgdesc = Sophisticated text editor for code, html and prose - stable build - pkgver = 4.4186 + pkgver = 4.4189 pkgrel = 1 url = https://www.sublimetext.com/download arch = x86_64 @@ -12,9 +12,9 @@ pkgbase = sublime-text-4 conflicts = sublime-text source = sublime-text-4.sh sha512sums = ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9 - source_x86_64 = sublime_text_4_4_4186_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4186_x64.tar.xz - sha512sums_x86_64 = 845b8dd7be9d616f681d0ce96f7f13ab138096d05da3271e7e42d7864078398d6e412d50afee1c6f73b90f539d19f597292cebba6d6b742862274488b8f3e807 - source_aarch64 = sublime_text_4_4_4186_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4186_arm64.tar.xz - sha512sums_aarch64 = e838cc963ba851dec8ef1a0676399726f594f600151da5a43fbec7b6e76c9973b0a70cd94c64924a40bfc745b31c4a967830393f5da97bc7bcd9e6109a1ee158 + source_x86_64 = sublime_text_4_4_4189_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4189_x64.tar.xz + sha512sums_x86_64 = 7413f9655367ef57285f8e79b42947e1cb1c316baed6e89c6e3cea9c76d4c8f819684ce383e4c97ba8d369608dbe264445e6e21ebb42961fd282298db90d2b49 + source_aarch64 = sublime_text_4_4_4189_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4189_arm64.tar.xz + sha512sums_aarch64 = 0d8dd09f94b3ac7748b4a884bd1d5b412009d4adfbffecabed062ac6926f22e3038d96700ea09132b735d7d3d3163364e2da90628508b66a06d7abacf84d9071 pkgname = sublime-text-4 diff --git a/sublime-text-4/PKGBUILD b/sublime-text-4/PKGBUILD index cc70097..c53a88a 100644 --- a/sublime-text-4/PKGBUILD +++ b/sublime-text-4/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Manuel Hüsers pkgname=sublime-text-4 -pkgver=4.4186 +pkgver=4.4189 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - stable build' arch=('x86_64' 'aarch64') @@ -16,8 +16,8 @@ source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://down source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha512sums=('ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9') -sha512sums_x86_64=('845b8dd7be9d616f681d0ce96f7f13ab138096d05da3271e7e42d7864078398d6e412d50afee1c6f73b90f539d19f597292cebba6d6b742862274488b8f3e807') -sha512sums_aarch64=('e838cc963ba851dec8ef1a0676399726f594f600151da5a43fbec7b6e76c9973b0a70cd94c64924a40bfc745b31c4a967830393f5da97bc7bcd9e6109a1ee158') +sha512sums_x86_64=('7413f9655367ef57285f8e79b42947e1cb1c316baed6e89c6e3cea9c76d4c8f819684ce383e4c97ba8d369608dbe264445e6e21ebb42961fd282298db90d2b49') +sha512sums_aarch64=('0d8dd09f94b3ac7748b4a884bd1d5b412009d4adfbffecabed062ac6926f22e3038d96700ea09132b735d7d3d3163364e2da90628508b66a06d7abacf84d9071') prepare() { sed -i -e "s|@ST_PATH@|/opt/sublime_text|g" "${pkgname}.sh" From 621c7566bebf98a34e9fe0b6e144785a522c7879 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 22 Dec 2024 12:20:13 +0100 Subject: [PATCH 916/971] upgpkg: sublime-text-dev 4.4190-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 457b429..f3a29bf 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4189 + pkgver = 4.4190 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -13,9 +13,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime-text-dev.sh sha512sums = ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9 - source_x86_64 = sublime_text_dev_4_4189_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4189_x64.tar.xz - sha512sums_x86_64 = 7413f9655367ef57285f8e79b42947e1cb1c316baed6e89c6e3cea9c76d4c8f819684ce383e4c97ba8d369608dbe264445e6e21ebb42961fd282298db90d2b49 - source_aarch64 = sublime_text_dev_4_4189_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4189_arm64.tar.xz - sha512sums_aarch64 = 0d8dd09f94b3ac7748b4a884bd1d5b412009d4adfbffecabed062ac6926f22e3038d96700ea09132b735d7d3d3163364e2da90628508b66a06d7abacf84d9071 + source_x86_64 = sublime_text_dev_4_4190_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4190_x64.tar.xz + sha512sums_x86_64 = 7a0876fdc80ba4a9204a63f31ecade90857546595d3b7591386df717b9bb356fef89781f06c21e3617e8f8c9c4c298aa47d4fb8704b66ec35ed73b6b1b8c9924 + source_aarch64 = sublime_text_dev_4_4190_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4190_arm64.tar.xz + sha512sums_aarch64 = 97b70b4b8e7ca16e338c7926b95c694d0a43e2721d35beac25fc59b3fba806a550da4ea809110ed9424a8b3a0bc53f29d9f4a710b4dfe37fd1641701cefc2a91 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index e1cc9b5..26a7563 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4189 +pkgver=4.4190 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -19,8 +19,8 @@ source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://down source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha512sums=('ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9') -sha512sums_x86_64=('7413f9655367ef57285f8e79b42947e1cb1c316baed6e89c6e3cea9c76d4c8f819684ce383e4c97ba8d369608dbe264445e6e21ebb42961fd282298db90d2b49') -sha512sums_aarch64=('0d8dd09f94b3ac7748b4a884bd1d5b412009d4adfbffecabed062ac6926f22e3038d96700ea09132b735d7d3d3163364e2da90628508b66a06d7abacf84d9071') +sha512sums_x86_64=('7a0876fdc80ba4a9204a63f31ecade90857546595d3b7591386df717b9bb356fef89781f06c21e3617e8f8c9c4c298aa47d4fb8704b66ec35ed73b6b1b8c9924') +sha512sums_aarch64=('97b70b4b8e7ca16e338c7926b95c694d0a43e2721d35beac25fc59b3fba806a550da4ea809110ed9424a8b3a0bc53f29d9f4a710b4dfe37fd1641701cefc2a91') prepare() { sed -i -e "s|@ST_PATH@|/opt/sublime_text|g" "${pkgname}.sh" From 5b2f9fa3ddbc615dac933adbc67b0dc7d384d9f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 30 Dec 2024 19:25:18 +0100 Subject: [PATCH 917/971] upgpkg: clonezilla-unstable 5.8.1-1 upstream release --- clonezilla-unstable/.SRCINFO | 6 +++--- clonezilla-unstable/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/clonezilla-unstable/.SRCINFO b/clonezilla-unstable/.SRCINFO index 8f0a13d..bb2e4b6 100644 --- a/clonezilla-unstable/.SRCINFO +++ b/clonezilla-unstable/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.7.12 + pkgver = 5.8.1 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.7.12.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.8.1.tar.xz source = usrbin.patch - sha512sums = ebd96fb15f1e3e185e7fd478fa64d1a7820e7b07e2d48cd09f318fdd25fe50bf959755b9e6cf7ff0007fb37bd4e5f3ec265a8e106b5f04a359724b64d96f3c7a + sha512sums = 7a57e46625f52c4a804589b02e2f4200c118a6922ebf577f47de31ebbb3f1c77c8087df5e14bef2a3482cf6da49408a40720883d6c511116145e3863319b1e1d sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/clonezilla-unstable/PKGBUILD b/clonezilla-unstable/PKGBUILD index 54219eb..81839a2 100644 --- a/clonezilla-unstable/PKGBUILD +++ b/clonezilla-unstable/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.7.12 +pkgver=5.8.1 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('ebd96fb15f1e3e185e7fd478fa64d1a7820e7b07e2d48cd09f318fdd25fe50bf959755b9e6cf7ff0007fb37bd4e5f3ec265a8e106b5f04a359724b64d96f3c7a' +sha512sums=('7a57e46625f52c4a804589b02e2f4200c118a6922ebf577f47de31ebbb3f1c77c8087df5e14bef2a3482cf6da49408a40720883d6c511116145e3863319b1e1d' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 43686f68969c86bd79255058bcb52734bb76b429 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 30 Dec 2024 19:25:18 +0100 Subject: [PATCH 918/971] upgpkg: clonezilla-unstable 5.8.1-1 upstream release --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 8f0a13d..bb2e4b6 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = clonezilla-unstable pkgdesc = ncurses partition and disk imaging/cloning program - pkgver = 5.7.12 + pkgver = 5.8.1 pkgrel = 1 url = https://clonezilla.org arch = any @@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable provides = clonezilla conflicts = clonezilla backup = etc/drbl/drbl-ocs.conf - source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.7.12.tar.xz + source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.8.1.tar.xz source = usrbin.patch - sha512sums = ebd96fb15f1e3e185e7fd478fa64d1a7820e7b07e2d48cd09f318fdd25fe50bf959755b9e6cf7ff0007fb37bd4e5f3ec265a8e106b5f04a359724b64d96f3c7a + sha512sums = 7a57e46625f52c4a804589b02e2f4200c118a6922ebf577f47de31ebbb3f1c77c8087df5e14bef2a3482cf6da49408a40720883d6c511116145e3863319b1e1d sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac pkgname = clonezilla-unstable diff --git a/PKGBUILD b/PKGBUILD index 54219eb..81839a2 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=clonezilla-unstable _pkgname=clonezilla -pkgver=5.7.12 +pkgver=5.8.1 pkgrel=1 pkgdesc="ncurses partition and disk imaging/cloning program" arch=('any') @@ -16,7 +16,7 @@ conflicts=("${_pkgname}") provides=("${_pkgname}") source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz" 'usrbin.patch') -sha512sums=('ebd96fb15f1e3e185e7fd478fa64d1a7820e7b07e2d48cd09f318fdd25fe50bf959755b9e6cf7ff0007fb37bd4e5f3ec265a8e106b5f04a359724b64d96f3c7a' +sha512sums=('7a57e46625f52c4a804589b02e2f4200c118a6922ebf577f47de31ebbb3f1c77c8087df5e14bef2a3482cf6da49408a40720883d6c511116145e3863319b1e1d' '39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac') prepare() { From 4a7249b8435e6526b50346cffad6ca0be303e60a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 7 Jan 2025 12:59:57 +0100 Subject: [PATCH 919/971] upgpkg: discord-electron 0.0.79-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 6327635..4316679 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v33) for increased security and performance - pkgver = 0.0.78 + pkgver = 0.0.79 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.78/discord-0.0.78.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.79/discord-0.0.79.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = a0f1ad6f8e28e6ef014f7e5659fd20fe11eece13f2d7e453baa8ae0d65c8b2758e26510964108fe28e23ccd8b3e6dc64b97d2fa7394637d0463d7d529fbe944e + sha512sums = 48a82d7f3cfdc1c5ba2f621450320c25e1ed92608c381d7bd22cdb7dbd134456589d39cee0d55557bce9346f4dfed0fc487b9dddeb8ac7b053b116427cc4cae0 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 97d02d3..30a9302 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.78 +pkgver=0.0.79 pkgrel=1 _electronver=33 _electronname="electron${_electronver}" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('a0f1ad6f8e28e6ef014f7e5659fd20fe11eece13f2d7e453baa8ae0d65c8b2758e26510964108fe28e23ccd8b3e6dc64b97d2fa7394637d0463d7d529fbe944e' +sha512sums=('48a82d7f3cfdc1c5ba2f621450320c25e1ed92608c381d7bd22cdb7dbd134456589d39cee0d55557bce9346f4dfed0fc487b9dddeb8ac7b053b116427cc4cae0' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c') From 305d20eb15652b8b0af3b40d1d81d07d61944319 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 7 Jan 2025 13:00:14 +0100 Subject: [PATCH 920/971] upgpkg: discord-electron-openasar 0.0.79+832-1 upstream release --- discord-electron-openasar/.SRCINFO | 4 ++-- discord-electron-openasar/PKGBUILD | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 40ab424..dc61912 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v33) for increased security and performance - pkgver = 0.0.78+832 + pkgver = 0.0.79+832 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,7 +21,7 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.78/discord-0.0.78.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.79/discord-0.0.79.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=ef4470849624032a8eb7265eabd23158aa5a2356 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index f367639..a814203 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.78+832 +pkgver=0.0.79+832 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=33 From 443266c051f6a67e8bf2cc33908f9591de33cad0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 7 Jan 2025 13:05:30 +0100 Subject: [PATCH 921/971] upgpkg: discord-electron-openasar 0.0.79+832-1: checksums --- discord-electron-openasar/.SRCINFO | 2 +- discord-electron-openasar/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index dc61912..094571d 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -25,7 +25,7 @@ pkgbase = discord-electron-openasar source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=ef4470849624032a8eb7265eabd23158aa5a2356 - sha512sums = a0f1ad6f8e28e6ef014f7e5659fd20fe11eece13f2d7e453baa8ae0d65c8b2758e26510964108fe28e23ccd8b3e6dc64b97d2fa7394637d0463d7d529fbe944e + sha512sums = 48a82d7f3cfdc1c5ba2f621450320c25e1ed92608c381d7bd22cdb7dbd134456589d39cee0d55557bce9346f4dfed0fc487b9dddeb8ac7b053b116427cc4cae0 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c sha512sums = 0ae2aacd3939274d32fa4dcd80054c54f3d0571d803f775ec80f4c75ea52f2de90ec51ee46b4622222c8895225416068157f6985c493e39efcdc224c053d7ef0 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index a814203..16897e8 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=ef4470849624032a8eb7265eabd23158aa5a2356") -sha512sums=('a0f1ad6f8e28e6ef014f7e5659fd20fe11eece13f2d7e453baa8ae0d65c8b2758e26510964108fe28e23ccd8b3e6dc64b97d2fa7394637d0463d7d529fbe944e' +sha512sums=('48a82d7f3cfdc1c5ba2f621450320c25e1ed92608c381d7bd22cdb7dbd134456589d39cee0d55557bce9346f4dfed0fc487b9dddeb8ac7b053b116427cc4cae0' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c' '0ae2aacd3939274d32fa4dcd80054c54f3d0571d803f775ec80f4c75ea52f2de90ec51ee46b4622222c8895225416068157f6985c493e39efcdc224c053d7ef0') From bdf857d8d81e8eb19d8aadfd87da0e898e160430 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 8 Jan 2025 20:41:12 +0100 Subject: [PATCH 922/971] upgpkg: gvisor-bin 20250106.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index 74629a2..6bb7ecb 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20241202.0 + pkgver = 20250106.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20241202.0::https://storage.googleapis.com/gvisor/releases/release/20241202.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20241202.0::https://storage.googleapis.com/gvisor/releases/release/20241202.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = f084c92f1fdd24d8685ed0bc3e255bdb867790dc3144720f58532b9a94071b50af795e163483d9f0630d4df009b2ec1d55c7d948651deca607eae671680954ad - sha512sums_x86_64 = 75468d59e64963f9613dd65d89e0c2ff396e01e4ba5e4cd62f86baca07c42d5eedba69f720aad107d030d7498a31510dd007d4dd459f46bba9cbec6d38a95a34 - source_aarch64 = runsc-aarch64-20241202.0::https://storage.googleapis.com/gvisor/releases/release/20241202.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20241202.0::https://storage.googleapis.com/gvisor/releases/release/20241202.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 8e9169cc221a666da6521877ffd5ba0259f4047d76b18d13c677d08c33491e937775beea702248b5fcd084560c2053f9363dce00f1245db329545f2a63d256c0 - sha512sums_aarch64 = e5d6ab0906460b1fc8b0339e054c8dd64e3d7d38511fd0e153e3ad5d3c2b5b8a08b9fe24f4045a1fc1a7b56521ec49b3269be69f6ed3ee6f9e6a98f2d7a0b401 + source_x86_64 = runsc-x86_64-20250106.0::https://storage.googleapis.com/gvisor/releases/release/20250106.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20250106.0::https://storage.googleapis.com/gvisor/releases/release/20250106.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = fe434dc9ddfeaf2e333c0c77d7946012c20a09f125d6bfa9a08c54dd9c237f0da791c5c0e8db4052fd45f2f74a95196292f64824d98e9824aa394c631b534b09 + sha512sums_x86_64 = 017a687fe2a23f7d9c457bab389a47c442a477d5da6e607c809601cf928ab3fc4e2b538c449b7038c88b28b6f36d146c573d74a7fb6b0a9dafe0cea955a9a965 + source_aarch64 = runsc-aarch64-20250106.0::https://storage.googleapis.com/gvisor/releases/release/20250106.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20250106.0::https://storage.googleapis.com/gvisor/releases/release/20250106.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 6165ceaed325e4e325b3ff4f312e03ecfb60f577b7a01a4cf3be6dc58bc4294e54569c18543278c022a337eb06a55d25dc0ac3f237c56def23d5e7145ddc0edd + sha512sums_aarch64 = 0b75574ec22cc79dc22b962113c6648919111b65fad9d10f804cbf4543afb116e6158eecb1ced5b41a59450f4045077f670ee3465d5298981861f1bda2221ca1 pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index 4c32752..9f26422 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20241202.0 +pkgver=20250106.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('f084c92f1fdd24d8685ed0bc3e255bdb867790dc3144720f58532b9a94071b50af795e163483d9f0630d4df009b2ec1d55c7d948651deca607eae671680954ad' - '75468d59e64963f9613dd65d89e0c2ff396e01e4ba5e4cd62f86baca07c42d5eedba69f720aad107d030d7498a31510dd007d4dd459f46bba9cbec6d38a95a34') -sha512sums_aarch64=('8e9169cc221a666da6521877ffd5ba0259f4047d76b18d13c677d08c33491e937775beea702248b5fcd084560c2053f9363dce00f1245db329545f2a63d256c0' - 'e5d6ab0906460b1fc8b0339e054c8dd64e3d7d38511fd0e153e3ad5d3c2b5b8a08b9fe24f4045a1fc1a7b56521ec49b3269be69f6ed3ee6f9e6a98f2d7a0b401') +sha512sums_x86_64=('fe434dc9ddfeaf2e333c0c77d7946012c20a09f125d6bfa9a08c54dd9c237f0da791c5c0e8db4052fd45f2f74a95196292f64824d98e9824aa394c631b534b09' + '017a687fe2a23f7d9c457bab389a47c442a477d5da6e607c809601cf928ab3fc4e2b538c449b7038c88b28b6f36d146c573d74a7fb6b0a9dafe0cea955a9a965') +sha512sums_aarch64=('6165ceaed325e4e325b3ff4f312e03ecfb60f577b7a01a4cf3be6dc58bc4294e54569c18543278c022a337eb06a55d25dc0ac3f237c56def23d5e7145ddc0edd' + '0b75574ec22cc79dc22b962113c6648919111b65fad9d10f804cbf4543afb116e6158eecb1ced5b41a59450f4045077f670ee3465d5298981861f1bda2221ca1') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From 4e796025089b2ea384d1b9020615799e5f5c636d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 8 Jan 2025 20:41:35 +0100 Subject: [PATCH 923/971] upgpkg: gvisor-git 20250106.0-1 upstream release --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index f1f82a7..e3b4fbf 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20241202.0 + pkgver = 20250106.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index 98cb986..c4ab096 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20241202.0 +pkgver=20250106.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From fee1684327fb60fcba17de6a5994b1878b8c9498 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 11 Jan 2025 00:50:00 +0100 Subject: [PATCH 924/971] upgpkg: discord-electron-openasar 0.0.79+833-1 Update to latest OpenAsar commit --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 094571d..62ddd47 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v33) for increased security and performance - pkgver = 0.0.79+832 + pkgver = 0.0.79+833 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -24,10 +24,10 @@ pkgbase = discord-electron-openasar source = https://dl.discordapp.net/apps/linux/0.0.79/discord-0.0.79.tar.gz source = discord-launcher.sh source = krisp-patcher.py - source = git+https://github.com/goosemod/openasar.git#commit=ef4470849624032a8eb7265eabd23158aa5a2356 + source = git+https://github.com/goosemod/openasar.git#commit=4ed9e52d42501927b60354fcc456da50ed41cde2 sha512sums = 48a82d7f3cfdc1c5ba2f621450320c25e1ed92608c381d7bd22cdb7dbd134456589d39cee0d55557bce9346f4dfed0fc487b9dddeb8ac7b053b116427cc4cae0 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c - sha512sums = 0ae2aacd3939274d32fa4dcd80054c54f3d0571d803f775ec80f4c75ea52f2de90ec51ee46b4622222c8895225416068157f6985c493e39efcdc224c053d7ef0 + sha512sums = fcedc29784ba5ea15150d639a66b8bf2b13f48d6db04f9e2bebb628a6235f71f6641d8b8fe5354d9484012783c0fbd485676a4a4010ed8369ecf7ee74c5ff382 pkgname = discord-electron-openasar diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 16897e8..567cad7 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.79+832 +pkgver=0.0.79+833 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=33 @@ -27,11 +27,11 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py - "git+https://github.com/goosemod/openasar.git#commit=ef4470849624032a8eb7265eabd23158aa5a2356") + "git+https://github.com/goosemod/openasar.git#commit=4ed9e52d42501927b60354fcc456da50ed41cde2") sha512sums=('48a82d7f3cfdc1c5ba2f621450320c25e1ed92608c381d7bd22cdb7dbd134456589d39cee0d55557bce9346f4dfed0fc487b9dddeb8ac7b053b116427cc4cae0' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c' - '0ae2aacd3939274d32fa4dcd80054c54f3d0571d803f775ec80f4c75ea52f2de90ec51ee46b4622222c8895225416068157f6985c493e39efcdc224c053d7ef0') + 'fcedc29784ba5ea15150d639a66b8bf2b13f48d6db04f9e2bebb628a6235f71f6641d8b8fe5354d9484012783c0fbd485676a4a4010ed8369ecf7ee74c5ff382') # just in case I get the version wrong pkgver() { From 979a8721776f728f55a01d2fd070f5e668223fbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 14 Jan 2025 00:13:47 +0100 Subject: [PATCH 925/971] upgpkg: discord-electron 0.0.80-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 4316679..2b29e03 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v33) for increased security and performance - pkgver = 0.0.79 + pkgver = 0.0.80 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.79/discord-0.0.79.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.80/discord-0.0.80.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = 48a82d7f3cfdc1c5ba2f621450320c25e1ed92608c381d7bd22cdb7dbd134456589d39cee0d55557bce9346f4dfed0fc487b9dddeb8ac7b053b116427cc4cae0 + sha512sums = c23cc93c91986e619113a8e772b67904ad72240897527e538174353ede805abe4c3fd9a1376cd1cef192bb0c6c49e29f80f735a8590319412d3297e2a4d220a9 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 30a9302..bb09b3a 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.79 +pkgver=0.0.80 pkgrel=1 _electronver=33 _electronname="electron${_electronver}" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('48a82d7f3cfdc1c5ba2f621450320c25e1ed92608c381d7bd22cdb7dbd134456589d39cee0d55557bce9346f4dfed0fc487b9dddeb8ac7b053b116427cc4cae0' +sha512sums=('c23cc93c91986e619113a8e772b67904ad72240897527e538174353ede805abe4c3fd9a1376cd1cef192bb0c6c49e29f80f735a8590319412d3297e2a4d220a9' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c') From 273492765106252026426479b31e18327355859b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 14 Jan 2025 00:14:00 +0100 Subject: [PATCH 926/971] upgpkg: discord-electron-openasar 0.0.80+833-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 62ddd47..14d16eb 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v33) for increased security and performance - pkgver = 0.0.79+833 + pkgver = 0.0.80+833 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.79/discord-0.0.79.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.80/discord-0.0.80.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=4ed9e52d42501927b60354fcc456da50ed41cde2 - sha512sums = 48a82d7f3cfdc1c5ba2f621450320c25e1ed92608c381d7bd22cdb7dbd134456589d39cee0d55557bce9346f4dfed0fc487b9dddeb8ac7b053b116427cc4cae0 + sha512sums = c23cc93c91986e619113a8e772b67904ad72240897527e538174353ede805abe4c3fd9a1376cd1cef192bb0c6c49e29f80f735a8590319412d3297e2a4d220a9 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c sha512sums = fcedc29784ba5ea15150d639a66b8bf2b13f48d6db04f9e2bebb628a6235f71f6641d8b8fe5354d9484012783c0fbd485676a4a4010ed8369ecf7ee74c5ff382 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 567cad7..460b409 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.79+833 +pkgver=0.0.80+833 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=33 @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=4ed9e52d42501927b60354fcc456da50ed41cde2") -sha512sums=('48a82d7f3cfdc1c5ba2f621450320c25e1ed92608c381d7bd22cdb7dbd134456589d39cee0d55557bce9346f4dfed0fc487b9dddeb8ac7b053b116427cc4cae0' +sha512sums=('c23cc93c91986e619113a8e772b67904ad72240897527e538174353ede805abe4c3fd9a1376cd1cef192bb0c6c49e29f80f735a8590319412d3297e2a4d220a9' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c' 'fcedc29784ba5ea15150d639a66b8bf2b13f48d6db04f9e2bebb628a6235f71f6641d8b8fe5354d9484012783c0fbd485676a4a4010ed8369ecf7ee74c5ff382') From 3665e9aaec6d6b2c0e75bde1a8ca21890d42fde9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 15 Jan 2025 20:26:53 +0100 Subject: [PATCH 927/971] upgpkg: sublime-text-dev 4.4191-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index f3a29bf..971cf7a 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4190 + pkgver = 4.4191 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -13,9 +13,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime-text-dev.sh sha512sums = ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9 - source_x86_64 = sublime_text_dev_4_4190_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4190_x64.tar.xz - sha512sums_x86_64 = 7a0876fdc80ba4a9204a63f31ecade90857546595d3b7591386df717b9bb356fef89781f06c21e3617e8f8c9c4c298aa47d4fb8704b66ec35ed73b6b1b8c9924 - source_aarch64 = sublime_text_dev_4_4190_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4190_arm64.tar.xz - sha512sums_aarch64 = 97b70b4b8e7ca16e338c7926b95c694d0a43e2721d35beac25fc59b3fba806a550da4ea809110ed9424a8b3a0bc53f29d9f4a710b4dfe37fd1641701cefc2a91 + source_x86_64 = sublime_text_dev_4_4191_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4191_x64.tar.xz + sha512sums_x86_64 = 4cf6a28120f4f88bd8746dc7acda2c4fca74b6943094e03c80011a56a596ef29bad01f585dfd4ad48366891af3a70b7c2096bafc10ec6dfa1105beb3a24c3057 + source_aarch64 = sublime_text_dev_4_4191_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4191_arm64.tar.xz + sha512sums_aarch64 = 2a336962f6d5f773de20e5e07fb5a5c3be49152f1616c6e89fa70f5511a975830d6d5b34b8069c02240bd0e98df9874b0eb83d7d097fd32468ecf4c976752854 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 26a7563..ca8cc08 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4190 +pkgver=4.4191 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -19,8 +19,8 @@ source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://down source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha512sums=('ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9') -sha512sums_x86_64=('7a0876fdc80ba4a9204a63f31ecade90857546595d3b7591386df717b9bb356fef89781f06c21e3617e8f8c9c4c298aa47d4fb8704b66ec35ed73b6b1b8c9924') -sha512sums_aarch64=('97b70b4b8e7ca16e338c7926b95c694d0a43e2721d35beac25fc59b3fba806a550da4ea809110ed9424a8b3a0bc53f29d9f4a710b4dfe37fd1641701cefc2a91') +sha512sums_x86_64=('4cf6a28120f4f88bd8746dc7acda2c4fca74b6943094e03c80011a56a596ef29bad01f585dfd4ad48366891af3a70b7c2096bafc10ec6dfa1105beb3a24c3057') +sha512sums_aarch64=('2a336962f6d5f773de20e5e07fb5a5c3be49152f1616c6e89fa70f5511a975830d6d5b34b8069c02240bd0e98df9874b0eb83d7d097fd32468ecf4c976752854') prepare() { sed -i -e "s|@ST_PATH@|/opt/sublime_text|g" "${pkgname}.sh" From 335e3b688b2d9d74649cdef6d26cf4b3d968f30b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 15 Jan 2025 20:27:51 +0100 Subject: [PATCH 928/971] upgpkg: discord-electron 0.0.80-2: update electron * Update Electron version to 34 --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 2b29e03..348cdf3 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,14 +1,14 @@ pkgbase = discord-electron - pkgdesc = Discord using system provided electron (v33) for increased security and performance + pkgdesc = Discord using system provided electron (v34) for increased security and performance pkgver = 0.0.80 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron.install arch = x86_64 license = custom makedepends = asar makedepends = curl - depends = electron33 + depends = electron34 depends = libxss optdepends = libpulse: Pulseaudio support optdepends = libappindicator-gtk3: Systray indicator support diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index bb09b3a..3e45132 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,8 +1,8 @@ pkgname=discord-electron _pkgname=discord pkgver=0.0.80 -pkgrel=1 -_electronver=33 +pkgrel=2 +_electronver=34 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" arch=('x86_64') From d4030f605201d8e30c767561f6ea9afbb7399abb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 15 Jan 2025 20:28:08 +0100 Subject: [PATCH 929/971] upgpkg: discord-electron-openasar 0.0.80+833-2: update electron * Update Electron version to 34 --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 14d16eb..b8eea64 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar - pkgdesc = Discord packaged with OpenAsar using system provided electron (v33) for increased security and performance + pkgdesc = Discord packaged with OpenAsar using system provided electron (v34) for increased security and performance pkgver = 0.0.80+833 - pkgrel = 1 + pkgrel = 2 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -10,7 +10,7 @@ pkgbase = discord-electron-openasar makedepends = asar makedepends = nodejs makedepends = curl - depends = electron33 + depends = electron34 depends = libxss depends = unzip optdepends = libpulse: Pulseaudio support diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 460b409..4a6ab7a 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -4,8 +4,8 @@ pkgname=discord-electron-openasar _pkgname=discord pkgver=0.0.80+833 _pkgver=${pkgver%%+*} -pkgrel=1 -_electronver=33 +pkgrel=2 +_electronver=34 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" arch=('x86_64') From 1d856d329adc6d7b3982326b2a956605e600fd5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 20 Jan 2025 16:58:32 +0100 Subject: [PATCH 930/971] upgpkg: sublime-text-4 4.4192-1 upstream release --- sublime-text-4/.SRCINFO | 10 +++++----- sublime-text-4/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-4/.SRCINFO b/sublime-text-4/.SRCINFO index 2e2b982..026a0d9 100644 --- a/sublime-text-4/.SRCINFO +++ b/sublime-text-4/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-4 pkgdesc = Sophisticated text editor for code, html and prose - stable build - pkgver = 4.4189 + pkgver = 4.4192 pkgrel = 1 url = https://www.sublimetext.com/download arch = x86_64 @@ -12,9 +12,9 @@ pkgbase = sublime-text-4 conflicts = sublime-text source = sublime-text-4.sh sha512sums = ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9 - source_x86_64 = sublime_text_4_4_4189_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4189_x64.tar.xz - sha512sums_x86_64 = 7413f9655367ef57285f8e79b42947e1cb1c316baed6e89c6e3cea9c76d4c8f819684ce383e4c97ba8d369608dbe264445e6e21ebb42961fd282298db90d2b49 - source_aarch64 = sublime_text_4_4_4189_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4189_arm64.tar.xz - sha512sums_aarch64 = 0d8dd09f94b3ac7748b4a884bd1d5b412009d4adfbffecabed062ac6926f22e3038d96700ea09132b735d7d3d3163364e2da90628508b66a06d7abacf84d9071 + source_x86_64 = sublime_text_4_4_4192_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4192_x64.tar.xz + sha512sums_x86_64 = 083bf22aef7425cd30164bd3f3a420bbea3c7be3c9702f221c9075d4ddbe9d4b271efc2f491cbfa9d61ec7d41e30e26b8ad38e7dfcc5509d3bade16296cdb88c + source_aarch64 = sublime_text_4_4_4192_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4192_arm64.tar.xz + sha512sums_aarch64 = d5f3839df9249bff14d7c72b4019d211fce416a828666352d0cab41564e8155a06c04e8c998152015f872919f9573e2deb19f48e254706786175005d0b25ecbe pkgname = sublime-text-4 diff --git a/sublime-text-4/PKGBUILD b/sublime-text-4/PKGBUILD index c53a88a..41257a4 100644 --- a/sublime-text-4/PKGBUILD +++ b/sublime-text-4/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Manuel Hüsers pkgname=sublime-text-4 -pkgver=4.4189 +pkgver=4.4192 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - stable build' arch=('x86_64' 'aarch64') @@ -16,8 +16,8 @@ source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://down source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha512sums=('ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9') -sha512sums_x86_64=('7413f9655367ef57285f8e79b42947e1cb1c316baed6e89c6e3cea9c76d4c8f819684ce383e4c97ba8d369608dbe264445e6e21ebb42961fd282298db90d2b49') -sha512sums_aarch64=('0d8dd09f94b3ac7748b4a884bd1d5b412009d4adfbffecabed062ac6926f22e3038d96700ea09132b735d7d3d3163364e2da90628508b66a06d7abacf84d9071') +sha512sums_x86_64=('083bf22aef7425cd30164bd3f3a420bbea3c7be3c9702f221c9075d4ddbe9d4b271efc2f491cbfa9d61ec7d41e30e26b8ad38e7dfcc5509d3bade16296cdb88c') +sha512sums_aarch64=('d5f3839df9249bff14d7c72b4019d211fce416a828666352d0cab41564e8155a06c04e8c998152015f872919f9573e2deb19f48e254706786175005d0b25ecbe') prepare() { sed -i -e "s|@ST_PATH@|/opt/sublime_text|g" "${pkgname}.sh" From ee553f378027f900bc140ccb6bc646184a64c326 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 22 Jan 2025 19:57:57 +0100 Subject: [PATCH 931/971] upgpkg: discord-electron 0.0.81-1 upstream release --- discord-electron/.SRCINFO | 8 ++++---- discord-electron/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 348cdf3..4b45420 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v34) for increased security and performance - pkgver = 0.0.80 - pkgrel = 2 + pkgver = 0.0.81 + pkgrel = 1 url = https://discord.com install = discord-electron.install arch = x86_64 @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.80/discord-0.0.80.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.81/discord-0.0.81.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = c23cc93c91986e619113a8e772b67904ad72240897527e538174353ede805abe4c3fd9a1376cd1cef192bb0c6c49e29f80f735a8590319412d3297e2a4d220a9 + sha512sums = ff8a8a252bbb60101a36f320202cfb7dcc5cebcb91dfccd92caf66090bb759d4508f8027fc926a67842a99fd6d459a968458264ab5bad4c6cf6cffeb2f1c80e7 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 3e45132..8c41c90 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,7 +1,7 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.80 -pkgrel=2 +pkgver=0.0.81 +pkgrel=1 _electronver=34 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('c23cc93c91986e619113a8e772b67904ad72240897527e538174353ede805abe4c3fd9a1376cd1cef192bb0c6c49e29f80f735a8590319412d3297e2a4d220a9' +sha512sums=('ff8a8a252bbb60101a36f320202cfb7dcc5cebcb91dfccd92caf66090bb759d4508f8027fc926a67842a99fd6d459a968458264ab5bad4c6cf6cffeb2f1c80e7' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c') From b7c85c61a30b06b01919437d32da776bc8d69eda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 22 Jan 2025 19:58:13 +0100 Subject: [PATCH 932/971] upgpkg: discord-electron-openasar 0.0.81+833-1 upstream release --- discord-electron-openasar/.SRCINFO | 8 ++++---- discord-electron-openasar/PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index b8eea64..64649e7 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v34) for increased security and performance - pkgver = 0.0.80+833 - pkgrel = 2 + pkgver = 0.0.81+833 + pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install arch = x86_64 @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.80/discord-0.0.80.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.81/discord-0.0.81.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=4ed9e52d42501927b60354fcc456da50ed41cde2 - sha512sums = c23cc93c91986e619113a8e772b67904ad72240897527e538174353ede805abe4c3fd9a1376cd1cef192bb0c6c49e29f80f735a8590319412d3297e2a4d220a9 + sha512sums = ff8a8a252bbb60101a36f320202cfb7dcc5cebcb91dfccd92caf66090bb759d4508f8027fc926a67842a99fd6d459a968458264ab5bad4c6cf6cffeb2f1c80e7 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c sha512sums = fcedc29784ba5ea15150d639a66b8bf2b13f48d6db04f9e2bebb628a6235f71f6641d8b8fe5354d9484012783c0fbd485676a4a4010ed8369ecf7ee74c5ff382 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 4a6ab7a..7af8c76 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,9 +2,9 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.80+833 +pkgver=0.0.81+833 _pkgver=${pkgver%%+*} -pkgrel=2 +pkgrel=1 _electronver=34 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=4ed9e52d42501927b60354fcc456da50ed41cde2") -sha512sums=('c23cc93c91986e619113a8e772b67904ad72240897527e538174353ede805abe4c3fd9a1376cd1cef192bb0c6c49e29f80f735a8590319412d3297e2a4d220a9' +sha512sums=('ff8a8a252bbb60101a36f320202cfb7dcc5cebcb91dfccd92caf66090bb759d4508f8027fc926a67842a99fd6d459a968458264ab5bad4c6cf6cffeb2f1c80e7' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c' 'fcedc29784ba5ea15150d639a66b8bf2b13f48d6db04f9e2bebb628a6235f71f6641d8b8fe5354d9484012783c0fbd485676a4a4010ed8369ecf7ee74c5ff382') From 848f2ad7cbd97f35a7eb5473a4f30a482f7ceb3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 27 Jan 2025 23:55:37 +0100 Subject: [PATCH 933/971] upgpkg: discord-electron 0.0.82-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 4b45420..4011458 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v34) for increased security and performance - pkgver = 0.0.81 + pkgver = 0.0.82 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.81/discord-0.0.81.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.82/discord-0.0.82.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = ff8a8a252bbb60101a36f320202cfb7dcc5cebcb91dfccd92caf66090bb759d4508f8027fc926a67842a99fd6d459a968458264ab5bad4c6cf6cffeb2f1c80e7 + sha512sums = 1911df8cc5d266a0db4639b1523ec8a80e5127d709d90794ab466e3c54e04076215e53700ad6a8649714db87fbef479cd8a014fdcf95605916c5977bc02b7859 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 8c41c90..4137afe 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.81 +pkgver=0.0.82 pkgrel=1 _electronver=34 _electronname="electron${_electronver}" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('ff8a8a252bbb60101a36f320202cfb7dcc5cebcb91dfccd92caf66090bb759d4508f8027fc926a67842a99fd6d459a968458264ab5bad4c6cf6cffeb2f1c80e7' +sha512sums=('1911df8cc5d266a0db4639b1523ec8a80e5127d709d90794ab466e3c54e04076215e53700ad6a8649714db87fbef479cd8a014fdcf95605916c5977bc02b7859' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c') From 353900d03a1807efdc69b83f9ea7fde7ea46f176 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 27 Jan 2025 23:55:54 +0100 Subject: [PATCH 934/971] upgpkg: discord-electron-openasar 0.0.82+833-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 64649e7..5b425eb 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v34) for increased security and performance - pkgver = 0.0.81+833 + pkgver = 0.0.82+833 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.81/discord-0.0.81.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.82/discord-0.0.82.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=4ed9e52d42501927b60354fcc456da50ed41cde2 - sha512sums = ff8a8a252bbb60101a36f320202cfb7dcc5cebcb91dfccd92caf66090bb759d4508f8027fc926a67842a99fd6d459a968458264ab5bad4c6cf6cffeb2f1c80e7 + sha512sums = 1911df8cc5d266a0db4639b1523ec8a80e5127d709d90794ab466e3c54e04076215e53700ad6a8649714db87fbef479cd8a014fdcf95605916c5977bc02b7859 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c sha512sums = fcedc29784ba5ea15150d639a66b8bf2b13f48d6db04f9e2bebb628a6235f71f6641d8b8fe5354d9484012783c0fbd485676a4a4010ed8369ecf7ee74c5ff382 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 7af8c76..807aa8d 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.81+833 +pkgver=0.0.82+833 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=34 @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=4ed9e52d42501927b60354fcc456da50ed41cde2") -sha512sums=('ff8a8a252bbb60101a36f320202cfb7dcc5cebcb91dfccd92caf66090bb759d4508f8027fc926a67842a99fd6d459a968458264ab5bad4c6cf6cffeb2f1c80e7' +sha512sums=('1911df8cc5d266a0db4639b1523ec8a80e5127d709d90794ab466e3c54e04076215e53700ad6a8649714db87fbef479cd8a014fdcf95605916c5977bc02b7859' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c' 'fcedc29784ba5ea15150d639a66b8bf2b13f48d6db04f9e2bebb628a6235f71f6641d8b8fe5354d9484012783c0fbd485676a4a4010ed8369ecf7ee74c5ff382') From 2eb22f04bdc9578b8a5b638543c10d16e73a1bf8 Mon Sep 17 00:00:00 2001 From: Manuel Date: Tue, 28 Jan 2025 21:00:00 +0100 Subject: [PATCH 935/971] Replace license with 0BSD to match Arch Linux license for package sources --- LICENSE | 18 ++++++++++++++++++ UNLICENSE | 24 ------------------------ 2 files changed, 18 insertions(+), 24 deletions(-) create mode 100644 LICENSE delete mode 100644 UNLICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..730f07c --- /dev/null +++ b/LICENSE @@ -0,0 +1,18 @@ +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 2025 Manuel Hüsers + +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/UNLICENSE b/UNLICENSE deleted file mode 100644 index 68a49da..0000000 --- a/UNLICENSE +++ /dev/null @@ -1,24 +0,0 @@ -This is free and unencumbered software released into the public domain. - -Anyone is free to copy, modify, publish, use, compile, sell, or -distribute this software, either in source code form or as a compiled -binary, for any purpose, commercial or non-commercial, and by any -means. - -In jurisdictions that recognize copyright laws, the author or authors -of this software dedicate any and all copyright interest in the -software to the public domain. We make this dedication for the benefit -of the public at large and to the detriment of our heirs and -successors. We intend this dedication to be an overt act of -relinquishment in perpetuity of all present and future rights to this -software under copyright law. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR -OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. - -For more information, please refer to From 339ccb8f2f1761aa41ef8848b3ff8e9c9106a4cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sat, 1 Feb 2025 20:59:46 +0100 Subject: [PATCH 936/971] upgpkg: tuned-git 2.25.0.r2.ga96d7d9-1: Fix installation paths upstream release Add SBINDIR to set correct installation path Fix libexec scripts installation that were previously left out --- tuned-git/.SRCINFO | 2 +- tuned-git/PKGBUILD | 9 ++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/tuned-git/.SRCINFO b/tuned-git/.SRCINFO index cedbe23..d64ee8d 100644 --- a/tuned-git/.SRCINFO +++ b/tuned-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = tuned-git pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = 2.24.1.r0.g90c24ee + pkgver = 2.25.0.r2.ga96d7d9 pkgrel = 1 url = https://github.com/redhat-performance/tuned arch = any diff --git a/tuned-git/PKGBUILD b/tuned-git/PKGBUILD index a263354..fe3da1f 100644 --- a/tuned-git/PKGBUILD +++ b/tuned-git/PKGBUILD @@ -7,7 +7,7 @@ _pkgbase=tuned pkgbase="${_pkgbase}-git" pkgname=("${_pkgbase}-git" "${_pkgbase}-ppd-git") -pkgver=2.24.1.r0.g90c24ee +pkgver=2.25.0.r2.ga96d7d9 pkgrel=1 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') @@ -26,10 +26,9 @@ pkgver() { prepare() { cd "${_pkgbase}" - mv libexec lib sed -i 's|/libexec/|/lib/|g' Makefile - sed -i 's|/sbin/|/bin/|g' Makefile tuned.service tuned-gui.py tuned-gui.desktop tuned/ppd/tuned-ppd.service + sed -i 's|/sbin/|/bin/|g' tuned.service tuned-gui.py tuned-gui.desktop tuned/ppd/tuned-ppd.service } package_tuned-git() { @@ -53,7 +52,7 @@ package_tuned-git() { cd "${_pkgbase}" - make DESTDIR="${pkgdir}" install + make DESTDIR="${pkgdir}" SBINDIR="/usr/bin" install rm -rv "${pkgdir}"/{run,var} python -m compileall -d /usr/lib "${pkgdir}/usr/lib" @@ -69,5 +68,5 @@ package_tuned-ppd-git() { cd "${_pkgbase}" - make DESTDIR="${pkgdir}" install-ppd + make DESTDIR="${pkgdir}" SBINDIR="/usr/bin" install-ppd } From 793cf457bcf7125d8d7f332d27250f2f67fd0442 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Sun, 2 Feb 2025 18:31:06 +0100 Subject: [PATCH 937/971] upgpkg: tuned-git 2.25.0.r4.gc624ba6-1: missing dep and custom libexecdir Add missing dependency for `tuned-ppd` that wasn't mentioned in the release notes Add custom LIBEXECDIR and remove sed patch --- tuned-git/.SRCINFO | 3 ++- tuned-git/PKGBUILD | 9 ++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tuned-git/.SRCINFO b/tuned-git/.SRCINFO index d64ee8d..013b747 100644 --- a/tuned-git/.SRCINFO +++ b/tuned-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = tuned-git pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = 2.25.0.r2.ga96d7d9 + pkgver = 2.25.0.r4.gc624ba6 pkgrel = 1 url = https://github.com/redhat-performance/tuned arch = any @@ -42,6 +42,7 @@ pkgname = tuned-git pkgname = tuned-ppd-git pkgdesc = Daemon that allows applications to easily transition to TuneD from power-profiles-daemon (PPD) depends = tuned + depends = python-pyinotify provides = tuned-ppd provides = power-profiles-daemon conflicts = tuned-ppd diff --git a/tuned-git/PKGBUILD b/tuned-git/PKGBUILD index fe3da1f..d0d91d8 100644 --- a/tuned-git/PKGBUILD +++ b/tuned-git/PKGBUILD @@ -7,7 +7,7 @@ _pkgbase=tuned pkgbase="${_pkgbase}-git" pkgname=("${_pkgbase}-git" "${_pkgbase}-ppd-git") -pkgver=2.25.0.r2.ga96d7d9 +pkgver=2.25.0.r4.gc624ba6 pkgrel=1 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') @@ -27,7 +27,6 @@ pkgver() { prepare() { cd "${_pkgbase}" - sed -i 's|/libexec/|/lib/|g' Makefile sed -i 's|/sbin/|/bin/|g' tuned.service tuned-gui.py tuned-gui.desktop tuned/ppd/tuned-ppd.service } @@ -52,7 +51,7 @@ package_tuned-git() { cd "${_pkgbase}" - make DESTDIR="${pkgdir}" SBINDIR="/usr/bin" install + make DESTDIR="${pkgdir}" SBINDIR="/usr/bin" LIBEXECDIR="/usr/lib" install rm -rv "${pkgdir}"/{run,var} python -m compileall -d /usr/lib "${pkgdir}/usr/lib" @@ -61,12 +60,12 @@ package_tuned-git() { package_tuned-ppd-git() { pkgdesc='Daemon that allows applications to easily transition to TuneD from power-profiles-daemon (PPD)' - depends=("${_pkgbase}") + depends=("${_pkgbase}" 'python-pyinotify') provides=("${_pkgbase}-ppd" 'power-profiles-daemon') conflicts=("${_pkgbase}-ppd" 'power-profiles-daemon') backup=('etc/tuned/ppd.conf') cd "${_pkgbase}" - make DESTDIR="${pkgdir}" SBINDIR="/usr/bin" install-ppd + make DESTDIR="${pkgdir}" SBINDIR="/usr/bin" LIBEXECDIR="/usr/lib" install-ppd } From df406b9aedc71938173b5038a0689026cf11758e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 3 Feb 2025 20:00:01 +0100 Subject: [PATCH 938/971] upgpkg: discord-electron 0.0.83-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 4011458..bab6750 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v34) for increased security and performance - pkgver = 0.0.82 + pkgver = 0.0.83 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.82/discord-0.0.82.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.83/discord-0.0.83.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = 1911df8cc5d266a0db4639b1523ec8a80e5127d709d90794ab466e3c54e04076215e53700ad6a8649714db87fbef479cd8a014fdcf95605916c5977bc02b7859 + sha512sums = f3fc4394451aa17026d67d0474f72de01970c809f49baadf015a67e7c776bcdf756e04330f7e84a7333fde6143a11086e3625c8d35a5e7f1380995fa53d8eeb7 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 4137afe..c5cbda6 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.82 +pkgver=0.0.83 pkgrel=1 _electronver=34 _electronname="electron${_electronver}" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('1911df8cc5d266a0db4639b1523ec8a80e5127d709d90794ab466e3c54e04076215e53700ad6a8649714db87fbef479cd8a014fdcf95605916c5977bc02b7859' +sha512sums=('f3fc4394451aa17026d67d0474f72de01970c809f49baadf015a67e7c776bcdf756e04330f7e84a7333fde6143a11086e3625c8d35a5e7f1380995fa53d8eeb7' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c') From da3810806ba3d1452286c03f03f0badeced941bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 3 Feb 2025 20:00:18 +0100 Subject: [PATCH 939/971] upgpkg: discord-electron-openasar 0.0.83+833-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 5b425eb..2c4ec50 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v34) for increased security and performance - pkgver = 0.0.82+833 + pkgver = 0.0.83+833 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.82/discord-0.0.82.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.83/discord-0.0.83.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=4ed9e52d42501927b60354fcc456da50ed41cde2 - sha512sums = 1911df8cc5d266a0db4639b1523ec8a80e5127d709d90794ab466e3c54e04076215e53700ad6a8649714db87fbef479cd8a014fdcf95605916c5977bc02b7859 + sha512sums = f3fc4394451aa17026d67d0474f72de01970c809f49baadf015a67e7c776bcdf756e04330f7e84a7333fde6143a11086e3625c8d35a5e7f1380995fa53d8eeb7 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c sha512sums = fcedc29784ba5ea15150d639a66b8bf2b13f48d6db04f9e2bebb628a6235f71f6641d8b8fe5354d9484012783c0fbd485676a4a4010ed8369ecf7ee74c5ff382 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 807aa8d..346392d 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.82+833 +pkgver=0.0.83+833 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=34 @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=4ed9e52d42501927b60354fcc456da50ed41cde2") -sha512sums=('1911df8cc5d266a0db4639b1523ec8a80e5127d709d90794ab466e3c54e04076215e53700ad6a8649714db87fbef479cd8a014fdcf95605916c5977bc02b7859' +sha512sums=('f3fc4394451aa17026d67d0474f72de01970c809f49baadf015a67e7c776bcdf756e04330f7e84a7333fde6143a11086e3625c8d35a5e7f1380995fa53d8eeb7' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c' 'fcedc29784ba5ea15150d639a66b8bf2b13f48d6db04f9e2bebb628a6235f71f6641d8b8fe5354d9484012783c0fbd485676a4a4010ed8369ecf7ee74c5ff382') From edc7958c96b1444dcd79a8ca94a0de2f16ab9e98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 3 Feb 2025 20:47:05 +0100 Subject: [PATCH 940/971] upgpkg: tuned-git 2.25.1.r0.g889387b-1 upstream release --- tuned-git/.SRCINFO | 2 +- tuned-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tuned-git/.SRCINFO b/tuned-git/.SRCINFO index 013b747..f4f66ac 100644 --- a/tuned-git/.SRCINFO +++ b/tuned-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = tuned-git pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system - pkgver = 2.25.0.r4.gc624ba6 + pkgver = 2.25.1.r0.g889387b pkgrel = 1 url = https://github.com/redhat-performance/tuned arch = any diff --git a/tuned-git/PKGBUILD b/tuned-git/PKGBUILD index d0d91d8..401867c 100644 --- a/tuned-git/PKGBUILD +++ b/tuned-git/PKGBUILD @@ -7,7 +7,7 @@ _pkgbase=tuned pkgbase="${_pkgbase}-git" pkgname=("${_pkgbase}-git" "${_pkgbase}-ppd-git") -pkgver=2.25.0.r4.gc624ba6 +pkgver=2.25.1.r0.g889387b pkgrel=1 pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system' arch=('any') From 694e3684888035dc58c236ba95edbce825bfffc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 4 Feb 2025 19:37:09 +0100 Subject: [PATCH 941/971] upgpkg: discord-electron 0.0.84-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index bab6750..6694ad2 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v34) for increased security and performance - pkgver = 0.0.83 + pkgver = 0.0.84 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.83/discord-0.0.83.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.84/discord-0.0.84.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = f3fc4394451aa17026d67d0474f72de01970c809f49baadf015a67e7c776bcdf756e04330f7e84a7333fde6143a11086e3625c8d35a5e7f1380995fa53d8eeb7 + sha512sums = 22b57029d183241479198ec802a1a2ce763d7386174beaa2541bb48af8a191630b42caa9133a7faf0e8424eba9e88ec7829f8f586b94ea63fa35bb3d1d338d29 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index c5cbda6..ca9d25e 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.83 +pkgver=0.0.84 pkgrel=1 _electronver=34 _electronname="electron${_electronver}" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('f3fc4394451aa17026d67d0474f72de01970c809f49baadf015a67e7c776bcdf756e04330f7e84a7333fde6143a11086e3625c8d35a5e7f1380995fa53d8eeb7' +sha512sums=('22b57029d183241479198ec802a1a2ce763d7386174beaa2541bb48af8a191630b42caa9133a7faf0e8424eba9e88ec7829f8f586b94ea63fa35bb3d1d338d29' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c') From 6d331372979e9563d3958560785780591e27bb4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 4 Feb 2025 19:37:28 +0100 Subject: [PATCH 942/971] upgpkg: discord-electron-openasar 0.0.84+833-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 2c4ec50..32f2d2b 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v34) for increased security and performance - pkgver = 0.0.83+833 + pkgver = 0.0.84+833 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.83/discord-0.0.83.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.84/discord-0.0.84.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=4ed9e52d42501927b60354fcc456da50ed41cde2 - sha512sums = f3fc4394451aa17026d67d0474f72de01970c809f49baadf015a67e7c776bcdf756e04330f7e84a7333fde6143a11086e3625c8d35a5e7f1380995fa53d8eeb7 + sha512sums = 22b57029d183241479198ec802a1a2ce763d7386174beaa2541bb48af8a191630b42caa9133a7faf0e8424eba9e88ec7829f8f586b94ea63fa35bb3d1d338d29 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c sha512sums = fcedc29784ba5ea15150d639a66b8bf2b13f48d6db04f9e2bebb628a6235f71f6641d8b8fe5354d9484012783c0fbd485676a4a4010ed8369ecf7ee74c5ff382 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 346392d..12b16b3 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.83+833 +pkgver=0.0.84+833 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=34 @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=4ed9e52d42501927b60354fcc456da50ed41cde2") -sha512sums=('f3fc4394451aa17026d67d0474f72de01970c809f49baadf015a67e7c776bcdf756e04330f7e84a7333fde6143a11086e3625c8d35a5e7f1380995fa53d8eeb7' +sha512sums=('22b57029d183241479198ec802a1a2ce763d7386174beaa2541bb48af8a191630b42caa9133a7faf0e8424eba9e88ec7829f8f586b94ea63fa35bb3d1d338d29' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c' 'fcedc29784ba5ea15150d639a66b8bf2b13f48d6db04f9e2bebb628a6235f71f6641d8b8fe5354d9484012783c0fbd485676a4a4010ed8369ecf7ee74c5ff382') From 018664e6bb69c6cc3858eed5aa5d204ed1f90034 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 6 Feb 2025 20:59:44 +0100 Subject: [PATCH 943/971] upgpkg: gvisor-bin 20250203.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index 6bb7ecb..5067507 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20250106.0 + pkgver = 20250203.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20250106.0::https://storage.googleapis.com/gvisor/releases/release/20250106.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20250106.0::https://storage.googleapis.com/gvisor/releases/release/20250106.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = fe434dc9ddfeaf2e333c0c77d7946012c20a09f125d6bfa9a08c54dd9c237f0da791c5c0e8db4052fd45f2f74a95196292f64824d98e9824aa394c631b534b09 - sha512sums_x86_64 = 017a687fe2a23f7d9c457bab389a47c442a477d5da6e607c809601cf928ab3fc4e2b538c449b7038c88b28b6f36d146c573d74a7fb6b0a9dafe0cea955a9a965 - source_aarch64 = runsc-aarch64-20250106.0::https://storage.googleapis.com/gvisor/releases/release/20250106.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20250106.0::https://storage.googleapis.com/gvisor/releases/release/20250106.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 6165ceaed325e4e325b3ff4f312e03ecfb60f577b7a01a4cf3be6dc58bc4294e54569c18543278c022a337eb06a55d25dc0ac3f237c56def23d5e7145ddc0edd - sha512sums_aarch64 = 0b75574ec22cc79dc22b962113c6648919111b65fad9d10f804cbf4543afb116e6158eecb1ced5b41a59450f4045077f670ee3465d5298981861f1bda2221ca1 + source_x86_64 = runsc-x86_64-20250203.0::https://storage.googleapis.com/gvisor/releases/release/20250203.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20250203.0::https://storage.googleapis.com/gvisor/releases/release/20250203.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = 200b6a62e3ac40f41363f090c930a8c6bedf40e482e790e60f8d05430a2b92bf76f7b8b0ebe9555b4302256b0e7d52276747d8ce177c555891b09936ed1a9513 + sha512sums_x86_64 = de0ecb509a9c0f2e66912868e1f1fe85502a153cfddf460ff3709506cdd459b375f912a87060742a5cc97f8e830d7893175c88c2a7aba0cf35c9af8236a94abe + source_aarch64 = runsc-aarch64-20250203.0::https://storage.googleapis.com/gvisor/releases/release/20250203.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20250203.0::https://storage.googleapis.com/gvisor/releases/release/20250203.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 4b62e91e1c8709be1aacee8fdcea60fd8a0dfb36faff5ad2c8b904cdff3f0e04d06ab046c4a29802e4a545aec8f7966b074adfce2cf17b70faff07001e567384 + sha512sums_aarch64 = 0f0f83b7db96b188b6eb26e64f8ccf1324f02b2350001c1852fdf36f1ea4f0407e01c35743a8d5337ffd34182aeaa536cb809ecbeb7f06d627ab8e242a6006ad pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index 9f26422..5d0db3f 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20250106.0 +pkgver=20250203.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('fe434dc9ddfeaf2e333c0c77d7946012c20a09f125d6bfa9a08c54dd9c237f0da791c5c0e8db4052fd45f2f74a95196292f64824d98e9824aa394c631b534b09' - '017a687fe2a23f7d9c457bab389a47c442a477d5da6e607c809601cf928ab3fc4e2b538c449b7038c88b28b6f36d146c573d74a7fb6b0a9dafe0cea955a9a965') -sha512sums_aarch64=('6165ceaed325e4e325b3ff4f312e03ecfb60f577b7a01a4cf3be6dc58bc4294e54569c18543278c022a337eb06a55d25dc0ac3f237c56def23d5e7145ddc0edd' - '0b75574ec22cc79dc22b962113c6648919111b65fad9d10f804cbf4543afb116e6158eecb1ced5b41a59450f4045077f670ee3465d5298981861f1bda2221ca1') +sha512sums_x86_64=('200b6a62e3ac40f41363f090c930a8c6bedf40e482e790e60f8d05430a2b92bf76f7b8b0ebe9555b4302256b0e7d52276747d8ce177c555891b09936ed1a9513' + 'de0ecb509a9c0f2e66912868e1f1fe85502a153cfddf460ff3709506cdd459b375f912a87060742a5cc97f8e830d7893175c88c2a7aba0cf35c9af8236a94abe') +sha512sums_aarch64=('4b62e91e1c8709be1aacee8fdcea60fd8a0dfb36faff5ad2c8b904cdff3f0e04d06ab046c4a29802e4a545aec8f7966b074adfce2cf17b70faff07001e567384' + '0f0f83b7db96b188b6eb26e64f8ccf1324f02b2350001c1852fdf36f1ea4f0407e01c35743a8d5337ffd34182aeaa536cb809ecbeb7f06d627ab8e242a6006ad') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From e792d4e278e969120ab420e5565618d5fd1167e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Thu, 6 Feb 2025 21:00:00 +0100 Subject: [PATCH 944/971] upgpkg: gvisor-git 20250203.0-1 upstream release --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index e3b4fbf..128dd6f 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20250106.0 + pkgver = 20250203.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index c4ab096..6e82d85 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20250106.0 +pkgver=20250203.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From 4410217dea664daedbd8347dfe638bd89056381f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 10 Feb 2025 23:15:25 +0100 Subject: [PATCH 945/971] upgpkg: discord-electron 0.0.85-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 6694ad2..528b66d 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v34) for increased security and performance - pkgver = 0.0.84 + pkgver = 0.0.85 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.84/discord-0.0.84.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.85/discord-0.0.85.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = 22b57029d183241479198ec802a1a2ce763d7386174beaa2541bb48af8a191630b42caa9133a7faf0e8424eba9e88ec7829f8f586b94ea63fa35bb3d1d338d29 + sha512sums = f136b8c4f1bff17358daa7227908d9f501aa768729be749fcdccac08d934695043a52eed17df5de5ac48a27b3ea64c14a1c759b8c158065b1fd600e4720781f0 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index ca9d25e..4990132 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.84 +pkgver=0.0.85 pkgrel=1 _electronver=34 _electronname="electron${_electronver}" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('22b57029d183241479198ec802a1a2ce763d7386174beaa2541bb48af8a191630b42caa9133a7faf0e8424eba9e88ec7829f8f586b94ea63fa35bb3d1d338d29' +sha512sums=('f136b8c4f1bff17358daa7227908d9f501aa768729be749fcdccac08d934695043a52eed17df5de5ac48a27b3ea64c14a1c759b8c158065b1fd600e4720781f0' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c') From 250d7e398830f7a6bc4af6f2125075e3382bf71f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 10 Feb 2025 23:15:45 +0100 Subject: [PATCH 946/971] upgpkg: discord-electron-openasar 0.0.85+833-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 32f2d2b..782bf9c 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v34) for increased security and performance - pkgver = 0.0.84+833 + pkgver = 0.0.85+833 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.84/discord-0.0.84.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.85/discord-0.0.85.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=4ed9e52d42501927b60354fcc456da50ed41cde2 - sha512sums = 22b57029d183241479198ec802a1a2ce763d7386174beaa2541bb48af8a191630b42caa9133a7faf0e8424eba9e88ec7829f8f586b94ea63fa35bb3d1d338d29 + sha512sums = f136b8c4f1bff17358daa7227908d9f501aa768729be749fcdccac08d934695043a52eed17df5de5ac48a27b3ea64c14a1c759b8c158065b1fd600e4720781f0 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c sha512sums = fcedc29784ba5ea15150d639a66b8bf2b13f48d6db04f9e2bebb628a6235f71f6641d8b8fe5354d9484012783c0fbd485676a4a4010ed8369ecf7ee74c5ff382 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 12b16b3..84f3894 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.84+833 +pkgver=0.0.85+833 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=34 @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=4ed9e52d42501927b60354fcc456da50ed41cde2") -sha512sums=('22b57029d183241479198ec802a1a2ce763d7386174beaa2541bb48af8a191630b42caa9133a7faf0e8424eba9e88ec7829f8f586b94ea63fa35bb3d1d338d29' +sha512sums=('f136b8c4f1bff17358daa7227908d9f501aa768729be749fcdccac08d934695043a52eed17df5de5ac48a27b3ea64c14a1c759b8c158065b1fd600e4720781f0' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c' 'fcedc29784ba5ea15150d639a66b8bf2b13f48d6db04f9e2bebb628a6235f71f6641d8b8fe5354d9484012783c0fbd485676a4a4010ed8369ecf7ee74c5ff382') From 376a65a60f4f09754cb26a276a7715af917b32e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 18 Feb 2025 20:04:33 +0100 Subject: [PATCH 947/971] upgpkg: bino 2.5-1 upstream release --- bino/.SRCINFO | 8 ++++---- bino/PKGBUILD | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bino/.SRCINFO b/bino/.SRCINFO index 38e61f3..bdb70f2 100644 --- a/bino/.SRCINFO +++ b/bino/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = bino pkgdesc = A video player with focus on 3D and Virtual Reality - pkgver = 2.3 + pkgver = 2.5 pkgrel = 1 url = https://bino3d.org/ arch = x86_64 @@ -10,10 +10,10 @@ pkgbase = bino depends = qt6-multimedia depends = qt6-svg depends = qvr - source = https://bino3d.org/releases/bino-2.3.tar.gz - source = https://bino3d.org/releases/bino-2.3.tar.gz.sig + source = https://bino3d.org/releases/bino-2.5.tar.gz + source = https://bino3d.org/releases/bino-2.5.tar.gz.sig validpgpkeys = 2F61B4828BBA779AECB3F32703A2A4AB1E32FD34 - sha512sums = 9750deb7e777237c87d3bd1e7d5411b23b55c4c3bac5361848effb59c3253fb4f9355fddbae62c922026318c349657a7fdfecdf4041cd756a92f0440c1e29f4c + sha512sums = 3e881b2299ac2922fbb915fcac74aea889e8118e3f1a7f2ffbfbf4ff70b038d0400fee734e6c55a37db416dce77df8b9fdde0d5ed154f7d39ff85a3c45f5aff7 sha512sums = SKIP pkgname = bino diff --git a/bino/PKGBUILD b/bino/PKGBUILD index c2b36f1..6f97ba3 100644 --- a/bino/PKGBUILD +++ b/bino/PKGBUILD @@ -4,7 +4,7 @@ # Contributor: archtux pkgname=bino -pkgver=2.3 +pkgver=2.5 pkgrel=1 pkgdesc='A video player with focus on 3D and Virtual Reality' arch=('x86_64') @@ -13,7 +13,7 @@ license=('GPL-3.0-or-later') depends=('qt6-multimedia' 'qt6-svg' 'qvr') makedepends=('cmake' 'qt6-tools') source=(https://bino3d.org/releases/$pkgname-$pkgver.tar.gz{,.sig}) -sha512sums=('9750deb7e777237c87d3bd1e7d5411b23b55c4c3bac5361848effb59c3253fb4f9355fddbae62c922026318c349657a7fdfecdf4041cd756a92f0440c1e29f4c' +sha512sums=('3e881b2299ac2922fbb915fcac74aea889e8118e3f1a7f2ffbfbf4ff70b038d0400fee734e6c55a37db416dce77df8b9fdde0d5ed154f7d39ff85a3c45f5aff7' 'SKIP') validpgpkeys=('2F61B4828BBA779AECB3F32703A2A4AB1E32FD34') From 8b9faaaef1c8ed17ba161784d03e5e82d1e52819 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 18 Feb 2025 20:06:09 +0100 Subject: [PATCH 948/971] upgpkg: discord-electron 0.0.86-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 528b66d..c120155 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v34) for increased security and performance - pkgver = 0.0.85 + pkgver = 0.0.86 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.85/discord-0.0.85.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.86/discord-0.0.86.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = f136b8c4f1bff17358daa7227908d9f501aa768729be749fcdccac08d934695043a52eed17df5de5ac48a27b3ea64c14a1c759b8c158065b1fd600e4720781f0 + sha512sums = f3c1096d8065dd7a26381efdc07f0b0f977bed697659ed5cbc9dd7733ef79f14608fd163d7f33d8f98e9543f8a73778f4385edb07911ca13f60a4711d7ece517 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 4990132..e327151 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.85 +pkgver=0.0.86 pkgrel=1 _electronver=34 _electronname="electron${_electronver}" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('f136b8c4f1bff17358daa7227908d9f501aa768729be749fcdccac08d934695043a52eed17df5de5ac48a27b3ea64c14a1c759b8c158065b1fd600e4720781f0' +sha512sums=('f3c1096d8065dd7a26381efdc07f0b0f977bed697659ed5cbc9dd7733ef79f14608fd163d7f33d8f98e9543f8a73778f4385edb07911ca13f60a4711d7ece517' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c') From 97eb7b8988bf57466cdafbece6588c68e5efd329 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 18 Feb 2025 20:06:15 +0100 Subject: [PATCH 949/971] upgpkg: discord-electron-openasar 0.0.86+833-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 782bf9c..c23254b 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v34) for increased security and performance - pkgver = 0.0.85+833 + pkgver = 0.0.86+833 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.85/discord-0.0.85.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.86/discord-0.0.86.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=4ed9e52d42501927b60354fcc456da50ed41cde2 - sha512sums = f136b8c4f1bff17358daa7227908d9f501aa768729be749fcdccac08d934695043a52eed17df5de5ac48a27b3ea64c14a1c759b8c158065b1fd600e4720781f0 + sha512sums = f3c1096d8065dd7a26381efdc07f0b0f977bed697659ed5cbc9dd7733ef79f14608fd163d7f33d8f98e9543f8a73778f4385edb07911ca13f60a4711d7ece517 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c sha512sums = fcedc29784ba5ea15150d639a66b8bf2b13f48d6db04f9e2bebb628a6235f71f6641d8b8fe5354d9484012783c0fbd485676a4a4010ed8369ecf7ee74c5ff382 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 84f3894..a9a82a8 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.85+833 +pkgver=0.0.86+833 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=34 @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=4ed9e52d42501927b60354fcc456da50ed41cde2") -sha512sums=('f136b8c4f1bff17358daa7227908d9f501aa768729be749fcdccac08d934695043a52eed17df5de5ac48a27b3ea64c14a1c759b8c158065b1fd600e4720781f0' +sha512sums=('f3c1096d8065dd7a26381efdc07f0b0f977bed697659ed5cbc9dd7733ef79f14608fd163d7f33d8f98e9543f8a73778f4385edb07911ca13f60a4711d7ece517' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c' 'fcedc29784ba5ea15150d639a66b8bf2b13f48d6db04f9e2bebb628a6235f71f6641d8b8fe5354d9484012783c0fbd485676a4a4010ed8369ecf7ee74c5ff382') From f5b42f63a38242ba4f846553c8639e0a2fd6a7a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 25 Feb 2025 21:37:00 +0100 Subject: [PATCH 950/971] upgpkg: sierra-breeze-enhanced 2.1.0-1 upstream release --- sierra-breeze-enhanced/.SRCINFO | 9 +++++---- sierra-breeze-enhanced/PKGBUILD | 10 +++++----- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/sierra-breeze-enhanced/.SRCINFO b/sierra-breeze-enhanced/.SRCINFO index 193b7aa..fb6a89f 100644 --- a/sierra-breeze-enhanced/.SRCINFO +++ b/sierra-breeze-enhanced/.SRCINFO @@ -1,14 +1,15 @@ pkgbase = sierra-breeze-enhanced pkgdesc = A kwin decoration with support for transparency, rounded corners, multiple titlebar button presets and more - pkgver = 2.0.1 + pkgver = 2.1.0 pkgrel = 1 url = https://github.com/kupiqu/sierrabreezeenhanced arch = x86_64 license = GPL-3.0-or-later makedepends = cmake makedepends = extra-cmake-modules - depends = kwin - source = https://github.com/kupiqu/sierrabreezeenhanced/archive/V2.0.1/sierra-breeze-enhanced-V2.0.1.tar.gz - sha512sums = 1c7f55e979c854135a4c6e21d9838df8de0b7dd0ee252f100c8b622e72224d19bf8e06318ad43367112f6c3422ac5ac44242b74635cce5e96107c1ea447ce838 + depends = kwin>=6.3 + depends = qt6-base>=6.8 + source = https://github.com/kupiqu/sierrabreezeenhanced/archive/V.2.1.0/sierra-breeze-enhanced-V.2.1.0.tar.gz + sha512sums = 5e396f3663e91bd94a82f2fdcd7bc5bd75b14b6ad6a8cfc9afaacd4d8795da1219f90f1ee4f343f506f87e17a4aa92a1408fbc6bbfa733506b9eafdea22375a3 pkgname = sierra-breeze-enhanced diff --git a/sierra-breeze-enhanced/PKGBUILD b/sierra-breeze-enhanced/PKGBUILD index ba740c7..3932ea6 100644 --- a/sierra-breeze-enhanced/PKGBUILD +++ b/sierra-breeze-enhanced/PKGBUILD @@ -3,19 +3,19 @@ pkgname=sierra-breeze-enhanced _pkgname=SierraBreezeEnhanced -pkgver=2.0.1 +pkgver=2.1.0 pkgrel=1 pkgdesc="A kwin decoration with support for transparency, rounded corners, multiple titlebar button presets and more" arch=('x86_64') url="https://github.com/kupiqu/${_pkgname,,}" license=('GPL-3.0-or-later') -depends=('kwin') +depends=('kwin>=6.3' 'qt6-base>=6.8') makedepends=('cmake' 'extra-cmake-modules') -source=("${url}/archive/V${pkgver}/${pkgname}-V${pkgver}.tar.gz") -sha512sums=('1c7f55e979c854135a4c6e21d9838df8de0b7dd0ee252f100c8b622e72224d19bf8e06318ad43367112f6c3422ac5ac44242b74635cce5e96107c1ea447ce838') +source=("${url}/archive/V.${pkgver}/${pkgname}-V.${pkgver}.tar.gz") +sha512sums=('5e396f3663e91bd94a82f2fdcd7bc5bd75b14b6ad6a8cfc9afaacd4d8795da1219f90f1ee4f343f506f87e17a4aa92a1408fbc6bbfa733506b9eafdea22375a3') build() { - cmake -B build -S "${_pkgname}-${pkgver}" \ + cmake -B build -S "${_pkgname}-V.${pkgver}" \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_BUILD_TYPE=Release \ -DKDE_INSTALL_LIBDIR=lib \ From b2556caa9c47666caa2ac80d66ee8d54555441e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 25 Feb 2025 21:40:45 +0100 Subject: [PATCH 951/971] upgpkg: discord-electron 0.0.87-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index c120155..a0794ea 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v34) for increased security and performance - pkgver = 0.0.86 + pkgver = 0.0.87 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.86/discord-0.0.86.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.87/discord-0.0.87.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = f3c1096d8065dd7a26381efdc07f0b0f977bed697659ed5cbc9dd7733ef79f14608fd163d7f33d8f98e9543f8a73778f4385edb07911ca13f60a4711d7ece517 + sha512sums = 7ad746d33daf4ef654f31ff485a93e81dfb9e6b850f09aac88e63fd30ceb7e6c3c2871118ba310a8032f5915a5a26b944059c6e348d219f2b1f4eb88ea1ef4f7 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index e327151..c07b617 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.86 +pkgver=0.0.87 pkgrel=1 _electronver=34 _electronname="electron${_electronver}" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('f3c1096d8065dd7a26381efdc07f0b0f977bed697659ed5cbc9dd7733ef79f14608fd163d7f33d8f98e9543f8a73778f4385edb07911ca13f60a4711d7ece517' +sha512sums=('7ad746d33daf4ef654f31ff485a93e81dfb9e6b850f09aac88e63fd30ceb7e6c3c2871118ba310a8032f5915a5a26b944059c6e348d219f2b1f4eb88ea1ef4f7' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c') From 997a1f89033ba9c8796b8bae2a911609256d6e87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 25 Feb 2025 21:40:50 +0100 Subject: [PATCH 952/971] upgpkg: discord-electron-openasar 0.0.87+833-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index c23254b..0f5cf97 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v34) for increased security and performance - pkgver = 0.0.86+833 + pkgver = 0.0.87+833 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.86/discord-0.0.86.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.87/discord-0.0.87.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=4ed9e52d42501927b60354fcc456da50ed41cde2 - sha512sums = f3c1096d8065dd7a26381efdc07f0b0f977bed697659ed5cbc9dd7733ef79f14608fd163d7f33d8f98e9543f8a73778f4385edb07911ca13f60a4711d7ece517 + sha512sums = 7ad746d33daf4ef654f31ff485a93e81dfb9e6b850f09aac88e63fd30ceb7e6c3c2871118ba310a8032f5915a5a26b944059c6e348d219f2b1f4eb88ea1ef4f7 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c sha512sums = fcedc29784ba5ea15150d639a66b8bf2b13f48d6db04f9e2bebb628a6235f71f6641d8b8fe5354d9484012783c0fbd485676a4a4010ed8369ecf7ee74c5ff382 diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index a9a82a8..df0f2ab 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.86+833 +pkgver=0.0.87+833 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=34 @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=4ed9e52d42501927b60354fcc456da50ed41cde2") -sha512sums=('f3c1096d8065dd7a26381efdc07f0b0f977bed697659ed5cbc9dd7733ef79f14608fd163d7f33d8f98e9543f8a73778f4385edb07911ca13f60a4711d7ece517' +sha512sums=('7ad746d33daf4ef654f31ff485a93e81dfb9e6b850f09aac88e63fd30ceb7e6c3c2871118ba310a8032f5915a5a26b944059c6e348d219f2b1f4eb88ea1ef4f7' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c' 'fcedc29784ba5ea15150d639a66b8bf2b13f48d6db04f9e2bebb628a6235f71f6641d8b8fe5354d9484012783c0fbd485676a4a4010ed8369ecf7ee74c5ff382') From a59792b986c70de663dabd738091fbe7c17495ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 26 Feb 2025 19:42:15 +0100 Subject: [PATCH 953/971] upgpkg: discord-electron-openasar 0.0.87+834-1 Update to latest OpenAsar commit (that also didn't get a release) --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 0f5cf97..3bcb0f5 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v34) for increased security and performance - pkgver = 0.0.87+833 + pkgver = 0.0.87+834 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -24,10 +24,10 @@ pkgbase = discord-electron-openasar source = https://dl.discordapp.net/apps/linux/0.0.87/discord-0.0.87.tar.gz source = discord-launcher.sh source = krisp-patcher.py - source = git+https://github.com/goosemod/openasar.git#commit=4ed9e52d42501927b60354fcc456da50ed41cde2 + source = git+https://github.com/goosemod/openasar.git#commit=e88eebf440866a06f3eca3b4fe2a8cc07818ee61 sha512sums = 7ad746d33daf4ef654f31ff485a93e81dfb9e6b850f09aac88e63fd30ceb7e6c3c2871118ba310a8032f5915a5a26b944059c6e348d219f2b1f4eb88ea1ef4f7 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c - sha512sums = fcedc29784ba5ea15150d639a66b8bf2b13f48d6db04f9e2bebb628a6235f71f6641d8b8fe5354d9484012783c0fbd485676a4a4010ed8369ecf7ee74c5ff382 + sha512sums = fc1f6b6d9d306dc1ea0d8c0cc55982eb3f89c17a82ab9af8553c21e034d25367db406edb271177a2ca1dc4e9854074726d27a97930116abb2e193afa3831530f pkgname = discord-electron-openasar diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index df0f2ab..c9ac6a8 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.87+833 +pkgver=0.0.87+834 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=34 @@ -27,11 +27,11 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py - "git+https://github.com/goosemod/openasar.git#commit=4ed9e52d42501927b60354fcc456da50ed41cde2") + "git+https://github.com/goosemod/openasar.git#commit=e88eebf440866a06f3eca3b4fe2a8cc07818ee61") sha512sums=('7ad746d33daf4ef654f31ff485a93e81dfb9e6b850f09aac88e63fd30ceb7e6c3c2871118ba310a8032f5915a5a26b944059c6e348d219f2b1f4eb88ea1ef4f7' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c' - 'fcedc29784ba5ea15150d639a66b8bf2b13f48d6db04f9e2bebb628a6235f71f6641d8b8fe5354d9484012783c0fbd485676a4a4010ed8369ecf7ee74c5ff382') + 'fc1f6b6d9d306dc1ea0d8c0cc55982eb3f89c17a82ab9af8553c21e034d25367db406edb271177a2ca1dc4e9854074726d27a97930116abb2e193afa3831530f') # just in case I get the version wrong pkgver() { From d40d8c672cbff58f660a04fb160386a84ab882bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 26 Feb 2025 19:48:29 +0100 Subject: [PATCH 954/971] upgpkg: sublime-text-dev 4.4194-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 971cf7a..f91d3b2 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4191 + pkgver = 4.4194 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -13,9 +13,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime-text-dev.sh sha512sums = ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9 - source_x86_64 = sublime_text_dev_4_4191_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4191_x64.tar.xz - sha512sums_x86_64 = 4cf6a28120f4f88bd8746dc7acda2c4fca74b6943094e03c80011a56a596ef29bad01f585dfd4ad48366891af3a70b7c2096bafc10ec6dfa1105beb3a24c3057 - source_aarch64 = sublime_text_dev_4_4191_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4191_arm64.tar.xz - sha512sums_aarch64 = 2a336962f6d5f773de20e5e07fb5a5c3be49152f1616c6e89fa70f5511a975830d6d5b34b8069c02240bd0e98df9874b0eb83d7d097fd32468ecf4c976752854 + source_x86_64 = sublime_text_dev_4_4194_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4194_x64.tar.xz + sha512sums_x86_64 = 4df299ef4a4d7fa27af10b0e7a1ee6da455df91765ec1f706154a73d6508eeaea23855803401acb60e5e794920db1025036d3c493ae51c5fc735cf71ea37f54c + source_aarch64 = sublime_text_dev_4_4194_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4194_arm64.tar.xz + sha512sums_aarch64 = 876f8193171cf596de7e534b2eaf468c8dc228ccc6565cc3f26f416c020e6c80d7ce36abec68dcc601a5e98ca16f523f06c1e7e899f1a7f6eff8624dbb558492 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index ca8cc08..954e6fd 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4191 +pkgver=4.4194 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -19,8 +19,8 @@ source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://down source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha512sums=('ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9') -sha512sums_x86_64=('4cf6a28120f4f88bd8746dc7acda2c4fca74b6943094e03c80011a56a596ef29bad01f585dfd4ad48366891af3a70b7c2096bafc10ec6dfa1105beb3a24c3057') -sha512sums_aarch64=('2a336962f6d5f773de20e5e07fb5a5c3be49152f1616c6e89fa70f5511a975830d6d5b34b8069c02240bd0e98df9874b0eb83d7d097fd32468ecf4c976752854') +sha512sums_x86_64=('4df299ef4a4d7fa27af10b0e7a1ee6da455df91765ec1f706154a73d6508eeaea23855803401acb60e5e794920db1025036d3c493ae51c5fc735cf71ea37f54c') +sha512sums_aarch64=('876f8193171cf596de7e534b2eaf468c8dc228ccc6565cc3f26f416c020e6c80d7ce36abec68dcc601a5e98ca16f523f06c1e7e899f1a7f6eff8624dbb558492') prepare() { sed -i -e "s|@ST_PATH@|/opt/sublime_text|g" "${pkgname}.sh" From 77c27d6d32ce1a4532231f785937940cf1d5f635 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 4 Mar 2025 21:32:12 +0100 Subject: [PATCH 955/971] upgpkg: sublime-text-dev 4.4195-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index f91d3b2..370aa25 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4194 + pkgver = 4.4195 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -13,9 +13,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime-text-dev.sh sha512sums = ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9 - source_x86_64 = sublime_text_dev_4_4194_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4194_x64.tar.xz - sha512sums_x86_64 = 4df299ef4a4d7fa27af10b0e7a1ee6da455df91765ec1f706154a73d6508eeaea23855803401acb60e5e794920db1025036d3c493ae51c5fc735cf71ea37f54c - source_aarch64 = sublime_text_dev_4_4194_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4194_arm64.tar.xz - sha512sums_aarch64 = 876f8193171cf596de7e534b2eaf468c8dc228ccc6565cc3f26f416c020e6c80d7ce36abec68dcc601a5e98ca16f523f06c1e7e899f1a7f6eff8624dbb558492 + source_x86_64 = sublime_text_dev_4_4195_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4195_x64.tar.xz + sha512sums_x86_64 = 9bf52cf5ddf454b253d5abae6ed426265467b062520833c3e5ec5605ed9b30512391fc2b7ff17f9cd548df5ff1aedc6a702d80b1a6b1e6ade15552a194de9690 + source_aarch64 = sublime_text_dev_4_4195_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4195_arm64.tar.xz + sha512sums_aarch64 = 4bc840445186090fbeed2bbfe2b7333e0d8650daba2b02140ace05fe1291747545ee4abc8f7c799e5c5a79b7abcb8a808d4526ade0cd9d4daacbc09e86237490 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 954e6fd..6d65215 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4194 +pkgver=4.4195 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -19,8 +19,8 @@ source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://down source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha512sums=('ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9') -sha512sums_x86_64=('4df299ef4a4d7fa27af10b0e7a1ee6da455df91765ec1f706154a73d6508eeaea23855803401acb60e5e794920db1025036d3c493ae51c5fc735cf71ea37f54c') -sha512sums_aarch64=('876f8193171cf596de7e534b2eaf468c8dc228ccc6565cc3f26f416c020e6c80d7ce36abec68dcc601a5e98ca16f523f06c1e7e899f1a7f6eff8624dbb558492') +sha512sums_x86_64=('9bf52cf5ddf454b253d5abae6ed426265467b062520833c3e5ec5605ed9b30512391fc2b7ff17f9cd548df5ff1aedc6a702d80b1a6b1e6ade15552a194de9690') +sha512sums_aarch64=('4bc840445186090fbeed2bbfe2b7333e0d8650daba2b02140ace05fe1291747545ee4abc8f7c799e5c5a79b7abcb8a808d4526ade0cd9d4daacbc09e86237490') prepare() { sed -i -e "s|@ST_PATH@|/opt/sublime_text|g" "${pkgname}.sh" From 8cdcdaf0f35d783dda4ef5024017bc785265e739 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 11 Mar 2025 20:44:53 +0100 Subject: [PATCH 956/971] Add pacman.conf --- pacman.conf | 105 ++++++++++++++++++++++++++++++++++++++++++++++ prepare-chroot.sh | 2 +- 2 files changed, 106 insertions(+), 1 deletion(-) create mode 100644 pacman.conf diff --git a/pacman.conf b/pacman.conf new file mode 100644 index 0000000..691344a --- /dev/null +++ b/pacman.conf @@ -0,0 +1,105 @@ +# +# /etc/pacman.conf +# +# See the pacman.conf(5) manpage for option and repository directives + +# +# GENERAL OPTIONS +# +[options] +# The following paths are commented out with their default values listed. +# If you wish to use different paths, uncomment and update the paths. +#RootDir = / +#DBPath = /var/lib/pacman/ +#CacheDir = /var/cache/pacman/pkg/ +#LogFile = /var/log/pacman.log +#GPGDir = /etc/pacman.d/gnupg/ +#HookDir = /etc/pacman.d/hooks/ +HoldPkg = pacman glibc +#XferCommand = /usr/bin/curl -L -C - -f -o %o %u +#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u +#CleanMethod = KeepInstalled +Architecture = auto + +# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup +#IgnorePkg = +#IgnoreGroup = + +#NoUpgrade = +#NoExtract = + +# Misc options +#UseSyslog +#Color +#NoProgressBar +CheckSpace +#VerbosePkgLists +ParallelDownloads = 5 +DownloadUser = alpm +#DisableSandbox + +# By default, pacman accepts packages signed by keys that its local keyring +# trusts (see pacman-key and its man page), as well as unsigned packages. +SigLevel = Required DatabaseOptional +LocalFileSigLevel = Optional +#RemoteFileSigLevel = Required + +# NOTE: You must run `pacman-key --init` before first using pacman; the local +# keyring can then be populated with the keys of all official Arch Linux +# packagers with `pacman-key --populate archlinux`. + +# +# REPOSITORIES +# - can be defined here or included from another file +# - pacman will search repositories in the order defined here +# - local/custom mirrors can be added here or in separate files +# - repositories listed first will take precedence when packages +# have identical names, regardless of version number +# - URLs will have $repo replaced by the name of the current repo +# - URLs will have $arch replaced by the name of the architecture +# +# Repository entries are of the format: +# [repo-name] +# Server = ServerName +# Include = IncludePath +# +# The header [repo-name] is crucial - it must be present and +# uncommented to enable the repo. +# + +# The testing repositories are disabled by default. To enable, uncomment the +# repo name header and Include lines. You can add preferred servers immediately +# after the header, and they will be used before the default mirrors. + +#[core-testing] +#Server = https://mirror.sunred.org/archlinux/$repo/os/$arch +#Include = /etc/pacman.d/mirrorlist + +[core] +Server = https://mirror.sunred.org/archlinux/$repo/os/$arch +Include = /etc/pacman.d/mirrorlist + +#[extra-testing] +#Server = https://mirror.sunred.org/archlinux/$repo/os/$arch +#Include = /etc/pacman.d/mirrorlist + +[extra] +Server = https://mirror.sunred.org/archlinux/$repo/os/$arch +Include = /etc/pacman.d/mirrorlist + +# If you want to run 32 bit applications on your x86_64 system, +# enable the multilib repositories as required here. + +#[multilib-testing] +#Server = https://mirror.sunred.org/archlinux/$repo/os/$arch +#Include = /etc/pacman.d/mirrorlist + +[multilib] +Server = https://mirror.sunred.org/archlinux/$repo/os/$arch +Include = /etc/pacman.d/mirrorlist + +# An example of a custom package repository. See the pacman manpage for +# tips on creating your own repositories. +#[custom] +#SigLevel = Optional TrustAll +#Server = file:///home/custompkgs diff --git a/prepare-chroot.sh b/prepare-chroot.sh index 029b167..6a38479 100755 --- a/prepare-chroot.sh +++ b/prepare-chroot.sh @@ -4,7 +4,7 @@ sudo -v || exit 1 -[ ! -d "$CHROOT/root" ] && sudo mkarchroot -M "$(dirname "$0")"/makepkg.conf "$CHROOT/root" base-devel +[ ! -d "$CHROOT/root" ] && sudo mkarchroot -C "$(dirname "$0")"/pacman.conf -M "$(dirname "$0")"/makepkg.conf "$CHROOT/root" base-devel arch-nspawn "$CHROOT/root" pacman -Syu mkdir -p -m 0755 "$CHROOT/$USER" From 38f23ac4f617ebf79cb4df00dcfea4c4d3fc64b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 11 Mar 2025 20:49:04 +0100 Subject: [PATCH 957/971] upgpkg: gvisor-bin 20250304.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index 5067507..63e1052 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20250203.0 + pkgver = 20250304.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20250203.0::https://storage.googleapis.com/gvisor/releases/release/20250203.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20250203.0::https://storage.googleapis.com/gvisor/releases/release/20250203.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = 200b6a62e3ac40f41363f090c930a8c6bedf40e482e790e60f8d05430a2b92bf76f7b8b0ebe9555b4302256b0e7d52276747d8ce177c555891b09936ed1a9513 - sha512sums_x86_64 = de0ecb509a9c0f2e66912868e1f1fe85502a153cfddf460ff3709506cdd459b375f912a87060742a5cc97f8e830d7893175c88c2a7aba0cf35c9af8236a94abe - source_aarch64 = runsc-aarch64-20250203.0::https://storage.googleapis.com/gvisor/releases/release/20250203.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20250203.0::https://storage.googleapis.com/gvisor/releases/release/20250203.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 4b62e91e1c8709be1aacee8fdcea60fd8a0dfb36faff5ad2c8b904cdff3f0e04d06ab046c4a29802e4a545aec8f7966b074adfce2cf17b70faff07001e567384 - sha512sums_aarch64 = 0f0f83b7db96b188b6eb26e64f8ccf1324f02b2350001c1852fdf36f1ea4f0407e01c35743a8d5337ffd34182aeaa536cb809ecbeb7f06d627ab8e242a6006ad + source_x86_64 = runsc-x86_64-20250304.0::https://storage.googleapis.com/gvisor/releases/release/20250304.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20250304.0::https://storage.googleapis.com/gvisor/releases/release/20250304.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = b43e386a95dd91f6c5af72c303be8d37b0e0fef60f199916b21760c4e3582865c483bb86d67d60e68342f7512da73bfaa270ff06c5421912ba8c84f272ade48d + sha512sums_x86_64 = 124be185c421f4620417f21e3a9c50569b6310aeb296dc242fa98ceb403f2990aac77d507690fcdd7d200a861f7c95ee44cfbaa6c59155b23ff66a9dbf25994f + source_aarch64 = runsc-aarch64-20250304.0::https://storage.googleapis.com/gvisor/releases/release/20250304.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20250304.0::https://storage.googleapis.com/gvisor/releases/release/20250304.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = 3e069ef4a4879747ca044b23babbc231367f5dcb36f2755e297d9bef8b8a649f6a05495b43f662a636a92d81312d0eb572663e34f164010b23dda7a707bee3d6 + sha512sums_aarch64 = 3e663aa9fb30fc144ffc02eff1e2104ff9e622dadbba73176933ecacf94372d88dea15e18bbdfb9233224bbb03cdb7fdaaa1ace02c1a7feb9c07b0c0571fab28 pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index 5d0db3f..ad022b6 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20250203.0 +pkgver=20250304.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('200b6a62e3ac40f41363f090c930a8c6bedf40e482e790e60f8d05430a2b92bf76f7b8b0ebe9555b4302256b0e7d52276747d8ce177c555891b09936ed1a9513' - 'de0ecb509a9c0f2e66912868e1f1fe85502a153cfddf460ff3709506cdd459b375f912a87060742a5cc97f8e830d7893175c88c2a7aba0cf35c9af8236a94abe') -sha512sums_aarch64=('4b62e91e1c8709be1aacee8fdcea60fd8a0dfb36faff5ad2c8b904cdff3f0e04d06ab046c4a29802e4a545aec8f7966b074adfce2cf17b70faff07001e567384' - '0f0f83b7db96b188b6eb26e64f8ccf1324f02b2350001c1852fdf36f1ea4f0407e01c35743a8d5337ffd34182aeaa536cb809ecbeb7f06d627ab8e242a6006ad') +sha512sums_x86_64=('b43e386a95dd91f6c5af72c303be8d37b0e0fef60f199916b21760c4e3582865c483bb86d67d60e68342f7512da73bfaa270ff06c5421912ba8c84f272ade48d' + '124be185c421f4620417f21e3a9c50569b6310aeb296dc242fa98ceb403f2990aac77d507690fcdd7d200a861f7c95ee44cfbaa6c59155b23ff66a9dbf25994f') +sha512sums_aarch64=('3e069ef4a4879747ca044b23babbc231367f5dcb36f2755e297d9bef8b8a649f6a05495b43f662a636a92d81312d0eb572663e34f164010b23dda7a707bee3d6' + '3e663aa9fb30fc144ffc02eff1e2104ff9e622dadbba73176933ecacf94372d88dea15e18bbdfb9233224bbb03cdb7fdaaa1ace02c1a7feb9c07b0c0571fab28') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From aaf654f166e7a5a27adb5d5ac1b51d7ca1b5f36f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 11 Mar 2025 20:49:23 +0100 Subject: [PATCH 958/971] upgpkg: gvisor-git 20250304.0-1 upstream release --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index 128dd6f..2a999cc 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20250203.0 + pkgver = 20250304.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index 6e82d85..4592f62 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20250203.0 +pkgver=20250304.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From 5428c463137069236ac3a0a7a041553cc967899b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 11 Mar 2025 20:49:55 +0100 Subject: [PATCH 959/971] upgpkg: discord-electron 0.0.88-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index a0794ea..4bcf582 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v34) for increased security and performance - pkgver = 0.0.87 + pkgver = 0.0.88 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.87/discord-0.0.87.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.88/discord-0.0.88.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = 7ad746d33daf4ef654f31ff485a93e81dfb9e6b850f09aac88e63fd30ceb7e6c3c2871118ba310a8032f5915a5a26b944059c6e348d219f2b1f4eb88ea1ef4f7 + sha512sums = e15beb272ed7856167bc963810799dc2637cd765a551f576498e6c380d1840635303c0d19b1130fc1e7269053cd66b5e5d88182364b97bbdbd83b67507cf980f sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index c07b617..b0c3386 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.87 +pkgver=0.0.88 pkgrel=1 _electronver=34 _electronname="electron${_electronver}" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('7ad746d33daf4ef654f31ff485a93e81dfb9e6b850f09aac88e63fd30ceb7e6c3c2871118ba310a8032f5915a5a26b944059c6e348d219f2b1f4eb88ea1ef4f7' +sha512sums=('e15beb272ed7856167bc963810799dc2637cd765a551f576498e6c380d1840635303c0d19b1130fc1e7269053cd66b5e5d88182364b97bbdbd83b67507cf980f' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c') From a5fc86992548b9ec5ec245aebbbda40a69ddda1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Tue, 11 Mar 2025 20:50:02 +0100 Subject: [PATCH 960/971] upgpkg: discord-electron-openasar 0.0.88+834-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 3bcb0f5..f68e32a 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v34) for increased security and performance - pkgver = 0.0.87+834 + pkgver = 0.0.88+834 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.87/discord-0.0.87.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.88/discord-0.0.88.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=e88eebf440866a06f3eca3b4fe2a8cc07818ee61 - sha512sums = 7ad746d33daf4ef654f31ff485a93e81dfb9e6b850f09aac88e63fd30ceb7e6c3c2871118ba310a8032f5915a5a26b944059c6e348d219f2b1f4eb88ea1ef4f7 + sha512sums = e15beb272ed7856167bc963810799dc2637cd765a551f576498e6c380d1840635303c0d19b1130fc1e7269053cd66b5e5d88182364b97bbdbd83b67507cf980f sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c sha512sums = fc1f6b6d9d306dc1ea0d8c0cc55982eb3f89c17a82ab9af8553c21e034d25367db406edb271177a2ca1dc4e9854074726d27a97930116abb2e193afa3831530f diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index c9ac6a8..87d3611 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.87+834 +pkgver=0.0.88+834 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=34 @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=e88eebf440866a06f3eca3b4fe2a8cc07818ee61") -sha512sums=('7ad746d33daf4ef654f31ff485a93e81dfb9e6b850f09aac88e63fd30ceb7e6c3c2871118ba310a8032f5915a5a26b944059c6e348d219f2b1f4eb88ea1ef4f7' +sha512sums=('e15beb272ed7856167bc963810799dc2637cd765a551f576498e6c380d1840635303c0d19b1130fc1e7269053cd66b5e5d88182364b97bbdbd83b67507cf980f' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c' 'fc1f6b6d9d306dc1ea0d8c0cc55982eb3f89c17a82ab9af8553c21e034d25367db406edb271177a2ca1dc4e9854074726d27a97930116abb2e193afa3831530f') From 230c9b7b9418456aa12e7783227cd330b2170f2c Mon Sep 17 00:00:00 2001 From: Manuel Date: Tue, 11 Mar 2025 21:15:22 +0100 Subject: [PATCH 961/971] Update makepkg.conf * Include latest upstream changes --- makepkg.conf | 47 ++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 40 insertions(+), 7 deletions(-) diff --git a/makepkg.conf b/makepkg.conf index eb74a7c..ee6b4b4 100644 --- a/makepkg.conf +++ b/makepkg.conf @@ -45,15 +45,12 @@ CXXFLAGS="$CFLAGS -Wp,-D_GLIBCXX_ASSERTIONS" LDFLAGS="-Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now \ -Wl,-z,pack-relative-relocs" LTOFLAGS="-flto=auto -falign-functions=32" - -RUSTFLAGS="-Copt-level=3 -Ctarget-cpu=x86-64-v3 -Clink-arg=-z -Clink-arg=pack-relative-relocs -Ccodegen-units=1" #-- Make Flags: change this for DistCC/SMP systems MAKEFLAGS="-j $(nproc)" #-- Debugging flags DEBUG_CFLAGS="-g" DEBUG_CXXFLAGS="$DEBUG_CFLAGS" -DEBUG_RUSTFLAGS="-C debuginfo=2" ######################################################################### # BUILD ENVIRONMENT @@ -68,7 +65,7 @@ DEBUG_RUSTFLAGS="-C debuginfo=2" #-- check: Run the check() function if present in the PKGBUILD #-- sign: Generate PGP signature file # -BUILDENV=(!distcc color !ccache check !sign) +BUILDENV=(!distcc !color !ccache check !sign) # #-- If using DistCC, your MAKEFLAGS will also need modification. In addition, #-- specify a space-delimited list of hosts running in the DistCC cluster. @@ -165,10 +162,46 @@ SRCEXT='.src.tar.gz' #-- Command used to run pacman as root, instead of trying sudo and su #PACMAN_AUTH=() # vim: set ft=sh ts=2 sw=2 et: +#!/hint/bash +# +# /etc/makepkg.conf.d/fortran.conf +# + +######################################################################### +# FORTRAN LANGUAGE SUPPORT +######################################################################### + +# Flags used for the Fortran compiler, similar in spirit to CFLAGS. Read +# linkman:gfortran[1] for more details on the available flags. +FFLAGS="-O3 -pipe -march=x86-64-v3" + +FCFLAGS="$FFLAGS" + +# Additional compiler flags appended to `FFLAGS` and `FCFLAGS` for use in debugging. Usually +# this would include: ``-g''. Read linkman:gfortran[1] for more details on the wide +# variety of compiler flags available. +#DEBUG_FFLAGS="-g" +#!/hint/bash +# shellcheck disable=2034 + +# +# /etc/makepkg.conf.d/rust.conf +# + +######################################################################### +# RUST LANGUAGE SUPPORT +######################################################################### + +# Flags used for the Rust compiler, similar in spirit to CFLAGS. Read +# linkman:rustc[1] for more details on the available flags. +RUSTFLAGS="-Cforce-frame-pointers=yes -Copt-level=3 -Ctarget-cpu=x86-64-v3 -Clink-arg=-z -Clink-arg=pack-relative-relocs -Ccodegen-units=1" + +# Additional compiler flags appended to `RUSTFLAGS` for use in debugging. +# Usually this would include: ``-C debuginfo=2''. Read linkman:rustc[1] for +# more details on the available flags. +DEBUG_RUSTFLAGS="-C debuginfo=2" -export KCPPFLAGS=" -march=x86-64-v3 -O3" -export FFLAGS=$CFLAGS export KCFLAGS=" -march=x86-64-v3 -O3" -export FCFLAGS=$CFLAGS export GOAMD64=v3 +export KCPPFLAGS=" -march=x86-64-v3 -O3" export CARGO_PROFILE_RELEASE_LTO=fat From 4cbcdd1e71d89f8bfa0694882fcfac220c183ea5 Mon Sep 17 00:00:00 2001 From: Manuel Date: Fri, 14 Mar 2025 19:13:53 +0100 Subject: [PATCH 962/971] upgpkg: sublime-text-dev 4.4196-1 upstream release --- sublime-text-dev/.SRCINFO | 10 +++++----- sublime-text-dev/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sublime-text-dev/.SRCINFO b/sublime-text-dev/.SRCINFO index 370aa25..413652b 100644 --- a/sublime-text-dev/.SRCINFO +++ b/sublime-text-dev/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = sublime-text-dev pkgdesc = Sophisticated text editor for code, html and prose - dev build - pkgver = 4.4195 + pkgver = 4.4196 pkgrel = 1 url = https://www.sublimetext.com/dev install = sublime-text-dev.install @@ -13,9 +13,9 @@ pkgbase = sublime-text-dev conflicts = sublime-text source = sublime-text-dev.sh sha512sums = ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9 - source_x86_64 = sublime_text_dev_4_4195_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4195_x64.tar.xz - sha512sums_x86_64 = 9bf52cf5ddf454b253d5abae6ed426265467b062520833c3e5ec5605ed9b30512391fc2b7ff17f9cd548df5ff1aedc6a702d80b1a6b1e6ade15552a194de9690 - source_aarch64 = sublime_text_dev_4_4195_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4195_arm64.tar.xz - sha512sums_aarch64 = 4bc840445186090fbeed2bbfe2b7333e0d8650daba2b02140ace05fe1291747545ee4abc8f7c799e5c5a79b7abcb8a808d4526ade0cd9d4daacbc09e86237490 + source_x86_64 = sublime_text_dev_4_4196_1_x64.tar.xz::https://download.sublimetext.com/sublime_text_build_4196_x64.tar.xz + sha512sums_x86_64 = dc85c20e26f4c6da577d44ab7c50fdaf476bbe648f286fe9be2b465fd69b14deef1478d103678708f29ae0b1e0a8212b1389ec906fd431f1e4e74ffbad27b42d + source_aarch64 = sublime_text_dev_4_4196_1_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_4196_arm64.tar.xz + sha512sums_aarch64 = ac9e9bcb639c5b12d46784af239c2ed662829e039d08a864fbe8db54b7e23effdffaf4db36321ed40e2d297aad41d53bedf02824ade4aa833986d9f7605fff42 pkgname = sublime-text-dev diff --git a/sublime-text-dev/PKGBUILD b/sublime-text-dev/PKGBUILD index 6d65215..1ca7886 100644 --- a/sublime-text-dev/PKGBUILD +++ b/sublime-text-dev/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: realitygaps pkgname=sublime-text-dev -pkgver=4.4195 +pkgver=4.4196 pkgrel=1 pkgdesc='Sophisticated text editor for code, html and prose - dev build' arch=('x86_64' 'aarch64') @@ -19,8 +19,8 @@ source_x86_64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_x64.tar.xz::https://down source_aarch64=("${pkgname//-/_}_${pkgver/./_}_${pkgrel}_arm64.tar.xz::https://download.sublimetext.com/sublime_text_build_${pkgver:2}_arm64.tar.xz") sha512sums=('ac56e9b7dddaebb3d222795cfc644109c93cc3f79695b8f9ee56022c74fe04a1134dd54cab07c74ff1f96b783cb3dbc026c16095552f1d2dd83115ea274dc2e9') -sha512sums_x86_64=('9bf52cf5ddf454b253d5abae6ed426265467b062520833c3e5ec5605ed9b30512391fc2b7ff17f9cd548df5ff1aedc6a702d80b1a6b1e6ade15552a194de9690') -sha512sums_aarch64=('4bc840445186090fbeed2bbfe2b7333e0d8650daba2b02140ace05fe1291747545ee4abc8f7c799e5c5a79b7abcb8a808d4526ade0cd9d4daacbc09e86237490') +sha512sums_x86_64=('dc85c20e26f4c6da577d44ab7c50fdaf476bbe648f286fe9be2b465fd69b14deef1478d103678708f29ae0b1e0a8212b1389ec906fd431f1e4e74ffbad27b42d') +sha512sums_aarch64=('ac9e9bcb639c5b12d46784af239c2ed662829e039d08a864fbe8db54b7e23effdffaf4db36321ed40e2d297aad41d53bedf02824ade4aa833986d9f7605fff42') prepare() { sed -i -e "s|@ST_PATH@|/opt/sublime_text|g" "${pkgname}.sh" From 03f109efe5c5e29ed0d31d0764525fe37b61ca4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 24 Mar 2025 21:59:50 +0100 Subject: [PATCH 963/971] upgpkg: discord-electron 0.0.89-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 4bcf582..1cbace4 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v34) for increased security and performance - pkgver = 0.0.88 + pkgver = 0.0.89 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.88/discord-0.0.88.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.89/discord-0.0.89.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = e15beb272ed7856167bc963810799dc2637cd765a551f576498e6c380d1840635303c0d19b1130fc1e7269053cd66b5e5d88182364b97bbdbd83b67507cf980f + sha512sums = 9228824f0407f2876c9f26ef8b3b6b5b2f31808c0efeff685c3930c1826ba9180c0dca22d6934bb17f106ab8b808c20860bcab074874b324fe5ca57d6f2309a0 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index b0c3386..2a57507 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.88 +pkgver=0.0.89 pkgrel=1 _electronver=34 _electronname="electron${_electronver}" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('e15beb272ed7856167bc963810799dc2637cd765a551f576498e6c380d1840635303c0d19b1130fc1e7269053cd66b5e5d88182364b97bbdbd83b67507cf980f' +sha512sums=('9228824f0407f2876c9f26ef8b3b6b5b2f31808c0efeff685c3930c1826ba9180c0dca22d6934bb17f106ab8b808c20860bcab074874b324fe5ca57d6f2309a0' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c') From de842eaab4f83e8b5b1c40205058d28d86e1d20f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 24 Mar 2025 22:00:35 +0100 Subject: [PATCH 964/971] upgpkg: discord-electron-openasar 0.0.89+834-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index f68e32a..51851b6 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v34) for increased security and performance - pkgver = 0.0.88+834 + pkgver = 0.0.89+834 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.88/discord-0.0.88.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.89/discord-0.0.89.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=e88eebf440866a06f3eca3b4fe2a8cc07818ee61 - sha512sums = e15beb272ed7856167bc963810799dc2637cd765a551f576498e6c380d1840635303c0d19b1130fc1e7269053cd66b5e5d88182364b97bbdbd83b67507cf980f + sha512sums = 9228824f0407f2876c9f26ef8b3b6b5b2f31808c0efeff685c3930c1826ba9180c0dca22d6934bb17f106ab8b808c20860bcab074874b324fe5ca57d6f2309a0 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c sha512sums = fc1f6b6d9d306dc1ea0d8c0cc55982eb3f89c17a82ab9af8553c21e034d25367db406edb271177a2ca1dc4e9854074726d27a97930116abb2e193afa3831530f diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 87d3611..33c0659 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.88+834 +pkgver=0.0.89+834 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=34 @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=e88eebf440866a06f3eca3b4fe2a8cc07818ee61") -sha512sums=('e15beb272ed7856167bc963810799dc2637cd765a551f576498e6c380d1840635303c0d19b1130fc1e7269053cd66b5e5d88182364b97bbdbd83b67507cf980f' +sha512sums=('9228824f0407f2876c9f26ef8b3b6b5b2f31808c0efeff685c3930c1826ba9180c0dca22d6934bb17f106ab8b808c20860bcab074874b324fe5ca57d6f2309a0' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c' 'fc1f6b6d9d306dc1ea0d8c0cc55982eb3f89c17a82ab9af8553c21e034d25367db406edb271177a2ca1dc4e9854074726d27a97930116abb2e193afa3831530f') From 088fabd2b3d6d1aa67637fc4ee90b3ced5ec7f72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 31 Mar 2025 21:13:08 +0200 Subject: [PATCH 965/971] upgpkg: discord-electron 0.0.90-1 upstream release --- discord-electron/.SRCINFO | 6 +++--- discord-electron/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index 1cbace4..c7abced 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron pkgdesc = Discord using system provided electron (v34) for increased security and performance - pkgver = 0.0.89 + pkgver = 0.0.90 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.89/discord-0.0.89.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.90/discord-0.0.90.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = 9228824f0407f2876c9f26ef8b3b6b5b2f31808c0efeff685c3930c1826ba9180c0dca22d6934bb17f106ab8b808c20860bcab074874b324fe5ca57d6f2309a0 + sha512sums = d894294b149b1498832da232acb19f5ef67b184468255d284759a07b64319f415fa68d153a482dbfac48081d73d32c61c6437d810366269d0b105fec0dfb8d89 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index 2a57507..d9f54c1 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,6 +1,6 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.89 +pkgver=0.0.90 pkgrel=1 _electronver=34 _electronname="electron${_electronver}" @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('9228824f0407f2876c9f26ef8b3b6b5b2f31808c0efeff685c3930c1826ba9180c0dca22d6934bb17f106ab8b808c20860bcab074874b324fe5ca57d6f2309a0' +sha512sums=('d894294b149b1498832da232acb19f5ef67b184468255d284759a07b64319f415fa68d153a482dbfac48081d73d32c61c6437d810366269d0b105fec0dfb8d89' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c') From 564676fda8a63cb83b8009ca7d2f722f355314f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Mon, 31 Mar 2025 21:13:24 +0200 Subject: [PATCH 966/971] upgpkg: discord-electron-openasar 0.0.90+834-1 upstream release --- discord-electron-openasar/.SRCINFO | 6 +++--- discord-electron-openasar/PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 51851b6..442d76b 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar pkgdesc = Discord packaged with OpenAsar using system provided electron (v34) for increased security and performance - pkgver = 0.0.89+834 + pkgver = 0.0.90+834 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.89/discord-0.0.89.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.90/discord-0.0.90.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=e88eebf440866a06f3eca3b4fe2a8cc07818ee61 - sha512sums = 9228824f0407f2876c9f26ef8b3b6b5b2f31808c0efeff685c3930c1826ba9180c0dca22d6934bb17f106ab8b808c20860bcab074874b324fe5ca57d6f2309a0 + sha512sums = d894294b149b1498832da232acb19f5ef67b184468255d284759a07b64319f415fa68d153a482dbfac48081d73d32c61c6437d810366269d0b105fec0dfb8d89 sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c sha512sums = fc1f6b6d9d306dc1ea0d8c0cc55982eb3f89c17a82ab9af8553c21e034d25367db406edb271177a2ca1dc4e9854074726d27a97930116abb2e193afa3831530f diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 33c0659..63f6fcd 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,7 +2,7 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.89+834 +pkgver=0.0.90+834 _pkgver=${pkgver%%+*} pkgrel=1 _electronver=34 @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=e88eebf440866a06f3eca3b4fe2a8cc07818ee61") -sha512sums=('9228824f0407f2876c9f26ef8b3b6b5b2f31808c0efeff685c3930c1826ba9180c0dca22d6934bb17f106ab8b808c20860bcab074874b324fe5ca57d6f2309a0' +sha512sums=('d894294b149b1498832da232acb19f5ef67b184468255d284759a07b64319f415fa68d153a482dbfac48081d73d32c61c6437d810366269d0b105fec0dfb8d89' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c' 'fc1f6b6d9d306dc1ea0d8c0cc55982eb3f89c17a82ab9af8553c21e034d25367db406edb271177a2ca1dc4e9854074726d27a97930116abb2e193afa3831530f') From 59c063a04f2b562da0e8943b72936b4806907602 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 16 Apr 2025 14:52:01 +0200 Subject: [PATCH 967/971] upgpkg: gvisor-bin 20250407.0-1 upstream release --- gvisor-bin/.SRCINFO | 18 +++++++++--------- gvisor-bin/PKGBUILD | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/gvisor-bin/.SRCINFO b/gvisor-bin/.SRCINFO index 63e1052..d728c4c 100644 --- a/gvisor-bin/.SRCINFO +++ b/gvisor-bin/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-bin pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20250304.0 + pkgver = 20250407.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 @@ -9,13 +9,13 @@ pkgbase = gvisor-bin optdepends = docker: for Docker runtime support provides = gvisor conflicts = gvisor - source_x86_64 = runsc-x86_64-20250304.0::https://storage.googleapis.com/gvisor/releases/release/20250304.0/x86_64/runsc - source_x86_64 = containerd-shim-runsc-v1-x86_64-20250304.0::https://storage.googleapis.com/gvisor/releases/release/20250304.0/x86_64/containerd-shim-runsc-v1 - sha512sums_x86_64 = b43e386a95dd91f6c5af72c303be8d37b0e0fef60f199916b21760c4e3582865c483bb86d67d60e68342f7512da73bfaa270ff06c5421912ba8c84f272ade48d - sha512sums_x86_64 = 124be185c421f4620417f21e3a9c50569b6310aeb296dc242fa98ceb403f2990aac77d507690fcdd7d200a861f7c95ee44cfbaa6c59155b23ff66a9dbf25994f - source_aarch64 = runsc-aarch64-20250304.0::https://storage.googleapis.com/gvisor/releases/release/20250304.0/aarch64/runsc - source_aarch64 = containerd-shim-runsc-v1-aarch64-20250304.0::https://storage.googleapis.com/gvisor/releases/release/20250304.0/aarch64/containerd-shim-runsc-v1 - sha512sums_aarch64 = 3e069ef4a4879747ca044b23babbc231367f5dcb36f2755e297d9bef8b8a649f6a05495b43f662a636a92d81312d0eb572663e34f164010b23dda7a707bee3d6 - sha512sums_aarch64 = 3e663aa9fb30fc144ffc02eff1e2104ff9e622dadbba73176933ecacf94372d88dea15e18bbdfb9233224bbb03cdb7fdaaa1ace02c1a7feb9c07b0c0571fab28 + source_x86_64 = runsc-x86_64-20250407.0::https://storage.googleapis.com/gvisor/releases/release/20250407.0/x86_64/runsc + source_x86_64 = containerd-shim-runsc-v1-x86_64-20250407.0::https://storage.googleapis.com/gvisor/releases/release/20250407.0/x86_64/containerd-shim-runsc-v1 + sha512sums_x86_64 = 097259d6d93548bf669e21cfec5ba6a47081e43f61d22c5d8a8a4c0c209c81ac9c4454162b826f98cec49e047bbdc29c270113ab6db5519ef3e6a90f302fa47b + sha512sums_x86_64 = 09acdc895cea6706ba528939da2e6ddab148dfee56addb0d52d7af74378454f4e05cfd47cbb29ad0569139c49cf298be9d4b94a3c2d28b75c05f713e425746e8 + source_aarch64 = runsc-aarch64-20250407.0::https://storage.googleapis.com/gvisor/releases/release/20250407.0/aarch64/runsc + source_aarch64 = containerd-shim-runsc-v1-aarch64-20250407.0::https://storage.googleapis.com/gvisor/releases/release/20250407.0/aarch64/containerd-shim-runsc-v1 + sha512sums_aarch64 = cb590f72b0fbda45e89a2300e9247f12ff295a8c52653c8cf815c662d3fbbc774f9b915cdd4fad59e30694d8cc8737fe2a1a8186ab5136f7701bd6e6877a1662 + sha512sums_aarch64 = 1c3838e10c905af0cb52697712bf6bd76b94c9e9d3d07a7643cd43dc2f8dab03b4ed4693c117e555e07a158e04ee583b6b1f1cf2fb9705244ffa5fdc4af67248 pkgname = gvisor-bin diff --git a/gvisor-bin/PKGBUILD b/gvisor-bin/PKGBUILD index ad022b6..964c73c 100644 --- a/gvisor-bin/PKGBUILD +++ b/gvisor-bin/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-bin' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20250304.0 +pkgver=20250407.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') @@ -25,10 +25,10 @@ source_aarch64=( "$_pkgbin-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgbin" "$_pkgshim-aarch64-$pkgver::https://storage.googleapis.com/${pkgname%-bin}/releases/release/$pkgver/aarch64/$_pkgshim" ) -sha512sums_x86_64=('b43e386a95dd91f6c5af72c303be8d37b0e0fef60f199916b21760c4e3582865c483bb86d67d60e68342f7512da73bfaa270ff06c5421912ba8c84f272ade48d' - '124be185c421f4620417f21e3a9c50569b6310aeb296dc242fa98ceb403f2990aac77d507690fcdd7d200a861f7c95ee44cfbaa6c59155b23ff66a9dbf25994f') -sha512sums_aarch64=('3e069ef4a4879747ca044b23babbc231367f5dcb36f2755e297d9bef8b8a649f6a05495b43f662a636a92d81312d0eb572663e34f164010b23dda7a707bee3d6' - '3e663aa9fb30fc144ffc02eff1e2104ff9e622dadbba73176933ecacf94372d88dea15e18bbdfb9233224bbb03cdb7fdaaa1ace02c1a7feb9c07b0c0571fab28') +sha512sums_x86_64=('097259d6d93548bf669e21cfec5ba6a47081e43f61d22c5d8a8a4c0c209c81ac9c4454162b826f98cec49e047bbdc29c270113ab6db5519ef3e6a90f302fa47b' + '09acdc895cea6706ba528939da2e6ddab148dfee56addb0d52d7af74378454f4e05cfd47cbb29ad0569139c49cf298be9d4b94a3c2d28b75c05f713e425746e8') +sha512sums_aarch64=('cb590f72b0fbda45e89a2300e9247f12ff295a8c52653c8cf815c662d3fbbc774f9b915cdd4fad59e30694d8cc8737fe2a1a8186ab5136f7701bd6e6877a1662' + '1c3838e10c905af0cb52697712bf6bd76b94c9e9d3d07a7643cd43dc2f8dab03b4ed4693c117e555e07a158e04ee583b6b1f1cf2fb9705244ffa5fdc4af67248') package() { install -Dm 755 "$_pkgbin-$CARCH-$pkgver" "$pkgdir/usr/bin/$_pkgbin" From 2a211ef13bb987a92a4fa8bdcda356958b96de6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 16 Apr 2025 14:52:19 +0200 Subject: [PATCH 968/971] upgpkg: gvisor-git 20250407.0-1 upstream release --- gvisor-git/.SRCINFO | 2 +- gvisor-git/PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gvisor-git/.SRCINFO b/gvisor-git/.SRCINFO index 2a999cc..079efed 100644 --- a/gvisor-git/.SRCINFO +++ b/gvisor-git/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = gvisor-git pkgdesc = OCI container sandbox runtime focused on security, efficiency, and ease of use - pkgver = 20250304.0 + pkgver = 20250407.0 pkgrel = 1 url = https://gvisor.dev arch = x86_64 diff --git a/gvisor-git/PKGBUILD b/gvisor-git/PKGBUILD index 4592f62..a952be1 100644 --- a/gvisor-git/PKGBUILD +++ b/gvisor-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname='gvisor-git' _pkgbin='runsc' _pkgshim='containerd-shim-runsc-v1' -pkgver=20250304.0 +pkgver=20250407.0 pkgrel=1 pkgdesc='OCI container sandbox runtime focused on security, efficiency, and ease of use' arch=('x86_64' 'aarch64') From 2f5d55b0e16971edf3947b573d06c905c56f10a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 16 Apr 2025 14:58:13 +0200 Subject: [PATCH 969/971] upgpkg: sierra-breeze-enhanced 2.1.0-2: Qt 6.9, CMake 4 * Qt 6.9 rebuild * CMake 4 compatibility --- sierra-breeze-enhanced/.SRCINFO | 4 ++-- sierra-breeze-enhanced/PKGBUILD | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/sierra-breeze-enhanced/.SRCINFO b/sierra-breeze-enhanced/.SRCINFO index fb6a89f..67c2d57 100644 --- a/sierra-breeze-enhanced/.SRCINFO +++ b/sierra-breeze-enhanced/.SRCINFO @@ -1,14 +1,14 @@ pkgbase = sierra-breeze-enhanced pkgdesc = A kwin decoration with support for transparency, rounded corners, multiple titlebar button presets and more pkgver = 2.1.0 - pkgrel = 1 + pkgrel = 2 url = https://github.com/kupiqu/sierrabreezeenhanced arch = x86_64 license = GPL-3.0-or-later makedepends = cmake makedepends = extra-cmake-modules depends = kwin>=6.3 - depends = qt6-base>=6.8 + depends = qt6-base>=6.9 source = https://github.com/kupiqu/sierrabreezeenhanced/archive/V.2.1.0/sierra-breeze-enhanced-V.2.1.0.tar.gz sha512sums = 5e396f3663e91bd94a82f2fdcd7bc5bd75b14b6ad6a8cfc9afaacd4d8795da1219f90f1ee4f343f506f87e17a4aa92a1408fbc6bbfa733506b9eafdea22375a3 diff --git a/sierra-breeze-enhanced/PKGBUILD b/sierra-breeze-enhanced/PKGBUILD index 3932ea6..feb040b 100644 --- a/sierra-breeze-enhanced/PKGBUILD +++ b/sierra-breeze-enhanced/PKGBUILD @@ -4,12 +4,12 @@ pkgname=sierra-breeze-enhanced _pkgname=SierraBreezeEnhanced pkgver=2.1.0 -pkgrel=1 +pkgrel=2 pkgdesc="A kwin decoration with support for transparency, rounded corners, multiple titlebar button presets and more" arch=('x86_64') url="https://github.com/kupiqu/${_pkgname,,}" license=('GPL-3.0-or-later') -depends=('kwin>=6.3' 'qt6-base>=6.8') +depends=('kwin>=6.3' 'qt6-base>=6.9') makedepends=('cmake' 'extra-cmake-modules') source=("${url}/archive/V.${pkgver}/${pkgname}-V.${pkgver}.tar.gz") sha512sums=('5e396f3663e91bd94a82f2fdcd7bc5bd75b14b6ad6a8cfc9afaacd4d8795da1219f90f1ee4f343f506f87e17a4aa92a1408fbc6bbfa733506b9eafdea22375a3') @@ -21,6 +21,7 @@ build() { -DKDE_INSTALL_LIBDIR=lib \ -DBUILD_TESTING=OFF \ -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \ + -DCMAKE_POLICY_VERSION_MINIMUM=3.5 \ -Wno-dev } From 5936c345695678a39310ecea7c92e5a001fd2b33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 16 Apr 2025 15:00:42 +0200 Subject: [PATCH 970/971] upgpkg: discord-electron 0.0.91-1 upstream release Update Electron version to 35 --- discord-electron/.SRCINFO | 10 +++++----- discord-electron/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/discord-electron/.SRCINFO b/discord-electron/.SRCINFO index c7abced..e1eaa13 100644 --- a/discord-electron/.SRCINFO +++ b/discord-electron/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron - pkgdesc = Discord using system provided electron (v34) for increased security and performance - pkgver = 0.0.90 + pkgdesc = Discord using system provided electron (v35) for increased security and performance + pkgver = 0.0.91 pkgrel = 1 url = https://discord.com install = discord-electron.install @@ -8,7 +8,7 @@ pkgbase = discord-electron license = custom makedepends = asar makedepends = curl - depends = electron34 + depends = electron35 depends = libxss optdepends = libpulse: Pulseaudio support optdepends = libappindicator-gtk3: Systray indicator support @@ -18,10 +18,10 @@ pkgbase = discord-electron provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.90/discord-0.0.90.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.91/discord-0.0.91.tar.gz source = discord-launcher.sh source = krisp-patcher.py - sha512sums = d894294b149b1498832da232acb19f5ef67b184468255d284759a07b64319f415fa68d153a482dbfac48081d73d32c61c6437d810366269d0b105fec0dfb8d89 + sha512sums = 881008978374f4a928ad6b171021ac2cc3ffb1167447e835dfde828e1a14e63debdbd96241d9c7f7e925fe90a93e576a608cb42c8a79076cc399b079b5fa1d8c sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c diff --git a/discord-electron/PKGBUILD b/discord-electron/PKGBUILD index d9f54c1..7535711 100644 --- a/discord-electron/PKGBUILD +++ b/discord-electron/PKGBUILD @@ -1,8 +1,8 @@ pkgname=discord-electron _pkgname=discord -pkgver=0.0.90 +pkgver=0.0.91 pkgrel=1 -_electronver=34 +_electronver=35 _electronname="electron${_electronver}" pkgdesc="Discord using system provided electron (v${_electronver}) for increased security and performance" arch=('x86_64') @@ -24,7 +24,7 @@ optdepends=( source=("https://dl.discordapp.net/apps/linux/${pkgver}/${_pkgname}-${pkgver}.tar.gz" 'discord-launcher.sh' 'krisp-patcher.py') # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py -sha512sums=('d894294b149b1498832da232acb19f5ef67b184468255d284759a07b64319f415fa68d153a482dbfac48081d73d32c61c6437d810366269d0b105fec0dfb8d89' +sha512sums=('881008978374f4a928ad6b171021ac2cc3ffb1167447e835dfde828e1a14e63debdbd96241d9c7f7e925fe90a93e576a608cb42c8a79076cc399b079b5fa1d8c' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c') From 9627e6df71fabb6dbf5f225850064665b039fcf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20H=C3=BCsers?= Date: Wed, 16 Apr 2025 15:01:21 +0200 Subject: [PATCH 971/971] upgpkg: discord-electron-openasar 0.0.91+834-1 upstream release Update Electron version to 35 --- discord-electron-openasar/.SRCINFO | 10 +++++----- discord-electron-openasar/PKGBUILD | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/discord-electron-openasar/.SRCINFO b/discord-electron-openasar/.SRCINFO index 442d76b..cafe01c 100644 --- a/discord-electron-openasar/.SRCINFO +++ b/discord-electron-openasar/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = discord-electron-openasar - pkgdesc = Discord packaged with OpenAsar using system provided electron (v34) for increased security and performance - pkgver = 0.0.90+834 + pkgdesc = Discord packaged with OpenAsar using system provided electron (v35) for increased security and performance + pkgver = 0.0.91+834 pkgrel = 1 url = https://discord.com install = discord-electron-openasar.install @@ -10,7 +10,7 @@ pkgbase = discord-electron-openasar makedepends = asar makedepends = nodejs makedepends = curl - depends = electron34 + depends = electron35 depends = libxss depends = unzip optdepends = libpulse: Pulseaudio support @@ -21,11 +21,11 @@ pkgbase = discord-electron-openasar provides = discord conflicts = discord options = !strip - source = https://dl.discordapp.net/apps/linux/0.0.90/discord-0.0.90.tar.gz + source = https://dl.discordapp.net/apps/linux/0.0.91/discord-0.0.91.tar.gz source = discord-launcher.sh source = krisp-patcher.py source = git+https://github.com/goosemod/openasar.git#commit=e88eebf440866a06f3eca3b4fe2a8cc07818ee61 - sha512sums = d894294b149b1498832da232acb19f5ef67b184468255d284759a07b64319f415fa68d153a482dbfac48081d73d32c61c6437d810366269d0b105fec0dfb8d89 + sha512sums = 881008978374f4a928ad6b171021ac2cc3ffb1167447e835dfde828e1a14e63debdbd96241d9c7f7e925fe90a93e576a608cb42c8a79076cc399b079b5fa1d8c sha512sums = 4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666 sha512sums = 42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c sha512sums = fc1f6b6d9d306dc1ea0d8c0cc55982eb3f89c17a82ab9af8553c21e034d25367db406edb271177a2ca1dc4e9854074726d27a97930116abb2e193afa3831530f diff --git a/discord-electron-openasar/PKGBUILD b/discord-electron-openasar/PKGBUILD index 63f6fcd..936b707 100644 --- a/discord-electron-openasar/PKGBUILD +++ b/discord-electron-openasar/PKGBUILD @@ -2,10 +2,10 @@ pkgname=discord-electron-openasar _pkgname=discord -pkgver=0.0.90+834 +pkgver=0.0.91+834 _pkgver=${pkgver%%+*} pkgrel=1 -_electronver=34 +_electronver=35 _electronname="electron${_electronver}" pkgdesc="Discord packaged with OpenAsar using system provided electron (v${_electronver}) for increased security and performance" arch=('x86_64') @@ -28,7 +28,7 @@ source=("https://dl.discordapp.net/apps/linux/${_pkgver}/${_pkgname}-${_pkgver}. 'discord-launcher.sh' 'krisp-patcher.py' # original: https://github.com/sersorrel/sys/blob/main/hm/discord/krisp-patcher.py "git+https://github.com/goosemod/openasar.git#commit=e88eebf440866a06f3eca3b4fe2a8cc07818ee61") -sha512sums=('d894294b149b1498832da232acb19f5ef67b184468255d284759a07b64319f415fa68d153a482dbfac48081d73d32c61c6437d810366269d0b105fec0dfb8d89' +sha512sums=('881008978374f4a928ad6b171021ac2cc3ffb1167447e835dfde828e1a14e63debdbd96241d9c7f7e925fe90a93e576a608cb42c8a79076cc399b079b5fa1d8c' '4497ff3df7e2c1e72eea09d6f36a80cabeabfd43bb03b0966795d45e10a02ea6b4c10407661092d057435e0d69d75e958a3dbb1dc5971a215ce09547ec56f666' '42cef68c1f7d574b4fbe859a4dc616e8994c7d16f62bcae3ff1f88e1edc58ac37b39c238d7defa9c97ceda417fcd6224cf0a0fd2608b8d18d0877e3c1befa59c' 'fc1f6b6d9d306dc1ea0d8c0cc55982eb3f89c17a82ab9af8553c21e034d25367db406edb271177a2ca1dc4e9854074726d27a97930116abb2e193afa3831530f')