Skip to content

Commit

Permalink
chore(update): update packages (10)
Browse files Browse the repository at this point in the history
changed: ironbar-git, python-elgato-streamdeck, penguins-eggs, netbird, linux-vfio-lts, linux-vfio-x64v3, linux-vfio, netbird-ui, backintime, mise
  • Loading branch information
temeraire-cx committed Dec 27, 2024
1 parent 849c161 commit d662db5
Show file tree
Hide file tree
Showing 25 changed files with 114 additions and 77 deletions.
2 changes: 1 addition & 1 deletion .ci/aur-state
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1735331435
1735338639
7 changes: 6 additions & 1 deletion backintime/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
pkgbase = backintime
pkgver = 1.5.3
pkgrel = 2
pkgrel = 3
url = https://github.com/bit-team/backintime
arch = any
license = GPL
makedepends = python
source = backintime-1.5.3.tar.gz::https://github.com/bit-team/backintime/archive/refs/tags/v1.5.3.tar.gz
source = backintime-backup-job.service
source = backintime-backup-job.timer
sha256sums = ba4b28bd9b2f4dd0dae90a1a990ac352880546bb82db3a6176568be3f9de4f46
sha256sums = 8a3aa12434048d604836b709df18528fe51867de7c8d229190eb5b518fa6d918
sha256sums = 5f9346be71d16786cb547362fe35755c8af59095e985c27d28ac14dfe791b7c8

pkgname = backintime
pkgdesc = Simple backup system inspired from the Flyback Project and TimeVault. Qt5 GUI version.
Expand All @@ -17,6 +21,7 @@ pkgname = backintime
depends = python-pyqt6
depends = xorg-xdpyinfo
depends = sshfs
optdepends = cronie: to trigger automated backups
optdepends = kompare: diff/patch frontend
optdepends = meld: diff/patch frontend
optdepends = qt6-translations: translate BIT dialogs into native language
Expand Down
24 changes: 20 additions & 4 deletions backintime/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,17 @@
pkgname=(backintime backintime-cli)
_pkgname="backintime"
pkgver=1.5.3
pkgrel=2
pkgrel=3
arch=(any)
url="https://github.com/bit-team/backintime"
license=(GPL)
makedepends=(python)
#checkdepends=(openssh python-dbus rsync systemd python-pyfakefs oxygen-icons python-pylint)
source=("$_pkgname-$pkgver.tar.gz::https://github.com/bit-team/$_pkgname/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('ba4b28bd9b2f4dd0dae90a1a990ac352880546bb82db3a6176568be3f9de4f46')
source=("$_pkgname-$pkgver.tar.gz::https://github.com/bit-team/$_pkgname/archive/refs/tags/v$pkgver.tar.gz"
backintime-backup-job.{service,timer})
sha256sums=('ba4b28bd9b2f4dd0dae90a1a990ac352880546bb82db3a6176568be3f9de4f46'
'8a3aa12434048d604836b709df18528fe51867de7c8d229190eb5b518fa6d918'
'5f9346be71d16786cb547362fe35755c8af59095e985c27d28ac14dfe791b7c8')

#prepare() {i
# cd "$_pkgname-$pkgver"
Expand Down Expand Up @@ -47,7 +50,8 @@ package_backintime() {
pkgdesc="Simple backup system inspired from the Flyback Project and TimeVault. Qt5 GUI version."
depends=("backintime-cli=$pkgver" polkit python-dbus python-pyqt6 xorg-xdpyinfo sshfs)
# note users can optionally install EITHER kompare OR meld but not both!
optdepends=('kompare: diff/patch frontend'
optdepends=('cronie: to trigger automated backups'
'kompare: diff/patch frontend'
'meld: diff/patch frontend'
'qt6-translations: translate BIT dialogs into native language')
install=backintime.install
Expand All @@ -56,6 +60,18 @@ package_backintime() {
make DESTDIR="$pkgdir" install
python -m compileall -d /usr "$pkgdir"/usr
python -O -m compileall -d /usr "$pkgdir"/usr

mkdir "$pkgdir/usr/share/$_pkgname/contrib"
install -m644 "$srcdir/$_pkgname-backup-job.service" "$pkgdir/usr/share/$_pkgname/contrib/$_pkgname-backup-job.service"
install -m644 "$srcdir/$_pkgname-backup-job.timer" "$pkgdir/usr/share/$_pkgname/contrib/$_pkgname-backup-job.timer"

cat << EOF > "$pkgdir/usr/share/$_pkgname/contrib/README.txt"
Example user systemd timer and service units are provided. To use,
refer to https://wiki.archlinux.org/title/Systemd/User#How_it_works
Optionally adjust the value for OnCalendar= with a valid setting.
See man systemd.timer for options.
EOF
}

# vim:set ts=8 sts=2 sw=2 et:
6 changes: 6 additions & 0 deletions backintime/backintime-backup-job.service
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[Unit]
Description=Run backintime snapshot generation

[Service]
Type=oneshot
ExecStart=/usr/bin/nice -n19 /usr/bin/ionice -c2 -n7 /usr/bin/backintime backup-job
10 changes: 10 additions & 0 deletions backintime/backintime-backup-job.timer
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[Unit]
Description=Start a backintime snapshot once daily

[Timer]
OnCalendar=daily
AccuracySec=1m
Persistent=true

[Install]
WantedBy=timers.target
10 changes: 5 additions & 5 deletions backintime/backintime.install
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
post_install() {
if ! systemctl is-enabled -q cronie; then
echo
echo ">>> Enable cronie.service in order for BIT scheduling to work"
echo
fi
cat <<EOF
>>> Enable a cron daemon such as cronie or use the included
systemd user units in /usr/share/backintime/contrib/ in
order to get backintime scheduling to work
EOF
}

post_upgrade() {
Expand Down
4 changes: 2 additions & 2 deletions ironbar-git/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pkgbase = ironbar-git
pkgdesc = Customisable wlroots/sway bar written in rust
pkgver = 0.16.0.r121.gbdf6b3b
pkgver = 0.16.1.r121.g67426bd
pkgrel = 1
url = https://ironb.ar
arch = i686
Expand All @@ -14,11 +14,11 @@ pkgbase = ironbar-git
makedepends = openssl
makedepends = libpulse
makedepends = luajit
makedepends = libdbusmenu-gtk3
depends = gtk3
depends = gtk-layer-shell
depends = lua51-lgi
depends = libdbusmenu-glib
depends = libinput
depends = libdbusmenu-gtk3
provides = ironbar
conflicts = ironbar
Expand Down
6 changes: 3 additions & 3 deletions ironbar-git/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Maintainer: Jake Stanger <[email protected]>

pkgname=ironbar-git
pkgver=0.16.0.r121.gbdf6b3b
pkgver=0.16.1.r121.g67426bd
pkgrel=1
makedepends=('rust' 'cargo' 'git' 'openssl' 'libpulse' 'luajit' 'libdbusmenu-gtk3')
depends=('gtk3' 'gtk-layer-shell' 'lua51-lgi' 'libdbusmenu-glib' 'libdbusmenu-gtk3')
makedepends=('rust' 'cargo' 'git' 'openssl' 'libpulse' 'luajit')
depends=('gtk3' 'gtk-layer-shell' 'lua51-lgi' 'libdbusmenu-glib' 'libinput' 'libdbusmenu-gtk3')
provides=('ironbar')
conflicts=('ironbar')
arch=('i686' 'x86_64' 'armv6h' 'armv7h')
Expand Down
16 changes: 8 additions & 8 deletions linux-vfio-lts/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pkgbase = linux-vfio-lts
pkgdesc = LTS Linux
pkgver = 6.6.67
pkgver = 6.6.68
pkgrel = 1
url = https://www.kernel.org
arch = x86_64
Expand All @@ -20,18 +20,18 @@ pkgbase = linux-vfio-lts
makedepends = texlive-latexextra
options = !debug
options = !strip
source = https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.6.67.tar.xz
source = https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.6.67.tar.sign
source = config-6.6.67::https://gitlab.archlinux.org/archlinux/packaging/packages/linux-lts/-/raw/main/config
source = https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.6.68.tar.xz
source = https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.6.68.tar.sign
source = config-6.6.68::https://gitlab.archlinux.org/archlinux/packaging/packages/linux-lts/-/raw/main/config
source = 1001-6.6.7-add-acs-overrides.patch
source = 1002-6.6.7-i915-vga-arbiter.patch
source = 0001-6.6.67-disallow-unprivileged-CLONE_NEWUSER.patch::https://gitlab.archlinux.org/archlinux/packaging/packages/linux-lts/-/raw/main/0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch
source = 0002-6.6.67-nvidia-skip-simpledrm.patch::https://gitlab.archlinux.org/archlinux/packaging/packages/linux-lts/-/raw/main/0002-skip-simpledrm-if-nvidia-drm.modeset=1-is.patch
source = 0003-6.6.67-set-default-aslr-bits.patch::https://gitlab.archlinux.org/archlinux/packaging/packages/linux-lts/-/raw/main/0003-Default-to-maximum-amount-of-ASLR-bits.patch
source = 0001-6.6.68-disallow-unprivileged-CLONE_NEWUSER.patch::https://gitlab.archlinux.org/archlinux/packaging/packages/linux-lts/-/raw/main/0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch
source = 0002-6.6.68-nvidia-skip-simpledrm.patch::https://gitlab.archlinux.org/archlinux/packaging/packages/linux-lts/-/raw/main/0002-skip-simpledrm-if-nvidia-drm.modeset=1-is.patch
source = 0003-6.6.68-set-default-aslr-bits.patch::https://gitlab.archlinux.org/archlinux/packaging/packages/linux-lts/-/raw/main/0003-Default-to-maximum-amount-of-ASLR-bits.patch
validpgpkeys = ABAF11C65A2970B130ABE3C479BE3E4300411886
validpgpkeys = 647F28654894E3BD457199BE38DBBDC86092693E
validpgpkeys = 83BC8889351B5DEBBB68416EB8AC08600F108CDF
sha256sums = e41da482ec42a3b0e2b8ed2574c1d327e3dcf95cdf025c55a356b04307113e1a
sha256sums = 283ff410e3f352ceed161ae30c0020301326059db03e86efcb384d46ac5840e2
sha256sums = SKIP
sha256sums = SKIP
sha256sums = f342986bd27980c96c952b0dd8103d3e21a942d87f18df1308fab370e20010fb
Expand Down
4 changes: 2 additions & 2 deletions linux-vfio-lts/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
: ${_build_lts:=true}
: ${_build_v3:=false}

: ${_cksum:=e41da482ec42a3b0e2b8ed2574c1d327e3dcf95cdf025c55a356b04307113e1a}
: ${_cksum:=283ff410e3f352ceed161ae30c0020301326059db03e86efcb384d46ac5840e2}

unset _pkgtype
[[ "${_build_vfio::1}" == "t" ]] && _pkgtype+="-vfio"
Expand All @@ -23,7 +23,7 @@ unset _pkgtype
_gitname="linux"
_pkgname="$_gitname${_pkgtype:-}"
pkgbase="$_pkgname"
pkgver=6.6.67
pkgver=6.6.68
pkgrel=1
pkgdesc='LTS Linux'
url='https://www.kernel.org'
Expand Down
14 changes: 7 additions & 7 deletions linux-vfio-x64v3/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pkgbase = linux-vfio
pkgdesc = Linux
pkgver = 6.12.6
pkgver = 6.12.7
pkgrel = 1
url = https://www.kernel.org
arch = x86_64
Expand All @@ -21,17 +21,17 @@ pkgbase = linux-vfio
makedepends = texlive-latexextra
options = !debug
options = !strip
source = https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.12.6.tar.xz
source = https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.12.6.tar.sign
source = config-6.12.6::https://gitlab.archlinux.org/archlinux/packaging/packages/linux/-/raw/main/config
source = https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.12.7.tar.xz
source = https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.12.7.tar.sign
source = config-6.12.7::https://gitlab.archlinux.org/archlinux/packaging/packages/linux/-/raw/main/config
source = 1001-6.8.0-add-acs-overrides.patch
source = 1002-6.8.0-i915-vga-arbiter.patch
source = https://github.com/archlinux/linux/releases/download/v6.12.6-arch1/linux-v6.12.6-arch1.patch.zst
source = https://github.com/archlinux/linux/releases/download/v6.12.6-arch1/linux-v6.12.6-arch1.patch.zst.sig
source = https://github.com/archlinux/linux/releases/download/v6.12.7-arch1/linux-v6.12.7-arch1.patch.zst
source = https://github.com/archlinux/linux/releases/download/v6.12.7-arch1/linux-v6.12.7-arch1.patch.zst.sig
validpgpkeys = ABAF11C65A2970B130ABE3C479BE3E4300411886
validpgpkeys = 647F28654894E3BD457199BE38DBBDC86092693E
validpgpkeys = 83BC8889351B5DEBBB68416EB8AC08600F108CDF
sha256sums = d450ab215de4e1f8bb85e0f4216760fa33fd024b4526b144f4ce0d9012b29c9e
sha256sums = f785fb648a0e0b66a943bb3228a4b6ed62c90b985cd1ebf69da5d38e589da0cf
sha256sums = SKIP
sha256sums = SKIP
sha256sums = b35c26d5dc31fb9cfac68292de7b1ee8ca93b4647e4958efc77e2c77f586f1f2
Expand Down
4 changes: 2 additions & 2 deletions linux-vfio-x64v3/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
: ${_build_lts:=false}
: ${_build_v3:=false}

: ${_cksum:=d450ab215de4e1f8bb85e0f4216760fa33fd024b4526b144f4ce0d9012b29c9e}
: ${_cksum:=f785fb648a0e0b66a943bb3228a4b6ed62c90b985cd1ebf69da5d38e589da0cf}

unset _pkgtype
[[ "${_build_vfio::1}" == "t" ]] && _pkgtype+="-vfio"
Expand All @@ -26,7 +26,7 @@ unset _pkgtype
_gitname="linux"
_pkgname="$_gitname${_pkgtype:-}"
pkgbase="$_pkgname"
pkgver=6.12.6
pkgver=6.12.7
pkgrel=1
pkgdesc='Linux'
url='https://www.kernel.org'
Expand Down
14 changes: 7 additions & 7 deletions linux-vfio/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pkgbase = linux-vfio
pkgdesc = Linux
pkgver = 6.12.6
pkgver = 6.12.7
pkgrel = 1
url = https://www.kernel.org
arch = x86_64
Expand All @@ -21,17 +21,17 @@ pkgbase = linux-vfio
makedepends = texlive-latexextra
options = !debug
options = !strip
source = https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.12.6.tar.xz
source = https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.12.6.tar.sign
source = config-6.12.6::https://gitlab.archlinux.org/archlinux/packaging/packages/linux/-/raw/main/config
source = https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.12.7.tar.xz
source = https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.12.7.tar.sign
source = config-6.12.7::https://gitlab.archlinux.org/archlinux/packaging/packages/linux/-/raw/main/config
source = 1001-6.8.0-add-acs-overrides.patch
source = 1002-6.8.0-i915-vga-arbiter.patch
source = https://github.com/archlinux/linux/releases/download/v6.12.6-arch1/linux-v6.12.6-arch1.patch.zst
source = https://github.com/archlinux/linux/releases/download/v6.12.6-arch1/linux-v6.12.6-arch1.patch.zst.sig
source = https://github.com/archlinux/linux/releases/download/v6.12.7-arch1/linux-v6.12.7-arch1.patch.zst
source = https://github.com/archlinux/linux/releases/download/v6.12.7-arch1/linux-v6.12.7-arch1.patch.zst.sig
validpgpkeys = ABAF11C65A2970B130ABE3C479BE3E4300411886
validpgpkeys = 647F28654894E3BD457199BE38DBBDC86092693E
validpgpkeys = 83BC8889351B5DEBBB68416EB8AC08600F108CDF
sha256sums = d450ab215de4e1f8bb85e0f4216760fa33fd024b4526b144f4ce0d9012b29c9e
sha256sums = f785fb648a0e0b66a943bb3228a4b6ed62c90b985cd1ebf69da5d38e589da0cf
sha256sums = SKIP
sha256sums = SKIP
sha256sums = b35c26d5dc31fb9cfac68292de7b1ee8ca93b4647e4958efc77e2c77f586f1f2
Expand Down
4 changes: 2 additions & 2 deletions linux-vfio/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
: ${_build_lts:=false}
: ${_build_v3:=false}

: ${_cksum:=d450ab215de4e1f8bb85e0f4216760fa33fd024b4526b144f4ce0d9012b29c9e}
: ${_cksum:=f785fb648a0e0b66a943bb3228a4b6ed62c90b985cd1ebf69da5d38e589da0cf}

unset _pkgtype
[[ "${_build_vfio::1}" == "t" ]] && _pkgtype+="-vfio"
Expand All @@ -26,7 +26,7 @@ unset _pkgtype
_gitname="linux"
_pkgname="$_gitname${_pkgtype:-}"
pkgbase="$_pkgname"
pkgver=6.12.6
pkgver=6.12.7
pkgrel=1
pkgdesc='Linux'
url='https://www.kernel.org'
Expand Down
6 changes: 3 additions & 3 deletions mise/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pkgbase = mise
pkgdesc = The front-end to your dev env
pkgver = 2024.12.20
pkgver = 2024.12.21
pkgrel = 1
url = https://github.com/jdx/mise
arch = x86_64
Expand All @@ -10,7 +10,7 @@ provides = mise
replaces = rtx
conflicts = rtx
conflicts = rtx-bin
source = mise-2024.12.20.tar.gz::https://github.com/jdx/mise/archive/v2024.12.20.tar.gz
sha512sums = 26b02dec46caf6f3756132494770488f028b0eb44ebaae96a96edee637a24685e6f7a4cfc045919c0f2c4186309eafd09b0bbc7ff22e965145fd9d195d911de1
source = mise-2024.12.21.tar.gz::https://github.com/jdx/mise/archive/v2024.12.21.tar.gz
sha512sums = 8f133af58d9b92b9d87f2b200f930100e625125c9303a63b1ecf0b14fa3391f28592db1cf3d4f07630689e768320e8f3dcca035e80365d0411cd88c3aa6a2aed

pkgname = mise
4 changes: 2 additions & 2 deletions mise/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Maintainer: Jeff Dickey <releases at mise dot jdx dot dev>

pkgname=mise
pkgver=2024.12.20
pkgver=2024.12.21
pkgrel=1
pkgdesc='The front-end to your dev env'
arch=('x86_64')
Expand All @@ -13,7 +13,7 @@ conflicts=('rtx' 'rtx-bin')
replaces=('rtx')
options=('!lto')
source=("$pkgname-$pkgver.tar.gz::https://github.com/jdx/$pkgname/archive/v$pkgver.tar.gz")
sha512sums=('26b02dec46caf6f3756132494770488f028b0eb44ebaae96a96edee637a24685e6f7a4cfc045919c0f2c4186309eafd09b0bbc7ff22e965145fd9d195d911de1')
sha512sums=('8f133af58d9b92b9d87f2b200f930100e625125c9303a63b1ecf0b14fa3391f28592db1cf3d4f07630689e768320e8f3dcca035e80365d0411cd88c3aa6a2aed')
optdepends=('usage: completion support')

prepare() {
Expand Down
6 changes: 3 additions & 3 deletions netbird-ui/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pkgbase = netbird-ui
pkgdesc = Official GUI for the Netbird client
pkgver = 0.35.0
pkgver = 0.35.1
pkgrel = 1
url = https://netbird.io
arch = i686
Expand Down Expand Up @@ -34,7 +34,7 @@ pkgbase = netbird-ui
depends = netbird
depends = pango
depends = zlib
source = netbird-ui-0.35.0.tar.gz::https://github.com/netbirdio/netbird/archive/refs/tags/v0.35.0.tar.gz
sha256sums = a95b7f0f06cca20eaf28d481f41fb3164b966043f2f6212934f22de9aca8dae9
source = netbird-ui-0.35.1.tar.gz::https://github.com/netbirdio/netbird/archive/refs/tags/v0.35.1.tar.gz
sha256sums = 0ad50fe9a05fbe871c5b0b23881c79831e44499ad042cfcf0a0f73e2dfdff8d7

pkgname = netbird-ui
4 changes: 2 additions & 2 deletions netbird-ui/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Maintainer: tarball <[email protected]>

pkgname=netbird-ui
pkgver=0.35.0
pkgver=0.35.1
pkgrel=1
pkgdesc='Official GUI for the Netbird client'
url='https://netbird.io'
Expand Down Expand Up @@ -36,7 +36,7 @@ makedepends=(go)
source=(
"$pkgname-$pkgver.tar.gz::https://github.com/netbirdio/netbird/archive/refs/tags/v$pkgver.tar.gz"
)
sha256sums=('a95b7f0f06cca20eaf28d481f41fb3164b966043f2f6212934f22de9aca8dae9')
sha256sums=('0ad50fe9a05fbe871c5b0b23881c79831e44499ad042cfcf0a0f73e2dfdff8d7')

prepare() {
cd "$srcdir/netbird-$pkgver"
Expand Down
6 changes: 3 additions & 3 deletions netbird/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pkgbase = netbird
pkgver = 0.35.0
pkgver = 0.35.1
pkgrel = 1
url = https://netbird.io
arch = i686
Expand All @@ -12,7 +12,7 @@ pkgbase = netbird
arch = riscv64
license = BSD-3-Clause
makedepends = go
source = netbird-0.35.0.tar.gz::https://github.com/netbirdio/netbird/archive/refs/tags/v0.35.0.tar.gz
source = netbird-0.35.1.tar.gz::https://github.com/netbirdio/netbird/archive/refs/tags/v0.35.1.tar.gz
source = netbird.env
source = [email protected]
source = netbird-signal.env
Expand All @@ -21,7 +21,7 @@ pkgbase = netbird
source = netbird-management.service
source = netbird-relay.env
source = netbird-relay.service
sha256sums = a95b7f0f06cca20eaf28d481f41fb3164b966043f2f6212934f22de9aca8dae9
sha256sums = 0ad50fe9a05fbe871c5b0b23881c79831e44499ad042cfcf0a0f73e2dfdff8d7
sha256sums = 128e36e1f814a12886f3122a1809a404be17f81481275b6624e66937941f5269
sha256sums = 2fa681ef862bfa609d62596e730ff5fbfa706fedca801556cd18a97f349e039f
sha256sums = 80cd7b6a22087a83c1332c15693d8a18b780ef5ecf3fbc562af28d1a623eef3b
Expand Down
Loading

0 comments on commit d662db5

Please sign in to comment.