[arch-commits] Commit in timescaledb/trunk (PKGBUILD timescaledb.install)

2021-03-18 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, March 19, 2021 @ 05:59:14
  Author: svenstaro
Revision: 894540

Some linting fixes

Modified:
  timescaledb/trunk/PKGBUILD
  timescaledb/trunk/timescaledb.install

-+
 PKGBUILD|2 +-
 timescaledb.install |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-19 05:55:25 UTC (rev 894539)
+++ PKGBUILD2021-03-19 05:59:14 UTC (rev 894540)
@@ -4,7 +4,7 @@
 pkgname=timescaledb
 pkgver=2.1.0
 pkgrel=1
-pkgdesc="An open-source time-series database optimized for fast ingest and 
complex queries."
+pkgdesc="An open-source time-series database optimized for fast ingest and 
complex queries"
 arch=('x86_64')
 url="https://www.timescale.com/;
 license=('Apache')

Modified: timescaledb.install
===
--- timescaledb.install 2021-03-19 05:55:25 UTC (rev 894539)
+++ timescaledb.install 2021-03-19 05:59:14 UTC (rev 894540)
@@ -1,7 +1,7 @@
 post_install() {
 echo "To use TimescaleDB as PostgreSQL extension,"
echo "put in /var/lib/postgres/data/postgresql.conf:"
-   echo "'shared_preload_libraries = "timescaledb"'"
+   echo "'shared_preload_libraries = \"timescaledb\"'"
 echo "If multiple libraries are required, separate them with comma."
 echo "Then restart postgresql:"
 echo "$ systemctl restart postgresql"


[arch-commits] Commit in timescaledb/repos (3 files)

2021-03-18 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, March 19, 2021 @ 05:55:25
  Author: svenstaro
Revision: 894539

archrelease: copy trunk to community-x86_64

Added:
  timescaledb/repos/community-x86_64/
  timescaledb/repos/community-x86_64/PKGBUILD
(from rev 894538, timescaledb/trunk/PKGBUILD)
  timescaledb/repos/community-x86_64/timescaledb.install
(from rev 894538, timescaledb/trunk/timescaledb.install)

-+
 PKGBUILD|   26 ++
 timescaledb.install |   15 +++
 2 files changed, 41 insertions(+)

Copied: timescaledb/repos/community-x86_64/PKGBUILD (from rev 894538, 
timescaledb/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2021-03-19 05:55:25 UTC (rev 894539)
@@ -0,0 +1,26 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Felix Fung 
+
+pkgname=timescaledb
+pkgver=2.1.0
+pkgrel=1
+pkgdesc="An open-source time-series database optimized for fast ingest and 
complex queries."
+arch=('x86_64')
+url="https://www.timescale.com/;
+license=('Apache')
+depends=('postgresql' 'postgresql-libs')
+makedepends=('gcc' 'cmake')
+install=timescaledb.install
+source=("https://github.com/timescale/timescaledb/releases/download/${pkgver}/timescaledb-${pkgver}.tar.lzma;)
+sha512sums=('22c72b6ae6bafc37269168d42089816735ee812d0f3c53642ad453c89b984cabdc5ea5aeb10320ba12478e9baae5356c7984b773b61e18a2aed99c6657cda464')
+
+build() {
+cd "${pkgname}"
+./bootstrap -DWARNINGS_AS_ERRORS=OFF -DREGRESS_CHECKS=OFF
+cd build && make
+}
+
+package() {
+cd "${pkgname}/build"
+make DESTDIR="$pkgdir/" install
+}

Copied: timescaledb/repos/community-x86_64/timescaledb.install (from rev 
894538, timescaledb/trunk/timescaledb.install)
===
--- community-x86_64/timescaledb.install(rev 0)
+++ community-x86_64/timescaledb.install2021-03-19 05:55:25 UTC (rev 
894539)
@@ -0,0 +1,15 @@
+post_install() {
+echo "To use TimescaleDB as PostgreSQL extension,"
+   echo "put in /var/lib/postgres/data/postgresql.conf:"
+   echo "'shared_preload_libraries = "timescaledb"'"
+echo "If multiple libraries are required, separate them with comma."
+echo "Then restart postgresql:"
+echo "$ systemctl restart postgresql"
+}
+
+post_remove() {
+echo "Remove 'timescaledb' from 'shared_preload_libraries'"
+echo "In /var/lib/postgres/data/postgresql.conf"
+echo "Then restart postgresql:"
+echo "$ systemctl restart postgresql"
+}


[arch-commits] Commit in timescaledb/trunk (PKGBUILD)

2021-03-18 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, March 19, 2021 @ 05:55:20
  Author: svenstaro
Revision: 894538

upgpkg: timescaledb 2.1.0-1

Modified:
  timescaledb/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-19 05:51:42 UTC (rev 894537)
+++ PKGBUILD2021-03-19 05:55:20 UTC (rev 894538)
@@ -12,15 +12,15 @@
 makedepends=('gcc' 'cmake')
 install=timescaledb.install
 
source=("https://github.com/timescale/timescaledb/releases/download/${pkgver}/timescaledb-${pkgver}.tar.lzma;)
-sha512sums=()
+sha512sums=('22c72b6ae6bafc37269168d42089816735ee812d0f3c53642ad453c89b984cabdc5ea5aeb10320ba12478e9baae5356c7984b773b61e18a2aed99c6657cda464')
 
 build() {
-cd "${srcdir}/${pkgname}-${pkgver}"
+cd "${pkgname}"
 ./bootstrap -DWARNINGS_AS_ERRORS=OFF -DREGRESS_CHECKS=OFF
 cd build && make
 }
 
 package() {
-cd "${srcdir}/${pkgname}-${pkgver}/build"
+cd "${pkgname}/build"
 make DESTDIR="$pkgdir/" install
 }


[arch-commits] Commit in (5 files)

2021-03-18 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, March 19, 2021 @ 05:51:42
  Author: svenstaro
Revision: 894537

Move timescaledb from AUR

Added:
  timescaledb/
  timescaledb/repos/
  timescaledb/trunk/
  timescaledb/trunk/PKGBUILD
  timescaledb/trunk/timescaledb.install

-+
 PKGBUILD|   26 ++
 timescaledb.install |   15 +++
 2 files changed, 41 insertions(+)

Added: timescaledb/trunk/PKGBUILD
===
--- timescaledb/trunk/PKGBUILD  (rev 0)
+++ timescaledb/trunk/PKGBUILD  2021-03-19 05:51:42 UTC (rev 894537)
@@ -0,0 +1,26 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Felix Fung 
+
+pkgname=timescaledb
+pkgver=2.1.0
+pkgrel=1
+pkgdesc="An open-source time-series database optimized for fast ingest and 
complex queries."
+arch=('x86_64')
+url="https://www.timescale.com/;
+license=('Apache')
+depends=('postgresql' 'postgresql-libs')
+makedepends=('gcc' 'cmake')
+install=timescaledb.install
+source=("https://github.com/timescale/timescaledb/releases/download/${pkgver}/timescaledb-${pkgver}.tar.lzma;)
+sha512sums=()
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+./bootstrap -DWARNINGS_AS_ERRORS=OFF -DREGRESS_CHECKS=OFF
+cd build && make
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}/build"
+make DESTDIR="$pkgdir/" install
+}

Added: timescaledb/trunk/timescaledb.install
===
--- timescaledb/trunk/timescaledb.install   (rev 0)
+++ timescaledb/trunk/timescaledb.install   2021-03-19 05:51:42 UTC (rev 
894537)
@@ -0,0 +1,15 @@
+post_install() {
+echo "To use TimescaleDB as PostgreSQL extension,"
+   echo "put in /var/lib/postgres/data/postgresql.conf:"
+   echo "'shared_preload_libraries = "timescaledb"'"
+echo "If multiple libraries are required, separate them with comma."
+echo "Then restart postgresql:"
+echo "$ systemctl restart postgresql"
+}
+
+post_remove() {
+echo "Remove 'timescaledb' from 'shared_preload_libraries'"
+echo "In /var/lib/postgres/data/postgresql.conf"
+echo "Then restart postgresql:"
+echo "$ systemctl restart postgresql"
+}


[arch-commits] Commit in nvidia/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2021-03-18 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, March 19, 2021 @ 05:44:07
  Author: svenstaro
Revision: 410260

archrelease: copy trunk to staging-x86_64

Added:
  nvidia/repos/staging-x86_64/
  nvidia/repos/staging-x86_64/PKGBUILD
(from rev 410259, nvidia/trunk/PKGBUILD)

--+
 PKGBUILD |   41 +
 1 file changed, 41 insertions(+)

Copied: nvidia/repos/staging-x86_64/PKGBUILD (from rev 410259, 
nvidia/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-03-19 05:44:07 UTC (rev 410260)
@@ -0,0 +1,41 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgname=nvidia
+pkgver=460.67
+pkgrel=1
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="https://www.nvidia.com/;
+makedepends=('linux-headers' "nvidia-dkms=$pkgver")
+provides=('NVIDIA-MODULE')
+license=('custom')
+options=('!strip')
+
+build() {
+_kernver=$(

[arch-commits] Commit in nvidia/trunk (PKGBUILD)

2021-03-18 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, March 19, 2021 @ 05:44:04
  Author: svenstaro
Revision: 410259

upgpkg: nvidia 460.67-1

Modified:
  nvidia/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-19 05:42:37 UTC (rev 410258)
+++ PKGBUILD2021-03-19 05:44:04 UTC (rev 410259)
@@ -4,7 +4,7 @@
 
 pkgname=nvidia
 pkgver=460.67
-pkgrel=7
+pkgrel=1
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="https://www.nvidia.com/;


[arch-commits] Commit in nvidia-settings/repos (3 files)

2021-03-18 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, March 19, 2021 @ 05:42:37
  Author: svenstaro
Revision: 410258

archrelease: copy trunk to staging-x86_64

Added:
  nvidia-settings/repos/staging-x86_64/
  nvidia-settings/repos/staging-x86_64/PKGBUILD
(from rev 410257, nvidia-settings/trunk/PKGBUILD)
  nvidia-settings/repos/staging-x86_64/libxnvctrl_so.patch
(from rev 410257, nvidia-settings/trunk/libxnvctrl_so.patch)

-+
 PKGBUILD|   62 ++
 libxnvctrl_so.patch |   36 +
 2 files changed, 98 insertions(+)

Copied: nvidia-settings/repos/staging-x86_64/PKGBUILD (from rev 410257, 
nvidia-settings/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-03-19 05:42:37 UTC (rev 410258)
@@ -0,0 +1,62 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Maintainer: Levente Polyak 
+
+pkgbase=nvidia-settings
+pkgname=('nvidia-settings' 'libxnvctrl')
+pkgver=460.67
+pkgrel=1
+pkgdesc='Tool for configuring the NVIDIA graphics driver'
+url='https://github.com/NVIDIA/nvidia-settings'
+arch=('x86_64')
+license=('GPL2')
+makedepends=('inetutils' 'jansson' 'gtk2' 'gtk3' 'libxv' 'libvdpau' 
'nvidia-utils' 'libxext')
+options=('staticlibs')
+source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/NVIDIA/nvidia-settings/archive/${pkgver}.tar.gz
+libxnvctrl_so.patch)
+sha512sums=('d1828379aa477394747ae3e5d3505e864d38a349dd159a04cb263613380afea9aea2081300b0d2b8ae205b800bfe6e8ba504e612989da394d757f00e4399b617'
+
'91ff94736063b911c83b8876fe3e3778db82e0ffe0102036d81a3a6e872ca44a585914646fcbbbe399cd63aa17685fc7f73263ec4f4084f48768ca4d704037fa')
+
+prepare() {
+  export PREFIX=/usr
+  export NV_USE_BUNDLED_LIBJANSSON=0
+  export OUTPUTDIR=out
+  cd ${pkgbase}-${pkgver}
+  patch -p0 < "${srcdir}/libxnvctrl_so.patch"
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  make
+  make -C src/libXNVCtrl
+}
+
+package_nvidia-settings() {
+  depends=('jansson' 'gtk3' 'libxv' 'libvdpau' 'nvidia-utils' 'libxnvctrl')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -D -m644 doc/nvidia-settings.desktop 
"${pkgdir}/usr/share/applications/nvidia-settings.desktop"
+  install -D -m644 doc/nvidia-settings.png 
"${pkgdir}/usr/share/pixmaps/nvidia-settings.png"
+  sed -e 's:__UTILS_PATH__:/usr/bin:' -e 
's:__PIXMAP_PATH__:/usr/share/pixmaps:' -e 
's/__NVIDIA_SETTINGS_DESKTOP_CATEGORIES__/Settings;HardwareSettings;/' -i 
"${pkgdir}/usr/share/applications/nvidia-settings.desktop"
+
+  rm "$pkgdir/usr/lib/libnvidia-gtk2.so.$pkgver"
+}
+
+package_libxnvctrl() {
+  depends=('libxext')
+  pkgdesc='NVIDIA NV-CONTROL X extension'
+  provides=('libXNVCtrl.so')
+
+  cd ${pkgbase}-${pkgver}
+  install -Dm 644 doc/{NV-CONTROL-API.txt,FRAMELOCK.txt} -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 samples/{Makefile,README,*.c,*.h,*.mk} -t 
"${pkgdir}/usr/share/doc/${pkgname}/samples"
+
+  cd src/libXNVCtrl
+  install -Dm 644 ./*.h -t "${pkgdir}/usr/include/NVCtrl"
+  install -d "${pkgdir}/usr/lib"
+  cp -Pr out/libXNVCtrl.* -t "${pkgdir}/usr/lib"
+}
+
+# vim: ts=2 sw=2 et:

Copied: nvidia-settings/repos/staging-x86_64/libxnvctrl_so.patch (from rev 
410257, nvidia-settings/trunk/libxnvctrl_so.patch)
===
--- staging-x86_64/libxnvctrl_so.patch  (rev 0)
+++ staging-x86_64/libxnvctrl_so.patch  2021-03-19 05:42:37 UTC (rev 410258)
@@ -0,0 +1,36 @@
+--- src/libXNVCtrl/Makefile2019-07-30 00:26:56.0 +0200
 src/libXNVCtrl/Makefile2019-08-02 14:08:56.963744238 +0200
+@@ -50,8 +50,8 @@
+ 
+ .PHONY: clean
+ 
+-all: $(LIBXNVCTRL)
++all: $(LIBXNVCTRL) $(LIBXNVCTRL_SHARED)
+ 
+ clean:
+-  rm -rf $(LIBXNVCTRL) *~ \
++  rm -rf $(LIBXNVCTRL) $(LIBXNVCTRL_SHARED)* *~ \
+   $(OUTPUTDIR)/*.o $(OUTPUTDIR)/*.d
+--- src/libXNVCtrl/xnvctrl.mk  2019-08-02 17:04:08.216230565 +0200
 src/libXNVCtrl/xnvctrl.mk  2019-08-02 17:08:02.563660632 +0200
+@@ -39,6 +39,11 @@
+ 
+ LIBXNVCTRL = $(OUTPUTDIR)/libXNVCtrl.a
+ 
++LIBXNVCTRL_SHARED = $(OUTPUTDIR)/libXNVCtrl.so
++LIBXNVCTRL_ABI_VERSION_MAJOR = 0
++LIBXNVCTRL_ABI_VERSION_MINOR = 0
++LIBXNVCTRL_LIBS += -lXext -lX11
++
+ LIBXNVCTRL_SRC = $(XNVCTRL_DIR)/NVCtrl.c
+ 
+ LIBXNVCTRL_OBJ = $(call BUILD_OBJECT_LIST,$(LIBXNVCTRL_SRC))
+@@ -47,3 +52,8 @@
+ 
+ $(LIBXNVCTRL) : $(LIBXNVCTRL_OBJ)
+   $(call quiet_cmd,AR) ru $@ $(LIBXNVCTRL_OBJ)
++
++$(LIBXNVCTRL_SHARED) : $(LIBXNVCTRL_OBJ)
++  $(CC) -shared $(CFLAGS) $(LDFLAGS) -Wl,-soname=$(notdir 
$@).${LIBXNVCTRL_ABI_VERSION_MAJOR} -o 
$@.$(LIBXNVCTRL_ABI_VERSION_MAJOR).$(LIBXNVCTRL_ABI_VERSION_MINOR).0 $^ 
$(LIBXNVCTRL_LIBS)
++  ln -s $(notdir 
$@).$(LIBXNVCTRL_ABI_VERSION_MAJOR).$(LIBXNVCTRL_ABI_VERSION_MINOR).0 $@
++  ln -s $(notdir 

[arch-commits] Commit in nvidia-settings/trunk (PKGBUILD)

2021-03-18 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, March 19, 2021 @ 05:42:33
  Author: svenstaro
Revision: 410257

upgpkg: nvidia-settings 460.67-1

Modified:
  nvidia-settings/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-19 05:42:25 UTC (rev 410256)
+++ PKGBUILD2021-03-19 05:42:33 UTC (rev 410257)
@@ -4,7 +4,7 @@
 
 pkgbase=nvidia-settings
 pkgname=('nvidia-settings' 'libxnvctrl')
-pkgver=460.56
+pkgver=460.67
 pkgrel=1
 pkgdesc='Tool for configuring the NVIDIA graphics driver'
 url='https://github.com/NVIDIA/nvidia-settings'
@@ -14,7 +14,7 @@
 options=('staticlibs')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/NVIDIA/nvidia-settings/archive/${pkgver}.tar.gz
 libxnvctrl_so.patch)
-sha512sums=('a4dd13bf0c384788984f322db5af4cf5547c3a3cfb44e97c160ed39042610441ef59e374fa7f986b89b7c148a32f975b32d7afeefe8f9d766b55f5b88572'
+sha512sums=('d1828379aa477394747ae3e5d3505e864d38a349dd159a04cb263613380afea9aea2081300b0d2b8ae205b800bfe6e8ba504e612989da394d757f00e4399b617'
 
'91ff94736063b911c83b8876fe3e3778db82e0ffe0102036d81a3a6e872ca44a585914646fcbbbe399cd63aa17685fc7f73263ec4f4084f48768ca4d704037fa')
 
 prepare() {


[arch-commits] Commit in nvidia-lts/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2021-03-18 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, March 19, 2021 @ 05:42:25
  Author: svenstaro
Revision: 410256

archrelease: copy trunk to staging-x86_64

Added:
  nvidia-lts/repos/staging-x86_64/
  nvidia-lts/repos/staging-x86_64/PKGBUILD
(from rev 410255, nvidia-lts/trunk/PKGBUILD)

--+
 PKGBUILD |   39 +++
 1 file changed, 39 insertions(+)

Copied: nvidia-lts/repos/staging-x86_64/PKGBUILD (from rev 410255, 
nvidia-lts/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-03-19 05:42:25 UTC (rev 410256)
@@ -0,0 +1,39 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Eric Bélanger 
+
+pkgname=nvidia-lts
+pkgver=460.67
+pkgrel=1
+epoch=1
+pkgdesc="NVIDIA drivers for linux-lts"
+arch=('x86_64')
+url="https://www.nvidia.com/;
+makedepends=('linux-lts-headers' "nvidia-dkms=$pkgver")
+provides=('NVIDIA-MODULE')
+license=('custom')
+options=('!strip')
+
+build() {
+_kernver=$(

[arch-commits] Commit in nvidia-lts/trunk (PKGBUILD)

2021-03-18 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, March 19, 2021 @ 05:42:22
  Author: svenstaro
Revision: 410255

upgpkg: nvidia-lts 1:460.67-1

Modified:
  nvidia-lts/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-19 05:40:36 UTC (rev 410254)
+++ PKGBUILD2021-03-19 05:42:22 UTC (rev 410255)
@@ -2,8 +2,8 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=nvidia-lts
-pkgver=460.56
-pkgrel=8
+pkgver=460.67
+pkgrel=1
 epoch=1
 pkgdesc="NVIDIA drivers for linux-lts"
 arch=('x86_64')


[arch-commits] Commit in nvidia/trunk (PKGBUILD)

2021-03-18 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, March 19, 2021 @ 05:40:36
  Author: svenstaro
Revision: 410254

upgpkg: nvidia 460.67-7

Modified:
  nvidia/trunk/PKGBUILD

--+
 PKGBUILD |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-19 05:35:21 UTC (rev 410253)
+++ PKGBUILD2021-03-19 05:40:36 UTC (rev 410254)
@@ -3,7 +3,7 @@
 # Contributor: Thomas Baechler 
 
 pkgname=nvidia
-pkgver=460.56
+pkgver=460.67
 pkgrel=7
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
@@ -37,3 +37,5 @@
 /usr/share/licenses/nvidia-dkms/LICENSE
 }
 
+
+


[arch-commits] Commit in lib32-nvidia-utils/repos (2 files)

2021-03-18 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, March 19, 2021 @ 05:36:06
  Author: svenstaro
Revision: 894535

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-nvidia-utils/repos/multilib-staging-x86_64/
  lib32-nvidia-utils/repos/multilib-staging-x86_64/PKGBUILD
(from rev 894534, lib32-nvidia-utils/trunk/PKGBUILD)

--+
 PKGBUILD |  101 +
 1 file changed, 101 insertions(+)

Copied: lib32-nvidia-utils/repos/multilib-staging-x86_64/PKGBUILD (from rev 
894534, lib32-nvidia-utils/trunk/PKGBUILD)
===
--- multilib-staging-x86_64/PKGBUILD(rev 0)
+++ multilib-staging-x86_64/PKGBUILD2021-03-19 05:36:06 UTC (rev 894535)
@@ -0,0 +1,101 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Thomas Baechler 
+# Contributor: James Rayner 
+
+_pkgbasename=nvidia-utils
+pkgbase=lib32-$_pkgbasename
+pkgname=('lib32-nvidia-utils' 'lib32-opencl-nvidia')
+pkgver=460.67
+pkgrel=1
+arch=('x86_64')
+url="http://www.nvidia.com/;
+#makedepends=('nvidia-libgl')  # To avoid conflict during installation in the 
build chroot
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}"
+source=("https://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;)
+sha512sums=('80fdc023a8ce80e3a103896f28a5564bb43903af6bfc719f755c48eb225e79ec6abf219ab20eb80ada5808ef932ef5fa0fe710c6e0a07dd8a248daff2ba3b898')
+
+create_links() {
+# create soname links
+for _lib in $(find "${pkgdir}" -name '*.so*' | grep -v 'xorg/'); do
+_soname=$(dirname "${_lib}")/$(readelf -d "${_lib}" | grep -Po 
'SONAME.*: \[\K[^]]*' || true)
+_base=$(echo ${_soname} | sed -r 's/(.*).so.*/\1.so/')
+[[ -e "${_soname}" ]] || ln -s $(basename "${_lib}") "${_soname}"
+[[ -e "${_base}" ]] || ln -s $(basename "${_soname}") "${_base}"
+done
+}
+
+build() {
+sh ${_pkg}.run --extract-only
+}
+
+package_lib32-opencl-nvidia() {
+pkgdesc="OpenCL implemention for NVIDIA (32-bit)"
+depends=('lib32-zlib' 'lib32-gcc-libs')
+optdepends=('opencl-headers: headers necessary for OpenCL development')
+provides=('lib32-opencl-driver')
+
+cd "${_pkg}"/32
+
+# OpenCL
+install -D -m755 "libnvidia-compiler.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-compiler.so.${pkgver}"
+install -D -m755 "libnvidia-opencl.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-opencl.so.${pkgver}"
+
+create_links
+
+mkdir -p "${pkgdir}/usr/share/licenses"
+ln -s $_pkgbasename "${pkgdir}/usr/share/licenses/lib32-opencl-nvidia"
+}
+
+package_lib32-nvidia-utils() {
+pkgdesc="NVIDIA drivers utilities (32-bit)"
+depends=('lib32-zlib' 'lib32-gcc-libs' 'lib32-libglvnd' 'nvidia-utils')
+optdepends=('lib32-opencl-nvidia')
+conflicts=('lib32-nvidia-libgl')
+provides=('lib32-vulkan-driver' 'lib32-opengl-driver' 'lib32-nvidia-libgl')
+replaces=('lib32-nvidia-libgl')
+
+cd "${_pkg}"/32
+
+install -D -m755 "libGLX_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib32/libGLX_nvidia.so.${pkgver}"
+
+# OpenGL libraries
+install -D -m755 "libEGL_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib32/libEGL_nvidia.so.${pkgver}"
+install -D -m755 "libGLESv1_CM_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib32/libGLESv1_CM_nvidia.so.${pkgver}"
+install -D -m755 "libGLESv2_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib32/libGLESv2_nvidia.so.${pkgver}"
+
+# OpenGL core library
+install -D -m755 "libnvidia-glcore.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-glcore.so.${pkgver}"
+install -D -m755 "libnvidia-eglcore.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-eglcore.so.${pkgver}"
+install -D -m755 "libnvidia-glsi.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-glsi.so.${pkgver}"
+
+# misc
+install -D -m755 "libnvidia-ifr.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-ifr.so.${pkgver}"
+install -D -m755 "libnvidia-fbc.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-fbc.so.${pkgver}"
+install -D -m755 "libnvidia-encode.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-encode.so.${pkgver}"
+install -D -m755 "libnvidia-ml.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-ml.so.${pkgver}"
+install -D -m755 "libnvidia-glvkspirv.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-glvkspirv.so.${pkgver}"
+
+# VDPAU
+install -D -m755 "libvdpau_nvidia.so.${pkgver}" 
"${pkgdir}/usr/lib32/vdpau/libvdpau_nvidia.so.${pkgver}"
+
+# nvidia-tls library
+install -D -m755 "libnvidia-tls.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvidia-tls.so.${pkgver}"
+
+# CUDA
+install -D -m755 "libcuda.so.${pkgver}" 
"${pkgdir}/usr/lib32/libcuda.so.${pkgver}"
+install -D -m755 "libnvcuvid.so.${pkgver}" 
"${pkgdir}/usr/lib32/libnvcuvid.so.${pkgver}"
+
+# PTX JIT Compiler (Parallel Thread Execution (PTX) is a pseudo-assembly 
language for CUDA)
+install -D -m755 "libnvidia-ptxjitcompiler.so.${pkgver}" 

[arch-commits] Commit in lib32-nvidia-utils/trunk (PKGBUILD)

2021-03-18 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, March 19, 2021 @ 05:36:02
  Author: svenstaro
Revision: 894534

upgpkg: lib32-nvidia-utils 460.67-1

Modified:
  lib32-nvidia-utils/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-19 01:51:02 UTC (rev 894533)
+++ PKGBUILD2021-03-19 05:36:02 UTC (rev 894534)
@@ -5,7 +5,7 @@
 _pkgbasename=nvidia-utils
 pkgbase=lib32-$_pkgbasename
 pkgname=('lib32-nvidia-utils' 'lib32-opencl-nvidia')
-pkgver=460.56
+pkgver=460.67
 pkgrel=1
 arch=('x86_64')
 url="http://www.nvidia.com/;
@@ -14,7 +14,7 @@
 options=('!strip')
 _pkg="NVIDIA-Linux-x86_64-${pkgver}"
 
source=("https://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;)
-sha512sums=('a61855576a27cdd2e48906ecb49cd1e9f88d14a8358aa4bdc57d59e2dfa64b394b2dcee45184d75e889fac6ebedcaaff902a07428c7f9eb011cf265228c6eb4e')
+sha512sums=('80fdc023a8ce80e3a103896f28a5564bb43903af6bfc719f755c48eb225e79ec6abf219ab20eb80ada5808ef932ef5fa0fe710c6e0a07dd8a248daff2ba3b898')
 
 create_links() {
 # create soname links


[arch-commits] Commit in nvidia-utils/repos (5 files)

2021-03-18 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, March 19, 2021 @ 05:35:21
  Author: svenstaro
Revision: 410253

archrelease: copy trunk to staging-x86_64

Added:
  nvidia-utils/repos/staging-x86_64/
  nvidia-utils/repos/staging-x86_64/PKGBUILD
(from rev 410252, nvidia-utils/trunk/PKGBUILD)
  nvidia-utils/repos/staging-x86_64/nvidia-drm-outputclass.conf
(from rev 410252, nvidia-utils/trunk/nvidia-drm-outputclass.conf)
  nvidia-utils/repos/staging-x86_64/nvidia-utils.install
(from rev 410252, nvidia-utils/trunk/nvidia-utils.install)
  nvidia-utils/repos/staging-x86_64/nvidia-utils.sysusers
(from rev 410252, nvidia-utils/trunk/nvidia-utils.sysusers)

-+
 PKGBUILD|  210 ++
 nvidia-drm-outputclass.conf |8 +
 nvidia-utils.install|7 +
 nvidia-utils.sysusers   |1 
 4 files changed, 226 insertions(+)

Copied: nvidia-utils/repos/staging-x86_64/PKGBUILD (from rev 410252, 
nvidia-utils/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-03-19 05:35:21 UTC (rev 410253)
@@ -0,0 +1,210 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Thomas Baechler 
+# Contributor: James Rayner 
+
+pkgbase=nvidia-utils
+pkgname=('nvidia-utils' 'opencl-nvidia' 'nvidia-dkms')
+pkgver=460.67
+pkgrel=1
+arch=('x86_64')
+url="http://www.nvidia.com/;
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}"
+source=('nvidia-drm-outputclass.conf'
+'nvidia-utils.sysusers'
+
"https://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;)
+sha512sums=('de7116c09f282a27920a1382df84aa86f559e537664bb30689605177ce37dc5067748acf9afd66a3269a6e323461356592fdfc624c86523bf105ff8fe47d3770'
+
'4b3ad73f5076ba90fe0b3a2e712ac9cde76f469cd8070280f960c3ce7dc502d1927f525ae18d008075c8f08ea432f7be0a6c3a7a6b49c361126dcf42f97ec499'
+
'80fdc023a8ce80e3a103896f28a5564bb43903af6bfc719f755c48eb225e79ec6abf219ab20eb80ada5808ef932ef5fa0fe710c6e0a07dd8a248daff2ba3b898')
+
+
+create_links() {
+# create soname links
+find "$pkgdir" -type f -name '*.so*' ! -path '*xorg/*' -print0 | while 
read -d $'\0' _lib; do
+_soname=$(dirname "${_lib}")/$(readelf -d "${_lib}" | grep -Po 
'SONAME.*: \[\K[^]]*' || true)
+_base=$(echo ${_soname} | sed -r 's/(.*).so.*/\1.so/')
+[[ -e "${_soname}" ]] || ln -s $(basename "${_lib}") "${_soname}"
+[[ -e "${_base}" ]] || ln -s $(basename "${_soname}") "${_base}"
+done
+}
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+bsdtar -xf nvidia-persistenced-init.tar.bz2
+
+cd kernel
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[2]="nvidia-modeset"\
+DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[3]="nvidia-drm"\
+DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
+
+# Gift for linux-rt guys
+sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
+}
+
+package_opencl-nvidia() {
+pkgdesc="OpenCL implemention for NVIDIA"
+depends=('zlib')
+optdepends=('opencl-headers: headers necessary for OpenCL development')
+provides=('opencl-driver')
+cd "${_pkg}"
+
+# OpenCL
+install -D -m644 nvidia.icd "${pkgdir}/etc/OpenCL/vendors/nvidia.icd"
+install -D -m755 "libnvidia-compiler.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-compiler.so.${pkgver}"
+install -D -m755 "libnvidia-opencl.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-opencl.so.${pkgver}"
+
+create_links
+
+mkdir -p "${pkgdir}/usr/share/licenses"
+ln -s nvidia-utils "${pkgdir}/usr/share/licenses/opencl-nvidia"
+}
+
+package_nvidia-dkms() {
+pkgdesc="NVIDIA drivers - module sources"
+depends=('dkms' "nvidia-utils=$pkgver" 'libglvnd')
+provides=('NVIDIA-MODULE')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}
+
+package_nvidia-utils() {
+pkgdesc="NVIDIA drivers utilities"
+depends=('xorg-server' 'libglvnd' 'egl-wayland')
+optdepends=('nvidia-settings: configuration tool'
+'xorg-server-devel: nvidia-xconfig'
+'opencl-nvidia: OpenCL support')
+conflicts=('nvidia-libgl')
+provides=('vulkan-driver' 'opengl-driver' 'nvidia-libgl')
+

[arch-commits] Commit in nvidia-utils/trunk (PKGBUILD)

2021-03-18 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, March 19, 2021 @ 05:35:14
  Author: svenstaro
Revision: 410252

upgpkg: nvidia-utils 460.67-1

Modified:
  nvidia-utils/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 23:15:11 UTC (rev 410251)
+++ PKGBUILD2021-03-19 05:35:14 UTC (rev 410252)
@@ -4,7 +4,7 @@
 
 pkgbase=nvidia-utils
 pkgname=('nvidia-utils' 'opencl-nvidia' 'nvidia-dkms')
-pkgver=460.56
+pkgver=460.67
 pkgrel=1
 arch=('x86_64')
 url="http://www.nvidia.com/;
@@ -16,7 +16,7 @@
 
"https://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;)
 
sha512sums=('de7116c09f282a27920a1382df84aa86f559e537664bb30689605177ce37dc5067748acf9afd66a3269a6e323461356592fdfc624c86523bf105ff8fe47d3770'
 
'4b3ad73f5076ba90fe0b3a2e712ac9cde76f469cd8070280f960c3ce7dc502d1927f525ae18d008075c8f08ea432f7be0a6c3a7a6b49c361126dcf42f97ec499'
-
'a61855576a27cdd2e48906ecb49cd1e9f88d14a8358aa4bdc57d59e2dfa64b394b2dcee45184d75e889fac6ebedcaaff902a07428c7f9eb011cf265228c6eb4e')
+
'80fdc023a8ce80e3a103896f28a5564bb43903af6bfc719f755c48eb225e79ec6abf219ab20eb80ada5808ef932ef5fa0fe710c6e0a07dd8a248daff2ba3b898')
 
 
 create_links() {


[arch-commits] Commit in python-flake8-docstrings/repos/community-any (2 files)

2021-03-18 Thread Daniel M. Capella via arch-commits
Date: Friday, March 19, 2021 @ 01:51:02
  Author: polyzen
Revision: 894533

archrelease: copy trunk to community-any

Added:
  python-flake8-docstrings/repos/community-any/PKGBUILD
(from rev 894532, python-flake8-docstrings/trunk/PKGBUILD)
Deleted:
  python-flake8-docstrings/repos/community-any/PKGBUILD

--+
 PKGBUILD |   74 ++---
 1 file changed, 37 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-19 01:50:31 UTC (rev 894532)
+++ PKGBUILD2021-03-19 01:51:02 UTC (rev 894533)
@@ -1,37 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Pieter Goetschalckx <3.14.e.ter  gmail  com>
-
-_name=flake8-docstrings
-pkgname=python-flake8-docstrings
-pkgver=1.5.0
-pkgrel=4
-pkgdesc='Plugin to Flake8 to include checks provided by pydocstyle'
-arch=('any')
-url=https://gitlab.com/pycqa/flake8-docstrings
-license=('MIT')
-depends=('flake8' 'python-pydocstyle')
-makedepends=('python-setuptools')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('3d5a31c7ec6b7367ea6506a87ec293b94a0a46c0bce2bb4975b7f1d09b6f3717')
-b2sums=('f78d3604ee842f45637e53d6420910f1cdc611607883af918a753faa6e4ee020d4248c896fafda1f6d0515a2a3b33ab32ea159618f8524c03cd92ab55f17')
-
-build() {
-  cd $_name-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_name-$pkgver
-  mkdir -p temp
-  local sitepackages=$(python -c "import site; 
print(site.getsitepackages()[0])")
-  python setup.py install --skip-build --root=temp
-  PATH="$PWD/temp/usr/bin:$PATH" PYTHONPATH="$PWD/temp/$sitepackages" flake8 
--exit-zero flake8_docstrings.py
-}
-
-package() {
-  cd $_name-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-flake8-docstrings/repos/community-any/PKGBUILD (from rev 894532, 
python-flake8-docstrings/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-19 01:51:02 UTC (rev 894533)
@@ -0,0 +1,37 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Pieter Goetschalckx <3.14.e.ter  gmail  com>
+
+_name=flake8-docstrings
+pkgname=python-flake8-docstrings
+pkgver=1.6.0
+pkgrel=1
+pkgdesc='Plugin to Flake8 to include checks provided by pydocstyle'
+arch=('any')
+url=https://gitlab.com/pycqa/flake8-docstrings
+license=('MIT')
+depends=('flake8' 'python-pydocstyle')
+makedepends=('python-setuptools')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
+sha256sums=('9fe7c6a306064af8e62a055c2f61e9eb1da55f84bb39caef2b84ce53708ac34b')
+b2sums=('ee147e27f226675a2a59375b9e7812d111a34bef1bc35843096f8e7ca9cd94ac805ca49a8d83d1f6d7a78dbf6338a0a1270d668b51775a2b91ad7c3172ad41da')
+
+build() {
+  cd $_name-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_name-$pkgver
+  mkdir -p temp
+  local sitepackages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  python setup.py install --skip-build --root=temp
+  PATH="$PWD/temp/usr/bin:$PATH" PYTHONPATH="$PWD/temp/$sitepackages" flake8 
flake8_docstrings.py
+}
+
+package() {
+  cd $_name-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in python-flake8-docstrings/trunk (PKGBUILD)

2021-03-18 Thread Daniel M. Capella via arch-commits
Date: Friday, March 19, 2021 @ 01:50:31
  Author: polyzen
Revision: 894532

upgpkg: python-flake8-docstrings 1.6.0-1

Modified:
  python-flake8-docstrings/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 23:48:39 UTC (rev 894531)
+++ PKGBUILD2021-03-19 01:50:31 UTC (rev 894532)
@@ -3,8 +3,8 @@
 
 _name=flake8-docstrings
 pkgname=python-flake8-docstrings
-pkgver=1.5.0
-pkgrel=4
+pkgver=1.6.0
+pkgrel=1
 pkgdesc='Plugin to Flake8 to include checks provided by pydocstyle'
 arch=('any')
 url=https://gitlab.com/pycqa/flake8-docstrings
@@ -12,8 +12,8 @@
 depends=('flake8' 'python-pydocstyle')
 makedepends=('python-setuptools')
 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('3d5a31c7ec6b7367ea6506a87ec293b94a0a46c0bce2bb4975b7f1d09b6f3717')
-b2sums=('f78d3604ee842f45637e53d6420910f1cdc611607883af918a753faa6e4ee020d4248c896fafda1f6d0515a2a3b33ab32ea159618f8524c03cd92ab55f17')
+sha256sums=('9fe7c6a306064af8e62a055c2f61e9eb1da55f84bb39caef2b84ce53708ac34b')
+b2sums=('ee147e27f226675a2a59375b9e7812d111a34bef1bc35843096f8e7ca9cd94ac805ca49a8d83d1f6d7a78dbf6338a0a1270d668b51775a2b91ad7c3172ad41da')
 
 build() {
   cd $_name-$pkgver
@@ -25,7 +25,7 @@
   mkdir -p temp
   local sitepackages=$(python -c "import site; 
print(site.getsitepackages()[0])")
   python setup.py install --skip-build --root=temp
-  PATH="$PWD/temp/usr/bin:$PATH" PYTHONPATH="$PWD/temp/$sitepackages" flake8 
--exit-zero flake8_docstrings.py
+  PATH="$PWD/temp/usr/bin:$PATH" PYTHONPATH="$PWD/temp/$sitepackages" flake8 
flake8_docstrings.py
 }
 
 package() {


[arch-commits] Commit in yggdrasil/repos/community-x86_64 (4 files)

2021-03-18 Thread Kpcyrd via arch-commits
Date: Thursday, March 18, 2021 @ 23:48:39
  Author: kpcyrd
Revision: 894531

archrelease: copy trunk to community-x86_64

Added:
  yggdrasil/repos/community-x86_64/PKGBUILD
(from rev 894530, yggdrasil/trunk/PKGBUILD)
  yggdrasil/repos/community-x86_64/yggdrasil.sysusers
(from rev 894530, yggdrasil/trunk/yggdrasil.sysusers)
Deleted:
  yggdrasil/repos/community-x86_64/PKGBUILD
  yggdrasil/repos/community-x86_64/yggdrasil.sysusers

+
 PKGBUILD   |   78 +--
 yggdrasil.sysusers |4 +-
 2 files changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-18 23:48:05 UTC (rev 894530)
+++ PKGBUILD2021-03-18 23:48:39 UTC (rev 894531)
@@ -1,39 +0,0 @@
-# Maintainer: kpcyrd 
-# Contributor: Knut Ahlers 
-
-pkgname=yggdrasil
-pkgver=0.3.15
-pkgrel=2
-pkgdesc="An experiment in scalable routing as an encrypted IPv6 overlay 
network"
-arch=('x86_64')
-url="https://github.com/yggdrasil-network/yggdrasil-go;
-license=('LGPL3')
-depends=('glibc')
-makedepends=('go')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/yggdrasil-network/yggdrasil-go/archive/v${pkgver}.tar.gz;
-'yggdrasil.sysusers')
-sha512sums=('1b59fecfa210a3d8d41776e4cb4b5399121e820389a64f4f1df893a9c537b67b1a26ca68c735fcae3208f24163ac809fa278f2ee2a1102c88145fdb6ac4c9db4'
-
'b78d1f5efeeba184588ba7bdb2249d976aec160daa59742e032983da1aedad062d15c7c97cba3eba69412a0f7904ee123d98b58f859892d71188c25624295c32')
-b2sums=('8375a6f731ec175b98d68155c1cabb3af7bc3dd6efee93701bd74acbc5ef2a6a724284abb99792ecb65e423b66a47d6f291f19f287e220435000115689b3fcd7'
-
'3cf5bfb3c09908f841b39f7206bb472e50e60f10d1b87ab6def97a7212e27627f1e795bbaffd964d2d27a80fbbd1a3be63d63c59793ec1967c02f48b8462c08b')
-
-build() {
-  cd "${pkgname}-go-${pkgver}"
-  PKGNAME="${pkgname}" PKGVER="${pkgver}" \
-CGO_LDFLAGS="${LDFLAGS}" \
-GOFLAGS="-trimpath -buildmode=pie -mod=readonly" \
-./build -l "-linkmode external -extldflags \"${LDFLAGS}\""
-}
-
-package() {
-  cd "${pkgname}-go-${pkgver}"
-  install -Dm755 "yggdrasil" "${pkgdir}/usr/bin/yggdrasil"
-  install -Dm755 "yggdrasilctl" "${pkgdir}/usr/bin/yggdrasilctl"
-  install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm644 -t "${pkgdir}/usr/lib/systemd/system" \
-contrib/systemd/yggdrasil.service \
-contrib/systemd/yggdrasil-default-config.service
-  install -Dm644 "${srcdir}/yggdrasil.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/yggdrasil.conf"
-}
-
-# vim: ts=2 sw=2 et:

Copied: yggdrasil/repos/community-x86_64/PKGBUILD (from rev 894530, 
yggdrasil/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-18 23:48:39 UTC (rev 894531)
@@ -0,0 +1,39 @@
+# Maintainer: kpcyrd 
+# Contributor: Knut Ahlers 
+
+pkgname=yggdrasil
+pkgver=0.3.16
+pkgrel=1
+pkgdesc="An experiment in scalable routing as an encrypted IPv6 overlay 
network"
+arch=('x86_64')
+url="https://github.com/yggdrasil-network/yggdrasil-go;
+license=('LGPL3')
+depends=('glibc')
+makedepends=('go')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/yggdrasil-network/yggdrasil-go/archive/v${pkgver}.tar.gz;
+'yggdrasil.sysusers')
+sha512sums=('4f0d629854baa36c1b224081283e49cd364aec6b9a81fa1fe7e6adc9a207a0d384467d68cebabab8c42258363c50fb8b2a7b7764cc3ab8e2848cfc99dc1f019e'
+
'b78d1f5efeeba184588ba7bdb2249d976aec160daa59742e032983da1aedad062d15c7c97cba3eba69412a0f7904ee123d98b58f859892d71188c25624295c32')
+b2sums=('5987d45545b749f9be5f44973e0797b7a0c12d029dec3d48d966f86c14fc4ceea3ef9ebc954e377106f7ad8f685ba93a43264c6aa559a71975754a3439ddb021'
+
'3cf5bfb3c09908f841b39f7206bb472e50e60f10d1b87ab6def97a7212e27627f1e795bbaffd964d2d27a80fbbd1a3be63d63c59793ec1967c02f48b8462c08b')
+
+build() {
+  cd "${pkgname}-go-${pkgver}"
+  PKGNAME="${pkgname}" PKGVER="${pkgver}" \
+CGO_LDFLAGS="${LDFLAGS}" \
+GOFLAGS="-trimpath -buildmode=pie -mod=readonly" \
+./build -l "-linkmode external -extldflags \"${LDFLAGS}\""
+}
+
+package() {
+  cd "${pkgname}-go-${pkgver}"
+  install -Dm755 "yggdrasil" "${pkgdir}/usr/bin/yggdrasil"
+  install -Dm755 "yggdrasilctl" "${pkgdir}/usr/bin/yggdrasilctl"
+  install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm644 -t "${pkgdir}/usr/lib/systemd/system" \
+contrib/systemd/yggdrasil.service \
+contrib/systemd/yggdrasil-default-config.service
+  install -Dm644 "${srcdir}/yggdrasil.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/yggdrasil.conf"
+}
+
+# vim: ts=2 sw=2 et:

Deleted: yggdrasil.sysusers
===
--- yggdrasil.sysusers  2021-03-18 23:48:05 UTC (rev 894530)
+++ yggdrasil.sysusers  2021-03-18 23:48:39 UTC (rev 894531)
@@ -1,2 +0,0 @@
-#Type Name  ID  GECOS

[arch-commits] Commit in yggdrasil/trunk (PKGBUILD)

2021-03-18 Thread Kpcyrd via arch-commits
Date: Thursday, March 18, 2021 @ 23:48:05
  Author: kpcyrd
Revision: 894530

upgpkg: yggdrasil 0.3.16-1

Modified:
  yggdrasil/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 23:15:11 UTC (rev 894529)
+++ PKGBUILD2021-03-18 23:48:05 UTC (rev 894530)
@@ -2,8 +2,8 @@
 # Contributor: Knut Ahlers 
 
 pkgname=yggdrasil
-pkgver=0.3.15
-pkgrel=2
+pkgver=0.3.16
+pkgrel=1
 pkgdesc="An experiment in scalable routing as an encrypted IPv6 overlay 
network"
 arch=('x86_64')
 url="https://github.com/yggdrasil-network/yggdrasil-go;
@@ -12,9 +12,9 @@
 makedepends=('go')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/yggdrasil-network/yggdrasil-go/archive/v${pkgver}.tar.gz;
 'yggdrasil.sysusers')
-sha512sums=('1b59fecfa210a3d8d41776e4cb4b5399121e820389a64f4f1df893a9c537b67b1a26ca68c735fcae3208f24163ac809fa278f2ee2a1102c88145fdb6ac4c9db4'
+sha512sums=('4f0d629854baa36c1b224081283e49cd364aec6b9a81fa1fe7e6adc9a207a0d384467d68cebabab8c42258363c50fb8b2a7b7764cc3ab8e2848cfc99dc1f019e'
 
'b78d1f5efeeba184588ba7bdb2249d976aec160daa59742e032983da1aedad062d15c7c97cba3eba69412a0f7904ee123d98b58f859892d71188c25624295c32')
-b2sums=('8375a6f731ec175b98d68155c1cabb3af7bc3dd6efee93701bd74acbc5ef2a6a724284abb99792ecb65e423b66a47d6f291f19f287e220435000115689b3fcd7'
+b2sums=('5987d45545b749f9be5f44973e0797b7a0c12d029dec3d48d966f86c14fc4ceea3ef9ebc954e377106f7ad8f685ba93a43264c6aa559a71975754a3439ddb021'
 
'3cf5bfb3c09908f841b39f7206bb472e50e60f10d1b87ab6def97a7212e27627f1e795bbaffd964d2d27a80fbbd1a3be63d63c59793ec1967c02f48b8462c08b')
 
 build() {


[arch-commits] Commit in nss/repos (4 files)

2021-03-18 Thread Jan Steffens via arch-commits
Date: Thursday, March 18, 2021 @ 23:15:11
  Author: heftig
Revision: 410251

archrelease: copy trunk to testing-x86_64

Added:
  nss/repos/testing-x86_64/
  nss/repos/testing-x86_64/PKGBUILD
(from rev 410250, nss/trunk/PKGBUILD)
  nss/repos/testing-x86_64/bundle.sh
(from rev 410250, nss/trunk/bundle.sh)
  nss/repos/testing-x86_64/certdata2pem.py
(from rev 410250, nss/trunk/certdata2pem.py)

-+
 PKGBUILD|   96 
 bundle.sh   |   22 ++
 certdata2pem.py |  413 ++
 3 files changed, 531 insertions(+)

Copied: nss/repos/testing-x86_64/PKGBUILD (from rev 410250, nss/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-03-18 23:15:11 UTC (rev 410251)
@@ -0,0 +1,96 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgbase=nss
+pkgname=(nss ca-certificates-mozilla)
+pkgver=3.63
+pkgrel=1
+pkgdesc="Network Security Services"
+url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS;
+arch=(x86_64)
+license=(MPL GPL)
+depends=(nspr sqlite zlib sh 'p11-kit>=0.23.19')
+makedepends=(perl python gyp)
+source=("https://ftp.mozilla.org/pub/security/nss/releases/NSS_${pkgver//./_}_RTM/src/nss-${pkgver}.tar.gz;
+certdata2pem.py bundle.sh)
+sha256sums=('182d2fef629102ae9423aabf2c192242b565cf5098e82c5a26cf70c5e4ea2221'
+'d2a1579dae05fd16175fac27ef08b54731ecefdf414085c610179afcf62b096c'
+'3bfadf722da6773bdabdd25bdf78158648043d1b7e57615574f189a88ca865dd')
+
+prepare() {
+  cd nss-$pkgver/nss
+
+  mkdir "$srcdir/certs"
+  ln -srt "$srcdir/certs" lib/ckfw/builtins/{certdata.txt,nssckbi.h}
+}
+
+build() {
+  cd certs
+  ../certdata2pem.py
+
+  cd ..
+  ./bundle.sh
+
+  cd nss-$pkgver/nss
+  ./build.sh \
+--target x64 \
+--opt \
+--system-sqlite \
+--system-nspr \
+--enable-libpkix \
+--disable-tests
+}
+
+package_nss() {
+  cd nss-$pkgver
+
+  local libdir=/usr/lib nsprver="$(pkg-config --modversion nspr)"
+  sed nss/pkg/pkg-config/nss.pc.in \
+-e "s,%libdir%,$libdir,g" \
+-e "s,%prefix%,/usr,g" \
+-e "s,%exec_prefix%,/usr/bin,g" \
+-e "s,%includedir%,/usr/include/nss,g" \
+-e "s,%NSPR_VERSION%,$nsprver,g" \
+-e "s,%NSS_VERSION%,$pkgver,g" |
+install -Dm644 /dev/stdin "$pkgdir$libdir/pkgconfig/nss.pc"
+
+  ln -s nss.pc "$pkgdir$libdir/pkgconfig/mozilla-nss.pc"
+
+  install -Dt "$pkgdir$libdir" dist/Release/lib/*.so
+
+  local vmajor vminor vpatch
+  { read vmajor; read vminor; read vpatch; } \
+< <(awk '/#define.*NSS_V(MAJOR|MINOR|PATCH)/ {print $3}' nss/lib/nss/nss.h)
+
+  sed nss/pkg/pkg-config/nss-config.in \
+-e "s,@libdir@,$libdir,g" \
+-e "s,@prefix@,/usr/bin,g" \
+-e "s,@exec_prefix@,/usr/bin,g" \
+-e "s,@includedir@,/usr/include/nss,g" \
+-e "s,@MOD_MAJOR_VERSION@,$vmajor,g" \
+-e "s,@MOD_MINOR_VERSION@,$vminor,g" \
+-e "s,@MOD_PATCH_VERSION@,$vpatch,g" |
+install -D /dev/stdin "$pkgdir/usr/bin/nss-config"
+
+  install -Dt "$pkgdir/usr/bin" \
+dist/Release/bin/{*util,shlibsign,signtool,signver,ssltap}
+
+  install -Dt "$pkgdir/usr/include/nss" -m644 dist/public/nss/*.h
+
+  install -Dt "$pkgdir/usr/share/man/man1" -m644 \
+nss/doc/nroff/{*util,signtool,signver,ssltap}.1
+
+  # Replace built-in trust with p11-kit connection
+  ln -s pkcs11/p11-kit-trust.so "$pkgdir$libdir/p11-kit-trust.so"
+  ln -sf p11-kit-trust.so "$pkgdir$libdir/libnssckbi.so"
+}
+
+package_ca-certificates-mozilla() {
+  pkgdesc="Mozilla's set of trusted CA certificates"
+  depends=('ca-certificates-utils>=20181109-3')
+
+  install -Dm644 ca-bundle.trust.p11-kit \
+"$pkgdir/usr/share/ca-certificates/trust-source/mozilla.trust.p11-kit"
+}
+
+# vim:set sw=2 et:

Copied: nss/repos/testing-x86_64/bundle.sh (from rev 410250, 
nss/trunk/bundle.sh)
===
--- testing-x86_64/bundle.sh(rev 0)
+++ testing-x86_64/bundle.sh2021-03-18 23:15:11 UTC (rev 410251)
@@ -0,0 +1,22 @@
+#!/bin/sh
+# From Fedora's ca-certificates.spec
+
+(
+  cat < ca-bundle.trust.p11-kit
+
+for p in certs/*.tmp-p11-kit; do 
+  cat "$p" >> ca-bundle.trust.p11-kit
+done

Copied: nss/repos/testing-x86_64/certdata2pem.py (from rev 410250, 
nss/trunk/certdata2pem.py)
===
--- testing-x86_64/certdata2pem.py  (rev 0)
+++ testing-x86_64/certdata2pem.py  2021-03-18 23:15:11 UTC (rev 410251)
@@ -0,0 +1,413 @@
+#!/usr/bin/python
+# vim:set et sw=4:
+#
+# certdata2pem.py - splits certdata.txt into multiple files
+#
+# Copyright (C) 2009 Philipp Kern 
+# Copyright (C) 2013 Kai Engert 
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License 

[arch-commits] Commit in lib32-nss/repos (3 files)

2021-03-18 Thread Jan Steffens via arch-commits
Date: Thursday, March 18, 2021 @ 23:15:11
  Author: heftig
Revision: 894529

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-nss/repos/multilib-testing-x86_64/
  
lib32-nss/repos/multilib-testing-x86_64/0001-Hack-mpi_x64.s-to-work-with-fno-plt.patch
(from rev 894528, 
lib32-nss/trunk/0001-Hack-mpi_x64.s-to-work-with-fno-plt.patch)
  lib32-nss/repos/multilib-testing-x86_64/PKGBUILD
(from rev 894528, lib32-nss/trunk/PKGBUILD)

+
 0001-Hack-mpi_x64.s-to-work-with-fno-plt.patch |   57 +
 PKGBUILD   |   62 +++
 2 files changed, 119 insertions(+)

Copied: 
lib32-nss/repos/multilib-testing-x86_64/0001-Hack-mpi_x64.s-to-work-with-fno-plt.patch
 (from rev 894528, 
lib32-nss/trunk/0001-Hack-mpi_x64.s-to-work-with-fno-plt.patch)
===
--- multilib-testing-x86_64/0001-Hack-mpi_x64.s-to-work-with-fno-plt.patch  
(rev 0)
+++ multilib-testing-x86_64/0001-Hack-mpi_x64.s-to-work-with-fno-plt.patch  
2021-03-18 23:15:11 UTC (rev 894529)
@@ -0,0 +1,57 @@
+From  Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Sat, 12 Dec 2020 13:43:54 +0100
+Subject: [PATCH] Hack mpi_x64.s to work with -fno-plt
+
+---
+ lib/freebl/mpi/mpi_x86.s | 23 +--
+ 1 file changed, 21 insertions(+), 2 deletions(-)
+
+diff --git a/lib/freebl/mpi/mpi_x86.s b/lib/freebl/mpi/mpi_x86.s
+index 8f7e2130c3..b3ca1ce5b4 100644
+--- a/lib/freebl/mpi/mpi_x86.s
 b/lib/freebl/mpi/mpi_x86.s
+@@ -22,22 +22,41 @@ is_sse: .long  -1
+ #
+ .ifndef NO_PIC
+ .macro GET   var,reg
+-movl   \var@GOTOFF(%ebx),\reg
++call   thunk.ax
++addl   $_GLOBAL_OFFSET_TABLE_, %eax
++movl   \var@GOTOFF(%eax),\reg
+ .endm
+ .macro PUT   reg,var
+-movl   \reg,\var@GOTOFF(%ebx)
++call   thunk.dx
++addl   $_GLOBAL_OFFSET_TABLE_, %edx
++movl   \reg,\var@GOTOFF(%edx)
+ .endm
+ .else
+ .macro GET   var,reg
+ movl   \var,\reg
+ .endm
+ .macro PUT   reg,var
+ movl   \reg,\var
+ .endm
+ .endif
+ 
+ .text
+ 
++.ifndef NO_PIC
++.globlthunk.ax
++.hidden   thunk.ax
++.type thunk.ax, @function
++thunk.ax:
++   movl   (%esp),%eax
++   ret
++
++.globlthunk.dx
++.hidden   thunk.dx
++.type thunk.dx, @function
++thunk.dx:
++   movl   (%esp),%edx
++   ret
++.endif
+ 
+  #  ebp - 36: caller's esi
+  #  ebp - 32: caller's edi

Copied: lib32-nss/repos/multilib-testing-x86_64/PKGBUILD (from rev 894528, 
lib32-nss/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2021-03-18 23:15:11 UTC (rev 894529)
@@ -0,0 +1,62 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Daniel Wallace 
+# Contributor: kfgz 
+# Contributor: Ionut Biru 
+
+pkgname=lib32-nss
+pkgver=3.63
+pkgrel=1
+pkgdesc="Network Security Services (32-bit)"
+url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS;
+arch=(x86_64)
+license=(MPL GPL)
+depends=(lib32-nspr lib32-sqlite lib32-zlib 'lib32-p11-kit>=0.23.19')
+makedepends=(perl python gyp)
+source=("https://ftp.mozilla.org/pub/security/nss/releases/NSS_${pkgver//./_}_RTM/src/nss-${pkgver}.tar.gz;
+0001-Hack-mpi_x64.s-to-work-with-fno-plt.patch)
+sha256sums=('182d2fef629102ae9423aabf2c192242b565cf5098e82c5a26cf70c5e4ea2221'
+'e27a9fc2e7687ab9c1cb430917f13775ab29f9abf4c2032ea262a5a2a8b43ffa')
+
+prepare() {
+  cd nss-$pkgver/nss
+
+  # https://bugzilla.mozilla.org/show_bug.cgi?id=1382942
+  patch -Np1 -i "$srcdir/0001-Hack-mpi_x64.s-to-work-with-fno-plt.patch"
+}
+
+build() {
+  cd nss-$pkgver/nss
+  ./build.sh \
+--target ia32 \
+--opt \
+--system-sqlite \
+--system-nspr \
+--enable-libpkix \
+--disable-tests
+}
+
+package() {
+  depends+=(nss)
+
+  cd nss-$pkgver
+
+  local libdir=/usr/lib32 nsprver="$(i686-pc-linux-gnu-pkg-config --modversion 
nspr)"
+  sed nss/pkg/pkg-config/nss.pc.in \
+-e "s,%libdir%,$libdir,g" \
+-e "s,%prefix%,/usr,g" \
+-e "s,%exec_prefix%,/usr/bin,g" \
+-e "s,%includedir%,/usr/include/nss,g" \
+-e "s,%NSPR_VERSION%,$nsprver,g" \
+-e "s,%NSS_VERSION%,$pkgver,g" |
+install -Dm644 /dev/stdin "$pkgdir$libdir/pkgconfig/nss.pc"
+
+  ln -s nss.pc "$pkgdir$libdir/pkgconfig/mozilla-nss.pc"
+
+  install -Dt "$pkgdir$libdir" dist/Release/lib/*.so
+
+  # Replace built-in trust with p11-kit connection
+  ln -s pkcs11/p11-kit-trust.so "$pkgdir$libdir/p11-kit-trust.so"
+  ln -sf p11-kit-trust.so "$pkgdir$libdir/libnssckbi.so"
+}
+
+# vim:set sw=2 et:


[arch-commits] Commit in lib32-nss/trunk (PKGBUILD)

2021-03-18 Thread Jan Steffens via arch-commits
Date: Thursday, March 18, 2021 @ 23:14:58
  Author: heftig
Revision: 894528

3.63-1

Modified:
  lib32-nss/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 21:22:48 UTC (rev 894527)
+++ PKGBUILD2021-03-18 23:14:58 UTC (rev 894528)
@@ -4,7 +4,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=lib32-nss
-pkgver=3.62
+pkgver=3.63
 pkgrel=1
 pkgdesc="Network Security Services (32-bit)"
 url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS;
@@ -14,7 +14,7 @@
 makedepends=(perl python gyp)
 
source=("https://ftp.mozilla.org/pub/security/nss/releases/NSS_${pkgver//./_}_RTM/src/nss-${pkgver}.tar.gz;
 0001-Hack-mpi_x64.s-to-work-with-fno-plt.patch)
-sha256sums=('86d6df7cece25b8d4efa53e4c19af903c484eb79871163f37b5232bb406a5478'
+sha256sums=('182d2fef629102ae9423aabf2c192242b565cf5098e82c5a26cf70c5e4ea2221'
 'e27a9fc2e7687ab9c1cb430917f13775ab29f9abf4c2032ea262a5a2a8b43ffa')
 
 prepare() {


[arch-commits] Commit in nss/trunk (PKGBUILD)

2021-03-18 Thread Jan Steffens via arch-commits
Date: Thursday, March 18, 2021 @ 23:14:40
  Author: heftig
Revision: 410250

3.63-1

Modified:
  nss/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 22:39:02 UTC (rev 410249)
+++ PKGBUILD2021-03-18 23:14:40 UTC (rev 410250)
@@ -3,7 +3,7 @@
 
 pkgbase=nss
 pkgname=(nss ca-certificates-mozilla)
-pkgver=3.62
+pkgver=3.63
 pkgrel=1
 pkgdesc="Network Security Services"
 url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS;
@@ -13,7 +13,7 @@
 makedepends=(perl python gyp)
 
source=("https://ftp.mozilla.org/pub/security/nss/releases/NSS_${pkgver//./_}_RTM/src/nss-${pkgver}.tar.gz;
 certdata2pem.py bundle.sh)
-sha256sums=('86d6df7cece25b8d4efa53e4c19af903c484eb79871163f37b5232bb406a5478'
+sha256sums=('182d2fef629102ae9423aabf2c192242b565cf5098e82c5a26cf70c5e4ea2221'
 'd2a1579dae05fd16175fac27ef08b54731ecefdf414085c610179afcf62b096c'
 '3bfadf722da6773bdabdd25bdf78158648043d1b7e57615574f189a88ca865dd')
 


[arch-commits] Commit in webkit2gtk/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2021-03-18 Thread Jan Steffens via arch-commits
Date: Thursday, March 18, 2021 @ 22:39:02
  Author: heftig
Revision: 410249

archrelease: copy trunk to extra-x86_64

Added:
  webkit2gtk/repos/extra-x86_64/PKGBUILD
(from rev 410248, webkit2gtk/trunk/PKGBUILD)
Deleted:
  webkit2gtk/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  124 ++---
 1 file changed, 62 insertions(+), 62 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-18 22:38:53 UTC (rev 410248)
+++ PKGBUILD2021-03-18 22:39:02 UTC (rev 410249)
@@ -1,62 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Eric Bélanger 
-
-pkgname=webkit2gtk
-pkgver=2.30.5
-pkgrel=1
-pkgdesc="Web content engine for GTK"
-url="https://webkitgtk.org;
-arch=(x86_64)
-license=(custom)
-depends=(cairo fontconfig freetype2 libgcrypt glib2 gtk3 harfbuzz harfbuzz-icu
- icu libjpeg libsoup libxml2 zlib libpng sqlite atk libwebp 
at-spi2-core
- libegl libgl libgles libwpe wpebackend-fdo libxslt libsecret libtasn1
- enchant libx11 libxext libice libxt wayland libnotify hyphen openjpeg2
- woff2 libsystemd bubblewrap libseccomp xdg-dbus-proxy gstreamer
- gst-plugins-base-libs)
-makedepends=(cmake ninja gtk-doc python ruby gobject-introspection
- wayland-protocols systemd gst-plugins-bad gperf)
-optdepends=('geoclue: Geolocation support'
-'gst-plugins-good: media decoding'
-'gst-plugins-bad: media decoding'
-'gst-libav: nonfree media decoding')
-source=($url/releases/webkitgtk-$pkgver.tar.xz{,.asc})
-sha256sums=('7d0dab08e3c5ae07bec80b2822ef42e952765d5724cac86eb23999bfed5a7f1f'
-'SKIP')
-validpgpkeys=('D7FCF61CF9A2DEAB31D81BD3F3D322D0EC4582C3'  # Carlos Garcia 
Campos 
-  '5AA3BC334FD7E3369E7C77B291C559DBE4C9123B') # Adrián Pérez de 
Castro 
-
-prepare() {
-  cd webkitgtk-$pkgver
-}
-
-build() {
-  cmake -S webkitgtk-$pkgver -B build -G Ninja \
--DPORT=GTK \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_INSTALL_LIBEXECDIR=lib \
--DCMAKE_SKIP_RPATH=ON \
--DENABLE_GTKDOC=ON \
--DENABLE_MINIBROWSER=ON
-  cmake --build build
-}
-
-package() {
-  depends+=(libwpe-1.0.so libWPEBackend-fdo-1.0.so)
-  provides+=(libjavascriptcoregtk-4.0.so libwebkit2gtk-4.0.so)
-
-  DESTDIR="$pkgdir" cmake --install build
-
-  cd webkitgtk-$pkgver
-  find Source -name 'COPYING*' -or -name 'LICENSE*' -print0 | sort -z |
-while IFS= read -d $'\0' -r _f; do
-  echo "### $_f ###"
-  cat "$_f"
-  echo
-done |
-install -Dm644 /dev/stdin "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set sw=2 et:

Copied: webkit2gtk/repos/extra-x86_64/PKGBUILD (from rev 410248, 
webkit2gtk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-18 22:39:02 UTC (rev 410249)
@@ -0,0 +1,62 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Eric Bélanger 
+
+pkgname=webkit2gtk
+pkgver=2.30.6
+pkgrel=1
+pkgdesc="Web content engine for GTK"
+url="https://webkitgtk.org;
+arch=(x86_64)
+license=(custom)
+depends=(cairo fontconfig freetype2 libgcrypt glib2 gtk3 harfbuzz harfbuzz-icu
+ icu libjpeg libsoup libxml2 zlib libpng sqlite atk libwebp 
at-spi2-core
+ libegl libgl libgles libwpe wpebackend-fdo libxslt libsecret libtasn1
+ enchant libx11 libxext libice libxt wayland libnotify hyphen openjpeg2
+ woff2 libsystemd bubblewrap libseccomp xdg-dbus-proxy gstreamer
+ gst-plugins-base-libs)
+makedepends=(cmake ninja gtk-doc python ruby gobject-introspection
+ wayland-protocols systemd gst-plugins-bad gperf)
+optdepends=('geoclue: Geolocation support'
+'gst-plugins-good: media decoding'
+'gst-plugins-bad: media decoding'
+'gst-libav: nonfree media decoding')
+source=($url/releases/webkitgtk-$pkgver.tar.xz{,.asc})
+sha256sums=('50736ec7a91770b5939d715196e5fe7209b93efcdeef425b24dc51fb8e9d7c1e'
+'SKIP')
+validpgpkeys=('D7FCF61CF9A2DEAB31D81BD3F3D322D0EC4582C3'  # Carlos Garcia 
Campos 
+  '5AA3BC334FD7E3369E7C77B291C559DBE4C9123B') # Adrián Pérez de 
Castro 
+
+prepare() {
+  cd webkitgtk-$pkgver
+}
+
+build() {
+  cmake -S webkitgtk-$pkgver -B build -G Ninja \
+-DPORT=GTK \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_INSTALL_LIBEXECDIR=lib \
+-DCMAKE_SKIP_RPATH=ON \
+-DENABLE_GTKDOC=ON \
+-DENABLE_MINIBROWSER=ON
+  cmake --build build
+}
+
+package() {
+  depends+=(libwpe-1.0.so libWPEBackend-fdo-1.0.so)
+  provides+=(libjavascriptcoregtk-4.0.so libwebkit2gtk-4.0.so)
+
+  DESTDIR="$pkgdir" cmake --install build
+
+  cd webkitgtk-$pkgver
+  find Source -name 'COPYING*' -or -name 'LICENSE*' 

[arch-commits] Commit in webkit2gtk/trunk (PKGBUILD)

2021-03-18 Thread Jan Steffens via arch-commits
Date: Thursday, March 18, 2021 @ 22:38:53
  Author: heftig
Revision: 410248

2.30.6-1

Modified:
  webkit2gtk/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 22:05:52 UTC (rev 410247)
+++ PKGBUILD2021-03-18 22:38:53 UTC (rev 410248)
@@ -2,7 +2,7 @@
 # Contributor: Eric Bélanger 
 
 pkgname=webkit2gtk
-pkgver=2.30.5
+pkgver=2.30.6
 pkgrel=1
 pkgdesc="Web content engine for GTK"
 url="https://webkitgtk.org;
@@ -21,7 +21,7 @@
 'gst-plugins-bad: media decoding'
 'gst-libav: nonfree media decoding')
 source=($url/releases/webkitgtk-$pkgver.tar.xz{,.asc})
-sha256sums=('7d0dab08e3c5ae07bec80b2822ef42e952765d5724cac86eb23999bfed5a7f1f'
+sha256sums=('50736ec7a91770b5939d715196e5fe7209b93efcdeef425b24dc51fb8e9d7c1e'
 'SKIP')
 validpgpkeys=('D7FCF61CF9A2DEAB31D81BD3F3D322D0EC4582C3'  # Carlos Garcia 
Campos 
   '5AA3BC334FD7E3369E7C77B291C559DBE4C9123B') # Adrián Pérez de 
Castro 


[arch-commits] Commit in wpebackend-fdo/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2021-03-18 Thread Jan Steffens via arch-commits
Date: Thursday, March 18, 2021 @ 22:05:52
  Author: heftig
Revision: 410247

archrelease: copy trunk to extra-x86_64

Added:
  wpebackend-fdo/repos/extra-x86_64/PKGBUILD
(from rev 410246, wpebackend-fdo/trunk/PKGBUILD)
Deleted:
  wpebackend-fdo/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   86 ++---
 1 file changed, 43 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-18 22:05:40 UTC (rev 410246)
+++ PKGBUILD2021-03-18 22:05:52 UTC (rev 410247)
@@ -1,43 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=wpebackend-fdo
-pkgver=1.8.1
-pkgrel=1
-pkgdesc="Freedesktop.org backend for WPE WebKit"
-url="https://wpewebkit.org;
-arch=(x86_64)
-license=(custom)
-depends=(libwpe glib2 libegl wayland libepoxy)
-makedepends=(mesa wayland-protocols git meson)
-_commit=4d7a8ac2ed6bb9c19424147ab979252e76782209  # tags/1.8.1^0
-source=("git+https://github.com/Igalia/WPEBackend-fdo?signed#commit=$_commit;)
-sha256sums=('SKIP')
-validpgpkeys=('5AA3BC334FD7E3369E7C77B291C559DBE4C9123B') # Adrián Pérez de 
Castro 
-
-pkgver() {
-  cd WPEBackend-fdo
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd WPEBackend-fdo
-}
-
-build() {
-  arch-meson WPEBackend-fdo build
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  depends+=(libwpe-1.0.so libg{lib,object,io}-2.0.so)
-  provides+=(libWPEBackend-fdo-1.0.so)
-
-  DESTDIR="$pkgdir" meson install -C build
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 
WPEBackend-fdo/COPYING
-}
-
-# vim:set sw=2 et:

Copied: wpebackend-fdo/repos/extra-x86_64/PKGBUILD (from rev 410246, 
wpebackend-fdo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-18 22:05:52 UTC (rev 410247)
@@ -0,0 +1,43 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=wpebackend-fdo
+pkgver=1.8.2
+pkgrel=1
+pkgdesc="Freedesktop.org backend for WPE WebKit"
+url="https://wpewebkit.org;
+arch=(x86_64)
+license=(custom)
+depends=(libwpe glib2 libegl wayland libepoxy)
+makedepends=(mesa wayland-protocols git meson)
+_commit=eca62379e0c8522a2696904efc88cd7b18825044  # tags/1.8.2^0
+source=("git+https://github.com/Igalia/WPEBackend-fdo?signed#commit=$_commit;)
+sha256sums=('SKIP')
+validpgpkeys=('5AA3BC334FD7E3369E7C77B291C559DBE4C9123B') # Adrián Pérez de 
Castro 
+
+pkgver() {
+  cd WPEBackend-fdo
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd WPEBackend-fdo
+}
+
+build() {
+  arch-meson WPEBackend-fdo build
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  depends+=(libwpe-1.0.so libg{lib,object,io}-2.0.so)
+  provides+=(libWPEBackend-fdo-1.0.so)
+
+  DESTDIR="$pkgdir" meson install -C build
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 
WPEBackend-fdo/COPYING
+}
+
+# vim:set sw=2 et:


[arch-commits] Commit in wpebackend-fdo/trunk (PKGBUILD)

2021-03-18 Thread Jan Steffens via arch-commits
Date: Thursday, March 18, 2021 @ 22:05:40
  Author: heftig
Revision: 410246

1.8.2-1

Modified:
  wpebackend-fdo/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 22:00:24 UTC (rev 410245)
+++ PKGBUILD2021-03-18 22:05:40 UTC (rev 410246)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=wpebackend-fdo
-pkgver=1.8.1
+pkgver=1.8.2
 pkgrel=1
 pkgdesc="Freedesktop.org backend for WPE WebKit"
 url="https://wpewebkit.org;
@@ -9,7 +9,7 @@
 license=(custom)
 depends=(libwpe glib2 libegl wayland libepoxy)
 makedepends=(mesa wayland-protocols git meson)
-_commit=4d7a8ac2ed6bb9c19424147ab979252e76782209  # tags/1.8.1^0
+_commit=eca62379e0c8522a2696904efc88cd7b18825044  # tags/1.8.2^0
 source=("git+https://github.com/Igalia/WPEBackend-fdo?signed#commit=$_commit;)
 sha256sums=('SKIP')
 validpgpkeys=('5AA3BC334FD7E3369E7C77B291C559DBE4C9123B') # Adrián Pérez de 
Castro 


[arch-commits] Commit in gnome-disk-utility/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2021-03-18 Thread Jan Steffens via arch-commits
Date: Thursday, March 18, 2021 @ 22:00:24
  Author: heftig
Revision: 410245

archrelease: copy trunk to extra-x86_64

Added:
  gnome-disk-utility/repos/extra-x86_64/PKGBUILD
(from rev 410244, gnome-disk-utility/trunk/PKGBUILD)
Deleted:
  gnome-disk-utility/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   72 ++---
 1 file changed, 36 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-18 22:00:07 UTC (rev 410244)
+++ PKGBUILD2021-03-18 22:00:24 UTC (rev 410245)
@@ -1,36 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: Silvio Knizek (killermoehre)
-
-pkgname=gnome-disk-utility
-pkgver=3.38.2
-pkgrel=1
-pkgdesc="Disk Management Utility for GNOME"
-url="https://gitlab.gnome.org/GNOME/gnome-disk-utility;
-arch=(x86_64)
-license=(GPL)
-groups=(gnome)
-depends=(udisks2 gtk3 libsecret libpwquality libcanberra libdvdread libnotify
- parted systemd-libs)
-makedepends=(yelp-tools appstream-glib git meson)
-_commit=140baa1bf7b954106ce8d318518d39cb916ae815  # tags/3.38.2^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-disk-utility.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-build() {
-  arch-meson $pkgname build
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: gnome-disk-utility/repos/extra-x86_64/PKGBUILD (from rev 410244, 
gnome-disk-utility/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-18 22:00:24 UTC (rev 410245)
@@ -0,0 +1,36 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Silvio Knizek (killermoehre)
+
+pkgname=gnome-disk-utility
+pkgver=40.0
+pkgrel=1
+pkgdesc="Disk Management Utility for GNOME"
+url="https://gitlab.gnome.org/GNOME/gnome-disk-utility;
+arch=(x86_64)
+license=(GPL)
+groups=(gnome)
+depends=(udisks2 gtk3 libsecret libpwquality libcanberra libdvdread libnotify
+ parted systemd-libs libhandy)
+makedepends=(git meson docbook-xsl)
+_commit=b1a3fbc2bab3ff3182f141175d068cd1a68ae63e  # tags/40.0^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-disk-utility.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+build() {
+  arch-meson $pkgname build
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}


[arch-commits] Commit in gnome-disk-utility/trunk (PKGBUILD)

2021-03-18 Thread Jan Steffens via arch-commits
Date: Thursday, March 18, 2021 @ 22:00:07
  Author: heftig
Revision: 410244

40.0-1

Modified:
  gnome-disk-utility/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 17:42:09 UTC (rev 410243)
+++ PKGBUILD2021-03-18 22:00:07 UTC (rev 410244)
@@ -3,7 +3,7 @@
 # Contributor: Silvio Knizek (killermoehre)
 
 pkgname=gnome-disk-utility
-pkgver=3.38.2
+pkgver=40.0
 pkgrel=1
 pkgdesc="Disk Management Utility for GNOME"
 url="https://gitlab.gnome.org/GNOME/gnome-disk-utility;
@@ -11,9 +11,9 @@
 license=(GPL)
 groups=(gnome)
 depends=(udisks2 gtk3 libsecret libpwquality libcanberra libdvdread libnotify
- parted systemd-libs)
-makedepends=(yelp-tools appstream-glib git meson)
-_commit=140baa1bf7b954106ce8d318518d39cb916ae815  # tags/3.38.2^0
+ parted systemd-libs libhandy)
+makedepends=(git meson docbook-xsl)
+_commit=b1a3fbc2bab3ff3182f141175d068cd1a68ae63e  # tags/40.0^0
 
source=("git+https://gitlab.gnome.org/GNOME/gnome-disk-utility.git#commit=$_commit;)
 sha256sums=('SKIP')
 


[arch-commits] Commit in mysql-workbench/repos (6 files)

2021-03-18 Thread Christian Hesse via arch-commits
Date: Thursday, March 18, 2021 @ 21:20:03
  Author: eworm
Revision: 894524

archrelease: copy trunk to community-testing-x86_64

Added:
  mysql-workbench/repos/community-testing-x86_64/
  
mysql-workbench/repos/community-testing-x86_64/0001-mysql-workbench-no-check-for-updates.patch
(from rev 894523, 
mysql-workbench/trunk/0001-mysql-workbench-no-check-for-updates.patch)
  
mysql-workbench/repos/community-testing-x86_64/0002-disable-unsupported-operating-system-warning.patch
(from rev 894523, 
mysql-workbench/trunk/0002-disable-unsupported-operating-system-warning.patch)
  mysql-workbench/repos/community-testing-x86_64/0003-find-libssh.patch
(from rev 894523, mysql-workbench/trunk/0003-find-libssh.patch)
  mysql-workbench/repos/community-testing-x86_64/PKGBUILD
(from rev 894523, mysql-workbench/trunk/PKGBUILD)
  mysql-workbench/repos/community-testing-x86_64/arch_linux_profile.xml
(from rev 894523, mysql-workbench/trunk/arch_linux_profile.xml)

-+
 0001-mysql-workbench-no-check-for-updates.patch |   30 ++
 0002-disable-unsupported-operating-system-warning.patch |   26 ++
 0003-find-libssh.patch  |   13 +
 PKGBUILD|  174 ++
 4 files changed, 243 insertions(+)

Copied: 
mysql-workbench/repos/community-testing-x86_64/0001-mysql-workbench-no-check-for-updates.patch
 (from rev 894523, 
mysql-workbench/trunk/0001-mysql-workbench-no-check-for-updates.patch)
===
--- community-testing-x86_64/0001-mysql-workbench-no-check-for-updates.patch
(rev 0)
+++ community-testing-x86_64/0001-mysql-workbench-no-check-for-updates.patch
2021-03-18 21:20:03 UTC (rev 894524)
@@ -0,0 +1,30 @@
+From d15e588be02e44b1317bf90ff7be1714267281c8 Mon Sep 17 00:00:00 2001
+From: Christian Hesse 
+Date: Mon, 23 Jul 2018 11:03:19 +0200
+Subject: [PATCH 1/4] mysql-workbench-no-check-for-updates
+
+Signed-off-by: Christian Hesse 
+---
+ res/wbdata/main_menu.xml | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/res/wbdata/main_menu.xml b/res/wbdata/main_menu.xml
+index bfa63ef..957f809 100644
+--- a/res/wbdata/main_menu.xml
 b/res/wbdata/main_menu.xml
+@@ -2277,6 +2277,7 @@
+ builtin:show_log_file
+ action
+ 
++
+ 
+ separator
+ windows,linux

Copied: 
mysql-workbench/repos/community-testing-x86_64/0002-disable-unsupported-operating-system-warning.patch
 (from rev 894523, 
mysql-workbench/trunk/0002-disable-unsupported-operating-system-warning.patch)
===
--- 
community-testing-x86_64/0002-disable-unsupported-operating-system-warning.patch
(rev 0)
+++ 
community-testing-x86_64/0002-disable-unsupported-operating-system-warning.patch
2021-03-18 21:20:03 UTC (rev 894524)
@@ -0,0 +1,26 @@
+From 98a9974f550dfb5c8f66213774e4ef95848127e1 Mon Sep 17 00:00:00 2001
+From: Christian Hesse 
+Date: Mon, 23 Jul 2018 11:04:55 +0200
+Subject: [PATCH 2/4] disable-unsupported-operating-system-warning
+
+Signed-off-by: Christian Hesse 
+---
+ backend/wbprivate/workbench/wb_context.cpp | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/backend/wbprivate/workbench/wb_context.cpp 
b/backend/wbprivate/workbench/wb_context.cpp
+index e80501a..a4047b1 100644
+--- a/backend/wbprivate/workbench/wb_context.cpp
 b/backend/wbprivate/workbench/wb_context.cpp
+@@ -1011,9 +1011,11 @@ void WBContext::init_finish_(WBOptions *options) {
+ 
+   _frontendCallbacks->show_status_text(_("Ready."));
+ 
++#if 0
+   // Avoid our runtime tests to lock up when a modal warning dialog is 
displayed.
+   if (options->open_at_startup_type != "run-script")
+ warnIfRunningOnUnsupportedOS();
++#endif
+ 
+   try {
+ // execute action requested from command line

Copied: mysql-workbench/repos/community-testing-x86_64/0003-find-libssh.patch 
(from rev 894523, mysql-workbench/trunk/0003-find-libssh.patch)
===
--- community-testing-x86_64/0003-find-libssh.patch 
(rev 0)
+++ community-testing-x86_64/0003-find-libssh.patch 2021-03-18 21:20:03 UTC 
(rev 894524)
@@ -0,0 +1,13 @@
+diff --git a/build/cmake/Modules/FindLibSSH.cmake 
b/build/cmake/Modules/FindLibSSH.cmake
+index 3d31ed3..acbe292 100644
+--- a/build/cmake/Modules/FindLibSSH.cmake
 b/build/cmake/Modules/FindLibSSH.cmake
+@@ -51,7 +51,7 @@ else()
+   find_library(LibSSH_LIBRARY NAMES ${LibSSH_NAMES})
+ endif()
+ 
+-set(LibSSH_HEADER_FILE ${LibSSH_INCLUDE_DIR}/libssh/libssh.h)
++set(LibSSH_HEADER_FILE ${LibSSH_INCLUDE_DIR}/libssh/libssh_version.h)
+ file(STRINGS ${LibSSH_HEADER_FILE} LibSSH_VERSION_LINE_MAJOR REGEX "#define 

[arch-commits] Commit in mysql-workbench/trunk (PKGBUILD)

2021-03-18 Thread Christian Hesse via arch-commits
Date: Thursday, March 18, 2021 @ 21:19:59
  Author: eworm
Revision: 894523

upgpkg: mysql-workbench 8.0.23-3: antlr4-runtime rebuild

Modified:
  mysql-workbench/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 21:05:40 UTC (rev 894522)
+++ PKGBUILD2021-03-18 21:19:59 UTC (rev 894523)
@@ -6,12 +6,12 @@
 
 pkgname=mysql-workbench
 pkgver=8.0.23
-pkgrel=2
+pkgrel=3
 _mysql_version=${pkgver}
 _connector_version=${pkgver}
 _gdal_version=3.2.1
 _boost_version=1.73.0
-_antlr4_version=4.9.1
+_antlr4_version=4.9.2
 pkgdesc='A cross-platform, visual database design tool developed by MySQL'
 arch=('x86_64')
 url='https://www.mysql.com/products/workbench/'


[arch-commits] Commit in antlr4-runtime/repos (2 files)

2021-03-18 Thread Christian Hesse via arch-commits
Date: Thursday, March 18, 2021 @ 21:05:40
  Author: eworm
Revision: 894522

archrelease: copy trunk to community-testing-x86_64

Added:
  antlr4-runtime/repos/community-testing-x86_64/
  antlr4-runtime/repos/community-testing-x86_64/PKGBUILD
(from rev 894521, antlr4-runtime/trunk/PKGBUILD)

--+
 PKGBUILD |   32 
 1 file changed, 32 insertions(+)

Copied: antlr4-runtime/repos/community-testing-x86_64/PKGBUILD (from rev 
894521, antlr4-runtime/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-03-18 21:05:40 UTC (rev 894522)
@@ -0,0 +1,32 @@
+# Maintainer: Christian Hesse 
+
+pkgname=antlr4-runtime
+pkgver=4.9.2
+pkgrel=1
+pkgdesc='Antlr C++ runtime'
+url='https://www.antlr.org/'
+arch=('x86_64')
+depends=('gcc-libs')
+makedepends=('git' 'cmake')
+license=('BSD')
+source=("https://www.antlr.org/download/antlr4-cpp-runtime-${pkgver}-source.zip;)
+sha256sums=('838a2c804573f927c044e5f45a8feb297683a7047ab62dfac8ddc995498db11c')
+
+prepare() {
+  # mysql-workbench is built with C++17, so we need it here as well
+  sed -i '/CMAKE_CXX_STANDARD/s/11/17/' CMakeLists.txt
+}
+
+build() {
+  mkdir build
+  cd build
+  cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}/" install
+}


[arch-commits] Commit in antlr4-runtime/trunk (PKGBUILD)

2021-03-18 Thread Christian Hesse via arch-commits
Date: Thursday, March 18, 2021 @ 21:05:36
  Author: eworm
Revision: 894521

upgpkg: antlr4-runtime 4.9.2-1: new upstream release

Modified:
  antlr4-runtime/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 21:04:02 UTC (rev 894520)
+++ PKGBUILD2021-03-18 21:05:36 UTC (rev 894521)
@@ -1,8 +1,8 @@
 # Maintainer: Christian Hesse 
 
 pkgname=antlr4-runtime
-pkgver=4.9.1
-pkgrel=2
+pkgver=4.9.2
+pkgrel=1
 pkgdesc='Antlr C++ runtime'
 url='https://www.antlr.org/'
 arch=('x86_64')
@@ -10,7 +10,7 @@
 makedepends=('git' 'cmake')
 license=('BSD')
 
source=("https://www.antlr.org/download/antlr4-cpp-runtime-${pkgver}-source.zip;)
-sha256sums=('21647f9d5c55d13f2297e3f61e5dd68283e439983c27bd899f9c8a725bbea7b5')
+sha256sums=('838a2c804573f927c044e5f45a8feb297683a7047ab62dfac8ddc995498db11c')
 
 prepare() {
   # mysql-workbench is built with C++17, so we need it here as well


[arch-commits] Commit in antlr4/repos (4 files)

2021-03-18 Thread Christian Hesse via arch-commits
Date: Thursday, March 18, 2021 @ 21:04:02
  Author: eworm
Revision: 894520

archrelease: copy trunk to community-testing-any

Added:
  antlr4/repos/community-testing-any/
  antlr4/repos/community-testing-any/PKGBUILD
(from rev 894519, antlr4/trunk/PKGBUILD)
  antlr4/repos/community-testing-any/bin_antlr4
(from rev 894519, antlr4/trunk/bin_antlr4)
  antlr4/repos/community-testing-any/bin_grun
(from rev 894519, antlr4/trunk/bin_grun)

+
 PKGBUILD   |   31 +++
 bin_antlr4 |2 ++
 bin_grun   |2 ++
 3 files changed, 35 insertions(+)

Copied: antlr4/repos/community-testing-any/PKGBUILD (from rev 894519, 
antlr4/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2021-03-18 21:04:02 UTC (rev 894520)
@@ -0,0 +1,31 @@
+# Maintainer: Guillaume ALAUX 
+
+pkgname=antlr4
+_shortname=${pkgname:0:-1}
+pkgver=4.9.2
+pkgrel=1
+pkgdesc='Parser generator for reading, processing, executing, or translating 
structured text or binary files'
+arch=('any')
+url='https://www.antlr.org/index.html'
+license=('BSD')
+depends=('bash' 'java-environment>=6')
+provides=("antlr=${pkgver}")
+source=(https://www.antlr.org/download/${_shortname}-${pkgver}-complete.jar
+
${pkgname}-LICENSE.txt::https://raw.githubusercontent.com/${_shortname}/${pkgname}/master/LICENSE.txt
+bin_antlr4
+bin_grun)
+noextract=("${_shortname}-${pkgver}-complete.jar")
+sha256sums=('bb117b1476691dc2915a318efd36f8957c0ad93447fb1dac01107eb15fe137cd'
+'b1b379fcaf3219593a4c433feb1b35c780bed23fafaae440b1ae2771a9521e3a'
+'345697e77b7191e2afe70b223f205a8a7fd18a655e6865f503a764583d9a3dcc'
+'81e1536e011762287a095e969784a9f2fbbcc62374ab5fb83e19e01ade20b454')
+
+package() {
+  cd "${srcdir}"
+  install -D ${_shortname}-${pkgver}-complete.jar \
+ "${pkgdir}"/usr/share/java/${_shortname}-${pkgver}-complete.jar
+  ln -s antlr-${pkgver}-complete.jar 
"${pkgdir}"/usr/share/java/antlr-complete.jar
+  install -D bin_antlr4 "${pkgdir}"/usr/bin/antlr4
+  install -D bin_grun   "${pkgdir}"/usr/bin/grun
+  install -D ${pkgname}-LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
+}

Copied: antlr4/repos/community-testing-any/bin_antlr4 (from rev 894519, 
antlr4/trunk/bin_antlr4)
===
--- community-testing-any/bin_antlr4(rev 0)
+++ community-testing-any/bin_antlr42021-03-18 21:04:02 UTC (rev 894520)
@@ -0,0 +1,2 @@
+#!/bin/sh
+java -jar /usr/share/java/antlr-complete.jar "$@"

Copied: antlr4/repos/community-testing-any/bin_grun (from rev 894519, 
antlr4/trunk/bin_grun)
===
--- community-testing-any/bin_grun  (rev 0)
+++ community-testing-any/bin_grun  2021-03-18 21:04:02 UTC (rev 894520)
@@ -0,0 +1,2 @@
+#!/bin/sh
+java -cp .:/usr/share/java/antlr-complete.jar org.antlr.v4.gui.TestRig "$@"


[arch-commits] Commit in antlr4/trunk (PKGBUILD)

2021-03-18 Thread Christian Hesse via arch-commits
Date: Thursday, March 18, 2021 @ 21:03:59
  Author: eworm
Revision: 894519

upgpkg: antlr4 4.9.2-1: new upstream release

Modified:
  antlr4/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 20:57:49 UTC (rev 894518)
+++ PKGBUILD2021-03-18 21:03:59 UTC (rev 894519)
@@ -2,13 +2,13 @@
 
 pkgname=antlr4
 _shortname=${pkgname:0:-1}
-pkgver=4.9.1
+pkgver=4.9.2
 pkgrel=1
 pkgdesc='Parser generator for reading, processing, executing, or translating 
structured text or binary files'
 arch=('any')
 url='https://www.antlr.org/index.html'
 license=('BSD')
-depends=('java-environment>=6')
+depends=('bash' 'java-environment>=6')
 provides=("antlr=${pkgver}")
 source=(https://www.antlr.org/download/${_shortname}-${pkgver}-complete.jar
 
${pkgname}-LICENSE.txt::https://raw.githubusercontent.com/${_shortname}/${pkgname}/master/LICENSE.txt
@@ -15,7 +15,7 @@
 bin_antlr4
 bin_grun)
 noextract=("${_shortname}-${pkgver}-complete.jar")
-sha256sums=('1f645aea79b98e6ff7ec8f6bf7ea82b58cfc60a194cda2a3b1e753589d41f98d'
+sha256sums=('bb117b1476691dc2915a318efd36f8957c0ad93447fb1dac01107eb15fe137cd'
 'b1b379fcaf3219593a4c433feb1b35c780bed23fafaae440b1ae2771a9521e3a'
 '345697e77b7191e2afe70b223f205a8a7fd18a655e6865f503a764583d9a3dcc'
 '81e1536e011762287a095e969784a9f2fbbcc62374ab5fb83e19e01ade20b454')


[arch-commits] Commit in grafana/repos/community-x86_64 (10 files)

2021-03-18 Thread Jelle van der Waa via arch-commits
Date: Thursday, March 18, 2021 @ 20:57:49
  Author: jelle
Revision: 894518

archrelease: copy trunk to community-x86_64

Added:
  grafana/repos/community-x86_64/PKGBUILD
(from rev 894517, grafana/trunk/PKGBUILD)
  grafana/repos/community-x86_64/grafana.install
(from rev 894517, grafana/trunk/grafana.install)
  grafana/repos/community-x86_64/grafana.service
(from rev 894517, grafana/trunk/grafana.service)
  grafana/repos/community-x86_64/grafana.sysusers
(from rev 894517, grafana/trunk/grafana.sysusers)
  grafana/repos/community-x86_64/grafana.tmpfiles
(from rev 894517, grafana/trunk/grafana.tmpfiles)
Deleted:
  grafana/repos/community-x86_64/PKGBUILD
  grafana/repos/community-x86_64/grafana.install
  grafana/repos/community-x86_64/grafana.service
  grafana/repos/community-x86_64/grafana.sysusers
  grafana/repos/community-x86_64/grafana.tmpfiles

--+
 PKGBUILD |  192 ++---
 grafana.install  |   44 ++--
 grafana.service  |   46 ++--
 grafana.sysusers |2 
 grafana.tmpfiles |4 -
 5 files changed, 144 insertions(+), 144 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-18 20:57:36 UTC (rev 894517)
+++ PKGBUILD2021-03-18 20:57:49 UTC (rev 894518)
@@ -1,96 +0,0 @@
-# Maintainer: Sébastien "Seblu" Luttringer
-# Contributor: Carsten Feuls 
-# Contributor: Gilles Hamel 
-
-pkgname=grafana
-pkgver=7.4.3
-pkgrel=1
-pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'
-url='https://grafana.com/'
-arch=('x86_64')
-license=('Apache')
-depends=('glibc' 'freetype2' 'fontconfig' 'gsfonts')
-makedepends=('git' 'go' 'npm' 'grunt-cli' 'python' 'nodejs' 'yarn')
-backup=('etc/grafana.ini')
-source=("git+https://github.com/grafana/grafana.git#tag=v$pkgver;
-'grafana.service'
-'grafana.sysusers'
-'grafana.tmpfiles'
-   )
-install=$pkgname.install
-sha512sums=('SKIP'
-
'02a597225ee6ba8da9491a94daa33fe681846e2140e02fbb461ff7d39acd4cf99694dc03fb5f2c5ecfd180b09c44a41fe639b121499b4222b67ada57dc60d850'
-
'38b46d953837a7afa5a654dfeef163b210d56cad57d937018531d00cd63b5341d6f9cd777299bdc7a994d0cb7df09b8157aad0f166e76ad47564e1ad6d5441d4'
-
'c1724bfc7cbd6a406f17acb661efca0f1e57e2c30cc1841f4cb7ccfc420adc40cc61cb1c023d00444827b2c40e9caa4c2fefbfd503419848c74a0b455b2375ab')
-validpgpkeys=("D45B6DC53E9057C46487E25CE17E9ABACEFA59EB"
-  "43511C6A68C9A1DE451EF51890AA4FDC4D63CBEA"
-  "AA70DF6234FBF96AB9101D09E6D5D452E87026E9"  # 
https://github.com/aknuds1.gpg
-  "622E7A764E0C94351E061C57F8D44788D50B48DF"  # 
https://github.com/xlson.gpg
-  "E9EBB044CD6A98482208FE569A774B897EAAB194"  # 
https://github.com/torkelo.gpg
-  "2E240E94A7ADC77A1DFE1085EBFE0FB04612DD4A"  # 
https://github.com/marefr.gpg
-  "5990A087E92D7E15FBF3161103BA4D7E39F0DAF8"  # 
https://github.com/hugohaggmark.gpg
-  "73B00FD007FF40A7B877F8E1C56C450B04996310"  # 
https://github.com/mckn.gpg
-  "3FEB0F042AF5DABD20CDB845539F8AEBA0B8E5DB"  # 
https://github.com/dprokop.gpg
-  "07B19EBA2380F3B0BE4DD234D2A1C6ABC44CEB74"  # 
https://github.com/kylebrandt.gpg
-  "721354FBE3B3088258A3123371A8B8168DFA6ECC") # 
https://github.com/wbrowne.gpg
-
-prepare() {
-  cd $pkgname
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  echo "Applying patch ${filename##*/}"
-  patch -p1 -N -i "$srcdir/${filename##*/}"
-fi
-  done
-  # set arch linux paths
-  sed -ri 's,^(\s*data\s*=).*,\1 /var/lib/grafana,' conf/defaults.ini
-  sed -ri 's,^(\s*plugins\s*=).*,\1 /var/lib/grafana/plugins,' 
conf/defaults.ini
-  sed -ri 's,^(\s*provisioning\s*=).*,\1 /var/lib/grafana/conf/provisioning,' 
conf/defaults.ini
-  sed -ri 's,^(\s*logs\s*=).*,\1 /var/log/grafana,' conf/defaults.ini
-}
-
-build() {
-  echo 'GOPATH setup'
-  export GOPATH="$srcdir/gopath"
-  export PATH+=":$GOPATH/bin"
-  mkdir -p "$GOPATH/src/github.com/grafana/"
-  ln -fsrT "$srcdir/grafana/" "$GOPATH/src/github.com/grafana/grafana"
-  cd "$GOPATH/src/github.com/grafana/grafana"
-
-  echo 'building the backend'
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -modcacherw"
-  go run build.go setup
-  go run build.go build
-
-  echo 'building the frontend'
-  export NPM_CONFIG_PREFIX="$srcdir/npm"
-  export PATH+=":$NPM_CONFIG_PREFIX/bin"
-  yarn install --pure-lockfile --no-progress
-  NODE_ENV=production yarn run build
-}
-
-package() {
-  install -Dm644 grafana.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/grafana.conf"
-  install -Dm644 grafana.sysusers 

[arch-commits] Commit in grafana/trunk (PKGBUILD)

2021-03-18 Thread Jelle van der Waa via arch-commits
Date: Thursday, March 18, 2021 @ 20:57:36
  Author: jelle
Revision: 894517

upgpkg: grafana 7.4.5-1

Modified:
  grafana/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 20:14:51 UTC (rev 894516)
+++ PKGBUILD2021-03-18 20:57:36 UTC (rev 894517)
@@ -3,7 +3,7 @@
 # Contributor: Gilles Hamel 
 
 pkgname=grafana
-pkgver=7.4.3
+pkgver=7.4.5
 pkgrel=1
 pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'
 url='https://grafana.com/'


[arch-commits] Commit in ansible-lint/repos/community-any (4 files)

2021-03-18 Thread Frederik Schwan via arch-commits
Date: Thursday, March 18, 2021 @ 20:14:51
  Author: freswa
Revision: 894516

archrelease: copy trunk to community-any

Added:
  ansible-lint/repos/community-any/PKGBUILD
(from rev 894515, ansible-lint/trunk/PKGBUILD)
  ansible-lint/repos/community-any/disable_use_scm_version.patch
(from rev 894515, ansible-lint/trunk/disable_use_scm_version.patch)
Deleted:
  ansible-lint/repos/community-any/PKGBUILD
  ansible-lint/repos/community-any/disable_use_scm_version.patch

---+
 PKGBUILD  |   76 
 disable_use_scm_version.patch |   62 
 2 files changed, 69 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-18 20:14:48 UTC (rev 894515)
+++ PKGBUILD2021-03-18 20:14:51 UTC (rev 894516)
@@ -1,38 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Maintainer: Frederik Schwan 
-# Contributor: Sander Boom 
-
-pkgname=ansible-lint
-pkgver=5.0.3
-pkgrel=3
-pkgdesc="Checks playbooks for practices and behaviour that could potentially 
be improved."
-arch=('any')
-url="https://github.com/ansible/ansible-lint;
-license=('MIT')
-depends=('python' 'ansible-base' 'python-ruamel-yaml' 'python-pyaml' 
'python-rich' 'python-packaging'
-  'python-wcmatch' 'python-enrich')
-checkdepends=('python-pytest')
-optdepends=('yamllint: check for yaml syntax mistakes'
-'ansible: check official ansible collections')
-source=(https://github.com/ansible/ansible-lint/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
-disable_use_scm_version.patch)
-b2sums=('7dd7de2bc08a38ca757f3a4d59a97d01bb205c77d91f2316a2b6392eec3b3c189716c4e5fefd74c866274db73014dc866f8dfdf6f49a9d47ef7b215f13d073ca'
-
'a090862e657bfc29c89b23b2ecc8c585e15f098310b997e39600b6bdf0cd433e1045e2da348ce27dc2d3c0f9ef01950cf0ec5e7b071bc43d85161faabd8a1f60')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  # stop setuptools from using the scm version which doesn't exist in this 
context
-  patch -Np1 < "${srcdir}"/disable_use_scm_version.patch
-  sed -i "/^\[metadata\]/a version = ${pkgver}" setup.cfg
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python setup.py build
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  PYTHONHASHSEED=0 python setup.py install --root="${pkgdir}" --optimize=1
-  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}
-}

Copied: ansible-lint/repos/community-any/PKGBUILD (from rev 894515, 
ansible-lint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-18 20:14:51 UTC (rev 894516)
@@ -0,0 +1,38 @@
+# Maintainer: Jelle van der Waa 
+# Maintainer: Frederik Schwan 
+# Contributor: Sander Boom 
+
+pkgname=ansible-lint
+pkgver=5.0.4
+pkgrel=1
+pkgdesc="Checks playbooks for practices and behaviour that could potentially 
be improved."
+arch=('any')
+url="https://github.com/ansible/ansible-lint;
+license=('MIT')
+depends=('python' 'ansible-base' 'python-ruamel-yaml' 'python-pyaml' 
'python-rich' 'python-packaging'
+  'python-wcmatch' 'python-enrich')
+checkdepends=('python-pytest')
+optdepends=('yamllint: check for yaml syntax mistakes'
+'ansible: check official ansible collections')
+source=(https://github.com/ansible/ansible-lint/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
+disable_use_scm_version.patch)
+b2sums=('95099b38636afda029c556bd662167efa6fac459aeeca49c1649d08ed137fb6d18f3423d1a90cebe9cced3b0ce5ffc146e9942eb925ff525276c8bc324efe128'
+
'a090862e657bfc29c89b23b2ecc8c585e15f098310b997e39600b6bdf0cd433e1045e2da348ce27dc2d3c0f9ef01950cf0ec5e7b071bc43d85161faabd8a1f60')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  # stop setuptools from using the scm version which doesn't exist in this 
context
+  patch -Np1 < "${srcdir}"/disable_use_scm_version.patch
+  sed -i "/^\[metadata\]/a version = ${pkgver}" setup.cfg
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python setup.py build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  PYTHONHASHSEED=0 python setup.py install --root="${pkgdir}" --optimize=1
+  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}
+}

Deleted: disable_use_scm_version.patch
===
--- disable_use_scm_version.patch   2021-03-18 20:14:48 UTC (rev 894515)
+++ disable_use_scm_version.patch   2021-03-18 20:14:51 UTC (rev 894516)
@@ -1,31 +0,0 @@
-diff -aur origsrc/ansible-lint-5.0.0/setup.cfg src/ansible-lint-5.0.0/setup.cfg
 aaa/setup.cfg  2021-02-09 19:19:11.689518714 +0100
-+++ bbb/setup.cfg  2021-02-09 19:19:30.538804812 +0100
-@@ -54,18 +54,12 @@
-   lint
- 
- [options]
--use_scm_version = True
- python_requires = >=3.6
- package_dir =
-   = src
- packages = find:
- zip_safe = False
- 
--# These are required during `setup.py` run:
--setup_requires =
--  

[arch-commits] Commit in ansible-lint/trunk (PKGBUILD)

2021-03-18 Thread Frederik Schwan via arch-commits
Date: Thursday, March 18, 2021 @ 20:14:48
  Author: freswa
Revision: 894515

upgpkg: ansible-lint 5.0.4-1

Modified:
  ansible-lint/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 20:13:29 UTC (rev 894514)
+++ PKGBUILD2021-03-18 20:14:48 UTC (rev 894515)
@@ -3,8 +3,8 @@
 # Contributor: Sander Boom 
 
 pkgname=ansible-lint
-pkgver=5.0.3
-pkgrel=3
+pkgver=5.0.4
+pkgrel=1
 pkgdesc="Checks playbooks for practices and behaviour that could potentially 
be improved."
 arch=('any')
 url="https://github.com/ansible/ansible-lint;
@@ -16,7 +16,7 @@
 'ansible: check official ansible collections')
 
source=(https://github.com/ansible/ansible-lint/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
 disable_use_scm_version.patch)
-b2sums=('7dd7de2bc08a38ca757f3a4d59a97d01bb205c77d91f2316a2b6392eec3b3c189716c4e5fefd74c866274db73014dc866f8dfdf6f49a9d47ef7b215f13d073ca'
+b2sums=('95099b38636afda029c556bd662167efa6fac459aeeca49c1649d08ed137fb6d18f3423d1a90cebe9cced3b0ce5ffc146e9942eb925ff525276c8bc324efe128'
 
'a090862e657bfc29c89b23b2ecc8c585e15f098310b997e39600b6bdf0cd433e1045e2da348ce27dc2d3c0f9ef01950cf0ec5e7b071bc43d85161faabd8a1f60')
 
 prepare() {


[arch-commits] Commit in haskell-hls-hlint-plugin/repos (2 files)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 20:13:29
  Author: felixonmars
Revision: 894514

archrelease: copy trunk to community-x86_64

Added:
  haskell-hls-hlint-plugin/repos/community-x86_64/
  haskell-hls-hlint-plugin/repos/community-x86_64/PKGBUILD
(from rev 894513, haskell-hls-hlint-plugin/trunk/PKGBUILD)

--+
 PKGBUILD |   49 +
 1 file changed, 49 insertions(+)

Copied: haskell-hls-hlint-plugin/repos/community-x86_64/PKGBUILD (from rev 
894513, haskell-hls-hlint-plugin/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2021-03-18 20:13:29 UTC (rev 894514)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-hlint-plugin
+pkgname=haskell-hls-hlint-plugin
+pkgver=1.0.0.1
+pkgrel=1
+pkgdesc="Hlint integration plugin with Haskell Language Server"
+url="https://hackage.haskell.org/package/hls-hlint-plugin;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-diff' 'haskell-aeson' 'haskell-apply-refact' 
'haskell-data-default'
+ 'haskell-extra' 'haskell-ghc' 'haskell-ghc-exactprint' 
'haskell-ghcide' 'haskell-hashable'
+ 'hlint' 'haskell-hls-plugin-api' 'haskell-hslogger' 'haskell-lens' 
'haskell-lsp'
+ 'haskell-regex-tdfa' 'haskell-shake' 'haskell-temporary' 
'haskell-unordered-containers')
+makedepends=('ghc' 'uusi')
+#source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+source=("https://github.com/haskell/haskell-language-server/archive/ghcide-v1.1.0/haskell-language-server-ghcide-v1.1.0.tar.gz;)
+sha256sums=('ec611943b46027488d85135eb61245ea7cbd892ed9825b1456a4b74e0eb5a713')
+
+prepare() {
+  cd haskell-language-server-ghcide-v1.1.0/plugins/$_hkgname
+  gen-setup
+}
+
+build() {
+  cd haskell-language-server-ghcide-v1.1.0/plugins/$_hkgname
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd haskell-language-server-ghcide-v1.1.0/plugins/$_hkgname
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in (4 files)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 20:13:18
  Author: felixonmars
Revision: 894513

addpkg: haskell-hls-hlint-plugin 1.0.0.1-1

Added:
  haskell-hls-hlint-plugin/
  haskell-hls-hlint-plugin/repos/
  haskell-hls-hlint-plugin/trunk/
  haskell-hls-hlint-plugin/trunk/PKGBUILD

--+
 PKGBUILD |   49 +
 1 file changed, 49 insertions(+)

Added: haskell-hls-hlint-plugin/trunk/PKGBUILD
===
--- haskell-hls-hlint-plugin/trunk/PKGBUILD (rev 0)
+++ haskell-hls-hlint-plugin/trunk/PKGBUILD 2021-03-18 20:13:18 UTC (rev 
894513)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-hlint-plugin
+pkgname=haskell-hls-hlint-plugin
+pkgver=1.0.0.1
+pkgrel=1
+pkgdesc="Hlint integration plugin with Haskell Language Server"
+url="https://hackage.haskell.org/package/hls-hlint-plugin;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-diff' 'haskell-aeson' 'haskell-apply-refact' 
'haskell-data-default'
+ 'haskell-extra' 'haskell-ghc' 'haskell-ghc-exactprint' 
'haskell-ghcide' 'haskell-hashable'
+ 'hlint' 'haskell-hls-plugin-api' 'haskell-hslogger' 'haskell-lens' 
'haskell-lsp'
+ 'haskell-regex-tdfa' 'haskell-shake' 'haskell-temporary' 
'haskell-unordered-containers')
+makedepends=('ghc' 'uusi')
+#source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+source=("https://github.com/haskell/haskell-language-server/archive/ghcide-v1.1.0/haskell-language-server-ghcide-v1.1.0.tar.gz;)
+sha256sums=('ec611943b46027488d85135eb61245ea7cbd892ed9825b1456a4b74e0eb5a713')
+
+prepare() {
+  cd haskell-language-server-ghcide-v1.1.0/plugins/$_hkgname
+  gen-setup
+}
+
+build() {
+  cd haskell-language-server-ghcide-v1.1.0/plugins/$_hkgname
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd haskell-language-server-ghcide-v1.1.0/plugins/$_hkgname
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-summoner-tui/repos (2 files)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 19:23:40
  Author: felixonmars
Revision: 894509

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-summoner-tui/repos/community-staging-x86_64/
  haskell-summoner-tui/repos/community-staging-x86_64/PKGBUILD
(from rev 894508, haskell-summoner-tui/trunk/PKGBUILD)

--+
 PKGBUILD |   53 +
 1 file changed, 53 insertions(+)

Copied: haskell-summoner-tui/repos/community-staging-x86_64/PKGBUILD (from rev 
894508, haskell-summoner-tui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-03-18 19:23:40 UTC (rev 894509)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: berberman 
+
+_hkgname=summoner-tui
+pkgname=haskell-summoner-tui
+pkgver=2.0.1.1
+pkgrel=151
+pkgdesc="Tool for scaffolding fully configured batteries-included 
production-level Haskell projects using TUI."
+url="https://github.com/kowainik/summoner;
+license=('MPL2')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-brick' 'haskell-colourista' 'haskell-microlens' 
'haskell-microlens-th'
+ 'haskell-relude' 'haskell-summoner' 'haskell-validation-selective' 
'haskell-vty')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('9f840f25d72c54b4b5ed0c5e6755e52ca71e9961759de6bd0046d567bd1f2c27')
+
+prepare(){
+  cd $_hkgname-$pkgver
+  echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+  uusi $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-summoner-tui/trunk (PKGBUILD)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 19:23:29
  Author: felixonmars
Revision: 894508

upgpkg: haskell-summoner-tui 2.0.1.1-151: rebuild with tomland 1.3.3.0

Modified:
  haskell-summoner-tui/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 19:22:28 UTC (rev 894507)
+++ PKGBUILD2021-03-18 19:23:29 UTC (rev 894508)
@@ -4,7 +4,7 @@
 _hkgname=summoner-tui
 pkgname=haskell-summoner-tui
 pkgver=2.0.1.1
-pkgrel=150
+pkgrel=151
 pkgdesc="Tool for scaffolding fully configured batteries-included 
production-level Haskell projects using TUI."
 url="https://github.com/kowainik/summoner;
 license=('MPL2')


[arch-commits] Commit in haskell-summoner/repos (2 files)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 19:22:28
  Author: felixonmars
Revision: 894507

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-summoner/repos/community-staging-x86_64/
  haskell-summoner/repos/community-staging-x86_64/PKGBUILD
(from rev 894506, haskell-summoner/trunk/PKGBUILD)

--+
 PKGBUILD |   54 ++
 1 file changed, 54 insertions(+)

Copied: haskell-summoner/repos/community-staging-x86_64/PKGBUILD (from rev 
894506, haskell-summoner/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-03-18 19:22:28 UTC (rev 894507)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+# Contributor: berberman 
+
+_hkgname=summoner
+pkgname=haskell-summoner
+pkgver=2.0.1.1
+pkgrel=134
+pkgdesc="Tool for scaffolding fully configured batteries-included 
production-level Haskell projects."
+url="https://github.com/kowainik/summoner;
+license=('MPL2')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-colourista' 
'haskell-generic-data' 'haskell-gitrev'
+ 'haskell-neat-interpolation' 'haskell-optparse-applicative' 
'haskell-relude'
+ 'haskell-shellmet' 'haskell-tomland' 'haskell-validation-selective')
+makedepends=('ghc' 'uusi' 'haskell-hedgehog' 'haskell-hspec' 
'haskell-hspec-hedgehog' 'haskell-tree-diff')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('5b6eee2848e2fb0b65d34f4a980ecd6e7766629a42394348dc2166e2216fc496')
+
+prepare(){
+  cd $_hkgname-$pkgver
+  echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+  uusi $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test || :
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-summoner/trunk (PKGBUILD)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 19:22:18
  Author: felixonmars
Revision: 894506

upgpkg: haskell-summoner 2.0.1.1-134: rebuild with tomland 1.3.3.0

Modified:
  haskell-summoner/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 19:20:53 UTC (rev 894505)
+++ PKGBUILD2021-03-18 19:22:18 UTC (rev 894506)
@@ -4,7 +4,7 @@
 _hkgname=summoner
 pkgname=haskell-summoner
 pkgver=2.0.1.1
-pkgrel=133
+pkgrel=134
 pkgdesc="Tool for scaffolding fully configured batteries-included 
production-level Haskell projects."
 url="https://github.com/kowainik/summoner;
 license=('MPL2')


[arch-commits] Commit in haskell-tomland/repos (2 files)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 19:20:53
  Author: felixonmars
Revision: 894505

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-tomland/repos/community-staging-x86_64/
  haskell-tomland/repos/community-staging-x86_64/PKGBUILD
(from rev 894504, haskell-tomland/trunk/PKGBUILD)

--+
 PKGBUILD |   55 +++
 1 file changed, 55 insertions(+)

Copied: haskell-tomland/repos/community-staging-x86_64/PKGBUILD (from rev 
894504, haskell-tomland/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-03-18 19:20:53 UTC (rev 894505)
@@ -0,0 +1,55 @@
+# Maintainer: Felix Yan 
+# Contributor: berberman 
+
+_hkgname=tomland
+pkgname=haskell-tomland
+pkgver=1.3.3.0
+pkgrel=1
+pkgdesc="Implementation of bidirectional TOML serialization."
+url="https://github.com/kowainik/tomland;
+license=('MPL2')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hashable' 'haskell-megaparsec' 
'haskell-parser-combinators'
+ 'haskell-unordered-containers' 'haskell-validation-selective')
+makedepends=('ghc' 'uusi' 'haskell-hedgehog' 'haskell-hspec' 
'haskell-hspec-hedgehog'
+ 'haskell-hspec-megaparsec' 'haskell-markdown-unlit')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('3bf4e6382993c07f776b2dd7326e2eeecde581fe145a60caaa3b0decb8d81404e772a12594442afa6bce289c3df6548dc46df6c82822e9c7e4f0be0b7d3af1c8')
+
+prepare(){
+  cd $_hkgname-$pkgver
+  gen-setup
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+
+  mv "$pkgdir"/usr/bin/{,tomland-}readme
+}


[arch-commits] Commit in haskell-tomland/trunk (PKGBUILD)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 19:20:43
  Author: felixonmars
Revision: 894504

upgpkg: haskell-tomland 1.3.3.0-1: rebuild with tomland 1.3.3.0

Modified:
  haskell-tomland/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 19:17:28 UTC (rev 894503)
+++ PKGBUILD2021-03-18 19:20:43 UTC (rev 894504)
@@ -3,8 +3,8 @@
 
 _hkgname=tomland
 pkgname=haskell-tomland
-pkgver=1.3.2.0
-pkgrel=15
+pkgver=1.3.3.0
+pkgrel=1
 pkgdesc="Implementation of bidirectional TOML serialization."
 url="https://github.com/kowainik/tomland;
 license=('MPL2')
@@ -11,10 +11,10 @@
 arch=('x86_64')
 depends=('ghc-libs' 'haskell-hashable' 'haskell-megaparsec' 
'haskell-parser-combinators'
  'haskell-unordered-containers' 'haskell-validation-selective')
-makedepends=('ghc' 'uusi' 'haskell-hedgehog' 'haskell-hspec' 
'haskell-hspec-golden'
- 'haskell-hspec-hedgehog' 'haskell-hspec-megaparsec' 
'haskell-markdown-unlit')
+makedepends=('ghc' 'uusi' 'haskell-hedgehog' 'haskell-hspec' 
'haskell-hspec-hedgehog'
+ 'haskell-hspec-megaparsec' 'haskell-markdown-unlit')
 
source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
-sha512sums=('c1b70204155822647f279327c6c3cd048c2b134d5361b1b100f0d2b81c97cf6e415da1f83b514b5564735240b894d8c0b91b1f1428a872816c9f2b3117a01451')
+sha512sums=('3bf4e6382993c07f776b2dd7326e2eeecde581fe145a60caaa3b0decb8d81404e772a12594442afa6bce289c3df6548dc46df6c82822e9c7e4f0be0b7d3af1c8')
 
 prepare(){
   cd $_hkgname-$pkgver


[arch-commits] Commit in haskell-hakyll/repos (2 files)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 19:17:06
  Author: felixonmars
Revision: 894495

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hakyll/repos/community-staging-x86_64/
  haskell-hakyll/repos/community-staging-x86_64/PKGBUILD
(from rev 894494, haskell-hakyll/trunk/PKGBUILD)

--+
 PKGBUILD |   56 
 1 file changed, 56 insertions(+)

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
894494, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-03-18 19:17:06 UTC (rev 894495)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.14.0.0
+pkgrel=8
+pkgdesc="A static website compiler library"
+url="https://jaspervdj.be/hakyll;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptonite'
+ 'haskell-data-default' 'haskell-file-embed' 'haskell-fsnotify' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-lrucache' 'haskell-memory' 
'haskell-network-uri'
+ 'haskell-optparse-applicative' 'pandoc' 'haskell-random' 
'haskell-regex-tdfa'
+ 'haskell-resourcet' 'haskell-scientific' 'haskell-tagsoup' 
'haskell-time-locale-compat'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-wai' 
'haskell-wai-app-static'
+ 'haskell-warp' 'haskell-yaml')
+makedepends=('ghc' 'uusi' 'haskell-quickcheck' 'haskell-tasty' 
'haskell-tasty-golden'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('5f3f7a952b085cf1a59a646c15e42f29c89d4ed0a5a96f55156d19b86340c2361da6c19ff7a70bde98122423e237dc7082bfcc84bc5e96ab9421fdaef84a8cce')
+
+prepare() {
+cd $_hkgname-$pkgver
+uusi -u cryptonite -u optparse-applicative -u tasty $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir="$pkgname" 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver -fusepandoc
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-hakyll/trunk (PKGBUILD)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 19:16:55
  Author: felixonmars
Revision: 894494

upgpkg: haskell-hakyll 4.14.0.0-8: rebuild with skylighting 0.10.4.1, 
skylighting-core 0.10.4.1

Modified:
  haskell-hakyll/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 19:15:57 UTC (rev 894493)
+++ PKGBUILD2021-03-18 19:16:55 UTC (rev 894494)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.14.0.0
-pkgrel=7
+pkgrel=8
 pkgdesc="A static website compiler library"
 url="https://jaspervdj.be/hakyll;
 license=("BSD")


[arch-commits] Commit in pulseeffects/repos/community-x86_64 (PKGBUILD PKGBUILD)

2021-03-18 Thread Justin Kromlinger via arch-commits
Date: Thursday, March 18, 2021 @ 19:15:57
  Author: hashworks
Revision: 894493

archrelease: copy trunk to community-x86_64

Added:
  pulseeffects/repos/community-x86_64/PKGBUILD
(from rev 894492, pulseeffects/trunk/PKGBUILD)
Deleted:
  pulseeffects/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   72 ++---
 1 file changed, 36 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-18 19:15:52 UTC (rev 894492)
+++ PKGBUILD2021-03-18 19:15:57 UTC (rev 894493)
@@ -1,36 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Justin Kromlinger 
-# Contributor: Wellington 
-# Contributor: robertfoster
-
-pkgname=pulseeffects
-pkgver=5.0.1
-pkgrel=1
-pkgdesc='Audio Effects for Pulseaudio Applications over Pipewire'
-arch=('x86_64')
-url='https://github.com/wwmm/pulseeffects'
-license=('GPL3')
-depends=('boost-libs' 'calf' 'glibmm' 'gst-plugin-gtk' 'gst-plugin-pipewire'
- 'gst-plugins-bad' 'gst-plugins-base' 'gstreamer' 'gtk3'
- 'gtkmm3' 'libebur128' 'libsamplerate' 'libsigc++' 'libsndfile' 'lilv'
- 'lsp-plugins' 'pipewire' 'pipewire-pulse' 'yelp' 'zita-convolver' 
'rnnoise')
-makedepends=('appstream-glib' 'boost' 'itstool' 'meson' 'rubberband' 
'zam-plugins')
-optdepends=('zam-plugins: maximizer'
-'rubberband: pitch shifting')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('5cd8fe334766e3f939998c37651444da516e3eaf83841c34504d77dacee7f2e00653abb427e7ef7d909755b468689bc419697d97245ba906589df4b9d3cc5b83')
-
-build() {
-  mkdir -p $pkgname-$pkgver/build
-  cd $pkgname-$pkgver/build
-
-  arch-meson ..
-
-  ninja
-}
-
-package() {
-  cd $pkgname-$pkgver/build
-
-  DESTDIR="$pkgdir" ninja install
-}

Copied: pulseeffects/repos/community-x86_64/PKGBUILD (from rev 894492, 
pulseeffects/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-18 19:15:57 UTC (rev 894493)
@@ -0,0 +1,36 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Justin Kromlinger 
+# Contributor: Wellington 
+# Contributor: robertfoster
+
+pkgname=pulseeffects
+pkgver=5.0.2
+pkgrel=1
+pkgdesc='Audio Effects for Pulseaudio Applications over Pipewire'
+arch=('x86_64')
+url='https://github.com/wwmm/pulseeffects'
+license=('GPL3')
+depends=('boost-libs' 'calf' 'glibmm' 'gst-plugin-gtk' 'gst-plugin-pipewire'
+ 'gst-plugins-bad' 'gst-plugins-base' 'gstreamer' 'gtk3'
+ 'gtkmm3' 'libebur128' 'libsamplerate' 'libsigc++' 'libsndfile' 'lilv'
+ 'lsp-plugins' 'pipewire' 'pipewire-pulse' 'yelp' 'zita-convolver' 
'rnnoise')
+makedepends=('appstream-glib' 'boost' 'itstool' 'meson' 'rubberband' 
'zam-plugins')
+optdepends=('zam-plugins: maximizer'
+'rubberband: pitch shifting')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('3cbfcc82c4ed052301d3f700e897a99bacc1a1c66000d2c837ebdb0516c914071fed9334bba917956aeb2b37784ea06054461aef5da95688ea74247311d09300')
+
+build() {
+  mkdir -p $pkgname-$pkgver/build
+  cd $pkgname-$pkgver/build
+
+  arch-meson ..
+
+  ninja
+}
+
+package() {
+  cd $pkgname-$pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+}


[arch-commits] Commit in pulseeffects/trunk (PKGBUILD)

2021-03-18 Thread Justin Kromlinger via arch-commits
Date: Thursday, March 18, 2021 @ 19:15:52
  Author: hashworks
Revision: 894492

upgpkg: pulseeffects 5.0.2-1: Release 5.0.2

Modified:
  pulseeffects/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 19:15:19 UTC (rev 894491)
+++ PKGBUILD2021-03-18 19:15:52 UTC (rev 894492)
@@ -4,7 +4,7 @@
 # Contributor: robertfoster
 
 pkgname=pulseeffects
-pkgver=5.0.1
+pkgver=5.0.2
 pkgrel=1
 pkgdesc='Audio Effects for Pulseaudio Applications over Pipewire'
 arch=('x86_64')
@@ -18,7 +18,7 @@
 optdepends=('zam-plugins: maximizer'
 'rubberband: pitch shifting')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('5cd8fe334766e3f939998c37651444da516e3eaf83841c34504d77dacee7f2e00653abb427e7ef7d909755b468689bc419697d97245ba906589df4b9d3cc5b83')
+sha512sums=('3cbfcc82c4ed052301d3f700e897a99bacc1a1c66000d2c837ebdb0516c914071fed9334bba917956aeb2b37784ea06054461aef5da95688ea74247311d09300')
 
 build() {
   mkdir -p $pkgname-$pkgver/build


[arch-commits] Commit in pandoc-crossref/repos (2 files)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 19:15:19
  Author: felixonmars
Revision: 894491

archrelease: copy trunk to community-staging-x86_64

Added:
  pandoc-crossref/repos/community-staging-x86_64/
  pandoc-crossref/repos/community-staging-x86_64/PKGBUILD
(from rev 894490, pandoc-crossref/trunk/PKGBUILD)

--+
 PKGBUILD |   46 ++
 1 file changed, 46 insertions(+)

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
894490, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-03-18 19:15:19 UTC (rev 894491)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.3.10.0
+pkgrel=3
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgname};
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default' 'haskell-data-accessor' 
'haskell-data-accessor-template'
+ 'haskell-data-accessor-transformers' 'haskell-gitrev' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'pandoc' 'haskell-pandoc-types' 
'haskell-roman-numerals'
+ 'haskell-syb' 'haskell-utility-ht')
+makedepends=('ghc' 'haskell-hspec')
+conflicts=('haskell-pandoc-crossref')
+replaces=('haskell-pandoc-crossref')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lierdakil/pandoc-crossref/archive/v$pkgver.tar.gz;)
+sha512sums=('5f8967371ae3e003e7157184a5e9903133120b5ccada58904a7c3bf8dabc284c0a73d1a34902a349ee1d752e27477ece2944f78820e48bee0f7cac42e29ab87a')
+
+build() {
+cd $pkgname-$pkgver
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+   -f-enable_flaky_tests
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in pandoc-crossref/trunk (PKGBUILD)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 19:15:09
  Author: felixonmars
Revision: 894490

upgpkg: pandoc-crossref 0.3.10.0-3: rebuild with skylighting 0.10.4.1, 
skylighting-core 0.10.4.1

Modified:
  pandoc-crossref/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 19:13:18 UTC (rev 894489)
+++ PKGBUILD2021-03-18 19:15:09 UTC (rev 894490)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.10.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname};
 license=("GPL2")


[arch-commits] Commit in haskell-ci/repos (2 files)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 19:13:18
  Author: felixonmars
Revision: 894489

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-ci/repos/community-staging-x86_64/
  haskell-ci/repos/community-staging-x86_64/PKGBUILD
(from rev 894488, haskell-ci/trunk/PKGBUILD)

--+
 PKGBUILD |   47 +++
 1 file changed, 47 insertions(+)

Copied: haskell-ci/repos/community-staging-x86_64/PKGBUILD (from rev 894488, 
haskell-ci/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-03-18 19:13:18 UTC (rev 894489)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+
+_hkgname=haskell-ci
+pkgname=haskell-ci
+pkgver=0.10.3
+pkgrel=209
+pkgdesc="Cabal package script generator for Travis-CI"
+url="https://haskell-ci.rtfd.org/;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-base-compat' 
'haskell-cabal-install-parsers'
+ 'haskell-generic-lens-lite' 'haskell-hsyaml' 'haskell-lattices' 
'haskell-network-uri'
+ 'haskell-optparse-applicative' 'haskell-temporary' 
'haskell-unordered-containers'
+ 'shellcheck')
+makedepends=('ghc' 'uusi' 'haskell-diff' 'haskell-ansi-terminal' 
'haskell-tasty' 'haskell-tasty-golden')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('7b8bd970619344c8254a678038a19f838a5b4eaba39a8d42c640aa50e1b31ea3')
+
+prepare(){
+  uusi $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-ci/trunk (PKGBUILD)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 19:13:08
  Author: felixonmars
Revision: 894488

upgpkg: haskell-ci 0.10.3-209: rebuild with skylighting 0.10.4.1, 
skylighting-core 0.10.4.1

Modified:
  haskell-ci/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 19:11:21 UTC (rev 894487)
+++ PKGBUILD2021-03-18 19:13:08 UTC (rev 894488)
@@ -3,7 +3,7 @@
 _hkgname=haskell-ci
 pkgname=haskell-ci
 pkgver=0.10.3
-pkgrel=208
+pkgrel=209
 pkgdesc="Cabal package script generator for Travis-CI"
 url="https://haskell-ci.rtfd.org/;
 license=("GPL")


[arch-commits] Commit in shellcheck/repos (2 files)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 19:11:21
  Author: felixonmars
Revision: 894487

archrelease: copy trunk to community-staging-x86_64

Added:
  shellcheck/repos/community-staging-x86_64/
  shellcheck/repos/community-staging-x86_64/PKGBUILD
(from rev 894486, shellcheck/trunk/PKGBUILD)

--+
 PKGBUILD |   51 +++
 1 file changed, 51 insertions(+)

Copied: shellcheck/repos/community-staging-x86_64/PKGBUILD (from rev 894486, 
shellcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-03-18 19:11:21 UTC (rev 894487)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ShellCheck
+pkgname=shellcheck
+pkgver=0.7.1
+pkgrel=338
+pkgdesc="Shell script analysis tool"
+url="https://www.shellcheck.net;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-diff' 'haskell-quickcheck' 
'haskell-regex-tdfa')
+makedepends=('ghc' 'pandoc')
+source=("$_hkgname-$pkgver.tar.gz::https://github.com/koalaman/shellcheck/archive/v$pkgver.tar.gz;)
+sha512sums=('95ca827f50035e352eabfbee9eb1791278f7c18c10c3a6c2656c5b9e87396b7b6c088f4cefa3d6f954ac6c2765ea50e232985b9f3eeea2dbe77c17473cc4a437')
+
+prepare() {
+cd $pkgname-$pkgver
+echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option='-pie'
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+
+./manpage
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m644 ${pkgname}.1   "${pkgdir}/usr/share/man/man1/${pkgname}.1"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in shellcheck/trunk (PKGBUILD)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 19:11:10
  Author: felixonmars
Revision: 894486

upgpkg: shellcheck 0.7.1-338: rebuild with skylighting 0.10.4.1, 
skylighting-core 0.10.4.1

Modified:
  shellcheck/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 19:09:36 UTC (rev 894485)
+++ PKGBUILD2021-03-18 19:11:10 UTC (rev 894486)
@@ -4,7 +4,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.7.1
-pkgrel=337
+pkgrel=338
 pkgdesc="Shell script analysis tool"
 url="https://www.shellcheck.net;
 license=("GPL")


[arch-commits] Commit in haskell-hls-haddock-comments-plugin/repos (2 files)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 19:09:36
  Author: felixonmars
Revision: 894485

archrelease: copy trunk to community-x86_64

Added:
  haskell-hls-haddock-comments-plugin/repos/community-x86_64/
  haskell-hls-haddock-comments-plugin/repos/community-x86_64/PKGBUILD
(from rev 894484, haskell-hls-haddock-comments-plugin/trunk/PKGBUILD)

--+
 PKGBUILD |   47 +++
 1 file changed, 47 insertions(+)

Copied: haskell-hls-haddock-comments-plugin/repos/community-x86_64/PKGBUILD 
(from rev 894484, haskell-hls-haddock-comments-plugin/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2021-03-18 19:09:36 UTC (rev 894485)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-haddock-comments-plugin
+pkgname=haskell-hls-haddock-comments-plugin
+pkgver=1.0.0.0
+pkgrel=1
+pkgdesc="Haddock comments plugin for Haskell Language Server"
+url="https://github.com/haskell/haskell-language-server;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ghc' 'haskell-ghc-exactprint' 'haskell-ghcide' 
'haskell-hls-plugin-api'
+ 'haskell-lsp-types' 'haskell-unordered-containers')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('231ba321483a3bb080cb592498d866e1571224f30318570c2b86c4b6721efeab')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -u ghcide $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in (4 files)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 19:09:18
  Author: felixonmars
Revision: 894484

addpkg: haskell-hls-haddock-comments-plugin 1.0.0.0-1

Added:
  haskell-hls-haddock-comments-plugin/
  haskell-hls-haddock-comments-plugin/repos/
  haskell-hls-haddock-comments-plugin/trunk/
  haskell-hls-haddock-comments-plugin/trunk/PKGBUILD

--+
 PKGBUILD |   47 +++
 1 file changed, 47 insertions(+)

Added: haskell-hls-haddock-comments-plugin/trunk/PKGBUILD
===
--- haskell-hls-haddock-comments-plugin/trunk/PKGBUILD  
(rev 0)
+++ haskell-hls-haddock-comments-plugin/trunk/PKGBUILD  2021-03-18 19:09:18 UTC 
(rev 894484)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-haddock-comments-plugin
+pkgname=haskell-hls-haddock-comments-plugin
+pkgver=1.0.0.0
+pkgrel=1
+pkgdesc="Haddock comments plugin for Haskell Language Server"
+url="https://github.com/haskell/haskell-language-server;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ghc' 'haskell-ghc-exactprint' 'haskell-ghcide' 
'haskell-hls-plugin-api'
+ 'haskell-lsp-types' 'haskell-unordered-containers')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('231ba321483a3bb080cb592498d866e1571224f30318570c2b86c4b6721efeab')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -u ghcide $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in pandoc-citeproc/repos (2 files)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 19:07:22
  Author: felixonmars
Revision: 894483

archrelease: copy trunk to community-staging-x86_64

Added:
  pandoc-citeproc/repos/community-staging-x86_64/
  pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD
(from rev 894482, pandoc-citeproc/trunk/PKGBUILD)

--+
 PKGBUILD |   58 ++
 1 file changed, 58 insertions(+)

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
894482, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-03-18 19:07:22 UTC (rev 894483)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.17.0.2
+pkgrel=239
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/$pkgname;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-attoparsec'
+ 'haskell-base-compat' 'haskell-data-default' 'haskell-hs-bibutils' 
'haskell-libyaml'
+ 'haskell-network' 'haskell-old-locale' 'pandoc' 
'haskell-pandoc-types' 'haskell-rfc5051'
+ 'haskell-safe' 'haskell-setenv' 'haskell-split' 'haskell-syb' 
'haskell-tagsoup'
+ 'haskell-temporary' 'haskell-text-icu' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-xml-conduit' 'haskell-yaml' 'haskell-hsyaml' 
'haskell-hsyaml-aeson')
+conflicts=('haskell-pandoc-citeproc')
+replaces=('haskell-pandoc-citeproc')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/${pkgver}/$pkgname-${pkgver}.tar.gz;)
+sha512sums=('5ce079a542b096c06d6e4e205625a993422a972f04787495ac9013dd3131df62733f30e4c3004335e3738b02bb22a7ad50a31c1eb3f67d2b4ef51605c7fcbf16')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+uusi $pkgname.cabal
+# TODO: find a better solution
+sed -i 
"s|(\"HOME\",\".\")|(\"HOME\",\".\"),(\"LD_LIBRARY_PATH\",\"$PWD/dist/build\"),(\"pandoc_citeproc_datadir\",\"$PWD\")|"
 tests/test-pandoc-citeproc.hs
+}
+
+build() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/$pkgname" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug -f-test_citeproc -funicode_collation -f-embed_data_files 
-fbibutils -f-static
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+# https://github.com/jgm/pandoc-citeproc/issues/342
+runhaskell Setup test || echo "Tests failed"
+}
+
+package() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/$pkgname.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/$pkgname.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/$pkgname/LICENSE"
+}


[arch-commits] Commit in pandoc-citeproc/trunk (PKGBUILD)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 19:07:11
  Author: felixonmars
Revision: 894482

upgpkg: pandoc-citeproc 0.17.0.2-239: rebuild with skylighting 0.10.4.1, 
skylighting-core 0.10.4.1

Modified:
  pandoc-citeproc/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 19:03:38 UTC (rev 894481)
+++ PKGBUILD2021-03-18 19:07:11 UTC (rev 894482)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.17.0.2
-pkgrel=238
+pkgrel=239
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname;
 license=("BSD")


[arch-commits] Commit in pandoc/repos (2 files)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 19:03:38
  Author: felixonmars
Revision: 894481

archrelease: copy trunk to community-staging-x86_64

Added:
  pandoc/repos/community-staging-x86_64/
  pandoc/repos/community-staging-x86_64/PKGBUILD
(from rev 894480, pandoc/trunk/PKGBUILD)

--+
 PKGBUILD |   70 +
 1 file changed, 70 insertions(+)

Copied: pandoc/repos/community-staging-x86_64/PKGBUILD (from rev 894480, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-03-18 19:03:38 UTC (rev 894481)
@@ -0,0 +1,70 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=2.11.4
+pkgrel=14
+pkgdesc='Conversion between markup formats'
+url='https://pandoc.org'
+license=('GPL')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-http' 'haskell-juicypixels' 'haskell-sha' 
'haskell-aeson'
+ 'haskell-aeson-pretty' 'haskell-attoparsec' 
'haskell-base64-bytestring'
+ 'haskell-blaze-html' 'haskell-blaze-markup' 'haskell-case-insensitive'
+ 'haskell-citeproc' 'haskell-commonmark' 
'haskell-commonmark-extensions'
+ 'haskell-commonmark-pandoc' 'haskell-connection' 
'haskell-data-default' 'haskell-doclayout'
+ 'haskell-doctemplates' 'haskell-emojis' 'haskell-file-embed' 
'haskell-glob'
+ 'haskell-haddock-library1.9' 'haskell-ipynb' 
'haskell-jira-wiki-markup' 'haskell-skylighting'
+ 'haskell-skylighting-core' 'haskell-hslua' 
'haskell-hslua-module-system'
+ 'haskell-hslua-module-text' 'haskell-http-client' 'haskell-syb' 
'haskell-hsyaml'
+ 'haskell-http-client-tls' 'haskell-http-types' 'haskell-safe' 
'haskell-split'
+ 'haskell-texmath' 'haskell-network' 'haskell-pandoc-types' 
'haskell-random'
+ 'haskell-scientific' 'haskell-tagsoup' 'haskell-temporary' 
'haskell-text-conversions'
+ 'haskell-network-uri' 'haskell-unicode-transforms' 
'haskell-unordered-containers'
+ 'haskell-zip-archive' 'haskell-xml' 'haskell-zlib')
+optdepends=('pandoc-citeproc: for citation rendering with pandoc-citeproc 
filter'
+'pandoc-crossref: for numbering figures, equations, tables and 
cross-references to them with pandoc-crossref filter'
+'texlive-core: for pdf output')
+conflicts=('haskell-pandoc')
+replaces=('haskell-pandoc')
+makedepends=('ghc' 'uusi' 'haskell-diff' 'haskell-tasty' 'haskell-tasty-hunit' 
'haskell-tasty-lua'
+ 'haskell-tasty-quickcheck' 'haskell-tasty-golden' 
'haskell-quickcheck'
+ 'haskell-executable-path')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('ec07c76f3bf71d38bf5a70f2d13b5e60232e1581eb9fddc302b0e15a3cea4dd60d520de249fd5108eb1afa3d853ceefae1651c4f5a82c25ed74c94ab9700aa70')
+
+prepare() {
+cd $pkgname-$pkgver
+uusi -u base64-bytestring -u random -u tasty $pkgname.cabal
+
+# TODO: find a better solution
+sed -i "s|let env' = dynlibEnv ++ |let env' = dynlibEnv ++ 
[(\"LD_LIBRARY_PATH\", \"$PWD/dist/build\")] ++ |" test/Tests/Command.hs
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-trypandoc -f-embed_data_files -f-static
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || echo "Tests failed"
+}
+
+package() {
+cd $pkgname-$pkgver
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm "${pkgdir}/usr/share/doc/${pkgname}/COPYING.md"
+install -Dm644 man/pandoc.1 -t "${pkgdir}"/usr/share/man/man1/
+}


[arch-commits] Commit in pandoc/trunk (PKGBUILD)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 19:03:27
  Author: felixonmars
Revision: 894480

upgpkg: pandoc 2.11.4-14: rebuild with skylighting 0.10.4.1, skylighting-core 
0.10.4.1

Modified:
  pandoc/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 18:51:02 UTC (rev 894479)
+++ PKGBUILD2021-03-18 19:03:27 UTC (rev 894480)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc
 pkgver=2.11.4
-pkgrel=13
+pkgrel=14
 pkgdesc='Conversion between markup formats'
 url='https://pandoc.org'
 license=('GPL')


[arch-commits] Commit in haskell-skylighting/repos (2 files)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 18:51:02
  Author: felixonmars
Revision: 894479

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-skylighting/repos/community-staging-x86_64/
  haskell-skylighting/repos/community-staging-x86_64/PKGBUILD
(from rev 894478, haskell-skylighting/trunk/PKGBUILD)

--+
 PKGBUILD |   37 +
 1 file changed, 37 insertions(+)

Copied: haskell-skylighting/repos/community-staging-x86_64/PKGBUILD (from rev 
894478, haskell-skylighting/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-03-18 18:51:02 UTC (rev 894479)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+
+_hkgname=skylighting
+pkgname=haskell-skylighting
+pkgver=0.10.4.1
+pkgrel=1
+pkgdesc="Syntax highlighting library"
+url="https://github.com/jgm/skylighting;
+license=('GPL2')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-skylighting-core')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('197761af114278780b8c8e577038c985e8989478143dcbc968f9558163c37f25e63a8b6907b017cbfb80c62a62699e1fab9b7c78d60e9b9c051f006330dd2a79')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-executable
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-skylighting/trunk (PKGBUILD)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 18:50:52
  Author: felixonmars
Revision: 894478

upgpkg: haskell-skylighting 0.10.4.1-1: rebuild with skylighting 0.10.4.1, 
skylighting-core 0.10.4.1

Modified:
  haskell-skylighting/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 18:49:42 UTC (rev 894477)
+++ PKGBUILD2021-03-18 18:50:52 UTC (rev 894478)
@@ -2,8 +2,8 @@
 
 _hkgname=skylighting
 pkgname=haskell-skylighting
-pkgver=0.10.4
-pkgrel=2
+pkgver=0.10.4.1
+pkgrel=1
 pkgdesc="Syntax highlighting library"
 url="https://github.com/jgm/skylighting;
 license=('GPL2')
@@ -11,7 +11,7 @@
 depends=('ghc-libs' 'haskell-skylighting-core')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('89055ba83edd20f14a9dbb45868070fc9344487d8f494649e0d6e8bd9a774b722bdf2dca5dfcda54db84267260dca6ea277a55387a5a3bbfd9f8370d2e7b')
+sha512sums=('197761af114278780b8c8e577038c985e8989478143dcbc968f9558163c37f25e63a8b6907b017cbfb80c62a62699e1fab9b7c78d60e9b9c051f006330dd2a79')
 
 build() {
 cd $_hkgname-$pkgver


[arch-commits] Commit in haskell-skylighting-core/repos (2 files)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 18:49:42
  Author: felixonmars
Revision: 894477

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-skylighting-core/repos/community-staging-x86_64/
  haskell-skylighting-core/repos/community-staging-x86_64/PKGBUILD
(from rev 894476, haskell-skylighting-core/trunk/PKGBUILD)

--+
 PKGBUILD |   46 ++
 1 file changed, 46 insertions(+)

Copied: haskell-skylighting-core/repos/community-staging-x86_64/PKGBUILD (from 
rev 894476, haskell-skylighting-core/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-03-18 18:49:42 UTC (rev 894477)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+
+_hkgname=skylighting-core
+pkgname=haskell-skylighting-core
+pkgver=0.10.4.1
+pkgrel=1
+pkgdesc="Syntax highlighting library"
+url="https://github.com/jgm/skylighting;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 
'haskell-attoparsec'
+ 'haskell-base64-bytestring' 'haskell-blaze-html' 
'haskell-case-insensitive'
+ 'haskell-colour' 'haskell-safe' 'haskell-utf8-string' 
'haskell-xml-conduit')
+makedepends=('ghc' 'haskell-diff' 'haskell-pretty-show' 'haskell-quickcheck' 
'haskell-tasty'
+ 'haskell-tasty-golden' 'haskell-tasty-hunit' 
'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('a5137401c16a740e12d1fade43d7bcfcbef2002f7039ff0cb02d733703b3e35d8fa3913e52583c735bc935c4ffabaf23df567be3e597b9418af17f157cf3c80e')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fexecutable
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-skylighting-core/trunk (PKGBUILD)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 18:49:31
  Author: felixonmars
Revision: 894476

upgpkg: haskell-skylighting-core 0.10.4.1-1: rebuild with skylighting 0.10.4.1, 
skylighting-core 0.10.4.1

Modified:
  haskell-skylighting-core/trunk/PKGBUILD

--+
 PKGBUILD |   11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 18:45:18 UTC (rev 894475)
+++ PKGBUILD2021-03-18 18:49:31 UTC (rev 894476)
@@ -2,8 +2,8 @@
 
 _hkgname=skylighting-core
 pkgname=haskell-skylighting-core
-pkgver=0.10.4
-pkgrel=2
+pkgver=0.10.4.1
+pkgrel=1
 pkgdesc="Syntax highlighting library"
 url="https://github.com/jgm/skylighting;
 license=('BSD')
@@ -11,11 +11,10 @@
 depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 
'haskell-attoparsec'
  'haskell-base64-bytestring' 'haskell-blaze-html' 
'haskell-case-insensitive'
  'haskell-colour' 'haskell-safe' 'haskell-utf8-string' 
'haskell-xml-conduit')
-makedepends=('ghc' 'haskell-diff' 'haskell-hunit' 'haskell-pretty-show' 
'haskell-quickcheck'
- 'haskell-random' 'haskell-tasty' 'haskell-tasty-golden' 
'haskell-tasty-hunit'
- 'haskell-tasty-quickcheck')
+makedepends=('ghc' 'haskell-diff' 'haskell-pretty-show' 'haskell-quickcheck' 
'haskell-tasty'
+ 'haskell-tasty-golden' 'haskell-tasty-hunit' 
'haskell-tasty-quickcheck')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('42b3b3aa46e8ac878ece89c30b757198f2ddac91707c95372af47f46d76a5766d4e0c63b2b50377d5404d40b0754cd07d8dd1ae3c60f25d32739950dfc939081')
+sha512sums=('a5137401c16a740e12d1fade43d7bcfcbef2002f7039ff0cb02d733703b3e35d8fa3913e52583c735bc935c4ffabaf23df567be3e597b9418af17f157cf3c80e')
 
 build() {
 cd $_hkgname-$pkgver


[arch-commits] Commit in python-responses/repos/community-any (4 files)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 18:45:18
  Author: felixonmars
Revision: 894475

archrelease: copy trunk to community-any

Added:
  python-responses/repos/community-any/PKGBUILD
(from rev 894474, python-responses/trunk/PKGBUILD)
  python-responses/repos/community-any/pytest5.patch
(from rev 894474, python-responses/trunk/pytest5.patch)
Deleted:
  python-responses/repos/community-any/PKGBUILD
  python-responses/repos/community-any/pytest5.patch

---+
 PKGBUILD  |   64 
 pytest5.patch |   56 -
 2 files changed, 60 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-18 18:45:04 UTC (rev 894474)
+++ PKGBUILD2021-03-18 18:45:18 UTC (rev 894475)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-responses
-pkgver=0.13.0
-pkgrel=1
-pkgdesc='A utility library for mocking out the `requests` Python library.'
-arch=('any')
-license=('Apache')
-url='https://github.com/getsentry/responses'
-depends=('python-requests' 'python-biscuits' 'python-six')
-makedepends=('python-setuptools')
-checkdepends=('mypy' 'python-pytest-runner' 'python-pytest-cov' 'flake8'
-  'python-pytest-localserver')
-source=("https://github.com/getsentry/responses/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('49d08eba5b49884cb9a09bac7f544a480ac9a324746b9aec642854a68c7139fe9d2f6f3e5f06e957764fd514944699db58040e83df82b9f9571adcac854f7f2b')
-
-build() {
-  cd responses-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd responses-$pkgver
-  python setup.py pytest
-}
-
-package() {
-  cd responses-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-responses/repos/community-any/PKGBUILD (from rev 894474, 
python-responses/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-18 18:45:18 UTC (rev 894475)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-responses
+pkgver=0.13.1
+pkgrel=1
+pkgdesc='A utility library for mocking out the `requests` Python library.'
+arch=('any')
+license=('Apache')
+url='https://github.com/getsentry/responses'
+depends=('python-requests' 'python-biscuits' 'python-six')
+makedepends=('python-setuptools')
+checkdepends=('mypy' 'python-pytest-runner' 'python-pytest-cov' 'flake8'
+  'python-pytest-localserver')
+source=("https://github.com/getsentry/responses/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('14814577b542f8adf5b1400df9eb8a0b748684ab850a41104c354fa8773bd51dea605a7a0006cb7ac4347ff76d88982172470278970d398ddf525a2dd51b9709')
+
+build() {
+  cd responses-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd responses-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd responses-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: pytest5.patch
===
--- pytest5.patch   2021-03-18 18:45:04 UTC (rev 894474)
+++ pytest5.patch   2021-03-18 18:45:18 UTC (rev 894475)
@@ -1,28 +0,0 @@
-From b9c17412445530298eb28917c1ef3a8f7cff971c Mon Sep 17 00:00:00 2001
-From: Brandon Hong 
-Date: Wed, 9 Oct 2019 15:18:56 +0800
-Subject: [PATCH] Fix testcase test_assert_all_requests_are_fired failure
-
-Pytest 5.0.0 changed ExceptionInfo object's str() to returns the same as 
repr().
-(See, item #5412 of 
https://docs.pytest.org/en/latest/changelog.html#pytest-5-0-0-2019-06-28)
-This patch fixes the test failure by comparing expectation with str() result of
-ExceptionInfo's value member instaed of object itself.
-
-Signed-off-by: Brandon Hong 

- test_responses.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/test_responses.py b/test_responses.py
-index 4740dfb..c2a4f01 100644
 a/test_responses.py
-+++ b/test_responses.py
-@@ -701,7 +701,7 @@ def run():
- with responses.RequestsMock(assert_all_requests_are_fired=True) 
as m:
- m.add(responses.GET, "http://example.com;, body=b"test")
- assert "http://example.com; in str(excinfo.value)
--assert responses.GET in str(excinfo)
-+assert responses.GET in str(excinfo.value)
- 
- # check that assert_all_requests_are_fired default to True
- with pytest.raises(AssertionError):

Copied: python-responses/repos/community-any/pytest5.patch (from rev 894474, 
python-responses/trunk/pytest5.patch)
===
--- pytest5.patch   (rev 0)
+++ pytest5.patch   2021-03-18 18:45:18 UTC (rev 894475)
@@ -0,0 +1,28 @@
+From b9c17412445530298eb28917c1ef3a8f7cff971c Mon Sep 17 00:00:00 2001
+From: Brandon Hong 
+Date: Wed, 9 Oct 2019 15:18:56 +0800
+Subject: 

[arch-commits] Commit in python-responses/trunk (PKGBUILD)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 18:45:04
  Author: felixonmars
Revision: 894474

upgpkg: python-responses 0.13.1-1

Modified:
  python-responses/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 18:45:00 UTC (rev 894473)
+++ PKGBUILD2021-03-18 18:45:04 UTC (rev 894474)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-responses
-pkgver=0.13.0
+pkgver=0.13.1
 pkgrel=1
 pkgdesc='A utility library for mocking out the `requests` Python library.'
 arch=('any')
@@ -12,7 +12,7 @@
 checkdepends=('mypy' 'python-pytest-runner' 'python-pytest-cov' 'flake8'
   'python-pytest-localserver')
 
source=("https://github.com/getsentry/responses/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('49d08eba5b49884cb9a09bac7f544a480ac9a324746b9aec642854a68c7139fe9d2f6f3e5f06e957764fd514944699db58040e83df82b9f9571adcac854f7f2b')
+sha512sums=('14814577b542f8adf5b1400df9eb8a0b748684ab850a41104c354fa8773bd51dea605a7a0006cb7ac4347ff76d88982172470278970d398ddf525a2dd51b9709')
 
 build() {
   cd responses-$pkgver


[arch-commits] Commit in python-flask-caching/repos/community-any (PKGBUILD PKGBUILD)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 18:45:00
  Author: felixonmars
Revision: 894473

archrelease: copy trunk to community-any

Added:
  python-flask-caching/repos/community-any/PKGBUILD
(from rev 894472, python-flask-caching/trunk/PKGBUILD)
Deleted:
  python-flask-caching/repos/community-any/PKGBUILD

--+
 PKGBUILD |   72 ++---
 1 file changed, 36 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-18 18:44:48 UTC (rev 894472)
+++ PKGBUILD2021-03-18 18:45:00 UTC (rev 894473)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-flask-caching
-pkgver=1.10.0
-pkgrel=1
-pkgdesc="Adds caching support to your Flask application"
-url="https://github.com/sh4nks/flask-caching;
-license=('BSD')
-arch=('any')
-depends=('python-flask')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest-runner' 'python-pytest-cov' 
'python-pytest-xprocess' 'python-pylibmc'
-  'python-redis')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/sh4nks/flask-caching/archive/v$pkgver.tar.gz;)
-sha512sums=('84054ca748420574b645ba90ce625195c4d17cbf1fa7a56b8ade618db79375b902cb8e467c1486823dc2a0874e0730e73d5009c8a2f45caf2d0ad1d6e2c14eda')
-
-prepare() {
-  cd flask-caching-$pkgver
-  sed -i 's/< *2.6/<3/' setup.py
-}
-
-build() {
-  cd flask-caching-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd flask-caching-$pkgver
-  python setup.py pytest
-}
-
-package() {
-  cd flask-caching-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-flask-caching/repos/community-any/PKGBUILD (from rev 894472, 
python-flask-caching/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-18 18:45:00 UTC (rev 894473)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-flask-caching
+pkgver=1.10.1
+pkgrel=1
+pkgdesc="Adds caching support to your Flask application"
+url="https://github.com/sh4nks/flask-caching;
+license=('BSD')
+arch=('any')
+depends=('python-flask')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner' 'python-pytest-cov' 
'python-pytest-xprocess' 'python-pylibmc'
+  'python-redis')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/sh4nks/flask-caching/archive/v$pkgver.tar.gz;)
+sha512sums=('d332cb0769547f4f6eca3c3fc6a45f4e105ef7c29c096da7e8281577f786630c493480fe050769f8efa41fe52246dc3a857ca9912fd273a208bc5bea07e7fe37')
+
+prepare() {
+  cd flask-caching-$pkgver
+  sed -i 's/< *2.6/<3/' setup.py
+}
+
+build() {
+  cd flask-caching-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd flask-caching-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd flask-caching-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in python-flask-caching/trunk (PKGBUILD)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 18:44:48
  Author: felixonmars
Revision: 894472

upgpkg: python-flask-caching 1.10.1-1

Modified:
  python-flask-caching/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 18:44:41 UTC (rev 894471)
+++ PKGBUILD2021-03-18 18:44:48 UTC (rev 894472)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-flask-caching
-pkgver=1.10.0
+pkgver=1.10.1
 pkgrel=1
 pkgdesc="Adds caching support to your Flask application"
 url="https://github.com/sh4nks/flask-caching;
@@ -12,7 +12,7 @@
 checkdepends=('python-pytest-runner' 'python-pytest-cov' 
'python-pytest-xprocess' 'python-pylibmc'
   'python-redis')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/sh4nks/flask-caching/archive/v$pkgver.tar.gz;)
-sha512sums=('84054ca748420574b645ba90ce625195c4d17cbf1fa7a56b8ade618db79375b902cb8e467c1486823dc2a0874e0730e73d5009c8a2f45caf2d0ad1d6e2c14eda')
+sha512sums=('d332cb0769547f4f6eca3c3fc6a45f4e105ef7c29c096da7e8281577f786630c493480fe050769f8efa41fe52246dc3a857ca9912fd273a208bc5bea07e7fe37')
 
 prepare() {
   cd flask-caching-$pkgver


[arch-commits] Commit in twine/repos/community-any (PKGBUILD PKGBUILD)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 18:44:41
  Author: felixonmars
Revision: 894471

archrelease: copy trunk to community-any

Added:
  twine/repos/community-any/PKGBUILD
(from rev 894470, twine/trunk/PKGBUILD)
Deleted:
  twine/repos/community-any/PKGBUILD

--+
 PKGBUILD |   80 ++---
 1 file changed, 40 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-18 18:44:30 UTC (rev 894470)
+++ PKGBUILD2021-03-18 18:44:41 UTC (rev 894471)
@@ -1,40 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Chris Warrick 
-
-pkgname=twine
-pkgver=3.4.0
-pkgrel=1
-pkgdesc='Collection of utilities for interacting with PyPI'
-arch=('any')
-url='https://pypi.python.org/pypi/twine'
-license=('Apache')
-depends=('python-pkginfo' 'python-readme-renderer' 'python-requests' 
'python-requests-toolbelt'
- 'python-packaging' 'python-importlib-metadata' 'python-tqdm' 
'python-keyring'
- 'python-rfc3986' 'python-colorama')
-makedepends=('python-setuptools-scm')
-checkdepends=('git' 'python-munch' 'python-jaraco.envs' 'python-portend' 
'python-pretend'
-  'python-pytest-cov' 'python-pytest-services' 
'python-pytest-socket')
-provides=('python-twine')
-conflicts=('python-twine')
-replaces=('python-twine')
-source=("https://github.com/pypa/twine/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('6ce4757048fe7b5ada8a384fa185e80cee8412ef7f0561f55a5cbec39c0069522b57e403f148b9b55c55330a577873a5e9597ca0a6b0fb0cce6b377c8df07e4e')
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-
-build() {
-  cd twine-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd twine-$pkgver
-  python setup.py egg_info
-  python -m pytest
-}
-
-package() {
-  cd twine-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  ln -s twine "$pkgdir"/usr/bin/twine3
-}

Copied: twine/repos/community-any/PKGBUILD (from rev 894470, 
twine/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-18 18:44:41 UTC (rev 894471)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Chris Warrick 
+
+pkgname=twine
+pkgver=3.4.1
+pkgrel=1
+pkgdesc='Collection of utilities for interacting with PyPI'
+arch=('any')
+url='https://pypi.python.org/pypi/twine'
+license=('Apache')
+depends=('python-pkginfo' 'python-readme-renderer' 'python-requests' 
'python-requests-toolbelt'
+ 'python-packaging' 'python-importlib-metadata' 'python-tqdm' 
'python-keyring'
+ 'python-rfc3986' 'python-colorama')
+makedepends=('python-setuptools-scm')
+checkdepends=('git' 'python-munch' 'python-jaraco.envs' 'python-portend' 
'python-pretend'
+  'python-pytest-cov' 'python-pytest-services' 
'python-pytest-socket')
+provides=('python-twine')
+conflicts=('python-twine')
+replaces=('python-twine')
+source=("https://github.com/pypa/twine/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('eca2a7b6b1386868f67dec1182599a8331981585e1cc0b7eef762aa0e99b87b0c6725a2c776330a8b392254501880a68e01ed8569a169857e8079abb8da43b79')
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+
+build() {
+  cd twine-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd twine-$pkgver
+  python setup.py egg_info
+  python -m pytest
+}
+
+package() {
+  cd twine-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  ln -s twine "$pkgdir"/usr/bin/twine3
+}


[arch-commits] Commit in twine/trunk (PKGBUILD)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 18:44:30
  Author: felixonmars
Revision: 894470

upgpkg: twine 3.4.1-1

Modified:
  twine/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 18:43:47 UTC (rev 894469)
+++ PKGBUILD2021-03-18 18:44:30 UTC (rev 894470)
@@ -2,7 +2,7 @@
 # Contributor: Chris Warrick 
 
 pkgname=twine
-pkgver=3.4.0
+pkgver=3.4.1
 pkgrel=1
 pkgdesc='Collection of utilities for interacting with PyPI'
 arch=('any')
@@ -18,7 +18,7 @@
 conflicts=('python-twine')
 replaces=('python-twine')
 
source=("https://github.com/pypa/twine/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('6ce4757048fe7b5ada8a384fa185e80cee8412ef7f0561f55a5cbec39c0069522b57e403f148b9b55c55330a577873a5e9597ca0a6b0fb0cce6b377c8df07e4e')
+sha512sums=('eca2a7b6b1386868f67dec1182599a8331981585e1cc0b7eef762aa0e99b87b0c6725a2c776330a8b392254501880a68e01ed8569a169857e8079abb8da43b79')
 
 export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
 


[arch-commits] Commit in python-faker/repos/community-any (PKGBUILD PKGBUILD)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 18:43:47
  Author: felixonmars
Revision: 894469

archrelease: copy trunk to community-any

Added:
  python-faker/repos/community-any/PKGBUILD
(from rev 894468, python-faker/trunk/PKGBUILD)
Deleted:
  python-faker/repos/community-any/PKGBUILD

--+
 PKGBUILD |   82 ++---
 1 file changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-18 18:43:36 UTC (rev 894468)
+++ PKGBUILD2021-03-18 18:43:47 UTC (rev 894469)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Jeremy "Ichimonji10" Audet 
-# Contributor: dnuux 
-
-pkgname=python-faker
-pkgver=6.6.1
-pkgrel=1
-pkgdesc='Faker generates fake data for you.'
-arch=('any')
-url='https://faker.readthedocs.io/en/master/'
-license=('MIT')
-provides=("python-fake-factory=$pkgver")
-conflicts=('python-fake-factory')
-replaces=('python-fake-factory')
-depends=('python-setuptools' 'python-dateutil' 'python-text-unidecode')
-makedepends=('python-pip' 'python-wheel' 'python-pytest-runner')
-checkdepends=('python-validators' 'python-ukpostcodeparser' 'python-random2'
-  'python-freezegun')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/joke2k/faker/archive/v$pkgver.tar.gz;)
-sha512sums=('9375a2a559f0158e02d47d9c8633a2b90bdc0a316991c4f7d4d1089e7db32cb7ac9d89b625ca84afc67eb46804b4458766a4dbeadf97092abdb9d16ec4893c98')
-
-prepare() {
-  sed -i -e 's/==/>=/' faker-$pkgver/setup.py
-}
-
-build() {
-  cd faker-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd faker-$pkgver
-  python setup.py egg_info
-  python -m pytest
-}
-
-package() {
-  cd faker-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm 644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/${pkgname}/LICENSE.txt
-}

Copied: python-faker/repos/community-any/PKGBUILD (from rev 894468, 
python-faker/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-18 18:43:47 UTC (rev 894469)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Jeremy "Ichimonji10" Audet 
+# Contributor: dnuux 
+
+pkgname=python-faker
+pkgver=6.6.2
+pkgrel=1
+pkgdesc='Faker generates fake data for you.'
+arch=('any')
+url='https://faker.readthedocs.io/en/master/'
+license=('MIT')
+provides=("python-fake-factory=$pkgver")
+conflicts=('python-fake-factory')
+replaces=('python-fake-factory')
+depends=('python-setuptools' 'python-dateutil' 'python-text-unidecode')
+makedepends=('python-pip' 'python-wheel' 'python-pytest-runner')
+checkdepends=('python-validators' 'python-ukpostcodeparser' 'python-random2'
+  'python-freezegun')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/joke2k/faker/archive/v$pkgver.tar.gz;)
+sha512sums=('4ee5e835c2ee14b43cc7902d7e1653af43d9d7768d8c42a28b5d846a94a34a3782167b15221235f40643be0588299d5d06a36564910cda001ee4af39d8b68d55')
+
+prepare() {
+  sed -i -e 's/==/>=/' faker-$pkgver/setup.py
+}
+
+build() {
+  cd faker-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd faker-$pkgver
+  python setup.py egg_info
+  python -m pytest
+}
+
+package() {
+  cd faker-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm 644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/${pkgname}/LICENSE.txt
+}


[arch-commits] Commit in python-faker/trunk (PKGBUILD)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 18:43:36
  Author: felixonmars
Revision: 894468

upgpkg: python-faker 6.6.2-1

Modified:
  python-faker/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 18:42:28 UTC (rev 894467)
+++ PKGBUILD2021-03-18 18:43:36 UTC (rev 894468)
@@ -3,7 +3,7 @@
 # Contributor: dnuux 
 
 pkgname=python-faker
-pkgver=6.6.1
+pkgver=6.6.2
 pkgrel=1
 pkgdesc='Faker generates fake data for you.'
 arch=('any')
@@ -17,7 +17,7 @@
 checkdepends=('python-validators' 'python-ukpostcodeparser' 'python-random2'
   'python-freezegun')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/joke2k/faker/archive/v$pkgver.tar.gz;)
-sha512sums=('9375a2a559f0158e02d47d9c8633a2b90bdc0a316991c4f7d4d1089e7db32cb7ac9d89b625ca84afc67eb46804b4458766a4dbeadf97092abdb9d16ec4893c98')
+sha512sums=('4ee5e835c2ee14b43cc7902d7e1653af43d9d7768d8c42a28b5d846a94a34a3782167b15221235f40643be0588299d5d06a36564910cda001ee4af39d8b68d55')
 
 prepare() {
   sed -i -e 's/==/>=/' faker-$pkgver/setup.py


[arch-commits] Commit in haskell-hls-explicit-imports-plugin/repos (2 files)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 18:42:28
  Author: felixonmars
Revision: 894467

archrelease: copy trunk to community-x86_64

Added:
  haskell-hls-explicit-imports-plugin/repos/community-x86_64/
  haskell-hls-explicit-imports-plugin/repos/community-x86_64/PKGBUILD
(from rev 894466, haskell-hls-explicit-imports-plugin/trunk/PKGBUILD)

--+
 PKGBUILD |   47 +++
 1 file changed, 47 insertions(+)

Copied: haskell-hls-explicit-imports-plugin/repos/community-x86_64/PKGBUILD 
(from rev 894466, haskell-hls-explicit-imports-plugin/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2021-03-18 18:42:28 UTC (rev 894467)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-explicit-imports-plugin
+pkgname=haskell-hls-explicit-imports-plugin
+pkgver=1.0.0.0
+pkgrel=1
+pkgdesc="Explicit imports plugin for Haskell Language Server"
+url="https://hackage.haskell.org/package/hls-explicit-imports-plugin;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ghc' 'haskell-ghcide' 
'haskell-hls-plugin-api'
+ 'haskell-lsp' 'haskell-lsp-types' 'haskell-shake' 
'haskell-unordered-containers')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('dc445e9902e0012784ea65fb6657e6bae15e8230d219f028752ef779114d4892')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -u ghcide $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in (4 files)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 18:42:17
  Author: felixonmars
Revision: 894466

addpkg: haskell-hls-explicit-imports-plugin 1.0.0.0-1

Added:
  haskell-hls-explicit-imports-plugin/
  haskell-hls-explicit-imports-plugin/repos/
  haskell-hls-explicit-imports-plugin/trunk/
  haskell-hls-explicit-imports-plugin/trunk/PKGBUILD

--+
 PKGBUILD |   47 +++
 1 file changed, 47 insertions(+)

Added: haskell-hls-explicit-imports-plugin/trunk/PKGBUILD
===
--- haskell-hls-explicit-imports-plugin/trunk/PKGBUILD  
(rev 0)
+++ haskell-hls-explicit-imports-plugin/trunk/PKGBUILD  2021-03-18 18:42:17 UTC 
(rev 894466)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-explicit-imports-plugin
+pkgname=haskell-hls-explicit-imports-plugin
+pkgver=1.0.0.0
+pkgrel=1
+pkgdesc="Explicit imports plugin for Haskell Language Server"
+url="https://hackage.haskell.org/package/hls-explicit-imports-plugin;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ghc' 'haskell-ghcide' 
'haskell-hls-plugin-api'
+ 'haskell-lsp' 'haskell-lsp-types' 'haskell-shake' 
'haskell-unordered-containers')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('dc445e9902e0012784ea65fb6657e6bae15e8230d219f028752ef779114d4892')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -u ghcide $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in python-zope-testrunner/repos/community-any (2 files)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 18:40:11
  Author: felixonmars
Revision: 894465

archrelease: copy trunk to community-any

Added:
  python-zope-testrunner/repos/community-any/PKGBUILD
(from rev 894464, python-zope-testrunner/trunk/PKGBUILD)
Deleted:
  python-zope-testrunner/repos/community-any/PKGBUILD

--+
 PKGBUILD |  130 ++---
 1 file changed, 65 insertions(+), 65 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-18 18:39:54 UTC (rev 894464)
+++ PKGBUILD2021-03-18 18:40:11 UTC (rev 894465)
@@ -1,65 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-zope-testrunner
-pkgname=('python-zope-testrunner' 'python2-zope-testrunner')
-pkgver=5.2
-pkgrel=3
-pkgdesc="Zope testrunner script"
-arch=('any')
-url="https://github.com/zopefoundation/zope.testrunner;
-license=('ZPL')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-zope-interface'
- 'python2-zope-interface' 'python-zope-exceptions' 
'python2-zope-exceptions'
- 'python-six' 'python2-six')
-checkdepends=('python-zope-testing' 'python2-zope-testing' 
'python-zope-testrunner'
-  'python2-zope-testrunner' 'python-virtualenv' 
'python2-virtualenv')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/zopefoundation/zope.testrunner/archive/$pkgver.tar.gz;)
-sha512sums=('08ba52fbde1cf4af5cc956e5e42e073b3ad72ff8275ca606a71bb42464c53fa714faef6bc6c48f07afb36a52d70744bd28aac583648483aadd8bad7a0d1ff690')
-
-prepare() {
-  cp -a zope.testrunner-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/zope.testrunner-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/zope.testrunner-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/zope.testrunner-$pkgver
-  virtualenv "$srcdir/pyvenv" --system-site-packages
-  (
-. "$srcdir/pyvenv/bin/activate"
-python setup.py develop
-python setup.py test
-  )
-
-  cd "$srcdir"/zope.testrunner-$pkgver-py2
-  virtualenv2 "$srcdir/pyvenv-py2" --system-site-packages
-  (
-. "$srcdir/pyvenv-py2/bin/activate"
-python2 setup.py develop
-python2 setup.py test
-  )
-}
-
-package_python-zope-testrunner() {
-  depends=('python-setuptools' 'python-zope-interface' 
'python-zope-exceptions' 'python-six')
-
-  cd zope.testrunner-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-zope-testrunner() {
-  depends=('python2-setuptools' 'python2-zope-interface' 
'python2-zope-exceptions' 'python2-six')
-
-  cd zope.testrunner-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-
-  mv "$pkgdir"/usr/bin/zope-testrunner{,2}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-zope-testrunner/repos/community-any/PKGBUILD (from rev 894464, 
python-zope-testrunner/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-18 18:40:11 UTC (rev 894465)
@@ -0,0 +1,65 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-zope-testrunner
+pkgname=('python-zope-testrunner' 'python2-zope-testrunner')
+pkgver=5.3.0
+pkgrel=1
+pkgdesc="Zope testrunner script"
+arch=('any')
+url="https://github.com/zopefoundation/zope.testrunner;
+license=('ZPL')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-zope-interface'
+ 'python2-zope-interface' 'python-zope-exceptions' 
'python2-zope-exceptions'
+ 'python-six' 'python2-six')
+checkdepends=('python-zope-testing' 'python2-zope-testing' 
'python-zope-testrunner'
+  'python2-zope-testrunner' 'python-virtualenv' 
'python2-virtualenv')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/zopefoundation/zope.testrunner/archive/$pkgver.tar.gz;)
+sha512sums=('8d443b80663248286d7695c3d82bf7e33d26ec9e7efbafc1ab780da144f40faf2ad8b18af490842122f73346ca60cb4dd2857737fe4fc4e165f911d8a7eaa7c3')
+
+prepare() {
+  cp -a zope.testrunner-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/zope.testrunner-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/zope.testrunner-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/zope.testrunner-$pkgver
+  virtualenv "$srcdir/pyvenv" --system-site-packages
+  (
+. "$srcdir/pyvenv/bin/activate"
+python setup.py develop
+python setup.py test
+  )
+
+  cd "$srcdir"/zope.testrunner-$pkgver-py2
+  virtualenv2 "$srcdir/pyvenv-py2" --system-site-packages
+  (
+. "$srcdir/pyvenv-py2/bin/activate"
+python2 setup.py develop
+python2 setup.py test
+  )
+}
+
+package_python-zope-testrunner() {
+  depends=('python-setuptools' 'python-zope-interface' 
'python-zope-exceptions' 'python-six')
+
+  cd zope.testrunner-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-zope-testrunner() {
+  depends=('python2-setuptools' 'python2-zope-interface' 
'python2-zope-exceptions' 'python2-six')
+
+  cd zope.testrunner-$pkgver-py2
+  python2 

[arch-commits] Commit in python-zope-testrunner/trunk (PKGBUILD)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 18:39:54
  Author: felixonmars
Revision: 894464

upgpkg: python-zope-testrunner 5.3.0-1

Modified:
  python-zope-testrunner/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 18:37:58 UTC (rev 894463)
+++ PKGBUILD2021-03-18 18:39:54 UTC (rev 894464)
@@ -2,8 +2,8 @@
 
 pkgbase=python-zope-testrunner
 pkgname=('python-zope-testrunner' 'python2-zope-testrunner')
-pkgver=5.2
-pkgrel=3
+pkgver=5.3.0
+pkgrel=1
 pkgdesc="Zope testrunner script"
 arch=('any')
 url="https://github.com/zopefoundation/zope.testrunner;
@@ -14,7 +14,7 @@
 checkdepends=('python-zope-testing' 'python2-zope-testing' 
'python-zope-testrunner'
   'python2-zope-testrunner' 'python-virtualenv' 
'python2-virtualenv')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/zopefoundation/zope.testrunner/archive/$pkgver.tar.gz;)
-sha512sums=('08ba52fbde1cf4af5cc956e5e42e073b3ad72ff8275ca606a71bb42464c53fa714faef6bc6c48f07afb36a52d70744bd28aac583648483aadd8bad7a0d1ff690')
+sha512sums=('8d443b80663248286d7695c3d82bf7e33d26ec9e7efbafc1ab780da144f40faf2ad8b18af490842122f73346ca60cb4dd2857737fe4fc4e165f911d8a7eaa7c3')
 
 prepare() {
   cp -a zope.testrunner-$pkgver{,-py2}


[arch-commits] Commit in haskell-hls-eval-plugin/repos (2 files)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 18:37:58
  Author: felixonmars
Revision: 894463

archrelease: copy trunk to community-x86_64

Added:
  haskell-hls-eval-plugin/repos/community-x86_64/
  haskell-hls-eval-plugin/repos/community-x86_64/PKGBUILD
(from rev 894462, haskell-hls-eval-plugin/trunk/PKGBUILD)

--+
 PKGBUILD |   51 +++
 1 file changed, 51 insertions(+)

Copied: haskell-hls-eval-plugin/repos/community-x86_64/PKGBUILD (from rev 
894462, haskell-hls-eval-plugin/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2021-03-18 18:37:58 UTC (rev 894463)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-eval-plugin
+pkgname=haskell-hls-eval-plugin
+pkgver=1.0.0.0
+pkgrel=1
+pkgdesc="Eval plugin for Haskell Language Server"
+url="https://github.com/haskell/haskell-language-server;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-diff' 'haskell-quickcheck' 'haskell-aeson' 
'haskell-dlist'
+ 'haskell-extra' 'haskell-ghc' 'haskell-ghc-paths' 'haskell-ghcide' 
'haskell-hashable'
+ 'haskell-hls-plugin-api' 'haskell-lens' 'haskell-lsp' 
'haskell-lsp-types'
+ 'haskell-megaparsec' 'haskell-parser-combinators' 
'haskell-pretty-simple'
+ 'haskell-safe-exceptions' 'haskell-shake' 'haskell-temporary' 
'haskell-unliftio'
+ 'haskell-unordered-containers')
+makedepends=('ghc' 'uusi')
+#source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+source=("https://github.com/haskell/haskell-language-server/archive/ghcide-v1.1.0/haskell-language-server-ghcide-v1.1.0.tar.gz;)
+sha256sums=('ec611943b46027488d85135eb61245ea7cbd892ed9825b1456a4b74e0eb5a713')
+
+prepare() {
+  cd haskell-language-server-ghcide-v1.1.0/plugins/$_hkgname
+  gen-setup
+}
+
+build() {
+  cd haskell-language-server-ghcide-v1.1.0/plugins/$_hkgname
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd haskell-language-server-ghcide-v1.1.0/plugins/$_hkgname
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in (4 files)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 18:37:47
  Author: felixonmars
Revision: 894462

addpkg: haskell-hls-eval-plugin 1.0.0.0-1

Added:
  haskell-hls-eval-plugin/
  haskell-hls-eval-plugin/repos/
  haskell-hls-eval-plugin/trunk/
  haskell-hls-eval-plugin/trunk/PKGBUILD

--+
 PKGBUILD |   51 +++
 1 file changed, 51 insertions(+)

Added: haskell-hls-eval-plugin/trunk/PKGBUILD
===
--- haskell-hls-eval-plugin/trunk/PKGBUILD  (rev 0)
+++ haskell-hls-eval-plugin/trunk/PKGBUILD  2021-03-18 18:37:47 UTC (rev 
894462)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-eval-plugin
+pkgname=haskell-hls-eval-plugin
+pkgver=1.0.0.0
+pkgrel=1
+pkgdesc="Eval plugin for Haskell Language Server"
+url="https://github.com/haskell/haskell-language-server;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-diff' 'haskell-quickcheck' 'haskell-aeson' 
'haskell-dlist'
+ 'haskell-extra' 'haskell-ghc' 'haskell-ghc-paths' 'haskell-ghcide' 
'haskell-hashable'
+ 'haskell-hls-plugin-api' 'haskell-lens' 'haskell-lsp' 
'haskell-lsp-types'
+ 'haskell-megaparsec' 'haskell-parser-combinators' 
'haskell-pretty-simple'
+ 'haskell-safe-exceptions' 'haskell-shake' 'haskell-temporary' 
'haskell-unliftio'
+ 'haskell-unordered-containers')
+makedepends=('ghc' 'uusi')
+#source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+source=("https://github.com/haskell/haskell-language-server/archive/ghcide-v1.1.0/haskell-language-server-ghcide-v1.1.0.tar.gz;)
+sha256sums=('ec611943b46027488d85135eb61245ea7cbd892ed9825b1456a4b74e0eb5a713')
+
+prepare() {
+  cd haskell-language-server-ghcide-v1.1.0/plugins/$_hkgname
+  gen-setup
+}
+
+build() {
+  cd haskell-language-server-ghcide-v1.1.0/plugins/$_hkgname
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd haskell-language-server-ghcide-v1.1.0/plugins/$_hkgname
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-hls-tactics-plugin/repos (2 files)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 18:33:48
  Author: felixonmars
Revision: 894461

archrelease: copy trunk to community-x86_64

Added:
  haskell-hls-tactics-plugin/repos/community-x86_64/
  haskell-hls-tactics-plugin/repos/community-x86_64/PKGBUILD
(from rev 894460, haskell-hls-tactics-plugin/trunk/PKGBUILD)

--+
 PKGBUILD |   59 +++
 1 file changed, 59 insertions(+)

Copied: haskell-hls-tactics-plugin/repos/community-x86_64/PKGBUILD (from rev 
894460, haskell-hls-tactics-plugin/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2021-03-18 18:33:48 UTC (rev 894461)
@@ -0,0 +1,59 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-tactics-plugin
+pkgname=haskell-hls-tactics-plugin
+pkgver=1.0.0.0
+pkgrel=1
+pkgdesc="Wingman plugin for Haskell Language Server"
+url="https://haskellwingman.dev;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-data-default' 'haskell-extra' 
'haskell-fingertree'
+ 'haskell-generic-lens' 'haskell-ghc' 'haskell-ghc-exactprint' 
'haskell-ghc-source-gen'
+ 'haskell-ghcide' 'haskell-hls-plugin-api' 'haskell-lens' 
'haskell-lsp' 'haskell-refinery'
+ 'haskell-retrie' 'haskell-shake' 'haskell-syb')
+makedepends=('ghc' 'uusi' 'haskell-quickcheck' 'haskell-checkers' 
'haskell-hie-bios' 'haskell-hspec'
+ 'haskell-hspec-discover' 'haskell-hspec-expectations' 
'haskell-lsp-test'
+ 'haskell-lsp-types' 'haskell-megaparsec' 'haskell-tasty' 
'haskell-tasty-ant-xml'
+ 'haskell-tasty-expected-failure' 'haskell-tasty-golden' 
'haskell-tasty-hunit'
+ 'haskell-tasty-rerun')
+# Hackage tarball is missing test data
+#source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+source=("https://github.com/haskell/haskell-language-server/archive/ghcide-v1.1.0/haskell-language-server-ghcide-v1.1.0.tar.gz;)
+sha256sums=('ec611943b46027488d85135eb61245ea7cbd892ed9825b1456a4b74e0eb5a713')
+
+prepare() {
+  cd haskell-language-server-ghcide-v1.1.0/plugins/$_hkgname
+  gen-setup
+}
+
+build() {
+  cd haskell-language-server-ghcide-v1.1.0/plugins/$_hkgname
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd haskell-language-server-ghcide-v1.1.0/plugins/$_hkgname
+  PATH="$PWD/dist/build/ghcide:$PWD/dist/build/test-server:$PATH" 
LD_LIBRARY_PATH="$PWD/dist/build" runhaskell Setup test
+}
+
+package() {
+  cd haskell-language-server-ghcide-v1.1.0/plugins/$_hkgname
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in (4 files)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 18:33:33
  Author: felixonmars
Revision: 894460

addpkg: haskell-hls-tactics-plugin 1.0.0.0-1

Added:
  haskell-hls-tactics-plugin/
  haskell-hls-tactics-plugin/repos/
  haskell-hls-tactics-plugin/trunk/
  haskell-hls-tactics-plugin/trunk/PKGBUILD

--+
 PKGBUILD |   59 +++
 1 file changed, 59 insertions(+)

Added: haskell-hls-tactics-plugin/trunk/PKGBUILD
===
--- haskell-hls-tactics-plugin/trunk/PKGBUILD   (rev 0)
+++ haskell-hls-tactics-plugin/trunk/PKGBUILD   2021-03-18 18:33:33 UTC (rev 
894460)
@@ -0,0 +1,59 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-tactics-plugin
+pkgname=haskell-hls-tactics-plugin
+pkgver=1.0.0.0
+pkgrel=1
+pkgdesc="Wingman plugin for Haskell Language Server"
+url="https://haskellwingman.dev;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-data-default' 'haskell-extra' 
'haskell-fingertree'
+ 'haskell-generic-lens' 'haskell-ghc' 'haskell-ghc-exactprint' 
'haskell-ghc-source-gen'
+ 'haskell-ghcide' 'haskell-hls-plugin-api' 'haskell-lens' 
'haskell-lsp' 'haskell-refinery'
+ 'haskell-retrie' 'haskell-shake' 'haskell-syb')
+makedepends=('ghc' 'uusi' 'haskell-quickcheck' 'haskell-checkers' 
'haskell-hie-bios' 'haskell-hspec'
+ 'haskell-hspec-discover' 'haskell-hspec-expectations' 
'haskell-lsp-test'
+ 'haskell-lsp-types' 'haskell-megaparsec' 'haskell-tasty' 
'haskell-tasty-ant-xml'
+ 'haskell-tasty-expected-failure' 'haskell-tasty-golden' 
'haskell-tasty-hunit'
+ 'haskell-tasty-rerun')
+# Hackage tarball is missing test data
+#source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+source=("https://github.com/haskell/haskell-language-server/archive/ghcide-v1.1.0/haskell-language-server-ghcide-v1.1.0.tar.gz;)
+sha256sums=('ec611943b46027488d85135eb61245ea7cbd892ed9825b1456a4b74e0eb5a713')
+
+prepare() {
+  cd haskell-language-server-ghcide-v1.1.0/plugins/$_hkgname
+  gen-setup
+}
+
+build() {
+  cd haskell-language-server-ghcide-v1.1.0/plugins/$_hkgname
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd haskell-language-server-ghcide-v1.1.0/plugins/$_hkgname
+  PATH="$PWD/dist/build/ghcide:$PWD/dist/build/test-server:$PATH" 
LD_LIBRARY_PATH="$PWD/dist/build" runhaskell Setup test
+}
+
+package() {
+  cd haskell-language-server-ghcide-v1.1.0/plugins/$_hkgname
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in taskwarrior-tui/repos/community-x86_64 (PKGBUILD PKGBUILD)

2021-03-18 Thread Orhun Parmaksiz via arch-commits
Date: Thursday, March 18, 2021 @ 18:10:23
  Author: orhun
Revision: 894459

archrelease: copy trunk to community-x86_64

Added:
  taskwarrior-tui/repos/community-x86_64/PKGBUILD
(from rev 894458, taskwarrior-tui/trunk/PKGBUILD)
Deleted:
  taskwarrior-tui/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   77 ++---
 1 file changed, 38 insertions(+), 39 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-18 18:10:04 UTC (rev 894458)
+++ PKGBUILD2021-03-18 18:10:23 UTC (rev 894459)
@@ -1,39 +0,0 @@
-# Maintainer: Orhun Parmaksız 
-
-pkgname=taskwarrior-tui
-pkgver=0.11.1
-pkgrel=1
-pkgdesc="A terminal user interface for taskwarrior"
-arch=('x86_64')
-url="https://github.com/kdheepak/taskwarrior-tui;
-license=('MIT')
-depends=('task')
-makedepends=('rust' 'git' 'pandoc')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
-"git+https://github.com/kdheepak/taskwarrior-testdata;)
-sha256sums=('51a50eb3799c38cd7310f63f282cb202344b6d2026ff139ec99c8f367ecc59ea'
-'SKIP')
-
-build() {
-  cd "$pkgname-$pkgver"
-  cargo build --release --locked --all-features
-  pandoc "docs/$pkgname.1.md" --standalone --to=man -o "docs/$pkgname.1"
-}
-
-# https://github.com/kdheepak/taskwarrior-tui/pull/131
-#check() {
-#  cd "$pkgname-$pkgver"
-#  export TASKRC="../taskwarrior-testdata/.taskrc"
-#  export TASKDATA="../taskwarrior-testdata/.task"
-#  cargo test --release --locked --all-features
-#}
-
-package() {
-  cd "$pkgname-$pkgver"
-  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
-  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-  install -Dm 644 "docs/$pkgname.1" -t "$pkgdir/usr/share/man/man1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: taskwarrior-tui/repos/community-x86_64/PKGBUILD (from rev 894458, 
taskwarrior-tui/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-18 18:10:23 UTC (rev 894459)
@@ -0,0 +1,38 @@
+# Maintainer: Orhun Parmaksız 
+
+pkgname=taskwarrior-tui
+pkgver=0.12.2
+pkgrel=1
+pkgdesc="A terminal user interface for taskwarrior"
+arch=('x86_64')
+url="https://github.com/kdheepak/taskwarrior-tui;
+license=('MIT')
+depends=('task')
+makedepends=('rust' 'git' 'pandoc')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
+"git+https://github.com/kdheepak/taskwarrior-testdata;)
+sha256sums=('db87db1d6757b3750f3deb3061295f29a74d325308bdc245f7e48714e1d5d501'
+'SKIP')
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --release --locked --all-features
+  pandoc "docs/$pkgname.1.md" --standalone --to=man -o "docs/$pkgname.1"
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  export TASKRC="../taskwarrior-testdata/.taskrc"
+  export TASKDATA="../taskwarrior-testdata/.task"
+  cargo test --release --locked --all-features
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
+  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+  install -Dm 644 "docs/$pkgname.1" -t "$pkgdir/usr/share/man/man1"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in taskwarrior-tui/trunk (PKGBUILD)

2021-03-18 Thread Orhun Parmaksiz via arch-commits
Date: Thursday, March 18, 2021 @ 18:10:04
  Author: orhun
Revision: 894458

upgpkg: taskwarrior-tui 0.12.2-1: upstream release

Modified:
  taskwarrior-tui/trunk/PKGBUILD

--+
 PKGBUILD |   17 -
 1 file changed, 8 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 18:06:47 UTC (rev 894457)
+++ PKGBUILD2021-03-18 18:10:04 UTC (rev 894458)
@@ -1,7 +1,7 @@
 # Maintainer: Orhun Parmaksız 
 
 pkgname=taskwarrior-tui
-pkgver=0.11.1
+pkgver=0.12.2
 pkgrel=1
 pkgdesc="A terminal user interface for taskwarrior"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 makedepends=('rust' 'git' 'pandoc')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
 "git+https://github.com/kdheepak/taskwarrior-testdata;)
-sha256sums=('51a50eb3799c38cd7310f63f282cb202344b6d2026ff139ec99c8f367ecc59ea'
+sha256sums=('db87db1d6757b3750f3deb3061295f29a74d325308bdc245f7e48714e1d5d501'
 'SKIP')
 
 build() {
@@ -20,13 +20,12 @@
   pandoc "docs/$pkgname.1.md" --standalone --to=man -o "docs/$pkgname.1"
 }
 
-# https://github.com/kdheepak/taskwarrior-tui/pull/131
-#check() {
-#  cd "$pkgname-$pkgver"
-#  export TASKRC="../taskwarrior-testdata/.taskrc"
-#  export TASKDATA="../taskwarrior-testdata/.task"
-#  cargo test --release --locked --all-features
-#}
+check() {
+  cd "$pkgname-$pkgver"
+  export TASKRC="../taskwarrior-testdata/.taskrc"
+  export TASKDATA="../taskwarrior-testdata/.task"
+  cargo test --release --locked --all-features
+}
 
 package() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in xh/repos/community-x86_64 (PKGBUILD PKGBUILD)

2021-03-18 Thread Orhun Parmaksiz via arch-commits
Date: Thursday, March 18, 2021 @ 18:06:47
  Author: orhun
Revision: 894457

archrelease: copy trunk to community-x86_64

Added:
  xh/repos/community-x86_64/PKGBUILD
(from rev 894456, xh/trunk/PKGBUILD)
Deleted:
  xh/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   80 ++---
 1 file changed, 40 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-18 18:06:08 UTC (rev 894456)
+++ PKGBUILD2021-03-18 18:06:47 UTC (rev 894457)
@@ -1,40 +0,0 @@
-# Maintainer: Orhun Parmaksız 
-# Contributor: Wesley Moore 
-
-pkgname=xh
-pkgver=0.9.0
-pkgrel=1
-pkgdesc="Yet another HTTPie clone"
-arch=('x86_64')
-url="https://github.com/ducaale/xh;
-license=('MIT')
-depends=('gcc-libs')
-makedepends=('rust')
-replaces=('ht-rs' 'ht')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('b9a9386b552f527796f088b5d38effba8fd01c1dcb457cfd5bbfef23ec8c424f')
-
-build() {
-  cd "$pkgname-$pkgver"
-  cargo build --release --locked
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  cargo test --release --locked
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
-  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-  install -Dm 644 "doc/$pkgname.1" -t "$pkgdir/usr/share/man/man1"
-  install -Dm 644 "completions/$pkgname.bash" 
"${pkgdir}/usr/share/bash-completion/completions/$pkgname"
-  install -Dm 644 "completions/$pkgname.fish" -t 
"${pkgdir}/usr/share/fish/vendor_completions.d"
-  install -Dm 644 "completions/_$pkgname" -t 
"${pkgdir}/usr/share/zsh/site-functions"
-  # `xh` will default to HTTPS scheme if the binary name is one of `xhs`, 
`https`, or `xhttps`
-  ln -s "/usr/bin/$pkgname" "$pkgdir/usr/bin/${pkgname}s"
-}
-
-# vim: ts=2 sw=2 et:

Copied: xh/repos/community-x86_64/PKGBUILD (from rev 894456, xh/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-18 18:06:47 UTC (rev 894457)
@@ -0,0 +1,40 @@
+# Maintainer: Orhun Parmaksız 
+# Contributor: Wesley Moore 
+
+pkgname=xh
+pkgver=0.9.1
+pkgrel=1
+pkgdesc="Friendly and fast tool for sending HTTP requests"
+arch=('x86_64')
+url="https://github.com/ducaale/xh;
+license=('MIT')
+depends=('gcc-libs')
+makedepends=('rust')
+replaces=('ht-rs' 'ht')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('b0cd92b428094286688214fde316e0b9bb668c184989a4a0ec25b5ffae2cccd4')
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --release --locked
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  cargo test --release --locked
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
+  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+  install -Dm 644 "doc/$pkgname.1" -t "$pkgdir/usr/share/man/man1"
+  install -Dm 644 "completions/$pkgname.bash" 
"${pkgdir}/usr/share/bash-completion/completions/$pkgname"
+  install -Dm 644 "completions/$pkgname.fish" -t 
"${pkgdir}/usr/share/fish/vendor_completions.d"
+  install -Dm 644 "completions/_$pkgname" -t 
"${pkgdir}/usr/share/zsh/site-functions"
+  # `xh` will default to HTTPS scheme if the binary name is one of `xhs`, 
`https`, or `xhttps`
+  ln -s "/usr/bin/$pkgname" "$pkgdir/usr/bin/${pkgname}s"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in xh/trunk (PKGBUILD)

2021-03-18 Thread Orhun Parmaksiz via arch-commits
Date: Thursday, March 18, 2021 @ 18:06:08
  Author: orhun
Revision: 894456

upgpkg: xh 0.9.1-1: upstream release

Modified:
  xh/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 18:02:29 UTC (rev 894455)
+++ PKGBUILD2021-03-18 18:06:08 UTC (rev 894456)
@@ -2,9 +2,9 @@
 # Contributor: Wesley Moore 
 
 pkgname=xh
-pkgver=0.9.0
+pkgver=0.9.1
 pkgrel=1
-pkgdesc="Yet another HTTPie clone"
+pkgdesc="Friendly and fast tool for sending HTTP requests"
 arch=('x86_64')
 url="https://github.com/ducaale/xh;
 license=('MIT')
@@ -12,7 +12,7 @@
 makedepends=('rust')
 replaces=('ht-rs' 'ht')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('b9a9386b552f527796f088b5d38effba8fd01c1dcb457cfd5bbfef23ec8c424f')
+sha256sums=('b0cd92b428094286688214fde316e0b9bb668c184989a4a0ec25b5ffae2cccd4')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in v2ray-geoip/repos/community-any (PKGBUILD PKGBUILD)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 18:02:29
  Author: felixonmars
Revision: 894455

archrelease: copy trunk to community-any

Added:
  v2ray-geoip/repos/community-any/PKGBUILD
(from rev 894454, v2ray-geoip/trunk/PKGBUILD)
Deleted:
  v2ray-geoip/repos/community-any/PKGBUILD

--+
 PKGBUILD |   30 +++---
 1 file changed, 15 insertions(+), 15 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-18 18:02:18 UTC (rev 894454)
+++ PKGBUILD2021-03-18 18:02:29 UTC (rev 894455)
@@ -1,15 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=v2ray-geoip
-pkgver=202103170314
-pkgrel=1
-pkgdesc="GeoIP List for V2Ray"
-arch=('any')
-url="https://github.com/v2fly/geoip;
-license=('CCPL:by-sa')
-source=("geoip-$pkgver.dat::https://github.com/v2fly/geoip/releases/download/$pkgver/geoip.dat;)
-sha512sums=('03b709a9b8a8e85cb9e18f64a5b0743772ded7478b05d010e60472ae9f32c384e50b2f714e5c2bf96bef5545c7f3d78e2d38c2ba294ac7d0b0e5164bb73f')
-
-package() {
-  install -Dm644 geoip-$pkgver.dat "$pkgdir"/usr/share/v2ray/geoip.dat
-}

Copied: v2ray-geoip/repos/community-any/PKGBUILD (from rev 894454, 
v2ray-geoip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-18 18:02:29 UTC (rev 894455)
@@ -0,0 +1,15 @@
+# Maintainer: Felix Yan 
+
+pkgname=v2ray-geoip
+pkgver=202103180738
+pkgrel=1
+pkgdesc="GeoIP List for V2Ray"
+arch=('any')
+url="https://github.com/v2fly/geoip;
+license=('CCPL:by-sa')
+source=("geoip-$pkgver.dat::https://github.com/v2fly/geoip/releases/download/$pkgver/geoip.dat;)
+sha512sums=('24fad20c70fae279b2dfa46322e3d44c6f72c40c0108c6a047558b3f2745f7da5ce21b919ab0c3d1c7350ad0db34c486fab2d22c50db3f3ada32206602067eee')
+
+package() {
+  install -Dm644 geoip-$pkgver.dat "$pkgdir"/usr/share/v2ray/geoip.dat
+}


[arch-commits] Commit in v2ray-geoip/trunk (PKGBUILD)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 18:02:18
  Author: felixonmars
Revision: 894454

upgpkg: v2ray-geoip 202103180738-1

Modified:
  v2ray-geoip/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 18:02:10 UTC (rev 894453)
+++ PKGBUILD2021-03-18 18:02:18 UTC (rev 894454)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=v2ray-geoip
-pkgver=202103170314
+pkgver=202103180738
 pkgrel=1
 pkgdesc="GeoIP List for V2Ray"
 arch=('any')
@@ -8,7 +8,7 @@
 url="https://github.com/v2fly/geoip;
 license=('CCPL:by-sa')
 
source=("geoip-$pkgver.dat::https://github.com/v2fly/geoip/releases/download/$pkgver/geoip.dat;)
-sha512sums=('03b709a9b8a8e85cb9e18f64a5b0743772ded7478b05d010e60472ae9f32c384e50b2f714e5c2bf96bef5545c7f3d78e2d38c2ba294ac7d0b0e5164bb73f')
+sha512sums=('24fad20c70fae279b2dfa46322e3d44c6f72c40c0108c6a047558b3f2745f7da5ce21b919ab0c3d1c7350ad0db34c486fab2d22c50db3f3ada32206602067eee')
 
 package() {
   install -Dm644 geoip-$pkgver.dat "$pkgdir"/usr/share/v2ray/geoip.dat


[arch-commits] Commit in v2ray-domain-list-community/repos/community-any (2 files)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 18:02:10
  Author: felixonmars
Revision: 894453

archrelease: copy trunk to community-any

Added:
  v2ray-domain-list-community/repos/community-any/PKGBUILD
(from rev 894451, v2ray-domain-list-community/trunk/PKGBUILD)
Deleted:
  v2ray-domain-list-community/repos/community-any/PKGBUILD

--+
 PKGBUILD |   46 +++---
 1 file changed, 23 insertions(+), 23 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-18 18:02:07 UTC (rev 894452)
+++ PKGBUILD2021-03-18 18:02:10 UTC (rev 894453)
@@ -1,23 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=v2ray-domain-list-community
-pkgver=20210317031429
-pkgrel=1
-pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
-arch=('any')
-url="https://github.com/v2fly/domain-list-community;
-license=('MIT')
-makedepends=('go' 'git')
-source=("https://github.com/v2fly/domain-list-community/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('12ff9fe6c211bf7897395c11aa9d823d4336e43ebda424edaed56cf915a7707727bcaa7ce233482bef284801862ea0a2d67b15a5c24cd59772a9c14729d8dcf2')
-
-build() {
-  cd domain-list-community-$pkgver
-  go run main.go
-}
-
-package() {
-  cd domain-list-community-$pkgver
-  install -Dm644 dlc.dat "$pkgdir"/usr/share/v2ray/geosite.dat
-  install -Dm644 "$srcdir"/domain-list-community-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: v2ray-domain-list-community/repos/community-any/PKGBUILD (from rev 
894451, v2ray-domain-list-community/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-18 18:02:10 UTC (rev 894453)
@@ -0,0 +1,23 @@
+# Maintainer: Felix Yan 
+
+pkgname=v2ray-domain-list-community
+pkgver=20210318083148
+pkgrel=1
+pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
+arch=('any')
+url="https://github.com/v2fly/domain-list-community;
+license=('MIT')
+makedepends=('go' 'git')
+source=("https://github.com/v2fly/domain-list-community/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('d5b98bdd24c38722012dece004c7a1f150a0bfee4c4c9a6d696cc1eb53d2dbbd24894c7db99d92a37aa6477ec79cb9ff5dbb2b720b074e128479b531b7d8ee94')
+
+build() {
+  cd domain-list-community-$pkgver
+  go run main.go
+}
+
+package() {
+  cd domain-list-community-$pkgver
+  install -Dm644 dlc.dat "$pkgdir"/usr/share/v2ray/geosite.dat
+  install -Dm644 "$srcdir"/domain-list-community-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in pyenv/repos/community-any (PKGBUILD PKGBUILD)

2021-03-18 Thread David Runge via arch-commits
Date: Thursday, March 18, 2021 @ 18:02:07
  Author: dvzrv
Revision: 894452

archrelease: copy trunk to community-any

Added:
  pyenv/repos/community-any/PKGBUILD
(from rev 894451, pyenv/trunk/PKGBUILD)
Deleted:
  pyenv/repos/community-any/PKGBUILD

--+
 PKGBUILD |  118 ++---
 1 file changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-18 18:02:00 UTC (rev 894451)
+++ PKGBUILD2021-03-18 18:02:07 UTC (rev 894452)
@@ -1,59 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=pyenv
-pkgver=1.2.23
-pkgrel=1
-pkgdesc="Easily switch between multiple versions of Python"
-arch=('any')
-url="https://github.com/pyenv/pyenv;
-license=('MIT')
-depends=('bash')
-optdepends=('git: installing development versions')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha512sums=('37d09a5b1a2af763fd1d41e8fb3bbfc7ec38feae947fc17fd5e29f74275353a66d656b9573c2525ecfb8005dae2aadcb8c183bf79e6ddc5725202fa1e38a6ff1')
-b2sums=('67dffc1e9424594467e3772119a28c7f323fb7518de5d2d2e24d04cbf0c759a2c22956656e2ae16274cc4b0717fa2056c00eed2fdc0f839f298ed95329afcd43')
-
-package() {
-  cd "$pkgname-$pkgver"
-  # application
-  install -vDm 755 libexec/* -t "${pkgdir}/usr/share/${pkgname}/libexec"
-  install -vdm 755 "${pkgdir}/usr/bin"
-  ln -sv "/usr/share/${pkgname}/libexec/${pkgname}" \
-"${pkgdir}/usr/bin/${pkgname}"
-  # application hooks
-  install -vDm 755 pyenv.d/exec/pip-rehash/* \
--t "${pkgdir}/usr/share/${pkgname}/pyenv.d/exec/pip-rehash"
-  install -vDm 644 pyenv.d/exec/*.bash \
--t "${pkgdir}/usr/share/${pkgname}/pyenv.d/exec/"
-  install -vDm 644 pyenv.d/rehash/*.bash \
--t "${pkgdir}/usr/share/${pkgname}/pyenv.d/rehash"
-  install -vDm 644 pyenv.d/rehash/conda.d/* \
--t "${pkgdir}/usr/share/${pkgname}/pyenv.d/rehash/conda.d"
-  install -vDm 644 pyenv.d/rehash/source.d/* \
--t "${pkgdir}/usr/share/${pkgname}/pyenv.d/rehash/source.d"
-  # plugin
-  install -vDm 755 plugins/python-build/bin/* \
--t "${pkgdir}/usr/share/${pkgname}/plugins/python-build/bin"
-  for bin in {${pkgname}-{install,uninstall},python-build}; do
-ln -sv "/usr/share/${pkgname}/plugins/python-build/bin/${bin}" \
-  "${pkgdir}/usr/bin/${bin}"
-  done
-  cp -av plugins/python-build/share \
-"${pkgdir}/usr/share/${pkgname}/plugins/python-build"
-  # licenses
-  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -vDm 644 plugins/python-build/LICENSE \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.python-build"
-  # shell completion
-  install -vDm 644 completions/*.fish \
--t "${pkgdir}/usr/share/fish/vendor_completions.d/"
-  install -vDm 644 completions/${pkgname}.bash \
-"${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
-  install -vDm 644 completions/${pkgname}.zsh \
-"${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
-  # docs
-  install -vDm 644 {CHANGELOG,COMMANDS,README}.md \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -vDm 644 plugins/python-build/README.md \
-"${pkgdir}/usr/share/doc/${pkgname}/README-python-build.md"
-}

Copied: pyenv/repos/community-any/PKGBUILD (from rev 894451, 
pyenv/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-18 18:02:07 UTC (rev 894452)
@@ -0,0 +1,59 @@
+# Maintainer: David Runge 
+
+pkgname=pyenv
+pkgver=1.2.24
+pkgrel=1
+pkgdesc="Easily switch between multiple versions of Python"
+arch=('any')
+url="https://github.com/pyenv/pyenv;
+license=('MIT')
+depends=('bash')
+optdepends=('git: installing development versions')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz;)
+sha512sums=('ec19dfa97719140834eefcee5c3bf0fb410e71dfe783ca4cc285c6ab7af524e00626305c92f5c6b5efd1f58e820394e88e5301d68f63682858430e4c65129d7b')
+b2sums=('9e8e8f2ce7a21874b1634c242952bf2f74841f1d1604b7d08a55d63a1c5f8cd708182bc4037e7f6b1ccc96999cbca04b4a2162037669b7e9585f25d3234f38c5')
+
+package() {
+  cd "$pkgname-$pkgver"
+  # application
+  install -vDm 755 libexec/* -t "${pkgdir}/usr/share/${pkgname}/libexec"
+  install -vdm 755 "${pkgdir}/usr/bin"
+  ln -sv "/usr/share/${pkgname}/libexec/${pkgname}" \
+"${pkgdir}/usr/bin/${pkgname}"
+  # application hooks
+  install -vDm 755 pyenv.d/exec/pip-rehash/* \
+-t "${pkgdir}/usr/share/${pkgname}/pyenv.d/exec/pip-rehash"
+  install -vDm 644 pyenv.d/exec/*.bash \
+-t "${pkgdir}/usr/share/${pkgname}/pyenv.d/exec/"
+  install -vDm 644 pyenv.d/rehash/*.bash \
+-t "${pkgdir}/usr/share/${pkgname}/pyenv.d/rehash"
+  install -vDm 644 pyenv.d/rehash/conda.d/* \
+-t "${pkgdir}/usr/share/${pkgname}/pyenv.d/rehash/conda.d"
+  install -vDm 644 pyenv.d/rehash/source.d/* \
+-t 

[arch-commits] Commit in pyenv/trunk (PKGBUILD)

2021-03-18 Thread David Runge via arch-commits
Date: Thursday, March 18, 2021 @ 18:01:58
  Author: dvzrv
Revision: 894450

upgpkg: pyenv 1.2.24-1: Upgrade to 1.2.24.

Modified:
  pyenv/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 17:35:00 UTC (rev 894449)
+++ PKGBUILD2021-03-18 18:01:58 UTC (rev 894450)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 
 pkgname=pyenv
-pkgver=1.2.23
+pkgver=1.2.24
 pkgrel=1
 pkgdesc="Easily switch between multiple versions of Python"
 arch=('any')
@@ -9,9 +9,9 @@
 license=('MIT')
 depends=('bash')
 optdepends=('git: installing development versions')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha512sums=('37d09a5b1a2af763fd1d41e8fb3bbfc7ec38feae947fc17fd5e29f74275353a66d656b9573c2525ecfb8005dae2aadcb8c183bf79e6ddc5725202fa1e38a6ff1')
-b2sums=('67dffc1e9424594467e3772119a28c7f323fb7518de5d2d2e24d04cbf0c759a2c22956656e2ae16274cc4b0717fa2056c00eed2fdc0f839f298ed95329afcd43')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz;)
+sha512sums=('ec19dfa97719140834eefcee5c3bf0fb410e71dfe783ca4cc285c6ab7af524e00626305c92f5c6b5efd1f58e820394e88e5301d68f63682858430e4c65129d7b')
+b2sums=('9e8e8f2ce7a21874b1634c242952bf2f74841f1d1604b7d08a55d63a1c5f8cd708182bc4037e7f6b1ccc96999cbca04b4a2162037669b7e9585f25d3234f38c5')
 
 package() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in v2ray-domain-list-community/trunk (PKGBUILD)

2021-03-18 Thread Felix Yan via arch-commits
Date: Thursday, March 18, 2021 @ 18:02:00
  Author: felixonmars
Revision: 894451

upgpkg: v2ray-domain-list-community 20210318083148-1

Modified:
  v2ray-domain-list-community/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 18:01:58 UTC (rev 894450)
+++ PKGBUILD2021-03-18 18:02:00 UTC (rev 894451)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=v2ray-domain-list-community
-pkgver=20210317031429
+pkgver=20210318083148
 pkgrel=1
 pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
 arch=('any')
@@ -9,7 +9,7 @@
 license=('MIT')
 makedepends=('go' 'git')
 
source=("https://github.com/v2fly/domain-list-community/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('12ff9fe6c211bf7897395c11aa9d823d4336e43ebda424edaed56cf915a7707727bcaa7ce233482bef284801862ea0a2d67b15a5c24cd59772a9c14729d8dcf2')
+sha512sums=('d5b98bdd24c38722012dece004c7a1f150a0bfee4c4c9a6d696cc1eb53d2dbbd24894c7db99d92a37aa6477ec79cb9ff5dbb2b720b074e128479b531b7d8ee94')
 
 build() {
   cd domain-list-community-$pkgver


[arch-commits] Commit in gst-plugins-bad/repos (2 files)

2021-03-18 Thread Jan Steffens via arch-commits
Date: Thursday, March 18, 2021 @ 17:42:09
  Author: heftig
Revision: 410243

archrelease: copy trunk to staging-x86_64

Added:
  gst-plugins-bad/repos/staging-x86_64/
  gst-plugins-bad/repos/staging-x86_64/PKGBUILD
(from rev 410241, gst-plugins-bad/trunk/PKGBUILD)

--+
 PKGBUILD |  131 +
 1 file changed, 131 insertions(+)

Copied: gst-plugins-bad/repos/staging-x86_64/PKGBUILD (from rev 410241, 
gst-plugins-bad/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-03-18 17:42:09 UTC (rev 410243)
@@ -0,0 +1,131 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgbase=gst-plugins-bad
+pkgname=(gst-plugins-bad-libs gst-plugins-bad gst-plugin-opencv gst-plugin-wpe)
+pkgver=1.18.4
+pkgrel=2
+pkgdesc="Multimedia graph framework - bad plugins"
+url="https://gstreamer.freedesktop.org/;
+arch=(x86_64)
+license=(LGPL)
+depends=(gst-plugins-base-libs orc libdrm libx11 libgudev libusb libvdpau
+ libxkbcommon-x11)
+makedepends=(mjpegtools curl chromaprint libmms faad2 libdca libdvdnav
+ libmodplug libgme nettle libkate wayland libofa openjpeg2 libwebp
+ libsrtp sbc rtmpdump libexif libdvdread wildmidi ladspa openal
+ vulkan-icd-loader libfdk-aac faac soundtouch spandsp neon
+ webrtc-audio-processing libdc1394 libmpcdec zvbi openexr libbs2b
+ libnice lcms2 bluez-libs glu srt aom x265 liblrdf libde265 zbar
+ librsvg fluidsynth lilv lv2 gst-plugins-good python git
+ gobject-introspection vulkan-headers vulkan-validation-layers
+ wayland-protocols gtk3 meson shaderc libavtp svt-hevc libmicrodns
+ zxing-cpp opencv libva wpewebkit)
+checkdepends=(xorg-server-xvfb)
+options=(!emptydirs)
+_commit=8cb03bdf01ca6ad8c87f951bcd7962c3ca9f6860  # tags/1.18.4^0
+source=("git+https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgbase
+}
+
+build() {
+  arch-meson $pkgbase build \
+-D directfb=disabled \
+-D doc=disabled \
+-D flite=disabled \
+-D gsm=disabled \
+-D iqa=disabled \
+-D magicleap=disabled \
+-D msdk=disabled \
+-D openh264=disabled \
+-D openmpt=disabled \
+-D openni2=disabled \
+-D opensles=disabled \
+-D tinyalsa=disabled \
+-D voaacenc=disabled \
+-D voamrwbenc=disabled \
+-D wasapi2=disabled \
+-D wasapi=disabled \
+-D gobject-cast-checks=disabled \
+-D package-name="GStreamer Bad Plugins (Arch Linux)" \
+-D package-origin="https://www.archlinux.org/;
+  meson compile -C build
+}
+
+check() (
+  mkdir -p -m 700 "${XDG_RUNTIME_DIR:=$PWD/runtime-dir}"
+  export XDG_RUNTIME_DIR
+
+  # elements_dtls test hangs sometimes
+  xvfb-run -s '-screen 0 1920x1080x24 -nolisten local +iglx -noreset' \
+meson test -C build --print-errorlogs || :
+)
+
+package_gst-plugins-bad-libs() {
+  pkgdesc="${pkgdesc% plugins}"
+  provides=("gst-transcoder=$pkgver")
+  conflicts=("gst-transcoder<1.18.0")
+  replaces=("gst-transcoder<1.18.0")
+
+  DESTDIR="$pkgdir" meson install -C build
+
+  mkdir -p ext/lib/gstreamer-1.0
+  for _x in aom assrender bs2b bz2 chromaprint closedcaption colormanagement \
+curl dc1394 de265 dtls dtsdec faac faad fdkaac fluidsynthmidi gme \
+hls kate ladspa lv2 mms modplug mpeg2enc mplex musepack \
+neonhttpsrc ofa openal openexr openjpeg opusparse resindvd rsvg \
+rtmp sbc sctp smoothstreaming sndfile soundtouch spandsp srt srtp \
+teletext ttmlsubs vulkan waylandsink webp webrtc webrtcdsp \
+wildmidi x265 zbar va svthevcenc avtp zxing microdns; do
+_x="lib/gstreamer-1.0/libgst${_x}.so"
+mv "$pkgdir/usr/$_x" "ext/$_x"
+  done
+
+  mkdir -p opencv/{lib,include/gstreamer-1.0/gst}
+  mv -t opencv/lib "$pkgdir"/usr/lib/*opencv*
+  mv -t opencv/include/gstreamer-1.0/gst \
+"$pkgdir"/usr/include/gstreamer-1.0/gst/opencv
+
+  for _x in opencv wpe; do
+mkdir -p "$_x/lib/gstreamer-1.0"
+_f="lib/gstreamer-1.0/libgst${_x}.so"
+mv "$pkgdir/usr/$_f" "$_x/$_f"
+  done
+}
+
+package_gst-plugins-bad() {
+  depends=("gst-plugins-bad-libs=$pkgver" gst-plugins-good
+   aom libass libbs2b bzip2 chromaprint pango lcms2 curl libxml2
+   libdc1394 libde265 openssl libdca faac faad2 libfdk-aac fluidsynth
+   libgme nettle libkate liblrdf lilv libmms libmodplug mjpegtools
+   libmpcdec neon libofa openal openexr openjpeg2 opus libdvdnav
+   libdvdread librsvg rtmpdump sbc libsndfile soundtouch spandsp srt
+   libsrtp zvbi vulkan-icd-loader libxcb wayland libwebp libnice
+   webrtc-audio-processing wildmidi x265 zbar 

[arch-commits] Commit in gst-plugins-ugly/repos (2 files)

2021-03-18 Thread Jan Steffens via arch-commits
Date: Thursday, March 18, 2021 @ 17:42:08
  Author: heftig
Revision: 410242

archrelease: copy trunk to staging-x86_64

Added:
  gst-plugins-ugly/repos/staging-x86_64/
  gst-plugins-ugly/repos/staging-x86_64/PKGBUILD
(from rev 410241, gst-plugins-ugly/trunk/PKGBUILD)

--+
 PKGBUILD |   42 ++
 1 file changed, 42 insertions(+)

Copied: gst-plugins-ugly/repos/staging-x86_64/PKGBUILD (from rev 410241, 
gst-plugins-ugly/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-03-18 17:42:08 UTC (rev 410242)
@@ -0,0 +1,42 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gst-plugins-ugly
+pkgver=1.18.4
+pkgrel=2
+pkgdesc="Multimedia graph framework - ugly plugins"
+url="https://gstreamer.freedesktop.org/;
+arch=(x86_64)
+license=(LGPL)
+depends=(gst-plugins-base-libs libdvdread libmpeg2 a52dec libsidplay libcdio
+ x264 opencore-amr)
+makedepends=(python git meson)
+_commit=bb3f9de20025820fb1c913f96e31cf0a27528bcc  # tags/1.18.4^0
+source=("git+https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build \
+-D doc=disabled \
+-D gobject-cast-checks=disabled \
+-D package-name="GStreamer Ugly Plugins (Arch Linux)" \
+-D package-origin="https://www.archlinux.org/;
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}


[arch-commits] Commit in gst-plugins-ugly/trunk (PKGBUILD)

2021-03-18 Thread Jan Steffens via arch-commits
Date: Thursday, March 18, 2021 @ 17:41:57
  Author: heftig
Revision: 410240

1.18.4-2: x264 rebuild

Modified:
  gst-plugins-ugly/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 17:35:04 UTC (rev 410239)
+++ PKGBUILD2021-03-18 17:41:57 UTC (rev 410240)
@@ -3,7 +3,7 @@
 
 pkgname=gst-plugins-ugly
 pkgver=1.18.4
-pkgrel=1
+pkgrel=2
 pkgdesc="Multimedia graph framework - ugly plugins"
 url="https://gstreamer.freedesktop.org/;
 arch=(x86_64)


[arch-commits] Commit in gst-plugins-bad/trunk (PKGBUILD)

2021-03-18 Thread Jan Steffens via arch-commits
Date: Thursday, March 18, 2021 @ 17:41:58
  Author: heftig
Revision: 410241

1.18.4-2: x265 rebuild

Modified:
  gst-plugins-bad/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 17:41:57 UTC (rev 410240)
+++ PKGBUILD2021-03-18 17:41:58 UTC (rev 410241)
@@ -4,7 +4,7 @@
 pkgbase=gst-plugins-bad
 pkgname=(gst-plugins-bad-libs gst-plugins-bad gst-plugin-opencv gst-plugin-wpe)
 pkgver=1.18.4
-pkgrel=1
+pkgrel=2
 pkgdesc="Multimedia graph framework - bad plugins"
 url="https://gstreamer.freedesktop.org/;
 arch=(x86_64)


[arch-commits] Commit in wire-desktop/repos/community-any (4 files)

2021-03-18 Thread Maxim Baz via arch-commits
Date: Thursday, March 18, 2021 @ 17:35:00
  Author: maximbaz
Revision: 894449

archrelease: copy trunk to community-any

Added:
  wire-desktop/repos/community-any/PKGBUILD
(from rev 894448, wire-desktop/trunk/PKGBUILD)
  wire-desktop/repos/community-any/wire-desktop.desktop
(from rev 894448, wire-desktop/trunk/wire-desktop.desktop)
Deleted:
  wire-desktop/repos/community-any/PKGBUILD
  wire-desktop/repos/community-any/wire-desktop.desktop

--+
 PKGBUILD |  108 -
 wire-desktop.desktop |   26 +--
 2 files changed, 67 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-18 17:34:56 UTC (rev 894448)
+++ PKGBUILD2021-03-18 17:35:00 UTC (rev 894449)
@@ -1,54 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Conor Anderson 
-
-pkgname=wire-desktop
-pkgver=3.22.2937
-pkgrel=1
-pkgdesc='End-to-end encrypted messenger with file sharing, voice calls and 
video conferences'
-arch=('any')
-url='https://wire.com/'
-license=('GPL3')
-depends=('electron10' 'xdg-utils')
-makedepends=('git' 'npm' 'yarn')
-optdepends=('emoji-font: colorful emoji')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/wireapp/${pkgname}/archive/linux/${pkgver}.tar.gz;
-
"${pkgname}-${pkgver}.tar.gz.sig::https://github.com/wireapp/${pkgname}/releases/download/linux%2F${pkgver}/${pkgname}-linux-${pkgver}.tar.gz.sig;
-"${pkgname}.desktop")
-sha256sums=('5d1e4bef658fa5f3bf37c8a471bd95e3ef1ba7a902d902b3d013544d190126f1'
-'SKIP'
-'53f37e99d4c2f41a3e31fd70154d82ba06a4af578c68df86af4906f7f37ec787')
-validpgpkeys=('ABBA007D6E14E2DB5B283C45D599C1AA126762B1')
-
-prepare() {
-# Create launcher script
-cat << EOF > "${pkgname}"
-#!/usr/bin/env sh
-
-electron10 "/usr/lib/${pkgname}" "\$@"
-EOF
-}
-
-build() {
-cd "${pkgname}-linux-${pkgver}"
-
-yarn
-BUILD_NUMBER="${pkgver##*.}" LINUX_TARGET=dir ENABLE_ASAR=false yarn 
build:linux
-}
-
-package() {
-# Place files
-install -d "${pkgdir}/usr/lib/${pkgname}"
-cp -a 
"${pkgname}-linux-${pkgver}/wrap/dist/linux-unpacked/resources/app/"{electron,node_modules,package.json}
 "${pkgdir}/usr/lib/${pkgname}"
-
-# Place launcher script
-install -Dm755 -t "${pkgdir}/usr/bin/" "${pkgname}"
-
-# Place desktop entry and icon
-desktop-file-install -m 644 --dir "${pkgdir}/usr/share/applications/" 
"${pkgname}.desktop"
-local res
-for res in 32x32 256x256; do
-install -Dm644 "${pkgname}-linux-${pkgver}/resources/icons/${res}.png" 
"${pkgdir}/usr/share/icons/hicolor/${res}/apps/${pkgname}.png"
-done
-}
-
-# vim:set ts=4 sw=4 et:

Copied: wire-desktop/repos/community-any/PKGBUILD (from rev 894448, 
wire-desktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-18 17:35:00 UTC (rev 894449)
@@ -0,0 +1,54 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Conor Anderson 
+
+pkgname=wire-desktop
+pkgver=3.23.2938
+pkgrel=1
+pkgdesc='End-to-end encrypted messenger with file sharing, voice calls and 
video conferences'
+arch=('any')
+url='https://wire.com/'
+license=('GPL3')
+depends=('electron10' 'xdg-utils')
+makedepends=('git' 'npm' 'yarn')
+optdepends=('emoji-font: colorful emoji')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/wireapp/${pkgname}/archive/linux/${pkgver}.tar.gz;
+
"${pkgname}-${pkgver}.tar.gz.sig::https://github.com/wireapp/${pkgname}/releases/download/linux%2F${pkgver}/${pkgname}-linux-${pkgver}.tar.gz.sig;
+"${pkgname}.desktop")
+sha256sums=('fbcc337a46816d36e089723127ad1966670e90a96c0b4417008afa20079985de'
+'SKIP'
+'53f37e99d4c2f41a3e31fd70154d82ba06a4af578c68df86af4906f7f37ec787')
+validpgpkeys=('ABBA007D6E14E2DB5B283C45D599C1AA126762B1')
+
+prepare() {
+# Create launcher script
+cat << EOF > "${pkgname}"
+#!/usr/bin/env sh
+
+electron10 "/usr/lib/${pkgname}" "\$@"
+EOF
+}
+
+build() {
+cd "${pkgname}-linux-${pkgver}"
+
+yarn
+BUILD_NUMBER="${pkgver##*.}" LINUX_TARGET=dir ENABLE_ASAR=false yarn 
build:linux
+}
+
+package() {
+# Place files
+install -d "${pkgdir}/usr/lib/${pkgname}"
+cp -a 
"${pkgname}-linux-${pkgver}/wrap/dist/linux-unpacked/resources/app/"{electron,node_modules,package.json}
 "${pkgdir}/usr/lib/${pkgname}"
+
+# Place launcher script
+install -Dm755 -t "${pkgdir}/usr/bin/" "${pkgname}"
+
+# Place desktop entry and icon
+desktop-file-install -m 644 --dir "${pkgdir}/usr/share/applications/" 
"${pkgname}.desktop"
+local res
+for res in 32x32 256x256; do
+install -Dm644 "${pkgname}-linux-${pkgver}/resources/icons/${res}.png" 
"${pkgdir}/usr/share/icons/hicolor/${res}/apps/${pkgname}.png"
+done
+}
+
+# vim:set ts=4 sw=4 et:

[arch-commits] Commit in glib2/repos/testing-x86_64 (10 files)

2021-03-18 Thread Jan Steffens via arch-commits
Date: Thursday, March 18, 2021 @ 17:35:04
  Author: heftig
Revision: 410239

archrelease: copy trunk to testing-x86_64

Added:
  glib2/repos/testing-x86_64/PKGBUILD
(from rev 410238, glib2/trunk/PKGBUILD)
  glib2/repos/testing-x86_64/gio-querymodules.hook
(from rev 410238, glib2/trunk/gio-querymodules.hook)
  glib2/repos/testing-x86_64/gio-querymodules.script
(from rev 410238, glib2/trunk/gio-querymodules.script)
  glib2/repos/testing-x86_64/glib-compile-schemas.hook
(from rev 410238, glib2/trunk/glib-compile-schemas.hook)
  glib2/repos/testing-x86_64/noisy-glib-compile-schemas.diff
(from rev 410238, glib2/trunk/noisy-glib-compile-schemas.diff)
Deleted:
  glib2/repos/testing-x86_64/PKGBUILD
  glib2/repos/testing-x86_64/gio-querymodules.hook
  glib2/repos/testing-x86_64/gio-querymodules.script
  glib2/repos/testing-x86_64/glib-compile-schemas.hook
  glib2/repos/testing-x86_64/noisy-glib-compile-schemas.diff

-+
 PKGBUILD|  175 +++---
 gio-querymodules.hook   |   24 ++---
 gio-querymodules.script |   14 +--
 glib-compile-schemas.hook   |   24 ++---
 noisy-glib-compile-schemas.diff |   48 +-
 5 files changed, 143 insertions(+), 142 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-18 17:34:49 UTC (rev 410238)
+++ PKGBUILD2021-03-18 17:35:04 UTC (rev 410239)
@@ -1,87 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgbase=glib2
-pkgname=(glib2 glib2-docs)
-pkgver=2.68.0
-pkgrel=1
-pkgdesc="Low level core library"
-url="https://wiki.gnome.org/Projects/GLib;
-license=(LGPL)
-arch=(x86_64)
-depends=(pcre libffi util-linux-libs zlib)
-makedepends=(gettext gtk-doc shared-mime-info python libelf git util-linux
- meson dbus sysprof)
-checkdepends=(desktop-file-utils)
-source=("git+https://gitlab.gnome.org/GNOME/glib.git?signed#tag=$pkgver;
-noisy-glib-compile-schemas.diff
-glib-compile-schemas.hook gio-querymodules.{hook,script})
-sha256sums=('SKIP'
-'81a4df0b638730cffb7fa263c04841f7ca6b9c9578ee5045db6f30ff0c3fc531'
-'64ae5597dda3cc160fc74be038dbe6267d41b525c0c35da9125fbf0de27f9b25'
-'2a9f9b8235f48e3b7d0f6cfcbc76cd2116c45f28692cac4bd61074c495bd5eb7'
-'92d08db5aa30bda276bc3d718e7ff9dd01dc40dcab45b359182dcc290054e24e')
-
-pkgver() {
-  cd glib
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd glib
-
-  # Suppress noise from glib-compile-schemas.hook
-  git apply -3 ../noisy-glib-compile-schemas.diff
-}
-
-build() {
-  CFLAGS+=" -DG_DISABLE_CAST_CHECKS"
-  arch-meson glib build \
--D glib_debug=disabled \
--D selinux=disabled \
--D sysprof=enabled \
--D man=true \
--D gtk_doc=true
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --no-suite flaky --no-suite slow --print-errorlogs
-}
-
-package_glib2() {
-  depends+=(libmount.so)
-  provides+=(libgio-2.0.so libglib-2.0.so libgmodule-2.0.so libgobject-2.0.so
- libgthread-2.0.so)
-  optdepends=('python: gdbus-codegen, glib-genmarshal, glib-mkenums, 
gtester-report'
-  'libelf: gresource inspection tool')
-
-  DESTDIR="$pkgdir" meson install -C build
-
-  install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
-  install -D gio-querymodules.script 
"$pkgdir/usr/share/libalpm/scripts/gio-querymodules"
-
-  # Avoid a dep on sysprof
-  sed -i 's/, sysprof-capture-4//' "$pkgdir"/usr/lib/pkgconfig/*.pc
-
-  export PYTHONHASHSEED=0
-  python -m compileall -d /usr/share/glib-2.0/codegen \
-"$pkgdir/usr/share/glib-2.0/codegen"
-  python -O -m compileall -d /usr/share/glib-2.0/codegen \
-"$pkgdir/usr/share/glib-2.0/codegen"
-
-  # Split docs
-  mkdir -p docs/usr/share
-  mv {"$pkgdir",docs}/usr/share/gtk-doc
-}
-
-package_glib2-docs() {
-  pkgdesc="Documentation for GLib"
-  depends=()
-  license+=(custom)
-
-  mv -t "$pkgdir" docs/*
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 
glib/docs/reference/COPYING
-}
-
-# vim:set sw=2 et:

Copied: glib2/repos/testing-x86_64/PKGBUILD (from rev 410238, 
glib2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-18 17:35:04 UTC (rev 410239)
@@ -0,0 +1,88 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgbase=glib2
+pkgname=(glib2 glib2-docs)
+pkgver=2.68.0
+pkgrel=2
+pkgdesc="Low level core library"
+url="https://wiki.gnome.org/Projects/GLib;
+license=(LGPL)
+arch=(x86_64)
+depends=(pcre libffi util-linux-libs zlib)
+makedepends=(gettext gtk-doc shared-mime-info python libelf git util-linux
+ meson dbus sysprof)
+checkdepends=(desktop-file-utils)
+source=("git+https://gitlab.gnome.org/GNOME/glib.git?signed#tag=$pkgver;
+noisy-glib-compile-schemas.diff
+

[arch-commits] Commit in wire-desktop/trunk (PKGBUILD)

2021-03-18 Thread Maxim Baz via arch-commits
Date: Thursday, March 18, 2021 @ 17:34:56
  Author: maximbaz
Revision: 894448

upgpkg: wire-desktop 3.23.2938-1

Modified:
  wire-desktop/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-18 17:15:10 UTC (rev 894447)
+++ PKGBUILD2021-03-18 17:34:56 UTC (rev 894448)
@@ -2,7 +2,7 @@
 # Contributor: Conor Anderson 
 
 pkgname=wire-desktop
-pkgver=3.22.2937
+pkgver=3.23.2938
 pkgrel=1
 pkgdesc='End-to-end encrypted messenger with file sharing, voice calls and 
video conferences'
 arch=('any')
@@ -14,7 +14,7 @@
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/wireapp/${pkgname}/archive/linux/${pkgver}.tar.gz;
 
"${pkgname}-${pkgver}.tar.gz.sig::https://github.com/wireapp/${pkgname}/releases/download/linux%2F${pkgver}/${pkgname}-linux-${pkgver}.tar.gz.sig;
 "${pkgname}.desktop")
-sha256sums=('5d1e4bef658fa5f3bf37c8a471bd95e3ef1ba7a902d902b3d013544d190126f1'
+sha256sums=('fbcc337a46816d36e089723127ad1966670e90a96c0b4417008afa20079985de'
 'SKIP'
 '53f37e99d4c2f41a3e31fd70154d82ba06a4af578c68df86af4906f7f37ec787')
 validpgpkeys=('ABBA007D6E14E2DB5B283C45D599C1AA126762B1')


  1   2   3   >