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

2021-12-29 Thread Caleb Maclennan via arch-commits
Date: Thursday, December 30, 2021 @ 07:58:33
  Author: alerque
Revision: 1088097

archrelease: copy trunk to community-x86_64

Added:
  lua-linenoise/repos/community-x86_64/PKGBUILD
(from rev 1088096, lua-linenoise/trunk/PKGBUILD)
Deleted:
  lua-linenoise/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-30 07:57:55 UTC (rev 1088096)
+++ PKGBUILD2021-12-30 07:58:33 UTC (rev 1088097)
@@ -1,45 +0,0 @@
-# Maintainer: Caleb Maclennan 
-# Contributor: wenLiangcan 
-
-pkgbase=lua-linenoise
-_rockname=${pkgbase#lua-}
-pkgname=("$pkgbase" "lua51-$_rockname" "lua52-$_rockname" "lua53-$_rockname")
-pkgver=0.9
-pkgrel=6
-_rockrel=1
-pkgdesc='A binding for the linenoise command line library'
-arch=(x86_64)
-url="https://github.com/hoelzro/$pkgbase";
-license=(MIT)
-makedepends=(lua
- lua51
- lua52
- lua53
- luarocks)
-_archive="$pkgbase-$pkgver"
-source=("$_archive.tar.gz::$url/archive/$pkgver.tar.gz")
-sha256sums=('cc1cdb4047edd056a10dcdeec853dbaf5088e2202941d579e4592584d733f09c')
-
-_package() {
-   cd "$_archive"
-   depends=("${pkgname%-*}")
-   luarocks --lua-version="$1" --tree="$pkgdir/usr/" \
-   make --deps-mode=none --no-manifest 
"$_rockname-$pkgver-$_rockrel.rockspec"
-   install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" COPYING
-}
-
-package_lua-linenoise() {
-  _package 5.4
-}
-
-package_lua51-linenoise() {
-  _package 5.1
-}
-
-package_lua52-linenoise() {
-  _package 5.2
-}
-
-package_lua53-linenoise() {
-  _package 5.3
-}

Copied: lua-linenoise/repos/community-x86_64/PKGBUILD (from rev 1088096, 
lua-linenoise/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-30 07:58:33 UTC (rev 1088097)
@@ -0,0 +1,47 @@
+# Maintainer: Caleb Maclennan 
+# Contributor: wenLiangcan 
+
+pkgbase=lua-linenoise
+_rockname=${pkgbase#lua-}
+pkgname=("$pkgbase" "lua51-$_rockname" "lua52-$_rockname" "lua53-$_rockname")
+pkgver=0.9
+pkgrel=7
+_rockrel=1
+pkgdesc='A binding for the linenoise command line library'
+arch=(x86_64)
+url="https://github.com/hoelzro/$pkgbase";
+license=(MIT)
+makedepends=(lua
+ lua51
+ lua52
+ lua53
+ luarocks)
+_archive="$pkgbase-$pkgver"
+source=("$_archive.tar.gz::$url/archive/$pkgver.tar.gz")
+sha256sums=('cc1cdb4047edd056a10dcdeec853dbaf5088e2202941d579e4592584d733f09c')
+
+_package() {
+   cd "$_archive"
+   depends=("${pkgname%-*}")
+   luarocks --lua-version="$1" --tree="$pkgdir/usr/" \
+   CFLAGS="$CPPFLAGS $CFLAGS -fPIC" \
+   LIBFLAG="$LDFLAGS -shared" \
+   make --deps-mode=none --no-manifest 
"$_rockname-$pkgver-$_rockrel.rockspec"
+   install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" COPYING
+}
+
+package_lua-linenoise() {
+  _package 5.4
+}
+
+package_lua51-linenoise() {
+  _package 5.1
+}
+
+package_lua52-linenoise() {
+  _package 5.2
+}
+
+package_lua53-linenoise() {
+  _package 5.3
+}



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

2021-12-29 Thread Caleb Maclennan via arch-commits
Date: Thursday, December 30, 2021 @ 07:57:55
  Author: alerque
Revision: 1088096

upgpkg: lua-linenoise 0.9-7; Pass build flags to achieve FULL RELRO

Modified:
  lua-linenoise/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-30 07:56:43 UTC (rev 1088095)
+++ PKGBUILD2021-12-30 07:57:55 UTC (rev 1088096)
@@ -5,7 +5,7 @@
 _rockname=${pkgbase#lua-}
 pkgname=("$pkgbase" "lua51-$_rockname" "lua52-$_rockname" "lua53-$_rockname")
 pkgver=0.9
-pkgrel=6
+pkgrel=7
 _rockrel=1
 pkgdesc='A binding for the linenoise command line library'
 arch=(x86_64)
@@ -24,6 +24,8 @@
cd "$_archive"
depends=("${pkgname%-*}")
luarocks --lua-version="$1" --tree="$pkgdir/usr/" \
+   CFLAGS="$CPPFLAGS $CFLAGS -fPIC" \
+   LIBFLAG="$LDFLAGS -shared" \
make --deps-mode=none --no-manifest 
"$_rockname-$pkgver-$_rockrel.rockspec"
install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" COPYING
 }



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

2021-12-29 Thread Caleb Maclennan via arch-commits
Date: Thursday, December 30, 2021 @ 07:56:43
  Author: alerque
Revision: 1088095

archrelease: copy trunk to community-x86_64

Added:
  lua-term/repos/community-x86_64/PKGBUILD
(from rev 1088094, lua-term/trunk/PKGBUILD)
Deleted:
  lua-term/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-30 07:56:00 UTC (rev 1088094)
+++ PKGBUILD2021-12-30 07:56:43 UTC (rev 1088095)
@@ -1,46 +0,0 @@
-# Maintainer: Caleb Maclennan 
-
-pkgbase=lua-term
-_rockname=${pkgbase#lua-}
-pkgname=("$pkgbase" "lua51-$_rockname" "lua52-$_rockname" "lua53-$_rockname")
-pkgver=0.7
-_pkgver=0.07
-_rockrel=1
-pkgrel=6
-pkgdesc='Terminal functions for Lua'
-arch=(x86_64)
-url="https://github.com/hoelzro/$pkgbase";
-license=(MIT)
-makedepends=(lua
- lua51
- lua52
- lua53
- luarocks)
-_archive="$pkgbase-$_pkgver"
-source=("$_archive.tgz::$url/archive/$_pkgver.tar.gz")
-sha256sums=('c1a1d0c57107147ea02878a50b768d1c3c13aca2769b026c5bb7a84119607f30')
-
-_package() {
-   cd "$_archive"
-   depends=("${pkgname%-*}")
-   luarocks --lua-version="$1" --tree="$pkgdir/usr/" \
-   LIBFLAG="$LDFLAGS -shared" \
-   make --deps-mode=none --no-manifest 
"$pkgbase-$pkgver-$_rockrel.rockspec"
-   install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" COPYING
-}
-
-package_lua-term() {
-   _package 5.4
-}
-
-package_lua51-term() {
-   _package 5.1
-}
-
-package_lua52-term() {
-   _package 5.2
-}
-
-package_lua53-term() {
-   _package 5.3
-}

Copied: lua-term/repos/community-x86_64/PKGBUILD (from rev 1088094, 
lua-term/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-30 07:56:43 UTC (rev 1088095)
@@ -0,0 +1,47 @@
+# Maintainer: Caleb Maclennan 
+
+pkgbase=lua-term
+_rockname=${pkgbase#lua-}
+pkgname=("$pkgbase" "lua51-$_rockname" "lua52-$_rockname" "lua53-$_rockname")
+pkgver=0.7
+_pkgver=0.07
+_rockrel=1
+pkgrel=7
+pkgdesc='Terminal functions for Lua'
+arch=(x86_64)
+url="https://github.com/hoelzro/$pkgbase";
+license=(MIT)
+makedepends=(lua
+ lua51
+ lua52
+ lua53
+ luarocks)
+_archive="$pkgbase-$_pkgver"
+source=("$_archive.tgz::$url/archive/$_pkgver.tar.gz")
+sha256sums=('c1a1d0c57107147ea02878a50b768d1c3c13aca2769b026c5bb7a84119607f30')
+
+_package() {
+   cd "$_archive"
+   depends=("${pkgname%-*}")
+   luarocks --lua-version="$1" --tree="$pkgdir/usr/" \
+   CFLAGS="$CPPFLAGS $CFLAGS -fPIC" \
+   LIBFLAG="$LDFLAGS -shared" \
+   make --deps-mode=none --no-manifest 
"$pkgbase-$pkgver-$_rockrel.rockspec"
+   install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" COPYING
+}
+
+package_lua-term() {
+   _package 5.4
+}
+
+package_lua51-term() {
+   _package 5.1
+}
+
+package_lua52-term() {
+   _package 5.2
+}
+
+package_lua53-term() {
+   _package 5.3
+}



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

2021-12-29 Thread Caleb Maclennan via arch-commits
Date: Thursday, December 30, 2021 @ 07:56:00
  Author: alerque
Revision: 1088094

archrelease: copy trunk to community-x86_64

Added:
  lua-luautf8/repos/community-x86_64/PKGBUILD
(from rev 1088093, lua-luautf8/trunk/PKGBUILD)
Deleted:
  lua-luautf8/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-30 07:55:22 UTC (rev 1088093)
+++ PKGBUILD2021-12-30 07:56:00 UTC (rev 1088094)
@@ -1,49 +0,0 @@
-# Maintainer: Caleb Maclennan 
-
-pkgbase=lua-luautf8
-_rockname=${pkgbase#lua-}
-pkgname=("$pkgbase" "lua51-$_rockname" "lua52-$_rockname" "lua53-$_rockname")
-pkgver=0.1.3
-_rockrel=1
-pkgrel=2
-pkgdesc='Add UTF-8 support to Lua, compatible with Lua string module'
-arch=(x86_64)
-url="https://github.com/starwing/$_rockname";
-license=(MIT)
-makedepends=(lua
- lua51
- lua52
- lua53
- luarocks)
-_archive="$_rockname-$pkgver"
-source=("$_archive.tar.gz::$url/archive/$pkgver.tar.gz")
-sha256sums=('208b3423a03a6c2822a2fa6b7cc8092ed7d3c0d792ec12c7cd28d6afaa442e0b')
-
-_package_helper() {
-   cd "$_archive"
-   provides=("${pkgname/-lua/-}=$pkgver")
-   replaces=("${pkgname/-lua/-}")
-   luarocks --lua-version="$1" --tree="$pkgdir/usr/" \
-   make --deps-mode=none --no-manifest 
"rockspecs/$_rockname-$pkgver-$_rockrel.rockspec"
-   install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
-}
-
-package_lua-luautf8() {
-   depends=(lua)
-   _package_helper 5.4
-}
-
-package_lua51-luautf8() {
-   depends=(lua51)
-   _package_helper 5.1
-}
-
-package_lua52-luautf8() {
-   depends=(lua52)
-   _package_helper 5.2
-}
-
-package_lua53-luautf8() {
-   depends=(lua53)
-   _package_helper 5.3
-}

Copied: lua-luautf8/repos/community-x86_64/PKGBUILD (from rev 1088093, 
lua-luautf8/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-30 07:56:00 UTC (rev 1088094)
@@ -0,0 +1,48 @@
+# Maintainer: Caleb Maclennan 
+
+pkgbase=lua-luautf8
+_rockname=${pkgbase#lua-}
+pkgname=("$pkgbase" "lua51-$_rockname" "lua52-$_rockname" "lua53-$_rockname")
+pkgver=0.1.3
+_rockrel=1
+pkgrel=3
+pkgdesc='Add UTF-8 support to Lua, compatible with Lua string module'
+arch=(x86_64)
+url="https://github.com/starwing/$_rockname";
+license=(MIT)
+makedepends=(lua
+ lua51
+ lua52
+ lua53
+ luarocks)
+_archive="$_rockname-$pkgver"
+source=("$_archive.tgz::$url/archive/$pkgver.tar.gz")
+sha256sums=('208b3423a03a6c2822a2fa6b7cc8092ed7d3c0d792ec12c7cd28d6afaa442e0b')
+
+_package() {
+   cd "$_archive"
+   depends=("${pkgname%-*}")
+   provides=("${pkgname/-lua/-}=$pkgver")
+   replaces=("${pkgname/-lua/-}")
+   luarocks --lua-version="$1" --tree="$pkgdir/usr/" \
+   CFLAGS="$CPPFLAGS $CFLAGS -fPIC" \
+   LIBFLAG="$LDFLAGS -shared" \
+   make --deps-mode=none --no-manifest 
"rockspecs/$_rockname-$pkgver-$_rockrel.rockspec"
+   install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
+}
+
+package_lua-luautf8() {
+   _package 5.4
+}
+
+package_lua51-luautf8() {
+   _package 5.1
+}
+
+package_lua52-luautf8() {
+   _package 5.2
+}
+
+package_lua53-luautf8() {
+   _package 5.3
+}



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

2021-12-29 Thread Caleb Maclennan via arch-commits
Date: Thursday, December 30, 2021 @ 07:55:22
  Author: alerque
Revision: 1088093

upgpkg: lua-luautf8 0.1.3-3; Pass build flags to achieve FULL RELRO

Modified:
  lua-luautf8/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-30 07:54:49 UTC (rev 1088092)
+++ PKGBUILD2021-12-30 07:55:22 UTC (rev 1088093)
@@ -5,7 +5,7 @@
 pkgname=("$pkgbase" "lua51-$_rockname" "lua52-$_rockname" "lua53-$_rockname")
 pkgver=0.1.3
 _rockrel=1
-pkgrel=2
+pkgrel=3
 pkgdesc='Add UTF-8 support to Lua, compatible with Lua string module'
 arch=(x86_64)
 url="https://github.com/starwing/$_rockname";
@@ -16,7 +16,7 @@
  lua53
  luarocks)
 _archive="$_rockname-$pkgver"
-source=("$_archive.tar.gz::$url/archive/$pkgver.tar.gz")
+source=("$_archive.tgz::$url/archive/$pkgver.tar.gz")
 sha256sums=('208b3423a03a6c2822a2fa6b7cc8092ed7d3c0d792ec12c7cd28d6afaa442e0b')
 
 _package() {
@@ -25,6 +25,8 @@
provides=("${pkgname/-lua/-}=$pkgver")
replaces=("${pkgname/-lua/-}")
luarocks --lua-version="$1" --tree="$pkgdir/usr/" \
+   CFLAGS="$CPPFLAGS $CFLAGS -fPIC" \
+   LIBFLAG="$LDFLAGS -shared" \
make --deps-mode=none --no-manifest 
"rockspecs/$_rockname-$pkgver-$_rockrel.rockspec"
install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
 }



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

2021-12-29 Thread Caleb Maclennan via arch-commits
Date: Thursday, December 30, 2021 @ 07:54:49
  Author: alerque
Revision: 1088092

upgpkg: lua-term 0.7-7; Pass CFLAGS too

Modified:
  lua-term/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-30 07:46:24 UTC (rev 1088091)
+++ PKGBUILD2021-12-30 07:54:49 UTC (rev 1088092)
@@ -6,7 +6,7 @@
 pkgver=0.7
 _pkgver=0.07
 _rockrel=1
-pkgrel=6
+pkgrel=7
 pkgdesc='Terminal functions for Lua'
 arch=(x86_64)
 url="https://github.com/hoelzro/$pkgbase";
@@ -24,6 +24,7 @@
cd "$_archive"
depends=("${pkgname%-*}")
luarocks --lua-version="$1" --tree="$pkgdir/usr/" \
+   CFLAGS="$CPPFLAGS $CFLAGS -fPIC" \
LIBFLAG="$LDFLAGS -shared" \
make --deps-mode=none --no-manifest 
"$pkgbase-$pkgver-$_rockrel.rockspec"
install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" COPYING



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

2021-12-29 Thread Caleb Maclennan via arch-commits
Date: Thursday, December 30, 2021 @ 07:46:24
  Author: alerque
Revision: 1088091

archrelease: copy trunk to community-x86_64

Added:
  lua-bit32/repos/community-x86_64/PKGBUILD
(from rev 1088090, lua-bit32/trunk/PKGBUILD)
Deleted:
  lua-bit32/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-30 07:45:44 UTC (rev 1088090)
+++ PKGBUILD2021-12-30 07:46:24 UTC (rev 1088091)
@@ -1,54 +0,0 @@
-# Maintainer: Caleb Maclennan 
-# Contributor: Stephen Smith 
-
-pkgbase=lua-bit32
-_rockname=${pkgbase#lua-}
-pkgname=("$pkgbase" "lua51-$_rockname" "lua52-$_rockname" "lua53-$_rockname")
-_compatrel=0.10
-pkgver=5.3.5.1_$_compatrel
-_rockrel=1
-pkgrel=1
-pkgdesc='Lua 5.2 bit manipulation library'
-arch=(x86_64)
-url='https://github.com/keplerproject/lua-compat-5.3'
-license=(MIT)
-makedepends=(lua
- lua51
- lua52
- lua53
- luarocks)
-_archive="lua-compat-5.3-$_compatrel"
-_rockspec="$_rockname-${pkgver%_*}-$_rockrel.rockspec"
-source=("$_archive.tar.gz::$url/archive/v$_compatrel.tar.gz"
-
"${url/github/raw.githubusercontent}/1e31f3ddc517b4e521c73f7d6eaecd5e1787daa6/rockspecs/$_rockspec")
-sha256sums=('d1ed32f091856f6fffab06232da79c48b437afd4cd89e5c1fc85d7905b011430'
-'a1c88310b5d5776c9f4c1ff4a934be497b03237c21d5aaf88422d1582b04af86')
-
-prepare() {
-   # Upstream forgot to commit this before tagging the release
-   cp "$_rockspec" "$_archive/rockspecs"
-}
-
-_package() {
-   cd "$_archive"
-   depends=("${pkgname%-*}")
-   luarocks --lua-version=$1 --tree="$pkgdir/usr/" \
-   make --deps-mode=none --no-manifest "rockspecs/$_rockspec"
-   install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
-}
-
-package_lua-bit32() {
-   _package 5.4
-}
-
-package_lua51-bit32() {
-   _package 5.1
-}
-
-package_lua52-bit32() {
-   _package 5.2
-}
-
-package_lua53-bit32() {
-   _package 5.3
-}

Copied: lua-bit32/repos/community-x86_64/PKGBUILD (from rev 1088090, 
lua-bit32/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-30 07:46:24 UTC (rev 1088091)
@@ -0,0 +1,55 @@
+# Maintainer: Caleb Maclennan 
+# Contributor: Stephen Smith 
+
+pkgbase=lua-bit32
+_rockname=${pkgbase#lua-}
+pkgname=("$pkgbase" "lua51-$_rockname" "lua52-$_rockname" "lua53-$_rockname")
+_compatrel=0.10
+pkgver=5.3.5.1_$_compatrel
+_rockrel=1
+pkgrel=2
+pkgdesc='Lua 5.2 bit manipulation library'
+arch=(x86_64)
+url='https://github.com/keplerproject/lua-compat-5.3'
+license=(MIT)
+makedepends=(lua
+ lua51
+ lua52
+ lua53
+ luarocks)
+_archive="lua-compat-5.3-$_compatrel"
+_rockspec="$_rockname-${pkgver%_*}-$_rockrel.rockspec"
+source=("$_archive.tar.gz::$url/archive/v$_compatrel.tar.gz"
+
"${url/github/raw.githubusercontent}/1e31f3ddc517b4e521c73f7d6eaecd5e1787daa6/rockspecs/$_rockspec")
+sha256sums=('d1ed32f091856f6fffab06232da79c48b437afd4cd89e5c1fc85d7905b011430'
+'a1c88310b5d5776c9f4c1ff4a934be497b03237c21d5aaf88422d1582b04af86')
+
+prepare() {
+   # Upstream forgot to commit this before tagging the release
+   cp "$_rockspec" "$_archive/rockspecs"
+}
+
+_package() {
+   cd "$_archive"
+   depends=("${pkgname%-*}")
+   luarocks --lua-version=$1 --tree="$pkgdir/usr/" \
+   LIBFLAG="$LDFLAGS -shared" \
+   make --deps-mode=none --no-manifest "rockspecs/$_rockspec"
+   install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
+}
+
+package_lua-bit32() {
+   _package 5.4
+}
+
+package_lua51-bit32() {
+   _package 5.1
+}
+
+package_lua52-bit32() {
+   _package 5.2
+}
+
+package_lua53-bit32() {
+   _package 5.3
+}



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

2021-12-29 Thread Caleb Maclennan via arch-commits
Date: Thursday, December 30, 2021 @ 07:45:44
  Author: alerque
Revision: 1088090

upgpkg: lua-bit32 5.3.5.1_0.10-2; Pass LDFLAGS to achieve FULL RELRO

Modified:
  lua-bit32/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-30 07:41:18 UTC (rev 1088089)
+++ PKGBUILD2021-12-30 07:45:44 UTC (rev 1088090)
@@ -7,7 +7,7 @@
 _compatrel=0.10
 pkgver=5.3.5.1_$_compatrel
 _rockrel=1
-pkgrel=1
+pkgrel=2
 pkgdesc='Lua 5.2 bit manipulation library'
 arch=(x86_64)
 url='https://github.com/keplerproject/lua-compat-5.3'
@@ -33,6 +33,7 @@
cd "$_archive"
depends=("${pkgname%-*}")
luarocks --lua-version=$1 --tree="$pkgdir/usr/" \
+   LIBFLAG="$LDFLAGS -shared" \
make --deps-mode=none --no-manifest "rockspecs/$_rockspec"
install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
 }



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

2021-12-29 Thread Caleb Maclennan via arch-commits
Date: Thursday, December 30, 2021 @ 07:41:18
  Author: alerque
Revision: 1088089

archrelease: copy trunk to community-x86_64

Added:
  lua-term/repos/community-x86_64/PKGBUILD
(from rev 1088088, lua-term/trunk/PKGBUILD)
Deleted:
  lua-term/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-30 07:40:24 UTC (rev 1088088)
+++ PKGBUILD2021-12-30 07:41:18 UTC (rev 1088089)
@@ -1,45 +0,0 @@
-# Maintainer: Caleb Maclennan 
-
-pkgbase=lua-term
-_rockname=${pkgbase#lua-}
-pkgname=("$pkgbase" "lua51-$_rockname" "lua52-$_rockname" "lua53-$_rockname")
-pkgver=0.7
-_pkgver=0.07
-_rockrel=1
-pkgrel=5
-pkgdesc='Terminal functions for Lua'
-arch=(x86_64)
-url="https://github.com/hoelzro/$pkgbase";
-license=(MIT)
-makedepends=(lua
- lua51
- lua52
- lua53
- luarocks)
-_archive="$pkgbase-$_pkgver"
-source=("$_archive.tgz::$url/archive/$_pkgver.tar.gz")
-sha256sums=('c1a1d0c57107147ea02878a50b768d1c3c13aca2769b026c5bb7a84119607f30')
-
-_package() {
-   cd "$_archive"
-   depends=("${pkgname%-*}")
-   luarocks --lua-version="$1" --tree="$pkgdir/usr/" \
-   make --deps-mode=none --no-manifest 
"$pkgbase-$pkgver-$_rockrel.rockspec"
-   install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" COPYING
-}
-
-package_lua-term() {
-   _package 5.4
-}
-
-package_lua51-term() {
-   _package 5.1
-}
-
-package_lua52-term() {
-   _package 5.2
-}
-
-package_lua53-term() {
-   _package 5.3
-}

Copied: lua-term/repos/community-x86_64/PKGBUILD (from rev 1088088, 
lua-term/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-30 07:41:18 UTC (rev 1088089)
@@ -0,0 +1,46 @@
+# Maintainer: Caleb Maclennan 
+
+pkgbase=lua-term
+_rockname=${pkgbase#lua-}
+pkgname=("$pkgbase" "lua51-$_rockname" "lua52-$_rockname" "lua53-$_rockname")
+pkgver=0.7
+_pkgver=0.07
+_rockrel=1
+pkgrel=6
+pkgdesc='Terminal functions for Lua'
+arch=(x86_64)
+url="https://github.com/hoelzro/$pkgbase";
+license=(MIT)
+makedepends=(lua
+ lua51
+ lua52
+ lua53
+ luarocks)
+_archive="$pkgbase-$_pkgver"
+source=("$_archive.tgz::$url/archive/$_pkgver.tar.gz")
+sha256sums=('c1a1d0c57107147ea02878a50b768d1c3c13aca2769b026c5bb7a84119607f30')
+
+_package() {
+   cd "$_archive"
+   depends=("${pkgname%-*}")
+   luarocks --lua-version="$1" --tree="$pkgdir/usr/" \
+   LIBFLAG="$LDFLAGS -shared" \
+   make --deps-mode=none --no-manifest 
"$pkgbase-$pkgver-$_rockrel.rockspec"
+   install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" COPYING
+}
+
+package_lua-term() {
+   _package 5.4
+}
+
+package_lua51-term() {
+   _package 5.1
+}
+
+package_lua52-term() {
+   _package 5.2
+}
+
+package_lua53-term() {
+   _package 5.3
+}



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

2021-12-29 Thread Caleb Maclennan via arch-commits
Date: Thursday, December 30, 2021 @ 07:40:24
  Author: alerque
Revision: 1088088

upgpkg: lua-term 0.7-6; Pass LDFLAGS to achieve FULL RELRO

Modified:
  lua-term/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-30 06:39:41 UTC (rev 1088087)
+++ PKGBUILD2021-12-30 07:40:24 UTC (rev 1088088)
@@ -6,7 +6,7 @@
 pkgver=0.7
 _pkgver=0.07
 _rockrel=1
-pkgrel=5
+pkgrel=6
 pkgdesc='Terminal functions for Lua'
 arch=(x86_64)
 url="https://github.com/hoelzro/$pkgbase";
@@ -24,6 +24,7 @@
cd "$_archive"
depends=("${pkgname%-*}")
luarocks --lua-version="$1" --tree="$pkgdir/usr/" \
+   LIBFLAG="$LDFLAGS -shared" \
make --deps-mode=none --no-manifest 
"$pkgbase-$pkgver-$_rockrel.rockspec"
install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" COPYING
 }



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

2021-12-29 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 30, 2021 @ 06:39:41
  Author: polyzen
Revision: 1088087

archrelease: copy trunk to community-any

Added:
  pyright/repos/community-any/PKGBUILD
(from rev 1088086, pyright/trunk/PKGBUILD)
Deleted:
  pyright/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-30 06:37:21 UTC (rev 1088086)
+++ PKGBUILD2021-12-30 06:39:41 UTC (rev 1088087)
@@ -1,40 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Kaizhao Zhang 
-
-pkgname=pyright
-pkgver=1.1.201
-pkgrel=1
-pkgdesc='Type checker for the Python language'
-arch=('any')
-url=https://github.com/microsoft/pyright
-license=('MIT')
-depends=('nodejs>=12')
-makedepends=('npm')
-source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz")
-b2sums=('819f516e604a970fbd062e918ca5025db73a5121b03d61bc1ebdf60d9ec8beb73f474e82841e2f3d5e1a4dfac4c995c90edf58b27fb077d8be96bed6f5b1e2bc')
-
-prepare() {
-  cd $pkgname-$pkgver
-  npm ci
-}
-
-build() {
-  cd $pkgname-$pkgver/packages/$pkgname
-  npm run build
-}
-
-package() {
-  install -d "$pkgdir"/usr/{bin,lib/node_modules/$pkgname,share/doc/$pkgname}
-  ln -s ../lib/node_modules/$pkgname/index.js "$pkgdir"/usr/bin/$pkgname
-  ln -s ../lib/node_modules/$pkgname/langserver.index.js \
-"$pkgdir"/usr/bin/$pkgname-langserver
-
-  cd $pkgname-$pkgver
-  cp -r {CONTRIBUTING,README}.md docs "$pkgdir"/usr/share/doc/$pkgname
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE.txt
-
-  cd packages/$pkgname
-  cp -r dist {,langserver.}index.js "$pkgdir"/usr/lib/node_modules/$pkgname
-}
-
-# vim:set ts=2 sw=2 et:

Copied: pyright/repos/community-any/PKGBUILD (from rev 1088086, 
pyright/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-30 06:39:41 UTC (rev 1088087)
@@ -0,0 +1,40 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Kaizhao Zhang 
+
+pkgname=pyright
+pkgver=1.1.202
+pkgrel=1
+pkgdesc='Type checker for the Python language'
+arch=('any')
+url=https://github.com/microsoft/pyright
+license=('MIT')
+depends=('nodejs>=12')
+makedepends=('npm')
+source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz")
+b2sums=('3528f1fb4425c374046fbc4e5ec66e99e93fc19a66c146af2d78bc3674f3aedc4c68ee0a26425808274c50966896911eed80146e3ea21052ac472858d80606fc')
+
+prepare() {
+  cd $pkgname-$pkgver
+  npm ci
+}
+
+build() {
+  cd $pkgname-$pkgver/packages/$pkgname
+  npm run build
+}
+
+package() {
+  install -d "$pkgdir"/usr/{bin,lib/node_modules/$pkgname,share/doc/$pkgname}
+  ln -s ../lib/node_modules/$pkgname/index.js "$pkgdir"/usr/bin/$pkgname
+  ln -s ../lib/node_modules/$pkgname/langserver.index.js \
+"$pkgdir"/usr/bin/$pkgname-langserver
+
+  cd $pkgname-$pkgver
+  cp -r {CONTRIBUTING,README}.md docs "$pkgdir"/usr/share/doc/$pkgname
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE.txt
+
+  cd packages/$pkgname
+  cp -r dist {,langserver.}index.js "$pkgdir"/usr/lib/node_modules/$pkgname
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-12-29 Thread George Rawlinson via arch-commits
Date: Thursday, December 30, 2021 @ 06:37:21
  Author: grawlinson
Revision: 1088086

upgpkg: kicad

Add additional contributors.

Modified:
  kicad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-30 06:36:37 UTC (rev 1088085)
+++ PKGBUILD2021-12-30 06:37:21 UTC (rev 1088086)
@@ -1,6 +1,8 @@
 # Maintainer: Filipe Laíns 
 # Maintainer: George Rawlinson 
 # Contributor: Kyle Keen 
+# Contributor: Marq Schneider 
+# Contributor: Nick Østergaard
 # Contributor: Rachel Mant 
 
 pkgname=kicad



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

2021-12-29 Thread George Rawlinson via arch-commits
Date: Thursday, December 30, 2021 @ 06:36:37
  Author: grawlinson
Revision: 1088085

upgpkg: kicad-library

Add contributors.

Modified:
  kicad-library/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-30 06:35:34 UTC (rev 1088084)
+++ PKGBUILD2021-12-30 06:36:37 UTC (rev 1088085)
@@ -1,4 +1,6 @@
 # Maintainer: Filipe Laíns 
+# Maintainer: George Rawlinson 
+# Contributor: Kyle Keen 
 # Contributor: Rachel Mant 
 
 pkgbase=kicad-library



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

2021-12-29 Thread George Rawlinson via arch-commits
Date: Thursday, December 30, 2021 @ 06:35:34
  Author: grawlinson
Revision: 1088084

upgpkg: kicad

Add contributors.

Modified:
  kicad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-30 06:12:49 UTC (rev 1088083)
+++ PKGBUILD2021-12-30 06:35:34 UTC (rev 1088084)
@@ -1,4 +1,6 @@
 # Maintainer: Filipe Laíns 
+# Maintainer: George Rawlinson 
+# Contributor: Kyle Keen 
 # Contributor: Rachel Mant 
 
 pkgname=kicad



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

2021-12-29 Thread Daniel M. Capella via arch-commits
Date: Thursday, December 30, 2021 @ 06:12:49
  Author: polyzen
Revision: 1088083

upgpkg: pyright 1.1.202-1

Modified:
  pyright/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-30 01:39:35 UTC (rev 1088082)
+++ PKGBUILD2021-12-30 06:12:49 UTC (rev 1088083)
@@ -2,7 +2,7 @@
 # Contributor: Kaizhao Zhang 
 
 pkgname=pyright
-pkgver=1.1.201
+pkgver=1.1.202
 pkgrel=1
 pkgdesc='Type checker for the Python language'
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('nodejs>=12')
 makedepends=('npm')
 source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz")
-b2sums=('819f516e604a970fbd062e918ca5025db73a5121b03d61bc1ebdf60d9ec8beb73f474e82841e2f3d5e1a4dfac4c995c90edf58b27fb077d8be96bed6f5b1e2bc')
+b2sums=('3528f1fb4425c374046fbc4e5ec66e99e93fc19a66c146af2d78bc3674f3aedc4c68ee0a26425808274c50966896911eed80146e3ea21052ac472858d80606fc')
 
 prepare() {
   cd $pkgname-$pkgver



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

2021-12-29 Thread Christian Rebischke via arch-commits
Date: Thursday, December 30, 2021 @ 01:39:35
  Author: shibumi
Revision: 1088082

archrelease: copy trunk to community-x86_64

Added:
  rclone/repos/community-x86_64/PKGBUILD
(from rev 1088081, rclone/trunk/PKGBUILD)
Deleted:
  rclone/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-30 01:37:14 UTC (rev 1088081)
+++ PKGBUILD2021-12-30 01:39:35 UTC (rev 1088082)
@@ -1,52 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Morten Linderud 
-
-pkgname=rclone
-pkgver=1.57.0
-pkgrel=1
-pkgdesc="Sync files to and from Google Drive, S3, Swift, Cloudfiles, Dropbox 
and Google Cloud Storage"
-arch=('x86_64')
-url="https://rclone.org/";
-license=('MIT')
-depends=('glibc')
-optdepends=('fuse2: for rclone mount')
-makedepends=('python' 'pandoc' 'go' 'git' 'fuse2')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/rclone/rclone/archive/v$pkgver.tar.gz";)
-sha512sums=('d0428263b8ee1779f96176574dc17adb73668d56b9dcf6894a0aae4db2990148d785226defa520143df788d4401e1f297faa5c5c645d3c8503c796c06a1d3229')
-options=(!lto)
-
-prepare() {
-  cd "rclone-$pkgver"
-  sed -i "1s/python$/&2/" bin/make_manual.py bin/make_backend_docs.py
-}
-
-build() {
-  cd "rclone-$pkgver"
-  export GOFLAGS="-buildmode=pie -trimpath"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  PATH="/build/go/bin:$PATH" make TAG=v$pkgver rclone rclone.1 || true
-  PATH="/build/go/bin:$PATH" rclone genautocomplete bash rclone.bash_completion
-  PATH="/build/go/bin:$PATH" rclone genautocomplete zsh rclone.zsh_completion
-}
-
-check() {
-  cd "rclone-$pkgver"
-  PATH="/build/go/bin:$PATH" make TAG=v$pkgver test
-}
-
-package() {
-  cd "rclone-$pkgver"
-
-  install -Dm755 rclone "$pkgdir"/usr/bin/rclone
-
-  install -Dm644 rclone.bash_completion 
"$pkgdir"/usr/share/bash-completion/completions/rclone
-  install -Dm644 rclone.zsh_completion 
"$pkgdir"/usr/share/zsh/site-functions/_rclone
-
-  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
-
-  install -Dm644 rclone.1 "$pkgdir"/usr/share/man/man1/rclone.1
-  install -d "$pkgdir"/usr/share/doc/$pkgname
-  install -t "$pkgdir"/usr/share/doc/$pkgname -m644 MANUAL.html MANUAL.txt
-}

Copied: rclone/repos/community-x86_64/PKGBUILD (from rev 1088081, 
rclone/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-30 01:39:35 UTC (rev 1088082)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Maintainer: Morten Linderud 
+
+pkgname=rclone
+pkgver=1.57.0
+pkgrel=2
+pkgdesc="Sync files to and from Google Drive, S3, Swift, Cloudfiles, Dropbox 
and Google Cloud Storage"
+arch=('x86_64')
+url="https://rclone.org/";
+license=('MIT')
+depends=('glibc')
+optdepends=('fuse2: for rclone mount')
+makedepends=('python' 'pandoc' 'go' 'git' 'fuse2')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/rclone/rclone/archive/v$pkgver.tar.gz";)
+sha512sums=('d0428263b8ee1779f96176574dc17adb73668d56b9dcf6894a0aae4db2990148d785226defa520143df788d4401e1f297faa5c5c645d3c8503c796c06a1d3229')
+options=(!lto)
+
+prepare() {
+  cd "rclone-$pkgver"
+  sed -i "1s/python$/&2/" bin/make_manual.py bin/make_backend_docs.py
+}
+
+build() {
+  cd "rclone-$pkgver"
+  export GOFLAGS="-buildmode=pie -trimpath"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  PATH="/build/go/bin:$PATH" make TAG=v$pkgver rclone rclone.1 || true
+  PATH="/build/go/bin:$PATH" rclone genautocomplete bash rclone.bash_completion
+  PATH="/build/go/bin:$PATH" rclone genautocomplete zsh rclone.zsh_completion
+}
+
+check() {
+  cd "rclone-$pkgver"
+  PATH="/build/go/bin:$PATH" make TAG=v$pkgver test
+}
+
+package() {
+  cd "rclone-$pkgver"
+
+  install -Dm755 rclone "$pkgdir"/usr/bin/rclone
+
+  install -Dm644 rclone.bash_completion 
"$pkgdir"/usr/share/bash-completion/completions/rclone
+  install -Dm644 rclone.zsh_completion 
"$pkgdir"/usr/share/zsh/site-functions/_rclone
+
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+
+  install -Dm644 rclone.1 "$pkgdir"/usr/share/man/man1/rclone.1
+  install -d "$pkgdir"/usr/share/doc/$pkgname
+  install -t "$pkgdir"/usr/share/doc/$pkgname -m644 MANUAL.html MANUAL.txt
+}



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

2021-12-29 Thread Christian Rebischke via arch-commits
Date: Thursday, December 30, 2021 @ 01:37:14
  Author: shibumi
Revision: 1088081

upgpkg: rclone 1.57.0-2

Modified:
  rclone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-30 01:28:49 UTC (rev 1088080)
+++ PKGBUILD2021-12-30 01:37:14 UTC (rev 1088081)
@@ -3,7 +3,7 @@
 
 pkgname=rclone
 pkgver=1.57.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Sync files to and from Google Drive, S3, Swift, Cloudfiles, Dropbox 
and Google Cloud Storage"
 arch=('x86_64')
 url="https://rclone.org/";



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

2021-12-29 Thread Christian Rebischke via arch-commits
Date: Thursday, December 30, 2021 @ 01:28:49
  Author: shibumi
Revision: 1088080

archrelease: copy trunk to community-x86_64

Added:
  rclone/repos/community-x86_64/PKGBUILD
(from rev 1088079, rclone/trunk/PKGBUILD)
Deleted:
  rclone/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-30 01:28:42 UTC (rev 1088079)
+++ PKGBUILD2021-12-30 01:28:49 UTC (rev 1088080)
@@ -1,51 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Morten Linderud 
-
-pkgname=rclone
-pkgver=1.57.0
-pkgrel=1
-pkgdesc="Sync files to and from Google Drive, S3, Swift, Cloudfiles, Dropbox 
and Google Cloud Storage"
-arch=('x86_64')
-url="https://rclone.org/";
-license=('MIT')
-depends=('glibc')
-optdepends=('fuse2: for rclone mount')
-makedepends=('python' 'pandoc' 'go' 'git' 'fuse2')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/rclone/rclone/archive/v$pkgver.tar.gz";)
-sha512sums=('d0428263b8ee1779f96176574dc17adb73668d56b9dcf6894a0aae4db2990148d785226defa520143df788d4401e1f297faa5c5c645d3c8503c796c06a1d3229')
-
-prepare() {
-  cd "rclone-$pkgver"
-  sed -i "1s/python$/&2/" bin/make_manual.py bin/make_backend_docs.py
-}
-
-build() {
-  cd "rclone-$pkgver"
-  export GOFLAGS="-buildmode=pie -trimpath"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  PATH="/build/go/bin:$PATH" make TAG=v$pkgver rclone rclone.1 || true
-  PATH="/build/go/bin:$PATH" rclone genautocomplete bash rclone.bash_completion
-  PATH="/build/go/bin:$PATH" rclone genautocomplete zsh rclone.zsh_completion
-}
-
-check() {
-  cd "rclone-$pkgver"
-  PATH="/build/go/bin:$PATH" make TAG=v$pkgver test
-}
-
-package() {
-  cd "rclone-$pkgver"
-
-  install -Dm755 rclone "$pkgdir"/usr/bin/rclone
-
-  install -Dm644 rclone.bash_completion 
"$pkgdir"/usr/share/bash-completion/completions/rclone
-  install -Dm644 rclone.zsh_completion 
"$pkgdir"/usr/share/zsh/site-functions/_rclone
-
-  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
-
-  install -Dm644 rclone.1 "$pkgdir"/usr/share/man/man1/rclone.1
-  install -d "$pkgdir"/usr/share/doc/$pkgname
-  install -t "$pkgdir"/usr/share/doc/$pkgname -m644 MANUAL.html MANUAL.txt
-}

Copied: rclone/repos/community-x86_64/PKGBUILD (from rev 1088079, 
rclone/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-30 01:28:49 UTC (rev 1088080)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Maintainer: Morten Linderud 
+
+pkgname=rclone
+pkgver=1.57.0
+pkgrel=1
+pkgdesc="Sync files to and from Google Drive, S3, Swift, Cloudfiles, Dropbox 
and Google Cloud Storage"
+arch=('x86_64')
+url="https://rclone.org/";
+license=('MIT')
+depends=('glibc')
+optdepends=('fuse2: for rclone mount')
+makedepends=('python' 'pandoc' 'go' 'git' 'fuse2')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/rclone/rclone/archive/v$pkgver.tar.gz";)
+sha512sums=('d0428263b8ee1779f96176574dc17adb73668d56b9dcf6894a0aae4db2990148d785226defa520143df788d4401e1f297faa5c5c645d3c8503c796c06a1d3229')
+options=(!lto)
+
+prepare() {
+  cd "rclone-$pkgver"
+  sed -i "1s/python$/&2/" bin/make_manual.py bin/make_backend_docs.py
+}
+
+build() {
+  cd "rclone-$pkgver"
+  export GOFLAGS="-buildmode=pie -trimpath"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  PATH="/build/go/bin:$PATH" make TAG=v$pkgver rclone rclone.1 || true
+  PATH="/build/go/bin:$PATH" rclone genautocomplete bash rclone.bash_completion
+  PATH="/build/go/bin:$PATH" rclone genautocomplete zsh rclone.zsh_completion
+}
+
+check() {
+  cd "rclone-$pkgver"
+  PATH="/build/go/bin:$PATH" make TAG=v$pkgver test
+}
+
+package() {
+  cd "rclone-$pkgver"
+
+  install -Dm755 rclone "$pkgdir"/usr/bin/rclone
+
+  install -Dm644 rclone.bash_completion 
"$pkgdir"/usr/share/bash-completion/completions/rclone
+  install -Dm644 rclone.zsh_completion 
"$pkgdir"/usr/share/zsh/site-functions/_rclone
+
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+
+  install -Dm644 rclone.1 "$pkgdir"/usr/share/man/man1/rclone.1
+  install -d "$pkgdir"/usr/share/doc/$pkgname
+  install -t "$pkgdir"/usr/share/doc/$pkgname -m644 MANUAL.html MANUAL.txt
+}



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

2021-12-29 Thread Christian Rebischke via arch-commits
Date: Thursday, December 30, 2021 @ 01:28:42
  Author: shibumi
Revision: 1088079

upgpkg: rclone 1.57.0-1 fix: disable lto

Modified:
  rclone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-30 00:57:31 UTC (rev 1088078)
+++ PKGBUILD2021-12-30 01:28:42 UTC (rev 1088079)
@@ -13,6 +13,7 @@
 makedepends=('python' 'pandoc' 'go' 'git' 'fuse2')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/rclone/rclone/archive/v$pkgver.tar.gz";)
 
sha512sums=('d0428263b8ee1779f96176574dc17adb73668d56b9dcf6894a0aae4db2990148d785226defa520143df788d4401e1f297faa5c5c645d3c8503c796c06a1d3229')
+options=(!lto)
 
 prepare() {
   cd "rclone-$pkgver"



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Thursday, December 30, 2021 @ 00:57:31
  Author: felixonmars
Revision: 1088078

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 1088077, git-annex/trunk/PKGBUILD)

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

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 1088077, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-30 00:57:31 UTC (rev 1088078)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=8.20210803
+pkgrel=71
+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-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 git-annex/trunk (PKGBUILD)

2021-12-29 Thread Felix Yan via arch-commits
Date: Thursday, December 30, 2021 @ 00:57:23
  Author: felixonmars
Revision: 1088077

upgpkg: git-annex 8.20210803-71: rebuild with dbus 1.2.22

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-30 00:54:26 UTC (rev 1088076)
+++ PKGBUILD2021-12-30 00:57:23 UTC (rev 1088077)
@@ -3,7 +3,7 @@
 
 pkgname=git-annex
 pkgver=8.20210803
-pkgrel=70
+pkgrel=71
 pkgdesc="Manage files with git, without checking their contents into git"
 url="https://git-annex.branchable.com/";
 license=("AGPL3")



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Thursday, December 30, 2021 @ 00:54:26
  Author: felixonmars
Revision: 1088076

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-dbus-hslogger/repos/community-staging-x86_64/
  haskell-dbus-hslogger/repos/community-staging-x86_64/PKGBUILD
(from rev 1088075, haskell-dbus-hslogger/trunk/PKGBUILD)

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

Copied: haskell-dbus-hslogger/repos/community-staging-x86_64/PKGBUILD (from rev 
1088075, haskell-dbus-hslogger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-30 00:54:26 UTC (rev 1088076)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=dbus-hslogger
+pkgname=haskell-dbus-hslogger
+pkgver=0.1.0.1
+pkgrel=267
+pkgdesc="Expose a dbus server to control hslogger"
+url="https://github.com/IvanMalison/dbus-hslogger";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-dbus' 'haskell-hslogger' 
'haskell-optparse-applicative')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('34d3d2f9f99f99671bb3cf11eefa0f347918b4cfb69d2188be985e5abf2867d1b33b6473bb8e311f67426778f2611e008a78e99bd2d2e1f5a2c25b7ab5568d1f')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-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-dbus-hslogger/trunk (PKGBUILD)

2021-12-29 Thread Felix Yan via arch-commits
Date: Thursday, December 30, 2021 @ 00:54:18
  Author: felixonmars
Revision: 1088075

upgpkg: haskell-dbus-hslogger 0.1.0.1-267: rebuild with dbus 1.2.22

Modified:
  haskell-dbus-hslogger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-30 00:53:35 UTC (rev 1088074)
+++ PKGBUILD2021-12-30 00:54:18 UTC (rev 1088075)
@@ -3,7 +3,7 @@
 _hkgname=dbus-hslogger
 pkgname=haskell-dbus-hslogger
 pkgver=0.1.0.1
-pkgrel=266
+pkgrel=267
 pkgdesc="Expose a dbus server to control hslogger"
 url="https://github.com/IvanMalison/dbus-hslogger";
 license=('BSD')



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Thursday, December 30, 2021 @ 00:53:35
  Author: felixonmars
Revision: 1088074

archrelease: copy trunk to community-staging-x86_64

Added:
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 1088073, xmobar/trunk/PKGBUILD)

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

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 1088073, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-30 00:53:35 UTC (rev 1088074)
@@ -0,0 +1,69 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jelle van der Waa 
+# Contributer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.39
+pkgrel=45
+pkgdesc='Minimalistic Text Based Status Bar'
+url='https://hackage.haskell.org/package/xmobar'
+license=('BSD')
+arch=('x86_64')
+depends=('libxft' 'libxinerama' 'libxrandr' 'libxpm' 'ghc-libs' 'haskell-x11'
+ 'haskell-x11-xft' 'haskell-utf8-string' 'haskell-network-uri'
+ 'haskell-hinotify' 'haskell-parsec-numbers'
+ 'haskell-regex-compat' 'haskell-old-locale'
+ 'haskell-http' 'haskell-dbus' 'haskell-libmpd' 'haskell-cereal' 
'haskell-netlink'
+ 'haskell-async' 'haskell-aeson'
+ 'haskell-timezone-olson' 'haskell-timezone-series' 'alsa-lib'
+ 'haskell-extensible-exceptions' 'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-http-client-tls' 'haskell-alsa-core' 
'haskell-alsa-mixer')
+makedepends=('ghc' 'uusi' 'haskell-hspec' 'haskell-temporary')
+source=(https://github.com/jaor/xmobar/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('a47d7cf16fdea4bece1d622db1c2ac76acc9d9369043eec6ff41a22c1f59c9757932fbcebfe804a636c783e9a66317bb3aaf72edc4a373c48e7db3c9292d9658')
+
+prepare() {
+  cd xmobar-${pkgver}
+  uusi -u base xmobar.cabal
+}
+
+build() {
+  cd xmobar-${pkgver}
+
+  _flags=(with_xft with_utf8 with_inotify with_mpd with_alsa with_nl80211
+  with_datezone with_mpris with_dbus with_xpm with_threaded
+  with_rtsopts with_weather)
+
+  runhaskell setup configure -O \
+--enable-shared \
+--enable-executable-dynamic \
+--disable-library-vanilla \
+--prefix=/usr \
+--dynlibdir=/usr/lib \
+--libsubdir=\$compiler/site-local/\$pkgid --ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie' \
+--flags="${_flags[*]}" \
+--enable-tests
+  runhaskell setup build
+  runhaskell setup register --gen-script
+  runhaskell setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd xmobar-${pkgver}
+  runhaskell setup test
+}
+
+package() {
+  cd xmobar-${pkgver}
+  install -Dm 744 register.sh   
"${pkgdir}/usr/share/haskell/register/xmobar.sh"
+  install -Dm 744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/xmobar.sh"
+  runhaskell setup copy --destdir="${pkgdir}"
+  install -Dm 644 license -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Thursday, December 30, 2021 @ 00:53:27
  Author: felixonmars
Revision: 1088073

upgpkg: xmobar 0.39-45: rebuild with dbus 1.2.22

Modified:
  xmobar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-30 00:51:49 UTC (rev 1088072)
+++ PKGBUILD2021-12-30 00:53:27 UTC (rev 1088073)
@@ -5,7 +5,7 @@
 
 pkgname=xmobar
 pkgver=0.39
-pkgrel=44
+pkgrel=45
 pkgdesc='Minimalistic Text Based Status Bar'
 url='https://hackage.haskell.org/package/xmobar'
 license=('BSD')



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

2021-12-29 Thread Christian Rebischke via arch-commits
Date: Thursday, December 30, 2021 @ 00:51:44
  Author: shibumi
Revision: 1088071

upgpkg: goreleaser 1.2.3-1 fix: reproducibility

Modified:
  goreleaser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-30 00:51:03 UTC (rev 1088070)
+++ PKGBUILD2021-12-30 00:51:44 UTC (rev 1088071)
@@ -2,7 +2,7 @@
 # Contributor: Fernandez Ludovic 
 
 pkgname='goreleaser'
-pkgver=1.2.2
+pkgver=1.2.3
 pkgrel=1
 pkgdesc='Deliver Go binaries as fast and easily as possible'
 url='https://goreleaser.com'
@@ -11,8 +11,8 @@
 depends=('glibc')
 makedepends=('git' 'go')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/goreleaser/goreleaser/archive/v${pkgver}.tar.gz";)
-sha512sums=('388da49be65421ffd96981d8b51cf473766feb353b46ee273580d24ec56c18d07046e3e34086860e5af5a1c0b8882b5de9392d96a1b9b62364a931ffb2266ee2')
-b2sums=('7dabf72ddfa872f86187cc60aaa054bd3b8d3bed28f7a509f851dd95967413c08fa0fd8d58a2feb71e8d91175e74441f46ee706ce90a0f1d183711ea3fb3483f')
+sha512sums=('cdd16a7037fc572d07ba8a7e23a5d2faab0e7e01bbf3fe7e34726832fe273420abd3f0d010c25049f40700218d13e290837ab4fd454f12a08a14b80f9e2fd0ae')
+b2sums=('ed60234b16e08afa49f9d46788976f64e842e6480e7242306889799eb791a178ebc645a3eeb4032a04fa86364dc7e5a8cc17f08b3693ae6698b772a6cb5d4b09')
 
 build() {
   cd "${pkgname}-${pkgver}"
@@ -21,7 +21,7 @@
   export CGO_CXXFLAGS="${CXXFLAGS}"
   export CGO_LDFLAGS="${LDFLAGS}"
   export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-  go build -ldflags="-w -s -linkmode=external -X main.version=${pkgver}" .
+  go build -ldflags="-w -s -buildid='' -linkmode=external -X 
main.version=${pkgver}" .
   chmod +x ./goreleaser
 }
 



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Thursday, December 30, 2021 @ 00:51:03
  Author: felixonmars
Revision: 1088070

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-fdo-notify/repos/community-staging-x86_64/
  haskell-fdo-notify/repos/community-staging-x86_64/PKGBUILD
(from rev 1088069, haskell-fdo-notify/trunk/PKGBUILD)

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

Copied: haskell-fdo-notify/repos/community-staging-x86_64/PKGBUILD (from rev 
1088069, haskell-fdo-notify/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-30 00:51:03 UTC (rev 1088070)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=fdo-notify
+pkgname=haskell-fdo-notify
+pkgver=0.3.1
+pkgrel=517
+pkgdesc="Desktop Notifications client"
+url="https://bitbucket.org/taejo/fdo-notify/";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-dbus")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('d9193899d5eebd7c36e9464571827bd5b560fcc156e89822877b3b67a1f376c7abea9958f7e0aa6f79da06ad5f35a8738ad30a40d447b64ad557ed341054e6b6')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--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
+}
+
+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 goreleaser/repos/community-x86_64 (PKGBUILD PKGBUILD)

2021-12-29 Thread Christian Rebischke via arch-commits
Date: Thursday, December 30, 2021 @ 00:51:49
  Author: shibumi
Revision: 1088072

archrelease: copy trunk to community-x86_64

Added:
  goreleaser/repos/community-x86_64/PKGBUILD
(from rev 1088071, goreleaser/trunk/PKGBUILD)
Deleted:
  goreleaser/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-30 00:51:44 UTC (rev 1088071)
+++ PKGBUILD2021-12-30 00:51:49 UTC (rev 1088072)
@@ -1,37 +0,0 @@
-# Maintainer : Christian Rebischke 
-# Contributor: Fernandez Ludovic 
-
-pkgname='goreleaser'
-pkgver=1.2.2
-pkgrel=1
-pkgdesc='Deliver Go binaries as fast and easily as possible'
-url='https://goreleaser.com'
-arch=('x86_64')
-license=('MIT')
-depends=('glibc')
-makedepends=('git' 'go')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/goreleaser/goreleaser/archive/v${pkgver}.tar.gz";)
-sha512sums=('388da49be65421ffd96981d8b51cf473766feb353b46ee273580d24ec56c18d07046e3e34086860e5af5a1c0b8882b5de9392d96a1b9b62364a931ffb2266ee2')
-b2sums=('7dabf72ddfa872f86187cc60aaa054bd3b8d3bed28f7a509f851dd95967413c08fa0fd8d58a2feb71e8d91175e74441f46ee706ce90a0f1d183711ea3fb3483f')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-  go build -ldflags="-w -s -linkmode=external -X main.version=${pkgver}" .
-  chmod +x ./goreleaser
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  install -Dsm755 ./goreleaser "${pkgdir}/usr/bin/goreleaser"
-  mkdir -p "${pkgdir}/usr/share/bash-completion/completions/"
-  mkdir -p "${pkgdir}/usr/share/zsh/site-functions/"
-  mkdir -p "${pkgdir}/usr/share/fish/vendor_completions.d/"
-  ./goreleaser completion bash > 
"${pkgdir}/usr/share/bash-completion/completions/goreleaser"
-  ./goreleaser completion zsh > 
"${pkgdir}/usr/share/zsh/site-functions/_goreleaser"
-  ./goreleaser completion fish > 
"${pkgdir}/usr/share/fish/vendor_completions.d/goreleaser.fish"
-}

Copied: goreleaser/repos/community-x86_64/PKGBUILD (from rev 1088071, 
goreleaser/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-30 00:51:49 UTC (rev 1088072)
@@ -0,0 +1,37 @@
+# Maintainer : Christian Rebischke 
+# Contributor: Fernandez Ludovic 
+
+pkgname='goreleaser'
+pkgver=1.2.3
+pkgrel=1
+pkgdesc='Deliver Go binaries as fast and easily as possible'
+url='https://goreleaser.com'
+arch=('x86_64')
+license=('MIT')
+depends=('glibc')
+makedepends=('git' 'go')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/goreleaser/goreleaser/archive/v${pkgver}.tar.gz";)
+sha512sums=('cdd16a7037fc572d07ba8a7e23a5d2faab0e7e01bbf3fe7e34726832fe273420abd3f0d010c25049f40700218d13e290837ab4fd454f12a08a14b80f9e2fd0ae')
+b2sums=('ed60234b16e08afa49f9d46788976f64e842e6480e7242306889799eb791a178ebc645a3eeb4032a04fa86364dc7e5a8cc17f08b3693ae6698b772a6cb5d4b09')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  go build -ldflags="-w -s -buildid='' -linkmode=external -X 
main.version=${pkgver}" .
+  chmod +x ./goreleaser
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dsm755 ./goreleaser "${pkgdir}/usr/bin/goreleaser"
+  mkdir -p "${pkgdir}/usr/share/bash-completion/completions/"
+  mkdir -p "${pkgdir}/usr/share/zsh/site-functions/"
+  mkdir -p "${pkgdir}/usr/share/fish/vendor_completions.d/"
+  ./goreleaser completion bash > 
"${pkgdir}/usr/share/bash-completion/completions/goreleaser"
+  ./goreleaser completion zsh > 
"${pkgdir}/usr/share/zsh/site-functions/_goreleaser"
+  ./goreleaser completion fish > 
"${pkgdir}/usr/share/fish/vendor_completions.d/goreleaser.fish"
+}



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Thursday, December 30, 2021 @ 00:50:55
  Author: felixonmars
Revision: 1088069

upgpkg: haskell-fdo-notify 0.3.1-517: rebuild with dbus 1.2.22

Modified:
  haskell-fdo-notify/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-30 00:50:08 UTC (rev 1088068)
+++ PKGBUILD2021-12-30 00:50:55 UTC (rev 1088069)
@@ -4,7 +4,7 @@
 _hkgname=fdo-notify
 pkgname=haskell-fdo-notify
 pkgver=0.3.1
-pkgrel=516
+pkgrel=517
 pkgdesc="Desktop Notifications client"
 url="https://bitbucket.org/taejo/fdo-notify/";
 license=("BSD")



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Thursday, December 30, 2021 @ 00:50:08
  Author: felixonmars
Revision: 1088068

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-dbus/repos/community-staging-x86_64/PKGBUILD (from rev 1088067, 
haskell-dbus/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-30 00:50:08 UTC (rev 1088068)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=dbus
+pkgname=haskell-dbus
+pkgver=1.2.22
+pkgrel=1
+pkgdesc="A client library for the D-Bus IPC system"
+url="https://john-millikin.com/software/haskell-dbus/";
+license=("GPL3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-cereal' 'haskell-conduit' 'haskell-lens'
+ 'haskell-network' 'haskell-random' 'haskell-split' 'haskell-th-lift'
+ 'haskell-vector' 'haskell-xml-conduit' 'haskell-xml-types')
+makedepends=('ghc' 'haskell-extra' 'haskell-quickcheck' 'haskell-resourcet' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+checkdepends=('dbus')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('81f9fe1420939ebb5b03602ba59dd86656e4443690d8be460684dcb461ff7df1ff4cdf846a5a15ea6193b6f64b08526b27d3e12825a375eecbded3d0a99a59b9')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-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 || : # 
https://github.com/rblaze/haskell-dbus/issues/51
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/license.txt"
+}



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Thursday, December 30, 2021 @ 00:49:59
  Author: felixonmars
Revision: 1088067

upgpkg: haskell-dbus 1.2.22-1: rebuild with dbus 1.2.22

Modified:
  haskell-dbus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-30 00:47:27 UTC (rev 1088066)
+++ PKGBUILD2021-12-30 00:49:59 UTC (rev 1088067)
@@ -3,8 +3,8 @@
 
 _hkgname=dbus
 pkgname=haskell-dbus
-pkgver=1.2.21
-pkgrel=88
+pkgver=1.2.22
+pkgrel=1
 pkgdesc="A client library for the D-Bus IPC system"
 url="https://john-millikin.com/software/haskell-dbus/";
 license=("GPL3")
@@ -16,7 +16,7 @@
  'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
 checkdepends=('dbus')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
-sha512sums=('6ccca12f840d2199329573355eaf5ffab6841752f7290d7e3d514b3afa6e0b1c3e037d7facd6dd709c81c141da1283b16c8c5d8e90628b50461aed9946584b68')
+sha512sums=('81f9fe1420939ebb5b03602ba59dd86656e4443690d8be460684dcb461ff7df1ff4cdf846a5a15ea6193b6f64b08526b27d3e12825a375eecbded3d0a99a59b9')
 
 build() {
 cd $_hkgname-$pkgver



[arch-commits] Commit in python-lazy-object-proxy/repos/extra-x86_64 (4 files)

2021-12-29 Thread Felix Yan via arch-commits
Date: Thursday, December 30, 2021 @ 00:48:08
  Author: felixonmars
Revision: 433256

archrelease: copy trunk to extra-x86_64

Added:
  python-lazy-object-proxy/repos/extra-x86_64/PKGBUILD
(from rev 433255, python-lazy-object-proxy/trunk/PKGBUILD)
  
python-lazy-object-proxy/repos/extra-x86_64/remove-setuptools-scm-upper-constraint.patch
(from rev 433255, 
python-lazy-object-proxy/trunk/remove-setuptools-scm-upper-constraint.patch)
Deleted:
  python-lazy-object-proxy/repos/extra-x86_64/PKGBUILD
  
python-lazy-object-proxy/repos/extra-x86_64/remove-setuptools-scm-upper-constraint.patch

--+
 PKGBUILD |   64 -
 remove-setuptools-scm-upper-constraint.patch |   22 
 2 files changed, 43 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-30 00:47:56 UTC (rev 433255)
+++ PKGBUILD2021-12-30 00:48:08 UTC (rev 433256)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-lazy-object-proxy
-pkgver=1.7.0
-pkgrel=1
-pkgdesc='A fast and thorough lazy object proxy'
-arch=('x86_64')
-url="https://github.com/ionelmc/python-lazy-object-proxy";
-license=('BSD')
-depends=("python")
-makedepends=('python-setuptools-scm')
-checkdepends=('python-pytest-benchmark' 'python-pytest-runner')
-source=("https://github.com/ionelmc/python-lazy-object-proxy/archive/v$pkgver/$pkgname-$pkgver.tar.gz";)
-sha512sums=('f66cf87b45cd026fc153b175395046fe2de7526932667125238ff026a921b5d2f650c74ede720572cc219667796fa68a4ad7ec981561d6c775aee59aa1ab935d')
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-
-build() {
-  cd python-lazy-object-proxy-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd python-lazy-object-proxy-$pkgver
-  python setup.py pytest --addopts --ignore=src
-}
-
-package() {
-  cd python-lazy-object-proxy-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-lazy-object-proxy/repos/extra-x86_64/PKGBUILD (from rev 433255, 
python-lazy-object-proxy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-30 00:48:08 UTC (rev 433256)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-lazy-object-proxy
+pkgver=1.7.1
+pkgrel=1
+pkgdesc='A fast and thorough lazy object proxy'
+arch=('x86_64')
+url="https://github.com/ionelmc/python-lazy-object-proxy";
+license=('BSD')
+depends=("python")
+makedepends=('python-setuptools-scm')
+checkdepends=('python-pytest-benchmark' 'python-pytest-runner')
+source=("https://github.com/ionelmc/python-lazy-object-proxy/archive/v$pkgver/$pkgname-$pkgver.tar.gz";)
+sha512sums=('aa00e987e99f0917c5bd381186071b32fc3c950fc0b56c71ff4ef6766b1b9af621c6c43f5b94f1df27268363cde225983fd568c0c4433faba7a99ab74b368f48')
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+
+build() {
+  cd python-lazy-object-proxy-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd python-lazy-object-proxy-$pkgver
+  python setup.py pytest --addopts --ignore=src
+}
+
+package() {
+  cd python-lazy-object-proxy-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: remove-setuptools-scm-upper-constraint.patch
===
--- remove-setuptools-scm-upper-constraint.patch2021-12-30 00:47:56 UTC 
(rev 433255)
+++ remove-setuptools-scm-upper-constraint.patch2021-12-30 00:48:08 UTC 
(rev 433256)
@@ -1,11 +0,0 @@
-diff -upr python-lazy-object-proxy-1.6.0.orig/setup.cfg 
python-lazy-object-proxy-1.6.0/setup.cfg
 python-lazy-object-proxy-1.6.0.orig/setup.cfg  2021-03-22 
17:06:24.0 +0200
-+++ python-lazy-object-proxy-1.6.0/setup.cfg   2021-11-30 23:26:47.178944992 
+0200
-@@ -1,6 +1,6 @@
- [options]
- setup_requires =
--  setuptools_scm>=3.3.1,<6.0
-+  setuptools_scm>=3.3.1
- 
- [flake8]
- max-line-length = 140

Copied: 
python-lazy-object-proxy/repos/extra-x86_64/remove-setuptools-scm-upper-constraint.patch
 (from rev 433255, 
python-lazy-object-proxy/trunk/remove-setuptools-scm-upper-constraint.patch)
===
--- remove-setuptools-scm-upper-constraint.patch
(rev 0)
+++ remove-setuptools-scm-upper-constraint.patch2021-12-30 00:48:08 UTC 
(rev 433256)
@@ -0,0 +1,11 @@
+diff -upr python-lazy-object-proxy-1.6.0.orig/setup.cfg 
python-lazy-object-proxy-1.6.0/setup.cfg
+--- python-lazy-object-proxy-1.6.0.orig/setup.cfg  2021-03-22 
17:06:24.0 +0200
 python-lazy-object-proxy-1.6.0/setup.cfg   2021-11-30 23:26:47.178944992 
+0200
+@@ -1,6 +1,6 @@
+ [options]
+ setup_requires =
+-  setuptools_scm>=3.3.1,<6.0
++  setuptools_scm>=3.

[arch-commits] Commit in python-lazy-object-proxy/trunk (PKGBUILD)

2021-12-29 Thread Felix Yan via arch-commits
Date: Thursday, December 30, 2021 @ 00:47:56
  Author: felixonmars
Revision: 433255

upgpkg: python-lazy-object-proxy 1.7.1-1

Modified:
  python-lazy-object-proxy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 22:49:23 UTC (rev 433254)
+++ PKGBUILD2021-12-30 00:47:56 UTC (rev 433255)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-lazy-object-proxy
-pkgver=1.7.0
+pkgver=1.7.1
 pkgrel=1
 pkgdesc='A fast and thorough lazy object proxy'
 arch=('x86_64')
@@ -11,7 +11,7 @@
 makedepends=('python-setuptools-scm')
 checkdepends=('python-pytest-benchmark' 'python-pytest-runner')
 
source=("https://github.com/ionelmc/python-lazy-object-proxy/archive/v$pkgver/$pkgname-$pkgver.tar.gz";)
-sha512sums=('f66cf87b45cd026fc153b175395046fe2de7526932667125238ff026a921b5d2f650c74ede720572cc219667796fa68a4ad7ec981561d6c775aee59aa1ab935d')
+sha512sums=('aa00e987e99f0917c5bd381186071b32fc3c950fc0b56c71ff4ef6766b1b9af621c6c43f5b94f1df27268363cde225983fd568c0c4433faba7a99ab74b368f48')
 
 export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
 



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

2021-12-29 Thread Filipe Laíns via arch-commits
Date: Thursday, December 30, 2021 @ 00:40:13
  Author: ffy00
Revision: 1088063

archrelease: copy trunk to community-x86_64

Added:
  kicad/repos/community-x86_64/PKGBUILD
(from rev 1088062, kicad/trunk/PKGBUILD)
Deleted:
  kicad/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-30 00:40:07 UTC (rev 1088062)
+++ PKGBUILD2021-12-30 00:40:13 UTC (rev 1088063)
@@ -1,47 +0,0 @@
-# Maintainer: Kyle Keen 
-# Maintainer: George Rawlinson 
-# Contributor: Marq Schneider 
-# Contributor: Nick Østergaard
-
-pkgname=kicad
-pkgver=6.0.0
-pkgrel=1
-pkgdesc="Electronic schematic and printed circuit board (PCB) design tools"
-arch=('x86_64')
-url="https://www.kicad.org";
-license=('GPL')
-depends=('wxgtk3' 'python' 'boost-libs' 'glew' 'curl' 'glm' 'ngspice' 
'opencascade' 'python-wxpython' 'libcloudproviders')
-# can ngspice/opencascade be an optdep?
-# opencascade vs community edition?
-makedepends=('cmake' 'zlib' 'mesa' 'boost' 'swig')
-optdepends=('kicad-library: for footprints and symbols'
-'kicad-library-3d: for 3d models of components')
-source=("https://gitlab.com/kicad/code/kicad/-/archive/$pkgver/kicad-$pkgver.tar.gz";)
-sha512sums=('1cadf59cfa85c5bbeb86f968ced896eff16c330e498497bf58826a58a59dfb83989422d660f7230d7921eeeda709d1ff10b50d4f842a36e50d44bf9017360b50')
-b2sums=('4ea4075cd8e860ed19ee051be3567400c57f8c1b51550d2da80525ef65cc0b6c0951bac8c306c4fc19bddd824e2b727f416817ea4006a67f949dbf70df673a37')
-
-build() {
-  cmake \
--B build \
--S "$pkgname-$pkgver" \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKICAD_USE_OCE=OFF \
--DKICAD_USE_OCC=ON \
--DKICAD_SCRIPTING=ON \
--DKICAD_SCRIPTING_PYTHON3=ON \
--DKICAD_SCRIPTING_MODULES=ON \
--DKICAD_SCRIPTING_WXPYTHON=ON \
--DKICAD_SCRIPTING_ACTION_MENU=ON \
--DKICAD_SCRIPTING_WXPYTHON_PHOENIX=ON \
--DwxWidgets_CONFIG_EXECUTABLE=/usr/bin/wx-config-gtk3 \
--DCMAKE_SKIP_RPATH=ON \
--DBUILD_GITHUB_PLUGIN=ON
-
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: kicad/repos/community-x86_64/PKGBUILD (from rev 1088062, 
kicad/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-30 00:40:13 UTC (rev 1088063)
@@ -0,0 +1,42 @@
+# Maintainer: Filipe Laíns 
+# Contributor: Rachel Mant 
+
+pkgname=kicad
+pkgver=6.0.0
+pkgrel=2
+pkgdesc='Electronic schematic and printed circuit board (PCB) design tools'
+arch=('x86_64')
+url='http://kicad.org/'
+license=('GPL')
+depends=('wxgtk3' 'python' 'boost-libs' 'glew' 'curl' 'glm' 'ngspice' 
'opencascade' 'python-wxpython')
+makedepends=('cmake' 'mesa' 'boost' 'swig' 'ninja')
+optdepends=('kicad-library: for footprints and symbols'
+'kicad-library-3d: for 3d models of components')
+source=("https://gitlab.com/kicad/code/kicad/-/archive/$pkgver/kicad-$pkgver.tar.bz2";)
+sha512sums=('1267b7cd35a63a3f26c2e9b0695722cbb9b279d1326f52f0b8497bd3011d79a5732e6da27f6413fb72064fe2aca72da95252011c6cb0b70c209f296f40a77b90')
+
+build()
+{
+  mkdir $pkgname-$pkgver/build
+  cd $pkgname-$pkgver/build
+
+  cmake .. -G Ninja \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKICAD_USE_OCC=ON \
+-DKICAD_SCRIPTING_WXPYTHON=ON \
+-DwxWidgets_CONFIG_EXECUTABLE=/usr/bin/wx-config-gtk3 \
+-Wno-dev
+
+  ninja
+}
+
+package()
+{
+  cd $pkgname-$pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-12-29 Thread Filipe Laíns via arch-commits
Date: Thursday, December 30, 2021 @ 00:40:07
  Author: ffy00
Revision: 1088062

upgpkg: kicad 6.0.0-2

Modified:
  kicad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-30 00:39:49 UTC (rev 1088061)
+++ PKGBUILD2021-12-30 00:40:07 UTC (rev 1088062)
@@ -1,47 +1,42 @@
-# Maintainer: Kyle Keen 
-# Maintainer: George Rawlinson 
-# Contributor: Marq Schneider 
-# Contributor: Nick Østergaard
+# Maintainer: Filipe Laíns 
+# Contributor: Rachel Mant 
 
 pkgname=kicad
 pkgver=6.0.0
-pkgrel=1
-pkgdesc="Electronic schematic and printed circuit board (PCB) design tools"
+pkgrel=2
+pkgdesc='Electronic schematic and printed circuit board (PCB) design tools'
 arch=('x86_64')
-url="https://www.kicad.org";
+url='http://kicad.org/'
 license=('GPL')
-depends=('wxgtk3' 'python' 'boost-libs' 'glew' 'curl' 'glm' 'ngspice' 
'opencascade' 'python-wxpython' 'libcloudproviders')
-# can ngspice/opencascade be an optdep?
-# opencascade vs community edition?
-makedepends=('cmake' 'zlib' 'mesa' 'boost' 'swig')
+depends=('wxgtk3' 'python' 'boost-libs' 'glew' 'curl' 'glm' 'ngspice' 
'opencascade' 'python-wxpython')
+makedepends=('cmake' 'mesa' 'boost' 'swig' 'ninja')
 optdepends=('kicad-library: for footprints and symbols'
 'kicad-library-3d: for 3d models of components')
-source=("https://gitlab.com/kicad/code/kicad/-/archive/$pkgver/kicad-$pkgver.tar.gz";)
-sha512sums=('1cadf59cfa85c5bbeb86f968ced896eff16c330e498497bf58826a58a59dfb83989422d660f7230d7921eeeda709d1ff10b50d4f842a36e50d44bf9017360b50')
-b2sums=('4ea4075cd8e860ed19ee051be3567400c57f8c1b51550d2da80525ef65cc0b6c0951bac8c306c4fc19bddd824e2b727f416817ea4006a67f949dbf70df673a37')
+source=("https://gitlab.com/kicad/code/kicad/-/archive/$pkgver/kicad-$pkgver.tar.bz2";)
+sha512sums=('1267b7cd35a63a3f26c2e9b0695722cbb9b279d1326f52f0b8497bd3011d79a5732e6da27f6413fb72064fe2aca72da95252011c6cb0b70c209f296f40a77b90')
 
-build() {
-  cmake \
--B build \
--S "$pkgname-$pkgver" \
+build()
+{
+  mkdir $pkgname-$pkgver/build
+  cd $pkgname-$pkgver/build
+
+  cmake .. -G Ninja \
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_INSTALL_LIBDIR=lib \
--DKICAD_USE_OCE=OFF \
 -DKICAD_USE_OCC=ON \
--DKICAD_SCRIPTING=ON \
--DKICAD_SCRIPTING_PYTHON3=ON \
--DKICAD_SCRIPTING_MODULES=ON \
 -DKICAD_SCRIPTING_WXPYTHON=ON \
--DKICAD_SCRIPTING_ACTION_MENU=ON \
--DKICAD_SCRIPTING_WXPYTHON_PHOENIX=ON \
 -DwxWidgets_CONFIG_EXECUTABLE=/usr/bin/wx-config-gtk3 \
--DCMAKE_SKIP_RPATH=ON \
--DBUILD_GITHUB_PLUGIN=ON
+-Wno-dev
 
-  cmake --build build
+  ninja
 }
 
-package() {
-  DESTDIR="$pkgdir" cmake --install build
+package()
+{
+  cd $pkgname-$pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
 }
+
+# vim:set ts=2 sw=2 et:



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

2021-12-29 Thread Filipe Laíns via arch-commits
Date: Thursday, December 30, 2021 @ 00:39:49
  Author: ffy00
Revision: 1088061

archrelease: copy trunk to community-any

Added:
  kicad-library/repos/community-any/PKGBUILD
(from rev 1088060, kicad-library/trunk/PKGBUILD)
Deleted:
  kicad-library/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-30 00:39:39 UTC (rev 1088060)
+++ PKGBUILD2021-12-30 00:39:49 UTC (rev 1088061)
@@ -1,46 +0,0 @@
-# Maintainer: Kyle Keen 
-# Maintainer: George Rawlinson 
-
-pkgbase=kicad-library
-pkgname=('kicad-library' 'kicad-library-3d')
-pkgver=6.0.0
-pkgrel=1
-pkgdesc="Kicad component and footprint libraries"
-arch=('any')
-url="https://kicad.github.io/";
-license=('GPL')
-makedepends=('cmake')
-options=('!strip')
-source=("https://gitlab.com/kicad/libraries/kicad-symbols/-/archive/$pkgver/kicad-symbols-$pkgver.tar.gz";
-
"https://gitlab.com/kicad/libraries/kicad-footprints/-/archive/$pkgver/kicad-footprints-$pkgver.tar.gz";
-
"https://gitlab.com/kicad/libraries/kicad-packages3D/-/archive/$pkgver/kicad-packages3D-$pkgver.tar.gz";)
-sha512sums=('9e223ba15e8c8d00d5f5889f4fc9f7677a290253121889dd162788af3bbf1400b39c6d41bb1167b53ea028c32016f8f465251a308f546ece69149a9e5b32e66c'
-
'919883ee3a422e03ec7e89c6859d85431965e2ba6a6ee0449c1c7349d190abc65e6e9ac85e083e0fa8ed5d5657fa0a00f4094cf1c56046af470a2b4300bac19b'
-
'84f8b319c34a31d669c089a1c26f1367e8369ad051d846417b7d646efd6a298aba3ebbabbc49f7bac849804cc6b7465281655593ecd6242bb25f4e77ab0df5f4')
-b2sums=('ba96aac11c60ba590c23d3df56e0c3cb7fbea828833e0cd7874976f0ed93bf7e0dd21a3a367eff0e5086126c663eec075b45cb82f463c36289b780ecf1836e20'
-
'f54b1e47e4eb575c2d7bbb7d009954ca12f1aad5c06e4b39c9fa55ba1450ed865d3528dec5d98fac558a183266a77fb58209fb1028a2e2f5f6bd4e1d14b5caf7'
-
'17f63f6946350e2169f63d83872bf03044f88b37bca641e24d4b985f3be6cee8773142bc00802777c715c15f78e5b557891d266af9e968f827877c592e49a3b9')
-
-build() {
-  for package in symbols footprints packages3D; do
-cmake \
-  -B "build-$package" \
-  -S "kicad-$package-$pkgver" \
-  -DCMAKE_INSTALL_PREFIX=/usr
-
-cmake --build "build-$package"
-  done
-}
-
-package_kicad-library() {
-  pkgdesc="Kicad component and footprint libraries"
-
-  DESTDIR="$pkgdir" cmake --install build-symbols
-  DESTDIR="$pkgdir" cmake --install build-footprints
-}
-
-package_kicad-library-3d() {
-  pkgdesc="Kicad 3D render model libraries"
-
-  DESTDIR="$pkgdir" cmake --install build-packages3D
-}

Copied: kicad-library/repos/community-any/PKGBUILD (from rev 1088060, 
kicad-library/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-30 00:39:49 UTC (rev 1088061)
@@ -0,0 +1,68 @@
+# Maintainer: Filipe Laíns 
+# Contributor: Rachel Mant 
+
+pkgbase=kicad-library
+pkgname=($pkgbase{,-3d})
+pkgver=6.0.0
+pkgrel=2
+pkgdesc='KiCAD component and footprint libraries'
+arch=('any')
+url='http://kicad.org/'
+license=('GPL')
+makedepends=('cmake' 'make')
+source=("https://gitlab.com/kicad/libraries/kicad-symbols/-/archive/$pkgver/kicad-symbols-$pkgver.tar.bz2";
+
"https://gitlab.com/kicad/libraries/kicad-footprints/-/archive/$pkgver/kicad-footprints-$pkgver.tar.bz2";
+
"https://gitlab.com/kicad/libraries/kicad-packages3D/-/archive/$pkgver/kicad-packages3D-$pkgver.tar.bz2";)
+sha512sums=('5891606d47004cc2a530e1d327ae6bd7a89c571bb60dbc4e2f8c6659277de361b6ea337939414028c834392a2f69668a3d3c99962765cc76048b8e4dd153cca3'
+
'd8eac8fcc380ef67ccbd3b8f2529d7023aecef674299d83aabccd41beef1934507edf3a9bdbf4b440ae550470d7f16382aba4090fe5f1d5397a8e0a0f4364ec9'
+
'48f6698d8b48483e484638f780cf5a9522cda5381c3858b15b0862994dfacc271426ecbaaa5168a2fc8f6be84ac6e9b160e080ac74183d5be282de36088416af')
+
+build()
+{
+  mkdir kicad-{symbols,footprints,packages3D}-$pkgver/build
+
+  cd "$srcdir"/kicad-symbols-$pkgver/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr
+
+  make
+
+  cd "$srcdir"/kicad-footprints-$pkgver/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr
+
+  make
+
+  cd "$srcdir"/kicad-packages3D-$pkgver/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr
+
+  make
+}
+
+package_kicad-library()
+{
+  pkgdesc="Kicad component and footprint libraries"
+
+  cd "$srcdir"/kicad-symbols-$pkgver/build
+
+  make DESTDIR="$pkgdir" install
+
+  cd "$srcdir"/kicad-footprints-$pkgver/build
+
+  make DESTDIR="$pkgdir" install
+}
+
+package_kicad-library-3d()
+{
+  pkgdesc="Kicad 3D render model libraries"
+
+  cd kicad-packages3D-$pkgver/build
+
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-12-29 Thread Filipe Laíns via arch-commits
Date: Thursday, December 30, 2021 @ 00:39:39
  Author: ffy00
Revision: 1088060

upgpkg: kicad-library 6.0.0-2

Modified:
  kicad-library/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-30 00:34:25 UTC (rev 1088059)
+++ PKGBUILD2021-12-30 00:39:39 UTC (rev 1088060)
@@ -1,46 +1,68 @@
-# Maintainer: Kyle Keen 
-# Maintainer: George Rawlinson 
+# Maintainer: Filipe Laíns 
+# Contributor: Rachel Mant 
 
 pkgbase=kicad-library
-pkgname=('kicad-library' 'kicad-library-3d')
+pkgname=($pkgbase{,-3d})
 pkgver=6.0.0
-pkgrel=1
-pkgdesc="Kicad component and footprint libraries"
+pkgrel=2
+pkgdesc='KiCAD component and footprint libraries'
 arch=('any')
-url="https://kicad.github.io/";
+url='http://kicad.org/'
 license=('GPL')
-makedepends=('cmake')
-options=('!strip')
-source=("https://gitlab.com/kicad/libraries/kicad-symbols/-/archive/$pkgver/kicad-symbols-$pkgver.tar.gz";
-
"https://gitlab.com/kicad/libraries/kicad-footprints/-/archive/$pkgver/kicad-footprints-$pkgver.tar.gz";
-
"https://gitlab.com/kicad/libraries/kicad-packages3D/-/archive/$pkgver/kicad-packages3D-$pkgver.tar.gz";)
-sha512sums=('9e223ba15e8c8d00d5f5889f4fc9f7677a290253121889dd162788af3bbf1400b39c6d41bb1167b53ea028c32016f8f465251a308f546ece69149a9e5b32e66c'
-
'919883ee3a422e03ec7e89c6859d85431965e2ba6a6ee0449c1c7349d190abc65e6e9ac85e083e0fa8ed5d5657fa0a00f4094cf1c56046af470a2b4300bac19b'
-
'84f8b319c34a31d669c089a1c26f1367e8369ad051d846417b7d646efd6a298aba3ebbabbc49f7bac849804cc6b7465281655593ecd6242bb25f4e77ab0df5f4')
-b2sums=('ba96aac11c60ba590c23d3df56e0c3cb7fbea828833e0cd7874976f0ed93bf7e0dd21a3a367eff0e5086126c663eec075b45cb82f463c36289b780ecf1836e20'
-
'f54b1e47e4eb575c2d7bbb7d009954ca12f1aad5c06e4b39c9fa55ba1450ed865d3528dec5d98fac558a183266a77fb58209fb1028a2e2f5f6bd4e1d14b5caf7'
-
'17f63f6946350e2169f63d83872bf03044f88b37bca641e24d4b985f3be6cee8773142bc00802777c715c15f78e5b557891d266af9e968f827877c592e49a3b9')
+makedepends=('cmake' 'make')
+source=("https://gitlab.com/kicad/libraries/kicad-symbols/-/archive/$pkgver/kicad-symbols-$pkgver.tar.bz2";
+
"https://gitlab.com/kicad/libraries/kicad-footprints/-/archive/$pkgver/kicad-footprints-$pkgver.tar.bz2";
+
"https://gitlab.com/kicad/libraries/kicad-packages3D/-/archive/$pkgver/kicad-packages3D-$pkgver.tar.bz2";)
+sha512sums=('5891606d47004cc2a530e1d327ae6bd7a89c571bb60dbc4e2f8c6659277de361b6ea337939414028c834392a2f69668a3d3c99962765cc76048b8e4dd153cca3'
+
'd8eac8fcc380ef67ccbd3b8f2529d7023aecef674299d83aabccd41beef1934507edf3a9bdbf4b440ae550470d7f16382aba4090fe5f1d5397a8e0a0f4364ec9'
+
'48f6698d8b48483e484638f780cf5a9522cda5381c3858b15b0862994dfacc271426ecbaaa5168a2fc8f6be84ac6e9b160e080ac74183d5be282de36088416af')
 
-build() {
-  for package in symbols footprints packages3D; do
-cmake \
-  -B "build-$package" \
-  -S "kicad-$package-$pkgver" \
-  -DCMAKE_INSTALL_PREFIX=/usr
+build()
+{
+  mkdir kicad-{symbols,footprints,packages3D}-$pkgver/build
 
-cmake --build "build-$package"
-  done
+  cd "$srcdir"/kicad-symbols-$pkgver/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr
+
+  make
+
+  cd "$srcdir"/kicad-footprints-$pkgver/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr
+
+  make
+
+  cd "$srcdir"/kicad-packages3D-$pkgver/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr
+
+  make
 }
 
-package_kicad-library() {
+package_kicad-library()
+{
   pkgdesc="Kicad component and footprint libraries"
 
-  DESTDIR="$pkgdir" cmake --install build-symbols
-  DESTDIR="$pkgdir" cmake --install build-footprints
+  cd "$srcdir"/kicad-symbols-$pkgver/build
+
+  make DESTDIR="$pkgdir" install
+
+  cd "$srcdir"/kicad-footprints-$pkgver/build
+
+  make DESTDIR="$pkgdir" install
 }
 
-package_kicad-library-3d() {
+package_kicad-library-3d()
+{
   pkgdesc="Kicad 3D render model libraries"
 
-  DESTDIR="$pkgdir" cmake --install build-packages3D
+  cd kicad-packages3D-$pkgver/build
+
+  make DESTDIR="$pkgdir" install
 }
+
+# vim:set ts=2 sw=2 et:



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Thursday, December 30, 2021 @ 00:34:25
  Author: felixonmars
Revision: 1088059

archrelease: copy trunk to community-staging-x86_64

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

+
 PKGBUILD   |   51 +++
 ghc9.patch |  841 +++
 2 files changed, 892 insertions(+)

Copied: cryptol/repos/community-staging-x86_64/PKGBUILD (from rev 1088058, 
cryptol/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-30 00:34:25 UTC (rev 1088059)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+pkgname=cryptol
+pkgver=2.11.0
+pkgrel=103
+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-exceptions' '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-random' 
'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' 'alex' 'happy' 'uusi')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/GaloisInc/cryptol/archive/$pkgver.tar.gz";
+ghc9.patch)
+sha512sums=('4e8e9dec727c02e76043ee390b91d0a740df747a8f49b2551686ac7db3cc0c94c36e20316b59e7e50e28b838f3f9bf7202095cf6ce683d83fd47826702381649'
+
'cf201d5d633101343399bb43e264e482e9f7e4615512ff658455772add3055d14571954f20ddf2cb2e35704c5638e7d2a3dab494bbb981229c519dcf88867e17')
+
+prepare() {
+cd $pkgname-$pkgver
+patch -p1 -i ../ghc9.patch
+uusi -u sbv -u what4 $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 1088058, 
cryptol/trunk/ghc9.patch)
===
--- community-staging-x86_64/ghc9.patch (rev 0)
+++ community-staging-x86_64/ghc9.patch 2021-12-30 00:34:25 UTC (rev 1088059)
@@ -0,0 +1,841 @@
+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-remote-api/cryptol-remote-api.cabal 
b/cryptol-remote-api/cryptol-remote-api.cabal
+index f0f75d18e..4cd02c5e6 100644
+--- a/cryptol-remote

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

2021-12-29 Thread Felix Yan via arch-commits
Date: Thursday, December 30, 2021 @ 00:34:16
  Author: felixonmars
Revision: 1088058

upgpkg: cryptol 2.11.0-103: rebuild with versions 5.0.1

Modified:
  cryptol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-30 00:29:43 UTC (rev 1088057)
+++ PKGBUILD2021-12-30 00:34:16 UTC (rev 1088058)
@@ -2,7 +2,7 @@
 
 pkgname=cryptol
 pkgver=2.11.0
-pkgrel=102
+pkgrel=103
 pkgdesc="The Language of Cryptography"
 url="https://www.cryptol.net";
 license=("BSD")



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Thursday, December 30, 2021 @ 00:29:43
  Author: felixonmars
Revision: 1088057

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 1088056, haskell-what4/trunk/PKGBUILD)

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

Copied: haskell-what4/repos/community-staging-x86_64/PKGBUILD (from rev 
1088056, haskell-what4/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-30 00:29:43 UTC (rev 1088057)
@@ -0,0 +1,59 @@
+# Maintainer: Felix Yan 
+
+_hkgname=what4
+pkgname=haskell-what4
+pkgver=1.2.1
+pkgrel=57
+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-exceptions' 
'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)
+sha512sums=('494e030c0302997205bf4ac3cbd877cd107b22cc3dcb1ca64a075434f95c0a993a82ac27ad5098e616a2f72f8cb9d6234d41a2c5e0335eb874953963281d1318')
+
+prepare() {
+cd $_hkgname-$pkgver
+gen-setup
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-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-what4/trunk (PKGBUILD)

2021-12-29 Thread Felix Yan via arch-commits
Date: Thursday, December 30, 2021 @ 00:29:36
  Author: felixonmars
Revision: 1088056

upgpkg: haskell-what4 1.2.1-57: rebuild with versions 5.0.1

Modified:
  haskell-what4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-30 00:21:27 UTC (rev 1088055)
+++ PKGBUILD2021-12-30 00:29:36 UTC (rev 1088056)
@@ -3,7 +3,7 @@
 _hkgname=what4
 pkgname=haskell-what4
 pkgver=1.2.1
-pkgrel=56
+pkgrel=57
 pkgdesc="Solver-agnostic symbolic values support for issuing queries"
 url="https://github.com/GaloisInc/what4";
 license=('BSD')



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Thursday, December 30, 2021 @ 00:21:27
  Author: felixonmars
Revision: 1088055

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-versions/repos/community-staging-x86_64/PKGBUILD (from rev 
1088054, haskell-versions/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-30 00:21:27 UTC (rev 1088055)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+
+_hkgname=versions
+pkgname=haskell-versions
+pkgver=5.0.1
+pkgrel=1
+pkgdesc="Types and parsers for software version numbers"
+url="https://github.com/fosskers/versions";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-megaparsec' 'haskell-hashable' 
'haskell-parser-combinators')
+makedepends=('ghc' 'uusi' 'haskell-microlens' 'haskell-quickcheck' 
'haskell-tasty' 'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('a74d2bf3b96e75b5d41d522d1bd13aba63d92d87a057453298d4a34a6e54b123fb768b57537928f8962ca7277fe2e4c864f02f5926680a39f48a1238c35b5e33')
+
+prepare() {
+cd $_hkgname-$pkgver
+gen-setup
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-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-versions/trunk (PKGBUILD)

2021-12-29 Thread Felix Yan via arch-commits
Date: Thursday, December 30, 2021 @ 00:21:19
  Author: felixonmars
Revision: 1088054

upgpkg: haskell-versions 5.0.1-1: rebuild with versions 5.0.1

Modified:
  haskell-versions/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-30 00:12:00 UTC (rev 1088053)
+++ PKGBUILD2021-12-30 00:21:19 UTC (rev 1088054)
@@ -2,8 +2,8 @@
 
 _hkgname=versions
 pkgname=haskell-versions
-pkgver=5.0.0
-pkgrel=36
+pkgver=5.0.1
+pkgrel=1
 pkgdesc="Types and parsers for software version numbers"
 url="https://github.com/fosskers/versions";
 license=('BSD')
@@ -12,7 +12,7 @@
 makedepends=('ghc' 'uusi' 'haskell-microlens' 'haskell-quickcheck' 
'haskell-tasty' 'haskell-tasty-hunit'
  'haskell-tasty-quickcheck')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('48ce0548e10b03b5522bb1945f72c0c065ad5ef7a3c4ff62fbb028e6bb16d59c17386dd466e70e4972326682d740137df614bd31078c3b2580bbe8344b70b6c7')
+sha512sums=('a74d2bf3b96e75b5d41d522d1bd13aba63d92d87a057453298d4a34a6e54b123fb768b57537928f8962ca7277fe2e4c864f02f5926680a39f48a1238c35b5e33')
 
 prepare() {
 cd $_hkgname-$pkgver



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

2021-12-29 Thread Alexander Rødseth via arch-commits
Date: Thursday, December 30, 2021 @ 00:12:00
  Author: arodseth
Revision: 1088053

archrelease: copy trunk to community-x86_64

Added:
  plan9port/repos/community-x86_64/PKGBUILD
(from rev 1088052, plan9port/trunk/PKGBUILD)
  plan9port/repos/community-x86_64/acme.png
(from rev 1088052, plan9port/trunk/acme.png)
  plan9port/repos/community-x86_64/acme.sh
(from rev 1088052, plan9port/trunk/acme.sh)
  plan9port/repos/community-x86_64/plan9.install
(from rev 1088052, plan9port/trunk/plan9.install)
  plan9port/repos/community-x86_64/plan9.sh
(from rev 1088052, plan9port/trunk/plan9.sh)
Deleted:
  plan9port/repos/community-x86_64/PKGBUILD
  plan9port/repos/community-x86_64/acme.png
  plan9port/repos/community-x86_64/acme.sh
  plan9port/repos/community-x86_64/plan9.install
  plan9port/repos/community-x86_64/plan9.sh

---+
 PKGBUILD  |  190 
 acme.sh   |6 -
 plan9.install |   16 ++--
 plan9.sh  |4 -
 4 files changed, 109 insertions(+), 107 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-30 00:11:52 UTC (rev 1088052)
+++ PKGBUILD2021-12-30 00:12:00 UTC (rev 1088053)
@@ -1,94 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: phrakture 
-# Contributor: Fazlul Shahriar <>
-# Contributor: Chris Brannon 
-
-pkgname=plan9port
-pkgver=20210527
-pkgrel=1
-pkgdesc='Ports of applications from Plan 9'
-arch=(x86_64)
-url='https://swtch.com/plan9port/'
-license=(custom)
-depends=(fontconfig fuse2 libxt xorg-server)
-makedepends=(gendesk git)
-provides=(plan9)
-install=plan9.install
-options=(staticlibs !zipman)
-source=("git+https://github.com/9fans/plan9port#commit=70cc6e5ba7798b315c3fb3aae19620a01604a459";
 # 2021-05-27
-acme.png acme.sh plan9.sh)
-b2sums=('SKIP'
-
'983106b7a91afadae0f3aff5ff69338aa80d7eb6f9b65a95a31c963f162f6fb2dea748e5da698e0bd14d4343fe17281f55b9a1966fcba1c497fbd4bd855caf6c'
-
'6bd5abac872d578523fee4d7287aa9df7faecccefab92377a871596f1526f3a26d3e89098aef3bb3e3773b2de6f5f63be6cb13134b1cbc66be9763403c344598'
-
'743d3b663f8cad370fe4e6f0fe24efd444172327b9e0bd2ac5fd3c4f9595edd4e513c6ba978719a163e0507121cab622de8453289bde19b37365a2a78df4ccf9')
-
-
-prepare() {
-  # Generate a desktop shortcut for the Acme editor
-  gendesk -f \
---name Acme \
---pkgname acme \
---genericname Editor \
---comment 'Editor from Plan9' \
---categories 'Application;Development;TextEditor'
-
-  cd $pkgname
-
-  # Use _DEFAULT_SOURCE instead of _BSD_SOURCE
-  grep -rl _BSD_SOURCE | xargs sed -i s':_BSD_SOURCE:_DEFAULT_SOURCE:g'
-
-  # Try the Gentoo way for fixing hardcoded paths
-  grep --null -l -r /usr/local/plan9 | xargs --null sed -i 
"s!/usr/local/plan9!/usr/lib/plan9!g"
-
-  # Stop 9l from giving an 'undefined reference error' given no arguments, ref 
#55640
-  sed -i '1i[ "$1" == "" ] && exit 1' bin/9l
-}
-
-package() {
-  cd $pkgname
-
-  d=usr/lib
-
-  ./INSTALL -b
-  install -Dm755 ../plan9.sh "$pkgdir/etc/profile.d/plan9.sh"
-  install -d "$pkgdir/$d"
-  install -d "$pkgdir/usr/share/doc/$pkgname"
-  cp -r "$srcdir/$pkgname" "$pkgdir/$d/plan9"
-  cd "$pkgdir/$d/plan9"
-  ./INSTALL -c -r "$pkgdir/$d/plan9"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # Clean up
-  rm -rf .hg/
-  rm -f .hgignore .hgtags
-  find . -name '.cvsignore' -delete
-  rm -f config install.log install.sum install.txt configure Makefile INSTALL \
-LICENSE
-
-  # Package text files
-  for i in CHANGES CONTRIBUTING.md CONTRIBUTORS README.md; do
-install -m644 $i "$pkgdir/usr/share/doc/$pkgname"
-rm -f $i
-  done
-
-  # Decompress the plan9 man pages
-  for i in "$(find "$pkgdir/$d/plan9/man" -type f)"; do
-if [ "${i##*.}" = "gz" ]; then
-  gunzip "$i"
-fi
-  done
-
-  # Once more
-  PLAN9=/usr/lib/plan9
-  grep --null -l -r "$pkgdir$PLAN9" | xargs --null sed -i 
"s!$pkgdir$PLAN9!${PLAN9}!g" || true
-  grep --null -l -r "/build/plan9port/pkg/plan9port/$PLAN9" | xargs --null sed 
-i "s!/build/plan9port/pkg/plan9port/$PLAN9!${PLAN9}!g" || true
-
-  # Acme
-  cd "$srcdir"
-  install -Dm644 acme.desktop "$pkgdir/usr/share/applications/acme.desktop"
-  install -Dm755 acme.sh "$pkgdir/usr/bin/acme"
-  install -Dm644 acme.png "$pkgdir/usr/share/pixmaps/acme.png"
-
-  # Remove git repository
-  rm -rf "$pkgdir/usr/lib/plan9/.git"
-}

Copied: plan9port/repos/community-x86_64/PKGBUILD (from rev 1088052, 
plan9port/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-30 00:12:00 UTC (rev 1088053)
@@ -0,0 +1,96 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: phrakture 
+# Contributor: Fazlul Shahriar <>
+# Contributor: Chris Brannon 
+
+pkgname=plan9port
+pkgver=20211019
+pkgrel=1
+pkgdesc='Ports of applications from Plan 9'
+arch=(x86_64)
+url='https://sw

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

2021-12-29 Thread Alexander Rødseth via arch-commits
Date: Thursday, December 30, 2021 @ 00:11:52
  Author: arodseth
Revision: 1088052

upgpkg: plan9port 20211019-1

Modified:
  plan9port/trunk/PKGBUILD

--+
 PKGBUILD |   16 +---
 1 file changed, 9 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-12-30 00:04:23 UTC (rev 1088051)
+++ PKGBUILD2021-12-30 00:11:52 UTC (rev 1088052)
@@ -4,7 +4,7 @@
 # Contributor: Chris Brannon 
 
 pkgname=plan9port
-pkgver=20210527
+pkgver=20211019
 pkgrel=1
 pkgdesc='Ports of applications from Plan 9'
 arch=(x86_64)
@@ -15,7 +15,7 @@
 provides=(plan9)
 install=plan9.install
 options=(staticlibs !zipman)
-source=("git+https://github.com/9fans/plan9port#commit=70cc6e5ba7798b315c3fb3aae19620a01604a459";
 # 2021-05-27
+source=("git+https://github.com/9fans/plan9port#commit=d0d440860f2000a1560abb3f593cdc325fcead4c";
 # 2021-10-19
 acme.png acme.sh plan9.sh)
 b2sums=('SKIP'
 
'983106b7a91afadae0f3aff5ff69338aa80d7eb6f9b65a95a31c963f162f6fb2dea748e5da698e0bd14d4343fe17281f55b9a1966fcba1c497fbd4bd855caf6c'
@@ -22,7 +22,6 @@
 
'6bd5abac872d578523fee4d7287aa9df7faecccefab92377a871596f1526f3a26d3e89098aef3bb3e3773b2de6f5f63be6cb13134b1cbc66be9763403c344598'
 
'743d3b663f8cad370fe4e6f0fe24efd444172327b9e0bd2ac5fd3c4f9595edd4e513c6ba978719a163e0507121cab622de8453289bde19b37365a2a78df4ccf9')
 
-
 prepare() {
   # Generate a desktop shortcut for the Acme editor
   gendesk -f \
@@ -44,13 +43,16 @@
   sed -i '1i[ "$1" == "" ] && exit 1' bin/9l
 }
 
+build() {
+  cd $pkgname
+  export CFLAGS+=' -ffat-lto-objects -w'
+  ./INSTALL -b
+}
+
 package() {
   cd $pkgname
-
+  install -Dm755 ../plan9.sh "$pkgdir/etc/profile.d/plan9.sh"
   d=usr/lib
-
-  ./INSTALL -b
-  install -Dm755 ../plan9.sh "$pkgdir/etc/profile.d/plan9.sh"
   install -d "$pkgdir/$d"
   install -d "$pkgdir/usr/share/doc/$pkgname"
   cp -r "$srcdir/$pkgname" "$pkgdir/$d/plan9"



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

2021-12-29 Thread Alexander Rødseth via arch-commits
Date: Thursday, December 30, 2021 @ 00:04:23
  Author: arodseth
Revision: 1088051

archrelease: copy trunk to community-x86_64

Added:
  spike/repos/community-x86_64/PKGBUILD
(from rev 1088050, spike/trunk/PKGBUILD)
Deleted:
  spike/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-30 00:04:18 UTC (rev 1088050)
+++ PKGBUILD2021-12-30 00:04:23 UTC (rev 1088051)
@@ -1,36 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: loqs
-# Contributor: Paulo Matos 
-# Contributor: b4283 
-
-pkgname=spike
-pkgver=1.0.0
-pkgrel=2
-pkgdesc='Spike, a RISC-V ISA Simulator'
-arch=(x86_64)
-url='https://github.com/riscv/riscv-isa-sim'
-license=(BSD)
-groups=(risc-v)
-depends=(dtc)
-replaces=(fesvr)
-conflicts=(fesvr)
-makedepends=(git)
-source=("git+https://github.com/riscv/riscv-isa-sim#commit=2710fe575e7e6a4e2418224f8d254d5ca31f6c0e";)
-b2sums=('SKIP')
-
-prepare() {
-  cd riscv-isa-sim
-  git cherry-pick -n b3855682c2d744c613d2ffd6b53e3f021ecea4f3
-}
-
-build() {
-  cd riscv-isa-sim
-  ./configure --prefix=/usr
-  make LDFLAGS="$LDFLAGS -s -w"
-}
-
-package() {
-  cd riscv-isa-sim
-  make DESTDIR="$pkgdir" install
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: spike/repos/community-x86_64/PKGBUILD (from rev 1088050, 
spike/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-30 00:04:23 UTC (rev 1088051)
@@ -0,0 +1,31 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: loqs
+# Contributor: Paulo Matos 
+# Contributor: b4283 
+
+pkgname=spike
+pkgver=1.1.0
+pkgrel=1
+pkgdesc='Spike, a RISC-V ISA Simulator'
+arch=(x86_64)
+url='https://github.com/riscv/riscv-isa-sim'
+license=(BSD)
+groups=(risc-v)
+depends=(dtc)
+replaces=(fesvr)
+conflicts=(fesvr)
+makedepends=(git)
+source=("git+https://github.com/riscv/riscv-isa-sim#commit=530af85d83781a3dae31a4ace84a573ec255fefa";)
 # tag: v1.1.0
+b2sums=(SKIP)
+
+build() {
+  cd riscv-isa-sim
+  ./configure --prefix=/usr
+  make LDFLAGS="$LDFLAGS -s -w"
+}
+
+package() {
+  cd riscv-isa-sim
+  make DESTDIR="$pkgdir" install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2021-12-29 Thread Alexander Rødseth via arch-commits
Date: Thursday, December 30, 2021 @ 00:04:18
  Author: arodseth
Revision: 1088050

upgpkg: spike 1.1.0-1

Modified:
  spike/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 23:45:29 UTC (rev 1088049)
+++ PKGBUILD2021-12-30 00:04:18 UTC (rev 1088050)
@@ -4,8 +4,8 @@
 # Contributor: b4283 
 
 pkgname=spike
-pkgver=1.0.0
-pkgrel=2
+pkgver=1.1.0
+pkgrel=1
 pkgdesc='Spike, a RISC-V ISA Simulator'
 arch=(x86_64)
 url='https://github.com/riscv/riscv-isa-sim'
@@ -15,14 +15,9 @@
 replaces=(fesvr)
 conflicts=(fesvr)
 makedepends=(git)
-source=("git+https://github.com/riscv/riscv-isa-sim#commit=2710fe575e7e6a4e2418224f8d254d5ca31f6c0e";)
-b2sums=('SKIP')
+source=("git+https://github.com/riscv/riscv-isa-sim#commit=530af85d83781a3dae31a4ace84a573ec255fefa";)
 # tag: v1.1.0
+b2sums=(SKIP)
 
-prepare() {
-  cd riscv-isa-sim
-  git cherry-pick -n b3855682c2d744c613d2ffd6b53e3f021ecea4f3
-}
-
 build() {
   cd riscv-isa-sim
   ./configure --prefix=/usr



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 23:45:29
  Author: felixonmars
Revision: 1088049

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-29 23:45:20 UTC (rev 1088048)
+++ PKGBUILD2021-12-29 23:45:29 UTC (rev 1088049)
@@ -1,49 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Thomas Weißschuh 
-# Contributor: George Brooke 
-# Contributor: Sebastian Wiesner 
-
-pkgname=python-tox
-pkgver=3.24.4
-pkgrel=4
-pkgdesc='Python virtualenv management and testing tool'
-arch=('any')
-url='https://tox.readthedocs.io'
-license=('GPL2')
-depends=('python-py' 'python-virtualenv' 'python-packaging' 'python-pluggy' 
'python-toml' 'python-filelock' 'python-six')
-makedepends=('python-setuptools-scm' 'python-py' 'python-virtualenv'
- 'python-pluggy' 'python-toml'
- 'python-filelock' 'python-freezegun')
-checkdepends=('python-pytest-runner' 'python-pytest-mock'
-  'python-flaky')
-source=("https://pypi.io/packages/source/t/tox/tox-$pkgver.tar.gz";)
-sha512sums=('9fe2256276b83bf3bc55ec1876be41da2ff7217187f4bf8f4d728106f9c63fc59d146de5e424f7a90d28b938d312c175f7c815bfd3a17d329bec9ba4102139fc')
-
-prepare() {
-  find tox-$pkgver -name "*.pyc" -delete
-}
-
-build() {
-  export LC_CTYPE=en_US.UTF-8
-
-  cd "$srcdir"/tox-$pkgver
-  python setup.py build
-}
-
-check() {
-  # Hack entry points
-
-  (
-cd "$srcdir"/tox-$pkgver
-virtualenv "$srcdir/pyvenv" --system-site-packages
-. "$srcdir/pyvenv/bin/activate"
-python setup.py install
-python setup.py pytest
-  )
-}
-
-package() {
-  cd "$srcdir"/tox-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  ln -s tox "$pkgdir"/usr/bin/tox3
-}

Copied: python-tox/repos/community-any/PKGBUILD (from rev 1088048, 
python-tox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-29 23:45:29 UTC (rev 1088049)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Weißschuh 
+# Contributor: George Brooke 
+# Contributor: Sebastian Wiesner 
+
+pkgname=python-tox
+pkgver=3.24.5
+pkgrel=1
+pkgdesc='Python virtualenv management and testing tool'
+arch=('any')
+url='https://tox.readthedocs.io'
+license=('GPL2')
+depends=('python-py' 'python-virtualenv' 'python-packaging' 'python-pluggy' 
'python-toml' 'python-filelock' 'python-six')
+makedepends=('python-setuptools-scm' 'python-py' 'python-virtualenv'
+ 'python-pluggy' 'python-toml'
+ 'python-filelock' 'python-freezegun')
+checkdepends=('python-pytest-runner' 'python-pytest-mock'
+  'python-flaky')
+source=("https://pypi.io/packages/source/t/tox/tox-$pkgver.tar.gz";)
+sha512sums=('2b047c5682c2c57268fb46055207388d060fb31511d6e442dc49244a5ac53c4d2fecd7bb9a8e33bb02b580192926592523dfb991c4bd8b216559f71a1c548f9a')
+
+prepare() {
+  find tox-$pkgver -name "*.pyc" -delete
+}
+
+build() {
+  export LC_CTYPE=en_US.UTF-8
+
+  cd "$srcdir"/tox-$pkgver
+  python setup.py build
+}
+
+check() {
+  # Hack entry points
+
+  (
+cd "$srcdir"/tox-$pkgver
+virtualenv "$srcdir/pyvenv" --system-site-packages
+. "$srcdir/pyvenv/bin/activate"
+python setup.py install
+python setup.py pytest
+  )
+}
+
+package() {
+  cd "$srcdir"/tox-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  ln -s tox "$pkgdir"/usr/bin/tox3
+}



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 23:45:20
  Author: felixonmars
Revision: 1088048

upgpkg: python-tox 3.24.5-1

Modified:
  python-tox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 23:40:35 UTC (rev 1088047)
+++ PKGBUILD2021-12-29 23:45:20 UTC (rev 1088048)
@@ -4,8 +4,8 @@
 # Contributor: Sebastian Wiesner 
 
 pkgname=python-tox
-pkgver=3.24.4
-pkgrel=4
+pkgver=3.24.5
+pkgrel=1
 pkgdesc='Python virtualenv management and testing tool'
 arch=('any')
 url='https://tox.readthedocs.io'
@@ -17,7 +17,7 @@
 checkdepends=('python-pytest-runner' 'python-pytest-mock'
   'python-flaky')
 source=("https://pypi.io/packages/source/t/tox/tox-$pkgver.tar.gz";)
-sha512sums=('9fe2256276b83bf3bc55ec1876be41da2ff7217187f4bf8f4d728106f9c63fc59d146de5e424f7a90d28b938d312c175f7c815bfd3a17d329bec9ba4102139fc')
+sha512sums=('2b047c5682c2c57268fb46055207388d060fb31511d6e442dc49244a5ac53c4d2fecd7bb9a8e33bb02b580192926592523dfb991c4bd8b216559f71a1c548f9a')
 
 prepare() {
   find tox-$pkgver -name "*.pyc" -delete



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

2021-12-29 Thread Alexander Rødseth via arch-commits
Date: Wednesday, December 29, 2021 @ 23:40:35
  Author: arodseth
Revision: 1088047

archrelease: copy trunk to community-x86_64

Added:
  erlang-nox/repos/community-x86_64/PKGBUILD
(from rev 1088046, erlang-nox/trunk/PKGBUILD)
  erlang-nox/repos/community-x86_64/epmd.conf
(from rev 1088046, erlang-nox/trunk/epmd.conf)
  erlang-nox/repos/community-x86_64/epmd.service
(from rev 1088046, erlang-nox/trunk/epmd.service)
  erlang-nox/repos/community-x86_64/epmd.socket
(from rev 1088046, erlang-nox/trunk/epmd.socket)
Deleted:
  erlang-nox/repos/community-x86_64/PKGBUILD
  erlang-nox/repos/community-x86_64/epmd.conf
  erlang-nox/repos/community-x86_64/epmd.service
  erlang-nox/repos/community-x86_64/epmd.socket

--+
 PKGBUILD |  132 -
 epmd.conf|6 +-
 epmd.service |   22 -
 epmd.socket  |   18 +++
 4 files changed, 89 insertions(+), 89 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-29 23:40:28 UTC (rev 1088046)
+++ PKGBUILD2021-12-29 23:40:35 UTC (rev 1088047)
@@ -1,66 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Lukas Fleischer 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: Sarah Hay 
-# Contributor: Tom Burdick 
-# Contributor: Ricardo Catalinas Jiménez 
-
-pkgname=erlang-nox
-pkgver=24.1.7
-pkgrel=1
-_docver=24.1
-pkgdesc='General-purpose concurrent functional programming language (headless 
version)'
-arch=(x86_64)
-url='https://erlang.org/'
-license=(Apache)
-depends=(ncurses openssl)
-makedepends=(fop git java-environment libxslt lksctp-tools unixodbc)
-conflicts=(erlang)
-optdepends=('erlang-unixodbc: database support'
-'java-environment: for Java support'
-'lksctp-tools: for SCTP support')
-options=(staticlibs)
-source=(epmd.conf
-epmd.service
-epmd.socket
-"$url/download/otp_doc_man_$_docver.tar.gz"
-
"git+https://github.com/erlang/otp#commit=5d0fa9d31812947479eb29f797990da6655d4fa2";)
 # tag: OTP-24.1.7
-b2sums=('1675ac9bf948ab19e8b63077d870ccf356fcdbce14de2777f00b3488aa1ce34a5e0a5cdc0428707f744dee5940b12653a44e0ded0554de95ebb31bce4676ff87'
-
'1f765318bcd322ce697a48c064ccdb1bd107b4a84e164a87f62678391cb82a9ab17a397d679cf266e037a5a2d91772b85f7a97f9cc5478c0f18118743b30045f'
-
'c37706f5f6e2d49100104fb442ebf15edd6ee0a1e8038d0364794cf34fd3f02a61b9ad2706228b3327b85b0cadcd11aac6087e7c98408eae2d307a09191b6553'
-
'092c7870914e108e3fe06b68be6c54cff508cd938b5b510ca9a7c946b786e5725ffa1f2c87282a36480a9c1c7d7c899e8118546102a98136f813309a7f0bd334'
-'SKIP')
-
-build() {
-  cd otp
-  ./otp_build autoconf
-  ./configure \
---enable-builtin-zlib \
---enable-smp-support \
---prefix=/usr \
---with-odbc
-  make
-}
-
-package() {
-  make -C otp DESTDIR="$pkgdir" install
-
-  # services and configuration
-  install -Dm644 epmd.service "$pkgdir/usr/lib/systemd/system/epmd.service"
-  install -Dm644 epmd.socket "$pkgdir/usr/lib/systemd/system/epmd.socket"
-  install -Dm644 epmd.conf "$pkgdir/etc/conf.d/epmd"
-
-  # readme and licenses
-  install -Dm644 otp/README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
-  install -Dm644 otp/LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  install -Dm644 otp/CONTRIBUTING.md 
"$pkgdir/usr/share/doc/$pkgname/CONTRIBUTING.md"
-  install -Dm644 otp/AUTHORS "$pkgdir/usr/share/doc/$pkgname/AUTHORS"
-
-  # man pages
-  cp -r man "$pkgdir/usr/lib/erlang/"
-
-  # remove files that are included in the erlang-unixodbc package
-  rm -rf "$pkgdir/usr/lib/erlang/"{lib/odbc*,man/man3/odbc.3}
-}
-
-# getver: raw.githubusercontent.com/erlang/otp/maint/OTP_VERSION

Copied: erlang-nox/repos/community-x86_64/PKGBUILD (from rev 1088046, 
erlang-nox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-29 23:40:35 UTC (rev 1088047)
@@ -0,0 +1,66 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Lukas Fleischer 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Sarah Hay 
+# Contributor: Tom Burdick 
+# Contributor: Ricardo Catalinas Jiménez 
+
+pkgname=erlang-nox
+pkgver=24.2
+pkgrel=1
+_docver=24.2
+pkgdesc='General-purpose concurrent functional programming language (headless 
version)'
+arch=(x86_64)
+url='https://erlang.org/'
+license=(Apache)
+depends=(ncurses openssl)
+makedepends=(fop git java-environment libxslt lksctp-tools unixodbc)
+conflicts=(erlang)
+optdepends=('erlang-unixodbc: database support'
+'java-environment: for Java support'
+'lksctp-tools: for SCTP support')
+options=(staticlibs)
+source=(epmd.conf
+epmd.service
+epmd.socket
+"$url/download/otp_doc_man_$_docver.tar.gz"
+
"git+https://github.com/erlang/otp#commit=df48c260e74c3e9058ff8681ce9f554e6fa0fe34";)
 # tag: OTP-24.2
+b2sums=('1675ac9bf948ab19e8b63077d8

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

2021-12-29 Thread Alexander Rødseth via arch-commits
Date: Wednesday, December 29, 2021 @ 23:40:28
  Author: arodseth
Revision: 1088046

upgpkg: erlang-nox 24.2-1

Modified:
  erlang-nox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 23:33:09 UTC (rev 1088045)
+++ PKGBUILD2021-12-29 23:40:28 UTC (rev 1088046)
@@ -6,9 +6,9 @@
 # Contributor: Ricardo Catalinas Jiménez 
 
 pkgname=erlang-nox
-pkgver=24.1.7
+pkgver=24.2
 pkgrel=1
-_docver=24.1
+_docver=24.2
 pkgdesc='General-purpose concurrent functional programming language (headless 
version)'
 arch=(x86_64)
 url='https://erlang.org/'
@@ -24,11 +24,11 @@
 epmd.service
 epmd.socket
 "$url/download/otp_doc_man_$_docver.tar.gz"
-
"git+https://github.com/erlang/otp#commit=5d0fa9d31812947479eb29f797990da6655d4fa2";)
 # tag: OTP-24.1.7
+
"git+https://github.com/erlang/otp#commit=df48c260e74c3e9058ff8681ce9f554e6fa0fe34";)
 # tag: OTP-24.2
 
b2sums=('1675ac9bf948ab19e8b63077d870ccf356fcdbce14de2777f00b3488aa1ce34a5e0a5cdc0428707f744dee5940b12653a44e0ded0554de95ebb31bce4676ff87'
 
'1f765318bcd322ce697a48c064ccdb1bd107b4a84e164a87f62678391cb82a9ab17a397d679cf266e037a5a2d91772b85f7a97f9cc5478c0f18118743b30045f'
 
'c37706f5f6e2d49100104fb442ebf15edd6ee0a1e8038d0364794cf34fd3f02a61b9ad2706228b3327b85b0cadcd11aac6087e7c98408eae2d307a09191b6553'
-
'092c7870914e108e3fe06b68be6c54cff508cd938b5b510ca9a7c946b786e5725ffa1f2c87282a36480a9c1c7d7c899e8118546102a98136f813309a7f0bd334'
+
'17cf3c1e296c883e9c930cd540d439f7dd71a40048bbe80efd6f46dd5b4d9faf51177d2bb133f782742b0b367c8f54c27ed2b2cce277372a98dd55bb629f3b55'
 'SKIP')
 
 build() {



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 23:33:09
  Author: felixonmars
Revision: 1088045

archrelease: copy trunk to community-x86_64

Added:
  ibus-anthy/repos/community-x86_64/PKGBUILD
(from rev 1088044, ibus-anthy/trunk/PKGBUILD)
Deleted:
  ibus-anthy/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   66 ++---
 1 file changed, 33 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-29 23:33:00 UTC (rev 1088044)
+++ PKGBUILD2021-12-29 23:33:09 UTC (rev 1088045)
@@ -1,33 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Rainy 
-# Contributor: Lee.MaRS 
-# Contributor: Daniel J Griffiths 
-
-pkgname=ibus-anthy
-pkgver=1.5.13
-pkgrel=2
-pkgdesc='Japanese input method Anthy IMEngine for IBus Framework'
-arch=('x86_64')
-license=('LGPL')
-url='https://github.com/ibus/ibus-anthy'
-depends=('ibus' 'anthy' 'python' 'gtk-update-icon-cache' 'python-gobject')
-makedepends=('intltool' 'gobject-introspection')
-source=("https://github.com/ibus/ibus-anthy/archive/$pkgver/$pkgname-$pkgver.tar.gz";)
-sha512sums=('058feb49b2fe50ae3ca959f4754b8070f3ebc1e6727fef4bca791aa45a23c95018000e2a8bca496d6592b052298a6fb2869a07c2cc56cc473c81cc437efa175b')
-
-prepare() {
-  cd $pkgname-$pkgver
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --libexec=/usr/lib/ibus
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: ibus-anthy/repos/community-x86_64/PKGBUILD (from rev 1088044, 
ibus-anthy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-29 23:33:09 UTC (rev 1088045)
@@ -0,0 +1,33 @@
+# Maintainer: Felix Yan 
+# Contributor: Rainy 
+# Contributor: Lee.MaRS 
+# Contributor: Daniel J Griffiths 
+
+pkgname=ibus-anthy
+pkgver=1.5.14
+pkgrel=1
+pkgdesc='Japanese input method Anthy IMEngine for IBus Framework'
+arch=('x86_64')
+license=('LGPL')
+url='https://github.com/ibus/ibus-anthy'
+depends=('ibus' 'anthy' 'python' 'gtk-update-icon-cache' 'python-gobject')
+makedepends=('intltool' 'gobject-introspection')
+source=("https://github.com/ibus/ibus-anthy/archive/$pkgver/$pkgname-$pkgver.tar.gz";)
+sha512sums=('4d06d4e177df62d22c61bf6ebfda04ddbf545ea1947d0c315e3dfe5e48d9ddc57e5fcc89919ae3b9f7430e6124a5dfb1295f4ca7362fbc35714d627f80fae6d8')
+
+prepare() {
+  cd $pkgname-$pkgver
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --libexec=/usr/lib/ibus
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 23:33:00
  Author: felixonmars
Revision: 1088044

upgpkg: ibus-anthy 1.5.14-1

Modified:
  ibus-anthy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 23:26:34 UTC (rev 1088043)
+++ PKGBUILD2021-12-29 23:33:00 UTC (rev 1088044)
@@ -4,8 +4,8 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=ibus-anthy
-pkgver=1.5.13
-pkgrel=2
+pkgver=1.5.14
+pkgrel=1
 pkgdesc='Japanese input method Anthy IMEngine for IBus Framework'
 arch=('x86_64')
 license=('LGPL')
@@ -13,7 +13,7 @@
 depends=('ibus' 'anthy' 'python' 'gtk-update-icon-cache' 'python-gobject')
 makedepends=('intltool' 'gobject-introspection')
 
source=("https://github.com/ibus/ibus-anthy/archive/$pkgver/$pkgname-$pkgver.tar.gz";)
-sha512sums=('058feb49b2fe50ae3ca959f4754b8070f3ebc1e6727fef4bca791aa45a23c95018000e2a8bca496d6592b052298a6fb2869a07c2cc56cc473c81cc437efa175b')
+sha512sums=('4d06d4e177df62d22c61bf6ebfda04ddbf545ea1947d0c315e3dfe5e48d9ddc57e5fcc89919ae3b9f7430e6124a5dfb1295f4ca7362fbc35714d627f80fae6d8')
 
 prepare() {
   cd $pkgname-$pkgver



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 23:00:49
  Author: felixonmars
Revision: 1087695

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 1087694, haskell-language-server/trunk/PKGBUILD)

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

Copied: haskell-language-server/repos/community-staging-x86_64/PKGBUILD (from 
rev 1087694, haskell-language-server/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-29 23:00:49 UTC (rev 1087695)
@@ -0,0 +1,67 @@
+# Maintainer: Felix Yan 
+
+pkgname=haskell-language-server
+pkgver=1.3.0.0
+pkgrel=46
+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 --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-language-server/trunk (PKGBUILD)

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 23:00:41
  Author: felixonmars
Revision: 1087694

upgpkg: haskell-language-server 1.3.0.0-46: rebuild with unordered-containers 
0.2.15.0

Modified:
  haskell-language-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 22:58:44 UTC (rev 1087693)
+++ PKGBUILD2021-12-29 23:00:41 UTC (rev 1087694)
@@ -2,7 +2,7 @@
 
 pkgname=haskell-language-server
 pkgver=1.3.0.0
-pkgrel=45
+pkgrel=46
 pkgdesc="LSP server for GHC"
 url="https://github.com/haskell/haskell-language-server#readme";
 license=("Apache")



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 22:58:44
  Author: felixonmars
Revision: 1087693

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 1087692, 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 1087692, haskell-hls-pragmas-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-29 22:58:44 UTC (rev 1087693)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-pragmas-plugin
+pkgname=haskell-hls-pragmas-plugin
+pkgver=1.0.1.0
+pkgrel=40
+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 --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)

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 22:58:36
  Author: felixonmars
Revision: 1087692

upgpkg: haskell-hls-pragmas-plugin 1.0.1.0-40: rebuild with 
unordered-containers 0.2.15.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 22:56:25 UTC (rev 1087691)
+++ PKGBUILD2021-12-29 22:58:36 UTC (rev 1087692)
@@ -3,7 +3,7 @@
 _hkgname=hls-pragmas-plugin
 pkgname=haskell-hls-pragmas-plugin
 pkgver=1.0.1.0
-pkgrel=39
+pkgrel=40
 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/trunk (PKGBUILD)

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 22:56:17
  Author: felixonmars
Revision: 1087690

upgpkg: haskell-hls-eval-plugin 1.1.2.0-41: rebuild with unordered-containers 
0.2.15.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 22:54:40 UTC (rev 1087689)
+++ PKGBUILD2021-12-29 22:56:17 UTC (rev 1087690)
@@ -3,7 +3,7 @@
 _hkgname=hls-eval-plugin
 pkgname=haskell-hls-eval-plugin
 pkgver=1.1.2.0
-pkgrel=40
+pkgrel=41
 pkgdesc="Eval plugin for Haskell Language Server"
 url="https://github.com/haskell/haskell-language-server";
 license=("Apache")



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 22:56:25
  Author: felixonmars
Revision: 1087691

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 1087690, 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 1087690, haskell-hls-eval-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-29 22:56:25 UTC (rev 1087691)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-eval-plugin
+pkgname=haskell-hls-eval-plugin
+pkgver=1.1.2.0
+pkgrel=41
+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 -u 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 --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-module-name-plugin/trunk (PKGBUILD)

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 22:54:32
  Author: felixonmars
Revision: 1087688

upgpkg: haskell-hls-module-name-plugin 1.0.0.1-40: rebuild with 
unordered-containers 0.2.15.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 22:53:40 UTC (rev 1087687)
+++ PKGBUILD2021-12-29 22:54:32 UTC (rev 1087688)
@@ -3,7 +3,7 @@
 _hkgname=hls-module-name-plugin
 pkgname=haskell-hls-module-name-plugin
 pkgver=1.0.0.1
-pkgrel=39
+pkgrel=40
 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-module-name-plugin/repos (2 files)

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 22:54:40
  Author: felixonmars
Revision: 1087689

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 1087688, 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 1087688, haskell-hls-module-name-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-29 22:54:40 UTC (rev 1087689)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-module-name-plugin
+pkgname=haskell-hls-module-name-plugin
+pkgver=1.0.0.1
+pkgrel=40
+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 --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)

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 22:53:40
  Author: felixonmars
Revision: 1087687

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 1087686, 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 1087686, haskell-hls-fourmolu-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-29 22:53:40 UTC (rev 1087687)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-fourmolu-plugin
+pkgname=haskell-hls-fourmolu-plugin
+pkgver=1.0.0.2
+pkgrel=42
+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 --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/trunk (PKGBUILD)

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 22:53:32
  Author: felixonmars
Revision: 1087686

upgpkg: haskell-hls-fourmolu-plugin 1.0.0.2-42: rebuild with 
unordered-containers 0.2.15.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 22:49:31 UTC (rev 1087685)
+++ PKGBUILD2021-12-29 22:53:32 UTC (rev 1087686)
@@ -3,7 +3,7 @@
 _hkgname=hls-fourmolu-plugin
 pkgname=haskell-hls-fourmolu-plugin
 pkgver=1.0.0.2
-pkgrel=41
+pkgrel=42
 pkgdesc="Integration with the Fourmolu code formatter"
 url="https://hackage.haskell.org/package/hls-fourmolu-plugin";
 license=("Apache")



[arch-commits] Commit in systemd/repos (21 files)

2021-12-29 Thread Christian Hesse via arch-commits
Date: Wednesday, December 29, 2021 @ 22:30:03
  Author: eworm
Revision: 433251

archrelease: copy trunk to testing-x86_64

Added:
  systemd/repos/testing-x86_64/
  systemd/repos/testing-x86_64/0001-Use-Arch-Linux-device-access-groups.patch
(from rev 433250, 
systemd/trunk/0001-Use-Arch-Linux-device-access-groups.patch)
  systemd/repos/testing-x86_64/20-systemd-sysusers.hook
(from rev 433250, systemd/trunk/20-systemd-sysusers.hook)
  systemd/repos/testing-x86_64/30-systemd-binfmt.hook
(from rev 433250, systemd/trunk/30-systemd-binfmt.hook)
  systemd/repos/testing-x86_64/30-systemd-catalog.hook
(from rev 433250, systemd/trunk/30-systemd-catalog.hook)
  systemd/repos/testing-x86_64/30-systemd-daemon-reload.hook
(from rev 433250, systemd/trunk/30-systemd-daemon-reload.hook)
  systemd/repos/testing-x86_64/30-systemd-hwdb.hook
(from rev 433250, systemd/trunk/30-systemd-hwdb.hook)
  systemd/repos/testing-x86_64/30-systemd-sysctl.hook
(from rev 433250, systemd/trunk/30-systemd-sysctl.hook)
  systemd/repos/testing-x86_64/30-systemd-tmpfiles.hook
(from rev 433250, systemd/trunk/30-systemd-tmpfiles.hook)
  systemd/repos/testing-x86_64/30-systemd-udev-reload.hook
(from rev 433250, systemd/trunk/30-systemd-udev-reload.hook)
  systemd/repos/testing-x86_64/30-systemd-update.hook
(from rev 433250, systemd/trunk/30-systemd-update.hook)
  systemd/repos/testing-x86_64/PKGBUILD
(from rev 433250, systemd/trunk/PKGBUILD)
  systemd/repos/testing-x86_64/arch.conf
(from rev 433250, systemd/trunk/arch.conf)
  systemd/repos/testing-x86_64/initcpio-hook-udev
(from rev 433250, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-x86_64/initcpio-install-systemd
(from rev 433250, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-x86_64/initcpio-install-udev
(from rev 433250, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-x86_64/loader.conf
(from rev 433250, systemd/trunk/loader.conf)
  systemd/repos/testing-x86_64/splash-arch.bmp
(from rev 433250, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-x86_64/systemd-hook
(from rev 433250, systemd/trunk/systemd-hook)
  systemd/repos/testing-x86_64/systemd-user.pam
(from rev 433250, systemd/trunk/systemd-user.pam)
  systemd/repos/testing-x86_64/systemd.install
(from rev 433250, systemd/trunk/systemd.install)

+
 0001-Use-Arch-Linux-device-access-groups.patch |  176 ++
 20-systemd-sysusers.hook   |   10 
 30-systemd-binfmt.hook |   10 
 30-systemd-catalog.hook|   11 
 30-systemd-daemon-reload.hook  |   11 
 30-systemd-hwdb.hook   |   11 
 30-systemd-sysctl.hook |   10 
 30-systemd-tmpfiles.hook   |   10 
 30-systemd-udev-reload.hook|   11 
 30-systemd-update.hook |   11 
 PKGBUILD   |  288 +++
 arch.conf  |7 
 initcpio-hook-udev |   22 +
 initcpio-install-systemd   |  152 
 initcpio-install-udev  |   33 ++
 loader.conf|1 
 systemd-hook   |   46 +++
 systemd-user.pam   |5 
 systemd.install|   65 +
 19 files changed, 890 insertions(+)

Copied: 
systemd/repos/testing-x86_64/0001-Use-Arch-Linux-device-access-groups.patch 
(from rev 433250, systemd/trunk/0001-Use-Arch-Linux-device-access-groups.patch)
===
--- testing-x86_64/0001-Use-Arch-Linux-device-access-groups.patch   
(rev 0)
+++ testing-x86_64/0001-Use-Arch-Linux-device-access-groups.patch   
2021-12-29 22:30:03 UTC (rev 433251)
@@ -0,0 +1,176 @@
+From f7d07e298c819a81eab965efbdbf53a2ce67fc0e Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Tue, 6 Mar 2018 23:39:47 +0100
+Subject: [PATCH] Use Arch Linux' device access groups
+
+  cdrom   → optical
+  dialout → uucp
+  tape→ storage
+---
+ meson.build  |  6 +++---
+ meson_options.txt| 12 ++--
+ rules.d/50-udev-default.rules.in | 14 +++---
+ sysusers.d/basic.conf.in |  6 +++---
+ 4 files changed, 19 insertions(+), 19 deletions(-)
+
+diff --git a/meson.build b/meson.build
+index 32e5413a62..f781e06fed 100644
+--- a/meson.build
 b/meson.build
+@@ -796,19 +796,19 @@ conf.set_quoted('NOBODY_GROUP_NAME', nobody_group)
+ static_ugids = []
+ foreach option : ['adm-gid',
+   'audio-gid',
+-  'cdrom-gid',
+-  'dialout-gid',
+   'disk-gid',
+   'input-gid',

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

2021-12-29 Thread Christian Hesse via arch-commits
Date: Wednesday, December 29, 2021 @ 22:29:48
  Author: eworm
Revision: 433250

upgpkg: systemd 250-4: fix delay on tty

Modified:
  systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 21:27:32 UTC (rev 433249)
+++ PKGBUILD2021-12-29 22:29:48 UTC (rev 433250)
@@ -7,7 +7,7 @@
 _tag='9c8279cdd5d0bc256b8cc0ced2312e27e069a214' # git rev-parse v${_tag_name}
 _tag_name=250
 pkgver="${_tag_name/-/}"
-pkgrel=3
+pkgrel=4
 arch=('x86_64')
 url='https://www.github.com/systemd/systemd'
 makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gperf' 'lz4' 'xz' 'pam' 'libelf'
@@ -64,6 +64,9 @@
 _backports=(
   # chrattr-util: return EOPNOTSUPP from chrattr_full if no other failure was 
observed
   '7c3b51c469140cdbc1b7e9a232af3f250fea3884'
+
+  # manager: always close idle pipe when sending ready notification
+  '9c1b17c3dc1541df02118ee3aaf6dd5dd540cdc2'
 )
 
 _reverts=(



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

2021-12-29 Thread David Runge via arch-commits
Date: Wednesday, December 29, 2021 @ 22:21:38
  Author: dvzrv
Revision: 1087676

archrelease: copy trunk to community-staging-x86_64

Added:
  wlroots/repos/community-staging-x86_64/PKGBUILD
(from rev 1087675, wlroots/trunk/PKGBUILD)
Deleted:
  wlroots/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-29 22:21:31 UTC (rev 1087675)
+++ PKGBUILD2021-12-29 22:21:38 UTC (rev 1087676)
@@ -1,56 +0,0 @@
-# Maintainer: Brett Cornwall 
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Omar Pakker
-
-pkgname=wlroots
-pkgver=0.15.0
-pkgrel=2
-license=('MIT')
-pkgdesc='Modular Wayland compositor library'
-url='https://github.com/swaywm/wlroots'
-arch=('x86_64')
-depends=(
-'libinput'
-'libseat.so'
-'libxkbcommon'
-'opengl-driver'
-'pixman'
-'xcb-util-errors'
-'xcb-util-renderutil'
-'xcb-util-wm'
-)
-makedepends=(
-'glslang'
-'meson'
-'ninja'
-'vulkan-headers'
-'wayland-protocols'
-'xorg-xwayland'
-)
-optdepends=(
-'xorg-xwayland: Xwayland support'
-)
-provides=(
-'libwlroots.so'
-)
-source=(
-
"$pkgname-$pkgver.tar.gz::https://gitlab.freedesktop.org/wlroots/wlroots/-/releases/$pkgver/downloads/wlroots-$pkgver.tar.gz";
-
"https://gitlab.freedesktop.org/wlroots/wlroots/-/releases/$pkgver/downloads/wlroots-$pkgver.tar.gz.sig";
-)
-sha256sums=('2921a38cea79dbb6f1da895a4dbe1faedba8d7ff2c0c2468dad94ccba12e4278'
-'SKIP')
-validpgpkeys=(
-'34FF9526CFEF0E97A340E2E40FDE7BE0E88F5E48' # Simon Ser
-'9DDA3B9FA5D58DD5392C78E652CB6609B22DA89A' # Drew DeVault
-'4100929B33EEB0FD1DB852797BC79407090047CA' # Sway signing key
-)
-
-build() {
-arch-meson "$pkgname-$pkgver" build
-ninja -C build
-}
-
-package() {
-DESTDIR="$pkgdir" ninja -C build install
-install -Dm644 "$pkgname-$pkgver/LICENSE" -t 
"$pkgdir/usr/share/licenses/$pkgname/"
-}

Copied: wlroots/repos/community-staging-x86_64/PKGBUILD (from rev 1087675, 
wlroots/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-29 22:21:38 UTC (rev 1087676)
@@ -0,0 +1,62 @@
+# Maintainer: Brett Cornwall 
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Omar Pakker
+
+pkgname=wlroots
+pkgver=0.15.0
+pkgrel=3
+license=('MIT')
+pkgdesc='Modular Wayland compositor library'
+url='https://gitlab.freedesktop.org/wlroots/wlroots'
+arch=('x86_64')
+depends=(
+'libglvnd'
+'libinput'
+'seatd' 'libseat.so'
+'libxcb'
+'libxkbcommon' 'libxkbcommon.so'
+'opengl-driver'
+'pixman' 'libpixman-1.so'
+'systemd-libs' 'libudev.so'
+'vulkan-icd-loader' 'libvulkan.so'
+'wayland'
+'xcb-util-errors'
+'xcb-util-renderutil'
+'xcb-util-wm'
+)
+makedepends=(
+'glslang'
+'meson'
+'ninja'
+'systemd'
+'vulkan-headers'
+'wayland-protocols'
+'xorg-xwayland'
+)
+optdepends=(
+'xorg-xwayland: Xwayland support'
+)
+provides=(
+'libwlroots.so'
+)
+source=(
+
"$pkgname-$pkgver.tar.gz::https://gitlab.freedesktop.org/wlroots/wlroots/-/releases/$pkgver/downloads/wlroots-$pkgver.tar.gz";
+
"https://gitlab.freedesktop.org/wlroots/wlroots/-/releases/$pkgver/downloads/wlroots-$pkgver.tar.gz.sig";
+)
+sha256sums=('2921a38cea79dbb6f1da895a4dbe1faedba8d7ff2c0c2468dad94ccba12e4278'
+'SKIP')
+validpgpkeys=(
+'34FF9526CFEF0E97A340E2E40FDE7BE0E88F5E48' # Simon Ser
+'9DDA3B9FA5D58DD5392C78E652CB6609B22DA89A' # Drew DeVault
+'4100929B33EEB0FD1DB852797BC79407090047CA' # Sway signing key
+)
+
+build() {
+arch-meson "$pkgname-$pkgver" build
+ninja -C build
+}
+
+package() {
+DESTDIR="$pkgdir" ninja -C build install
+install -Dm644 "$pkgname-$pkgver/LICENSE" -t 
"$pkgdir/usr/share/licenses/$pkgname/"
+}



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

2021-12-29 Thread David Runge via arch-commits
Date: Wednesday, December 29, 2021 @ 22:21:31
  Author: dvzrv
Revision: 1087675

upgpkg: wlroots 0.15.0-3: Rebuild to add direct dependencies.

Add all direct dependencies and update the url to the new upstream.

Modified:
  wlroots/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 22:10:45 UTC (rev 1087674)
+++ PKGBUILD2021-12-29 22:21:31 UTC (rev 1087675)
@@ -4,17 +4,22 @@
 
 pkgname=wlroots
 pkgver=0.15.0
-pkgrel=2
+pkgrel=3
 license=('MIT')
 pkgdesc='Modular Wayland compositor library'
-url='https://github.com/swaywm/wlroots'
+url='https://gitlab.freedesktop.org/wlroots/wlroots'
 arch=('x86_64')
 depends=(
+'libglvnd'
 'libinput'
-'libseat.so'
-'libxkbcommon'
+'seatd' 'libseat.so'
+'libxcb'
+'libxkbcommon' 'libxkbcommon.so'
 'opengl-driver'
-'pixman'
+'pixman' 'libpixman-1.so'
+'systemd-libs' 'libudev.so'
+'vulkan-icd-loader' 'libvulkan.so'
+'wayland'
 'xcb-util-errors'
 'xcb-util-renderutil'
 'xcb-util-wm'
@@ -23,6 +28,7 @@
 'glslang'
 'meson'
 'ninja'
+'systemd'
 'vulkan-headers'
 'wayland-protocols'
 'xorg-xwayland'



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

2021-12-29 Thread David Runge via arch-commits
Date: Wednesday, December 29, 2021 @ 22:10:45
  Author: dvzrv
Revision: 1087674

archrelease: copy trunk to community-staging-x86_64

Added:
  cage/repos/community-staging-x86_64/
  cage/repos/community-staging-x86_64/PKGBUILD
(from rev 1087673, cage/trunk/PKGBUILD)

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

Copied: cage/repos/community-staging-x86_64/PKGBUILD (from rev 1087673, 
cage/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-29 22:10:45 UTC (rev 1087674)
@@ -0,0 +1,43 @@
+# Maintainer: David Runge 
+# Maintainer: Brett Cornwall 
+
+pkgname=cage
+pkgver=0.1.4
+pkgrel=2
+pkgdesc="A kiosk compositor for Wayland"
+arch=(x86_64)
+url="https://www.hjdskes.nl/projects/cage/";
+license=(MIT)
+depends=(glibc polkit wayland)
+makedepends=(git libxkbcommon meson pixman scdoc wayland-protocols
+wlroots xorg-server-xwayland)
+optdepends=('xorg-server-xwayland: X11 support')
+source=("${pkgname}::git+https://github.com/Hjdskes/${pkgname}.git#tag=v${pkgver}?signed";)
+sha512sums=('SKIP')
+validpgpkeys=('13B6A35E9FD677D02CD68DBE37C445296EBC43B1') # Jente Hidskes 

+
+prepare() {
+  cd "${pkgname}"
+  # add support for wlroots 0.15.0
+  git cherry-pick -n 1a3ab3eb3ad0f4a1addb8f9a9427d8b369b19511
+  git cherry-pick -n 8385b62a9b31028fa356cc4130baebc8b6f4adec
+  git cherry-pick -n 388d60d6b8870fb83dd440051ee805cc7ec7
+  git cherry-pick -n 395189fb051ed722c7b10b6cb11caa8f6904079c
+}
+
+build() {
+  arch-meson -Dxwayland=true build "$pkgname"
+  ninja -C build
+}
+
+check() {
+  ninja -C build test
+}
+
+package() {
+  depends+=(libwlroots.so libxkbcommon.so libpixman-1.so)
+
+  DESTDIR="${pkgdir}" meson install -C build
+  install -vDm 644 "$pkgname/README.md" -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -vDm 644 "$pkgname/LICENSE" -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
+}



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

2021-12-29 Thread David Runge via arch-commits
Date: Wednesday, December 29, 2021 @ 22:10:38
  Author: dvzrv
Revision: 1087673

upgpkg: cage 0.1.4-2: Rebuild against wlroots 0.15.0.

Cherry-pick changes required to support wlroots 0.15.0.
Simplify quoting in file.
Do not break long lines.

Modified:
  cage/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 21:53:04 UTC (rev 1087672)
+++ PKGBUILD2021-12-29 22:10:38 UTC (rev 1087673)
@@ -3,38 +3,41 @@
 
 pkgname=cage
 pkgver=0.1.4
-pkgrel=1
+pkgrel=2
 pkgdesc="A kiosk compositor for Wayland"
-arch=('x86_64')
+arch=(x86_64)
 url="https://www.hjdskes.nl/projects/cage/";
-license=('MIT')
-depends=('glibc' 'polkit' 'wayland')
-makedepends=('git' 'libxkbcommon' 'meson' 'pixman' 'scdoc' 'wayland-protocols'
-'wlroots' 'xorg-server-xwayland')
+license=(MIT)
+depends=(glibc polkit wayland)
+makedepends=(git libxkbcommon meson pixman scdoc wayland-protocols
+wlroots xorg-server-xwayland)
 optdepends=('xorg-server-xwayland: X11 support')
 
source=("${pkgname}::git+https://github.com/Hjdskes/${pkgname}.git#tag=v${pkgver}?signed";)
 sha512sums=('SKIP')
 validpgpkeys=('13B6A35E9FD677D02CD68DBE37C445296EBC43B1') # Jente Hidskes 

 
+prepare() {
+  cd "${pkgname}"
+  # add support for wlroots 0.15.0
+  git cherry-pick -n 1a3ab3eb3ad0f4a1addb8f9a9427d8b369b19511
+  git cherry-pick -n 8385b62a9b31028fa356cc4130baebc8b6f4adec
+  git cherry-pick -n 388d60d6b8870fb83dd440051ee805cc7ec7
+  git cherry-pick -n 395189fb051ed722c7b10b6cb11caa8f6904079c
+}
+
 build() {
-  cd "$pkgname"
-  arch-meson -Dxwayland=true \
- build
+  arch-meson -Dxwayland=true build "$pkgname"
   ninja -C build
 }
 
 check() {
-  cd "$pkgname"
   ninja -C build test
 }
 
 package() {
-  depends+=('libwlroots.so' 'libxkbcommon.so' 'libpixman-1.so')
-  cd "$pkgname"
+  depends+=(libwlroots.so libxkbcommon.so libpixman-1.so)
+
   DESTDIR="${pkgdir}" meson install -C build
-  #docs
-  install -vDm 644 README.md \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -vDm 644 LICENSE \
--t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -vDm 644 "$pkgname/README.md" -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -vDm 644 "$pkgname/LICENSE" -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
 }



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

2021-12-29 Thread Orhun Parmaksiz via arch-commits
Date: Wednesday, December 29, 2021 @ 21:53:04
  Author: orhun
Revision: 1087672

archrelease: copy trunk to community-x86_64

Added:
  pycharm-community-edition/repos/community-x86_64/PKGBUILD
(from rev 1087671, pycharm-community-edition/trunk/PKGBUILD)
  pycharm-community-edition/repos/community-x86_64/pycharm.desktop
(from rev 1087671, pycharm-community-edition/trunk/pycharm.desktop)
  pycharm-community-edition/repos/community-x86_64/pycharm.sh
(from rev 1087671, pycharm-community-edition/trunk/pycharm.sh)
Deleted:
  pycharm-community-edition/repos/community-x86_64/PKGBUILD
  pycharm-community-edition/repos/community-x86_64/pycharm.desktop
  pycharm-community-edition/repos/community-x86_64/pycharm.sh

-+
 PKGBUILD|  199 ++
 pycharm.desktop |   22 ++---
 pycharm.sh  |   40 +-
 3 files changed, 130 insertions(+), 131 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-29 21:52:45 UTC (rev 1087671)
+++ PKGBUILD2021-12-29 21:53:04 UTC (rev 1087672)
@@ -1,100 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Maintainer: Levente Polyak 
-# Maintainer: Orhun Parmaksız 
-# Contributor: David Keogh 
-
-pkgname=pycharm-community-edition
-pkgver=2021.2.3
-_build=212.5457.59
-_gitcommit=034e37835281a6a5366de430fdbb3d1ca27f4679
-pkgrel=2
-pkgdesc='Python IDE for Professional Developers'
-arch=(x86_64)
-url=https://www.jetbrains.com/pycharm/
-license=(APACHE)
-depends=(
-  giflib
-  glib2
-  java-environment=11
-  java11-openjfx
-  python
-  sh
-  ttf-font
-  fontconfig
-  libdbusmenu-glib
-)
-optdepends=(
-  'ipython: IPython integration for Python 3'
-  'python2: Python 2 support'
-)
-makedepends=(
-  ant
-  git
-  java-environment=8
-  python2-setuptools
-  python-setuptools
-)
-source=(
-  
"git+https://github.com/JetBrains/intellij-community.git#commit=${_gitcommit}";
-  idea-android::"git://git.jetbrains.org/idea/android.git#tag=idea/212.5457.46"
-  pycharm.desktop
-  pycharm.sh
-)
-sha256sums=('SKIP'
-'SKIP'
-'f727119ec7c8b96820e80712b1ee342de6a94ff72402e8f2d390cbff702f9b21'
-'7b5360b4977e934931acab775d04915417a5da9f3ea1dd44355525b0016cf65d')
-
-prepare() {
-  cd intellij-community
-
-  echo ${_build} > build.txt
-  mv "${srcdir}"/idea-android android
-
-  # https://youtrack.jetbrains.com/issue/IDEA-266631
-  sed '/intellij.cwm.plugin/d' -i python/build/plugin-list.txt
-  sed '/intellij.marketplace/d' -i python/build/plugin-list.txt
-
-  sed '/def targetOs =/c def targetOs = "linux"' -i 
build/dependencies/setupJbre.gradle
-  sed '/String targetOS/c   String targetOS = OS_LINUX' -i 
platform/build-scripts/groovy/org/jetbrains/intellij/build/BuildOptions.groovy
-  sed -E 's|(\1|' -i build.xml
-  sed -E 's|(\1|' -i python/build.xml
-  sed "s/-Xmx612m -XX:MaxPermSize=152m/-Xmx2048m -XX:MaxPermSize=512m/" -i 
python/build.xml
-  sed 
"s|-Didea.build.number=\${idea.build.number}|-Didea.build.number=\${idea.build.number}
 -Didea.home.path=|" -i python/build.xml
-  sed 's|../build/plugins-autoupload.txt|plugins-autoupload.txt|' -i 
platform/build-scripts/groovy/org/jetbrains/intellij/build/impl/DistributionJARsBuilder.groovy
-  touch plugins-autoupload.txt
-}
-
-build() {
-  cd intellij-community/python
-
-  unset _JAVA_OPTIONS
-  export JAVA_HOME=/usr/lib/jvm/java-11-openjdk
-  export PATH="${JAVA_HOME}/bin:${PATH}"
-  export JDK_16_x64=/usr/lib/jvm/java-8-openjdk
-  export JDK_18_x64=/usr/lib/jvm/java-8-openjdk
-
-  ant -Dintellij.build.target.os=linux build
-  tar -xf ../out/pycharm-ce/artifacts/pycharmPC-${_build}-no-jbr.tar.gz -C 
"${srcdir}"
-
-  cd ../../pycharm-community-${pkgver}
-
-  python2 plugins/python-ce/helpers/pydev/setup_cython.py build_ext 
--build-temp build --build-lib .
-  python3 plugins/python-ce/helpers/pydev/setup_cython.py build_ext 
--build-temp build --build-lib .
-}
-
-package() {
-  cd pycharm-community-${pkgver}
-
-  # workaround FS#40934
-  sed -i 's/lcd/on/' bin/*.vmoptions
-
-  install -dm 755 "${pkgdir}"/usr/share/{licenses,pixmaps,pycharm}
-  cp -dr --no-preserve='ownership' bin lib plugins 
"${pkgdir}"/usr/share/pycharm/
-  cp -dr --no-preserve='ownership' license 
"${pkgdir}"/usr/share/licenses/pycharm/
-  ln -s /usr/share/pycharm/bin/pycharm.png "${pkgdir}"/usr/share/pixmaps/
-  install -Dm 644 ../pycharm.desktop -t "${pkgdir}"/usr/share/applications/
-  install -Dm 755 ../pycharm.sh "${pkgdir}"/usr/bin/pycharm
-}
-
-# vim: ts=2 sw=2 et:

Copied: pycharm-community-edition/repos/community-x86_64/PKGBUILD (from rev 
1087671, pycharm-community-edition/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-29 21:53:04 UTC (rev 1087672)
@@ -0,0 +1,99 @@
+# Maintainer: Maxime Gauduin 
+# Maintainer: Levente Polyak 
+# Maintainer: Orhun Parmaksız 
+# Contributor: David Keogh 
+
+pkg

[arch-commits] Commit in pycharm-community-edition/trunk (PKGBUILD)

2021-12-29 Thread Orhun Parmaksiz via arch-commits
Date: Wednesday, December 29, 2021 @ 21:52:45
  Author: orhun
Revision: 1087671

upgpkg: pycharm-community-edition 2021.3.1-1: upstream release

Modified:
  pycharm-community-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 21:48:57 UTC (rev 1087670)
+++ PKGBUILD2021-12-29 21:52:45 UTC (rev 1087671)
@@ -4,10 +4,10 @@
 # Contributor: David Keogh 
 
 pkgname=pycharm-community-edition
-pkgver=2021.2.3
-_build=212.5457.59
-_gitcommit=034e37835281a6a5366de430fdbb3d1ca27f4679
-pkgrel=2
+pkgver=2021.3.1
+_build=213.6461.77
+_gitcommit=35df0442e731cbe170dd919d6e9ef46713bd1b86
+pkgrel=1
 pkgdesc='Python IDE for Professional Developers'
 arch=(x86_64)
 url=https://www.jetbrains.com/pycharm/
@@ -25,7 +25,6 @@
 )
 optdepends=(
   'ipython: IPython integration for Python 3'
-  'python2: Python 2 support'
 )
 makedepends=(
   ant



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

2021-12-29 Thread Frederik Schwan via arch-commits
Date: Wednesday, December 29, 2021 @ 21:47:56
  Author: freswa
Revision: 1087669

archrelease: copy trunk to community-x86_64

Added:
  wireshark/repos/community-x86_64/PKGBUILD
(from rev 1087668, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-x86_64/wireshark.install
(from rev 1087668, wireshark/trunk/wireshark.install)
  wireshark/repos/community-x86_64/wireshark.sysusers
(from rev 1087668, wireshark/trunk/wireshark.sysusers)
Deleted:
  wireshark/repos/community-x86_64/PKGBUILD
  wireshark/repos/community-x86_64/wireshark.install
  wireshark/repos/community-x86_64/wireshark.sysusers

+
 PKGBUILD   |  204 +--
 wireshark.install  |   16 ++--
 wireshark.sysusers |2 
 3 files changed, 111 insertions(+), 111 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-29 21:47:50 UTC (rev 1087668)
+++ PKGBUILD2021-12-29 21:47:56 UTC (rev 1087669)
@@ -1,102 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Filipe Laíns 
-# Contributor: Timothy Redaelli 
-# Contributor: Guillaume ALAUX 
-# Contributor: Florian Pritz 
-# Contributor: Peter Wu 
-
-pkgbase=wireshark
-pkgname=('wireshark-cli' 'wireshark-qt')
-pkgver=3.6.0
-pkgrel=1
-pkgdesc='Network traffic and protocol analyzer/sniffer'
-url='https://www.wireshark.org/'
-arch=('x86_64')
-license=('GPL2')
-makedepends=('glibc' 'cmake' 'ninja' 'c-ares' 'libmaxminddb' 'qt5-tools' 
'qt5-svg'
- 'qt5-multimedia' 'krb5' 'libpcap' 'libssh' 'libxml2' 'libnghttp2'
- 'snappy' 'lz4' 'spandsp' 'gnutls' 'lua52' 'python' 'libcap' 
'libnl'
- 'glib2' 'libgcrypt' 'sbc' 'bcg729' 'desktop-file-utils' 'libxslt'
- 'hicolor-icon-theme' 'zstd' 'zlib' 'gcc-libs' 'brotli' 
'asciidoctor'
- 'doxygen' 'minizip' 'speexdsp' 'opus')
-options=('!emptydirs')
-source=(https://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.xz
-wireshark.sysusers)
-sha512sums=('7c8afdee8957eb794030e0818a686c0efabc8ad9547449f434fc7299c7b7e624347698fdc7a42afac150eb86c8ca3d1d6360c29525bb35946619c4636f721094'
-
'3956c1226e64f0ce4df463f80b55b15eed06ecd9b8703b3e8309d4236a6e1ca84e43007336f3987bc862d8a5e7cfcaaf6653125d2a34999a0f1357c52e7c4990')
-b2sums=('17af7046662087a18d0708ab0b5bc00bd4d43db848e14217e046dd551e57decd0a258f67c7fd82e1e10e0dceb249618e41ded5a6cd2e0a79d2ee5b7bf397cea7'
-
'3cebcc993f51eaf0e09673c77e0436598593ef5eff306d880415ccc8eecb32fee93c9a6986f1a7bb0835ab7f9732369d7c5a07e6c053d6293e73a1ea84c58a5c')
-
-prepare() {
-  cd ${pkgbase}-${pkgver}
-  sed 's| Rev Unknown from unknown||' -i tools/make-version.pl
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-  cmake \
--B build \
--G Ninja \
--DCMAKE_BUILD_TYPE=None \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_INSTALL_RPATH= \
--DCMAKE_SKIP_RPATH=ON \
--Wno-dev
-  ninja -C build -v
-}
-
-package_wireshark-cli() {
-  pkgdesc+=' - CLI tools and data files'
-  depends=('glibc' 'c-ares' 'libmaxminddb' 'krb5' 'libgcrypt' 'libcap' 
'libpcap'
-   'gnutls' 'glib2' 'lua52' 'libssh' 'libxml2' 'libnghttp2' 'snappy'
-   'lz4' 'spandsp' 'sbc' 'bcg729' 'zstd' 'zlib' 'brotli' 'speexdsp'
-   'opus' libpcap.so libcap.so libbrotlidec.so libcares.so libkrb5.so
-   libk5crypto.so)
-  install=wireshark.install
-  conflicts=(wireshark)
-  provides=(libwireshark.so libwiretap.so libwsutil.so)
-
-  cd ${pkgbase}-${pkgver}
-  DESTDIR="${pkgdir}" ninja -C build install
-
-  # wireshark uid group is 150
-  install -Dm 644 "${srcdir}"/wireshark.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/wireshark.conf
-  chgrp 150 "${pkgdir}"/usr/bin/dumpcap
-  chmod 754 "${pkgdir}"/usr/bin/dumpcap
-
-  cd "${pkgdir}"
-  rm -r usr/share/mime \
-usr/share/icons \
-usr/share/man/man1/wireshark.1 \
-usr/bin/wireshark \
-usr/share/applications/org.wireshark.Wireshark.desktop \
-usr/share/metainfo/org.wireshark.Wireshark.metainfo.xml
-}
-
-package_wireshark-qt() {
-  pkgdesc+=' - Qt GUI'
-  depends=('glibc' 'desktop-file-utils' 'qt5-multimedia' 'qt5-svg'
-   'wireshark-cli' 'libwireshark.so' 'libwiretap.so' 'libwsutil.so'
-   'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'gcc-libs'
-   'zlib' 'libpcap' 'libgcrypt' 'libnl' 'minizip' 'speexdsp'
-   libpcap.so)
-  replaces=(wireshark wireshark-gtk wireshark-common)
-  conflicts=(wireshark wireshark-gtk wireshark-common)
-
-  cd ${pkgbase}-${pkgver}
-  install -d "${srcdir}/staging"
-  DESTDIR="${srcdir}/staging" ninja -C build install
-
-  install -Dm 755 build/run/wireshark -t "${pkgdir}"/usr/bin
-  install -Dm 644 build/doc/wireshark.1 -t "${pkgdir}"/usr/share/man/man1
-  install -Dm 644 build/doc/wireshark.html -t 
"${pkgdir}"/usr/share/doc/wireshark
-
-  cd "${srcdir}"/staging/usr/share
-  install -Dm 644 applications/org.wireshark.Wireshark.desktop -t 
"${pkgd

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

2021-12-29 Thread Frederik Schwan via arch-commits
Date: Wednesday, December 29, 2021 @ 21:47:50
  Author: freswa
Revision: 1087668

upgpkg: wireshark 3.6.1-1

Modified:
  wireshark/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 21:46:52 UTC (rev 1087667)
+++ PKGBUILD2021-12-29 21:47:50 UTC (rev 1087668)
@@ -7,7 +7,7 @@
 
 pkgbase=wireshark
 pkgname=('wireshark-cli' 'wireshark-qt')
-pkgver=3.6.0
+pkgver=3.6.1
 pkgrel=1
 pkgdesc='Network traffic and protocol analyzer/sniffer'
 url='https://www.wireshark.org/'
@@ -22,9 +22,9 @@
 options=('!emptydirs')
 source=(https://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.xz
 wireshark.sysusers)
-sha512sums=('7c8afdee8957eb794030e0818a686c0efabc8ad9547449f434fc7299c7b7e624347698fdc7a42afac150eb86c8ca3d1d6360c29525bb35946619c4636f721094'
+sha512sums=('8b036d623010a5c4ece22de869847b3d999dac1c1e874e957c091a65c18351d9a1cc400828a70caf3c9f9900f8971dc585a5fafb7b08d446cd5d1d68938b0e81'
 
'3956c1226e64f0ce4df463f80b55b15eed06ecd9b8703b3e8309d4236a6e1ca84e43007336f3987bc862d8a5e7cfcaaf6653125d2a34999a0f1357c52e7c4990')
-b2sums=('17af7046662087a18d0708ab0b5bc00bd4d43db848e14217e046dd551e57decd0a258f67c7fd82e1e10e0dceb249618e41ded5a6cd2e0a79d2ee5b7bf397cea7'
+b2sums=('49a7385946001a3b4a9890751cfea678c8aefcf8180e1a3008085a453d34e458d60d071975eeb585b92c6d9a210b732cc9fdb4fd952f1a9d74decad79c145fe0'
 
'3cebcc993f51eaf0e09673c77e0436598593ef5eff306d880415ccc8eecb32fee93c9a6986f1a7bb0835ab7f9732369d7c5a07e6c053d6293e73a1ea84c58a5c')
 
 prepare() {



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

2021-12-29 Thread David Runge via arch-commits
Date: Wednesday, December 29, 2021 @ 21:46:52
  Author: dvzrv
Revision: 1087667

archrelease: copy trunk to community-staging-x86_64

Added:
  wlroots/repos/community-staging-x86_64/PKGBUILD
(from rev 1087666, wlroots/trunk/PKGBUILD)
Deleted:
  wlroots/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-29 21:46:43 UTC (rev 1087666)
+++ PKGBUILD2021-12-29 21:46:52 UTC (rev 1087667)
@@ -1,56 +0,0 @@
-# Maintainer: Brett Cornwall 
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Omar Pakker
-
-pkgname=wlroots
-pkgver=0.15.0
-pkgrel=1
-license=('MIT')
-pkgdesc='Modular Wayland compositor library'
-url='https://github.com/swaywm/wlroots'
-arch=('x86_64')
-depends=(
-'libinput'
-'libseat.so'
-'libxkbcommon'
-'opengl-driver'
-'pixman'
-'xcb-util-errors'
-'xcb-util-renderutil'
-'xcb-util-wm'
-)
-makedepends=(
-'meson'
-'ninja'
-'wayland-protocols'
-'xorg-xwayland'
-)
-optdepends=(
-'xorg-xwayland: Xwayland support'
-)
-provides=(
-'libwlroots.so'
-)
-source=(
-
"$pkgname-$pkgver.tar.gz::https://gitlab.freedesktop.org/wlroots/wlroots/-/releases/$pkgver/downloads/wlroots-$pkgver.tar.gz";
-
"https://gitlab.freedesktop.org/wlroots/wlroots/-/releases/$pkgver/downloads/wlroots-$pkgver.tar.gz.sig";
-)
-sha256sums=('2921a38cea79dbb6f1da895a4dbe1faedba8d7ff2c0c2468dad94ccba12e4278'
-'SKIP')
-validpgpkeys=(
-'34FF9526CFEF0E97A340E2E40FDE7BE0E88F5E48' # Simon Ser
-'9DDA3B9FA5D58DD5392C78E652CB6609B22DA89A' # Drew DeVault
-'4100929B33EEB0FD1DB852797BC79407090047CA' # Sway signing key
-)
-
-build() {
-# Vulkan renderer is still experimental but since mesa comes with
-# libvulkan.so Meson autodetects this as wanting to build with Vulkan.
-arch-meson -Drenderers=gles2 "$pkgname-$pkgver" build
-ninja -C build
-}
-
-package() {
-DESTDIR="$pkgdir" ninja -C build install
-install -Dm644 "$pkgname-$pkgver/LICENSE" -t 
"$pkgdir/usr/share/licenses/$pkgname/"
-}

Copied: wlroots/repos/community-staging-x86_64/PKGBUILD (from rev 1087666, 
wlroots/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-29 21:46:52 UTC (rev 1087667)
@@ -0,0 +1,56 @@
+# Maintainer: Brett Cornwall 
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Omar Pakker
+
+pkgname=wlroots
+pkgver=0.15.0
+pkgrel=2
+license=('MIT')
+pkgdesc='Modular Wayland compositor library'
+url='https://github.com/swaywm/wlroots'
+arch=('x86_64')
+depends=(
+'libinput'
+'libseat.so'
+'libxkbcommon'
+'opengl-driver'
+'pixman'
+'xcb-util-errors'
+'xcb-util-renderutil'
+'xcb-util-wm'
+)
+makedepends=(
+'glslang'
+'meson'
+'ninja'
+'vulkan-headers'
+'wayland-protocols'
+'xorg-xwayland'
+)
+optdepends=(
+'xorg-xwayland: Xwayland support'
+)
+provides=(
+'libwlroots.so'
+)
+source=(
+
"$pkgname-$pkgver.tar.gz::https://gitlab.freedesktop.org/wlroots/wlroots/-/releases/$pkgver/downloads/wlroots-$pkgver.tar.gz";
+
"https://gitlab.freedesktop.org/wlroots/wlroots/-/releases/$pkgver/downloads/wlroots-$pkgver.tar.gz.sig";
+)
+sha256sums=('2921a38cea79dbb6f1da895a4dbe1faedba8d7ff2c0c2468dad94ccba12e4278'
+'SKIP')
+validpgpkeys=(
+'34FF9526CFEF0E97A340E2E40FDE7BE0E88F5E48' # Simon Ser
+'9DDA3B9FA5D58DD5392C78E652CB6609B22DA89A' # Drew DeVault
+'4100929B33EEB0FD1DB852797BC79407090047CA' # Sway signing key
+)
+
+build() {
+arch-meson "$pkgname-$pkgver" build
+ninja -C build
+}
+
+package() {
+DESTDIR="$pkgdir" ninja -C build install
+install -Dm644 "$pkgname-$pkgver/LICENSE" -t 
"$pkgdir/usr/share/licenses/$pkgname/"
+}



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

2021-12-29 Thread David Runge via arch-commits
Date: Wednesday, December 29, 2021 @ 21:46:43
  Author: dvzrv
Revision: 1087666

upgpkg: wlroots 0.15.0-2: Rebuild to add runtime vulkan opt-in.

Add glslang and vulkan-headers to enable optional vulkan support during runtime.

Modified:
  wlroots/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 21:29:39 UTC (rev 1087665)
+++ PKGBUILD2021-12-29 21:46:43 UTC (rev 1087666)
@@ -4,7 +4,7 @@
 
 pkgname=wlroots
 pkgver=0.15.0
-pkgrel=1
+pkgrel=2
 license=('MIT')
 pkgdesc='Modular Wayland compositor library'
 url='https://github.com/swaywm/wlroots'
@@ -20,8 +20,10 @@
 'xcb-util-wm'
 )
 makedepends=(
+'glslang'
 'meson'
 'ninja'
+'vulkan-headers'
 'wayland-protocols'
 'xorg-xwayland'
 )
@@ -44,9 +46,7 @@
 )
 
 build() {
-# Vulkan renderer is still experimental but since mesa comes with
-# libvulkan.so Meson autodetects this as wanting to build with Vulkan.
-arch-meson -Drenderers=gles2 "$pkgname-$pkgver" build
+arch-meson "$pkgname-$pkgver" build
 ninja -C build
 }
 



[arch-commits] Commit in openapi-diff/repos/community-any (5 files)

2021-12-29 Thread David Runge via arch-commits
Date: Wednesday, December 29, 2021 @ 21:29:39
  Author: dvzrv
Revision: 1087665

archrelease: copy trunk to community-any

Added:
  openapi-diff/repos/community-any/PKGBUILD
(from rev 1087664, openapi-diff/trunk/PKGBUILD)
  openapi-diff/repos/community-any/openapi-diff.sh
(from rev 1087664, openapi-diff/trunk/openapi-diff.sh)
Deleted:
  openapi-diff/repos/community-any/PKGBUILD
  openapi-diff/repos/community-any/openapi-diff-2.0.0-remove_git_hooks.patch
  openapi-diff/repos/community-any/openapi-diff.sh

---+
 PKGBUILD  |   76 +++-
 openapi-diff-2.0.0-remove_git_hooks.patch |   40 --
 openapi-diff.sh   |8 +-
 3 files changed, 36 insertions(+), 88 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-29 21:29:31 UTC (rev 1087664)
+++ PKGBUILD2021-12-29 21:29:39 UTC (rev 1087665)
@@ -1,44 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=openapi-diff
-pkgver=2.0.0
-pkgrel=1
-pkgdesc=" Utility for comparing two OpenAPI specifications"
-arch=('any')
-url="https://github.com/OpenAPITools/openapi-diff";
-license=(Apache)
-depends=(bash java-runtime=8)
-makedepends=(maven java-environment=8 strip-nondeterminism)
-source=(
-  
"$pkgname-$pkgver.tar.gz::https://github.com/OpenAPITools/${pkgname}/archive/refs/tags/${pkgver}.tar.gz";
-  "${pkgname}.sh"
-  "${pkgname}-2.0.0-remove_git_hooks.patch"
-)
-sha512sums=('fdccada8baa86af63ff051027cc35967993335b276c0d202749ba7c983e6e11be4e219cdbeadd9784ee46cbb6c9535321b5ca41833606a3758d9f9ad79561e78'
-
'e4143cff09abc59958f50a969ed3f010ab39e640cf77081e47e77cf3e2bb785645100572fd18bc508ea441732bc13a5a811332fdbfdbd7f8a0d6865f301f978e'
-
'b427cb671aef57c8364f3c987ed822a9aaa1ae15e3a756529eedf6d5df77b9ff66489753cdbc327f820a49c3ececcec58b42ef62d723331b48a537a89754d199')
-b2sums=('6a252a07a862744c3431c3f215faa748e184e1df5ea0c8d46763a4f8c4e949ed64f361785ac657ec7d6198b459a2cd3b358c49d3210d0547c1fdb7e05f2b3ec5'
-
'a28a194b1b5c731fd3093c22754fc7f6641441ae2acb1ad177b8ee573d8e3787af2b249740ffd1e3472f721e0274d0866c0acf1bf5c85f4a22fe1c2dcf24af7b'
-
'4ea504d3765bb2428e16a097bfc6278228f09b16fa11e5cd39507bc0e64d277c47e111fa8f69013a0d53b76248ff653f29d77158e06432a7946fc1941d8ad3ec')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  # remove maven plugin that requires git checkout: 
https://github.com/OpenAPITools/openapi-diff/issues/299
-  patch -Np1 -i ../"${pkgname}-2.0.0-remove_git_hooks.patch"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  mvn clean install
-  # Timestamps in JAR files generated by Maven do not honour SOURCE_DATE_EPOCH
-  # (https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=74682318)
-  find . -type f -iname "*.jar" -exec strip-nondeterminism --timestamp 
"$SOURCE_DATE_EPOCH" {} \;
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  install -vDm 644  cli/target/openapi-diff-cli-2.0.0-all.jar 
"${pkgdir}/usr/share/java/${pkgname}/${pkgname}-cli.jar"
-  install -vDm 755 "../${pkgname}.sh" "${pkgdir}/usr/bin/${pkgname}"
-  ln -svf "${pkgname}" "${pkgdir}/usr/bin/${pkgname}-cli"
-  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}/"
-}

Copied: openapi-diff/repos/community-any/PKGBUILD (from rev 1087664, 
openapi-diff/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-29 21:29:39 UTC (rev 1087665)
@@ -0,0 +1,32 @@
+# Maintainer: David Runge 
+
+pkgname=openapi-diff
+pkgver=2.0.1
+pkgrel=1
+pkgdesc=" Utility for comparing two OpenAPI specifications"
+arch=('any')
+url="https://github.com/OpenAPITools/openapi-diff";
+license=(Apache)
+depends=(bash java-runtime=8)
+makedepends=(maven java-environment=8)
+source=(
+  
"$pkgname-$pkgver.tar.gz::https://github.com/OpenAPITools/${pkgname}/archive/refs/tags/${pkgver}.tar.gz";
+  "${pkgname}.sh"
+)
+sha512sums=('2a343d8d2df7506e9cb97859b4396f98ca67c7d6e33cb44dcaa8cb6c8e6923ca6b844a54dacbab24ff3bf952e37b303d207da69124e68ab874262e34a2795f00'
+
'e4143cff09abc59958f50a969ed3f010ab39e640cf77081e47e77cf3e2bb785645100572fd18bc508ea441732bc13a5a811332fdbfdbd7f8a0d6865f301f978e')
+b2sums=('14b4b83dd766073fb100c66d816c7f0428d166c08e2fee24f5e6e63ed69a675a14361032a5e6f8681f4b8ca5434c560a8b8683bb925846a8aa5c18513a3e29ed'
+
'a28a194b1b5c731fd3093c22754fc7f6641441ae2acb1ad177b8ee573d8e3787af2b249740ffd1e3472f721e0274d0866c0acf1bf5c85f4a22fe1c2dcf24af7b')
+
+build() {
+  cd "$pkgname-$pkgver"
+  mvn clean install
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  install -vDm 644  cli/target/openapi-diff-cli-${pkgver}-all.jar 
"${pkgdir}/usr/share/java/${pkgname}/${pkgname}-cli.jar"
+  install -vDm 755 "../${pkgname}.sh" "${pkgdir}/usr/bin/${pkgname}"
+  ln -svf "${pkgname}" "${pkgdir}/usr/bin/${pkgname}-cli"
+  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${

[arch-commits] Commit in openapi-diff/trunk (2 files)

2021-12-29 Thread David Runge via arch-commits
Date: Wednesday, December 29, 2021 @ 21:29:31
  Author: dvzrv
Revision: 1087664

upgpkg: openapi-diff 2.0.1-1: Upgrade to 2.0.1.

Drop patch for removal of git hooks (upstream fixed it).
Remove dependency and use of strip-nondeterminism (upstream fixed it).

Modified:
  openapi-diff/trunk/PKGBUILD
Deleted:
  openapi-diff/trunk/openapi-diff-2.0.0-remove_git_hooks.patch

---+
 PKGBUILD  |   26 --
 openapi-diff-2.0.0-remove_git_hooks.patch |   40 
 2 files changed, 7 insertions(+), 59 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 21:23:55 UTC (rev 1087663)
+++ PKGBUILD2021-12-29 21:29:31 UTC (rev 1087664)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 
 pkgname=openapi-diff
-pkgver=2.0.0
+pkgver=2.0.1
 pkgrel=1
 pkgdesc=" Utility for comparing two OpenAPI specifications"
 arch=('any')
@@ -8,36 +8,24 @@
 url="https://github.com/OpenAPITools/openapi-diff";
 license=(Apache)
 depends=(bash java-runtime=8)
-makedepends=(maven java-environment=8 strip-nondeterminism)
+makedepends=(maven java-environment=8)
 source=(
   
"$pkgname-$pkgver.tar.gz::https://github.com/OpenAPITools/${pkgname}/archive/refs/tags/${pkgver}.tar.gz";
   "${pkgname}.sh"
-  "${pkgname}-2.0.0-remove_git_hooks.patch"
 )
-sha512sums=('fdccada8baa86af63ff051027cc35967993335b276c0d202749ba7c983e6e11be4e219cdbeadd9784ee46cbb6c9535321b5ca41833606a3758d9f9ad79561e78'
-
'e4143cff09abc59958f50a969ed3f010ab39e640cf77081e47e77cf3e2bb785645100572fd18bc508ea441732bc13a5a811332fdbfdbd7f8a0d6865f301f978e'
-
'b427cb671aef57c8364f3c987ed822a9aaa1ae15e3a756529eedf6d5df77b9ff66489753cdbc327f820a49c3ececcec58b42ef62d723331b48a537a89754d199')
-b2sums=('6a252a07a862744c3431c3f215faa748e184e1df5ea0c8d46763a4f8c4e949ed64f361785ac657ec7d6198b459a2cd3b358c49d3210d0547c1fdb7e05f2b3ec5'
-
'a28a194b1b5c731fd3093c22754fc7f6641441ae2acb1ad177b8ee573d8e3787af2b249740ffd1e3472f721e0274d0866c0acf1bf5c85f4a22fe1c2dcf24af7b'
-
'4ea504d3765bb2428e16a097bfc6278228f09b16fa11e5cd39507bc0e64d277c47e111fa8f69013a0d53b76248ff653f29d77158e06432a7946fc1941d8ad3ec')
+sha512sums=('2a343d8d2df7506e9cb97859b4396f98ca67c7d6e33cb44dcaa8cb6c8e6923ca6b844a54dacbab24ff3bf952e37b303d207da69124e68ab874262e34a2795f00'
+
'e4143cff09abc59958f50a969ed3f010ab39e640cf77081e47e77cf3e2bb785645100572fd18bc508ea441732bc13a5a811332fdbfdbd7f8a0d6865f301f978e')
+b2sums=('14b4b83dd766073fb100c66d816c7f0428d166c08e2fee24f5e6e63ed69a675a14361032a5e6f8681f4b8ca5434c560a8b8683bb925846a8aa5c18513a3e29ed'
+
'a28a194b1b5c731fd3093c22754fc7f6641441ae2acb1ad177b8ee573d8e3787af2b249740ffd1e3472f721e0274d0866c0acf1bf5c85f4a22fe1c2dcf24af7b')
 
-prepare() {
-  cd "$pkgname-$pkgver"
-  # remove maven plugin that requires git checkout: 
https://github.com/OpenAPITools/openapi-diff/issues/299
-  patch -Np1 -i ../"${pkgname}-2.0.0-remove_git_hooks.patch"
-}
-
 build() {
   cd "$pkgname-$pkgver"
   mvn clean install
-  # Timestamps in JAR files generated by Maven do not honour SOURCE_DATE_EPOCH
-  # (https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=74682318)
-  find . -type f -iname "*.jar" -exec strip-nondeterminism --timestamp 
"$SOURCE_DATE_EPOCH" {} \;
 }
 
 package() {
   cd "$pkgname-$pkgver"
-  install -vDm 644  cli/target/openapi-diff-cli-2.0.0-all.jar 
"${pkgdir}/usr/share/java/${pkgname}/${pkgname}-cli.jar"
+  install -vDm 644  cli/target/openapi-diff-cli-${pkgver}-all.jar 
"${pkgdir}/usr/share/java/${pkgname}/${pkgname}-cli.jar"
   install -vDm 755 "../${pkgname}.sh" "${pkgdir}/usr/bin/${pkgname}"
   ln -svf "${pkgname}" "${pkgdir}/usr/bin/${pkgname}-cli"
   install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}/"

Deleted: openapi-diff-2.0.0-remove_git_hooks.patch
===
--- openapi-diff-2.0.0-remove_git_hooks.patch   2021-12-29 21:23:55 UTC (rev 
1087663)
+++ openapi-diff-2.0.0-remove_git_hooks.patch   2021-12-29 21:29:31 UTC (rev 
1087664)
@@ -1,40 +0,0 @@
-diff -ruN a/pom.xml b/pom.xml
 a/pom.xml  2021-12-05 12:48:03.0 +0100
-+++ b/pom.xml  2021-12-10 19:59:57.792629187 +0100
-@@ -288,11 +288,6 @@
- 2.9.1
- 
- 
--io.github.phillipuniverse
--githook-maven-plugin
--1.0.5
--
--
- org.apache.maven.plugins
- maven-gpg-plugin
- 3.0.1
-@@ -346,24 +341,6 @@
- 
- 
- 
--
--io.github.phillipuniverse
--githook-maven-plugin
--
--
--
--install
--
--  

[arch-commits] Commit in pam_ldap/repos/extra-x86_64 (3 files)

2021-12-29 Thread Jelle van der Waa via arch-commits
Date: Wednesday, December 29, 2021 @ 21:27:32
  Author: jelle
Revision: 433249

archrelease: copy trunk to extra-x86_64

Added:
  pam_ldap/repos/extra-x86_64/PKGBUILD
(from rev 433248, pam_ldap/trunk/PKGBUILD)
  pam_ldap/repos/extra-x86_64/pam_ldap-reproducible.patch
(from rev 433248, pam_ldap/trunk/pam_ldap-reproducible.patch)
Deleted:
  pam_ldap/repos/extra-x86_64/PKGBUILD

-+
 PKGBUILD|   66 ++
 pam_ldap-reproducible.patch |   24 +++
 2 files changed, 60 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-29 21:27:22 UTC (rev 433248)
+++ PKGBUILD2021-12-29 21:27:32 UTC (rev 433249)
@@ -1,30 +0,0 @@
-# Maintainer:
-# Contributor: Comete 
-
-pkgname=pam_ldap
-pkgver=186
-pkgrel=8
-pkgdesc="LDAP authentication module for the PAM framework"
-arch=('x86_64')
-url="http://www.padl.com/OSS/pam_ldap.html";
-license=('LGPL')
-depends=('libldap' 'pam')
-backup=('etc/pam_ldap.conf')
-options=('!makeflags')
-#source=("https://www.padl.com/download/${pkgname}-${pkgver}.tar.gz";)
-source=("https://sources.archlinux.org/other/packages/pam_ldap/$pkgname-$pkgver.tar.gz";)
-md5sums=('58c8689921c5c4578363438acd8503c2')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --libdir=/usr/lib \
-  --with-ldap-conf-file=/etc/pam_ldap.conf \
-  --mandir=/usr/share/man
-  PERL5LIB="$PWD" PATH="${PATH}:${srcdir}/${pkgname}-${pkgver}" make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  mv "${pkgdir}/etc/ldap.conf" "${pkgdir}/etc/pam_ldap.conf"
-}

Copied: pam_ldap/repos/extra-x86_64/PKGBUILD (from rev 433248, 
pam_ldap/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-29 21:27:32 UTC (rev 433249)
@@ -0,0 +1,36 @@
+# Maintainer:
+# Contributor: Comete 
+
+pkgname=pam_ldap
+pkgver=186
+pkgrel=9
+pkgdesc="LDAP authentication module for the PAM framework"
+arch=('x86_64')
+url="http://www.padl.com/OSS/pam_ldap.html";
+license=('LGPL')
+depends=('libldap' 'pam')
+backup=('etc/pam_ldap.conf')
+options=('!makeflags')
+#source=("https://www.padl.com/download/${pkgname}-${pkgver}.tar.gz";)
+source=("https://sources.archlinux.org/other/packages/pam_ldap/$pkgname-$pkgver.tar.gz";
 "pam_ldap-reproducible.patch")
+md5sums=('58c8689921c5c4578363438acd8503c2'
+ 'a79a0629fe04eaa350e0a94f00dde7c8')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -Np1 -i ${srcdir}/pam_ldap-reproducible.patch
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --libdir=/usr/lib \
+  --with-ldap-conf-file=/etc/pam_ldap.conf \
+  --mandir=/usr/share/man
+  PERL5LIB="$PWD" PATH="${PATH}:${srcdir}/${pkgname}-${pkgver}" make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  mv "${pkgdir}/etc/ldap.conf" "${pkgdir}/etc/pam_ldap.conf"
+}

Copied: pam_ldap/repos/extra-x86_64/pam_ldap-reproducible.patch (from rev 
433248, pam_ldap/trunk/pam_ldap-reproducible.patch)
===
--- pam_ldap-reproducible.patch (rev 0)
+++ pam_ldap-reproducible.patch 2021-12-29 21:27:32 UTC (rev 433249)
@@ -0,0 +1,24 @@
+diff -aur pam_ldap-186.old/vers_string pam_ldap-186/vers_string
+--- pam_ldap-186.old/vers_string   2021-12-29 21:45:36.010231609 +0100
 pam_ldap-186/vers_string   2021-12-29 22:24:03.167959325 +0100
+@@ -3,17 +3,19 @@
+ #ident $Id: vers_string,v 1.2 2010/02/25 14:40:39 lukeh Exp $
+ #
+ # Implementation of SGS vers_string which uses CVSVersionInfo.txt.
++use POSIX qw(strftime);
++
+ 
+ require "cvslib.pl";
+ 
+ $OUTFILE = (-f "version.h") ? "version.h" : "vers.c";
+ $AUTHOR = `whoami`;
+ $HEADER = '$Id: vers_string,v 1.2 2010/02/25 14:40:39 lukeh Exp $';
++$DATE = strftime("%Y-%m-%d", gmtime($ENV{SOURCE_DATE_EPOCH} || time));
+ 
+ if ($ENV{'PROGRAM'}) { $PROGRAM = $ENV{'PROGRAM'}; }
+ 
+ chop($AUTHOR);
+-chop($DATE=`date -u`);
+ chop($CWD=`pwd`);
+ 
+ ($PROJECT, $VERSION) = split(/\-/, &getCVSVersionInfo());



[arch-commits] Commit in pam_ldap/trunk (PKGBUILD pam_ldap-reproducible.patch)

2021-12-29 Thread Jelle van der Waa via arch-commits
Date: Wednesday, December 29, 2021 @ 21:27:22
  Author: jelle
Revision: 433248

Make pam_ldap reproducible

Added:
  pam_ldap/trunk/pam_ldap-reproducible.patch
Modified:
  pam_ldap/trunk/PKGBUILD

-+
 PKGBUILD|   12 +---
 pam_ldap-reproducible.patch |   24 
 2 files changed, 33 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 20:48:57 UTC (rev 433247)
+++ PKGBUILD2021-12-29 21:27:22 UTC (rev 433248)
@@ -3,7 +3,7 @@
 
 pkgname=pam_ldap
 pkgver=186
-pkgrel=8
+pkgrel=9
 pkgdesc="LDAP authentication module for the PAM framework"
 arch=('x86_64')
 url="http://www.padl.com/OSS/pam_ldap.html";
@@ -12,9 +12,15 @@
 backup=('etc/pam_ldap.conf')
 options=('!makeflags')
 #source=("https://www.padl.com/download/${pkgname}-${pkgver}.tar.gz";)
-source=("https://sources.archlinux.org/other/packages/pam_ldap/$pkgname-$pkgver.tar.gz";)
-md5sums=('58c8689921c5c4578363438acd8503c2')
+source=("https://sources.archlinux.org/other/packages/pam_ldap/$pkgname-$pkgver.tar.gz";
 "pam_ldap-reproducible.patch")
+md5sums=('58c8689921c5c4578363438acd8503c2'
+ 'a79a0629fe04eaa350e0a94f00dde7c8')
 
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -Np1 -i ${srcdir}/pam_ldap-reproducible.patch
+}
+
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
   ./configure --libdir=/usr/lib \

Added: pam_ldap-reproducible.patch
===
--- pam_ldap-reproducible.patch (rev 0)
+++ pam_ldap-reproducible.patch 2021-12-29 21:27:22 UTC (rev 433248)
@@ -0,0 +1,24 @@
+diff -aur pam_ldap-186.old/vers_string pam_ldap-186/vers_string
+--- pam_ldap-186.old/vers_string   2021-12-29 21:45:36.010231609 +0100
 pam_ldap-186/vers_string   2021-12-29 22:24:03.167959325 +0100
+@@ -3,17 +3,19 @@
+ #ident $Id: vers_string,v 1.2 2010/02/25 14:40:39 lukeh Exp $
+ #
+ # Implementation of SGS vers_string which uses CVSVersionInfo.txt.
++use POSIX qw(strftime);
++
+ 
+ require "cvslib.pl";
+ 
+ $OUTFILE = (-f "version.h") ? "version.h" : "vers.c";
+ $AUTHOR = `whoami`;
+ $HEADER = '$Id: vers_string,v 1.2 2010/02/25 14:40:39 lukeh Exp $';
++$DATE = strftime("%Y-%m-%d", gmtime($ENV{SOURCE_DATE_EPOCH} || time));
+ 
+ if ($ENV{'PROGRAM'}) { $PROGRAM = $ENV{'PROGRAM'}; }
+ 
+ chop($AUTHOR);
+-chop($DATE=`date -u`);
+ chop($CWD=`pwd`);
+ 
+ ($PROJECT, $VERSION) = split(/\-/, &getCVSVersionInfo());



[arch-commits] Commit in intellij-idea-community-edition/repos/community-x86_64 (10 files)

2021-12-29 Thread Orhun Parmaksiz via arch-commits
Date: Wednesday, December 29, 2021 @ 21:23:55
  Author: orhun
Revision: 1087663

archrelease: copy trunk to community-x86_64

Added:
  intellij-idea-community-edition/repos/community-x86_64/PKGBUILD
(from rev 1087662, intellij-idea-community-edition/trunk/PKGBUILD)
  intellij-idea-community-edition/repos/community-x86_64/idea.desktop
(from rev 1087662, intellij-idea-community-edition/trunk/idea.desktop)
  intellij-idea-community-edition/repos/community-x86_64/idea.sh
(from rev 1087662, intellij-idea-community-edition/trunk/idea.sh)
  
intellij-idea-community-edition/repos/community-x86_64/kotlin_dist_for_ide.patch
(from rev 1087662, 
intellij-idea-community-edition/trunk/kotlin_dist_for_ide.patch)
  intellij-idea-community-edition/repos/community-x86_64/skip_jps_build.patch
(from rev 1087662, 
intellij-idea-community-edition/trunk/skip_jps_build.patch)
Deleted:
  intellij-idea-community-edition/repos/community-x86_64/PKGBUILD
  intellij-idea-community-edition/repos/community-x86_64/idea.desktop
  intellij-idea-community-edition/repos/community-x86_64/idea.sh
  
intellij-idea-community-edition/repos/community-x86_64/kotlin_dist_for_ide.patch
  intellij-idea-community-edition/repos/community-x86_64/skip_jps_build.patch

---+
 PKGBUILD  |  174 ++--
 idea.desktop  |   22 ++---
 idea.sh   |   40 +-
 kotlin_dist_for_ide.patch |   20 ++---
 skip_jps_build.patch  |   44 +--
 5 files changed, 150 insertions(+), 150 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-29 21:23:30 UTC (rev 1087662)
+++ PKGBUILD2021-12-29 21:23:55 UTC (rev 1087663)
@@ -1,87 +0,0 @@
-# Maintainer: Lukas Jirkovsky 
-# Maintainer: Levente Polyak 
-# Maintainer: Maxime Gauduin 
-# Maintainer: Orhun Parmaksız 
-
-pkgname=intellij-idea-community-edition
-pkgver=2021.3
-_build=213.5744.223
-pkgrel=1
-epoch=4
-pkgdesc='IDE for Java, Groovy and other programming languages with advanced 
refactoring features'
-url='https://www.jetbrains.com/idea/'
-arch=('x86_64')
-license=('Apache')
-backup=('usr/share/idea/bin/idea.vmoptions'
-'usr/share/idea/bin/idea64.vmoptions')
-depends=('giflib' 'java-environment=11' 'python' 'sh' 'ttf-font' 
'libdbusmenu-glib' 'fontconfig' 'hicolor-icon-theme')
-makedepends=('ant' 'git' 'java-environment=8')
-optdepends=(
-  'lldb: lldb frontend integration'
-)
-source=("git+https://github.com/JetBrains/intellij-community.git#tag=idea/${_build}";
-
idea-android::"git://git.jetbrains.org/idea/android.git#tag=idea/${_build}"
-
idea-adt-tools-base::"git://git.jetbrains.org/idea/adt-tools-base.git#commit=17e9c8b666cac0b974b1efc5e1e4c33404f72904"
-idea.desktop
-idea.sh
-kotlin_dist_for_ide.patch
-skip_jps_build.patch)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'049c4326b6b784da0c698cf62262b591b20abb52e0dcf869f869c0c655f3ce93'
-'115f1091edb138a7a7b15980e8538b4dfd28054cfab38b844df6d918b1b881c5'
-'438be6cb2ee731f6f89ba56506e0fac8aac7136c7dc89d3b4f332351d60d7a1e'
-'b023d7621674f335c32790e25bddadcec483342835af24ab9a3b80d0afc16a0e')
-
-prepare() {
-  cd intellij-community
-
-  # build system doesn't like symlinks
-  mv "${srcdir}"/idea-android android
-  mv "${srcdir}"/idea-adt-tools-base android/tools-base
-
-  # https://youtrack.jetbrains.com/issue/KTIJ-19348
-  patch -p0 -i ../kotlin_dist_for_ide.patch
-
-  # https://youtrack.jetbrains.com/issue/IDEA-276102
-  # https://youtrack.jetbrains.com/issue/IDEA-25
-  patch -p0 -i ../skip_jps_build.patch
-
-  sed '/def targetOs =/c def targetOs = "linux"' -i 
build/dependencies/setupJbre.gradle
-  sed '/String targetOS/c   String targetOS = OS_LINUX' -i 
platform/build-scripts/groovy/org/jetbrains/intellij/build/BuildOptions.groovy
-  sed -E 's|(\1|' -i build.xml
-  sed -E 's/-Xmx[0-9]+m/-XX:-UseGCOverheadLimit -Didea.home.path=/' -i 
build.xml
-  echo ${_build} > build.txt
-}
-
-build() {
-  cd intellij-community
-  unset _JAVA_OPTIONS
-  export JAVA_HOME=/usr/lib/jvm/java-11-openjdk
-  export PATH="${JAVA_HOME}/bin:${PATH}"
-  export JDK_16_x64=/usr/lib/jvm/java-8-openjdk
-  export JDK_18_x64=/usr/lib/jvm/java-8-openjdk
-  ant -Dintellij.build.target.os=linux build
-  tar -xf out/idea-ce/artifacts/ideaIC-${_build}-no-jbr.tar.gz -C "${srcdir}"
-}
-
-package() {
-  cd idea-IC-${_build}
-
-  # workaround FS#40934
-  sed -i 's/lcd/on/' bin/*.vmoptions
-
-  rm -rf bin/fsnotifier-arm lib/libpty/linux/x86
-
-  install -dm 755 
"${pkgdir}"/usr/share/{licenses,pixmaps,idea,icons/hicolor/scalable/apps}
-  cp -dr --no-preserve='ownership' bin lib plugins redist 
"${pkgdir}"/usr/share/idea/
-  cp -dr --no-preserve='ownership' license "${pkgdir}"/usr/share/licenses/idea
-  ln -s /usr/share/idea/bin/idea.png "${pkgdir}"/usr/share/pixmaps/
-  ln -s /usr

[arch-commits] Commit in intellij-idea-community-edition/trunk (PKGBUILD)

2021-12-29 Thread Orhun Parmaksiz via arch-commits
Date: Wednesday, December 29, 2021 @ 21:23:30
  Author: orhun
Revision: 1087662

upgpkg: intellij-idea-community-edition 4:2021.3.1-1: upstream release

Modified:
  intellij-idea-community-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 21:18:04 UTC (rev 1087661)
+++ PKGBUILD2021-12-29 21:23:30 UTC (rev 1087662)
@@ -4,8 +4,8 @@
 # Maintainer: Orhun Parmaksız 
 
 pkgname=intellij-idea-community-edition
-pkgver=2021.3
-_build=213.5744.223
+pkgver=2021.3.1
+_build=213.6461.79
 pkgrel=1
 epoch=4
 pkgdesc='IDE for Java, Groovy and other programming languages with advanced 
refactoring features'



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

2021-12-29 Thread David Runge via arch-commits
Date: Wednesday, December 29, 2021 @ 21:18:04
  Author: dvzrv
Revision: 1087661

archrelease: copy trunk to community-staging-x86_64

Added:
  wlroots/repos/community-staging-x86_64/PKGBUILD
(from rev 1087660, wlroots/trunk/PKGBUILD)
Deleted:
  wlroots/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-29 21:05:06 UTC (rev 1087660)
+++ PKGBUILD2021-12-29 21:18:04 UTC (rev 1087661)
@@ -1,56 +0,0 @@
-# Maintainer: Brett Cornwall 
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Omar Pakker
-
-pkgname=wlroots
-pkgver=0.15.0
-pkgrel=1
-license=('MIT')
-pkgdesc='Modular Wayland compositor library'
-url='https://github.com/swaywm/wlroots'
-arch=('x86_64')
-depends=(
-'libinput'
-'libseat.so'
-'libxkbcommon'
-'opengl-driver'
-'pixman'
-'xcb-util-errors'
-'xcb-util-renderutil'
-'xcb-util-wm'
-)
-makedepends=(
-'meson'
-'ninja'
-'wayland-protocols'
-'xorg-xwayland'
-)
-optdepends=(
-'xorg-xwayland: Xwayland support'
-)
-provides=(
-'libwlroots.so'
-)
-source=(
-
"$pkgname-$pkgver.tar.gz::https://gitlab.freedesktop.org/wlroots/wlroots/-/releases/$pkgver/downloads/wlroots-$pkgver.tar.gz";
-
"https://gitlab.freedesktop.org/wlroots/wlroots/-/releases/$pkgver/downloads/wlroots-$pkgver.tar.gz.sig";
-)
-sha256sums=('2921a38cea79dbb6f1da895a4dbe1faedba8d7ff2c0c2468dad94ccba12e4278'
-'SKIP')
-validpgpkeys=(
-'34FF9526CFEF0E97A340E2E40FDE7BE0E88F5E48' # Simon Ser
-'9DDA3B9FA5D58DD5392C78E652CB6609B22DA89A' # Drew DeVault
-'4100929B33EEB0FD1DB852797BC79407090047CA' # Sway signing key
-)
-
-build() {
-# Vulkan renderer is still experimental but since mesa comes with
-# libvulkan.so Meson autodetects this as wanting to build with Vulkan.
-arch-meson -Drenderers=gles2 "$pkgname-$pkgver" build
-ninja -C build
-}
-
-package() {
-DESTDIR="$pkgdir" ninja -C build install
-install -Dm644 "$pkgname-$pkgver/LICENSE" -t 
"$pkgdir/usr/share/licenses/$pkgname/"
-}

Copied: wlroots/repos/community-staging-x86_64/PKGBUILD (from rev 1087660, 
wlroots/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-29 21:18:04 UTC (rev 1087661)
@@ -0,0 +1,56 @@
+# Maintainer: Brett Cornwall 
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Omar Pakker
+
+pkgname=wlroots
+pkgver=0.15.0
+pkgrel=1
+license=('MIT')
+pkgdesc='Modular Wayland compositor library'
+url='https://github.com/swaywm/wlroots'
+arch=('x86_64')
+depends=(
+'libinput'
+'libseat.so'
+'libxkbcommon'
+'opengl-driver'
+'pixman'
+'xcb-util-errors'
+'xcb-util-renderutil'
+'xcb-util-wm'
+)
+makedepends=(
+'meson'
+'ninja'
+'wayland-protocols'
+'xorg-xwayland'
+)
+optdepends=(
+'xorg-xwayland: Xwayland support'
+)
+provides=(
+'libwlroots.so'
+)
+source=(
+
"$pkgname-$pkgver.tar.gz::https://gitlab.freedesktop.org/wlroots/wlroots/-/releases/$pkgver/downloads/wlroots-$pkgver.tar.gz";
+
"https://gitlab.freedesktop.org/wlroots/wlroots/-/releases/$pkgver/downloads/wlroots-$pkgver.tar.gz.sig";
+)
+sha256sums=('2921a38cea79dbb6f1da895a4dbe1faedba8d7ff2c0c2468dad94ccba12e4278'
+'SKIP')
+validpgpkeys=(
+'34FF9526CFEF0E97A340E2E40FDE7BE0E88F5E48' # Simon Ser
+'9DDA3B9FA5D58DD5392C78E652CB6609B22DA89A' # Drew DeVault
+'4100929B33EEB0FD1DB852797BC79407090047CA' # Sway signing key
+)
+
+build() {
+# Vulkan renderer is still experimental but since mesa comes with
+# libvulkan.so Meson autodetects this as wanting to build with Vulkan.
+arch-meson -Drenderers=gles2 "$pkgname-$pkgver" build
+ninja -C build
+}
+
+package() {
+DESTDIR="$pkgdir" ninja -C build install
+install -Dm644 "$pkgname-$pkgver/LICENSE" -t 
"$pkgdir/usr/share/licenses/$pkgname/"
+}



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

2021-12-29 Thread David Runge via arch-commits
Date: Wednesday, December 29, 2021 @ 21:04:17
  Author: dvzrv
Revision: 1087659

upgpkg: radicale 3.1.0-1: Upgrade to 3.1.0.

Simplify prepare() by not moving sources and not modifying setup.cfg.
Run pytest in check() explicitly without config.
Do not break long lines.
Simplify quoting in file.

Modified:
  radicale/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 21:00:26 UTC (rev 1087658)
+++ PKGBUILD2021-12-29 21:04:17 UTC (rev 1087659)
@@ -5,73 +5,67 @@
 
 pkgname=radicale
 _name=Radicale
-pkgver=3.0.6
-pkgrel=5
-pkgdesc='Simple calendar (CalDAV) and contact (CardDAV) server'
-arch=('any')
+pkgver=3.1.0
+pkgrel=1
+pkgdesc="Simple calendar (CalDAV) and contact (CardDAV) server"
+arch=(any)
 url="https://radicale.org/";
-license=('GPL3')
+license=(GPL3)
 # setuptools is required due to use of pkg_resources:
 # https://github.com/Kozea/Radicale/issues/1184
-depends=('python-bcrypt' 'python-dateutil' 'python-defusedxml' 'python-passlib'
-'python-setuptools' 'python-vobject')
-checkdepends=('python-pytest' 'python-pytest-runner' 'python-waitress')
+depends=(python-bcrypt python-dateutil python-defusedxml python-passlib
+python-setuptools python-vobject)
+checkdepends=(python-pytest python-pytest-runner python-typeguard 
python-waitress)
 backup=('etc/radicale/config'
 'etc/radicale/rights'
 'etc/radicale/users')
 install="${pkgname}.install"
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Kozea/${pkgname}/archive/${pkgver}.tar.gz";
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Kozea/${pkgname}/archive/v${pkgver}.tar.gz";
 "${pkgname}-sysusers.conf"
 "${pkgname}-tmpfiles.conf"
 "${pkgname}.service")
-sha512sums=('e9741547395fae8886ad84b6807422ebb196f5293d484f5f6136498058576cff697e28c117216f151d56494af83593347ceee40a6efa21272b803d0f301a396d'
+sha512sums=('b2b4a9ba308650949d5cc5c8a88685b925dd1fce21251829e1ac11225699b5294964e91f37955d919cadfe9eca786dd805d0c141c6a9013c95c67511121b8788'
 
'56dffb66e018cfbf158dc5d8fe638b3cb31229945f659aae5623f219bcd1d68ddc375f1633fa8e857a9b2f50c9e05a06efce165370137d6e116a4f187466637f'
 
'9d0dd88e4a34e9f97abda1785698e4b2a5e8202063deeb91b84e13c05e00b07e45b8d4d9eca09b9241b1138bbbfdc999dba0135c18f5bc0c08d65b0cd83b367b'
 
'0f74a662e2eee56a89f5735e686910043ad5589b638e56a7ad3caa6d3b111cfbf1c131fe1b2ee34ce0d10d2f8a041a183f1382b1e1c9594f7e793c92161ef17a')
-b2sums=('fa4b70c9920d518df6c939395eca857c237a75218b90ada45564f2d84266d65df12898e4efbb52905829948061e10e72b5442943fd5061a28447330ae8d491e8'
+b2sums=('e4ed7a2fb395fbcd16d9da26e764ccad1594de8ff7ec4394885256b7d09a360a510f85727e1a7e936a10d9132bed1a487dcfdece94449df4278dc843cef6c606'
 
'b3af60e144ef857e42ec672e806e9600265ab7d2ea4a75011de9ab56918a008437afdacb301df210b54424fb7ff1e9a332831c67b2e58fd6bc0a0aa1eebe8909'
 
'41916d62f5e3f1060bd21db0722abe837754a4cb915af218c904dafac4b06794f8fde2e34486fb7392777b4738502f3df4c1390b835050045337585b064e23bb'
 
'8d7e732bb7430428db2b60ffd8b4b1c3e85cbda4a1b900ae28d80c46a64e97ab484d9cc13aaa2582eeca4063f4e74141754f1e67769d444b08b3663f62cf8bf1')
 
 prepare() {
-  mv -v ${_name}-${pkgver} ${pkgname}-${pkgver}
-  cd ${pkgname}-${pkgver}
-  # removing flake8, isort and coverage
-  sed -e '/addopts/d' -i setup.cfg
+  cd ${_name}-${pkgver}
   touch "users"
 }
 
 build() {
-  cd "${pkgname}-${pkgver}"
+  cd ${_name}-${pkgver}
   python setup.py build
 }
 
 check() {
   local python_version=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
-  cd "${pkgname}-${pkgver}"
+
+  cd ${_name}-${pkgver}
   mkdir -vp testdir
   python setup.py install --optimize=1 --root="testdir"
   export 
PYTHONPATH="testdir/usr/lib/python${python_version}/site-packages:${PYTHONPATH}"
-  pytest -v
+  pytest -v -c /dev/null
 }
 
 package() {
-  cd "${pkgname}-${pkgver}"
+  cd ${_name}-${pkgver}
   python setup.py install --optimize=1 --root="${pkgdir}"
   # config
   install -vDm 644 {config,rights,users} -t "${pkgdir}/etc/${pkgname}/"
   # wsgi
-  install -vDm 644 "${pkgname}.wsgi" \
--t "${pkgdir}/usr/share/${pkgname}/"
+  install -vDm 644 "${pkgname}.wsgi" -t "${pkgdir}/usr/share/${pkgname}/"
   # systemd service
-  install -vDm 644 "${srcdir}/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
+  install -vDm 644 "${srcdir}/${pkgname}.service" -t 
"${pkgdir}/usr/lib/systemd/system/"
   # sysusers.d
-  install -vDm 644 "${srcdir}/${pkgname}-sysusers.conf" \
-"${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
+  install -vDm 644 "${srcdir}/${pkgname}-sysusers.conf" 
"${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
   # tmpfiles.d
-  install -vDm 644 "${srcdir}/${pkgname}-tmpfiles.conf" \
-"${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
+  install -v

[arch-commits] Commit in radicale/repos/community-any (10 files)

2021-12-29 Thread David Runge via arch-commits
Date: Wednesday, December 29, 2021 @ 21:05:06
  Author: dvzrv
Revision: 1087660

archrelease: copy trunk to community-any

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

+
 PKGBUILD   |  148 ++-
 radicale-sysusers.conf |2 
 radicale-tmpfiles.conf |4 -
 radicale.install   |   16 ++---
 radicale.service   |   82 +-
 5 files changed, 123 insertions(+), 129 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-29 21:04:17 UTC (rev 1087659)
+++ PKGBUILD2021-12-29 21:05:06 UTC (rev 1087660)
@@ -1,77 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Moritz Lipp 
-# Contributor: fordprefect 
-# Contributor: Thor77 
-
-pkgname=radicale
-_name=Radicale
-pkgver=3.0.6
-pkgrel=5
-pkgdesc='Simple calendar (CalDAV) and contact (CardDAV) server'
-arch=('any')
-url="https://radicale.org/";
-license=('GPL3')
-# setuptools is required due to use of pkg_resources:
-# https://github.com/Kozea/Radicale/issues/1184
-depends=('python-bcrypt' 'python-dateutil' 'python-defusedxml' 'python-passlib'
-'python-setuptools' 'python-vobject')
-checkdepends=('python-pytest' 'python-pytest-runner' 'python-waitress')
-backup=('etc/radicale/config'
-'etc/radicale/rights'
-'etc/radicale/users')
-install="${pkgname}.install"
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Kozea/${pkgname}/archive/${pkgver}.tar.gz";
-"${pkgname}-sysusers.conf"
-"${pkgname}-tmpfiles.conf"
-"${pkgname}.service")
-sha512sums=('e9741547395fae8886ad84b6807422ebb196f5293d484f5f6136498058576cff697e28c117216f151d56494af83593347ceee40a6efa21272b803d0f301a396d'
-
'56dffb66e018cfbf158dc5d8fe638b3cb31229945f659aae5623f219bcd1d68ddc375f1633fa8e857a9b2f50c9e05a06efce165370137d6e116a4f187466637f'
-
'9d0dd88e4a34e9f97abda1785698e4b2a5e8202063deeb91b84e13c05e00b07e45b8d4d9eca09b9241b1138bbbfdc999dba0135c18f5bc0c08d65b0cd83b367b'
-
'0f74a662e2eee56a89f5735e686910043ad5589b638e56a7ad3caa6d3b111cfbf1c131fe1b2ee34ce0d10d2f8a041a183f1382b1e1c9594f7e793c92161ef17a')
-b2sums=('fa4b70c9920d518df6c939395eca857c237a75218b90ada45564f2d84266d65df12898e4efbb52905829948061e10e72b5442943fd5061a28447330ae8d491e8'
-
'b3af60e144ef857e42ec672e806e9600265ab7d2ea4a75011de9ab56918a008437afdacb301df210b54424fb7ff1e9a332831c67b2e58fd6bc0a0aa1eebe8909'
-
'41916d62f5e3f1060bd21db0722abe837754a4cb915af218c904dafac4b06794f8fde2e34486fb7392777b4738502f3df4c1390b835050045337585b064e23bb'
-
'8d7e732bb7430428db2b60ffd8b4b1c3e85cbda4a1b900ae28d80c46a64e97ab484d9cc13aaa2582eeca4063f4e74141754f1e67769d444b08b3663f62cf8bf1')
-
-prepare() {
-  mv -v ${_name}-${pkgver} ${pkgname}-${pkgver}
-  cd ${pkgname}-${pkgver}
-  # removing flake8, isort and coverage
-  sed -e '/addopts/d' -i setup.cfg
-  touch "users"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py build
-}
-
-check() {
-  local python_version=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
-  cd "${pkgname}-${pkgver}"
-  mkdir -vp testdir
-  python setup.py install --optimize=1 --root="testdir"
-  export 
PYTHONPATH="testdir/usr/lib/python${python_version}/site-packages:${PYTHONPATH}"
-  pytest -v
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py install --optimize=1 --root="${pkgdir}"
-  # config
-  install -vDm 644 {config,rights,users} -t "${pkgdir}/etc/${pkgname}/"
-  # wsgi
-  install -vDm 644 "${pkgname}.wsgi" \
--t "${pkgdir}/usr/share/${pkgname}/"
-  # systemd service
-  install -vDm 644 "${srcdir}/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
-  # sysusers.d
-  install -vDm 644 "${srcdir}/${pkgname}-sysusers.conf" \
-"${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
-  # tmpfiles.d
-  install -vDm 644 "${srcdir}/${pkgname}-tmpfiles.conf" \
-"${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
-  # docs
-  install -vDm 644 {NEWS,README}.md -t "${pkgdir}/usr/share/doc/${pkgname}/"
-}

Copied: radicale/repos/community-any/PKGBUILD (from rev 1087659, 
radicale/trunk/PKGBUILD)
==

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

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 20:59:24
  Author: felixonmars
Revision: 1087656

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 1087655, 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 1087655, haskell-hls-floskell-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-29 20:59:24 UTC (rev 1087656)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-floskell-plugin
+pkgname=haskell-hls-floskell-plugin
+pkgver=1.0.0.1
+pkgrel=40
+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 --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)

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 21:00:18
  Author: felixonmars
Revision: 1087657

upgpkg: haskell-hls-ormolu-plugin 1.0.1.0-41: rebuild with unordered-containers 
0.2.15.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 20:59:24 UTC (rev 1087656)
+++ PKGBUILD2021-12-29 21:00:18 UTC (rev 1087657)
@@ -3,7 +3,7 @@
 _hkgname=hls-ormolu-plugin
 pkgname=haskell-hls-ormolu-plugin
 pkgver=1.0.1.0
-pkgrel=40
+pkgrel=41
 pkgdesc="Integration with the Ormolu code formatter"
 url="https://hackage.haskell.org/package/hls-ormolu-plugin";
 license=("Apache")



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 20:59:16
  Author: felixonmars
Revision: 1087655

upgpkg: haskell-hls-floskell-plugin 1.0.0.1-40: rebuild with 
unordered-containers 0.2.15.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 20:58:23 UTC (rev 1087654)
+++ PKGBUILD2021-12-29 20:59:16 UTC (rev 1087655)
@@ -3,7 +3,7 @@
 _hkgname=hls-floskell-plugin
 pkgname=haskell-hls-floskell-plugin
 pkgver=1.0.0.1
-pkgrel=39
+pkgrel=40
 pkgdesc="Integration with the Floskell code formatter"
 url="https://hackage.haskell.org/package/hls-floskell-plugin";
 license=("Apache")



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 21:00:26
  Author: felixonmars
Revision: 1087658

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hls-ormolu-plugin/repos/community-staging-x86_64/PKGBUILD (from 
rev 1087657, haskell-hls-ormolu-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-29 21:00:26 UTC (rev 1087658)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-ormolu-plugin
+pkgname=haskell-hls-ormolu-plugin
+pkgver=1.0.1.0
+pkgrel=41
+pkgdesc="Integration with the Ormolu code formatter"
+url="https://hackage.haskell.org/package/hls-ormolu-plugin";
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ghc' 'haskell-ghc-api-compat' 'haskell-ghcide'
+ 'haskell-hls-plugin-api' 'haskell-lens' 'haskell-lsp' 
'haskell-ormolu')
+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=('330242298e6c4608d31bb0eac3ef926cfd7d5ff2bd07ab57cd46a1904c133322181e2e35da3beb01f1f97efd466d653d12a3563939fe86e70d820301aca52661')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -u 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 --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-call-hierarchy-plugin/repos (2 files)

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 20:58:23
  Author: felixonmars
Revision: 1087654

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 1087653, 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 1087653, haskell-hls-call-hierarchy-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-29 20:58:23 UTC (rev 1087654)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-call-hierarchy-plugin
+pkgname=haskell-hls-call-hierarchy-plugin
+pkgver=1.0.0.0
+pkgrel=40
+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 -u 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 --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-call-hierarchy-plugin/trunk (PKGBUILD)

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 20:58:15
  Author: felixonmars
Revision: 1087653

upgpkg: haskell-hls-call-hierarchy-plugin 1.0.0.0-40: rebuild with 
unordered-containers 0.2.15.0

Modified:
  haskell-hls-call-hierarchy-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 20:56:58 UTC (rev 1087652)
+++ PKGBUILD2021-12-29 20:58:15 UTC (rev 1087653)
@@ -3,7 +3,7 @@
 _hkgname=hls-call-hierarchy-plugin
 pkgname=haskell-hls-call-hierarchy-plugin
 pkgver=1.0.0.0
-pkgrel=39
+pkgrel=40
 pkgdesc="Call hierarchy plugin for Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-call-hierarchy-plugin";
 license=("Apache")



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 20:56:51
  Author: felixonmars
Revision: 1087651

upgpkg: haskell-hls-haddock-comments-plugin 1.0.0.3-40: rebuild with 
unordered-containers 0.2.15.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 20:55:58 UTC (rev 1087650)
+++ PKGBUILD2021-12-29 20:56:51 UTC (rev 1087651)
@@ -3,7 +3,7 @@
 _hkgname=hls-haddock-comments-plugin
 pkgname=haskell-hls-haddock-comments-plugin
 pkgver=1.0.0.3
-pkgrel=39
+pkgrel=40
 pkgdesc="Haddock comments plugin for Haskell Language Server"
 url="https://github.com/haskell/haskell-language-server";
 license=("Apache")



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 20:56:58
  Author: felixonmars
Revision: 1087652

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 1087651, 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 1087651, haskell-hls-haddock-comments-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-29 20:56:58 UTC (rev 1087652)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-haddock-comments-plugin
+pkgname=haskell-hls-haddock-comments-plugin
+pkgver=1.0.0.3
+pkgrel=40
+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 --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-stylish-haskell-plugin/repos (2 files)

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 20:55:58
  Author: felixonmars
Revision: 1087650

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 1087649, 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 1087649, haskell-hls-stylish-haskell-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-29 20:55:58 UTC (rev 1087650)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-stylish-haskell-plugin
+pkgname=haskell-hls-stylish-haskell-plugin
+pkgver=1.0.0.2
+pkgrel=41
+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 $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-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-stylish-haskell-plugin/trunk (PKGBUILD)

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 20:55:50
  Author: felixonmars
Revision: 1087649

upgpkg: haskell-hls-stylish-haskell-plugin 1.0.0.2-41: rebuild with 
unordered-containers 0.2.15.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 20:54:51 UTC (rev 1087648)
+++ PKGBUILD2021-12-29 20:55:50 UTC (rev 1087649)
@@ -3,7 +3,7 @@
 _hkgname=hls-stylish-haskell-plugin
 pkgname=haskell-hls-stylish-haskell-plugin
 pkgver=1.0.0.2
-pkgrel=40
+pkgrel=41
 pkgdesc="Integration with the Stylish Haskell code formatter"
 url="https://hackage.haskell.org/package/hls-stylish-haskell-plugin";
 license=("Apache")



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 20:54:51
  Author: felixonmars
Revision: 1087648

archrelease: copy trunk to community-staging-x86_64

Added:
  postgrest/repos/community-staging-x86_64/
  postgrest/repos/community-staging-x86_64/PKGBUILD
(from rev 1087647, postgrest/trunk/PKGBUILD)

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

Copied: postgrest/repos/community-staging-x86_64/PKGBUILD (from rev 1087647, 
postgrest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-29 20:54:51 UTC (rev 1087648)
@@ -0,0 +1,69 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=postgrest
+pkgver=8.0.0
+pkgrel=66
+pkgdesc="REST API for any Postgres database"
+url="https://github.com/begriffs/postgrest";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-http' 'haskell-ranged-sets' 'haskell-aeson' 
'haskell-ansi-wl-pprint'
+ 'haskell-base64-bytestring' 'haskell-case-insensitive' 
'haskell-cassava'
+ 'haskell-configurator-pg' 'haskell-contravariant' 
'haskell-contravariant-extras'
+ 'haskell-cookie' 'haskell-either' 'haskell-fast-logger' 
'haskell-gitrev' 'haskell-hasql'
+ 'haskell-hasql-dynamic-statements' 'haskell-hasql-notifications' 
'haskell-hasql-pool'
+ 'haskell-hasql-transaction' 'haskell-heredoc' 'haskell-http-types'
+ 'haskell-insert-ordered-containers' 
'haskell-interpolatedstring-perl6' 'haskell-jose'
+ 'haskell-lens' 'haskell-lens-aeson' 'haskell-network-uri' 
'haskell-optparse-applicative'
+ 'haskell-parsec' 'haskell-protolude' 'haskell-regex-tdfa' 
'haskell-scientific'
+ 'haskell-swagger2' 'haskell-unordered-containers' 'haskell-vector' 
'haskell-wai'
+ 'haskell-wai-cors' 'haskell-wai-extra' 'haskell-wai-logger' 
'haskell-wai-middleware-static'
+ 'haskell-auto-update' 'haskell-retry' 'haskell-warp')
+makedepends=('ghc' 'uusi' 'haskell-aeson-qq' 'haskell-async' 'haskell-hspec' 
'haskell-hspec-wai'
+ 'haskell-hspec-wai-json' 'haskell-monad-control' 
'haskell-transformers-base')
+checkdepends=('pifpaf' 'postgresql' 'procps-ng')
+source=("https://github.com/begriffs/postgrest/archive/v$pkgver/$pkgname-$pkgver.tar.gz";)
+sha512sums=('ae3f004d3042e236ffd3870c980cdfbb615a3de5433bd917816e8c0e719edb0bfcba763bb3c920dad64461410374231a6ab7710d48b310cdc30d5dd6f1f58337')
+
+prepare() {
+cd $pkgname-$pkgver
+uusi -u base -u hspec -u retry $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}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+-f-CI --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 $pkgname-$pkgver
+
+eval $(pifpaf run postgresql --host 127.0.0.1)
+createuser -s postgrest_test
+POSTGREST_TEST_CONNECTION=$(test/create_test_db 
"postgres://$USER@localhost" postgrest_test) runhaskell Setup test 
--show-details=direct
+
+# Disabled: uses stack
+# test/io-tests.sh
+
+pifpaf_stop
+}
+
+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 "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 20:54:44
  Author: felixonmars
Revision: 1087647

upgpkg: postgrest 8.0.0-66: rebuild with unordered-containers 0.2.15.0

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 20:51:16 UTC (rev 1087646)
+++ PKGBUILD2021-12-29 20:54:44 UTC (rev 1087647)
@@ -3,7 +3,7 @@
 
 pkgname=postgrest
 pkgver=8.0.0
-pkgrel=65
+pkgrel=66
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest";
 license=("MIT")



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 20:51:16
  Author: felixonmars
Revision: 1087646

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-test-utils/repos/community-staging-x86_64/
  haskell-hls-test-utils/repos/community-staging-x86_64/PKGBUILD
(from rev 1087645, haskell-hls-test-utils/trunk/PKGBUILD)

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

Copied: haskell-hls-test-utils/repos/community-staging-x86_64/PKGBUILD (from 
rev 1087645, haskell-hls-test-utils/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-29 20:51:16 UTC (rev 1087646)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-test-utils
+pkgname=haskell-hls-test-utils
+pkgver=1.1.0.0
+pkgrel=41
+pkgdesc="Utilities used in the tests of Haskell Language Server"
+url="https://github.com/haskell/haskell-language-server#readme";
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-async' 'haskell-blaze-markup' 
'haskell-data-default'
+ 'haskell-extra' 'haskell-ghcide' 'haskell-hls-graph' 
'haskell-hls-plugin-api'
+ 'haskell-hspec' 'haskell-hspec-core' 'haskell-lens' 'haskell-lsp' 
'haskell-lsp-test'
+ 'haskell-lsp-types' 'haskell-tasty' 'haskell-tasty-expected-failure' 
'haskell-tasty-golden'
+ 'haskell-tasty-hunit' 'haskell-tasty-rerun' 'haskell-temporary'
+ 'haskell-unordered-containers')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz";)
+sha512sums=('08bb01af48a07b37c6d99c6da42341147259ee3f26aef4737a796a62fabbe9600464fdecb3ae4908a4df24e044abf786bcf30103b15b8d7c72f12f9a0c07fcb5')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -u hspec $_hkgname.cabal
+  # https://github.com/haskell/haskell-language-server/issues/1835
+  sed -i '/configOutputFile/d' src/Test/Hls/Util.hs
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-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-explicit-imports-plugin/trunk (PKGBUILD)

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 20:50:06
  Author: felixonmars
Revision: 1087643

upgpkg: haskell-hls-explicit-imports-plugin 1.0.1.0-40: rebuild with 
unordered-containers 0.2.15.0

Modified:
  haskell-hls-explicit-imports-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 20:49:15 UTC (rev 1087642)
+++ PKGBUILD2021-12-29 20:50:06 UTC (rev 1087643)
@@ -3,7 +3,7 @@
 _hkgname=hls-explicit-imports-plugin
 pkgname=haskell-hls-explicit-imports-plugin
 pkgver=1.0.1.0
-pkgrel=39
+pkgrel=40
 pkgdesc="Explicit imports plugin for Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-explicit-imports-plugin";
 license=("Apache")



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

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 20:50:13
  Author: felixonmars
Revision: 1087644

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: 
haskell-hls-explicit-imports-plugin/repos/community-staging-x86_64/PKGBUILD 
(from rev 1087643, haskell-hls-explicit-imports-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-29 20:50:13 UTC (rev 1087644)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-explicit-imports-plugin
+pkgname=haskell-hls-explicit-imports-plugin
+pkgver=1.0.1.0
+pkgrel=40
+pkgdesc="Explicit imports plugin for Haskell Language Server"
+url="https://hackage.haskell.org/package/hls-explicit-imports-plugin";
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ghc' 'haskell-ghc-api-compat' 
'haskell-ghcide'
+ 'haskell-hls-graph' 'haskell-hls-plugin-api' 'haskell-lsp' 
'haskell-unordered-containers')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz";)
+sha512sums=('7691ecc341fb511e51ccb6c1f67cd6f3c908f771b62423d7713d05bf13893b7ac53ae9c453ab8b6ca227ed8c9b42191cd30b9745b57f00c51f3f3646954955b8')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -u 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 --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-test-utils/trunk (PKGBUILD)

2021-12-29 Thread Felix Yan via arch-commits
Date: Wednesday, December 29, 2021 @ 20:51:07
  Author: felixonmars
Revision: 1087645

upgpkg: haskell-hls-test-utils 1.1.0.0-41: rebuild with unordered-containers 
0.2.15.0

Modified:
  haskell-hls-test-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-29 20:50:13 UTC (rev 1087644)
+++ PKGBUILD2021-12-29 20:51:07 UTC (rev 1087645)
@@ -3,7 +3,7 @@
 _hkgname=hls-test-utils
 pkgname=haskell-hls-test-utils
 pkgver=1.1.0.0
-pkgrel=40
+pkgrel=41
 pkgdesc="Utilities used in the tests of Haskell Language Server"
 url="https://github.com/haskell/haskell-language-server#readme";
 license=("Apache")



  1   2   3   4   5   6   7   8   9   10   >