From 18d5fb58887b5467cb717894d043ff82542cfc1a Mon Sep 17 00:00:00 2001 From: Lilac Date: Sat, 23 Mar 2024 14:53:21 +0000 Subject: [PATCH 01/10] vdhcoapp-bin: auto updated to 2.0.19-1 --- repo/vdhcoapp-bin/PKGBUILD | 48 ++++++++++++++++++++ repo/vdhcoapp-bin/vdhcoapp-install.hook | 10 ++++ repo/vdhcoapp-bin/vdhcoapp-remove.hook | 9 ++++ repo/vdhcoapp-bin/vdhcoapp-user-install.hook | 10 ++++ repo/vdhcoapp-bin/vdhcoapp-user-remove.hook | 9 ++++ 5 files changed, 86 insertions(+) create mode 100644 repo/vdhcoapp-bin/PKGBUILD create mode 100644 repo/vdhcoapp-bin/vdhcoapp-install.hook create mode 100644 repo/vdhcoapp-bin/vdhcoapp-remove.hook create mode 100644 repo/vdhcoapp-bin/vdhcoapp-user-install.hook create mode 100644 repo/vdhcoapp-bin/vdhcoapp-user-remove.hook diff --git a/repo/vdhcoapp-bin/PKGBUILD b/repo/vdhcoapp-bin/PKGBUILD new file mode 100644 index 0000000..b686bb8 --- /dev/null +++ b/repo/vdhcoapp-bin/PKGBUILD @@ -0,0 +1,48 @@ +# Maintainer: Paragoumba +# Contributor: Mario Ray MahardhikZza +# Contributor: James Cuzella + +_package=net.downloadhelper.coapp +pkgname=vdhcoapp-bin +pkgver=2.0.19 +pkgrel=1 +pkgdesc="Companion application for Video DownloadHelper browser add-on, precompiled binary version" +provides=("vdhcoapp=${pkgver}") +conflicts=('vdhcoapp') +arch=('x86_64') +url="https://github.com/aclap-dev/vdhcoapp" +license=('GPL2') +depends=('ffmpeg' 'orc') +makedepends=() +options=('!strip') # IMPORTANT! DO NOT REMOVE THIS, OTHERWISE THE BINARY WILL BE BROKEN! +source=(vdhcoapp-$pkgver-linux-$arch.deb::https://github.com/aclap-dev/vdhcoapp/releases/download/v${pkgver}/vdhcoapp-linux-$arch.deb + vdhcoapp-install.hook + vdhcoapp-remove.hook + vdhcoapp-user-install.hook + vdhcoapp-user-remove.hook) +sha256sums=('496d341eef326f3fb6f0ddf825b309d6e18a4ddb7f1bec7fe74d9282ae94dfc4' + 'a2b56e6ae3f7f8933e20762baa90e69f63f0802b2e6d213b51e0bc68843e5d27' + '3287859986d67e15e269965676bf9c75d1e853ea0ec97695811072fb8f10a7a8' + 'a08c02d934709cdea4392fce155bec0b33147e386ed154bed959c5b78788ea83' + 'f7406ae5ba7fb6602426ef97540f86e057a7fd6d01a917e5af3638f1d64b2ce9') + +prepare() { + rm control.tar.xz + rm debian-binary + mkdir -p "${srcdir}/${pkgname}" + tar xf data.tar.xz -C "${pkgname}" +} + +package() { + cp -Rfp "${srcdir}/${pkgname}/"* "${pkgdir}/" + mkdir -p "${pkgdir}/usr/bin" + mkdir -p "${pkgdir}/usr/share/libalpm/hooks" + mkdir -p "${pkgdir}/opt/${_package}/converter/build/linux/64/" + ln -s /usr/bin/ffmpeg "${pkgdir}/opt/${_package}/converter/build/linux/64/ffmpeg" + ln -s /usr/bin/ffprobe "${pkgdir}/opt/${_package}/converter/build/linux/64/ffprobe" + ln -s /usr/bin/ffplay "${pkgdir}/opt/${_package}/converter/build/linux/64/ffplay" + ln -s "/opt/vdhcoapp/vdhcoapp" "${pkgdir}/usr/bin/vdhcoapp" + + # Install Hooks + cp -fpL "${srcdir}/"*.hook "${pkgdir}/usr/share/libalpm/hooks/" +} diff --git a/repo/vdhcoapp-bin/vdhcoapp-install.hook b/repo/vdhcoapp-bin/vdhcoapp-install.hook new file mode 100644 index 0000000..b608634 --- /dev/null +++ b/repo/vdhcoapp-bin/vdhcoapp-install.hook @@ -0,0 +1,10 @@ +[Trigger] +Operation = Install +Operation = Upgrade +Type = Package +Target = vdhcoapp-bin + +[Action] +Description = Installing JSON configuration file ... +When = PostTransaction +Exec = /usr/bin/vdhcoapp install --system diff --git a/repo/vdhcoapp-bin/vdhcoapp-remove.hook b/repo/vdhcoapp-bin/vdhcoapp-remove.hook new file mode 100644 index 0000000..ddf2690 --- /dev/null +++ b/repo/vdhcoapp-bin/vdhcoapp-remove.hook @@ -0,0 +1,9 @@ +[Trigger] +Operation = Remove +Type = Package +Target = vdhcoapp-bin + +[Action] +Description = Uninstalling JSON configuration file ... +When = PreTransaction +Exec = /usr/bin/vdhcoapp uninstall --system diff --git a/repo/vdhcoapp-bin/vdhcoapp-user-install.hook b/repo/vdhcoapp-bin/vdhcoapp-user-install.hook new file mode 100644 index 0000000..2afad2e --- /dev/null +++ b/repo/vdhcoapp-bin/vdhcoapp-user-install.hook @@ -0,0 +1,10 @@ +[Trigger] +Operation = Install +Operation = Upgrade +Type = Package +Target = vdhcoapp-bin + +[Action] +Description = Installing JSON configuration file for current user ... +When = PostTransaction +Exec = /bin/sh -c 'sudo -u "${SUDO_USER:-$(id -u -n 1000 )}" /usr/bin/vdhcoapp install --user' diff --git a/repo/vdhcoapp-bin/vdhcoapp-user-remove.hook b/repo/vdhcoapp-bin/vdhcoapp-user-remove.hook new file mode 100644 index 0000000..c0f15dd --- /dev/null +++ b/repo/vdhcoapp-bin/vdhcoapp-user-remove.hook @@ -0,0 +1,9 @@ +[Trigger] +Operation = Remove +Type = Package +Target = vdhcoapp-bin + +[Action] +Description = Uninstalling JSON configuration file for current user ... +When = PreTransaction +Exec = /bin/sh -c 'sudo -u "${SUDO_USER:-$(id -u -n 1000 )}" /usr/bin/vdhcoapp uninstall --user' From b5485f7d4bb352dcd316c6a41855e7141377f9dc Mon Sep 17 00:00:00 2001 From: Lilac Date: Sat, 23 Mar 2024 16:03:56 +0000 Subject: [PATCH 02/10] sing-box-git: auto updated to r1311.8ff27caf-1 --- repo/sing-box-git/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repo/sing-box-git/PKGBUILD b/repo/sing-box-git/PKGBUILD index dd9b55d..276bba1 100644 --- a/repo/sing-box-git/PKGBUILD +++ b/repo/sing-box-git/PKGBUILD @@ -3,7 +3,7 @@ pkgname=sing-box-git _pkgname=sing-box -pkgver=r1310.b392d566 +pkgver=r1311.8ff27caf pkgrel=1 pkgdesc='The universal proxy platform (git version).' From 45a0b65201b59eae8ecbf172b612e65c034826cf Mon Sep 17 00:00:00 2001 From: Lilac Date: Sat, 23 Mar 2024 21:01:05 +0000 Subject: [PATCH 03/10] nginxbeautifier: auto updated to 1.0.19-3 --- repo/nginxbeautifier/PKGBUILD | 58 +++++++++++++++++------------------ 1 file changed, 28 insertions(+), 30 deletions(-) diff --git a/repo/nginxbeautifier/PKGBUILD b/repo/nginxbeautifier/PKGBUILD index bef4b2a..4c19c56 100644 --- a/repo/nginxbeautifier/PKGBUILD +++ b/repo/nginxbeautifier/PKGBUILD @@ -1,47 +1,45 @@ -# Maintainer: Sefa Eyeoglu +# Maintainer: Giovanni Harting <539@idlegandalf.com> +# Contributor: Sefa Eyeoglu # Contributor: Yosef Langer (vasilevich1234 dot gmail dot ...) -_commit=734ff631f254d8f17661d81e43927ba68e69f545 pkgname=nginxbeautifier pkgver=1.0.19 -pkgrel=2 -pkgdesc="nginx config file formatter and beautifier" +pkgrel=3 +pkgdesc='nginx config file formatter and beautifier' arch=(any) -url="https://github.com/vasilevich/nginxbeautifier" -license=("Apache") -depends=("nodejs") -makedepends=("git" "npm") +url='https://github.com/vasilevich/nginxbeautifier' +license=(Apache-2.0) +depends=(nodejs) +makedepends=(git npm) +_commit=734ff631f254d8f17661d81e43927ba68e69f545 source=("$pkgname::git+https://github.com/vasilevich/nginxbeautifier.git#commit=${_commit}") -sha512sums=('SKIP') - - -prepare() { - cd "${pkgname}" - - # remove junk - rm -rf ".idea/" -} +b2sums=('SKIP') build() { - cd "${pkgname}" + cd $pkgname - # We create a taball of the project as "npm installing" (see package()) the directory itself only creates symlinks - npm pack + # we create a taball of the project as "npm installing" (see package()) the directory itself only creates symlinks + npm pack } package() { - cd "${pkgname}" + cd $pkgname - npm install -g --prefix "${pkgdir}/usr" "${pkgname}-${pkgver}.tgz" - # Non-deterministic race in npm gives 777 permissions to random directories. - # See https://github.com/npm/npm/issues/9359 for details. - find "${pkgdir}/usr" -type d -exec chmod 755 {} + + npm install -g --prefix "$pkgdir"/usr $pkgname-$pkgver.tgz - # npm gives ownership of ALL FILES to build user - # https://bugs.archlinux.org/task/63396 - chown -R root:root "${pkgdir}" + # Non-deterministic race in npm gives 777 permissions to random directories. + # See https://github.com/npm/npm/issues/9359 for details. + find "$pkgdir"/usr -type d -exec chmod 755 {} + - install -d "${pkgdir}/usr/share/doc/${pkgname}" - ln -s "/usr/lib/node_modules/${pkgname}/README.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md" + # npm gives ownership of ALL FILES to build user + # https://bugs.archlinux.org/task/63396 + chown -R root:root "$pkgdir" + + # remove ide stuff + rm -r "$pkgdir"/usr/lib/node_modules/nginxbeautifier/.idea + + install -d "$pkgdir"/usr/share/doc/$pkgname + ln -s /usr/lib/node_modules/$pkgname/README.md "$pkgdir"/usr/share/doc/$pkgname/README.md } +# vim:set ts=2 sw=2 et: From 4e6983f52e6cf2e60fad537e2e83e85d3e4bd79c Mon Sep 17 00:00:00 2001 From: Lilac Date: Sun, 24 Mar 2024 10:02:08 +0000 Subject: [PATCH 04/10] sing-geosite: auto updated to 20240324094850-1 --- repo/sing-geosite/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repo/sing-geosite/PKGBUILD b/repo/sing-geosite/PKGBUILD index 0405f2e..d3e1a0f 100644 --- a/repo/sing-geosite/PKGBUILD +++ b/repo/sing-geosite/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: everyx pkgname=sing-geosite -pkgver=20240316051411 +pkgver=20240324094850 pkgrel=1 pkgdesc='sing-geosite database' arch=('any') From dce8b2d0eb1458d273cd67ba80c6904037d789de Mon Sep 17 00:00:00 2001 From: Lilac Date: Sun, 24 Mar 2024 14:02:55 +0000 Subject: [PATCH 05/10] sing-box-git: auto updated to r1314.30c98dd0-1 --- repo/sing-box-git/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repo/sing-box-git/PKGBUILD b/repo/sing-box-git/PKGBUILD index 276bba1..35e00a3 100644 --- a/repo/sing-box-git/PKGBUILD +++ b/repo/sing-box-git/PKGBUILD @@ -3,7 +3,7 @@ pkgname=sing-box-git _pkgname=sing-box -pkgver=r1311.8ff27caf +pkgver=r1314.30c98dd0 pkgrel=1 pkgdesc='The universal proxy platform (git version).' From d6e51394e90f3b5827df56a983d9779bc640da2a Mon Sep 17 00:00:00 2001 From: Lilac Date: Sun, 24 Mar 2024 18:02:42 +0000 Subject: [PATCH 06/10] sing-box-git: auto updated to r1315.cab62931-1 --- repo/sing-box-git/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repo/sing-box-git/PKGBUILD b/repo/sing-box-git/PKGBUILD index 35e00a3..f64a8e0 100644 --- a/repo/sing-box-git/PKGBUILD +++ b/repo/sing-box-git/PKGBUILD @@ -3,7 +3,7 @@ pkgname=sing-box-git _pkgname=sing-box -pkgver=r1314.30c98dd0 +pkgver=r1315.cab62931 pkgrel=1 pkgdesc='The universal proxy platform (git version).' From 78b67147e90f0f13a71c609e0195be5afcd7f310 Mon Sep 17 00:00:00 2001 From: Lilac Date: Sun, 24 Mar 2024 19:01:44 +0000 Subject: [PATCH 07/10] an-anime-game-launcher-bin: auto updated to 3.9.5-2 --- repo/an-anime-game-launcher-bin/PKGBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/repo/an-anime-game-launcher-bin/PKGBUILD b/repo/an-anime-game-launcher-bin/PKGBUILD index 60337bf..bd249a6 100644 --- a/repo/an-anime-game-launcher-bin/PKGBUILD +++ b/repo/an-anime-game-launcher-bin/PKGBUILD @@ -2,8 +2,8 @@ # Contributor: Marie Piontek pkgname=an-anime-game-launcher-bin -pkgver=3.9.4 -pkgrel=1 +pkgver=3.9.5 +pkgrel=2 pkgdesc="A Launcher for a specific anime game with auto-patching, discord rpc and time tracking" url="https://github.com/an-anime-team/an-anime-game-launcher" conflicts=("an-anime-game-launcher-git") @@ -34,7 +34,7 @@ source=( ) md5sums=( - '01f6eb5d71a93f52bf75d1365268fbab' + '52346086d3f58474161f7a8f22be9c6e' 'c1a5499b80a55d3d238ef5c5d2c93c99' 'f0cfe73897e8f49e92e0dfc41326fb0b' ) From cf3b016e6ad1ac6e1be13932c99dd3c7f3daeef3 Mon Sep 17 00:00:00 2001 From: Lilac Date: Sun, 24 Mar 2024 19:02:20 +0000 Subject: [PATCH 08/10] sing-box-git: auto updated to r1315.9238587c-1 --- repo/sing-box-git/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repo/sing-box-git/PKGBUILD b/repo/sing-box-git/PKGBUILD index f64a8e0..81716c8 100644 --- a/repo/sing-box-git/PKGBUILD +++ b/repo/sing-box-git/PKGBUILD @@ -3,7 +3,7 @@ pkgname=sing-box-git _pkgname=sing-box -pkgver=r1315.cab62931 +pkgver=r1315.9238587c pkgrel=1 pkgdesc='The universal proxy platform (git version).' From 209adb4c56142359156e37dbb7b0909e0209f76c Mon Sep 17 00:00:00 2001 From: Lilac Date: Tue, 26 Mar 2024 13:02:55 +0000 Subject: [PATCH 09/10] sing-box-git: auto updated to r1317.f8ab52f9-1 --- repo/sing-box-git/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repo/sing-box-git/PKGBUILD b/repo/sing-box-git/PKGBUILD index 81716c8..3d0c1d9 100644 --- a/repo/sing-box-git/PKGBUILD +++ b/repo/sing-box-git/PKGBUILD @@ -3,7 +3,7 @@ pkgname=sing-box-git _pkgname=sing-box -pkgver=r1315.9238587c +pkgver=r1317.f8ab52f9 pkgrel=1 pkgdesc='The universal proxy platform (git version).' From 9517fa2e51ec286e1948590697ef6256c4c79f4a Mon Sep 17 00:00:00 2001 From: Lilac Date: Tue, 26 Mar 2024 22:05:58 +0000 Subject: [PATCH 10/10] quarto-cli: auto updated to 1.4.552-3 --- repo/quarto-cli/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repo/quarto-cli/PKGBUILD b/repo/quarto-cli/PKGBUILD index 34c56d5..6157d73 100644 --- a/repo/quarto-cli/PKGBUILD +++ b/repo/quarto-cli/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Aleksandr Beliaev pkgname=quarto-cli -pkgver=1.4.551 +pkgver=1.4.552 pkgrel=3 _pkgbasename=quarto-cli _denodomver="0.1.35-alpha-artifacts" @@ -21,7 +21,7 @@ source=("${_pkgbasename}-${pkgver}.tar.gz::https://github.com/quarto-dev/quarto- "000_deno_1.41.diff" ) -sha256sums=('fde25148b2f50efd184f203f1e110a5e60b8e716755e1f6ea572ce912286631c' +sha256sums=('fe6001d3246e738505029a33e7ffde66f536253600b136b31b6cdcaff72f36ea' '14fb042a6912041b9fda91fd643cf278764d075bc9539aa1e107475915cd896c' 'd09e82634e6b64359c54d3a99b8abb4503cea3c62ef30b46d02ffcfde718d36c') prepare() {