[arch-commits] Commit in libphonenumber/repos/extra-x86_64 (4 files)

2022-05-26 Thread Jan Steffens via arch-commits
Date: Friday, May 27, 2022 @ 02:57:08
  Author: heftig
Revision: 446563

archrelease: copy trunk to extra-x86_64

Added:
  libphonenumber/repos/extra-x86_64/PKGBUILD
(from rev 446561, libphonenumber/trunk/PKGBUILD)
  libphonenumber/repos/extra-x86_64/absl.diff
(from rev 446561, libphonenumber/trunk/absl.diff)
Deleted:
  libphonenumber/repos/extra-x86_64/PKGBUILD
  libphonenumber/repos/extra-x86_64/absl.diff

---+
 PKGBUILD  |   98 ++--
 absl.diff |  112 ++--
 2 files changed, 105 insertions(+), 105 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-27 02:57:08 UTC (rev 446562)
+++ PKGBUILD2022-05-27 02:57:08 UTC (rev 446563)
@@ -1,49 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=libphonenumber
-pkgver=8.12.48
-pkgrel=1
-epoch=1
-pkgdesc="Google's common library for parsing, formatting, and validating 
international phone numbers"
-url="https://github.com/googlei18n/libphonenumber;
-arch=(x86_64)
-license=(Apache)
-depends=(icu protobuf boost-libs abseil-cpp)
-makedepends=(boost cmake gtest git)
-options=(debug)
-_commit=4e7922d02168a52963d24756a8ce21c999d7b42e  # tags/v8.12.48^0
-source=("git+$url#commit=$_commit" absl.diff)
-sha256sums=('SKIP'
-'f6bceb2409ff7cba1e6947e6fdce3fe82b511b04fefcd1f597eceb13af67a8a4')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^libphonenumber-\|^v//;s/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-
-  # Use our abseil-cpp
-  git apply -3 ../absl.diff
-}
-
-build() {
-  CXXFLAGS+=" -Wno-error=deprecated-declarations"  # readdir_r deprecation
-  CXXFLAGS+=" -Wno-error=unused-variable"  # this is nuts
-  cmake -S $pkgname/cpp -B build \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib
-  cmake --build build
-}
-
-check() {
-  cmake --build build --target tests
-}
-
-package() {
-  depends+=(libicu{uc,i18n}.so libprotobuf.so libboost_thread.so)
-  provides+=(libgeocoding.so libphonenumber.so)
-
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: libphonenumber/repos/extra-x86_64/PKGBUILD (from rev 446561, 
libphonenumber/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-27 02:57:08 UTC (rev 446563)
@@ -0,0 +1,49 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=libphonenumber
+pkgver=8.12.49
+pkgrel=1
+epoch=1
+pkgdesc="Google's common library for parsing, formatting, and validating 
international phone numbers"
+url="https://github.com/googlei18n/libphonenumber;
+arch=(x86_64)
+license=(Apache)
+depends=(icu protobuf boost-libs abseil-cpp)
+makedepends=(boost cmake gtest git)
+options=(debug)
+_commit=0815b3b998112cd1906dc16308dc39141f8307fd  # tags/v8.12.49^0
+source=("git+$url#commit=$_commit" absl.diff)
+sha256sums=('SKIP'
+'f6bceb2409ff7cba1e6947e6fdce3fe82b511b04fefcd1f597eceb13af67a8a4')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^libphonenumber-\|^v//;s/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  # Use our abseil-cpp
+  git apply -3 ../absl.diff
+}
+
+build() {
+  CXXFLAGS+=" -Wno-error=deprecated-declarations"  # readdir_r deprecation
+  CXXFLAGS+=" -Wno-error=unused-variable"  # this is nuts
+  cmake -S $pkgname/cpp -B build \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib
+  cmake --build build
+}
+
+check() {
+  cmake --build build --target tests
+}
+
+package() {
+  depends+=(libicu{uc,i18n}.so libprotobuf.so libboost_thread.so)
+  provides+=(libgeocoding.so libphonenumber.so)
+
+  DESTDIR="$pkgdir" cmake --install build
+}

Deleted: absl.diff
===
--- absl.diff   2022-05-27 02:57:08 UTC (rev 446562)
+++ absl.diff   2022-05-27 02:57:08 UTC (rev 446563)
@@ -1,56 +0,0 @@
-diff --git i/cpp/CMakeLists.txt w/cpp/CMakeLists.txt
-index 57261a63..83440382 100644
 i/cpp/CMakeLists.txt
-+++ w/cpp/CMakeLists.txt
-@@ -18,7 +18,7 @@ cmake_minimum_required (VERSION 3.11)
- 
- # Pick the C++ standard to compile with.
- # Abseil currently supports C++11, C++14, and C++17.
--set(CMAKE_CXX_STANDARD 11)
-+set(CMAKE_CXX_STANDARD 17)
- set(CMAKE_CXX_STANDARD_REQUIRED ON)
- 
- project (libphonenumber)
-@@ -126,6 +126,8 @@ if (${USE_BOOST} STREQUAL "OFF" AND ${USE_STDMUTEX} 
STREQUAL "OFF")
-   find_package (Threads)
- endif()
- 
-+find_package (absl REQUIRED)
-+
- find_or_build_gtest ()
- 
- if (${USE_RE2} STREQUAL "ON")
-diff --git i/tools/cpp/CMakeLists.txt w/tools/cpp/CMakeLists.txt
-index b0941656..58a9b3ba 100644
 i/tools/cpp/CMakeLists.txt
-+++ w/tools/cpp/CMakeLists.txt
-@@ -26,29 +26,6 @@ project (generate_geocoding_data)
- # Helper functions dealing with finding libraries and programs this library
- # depends on.
- include (gtest.cmake)

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

2022-05-26 Thread Jan Steffens via arch-commits
Date: Friday, May 27, 2022 @ 02:57:09
  Author: heftig
Revision: 446564

archrelease: copy trunk to extra-x86_64

Added:
  gedit/repos/extra-x86_64/PKGBUILD
(from rev 446561, gedit/trunk/PKGBUILD)
Deleted:
  gedit/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  100 ++---
 1 file changed, 50 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-27 02:57:08 UTC (rev 446563)
+++ PKGBUILD2022-05-27 02:57:09 UTC (rev 446564)
@@ -1,50 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=gedit
-pkgver=42.0
-pkgrel=1
-pkgdesc="GNOME Text Editor"
-url="https://wiki.gnome.org/Apps/Gedit;
-arch=(x86_64)
-license=(GPL)
-depends=(gtksourceview4 gsettings-desktop-schemas libpeas gspell 
python-gobject)
-makedepends=(yelp-tools vala gobject-introspection git gtk-doc meson
- appstream-glib desktop-file-utils libxml2)
-optdepends=('gedit-plugins: Additional features')
-conflicts=('gedit-code-assistance<=3.16.0+4+gd19b879-1')
-groups=(gnome)
-options=(debug)
-_commit=61f737bce27b18335388c51060cc9fad0bb48154  # tags/42.0^0
-source=("git+https://gitlab.gnome.org/GNOME/gedit.git#commit=$_commit;
-"git+https://gitlab.gnome.org/GNOME/libgd.git;)
-sha256sums=('SKIP'
-'SKIP')
-
-pkgver() {
-  cd gedit
-  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
-  cd gedit
-
-  git submodule init
-  git submodule set-url subprojects/libgd "$srcdir/libgd"
-  git submodule update
-}
-
-build() {
-  arch-meson gedit build \
--D gtk_doc=true \
--D require_all_tests=true
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  meson install -C build --destdir "$pkgdir"
-}

Copied: gedit/repos/extra-x86_64/PKGBUILD (from rev 446561, 
gedit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-27 02:57:09 UTC (rev 446564)
@@ -0,0 +1,50 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gedit
+pkgver=42.1
+pkgrel=1
+pkgdesc="GNOME Text Editor"
+url="https://wiki.gnome.org/Apps/Gedit;
+arch=(x86_64)
+license=(GPL)
+depends=(gtksourceview4 gsettings-desktop-schemas libpeas gspell 
python-gobject)
+makedepends=(yelp-tools vala gobject-introspection git gtk-doc meson
+ appstream-glib desktop-file-utils libxml2)
+optdepends=('gedit-plugins: Additional features')
+conflicts=('gedit-code-assistance<=3.16.0+4+gd19b879-1')
+groups=(gnome)
+options=(debug)
+_commit=af52e5b5ff16d7b67165671c099af64926faea73  # tags/42.1^0
+source=("git+https://gitlab.gnome.org/GNOME/gedit.git#commit=$_commit;
+"git+https://gitlab.gnome.org/GNOME/libgd.git;)
+sha256sums=('SKIP'
+'SKIP')
+
+pkgver() {
+  cd gedit
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd gedit
+
+  git submodule init
+  git submodule set-url subprojects/libgd "$srcdir/libgd"
+  git submodule update
+}
+
+build() {
+  arch-meson gedit build \
+-D gtk_doc=true \
+-D require_all_tests=true
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  meson install -C build --destdir "$pkgdir"
+}



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

2022-05-26 Thread Jan Steffens via arch-commits
Date: Friday, May 27, 2022 @ 02:57:08
  Author: heftig
Revision: 446562

archrelease: copy trunk to extra-x86_64

Added:
  gedit-plugins/repos/extra-x86_64/PKGBUILD
(from rev 446561, gedit-plugins/trunk/PKGBUILD)
Deleted:
  gedit-plugins/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  100 ++---
 1 file changed, 50 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-27 02:56:56 UTC (rev 446561)
+++ PKGBUILD2022-05-27 02:57:08 UTC (rev 446562)
@@ -1,50 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-# Contributor: Alexander Rødseth 
-# Contributor: Hugo Doria 
-# Contributor: Sergej Chodarev 
-# Contributor: zhuqin 
-
-pkgname=gedit-plugins
-pkgver=42.0
-pkgrel=1
-pkgdesc="Collection of plugins for the gedit Text Editor"
-url="https://wiki.gnome.org/Apps/Gedit/ShippedPlugins;
-arch=(x86_64)
-license=(GPL)
-depends=(gedit python-dbus python-cairo)
-makedepends=(vte3 libgit2-glib gucharmap gobject-introspection vala yelp-tools
- appstream-glib git meson)
-optdepends=('gucharmap: for charmap plugin'
-'vte3: for embedded terminal'
-'libgit2-glib: for git plugin')
-options=(debug)
-_commit=a8abe1aa5e10fbd5f7114b2e7a31e6edcafaa251  # tags/42.0^0
-source=("git+https://gitlab.gnome.org/GNOME/gedit-plugins.git#commit=$_commit;)
-sha512sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  meson install -C build --destdir "$pkgdir"
-  python -m compileall -d /usr "$pkgdir/usr"
-  python -O -m compileall -d /usr "$pkgdir/usr"
-}
-
-# vim:set sw=2 et:

Copied: gedit-plugins/repos/extra-x86_64/PKGBUILD (from rev 446561, 
gedit-plugins/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-27 02:57:08 UTC (rev 446562)
@@ -0,0 +1,50 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+# Contributor: Alexander Rødseth 
+# Contributor: Hugo Doria 
+# Contributor: Sergej Chodarev 
+# Contributor: zhuqin 
+
+pkgname=gedit-plugins
+pkgver=42.1
+pkgrel=1
+pkgdesc="Collection of plugins for the gedit Text Editor"
+url="https://wiki.gnome.org/Apps/Gedit/ShippedPlugins;
+arch=(x86_64)
+license=(GPL)
+depends=(gedit python-dbus python-cairo)
+makedepends=(vte3 libgit2-glib gucharmap gobject-introspection vala yelp-tools
+ appstream-glib git meson)
+optdepends=('gucharmap: for charmap plugin'
+'vte3: for embedded terminal'
+'libgit2-glib: for git plugin')
+options=(debug)
+_commit=2afe0869918ee6a61a82969cd67d5c51acc15a6c  # tags/42.1^0
+source=("git+https://gitlab.gnome.org/GNOME/gedit-plugins.git#commit=$_commit;)
+sha512sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  meson install -C build --destdir "$pkgdir"
+  python -m compileall -d /usr "$pkgdir/usr"
+  python -O -m compileall -d /usr "$pkgdir/usr"
+}
+
+# vim:set sw=2 et:



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

2022-05-26 Thread Jan Steffens via arch-commits
Date: Friday, May 27, 2022 @ 02:56:56
  Author: heftig
Revision: 446561

8.12.49-1

Modified:
  libphonenumber/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-27 02:55:58 UTC (rev 446560)
+++ PKGBUILD2022-05-27 02:56:56 UTC (rev 446561)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=libphonenumber
-pkgver=8.12.48
+pkgver=8.12.49
 pkgrel=1
 epoch=1
 pkgdesc="Google's common library for parsing, formatting, and validating 
international phone numbers"
@@ -11,7 +11,7 @@
 depends=(icu protobuf boost-libs abseil-cpp)
 makedepends=(boost cmake gtest git)
 options=(debug)
-_commit=4e7922d02168a52963d24756a8ce21c999d7b42e  # tags/v8.12.48^0
+_commit=0815b3b998112cd1906dc16308dc39141f8307fd  # tags/v8.12.49^0
 source=("git+$url#commit=$_commit" absl.diff)
 sha256sums=('SKIP'
 'f6bceb2409ff7cba1e6947e6fdce3fe82b511b04fefcd1f597eceb13af67a8a4')



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

2022-05-26 Thread Jan Steffens via arch-commits
Date: Friday, May 27, 2022 @ 02:55:58
  Author: heftig
Revision: 446560

42.1-1

Modified:
  gedit-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-27 02:54:53 UTC (rev 446559)
+++ PKGBUILD2022-05-27 02:55:58 UTC (rev 446560)
@@ -6,7 +6,7 @@
 # Contributor: zhuqin 
 
 pkgname=gedit-plugins
-pkgver=42.0
+pkgver=42.1
 pkgrel=1
 pkgdesc="Collection of plugins for the gedit Text Editor"
 url="https://wiki.gnome.org/Apps/Gedit/ShippedPlugins;
@@ -19,7 +19,7 @@
 'vte3: for embedded terminal'
 'libgit2-glib: for git plugin')
 options=(debug)
-_commit=a8abe1aa5e10fbd5f7114b2e7a31e6edcafaa251  # tags/42.0^0
+_commit=2afe0869918ee6a61a82969cd67d5c51acc15a6c  # tags/42.1^0
 source=("git+https://gitlab.gnome.org/GNOME/gedit-plugins.git#commit=$_commit;)
 sha512sums=('SKIP')
 



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

2022-05-26 Thread Jan Steffens via arch-commits
Date: Friday, May 27, 2022 @ 02:54:53
  Author: heftig
Revision: 446559

42.1-1

Modified:
  gedit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-26 21:19:39 UTC (rev 446558)
+++ PKGBUILD2022-05-27 02:54:53 UTC (rev 446559)
@@ -2,7 +2,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=gedit
-pkgver=42.0
+pkgver=42.1
 pkgrel=1
 pkgdesc="GNOME Text Editor"
 url="https://wiki.gnome.org/Apps/Gedit;
@@ -15,7 +15,7 @@
 conflicts=('gedit-code-assistance<=3.16.0+4+gd19b879-1')
 groups=(gnome)
 options=(debug)
-_commit=61f737bce27b18335388c51060cc9fad0bb48154  # tags/42.0^0
+_commit=af52e5b5ff16d7b67165671c099af64926faea73  # tags/42.1^0
 source=("git+https://gitlab.gnome.org/GNOME/gedit.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/libgd.git;)
 sha256sums=('SKIP'



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

2022-05-26 Thread Jan Steffens via arch-commits
Date: Friday, May 27, 2022 @ 02:54:17
  Author: heftig
Revision: 1210749

archrelease: copy trunk to community-x86_64

Added:
  tepl/repos/community-x86_64/PKGBUILD
(from rev 1210748, tepl/trunk/PKGBUILD)
Deleted:
  tepl/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-27 02:54:07 UTC (rev 1210748)
+++ PKGBUILD2022-05-27 02:54:17 UTC (rev 1210749)
@@ -1,54 +0,0 @@
-# Maintainer:
-# Contributor: Caleb Maclennan 
-# Contributor: Jan Alexander Steffens (heftig) 
-# Contributor: Balló György 
-# Contributor: Tobias Bohrmann (PlainTextField) 
-
-pkgname=tepl
-pkgver=6.0.1
-pkgrel=1
-_commit=2db87c240f86ec05b6707c069dd132f835be653a  # tags/6.0.1^0
-pkgdesc="Library that eases the development of GtkSourceView-based text 
editors and IDEs"
-url="https://gitlab.gnome.org/swilmet/tepl;
-arch=(x86_64)
-license=(LGPL3)
-depends=(amtk
- gtksourceview4
- uchardet)
-makedepends=(gobject-introspection
- git
- gtk-doc
- meson
- vala)
-checkdepends=(xorg-server-xvfb)
-options=(debug)
-source=("git+https://gitlab.gnome.org/swilmet/tepl.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-prepare() {
-   cd $pkgname
-}
-
-pkgver() {
-   cd $pkgname
-   git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
-}
-
-build() {
-   arch-meson $pkgname build -D gtk_doc=true
-   meson compile -C build
-}
-
-check() {
-   xvfb-run -s '-screen 0 1920x1080x24 -nolisten local' \
-   meson test -C build --print-errorlogs
-}
-
-package() {
-   depends+=(libamtk-5.so
- libgtksourceview-4.so
- libg{d,t}k-3.so
- libg{lib,object,io}-2.0.so)
-   provides+=("libtepl-${pkgver%%.*}.so")
-   meson install -C build --destdir "$pkgdir"
-}

Copied: tepl/repos/community-x86_64/PKGBUILD (from rev 1210748, 
tepl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-27 02:54:17 UTC (rev 1210749)
@@ -0,0 +1,54 @@
+# Maintainer:
+# Contributor: Caleb Maclennan 
+# Contributor: Jan Alexander Steffens (heftig) 
+# Contributor: Balló György 
+# Contributor: Tobias Bohrmann (PlainTextField) 
+
+pkgname=tepl
+pkgver=6.0.2
+pkgrel=1
+_commit=52b2715293a8cb8c2be853686be0bc711cef6759  # tags/6.0.2^0
+pkgdesc="Library that eases the development of GtkSourceView-based text 
editors and IDEs"
+url="https://gitlab.gnome.org/swilmet/tepl;
+arch=(x86_64)
+license=(LGPL3)
+depends=(amtk
+ gtksourceview4
+ uchardet)
+makedepends=(gobject-introspection
+ git
+ gtk-doc
+ meson
+ vala)
+checkdepends=(xorg-server-xvfb)
+options=(debug)
+source=("git+https://gitlab.gnome.org/swilmet/tepl.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+prepare() {
+   cd $pkgname
+}
+
+pkgver() {
+   cd $pkgname
+   git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+build() {
+   arch-meson $pkgname build -D gtk_doc=true
+   meson compile -C build
+}
+
+check() {
+   xvfb-run -s '-screen 0 1920x1080x24 -nolisten local' \
+   meson test -C build --print-errorlogs
+}
+
+package() {
+   depends+=(libamtk-5.so
+ libgtksourceview-4.so
+ libg{d,t}k-3.so
+ libg{lib,object,io}-2.0.so)
+   provides+=("libtepl-${pkgver%%.*}.so")
+   meson install -C build --destdir "$pkgdir"
+}



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

2022-05-26 Thread Jan Steffens via arch-commits
Date: Friday, May 27, 2022 @ 02:54:07
  Author: heftig
Revision: 1210748

6.0.2-1

Modified:
  tepl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-27 02:42:47 UTC (rev 1210747)
+++ PKGBUILD2022-05-27 02:54:07 UTC (rev 1210748)
@@ -5,9 +5,9 @@
 # Contributor: Tobias Bohrmann (PlainTextField) 
 
 pkgname=tepl
-pkgver=6.0.1
+pkgver=6.0.2
 pkgrel=1
-_commit=2db87c240f86ec05b6707c069dd132f835be653a  # tags/6.0.1^0
+_commit=52b2715293a8cb8c2be853686be0bc711cef6759  # tags/6.0.2^0
 pkgdesc="Library that eases the development of GtkSourceView-based text 
editors and IDEs"
 url="https://gitlab.gnome.org/swilmet/tepl;
 arch=(x86_64)



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 02:42:47
  Author: felixonmars
Revision: 1210747

archrelease: copy trunk to community-x86_64

Added:
  haskell-spdx/repos/community-x86_64/PKGBUILD
(from rev 1210746, haskell-spdx/trunk/PKGBUILD)
  haskell-spdx/repos/community-x86_64/cabal-3.4.patch
(from rev 1210746, haskell-spdx/trunk/cabal-3.4.patch)
Deleted:
  haskell-spdx/repos/community-x86_64/PKGBUILD
  haskell-spdx/repos/community-x86_64/cabal-3.4.patch

-+
 PKGBUILD|   86 +++---
 cabal-3.4.patch |   76 +++
 2 files changed, 81 insertions(+), 81 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-27 02:12:43 UTC (rev 1210746)
+++ PKGBUILD2022-05-27 02:42:47 UTC (rev 1210747)
@@ -1,43 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-_hkgname=spdx
-pkgname=haskell-spdx
-pkgver=1.0.0.3
-pkgrel=1
-pkgdesc="SPDX license expression language, Extras"
-url="https://github.com/phadej/spdx;
-license=("BSD")
-arch=('x86_64')
-depends=('ghc-libs')
-makedepends=('ghc' 'haskell-base-compat' 'haskell-tasty' 
'haskell-tasty-quickcheck')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('16c7e3126d77b9284fc3ef27dd94e551cae5496595df32b47e08722ff03288766770a0ef17a69f0a70ebdead08c54cb385471351c8a33b60a3578fe2303c19ac')
-
-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 
--ghc-option=-fllvm
-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 --show-details=direct
-}
-
-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
-}

Copied: haskell-spdx/repos/community-x86_64/PKGBUILD (from rev 1210746, 
haskell-spdx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-27 02:42:47 UTC (rev 1210747)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=spdx
+pkgname=haskell-spdx
+pkgver=1.0.0.3
+pkgrel=1
+pkgdesc="SPDX license expression language, Extras"
+url="https://github.com/phadej/spdx;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-base-compat' 'haskell-tasty' 
'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('16c7e3126d77b9284fc3ef27dd94e551cae5496595df32b47e08722ff03288766770a0ef17a69f0a70ebdead08c54cb385471351c8a33b60a3578fe2303c19ac')
+
+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 
--ghc-option=-fllvm
+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 --show-details=direct
+}
+
+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
+}

Deleted: cabal-3.4.patch
===
--- cabal-3.4.patch 2022-05-27 02:12:43 UTC (rev 1210746)
+++ cabal-3.4.patch 2022-05-27 02:42:47 UTC (rev 1210747)
@@ -1,38 +0,0 @@
-From 8afaa090a5f52a9dbde057b79ccf9739bcef8812 Mon Sep 17 00:00:00 2001
-From: Oleg Grenrus 
-Date: Sat, 6 Feb 2021 11:55:15 +0200
-Subject: 

[arch-commits] Commit in haskell-th-desugar/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 02:12:43
  Author: felixonmars
Revision: 1210746

archrelease: copy trunk to community-x86_64

Added:
  haskell-th-desugar/repos/community-x86_64/PKGBUILD
(from rev 1210745, haskell-th-desugar/trunk/PKGBUILD)
Deleted:
  haskell-th-desugar/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-27 02:12:28 UTC (rev 1210745)
+++ PKGBUILD2022-05-27 02:12:43 UTC (rev 1210746)
@@ -1,43 +0,0 @@
-# Maintainer: Felix Yan 
-
-_hkgname=th-desugar
-pkgname=haskell-th-desugar
-pkgver=1.13
-pkgrel=25
-pkgdesc="Functions to desugar Template Haskell"
-url="https://github.com/goldfirere/th-desugar;
-license=('BSD')
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-ordered-containers' 'haskell-syb' 
'haskell-th-abstraction'
- 'haskell-th-lift' 'haskell-th-orphans' 'haskell-transformers-compat')
-makedepends=('ghc' 'haskell-hunit' 'haskell-hspec')
-source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('43d9ba78574bb5edd6aec51ce35ff2a8570ac46b0cd8b8a6e1c5dc785b50146b3dcfc119d268537eb362610d4072ef19bc413928c63f2f7a8f175fa5726d5696')
-
-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 
--ghc-option=-fllvm
-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 --show-details=direct
-}
-
-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
-}

Copied: haskell-th-desugar/repos/community-x86_64/PKGBUILD (from rev 1210745, 
haskell-th-desugar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-27 02:12:43 UTC (rev 1210746)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=th-desugar
+pkgname=haskell-th-desugar
+pkgver=1.13.1
+pkgrel=1
+pkgdesc="Functions to desugar Template Haskell"
+url="https://github.com/goldfirere/th-desugar;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ordered-containers' 'haskell-syb' 
'haskell-th-abstraction'
+ 'haskell-th-lift' 'haskell-th-orphans' 'haskell-transformers-compat')
+makedepends=('ghc' 'haskell-hunit' 'haskell-hspec')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('41d551c7d57196831e6035e513617c77a78f1f5409e192a40726ff8302ccbec57e2e9af178afd19d7a929b9da4e240566734f2e3feb26548033311b080f17649')
+
+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 
--ghc-option=-fllvm
+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 --show-details=direct
+}
+
+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-th-desugar/trunk (PKGBUILD)

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 02:12:28
  Author: felixonmars
Revision: 1210745

upgpkg: haskell-th-desugar 1.13.1-1

Modified:
  haskell-th-desugar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-27 02:04:25 UTC (rev 1210744)
+++ PKGBUILD2022-05-27 02:12:28 UTC (rev 1210745)
@@ -2,8 +2,8 @@
 
 _hkgname=th-desugar
 pkgname=haskell-th-desugar
-pkgver=1.13
-pkgrel=25
+pkgver=1.13.1
+pkgrel=1
 pkgdesc="Functions to desugar Template Haskell"
 url="https://github.com/goldfirere/th-desugar;
 license=('BSD')
@@ -12,7 +12,7 @@
  'haskell-th-lift' 'haskell-th-orphans' 'haskell-transformers-compat')
 makedepends=('ghc' 'haskell-hunit' 'haskell-hspec')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('43d9ba78574bb5edd6aec51ce35ff2a8570ac46b0cd8b8a6e1c5dc785b50146b3dcfc119d268537eb362610d4072ef19bc413928c63f2f7a8f175fa5726d5696')
+sha512sums=('41d551c7d57196831e6035e513617c77a78f1f5409e192a40726ff8302ccbec57e2e9af178afd19d7a929b9da4e240566734f2e3feb26548033311b080f17649')
 
 build() {
 cd $_hkgname-$pkgver



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 02:04:25
  Author: felixonmars
Revision: 1210744

archrelease: copy trunk to community-x86_64

Added:
  haskell-spdx/repos/community-x86_64/PKGBUILD
(from rev 1210743, haskell-spdx/trunk/PKGBUILD)
  haskell-spdx/repos/community-x86_64/cabal-3.4.patch
(from rev 1210743, haskell-spdx/trunk/cabal-3.4.patch)
Deleted:
  haskell-spdx/repos/community-x86_64/PKGBUILD
  haskell-spdx/repos/community-x86_64/cabal-3.4.patch

-+
 PKGBUILD|   94 --
 cabal-3.4.patch |   76 +--
 2 files changed, 81 insertions(+), 89 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-27 02:04:09 UTC (rev 1210743)
+++ PKGBUILD2022-05-27 02:04:25 UTC (rev 1210744)
@@ -1,51 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-_hkgname=spdx
-pkgname=haskell-spdx
-pkgver=1.0.0.2
-pkgrel=142
-pkgdesc="SPDX license expression language, Extras"
-url="https://github.com/phadej/spdx;
-license=("BSD")
-arch=('x86_64')
-depends=('ghc-libs')
-makedepends=('ghc' 'uusi' 'haskell-base-compat' 'haskell-tasty' 
'haskell-tasty-quickcheck')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;
-cabal-3.4.patch)
-sha512sums=('2fb48d204a0c85269d4dbd6bd98efefb0691adc3eb654228b90b244c0d062e0e2f23c42e5f7ef9ab27a2f988654485fec11c3bdc0642b9b17d35791dd80f1548'
-
'edcd5676c3bdcc1f45bd41c8c465defb3b423e46330dbdf0037bf5d59658c4491c9979422077ba1fe598da12ca8b15a01d8f3d2de0a65d8bcc7f6e842a51d56e')
-
-prepare() {
-cd $_hkgname-$pkgver
-patch -p1 -i ../cabal-3.4.patch
-uusi -u base -u base-compat -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 
--ghc-option=-fllvm
-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 --show-details=direct
-}
-
-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
-}

Copied: haskell-spdx/repos/community-x86_64/PKGBUILD (from rev 1210743, 
haskell-spdx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-27 02:04:25 UTC (rev 1210744)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=spdx
+pkgname=haskell-spdx
+pkgver=1.0.0.3
+pkgrel=1
+pkgdesc="SPDX license expression language, Extras"
+url="https://github.com/phadej/spdx;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-base-compat' 'haskell-tasty' 
'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('16c7e3126d77b9284fc3ef27dd94e551cae5496595df32b47e08722ff03288766770a0ef17a69f0a70ebdead08c54cb385471351c8a33b60a3578fe2303c19ac')
+
+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 
--ghc-option=-fllvm
+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 --show-details=direct
+}
+
+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
+}

Deleted: cabal-3.4.patch

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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 02:04:09
  Author: felixonmars
Revision: 1210743

upgpkg: haskell-spdx 1.0.0.3-1

Modified:
  haskell-spdx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-27 01:58:16 UTC (rev 1210742)
+++ PKGBUILD2022-05-27 02:04:09 UTC (rev 1210743)
@@ -3,25 +3,17 @@
 
 _hkgname=spdx
 pkgname=haskell-spdx
-pkgver=1.0.0.2
-pkgrel=142
+pkgver=1.0.0.3
+pkgrel=1
 pkgdesc="SPDX license expression language, Extras"
 url="https://github.com/phadej/spdx;
 license=("BSD")
 arch=('x86_64')
 depends=('ghc-libs')
-makedepends=('ghc' 'uusi' 'haskell-base-compat' 'haskell-tasty' 
'haskell-tasty-quickcheck')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;
-cabal-3.4.patch)
-sha512sums=('2fb48d204a0c85269d4dbd6bd98efefb0691adc3eb654228b90b244c0d062e0e2f23c42e5f7ef9ab27a2f988654485fec11c3bdc0642b9b17d35791dd80f1548'
-
'edcd5676c3bdcc1f45bd41c8c465defb3b423e46330dbdf0037bf5d59658c4491c9979422077ba1fe598da12ca8b15a01d8f3d2de0a65d8bcc7f6e842a51d56e')
+makedepends=('ghc' 'haskell-base-compat' 'haskell-tasty' 
'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('16c7e3126d77b9284fc3ef27dd94e551cae5496595df32b47e08722ff03288766770a0ef17a69f0a70ebdead08c54cb385471351c8a33b60a3578fe2303c19ac')
 
-prepare() {
-cd $_hkgname-$pkgver
-patch -p1 -i ../cabal-3.4.patch
-uusi -u base -u base-compat -u tasty $_hkgname.cabal
-}
-
 build() {
 cd $_hkgname-$pkgver
 



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:56:38
  Author: felixonmars
Revision: 1210739

archrelease: copy trunk to community-staging-x86_64

Added:
  cryptol/repos/community-staging-x86_64/
  cryptol/repos/community-staging-x86_64/PKGBUILD
(from rev 1210738, cryptol/trunk/PKGBUILD)
  cryptol/repos/community-staging-x86_64/ghc9.patch
(from rev 1210738, cryptol/trunk/ghc9.patch)

+
 PKGBUILD   |   51 +++
 ghc9.patch |  809 +++
 2 files changed, 860 insertions(+)

Copied: cryptol/repos/community-staging-x86_64/PKGBUILD (from rev 1210738, 
cryptol/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-27 01:56:38 UTC (rev 1210739)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+pkgname=cryptol
+pkgver=2.12.0
+pkgrel=77
+pkgdesc="The Language of Cryptography"
+url="https://www.cryptol.net;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'z3' 'haskell-arithmoi' 'haskell-async' 
'haskell-base-compat' 'haskell-bv-sized'
+ 'haskell-cryptohash-sha1' 'haskell-extra' 'haskell-gitrev'
+ 'haskell-graphscc' 'haskell-heredoc' 'haskell-libbf' 
'haskell-memotrie'
+ 'haskell-monad-control' 'haskell-monadlib' 
'haskell-optparse-applicative'
+ 'haskell-parameterized-utils' 'haskell-panic' 'haskell-prettyprinter' 
'haskell-sbv'
+ 'haskell-simple-smt' 'haskell-strict' 'haskell-temporary' 
'haskell-tf-random'
+ 'haskell-transformers-base' 'haskell-what4' 'haskell-ansi-terminal' 
'haskell-blaze-html')
+makedepends=('ghc' 'uusi' 'alex' 'happy')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/GaloisInc/cryptol/archive/$pkgver.tar.gz;
+ghc9.patch)
+sha512sums=('3e7a58de47e5ae1fdc5067b2bcca66c04ee06c71e84f890104b64c59d1cd125667a23f537c3afd0503c059c97f5d168e6afa0df4fdc6c1e9448aae434e616bc8'
+
'f41afa8f65b01aaa5fc92a6433ed09ae85e86f58cb86e64b72de7e6765b32835974cb998305235d5c1ed8ff1112595f61400e16bd2ffd16c578c0c499d02486b')
+
+prepare() {
+cd $pkgname-$pkgver
+patch -p1 -i ../ghc9.patch
+uusi -u base-compat -u sbv $pkgname.cabal
+}
+
+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 \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+-f-static -f-relocatable --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 "${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
+}

Copied: cryptol/repos/community-staging-x86_64/ghc9.patch (from rev 1210738, 
cryptol/trunk/ghc9.patch)
===
--- community-staging-x86_64/ghc9.patch (rev 0)
+++ community-staging-x86_64/ghc9.patch 2022-05-27 01:56:38 UTC (rev 1210739)
@@ -0,0 +1,809 @@
+From 889bfd65116b8817bd97b18e8a1e66db57c135cf Mon Sep 17 00:00:00 2001
+From: Rob Dockins 
+Date: Wed, 14 Jul 2021 22:44:53 -0700
+Subject: [PATCH 1/2] First take at GHC 9.* compatibility.
+
+There's a lot here that can be cleaned up, and we need
+some backward compatiblity layer, but this is just a first
+try.
+
+Something in the PrimeEC module is causing hard crashes
+during the test suite, so I'll have to figure out what's
+going on there.
+---
+ cryptol-remote-api/cryptol-remote-api.cabal |   7 +-
+ cryptol.cabal   |   5 +-
+ cryptol/OptParser.hs|   1 -
+ src/Cryptol/Backend/Concrete.hs |  13 +-
+ src/Cryptol/Backend/SBV.hs  |   9 +-
+ src/Cryptol/Backend/What4.hs|   9 +-
+ src/Cryptol/Eval/Concrete.hs|   4 +-
+ src/Cryptol/Eval/Reference.lhs  |  10 +-
+ src/Cryptol/ModuleSystem/Name.hs|   4 +-
+ src/Cryptol/PrimeEC.hs  | 259 
+ src/Cryptol/TypeCheck/Solver/Numeric.hs |   8 +-
+ 11 files changed, 138 insertions(+), 191 deletions(-)
+
+diff --git a/cryptol.cabal b/cryptol.cabal
+index c140f87dd..b6e31f471 100644
+--- a/cryptol.cabal
 b/cryptol.cabal
+@@ -56,7 +56,8 @@ library
+ghc-prim,
+   

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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:56:19
  Author: felixonmars
Revision: 1210738

upgpkg: cryptol 2.12.0-77: rebuild with bimap 0.5.0

Modified:
  cryptol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-27 01:56:07 UTC (rev 1210737)
+++ PKGBUILD2022-05-27 01:56:19 UTC (rev 1210738)
@@ -2,7 +2,7 @@
 
 pkgname=cryptol
 pkgver=2.12.0
-pkgrel=76
+pkgrel=77
 pkgdesc="The Language of Cryptography"
 url="https://www.cryptol.net;
 license=("BSD")



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:56:07
  Author: felixonmars
Revision: 1210737

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-27 01:55:52 UTC (rev 1210736)
+++ PKGBUILD2022-05-27 01:56:07 UTC (rev 1210737)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-validators
-pkgver=0.18.2
-_commit=f7221ba5f847aad46714bae7f562a83a2df3327e
-pkgrel=3
-pkgdesc="Python Data Validation for Humans"
-url="https://github.com/kvesteri/validators;
-license=('MIT')
-arch=('any')
-depends=('python-decorator' 'python-six')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest')
-source=("https://github.com/kvesteri/validators/archive/$_commit/$pkgname-$_commit.tar.gz;)
-sha512sums=('24a6a119aae5ac509b7d52a85ca11051760ca4ebead98ffc274cb253da7176327347cdcebf1e93a61968c464074901731e84a609557c7c80ab3fdd12c1229907')
-
-build() {
-  cd validators-$_commit
-  python setup.py build
-}
-
-check() {
-  cd validators-$_commit
-  python -m pytest
-}
-
-package() {
-  cd validators-$_commit
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
-}

Copied: python-validators/repos/community-any/PKGBUILD (from rev 1210736, 
python-validators/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-27 01:56:07 UTC (rev 1210737)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-validators
+pkgver=0.19.0
+pkgrel=1
+pkgdesc="Python Data Validation for Humans"
+url="https://github.com/kvesteri/validators;
+license=('MIT')
+arch=('any')
+depends=('python-decorator' 'python-six')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("https://github.com/kvesteri/validators/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('bc643e3b77521af4fa19e9a08e809d67196b4c05918e8286ae0071de84d1f544dbd725645095b9db679e28fcde5c67fba68e314254efcdb587e836c1d05d8fd2')
+
+build() {
+  cd validators-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd validators-$pkgver
+  python -m pytest
+}
+
+package() {
+  cd validators-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:55:52
  Author: felixonmars
Revision: 1210736

upgpkg: python-validators 0.19.0-1

Modified:
  python-validators/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-27 01:53:02 UTC (rev 1210735)
+++ PKGBUILD2022-05-27 01:55:52 UTC (rev 1210736)
@@ -1,9 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-validators
-pkgver=0.18.2
-_commit=f7221ba5f847aad46714bae7f562a83a2df3327e
-pkgrel=3
+pkgver=0.19.0
+pkgrel=1
 pkgdesc="Python Data Validation for Humans"
 url="https://github.com/kvesteri/validators;
 license=('MIT')
@@ -11,21 +10,21 @@
 depends=('python-decorator' 'python-six')
 makedepends=('python-setuptools')
 checkdepends=('python-pytest')
-source=("https://github.com/kvesteri/validators/archive/$_commit/$pkgname-$_commit.tar.gz;)
-sha512sums=('24a6a119aae5ac509b7d52a85ca11051760ca4ebead98ffc274cb253da7176327347cdcebf1e93a61968c464074901731e84a609557c7c80ab3fdd12c1229907')
+source=("https://github.com/kvesteri/validators/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('bc643e3b77521af4fa19e9a08e809d67196b4c05918e8286ae0071de84d1f544dbd725645095b9db679e28fcde5c67fba68e314254efcdb587e836c1d05d8fd2')
 
 build() {
-  cd validators-$_commit
+  cd validators-$pkgver
   python setup.py build
 }
 
 check() {
-  cd validators-$_commit
+  cd validators-$pkgver
   python -m pytest
 }
 
 package() {
-  cd validators-$_commit
+  cd validators-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
 
   install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:53:02
  Author: felixonmars
Revision: 1210735

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-what4/repos/community-staging-x86_64/
  haskell-what4/repos/community-staging-x86_64/PKGBUILD
(from rev 1210734, haskell-what4/trunk/PKGBUILD)
  haskell-what4/repos/community-staging-x86_64/hashable-1.4.patch
(from rev 1210734, haskell-what4/trunk/hashable-1.4.patch)

+
 PKGBUILD   |   62 +++
 hashable-1.4.patch |  266 +++
 2 files changed, 328 insertions(+)

Copied: haskell-what4/repos/community-staging-x86_64/PKGBUILD (from rev 
1210734, haskell-what4/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-27 01:53:02 UTC (rev 1210735)
@@ -0,0 +1,62 @@
+# Maintainer: Felix Yan 
+
+_hkgname=what4
+pkgname=haskell-what4
+pkgver=1.2.1
+pkgrel=136
+pkgdesc="Solver-agnostic symbolic values support for issuing queries"
+url="https://github.com/GaloisInc/what4;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-bimap' 'haskell-bifunctors' 
'haskell-bv-sized'
+ 'haskell-config-value' 'haskell-deriving-compat' 
'haskell-data-binary-ieee754'
+ 'haskell-extra' 'haskell-fingertree' 'haskell-hashable' 
'haskell-hashtables'
+ 'haskell-io-streams' 'haskell-lens' 'haskell-libbf' 'haskell-panic'
+ 'haskell-parameterized-utils' 'haskell-prettyprinter' 
'haskell-scientific'
+ 'haskell-temporary' 'haskell-th-abstraction' 'haskell-th-lift' 
'haskell-th-lift-instances'
+ 'haskell-unordered-containers' 'haskell-utf8-string' 'haskell-vector' 
'haskell-versions'
+ 'haskell-zenc')
+makedepends=('ghc' 'uusi' 'haskell-contravariant' 'haskell-hedgehog' 
'haskell-lumberjack'
+ 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-checklist'
+ 'haskell-tasty-hedgehog' 'haskell-tasty-hunit' 
'haskell-tasty-quickcheck'
+ 'haskell-tasty-sugar')
+checkdepends=('cvc4' 'yices' 'z3')
+optdepends=('cvc4' 'yices' 'z3')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz
+hashable-1.4.patch)
+sha512sums=('494e030c0302997205bf4ac3cbd877cd107b22cc3dcb1ca64a075434f95c0a993a82ac27ad5098e616a2f72f8cb9d6234d41a2c5e0335eb874953963281d1318'
+
'2f048d498c9edc7f51a95759bc2ff9099339ec7df37ad1b7ec5cebf4e24b538ce76bef802620e92ae84887712eaf05e5d601c919464381544a92ce24cd8ce2fc')
+
+prepare() {
+cd $_hkgname-$pkgver
+patch -p2 -i ../hashable-1.4.patch
+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 --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm
+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 --show-details=direct
+}
+
+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
+}

Copied: haskell-what4/repos/community-staging-x86_64/hashable-1.4.patch (from 
rev 1210734, haskell-what4/trunk/hashable-1.4.patch)
===
--- community-staging-x86_64/hashable-1.4.patch (rev 0)
+++ community-staging-x86_64/hashable-1.4.patch 2022-05-27 01:53:02 UTC (rev 
1210735)
@@ -0,0 +1,266 @@
+From 3db89da15cc36a4e7be8860d630261a63e62bea1 Mon Sep 17 00:00:00 2001
+From: Ryan Scott 
+Date: Wed, 5 Jan 2022 10:54:14 -0600
+Subject: [PATCH] Allow building with hashable-1.4.*
+
+This was prompted by GaloisInc/parameterized-utils#126, but the changes needed
+on `what4`'s end can be applied independently.
+---
+ what4/CHANGES.md| 11 +++
+ what4/src/What4/BaseTypes.hs|  6 ++
+ what4/src/What4/Expr/App.hs |  5 -
+ what4/src/What4/Expr/ArrayUpdateMap.hs  |  2 +-
+ what4/src/What4/Expr/BoolMap.hs |  2 +-
+ what4/src/What4/Expr/MATLAB.hs  |  4 
+ what4/src/What4/Expr/StringSeq.hs   |  2 +-
+ what4/src/What4/Expr/UnaryBV.hs  

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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:52:47
  Author: felixonmars
Revision: 1210734

upgpkg: haskell-what4 1.2.1-136: rebuild with bimap 0.5.0

Modified:
  haskell-what4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-27 01:48:56 UTC (rev 1210733)
+++ PKGBUILD2022-05-27 01:52:47 UTC (rev 1210734)
@@ -3,7 +3,7 @@
 _hkgname=what4
 pkgname=haskell-what4
 pkgver=1.2.1
-pkgrel=135
+pkgrel=136
 pkgdesc="Solver-agnostic symbolic values support for issuing queries"
 url="https://github.com/GaloisInc/what4;
 license=('BSD')
@@ -48,7 +48,7 @@
 
 check() {
 cd $_hkgname-$pkgver
-LC_CTYPE=en_US.UTF-8 runhaskell Setup test --show-details=direct
+runhaskell Setup test --show-details=direct
 }
 
 package() {



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:48:56
  Author: felixonmars
Revision: 1210733

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-27 01:48:41 UTC (rev 1210732)
+++ PKGBUILD2022-05-27 01:48:56 UTC (rev 1210733)
@@ -1,49 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Evgeniy Filimonov 
-
-pkgname=python-aiogram
-pkgver=2.19
-pkgrel=1
-pkgdesc="A pretty simple and fully asynchronous library for Telegram Bot API 
written with asyncio and aiohttp"
-arch=('any')
-url="https://github.com/aiogram/aiogram;
-license=('MIT')
-depends=('python-aiohttp' 'python-babel')
-makedepends=('python-setuptools')
-checkdepends=('python-aiohttp-socks' 'python-aioredis' 'python-aresponses' 
'python-pytest'
-  'python-pytest-lazy-fixture' 'pifpaf' 'redis')
-optdepends=('python-uvloop: fast, drop-in replacement of the built-in asyncio 
event loop'
-'python-ujson: ultra fast JSON encoder and decoder written in pure 
C'
-'python-rapidjson: extremely fast C++ JSON parser and 
serialization library'
-'python-emoji: emojize and demojize support'
-'python-aioredis: Redis storage support'
-'python-aiohttp-socks: SOCKS4(a) and SOCKS5 proxy support'
-#'python-rethinkdb: RethinkDB storage support'  # No such package 
yet
-)
-source=("$url/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
-sha512sums=('1f7cc23c20bc42c1a08311bec693d165b27dc0b5602e06b9f054375d0d45127fef7f3ee655ad9df429f740ebdc2c9dc9724e690eaff20304ae02ba93d82c4cbb')
-
-prepare() {
-  cd aiogram-$pkgver
-  sed -e '/import certifi/d' \
-  -e 's|certifi.where()|"/etc/ssl/certs/ca-certificates.crt"|' \
-  -i aiogram/bot/base.py
-}
-
-build() {
-  cd aiogram-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd aiogram-$pkgver
-  pifpaf run redis -- bash -c 'python -m pytest --redis $PIFPAF_REDIS_URL'
-}
-
-package() {
-  cd aiogram-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
-  install -Dm644 README.md -t "$pkgdir"/usr/share/doc/$pkgname/
-}

Copied: python-aiogram/repos/community-any/PKGBUILD (from rev 1210732, 
python-aiogram/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-27 01:48:56 UTC (rev 1210733)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Evgeniy Filimonov 
+
+pkgname=python-aiogram
+pkgver=2.20
+pkgrel=1
+pkgdesc="A pretty simple and fully asynchronous library for Telegram Bot API 
written with asyncio and aiohttp"
+arch=('any')
+url="https://github.com/aiogram/aiogram;
+license=('MIT')
+depends=('python-aiohttp' 'python-babel')
+makedepends=('python-setuptools')
+checkdepends=('python-aiohttp-socks' 'python-aioredis' 'python-aresponses' 
'python-pytest'
+  'python-pytest-lazy-fixture' 'pifpaf' 'redis')
+optdepends=('python-uvloop: fast, drop-in replacement of the built-in asyncio 
event loop'
+'python-ujson: ultra fast JSON encoder and decoder written in pure 
C'
+'python-rapidjson: extremely fast C++ JSON parser and 
serialization library'
+'python-emoji: emojize and demojize support'
+'python-aioredis: Redis storage support'
+'python-aiohttp-socks: SOCKS4(a) and SOCKS5 proxy support'
+#'python-rethinkdb: RethinkDB storage support'  # No such package 
yet
+)
+source=("$url/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
+sha512sums=('85d9e40ec916161c9ecc1d8c11ebb611b442b16e7d31cab0be1f5f9d05a6d0832333e6c815c282406eaeabd7559bc3cbf4a13baa3747d3e567d53e2fe8c3119a')
+
+prepare() {
+  cd aiogram-$pkgver
+  sed -e '/import certifi/d' \
+  -e 's|certifi.where()|"/etc/ssl/certs/ca-certificates.crt"|' \
+  -i aiogram/bot/base.py
+}
+
+build() {
+  cd aiogram-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd aiogram-$pkgver
+  pifpaf run redis -- bash -c 'python -m pytest --redis $PIFPAF_REDIS_URL'
+}
+
+package() {
+  cd aiogram-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  install -Dm644 README.md -t "$pkgdir"/usr/share/doc/$pkgname/
+}



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:48:41
  Author: felixonmars
Revision: 1210732

upgpkg: python-aiogram 2.20-1

Modified:
  python-aiogram/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-27 01:47:24 UTC (rev 1210731)
+++ PKGBUILD2022-05-27 01:48:41 UTC (rev 1210732)
@@ -2,7 +2,7 @@
 # Contributor: Evgeniy Filimonov 
 
 pkgname=python-aiogram
-pkgver=2.19
+pkgver=2.20
 pkgrel=1
 pkgdesc="A pretty simple and fully asynchronous library for Telegram Bot API 
written with asyncio and aiohttp"
 arch=('any')
@@ -21,7 +21,7 @@
 #'python-rethinkdb: RethinkDB storage support'  # No such package 
yet
 )
 source=("$url/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
-sha512sums=('1f7cc23c20bc42c1a08311bec693d165b27dc0b5602e06b9f054375d0d45127fef7f3ee655ad9df429f740ebdc2c9dc9724e690eaff20304ae02ba93d82c4cbb')
+sha512sums=('85d9e40ec916161c9ecc1d8c11ebb611b442b16e7d31cab0be1f5f9d05a6d0832333e6c815c282406eaeabd7559bc3cbf4a13baa3747d3e567d53e2fe8c3119a')
 
 prepare() {
   cd aiogram-$pkgver



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:47:24
  Author: felixonmars
Revision: 1210731

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-bimap/repos/community-staging-x86_64/PKGBUILD (from rev 
1210730, haskell-bimap/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-27 01:47:24 UTC (rev 1210731)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=bimap
+pkgname=haskell-bimap
+pkgver=0.5.0
+pkgrel=1
+pkgdesc="Bidirectional mapping between two key types"
+url="https://github.com/joelwilliamson/bimap;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('677f15b491e5aaf3dd8d96bc79ba8a7702879dbd8f8220b813f45a38608989ae604fb9c63bb010c31496efd8af716d811a38f3f74a7d65cacd14ff8db220ed40')
+
+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 
--ghc-option=-fllvm
+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 --show-details=direct
+}
+
+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-bimap/trunk (PKGBUILD)

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:47:09
  Author: felixonmars
Revision: 1210730

upgpkg: haskell-bimap 0.5.0-1: rebuild with bimap 0.5.0

Modified:
  haskell-bimap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-27 01:46:00 UTC (rev 1210729)
+++ PKGBUILD2022-05-27 01:47:09 UTC (rev 1210730)
@@ -2,8 +2,8 @@
 
 _hkgname=bimap
 pkgname=haskell-bimap
-pkgver=0.4.0
-pkgrel=135
+pkgver=0.5.0
+pkgrel=1
 pkgdesc="Bidirectional mapping between two key types"
 url="https://github.com/joelwilliamson/bimap;
 license=('BSD')
@@ -11,7 +11,7 @@
 depends=('ghc-libs')
 makedepends=('ghc' 'haskell-quickcheck')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('1f138901536b857b0261f8e78117cb5818b90cee9f6e87b3c7fad1ce6a168e2c7c02126375a8c3ef2470904f40cb17c82f29d84e731e12f6cf242e0fa66015fa')
+sha512sums=('677f15b491e5aaf3dd8d96bc79ba8a7702879dbd8f8220b813f45a38608989ae604fb9c63bb010c31496efd8af716d811a38f3f74a7d65cacd14ff8db220ed40')
 
 build() {
 cd $_hkgname-$pkgver



[arch-commits] Commit in jenkins/repos/community-any (14 files)

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:46:00
  Author: felixonmars
Revision: 1210729

archrelease: copy trunk to community-any

Added:
  jenkins/repos/community-any/LICENSE
(from rev 1210728, jenkins/trunk/LICENSE)
  jenkins/repos/community-any/PKGBUILD
(from rev 1210728, jenkins/trunk/PKGBUILD)
  jenkins/repos/community-any/jenkins.conf
(from rev 1210728, jenkins/trunk/jenkins.conf)
  jenkins/repos/community-any/jenkins.install
(from rev 1210728, jenkins/trunk/jenkins.install)
  jenkins/repos/community-any/jenkins.service
(from rev 1210728, jenkins/trunk/jenkins.service)
  jenkins/repos/community-any/jenkins.sysusers
(from rev 1210728, jenkins/trunk/jenkins.sysusers)
  jenkins/repos/community-any/jenkins.tmpfiles
(from rev 1210728, jenkins/trunk/jenkins.tmpfiles)
Deleted:
  jenkins/repos/community-any/LICENSE
  jenkins/repos/community-any/PKGBUILD
  jenkins/repos/community-any/jenkins.conf
  jenkins/repos/community-any/jenkins.install
  jenkins/repos/community-any/jenkins.service
  jenkins/repos/community-any/jenkins.sysusers
  jenkins/repos/community-any/jenkins.tmpfiles

--+
 LICENSE  |   46 +--
 PKGBUILD |   88 ++---
 jenkins.conf |   26 +++
 jenkins.install  |   14 
 jenkins.service  |   48 ++--
 jenkins.sysusers |4 +-
 jenkins.tmpfiles |2 -
 7 files changed, 114 insertions(+), 114 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2022-05-27 01:45:43 UTC (rev 1210728)
+++ LICENSE 2022-05-27 01:46:00 UTC (rev 1210729)
@@ -1,23 +0,0 @@
-The MIT License
-
-Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
-
-

Copied: jenkins/repos/community-any/LICENSE (from rev 1210728, 
jenkins/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2022-05-27 01:46:00 UTC (rev 1210729)
@@ -0,0 +1,23 @@
+The MIT License
+
+Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-27 01:45:43 UTC (rev 1210728)
+++ PKGBUILD2022-05-27 01:46:00 UTC (rev 1210729)
@@ -1,44 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Alexander Rødseth 
-# Contributor: Marcel Huber 
-# Contributor: Illarion Kovalchuk 
-
-pkgname=jenkins
-pkgver=2.348
-pkgrel=2
-pkgdesc='Extendable continuous integration server (latest)'
-arch=('any')
-url='https://jenkins.io'
-license=('MIT')
-depends=('java-runtime=11' 'ttf-dejavu')
-provides=('jenkins-ci')
-conflicts=('jenkins-ci')
-replaces=('jenkins-ci')
-backup=('etc/conf.d/jenkins')

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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:45:33
  Author: felixonmars
Revision: 1210724

upgpkg: jenkins 2.349-1

Modified:
  jenkins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-27 01:44:34 UTC (rev 1210723)
+++ PKGBUILD2022-05-27 01:45:33 UTC (rev 1210724)
@@ -4,8 +4,8 @@
 # Contributor: Illarion Kovalchuk 
 
 pkgname=jenkins
-pkgver=2.348
-pkgrel=2
+pkgver=2.349
+pkgrel=1
 pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
 url='https://jenkins.io'
@@ -24,7 +24,7 @@
 'jenkins.tmpfiles'
 'jenkins.sysusers'
 'LICENSE')
-sha512sums=('2613d480b074be52991991cc290ff30b41f6f0fed0cca08e2aabf09fc678bd527e296c3aac863630d1194668800d74ded42e35a6d51bca73d3ce16bf35aeba76'
+sha512sums=('82f768cade275e412a8f54711d5e10726a376599ef48faef54514a6adb0609cf0d43ceb394f8c283338263da4be4dd53a70abd7fcf94ee2594034babc0326acf'
 
'7a81b2fd0ce91da42bacf35615fd7cb0352a0316b78b41fe180ba531848ca85b1f1df1573ab5707d9aebb36bacc51c81bc200f80cf41f1d1903309c1478d50f8'
 
'320e3d7bcdb78861e829e97be3ec37b8f1846737032ba70f624dfc5be86569d527279f53654a4a22d78b816ff1b07df429725a1d0a8059d44900d1095d1189ab'
 
'a845a7147be54affc586dfce9a188ec24c92e673e88dec0b62da386d2e597de6ecda103429008562abd897f179a52c37cf2188ebc65b8c636efd07d707e18f90'



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:44:34
  Author: felixonmars
Revision: 1210723

archrelease: copy trunk to community-staging-x86_64

Added:
  misfortune/repos/community-staging-x86_64/
  misfortune/repos/community-staging-x86_64/PKGBUILD
(from rev 1210722, misfortune/trunk/PKGBUILD)
  misfortune/repos/community-staging-x86_64/random-fu-0.3.patch
(from rev 1210722, misfortune/trunk/random-fu-0.3.patch)

-+
 PKGBUILD|   47 
 random-fu-0.3.patch |   83 ++
 2 files changed, 130 insertions(+)

Copied: misfortune/repos/community-staging-x86_64/PKGBUILD (from rev 1210722, 
misfortune/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-27 01:44:34 UTC (rev 1210723)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+
+pkgname=misfortune
+pkgver=0.1.1.2
+pkgrel=135
+pkgdesc="fortune-mod clone"
+url="https://github.com/mokus0/misfortune;
+license=("custom:PublicDomain")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-cereal' 'haskell-knob' 'haskell-monad-loops' 
'haskell-random'
+ 'haskell-random-fu' 'haskell-regex-base' 'haskell-regex-pcre' 
'haskell-utf8-string'
+ 'haskell-vector')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz;
+random-fu-0.3.patch)
+sha256sums=('ae4b44215f811e7af6af756c813b9bd6e4161be555f30dd817324f8d1ffe2349'
+'954b412585a7406f4cff350dc63a45595864bb9d7ce874c922db3840a48c6e4e')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../random-fu-0.3.patch
+  uusi -d semigroups $pkgname.cabal
+}
+
+build() {
+  cd $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 
--ghc-option=-fllvm \
+--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 $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"
+}

Copied: misfortune/repos/community-staging-x86_64/random-fu-0.3.patch (from rev 
1210722, misfortune/trunk/random-fu-0.3.patch)
===
--- community-staging-x86_64/random-fu-0.3.patch
(rev 0)
+++ community-staging-x86_64/random-fu-0.3.patch2022-05-27 01:44:34 UTC 
(rev 1210723)
@@ -0,0 +1,83 @@
+From 61b2b05b86e87a0a5c0795877024ff9449ba6cad Mon Sep 17 00:00:00 2001
+From: Felix Yan 
+Date: Mon, 7 Mar 2022 00:57:28 +0200
+Subject: [PATCH] Fix compatibility for random-fu 0.3
+
+Fixes #4
+Many thanks to @berberman
+---
+ misfortune.cabal| 6 ++
+ src/Data/Fortune.hs | 6 --
+ src/Fortune.hs  | 6 --
+ 3 files changed, 10 insertions(+), 8 deletions(-)
+
+diff --git a/misfortune.cabal b/misfortune.cabal
+index b01ba69..f5f86cd 100644
+--- a/misfortune.cabal
 b/misfortune.cabal
+@@ -121,7 +121,8 @@ Library
+ directory,
+ filepath,
+ knob,
+-random-fu >= 0.2.2,
++random,
++random-fu >= 0.3,
+ semigroups,
+ text,
+ utf8-string,
+diff --git a/src/Data/Fortune.hs b/src/Data/Fortune.hs
+index 16d221e..ffbc970 100644
+--- a/src/Data/Fortune.hs
 b/src/Data/Fortune.hs
+@@ -64,6 +64,7 @@ import Paths_misfortune
+ import System.Directory
+ import System.Environment
+ import System.FilePath
++import System.Random.Stateful (newIOGenM, newStdGen)
+ 
+ -- |The number of fortune strings in the index
+ numFortunes :: S.FortuneStats -> Int
+@@ -233,9 +234,10 @@ randomFortune paths = withFortuneFiles '%' False paths $ 
\fs -> do
+ -- random fortune from that file (unformly).
+ randomFortuneFromRandomFile :: RVar FortuneFile -> IO String
+ randomFortuneFromRandomFile file = do
+-f <- sample file
++gen <- newStdGen >>= newIOGenM
++f <- sampleFrom gen file
+ n <- getNumFortunes f
+-i <- sample (uniform 0 (n-1))
++i <- sampleFrom gen (uniform 0 (n-1))
+ T.unpack <$> getFortune f i
+ 
+ -- |Given a list of 'FortuneFile's, compute a distrubution over them weighted 
by the number
+diff --git 

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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:44:19
  Author: felixonmars
Revision: 1210722

upgpkg: misfortune 0.1.1.2-135: rebuild with rvar 0.3.0.1

Modified:
  misfortune/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-27 01:44:02 UTC (rev 1210721)
+++ PKGBUILD2022-05-27 01:44:19 UTC (rev 1210722)
@@ -2,7 +2,7 @@
 
 pkgname=misfortune
 pkgver=0.1.1.2
-pkgrel=134
+pkgrel=135
 pkgdesc="fortune-mod clone"
 url="https://github.com/mokus0/misfortune;
 license=("custom:PublicDomain")



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:44:02
  Author: felixonmars
Revision: 1210721

archrelease: copy trunk to community-staging-x86_64

Added:
  dice/repos/community-staging-x86_64/
  dice/repos/community-staging-x86_64/0001-Support-GHC-9.patch
(from rev 1210720, dice/trunk/0001-Support-GHC-9.patch)
  dice/repos/community-staging-x86_64/PKGBUILD
(from rev 1210720, dice/trunk/PKGBUILD)

--+
 0001-Support-GHC-9.patch |  225 +
 PKGBUILD |   47 +
 2 files changed, 272 insertions(+)

Copied: dice/repos/community-staging-x86_64/0001-Support-GHC-9.patch (from rev 
1210720, dice/trunk/0001-Support-GHC-9.patch)
===
--- community-staging-x86_64/0001-Support-GHC-9.patch   
(rev 0)
+++ community-staging-x86_64/0001-Support-GHC-9.patch   2022-05-27 01:44:02 UTC 
(rev 1210721)
@@ -0,0 +1,225 @@
+From 26edbdb319d61e37bf421fd5bc47c04521b3c9f0 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Na=C3=AFm=20Favier?= 
+Date: Tue, 22 Feb 2022 18:25:11 +0100
+Subject: [PATCH] Support GHC 9
+
+---
+ dice.cabal  |  3 +-
+ src/Data/Random/Dice.hs | 64 +++--
+ 2 files changed, 32 insertions(+), 35 deletions(-)
+
+diff --git a/dice.cabal b/dice.cabal
+index 56d6b63..68ca236 100644
+--- a/dice.cabal
 b/dice.cabal
+@@ -28,8 +28,9 @@ source-repository head
+ Library
+   hs-source-dirs:   src
+   exposed-modules:  Data.Random.Dice
+-  build-depends:base >= 3 && < 5, random-fu, parsec, transformers
++  build-depends:base >= 3 && < 5, random-fu >= 0.3.0.0, mwc-random, 
parsec, mtl
+ 
+ Executable dice
+   hs-source-dirs:   src
++  other-modules:Data.Random.Dice
+   main-is:  Dice.hs
+diff --git a/src/Data/Random/Dice.hs b/src/Data/Random/Dice.hs
+index 8cb5a33..3a2ec8f 100644
+--- a/src/Data/Random/Dice.hs
 b/src/Data/Random/Dice.hs
+@@ -1,11 +1,13 @@
+ {-# LANGUAGE CPP #-}
++{-# LANGUAGE FlexibleContexts #-}
+ module Data.Random.Dice where
+ 
+ import Data.Random
+ import Data.Random.Distribution.Uniform (integralUniform)
++import System.Random.MWC (createSystemRandom, UniformRange)
+ 
+ import Control.Monad
+-import Control.Monad.Trans.Error
++import Control.Monad.Except
+ import Data.Functor.Identity
+ import Data.Ratio
+ import Data.List
+@@ -32,7 +34,7 @@ instance Functor Expr where
+ fmap f = foldExpr (\s x -> Const s (f x)) Plus Minus Times Divide
+ 
+ foldExpr c (+) (-) (*) (/) {-(#)-} = fold
+-where 
++where
+ fold (Const  s a) = c s a
+ fold (Plus   x y) = fold x + fold y
+ fold (Minus  x y) = fold x - fold y
+@@ -45,24 +47,16 @@ evalExprWithDiv (/) = foldExpr (const return) (liftM2 (+)) 
(liftM2 (-)) (liftM2
+ where
+ divM x y = join (liftM2 (/) x y)
+ 
+-#if __GLASGOW_HASKELL__ < 808
+-evalFractionalExpr :: (Eq a, Fractional a, Monad m) => Expr a -> m a
+-#else
+-evalFractionalExpr :: (Eq a, Fractional a, MonadFail m) => Expr a -> m a
+-#endif
++evalFractionalExpr :: (Eq a, Fractional a, MonadError String m) => Expr a -> 
m a
+ evalFractionalExpr = evalExprWithDiv divM
+ where
+-divM x 0 = fail "Divide by zero!"
++divM x 0 = throwError "Divide by zero!"
+ divM x y = return (x / y)
+ 
+-#if __GLASGOW_HASKELL__ < 808
+-evalIntegralExpr :: (Integral a, Monad m) => Expr a -> m a
+-#else
+-evalIntegralExpr :: (Integral a, MonadFail m) => Expr a -> m a
+-#endif
++evalIntegralExpr :: (Integral a, MonadError String m) => Expr a -> m a
+ evalIntegralExpr = evalExprWithDiv divM
+ where
+-divM x 0 = fail "Divide by zero!"
++divM x 0 = throwError "Divide by zero!"
+ divM x y = return (div x y)
+ 
+ 
+@@ -86,7 +80,7 @@ runExpr (Divide x y) = commute Divide x y
+ 
+ fmtIntegralExpr :: (Show a, Integral a) => Expr a -> String
+ fmtIntegralExpr (Const _ e) = show e
+-fmtIntegralExpr e = 
++fmtIntegralExpr e =
+ showParen True (fmtExprPrec showScalarConst e 0)
+ . showString " => "
+ . showError (evalIntegralExpr e)
+@@ -95,7 +89,7 @@ fmtIntegralExpr e =
+ fmtIntegralListExpr :: (Show a, Integral a) => Expr [a] -> String
+ fmtIntegralListExpr (Const _ []) = "0"
+ fmtIntegralListExpr (Const _ [e]) = show e
+-fmtIntegralListExpr e = 
++fmtIntegralListExpr e =
+ showParen True (fmtExprPrec showListConst e 0)
+ . showString " => "
+ . showError (evalIntegralExpr (fmap sum e))
+@@ -104,7 +98,7 @@ fmtIntegralListExpr e =
+ fmtSimple :: (Integral a, Show a) => Expr [a] -> String
+ fmtSimple (Const _ []) = "0"
+ fmtSimple (Const _ [e]) = show e
+-fmtSimple e = 
++fmtSimple e =
+ showParen False (fmtExprPrec showSimpleListConst e 0)
+ . showString " => "
+ . showError (evalIntegralExpr (fmap sum e))
+@@ -130,11 +124,11 @@ showSimpleListConst = showSimpleConst showsPrec
+ 
+ 

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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:43:47
  Author: felixonmars
Revision: 1210720

upgpkg: dice 0.1.0.1-10: rebuild with rvar 0.3.0.1

Modified:
  dice/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-27 01:42:59 UTC (rev 1210719)
+++ PKGBUILD2022-05-27 01:43:47 UTC (rev 1210720)
@@ -3,7 +3,7 @@
 
 pkgname=dice
 pkgver=0.1.0.1
-pkgrel=9
+pkgrel=10
 pkgdesc="Simplistic D style dice-rolling system."
 url='https://github.com/lambdabot/dice'
 license=("custom:PublicDomain")



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:42:59
  Author: felixonmars
Revision: 1210719

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-random-fu/repos/community-staging-x86_64/
  haskell-random-fu/repos/community-staging-x86_64/PKGBUILD
(from rev 1210718, haskell-random-fu/trunk/PKGBUILD)

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

Copied: haskell-random-fu/repos/community-staging-x86_64/PKGBUILD (from rev 
1210718, haskell-random-fu/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-27 01:42:59 UTC (rev 1210719)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+
+_hkgname=random-fu
+pkgname=haskell-random-fu
+pkgver=0.3.0.0
+pkgrel=16
+pkgdesc="Random number generation"
+url="https://github.com/mokus0/random-fu;
+license=("custom:PublicDomain")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-erf' 'haskell-math-functions' 
'haskell-monad-loops' 'haskell-random'
+ 'haskell-random-shuffle' 'haskell-rvar' 'haskell-syb' 
'haskell-vector')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('a19d158d0f2b6df51d32c9e6df7cf6bbd94b7a1af81acfb4fe505f410e5ae4c7')
+
+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 
--ghc-option=-fllvm \
+--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"
+}



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:42:46
  Author: felixonmars
Revision: 1210718

upgpkg: haskell-random-fu 0.3.0.0-16: rebuild with rvar 0.3.0.1

Modified:
  haskell-random-fu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-27 01:42:10 UTC (rev 1210717)
+++ PKGBUILD2022-05-27 01:42:46 UTC (rev 1210718)
@@ -3,7 +3,7 @@
 _hkgname=random-fu
 pkgname=haskell-random-fu
 pkgver=0.3.0.0
-pkgrel=15
+pkgrel=16
 pkgdesc="Random number generation"
 url="https://github.com/mokus0/random-fu;
 license=("custom:PublicDomain")



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:42:10
  Author: felixonmars
Revision: 1210717

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-rvar/repos/community-staging-x86_64/PKGBUILD (from rev 1210716, 
haskell-rvar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-27 01:42:10 UTC (rev 1210717)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+
+_hkgname=rvar
+pkgname=haskell-rvar
+pkgver=0.3.0.1
+pkgrel=1
+pkgdesc="Random Variables"
+url="https://github.com/haskell-numerics/random-fu;
+license=("custom:PublicDomain")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-monadprompt' 'haskell-random')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('2529c11a7f22683a398b34a63d0d04beb75833d763777074513454a769b745f1')
+
+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 
--ghc-option=-fllvm \
+--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"
+}



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:41:57
  Author: felixonmars
Revision: 1210716

upgpkg: haskell-rvar 0.3.0.1-1: rebuild with rvar 0.3.0.1

Modified:
  haskell-rvar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-27 01:40:02 UTC (rev 1210715)
+++ PKGBUILD2022-05-27 01:41:57 UTC (rev 1210716)
@@ -2,16 +2,16 @@
 
 _hkgname=rvar
 pkgname=haskell-rvar
-pkgver=0.3.0.0
-pkgrel=15
+pkgver=0.3.0.1
+pkgrel=1
 pkgdesc="Random Variables"
-url="https://github.com/mokus0/random-fu;
+url="https://github.com/haskell-numerics/random-fu;
 license=("custom:PublicDomain")
 arch=('x86_64')
 depends=('ghc-libs' 'haskell-monadprompt' 'haskell-random')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
-sha256sums=('562ebf8def09424549cf33765449a8d8becd39eb6d8f8bd094d32145a80543d2')
+sha256sums=('2529c11a7f22683a398b34a63d0d04beb75833d763777074513454a769b745f1')
 
 build() {
   cd $_hkgname-$pkgver



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:39:20
  Author: felixonmars
Revision: 1210709

upgpkg: git-annex 10.20220504-19: rebuild with yesod-test 1.6.13

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-27 01:39:11 UTC (rev 1210708)
+++ PKGBUILD2022-05-27 01:39:20 UTC (rev 1210709)
@@ -3,7 +3,7 @@
 
 pkgname=git-annex
 pkgver=10.20220504
-pkgrel=18
+pkgrel=19
 pkgdesc="Manage files with git, without checking their contents into git"
 url="https://git-annex.branchable.com/;
 license=("AGPL3")



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:39:34
  Author: felixonmars
Revision: 1210710

archrelease: copy trunk to community-staging-x86_64

Added:
  git-annex/repos/community-staging-x86_64/
  git-annex/repos/community-staging-x86_64/PKGBUILD
(from rev 1210709, git-annex/trunk/PKGBUILD)

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

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 1210709, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-27 01:39:34 UTC (rev 1210710)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=10.20220504
+pkgrel=19
+pkgdesc="Manage files with git, without checking their contents into git"
+url="https://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('x86_64')
+depends=('git' 'lsof' 'rsync' 'ghc-libs' 'haskell-aeson' 
'haskell-ansi-terminal' 'haskell-async'
+ 'haskell-aws' 'haskell-blaze-builder' 'haskell-bloomfilter' 
'haskell-byteable'
+ 'haskell-case-insensitive' 'haskell-clientsession' 
'haskell-concurrent-output'
+ 'haskell-connection' 'haskell-conduit' 'haskell-criterion' 
'haskell-crypto-api'
+ 'haskell-cryptonite' 'haskell-data-default' 'haskell-dav' 
'haskell-dbus'
+ 'haskell-disk-free-space' 'haskell-dlist' 'haskell-edit-distance' 
'haskell-fdo-notify'
+ 'haskell-feed' 'haskell-filepath-bytestring' 'haskell-git-lfs' 
'haskell-hinotify'
+ 'haskell-http-client' 'haskell-http-client-restricted' 
'haskell-http-client-tls'
+ 'haskell-http-conduit' 'haskell-http-types' 'haskell-ifelse' 
'haskell-magic'
+ 'haskell-memory' 'haskell-microlens' 'haskell-monad-control' 
'haskell-monad-logger'
+ 'haskell-mountpoints' 'haskell-network' 'haskell-network-info' 
'haskell-network-multicast'
+ 'haskell-network-uri' 'haskell-old-locale' 
'haskell-optparse-applicative'
+ 'haskell-path-pieces' 'haskell-persistent' 
'haskell-persistent-sqlite' 'haskell-quickcheck'
+ 'haskell-random' 'haskell-regex-tdfa' 'haskell-resourcet' 
'haskell-safesemaphore'
+ 'haskell-sandi' 'haskell-securemem' 'haskell-shakespeare' 
'haskell-socks' 'haskell-split'
+ 'haskell-stm-chans' 'haskell-tagsoup' 'haskell-tasty' 
'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck' 'haskell-tasty-rerun' 'haskell-torrent' 
'haskell-unix-compat'
+ 'haskell-unliftio-core' 'haskell-unordered-containers' 
'haskell-utf8-string' 'haskell-uuid'
+ 'haskell-vector' 'haskell-wai' 'haskell-wai-extra' 'haskell-warp' 
'haskell-warp-tls'
+ 'haskell-yesod' 'haskell-yesod-core' 'haskell-yesod-form' 
'haskell-yesod-static')
+makedepends=('chrpath' 'ghc' 'uusi')
+source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cd git-annex
+  # persistent-template was merged into persistent
+  uusi -d persistent-template git-annex.cabal
+  sed -i 's/MIN_VERSION_persistent_template/MIN_VERSION_persistent/' 
Database/ContentIdentifier.hs Database/Export.hs Database/Fsck.hs 
Database/Keys/SQL.hs
+}
+
+build() {
+  cd git-annex
+  sed -e 's|--ghc-options|-O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla --docdir=/usr/share/doc/'$pkgname' --ghc-options|' \
+  -i Makefile
+  make GHC="ghc -dynamic" BUILDER=./Setup BUILDEROPTIONS=$MAKEFLAGS
+}
+
+package() {
+  cd git-annex
+  make GHC="ghc -dynamic" BUILDER=./Setup DESTDIR="$pkgdir" install
+
+  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
+}



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:39:11
  Author: felixonmars
Revision: 1210708

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger-web/repos/community-staging-x86_64/
  hledger-web/repos/community-staging-x86_64/PKGBUILD
(from rev 1210707, hledger-web/trunk/PKGBUILD)

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 1210707, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-27 01:39:11 UTC (rev 1210708)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.25
+pkgrel=67
+pkgdesc="Web-based user interface for the hledger accounting system"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-aeson' 
'haskell-base64'
+ 'haskell-blaze-html' 'haskell-blaze-markup' 'haskell-case-insensitive'
+ 'haskell-clientsession' 'haskell-cmdargs' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-data-default' 'haskell-decimal' 'haskell-extra' 
'haskell-hjsmin'
+ 'haskell-hspec' 'haskell-http-conduit' 'haskell-http-client' 
'haskell-http-types'
+ 'haskell-megaparsec' 'haskell-network' 'haskell-shakespeare' 
'haskell-unix-compat'
+ 'haskell-unordered-containers' 'haskell-utf8-string' 'haskell-wai' 
'haskell-wai-cors'
+ 'haskell-wai-extra' 'haskell-wai-handler-launch' 'haskell-warp' 
'haskell-yesod'
+ 'haskell-yesod-core' 'haskell-yesod-form' 'haskell-yesod-static' 
'haskell-yesod-test')
+makedepends=('ghc' 'uusi')
+replaces=('hledger-api')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('4be48eb2ba57f3f2e183c27bf6689c9b28d4028e194fcd6c400545d7e2119703cc947a8deaaa0b3a9d07668fda09e78744305f5138d5204330399ce557d4ca4f')
+
+build() {
+cd $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 
--ghc-option=-fllvm \
+-f-dev -f-library-only -fthreaded
+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 --show-details=direct
+}
+
+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
+
+install -Dm644 hledger-web.1 -t "$pkgdir"/usr/share/man/man1/
+}



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:38:56
  Author: felixonmars
Revision: 1210707

upgpkg: hledger-web 1.25-67: rebuild with yesod-test 1.6.13

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-27 01:38:43 UTC (rev 1210706)
+++ PKGBUILD2022-05-27 01:38:56 UTC (rev 1210707)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-web
 pkgver=1.25
-pkgrel=66
+pkgrel=67
 pkgdesc="Web-based user interface for the hledger accounting system"
 url="http://hledger.org;
 license=("GPL")



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:38:43
  Author: felixonmars
Revision: 1210706

archrelease: copy trunk to community-staging-x86_64

Added:
  tamarin-prover/repos/community-staging-x86_64/
  tamarin-prover/repos/community-staging-x86_64/PKGBUILD
(from rev 1210705, tamarin-prover/trunk/PKGBUILD)

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

Copied: tamarin-prover/repos/community-staging-x86_64/PKGBUILD (from rev 
1210705, tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-27 01:38:43 UTC (rev 1210706)
@@ -0,0 +1,55 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=tamarin-prover
+pkgver=1.6.1
+pkgrel=154
+pkgdesc="The Tamarin prover for security protocol analysis"
+url="https://tamarin-prover.github.io;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'graphviz' 'maude' 'haskell-hunit' 
'haskell-binary-orphans' 'haskell-binary-instances'
+ 'haskell-blaze-builder' 'haskell-blaze-html' 'haskell-cmdargs' 
'haskell-conduit'
+ 'haskell-fclabels' 'haskell-file-embed' 'haskell-gitrev' 
'haskell-http-types'
+ 'haskell-lifted-base' 'haskell-resourcet' 'haskell-safe'
+ 'haskell-shakespeare' 'haskell-threads' 'haskell-wai' 'haskell-warp' 
'haskell-yesod-core'
+ 'haskell-yesod-static' 'haskell-tamarin-prover-utils' 
'haskell-tamarin-prover-term'
+ 'haskell-tamarin-prover-theory' 'haskell-tamarin-prover-sapic')
+optdepends=('ocaml: for sapic support')
+makedepends=('ghc' 'ocaml>=4.13.1')
+source=("https://github.com/tamarin-prover/tamarin-prover/archive/$pkgver/tamarin-prover-$pkgver.tar.gz;)
+sha512sums=('dc6b91b1669055913a0aefc9a969812bf252185480fbf67588e7458289b1e1b64bf0729e9bee043513ecd5a57cd0c9477512e80861c6956c08b5e29d90211f62')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i '/cp sapic/d' plugins/sapic/Makefile
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-executable-dynamic --prefix=/usr \
+--docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname \
+-fthreaded -ftest-coverage -f-build-tests --ghc-option='-pie'
+runhaskell Setup build $MAKEFLAGS
+
+cd plugins/sapic
+make -j1
+}
+
+check() {
+cd $pkgname-$pkgver
+LD_LIBRARY_PATH="$PWD"/dist/build dist/build/tamarin-prover/tamarin-prover 
test
+}
+
+package() {
+cd $pkgname-$pkgver
+runhaskell Setup copy --destdir="${pkgdir}"
+
+install -Dm644 etc/filetype.vim 
"$pkgdir"/usr/share/vim/vimfiles/ftdetect/tamarin.vim
+install -Dm644 etc/syntax/spthy.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/spthy.vim
+ln -s spthy.vim "$pkgdir"/usr/share/vim/vimfiles/syntax/sapic.vim
+
+cd plugins/sapic
+install -Dm755 sapic "$pkgdir"/usr/bin/sapic
+}



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:38:28
  Author: felixonmars
Revision: 1210705

upgpkg: tamarin-prover 1.6.1-154: rebuild with yesod-test 1.6.13

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-27 01:38:20 UTC (rev 1210704)
+++ PKGBUILD2022-05-27 01:38:28 UTC (rev 1210705)
@@ -3,7 +3,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.6.1
-pkgrel=153
+pkgrel=154
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="https://tamarin-prover.github.io;
 license=("GPL")



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:38:20
  Author: felixonmars
Revision: 1210704

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |   68 ++---
 1 file changed, 34 insertions(+), 34 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-27 01:38:06 UTC (rev 1210703)
+++ PKGBUILD2022-05-27 01:38:20 UTC (rev 1210704)
@@ -1,34 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgname=python-glanceclient
-pkgver=3.6.0
-pkgrel=1
-pkgdesc="OpenStack Image API Client Library"
-arch=('any')
-url="https://docs.openstack.org/developer/python-glanceclient;
-license=('Apache')
-depends=('python-pbr' 'python-prettytable' 'python-keystoneauth1' 
'python-requests' 'python-warlock'
- 'python-oslo-utils' 'python-oslo-i18n' 'python-wrapt' 
'python-pyopenssl')
-makedepends=('python-setuptools')
-checkdepends=('python-stestr' 'python-ddt' 'python-mock' 
'python-requests-mock' 'python-testscenarios')
-options=('!emptydirs')
-source=("https://github.com/openstack/python-glanceclient/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('99daef4638ae41d0be730a76b184d5bee06e1b95a6de2790a66c26e3dd1a40ac53dc94e42eb61597b039b9de371168cb9dba72a2a4a31282c89017a2ec9a560e')
-
-export PBR_VERSION=$pkgver
-
-build() {
-  cd python-glanceclient-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd python-glanceclient-$pkgver
-  stestr run
-}
-
-package() {
-  cd python-glanceclient-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-glanceclient/repos/community-any/PKGBUILD (from rev 1210703, 
python-glanceclient/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-27 01:38:20 UTC (rev 1210704)
@@ -0,0 +1,34 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgname=python-glanceclient
+pkgver=4.0.0
+pkgrel=1
+pkgdesc="OpenStack Image API Client Library"
+arch=('any')
+url="https://docs.openstack.org/developer/python-glanceclient;
+license=('Apache')
+depends=('python-pbr' 'python-prettytable' 'python-keystoneauth1' 
'python-requests' 'python-warlock'
+ 'python-oslo-utils' 'python-oslo-i18n' 'python-wrapt' 
'python-pyopenssl')
+makedepends=('python-setuptools')
+checkdepends=('python-stestr' 'python-ddt' 'python-mock' 
'python-requests-mock' 'python-testscenarios')
+options=('!emptydirs')
+source=("https://github.com/openstack/python-glanceclient/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('4ec6473a5a100219e9425e2f90105283a1267f4da8545fe58c6422336f7ce6cd159a65425d894c3c4e3dddc2e44f9ffebef0c7209a2721971430e38654f7743f')
+
+export PBR_VERSION=$pkgver
+
+build() {
+  cd python-glanceclient-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd python-glanceclient-$pkgver
+  stestr run
+}
+
+package() {
+  cd python-glanceclient-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:38:06
  Author: felixonmars
Revision: 1210703

upgpkg: python-glanceclient 4.0.0-1

Modified:
  python-glanceclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-27 01:37:57 UTC (rev 1210702)
+++ PKGBUILD2022-05-27 01:38:06 UTC (rev 1210703)
@@ -2,7 +2,7 @@
 # Contributor: Daniel Wallace 
 
 pkgname=python-glanceclient
-pkgver=3.6.0
+pkgver=4.0.0
 pkgrel=1
 pkgdesc="OpenStack Image API Client Library"
 arch=('any')
@@ -14,7 +14,7 @@
 checkdepends=('python-stestr' 'python-ddt' 'python-mock' 
'python-requests-mock' 'python-testscenarios')
 options=('!emptydirs')
 
source=("https://github.com/openstack/python-glanceclient/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('99daef4638ae41d0be730a76b184d5bee06e1b95a6de2790a66c26e3dd1a40ac53dc94e42eb61597b039b9de371168cb9dba72a2a4a31282c89017a2ec9a560e')
+sha512sums=('4ec6473a5a100219e9425e2f90105283a1267f4da8545fe58c6422336f7ce6cd159a65425d894c3c4e3dddc2e44f9ffebef0c7209a2721971430e38654f7743f')
 
 export PBR_VERSION=$pkgver
 



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:37:57
  Author: felixonmars
Revision: 1210702

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-27 01:37:43 UTC (rev 1210701)
+++ PKGBUILD2022-05-27 01:37:57 UTC (rev 1210702)
@@ -1,37 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgname=python-swiftclient
-pkgver=3.13.1
-pkgrel=1
-pkgdesc="An SDK for building applications to work with OpenStack"
-arch=('any')
-url="https://docs.openstack.org/python-swiftclient;
-license=('Apache')
-depends=('python-six' 'python-requests')
-optdepends=('python-keystoneclient: for Auth versions 2.0 and 3 support')
-makedepends=('python-setuptools' 'python-pbr')
-checkdepends=('python-stestr' 'python-mock' 'python-keystoneauth1' 
'python-keystoneclient')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/openstack/python-swiftclient/archive/$pkgver.tar.gz;)
-sha512sums=('b12515e25de232810714604e3aed91bcd08d147eb27b5e5c1e983f7bf6ba66def75583019ffd5796f9aca91b8f19dbb96f808a1adee61d665a17e6605d37fc80')
-
-prepare() {
-  export PBR_VERSION=$pkgver
-}
-
-build() {
-  cd "$srcdir"/python-swiftclient-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/python-swiftclient-$pkgver
-  stestr run
-}
-
-package() {
-  cd "$srcdir"/python-swiftclient-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-swiftclient/repos/community-any/PKGBUILD (from rev 1210701, 
python-swiftclient/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-27 01:37:57 UTC (rev 1210702)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgname=python-swiftclient
+pkgver=4.0.0
+pkgrel=1
+pkgdesc="An SDK for building applications to work with OpenStack"
+arch=('any')
+url="https://docs.openstack.org/python-swiftclient;
+license=('Apache')
+depends=('python-six' 'python-requests')
+optdepends=('python-keystoneclient: for Auth versions 2.0 and 3 support')
+makedepends=('python-setuptools' 'python-pbr')
+checkdepends=('python-stestr' 'python-mock' 'python-keystoneauth1' 
'python-keystoneclient')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/openstack/python-swiftclient/archive/$pkgver.tar.gz;)
+sha512sums=('251db6f7ee0e9843cffd83f4a76b25cbeebf5450abc31415cd90d86bf344469dfd6b75d8d7fe09e095cb7e2fc8c5eedffbcb09fbbb49413056a243bb0c08abc1')
+
+prepare() {
+  export PBR_VERSION=$pkgver
+}
+
+build() {
+  cd "$srcdir"/python-swiftclient-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-swiftclient-$pkgver
+  stestr run
+}
+
+package() {
+  cd "$srcdir"/python-swiftclient-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:37:43
  Author: felixonmars
Revision: 1210701

upgpkg: python-swiftclient 4.0.0-1

Modified:
  python-swiftclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-27 01:36:04 UTC (rev 1210700)
+++ PKGBUILD2022-05-27 01:37:43 UTC (rev 1210701)
@@ -2,7 +2,7 @@
 # Contributor: Daniel Wallace 
 
 pkgname=python-swiftclient
-pkgver=3.13.1
+pkgver=4.0.0
 pkgrel=1
 pkgdesc="An SDK for building applications to work with OpenStack"
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('python-setuptools' 'python-pbr')
 checkdepends=('python-stestr' 'python-mock' 'python-keystoneauth1' 
'python-keystoneclient')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/openstack/python-swiftclient/archive/$pkgver.tar.gz;)
-sha512sums=('b12515e25de232810714604e3aed91bcd08d147eb27b5e5c1e983f7bf6ba66def75583019ffd5796f9aca91b8f19dbb96f808a1adee61d665a17e6605d37fc80')
+sha512sums=('251db6f7ee0e9843cffd83f4a76b25cbeebf5450abc31415cd90d86bf344469dfd6b75d8d7fe09e095cb7e2fc8c5eedffbcb09fbbb49413056a243bb0c08abc1')
 
 prepare() {
   export PBR_VERSION=$pkgver



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:36:04
  Author: felixonmars
Revision: 1210700

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-static/repos/community-staging-x86_64/
  haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD
(from rev 1210699, haskell-yesod-static/trunk/PKGBUILD)

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

Copied: haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD (from rev 
1210699, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-27 01:36:04 UTC (rev 1210700)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.6.1.0
+pkgrel=446
+pkgdesc="Static file serving subsite for Yesod Web Framework."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-attoparsec' 
'haskell-base64-bytestring'
+ 'haskell-blaze-builder' 'haskell-conduit' 'haskell-cryptonite'
+ 'haskell-cryptonite-conduit' 'haskell-css-text' 'haskell-data-default'
+ 'haskell-file-embed' 'haskell-hashable' 'haskell-hjsmin' 
'haskell-http-types'
+ 'haskell-memory' 'haskell-mime-types' 'haskell-rio' 
'haskell-unix-compat'
+ 'haskell-unordered-containers' 'haskell-wai' 'haskell-wai-app-static' 
'haskell-yesod-core')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit' 'haskell-wai-extra' 
'haskell-yesod-test')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('66037ec28eac83e374161c1b306a4d20805ecb35ccfc4878e7894d961daaf30d9936c6e209641ff323d7e3dd5626f5a24a12915d4205417c496e272a2e969f6e')
+
+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 
--ghc-option=-fllvm
+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 --show-details=direct
+}
+
+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-yesod-static/trunk (PKGBUILD)

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:35:51
  Author: felixonmars
Revision: 1210699

upgpkg: haskell-yesod-static 1.6.1.0-446: rebuild with yesod-test 1.6.13

Modified:
  haskell-yesod-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-27 01:35:38 UTC (rev 1210698)
+++ PKGBUILD2022-05-27 01:35:51 UTC (rev 1210699)
@@ -4,7 +4,7 @@
 _hkgname=yesod-static
 pkgname=haskell-yesod-static
 pkgver=1.6.1.0
-pkgrel=445
+pkgrel=446
 pkgdesc="Static file serving subsite for Yesod Web Framework."
 url="http://www.yesodweb.com/;
 license=("MIT")



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:35:38
  Author: felixonmars
Revision: 1210698

archrelease: copy trunk to community-any

Added:
  typescript/repos/community-any/PKGBUILD
(from rev 1210697, typescript/trunk/PKGBUILD)
Deleted:
  typescript/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-27 01:35:24 UTC (rev 1210697)
+++ PKGBUILD2022-05-27 01:35:38 UTC (rev 1210698)
@@ -1,29 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Bruno Galeotti 
-
-pkgname=typescript
-pkgver=4.6.4
-pkgrel=1
-pkgdesc="TypeScript is a language for application scale JavaScript development"
-arch=('any')
-url="http://typescriptlang.org/;
-license=('Apache')
-depends=('nodejs')
-makedepends=('npm')
-source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-sha512sums=('f626bf8d61c811ba38f477e3acb19f29b652b96a3d8933305cef826b7a51b12a5bb0c6dceff214f0d29d09955144169f54f1a7a097852fbe9938003ce08f5f12')
-
-package() {
-  npm install -g --prefix "$pkgdir"/usr "$srcdir"/$pkgname-$pkgver.tgz
-
-  # Non-deterministic race in npm gives 777 permissions to random directories.
-  # See https://github.com/npm/npm/issues/9359 for details.
-  chmod -R u=rwX,go=rX "$pkgdir"
-
-  # npm installs package.json owned by build user
-  # https://bugs.archlinux.org/task/63396
-  chown -R root:root "$pkgdir"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: typescript/repos/community-any/PKGBUILD (from rev 1210697, 
typescript/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-27 01:35:38 UTC (rev 1210698)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan 
+# Contributor: Bruno Galeotti 
+
+pkgname=typescript
+pkgver=4.7.2
+pkgrel=1
+pkgdesc="TypeScript is a language for application scale JavaScript development"
+arch=('any')
+url="http://typescriptlang.org/;
+license=('Apache')
+depends=('nodejs')
+makedepends=('npm')
+source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('31a99bd625f614352971347396d3f181630acb77e18344cddfbf3295b92d3c63caffdf4a6c3b4c4385b587082c6cf02c1b76b4c4a6b5be6c3854a6506e4bf3e4')
+
+package() {
+  npm install -g --prefix "$pkgdir"/usr "$srcdir"/$pkgname-$pkgver.tgz
+
+  # Non-deterministic race in npm gives 777 permissions to random directories.
+  # See https://github.com/npm/npm/issues/9359 for details.
+  chmod -R u=rwX,go=rX "$pkgdir"
+
+  # npm installs package.json owned by build user
+  # https://bugs.archlinux.org/task/63396
+  chown -R root:root "$pkgdir"
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:35:24
  Author: felixonmars
Revision: 1210697

upgpkg: typescript 4.7.2-1

Modified:
  typescript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-27 01:34:23 UTC (rev 1210696)
+++ PKGBUILD2022-05-27 01:35:24 UTC (rev 1210697)
@@ -2,7 +2,7 @@
 # Contributor: Bruno Galeotti 
 
 pkgname=typescript
-pkgver=4.6.4
+pkgver=4.7.2
 pkgrel=1
 pkgdesc="TypeScript is a language for application scale JavaScript development"
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('npm')
 source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-sha512sums=('f626bf8d61c811ba38f477e3acb19f29b652b96a3d8933305cef826b7a51b12a5bb0c6dceff214f0d29d09955144169f54f1a7a097852fbe9938003ce08f5f12')
+sha512sums=('31a99bd625f614352971347396d3f181630acb77e18344cddfbf3295b92d3c63caffdf4a6c3b4c4385b587082c6cf02c1b76b4c4a6b5be6c3854a6506e4bf3e4')
 
 package() {
   npm install -g --prefix "$pkgdir"/usr "$srcdir"/$pkgname-$pkgver.tgz



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:34:23
  Author: felixonmars
Revision: 1210696

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-test/repos/community-staging-x86_64/
  haskell-yesod-test/repos/community-staging-x86_64/PKGBUILD
(from rev 1210695, haskell-yesod-test/trunk/PKGBUILD)

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

Copied: haskell-yesod-test/repos/community-staging-x86_64/PKGBUILD (from rev 
1210695, haskell-yesod-test/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-27 01:34:23 UTC (rev 1210696)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+
+_hkgname=yesod-test
+pkgname=haskell-yesod-test
+pkgver=1.6.13
+pkgrel=1
+pkgdesc="Integration testing for WAI/Yesod Applications"
+url="https://www.yesodweb.com;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hunit' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-blaze-builder'
+ 'haskell-blaze-html' 'haskell-case-insensitive' 'haskell-conduit'
+ 'haskell-cookie' 'haskell-hspec-core' 'haskell-html-conduit' 
'haskell-http-types'
+ 'haskell-memory' 'haskell-network' 'haskell-pretty-show' 'haskell-wai'
+ 'haskell-wai-extra' 'haskell-xml-conduit' 'haskell-xml-types' 
'haskell-yesod-core')
+makedepends=('ghc' 'haskell-yesod-form' 'haskell-hspec' 'haskell-unliftio' 
'haskell-unliftio-core')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('6407fe4a7206d0a2ca2b82c66cfb81d57f09e7e4cf2db21e2dd158f9ee6aca31300d292e7c568a9250f0034875d878705540c0b68a4d8da90b167ab9561edfd5')
+
+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 
--ghc-option=-fllvm
+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 --show-details=direct
+}
+
+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-yesod-test/trunk (PKGBUILD)

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:34:09
  Author: felixonmars
Revision: 1210695

upgpkg: haskell-yesod-test 1.6.13-1: rebuild with yesod-test 1.6.13

Modified:
  haskell-yesod-test/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-27 01:32:43 UTC (rev 1210694)
+++ PKGBUILD2022-05-27 01:34:09 UTC (rev 1210695)
@@ -2,8 +2,8 @@
 
 _hkgname=yesod-test
 pkgname=haskell-yesod-test
-pkgver=1.6.12
-pkgrel=317
+pkgver=1.6.13
+pkgrel=1
 pkgdesc="Integration testing for WAI/Yesod Applications"
 url="https://www.yesodweb.com;
 license=('MIT')
@@ -15,7 +15,7 @@
  'haskell-wai-extra' 'haskell-xml-conduit' 'haskell-xml-types' 
'haskell-yesod-core')
 makedepends=('ghc' 'haskell-yesod-form' 'haskell-hspec' 'haskell-unliftio' 
'haskell-unliftio-core')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('777d112d8c5ae77d667da2b8d1ed91a1cf751850d5b3678e787e7123aca8666d0a4b6d6161b7109491012d56c160603d62563b881a136ccc76a1edd006c423d6')
+sha512sums=('6407fe4a7206d0a2ca2b82c66cfb81d57f09e7e4cf2db21e2dd158f9ee6aca31300d292e7c568a9250f0034875d878705540c0b68a4d8da90b167ab9561edfd5')
 
 build() {
 cd $_hkgname-$pkgver



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:32:43
  Author: felixonmars
Revision: 1210694

archrelease: copy trunk to community-any

Added:
  v2ray-domain-list-community/repos/community-any/PKGBUILD
(from rev 1210693, 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
===
--- PKGBUILD2022-05-27 01:32:20 UTC (rev 1210693)
+++ PKGBUILD2022-05-27 01:32:43 UTC (rev 1210694)
@@ -1,23 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=v2ray-domain-list-community
-pkgver=2022052313
-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=("$pkgname-$pkgver.tar.gz::https://github.com/v2fly/domain-list-community/archive/$pkgver.tar.gz;)
-sha512sums=('73ae27e67769fc046c22f6d7ec60c6ce015d8b23f80abd4d2bed179420a8b23e30889090487fb0bd01f8c794e40ca45ac07e5bc25b8d1d60117f8ded685643ea')
-
-build() {
-  cd domain-list-community-$pkgver
-  ASSUME_NO_MOVING_GC_UNSAFE_RISK_IT_WITH=go1.18 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 
1210693, v2ray-domain-list-community/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-27 01:32:43 UTC (rev 1210694)
@@ -0,0 +1,23 @@
+# Maintainer: Felix Yan 
+
+pkgname=v2ray-domain-list-community
+pkgver=20220526110209
+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=("$pkgname-$pkgver.tar.gz::https://github.com/v2fly/domain-list-community/archive/$pkgver.tar.gz;)
+sha512sums=('3e14feacb03e271d5add83f83ef8472ceb37429a8884defdf9acc614e1f5e443ee16284a63d988588cd0b517418851571a87eed27ac878de189d4a1bf2649bc9')
+
+build() {
+  cd domain-list-community-$pkgver
+  ASSUME_NO_MOVING_GC_UNSAFE_RISK_IT_WITH=go1.18 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 v2ray-geoip/repos/community-any (PKGBUILD PKGBUILD)

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:32:09
  Author: felixonmars
Revision: 1210692

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-27 01:31:52 UTC (rev 1210691)
+++ PKGBUILD2022-05-27 01:32:09 UTC (rev 1210692)
@@ -1,15 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=v2ray-geoip
-pkgver=202205190058
-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=('b0487cc42647894c65946233313fa091958ad1b629d66347a188a751950a6948dbd48f65cb1d84f9df4573c0b9f3e3016d72570059fc80e031c672fd14b60d5b')
-
-package() {
-  install -Dm644 geoip-$pkgver.dat "$pkgdir"/usr/share/v2ray/geoip.dat
-}

Copied: v2ray-geoip/repos/community-any/PKGBUILD (from rev 1210691, 
v2ray-geoip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-27 01:32:09 UTC (rev 1210692)
@@ -0,0 +1,15 @@
+# Maintainer: Felix Yan 
+
+pkgname=v2ray-geoip
+pkgver=202205260055
+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=('0aafcba3c7fe2382ea34feba4843b2915322fdc8a8ccdeabd83870a84066b782ff02b4c23eea2b3522a05cf41fd6df2e0ed8901427db33595aa3180df6ab1acc')
+
+package() {
+  install -Dm644 geoip-$pkgver.dat "$pkgdir"/usr/share/v2ray/geoip.dat
+}



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:32:20
  Author: felixonmars
Revision: 1210693

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

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-27 01:32:09 UTC (rev 1210692)
+++ PKGBUILD2022-05-27 01:32:20 UTC (rev 1210693)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=v2ray-domain-list-community
-pkgver=2022052313
+pkgver=20220526110209
 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=("$pkgname-$pkgver.tar.gz::https://github.com/v2fly/domain-list-community/archive/$pkgver.tar.gz;)
-sha512sums=('73ae27e67769fc046c22f6d7ec60c6ce015d8b23f80abd4d2bed179420a8b23e30889090487fb0bd01f8c794e40ca45ac07e5bc25b8d1d60117f8ded685643ea')
+sha512sums=('3e14feacb03e271d5add83f83ef8472ceb37429a8884defdf9acc614e1f5e443ee16284a63d988588cd0b517418851571a87eed27ac878de189d4a1bf2649bc9')
 
 build() {
   cd domain-list-community-$pkgver



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Friday, May 27, 2022 @ 01:31:52
  Author: felixonmars
Revision: 1210691

upgpkg: v2ray-geoip 202205260055-1

Modified:
  v2ray-geoip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-27 00:14:38 UTC (rev 1210690)
+++ PKGBUILD2022-05-27 01:31:52 UTC (rev 1210691)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=v2ray-geoip
-pkgver=202205190058
+pkgver=202205260055
 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=('b0487cc42647894c65946233313fa091958ad1b629d66347a188a751950a6948dbd48f65cb1d84f9df4573c0b9f3e3016d72570059fc80e031c672fd14b60d5b')
+sha512sums=('0aafcba3c7fe2382ea34feba4843b2915322fdc8a8ccdeabd83870a84066b782ff02b4c23eea2b3522a05cf41fd6df2e0ed8901427db33595aa3180df6ab1acc')
 
 package() {
   install -Dm644 geoip-$pkgver.dat "$pkgdir"/usr/share/v2ray/geoip.dat



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

2022-05-26 Thread Daniel M. Capella via arch-commits
Date: Friday, May 27, 2022 @ 00:14:38
  Author: polyzen
Revision: 1210690

archrelease: copy trunk to community-any

Added:
  dark-reader/repos/community-any/PKGBUILD
(from rev 1210689, dark-reader/trunk/PKGBUILD)
Deleted:
  dark-reader/repos/community-any/PKGBUILD

--+
 PKGBUILD |  104 ++---
 1 file changed, 52 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-27 00:14:10 UTC (rev 1210689)
+++ PKGBUILD2022-05-27 00:14:38 UTC (rev 1210690)
@@ -1,52 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Cookie Engineer 
-
-pkgname=('dark-reader' 'firefox-dark-reader' 'thunderbird-dark-reader')
-pkgbase=dark-reader
-pkgver=4.9.50
-pkgrel=1
-pkgdesc='Inverts brightness of web pages and aims to reduce eyestrain while 
browsing the web'
-arch=('any')
-url=https://darkreader.org/
-license=('MIT')
-makedepends=('npm' 'strip-nondeterminism')
-source=("https://github.com/darkreader/darkreader/archive/v$pkgver/darkreader-$pkgver.tar.gz;)
-b2sums=('a224c0fea54a3437ad6bb8ea333f1abb90c239448835819a94bfdc4497cc16d9167fcbdf03a156eb9b3cc3eb800432501a68112bda65db490a28d13fe1107adf')
-
-prepare() {
-  cd darkreader-$pkgver
-  npm ci
-}
-
-build() {
-  cd darkreader-$pkgver
-  npm run build
-  strip-nondeterminism -t zip build/release/*.xpi
-}
-
-check() {
-  cd darkreader-$pkgver
-  npm test
-}
-
-package_dark-reader() {
-  pkgdesc+=' (unpacked webextension)'
-  cd darkreader-$pkgver/build/release/chrome
-  install -d "$pkgdir"/usr/lib/$pkgbase
-  cp -r -- * "$pkgdir"/usr/lib/$pkgbase
-}
-
-package_firefox-dark-reader() {
-  groups=('firefox-addons')
-  cd darkreader-$pkgver/build/release
-  install -Dm644 darkreader-firefox.xpi \
-"$pkgdir"/usr/lib/firefox/browser/extensions/ad...@darkreader.org.xpi
-}
-
-package_thunderbird-dark-reader() {
-  cd darkreader-$pkgver/build/release
-  install -Dm644 darkreader-thunderbird.xpi \
-"$pkgdir"/usr/lib/thunderbird/extensions/ad...@darkreader.org.xpi
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dark-reader/repos/community-any/PKGBUILD (from rev 1210689, 
dark-reader/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-27 00:14:38 UTC (rev 1210690)
@@ -0,0 +1,52 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Cookie Engineer 
+
+pkgname=('dark-reader' 'firefox-dark-reader' 'thunderbird-dark-reader')
+pkgbase=dark-reader
+pkgver=4.9.51
+pkgrel=1
+pkgdesc='Inverts brightness of web pages and aims to reduce eyestrain while 
browsing the web'
+arch=('any')
+url=https://darkreader.org/
+license=('MIT')
+makedepends=('npm' 'strip-nondeterminism')
+source=("https://github.com/darkreader/darkreader/archive/v$pkgver/darkreader-$pkgver.tar.gz;)
+b2sums=('7cae9e0766fcad442f5076d8f86851ebde7c527753412b30312cfa988fad61a57a5732392aa65fd32e52519af092e7ee9994dd365a9c7b8c46b6fb888719e639')
+
+prepare() {
+  cd darkreader-$pkgver
+  npm ci
+}
+
+build() {
+  cd darkreader-$pkgver
+  npm run build
+  strip-nondeterminism -t zip build/release/*.xpi
+}
+
+check() {
+  cd darkreader-$pkgver
+  npm test
+}
+
+package_dark-reader() {
+  pkgdesc+=' (unpacked webextension)'
+  cd darkreader-$pkgver/build/release/chrome
+  install -d "$pkgdir"/usr/lib/$pkgbase
+  cp -r -- * "$pkgdir"/usr/lib/$pkgbase
+}
+
+package_firefox-dark-reader() {
+  groups=('firefox-addons')
+  cd darkreader-$pkgver/build/release
+  install -Dm644 darkreader-firefox.xpi \
+"$pkgdir"/usr/lib/firefox/browser/extensions/ad...@darkreader.org.xpi
+}
+
+package_thunderbird-dark-reader() {
+  cd darkreader-$pkgver/build/release
+  install -Dm644 darkreader-thunderbird.xpi \
+"$pkgdir"/usr/lib/thunderbird/extensions/ad...@darkreader.org.xpi
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-05-26 Thread Daniel M. Capella via arch-commits
Date: Friday, May 27, 2022 @ 00:14:10
  Author: polyzen
Revision: 1210689

upgpkg: dark-reader 4.9.51-1

Modified:
  dark-reader/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-26 23:37:44 UTC (rev 1210688)
+++ PKGBUILD2022-05-27 00:14:10 UTC (rev 1210689)
@@ -3,7 +3,7 @@
 
 pkgname=('dark-reader' 'firefox-dark-reader' 'thunderbird-dark-reader')
 pkgbase=dark-reader
-pkgver=4.9.50
+pkgver=4.9.51
 pkgrel=1
 pkgdesc='Inverts brightness of web pages and aims to reduce eyestrain while 
browsing the web'
 arch=('any')
@@ -11,7 +11,7 @@
 license=('MIT')
 makedepends=('npm' 'strip-nondeterminism')
 
source=("https://github.com/darkreader/darkreader/archive/v$pkgver/darkreader-$pkgver.tar.gz;)
-b2sums=('a224c0fea54a3437ad6bb8ea333f1abb90c239448835819a94bfdc4497cc16d9167fcbdf03a156eb9b3cc3eb800432501a68112bda65db490a28d13fe1107adf')
+b2sums=('7cae9e0766fcad442f5076d8f86851ebde7c527753412b30312cfa988fad61a57a5732392aa65fd32e52519af092e7ee9994dd365a9c7b8c46b6fb888719e639')
 
 prepare() {
   cd darkreader-$pkgver



[arch-commits] Commit in yubikey-touch-detector/repos/community-x86_64 (2 files)

2022-05-26 Thread Maxim Baz via arch-commits
Date: Thursday, May 26, 2022 @ 23:37:44
  Author: maximbaz
Revision: 1210688

archrelease: copy trunk to community-x86_64

Added:
  yubikey-touch-detector/repos/community-x86_64/PKGBUILD
(from rev 1210687, yubikey-touch-detector/trunk/PKGBUILD)
Deleted:
  yubikey-touch-detector/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-26 23:37:41 UTC (rev 1210687)
+++ PKGBUILD2022-05-26 23:37:44 UTC (rev 1210688)
@@ -1,30 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-
-pkgname=yubikey-touch-detector
-pkgver=1.9.3
-pkgrel=2
-pkgdesc='A tool that can detect when your YubiKey is waiting for a touch'
-arch=('x86_64')
-url='https://github.com/maximbaz/yubikey-touch-detector'
-license=('MIT')
-depends=('glibc')
-makedepends=('go' 'git')
-optdepends=('gnupg: for GPG'
-'openssh: for SSH')
-source=("${url}/releases/download/${pkgver}/${pkgname}-${pkgver}-src.tar.gz"
-
"${url}/releases/download/${pkgver}/${pkgname}-${pkgver}-src.tar.gz.asc")
-sha256sums=('53356f224223d00a90bf43f9ccfa8de71f9756a21a7ff13941d6c47e5db107a7'
-'SKIP')
-validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
-
-build() {
-cd "${pkgname}-${pkgver}"
-make build
-}
-
-package() {
-cd "${pkgname}-${pkgver}"
-make DESTDIR="${pkgdir}" install
-}
-
-# vim:set ts=4 sw=4 et:

Copied: yubikey-touch-detector/repos/community-x86_64/PKGBUILD (from rev 
1210687, yubikey-touch-detector/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-26 23:37:44 UTC (rev 1210688)
@@ -0,0 +1,30 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+
+pkgname=yubikey-touch-detector
+pkgver=1.10.0
+pkgrel=1
+pkgdesc='A tool that can detect when your YubiKey is waiting for a touch'
+arch=('x86_64')
+url='https://github.com/maximbaz/yubikey-touch-detector'
+license=('MIT')
+depends=('glibc')
+makedepends=('go' 'git')
+optdepends=('gnupg: for GPG'
+'openssh: for SSH')
+source=("${url}/releases/download/${pkgver}/${pkgname}-${pkgver}-src.tar.gz"
+
"${url}/releases/download/${pkgver}/${pkgname}-${pkgver}-src.tar.gz.asc")
+sha256sums=('4bcfbaa7491882c295d3062db4f1a11b878be2c4af10d69337fd199b32a5f090'
+'SKIP')
+validpgpkeys=('56C3E775E72B0C8B1C0C1BD0B5DB77409B11B601')
+
+build() {
+cd "${pkgname}-${pkgver}"
+make build
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=4 sw=4 et:



[arch-commits] Commit in yubikey-touch-detector/trunk (PKGBUILD)

2022-05-26 Thread Maxim Baz via arch-commits
Date: Thursday, May 26, 2022 @ 23:37:41
  Author: maximbaz
Revision: 1210687

upgpkg: yubikey-touch-detector 1.10.0-1

Modified:
  yubikey-touch-detector/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-26 21:47:07 UTC (rev 1210686)
+++ PKGBUILD2022-05-26 23:37:41 UTC (rev 1210687)
@@ -1,8 +1,8 @@
 # Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
 
 pkgname=yubikey-touch-detector
-pkgver=1.9.3
-pkgrel=2
+pkgver=1.10.0
+pkgrel=1
 pkgdesc='A tool that can detect when your YubiKey is waiting for a touch'
 arch=('x86_64')
 url='https://github.com/maximbaz/yubikey-touch-detector'
@@ -13,9 +13,9 @@
 'openssh: for SSH')
 source=("${url}/releases/download/${pkgver}/${pkgname}-${pkgver}-src.tar.gz"
 
"${url}/releases/download/${pkgver}/${pkgname}-${pkgver}-src.tar.gz.asc")
-sha256sums=('53356f224223d00a90bf43f9ccfa8de71f9756a21a7ff13941d6c47e5db107a7'
+sha256sums=('4bcfbaa7491882c295d3062db4f1a11b878be2c4af10d69337fd199b32a5f090'
 'SKIP')
-validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
+validpgpkeys=('56C3E775E72B0C8B1C0C1BD0B5DB77409B11B601')
 
 build() {
 cd "${pkgname}-${pkgver}"



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

2022-05-26 Thread Christian Hesse via arch-commits
Date: Thursday, May 26, 2022 @ 21:47:07
  Author: eworm
Revision: 1210686

archrelease: copy trunk to community-testing-x86_64

Added:
  hidapi/repos/community-testing-x86_64/
  hidapi/repos/community-testing-x86_64/PKGBUILD
(from rev 1210685, hidapi/trunk/PKGBUILD)

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

Copied: hidapi/repos/community-testing-x86_64/PKGBUILD (from rev 1210685, 
hidapi/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2022-05-26 21:47:07 UTC (rev 1210686)
@@ -0,0 +1,41 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Niels Martignène 
+# Contributor: Nicolas Avrutin 
+# Contributor: Emmanuel Gil Peyrot 
+
+pkgname=hidapi
+pkgver=0.12.0
+pkgrel=1
+pkgdesc='Simple library for communicating with USB and Bluetooth HID devices'
+arch=(x86_64)
+url='https://github.com/libusb/hidapi'
+license=('GPL3' 'BSD' 'custom')
+makedepends=('systemd' 'systemd-libs' 'libusb')
+optdepends=('libusb: for the libusb backend -- hidapi-libusb.so'
+'libudev.so: for the hidraw backend -- hidapi-hidraw.so')
+provides=('libhidapi-hidraw.so' 'libhidapi-libusb.so')
+source=("https://github.com/libusb/${pkgname}/archive/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('866268927698db6fa553e000ead3c0c4b8df67ea768d36acac9c71f06f0bd8283778e90eee03f81aaa930f38dbb5719391906c7d2742b74479ffa436104f5fa4')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
+
+  ./bootstrap
+}
+build() {
+  cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
+
+  ./configure \
+--prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}/" install
+
+  mkdir -p "${pkgdir}/usr/share/licenses/${pkgname}"
+  rm -f "${pkgdir}/usr/share/doc/hidapi/"LICENSE*
+  install -m0644 LICENSE.txt LICENSE-bsd.txt LICENSE-orig.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/"
+}



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

2022-05-26 Thread Christian Hesse via arch-commits
Date: Thursday, May 26, 2022 @ 21:46:56
  Author: eworm
Revision: 1210685

upgpkg: hidapi 0.12.0-1: new upstream release

Modified:
  hidapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-26 21:17:43 UTC (rev 1210684)
+++ PKGBUILD2022-05-26 21:46:56 UTC (rev 1210685)
@@ -4,7 +4,7 @@
 # Contributor: Emmanuel Gil Peyrot 
 
 pkgname=hidapi
-pkgver=0.11.2
+pkgver=0.12.0
 pkgrel=1
 pkgdesc='Simple library for communicating with USB and Bluetooth HID devices'
 arch=(x86_64)
@@ -15,7 +15,7 @@
 'libudev.so: for the hidraw backend -- hidapi-hidraw.so')
 provides=('libhidapi-hidraw.so' 'libhidapi-libusb.so')
 
source=("https://github.com/libusb/${pkgname}/archive/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('c4d04bf570aa98dd88d7ce08ef1abb0675d500c9aa2c22f0437fa30b700a94446779f77e1170267926d5f6f0d9cdb2bb81ad1fe20d158c18587fddbca59e9517')
+sha512sums=('866268927698db6fa553e000ead3c0c4b8df67ea768d36acac9c71f06f0bd8283778e90eee03f81aaa930f38dbb5719391906c7d2742b74479ffa436104f5fa4')
 
 prepare() {
   cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"



[arch-commits] Commit in ntfs-3g/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2022-05-26 Thread Antonio Rojas via arch-commits
Date: Thursday, May 26, 2022 @ 21:19:39
  Author: arojas
Revision: 446558

archrelease: copy trunk to testing-x86_64

Added:
  ntfs-3g/repos/testing-x86_64/
  ntfs-3g/repos/testing-x86_64/PKGBUILD
(from rev 446557, ntfs-3g/trunk/PKGBUILD)

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

Copied: ntfs-3g/repos/testing-x86_64/PKGBUILD (from rev 446557, 
ntfs-3g/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-05-26 21:19:39 UTC (rev 446558)
@@ -0,0 +1,49 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Tom Gundersen 
+# Contributor: Ronald van Haren 
+# Contributor: Thomas Bächler 
+
+pkgname=ntfs-3g
+_pkgname=ntfs-3g_ntfsprogs
+pkgver=2022.5.17
+pkgrel=1
+pkgdesc='NTFS filesystem driver and utilities'
+url='https://www.tuxera.com/community/open-source-ntfs-3g/'
+arch=('x86_64')
+license=('GPL2')
+depends=('util-linux' 'fuse2')
+source=("https://tuxera.com/opensource/${_pkgname}-${pkgver}.tgz;)
+sha256sums=('0489fbb6972581e1b417ab578d543f6ae522e7fa648c3c9b49c789510fd5eb93')
+
+conflicts=('ntfsprogs')
+provides=('ntfsprogs')
+replaces=('ntfsprogs')
+
+prepare() {
+  cd ${_pkgname}-${pkgver}
+  sed 's|$(DESTDIR)/sbin|$(DESTDIR)/usr/bin|' -i {ntfsprogs,src}/Makefile.in
+}
+
+build() {
+  cd ${_pkgname}-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sbin=/usr/bin \
+--mandir=/usr/share/man \
+--disable-ldconfig \
+--disable-static \
+--with-fuse=external \
+--enable-xattr-mappings \
+--enable-posix-acls \
+--enable-extras \
+--enable-crypto \
+
+  make
+}
+
+package_ntfs-3g() {
+  cd ${_pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" rootbindir=/usr/bin rootsbindir=/usr/bin 
rootlibdir=/usr/lib install
+  rm "${pkgdir}"/usr/share/man/man8/ntfsfallocate.8 # uninstalled binary
+  ln -s /usr/bin/ntfs-3g "${pkgdir}/usr/bin/mount.ntfs"
+}



[arch-commits] Commit in ntfs-3g/trunk (PKGBUILD)

2022-05-26 Thread Antonio Rojas via arch-commits
Date: Thursday, May 26, 2022 @ 21:19:26
  Author: arojas
Revision: 446557

Update to 2022.5.17

Modified:
  ntfs-3g/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-26 17:26:06 UTC (rev 446556)
+++ PKGBUILD2022-05-26 21:19:26 UTC (rev 446557)
@@ -5,7 +5,7 @@
 
 pkgname=ntfs-3g
 _pkgname=ntfs-3g_ntfsprogs
-pkgver=2021.8.22
+pkgver=2022.5.17
 pkgrel=1
 pkgdesc='NTFS filesystem driver and utilities'
 url='https://www.tuxera.com/community/open-source-ntfs-3g/'
@@ -13,7 +13,7 @@
 license=('GPL2')
 depends=('util-linux' 'fuse2')
 source=("https://tuxera.com/opensource/${_pkgname}-${pkgver}.tgz;)
-sha256sums=('55b883aa05d94b2ec746ef3966cb41e66bed6db99f22ddd41d1b8b94bb202efb')
+sha256sums=('0489fbb6972581e1b417ab578d543f6ae522e7fa648c3c9b49c789510fd5eb93')
 
 conflicts=('ntfsprogs')
 provides=('ntfsprogs')



[arch-commits] Commit in r/repos/community-x86_64 (8 files)

2022-05-26 Thread Antonio Rojas via arch-commits
Date: Thursday, May 26, 2022 @ 21:17:43
  Author: arojas
Revision: 1210684

archrelease: copy trunk to community-x86_64

Added:
  r/repos/community-x86_64/PKGBUILD
(from rev 1210683, r/trunk/PKGBUILD)
  r/repos/community-x86_64/R.conf
(from rev 1210683, r/trunk/R.conf)
  r/repos/community-x86_64/r.desktop
(from rev 1210683, r/trunk/r.desktop)
  r/repos/community-x86_64/r.png
(from rev 1210683, r/trunk/r.png)
Deleted:
  r/repos/community-x86_64/PKGBUILD
  r/repos/community-x86_64/R.conf
  r/repos/community-x86_64/r.desktop
  r/repos/community-x86_64/r.png

---+
 PKGBUILD  |  186 +++-
 R.conf|4 -
 r.desktop |   22 +++
 3 files changed, 110 insertions(+), 102 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-26 21:17:28 UTC (rev 1210683)
+++ PKGBUILD2022-05-26 21:17:43 UTC (rev 1210684)
@@ -1,89 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Ronald van Haren 
-# Contributor: Damir Perisa 
-# Contributor: K. Piche 
-
-pkgname=r
-pkgver=4.2.0
-pkgrel=3
-pkgdesc='Language and environment for statistical computing and graphics'
-arch=(x86_64)
-license=(GPL)
-url='https://www.r-project.org/'
-depends=(lapack libtiff pcre2 perl libxmu pango zip unzip curl icu which)
-makedepends=(jdk-openjdk gcc-fortran tk texlive-core)
-optdepends=('tk: tcl/tk interface'
-'texlive-bin: latex sty files'
-'gcc-fortran: needed to compile some CRAN packages'
-'openblas: faster linear algebra')
-backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
-options=(!emptydirs)
-source=(https://cran.r-project.org/src/base/R-${pkgver%%.*}/R-$pkgver.tar.gz
-   r.desktop
-   r.png
-   R.conf)
-sha256sums=('38eab7719b7ad095388f06aa090c5a2b202791945de60d3e2bb0eab1f5097488'
-'25b01ea93fa704884b65ba002d44d4e99725bd826997e8c73b6467df9f23c798'
-'1580d06a737951f4f3c903cbd514247d9071fc6868eb9c2de94bb999cc195cb1'
-'b7833166041b06f716b6a79095d27d4abd83549816dc53193213827139eae6ef')
-
-prepare() {
-  cd R-$pkgver
-  # set texmf dir correctly in makefile
-  sed -i 's|$(rsharedir)/texmf|${datarootdir}/texmf|' share/Makefile.in
-}
-
-build() {
-  cd R-$pkgver
-# -ffat-lto-objects is needed for third-party packages shipping static 
libraries
-  CFLAGS+=" -ffat-lto-objects" \
-  CXXFLAGS+=" -ffat-lto-objects" \
-  ./configure  --prefix=/usr \
-   --libdir=/usr/lib \
-   --sysconfdir=/etc/R \
-   --datarootdir=/usr/share \
-   rsharedir=/usr/share/R/ \
-   rincludedir=/usr/include/R/ \
-   rdocdir=/usr/share/doc/R/ \
-   --with-x \
-   --enable-R-shlib \
-   --with-lapack \
-   --with-blas \
-   F77=gfortran \
-   LIBnn=lib
-  make
-  make pdf info
-
-  cd src/nmath/standalone
-  make shared
-}
-
-package() {
-  cd R-$pkgver
-  make DESTDIR="$pkgdir" install install-pdf install-info
-
-# install libRmath.so
-  cd src/nmath/standalone
-  make DESTDIR="$pkgdir" install
-
-# Fixup R wrapper scripts.
-  sed -i "s|$pkgdir ||" "${pkgdir}/usr/bin/R"
-  rm "$pkgdir"/usr/lib/R/bin/R
-  cd "$pkgdir"/usr/lib/R/bin
-  ln -s ../../../bin/R
-
-# install some freedesktop.org compatibility
-  install -Dm644 "$srcdir"/r.desktop -t "$pkgdir"/usr/share/applications
-  install -Dm644 "$srcdir"/r.png -t "$pkgdir"/usr/share/pixmaps
-
-# move the config directory to /etc and create symlinks
-  install -d "$pkgdir"/etc/R
-  cd "$pkgdir"/usr/lib/R/etc
-  for _i in *; do
-mv -f $_i "$pkgdir"/etc/R
-ln -s /etc/R/$_i $_i
-  done
-
-# Install ld.so.conf.d file to ensure other applications access the shared lib
-  install -Dm644 "$srcdir"/R.conf -t "$pkgdir"/etc/ld.so.conf.d
-}

Copied: r/repos/community-x86_64/PKGBUILD (from rev 1210683, r/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-26 21:17:43 UTC (rev 1210684)
@@ -0,0 +1,97 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Ronald van Haren 
+# Contributor: Damir Perisa 
+# Contributor: K. Piche 
+
+pkgname=r
+pkgver=4.2.0
+pkgrel=4
+pkgdesc='Language and environment for statistical computing and graphics'
+arch=(x86_64)
+license=(GPL)
+url='https://www.r-project.org/'
+depends=(lapack libtiff pcre2 perl libxmu pango zip unzip curl icu which)
+makedepends=(jdk-openjdk gcc-fortran tk texlive-core)
+optdepends=('tk: tcl/tk interface'
+'texlive-bin: latex sty files'
+'gcc-fortran: needed to compile some CRAN packages'
+'openblas: faster linear algebra')
+backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
+options=(!emptydirs)

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

2022-05-26 Thread Antonio Rojas via arch-commits
Date: Thursday, May 26, 2022 @ 21:17:28
  Author: arojas
Revision: 1210683

Add provides for bundled packages (FS#74850)

Modified:
  r/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-05-26 20:41:33 UTC (rev 1210682)
+++ PKGBUILD2022-05-26 21:17:28 UTC (rev 1210683)
@@ -5,7 +5,7 @@
 
 pkgname=r
 pkgver=4.2.0
-pkgrel=3
+pkgrel=4
 pkgdesc='Language and environment for statistical computing and graphics'
 arch=(x86_64)
 license=(GPL)
@@ -86,4 +86,12 @@
 
 # Install ld.so.conf.d file to ensure other applications access the shared lib
   install -Dm644 "$srcdir"/R.conf -t "$pkgdir"/etc/ld.so.conf.d
+
+# Add provides for bundled packages
+  for _f in "$pkgdir"/usr/lib/R/library/*/DESCRIPTION; do
+_pkg=$(grep Package: $_f | cut -d' ' -f2 | tr '[:upper:]' '[:lower:]')
+_ver=$(grep Version $_f | cut -d' ' -f2)
+_prov="r-$_pkg=${_ver/-/.}"
+provides+=($_prov)
+  done
 }



[arch-commits] Commit in libguestfs/repos/community-x86_64 (6 files)

2022-05-26 Thread Robin Broda via arch-commits
Date: Thursday, May 26, 2022 @ 20:41:33
  Author: coderobe
Revision: 1210682

archrelease: copy trunk to community-x86_64

Added:
  libguestfs/repos/community-x86_64/PKGBUILD
(from rev 1210681, libguestfs/trunk/PKGBUILD)
  libguestfs/repos/community-x86_64/libguestfs-1.48.1-disable_php_tests.patch
(from rev 1210681, 
libguestfs/trunk/libguestfs-1.48.1-disable_php_tests.patch)
  
libguestfs/repos/community-x86_64/libguestfs-1.48.1-test_isoinfo_device_0_as_cdrom.patch
(from rev 1210681, 
libguestfs/trunk/libguestfs-1.48.1-test_isoinfo_device_0_as_cdrom.patch)
Deleted:
  libguestfs/repos/community-x86_64/PKGBUILD
  libguestfs/repos/community-x86_64/libguestfs-1.48.1-disable_php_tests.patch
  
libguestfs/repos/community-x86_64/libguestfs-1.48.1-test_isoinfo_device_0_as_cdrom.patch

+
 PKGBUILD   |  172 +++
 libguestfs-1.48.1-disable_php_tests.patch  |   16 -
 libguestfs-1.48.1-test_isoinfo_device_0_as_cdrom.patch |   54 ++--
 3 files changed, 121 insertions(+), 121 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-26 20:41:17 UTC (rev 1210681)
+++ PKGBUILD2022-05-26 20:41:33 UTC (rev 1210682)
@@ -1,86 +0,0 @@
-# Maintainer: Robin Broda 
-# Contributor: Peter Wu 
-# Contributor: Evaggelos Balaskas 
-# Contributor: Xiao-Long Chen 
-# Contributor: Nikos Skalkotos 
-
-pkgname=libguestfs
-pkgver=1.48.1
-pkgrel=2
-pkgdesc="Access and modify virtual machine disk images"
-arch=('x86_64')
-url="https://libguestfs.org/;
-license=('GPL2' 'LGPL2.1')
-_appliancedeps=('iproute2' 'mdadm' 'lvm2' 'libldm' 'btrfs-progs' 'dosfstools' 
'gptfdisk' 'procps-ng' 'psmisc'
-'rsync' 'xfsprogs' 'dhcpcd' 'iputils' 'ntfs-3g' 'vim' 
'systemd-sysvcompat' 'openssh'
-'f2fs-tools' 'jfsutils' 'lsscsi' 'lsof' 'lzop' 'pciutils' 
'squashfs-tools'
-'strace' 'syslinux' 'debootstrap' 'exfatprogs' 'grub' 'lrzip' 
'mtools'
-'multipath-tools' 'nilfs-utils' 'reiserfsprogs' 'yara')
-#   'scrub' 'zerofree' 'hfsprogs')
-depends=('augeas' 'libvirt' 'jansson' 'fuse2' 'hivex' 'sleuthkit' 'supermin' 
'qemu' 'libconfig'
- 'perl-libintl-perl' "${_appliancedeps[@]}")
-makedepends=('ocaml' 'ocaml-findlib' 'gperf' 'cdrtools' 'perl-module-build' 
'python'
- 'gobject-introspection' 'vala' 'bash-completion' 'cpio' 
'java-environment'
- 'php' 'lua' 'ruby-rake' 'ruby-rdoc' 'ruby' 'rust')
-# 'go' 'ghc' 'erlang-nox')
-checkdepends=('linux' ruby-test-unit)
-optdepends=(
-  'gobject-introspection: GObject-Introspection Bindings'
-  'java-runtime: for Java bindings'
-  'ocaml: OCaml Bindings'
-  'php: for PHP module'
-  'python: Python Bindings'
-  'ruby: for Ruby bindings'
-)
-provides=('libguestfs.so' 'libguestfs-gobject-1.0.so')
-backup=('etc/libguestfs-tools.conf'
-'etc/xdg/virt-builder/repos.d/libguestfs.conf'
-'etc/xdg/virt-builder/repos.d/libguestfs.gpg'
-'etc/xdg/virt-builder/repos.d/opensuse.conf'
-'etc/xdg/virt-builder/repos.d/opensuse.gpg')
-options=(debug)
-source=(
-  
"http://download.libguestfs.org/${pkgver%.*}-stable/$pkgname-$pkgver.tar.gz"{,.sig}
-  $pkgname-1.48.1-disable_php_tests.patch
-  $pkgname-1.48.1-test_isoinfo_device_0_as_cdrom.patch
-)
-sha256sums=('4c3e84ae257b48fa6628734c8b305e3a0b8653928aef02caa423341413a90f1f'
-'SKIP'
-'151d7ab43e7150c7d645eb0bad9681ce5ecc59cae44f254f08ef617ce3d9932f'
-'c94e07adc1c8d34b2bf852362159671c35cde1ffa7b031686b1b48984da61636')
-validpgpkeys=('F7774FB1AD074A7E8C8767EA91738F73E1B768A0') # Richard W.M. Jones 

-
-prepare() {
-  # disable php tests, as missing arginfo definition makes them fail: 
https://github.com/libguestfs/libguestfs/issues/78
-  patch -Np1 -d $pkgname-$pkgver -i ../$pkgname-1.48.1-disable_php_tests.patch
-  # isoinfo_device for some reason adds iso_volume_id as CDROM, not ISOIMAGE 
(and tests fail): https://github.com/libguestfs/libguestfs/issues/79
-  patch -Np1 -d $pkgname-$pkgver -i 
../$pkgname-1.48.1-test_isoinfo_device_0_as_cdrom.patch
-
-  cd "$pkgname-$pkgver"
-  autoreconf -vi
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  # TODO: build haskell bindings
-  CFLAGS+=" -ffat-lto-objects" \
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---sbindir=/usr/bin \
---disable-static \
---disable-haskell \
---with-extra-packages="libldm systemd-sysvcompat openssh qemu" \
---with-guestfs-path=/usr/lib/guestfs
-
-  make
-}
-
-check() {
-  LIBGUESTFS_TRACE=1 make -k check -C $pkgname-$pkgver
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make INSTALLDIRS=vendor DESTDIR="$pkgdir" install
-}

Copied: libguestfs/repos/community-x86_64/PKGBUILD (from rev 1210681, 
libguestfs/trunk/PKGBUILD)
===
--- PKGBUILD 

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

2022-05-26 Thread Robin Broda via arch-commits
Date: Thursday, May 26, 2022 @ 20:41:17
  Author: coderobe
Revision: 1210681

upgpkg: libguestfs 1.48.1-3: rebuild for yara

Modified:
  libguestfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-26 19:28:30 UTC (rev 1210680)
+++ PKGBUILD2022-05-26 20:41:17 UTC (rev 1210681)
@@ -6,7 +6,7 @@
 
 pkgname=libguestfs
 pkgver=1.48.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Access and modify virtual machine disk images"
 arch=('x86_64')
 url="https://libguestfs.org/;



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

2022-05-26 Thread Leonidas Spyropoulos via arch-commits
Date: Thursday, May 26, 2022 @ 19:28:30
  Author: artafinde
Revision: 1210680

archrelease: copy trunk to community-x86_64

Added:
  lrzip/repos/community-x86_64/PKGBUILD
(from rev 1210679, lrzip/trunk/PKGBUILD)
Deleted:
  lrzip/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-26 19:24:41 UTC (rev 1210679)
+++ PKGBUILD2022-05-26 19:28:30 UTC (rev 1210680)
@@ -1,36 +0,0 @@
-# Maintainer: Alexander F Rødseth 
-# Contributor: graysky 
-# Contributor: 
-
-pkgname=lrzip
-pkgver=0.651
-pkgrel=1
-pkgdesc='Multi-threaded compression with rzip/lzma, lzo, and zpaq'
-url='https://github.com/ckolivas/lrzip'
-license=('GPL')
-arch=('x86_64')
-depends=('lzo')
-makedepends=('git')
-source=("git+https://github.com/ckolivas/lrzip#tag=v$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd "$pkgname"
-
-  CFLAGS="$CFLAGS -fomit-frame-pointer"
-  CXXFLAGS="$CXXFLAGS -fomit-frame-pointer"
-
-  ./autogen.sh --prefix=/usr "$flags"
-  make
-}
-
-check() {
-  make -C "$pkgname" -k check
-}
-
-package() {
-  make -C "$pkgname" DESTDIR="$pkgdir" install-strip
-}
-
-# vim: ts=2 sw=2 et:
-# getver: -u 3 github.com/ckolivas/lrzip/blob/master/ChangeLog

Copied: lrzip/repos/community-x86_64/PKGBUILD (from rev 1210679, 
lrzip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-26 19:28:30 UTC (rev 1210680)
@@ -0,0 +1,43 @@
+# Maintainer: Alexander F Rødseth 
+# Contributor: graysky 
+# Contributor: 
+
+pkgname=lrzip
+pkgver=0.651
+pkgrel=2
+pkgdesc='Multi-threaded compression with rzip/lzma, lzo, and zpaq'
+url='https://github.com/ckolivas/lrzip'
+license=('GPL')
+arch=('x86_64')
+depends=('lzo')
+makedepends=('git')
+source=("git+https://github.com/ckolivas/lrzip#tag=v${pkgver};
+
"${pkgname}-${pkgver}-CVE-2018-5786.patch::https://github.com/ckolivas/lrzip/commit/3495188cd8f2215a9feea201f3e05c1341ed95fb.patch;)
+sha256sums=('SKIP'
+'8573ff8dd049c91cd0e6d754683e889ae439119cb9e738241dedd369c280a6fc')
+
+prepare() {
+  cd "${pkgname}"
+  patch -Np1 < "../${pkgname}-${pkgver}-CVE-2018-5786.patch"
+}
+
+build() {
+  cd "${pkgname}"
+
+  CFLAGS="$CFLAGS -fomit-frame-pointer"
+  CXXFLAGS="$CXXFLAGS -fomit-frame-pointer"
+
+  ./autogen.sh --prefix=/usr "$flags"
+  make
+}
+
+check() {
+  make -C "${pkgname}" -k check
+}
+
+package() {
+  make -C "${pkgname}" DESTDIR="${pkgdir}" install-strip
+}
+
+# vim: ts=2 sw=2 et:
+# getver: -u 3 github.com/ckolivas/lrzip/blob/master/ChangeLog



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

2022-05-26 Thread Leonidas Spyropoulos via arch-commits
Date: Thursday, May 26, 2022 @ 19:24:41
  Author: artafinde
Revision: 1210679

Relevant github issue https://github.com/ckolivas/lrzip/issues/91

Modified:
  lrzip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-26 19:24:31 UTC (rev 1210678)
+++ PKGBUILD2022-05-26 19:24:41 UTC (rev 1210679)
@@ -4,7 +4,7 @@
 
 pkgname=lrzip
 pkgver=0.651
-pkgrel=1
+pkgrel=2
 pkgdesc='Multi-threaded compression with rzip/lzma, lzo, and zpaq'
 url='https://github.com/ckolivas/lrzip'
 license=('GPL')
@@ -11,11 +11,18 @@
 arch=('x86_64')
 depends=('lzo')
 makedepends=('git')
-source=("git+https://github.com/ckolivas/lrzip#tag=v$pkgver;)
-sha256sums=('SKIP')
+source=("git+https://github.com/ckolivas/lrzip#tag=v${pkgver};
+
"${pkgname}-${pkgver}-CVE-2018-5786.patch::https://github.com/ckolivas/lrzip/commit/3495188cd8f2215a9feea201f3e05c1341ed95fb.patch;)
+sha256sums=('SKIP'
+'8573ff8dd049c91cd0e6d754683e889ae439119cb9e738241dedd369c280a6fc')
 
+prepare() {
+  cd "${pkgname}"
+  patch -Np1 < "../${pkgname}-${pkgver}-CVE-2018-5786.patch"
+}
+
 build() {
-  cd "$pkgname"
+  cd "${pkgname}"
 
   CFLAGS="$CFLAGS -fomit-frame-pointer"
   CXXFLAGS="$CXXFLAGS -fomit-frame-pointer"
@@ -25,11 +32,11 @@
 }
 
 check() {
-  make -C "$pkgname" -k check
+  make -C "${pkgname}" -k check
 }
 
 package() {
-  make -C "$pkgname" DESTDIR="$pkgdir" install-strip
+  make -C "${pkgname}" DESTDIR="${pkgdir}" install-strip
 }
 
 # vim: ts=2 sw=2 et:



[arch-commits] Commit in globalprotect-openconnect/repos/community-x86_64 (2 files)

2022-05-26 Thread Anatol Pomozov via arch-commits
Date: Thursday, May 26, 2022 @ 19:24:31
  Author: anatolik
Revision: 1210678

archrelease: copy trunk to community-x86_64

Added:
  globalprotect-openconnect/repos/community-x86_64/PKGBUILD
(from rev 1210677, globalprotect-openconnect/trunk/PKGBUILD)
Deleted:
  globalprotect-openconnect/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-26 19:24:12 UTC (rev 1210677)
+++ PKGBUILD2022-05-26 19:24:31 UTC (rev 1210678)
@@ -1,26 +0,0 @@
-# Maintainer: Anatol Pomozov
-# Contributor: Keinv Yue 
-
-pkgname=globalprotect-openconnect
-pkgver=1.4.1
-pkgrel=1
-pkgdesc="A GlobalProtect VPN GUI client based on Openconnect and built with 
Qt5, supports SAML auth mode"
-arch=(x86_64)
-url="https://github.com/yuezk/GlobalProtect-openconnect;
-license=(GPL3)
-depends=(openconnect qt5-base qt5-webengine qt5-websockets)
-makedepends=(git cmake)
-provides=('gpclient' 'gpservice')
-source=(git+https://github.com/yuezk/GlobalProtect-openconnect#tag=v$pkgver) # 
github does not allow to download sources with submodules, thus use git directly
-sha256sums=('SKIP')
-
-build() {
-  cd GlobalProtect-openconnect
-  cmake -B build -DCMAKE_BUILD_TYPE=Release
-  cmake --build build
-}
-
-package() {
-  cd GlobalProtect-openconnect
-  make DESTDIR="$pkgdir/" install -C build
-}

Copied: globalprotect-openconnect/repos/community-x86_64/PKGBUILD (from rev 
1210677, globalprotect-openconnect/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-26 19:24:31 UTC (rev 1210678)
@@ -0,0 +1,27 @@
+# Maintainer: Anatol Pomozov
+# Contributor: Keinv Yue 
+
+pkgname=globalprotect-openconnect
+pkgver=1.4.4
+pkgrel=1
+pkgdesc="A GlobalProtect VPN GUI client based on Openconnect and built with 
Qt5, supports SAML auth mode"
+arch=(x86_64)
+url="https://github.com/yuezk/GlobalProtect-openconnect;
+license=(GPL3)
+depends=(openconnect qt5-base qt5-webengine qt5-websockets)
+makedepends=(git cmake)
+provides=(gpclient gpservice)
+backup=(etc/gpservice/gp.conf)
+source=(git+https://github.com/yuezk/GlobalProtect-openconnect#tag=v$pkgver) # 
github does not allow to download sources with submodules, thus use git directly
+sha256sums=('SKIP')
+
+build() {
+  cd GlobalProtect-openconnect
+  cmake -B build -DCMAKE_BUILD_TYPE=Release
+  cmake --build build
+}
+
+package() {
+  cd GlobalProtect-openconnect
+  make DESTDIR="$pkgdir/" install -C build
+}



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

2022-05-26 Thread Anatol Pomozov via arch-commits
Date: Thursday, May 26, 2022 @ 19:24:12
  Author: anatolik
Revision: 1210677

upgpkg: globalprotect-openconnect 1.4.4-1

Modified:
  globalprotect-openconnect/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-26 18:51:14 UTC (rev 1210676)
+++ PKGBUILD2022-05-26 19:24:12 UTC (rev 1210677)
@@ -2,7 +2,7 @@
 # Contributor: Keinv Yue 
 
 pkgname=globalprotect-openconnect
-pkgver=1.4.1
+pkgver=1.4.4
 pkgrel=1
 pkgdesc="A GlobalProtect VPN GUI client based on Openconnect and built with 
Qt5, supports SAML auth mode"
 arch=(x86_64)
@@ -10,7 +10,8 @@
 license=(GPL3)
 depends=(openconnect qt5-base qt5-webengine qt5-websockets)
 makedepends=(git cmake)
-provides=('gpclient' 'gpservice')
+provides=(gpclient gpservice)
+backup=(etc/gpservice/gp.conf)
 source=(git+https://github.com/yuezk/GlobalProtect-openconnect#tag=v$pkgver) # 
github does not allow to download sources with submodules, thus use git directly
 sha256sums=('SKIP')
 



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

2022-05-26 Thread Antonio Rojas via arch-commits
Date: Thursday, May 26, 2022 @ 18:51:14
  Author: arojas
Revision: 1210676

archrelease: copy trunk to community-x86_64

Added:
  fpylll/repos/community-x86_64/PKGBUILD
(from rev 1210675, fpylll/trunk/PKGBUILD)
Deleted:
  fpylll/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   48 
 1 file changed, 24 insertions(+), 24 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-26 18:51:04 UTC (rev 1210675)
+++ PKGBUILD2022-05-26 18:51:14 UTC (rev 1210676)
@@ -1,24 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgbase=fpylll
-pkgname=python-fpylll
-pkgver=0.5.6
-pkgrel=9
-pkgdesc='A Python interface for fplll'
-arch=(x86_64)
-url='https://github.com/fplll/fpylll'
-license=(GPL2)
-depends=(fplll python-numpy python-cysignals)
-makedepends=(cython python-build python-installer python-setuptools 
python-wheel)
-source=(https://github.com/fplll/fpylll/releases/download/$pkgver/$pkgbase-$pkgver.tar.gz)
-sha256sums=('c69bf4b3344f60ca40743af9b9246ce51f651c2cf54d2b88a4deff18b1b5f246')
-
-build() {
-  cd $pkgbase-$pkgver
-  python -m build --wheel --no-isolation
-}
-
-package_python-fpylll() {
-  cd $pkgbase-$pkgver
-  python -m installer --destdir="$pkgdir" dist/*.whl
-}

Copied: fpylll/repos/community-x86_64/PKGBUILD (from rev 1210675, 
fpylll/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-26 18:51:14 UTC (rev 1210676)
@@ -0,0 +1,24 @@
+# Maintainer: Antonio Rojas 
+
+pkgbase=fpylll
+pkgname=python-fpylll
+pkgver=0.5.7
+pkgrel=1
+pkgdesc='A Python interface for fplll'
+arch=(x86_64)
+url='https://github.com/fplll/fpylll'
+license=(GPL2)
+depends=(fplll python-numpy python-cysignals)
+makedepends=(cython python-build python-installer python-setuptools 
python-wheel)
+source=(https://github.com/fplll/fpylll/releases/download/$pkgver/$pkgbase-$pkgver.tar.gz)
+sha256sums=('d55ebee35e8b521f37e4d910b3e1c8a099d831a3d34aa376f555cfa8870805ff')
+
+build() {
+  cd $pkgbase-$pkgver
+  python -m build --wheel --no-isolation
+}
+
+package_python-fpylll() {
+  cd $pkgbase-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+}



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

2022-05-26 Thread Antonio Rojas via arch-commits
Date: Thursday, May 26, 2022 @ 18:51:04
  Author: arojas
Revision: 1210675

Update to 0.5.7

Modified:
  fpylll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-26 16:39:19 UTC (rev 1210674)
+++ PKGBUILD2022-05-26 18:51:04 UTC (rev 1210675)
@@ -2,8 +2,8 @@
 
 pkgbase=fpylll
 pkgname=python-fpylll
-pkgver=0.5.6
-pkgrel=9
+pkgver=0.5.7
+pkgrel=1
 pkgdesc='A Python interface for fplll'
 arch=(x86_64)
 url='https://github.com/fplll/fpylll'
@@ -11,7 +11,7 @@
 depends=(fplll python-numpy python-cysignals)
 makedepends=(cython python-build python-installer python-setuptools 
python-wheel)
 
source=(https://github.com/fplll/fpylll/releases/download/$pkgver/$pkgbase-$pkgver.tar.gz)
-sha256sums=('c69bf4b3344f60ca40743af9b9246ce51f651c2cf54d2b88a4deff18b1b5f246')
+sha256sums=('d55ebee35e8b521f37e4d910b3e1c8a099d831a3d34aa376f555cfa8870805ff')
 
 build() {
   cd $pkgbase-$pkgver



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

2022-05-26 Thread Christian Hesse via arch-commits
Date: Thursday, May 26, 2022 @ 17:26:06
  Author: eworm
Revision: 446556

bump mariadb version

Modified:
  galera/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-26 12:29:32 UTC (rev 446555)
+++ PKGBUILD2022-05-26 17:26:06 UTC (rev 446556)
@@ -4,7 +4,7 @@
 
 pkgname=galera
 pkgver=26.4.11
-_mariadb_ver=10.7.4
+_mariadb_ver=10.8.3
 pkgrel=1
 pkgdesc='write set replication (WSREP) provider for MariaDB cluster'
 arch=('x86_64')



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

2022-05-26 Thread Giancarlo Razzolini via arch-commits
Date: Thursday, May 26, 2022 @ 16:39:19
  Author: grazzolini
Revision: 1210674

archrelease: copy trunk to community-x86_64

Added:
  sshfs/repos/community-x86_64/PKGBUILD
(from rev 1210673, sshfs/trunk/PKGBUILD)
Deleted:
  sshfs/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-26 16:38:43 UTC (rev 1210673)
+++ PKGBUILD2022-05-26 16:39:19 UTC (rev 1210674)
@@ -1,41 +0,0 @@
-# Maintainer: Giancarlo Razzolini 
-# Contributor: Antonio Rojas 
-# Contributor: Giovanni Scafora 
-
-pkgname=sshfs
-pkgver=3.7.2
-pkgrel=2
-pkgdesc="FUSE client based on the SSH File Transfer Protocol"
-arch=('x86_64')
-url="https://github.com/libfuse/sshfs;
-license=(GPL)
-depends=(fuse3 glib2 openssh)
-makedepends=('meson' 'python-docutils')
-source=(https://github.com/libfuse/sshfs/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz{,.asc}
-https://github.com/libfuse/sshfs/commit/508e8cb0.patch)
-sha256sums=('1c596d42724d13aeba9f49ee127b8ef2fdeb813e25c6018f92d0c9ec4754fa2d'
-'SKIP'
-'629f0f07e1efd6c8251750c29981f106caa8fc4e12338c2092376054bfec059b')
-validpgpkeys=('ED31791B2C5C1613AF388B8AD113FCAC3C4E599F') # Nikolaus Rath 

-
-prepare() {
-  cd $pkgname-$pkgver
-
-  patch -p1 -i ../508e8cb0.patch # Fix typo that prevents passing the 
PubkeyAcceptedKeyTypes option to ssh
-
-  rm -rf build
-  mkdir build
-  cd build
-  arch-meson ..
-}
-
-build() {
-  cd $pkgname-$pkgver/build
-  ninja
-}
-
-package() {
-  cd $pkgname-$pkgver/build
-
-  DESTDIR="$pkgdir" ninja install
-}

Copied: sshfs/repos/community-x86_64/PKGBUILD (from rev 1210673, 
sshfs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-26 16:39:19 UTC (rev 1210674)
@@ -0,0 +1,37 @@
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Antonio Rojas 
+# Contributor: Giovanni Scafora 
+
+pkgname=sshfs
+pkgver=3.7.3
+pkgrel=1
+pkgdesc="FUSE client based on the SSH File Transfer Protocol"
+arch=('x86_64')
+url="https://github.com/libfuse/sshfs;
+license=(GPL)
+depends=(fuse3 glib2 openssh)
+makedepends=('meson' 'python-docutils')
+source=(https://github.com/libfuse/sshfs/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz{,.asc})
+sha256sums=('5218ce7bdd2ce0a34137a0d7798e0f6d09f0e6d21b1e98ee730a18b0699c2e99'
+'SKIP')
+validpgpkeys=('ED31791B2C5C1613AF388B8AD113FCAC3C4E599F') # Nikolaus Rath 

+
+prepare() {
+  cd $pkgname-$pkgver
+
+  rm -rf build
+  mkdir build
+  cd build
+  arch-meson ..
+}
+
+build() {
+  cd $pkgname-$pkgver/build
+  ninja
+}
+
+package() {
+  cd $pkgname-$pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+}



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

2022-05-26 Thread Giancarlo Razzolini via arch-commits
Date: Thursday, May 26, 2022 @ 16:38:43
  Author: grazzolini
Revision: 1210673

upgpkg: sshfs 3.7.3-1

Modified:
  sshfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-26 16:30:33 UTC (rev 1210672)
+++ PKGBUILD2022-05-26 16:38:43 UTC (rev 1210673)
@@ -3,8 +3,8 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=sshfs
-pkgver=3.7.2
-pkgrel=2
+pkgver=3.7.3
+pkgrel=1
 pkgdesc="FUSE client based on the SSH File Transfer Protocol"
 arch=('x86_64')
 url="https://github.com/libfuse/sshfs;
@@ -11,18 +11,14 @@
 license=(GPL)
 depends=(fuse3 glib2 openssh)
 makedepends=('meson' 'python-docutils')
-source=(https://github.com/libfuse/sshfs/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz{,.asc}
-https://github.com/libfuse/sshfs/commit/508e8cb0.patch)
-sha256sums=('1c596d42724d13aeba9f49ee127b8ef2fdeb813e25c6018f92d0c9ec4754fa2d'
-'SKIP'
-'629f0f07e1efd6c8251750c29981f106caa8fc4e12338c2092376054bfec059b')
+source=(https://github.com/libfuse/sshfs/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz{,.asc})
+sha256sums=('5218ce7bdd2ce0a34137a0d7798e0f6d09f0e6d21b1e98ee730a18b0699c2e99'
+'SKIP')
 validpgpkeys=('ED31791B2C5C1613AF388B8AD113FCAC3C4E599F') # Nikolaus Rath 

 
 prepare() {
   cd $pkgname-$pkgver
 
-  patch -p1 -i ../508e8cb0.patch # Fix typo that prevents passing the 
PubkeyAcceptedKeyTypes option to ssh
-
   rm -rf build
   mkdir build
   cd build



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

2022-05-26 Thread Orhun Parmaksiz via arch-commits
Date: Thursday, May 26, 2022 @ 15:48:29
  Author: orhun
Revision: 1210602

archrelease: copy trunk to community-x86_64

Added:
  songrec/repos/community-x86_64/PKGBUILD
(from rev 1210601, songrec/trunk/PKGBUILD)
Deleted:
  songrec/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  104 ++---
 1 file changed, 52 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-26 15:48:09 UTC (rev 1210601)
+++ PKGBUILD2022-05-26 15:48:29 UTC (rev 1210602)
@@ -1,52 +0,0 @@
-# Maintainer: Orhun Parmaksız 
-
-_pkgname=SongRec
-pkgname=songrec
-pkgver=0.3.1
-pkgrel=1
-pkgdesc='An open-source, unofficial Shazam client for Linux'
-arch=('x86_64')
-url='https://github.com/marin-m/SongRec'
-license=('GPL3')
-makedepends=('cargo' 'pkgconf' 'git')
-depends=('gtk3' 'alsa-lib' 'openssl' 'ffmpeg')
-optdepends=('libpulse: PulseAudio support')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha256sums=('e574b245bdbb0f13bd0cb645d5dcc514379bbd811a7c33d6c3dea272f9a017c0')
-options=('!lto')
-
-prepare() {
-  cd "$_pkgname-$pkgver"
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd "$_pkgname-$pkgver"
-  cargo build --release --frozen
-}
-
-check() {
-  cd "$_pkgname-$pkgver"
-  cargo test --frozen
-}
-
-package() {
-  cd "$_pkgname-$pkgver"
-  install -Dm 755 "target/release/songrec" "$pkgdir/usr/bin/songrec"
-
-  install -Dm 644 
"packaging/rootfs/usr/share/applications/com.github.marinm.songrec.desktop" \
-
"$pkgdir/usr/share/applications/com.github.marinm.songrec.desktop"
-
-  install -Dm 644 
"packaging/rootfs/usr/share/icons/hicolor/scalable/apps/com.github.marinm.songrec.svg"
 \
-
"$pkgdir/usr/share/icons/hicolor/scalable/apps/com.github.marinm.songrec.svg"
-
-  install -Dm 644 
"packaging/rootfs/usr/share/metainfo/com.github.marinm.songrec.metainfo.xml" \
-
"$pkgdir/usr/share/metainfo/com.github.marinm.songrec.metainfo.xml"
-
-  mkdir -p "$pkgdir/usr/share/songrec"
-  cp -ra "translations" "$pkgdir/usr/share/songrec/translations"
-
-  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
-}
-
-# vim: ts=2 sw=2 et:

Copied: songrec/repos/community-x86_64/PKGBUILD (from rev 1210601, 
songrec/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-26 15:48:29 UTC (rev 1210602)
@@ -0,0 +1,52 @@
+# Maintainer: Orhun Parmaksız 
+
+_pkgname=SongRec
+pkgname=songrec
+pkgver=0.3.2
+pkgrel=1
+pkgdesc='An open-source, unofficial Shazam client for Linux'
+arch=('x86_64')
+url='https://github.com/marin-m/SongRec'
+license=('GPL3')
+makedepends=('cargo' 'pkgconf' 'git')
+depends=('gtk3' 'alsa-lib' 'openssl' 'ffmpeg')
+optdepends=('libpulse: PulseAudio support')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha256sums=('9a14b3f2f8b97859e11a28162657ba76377d6c7e3041c23d5477f02012c794c6')
+options=('!lto')
+
+prepare() {
+  cd "$_pkgname-$pkgver"
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd "$_pkgname-$pkgver"
+  cargo build --release --frozen
+}
+
+check() {
+  cd "$_pkgname-$pkgver"
+  cargo test --frozen
+}
+
+package() {
+  cd "$_pkgname-$pkgver"
+  install -Dm 755 "target/release/songrec" "$pkgdir/usr/bin/songrec"
+
+  install -Dm 644 
"packaging/rootfs/usr/share/applications/com.github.marinm.songrec.desktop" \
+
"$pkgdir/usr/share/applications/com.github.marinm.songrec.desktop"
+
+  install -Dm 644 
"packaging/rootfs/usr/share/icons/hicolor/scalable/apps/com.github.marinm.songrec.svg"
 \
+
"$pkgdir/usr/share/icons/hicolor/scalable/apps/com.github.marinm.songrec.svg"
+
+  install -Dm 644 
"packaging/rootfs/usr/share/metainfo/com.github.marinm.songrec.metainfo.xml" \
+
"$pkgdir/usr/share/metainfo/com.github.marinm.songrec.metainfo.xml"
+
+  mkdir -p "$pkgdir/usr/share/songrec"
+  cp -ra "translations" "$pkgdir/usr/share/songrec/translations"
+
+  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-05-26 Thread Orhun Parmaksiz via arch-commits
Date: Thursday, May 26, 2022 @ 15:48:09
  Author: orhun
Revision: 1210601

upgpkg: songrec 0.3.2-1: upstream release

Modified:
  songrec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-26 15:35:25 UTC (rev 1210600)
+++ PKGBUILD2022-05-26 15:48:09 UTC (rev 1210601)
@@ -2,7 +2,7 @@
 
 _pkgname=SongRec
 pkgname=songrec
-pkgver=0.3.1
+pkgver=0.3.2
 pkgrel=1
 pkgdesc='An open-source, unofficial Shazam client for Linux'
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('gtk3' 'alsa-lib' 'openssl' 'ffmpeg')
 optdepends=('libpulse: PulseAudio support')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha256sums=('e574b245bdbb0f13bd0cb645d5dcc514379bbd811a7c33d6c3dea272f9a017c0')
+sha256sums=('9a14b3f2f8b97859e11a28162657ba76377d6c7e3041c23d5477f02012c794c6')
 options=('!lto')
 
 prepare() {



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

2022-05-26 Thread Orhun Parmaksiz via arch-commits
Date: Thursday, May 26, 2022 @ 15:35:25
  Author: orhun
Revision: 1210600

archrelease: copy trunk to community-x86_64

Added:
  cargo-zigbuild/repos/community-x86_64/PKGBUILD
(from rev 1210599, cargo-zigbuild/trunk/PKGBUILD)
Deleted:
  cargo-zigbuild/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-26 15:34:46 UTC (rev 1210599)
+++ PKGBUILD2022-05-26 15:35:25 UTC (rev 1210600)
@@ -1,38 +0,0 @@
-# Maintainer: Orhun Parmaksız 
-# Contributor: KokaKiwi 
-
-pkgname=cargo-zigbuild
-pkgver=0.8.7
-pkgrel=1
-pkgdesc="Compile Cargo project with zig as linker"
-arch=('x86_64')
-url="https://github.com/messense/cargo-zigbuild;
-license=('MIT')
-depends=('gcc-libs' 'zig')
-makedepends=('cargo')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('4ab0923756649aef6b9dc241b1538edbd0ef556f8ac14b85900955ad7da2f9de')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  cargo build --release --frozen
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  cargo test --frozen
-}
-
-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"
-}
-
-# vim: ts=2 sw=2 et:

Copied: cargo-zigbuild/repos/community-x86_64/PKGBUILD (from rev 1210599, 
cargo-zigbuild/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-26 15:35:25 UTC (rev 1210600)
@@ -0,0 +1,38 @@
+# Maintainer: Orhun Parmaksız 
+# Contributor: KokaKiwi 
+
+pkgname=cargo-zigbuild
+pkgver=0.8.8
+pkgrel=1
+pkgdesc="Compile Cargo project with zig as linker"
+arch=('x86_64')
+url="https://github.com/messense/cargo-zigbuild;
+license=('MIT')
+depends=('gcc-libs' 'zig')
+makedepends=('cargo')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('172133c03cb974bda8a4621c0b3d43a13261715eae1fb54381e1ee95edbc6b96')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --release --frozen
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  cargo test --frozen
+}
+
+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"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-05-26 Thread Orhun Parmaksiz via arch-commits
Date: Thursday, May 26, 2022 @ 15:34:46
  Author: orhun
Revision: 1210599

upgpkg: cargo-zigbuild 0.8.8-1: upstream release

Modified:
  cargo-zigbuild/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-26 15:31:05 UTC (rev 1210598)
+++ PKGBUILD2022-05-26 15:34:46 UTC (rev 1210599)
@@ -2,7 +2,7 @@
 # Contributor: KokaKiwi 
 
 pkgname=cargo-zigbuild
-pkgver=0.8.7
+pkgver=0.8.8
 pkgrel=1
 pkgdesc="Compile Cargo project with zig as linker"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('gcc-libs' 'zig')
 makedepends=('cargo')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('4ab0923756649aef6b9dc241b1538edbd0ef556f8ac14b85900955ad7da2f9de')
+sha256sums=('172133c03cb974bda8a4621c0b3d43a13261715eae1fb54381e1ee95edbc6b96')
 
 prepare() {
   cd "$pkgname-$pkgver"



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

2022-05-26 Thread Jelle van der Waa via arch-commits
Date: Thursday, May 26, 2022 @ 15:31:05
  Author: jelle
Revision: 1210598

archrelease: copy trunk to community-testing-any

Added:
  esptool/repos/community-testing-any/PKGBUILD
(from rev 1210597, esptool/trunk/PKGBUILD)
Deleted:
  esptool/repos/community-testing-any/PKGBUILD

--+
 PKGBUILD |   52 ++--
 1 file changed, 26 insertions(+), 26 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-26 15:30:59 UTC (rev 1210597)
+++ PKGBUILD2022-05-26 15:31:05 UTC (rev 1210598)
@@ -1,26 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Marcin (CTRL) Wieczorek 
-# Contributor: Marcin Kornat 
-# Contributor: MatejSpindler 
-
-pkgname=esptool
-pkgver=4.0
-pkgrel=1
-pkgdesc="A cute Python utility to communicate with the ROM bootloader in 
Espressif ESP8266"
-arch=('any')
-url="https://github.com/espressif/esptool;
-license=('GPL2')
-makedepends=('git' 'python-setuptools' 'python-pip')
-depends=('python-pyserial' 'python-ecdsa' 'python-pyaes' 'python-bitstring' 
'python-reedsolo')
-source=("https://github.com/espressif/esptool/archive/v${pkgver}.tar.gz;)
-sha512sums=('79964c42b812af58cdcb4ddf67fd9f54645d5027bb0c48da545e759465201d14e9b87558e2424aace063b1db37ac6af57b414752b10864adc9d611a5c9b337ea')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  python3 setup.py build
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  python3 setup.py install --root="$pkgdir/" --optimize=1 --skip-build
-}

Copied: esptool/repos/community-testing-any/PKGBUILD (from rev 1210597, 
esptool/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-26 15:31:05 UTC (rev 1210598)
@@ -0,0 +1,26 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Marcin (CTRL) Wieczorek 
+# Contributor: Marcin Kornat 
+# Contributor: MatejSpindler 
+
+pkgname=esptool
+pkgver=4.0.1
+pkgrel=1
+pkgdesc="A cute Python utility to communicate with the ROM bootloader in 
Espressif ESP8266"
+arch=('any')
+url="https://github.com/espressif/esptool;
+license=('GPL2')
+makedepends=('git' 'python-setuptools' 'python-pip')
+depends=('python-pyserial' 'python-ecdsa' 'python-pyaes' 'python-bitstring' 
'python-reedsolo')
+source=("https://github.com/espressif/esptool/archive/v${pkgver}.tar.gz;)
+sha512sums=('36f6518f236226fb0800ec533ec8061886686f17ccd0f2ef1db59e938842506dba34958f37645013efa5f71f902a70233f5174961eecf5a5c84ca6485f03d8d6')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python3 setup.py build
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python3 setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+}



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

2022-05-26 Thread Jelle van der Waa via arch-commits
Date: Thursday, May 26, 2022 @ 15:30:59
  Author: jelle
Revision: 1210597

upgpkg: esptool 4.0.1-1

Modified:
  esptool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-26 15:12:37 UTC (rev 1210596)
+++ PKGBUILD2022-05-26 15:30:59 UTC (rev 1210597)
@@ -4,7 +4,7 @@
 # Contributor: MatejSpindler 
 
 pkgname=esptool
-pkgver=4.0
+pkgver=4.0.1
 pkgrel=1
 pkgdesc="A cute Python utility to communicate with the ROM bootloader in 
Espressif ESP8266"
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('git' 'python-setuptools' 'python-pip')
 depends=('python-pyserial' 'python-ecdsa' 'python-pyaes' 'python-bitstring' 
'python-reedsolo')
 source=("https://github.com/espressif/esptool/archive/v${pkgver}.tar.gz;)
-sha512sums=('79964c42b812af58cdcb4ddf67fd9f54645d5027bb0c48da545e759465201d14e9b87558e2424aace063b1db37ac6af57b414752b10864adc9d611a5c9b337ea')
+sha512sums=('36f6518f236226fb0800ec533ec8061886686f17ccd0f2ef1db59e938842506dba34958f37645013efa5f71f902a70233f5174961eecf5a5c84ca6485f03d8d6')
 
 build() {
   cd "${pkgname}-${pkgver}"



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Thursday, May 26, 2022 @ 15:12:25
  Author: felixonmars
Revision: 1210595

upgpkg: haskell-language-server 1.3.0.0-187: rebuild with lens 5.1.1

Modified:
  haskell-language-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-26 15:10:12 UTC (rev 1210594)
+++ PKGBUILD2022-05-26 15:12:25 UTC (rev 1210595)
@@ -2,7 +2,7 @@
 
 pkgname=haskell-language-server
 pkgver=1.3.0.0
-pkgrel=186
+pkgrel=187
 pkgdesc="LSP server for GHC"
 url="https://github.com/haskell/haskell-language-server#readme;
 license=("Apache")



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Thursday, May 26, 2022 @ 15:12:37
  Author: felixonmars
Revision: 1210596

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-language-server/repos/community-staging-x86_64/
  haskell-language-server/repos/community-staging-x86_64/PKGBUILD
(from rev 1210595, haskell-language-server/trunk/PKGBUILD)

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

Copied: haskell-language-server/repos/community-staging-x86_64/PKGBUILD (from 
rev 1210595, haskell-language-server/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-26 15:12:37 UTC (rev 1210596)
@@ -0,0 +1,67 @@
+# Maintainer: Felix Yan 
+
+pkgname=haskell-language-server
+pkgver=1.3.0.0
+pkgrel=187
+pkgdesc="LSP server for GHC"
+url="https://github.com/haskell/haskell-language-server#readme;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-async'
+ 'haskell-base16-bytestring' 'haskell-cryptohash-sha1' 
'haskell-data-default'
+ 'haskell-extra' 'haskell-ghc' 'haskell-ghc-api-compat' 
'haskell-ghc-paths' 'haskell-gitrev'
+ 'haskell-hashable' 'haskell-hie-bios' 'haskell-hiedb'
+ 'haskell-hls-call-hierarchy-plugin' 'haskell-hls-eval-plugin'
+ 'haskell-hls-explicit-imports-plugin' 'haskell-hls-floskell-plugin'
+ 'haskell-hls-fourmolu-plugin' 'haskell-hls-ormolu-plugin' 
'haskell-hls-graph'
+ 'haskell-hls-haddock-comments-plugin' 'haskell-hls-hlint-plugin'
+ 'haskell-hls-module-name-plugin' 'haskell-hls-ormolu-plugin' 
'haskell-hls-plugin-api'
+ 'haskell-hls-pragmas-plugin'
+ 'haskell-hls-retrie-plugin' 'haskell-hls-stylish-haskell-plugin'
+ 'haskell-hslogger' 'haskell-lens' 'haskell-lsp' 
'haskell-optparse-applicative'
+ 'haskell-optparse-simple' 'haskell-regex-tdfa' 
'haskell-safe-exceptions'
+ 'haskell-sqlite-simple' 'haskell-temporary' 
'haskell-unordered-containers')
+# Disabled due to not compatible with GHC 9:
+# 'haskell-hls-brittany-plugin' 'haskell-hls-class-plugin' 
'haskell-hls-splice-plugin' 'haskell-hls-tactics-plugin' 
'haskell-hls-refine-imports-plugin'
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils' 
'haskell-hspec-expectations' 'haskell-lsp-test'
+ 'haskell-lsp-types')
+checkdepends=('cabal-install')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('2938c4eaf8e2fef72ddf0e116e021b109ab69c4cdd48dc678cb93cd08e03e7f2abf3aaf1dea17a51dd8cb70f69db7ceba9823291d847ffe8bd0c990028fd6da4')
+
+prepare() {
+  cd $pkgname-$pkgver
+  find test/testdata -name \*.cabal -exec uusi --add-options-all=-dynamic {} \;
+  uusi -u ghc-api-compat $pkgname.cabal
+}
+
+build() {
+  cd $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 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie' -f-brittany -f-class -f-refineImports -f-tactic 
-f-splice
+
+  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
+  
PATH="$PWD/dist/build/haskell-language-server:$PWD/dist/build/haskell-language-server-wrapper:$PATH"
 LD_LIBRARY_PATH="$PWD/dist/build" 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"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Thursday, May 26, 2022 @ 15:10:12
  Author: felixonmars
Revision: 1210594

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-pragmas-plugin/repos/community-staging-x86_64/
  haskell-hls-pragmas-plugin/repos/community-staging-x86_64/PKGBUILD
(from rev 1210593, haskell-hls-pragmas-plugin/trunk/PKGBUILD)

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

Copied: haskell-hls-pragmas-plugin/repos/community-staging-x86_64/PKGBUILD 
(from rev 1210593, haskell-hls-pragmas-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-26 15:10:12 UTC (rev 1210594)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-pragmas-plugin
+pkgname=haskell-hls-pragmas-plugin
+pkgver=1.0.1.0
+pkgrel=160
+pkgdesc="Pragmas plugin for Haskell Language Server"
+url="https://hackage.haskell.org/package/hls-pragmas-plugin;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-extra' 'haskell-fuzzy' 'haskell-ghcide' 
'haskell-hls-plugin-api'
+ 'haskell-lens' 'haskell-lsp' 'haskell-unordered-containers')
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils' 'haskell-lsp-types')
+checkdepends=('git')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('bf284033b7d2c3491b655ca32a7a791a4e62c838a4caafea36e28844052b2a192cf39d97ae1415a698ea22d7ffcc5f0290c37a91bba841b93c1ceabe089d7e07')
+
+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 --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--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 --show-details=direct
+}
+
+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 haskell-hls-pragmas-plugin/trunk (PKGBUILD)

2022-05-26 Thread Felix Yan via arch-commits
Date: Thursday, May 26, 2022 @ 15:09:59
  Author: felixonmars
Revision: 1210593

upgpkg: haskell-hls-pragmas-plugin 1.0.1.0-160: rebuild with lens 5.1.1

Modified:
  haskell-hls-pragmas-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-26 15:09:51 UTC (rev 1210592)
+++ PKGBUILD2022-05-26 15:09:59 UTC (rev 1210593)
@@ -3,7 +3,7 @@
 _hkgname=hls-pragmas-plugin
 pkgname=haskell-hls-pragmas-plugin
 pkgver=1.0.1.0
-pkgrel=159
+pkgrel=160
 pkgdesc="Pragmas plugin for Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-pragmas-plugin;
 license=("Apache")



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Thursday, May 26, 2022 @ 15:09:51
  Author: felixonmars
Revision: 1210592

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hls-eval-plugin/repos/community-staging-x86_64/PKGBUILD (from 
rev 1210591, haskell-hls-eval-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-26 15:09:51 UTC (rev 1210592)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-eval-plugin
+pkgname=haskell-hls-eval-plugin
+pkgver=1.1.2.0
+pkgrel=163
+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-api-compat' 
'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-temporary' 
'haskell-unliftio'
+ 'haskell-unordered-containers')
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils')
+checkdepends=('git')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('8597144404060b56aa84d2a6549306924de6aa99ff8fa121f0a3e6fbf2facc979e36dc9304fd041833201044f59e1745574eb1a1e3459b22baf0fae3f40d96e1')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -r ghc:ghc,ghc-api-compat $_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 
--ghc-option=-fllvm \
+--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
+  # https://github.com/haskell/haskell-language-server/issues/1809
+  runhaskell Setup test --show-details=direct || echo "Tests failed"
+}
+
+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 haskell-hls-eval-plugin/trunk (PKGBUILD)

2022-05-26 Thread Felix Yan via arch-commits
Date: Thursday, May 26, 2022 @ 15:09:39
  Author: felixonmars
Revision: 1210591

upgpkg: haskell-hls-eval-plugin 1.1.2.0-163: rebuild with lens 5.1.1

Modified:
  haskell-hls-eval-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-26 15:09:31 UTC (rev 1210590)
+++ PKGBUILD2022-05-26 15:09:39 UTC (rev 1210591)
@@ -3,7 +3,7 @@
 _hkgname=hls-eval-plugin
 pkgname=haskell-hls-eval-plugin
 pkgver=1.1.2.0
-pkgrel=162
+pkgrel=163
 pkgdesc="Eval plugin for Haskell Language Server"
 url="https://github.com/haskell/haskell-language-server;
 license=("Apache")



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Thursday, May 26, 2022 @ 15:09:31
  Author: felixonmars
Revision: 1210590

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-floskell-plugin/repos/community-staging-x86_64/
  haskell-hls-floskell-plugin/repos/community-staging-x86_64/PKGBUILD
(from rev 1210589, haskell-hls-floskell-plugin/trunk/PKGBUILD)

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

Copied: haskell-hls-floskell-plugin/repos/community-staging-x86_64/PKGBUILD 
(from rev 1210589, haskell-hls-floskell-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-26 15:09:31 UTC (rev 1210590)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-floskell-plugin
+pkgname=haskell-hls-floskell-plugin
+pkgver=1.0.0.1
+pkgrel=161
+pkgdesc="Integration with the Floskell code formatter"
+url="https://hackage.haskell.org/package/hls-floskell-plugin;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-floskell' 'haskell-ghcide' 
'haskell-hls-plugin-api' 'haskell-lsp-types')
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils')
+checkdepends=('git')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('0f420355b67447426e77f149a5cf735f613b2c863b08f625e0a0d91a33bcf565684d702f67743ef9d50eaa235551c30c76743fedd78ead9fbed429e838acf113')
+
+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 --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--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 --show-details=direct
+}
+
+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 haskell-hls-floskell-plugin/trunk (PKGBUILD)

2022-05-26 Thread Felix Yan via arch-commits
Date: Thursday, May 26, 2022 @ 15:09:19
  Author: felixonmars
Revision: 1210589

upgpkg: haskell-hls-floskell-plugin 1.0.0.1-161: rebuild with lens 5.1.1

Modified:
  haskell-hls-floskell-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-26 15:09:12 UTC (rev 1210588)
+++ PKGBUILD2022-05-26 15:09:19 UTC (rev 1210589)
@@ -3,7 +3,7 @@
 _hkgname=hls-floskell-plugin
 pkgname=haskell-hls-floskell-plugin
 pkgver=1.0.0.1
-pkgrel=160
+pkgrel=161
 pkgdesc="Integration with the Floskell code formatter"
 url="https://hackage.haskell.org/package/hls-floskell-plugin;
 license=("Apache")



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Thursday, May 26, 2022 @ 15:09:12
  Author: felixonmars
Revision: 1210588

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-module-name-plugin/repos/community-staging-x86_64/
  haskell-hls-module-name-plugin/repos/community-staging-x86_64/PKGBUILD
(from rev 1210587, haskell-hls-module-name-plugin/trunk/PKGBUILD)

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

Copied: haskell-hls-module-name-plugin/repos/community-staging-x86_64/PKGBUILD 
(from rev 1210587, haskell-hls-module-name-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-26 15:09:12 UTC (rev 1210588)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-module-name-plugin
+pkgname=haskell-hls-module-name-plugin
+pkgver=1.0.0.1
+pkgrel=160
+pkgdesc="Module name plugin for Haskell Language Server"
+url="https://hackage.haskell.org/package/hls-module-name-plugin;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ghcide' 'haskell-hls-plugin-api' 
'haskell-lsp'
+ 'haskell-unordered-containers')
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils')
+checkdepends=('git')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('0a4d0171df49d2d417dac00853a9f0c58618efb7a5805ab3b95441f0d8c60872947935ca94b33ca75518e311a136a893f0e3744fc49cdb94fba6f55367f3c0be')
+
+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 --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--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 --show-details=direct
+}
+
+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 haskell-hls-ormolu-plugin/trunk (PKGBUILD)

2022-05-26 Thread Felix Yan via arch-commits
Date: Thursday, May 26, 2022 @ 15:08:20
  Author: felixonmars
Revision: 1210583

upgpkg: haskell-hls-ormolu-plugin 1.0.1.0-165: rebuild with lens 5.1.1

Modified:
  haskell-hls-ormolu-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-26 15:08:13 UTC (rev 1210582)
+++ PKGBUILD2022-05-26 15:08:20 UTC (rev 1210583)
@@ -3,7 +3,7 @@
 _hkgname=hls-ormolu-plugin
 pkgname=haskell-hls-ormolu-plugin
 pkgver=1.0.1.0
-pkgrel=164
+pkgrel=165
 pkgdesc="Integration with the Ormolu code formatter"
 url="https://hackage.haskell.org/package/hls-ormolu-plugin;
 license=("Apache")



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Thursday, May 26, 2022 @ 15:08:52
  Author: felixonmars
Revision: 1210586

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-call-hierarchy-plugin/repos/community-staging-x86_64/
  haskell-hls-call-hierarchy-plugin/repos/community-staging-x86_64/PKGBUILD
(from rev 1210585, haskell-hls-call-hierarchy-plugin/trunk/PKGBUILD)

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

Copied: 
haskell-hls-call-hierarchy-plugin/repos/community-staging-x86_64/PKGBUILD (from 
rev 1210585, haskell-hls-call-hierarchy-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-26 15:08:52 UTC (rev 1210586)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-call-hierarchy-plugin
+pkgname=haskell-hls-call-hierarchy-plugin
+pkgver=1.0.0.0
+pkgrel=160
+pkgdesc="Call hierarchy plugin for Haskell Language Server"
+url="https://hackage.haskell.org/package/hls-call-hierarchy-plugin;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-extra' 'haskell-ghc' 
'haskell-ghc-api-compat'
+ 'haskell-ghcide' 'haskell-hiedb' 'haskell-hls-plugin-api' 
'haskell-lens' 'haskell-lsp'
+ 'haskell-sqlite-simple' 'haskell-unordered-containers')
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils' 'haskell-lsp-test')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('4b3103a98ec57c9f050ffd1c534a0e23b1bfcbe78dda441c351b874939ce34a8')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -r ghc:ghc,ghc-api-compat $_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 
--ghc-option=-fllvm \
+--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 --show-details=direct
+}
+
+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 haskell-hls-module-name-plugin/trunk (PKGBUILD)

2022-05-26 Thread Felix Yan via arch-commits
Date: Thursday, May 26, 2022 @ 15:09:00
  Author: felixonmars
Revision: 1210587

upgpkg: haskell-hls-module-name-plugin 1.0.0.1-160: rebuild with lens 5.1.1

Modified:
  haskell-hls-module-name-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-26 15:08:52 UTC (rev 1210586)
+++ PKGBUILD2022-05-26 15:09:00 UTC (rev 1210587)
@@ -3,7 +3,7 @@
 _hkgname=hls-module-name-plugin
 pkgname=haskell-hls-module-name-plugin
 pkgver=1.0.0.1
-pkgrel=159
+pkgrel=160
 pkgdesc="Module name plugin for Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-module-name-plugin;
 license=("Apache")



[arch-commits] Commit in haskell-hls-fourmolu-plugin/trunk (PKGBUILD)

2022-05-26 Thread Felix Yan via arch-commits
Date: Thursday, May 26, 2022 @ 15:08:01
  Author: felixonmars
Revision: 1210581

upgpkg: haskell-hls-fourmolu-plugin 1.0.0.2-167: rebuild with lens 5.1.1

Modified:
  haskell-hls-fourmolu-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-26 15:07:53 UTC (rev 1210580)
+++ PKGBUILD2022-05-26 15:08:01 UTC (rev 1210581)
@@ -3,7 +3,7 @@
 _hkgname=hls-fourmolu-plugin
 pkgname=haskell-hls-fourmolu-plugin
 pkgver=1.0.0.2
-pkgrel=166
+pkgrel=167
 pkgdesc="Integration with the Fourmolu code formatter"
 url="https://hackage.haskell.org/package/hls-fourmolu-plugin;
 license=("Apache")



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Thursday, May 26, 2022 @ 15:07:33
  Author: felixonmars
Revision: 1210578

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-stylish-haskell-plugin/repos/community-staging-x86_64/
  haskell-hls-stylish-haskell-plugin/repos/community-staging-x86_64/PKGBUILD
(from rev 1210576, haskell-hls-stylish-haskell-plugin/trunk/PKGBUILD)

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

Copied: 
haskell-hls-stylish-haskell-plugin/repos/community-staging-x86_64/PKGBUILD 
(from rev 1210576, haskell-hls-stylish-haskell-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-26 15:07:33 UTC (rev 1210578)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-stylish-haskell-plugin
+pkgname=haskell-hls-stylish-haskell-plugin
+pkgver=1.0.0.2
+pkgrel=163
+pkgdesc="Integration with the Stylish Haskell code formatter"
+url="https://hackage.haskell.org/package/hls-stylish-haskell-plugin;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ghc' 'haskell-ghc-api-compat' 'haskell-ghcide' 
'haskell-hls-plugin-api'
+ 'haskell-lsp-types' 'stylish-haskell')
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils')
+checkdepends=('git')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('d850d4be6cc746b6279512bb359efda197aeebd467a59a21670f3b95977c6ba086852dedde3c48171f0cff8405c8e340dea44fe3e187e4731a06eb112502ad9c')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -r ghc:ghc,ghc-api-compat -u stylish-haskell $_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 
--ghc-option=-fllvm \
+--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 --show-details=direct
+}
+
+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 haskell-hls-fourmolu-plugin/repos (2 files)

2022-05-26 Thread Felix Yan via arch-commits
Date: Thursday, May 26, 2022 @ 15:08:13
  Author: felixonmars
Revision: 1210582

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-fourmolu-plugin/repos/community-staging-x86_64/
  haskell-hls-fourmolu-plugin/repos/community-staging-x86_64/PKGBUILD
(from rev 1210581, haskell-hls-fourmolu-plugin/trunk/PKGBUILD)

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

Copied: haskell-hls-fourmolu-plugin/repos/community-staging-x86_64/PKGBUILD 
(from rev 1210581, haskell-hls-fourmolu-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-26 15:08:13 UTC (rev 1210582)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-fourmolu-plugin
+pkgname=haskell-hls-fourmolu-plugin
+pkgver=1.0.0.2
+pkgrel=167
+pkgdesc="Integration with the Fourmolu code formatter"
+url="https://hackage.haskell.org/package/hls-fourmolu-plugin;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-fourmolu' 'haskell-ghc' 'haskell-ghcide' 
'haskell-hls-plugin-api'
+ 'haskell-lens' 'haskell-lsp' 'haskell-ghc-api-compat')
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils' 'haskell-lsp-test')
+checkdepends=('git')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('88a92c70c34d14699bcc19e7d1ff061955c4e9a6819f32c5b46d8b31d1d1f06b12be65bb84ede6046601a6d8daafcb8fc65725ceb3fc67e7afeef4097094ed46')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -r ghc:ghc,ghc-api-compat $_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 
--ghc-option=-fllvm \
+--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 --show-details=direct
+}
+
+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 r8168-lts/trunk (PKGBUILD)

2022-05-26 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, May 26, 2022 @ 15:07:27
  Author: mtorromeo
Revision: 1210576

upgpkg: r8168-lts 8.050.02-1

Modified:
  r8168-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-26 15:07:21 UTC (rev 1210575)
+++ PKGBUILD2022-05-26 15:07:27 UTC (rev 1210576)
@@ -1,8 +1,8 @@
 # Maintainer: Massimiliano Torromeo 
 
 pkgname=r8168-lts
-pkgver=8.050.00
-pkgrel=9
+pkgver=8.050.02
+pkgrel=1
 pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
 url="http://www.realtek.com.tw;
 license=("GPL")
@@ -10,7 +10,7 @@
 makedepends=('linux-lts-headers')
 source=(https://github.com/mtorromeo/r8168/archive/$pkgver/r8168-$pkgver.tar.gz
 
https://github.com/mtorromeo/r8168/releases/download/$pkgver/r8168-$pkgver.tar.gz.asc)
-sha256sums=('15b06890230d7c7b92635d981a6f07c4562b0b3eeb55f43b127bdfbb50dda5e1'
+sha256sums=('87b8f98bc6f519f28b641384a59be4a020eb8b73a8853c32e940cba7801a93be'
 'SKIP')
 validpgpkeys=('0CADAACF70F64C654E131B3111675C743429DDEF')
 



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

2022-05-26 Thread Felix Yan via arch-commits
Date: Thursday, May 26, 2022 @ 15:07:53
  Author: felixonmars
Revision: 1210580

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: 
haskell-hls-haddock-comments-plugin/repos/community-staging-x86_64/PKGBUILD 
(from rev 1210579, haskell-hls-haddock-comments-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-26 15:07:53 UTC (rev 1210580)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-haddock-comments-plugin
+pkgname=haskell-hls-haddock-comments-plugin
+pkgver=1.0.0.3
+pkgrel=160
+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' 'haskell-hls-test-utils')
+checkdepends=('git')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('0bc705b51d86d400c2f843330be5ffa9064726da64644cbc1a4c2fead1caaec5812c35ef499877aa9d07417c3854c933187dd227cd8c90f54042ead07f38bcc7')
+
+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 --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--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 --show-details=direct
+}
+
+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 haskell-hls-retrie-plugin/repos (2 files)

2022-05-26 Thread Felix Yan via arch-commits
Date: Thursday, May 26, 2022 @ 15:07:02
  Author: felixonmars
Revision: 1210574

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-retrie-plugin/repos/community-staging-x86_64/
  haskell-hls-retrie-plugin/repos/community-staging-x86_64/PKGBUILD
(from rev 1210573, haskell-hls-retrie-plugin/trunk/PKGBUILD)

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

Copied: haskell-hls-retrie-plugin/repos/community-staging-x86_64/PKGBUILD (from 
rev 1210573, haskell-hls-retrie-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-26 15:07:02 UTC (rev 1210574)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-retrie-plugin
+pkgname=haskell-hls-retrie-plugin
+pkgver=1.0.1.1
+pkgrel=160
+pkgdesc="Retrie integration plugin for Haskell Language Server"
+url="https://hackage.haskell.org/package/hls-retrie-plugin;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-extra' 'haskell-ghc' 
'haskell-ghc-api-compat'
+ 'haskell-ghcide' 'haskell-hashable' 'haskell-hls-plugin-api' 
'haskell-lsp'
+ 'haskell-lsp-types' 'haskell-retrie' 'haskell-safe-exceptions'
+ 'haskell-unordered-containers')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('d5059c9d1e5af9acf1a9842c76270400076f2eb168a2dfd61961cb5328c72e4aaf14ad9a1543a3729d87800d658b941e1daaa15a1bd628d3d72657499dd47488')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -r ghc:ghc,ghc-api-compat $_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 
--ghc-option=-fllvm \
+--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 -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



[arch-commits] Commit in haskell-hls-stylish-haskell-plugin/trunk (PKGBUILD)

2022-05-26 Thread Felix Yan via arch-commits
Date: Thursday, May 26, 2022 @ 15:07:21
  Author: felixonmars
Revision: 1210575

upgpkg: haskell-hls-stylish-haskell-plugin 1.0.0.2-163: rebuild with lens 5.1.1

Modified:
  haskell-hls-stylish-haskell-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-26 15:07:02 UTC (rev 1210574)
+++ PKGBUILD2022-05-26 15:07:21 UTC (rev 1210575)
@@ -3,7 +3,7 @@
 _hkgname=hls-stylish-haskell-plugin
 pkgname=haskell-hls-stylish-haskell-plugin
 pkgver=1.0.0.2
-pkgrel=162
+pkgrel=163
 pkgdesc="Integration with the Stylish Haskell code formatter"
 url="https://hackage.haskell.org/package/hls-stylish-haskell-plugin;
 license=("Apache")



[arch-commits] Commit in haskell-hls-haddock-comments-plugin/trunk (PKGBUILD)

2022-05-26 Thread Felix Yan via arch-commits
Date: Thursday, May 26, 2022 @ 15:07:41
  Author: felixonmars
Revision: 1210579

upgpkg: haskell-hls-haddock-comments-plugin 1.0.0.3-160: rebuild with lens 5.1.1

Modified:
  haskell-hls-haddock-comments-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-26 15:07:33 UTC (rev 1210578)
+++ PKGBUILD2022-05-26 15:07:41 UTC (rev 1210579)
@@ -3,7 +3,7 @@
 _hkgname=hls-haddock-comments-plugin
 pkgname=haskell-hls-haddock-comments-plugin
 pkgver=1.0.0.3
-pkgrel=159
+pkgrel=160
 pkgdesc="Haddock comments plugin for Haskell Language Server"
 url="https://github.com/haskell/haskell-language-server;
 license=("Apache")



  1   2   3   4   >