[arch-commits] Commit in x2goserver/repos/extra-x86_64 (10 files)

2020-10-15 Thread Andreas Radke via arch-commits
Date: Friday, October 16, 2020 @ 05:59:15
  Author: andyrtr
Revision: 398423

archrelease: copy trunk to extra-x86_64

Added:
  x2goserver/repos/extra-x86_64/PKGBUILD
(from rev 398422, x2goserver/trunk/PKGBUILD)
  x2goserver/repos/extra-x86_64/reproducible-man-gzip.patch
(from rev 398422, x2goserver/trunk/reproducible-man-gzip.patch)
  x2goserver/repos/extra-x86_64/sysusers.d
(from rev 398422, x2goserver/trunk/sysusers.d)
  x2goserver/repos/extra-x86_64/tmpfiles.d
(from rev 398422, x2goserver/trunk/tmpfiles.d)
  x2goserver/repos/extra-x86_64/x2goserver.install
(from rev 398422, x2goserver/trunk/x2goserver.install)
Deleted:
  x2goserver/repos/extra-x86_64/PKGBUILD
  x2goserver/repos/extra-x86_64/reproducible-man-gzip.patch
  x2goserver/repos/extra-x86_64/sysusers.d
  x2goserver/repos/extra-x86_64/tmpfiles.d
  x2goserver/repos/extra-x86_64/x2goserver.install

-+
 PKGBUILD|  303 +-
 reproducible-man-gzip.patch |  162 +++---
 sysusers.d  |4 
 tmpfiles.d  |4 
 x2goserver.install  |   12 -
 5 files changed, 243 insertions(+), 242 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-16 05:59:06 UTC (rev 398422)
+++ PKGBUILD2020-10-16 05:59:15 UTC (rev 398423)
@@ -1,151 +0,0 @@
-# Maintainer: AndyRTR 
-
-# Contributor: Gerhard Brauer 
-# Contributor: Richard Murri 
-# Contributor: Markus Opitz 
-# Contributor: Milan Knížek 
-
-pkgname=x2goserver
-pkgver=4.1.0.3
-pkgrel=8
-pkgdesc="Open source graphical Remote Desktop and terminal server based on NX 
technology"
-arch=('x86_64')
-url="https://www.x2go.org/;
-license=('GPL2')
-# https://code.x2go.org/gitweb?p=x2goserver.git;a=blob;f=x2goserver.spec
-
-# from 4.0.1.20 changelog there could be new deps on bash, xkeyboard-config, 
perl-cwd-guard
-
-depends=(
- 'openssh'
- 'nxagent' # FS#67024
- # certain shell script hardcode bash
- 'bash'
- # for x2goruncommand - for now
- 'bc'
- # for ss in x2gogetfreeport 
-'iproute'
- # for x2goshowblocks
- 'lsof'
- # For killall in x2gosuspend-session
- 'psmisc'
- # For x2godbadmin
- 'pwgen' # in community
- # For printing, file-sharing
- 'sshfs'
-# for /etc/sudoers.d
- 'sudo'
- 'which'
- # For /etc/X11/Xresources
- 'xorg-xinit'
- 'xorg-fonts-misc'
- 'xorg-xauth'
- 'xkeyboard-config'
- 'xorg-xwininfo' # FS#38558
- 'xorg-setxkbmap' # FS#53345
-
- # for useradd/groupadd
- 'shadow'
-
- # for filemanager bindings
- 'desktop-file-utils'
- 'shared-mime-info'
- 'xdg-utils'
-
- # We need a database
- 'perl-dbd-sqlite' 
-
- 'perl-capture-tiny'
- 'perl-config-simple'
- 'perl-file-basedir' # FS#38551
- 'perl-file-which' # FS#44125
- 'perl-switch'
- 'perl-try-tiny' # FS#58226
- #'perl-file-readbackwards' ?
-
- 'dbus'
-)
-#makedepends=('man2html' 'perl-extutils-makemaker' 'systemd')
-makedepends=('man2html' 'perl-extutils-makemaker' 'systemd' 
- # only needed for file system paths
- 'sudo'
-)
-optdepends=('perl-dbd-pg: Postgres support')
-#conflicts=('x2go-agent')
-#replaces=('x2go-agent')
-#provides=('x2go-agent' 'x2goagent')
-options=('emptydirs')
-install=x2goserver.install
-backup=('etc/x2go/x2goserver.conf'
-'etc/x2go/desktopsharing/settings'
-# from old x2go-agent pkg now provided here
-etc/x2go/{keystrokes.cfg,x2goagent.keyboard,x2goagent.options}
-)
-# no https due to invalid certificate
-source=(https://code.x2go.org/releases/source/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc}
-   tmpfiles.d
-   sysusers.d
-   reproducible-man-gzip.patch)
-sha256sums=('6776aaa354f5a44e349f0b3c176d4988c88a618c2edf46c98a37ae89c069dcd0'
-'SKIP'
-'548d48925171aeca198494236cfba7232921a25a1c4c81f5d004a734d83d1350'
-'04d429e8d8fe02c8078d75ba63ba57774274df877b2c6ec942621312b7bf9118'
-'2d52a5ca28d5b65a9cc9bd8cdc74d030d7faddb6d727d2df520686934ea125fb')
-validpgpkeys=('1AD23D1B8F087A35AB74BDE9F4A7678C9C6B0B2B') # X2go Git 
Administrator 
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  # -r option does not exist in Arch linux
-  # (However, html man pages do not get installed anyway...)
-  for Makefile in $(find . -type f -name Makefile); do
-sed -i 's@(MAN2HTML_BIN) -r @(MAN2HTML_BIN) < @g' $Makefile
-sed -i 's@ \$(MAN2HTML_SRC)/@ < \$(MAN2HTML_SRC)/@g' $Makefile
-  done
-
-  # fix some Makefile permission options
-  for Makefile in $(find . -type f -name Makefile); do
-sed -i "s:-o root -g root ::g" $Makefile
-  done
-  # Do not ship xsession - Debian specific
-  sed 

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

2020-10-15 Thread Andreas Radke via arch-commits
Date: Friday, October 16, 2020 @ 05:59:06
  Author: andyrtr
Revision: 398422

upgpkg: x2goserver 4.1.0.3-9: fix missing hostname command - FS#68276

Modified:
  x2goserver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-16 05:49:24 UTC (rev 398421)
+++ PKGBUILD2020-10-16 05:59:06 UTC (rev 398422)
@@ -7,7 +7,7 @@
 
 pkgname=x2goserver
 pkgver=4.1.0.3
-pkgrel=8
+pkgrel=9
 pkgdesc="Open source graphical Remote Desktop and terminal server based on NX 
technology"
 arch=('x86_64')
 url="https://www.x2go.org/;
@@ -37,7 +37,8 @@
  'sudo'
  'which'
  # For /etc/X11/Xresources
- 'xorg-xinit'
+ 'xorg-xinit' 
+ 'inetutils' # FS#68276
  'xorg-fonts-misc'
  'xorg-xauth'
  'xkeyboard-config'


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

2020-10-15 Thread Christian Hesse via arch-commits
Date: Friday, October 16, 2020 @ 05:54:25
  Author: eworm
Revision: 724316

build from signed git tag (FS#68267)

Modified:
  mpv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-16 04:15:17 UTC (rev 724315)
+++ PKGBUILD2020-10-16 05:54:25 UTC (rev 724316)
@@ -4,6 +4,7 @@
 
 pkgname=mpv
 epoch=1
+_tag='d81133141f052187016a8cb4cf034c35ba39e0ba' # git rev-parse v${pkgver}
 pkgver=0.32.0
 pkgrel=4
 pkgdesc='a free, open source, and cross-platform media player'
@@ -17,16 +18,17 @@
  'libxinerama' 'libxkbcommon' 'libxrandr' 'libxss' 'libxv' 'lua52'
  'librubberband.so' 'smbclient' 'uchardet' 'vulkan-icd-loader' 
'wayland'
  'xdg-utils' 'shaderc' 'mujs' 'libplacebo' 'libplacebo.so')
-makedepends=('mesa' 'python-docutils' 'ladspa' 'wayland-protocols'
+makedepends=('git' 'mesa' 'python-docutils' 'ladspa' 'wayland-protocols'
  'ffnvcodec-headers' 'vulkan-headers' 'waf')
 optdepends=('youtube-dl: for video-sharing websites playback')
 provides=('libmpv.so')
 options=('!emptydirs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/mpv-player/$pkgname/archive/v$pkgver.tar.gz;)
-sha256sums=('9163f64832226d22e24bbc4874ebd6ac02372cd717bef15c28a0aa858c5fe592')
+validpgpkeys=('145077D82501AA20152CACCE8D769208D5E31419') # sfan5 

+source=("git+https://github.com/mpv-player/mpv.git#tag=${_tag}?signed;)
+sha256sums=('SKIP')
 
 build() {
-  cd ${pkgname}-${pkgver}
+  cd ${pkgname}
 
   waf configure --prefix=/usr \
 --confdir=/etc/mpv \
@@ -42,7 +44,7 @@
 }
 
 package() {
-  cd ${pkgname}-${pkgver}
+  cd ${pkgname}
 
   waf install --destdir="$pkgdir"
 


[arch-commits] Commit in libmspub/trunk (PKGBUILD buildfix.diff)

2020-10-15 Thread Andreas Radke via arch-commits
Date: Friday, October 16, 2020 @ 05:49:11
  Author: andyrtr
Revision: 398420

upgpkg: libmspub 0.1.4-8: fix FTBFS - FS#68273

Added:
  libmspub/trunk/buildfix.diff
Modified:
  libmspub/trunk/PKGBUILD

---+
 PKGBUILD  |   14 +++---
 buildfix.diff |   12 
 2 files changed, 23 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 21:09:02 UTC (rev 398419)
+++ PKGBUILD2020-10-16 05:49:11 UTC (rev 398420)
@@ -3,7 +3,7 @@
 
 pkgname=libmspub
 pkgver=0.1.4
-pkgrel=7
+pkgrel=8
 pkgdesc="Microsoft Publisher file format parser library (latest snapshot)"
 arch=('x86_64')
 url="https://wiki.documentfoundation.org/DLP/Libraries/libmspub;
@@ -10,9 +10,17 @@
 license=('GPL2' 'LGPL2.1' 'MPL')
 depends=('libwpd' 'icu' 'librevenge')
 makedepends=('libwpg' 'boost' 'doxygen')
-source=(https://dev-www.libreoffice.org/src/${pkgname}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('ef36c1a1aabb2ba3b0bedaaafe717bf4480be2ba8de6f3894be5fd3702b013ba')
+source=(https://dev-www.libreoffice.org/src/${pkgname}/${pkgname}-${pkgver}.tar.xz
+buildfix.diff)
+sha256sums=('ef36c1a1aabb2ba3b0bedaaafe717bf4480be2ba8de6f3894be5fd3702b013ba'
+'be1a871f9ebfb15d989605137d5de0c5dc67a3e383e0e1178037f8a9bdfc89dc')
 
+prepare() {
+cd "${pkgname}"-${pkgver}
+patch -Np1 -i ../buildfix.diff
+autoreconf -vfi
+}
+
 build() {
 cd "${pkgname}"-${pkgver}
 ./configure --prefix=/usr --with-docs

Added: buildfix.diff
===
--- buildfix.diff   (rev 0)
+++ buildfix.diff   2020-10-16 05:49:11 UTC (rev 398420)
@@ -0,0 +1,12 @@
+diff --git a/src/lib/MSPUBMetaData.h b/src/lib/MSPUBMetaData.h
+index 9167f4f..27bdd4f 100644
+--- a/src/lib/MSPUBMetaData.h
 b/src/lib/MSPUBMetaData.h
+@@ -13,6 +13,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #include 
+ 


[arch-commits] Commit in libmspub/repos/extra-x86_64 (PKGBUILD PKGBUILD buildfix.diff)

2020-10-15 Thread Andreas Radke via arch-commits
Date: Friday, October 16, 2020 @ 05:49:24
  Author: andyrtr
Revision: 398421

archrelease: copy trunk to extra-x86_64

Added:
  libmspub/repos/extra-x86_64/PKGBUILD
(from rev 398420, libmspub/trunk/PKGBUILD)
  libmspub/repos/extra-x86_64/buildfix.diff
(from rev 398420, libmspub/trunk/buildfix.diff)
Deleted:
  libmspub/repos/extra-x86_64/PKGBUILD

---+
 PKGBUILD  |   58 +++-
 buildfix.diff |   12 +++
 2 files changed, 45 insertions(+), 25 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-16 05:49:11 UTC (rev 398420)
+++ PKGBUILD2020-10-16 05:49:24 UTC (rev 398421)
@@ -1,25 +0,0 @@
-# Maintainer: AndyRTR 
-# Contributor: Simone Sclavi 'Ito' 
-
-pkgname=libmspub
-pkgver=0.1.4
-pkgrel=7
-pkgdesc="Microsoft Publisher file format parser library (latest snapshot)"
-arch=('x86_64')
-url="https://wiki.documentfoundation.org/DLP/Libraries/libmspub;
-license=('GPL2' 'LGPL2.1' 'MPL')
-depends=('libwpd' 'icu' 'librevenge')
-makedepends=('libwpg' 'boost' 'doxygen')
-source=(https://dev-www.libreoffice.org/src/${pkgname}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('ef36c1a1aabb2ba3b0bedaaafe717bf4480be2ba8de6f3894be5fd3702b013ba')
-
-build() {
-cd "${pkgname}"-${pkgver}
-./configure --prefix=/usr --with-docs
-make
-}
-
-package() {
-cd "${pkgname}"-${pkgver}
-make DESTDIR="$pkgdir" install
-}

Copied: libmspub/repos/extra-x86_64/PKGBUILD (from rev 398420, 
libmspub/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-16 05:49:24 UTC (rev 398421)
@@ -0,0 +1,33 @@
+# Maintainer: AndyRTR 
+# Contributor: Simone Sclavi 'Ito' 
+
+pkgname=libmspub
+pkgver=0.1.4
+pkgrel=8
+pkgdesc="Microsoft Publisher file format parser library (latest snapshot)"
+arch=('x86_64')
+url="https://wiki.documentfoundation.org/DLP/Libraries/libmspub;
+license=('GPL2' 'LGPL2.1' 'MPL')
+depends=('libwpd' 'icu' 'librevenge')
+makedepends=('libwpg' 'boost' 'doxygen')
+source=(https://dev-www.libreoffice.org/src/${pkgname}/${pkgname}-${pkgver}.tar.xz
+buildfix.diff)
+sha256sums=('ef36c1a1aabb2ba3b0bedaaafe717bf4480be2ba8de6f3894be5fd3702b013ba'
+'be1a871f9ebfb15d989605137d5de0c5dc67a3e383e0e1178037f8a9bdfc89dc')
+
+prepare() {
+cd "${pkgname}"-${pkgver}
+patch -Np1 -i ../buildfix.diff
+autoreconf -vfi
+}
+
+build() {
+cd "${pkgname}"-${pkgver}
+./configure --prefix=/usr --with-docs
+make
+}
+
+package() {
+cd "${pkgname}"-${pkgver}
+make DESTDIR="$pkgdir" install
+}

Copied: libmspub/repos/extra-x86_64/buildfix.diff (from rev 398420, 
libmspub/trunk/buildfix.diff)
===
--- buildfix.diff   (rev 0)
+++ buildfix.diff   2020-10-16 05:49:24 UTC (rev 398421)
@@ -0,0 +1,12 @@
+diff --git a/src/lib/MSPUBMetaData.h b/src/lib/MSPUBMetaData.h
+index 9167f4f..27bdd4f 100644
+--- a/src/lib/MSPUBMetaData.h
 b/src/lib/MSPUBMetaData.h
+@@ -13,6 +13,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #include 
+ 


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

2020-10-15 Thread Chih-Hsuan Yen via arch-commits
Date: Friday, October 16, 2020 @ 04:15:17
  Author: yan12125
Revision: 724315

archrelease: copy trunk to community-any

Added:
  python-cfn-lint/repos/community-any/PKGBUILD
(from rev 724314, python-cfn-lint/trunk/PKGBUILD)
Deleted:
  python-cfn-lint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-16 04:14:59 UTC (rev 724314)
+++ PKGBUILD2020-10-16 04:15:17 UTC (rev 724315)
@@ -1,43 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-
-pkgname=python-cfn-lint
-pkgver=0.37.1
-pkgrel=1
-pkgdesc='CloudFormation Linter'
-arch=(any)
-url='https://github.com/aws-cloudformation/cfn-python-lint'
-license=('custom:MIT No Attribution')
-depends=(python python-yaml python-six python-aws-sam-translator
- python-jsonpatch python-jsonschema python-networkx
- python-junit-xml)
-makedepends=(python-setuptools)
-checkdepends=(python-pytest python-mock python-pydot)
-optdepends=(
-  'python-pydot: for building graphs from templates'
-)
-source=("https://github.com/aws-cloudformation/cfn-python-lint/archive/v$pkgver/cfn-python-lint-$pkgver.tar.gz;)
-sha256sums=('8ac13c31f575917c086fe8ae2a254bf1a3c7bbfe5f2b27340a55a9f49a0b18cf')
-
-build() {
-  cd cfn-python-lint-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd cfn-python-lint-$pkgver
-
-  # Tests in test/integration need the cfn-lint binary
-  python setup.py install_scripts --install-dir="$srcdir"/tmp_install
-
-  export PYTHONPATH="$PWD/src"
-  export PATH="$PATH:$srcdir/tmp_install"
-  pytest test
-}
-
-package() {
-  cd cfn-python-lint-$pkgver
-  # use PYTHONHASHSEED=0 to work around https://bugs.python.org/issue34033
-  PYTHONHASHSEED=0 python setup.py install --root="$pkgdir" --optimize=1 
--skip-build
-
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
-}

Copied: python-cfn-lint/repos/community-any/PKGBUILD (from rev 724314, 
python-cfn-lint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-16 04:15:17 UTC (rev 724315)
@@ -0,0 +1,44 @@
+# Maintainer: Chih-Hsuan Yen 
+
+pkgname=python-cfn-lint
+pkgver=0.38.0
+pkgrel=1
+pkgdesc='CloudFormation Linter'
+arch=(any)
+url='https://github.com/aws-cloudformation/cfn-python-lint'
+license=('custom:MIT No Attribution')
+depends=(python python-yaml python-six python-aws-sam-translator
+ python-jsonpatch python-jsonschema python-networkx
+ python-junit-xml)
+makedepends=(python-setuptools)
+checkdepends=(python-pytest python-mock python-pydot)
+optdepends=(
+  'python-pydot: for building graphs from templates'
+)
+source=("https://github.com/aws-cloudformation/cfn-python-lint/archive/v$pkgver/cfn-python-lint-$pkgver.tar.gz;)
+sha256sums=('9e4830ac9f0197aee3c02e4284d48752316dae24ef5abf01006079e769773b1c')
+
+build() {
+  cd cfn-python-lint-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd cfn-python-lint-$pkgver
+
+  # Tests in test/integration need the cfn-lint binary
+  python setup.py install_scripts --install-dir="$srcdir"/tmp_install
+
+  export PYTHONPATH="$PWD/src"
+  export PATH="$PATH:$srcdir/tmp_install"
+  # test_update_docs requires cfn-python-lint as a git repo
+  pytest test -k 'not test_update_docs'
+}
+
+package() {
+  cd cfn-python-lint-$pkgver
+  # use PYTHONHASHSEED=0 to work around https://bugs.python.org/issue34033
+  PYTHONHASHSEED=0 python setup.py install --root="$pkgdir" --optimize=1 
--skip-build
+
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
+}


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

2020-10-15 Thread Chih-Hsuan Yen via arch-commits
Date: Friday, October 16, 2020 @ 04:14:59
  Author: yan12125
Revision: 724314

upgpkg: python-cfn-lint 0.38.0-1

Modified:
  python-cfn-lint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-16 02:40:17 UTC (rev 724313)
+++ PKGBUILD2020-10-16 04:14:59 UTC (rev 724314)
@@ -1,7 +1,7 @@
 # Maintainer: Chih-Hsuan Yen 
 
 pkgname=python-cfn-lint
-pkgver=0.37.1
+pkgver=0.38.0
 pkgrel=1
 pkgdesc='CloudFormation Linter'
 arch=(any)
@@ -16,7 +16,7 @@
   'python-pydot: for building graphs from templates'
 )
 
source=("https://github.com/aws-cloudformation/cfn-python-lint/archive/v$pkgver/cfn-python-lint-$pkgver.tar.gz;)
-sha256sums=('8ac13c31f575917c086fe8ae2a254bf1a3c7bbfe5f2b27340a55a9f49a0b18cf')
+sha256sums=('9e4830ac9f0197aee3c02e4284d48752316dae24ef5abf01006079e769773b1c')
 
 build() {
   cd cfn-python-lint-$pkgver
@@ -31,7 +31,8 @@
 
   export PYTHONPATH="$PWD/src"
   export PATH="$PATH:$srcdir/tmp_install"
-  pytest test
+  # test_update_docs requires cfn-python-lint as a git repo
+  pytest test -k 'not test_update_docs'
 }
 
 package() {


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

2020-10-15 Thread Eli Schwartz via arch-commits
Date: Friday, October 16, 2020 @ 02:40:17
  Author: eschwartz
Revision: 724313

archrelease: copy trunk to community-x86_64

Added:
  kmon/repos/community-x86_64/PKGBUILD
(from rev 724312, kmon/trunk/PKGBUILD)
Deleted:
  kmon/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-16 02:40:02 UTC (rev 724312)
+++ PKGBUILD2020-10-16 02:40:17 UTC (rev 724313)
@@ -1,35 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: orhun 
-
-pkgname=kmon
-pkgver=1.5.0
-pkgrel=1
-pkgdesc="Linux kernel manager and activity monitor"
-arch=('x86_64')
-url="https://github.com/orhun/kmon;
-license=('GPL3')
-depends=('kmod' 'libxcb')
-makedepends=('cargo' 'python' 'git')
-source=("git+${url}.git#tag=v${pkgver}?signed")
-sha512sums=('SKIP')
-validpgpkeys=('39E678DF63BE20EA5A175156B928720AEC532117') # orhun 

-
-build() {
-cd "${srcdir}"/${pkgname}
-
-cargo build --release --locked --all-features
-}
-
-check() {
-cd "${srcdir}"/${pkgname}
-
-cargo test --release --locked
-}
-
-package() {
-cd "${srcdir}"/${pkgname}
-
-install -Dm755 target/release/${pkgname} -t "${pkgdir}"/usr/bin
-install -Dm644 README.md -t "${pkgdir}"/usr/share/doc/${pkgname}
-install -Dm644 man/${pkgname}.8 -t "${pkgdir}"/usr/share/man/man8
-}

Copied: kmon/repos/community-x86_64/PKGBUILD (from rev 724312, 
kmon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-16 02:40:17 UTC (rev 724313)
@@ -0,0 +1,35 @@
+# Maintainer: Eli Schwartz 
+# Contributor: orhun 
+
+pkgname=kmon
+pkgver=1.5.1
+pkgrel=1
+pkgdesc="Linux kernel manager and activity monitor"
+arch=('x86_64')
+url="https://github.com/orhun/kmon;
+license=('GPL3')
+depends=('kmod' 'libxcb')
+makedepends=('cargo' 'python' 'git')
+source=("git+${url}.git#tag=v${pkgver}?signed")
+sha512sums=('SKIP')
+validpgpkeys=('39E678DF63BE20EA5A175156B928720AEC532117') # orhun 

+
+build() {
+cd "${srcdir}"/${pkgname}
+
+cargo build --release --locked --all-features
+}
+
+check() {
+cd "${srcdir}"/${pkgname}
+
+cargo test --release --locked
+}
+
+package() {
+cd "${srcdir}"/${pkgname}
+
+install -Dm755 target/release/${pkgname} -t "${pkgdir}"/usr/bin
+install -Dm644 README.md -t "${pkgdir}"/usr/share/doc/${pkgname}
+install -Dm644 man/${pkgname}.8 -t "${pkgdir}"/usr/share/man/man8
+}


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

2020-10-15 Thread Eli Schwartz via arch-commits
Date: Friday, October 16, 2020 @ 02:40:02
  Author: eschwartz
Revision: 724312

upgpkg: kmon 1.5.1-1: upstream release

Modified:
  kmon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-16 01:28:49 UTC (rev 724311)
+++ PKGBUILD2020-10-16 02:40:02 UTC (rev 724312)
@@ -2,7 +2,7 @@
 # Contributor: orhun 
 
 pkgname=kmon
-pkgver=1.5.0
+pkgver=1.5.1
 pkgrel=1
 pkgdesc="Linux kernel manager and activity monitor"
 arch=('x86_64')


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

2020-10-15 Thread Nicola Squartini via arch-commits
Date: Friday, October 16, 2020 @ 01:28:49
  Author: tensor5
Revision: 724311

archrelease: copy trunk to community-x86_64

Added:
  go-ethereum/repos/community-x86_64/PKGBUILD
(from rev 724310, go-ethereum/trunk/PKGBUILD)
Deleted:
  go-ethereum/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-16 01:28:21 UTC (rev 724310)
+++ PKGBUILD2020-10-16 01:28:49 UTC (rev 724311)
@@ -1,31 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=go-ethereum
-pkgver=1.9.22
-_commit=c71a7e26a8b1e332bbf3262d88ba3ff32071456c
-pkgrel=1
-pkgdesc='Official Go implementation of the Ethereum protocol'
-arch=('x86_64')
-url='https://geth.ethereum.org/'
-license=('GPL3')
-depends=('glibc')
-makedepends=('git' 'go')
-provides=('geth')
-conflicts=('geth')
-replaces=('geth')
-source=("git+https://github.com/ethereum/go-ethereum.git#commit=${_commit};)
-sha256sums=('SKIP')
-
-build() {
-cd ${pkgname}
-
-export CGO_LDFLAGS="${LDFLAGS}"
-export GOFLAGS="-buildmode=pie"
-make all
-}
-
-package() {
-cd ${pkgname}
-
-install -Dm755 -t "${pkgdir}"/usr/bin build/bin/*
-}

Copied: go-ethereum/repos/community-x86_64/PKGBUILD (from rev 724310, 
go-ethereum/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-16 01:28:49 UTC (rev 724311)
@@ -0,0 +1,31 @@
+# Maintainer: Nicola Squartini 
+
+pkgname=go-ethereum
+pkgver=1.9.23
+_commit=8c2f271528f9cccf541c6ea1c022e98407f26872
+pkgrel=1
+pkgdesc='Official Go implementation of the Ethereum protocol'
+arch=('x86_64')
+url='https://geth.ethereum.org/'
+license=('GPL3')
+depends=('glibc')
+makedepends=('git' 'go')
+provides=('geth')
+conflicts=('geth')
+replaces=('geth')
+source=("git+https://github.com/ethereum/go-ethereum.git#commit=${_commit};)
+sha256sums=('SKIP')
+
+build() {
+cd ${pkgname}
+
+export CGO_LDFLAGS="${LDFLAGS}"
+export GOFLAGS="-buildmode=pie"
+make all
+}
+
+package() {
+cd ${pkgname}
+
+install -Dm755 -t "${pkgdir}"/usr/bin build/bin/*
+}


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

2020-10-15 Thread Anatol Pomozov via arch-commits
Date: Friday, October 16, 2020 @ 01:27:42
  Author: anatolik
Revision: 724308

upgpkg: pulseview 0.4.2-2: FS#68277: add patches for QT 5.15

Modified:
  pulseview/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 22:06:06 UTC (rev 724307)
+++ PKGBUILD2020-10-16 01:27:42 UTC (rev 724308)
@@ -4,7 +4,7 @@
 
 pkgname=pulseview
 pkgver=0.4.2
-pkgrel=1
+pkgrel=2
 pkgdesc='A Qt based logic analyzer GUI for sigrok'
 arch=('x86_64')
 url='https://sigrok.org/wiki/Main_Page'
@@ -11,9 +11,17 @@
 license=('GPL3')
 depends=('libsigrok' 'libsigrokdecode' 'qt5-base' 'qt5-svg' 'boost-libs')
 makedepends=('cmake' 'boost' 'qt5-tools')
-source=("https://sigrok.org/download/source/pulseview/pulseview-$pkgver.tar.gz;)
-sha512sums=('79f653c9faad021c03b59b4a519b594190d5558dfb9be60cabcc2a35e991e66b733b337fec58a9248699e7aef0df3be1472c81f93274b25cec1fc6b73f8f033b')
+source=("https://sigrok.org/download/source/pulseview/pulseview-$pkgver.tar.gz;
+
"qt5.15.patch::https://github.com/sigrokproject/pulseview/commit/ae726b70a7ada9a4be5808e00f0c951318479684.patch;)
+sha512sums=('79f653c9faad021c03b59b4a519b594190d5558dfb9be60cabcc2a35e991e66b733b337fec58a9248699e7aef0df3be1472c81f93274b25cec1fc6b73f8f033b'
+
'e115c29151474d5dc905042ee699542abdcc9db523d45595cf0386f0efb9523b292536972074536cb330ede90b41e1edd591888bceb5155b49657937f87e9087')
 
+prepare() {
+  cd $pkgname-$pkgver
+
+  patch -p1 < ../qt5.15.patch
+}
+
 build() {
   cd $pkgname-$pkgver
 


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

2020-10-15 Thread Nicola Squartini via arch-commits
Date: Friday, October 16, 2020 @ 01:28:21
  Author: tensor5
Revision: 724310

upgpkg: go-ethereum 1.9.23-1

Modified:
  go-ethereum/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-16 01:27:59 UTC (rev 724309)
+++ PKGBUILD2020-10-16 01:28:21 UTC (rev 724310)
@@ -1,8 +1,8 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=go-ethereum
-pkgver=1.9.22
-_commit=c71a7e26a8b1e332bbf3262d88ba3ff32071456c
+pkgver=1.9.23
+_commit=8c2f271528f9cccf541c6ea1c022e98407f26872
 pkgrel=1
 pkgdesc='Official Go implementation of the Ethereum protocol'
 arch=('x86_64')


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

2020-10-15 Thread Anatol Pomozov via arch-commits
Date: Friday, October 16, 2020 @ 01:27:59
  Author: anatolik
Revision: 724309

archrelease: copy trunk to community-testing-x86_64

Added:
  pulseview/repos/community-testing-x86_64/
  pulseview/repos/community-testing-x86_64/PKGBUILD
(from rev 724308, pulseview/trunk/PKGBUILD)

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

Copied: pulseview/repos/community-testing-x86_64/PKGBUILD (from rev 724308, 
pulseview/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-10-16 01:27:59 UTC (rev 724309)
@@ -0,0 +1,40 @@
+# Maintainer: Anatol Pomozov
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Thomas Krug 
+
+pkgname=pulseview
+pkgver=0.4.2
+pkgrel=2
+pkgdesc='A Qt based logic analyzer GUI for sigrok'
+arch=('x86_64')
+url='https://sigrok.org/wiki/Main_Page'
+license=('GPL3')
+depends=('libsigrok' 'libsigrokdecode' 'qt5-base' 'qt5-svg' 'boost-libs')
+makedepends=('cmake' 'boost' 'qt5-tools')
+source=("https://sigrok.org/download/source/pulseview/pulseview-$pkgver.tar.gz;
+
"qt5.15.patch::https://github.com/sigrokproject/pulseview/commit/ae726b70a7ada9a4be5808e00f0c951318479684.patch;)
+sha512sums=('79f653c9faad021c03b59b4a519b594190d5558dfb9be60cabcc2a35e991e66b733b337fec58a9248699e7aef0df3be1472c81f93274b25cec1fc6b73f8f033b'
+
'e115c29151474d5dc905042ee699542abdcc9db523d45595cf0386f0efb9523b292536972074536cb330ede90b41e1edd591888bceb5155b49657937f87e9087')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  patch -p1 < ../qt5.15.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  cmake . \
+   -DCMAKE_INSTALL_PREFIX:PATH=/usr \
+   -DCMAKE_CXX_FLAGS=-fext-numeric-literals \
+   -DDISABLE_WERROR=ON -DENABLE_TESTS=OFF
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in fcitx5-chinese-addons/repos/community-x86_64 (2 files)

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 22:06:06
  Author: felixonmars
Revision: 724307

archrelease: copy trunk to community-x86_64

Added:
  fcitx5-chinese-addons/repos/community-x86_64/PKGBUILD
(from rev 724306, fcitx5-chinese-addons/trunk/PKGBUILD)
Deleted:
  fcitx5-chinese-addons/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-15 22:05:55 UTC (rev 724306)
+++ PKGBUILD2020-10-15 22:06:06 UTC (rev 724307)
@@ -1,46 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=fcitx5-chinese-addons
-pkgver=0.0.0.20201013
-_commit=c1124e88a91ab8d9854c28fd7bd31c1a354f1ba1
-_pytablever=20121124
-pkgrel=1
-pkgdesc="Addons related to Chinese, including IME previous bundled inside 
fcitx4"
-arch=('x86_64')
-url="https://github.com/fcitx/fcitx5-chinese-addons;
-license=('GPL')
-conflicts=('fcitx')
-depends=('curl' 'fcitx5-qt' 'libime' 'opencc' 'qt5-webkit')
-makedepends=('boost' 'extra-cmake-modules' 'fcitx5-lua' 'ninja')
-optdepends=('fcitx5-lua: Lua and imeapi support from pinyin')
-source=("https://github.com/fcitx/fcitx5-chinese-addons/archive/$_commit/fcitx5-chinese-addons-$_commit.tar.gz;
-https://download.fcitx-im.org/data/py_table-$_pytablever.tar.gz
-https://download.fcitx-im.org/data/py_stroke-$_pytablever.tar.gz)
-noextract=(py_table-$_pytablever.tar.gz)
-sha512sums=('e4cfbe82c598c4338e7e69eaa5ae9409e78900991f5f0a991d309c6b92010cc4ffd3f9ae07a01aaad79164bd4a090128ee4ee5ddc0aee68b4605fab1817ebc22'
-
'0fa72ce6820a316e9729bc0d7a08af5ca3468134de9ff1bf0c559a398846a7bcf7313a3609d943e6bab637d930cf45ad9acfe25a8d3df078a774b071a7296486'
-
'd80ff9a3549e07c7a6935e686785f9a076c58f1a782a832ae28ee65e2a213d67f089f450ce09bed87ec2a141c32b9c1fcb83c221ddcab436858fa9009f161fb3')
-
-prepare() {
-  cd $pkgname-$_commit/modules/pinyinhelper
-  ln -s "$srcdir"/py_table-$_pytablever.tar.gz
-  ln -s "$srcdir"/py_stroke-$_pytablever.tar.gz
-}
-
-build() {
-  cd $pkgname-$_commit
-
-  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
-  ninja
-}
-
-check() {
-  cd $pkgname-$_commit
-  ninja test
-}
-
-package() {
-  cd $pkgname-$_commit
-  DESTDIR="$pkgdir" ninja install
-}

Copied: fcitx5-chinese-addons/repos/community-x86_64/PKGBUILD (from rev 724306, 
fcitx5-chinese-addons/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-15 22:06:06 UTC (rev 724307)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=fcitx5-chinese-addons
+pkgver=0.0.0.20201015
+_commit=6f856b73802f009f0cfa935115f5911e835b6231
+_pytablever=20121124
+pkgrel=1
+pkgdesc="Addons related to Chinese, including IME previous bundled inside 
fcitx4"
+arch=('x86_64')
+url="https://github.com/fcitx/fcitx5-chinese-addons;
+license=('GPL')
+conflicts=('fcitx')
+depends=('curl' 'fcitx5-qt' 'libime' 'opencc' 'qt5-webkit')
+makedepends=('boost' 'extra-cmake-modules' 'fcitx5-lua' 'ninja')
+optdepends=('fcitx5-lua: Lua and imeapi support from pinyin')
+source=("https://github.com/fcitx/fcitx5-chinese-addons/archive/$_commit/fcitx5-chinese-addons-$_commit.tar.gz;
+https://download.fcitx-im.org/data/py_table-$_pytablever.tar.gz
+https://download.fcitx-im.org/data/py_stroke-$_pytablever.tar.gz)
+noextract=(py_table-$_pytablever.tar.gz)
+sha512sums=('2fbcfa9dab58a89547bfaab9fc29013ced006bf2c0de3563eeab5d6b90b5add00663e5234146ab1e9b84cbfff4b0b103ae93da033e84454b0bc93b08f04923c6'
+
'0fa72ce6820a316e9729bc0d7a08af5ca3468134de9ff1bf0c559a398846a7bcf7313a3609d943e6bab637d930cf45ad9acfe25a8d3df078a774b071a7296486'
+
'd80ff9a3549e07c7a6935e686785f9a076c58f1a782a832ae28ee65e2a213d67f089f450ce09bed87ec2a141c32b9c1fcb83c221ddcab436858fa9009f161fb3')
+
+prepare() {
+  cd $pkgname-$_commit/modules/pinyinhelper
+  ln -s "$srcdir"/py_table-$_pytablever.tar.gz
+  ln -s "$srcdir"/py_stroke-$_pytablever.tar.gz
+}
+
+build() {
+  cd $pkgname-$_commit
+
+  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
+  ninja
+}
+
+check() {
+  cd $pkgname-$_commit
+  ninja test
+}
+
+package() {
+  cd $pkgname-$_commit
+  DESTDIR="$pkgdir" ninja install
+}


[arch-commits] Commit in fcitx5-chinese-addons/trunk (PKGBUILD)

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 22:05:55
  Author: felixonmars
Revision: 724306

upgpkg: fcitx5-chinese-addons 0.0.0.20201015-1

Modified:
  fcitx5-chinese-addons/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 22:00:14 UTC (rev 724305)
+++ PKGBUILD2020-10-15 22:05:55 UTC (rev 724306)
@@ -2,8 +2,8 @@
 # Contributor: csslayer 
 
 pkgname=fcitx5-chinese-addons
-pkgver=0.0.0.20201013
-_commit=c1124e88a91ab8d9854c28fd7bd31c1a354f1ba1
+pkgver=0.0.0.20201015
+_commit=6f856b73802f009f0cfa935115f5911e835b6231
 _pytablever=20121124
 pkgrel=1
 pkgdesc="Addons related to Chinese, including IME previous bundled inside 
fcitx4"
@@ -18,7 +18,7 @@
 https://download.fcitx-im.org/data/py_table-$_pytablever.tar.gz
 https://download.fcitx-im.org/data/py_stroke-$_pytablever.tar.gz)
 noextract=(py_table-$_pytablever.tar.gz)
-sha512sums=('e4cfbe82c598c4338e7e69eaa5ae9409e78900991f5f0a991d309c6b92010cc4ffd3f9ae07a01aaad79164bd4a090128ee4ee5ddc0aee68b4605fab1817ebc22'
+sha512sums=('2fbcfa9dab58a89547bfaab9fc29013ced006bf2c0de3563eeab5d6b90b5add00663e5234146ab1e9b84cbfff4b0b103ae93da033e84454b0bc93b08f04923c6'
 
'0fa72ce6820a316e9729bc0d7a08af5ca3468134de9ff1bf0c559a398846a7bcf7313a3609d943e6bab637d930cf45ad9acfe25a8d3df078a774b071a7296486'
 
'd80ff9a3549e07c7a6935e686785f9a076c58f1a782a832ae28ee65e2a213d67f089f450ce09bed87ec2a141c32b9c1fcb83c221ddcab436858fa9009f161fb3')
 


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 22:00:14
  Author: felixonmars
Revision: 724305

archrelease: copy trunk to community-x86_64

Added:
  fcitx5-configtool/repos/community-x86_64/PKGBUILD
(from rev 724304, fcitx5-configtool/trunk/PKGBUILD)
Deleted:
  fcitx5-configtool/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-15 22:00:02 UTC (rev 724304)
+++ PKGBUILD2020-10-15 22:00:14 UTC (rev 724305)
@@ -1,34 +0,0 @@
-# $Id: PKGBUILD 226039 2017-04-27 13:52:30Z felixonmars $
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=fcitx5-configtool
-pkgver=0.0.0.20201001
-_commit=7031cf44426560b8ea2792984440969ef5423bf1
-pkgrel=1
-pkgdesc="Configuration Tool for Fcitx5"
-arch=('x86_64')
-url="https://github.com/fcitx/fcitx5-configtool;
-license=('GPL')
-groups=('fcitx5-im')
-provides=('fcitx5-config-qt' 'kcm-fcitx5')
-conflicts=('kcm-fcitx5')
-replaces=('kcm-fcitx5')
-depends=('fcitx5-qt' 'kwidgetsaddons' 'kitemviews' 'qt5-x11extras')
-optdepends=('kdeclarative: for KCM support'
-'kirigami2: for KCM support')
-makedepends=('extra-cmake-modules' 'kdeclarative' 'kirigami2' 'ninja' 'python')
-source=("https://github.com/fcitx/fcitx5-configtool/archive/$_commit/fcitx5-configtool-$_commit.tar.gz;)
-sha512sums=('c2ec456ff5f2aa7365dd58779192b2173361183560e644d73af8b069b589a844facd74ab14542bea4c3e9db53287bc75bb8eab647c55405a7c72690a2cb80aa0')
-
-build(){
-  cd $pkgname-$_commit
-
-  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib 
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON .
-  ninja
-}
-
-package() {
-  cd $pkgname-$_commit
-  DESTDIR="$pkgdir" ninja install
-}

Copied: fcitx5-configtool/repos/community-x86_64/PKGBUILD (from rev 724304, 
fcitx5-configtool/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-15 22:00:14 UTC (rev 724305)
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 226039 2017-04-27 13:52:30Z felixonmars $
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=fcitx5-configtool
+pkgver=0.0.0.20201015
+_commit=8b2aec745af6da7a82b76a32a4b9196bb03db067
+pkgrel=1
+pkgdesc="Configuration Tool for Fcitx5"
+arch=('x86_64')
+url="https://github.com/fcitx/fcitx5-configtool;
+license=('GPL')
+groups=('fcitx5-im')
+provides=('fcitx5-config-qt' 'kcm-fcitx5')
+conflicts=('kcm-fcitx5')
+replaces=('kcm-fcitx5')
+depends=('fcitx5-qt' 'kwidgetsaddons' 'kitemviews' 'qt5-x11extras')
+optdepends=('kdeclarative: for KCM support'
+'kirigami2: for KCM support')
+makedepends=('extra-cmake-modules' 'kdeclarative' 'kirigami2' 'ninja' 'python')
+source=("https://github.com/fcitx/fcitx5-configtool/archive/$_commit/fcitx5-configtool-$_commit.tar.gz;)
+sha512sums=('a8071f9968096b711d2336e9e811cac18155d65950720a806c47890494937fb76e3b481840143144ffd5f5aa54ffabda8fe2706d2b649942dc95ed346e0e59f1')
+
+build(){
+  cd $pkgname-$_commit
+
+  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib 
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON .
+  ninja
+}
+
+package() {
+  cd $pkgname-$_commit
+  DESTDIR="$pkgdir" ninja install
+}


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 22:00:02
  Author: felixonmars
Revision: 724304

upgpkg: fcitx5-configtool 0.0.0.20201015-1

Modified:
  fcitx5-configtool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 21:38:26 UTC (rev 724303)
+++ PKGBUILD2020-10-15 22:00:02 UTC (rev 724304)
@@ -3,8 +3,8 @@
 # Contributor: csslayer 
 
 pkgname=fcitx5-configtool
-pkgver=0.0.0.20201001
-_commit=7031cf44426560b8ea2792984440969ef5423bf1
+pkgver=0.0.0.20201015
+_commit=8b2aec745af6da7a82b76a32a4b9196bb03db067
 pkgrel=1
 pkgdesc="Configuration Tool for Fcitx5"
 arch=('x86_64')
@@ -19,7 +19,7 @@
 'kirigami2: for KCM support')
 makedepends=('extra-cmake-modules' 'kdeclarative' 'kirigami2' 'ninja' 'python')
 
source=("https://github.com/fcitx/fcitx5-configtool/archive/$_commit/fcitx5-configtool-$_commit.tar.gz;)
-sha512sums=('c2ec456ff5f2aa7365dd58779192b2173361183560e644d73af8b069b589a844facd74ab14542bea4c3e9db53287bc75bb8eab647c55405a7c72690a2cb80aa0')
+sha512sums=('a8071f9968096b711d2336e9e811cac18155d65950720a806c47890494937fb76e3b481840143144ffd5f5aa54ffabda8fe2706d2b649942dc95ed346e0e59f1')
 
 build(){
   cd $pkgname-$_commit


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

2020-10-15 Thread David Runge via arch-commits
Date: Thursday, October 15, 2020 @ 21:38:16
  Author: dvzrv
Revision: 724302

upgpkg: python-django-allauth 0.43.0-1: Upgrade to 0.43.0

Modified:
  python-django-allauth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 21:34:59 UTC (rev 724301)
+++ PKGBUILD2020-10-15 21:38:16 UTC (rev 724302)
@@ -2,7 +2,7 @@
 
 _name=django-allauth
 pkgname=python-django-allauth
-pkgver=0.42.0
+pkgver=0.43.0
 pkgrel=1
 pkgdesc="Authentication, registration, account management and 3rd party 
account authentication"
 arch=('any')
@@ -9,7 +9,7 @@
 url="https://github.com/pennersr/django-allauth;
 license=('MIT')
 depends=('python-django' 'python-openid' 'python-requests'
-'python-requests-oauthlib')
+'python-requests-oauthlib' 'python-pyjwt')
 makedepends=('python-setuptools')
 checkdepends=('python-coverage' 'python-mock' 'python-pytest')
 # tests are not available in pypi sdist:
@@ -16,7 +16,8 @@
 # https://github.com/pennersr/django-allauth/issues/2439
 # 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
 
source=("${_name}-${pkgver}.tar.gz::https://github.com/pennersr/${_name}/archive/${pkgver}.tar.gz;)
-sha512sums=('db12bdd770bf2aac089a9437c9ae4f89d73c9469dd164ea44b0b50a71010274b15d447836b8aec99bdad7eb12767728c68679feb82738410eabc50ce5a71a7ef')
+sha512sums=('803e276f0c21053d328ceada18f82f3e89df0442316e7fae0b02ce2e0ba1a62d98ac923e8031fcf33b11da125200795199ab65fc1f576b218048ae57d211dfad')
+b2sums=('da95a7b131eb12650ec1d5b5813ce70d40508f79761dd1d67ad4811b0341a1359405ffa3b79bdc1f354a154a828182781d2e27f989a03a845970fe942fb96a50')
 
 prepare() {
   mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
@@ -36,9 +37,8 @@
 package() {
   cd "$pkgname-$pkgver"
   python setup.py install --skip-build \
---optimize=1 \
---prefix=/usr \
---root="${pkgdir}"
+  --optimize=1 \
+  --root="${pkgdir}"
   install -vDm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
   install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
 }


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

2020-10-15 Thread David Runge via arch-commits
Date: Thursday, October 15, 2020 @ 21:38:26
  Author: dvzrv
Revision: 724303

archrelease: copy trunk to community-any

Added:
  python-django-allauth/repos/community-any/PKGBUILD
(from rev 724302, python-django-allauth/trunk/PKGBUILD)
Deleted:
  python-django-allauth/repos/community-any/PKGBUILD

--+
 PKGBUILD |   88 ++---
 1 file changed, 44 insertions(+), 44 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-15 21:38:16 UTC (rev 724302)
+++ PKGBUILD2020-10-15 21:38:26 UTC (rev 724303)
@@ -1,44 +0,0 @@
-# Maintainer: David Runge 
-
-_name=django-allauth
-pkgname=python-django-allauth
-pkgver=0.42.0
-pkgrel=1
-pkgdesc="Authentication, registration, account management and 3rd party 
account authentication"
-arch=('any')
-url="https://github.com/pennersr/django-allauth;
-license=('MIT')
-depends=('python-django' 'python-openid' 'python-requests'
-'python-requests-oauthlib')
-makedepends=('python-setuptools')
-checkdepends=('python-coverage' 'python-mock' 'python-pytest')
-# tests are not available in pypi sdist:
-# https://github.com/pennersr/django-allauth/issues/2439
-# 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-source=("${_name}-${pkgver}.tar.gz::https://github.com/pennersr/${_name}/archive/${pkgver}.tar.gz;)
-sha512sums=('db12bdd770bf2aac089a9437c9ae4f89d73c9469dd164ea44b0b50a71010274b15d447836b8aec99bdad7eb12767728c68679feb82738410eabc50ce5a71a7ef')
-
-prepare() {
-  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  python setup.py build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  export PYTHONPATH="build:${PYTHONPATH}"
-  coverage run manage.py test allauth
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  python setup.py install --skip-build \
---optimize=1 \
---prefix=/usr \
---root="${pkgdir}"
-  install -vDm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}

Copied: python-django-allauth/repos/community-any/PKGBUILD (from rev 724302, 
python-django-allauth/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-15 21:38:26 UTC (rev 724303)
@@ -0,0 +1,44 @@
+# Maintainer: David Runge 
+
+_name=django-allauth
+pkgname=python-django-allauth
+pkgver=0.43.0
+pkgrel=1
+pkgdesc="Authentication, registration, account management and 3rd party 
account authentication"
+arch=('any')
+url="https://github.com/pennersr/django-allauth;
+license=('MIT')
+depends=('python-django' 'python-openid' 'python-requests'
+'python-requests-oauthlib' 'python-pyjwt')
+makedepends=('python-setuptools')
+checkdepends=('python-coverage' 'python-mock' 'python-pytest')
+# tests are not available in pypi sdist:
+# https://github.com/pennersr/django-allauth/issues/2439
+# 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+source=("${_name}-${pkgver}.tar.gz::https://github.com/pennersr/${_name}/archive/${pkgver}.tar.gz;)
+sha512sums=('803e276f0c21053d328ceada18f82f3e89df0442316e7fae0b02ce2e0ba1a62d98ac923e8031fcf33b11da125200795199ab65fc1f576b218048ae57d211dfad')
+b2sums=('da95a7b131eb12650ec1d5b5813ce70d40508f79761dd1d67ad4811b0341a1359405ffa3b79bdc1f354a154a828182781d2e27f989a03a845970fe942fb96a50')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  export PYTHONPATH="build:${PYTHONPATH}"
+  coverage run manage.py test allauth
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --skip-build \
+  --optimize=1 \
+  --root="${pkgdir}"
+  install -vDm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}


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

2020-10-15 Thread Anatol Pomozov via arch-commits
Date: Thursday, October 15, 2020 @ 21:34:32
  Author: anatolik
Revision: 724299

FS#68269 update checksum for the released sources

Modified:
  thrift/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 21:20:11 UTC (rev 724298)
+++ PKGBUILD2020-10-15 21:34:32 UTC (rev 724299)
@@ -19,7 +19,7 @@
   'qt5-base: TQTcpServer (Qt5) support'
 )
 
source=(thrift-$pkgver.zip::https://github.com/apache/thrift/archive/$pkgver.zip)
-sha1sums=('0b13e6ae2c1f0f7c1f18dfc2afce8368603b5d2f')
+sha1sums=('97ef3ec925923b7618d5760e45efd1599ba2d468')
 
 build() {
   cd thrift-$pkgver


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

2020-10-15 Thread David Runge via arch-commits
Date: Thursday, October 15, 2020 @ 21:34:59
  Author: dvzrv
Revision: 724301

archrelease: copy trunk to community-x86_64

Added:
  sfizz/repos/community-x86_64/PKGBUILD
(from rev 724300, sfizz/trunk/PKGBUILD)
Deleted:
  sfizz/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-15 21:34:50 UTC (rev 724300)
+++ PKGBUILD2020-10-15 21:34:59 UTC (rev 724301)
@@ -1,55 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: RedTide 
-
-pkgname=sfizz
-pkgver=0.4.0
-pkgrel=1
-pkgdesc="SFZ library and LV2 plugin"
-arch=('x86_64')
-url="https://github.com/sfztools/sfizz;
-license=('BSD')
-groups=('lv2-plugins' 'pro-audio' 'vst3-plugins')
-# TODO: devendor abseil-cpp
-depends=('cairo' 'gcc-libs' 'glibc' 'libx11' 'xcb-util' 'xcb-util-cursor'
-'libxkbcommon' 'libxkbcommon-x11')
-makedepends=('cmake' 'jack' 'freetype2' 'libsndfile' 'lv2' 'xcb-util-keysyms')
-checkdepends=('lv2lint')
-optdepends=('jack: for sfizz_jack')
-provides=('libsfizz.so' 'soundfont-synthesizer')
-source=("https://github.com/sfztools/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}-src.tar.gz;)
-sha512sums=('3ebf67e5c407ff56d93ad1f8a59047d5ad2e64bf4d260bbd59fa316e49d6a428d5325979b86fc156ad1174d67af6a7ccbb2fb33b0f8a99a4cd6956de8aa6114b')
-b2sums=('e3c0d0d1cc86b75e92c8f8d0f529a54bed24e582738e11d222b5217c32e47be0004b7b943cd72f72afc9034d74286e8ef9fe941f32a808381807807aac2811cf')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  # devendor lv2
-  rm -rfv lv2/lv2
-  sed -e 's|"lv2/core/lv2.h"||g' \
-  -i lv2/external/ardour/ardour/lv2_extensions.h
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  cmake -DCMAKE_INSTALL_PREFIX="/usr" \
--DCMAKE_BUILD_TYPE='Release' \
--ENABLE_LTO=ON \
--DSFIZZ_TESTS=ON \
--DSFIZZ_VST=ON \
--B build \
--S .
-  make VERBOSE=1 -C build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  ./build/tests/${pkgname}_tests
-  lv2lint -Mpack -I "build/${pkgname}.lv2" "http://sfztools.github.io/sfizz;
-}
-
-package() {
-  depends+=('libsndfile.so')
-  cd "$pkgname-$pkgver"
-  make VERBOSE=1 DESTDIR="$pkgdir/" install -C build
-  install -vDm 644 LICENSE.md -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: sfizz/repos/community-x86_64/PKGBUILD (from rev 724300, 
sfizz/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-15 21:34:59 UTC (rev 724301)
@@ -0,0 +1,55 @@
+# Maintainer: David Runge 
+# Contributor: RedTide 
+
+pkgname=sfizz
+pkgver=0.5.0
+pkgrel=1
+pkgdesc="SFZ library and LV2 plugin"
+arch=('x86_64')
+url="https://github.com/sfztools/sfizz;
+license=('BSD')
+groups=('lv2-plugins' 'pro-audio' 'vst3-plugins')
+# TODO: devendor abseil-cpp
+depends=('cairo' 'gcc-libs' 'glibc' 'libx11' 'xcb-util' 'xcb-util-cursor'
+'libxkbcommon' 'libxkbcommon-x11')
+makedepends=('cmake' 'jack' 'freetype2' 'libsndfile' 'lv2' 'xcb-util-keysyms')
+checkdepends=('lv2lint')
+optdepends=('jack: for sfizz_jack')
+provides=('libsfizz.so' 'soundfont-synthesizer')
+source=("https://github.com/sfztools/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}-src.tar.gz;)
+sha512sums=('eec9dd89d4e2f0a916fe91ade662c4ebf5588252b7a865e5256a2bf1a1c025cb4d80c0d775055282e70d0016a6de2ea0bf470bb5e7bfebd42104b85d722a91b2')
+b2sums=('b750a81f3c4f4355853f4b8488c51744ec3844e9e6463172447c532e177f7db049540130ceed03e83c558097ff59355a7ed9736f084db293fa4c22a0ed1c84cd')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  # devendor lv2
+  rm -rfv lv2/lv2
+  sed -e 's|"lv2/core/lv2.h"||g' \
+  -i lv2/external/ardour/ardour/lv2_extensions.h
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  cmake -DCMAKE_INSTALL_PREFIX="/usr" \
+-DCMAKE_BUILD_TYPE='Release' \
+-ENABLE_LTO=ON \
+-DSFIZZ_TESTS=ON \
+-DSFIZZ_VST=ON \
+-B build \
+-S .
+  make VERBOSE=1 -C build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  ./build/tests/${pkgname}_tests
+  lv2lint -Mpack -I "build/${pkgname}.lv2" "http://sfztools.github.io/sfizz;
+}
+
+package() {
+  depends+=('libsndfile.so')
+  cd "$pkgname-$pkgver"
+  make VERBOSE=1 DESTDIR="$pkgdir/" install -C build
+  install -vDm 644 LICENSE.md -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2020-10-15 Thread David Runge via arch-commits
Date: Thursday, October 15, 2020 @ 21:34:50
  Author: dvzrv
Revision: 724300

upgpkg: sfizz 0.5.0-1: Upgrade to 0.5.0.

Modified:
  sfizz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 21:34:32 UTC (rev 724299)
+++ PKGBUILD2020-10-15 21:34:50 UTC (rev 724300)
@@ -2,7 +2,7 @@
 # Contributor: RedTide 
 
 pkgname=sfizz
-pkgver=0.4.0
+pkgver=0.5.0
 pkgrel=1
 pkgdesc="SFZ library and LV2 plugin"
 arch=('x86_64')
@@ -17,8 +17,8 @@
 optdepends=('jack: for sfizz_jack')
 provides=('libsfizz.so' 'soundfont-synthesizer')
 
source=("https://github.com/sfztools/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}-src.tar.gz;)
-sha512sums=('3ebf67e5c407ff56d93ad1f8a59047d5ad2e64bf4d260bbd59fa316e49d6a428d5325979b86fc156ad1174d67af6a7ccbb2fb33b0f8a99a4cd6956de8aa6114b')
-b2sums=('e3c0d0d1cc86b75e92c8f8d0f529a54bed24e582738e11d222b5217c32e47be0004b7b943cd72f72afc9034d74286e8ef9fe941f32a808381807807aac2811cf')
+sha512sums=('eec9dd89d4e2f0a916fe91ade662c4ebf5588252b7a865e5256a2bf1a1c025cb4d80c0d775055282e70d0016a6de2ea0bf470bb5e7bfebd42104b85d722a91b2')
+b2sums=('b750a81f3c4f4355853f4b8488c51744ec3844e9e6463172447c532e177f7db049540130ceed03e83c558097ff59355a7ed9736f084db293fa4c22a0ed1c84cd')
 
 prepare() {
   cd "$pkgname-$pkgver"


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

2020-10-15 Thread Morten Linderud via arch-commits
Date: Thursday, October 15, 2020 @ 21:20:04
  Author: foxboron
Revision: 724297

upgpkg: python-language-server 0.35.1-1

Modified:
  python-language-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 21:12:04 UTC (rev 724296)
+++ PKGBUILD2020-10-15 21:20:04 UTC (rev 724297)
@@ -3,8 +3,8 @@
 # Contributor: fenuks
 
 pkgname=python-language-server
-pkgver=0.34.1
-pkgrel=2
+pkgver=0.35.1
+pkgrel=1
 pkgdesc="An implementation of the Language Server Protocol for Python"
 arch=("any")
 url="https://github.com/palantir/python-language-server;
@@ -22,16 +22,10 @@
 checkdepends=("python-pytest" "python-pytest-runner" "python-pytest-cov"  
"python-pyflakes" "flake8"
   "python-mock" "python-jedi" "python-future" "yapf" 
"python-mccabe" "python-pycodestyle"
   "autopep8" "python-rope" "python-pydocstyle" "python-pylint" 
"python-jsonrpc-server"
-  "python-numpy" "python-pandas" "python-matplotlib")
+  "python-numpy" "python-pandas" "python-matplotlib" 
"python-flaky")
 
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('b96ff466b5aa24e212493de863899298f229a9e250e7353972563c7f2495d23d')
+sha256sums=('6e0c9a3b2ae98e0eb22e98ed6b3c4e190a6bf9e27af53efd2396da60cd92b221')
 
-
-prepare(){
-cd "${pkgname}-${pkgver}"
-sed -i "s/ujson.*/ujson'/" setup.py
-}
-
 build() {
 cd "${pkgname}-${pkgver}"
 export PYTHONHASHSEED=0


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

2020-10-15 Thread Morten Linderud via arch-commits
Date: Thursday, October 15, 2020 @ 21:20:11
  Author: foxboron
Revision: 724298

archrelease: copy trunk to community-any

Added:
  python-language-server/repos/community-any/PKGBUILD
(from rev 724297, python-language-server/trunk/PKGBUILD)
Deleted:
  python-language-server/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-15 21:20:04 UTC (rev 724297)
+++ PKGBUILD2020-10-15 21:20:11 UTC (rev 724298)
@@ -1,52 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: fenuks
-
-pkgname=python-language-server
-pkgver=0.34.1
-pkgrel=2
-pkgdesc="An implementation of the Language Server Protocol for Python"
-arch=("any")
-url="https://github.com/palantir/python-language-server;
-license=("MIT")
-depends=("python" "python-setuptools" "python-jsonrpc-server" "python-future" 
"python-jedi" "python-pluggy" "python-ujson")
-optdepends=("python-mccabe: for complexity checking"
-"python-rope: for completions and renaming"
-"python-pyflakes: for linter to detect various errors"
-"flake8: for code linting"
-"python-pycodestyle: for style checking"
-"python-pylint: for code linting"
-"autopep8: for code formatting"
-"yapf: for code formatting (preferred over autopep8)"
-"python-pydocstyle: for docstring style checking")
-checkdepends=("python-pytest" "python-pytest-runner" "python-pytest-cov"  
"python-pyflakes" "flake8"
-  "python-mock" "python-jedi" "python-future" "yapf" 
"python-mccabe" "python-pycodestyle"
-  "autopep8" "python-rope" "python-pydocstyle" "python-pylint" 
"python-jsonrpc-server"
-  "python-numpy" "python-pandas" "python-matplotlib")
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('b96ff466b5aa24e212493de863899298f229a9e250e7353972563c7f2495d23d')
-
-
-prepare(){
-cd "${pkgname}-${pkgver}"
-sed -i "s/ujson.*/ujson'/" setup.py
-}
-
-build() {
-cd "${pkgname}-${pkgver}"
-export PYTHONHASHSEED=0
-python setup.py build
-}
-
-check() {
-cd "${pkgname}-${pkgver}"
-py.test -k 'not test_pyqt_completion'
-}
-
-package() {
-cd "${pkgname}-${pkgver}"
-python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
-install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim:set ts=4 sw=4 et:

Copied: python-language-server/repos/community-any/PKGBUILD (from rev 724297, 
python-language-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-15 21:20:11 UTC (rev 724298)
@@ -0,0 +1,46 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: fenuks
+
+pkgname=python-language-server
+pkgver=0.35.1
+pkgrel=1
+pkgdesc="An implementation of the Language Server Protocol for Python"
+arch=("any")
+url="https://github.com/palantir/python-language-server;
+license=("MIT")
+depends=("python" "python-setuptools" "python-jsonrpc-server" "python-future" 
"python-jedi" "python-pluggy" "python-ujson")
+optdepends=("python-mccabe: for complexity checking"
+"python-rope: for completions and renaming"
+"python-pyflakes: for linter to detect various errors"
+"flake8: for code linting"
+"python-pycodestyle: for style checking"
+"python-pylint: for code linting"
+"autopep8: for code formatting"
+"yapf: for code formatting (preferred over autopep8)"
+"python-pydocstyle: for docstring style checking")
+checkdepends=("python-pytest" "python-pytest-runner" "python-pytest-cov"  
"python-pyflakes" "flake8"
+  "python-mock" "python-jedi" "python-future" "yapf" 
"python-mccabe" "python-pycodestyle"
+  "autopep8" "python-rope" "python-pydocstyle" "python-pylint" 
"python-jsonrpc-server"
+  "python-numpy" "python-pandas" "python-matplotlib" 
"python-flaky")
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('6e0c9a3b2ae98e0eb22e98ed6b3c4e190a6bf9e27af53efd2396da60cd92b221')
+
+build() {
+cd "${pkgname}-${pkgver}"
+export PYTHONHASHSEED=0
+python setup.py build
+}
+
+check() {
+cd "${pkgname}-${pkgver}"
+py.test -k 'not test_pyqt_completion'
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
+install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=4 sw=4 et:


[arch-commits] Commit in gitlab/repos/community-x86_64 (26 files)

2020-10-15 Thread Anatol Pomozov via arch-commits
Date: Thursday, October 15, 2020 @ 21:12:04
  Author: anatolik
Revision: 724296

archrelease: copy trunk to community-x86_64

Added:
  gitlab/repos/community-x86_64/PKGBUILD
(from rev 724295, gitlab/trunk/PKGBUILD)
  gitlab/repos/community-x86_64/build_fix.patch
(from rev 724295, gitlab/trunk/build_fix.patch)
  gitlab/repos/community-x86_64/configs.patch
(from rev 724295, gitlab/trunk/configs.patch)
  gitlab/repos/community-x86_64/environment
(from rev 724295, gitlab/trunk/environment)
  gitlab/repos/community-x86_64/gitlab-backup.service
(from rev 724295, gitlab/trunk/gitlab-backup.service)
  gitlab/repos/community-x86_64/gitlab-backup.timer
(from rev 724295, gitlab/trunk/gitlab-backup.timer)
  gitlab/repos/community-x86_64/gitlab-mailroom.service
(from rev 724295, gitlab/trunk/gitlab-mailroom.service)
  gitlab/repos/community-x86_64/gitlab-puma.service
(from rev 724295, gitlab/trunk/gitlab-puma.service)
  gitlab/repos/community-x86_64/gitlab-sidekiq.service
(from rev 724295, gitlab/trunk/gitlab-sidekiq.service)
  gitlab/repos/community-x86_64/gitlab.install
(from rev 724295, gitlab/trunk/gitlab.install)
  gitlab/repos/community-x86_64/gitlab.logrotate
(from rev 724295, gitlab/trunk/gitlab.logrotate)
  gitlab/repos/community-x86_64/gitlab.target
(from rev 724295, gitlab/trunk/gitlab.target)
  gitlab/repos/community-x86_64/gitlab.tmpfiles.d
(from rev 724295, gitlab/trunk/gitlab.tmpfiles.d)
Deleted:
  gitlab/repos/community-x86_64/PKGBUILD
  gitlab/repos/community-x86_64/build_fix.patch
  gitlab/repos/community-x86_64/configs.patch
  gitlab/repos/community-x86_64/environment
  gitlab/repos/community-x86_64/gitlab-backup.service
  gitlab/repos/community-x86_64/gitlab-backup.timer
  gitlab/repos/community-x86_64/gitlab-mailroom.service
  gitlab/repos/community-x86_64/gitlab-puma.service
  gitlab/repos/community-x86_64/gitlab-sidekiq.service
  gitlab/repos/community-x86_64/gitlab.install
  gitlab/repos/community-x86_64/gitlab.logrotate
  gitlab/repos/community-x86_64/gitlab.target
  gitlab/repos/community-x86_64/gitlab.tmpfiles.d

-+
 PKGBUILD|  370 +--
 build_fix.patch |   46 +--
 configs.patch   |  618 +++---
 environment |6 
 gitlab-backup.service   |   38 +-
 gitlab-backup.timer |   20 -
 gitlab-mailroom.service |   42 +--
 gitlab-puma.service |   68 ++---
 gitlab-sidekiq.service  |   60 ++--
 gitlab.install  |   68 ++---
 gitlab.logrotate|   12 
 gitlab.target   |   14 -
 gitlab.tmpfiles.d   |2 
 13 files changed, 682 insertions(+), 682 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-15 21:10:57 UTC (rev 724295)
+++ PKGBUILD2020-10-15 21:12:04 UTC (rev 724296)
@@ -1,185 +0,0 @@
-# Maintainer: Anatol Pomozov 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Pavol (Lopo) Hluchy 
-# Contributor: Jonas Heinrich 
-# Contributor: Massimiliano Torromeo 
-# Contributor: Tobias Hunger 
-# Contributor: Stefan Tatschner 
-# Contributor: Caleb Maclennan 
-
-pkgname=gitlab
-pkgver=13.4.3
-pkgrel=1
-pkgdesc="Project management and code hosting application"
-arch=('x86_64')
-url="https://gitlab.com/gitlab-org/gitlab-foss;
-license=('MIT')
-options=(!buildflags)
-depends=('ruby' 'ruby-bundler' 'git' 'gitlab-workhorse' 'gitlab-gitaly' 
'openssh' 'redis' 'libxslt' 'icu' 're2' 'http-parser' 'nodejs' 'openssl')
-makedepends=('cmake' 'postgresql' 'yarn' 'go' 'nodejs')
-optdepends=('postgresql: database backend'
-'python-docutils: reStructuredText markup language support'
-'smtp-server: mail server in order to receive mail notifications')
-backup=("etc/webapps/gitlab/database.yml"
-"etc/webapps/gitlab/gitlab.yml"
-"etc/webapps/gitlab/resque.yml"
-"etc/webapps/gitlab/puma.rb"
-"etc/webapps/gitlab/smtp_settings.rb"
-"etc/logrotate.d/gitlab")
-source=(git+https://gitlab.com/gitlab-org/gitlab-foss.git#tag=v$pkgver
-configs.patch
-build_fix.patch
-environment
-gitlab-puma.service
-gitlab-sidekiq.service
-gitlab-backup.service
-gitlab-mailroom.service
-gitlab-backup.timer
-gitlab.target
-gitlab.tmpfiles.d
-gitlab.logrotate)
-install='gitlab.install'
-sha512sums=('SKIP'
-
'8b8c06b44bfe4897b8499547a6d18cdf3d12b313c0e9887b1ca209f1c4f93718ff92ee48f5d6e7546a89dc61c4b3ddcbe73e619e609782a9412fc5dab43b6000'
-
'249b9aa00479bcbd6b41f14402e70fe5655e06f593ebc0ecae0fc4075bf3421f93cb8b5302bc8ca0e542c1a85f25c3fb957bdc79b3c09a3f393119777b687e63'
-
'5b1ca2958f03a5baf1c5576a1568072e8ed749e2d15745ecbcc4860d2dbd543f2f3ed077e8d87afac2670c9436b19fe498217b49916d56a4e31fb9811aeb9067'
-

[arch-commits] Commit in arc-gtk-theme/repos/community-any (PKGBUILD PKGBUILD)

2020-10-15 Thread NicoHood via arch-commits
Date: Thursday, October 15, 2020 @ 21:10:21
  Author: nicohood
Revision: 724294

archrelease: copy trunk to community-any

Added:
  arc-gtk-theme/repos/community-any/PKGBUILD
(from rev 724293, arc-gtk-theme/trunk/PKGBUILD)
Deleted:
  arc-gtk-theme/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-15 21:10:09 UTC (rev 724293)
+++ PKGBUILD2020-10-15 21:10:21 UTC (rev 724294)
@@ -1,54 +0,0 @@
-# Maintainer: NicoHood 
-# PGP ID: 97312D5EB9D7AE7D0BD4307351DAE9B7C1AE9161
-# Contributor: zach 
-# Contributor: Gordian Edenhofer 
-
-pkgbase=arc-gtk-theme
-_pkgname=arc-theme
-pkgname=('arc-gtk-theme' 'arc-solid-gtk-theme')
-pkgdesc="A flat theme with transparent elements for GTK 3, GTK 2 and 
Gnome-Shell"
-pkgver=20201013
-pkgrel=1
-arch=('any')
-# Upstream url: https://github.com/horst3180/arc-theme
-# Now using soft fork: https://github.com/jnsh/arc-theme/issues/18
-url="https://github.com/jnsh/arc-theme;
-license=('GPL3')
-optdepends=('arc-icon-theme: recommended icon theme'
-'gtk-engine-murrine: for gtk2 themes'
-'gnome-themes-standard: for gtk2 themes')
-makedepends=('sassc' 'optipng' 'inkscape')
-
-source=("${pkgname}-${pkgver}.tar.xz::${url}/releases/download/${pkgver}/${_pkgname}-${pkgver}.tar.xz"
-
"${pkgname}-${pkgver}.tar.xz.sig::${url}/releases/download/${pkgver}/${_pkgname}-${pkgver}.tar.xz.asc")
-sha512sums=('c1c70c80935af2b1f3c7c9bf79ee72d5fba907fd03caadecf96d6fd796bf70d325bbb16dbe93f95d9a63eff748c7d90bcb0bf837e446e5c2770cfdccb131f45c'
-'SKIP')
-validpgpkeys=('31743CDF250EF641E57503E5FAEDBC4FB5AA3B17')
-
-prepare() {
-cp -a ${_pkgname}-${pkgver}{,-solid}
-}
-
-build() {
-cd ${_pkgname}-${pkgver}
-./autogen.sh --prefix=/usr --with-gnome-shell=3.36 --with-cinnamon=4.6 
--with-gtk3=3.24
-
-cd ../${_pkgname}-${pkgver}-solid
-./autogen.sh --prefix=/usr --disable-transparency --with-gnome-shell=3.36 
--with-cinnamon=4.6 --with-gtk3=3.24
-}
-
-package_arc-gtk-theme() {
-replaces=('gtk-theme-arc')
-
-cd ${_pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
-}
-
-package_arc-solid-gtk-theme() {
-pkgdesc="A flat theme for GTK 3, GTK 2 and Gnome-Shell (without 
transparency)"
-replaces=('gtk-theme-arc-solid')
-
-cd ${_pkgname}-${pkgver}-solid
-make DESTDIR="${pkgdir}" install
-}

Copied: arc-gtk-theme/repos/community-any/PKGBUILD (from rev 724293, 
arc-gtk-theme/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-15 21:10:21 UTC (rev 724294)
@@ -0,0 +1,54 @@
+# Maintainer: NicoHood 
+# PGP ID: 97312D5EB9D7AE7D0BD4307351DAE9B7C1AE9161
+# Contributor: zach 
+# Contributor: Gordian Edenhofer 
+
+pkgbase=arc-gtk-theme
+_pkgname=arc-theme
+pkgname=('arc-gtk-theme' 'arc-solid-gtk-theme')
+pkgdesc="A flat theme with transparent elements for GTK 3, GTK 2 and 
Gnome-Shell"
+pkgver=20201013
+pkgrel=2
+arch=('any')
+# Upstream url: https://github.com/horst3180/arc-theme
+# Now using soft fork: https://github.com/jnsh/arc-theme/issues/18
+url="https://github.com/jnsh/arc-theme;
+license=('GPL3')
+optdepends=('arc-icon-theme: recommended icon theme'
+'gtk-engine-murrine: for gtk2 themes'
+'gnome-themes-standard: for gtk2 themes')
+makedepends=('sassc' 'optipng' 'inkscape')
+
+source=("${pkgname}-${pkgver}.tar.xz::${url}/releases/download/${pkgver}/${_pkgname}-${pkgver}.tar.xz"
+
"${pkgname}-${pkgver}.tar.xz.sig::${url}/releases/download/${pkgver}/${_pkgname}-${pkgver}.tar.xz.asc")
+sha512sums=('c1c70c80935af2b1f3c7c9bf79ee72d5fba907fd03caadecf96d6fd796bf70d325bbb16dbe93f95d9a63eff748c7d90bcb0bf837e446e5c2770cfdccb131f45c'
+'SKIP')
+validpgpkeys=('31743CDF250EF641E57503E5FAEDBC4FB5AA3B17')
+
+prepare() {
+cp -a ${_pkgname}-${pkgver}{,-solid}
+}
+
+build() {
+cd ${_pkgname}-${pkgver}
+./autogen.sh --prefix=/usr --with-gnome-shell=3.38 --with-cinnamon=4.6 
--with-gtk3=3.24
+
+cd ../${_pkgname}-${pkgver}-solid
+./autogen.sh --prefix=/usr --disable-transparency --with-gnome-shell=3.38 
--with-cinnamon=4.6 --with-gtk3=3.24
+}
+
+package_arc-gtk-theme() {
+replaces=('gtk-theme-arc')
+
+cd ${_pkgname}-${pkgver}
+make DESTDIR="${pkgdir}" install
+}
+
+package_arc-solid-gtk-theme() {
+pkgdesc="A flat theme for GTK 3, GTK 2 and Gnome-Shell (without 
transparency)"
+replaces=('gtk-theme-arc-solid')
+
+cd ${_pkgname}-${pkgver}-solid
+make DESTDIR="${pkgdir}" install
+}


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

2020-10-15 Thread Anatol Pomozov via arch-commits
Date: Thursday, October 15, 2020 @ 21:10:57
  Author: anatolik
Revision: 724295

upgpkg: gitlab 13.4.4-1

Modified:
  gitlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 21:10:21 UTC (rev 724294)
+++ PKGBUILD2020-10-15 21:10:57 UTC (rev 724295)
@@ -8,7 +8,7 @@
 # Contributor: Caleb Maclennan 
 
 pkgname=gitlab
-pkgver=13.4.3
+pkgver=13.4.4
 pkgrel=1
 pkgdesc="Project management and code hosting application"
 arch=('x86_64')


[arch-commits] Commit in arc-gtk-theme/trunk (PKGBUILD)

2020-10-15 Thread NicoHood via arch-commits
Date: Thursday, October 15, 2020 @ 21:10:09
  Author: nicohood
Revision: 724293

upgpkg: arc-gtk-theme 20201013-2

Modified:
  arc-gtk-theme/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 21:08:27 UTC (rev 724292)
+++ PKGBUILD2020-10-15 21:10:09 UTC (rev 724293)
@@ -9,7 +9,7 @@
 pkgname=('arc-gtk-theme' 'arc-solid-gtk-theme')
 pkgdesc="A flat theme with transparent elements for GTK 3, GTK 2 and 
Gnome-Shell"
 pkgver=20201013
-pkgrel=1
+pkgrel=2
 arch=('any')
 # Upstream url: https://github.com/horst3180/arc-theme
 # Now using soft fork: https://github.com/jnsh/arc-theme/issues/18
@@ -32,10 +32,10 @@
 
 build() {
 cd ${_pkgname}-${pkgver}
-./autogen.sh --prefix=/usr --with-gnome-shell=3.36 --with-cinnamon=4.6 
--with-gtk3=3.24
+./autogen.sh --prefix=/usr --with-gnome-shell=3.38 --with-cinnamon=4.6 
--with-gtk3=3.24
 
 cd ../${_pkgname}-${pkgver}-solid
-./autogen.sh --prefix=/usr --disable-transparency --with-gnome-shell=3.36 
--with-cinnamon=4.6 --with-gtk3=3.24
+./autogen.sh --prefix=/usr --disable-transparency --with-gnome-shell=3.38 
--with-cinnamon=4.6 --with-gtk3=3.24
 }
 
 package_arc-gtk-theme() {


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

2020-10-15 Thread Levente Polyak via arch-commits
Date: Thursday, October 15, 2020 @ 21:04:12
  Author: anthraxx
Revision: 398415

upgpkg: libffi 3.3-4: adding libprovides

Modified:
  libffi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 20:26:03 UTC (rev 398414)
+++ PKGBUILD2020-10-15 21:04:12 UTC (rev 398415)
@@ -1,10 +1,11 @@
-# Maintainer:  Bartłomiej Piotrowski 
+# Maintainer: Levente Polyak 
+# Contributor: Bartłomiej Piotrowski 
 # Contributor: Stéphane Gaudreault 
 # Contributor: Jan de Groot 
 
 pkgname=libffi
 pkgver=3.3
-pkgrel=3
+pkgrel=4
 pkgdesc='Portable foreign function interface library'
 arch=('x86_64')
 url='https://sourceware.org/libffi/'
@@ -11,12 +12,21 @@
 license=('MIT')
 depends=('glibc')
 checkdepends=('dejagnu')
+provides=('libffi.so')
 source=(https://sourceware.org/pub/libffi/libffi-$pkgver.tar.gz)
 sha256sums=('72fba7922703ddfa7a028d513ac15a85c8d54c8d67f55fa5a4802885dc652056')
+b2sums=('cddc40729a30a9bd34d675809f51f8d1b4ccaffa54bc6dd6f7e965f4e260edd34754719f9f6247c8957aeb7cf154d56ce1fe16a54c3f1ad39afbebdf41d23caa')
 
+prepare() {
+  cd $pkgname-$pkgver
+  autoreconf -fiv
+}
+
 build() {
   cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static \
+  ./configure \
+--prefix=/usr \
+--disable-static \
 --enable-pax_emutramp
   make
 }
@@ -28,5 +38,8 @@
 package() {
   cd $pkgname-$pkgver
   make DESTDIR="$pkgdir" install
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm 644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
+  install -Dm 644 README.md -t "$pkgdir"/usr/share/doc/$pkgname
 }
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in libffi/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2020-10-15 Thread Levente Polyak via arch-commits
Date: Thursday, October 15, 2020 @ 21:04:21
  Author: anthraxx
Revision: 398416

archrelease: copy trunk to testing-x86_64

Added:
  libffi/repos/testing-x86_64/
  libffi/repos/testing-x86_64/PKGBUILD
(from rev 398415, libffi/trunk/PKGBUILD)

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

Copied: libffi/repos/testing-x86_64/PKGBUILD (from rev 398415, 
libffi/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-10-15 21:04:21 UTC (rev 398416)
@@ -0,0 +1,45 @@
+# Maintainer: Levente Polyak 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Jan de Groot 
+
+pkgname=libffi
+pkgver=3.3
+pkgrel=4
+pkgdesc='Portable foreign function interface library'
+arch=('x86_64')
+url='https://sourceware.org/libffi/'
+license=('MIT')
+depends=('glibc')
+checkdepends=('dejagnu')
+provides=('libffi.so')
+source=(https://sourceware.org/pub/libffi/libffi-$pkgver.tar.gz)
+sha256sums=('72fba7922703ddfa7a028d513ac15a85c8d54c8d67f55fa5a4802885dc652056')
+b2sums=('cddc40729a30a9bd34d675809f51f8d1b4ccaffa54bc6dd6f7e965f4e260edd34754719f9f6247c8957aeb7cf154d56ce1fe16a54c3f1ad39afbebdf41d23caa')
+
+prepare() {
+  cd $pkgname-$pkgver
+  autoreconf -fiv
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--disable-static \
+--enable-pax_emutramp
+  make
+}
+
+check() {
+  make -C $pkgname-$pkgver check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm 644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
+  install -Dm 644 README.md -t "$pkgdir"/usr/share/doc/$pkgname
+}
+
+# vim: ts=2 sw=2 et:


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

2020-10-15 Thread Anatol Pomozov via arch-commits
Date: Thursday, October 15, 2020 @ 20:25:28
  Author: anatolik
Revision: 724287

archrelease: copy trunk to community-x86_64

Added:
  bpftrace/repos/community-x86_64/PKGBUILD
(from rev 724286, bpftrace/trunk/PKGBUILD)
Deleted:
  bpftrace/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-15 20:25:08 UTC (rev 724286)
+++ PKGBUILD2020-10-15 20:25:28 UTC (rev 724287)
@@ -1,30 +0,0 @@
-# Maintainer: Anatol Pomozov
-# Contributor: Tommaso Sardelli 
-
-pkgname=bpftrace
-pkgver=0.11.0
-pkgrel=3
-pkgdesc='High-level tracing language for Linux eBPF'
-arch=('x86_64')
-url='https://github.com/iovisor/bpftrace'
-license=('Apache')
-depends=('libelf' 'zlib' 'llvm-libs' 'clang' 'bcc' 'libbpf')
-makedepends=('cmake' 'llvm' 'git')
-optdepends=('libbpf: BTF support - required at compile time')
-source=("https://github.com/iovisor/bpftrace/archive/v${pkgver}.tar.gz;)
-sha512sums=('32bf0c23a7b0e1a57d0e0b8fc845a9e184e201ac3f6018a3d3cee8c97096093b333578cb898ede02fb3ab8d55ba9bcd2bb67ac70b81a49461c0f6e5c03c2a6f5')
-
-build() {
-  cd bpftrace-$pkgver
-
-  mkdir -p build
-  cd build
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr ..
-  make
-}
-
-package() {
-  cd bpftrace-$pkgver/build
-
-  make DESTDIR="$pkgdir" install
-}

Copied: bpftrace/repos/community-x86_64/PKGBUILD (from rev 724286, 
bpftrace/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-15 20:25:28 UTC (rev 724287)
@@ -0,0 +1,30 @@
+# Maintainer: Anatol Pomozov
+# Contributor: Tommaso Sardelli 
+
+pkgname=bpftrace
+pkgver=0.11.0
+pkgrel=4
+pkgdesc='High-level tracing language for Linux eBPF'
+arch=('x86_64')
+url='https://github.com/iovisor/bpftrace'
+license=('Apache')
+depends=('libelf' 'zlib' 'llvm-libs' 'clang' 'bcc' 'libbpf')
+makedepends=('cmake' 'llvm' 'git')
+options=(!strip)
+source=("https://github.com/iovisor/bpftrace/archive/v$pkgver/bpftrace-$pkgver.tar.gz;)
+sha512sums=('32bf0c23a7b0e1a57d0e0b8fc845a9e184e201ac3f6018a3d3cee8c97096093b333578cb898ede02fb3ab8d55ba9bcd2bb67ac70b81a49461c0f6e5c03c2a6f5')
+
+build() {
+  cd bpftrace-$pkgver
+
+  mkdir -p build
+  cd build
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr ..
+  make
+}
+
+package() {
+  cd bpftrace-$pkgver/build
+
+  make DESTDIR="$pkgdir" install
+}


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

2020-10-15 Thread Anatol Pomozov via arch-commits
Date: Thursday, October 15, 2020 @ 20:25:08
  Author: anatolik
Revision: 724286

upgpkg: bpftrace 0.11.0-4: FS#68259 do not strip symbols needed for probes

Modified:
  bpftrace/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 20:09:18 UTC (rev 724285)
+++ PKGBUILD2020-10-15 20:25:08 UTC (rev 724286)
@@ -3,7 +3,7 @@
 
 pkgname=bpftrace
 pkgver=0.11.0
-pkgrel=3
+pkgrel=4
 pkgdesc='High-level tracing language for Linux eBPF'
 arch=('x86_64')
 url='https://github.com/iovisor/bpftrace'
@@ -10,6 +10,7 @@
 license=('Apache')
 depends=('libelf' 'zlib' 'llvm-libs' 'clang' 'bcc' 'libbpf')
 makedepends=('cmake' 'llvm' 'git')
+options=(!strip)
 
source=("https://github.com/iovisor/bpftrace/archive/v$pkgver/bpftrace-$pkgver.tar.gz;)
 
sha512sums=('32bf0c23a7b0e1a57d0e0b8fc845a9e184e201ac3f6018a3d3cee8c97096093b333578cb898ede02fb3ab8d55ba9bcd2bb67ac70b81a49461c0f6e5c03c2a6f5')
 


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

2020-10-15 Thread Jan Steffens via arch-commits
Date: Thursday, October 15, 2020 @ 20:21:06
  Author: heftig
Revision: 398412

3.38.0-4: libgit2 rebuild

Modified:
  gnome-builder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 19:34:56 UTC (rev 398411)
+++ PKGBUILD2020-10-15 20:21:06 UTC (rev 398412)
@@ -2,7 +2,7 @@
 
 pkgname=gnome-builder
 pkgver=3.38.0
-pkgrel=3
+pkgrel=4
 pkgdesc="An IDE for writing GNOME-based software"
 url="https://wiki.gnome.org/Apps/Builder;
 arch=(x86_64)


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

2020-10-15 Thread Jan Steffens via arch-commits
Date: Thursday, October 15, 2020 @ 20:21:28
  Author: heftig
Revision: 398413

archrelease: copy trunk to staging-x86_64

Added:
  gnome-builder/repos/staging-x86_64/PKGBUILD
(from rev 398412, gnome-builder/trunk/PKGBUILD)
Deleted:
  gnome-builder/repos/staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-15 20:21:06 UTC (rev 398412)
+++ PKGBUILD2020-10-15 20:21:28 UTC (rev 398413)
@@ -1,51 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-builder
-pkgver=3.38.0
-pkgrel=3
-pkgdesc="An IDE for writing GNOME-based software"
-url="https://wiki.gnome.org/Apps/Builder;
-arch=(x86_64)
-license=(GPL3)
-depends=(gtksourceview4 devhelp libgit2-glib gjs python-gobject clang sysprof
- desktop-file-utils ctags libpeas vte3 vala python-jedi 
autoconf-archive
- flatpak-builder gspell libdazzle template-glib jsonrpc-glib
- python-sphinx webkit2gtk glade python-lxml meson libportal)
-makedepends=(llvm gobject-introspection gtk-doc yelp-tools appstream-glib git 
mm-common
- python-sphinx_rtd_theme)
-checkdepends=(xorg-server-xvfb)
-optdepends=('gnome-code-assistance: Legacy assistance services')
-groups=(gnome-extra)
-_commit=a891fe37c22248c6594a5772d127ed7ba62c5a1c  # tags/3.38.0^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-builder.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^GNOME_BUILDER_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build \
--D docs=true \
--D help=true
-  meson compile -C build
-}
-
-check() {
-  dbus-run-session xvfb-run \
--s '-screen 0 1920x1080x24 -nolisten local' \
-meson test -C build --print-errorlogs
-}
-
-package() {
-  depends+=(libgladeui-2.so)
-
-  DESTDIR="$pkgdir" meson install -C build
-}
-
-# vim:set sw=2 et:

Copied: gnome-builder/repos/staging-x86_64/PKGBUILD (from rev 398412, 
gnome-builder/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-15 20:21:28 UTC (rev 398413)
@@ -0,0 +1,51 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-builder
+pkgver=3.38.0
+pkgrel=4
+pkgdesc="An IDE for writing GNOME-based software"
+url="https://wiki.gnome.org/Apps/Builder;
+arch=(x86_64)
+license=(GPL3)
+depends=(gtksourceview4 devhelp libgit2-glib gjs python-gobject clang sysprof
+ desktop-file-utils ctags libpeas vte3 vala python-jedi 
autoconf-archive
+ flatpak-builder gspell libdazzle template-glib jsonrpc-glib
+ python-sphinx webkit2gtk glade python-lxml meson libportal)
+makedepends=(llvm gobject-introspection gtk-doc yelp-tools appstream-glib git 
mm-common
+ python-sphinx_rtd_theme)
+checkdepends=(xorg-server-xvfb)
+optdepends=('gnome-code-assistance: Legacy assistance services')
+groups=(gnome-extra)
+_commit=a891fe37c22248c6594a5772d127ed7ba62c5a1c  # tags/3.38.0^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-builder.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^GNOME_BUILDER_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build \
+-D docs=true \
+-D help=true
+  meson compile -C build
+}
+
+check() {
+  dbus-run-session xvfb-run \
+-s '-screen 0 1920x1080x24 -nolisten local' \
+meson test -C build --print-errorlogs
+}
+
+package() {
+  depends+=(libgladeui-2.so)
+
+  DESTDIR="$pkgdir" meson install -C build
+}
+
+# vim:set sw=2 et:


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:44:03
  Author: felixonmars
Revision: 724215

archrelease: copy trunk to community-staging-x86_64

Added:
  cryptol/repos/community-staging-x86_64/
  cryptol/repos/community-staging-x86_64/PKGBUILD
(from rev 724214, cryptol/trunk/PKGBUILD)

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

Copied: cryptol/repos/community-staging-x86_64/PKGBUILD (from rev 724214, 
cryptol/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-15 17:44:03 UTC (rev 724215)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+pkgname=cryptol
+pkgver=2.9.1
+pkgrel=24
+pkgdesc="The Language of Cryptography"
+url="https://www.cryptol.net;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'z3' 'haskell-async' 'haskell-base-compat' 
'haskell-bv-sized'
+ 'haskell-cryptohash-sha1' 'haskell-exceptions' 'haskell-gitrev' 
'haskell-graphscc'
+ 'haskell-heredoc' 'haskell-libbf' 'haskell-monad-control' 
'haskell-monadlib'
+ 'haskell-parameterized-utils' 'haskell-panic' 'haskell-random' 
'haskell-sbv8.7'
+ 'haskell-simple-smt' 'haskell-strict' 'haskell-tf-random' 
'haskell-transformers-base'
+ 'haskell-what4' 'haskell-ansi-terminal' 'haskell-blaze-html')
+makedepends=('ghc' 'alex' 'happy')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/GaloisInc/cryptol/archive/$pkgver.tar.gz;)
+sha512sums=('42c9058035f30e27dc30a17e901df87072939a84867cd2723ecf9e67e51cc53a308c38369dd7353bd2df043baa5f9f94c34a94ac52bcd6b45bfad8a67810f975')
+
+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 \
+-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
+}


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:43:53
  Author: felixonmars
Revision: 724214

upgpkg: cryptol 2.9.1-24: rebuild with hlint 3.2.1

Modified:
  cryptol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 17:41:32 UTC (rev 724213)
+++ PKGBUILD2020-10-15 17:43:53 UTC (rev 724214)
@@ -2,7 +2,7 @@
 
 pkgname=cryptol
 pkgver=2.9.1
-pkgrel=23
+pkgrel=24
 pkgdesc="The Language of Cryptography"
 url="https://www.cryptol.net;
 license=("BSD")


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

2020-10-15 Thread Andreas Radke via arch-commits
Date: Thursday, October 15, 2020 @ 15:24:15
  Author: andyrtr
Revision: 398398

upgpkg: xterm 361-1: upstream update 361

Modified:
  xterm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 14:59:42 UTC (rev 398397)
+++ PKGBUILD2020-10-15 15:24:15 UTC (rev 398398)
@@ -2,8 +2,8 @@
 # Contributor: Alexander Baldeck 
 
 pkgname=xterm
-pkgver=360
-pkgrel=2
+pkgver=361
+pkgrel=1
 pkgdesc="X Terminal Emulator"
 arch=('x86_64')
 url="https://invisible-island.net/xterm/;
@@ -10,7 +10,7 @@
 license=('custom')
 depends=('libxft' 'libxaw' 'ncurses' 'luit' 'xbitmaps' 'libutempter' 
'libxkbfile')
 
source=(https://invisible-mirror.net/archives/${pkgname}/${pkgname}-${pkgver}.tgz{,.asc})
-sha256sums=('a5f6e1f1de01fa9fddf132d9fb7a9a749a411f1e77ee6a7fdf1c8c0c1db80dba'
+sha256sums=('85610f20d5e47205cc1b6876f7a4da28d6ae051bd8eac0b932e92c37a73a623f'
 'SKIP')
 validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB') # "Thomas Dickey 
"
 


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

2020-10-15 Thread Andreas Radke via arch-commits
Date: Thursday, October 15, 2020 @ 15:24:28
  Author: andyrtr
Revision: 398399

archrelease: copy trunk to extra-x86_64

Added:
  xterm/repos/extra-x86_64/PKGBUILD
(from rev 398398, xterm/trunk/PKGBUILD)
Deleted:
  xterm/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-15 15:24:15 UTC (rev 398398)
+++ PKGBUILD2020-10-15 15:24:28 UTC (rev 398399)
@@ -1,65 +0,0 @@
-# Maintainer: Jan de Groot 
-# Contributor: Alexander Baldeck 
-
-pkgname=xterm
-pkgver=360
-pkgrel=2
-pkgdesc="X Terminal Emulator"
-arch=('x86_64')
-url="https://invisible-island.net/xterm/;
-license=('custom')
-depends=('libxft' 'libxaw' 'ncurses' 'luit' 'xbitmaps' 'libutempter' 
'libxkbfile')
-source=(https://invisible-mirror.net/archives/${pkgname}/${pkgname}-${pkgver}.tgz{,.asc})
-sha256sums=('a5f6e1f1de01fa9fddf132d9fb7a9a749a411f1e77ee6a7fdf1c8c0c1db80dba'
-'SKIP')
-validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB') # "Thomas Dickey 
"
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
-  --libdir=/etc \
-  --mandir=/usr/share/man \
-  --with-app-defaults=/usr/share/X11/app-defaults/ \
-  --with-x \
-  --disable-full-tgetent \
-  --disable-imake \
-  --enable-ansi-color \
-  --enable-88-color \
-  --enable-256-color \
-  --enable-broken-osc \
-  --enable-broken-st \
-  --enable-load-vt-fonts \
-  --enable-i18n \
-  --enable-wide-chars \
-  --enable-doublechars \
-  --enable-warnings \
-  --enable-tcap-query \
-  --enable-logging \
-  --enable-dabbrev \
-  --enable-freetype \
-  --enable-luit \
-  --enable-mini-luit \
-  --enable-narrowproto \
-  --enable-exec-xterm \
-  --enable-sixel-graphics \
-  --enable-regis-graphics \
-  --with-tty-group=tty \
-  --with-utempter
-  make
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  make -k check
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  chmod 0755 "${pkgdir}/usr/bin/xterm"
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-  install -m755 -d "${pkgdir}"/usr/share/applications
-  install -m644 "${srcdir}"/${pkgname}-${pkgver}/{xterm,uxterm}.desktop 
"${pkgdir}"/usr/share/applications/
-}

Copied: xterm/repos/extra-x86_64/PKGBUILD (from rev 398398, 
xterm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-15 15:24:28 UTC (rev 398399)
@@ -0,0 +1,65 @@
+# Maintainer: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=xterm
+pkgver=361
+pkgrel=1
+pkgdesc="X Terminal Emulator"
+arch=('x86_64')
+url="https://invisible-island.net/xterm/;
+license=('custom')
+depends=('libxft' 'libxaw' 'ncurses' 'luit' 'xbitmaps' 'libutempter' 
'libxkbfile')
+source=(https://invisible-mirror.net/archives/${pkgname}/${pkgname}-${pkgver}.tgz{,.asc})
+sha256sums=('85610f20d5e47205cc1b6876f7a4da28d6ae051bd8eac0b932e92c37a73a623f'
+'SKIP')
+validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB') # "Thomas Dickey 
"
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+  --libdir=/etc \
+  --mandir=/usr/share/man \
+  --with-app-defaults=/usr/share/X11/app-defaults/ \
+  --with-x \
+  --disable-full-tgetent \
+  --disable-imake \
+  --enable-ansi-color \
+  --enable-88-color \
+  --enable-256-color \
+  --enable-broken-osc \
+  --enable-broken-st \
+  --enable-load-vt-fonts \
+  --enable-i18n \
+  --enable-wide-chars \
+  --enable-doublechars \
+  --enable-warnings \
+  --enable-tcap-query \
+  --enable-logging \
+  --enable-dabbrev \
+  --enable-freetype \
+  --enable-luit \
+  --enable-mini-luit \
+  --enable-narrowproto \
+  --enable-exec-xterm \
+  --enable-sixel-graphics \
+  --enable-regis-graphics \
+  --with-tty-group=tty \
+  --with-utempter
+  make
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  make -k check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  chmod 0755 "${pkgdir}/usr/bin/xterm"
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+  install -m755 -d "${pkgdir}"/usr/share/applications
+  install -m644 "${srcdir}"/${pkgname}-${pkgver}/{xterm,uxterm}.desktop 
"${pkgdir}"/usr/share/applications/
+}


[arch-commits] Commit in haskell-sbv8.7/trunk (PKGBUILD)

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:41:22
  Author: felixonmars
Revision: 724212

upgpkg: haskell-sbv8.7 8.7-14: rebuild with hlint 3.2.1

Modified:
  haskell-sbv8.7/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 17:36:12 UTC (rev 724211)
+++ PKGBUILD2020-10-15 17:41:22 UTC (rev 724212)
@@ -4,7 +4,7 @@
 _hkgname=sbv
 pkgname=haskell-sbv8.7
 pkgver=8.7
-pkgrel=13
+pkgrel=14
 pkgdesc="SMT Based Verification: Symbolic Haskell theorem prover using SMT 
solving (legacy 8.7 version)"
 url="https://leventerkok.github.com/sbv;
 license=("BSD")


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:15:51
  Author: felixonmars
Revision: 724180

upgpkg: v2ray-geoip 202010150017-1

Modified:
  v2ray-geoip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 17:09:38 UTC (rev 724179)
+++ PKGBUILD2020-10-15 17:15:51 UTC (rev 724180)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=v2ray-geoip
-pkgver=202010120535
+pkgver=202010150017
 pkgrel=1
 pkgdesc="GeoIP List for V2Ray"
 arch=('any')
@@ -8,7 +8,7 @@
 url="https://github.com/v2fly/geoip;
 license=('MIT')
 
source=("geoip-$pkgver.dat::https://github.com/v2fly/geoip/releases/download/$pkgver/geoip.dat;)
-sha512sums=('d09f73256634aa17837318168d6bb123840a824fca3e6c0b28c5c1872db19631b3d7c2fad1520c3adf2c017fa4b02332196bac855a922f33d12bdcc651591dd7')
+sha512sums=('e5402de292c556f1f3a33e87f7acd5def108ea233fb7d39b757ee4d4a839eae6710c8f8ff18a679d680d80abd6b9b232a2069de534373aaf52c737cad32d43b3')
 
 package() {
   install -Dm644 geoip-$pkgver.dat "$pkgdir"/usr/share/v2ray/geoip.dat


[arch-commits] Commit in haskell-sbv8.7/repos (2 files)

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:41:32
  Author: felixonmars
Revision: 724213

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-sbv8.7/repos/community-staging-x86_64/
  haskell-sbv8.7/repos/community-staging-x86_64/PKGBUILD
(from rev 724212, haskell-sbv8.7/trunk/PKGBUILD)

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

Copied: haskell-sbv8.7/repos/community-staging-x86_64/PKGBUILD (from rev 
724212, haskell-sbv8.7/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-15 17:41:32 UTC (rev 724213)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=sbv
+pkgname=haskell-sbv8.7
+pkgver=8.7
+pkgrel=14
+pkgdesc="SMT Based Verification: Symbolic Haskell theorem prover using SMT 
solving (legacy 8.7 version)"
+url="https://leventerkok.github.com/sbv;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-cracknum' 'haskell-async' 
'haskell-random'
+ 'haskell-syb' 'haskell-generic-deriving')
+makedepends=('ghc' 'haskell-doctest' 'haskell-glob' 'hlint' 'haskell-tasty' 
'haskell-tasty-golden'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('6e24ec42c72b6e6f2e6516e0dd3d8d4da1c845f0656f05a637f3f212999da1f89a7be288bfbb7c6a359c68762963785ca516f4821157427a71bbb816d594a3c6')
+
+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
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 20:09:07
  Author: felixonmars
Revision: 724284

upgpkg: python-hypothesmith 0.1.5-1

Modified:
  python-hypothesmith/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 19:51:14 UTC (rev 724283)
+++ PKGBUILD2020-10-15 20:09:07 UTC (rev 724284)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-hypothesmith
-pkgver=0.1.4
-_commit=6124cd71317add93500e0cb04c98cf5606adedea
+pkgver=0.1.5
+_commit=10328724474f4d377c876bd880da91766d9189ab
 pkgrel=1
 pkgdesc="Hypothesis strategies for generating Python programs, something like 
CSmith"
 url="https://github.com/Zac-HD/hypothesmith;
@@ -12,7 +12,7 @@
 makedepends=('python-setuptools')
 checkdepends=('python-black' 'python-parso' 'python-pytest-cov')
 
source=("https://github.com/Zac-HD/hypothesmith/archive/$_commit/$pkgname-$_commit.tar.gz;)
-sha512sums=('cfb56ae43ff93a26fad77658cfb575d8bd79d9103ffc61952c69abfd40f43178ca20f81c936aca32124e12502679ffe35bb1d8f06b72065f645a7306352dba03')
+sha512sums=('0a7ce47176c50de70a5a5eb6ac0a1da751f14c85b742e4808e25983b46535ce8467a4cd8c77c9f0a1b4b91db4eb9bd0d47b88a2a81a900811127d6624710')
 
 build() {
   cd hypothesmith-$_commit


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:16:03
  Author: felixonmars
Revision: 724181

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-15 17:15:51 UTC (rev 724180)
+++ PKGBUILD2020-10-15 17:16:03 UTC (rev 724181)
@@ -1,15 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=v2ray-geoip
-pkgver=202010120535
-pkgrel=1
-pkgdesc="GeoIP List for V2Ray"
-arch=('any')
-url="https://github.com/v2fly/geoip;
-license=('MIT')
-source=("geoip-$pkgver.dat::https://github.com/v2fly/geoip/releases/download/$pkgver/geoip.dat;)
-sha512sums=('d09f73256634aa17837318168d6bb123840a824fca3e6c0b28c5c1872db19631b3d7c2fad1520c3adf2c017fa4b02332196bac855a922f33d12bdcc651591dd7')
-
-package() {
-  install -Dm644 geoip-$pkgver.dat "$pkgdir"/usr/share/v2ray/geoip.dat
-}

Copied: v2ray-geoip/repos/community-any/PKGBUILD (from rev 724180, 
v2ray-geoip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-15 17:16:03 UTC (rev 724181)
@@ -0,0 +1,15 @@
+# Maintainer: Felix Yan 
+
+pkgname=v2ray-geoip
+pkgver=202010150017
+pkgrel=1
+pkgdesc="GeoIP List for V2Ray"
+arch=('any')
+url="https://github.com/v2fly/geoip;
+license=('MIT')
+source=("geoip-$pkgver.dat::https://github.com/v2fly/geoip/releases/download/$pkgver/geoip.dat;)
+sha512sums=('e5402de292c556f1f3a33e87f7acd5def108ea233fb7d39b757ee4d4a839eae6710c8f8ff18a679d680d80abd6b9b232a2069de534373aaf52c737cad32d43b3')
+
+package() {
+  install -Dm644 geoip-$pkgver.dat "$pkgdir"/usr/share/v2ray/geoip.dat
+}


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 20:09:18
  Author: felixonmars
Revision: 724285

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-15 20:09:07 UTC (rev 724284)
+++ PKGBUILD2020-10-15 20:09:18 UTC (rev 724285)
@@ -1,30 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-hypothesmith
-pkgver=0.1.4
-_commit=6124cd71317add93500e0cb04c98cf5606adedea
-pkgrel=1
-pkgdesc="Hypothesis strategies for generating Python programs, something like 
CSmith"
-url="https://github.com/Zac-HD/hypothesmith;
-license=('MPL')
-arch=('any')
-depends=('python-hypothesis' 'python-lark-parser' 'python-libcst')
-makedepends=('python-setuptools')
-checkdepends=('python-black' 'python-parso' 'python-pytest-cov')
-source=("https://github.com/Zac-HD/hypothesmith/archive/$_commit/$pkgname-$_commit.tar.gz;)
-sha512sums=('cfb56ae43ff93a26fad77658cfb575d8bd79d9103ffc61952c69abfd40f43178ca20f81c936aca32124e12502679ffe35bb1d8f06b72065f645a7306352dba03')
-
-build() {
-  cd hypothesmith-$_commit
-  python setup.py build
-}
-
-check() {
-  cd hypothesmith-$_commit
-  PYTHONPATH="$PWD/build/lib" pytest
-}
-
-package() {
-  cd hypothesmith-$_commit
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesmith/repos/community-any/PKGBUILD (from rev 724284, 
python-hypothesmith/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-15 20:09:18 UTC (rev 724285)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-hypothesmith
+pkgver=0.1.5
+_commit=10328724474f4d377c876bd880da91766d9189ab
+pkgrel=1
+pkgdesc="Hypothesis strategies for generating Python programs, something like 
CSmith"
+url="https://github.com/Zac-HD/hypothesmith;
+license=('MPL')
+arch=('any')
+depends=('python-hypothesis' 'python-lark-parser' 'python-libcst')
+makedepends=('python-setuptools')
+checkdepends=('python-black' 'python-parso' 'python-pytest-cov')
+source=("https://github.com/Zac-HD/hypothesmith/archive/$_commit/$pkgname-$_commit.tar.gz;)
+sha512sums=('0a7ce47176c50de70a5a5eb6ac0a1da751f14c85b742e4808e25983b46535ce8467a4cd8c77c9f0a1b4b91db4eb9bd0d47b88a2a81a900811127d6624710')
+
+build() {
+  cd hypothesmith-$_commit
+  python setup.py build
+}
+
+check() {
+  cd hypothesmith-$_commit
+  PYTHONPATH="$PWD/build/lib" pytest
+}
+
+package() {
+  cd hypothesmith-$_commit
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2020-10-15 Thread Ike Devolder via arch-commits
Date: Thursday, October 15, 2020 @ 15:49:54
  Author: idevolder
Revision: 724106

upgpkg: kodi-platform 20190726.809c5e9-15

Modified:
  kodi-platform/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 15:49:12 UTC (rev 724105)
+++ PKGBUILD2020-10-15 15:49:54 UTC (rev 724106)
@@ -3,7 +3,7 @@
 pkgname=kodi-platform
 _commit=809c5e9
 pkgver=20190726.809c5e9
-pkgrel=14
+pkgrel=15
 pkgdesc="platform library for external kodi addons"
 arch=('x86_64')
 url='https://github.com/xbmc/kodi-platform'


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

2020-10-15 Thread Ike Devolder via arch-commits
Date: Thursday, October 15, 2020 @ 15:49:59
  Author: idevolder
Revision: 724107

archrelease: copy trunk to community-x86_64

Added:
  kodi-platform/repos/community-x86_64/PKGBUILD
(from rev 724106, kodi-platform/trunk/PKGBUILD)
Deleted:
  kodi-platform/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-15 15:49:54 UTC (rev 724106)
+++ PKGBUILD2020-10-15 15:49:59 UTC (rev 724107)
@@ -1,36 +0,0 @@
-# Maintainer: BlackEagle >
-
-pkgname=kodi-platform
-_commit=809c5e9
-pkgver=20190726.809c5e9
-pkgrel=14
-pkgdesc="platform library for external kodi addons"
-arch=('x86_64')
-url='https://github.com/xbmc/kodi-platform'
-license=('GPL')
-depends=('kodi' 'p8-platform')
-makedepends=('git' 'cmake' 'kodi-dev')
-source=("$pkgname::git://github.com/xbmc/kodi-platform.git#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-cd "$pkgname"
-git log -1 --date=short --format="%cd.%h" | tr -d '-'
-}
-
-build() {
-cd "$pkgname"
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_SHARED_LIBS=1 \
--DUSE_LTO=1 \
-.
-make
-}
-
-package() {
-cd "$pkgname"
-make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-platform/repos/community-x86_64/PKGBUILD (from rev 724106, 
kodi-platform/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-15 15:49:59 UTC (rev 724107)
@@ -0,0 +1,36 @@
+# Maintainer: BlackEagle >
+
+pkgname=kodi-platform
+_commit=809c5e9
+pkgver=20190726.809c5e9
+pkgrel=15
+pkgdesc="platform library for external kodi addons"
+arch=('x86_64')
+url='https://github.com/xbmc/kodi-platform'
+license=('GPL')
+depends=('kodi' 'p8-platform')
+makedepends=('git' 'cmake' 'kodi-dev')
+source=("$pkgname::git://github.com/xbmc/kodi-platform.git#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+cd "$pkgname"
+git log -1 --date=short --format="%cd.%h" | tr -d '-'
+}
+
+build() {
+cd "$pkgname"
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DUSE_LTO=1 \
+.
+make
+}
+
+package() {
+cd "$pkgname"
+make DESTDIR="$pkgdir/" install
+}
+


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:36:12
  Author: felixonmars
Revision: 724211

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-sbv/repos/community-staging-x86_64/PKGBUILD (from rev 724210, 
haskell-sbv/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-15 17:36:12 UTC (rev 724211)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=sbv
+pkgname=haskell-sbv
+pkgver=8.8
+pkgrel=14
+pkgdesc="SMT Based Verification: Symbolic Haskell theorem prover using SMT 
solving"
+url="https://leventerkok.github.com/sbv;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-cracknum' 'haskell-async' 
'haskell-random'
+ 'haskell-syb')
+makedepends=('ghc' 'haskell-doctest' 'haskell-glob' 'hlint' 'haskell-tasty' 
'haskell-tasty-golden'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+checkdepends=('abc' 'cvc4' 'yices' 'z3')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('495bff0220c85ae3ce712b25983643a2f81dbdccd26f668963bd52b99cafccdae2d47dcd831fb6a6e4e571379be8a759b838b0c4b4ca9168bca07bf7e2892374')
+
+prepare() {
+cd $_hkgname-$pkgver
+# Remove SMT solvers not in the repos
+sed -i 's/, boolector//;s/, mathSAT//;s/, dReal//' 
SBVTestSuite/SBVConnectionTest.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
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-10-15 Thread David Runge via arch-commits
Date: Thursday, October 15, 2020 @ 14:45:42
  Author: dvzrv
Revision: 398393

archrelease: copy trunk to staging-x86_64

Added:
  libgit2/repos/staging-x86_64/
  libgit2/repos/staging-x86_64/PKGBUILD
(from rev 398392, libgit2/trunk/PKGBUILD)
  
libgit2/repos/staging-x86_64/libgit2-0.99.0-remove_http-parse_incompatible_tests.patch
(from rev 398392, 
libgit2/trunk/libgit2-0.99.0-remove_http-parse_incompatible_tests.patch)

---+
 PKGBUILD  |   55 
 libgit2-0.99.0-remove_http-parse_incompatible_tests.patch |   41 
 2 files changed, 96 insertions(+)

Copied: libgit2/repos/staging-x86_64/PKGBUILD (from rev 398392, 
libgit2/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-10-15 14:45:42 UTC (rev 398393)
@@ -0,0 +1,55 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: David Runge 
+# Contributor: Hilton Medeiros 
+# Contributor: Dave Reisner 
+
+pkgname=libgit2
+pkgver=1.1.0
+pkgrel=1
+epoch=1
+pkgdesc='A linkable library for Git'
+arch=('x86_64')
+url="https://libgit2.github.com/;
+depends=('glibc' 'http-parser' 'openssl' 'pcre' 'zlib')
+makedepends=('cmake' 'libssh2' 'python')
+provides=('libgit2.so')
+license=('GPL2')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/libgit2/libgit2/archive/v${pkgver}.tar.gz;
+"${pkgname}-0.99.0-remove_http-parse_incompatible_tests.patch")
+sha512sums=('347bb68900181b44fa58a0417506c91383adb965607fce049a5b4c57ac9cc286e0a140d164c339b50fb6cd6951f47757c2917a2df44ba004bfaa4fb643946bb8'
+
'e73072424c9c1870eaaf93b3451295ef7333b59f6cb8a6897dd690b69a20aaeb70f00d15a692c1d9e0745d5ef16912fbd570d8bc83ca0b7d57f32025bf94')
+b2sums=('2a1c1f71d2a2e06448c78eb46028fdcfd59682dccf2365851c4bd059cdd78842320f9a5ba7345e761611a5b4eba634faf2e26cc669097da0ba2e1c832c23059f'
+
'cdca2012f772afea99436faa02f80697dc9042a6eb5ae14f8ee8ba9e100a65b936cdfaf84ec0361543c70859375c823a25cfee52b0face40b8dea2ec2cf1de59')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  # removing tests that are only compatible with the (modified) vendored
+  # version of http-parser, but not with upstream http-parser
+  patch -Np1 -i 
"../${pkgname}-0.99.0-remove_http-parse_incompatible_tests.patch"
+}
+
+
+build() {
+  cd "$pkgname-$pkgver"
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE='None' \
+-DUSE_HTTP_PARSER=system \
+-DTHREADSAFE=ON \
+-Wno-dev \
+-B build \
+-S .
+  make -C build VERBOSE=1
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  make -C build test VERBOSE=1
+}
+
+package() {
+  depends+=('libssh2.so')
+  cd "$pkgname-$pkgver"
+  make -C build DESTDIR="$pkgdir" install
+  install -vDm 644 {AUTHORS,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}

Copied: 
libgit2/repos/staging-x86_64/libgit2-0.99.0-remove_http-parse_incompatible_tests.patch
 (from rev 398392, 
libgit2/trunk/libgit2-0.99.0-remove_http-parse_incompatible_tests.patch)
===
--- staging-x86_64/libgit2-0.99.0-remove_http-parse_incompatible_tests.patch
(rev 0)
+++ staging-x86_64/libgit2-0.99.0-remove_http-parse_incompatible_tests.patch
2020-10-15 14:45:42 UTC (rev 398393)
@@ -0,0 +1,41 @@
+diff -ruN a/tests/network/urlparse.c b/tests/network/urlparse.c
+--- a/tests/network/urlparse.c 2020-02-19 11:27:00.0 +0100
 b/tests/network/urlparse.c 2020-02-20 17:29:46.667262285 +0100
+@@ -61,18 +61,6 @@
+   cl_assert_equal_i(git_net_url_is_default_port(), 0);
+ }
+ 
+-void test_network_urlparse__implied_root_empty_port(void)
+-{
+-  cl_git_pass(git_net_url_parse(, "http://example.com:;));
+-  cl_assert_equal_s(conndata.scheme, "http");
+-  cl_assert_equal_s(conndata.host, "example.com");
+-  cl_assert_equal_s(conndata.port, "80");
+-  cl_assert_equal_s(conndata.path, "/");
+-  cl_assert_equal_p(conndata.username, NULL);
+-  cl_assert_equal_p(conndata.password, NULL);
+-  cl_assert_equal_i(git_net_url_is_default_port(), 1);
+-}
+-
+ void test_network_urlparse__encoded_password(void)
+ {
+   cl_git_pass(git_net_url_parse(,
+@@ -127,18 +115,6 @@
+   cl_assert_equal_i(git_net_url_is_default_port(), 0);
+ }
+ 
+-void test_network_urlparse__empty_port(void)
+-{
+-  cl_git_pass(git_net_url_parse(, 
"http://example.com:/resource;));
+-  cl_assert_equal_s(conndata.scheme, "http");
+-  cl_assert_equal_s(conndata.host, "example.com");
+-  cl_assert_equal_s(conndata.port, "80");
+-  cl_assert_equal_s(conndata.path, "/resource");
+-  cl_assert_equal_p(conndata.username, NULL);
+-  cl_assert_equal_p(conndata.password, NULL);
+-  cl_assert_equal_i(git_net_url_is_default_port(), 1);
+-}
+-
+ void test_network_urlparse__user_port(void)
+ {
+  

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

2020-10-15 Thread David Runge via arch-commits
Date: Thursday, October 15, 2020 @ 14:03:08
  Author: dvzrv
Revision: 398388

archrelease: copy trunk to staging-x86_64

Added:
  qemu/repos/staging-x86_64/
  qemu/repos/staging-x86_64/65-kvm.rules
(from rev 398387, qemu/trunk/65-kvm.rules)
  qemu/repos/staging-x86_64/PKGBUILD
(from rev 398387, qemu/trunk/PKGBUILD)
  qemu/repos/staging-x86_64/qemu-ga.service
(from rev 398387, qemu/trunk/qemu-ga.service)
  qemu/repos/staging-x86_64/qemu.install
(from rev 398387, qemu/trunk/qemu.install)

-+
 65-kvm.rules|1 
 PKGBUILD|  214 ++
 qemu-ga.service |9 ++
 qemu.install|8 ++
 4 files changed, 232 insertions(+)

Copied: qemu/repos/staging-x86_64/65-kvm.rules (from rev 398387, 
qemu/trunk/65-kvm.rules)
===
--- staging-x86_64/65-kvm.rules (rev 0)
+++ staging-x86_64/65-kvm.rules 2020-10-15 14:03:08 UTC (rev 398388)
@@ -0,0 +1 @@
+KERNEL=="vhost-net", GROUP="kvm", MODE="0660", TAG+="uaccess", 
OPTIONS+="static_node=vhost-net"

Copied: qemu/repos/staging-x86_64/PKGBUILD (from rev 398387, 
qemu/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-10-15 14:03:08 UTC (rev 398388)
@@ -0,0 +1,214 @@
+# Maintainer: Tobias Powalowski 
+# Contributor: Sébastien "Seblu" Luttringer 
+
+pkgbase=qemu
+pkgname=(qemu qemu-headless qemu-arch-extra qemu-headless-arch-extra
+ qemu-block-{iscsi,rbd,gluster} qemu-guest-agent)
+pkgdesc="A generic and open source machine emulator and virtualizer"
+pkgver=5.1.0
+pkgrel=2
+arch=(x86_64)
+license=(GPL2 LGPL2.1)
+url="https://wiki.qemu.org/;
+_headlessdeps=(seabios gnutls libpng libaio numactl libnfs
+   lzo snappy curl vde2 libcap-ng spice libcacard usbredir libslirp
+   libssh zstd liburing)
+depends=(virglrenderer sdl2 vte3 libpulse libjack.so brltty 
"${_headlessdeps[@]}")
+makedepends=(spice-protocol python ceph libiscsi glusterfs python-sphinx 
xfsprogs)
+source=(https://download.qemu.org/qemu-$pkgver.tar.xz{,.sig}
+qemu-ga.service
+65-kvm.rules)
+sha512sums=('e213edb71d93d5167ddce7546220ecb7b52a7778586a4f476f65bd1e510c9cfc6d1876238a7b501d9cc3fd31cc2ae4b7fb9e753bc3f12cc17cd16dfce2a96ba3'
+'SKIP'
+
'269c0f0bacbd06a3d817fde02dce26c99d9f55c9e3b74bb710bd7e5cdde7a66b904d2eb794c8a605bf9305e4e3dee261a6e7d4ec9d9134144754914039f176e4'
+
'bdf05f99407491e27a03aaf845b7cc8acfa2e0e59968236f10ffc905e5e3d5e8569df496fd71c887da2b5b8d1902494520c7da2d3a8258f7fd93a881dd610c99')
+validpgpkeys=('CEACC9E15534EBABB82D3FA03353C9CEF108B584') # Michael Roth 

+
+case $CARCH in
+  i?86) _corearch=i386 ;;
+  x86_64) _corearch=x86_64 ;;
+esac
+
+prepare() {
+  mkdir build-{full,headless}
+  mkdir -p extra-arch-{full,headless}/usr/{bin,share/qemu}
+}
+
+build() {
+  _build full \
+--audio-drv-list="pa alsa sdl jack"
+
+  _build headless \
+--audio-drv-list= \
+--disable-sdl \
+--disable-gtk \
+--disable-vte \
+--disable-brlapi \
+--disable-opengl \
+--disable-virglrenderer
+}
+
+_build() (
+  cd build-$1
+
+  ../${pkgname}-${pkgver}/configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/usr/lib/qemu \
+--extra-ldflags="$LDFLAGS" \
+--smbd=/usr/bin/smbd \
+--enable-modules \
+--enable-sdl \
+--enable-slirp=system \
+--enable-xfsctl \
+"${@:2}"
+
+  make
+)
+
+package_qemu() {
+  optdepends=('qemu-arch-extra: extra architectures support')
+  provides=(qemu-headless)
+  conflicts=(qemu-headless)
+  replaces=(qemu-kvm)
+
+  _package full
+}
+
+package_qemu-headless() {
+  pkgdesc="QEMU without GUI"
+  depends=("${_headlessdeps[@]}")
+  optdepends=('qemu-headless-arch-extra: extra architectures support')
+
+  _package headless
+}
+
+_package() {
+  optdepends+=('samba: SMB/CIFS server support'
+   'qemu-block-iscsi: iSCSI block support'
+   'qemu-block-rbd: RBD block support'
+   'qemu-block-gluster: glusterfs block support')
+  install=qemu.install
+  options=(!strip !emptydirs)
+
+  make -C build-$1 DESTDIR="$pkgdir" install "${@:2}"
+
+  # systemd stuff
+  install -Dm644 65-kvm.rules "$pkgdir/usr/lib/udev/rules.d/65-kvm.rules"
+
+  # remove conflicting /var/run directory
+  cd "$pkgdir"
+  rm -r var
+
+  cd usr/lib
+
+  # bridge_helper needs suid
+  # https://bugs.archlinux.org/task/32565
+  chmod u+s qemu/qemu-bridge-helper
+
+  # remove split block modules
+  rm qemu/block-{iscsi,rbd,gluster}.so
+
+  cd ../bin
+
+  # remove extra arch
+  for _bin in qemu-*; do
+[[ -f $_bin ]] || continue
+
+case ${_bin#qemu-} in
+  # guest agent
+  ga) rm "$_bin"; continue ;;
+
+  # tools
+  edid|img|io|keymap|nbd|pr-helper|storage-daemon) continue ;;
+
+

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

2020-10-15 Thread David Runge via arch-commits
Date: Thursday, October 15, 2020 @ 14:02:34
  Author: dvzrv
Revision: 398387

upgpkg: qemu 5.1.0-2: Rebuild against brltty 6.1.

Modified:
  qemu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 13:56:09 UTC (rev 398386)
+++ PKGBUILD2020-10-15 14:02:34 UTC (rev 398387)
@@ -6,7 +6,7 @@
  qemu-block-{iscsi,rbd,gluster} qemu-guest-agent)
 pkgdesc="A generic and open source machine emulator and virtualizer"
 pkgver=5.1.0
-pkgrel=1
+pkgrel=2
 arch=(x86_64)
 license=(GPL2 LGPL2.1)
 url="https://wiki.qemu.org/;
@@ -22,7 +22,7 @@
 'SKIP'
 
'269c0f0bacbd06a3d817fde02dce26c99d9f55c9e3b74bb710bd7e5cdde7a66b904d2eb794c8a605bf9305e4e3dee261a6e7d4ec9d9134144754914039f176e4'
 
'bdf05f99407491e27a03aaf845b7cc8acfa2e0e59968236f10ffc905e5e3d5e8569df496fd71c887da2b5b8d1902494520c7da2d3a8258f7fd93a881dd610c99')
-validpgpkeys=('CEACC9E15534EBABB82D3FA03353C9CEF108B584')
+validpgpkeys=('CEACC9E15534EBABB82D3FA03353C9CEF108B584') # Michael Roth 

 
 case $CARCH in
   i?86) _corearch=i386 ;;


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

2020-10-15 Thread David Runge via arch-commits
Date: Thursday, October 15, 2020 @ 14:45:34
  Author: dvzrv
Revision: 398392

upgpkg: libgit2 1:1.1.0-1: Upgrade to 1.1.0.

Modified:
  libgit2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 14:40:30 UTC (rev 398391)
+++ PKGBUILD2020-10-15 14:45:34 UTC (rev 398392)
@@ -4,7 +4,7 @@
 # Contributor: Dave Reisner 
 
 pkgname=libgit2
-pkgver=1.0.1
+pkgver=1.1.0
 pkgrel=1
 epoch=1
 pkgdesc='A linkable library for Git'
@@ -16,8 +16,10 @@
 license=('GPL2')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/libgit2/libgit2/archive/v${pkgver}.tar.gz;
 "${pkgname}-0.99.0-remove_http-parse_incompatible_tests.patch")
-sha256sums=('1775427a6098f441ddbaa5bd4e9b8a043c7401e450ed761e69a415530fea81d2'
-'0a597176a551dfe8dda56a46362ff1ef614928206a162d78fdf2d3074c9273ca')
+sha512sums=('347bb68900181b44fa58a0417506c91383adb965607fce049a5b4c57ac9cc286e0a140d164c339b50fb6cd6951f47757c2917a2df44ba004bfaa4fb643946bb8'
+
'e73072424c9c1870eaaf93b3451295ef7333b59f6cb8a6897dd690b69a20aaeb70f00d15a692c1d9e0745d5ef16912fbd570d8bc83ca0b7d57f32025bf94')
+b2sums=('2a1c1f71d2a2e06448c78eb46028fdcfd59682dccf2365851c4bd059cdd78842320f9a5ba7345e761611a5b4eba634faf2e26cc669097da0ba2e1c832c23059f'
+
'cdca2012f772afea99436faa02f80697dc9042a6eb5ae14f8ee8ba9e100a65b936cdfaf84ec0361543c70859375c823a25cfee52b0face40b8dea2ec2cf1de59')
 
 prepare() {
   cd "$pkgname-$pkgver"


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:26:10
  Author: felixonmars
Revision: 724201

archrelease: copy trunk to community-any

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

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

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-15 17:25:44 UTC (rev 724200)
+++ PKGBUILD2020-10-15 17:26:10 UTC (rev 724201)
@@ -1,44 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Alexander Rødseth 
-# Contributor: Marcel Huber 
-# Contributor: Illarion Kovalchuk 
-
-pkgname=jenkins
-pkgver=2.261
-pkgrel=1
-pkgdesc='Extendable continuous integration server (latest)'
-arch=('any')
-url='https://jenkins.io'
-license=('MIT')
-depends=('java-runtime=8' 'ttf-dejavu')
-provides=('jenkins-ci')
-conflicts=('jenkins-ci')
-replaces=('jenkins-ci')
-backup=('etc/conf.d/jenkins')
-install='jenkins.install'

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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:29:51
  Author: felixonmars
Revision: 724208

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-15 17:29:45 UTC (rev 724207)
+++ PKGBUILD2020-10-15 17:29:51 UTC (rev 724208)
@@ -1,55 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Alexander Duscheleit 
-
-pkgbase=python-colorama
-pkgname=('python-colorama' 'python2-colorama')
-pkgver=0.4.3
-pkgrel=1
-pkgdesc="Python API for cross-platform colored terminal text."
-arch=('any')
-url="https://pypi.python.org/pypi/colorama;
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-mock' 'python2-mock')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/tartley/colorama/archive/$pkgver.tar.gz;)
-sha512sums=('ab41a2f95fe75de0b280c174c6166b86645e5cc675dcedf784fe15170aae630e831370527c9490342b77c7d088a023a48428a519b52ad1c70be58904742a94c8')
-
-prepare() {
-  cp -a colorama-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/colorama-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/colorama-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/colorama-$pkgver
-  python -m unittest discover -p *_test.py || warning "Tests failed"
-
-  cd "$srcdir"/colorama-$pkgver-py2
-  python2 -m unittest discover -p *_test.py || warning "Tests failed"
-}
-
-package_python-colorama() {
-  depends=('python')
-
-  cd colorama-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-}
-
-package_python2-colorama() {
-  depends=('python2')
-
-  cd colorama-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-colorama/repos/community-any/PKGBUILD (from rev 724207, 
python-colorama/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-15 17:29:51 UTC (rev 724208)
@@ -0,0 +1,55 @@
+# Maintainer: Felix Yan 
+# Contributor: Alexander Duscheleit 
+
+pkgbase=python-colorama
+pkgname=('python-colorama' 'python2-colorama')
+pkgver=0.4.4
+pkgrel=1
+pkgdesc="Python API for cross-platform colored terminal text."
+arch=('any')
+url="https://pypi.python.org/pypi/colorama;
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-mock' 'python2-mock')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/tartley/colorama/archive/$pkgver.tar.gz;)
+sha512sums=('35501915b79bfc5fe46a36f83790ecd79c82150d6b73a57cd55fbe6431ea5ed7a86676504af90147eeb3a963ffd16890e0220099df579a66f2d8f1f7494f862e')
+
+prepare() {
+  cp -a colorama-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/colorama-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/colorama-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/colorama-$pkgver
+  python -m unittest discover -p *_test.py || warning "Tests failed"
+
+  cd "$srcdir"/colorama-$pkgver-py2
+  python2 -m unittest discover -p *_test.py || warning "Tests failed"
+}
+
+package_python-colorama() {
+  depends=('python')
+
+  cd colorama-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+package_python2-colorama() {
+  depends=('python2')
+
+  cd colorama-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:29:55
  Author: felixonmars
Revision: 724209

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-monad-dijkstra/repos/community-staging-x86_64/
  haskell-monad-dijkstra/repos/community-staging-x86_64/PKGBUILD
(from rev 724208, haskell-monad-dijkstra/trunk/PKGBUILD)

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

Copied: haskell-monad-dijkstra/repos/community-staging-x86_64/PKGBUILD (from 
rev 724208, haskell-monad-dijkstra/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-15 17:29:55 UTC (rev 724209)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+
+_hkgname=monad-dijkstra
+pkgname=haskell-monad-dijkstra
+pkgver=0.1.1.3
+pkgrel=3
+pkgdesc="A monad transformer for weighted graph searches"
+url="https://github.com/ennocramer/monad-dijkstra;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-free' 'haskell-psqueues')
+makedepends=('ghc' 'hlint' 'haskell-tasty' 'haskell-tasty-hspec')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('6c6270f94d27203b6974563398e4b7e81ae53e6110cffaecf8ff6297c11ceb8f')
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-10-15 Thread David Runge via arch-commits
Date: Thursday, October 15, 2020 @ 16:19:13
  Author: dvzrv
Revision: 724175

archrelease: copy trunk to community-staging-x86_64

Added:
  subsurface/repos/community-staging-x86_64/
  subsurface/repos/community-staging-x86_64/PKGBUILD
(from rev 724174, subsurface/trunk/PKGBUILD)

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

Copied: subsurface/repos/community-staging-x86_64/PKGBUILD (from rev 724174, 
subsurface/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-15 16:19:13 UTC (rev 724175)
@@ -0,0 +1,42 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: David Runge 
+# Contributor: Francois Boulogne 
+
+pkgname=subsurface
+_pkgname=Subsurface
+pkgver=4.9.6
+pkgrel=3
+pkgdesc='Divelog program'
+url='https://subsurface-divelog.org/'
+license=('GPL2')
+arch=('x86_64')
+makedepends=('asciidoc' 'cmake' 'libgit2' 'libusb' 'qt5-tools')
+depends=('googlemaps' 'grantlee' 'hicolor-icon-theme' 'libzip' 'libxml2'
+'libxslt' 'subsurface-libdc' 'qt5-svg' 'qt5-location' 'qt5-connectivity'
+'qt5-webkit' 'sqlite')
+source=("https://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
+sha512sums=('6bef6a17e505aad2ab3d395483b3890ab358cc3c352671fc41f8e0fd946daee27f6aac98da3ed6f75cac7a148047581ad069d757714f40814f7bb0d950215564')
+b2sums=('2df46f721817c363904dd15f39266ea6d9d29686cad7c541996a28fe05c1c22d67563c2c58f7147c458c5b7746c4cba8bfd0e5bcf277d7360fa85efa80a4800f')
+
+# qt5-webkit still used for: printing, manual
+
+prepare() {
+  mv -v "${_pkgname}-${pkgver}" "${pkgname}-${pkgver}"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE='None' \
+-DLIBDIVECOMPUTER_INCLUDE_DIR=/usr/include/libdivecomputer \
+-W no-dev \
+-B build \
+-S .
+  make VERBOSE=1 -C build
+}
+
+package() {
+  depends+=('libgit2.so')
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install -C build
+}


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:29:45
  Author: felixonmars
Revision: 724207

upgpkg: haskell-monad-dijkstra 0.1.1.3-3: rebuild with hlint 3.2.1

Modified:
  haskell-monad-dijkstra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 17:29:39 UTC (rev 724206)
+++ PKGBUILD2020-10-15 17:29:45 UTC (rev 724207)
@@ -3,7 +3,7 @@
 _hkgname=monad-dijkstra
 pkgname=haskell-monad-dijkstra
 pkgver=0.1.1.3
-pkgrel=2
+pkgrel=3
 pkgdesc="A monad transformer for weighted graph searches"
 url="https://github.com/ennocramer/monad-dijkstra;
 license=("BSD")


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:27:56
  Author: felixonmars
Revision: 398406

upgpkg: python-setuptools 1:50.3.1-1

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 17:07:50 UTC (rev 398405)
+++ PKGBUILD2020-10-15 17:27:56 UTC (rev 398406)
@@ -3,7 +3,7 @@
 # Contributor: Eli Schwartz 
 
 pkgname=python-setuptools
-pkgver=50.3.0
+pkgver=50.3.1
 pkgrel=1
 epoch=1
 pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
@@ -18,7 +18,7 @@
 provides=('python-distribute')
 replaces=('python-distribute')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/pypa/setuptools/archive/v$pkgver.tar.gz;)
-sha512sums=('d4c9191049faa187516634f54a33ce63a547e960800f7855561811f2fff41c9aa32049a0dc755baf0992bd15f02ed89d5e6caa829a35da4440056de03f921502')
+sha512sums=('fd81ea610c75e123765a5f31ee878fb7f126985a8875e1a007ffc52ee415fa7c076a44caecc7980af38c0668a7ab982554181b804ee458ddbc7cad1f7ec2811b')
 
 export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
 


[arch-commits] Commit in dhall-lsp-server/repos (2 files)

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:29:06
  Author: felixonmars
Revision: 724205

archrelease: copy trunk to community-staging-x86_64

Added:
  dhall-lsp-server/repos/community-staging-x86_64/
  dhall-lsp-server/repos/community-staging-x86_64/PKGBUILD
(from rev 724204, dhall-lsp-server/trunk/PKGBUILD)

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

Copied: dhall-lsp-server/repos/community-staging-x86_64/PKGBUILD (from rev 
724204, dhall-lsp-server/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-15 17:29:06 UTC (rev 724205)
@@ -0,0 +1,55 @@
+# Maintainer: Felix Yan 
+
+pkgname=dhall-lsp-server
+pkgver=1.0.10
+pkgrel=21
+pkgdesc="Language Server Protocol (LSP) server for Dhall"
+url="https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-lsp-server#readme;
+license=("custom:MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 
'haskell-data-default' 'dhall'
+ 'dhall-json' 'haskell-lsp' 'haskell-hslogger' 'haskell-lens' 
'haskell-lens-family-core'
+ 'haskell-megaparsec' 'haskell-network-uri' 
'haskell-optparse-applicative'
+ 'haskell-prettyprinter' 'haskell-rope-utf16-splay' 
'haskell-unordered-containers'
+ 'haskell-uri-encode')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-doctest' 'haskell-lsp-types' 
'haskell-lsp-test'
+ 'haskell-tasty' 'haskell-tasty-hspec')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz;
+
lsp-0.23.patch::https://github.com/dhall-lang/dhall-haskell/pull/2064.patch)
+sha512sums=('51dffa682e1b12f616f829651f774c0472efb49cb97f94b1499178943cc38d5a947a5d0d67f0270e80b9963bafcde074ad00304fde7bffaf8787af1e3a09eb9a'
+
'a5cb75667f57fc7ca1184d3c407192b56cea8b55a360360509ec2248a0cab39c22775e7589b004108c2bf9e19b63b7a78381679c587b3d2207d9b8405737c352')
+
+prepare() {
+  patch -d $pkgname-$pkgver -p2 < lsp-0.23.patch
+}
+
+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=-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 $pkgname-$pkgver
+  LD_LIBRARY_PATH="$PWD/dist/build" 
PATH="$PWD/dist/build/dhall-lsp-server:$PATH" runhaskell Setup test
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:27:44
  Author: felixonmars
Revision: 724202

upgpkg: haskell-lsp-test 0.11.0.7-2: rebuild with hlint 3.2.1

Modified:
  haskell-lsp-test/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 17:26:10 UTC (rev 724201)
+++ PKGBUILD2020-10-15 17:27:44 UTC (rev 724202)
@@ -3,7 +3,7 @@
 _hkgname=lsp-test
 pkgname=haskell-lsp-test
 pkgver=0.11.0.7
-pkgrel=1
+pkgrel=2
 pkgdesc="Functional test framework for LSP servers"
 url="https://github.com/bubba/lsp-test#readme;
 license=("BSD")


[arch-commits] Commit in dhall-lsp-server/trunk (PKGBUILD)

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:28:56
  Author: felixonmars
Revision: 724204

upgpkg: dhall-lsp-server 1.0.10-21: rebuild with hlint 3.2.1

Modified:
  dhall-lsp-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 17:27:54 UTC (rev 724203)
+++ PKGBUILD2020-10-15 17:28:56 UTC (rev 724204)
@@ -2,7 +2,7 @@
 
 pkgname=dhall-lsp-server
 pkgver=1.0.10
-pkgrel=20
+pkgrel=21
 pkgdesc="Language Server Protocol (LSP) server for Dhall"
 
url="https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-lsp-server#readme;
 license=("custom:MIT")


[arch-commits] Commit in python-setuptools/repos/extra-any (PKGBUILD PKGBUILD)

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:28:07
  Author: felixonmars
Revision: 398407

archrelease: copy trunk to extra-any

Added:
  python-setuptools/repos/extra-any/PKGBUILD
(from rev 398406, python-setuptools/trunk/PKGBUILD)
Deleted:
  python-setuptools/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-15 17:27:56 UTC (rev 398406)
+++ PKGBUILD2020-10-15 17:28:07 UTC (rev 398407)
@@ -1,86 +0,0 @@
-# Maintainer: Angel Velasquez 
-# Maintainer: Felix Yan 
-# Contributor: Eli Schwartz 
-
-pkgname=python-setuptools
-pkgver=50.3.0
-pkgrel=1
-epoch=1
-pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
-arch=('any')
-license=('PSF')
-url="https://pypi.org/project/setuptools/;
-depends=('python-appdirs' 'python-packaging' 'python-ordered-set')
-makedepends=('git')
-checkdepends=('python-jaraco.envs' 'python-mock' 'python-pip' 
'python-pytest-fixture-config'
-  'python-pytest-flake8' 'python-pytest-virtualenv' 'python-wheel' 
'python-paver'
-  'python-pytest-cov')
-provides=('python-distribute')
-replaces=('python-distribute')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/pypa/setuptools/archive/v$pkgver.tar.gz;)
-sha512sums=('d4c9191049faa187516634f54a33ce63a547e960800f7855561811f2fff41c9aa32049a0dc755baf0992bd15f02ed89d5e6caa829a35da4440056de03f921502')
-
-export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
-
-prepare() {
-  rm -r setuptools-$pkgver/{pkg_resources,setuptools}/{extern,_vendor}
-
-  # Upstream devendoring logic is badly broken, see:
-  # https://bugs.archlinux.org/task/58670
-  # https://github.com/pypa/pip/issues/5429
-  # https://github.com/pypa/setuptools/issues/1383
-  # The simplest fix is to simply rewrite import paths to use the canonical
-  # location in the first place
-  for _module in setuptools pkg_resources '' ; do
-  find setuptools-$pkgver -name \*.py -exec sed -i \
-  -e 's/from '$_module.extern' import/import/' \
-  -e 's/from '$_module.extern'./from /' \
-  -e 's/import '$_module.extern'./import /' \
-  -e "s/__import__('$_module.extern./__import__('/" \
-  {} +
-done
-
-  # Fix for flake8
-  sed -i 's/import six, ordered_set/import six\nimport ordered_set/' 
setuptools-$pkgver/setuptools/command/sdist.py
-
-  # Remove post-release tag since we are using stable tags
-  sed -e '/tag_build = .post/d' \
-  -e '/tag_date = 1/d' \
-  -i setuptools-$pkgver/setup.cfg
-
-  # 'Clean' installation is expected to fail since we removed bundled packages
-  sed -i '/^def test_clean_env_install/i @pytest.mark.xfail' 
setuptools-$pkgver/setuptools/tests/test_virtualenv.py
-
-  # Tests failed. Importing an unbundled new setuptools in a virtualenv does 
not work, but this won't
-  # affect normal virtualenv usage (which don't have to import the unbundled 
setuptools in *current*
-  # dir.
-  sed -e '/^def test_pip_upgrade_from_source/i @pytest.mark.xfail' \
-  -e '/^def test_test_command_install_requirements/i @pytest.mark.xfail' \
-  -e '/^def test_no_missing_dependencies/i @pytest.mark.xfail' \
-  -i setuptools-$pkgver/setuptools/tests/test_virtualenv.py
-  
-  cd "$srcdir"/setuptools-$pkgver
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" 
setuptools/command/easy_install.py
-}
-
-build() {
-  cd setuptools-$pkgver
-  python bootstrap.py
-  python setup.py build
-}
-
-check() { (
-  # Workaround UTF-8 tests by setting LC_CTYPE
-  export LC_CTYPE=en_US.UTF-8
-
-  # https://github.com/pypa/setuptools/pull/810
-  export PYTHONDONTWRITEBYTECODE=1
-
-  cd setuptools-$pkgver
-  python -m pytest --deselect setuptools/tests/test_distutils_adoption.py
-)}
-
-package() {
-  cd setuptools-$pkgver
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-}

Copied: python-setuptools/repos/extra-any/PKGBUILD (from rev 398406, 
python-setuptools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-15 17:28:07 UTC (rev 398407)
@@ -0,0 +1,86 @@
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Eli Schwartz 
+
+pkgname=python-setuptools
+pkgver=50.3.1
+pkgrel=1
+epoch=1
+pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
+arch=('any')
+license=('PSF')
+url="https://pypi.org/project/setuptools/;
+depends=('python-appdirs' 'python-packaging' 'python-ordered-set')
+makedepends=('git')
+checkdepends=('python-jaraco.envs' 'python-mock' 'python-pip' 
'python-pytest-fixture-config'
+  'python-pytest-flake8' 'python-pytest-virtualenv' 'python-wheel' 
'python-paver'
+  'python-pytest-cov')
+provides=('python-distribute')

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

2020-10-15 Thread David Runge via arch-commits
Date: Thursday, October 15, 2020 @ 16:18:59
  Author: dvzrv
Revision: 724174

upgpkg: subsurface 4.9.6-3: Rebuild against libgit2 1.1.0.

Add all available sodeps in package() and the respective packages in 
makedepends.
Move libusb from depends to makedepends as it is only required during build 
time.
Apply latest cmake packaging guidelines.
Update contributor info.

Modified:
  subsurface/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 16:15:09 UTC (rev 724173)
+++ PKGBUILD2020-10-15 16:18:59 UTC (rev 724174)
@@ -1,37 +1,42 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: David Runge 
 # Contributor: Francois Boulogne 
-# Maintainer: Gaetan Bisson 
 
 pkgname=subsurface
 _pkgname=Subsurface
 pkgver=4.9.6
-pkgrel=2
+pkgrel=3
 pkgdesc='Divelog program'
 url='https://subsurface-divelog.org/'
 license=('GPL2')
 arch=('x86_64')
-makedepends=('cmake' 'asciidoc' 'qt5-tools')
-depends=('libzip' 'libxml2' 'libxslt' 'sqlite' 'libusb' 'libgit2'
- 'subsurface-libdc' 'qt5-svg' 'qt5-location'
- 'qt5-connectivity' 'qt5-webkit' 'grantlee' 'googlemaps')
+makedepends=('asciidoc' 'cmake' 'libgit2' 'libusb' 'qt5-tools')
+depends=('googlemaps' 'grantlee' 'hicolor-icon-theme' 'libzip' 'libxml2'
+'libxslt' 'subsurface-libdc' 'qt5-svg' 'qt5-location' 'qt5-connectivity'
+'qt5-webkit' 'sqlite')
 source=("https://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz;)
-sha256sums=('fed9485958f2b37d0efd8702b63a23eae1abfab0f01e1de1946aad5701c59f34')
+sha512sums=('6bef6a17e505aad2ab3d395483b3890ab358cc3c352671fc41f8e0fd946daee27f6aac98da3ed6f75cac7a148047581ad069d757714f40814f7bb0d950215564')
+b2sums=('2df46f721817c363904dd15f39266ea6d9d29686cad7c541996a28fe05c1c22d67563c2c58f7147c458c5b7746c4cba8bfd0e5bcf277d7360fa85efa80a4800f')
 
 # qt5-webkit still used for: printing, manual
 
+prepare() {
+  mv -v "${_pkgname}-${pkgver}" "${pkgname}-${pkgver}"
+}
+
 build() {
-   cd "${srcdir}/${_pkgname}-${pkgver}"
-   install -d build
-   cd build
-   cmake \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DLIBDIVECOMPUTER_INCLUDE_DIR=/usr/include/libdivecomputer \
-   ..
-   make
+  cd "${pkgname}-${pkgver}"
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE='None' \
+-DLIBDIVECOMPUTER_INCLUDE_DIR=/usr/include/libdivecomputer \
+-W no-dev \
+-B build \
+-S .
+  make VERBOSE=1 -C build
 }
 
 package() {
-   cd "${srcdir}/${_pkgname}-${pkgver}"
-   cd build
-   make DESTDIR="${pkgdir}" install
+  depends+=('libgit2.so')
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install -C build
 }


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:29:39
  Author: felixonmars
Revision: 724206

upgpkg: python-colorama 0.4.4-1

Modified:
  python-colorama/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 17:29:06 UTC (rev 724205)
+++ PKGBUILD2020-10-15 17:29:39 UTC (rev 724206)
@@ -3,7 +3,7 @@
 
 pkgbase=python-colorama
 pkgname=('python-colorama' 'python2-colorama')
-pkgver=0.4.3
+pkgver=0.4.4
 pkgrel=1
 pkgdesc="Python API for cross-platform colored terminal text."
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('python-setuptools' 'python2-setuptools')
 checkdepends=('python-mock' 'python2-mock')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/tartley/colorama/archive/$pkgver.tar.gz;)
-sha512sums=('ab41a2f95fe75de0b280c174c6166b86645e5cc675dcedf784fe15170aae630e831370527c9490342b77c7d088a023a48428a519b52ad1c70be58904742a94c8')
+sha512sums=('35501915b79bfc5fe46a36f83790ecd79c82150d6b73a57cd55fbe6431ea5ed7a86676504af90147eeb3a963ffd16890e0220099df579a66f2d8f1f7494f862e')
 
 prepare() {
   cp -a colorama-$pkgver{,-py2}


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

2020-10-15 Thread Bruno Pagani via arch-commits
Date: Thursday, October 15, 2020 @ 16:15:09
  Author: archange
Revision: 724173

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-15 16:14:45 UTC (rev 724172)
+++ PKGBUILD2020-10-15 16:15:09 UTC (rev 724173)
@@ -1,35 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-_pkg=spur
-pkgname=python-${_pkg}
-pkgver=0.3.21
-pkgrel=1
-pkgdesc="Run commands and manipulate files locally or over SSH using the same 
interface"
-arch=(any)
-url="https://github.com/mwilliamson/spur.py;
-license=(BSD)
-makedepends=(python-setuptools)
-depends=(python python-paramiko)
-checkdepends=(python-nose)
-# No tests in pypi tarballs
-#source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
-source=(${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('fb2fbc9a875a90b9e25ae477d7791aa3011a211e33b58de47430828d2786a08f')
-
-build() {
-  cd ${_pkg}.py-${pkgver}
-  python setup.py build
-}
-
-check() {
-  cd ${_pkg}.py-${pkgver}
-  # https://github.com/mwilliamson/spur.py/issues/85
-  nosetests || warning "Tests failed"
-}
-
-package() {
-  cd ${_pkg}.py-${pkgver}
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
-  # Install license file
-  install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: python-spur/repos/community-any/PKGBUILD (from rev 724172, 
python-spur/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-15 16:15:09 UTC (rev 724173)
@@ -0,0 +1,35 @@
+# Maintainer: Bruno Pagani 
+
+_pkg=spur
+pkgname=python-${_pkg}
+pkgver=0.3.22
+pkgrel=1
+pkgdesc="Run commands and manipulate files locally or over SSH using the same 
interface"
+arch=(any)
+url="https://github.com/mwilliamson/spur.py;
+license=(BSD)
+makedepends=(python-setuptools)
+depends=(python python-paramiko)
+checkdepends=(python-nose)
+# No tests in pypi tarballs
+#source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
+source=(${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('9b4c16675d9eda3c98b56d8886a877d8d2d310530b9396e90209ecef41e06c72')
+
+build() {
+  cd ${_pkg}.py-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd ${_pkg}.py-${pkgver}
+  # https://github.com/mwilliamson/spur.py/issues/85
+  nosetests || warning "Tests failed"
+}
+
+package() {
+  cd ${_pkg}.py-${pkgver}
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
+  # Install license file
+  install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:27:54
  Author: felixonmars
Revision: 724203

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-lsp-test/repos/community-staging-x86_64/PKGBUILD (from rev 
724202, haskell-lsp-test/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-15 17:27:54 UTC (rev 724203)
@@ -0,0 +1,60 @@
+# Maintainer: Felix Yan 
+
+_hkgname=lsp-test
+pkgname=haskell-lsp-test
+pkgver=0.11.0.7
+pkgrel=2
+pkgdesc="Functional test framework for LSP servers"
+url="https://github.com/bubba/lsp-test#readme;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-diff' 'haskell-glob' 'haskell-aeson' 
'haskell-aeson-pretty'
+ 'haskell-ansi-terminal' 'haskell-async' 'haskell-conduit' 
'haskell-conduit-parse'
+ 'haskell-data-default' 'haskell-lsp' 'haskell-lens' 
'haskell-parser-combinators'
+ 'haskell-unordered-containers')
+makedepends=('ghc' 'haskell-hspec')
+# Hackage source is missing test data
+source=("https://github.com/bubba/lsp-test/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('bc42e9d5a31a81501b324f5c5c91d00512f85e6a1c867ca17f619565c732dacdd7a058b265819f6f045b84534450e785d88d038a91304ab9310680e46e0bf0ea')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+  sed -i 's|dist-newstyle|dist/build/dummy-server|' test/Test.hs
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  # We need to enable dummy-server here for tests, but it shouldn't be 
installed...
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie' \
+-fdummyserver
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+
+  # Remove dummy-server
+  rm -r "$pkgdir"/usr/libexec
+}


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

2020-10-15 Thread Morten Linderud via arch-commits
Date: Thursday, October 15, 2020 @ 13:15:39
  Author: foxboron
Revision: 724087

archrelease: copy trunk to community-any

Added:
  qutebrowser/repos/community-any/PKGBUILD
(from rev 724086, qutebrowser/trunk/PKGBUILD)
Deleted:
  qutebrowser/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-15 13:15:30 UTC (rev 724086)
+++ PKGBUILD2020-10-15 13:15:39 UTC (rev 724087)
@@ -1,39 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Lukas Fleischer 
-# Contributor: Pierre Neidhardt 
-# Contributor: Florian Bruhin (The Compiler) 
-
-pkgname=qutebrowser
-pkgver=1.13.1
-pkgrel=1
-pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
-arch=("any")
-url="https://www.qutebrowser.org/;
-license=("GPL")
-depends=("python-attrs" "python-jinja" "python-pygments" "python-pypeg2"
- "python-pyqt5" "python-yaml" "qt5-base" "python-pyqtwebengine")
-makedepends=("asciidoc" "python-setuptools")
-optdepends=("gst-libav: media playback with qt5-webkit backend"
-"gst-plugins-base: media playback with qt5-webkit backend"
-"gst-plugins-good: media playback with qt5-webkit backend"
-"gst-plugins-bad: media playback with qt5-webkit backend"
-"gst-plugins-ugly: media playback with qt5-webkit backend"
-"pdfjs: displaying PDF in-browser"
-"qt5-webkit: alternative backend")
-options=(!emptydirs)
-source=("https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz;
-
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz.asc;)
-validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
-sha256sums=('2896851f07c6258cf8991975eed200ca8477ae393a6a7a40249035b2f36ee2d8'
-'SKIP')
-
-build() {
-cd "$pkgname-$pkgver"
-export PYTHONHASHSEED=0
-make -f misc/Makefile all
-}
-
-package() {
-cd "$pkgname-$pkgver"
-make -f misc/Makefile DESTDIR="$pkgdir" PREFIX=/usr install
-}

Copied: qutebrowser/repos/community-any/PKGBUILD (from rev 724086, 
qutebrowser/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-15 13:15:39 UTC (rev 724087)
@@ -0,0 +1,39 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Lukas Fleischer 
+# Contributor: Pierre Neidhardt 
+# Contributor: Florian Bruhin (The Compiler) 
+
+pkgname=qutebrowser
+pkgver=1.14.0
+pkgrel=1
+pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
+arch=("any")
+url="https://www.qutebrowser.org/;
+license=("GPL")
+depends=("python-attrs" "python-jinja" "python-pygments" "python-pypeg2"
+ "python-pyqt5" "python-yaml" "qt5-base" "python-pyqtwebengine")
+makedepends=("asciidoc" "python-setuptools")
+optdepends=("gst-libav: media playback with qt5-webkit backend"
+"gst-plugins-base: media playback with qt5-webkit backend"
+"gst-plugins-good: media playback with qt5-webkit backend"
+"gst-plugins-bad: media playback with qt5-webkit backend"
+"gst-plugins-ugly: media playback with qt5-webkit backend"
+"pdfjs: displaying PDF in-browser"
+"qt5-webkit: alternative backend")
+options=(!emptydirs)
+source=("https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz;
+
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz.asc;)
+validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
+sha256sums=('76eb14097bab873ffae73bb4d017b4d22aa5c4604d45f0b9570dfaed4720374a'
+'SKIP')
+
+build() {
+cd "$pkgname-$pkgver"
+export PYTHONHASHSEED=0
+make -f misc/Makefile all
+}
+
+package() {
+cd "$pkgname-$pkgver"
+make -f misc/Makefile DESTDIR="$pkgdir" PREFIX=/usr install
+}


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:22:45
  Author: felixonmars
Revision: 724190

upgpkg: hlint 3.2.1-1: rebuild with hlint 3.2.1

Modified:
  hlint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 17:22:08 UTC (rev 724189)
+++ PKGBUILD2020-10-15 17:22:45 UTC (rev 724190)
@@ -2,8 +2,8 @@
 # Contributor: Arch Haskell Team 
 
 pkgname=hlint
-pkgver=3.2
-pkgrel=9
+pkgver=3.2.1
+pkgrel=1
 pkgdesc="Source code suggestions"
 url="http://community.haskell.org/~ndm/hlint/;
 license=("BSD")
@@ -17,7 +17,7 @@
 replaces=('haskell-hlint')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('9906d0afcbecb9c8231774b57f3533d6df5b3b433a6d2eb4a2f5e9228f12fe466c3aa72aa59c9a6ff4056b09c176e1e8fad6d34136676c19f998cf55d55afabd')
+sha512sums=('d7dfd28e19bf093af96fe1aa6b50d9958a552d7c3fd64d0a4103951e0ffe75a2cc0992f6793f4eeb8dc6bf401e7fa62335dcdafcb1f3cd38532000cc5bc52e5d')
 
 build() {
 cd "${srcdir}/${pkgname}-${pkgver}"


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:21:20
  Author: felixonmars
Revision: 724187

archrelease: copy trunk to community-x86_64

Added:
  deepin-movie/repos/community-x86_64/PKGBUILD
(from rev 724186, deepin-movie/trunk/PKGBUILD)
Deleted:
  deepin-movie/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-15 17:21:09 UTC (rev 724186)
+++ PKGBUILD2020-10-15 17:21:20 UTC (rev 724187)
@@ -1,31 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=deepin-movie
-epoch=1
-pkgver=5.7.6.47
-pkgrel=1
-pkgdesc='Movie player based on QtAV'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/deepin-movie-reborn;
-license=('GPL3')
-depends=('deepin-qt5integration' 'mpv' 'ffmpegthumbnailer')
-makedepends=('cmake' 'ninja' 'qt5-tools')
-groups=('deepin-extra')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-movie-reborn/archive/$pkgver.tar.gz;)
-sha512sums=('9444dd65779b2fae39713fbbab3c594673eb411dda790ad9b9a70a7aa8893ded211627149ef529e7a0c8e18a8da745e5ef05d3b858871362f9183c98eb1bbfd5')
-
-prepare() {
-  cd deepin-movie-reborn-$pkgver
-  sed -i '/#include /a #include ' 
src/widgets/{tip,toolbutton}.h
-}
-
-build() {
-  cd deepin-movie-reborn-$pkgver
-  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib 
-DCMAKE_BUILD_TYPE=Release .
-  ninja
-}
-
-package() {
-  cd deepin-movie-reborn-$pkgver
-  DESTDIR="$pkgdir" ninja install
-}

Copied: deepin-movie/repos/community-x86_64/PKGBUILD (from rev 724186, 
deepin-movie/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-15 17:21:20 UTC (rev 724187)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-movie
+epoch=1
+pkgver=5.7.6.48
+pkgrel=1
+pkgdesc='Movie player based on QtAV'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-movie-reborn;
+license=('GPL3')
+depends=('deepin-qt5integration' 'mpv' 'ffmpegthumbnailer')
+makedepends=('cmake' 'ninja' 'qt5-tools')
+groups=('deepin-extra')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-movie-reborn/archive/$pkgver.tar.gz;)
+sha512sums=('91b07cde11e64cfa664936c4844956edaade0fccc1bbe2bd4423338db8b205ec6d6fb0faa6d1c094d953cb5fff458861caaf580f78c08c70fd40b8e8761895b0')
+
+prepare() {
+  cd deepin-movie-reborn-$pkgver
+  sed -i '/#include /a #include ' 
src/widgets/{tip,toolbutton}.h
+}
+
+build() {
+  cd deepin-movie-reborn-$pkgver
+  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib 
-DCMAKE_BUILD_TYPE=Release .
+  ninja
+}
+
+package() {
+  cd deepin-movie-reborn-$pkgver
+  DESTDIR="$pkgdir" ninja install
+}


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:22:08
  Author: felixonmars
Revision: 724189

archrelease: copy trunk to community-any

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

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

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

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


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:21:09
  Author: felixonmars
Revision: 724186

upgpkg: deepin-movie 1:5.7.6.48-1

Modified:
  deepin-movie/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 17:19:04 UTC (rev 724185)
+++ PKGBUILD2020-10-15 17:21:09 UTC (rev 724186)
@@ -2,7 +2,7 @@
 
 pkgname=deepin-movie
 epoch=1
-pkgver=5.7.6.47
+pkgver=5.7.6.48
 pkgrel=1
 pkgdesc='Movie player based on QtAV'
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('cmake' 'ninja' 'qt5-tools')
 groups=('deepin-extra')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-movie-reborn/archive/$pkgver.tar.gz;)
-sha512sums=('9444dd65779b2fae39713fbbab3c594673eb411dda790ad9b9a70a7aa8893ded211627149ef529e7a0c8e18a8da745e5ef05d3b858871362f9183c98eb1bbfd5')
+sha512sums=('91b07cde11e64cfa664936c4844956edaade0fccc1bbe2bd4423338db8b205ec6d6fb0faa6d1c094d953cb5fff458861caaf580f78c08c70fd40b8e8761895b0')
 
 prepare() {
   cd deepin-movie-reborn-$pkgver


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:54:57
  Author: felixonmars
Revision: 724219

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2020-10-15 Thread Morten Linderud via arch-commits
Date: Thursday, October 15, 2020 @ 13:15:30
  Author: foxboron
Revision: 724086

upgpkg: qutebrowser 1.14.0-1

Modified:
  qutebrowser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 12:51:35 UTC (rev 724085)
+++ PKGBUILD2020-10-15 13:15:30 UTC (rev 724086)
@@ -4,7 +4,7 @@
 # Contributor: Florian Bruhin (The Compiler) 
 
 pkgname=qutebrowser
-pkgver=1.13.1
+pkgver=1.14.0
 pkgrel=1
 pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
 arch=("any")
@@ -24,7 +24,7 @@
 
source=("https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz;
 
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz.asc;)
 validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
-sha256sums=('2896851f07c6258cf8991975eed200ca8477ae393a6a7a40249035b2f36ee2d8'
+sha256sums=('76eb14097bab873ffae73bb4d017b4d22aa5c4604d45f0b9570dfaed4720374a'
 'SKIP')
 
 build() {


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:24:05
  Author: felixonmars
Revision: 724192

upgpkg: haskell-aeson-diff 1.1.0.9-82: rebuild with hlint 3.2.1

Modified:
  haskell-aeson-diff/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 17:22:55 UTC (rev 724191)
+++ PKGBUILD2020-10-15 17:24:05 UTC (rev 724192)
@@ -3,7 +3,7 @@
 _hkgname=aeson-diff
 pkgname=haskell-aeson-diff
 pkgver=1.1.0.9
-pkgrel=81
+pkgrel=82
 pkgdesc="Extract and apply patches to JSON documents"
 url="https://github.com/thsutton/aeson-diff;
 license=('BSD')


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:24:15
  Author: felixonmars
Revision: 724193

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-aeson-diff/repos/community-staging-x86_64/
  haskell-aeson-diff/repos/community-staging-x86_64/PKGBUILD
(from rev 724192, haskell-aeson-diff/trunk/PKGBUILD)

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

Copied: haskell-aeson-diff/repos/community-staging-x86_64/PKGBUILD (from rev 
724192, haskell-aeson-diff/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-15 17:24:15 UTC (rev 724193)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+
+_hkgname=aeson-diff
+pkgname=haskell-aeson-diff
+pkgver=1.1.0.9
+pkgrel=82
+pkgdesc="Extract and apply patches to JSON documents"
+url="https://github.com/thsutton/aeson-diff;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-edit-distance-vector' 
'haskell-hashable'
+ 'haskell-scientific' 'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-optparse-applicative')
+makedepends=('ghc' 'haskell-doctest' 'haskell-glob' 'haskell-quickcheck'
+ 'haskell-quickcheck-instances' 'hlint')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('2778eabe53ac0520028c9eccae7f52dcdeb2eccb4df4ff6a84e4625afc5d46533ebf61b6b99c16eb5ffe9792e781b0f9a8e1e43c2b69b751d1dbc5dd627635d9')
+
+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
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 19:50:04
  Author: felixonmars
Revision: 724275

archrelease: copy trunk to community-staging-x86_64

Added:
  stack/repos/community-staging-x86_64/
  stack/repos/community-staging-x86_64/PKGBUILD
(from rev 724274, stack/trunk/PKGBUILD)
  stack/repos/community-staging-x86_64/stack.install
(from rev 724274, stack/trunk/stack.install)

---+
 PKGBUILD  |   82 
 stack.install |4 ++
 2 files changed, 86 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 724274, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-15 19:50:04 UTC (rev 724275)
@@ -0,0 +1,82 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=2.3.1
+pkgrel=158
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-casa-client'
+ 'haskell-casa-types' 'haskell-colour' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-cryptonite-conduit' 'haskell-echo'
+ 'haskell-extra' 'haskell-file-embed' 'haskell-filelock' 
'haskell-fsnotify'
+ 'haskell-generic-deriving' 'haskell-githash' 
'haskell-hackage-security' 'haskell-hashable'
+ 'haskell-hi-file-parser' 'haskell-hpack' 'haskell-http-client' 
'haskell-http-client-tls'
+ 'haskell-http-conduit' 'haskell-http-download' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-microlens' 'haskell-mintty' 'haskell-mono-traversable' 
'haskell-mustache'
+ 'haskell-neat-interpolation' 'haskell-network-uri' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'haskell-optparse-generic' 
'haskell-optparse-simple'
+ 'haskell-pantry' 'haskell-path' 'haskell-path-io' 'haskell-persistent'
+ 'haskell-persistent-sqlite' 'haskell-persistent-template' 
'haskell-primitive'
+ 'haskell-project-template' 'haskell-regex-applicative-text' 
'haskell-retry' 'haskell-rio'
+ 'haskell-rio-prettyprint' 'haskell-split' 'haskell-streaming-commons' 
'haskell-tar'
+ 'haskell-temporary' 'haskell-text-metrics' 'haskell-th-reify-many' 
'haskell-tls'
+ 'haskell-typed-process' 'haskell-unicode-transforms' 
'haskell-unix-compat'
+ 'haskell-unliftio' 'haskell-unordered-containers' 'haskell-vector' 
'haskell-yaml'
+ 'haskell-zip-archive' 'haskell-zlib')
+makedepends=('ghc' 'git' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-raw-strings-qq'
+ 'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("git+https://github.com/commercialhaskell/stack.git#tag=v$pkgver;
+
stack-pantry-0.5.patch::https://github.com/commercialhaskell/stack/pull/5281.patch)
+sha512sums=('SKIP'
+
'9998e6cdc4b80db3490d66c4392a0e9c44c58fa51371bc68fbade48aea6b21f1172905627ade8132d2733a7e4d942b597d5943a5bd3da302aa6c3be616ecd769')
+
+prepare() {
+  cd $pkgname
+  patch -p1 -i ../stack-pantry-0.5.patch
+  sed -i -e '/semigroups/d' $pkgname.cabal
+
+  sed -i 's/map show errs/map show (toList errs)/' src/Stack/SDist.hs
+}
+
+build() {
+  cd $pkgname
+
+  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 \
+  -f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions -f-supported-build \
+  --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
+  # cabal update
+  LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" 
runhaskell Setup test
+  # Integration tests will result in 4 failures on Arch currently
+}
+
+package() {
+  cd $pkgname
+
+  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
+
+  LD_PRELOAD=$(ls "$pkgdir"/usr/lib/libHSstack-*-ghc*.so) 
"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+  install 

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

2020-10-15 Thread Bruno Pagani via arch-commits
Date: Thursday, October 15, 2020 @ 16:14:45
  Author: archange
Revision: 724172

upgpkg: python-spur 0.3.22-1

Modified:
  python-spur/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 16:07:30 UTC (rev 724171)
+++ PKGBUILD2020-10-15 16:14:45 UTC (rev 724172)
@@ -2,7 +2,7 @@
 
 _pkg=spur
 pkgname=python-${_pkg}
-pkgver=0.3.21
+pkgver=0.3.22
 pkgrel=1
 pkgdesc="Run commands and manipulate files locally or over SSH using the same 
interface"
 arch=(any)
@@ -14,7 +14,7 @@
 # No tests in pypi tarballs
 
#source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
 source=(${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('fb2fbc9a875a90b9e25ae477d7791aa3011a211e33b58de47430828d2786a08f')
+sha256sums=('9b4c16675d9eda3c98b56d8886a877d8d2d310530b9396e90209ecef41e06c72')
 
 build() {
   cd ${_pkg}.py-${pkgver}


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 19:49:52
  Author: felixonmars
Revision: 724274

upgpkg: stack 2.3.1-158: rebuild with unicode-transforms 0.3.7.1

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 19:46:54 UTC (rev 724273)
+++ PKGBUILD2020-10-15 19:49:52 UTC (rev 724274)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=2.3.1
-pkgrel=157
+pkgrel=158
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("BSD")


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:22:55
  Author: felixonmars
Revision: 724191

archrelease: copy trunk to community-staging-x86_64

Added:
  hlint/repos/community-staging-x86_64/
  hlint/repos/community-staging-x86_64/PKGBUILD
(from rev 724190, hlint/trunk/PKGBUILD)

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

Copied: hlint/repos/community-staging-x86_64/PKGBUILD (from rev 724190, 
hlint/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-15 17:22:55 UTC (rev 724191)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hlint
+pkgver=3.2.1
+pkgrel=1
+pkgdesc="Source code suggestions"
+url="http://community.haskell.org/~ndm/hlint/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 'haskell-cmdargs' 
'haskell-cpphs'
+ 'haskell-data-default' 'haskell-extra' 'haskell-file-embed' 
'haskell-filepattern'
+ 'haskell-ghc' 'haskell-ghc-lib-parser-ex' 'haskell-hscolour' 
'haskell-refact'
+ 'haskell-syb' 'haskell-uniplate' 'haskell-unordered-containers' 
'haskell-utf8-string'
+ 'haskell-vector' 'haskell-yaml')
+conflicts=('haskell-hlint')
+replaces=('haskell-hlint')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('d7dfd28e19bf093af96fe1aa6b50d9958a552d7c3fd64d0a4103951e0ffe75a2cc0992f6793f4eeb8dc6bf401e7fa62335dcdafcb1f3cd38532000cc5bc52e5d')
+
+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 \
+-fgpl -fthreaded
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+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}/COPYING.BSD3"
+}


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:54:47
  Author: felixonmars
Revision: 724218

upgpkg: pandoc-citeproc 0.17.0.2-51: rebuild with hlint 3.2.1

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 17:52:37 UTC (rev 724217)
+++ PKGBUILD2020-10-15 17:54:47 UTC (rev 724218)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.17.0.2
-pkgrel=50
+pkgrel=51
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname;
 license=("BSD")


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:21:56
  Author: felixonmars
Revision: 724188

upgpkg: python-faker 4.12.0-1

Modified:
  python-faker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 17:21:20 UTC (rev 724187)
+++ PKGBUILD2020-10-15 17:21:56 UTC (rev 724188)
@@ -3,7 +3,7 @@
 # Contributor: dnuux 
 
 pkgname=python-faker
-pkgver=4.11.0
+pkgver=4.12.0
 pkgrel=1
 pkgdesc='Faker generates fake data for you.'
 arch=('any')
@@ -17,7 +17,7 @@
 checkdepends=('python-validators' 'python-ukpostcodeparser' 'python-random2'
   'python-freezegun')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/joke2k/faker/archive/v$pkgver.tar.gz;)
-sha512sums=('11719063dde5e3b9f4aa044f6fca2e602b7b64a1c004475c43d69ea1e7d346c183c7499e7d320073db6d5bdbbfcf0d8774f18b584d8dbc3214442b781df4def7')
+sha512sums=('6abc4ae6e97dcd74df9985e030d5b8c0984407dbb8f8c1df7aca8075599c36f018b6987a032aefb4a36acc7804e79d656da05abd3e4fe347b34b58451892da50')
 
 prepare() {
   sed -i -e 's/==/>=/' faker-$pkgver/setup.py


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 19:46:44
  Author: felixonmars
Revision: 724272

upgpkg: haskell-ci 0.10.3-16: rebuild with unicode-transforms 0.3.7.1

Modified:
  haskell-ci/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 19:45:45 UTC (rev 724271)
+++ PKGBUILD2020-10-15 19:46:44 UTC (rev 724272)
@@ -3,7 +3,7 @@
 _hkgname=haskell-ci
 pkgname=haskell-ci
 pkgver=0.10.3
-pkgrel=15
+pkgrel=16
 pkgdesc="Cabal package script generator for Travis-CI"
 url="https://haskell-ci.rtfd.org/;
 license=("GPL")


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 19:46:54
  Author: felixonmars
Revision: 724273

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 19:45:45
  Author: felixonmars
Revision: 724271

archrelease: copy trunk to community-staging-x86_64

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

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

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


[arch-commits] Commit in kodi-addon-visualization-waveform/repos/community-x86_64 (2 files)

2020-10-15 Thread Ike Devolder via arch-commits
Date: Thursday, October 15, 2020 @ 16:05:29
  Author: idevolder
Revision: 724169

archrelease: copy trunk to community-x86_64

Added:
  kodi-addon-visualization-waveform/repos/community-x86_64/PKGBUILD
(from rev 724168, kodi-addon-visualization-waveform/trunk/PKGBUILD)
Deleted:
  kodi-addon-visualization-waveform/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-15 16:05:23 UTC (rev 724168)
+++ PKGBUILD2020-10-15 16:05:29 UTC (rev 724169)
@@ -1,33 +0,0 @@
-# Maintainer: BlackEagle >
-
-pkgname=kodi-addon-visualization-waveform
-epoch=1
-pkgver=3.1.1
-_codename=Leia
-pkgrel=12
-pkgdesc="Waveform visualizer for Kodi"
-arch=('x86_64')
-url='https://github.com/xbmc/visualization.waveform'
-license=('GPL')
-groups=('kodi-addons' 'kodi-addons-visualization')
-depends=('kodi' 'glu' 'glm')
-makedepends=('cmake' 'kodi-dev')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/xbmc/visualization.waveform/archive/$pkgver-$_codename.tar.gz;)
-sha512sums=('0ed887c892b20fc4e162e9d7317d20ceb1cfce2db2cfcfa948995349ae8c97c33520202052d80c01d1122c50fac0772f18245aa40b4b7b7b55917fa533b65cd9')
-
-build() {
-cd "visualization.waveform-$pkgver-$_codename"
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_SHARED_LIBS=1 \
--DUSE_LTO=1 \
-.
-make
-}
-
-package() {
-cd "visualization.waveform-$pkgver-$_codename"
-make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-addon-visualization-waveform/repos/community-x86_64/PKGBUILD (from 
rev 724168, kodi-addon-visualization-waveform/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-15 16:05:29 UTC (rev 724169)
@@ -0,0 +1,33 @@
+# Maintainer: BlackEagle >
+
+pkgname=kodi-addon-visualization-waveform
+epoch=1
+pkgver=3.1.2
+_codename=Leia
+pkgrel=2
+pkgdesc="Waveform visualizer for Kodi"
+arch=('x86_64')
+url='https://github.com/xbmc/visualization.waveform'
+license=('GPL')
+groups=('kodi-addons' 'kodi-addons-visualization')
+depends=('kodi' 'glu' 'glm')
+makedepends=('cmake' 'kodi-dev')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/xbmc/visualization.waveform/archive/$pkgver-$_codename.tar.gz;)
+sha512sums=('fb81685c1b3c1b9a62cd2ad7447e50f59b9018a3d72bcbfb87f6614588ee0f2a9654fbc34b34baf8f6f8d21d39bd81f6ca4dc98f642f6032072fe7d50ee1d04d')
+
+build() {
+cd "visualization.waveform-$pkgver-$_codename"
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DUSE_LTO=1 \
+.
+make
+}
+
+package() {
+cd "visualization.waveform-$pkgver-$_codename"
+make DESTDIR="$pkgdir/" install
+}
+


[arch-commits] Commit in kodi-addon-visualization-waveform/trunk (PKGBUILD)

2020-10-15 Thread Ike Devolder via arch-commits
Date: Thursday, October 15, 2020 @ 16:05:23
  Author: idevolder
Revision: 724168

upgpkg: kodi-addon-visualization-waveform 1:3.1.2-2

Modified:
  kodi-addon-visualization-waveform/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 16:05:06 UTC (rev 724167)
+++ PKGBUILD2020-10-15 16:05:23 UTC (rev 724168)
@@ -2,9 +2,9 @@
 
 pkgname=kodi-addon-visualization-waveform
 epoch=1
-pkgver=3.1.1
+pkgver=3.1.2
 _codename=Leia
-pkgrel=12
+pkgrel=2
 pkgdesc="Waveform visualizer for Kodi"
 arch=('x86_64')
 url='https://github.com/xbmc/visualization.waveform'
@@ -13,7 +13,7 @@
 depends=('kodi' 'glu' 'glm')
 makedepends=('cmake' 'kodi-dev')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/xbmc/visualization.waveform/archive/$pkgver-$_codename.tar.gz;)
-sha512sums=('0ed887c892b20fc4e162e9d7317d20ceb1cfce2db2cfcfa948995349ae8c97c33520202052d80c01d1122c50fac0772f18245aa40b4b7b7b55917fa533b65cd9')
+sha512sums=('fb81685c1b3c1b9a62cd2ad7447e50f59b9018a3d72bcbfb87f6614588ee0f2a9654fbc34b34baf8f6f8d21d39bd81f6ca4dc98f642f6032072fe7d50ee1d04d')
 
 build() {
 cd "visualization.waveform-$pkgver-$_codename"


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 19:45:34
  Author: felixonmars
Revision: 724270

upgpkg: shellcheck 0.7.1-152: rebuild with unicode-transforms 0.3.7.1

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 19:43:15 UTC (rev 724269)
+++ PKGBUILD2020-10-15 19:45:34 UTC (rev 724270)
@@ -4,7 +4,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.7.1
-pkgrel=151
+pkgrel=152
 pkgdesc="Shell script analysis tool"
 url="https://www.shellcheck.net;
 license=("GPL")


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:18:36
  Author: felixonmars
Revision: 724182

upgpkg: glider 0.12.0-1

Modified:
  glider/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 17:16:03 UTC (rev 724181)
+++ PKGBUILD2020-10-15 17:18:36 UTC (rev 724182)
@@ -2,7 +2,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=glider
-pkgver=0.11.1
+pkgver=0.12.0
 pkgrel=1
 pkgdesc="A forward proxy with multiple protocols support"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('glibc')
 makedepends=('go' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/nadoo/glider/archive/v$pkgver.tar.gz;)
-sha512sums=('56824d6cd01fe1d2cf6850d57f847c26a73e91ab6b02b8984201a59350da365ea47d1c6edac4e6966b335d09d94807448a3d06a82ea67fa202759ba6c5ad0f38')
+sha512sums=('5b5af39f33e3e3688faaacd2d5bf414f34421eae04a57c270470410a7e2ebfcff3f2505e83e149b80959200cb7f4476b7871175b279ffe44fedd2174b99f82e7')
 
 build() {
   cd glider-$pkgver


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

2020-10-15 Thread David Runge via arch-commits
Date: Thursday, October 15, 2020 @ 14:59:42
  Author: dvzrv
Revision: 398397

archrelease: copy trunk to staging-x86_64

Added:
  libgit2-glib/repos/staging-x86_64/
  libgit2-glib/repos/staging-x86_64/PKGBUILD
(from rev 398396, libgit2-glib/trunk/PKGBUILD)
  libgit2-glib/repos/staging-x86_64/build.diff
(from rev 398396, libgit2-glib/trunk/build.diff)

+
 PKGBUILD   |   54 +
 build.diff |  245 +++
 2 files changed, 299 insertions(+)

Copied: libgit2-glib/repos/staging-x86_64/PKGBUILD (from rev 398396, 
libgit2-glib/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-10-15 14:59:42 UTC (rev 398397)
@@ -0,0 +1,54 @@
+# Maintainer: Lukas Fleischer 
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: David Runge 
+
+pkgname=libgit2-glib
+pkgver=0.99.0.1
+pkgrel=3
+pkgdesc="GLib wrapper for libgit2"
+url="https://wiki.gnome.org/Projects/Libgit2-glib;
+license=('LGPL2.1')
+arch=('x86_64')
+depends=('glibc')
+makedepends=('gobject-introspection' 'glib2' 'libgit2' 'gtk-doc' 'meson'
+'python-gobject' 'vala' 'git')
+_commit=9ee6d9a7317d367e99bbba7c4601205e003173e3  # tags/v0.99.0.1^0
+source=("git+https://gitlab.gnome.org/GNOME/libgit2-glib.git#commit=$_commit;
+build.diff)
+sha256sums=('SKIP'
+'494fb1cdba3b140c0f810d861cb210b5eec9b308dc8da5d9bb2c0088dd0893f6')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  # build fixes
+  git apply -3 ../build.diff
+}
+
+build() {
+  arch-meson $pkgname build -D gtk_doc=true
+  ninja -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  depends+=('libgio-2.0.so' 'libgit2.so' 'libglib-2.0.so' 'libgobject-2.0.so')
+  provides+=('libgit2-glib-1.0.so')
+
+  DESTDIR="$pkgdir" meson install -C build
+
+  # strip $pkgdir from embedded paths:
+  python -m compileall -d "/usr/lib" "$pkgdir/usr/lib"
+  python -O -m compileall -d "/usr/lib" "$pkgdir/usr/lib"
+
+  install -vDm 644 $pkgname/{AUTHORS,ChangeLog,NEWS,README} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}

Copied: libgit2-glib/repos/staging-x86_64/build.diff (from rev 398396, 
libgit2-glib/trunk/build.diff)
===
--- staging-x86_64/build.diff   (rev 0)
+++ staging-x86_64/build.diff   2020-10-15 14:59:42 UTC (rev 398397)
@@ -0,0 +1,245 @@
+diff --git i/examples/clone.c w/examples/clone.c
+index 8f6fc87..89622f9 100644
+--- i/examples/clone.c
 w/examples/clone.c
+@@ -16,30 +16,29 @@ typedef struct
+   GgitRemoteCallbacks parent;
+ } Cloner;
+ 
+-static void cloner_class_init (ClonerClass *klass);
++GType cloner_get_type (void);
+ 
+ G_DEFINE_TYPE (Cloner, cloner, GGIT_TYPE_REMOTE_CALLBACKS)
+ 
+ static void
+ cloner_init (Cloner *cloner)
+ {
+ }
+ 
+ static void
+ cloner_transfer_progress (GgitRemoteCallbacks   *callbacks,
+   GgitTransferProgress  *stats)
+ {
+-  guint recvobjs;
+-  guint totobjs;
+-  guint indexobjs;
++  guint recvobjs, totobjs, indexobjs;
++  guint network_percent, index_percent, kbytes;
+ 
+   recvobjs = ggit_transfer_progress_get_received_objects (stats);
+   totobjs = ggit_transfer_progress_get_total_objects (stats);
+   indexobjs = ggit_transfer_progress_get_indexed_objects (stats);
+ 
+-  guint network_percent = totobjs > 0 ? recvobjs * 100 / totobjs : 0;
+-  guint index_percent = totobjs > 0 ? indexobjs * 100 / totobjs : 0;
+-  guint kbytes = ggit_transfer_progress_get_received_bytes (stats) / 1024;
++  network_percent = totobjs > 0 ? recvobjs * 100 / totobjs : 0;
++  index_percent = totobjs > 0 ? indexobjs * 100 / totobjs : 0;
++  kbytes = ggit_transfer_progress_get_received_bytes (stats) / 1024;
+ 
+   g_printf ("\rnet %3d%% (%4d kb, %5d/%5d)  /  idx %3d%% (%5d/%5d)",
+ network_percent, kbytes,
+diff --git i/libgit2-glib/ggit-object-factory.c 
w/libgit2-glib/ggit-object-factory.c
+index 59db627..5b032cf 100644
+--- i/libgit2-glib/ggit-object-factory.c
 w/libgit2-glib/ggit-object-factory.c
+@@ -81,7 +81,7 @@ ggit_object_factory_constructor (GType  type,
+ 
+   if (the_instance)
+   {
+-  return g_object_ref (the_instance);
++  return G_OBJECT (g_object_ref (the_instance));
+   }
+ 
+   ret = G_OBJECT_CLASS (ggit_object_factory_parent_class)->constructor 
(type,
+@@ -185,26 +185,6 @@ ggit_object_factory_unregister (GgitObjectFactory 
*factory,
+   }
+ }
+ 
+-static GParameter *
+-convert_to_gparameter (GObjectConstructParam *params,
+-   guint  num)
+-{
+-  GParameter *ret;
+-  guint i;
+-
+-  ret = g_new0 (GParameter, num);
+-
+-  for (i = 0; i < 

[arch-commits] Commit in kodi-addon-game-libretro-nestopia/trunk (PKGBUILD)

2020-10-15 Thread Ike Devolder via arch-commits
Date: Thursday, October 15, 2020 @ 15:56:47
  Author: idevolder
Revision: 724132

upgpkg: kodi-addon-game-libretro-nestopia 1.50.0.11-2

Modified:
  kodi-addon-game-libretro-nestopia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 15:56:31 UTC (rev 724131)
+++ PKGBUILD2020-10-15 15:56:47 UTC (rev 724132)
@@ -1,9 +1,9 @@
 # Maintainer: BlackEagle >
 
 pkgname=kodi-addon-game-libretro-nestopia
-pkgver=1.50.0.10
+pkgver=1.50.0.11
 _codename=Leia
-pkgrel=1
+pkgrel=2
 pkgdesc="Libretro wrapper for Kodi's Game API"
 arch=('x86_64')
 url='https://github.com/kodi-game/game.libretro.nestopia'
@@ -12,7 +12,7 @@
 depends=('kodi-addon-game-libretro' 'libretro-nestopia')
 makedepends=('cmake' 'kodi-dev')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.nestopia/archive/$pkgver-$_codename.tar.gz;)
-sha512sums=('47c2345040df271301b53de2111a11f7e6e375a78617fc1cda151447110dde8703dd9b23dccea70911d27eb9116ba91fea4af7abffe19086d988835cf63b7aa6')
+sha512sums=('97adf49af64f256b33b915eb8d3ce05abc7092335a606090344e2194e6a640e489d306ce0dcacc71ee75ddd80b9191036f8aaa634ece4b6b4d0971c663f23368')
 
 build() {
 cd "game.libretro.nestopia-$pkgver-$_codename"


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:19:04
  Author: felixonmars
Revision: 724185

archrelease: copy trunk to community-x86_64

Added:
  dart/repos/community-x86_64/PKGBUILD
(from rev 724184, dart/trunk/PKGBUILD)
Deleted:
  dart/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  122 ++---
 1 file changed, 61 insertions(+), 61 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-15 17:18:52 UTC (rev 724184)
+++ PKGBUILD2020-10-15 17:19:04 UTC (rev 724185)
@@ -1,61 +0,0 @@
-# Maintainer: Alexander Rødseth 
-# Maintainer: Felix Yan 
-# Contributor: T. Jameson Little 
-# Contributor: Usagi Ito 
-# Contributor: siasia 
-# Contributor: Julien Nicoulaud 
-
-pkgname=dart
-pkgver=2.10.1
-pkgrel=1
-pkgdesc='The dart programming language SDK'
-arch=('x86_64')
-url='https://www.dartlang.org/'
-depends=('bash')
-license=('BSD')
-makedepends=('setconf')
-options=('!strip')
-source=("$pkgname-$pkgver-64.zip::https://storage.googleapis.com/dart-archive/channels/stable/release/$pkgver/sdk/dartsdk-linux-x64-release.zip;)
-sha512sums=('d52361c6ccbf67af6071f98acc4af10482b6083b91ea004dcb658920f59c2c13ddaa89f82a34cf867d50cf0f8ea33516f30e97c188d31d75c047908985f09fe7')
-
-prepare() {
-  # Fix permissions
-  find "$pkgname-sdk" -type d -exec chmod a+rx '{}' + \
--or -type f -exec chmod a+r '{}' +
-
-  cd "$pkgname-sdk/bin"
-
-  # Configure paths
-  for _f in dart2js dartanalyzer pub dartfmt dartdevc dartdoc; do
-setconf $_f BIN_DIR "/opt/$pkgname-sdk/bin"
-setconf $_f PROG_NAME "/opt/$pkgname-sdk/bin/$_f"
-setconf $_f SDK_DIR "/opt/$pkgname-sdk/"
-  done
-
-  # Extract license (AUTHORS and LICENSE files are missing)
-  head -n5 "../include/dart_api.h" > ../../LICENSE
-}
-
-package() {
-  # Create directories
-  install -d "$pkgdir"{"/opt/$pkgname-sdk",/usr/{bin,"share/doc/$pkgname-sdk"}}
-
-  # Package the files
-  cp -a "$pkgname-sdk/"* "$pkgdir/opt/$pkgname-sdk/"
-
-  # Set up symbolic links for the executables
-  for f in dart dart2js dartanalyzer pub dartfmt dartdevc dartdoc dart2native 
dartaotruntime; do
-ln -s "/opt/$pkgname-sdk/bin/$f" "$pkgdir/usr/bin/$f"
-  done
-
-  # Package samples and documentation
-  for f in samples about.html about_files; do
-echo mv "$pkgdir/opt/$pkgname-sdk/$f" "$pkgdir/usr/share/doc/$pkgname/"
-  done
-
-  # BSD License
-  install -Dm644 LICENSE \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dart/repos/community-x86_64/PKGBUILD (from rev 724184, 
dart/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-15 17:19:04 UTC (rev 724185)
@@ -0,0 +1,61 @@
+# Maintainer: Alexander Rødseth 
+# Maintainer: Felix Yan 
+# Contributor: T. Jameson Little 
+# Contributor: Usagi Ito 
+# Contributor: siasia 
+# Contributor: Julien Nicoulaud 
+
+pkgname=dart
+pkgver=2.10.2
+pkgrel=1
+pkgdesc='The dart programming language SDK'
+arch=('x86_64')
+url='https://www.dartlang.org/'
+depends=('bash')
+license=('BSD')
+makedepends=('setconf')
+options=('!strip')
+source=("$pkgname-$pkgver-64.zip::https://storage.googleapis.com/dart-archive/channels/stable/release/$pkgver/sdk/dartsdk-linux-x64-release.zip;)
+sha512sums=('91e97068ab3f2d59ae8e7d6ad592ad15e88ca65cac9b57686b71d968db0ad844624741914bacae5e443bcc83a1a180620bdfe9b0534136ed80e16de57db39d10')
+
+prepare() {
+  # Fix permissions
+  find "$pkgname-sdk" -type d -exec chmod a+rx '{}' + \
+-or -type f -exec chmod a+r '{}' +
+
+  cd "$pkgname-sdk/bin"
+
+  # Configure paths
+  for _f in dart2js dartanalyzer pub dartfmt dartdevc dartdoc; do
+setconf $_f BIN_DIR "/opt/$pkgname-sdk/bin"
+setconf $_f PROG_NAME "/opt/$pkgname-sdk/bin/$_f"
+setconf $_f SDK_DIR "/opt/$pkgname-sdk/"
+  done
+
+  # Extract license (AUTHORS and LICENSE files are missing)
+  head -n5 "../include/dart_api.h" > ../../LICENSE
+}
+
+package() {
+  # Create directories
+  install -d "$pkgdir"{"/opt/$pkgname-sdk",/usr/{bin,"share/doc/$pkgname-sdk"}}
+
+  # Package the files
+  cp -a "$pkgname-sdk/"* "$pkgdir/opt/$pkgname-sdk/"
+
+  # Set up symbolic links for the executables
+  for f in dart dart2js dartanalyzer pub dartfmt dartdevc dartdoc dart2native 
dartaotruntime; do
+ln -s "/opt/$pkgname-sdk/bin/$f" "$pkgdir/usr/bin/$f"
+  done
+
+  # Package samples and documentation
+  for f in samples about.html about_files; do
+echo mv "$pkgdir/opt/$pkgname-sdk/$f" "$pkgdir/usr/share/doc/$pkgname/"
+  done
+
+  # BSD License
+  install -Dm644 LICENSE \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:18:47
  Author: felixonmars
Revision: 724183

archrelease: copy trunk to community-x86_64

Added:
  glider/repos/community-x86_64/PKGBUILD
(from rev 724182, glider/trunk/PKGBUILD)
Deleted:
  glider/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-15 17:18:36 UTC (rev 724182)
+++ PKGBUILD2020-10-15 17:18:47 UTC (rev 724183)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Morten Linderud 
-
-pkgname=glider
-pkgver=0.11.1
-pkgrel=1
-pkgdesc="A forward proxy with multiple protocols support"
-arch=('x86_64')
-url="https://github.com/nadoo/glider;
-license=('GPL')
-depends=('glibc')
-makedepends=('go' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/nadoo/glider/archive/v$pkgver.tar.gz;)
-sha512sums=('56824d6cd01fe1d2cf6850d57f847c26a73e91ab6b02b8984201a59350da365ea47d1c6edac4e6966b335d09d94807448a3d06a82ea67fa202759ba6c5ad0f38')
-
-build() {
-  cd glider-$pkgver
-  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  go build -o glider .
-
-}
-
-check(){
-  cd glider-$pkgver
-  go test -v ./...
-}
-
-package() {
-  cd glider-$pkgver
-  install -Dm755 glider "$pkgdir"/usr/bin/glider
-  install -Dm644 config/glider.conf.example 
"$pkgdir"/etc/glider/glider.conf.example
-  install -Dm644 systemd/glider@.service 
"$pkgdir"/usr/lib/systemd/system/glider@.service
-}

Copied: glider/repos/community-x86_64/PKGBUILD (from rev 724182, 
glider/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-15 17:18:47 UTC (rev 724183)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Maintainer: Morten Linderud 
+
+pkgname=glider
+pkgver=0.12.0
+pkgrel=1
+pkgdesc="A forward proxy with multiple protocols support"
+arch=('x86_64')
+url="https://github.com/nadoo/glider;
+license=('GPL')
+depends=('glibc')
+makedepends=('go' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/nadoo/glider/archive/v$pkgver.tar.gz;)
+sha512sums=('5b5af39f33e3e3688faaacd2d5bf414f34421eae04a57c270470410a7e2ebfcff3f2505e83e149b80959200cb7f4476b7871175b279ffe44fedd2174b99f82e7')
+
+build() {
+  cd glider-$pkgver
+  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  go build -o glider .
+
+}
+
+check(){
+  cd glider-$pkgver
+  go test -v ./...
+}
+
+package() {
+  cd glider-$pkgver
+  install -Dm755 glider "$pkgdir"/usr/bin/glider
+  install -Dm644 config/glider.conf.example 
"$pkgdir"/etc/glider/glider.conf.example
+  install -Dm644 systemd/glider@.service 
"$pkgdir"/usr/lib/systemd/system/glider@.service
+}


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

2020-10-15 Thread David Runge via arch-commits
Date: Thursday, October 15, 2020 @ 14:56:10
  Author: dvzrv
Revision: 724097

upgpkg: ruby-rugged 1.1.0-1: Rebuild against libgit2 1.1.0.

Modified:
  ruby-rugged/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 14:42:21 UTC (rev 724096)
+++ PKGBUILD2020-10-15 14:56:10 UTC (rev 724097)
@@ -4,9 +4,9 @@
 
 _name=rugged
 # ideally this should match $pkgver, as package() might fail otherwise. 
thanks, github
-_libgit2_pkgver=1.0.1
+_libgit2_pkgver=1.1.0
 pkgname=ruby-rugged
-pkgver=1.0.1
+pkgver=1.1.0
 pkgrel=1
 pkgdesc='A Ruby binding to the libgit2 linkable library'
 arch=('x86_64')
@@ -18,8 +18,8 @@
 options=(!emptydirs)
 
source=("${_name}-${pkgver}.tar.gz::https://github.com/libgit2/${_name}/archive/v${pkgver}.tar.gz;
 
"libgit2-${_libgit2_pkgver}.tar.gz::https://github.com/libgit2/libgit2/archive/v${_libgit2_pkgver}.tar.gz;)
-sha512sums=('19ed757679247ee98218f201016057b27bba2f0f441348b11910ed34926f788e948ab5f35bf45e94fff6d57607a64916af8420216abe9486d9e9cc990d5d7e58'
-
'7c307822b22e3771e5e908b115600310f7901b3250287532c498003b25a5b1e007bfa23592f16ec4d83c1567a9213710526f78cab7c120316e9a8fc74c5e57a9')
+sha512sums=('0cab5d7b850451cc7d675af622986850783d1e7c209fd905aae3069f0ffbc5d9bf0d2b869614ae1b720855fb39acb042b1486e3581986daddd97dac9b3e55fbe'
+
'347bb68900181b44fa58a0417506c91383adb965607fce049a5b4c57ac9cc286e0a140d164c339b50fb6cd6951f47757c2917a2df44ba004bfaa4fb643946bb8')
 
 prepare() {
   mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"


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

2020-10-15 Thread David Runge via arch-commits
Date: Thursday, October 15, 2020 @ 14:56:24
  Author: dvzrv
Revision: 724098

archrelease: copy trunk to community-staging-x86_64

Added:
  ruby-rugged/repos/community-staging-x86_64/
  ruby-rugged/repos/community-staging-x86_64/PKGBUILD
(from rev 724097, ruby-rugged/trunk/PKGBUILD)

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

Copied: ruby-rugged/repos/community-staging-x86_64/PKGBUILD (from rev 724097, 
ruby-rugged/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-10-15 14:56:24 UTC (rev 724098)
@@ -0,0 +1,73 @@
+# Maintainer: David Runge 
+# Contributor: ChaosKid42 
+# Contributor: Andy Weidenbaum 
+
+_name=rugged
+# ideally this should match $pkgver, as package() might fail otherwise. 
thanks, github
+_libgit2_pkgver=1.1.0
+pkgname=ruby-rugged
+pkgver=1.1.0
+pkgrel=1
+pkgdesc='A Ruby binding to the libgit2 linkable library'
+arch=('x86_64')
+url="https://github.com/libgit2/rugged;
+license=('MIT')
+depends=('glibc' 'ruby')
+makedepends=('libgit2' 'ruby-minitest' 'ruby-rake' 'ruby-rake-compiler' 
'ruby-rdoc')
+checkdepends=('git')
+options=(!emptydirs)
+source=("${_name}-${pkgver}.tar.gz::https://github.com/libgit2/${_name}/archive/v${pkgver}.tar.gz;
+
"libgit2-${_libgit2_pkgver}.tar.gz::https://github.com/libgit2/libgit2/archive/v${_libgit2_pkgver}.tar.gz;)
+sha512sums=('0cab5d7b850451cc7d675af622986850783d1e7c209fd905aae3069f0ffbc5d9bf0d2b869614ae1b720855fb39acb042b1486e3581986daddd97dac9b3e55fbe'
+
'347bb68900181b44fa58a0417506c91383adb965607fce049a5b4c57ac9cc286e0a140d164c339b50fb6cd6951f47757c2917a2df44ba004bfaa4fb643946bb8')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
+  cd ${pkgname}-${pkgver}
+  # we don't do version pinning
+  sed -r 's|~>|>=|g' -i ${_name}.gemspec
+  # remove broken and useless libgit2 "version check":
+  # https://github.com/libgit2/rugged/issues/698
+  sed '68,90d' -i ext/rugged/extconf.rb
+  # source tarball doesn't include vendored libgit2 version, which is only
+  # needed for test fixtures (resources): 
https://github.com/libgit2/rugged/issues/801
+  mv -v ../libgit2-${_libgit2_pkgver}/* vendor/libgit2
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  export CI_BUILD=true
+  export RUGGED_USE_SYSTEM_LIBRARIES=true
+  export CMAKE_FLAGS=" --use-system-libraries"
+  rake compile
+  rake gem
+}
+
+check(){
+  cd "${pkgname}-${pkgver}"
+  # ConfigTest#test_read_global_config_file fails, if no gitconfig is set for
+  # user...
+  # https://github.com/libgit2/rugged/issues/432
+  git config --global user.name "Foo Bar"
+  rake test
+}
+
+package() {
+  depends+=('libgit2.so')
+  cd ${pkgname}-${pkgver}
+  local _gemdir="$(gem env gemdir)"
+  gem install --ignore-dependencies \
+  --no-user-install \
+  -i "${pkgdir}/${_gemdir}" \
+  -n "${pkgdir}/usr/bin" \
+  pkg/${_name}-${pkgver}.gem
+  install -vDm 644 "$pkgdir/$_gemdir/gems/$_name-$pkgver/LICENSE" \
+-t "${pkgdir}/usr/share/licenses/${pkgname}/"
+  install -vDm 644 README.md CHANGELOG.md -t \
+"${pkgdir}/usr/share/doc/${pkgname}"
+  # removing all unneeded stuff
+  cd "${pkgdir}/${_gemdir}"
+  rm -rvf cache gems/${_name}-${pkgver}/{ext,lib/*/*.so} \
+extensions/*/*/${_name}-${pkgver}/{mkmf.log,gem_make.out} \
+gems/${_name}-${pkgver}/vendor
+}


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

2020-10-15 Thread David Runge via arch-commits
Date: Thursday, October 15, 2020 @ 14:59:26
  Author: dvzrv
Revision: 398396

upgpkg: libgit2-glib 0.99.0.1-3: Rebuild against libgit2 1.1.0.

Modified:
  libgit2-glib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 14:48:06 UTC (rev 398395)
+++ PKGBUILD2020-10-15 14:59:26 UTC (rev 398396)
@@ -1,10 +1,10 @@
 # Maintainer: Lukas Fleischer 
 # Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: David Runge 
+# Contributor: David Runge 
 
 pkgname=libgit2-glib
 pkgver=0.99.0.1
-pkgrel=2
+pkgrel=3
 pkgdesc="GLib wrapper for libgit2"
 url="https://wiki.gnome.org/Projects/Libgit2-glib;
 license=('LGPL2.1')


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

2020-10-15 Thread Johannes Löthberg via arch-commits
Date: Thursday, October 15, 2020 @ 16:07:22
  Author: demize
Revision: 724170

upgpkg: matrix-synapse 1.21.2-1

Modified:
  matrix-synapse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 16:05:29 UTC (rev 724169)
+++ PKGBUILD2020-10-15 16:07:22 UTC (rev 724170)
@@ -2,7 +2,7 @@
 # Contributor: Ivan Shapovalov 
 
 pkgname=matrix-synapse
-pkgver=1.21.0
+pkgver=1.21.2
 pkgrel=1
 
 pkgdesc="Matrix reference homeserver"
@@ -34,7 +34,7 @@
 'sysusers-synapse.conf'
 'tmpfiles-synapse.conf')
 
-md5sums=('9221bcb264d0d9dca1bea6c70b742023'
+md5sums=('f7a3a347bdf5c0844dcf7f77f3baa246'
  'fb196dee4f38a4b19e0a160f45574032'
  'ecd9f66fb57fe1a2e1e2df07a460a35b'
  'e961c9ecad84a70345a57a7e9e6d5b09')


[arch-commits] Commit in matrix-synapse/repos (6 files)

2020-10-15 Thread Johannes Löthberg via arch-commits
Date: Thursday, October 15, 2020 @ 16:07:30
  Author: demize
Revision: 724171

archrelease: copy trunk to community-testing-any

Added:
  matrix-synapse/repos/community-testing-any/
  matrix-synapse/repos/community-testing-any/PKGBUILD
(from rev 724170, matrix-synapse/trunk/PKGBUILD)
  matrix-synapse/repos/community-testing-any/synapse.install
(from rev 724170, matrix-synapse/trunk/synapse.install)
  matrix-synapse/repos/community-testing-any/synapse.service
(from rev 724170, matrix-synapse/trunk/synapse.service)
  matrix-synapse/repos/community-testing-any/sysusers-synapse.conf
(from rev 724170, matrix-synapse/trunk/sysusers-synapse.conf)
  matrix-synapse/repos/community-testing-any/tmpfiles-synapse.conf
(from rev 724170, matrix-synapse/trunk/tmpfiles-synapse.conf)

---+
 PKGBUILD  |   66 
 synapse.install   |   38 +++
 synapse.service   |   18 +
 sysusers-synapse.conf |1 
 tmpfiles-synapse.conf |1 
 5 files changed, 124 insertions(+)

Copied: matrix-synapse/repos/community-testing-any/PKGBUILD (from rev 724170, 
matrix-synapse/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2020-10-15 16:07:30 UTC (rev 724171)
@@ -0,0 +1,66 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Ivan Shapovalov 
+
+pkgname=matrix-synapse
+pkgver=1.21.2
+pkgrel=1
+
+pkgdesc="Matrix reference homeserver"
+url="https://github.com/matrix-org/synapse;
+arch=('any')
+license=('Apache')
+
+depends=('libwebp' 'python-jsonschema' 'python-twisted' 
'python-service-identity'
+ 'python-pyopenssl' 'python-yaml' 'python-pyasn1' 'python-pynacl'
+ 'python-bcrypt' 'python-frozendict'
+ 'python-pillow' 'python-ujson'
+ 'python-pysaml2' 'python-setuptools'
+ 'python-systemd' 'python-unpaddedbase64' 'python-canonicaljson'
+ 'python-signedjson' 'python-pymacaroons'
+ 'python-service-identity' 'python-msgpack'
+ 'python-phonenumbers' 'python-prometheus_client'
+ 'python-attrs' 'python-netaddr' 'python-sortedcontainers'
+ 'python-treq' 'python-idna' 'python-jinja'
+ 'python-bleach' 'python-typing_extensions' 'systemd')
+checkdepends=('python-authlib' 'python-pyjwt' 'python-lxml' 'python-mock' 
'python-parameterized')
+optdepends=('perl: sync_room_to_group.pl'
+'python-psycopg2: PostgreSQL support'
+'python-lxml: URL previewing'
+'python-psutil: metrics'
+'python-pyjwt: jwt')
+
+source=("synapse-$pkgver.tar.gz::https://github.com/matrix-org/synapse/archive/v$pkgver.tar.gz;
+'synapse.service'
+'sysusers-synapse.conf'
+'tmpfiles-synapse.conf')
+
+md5sums=('f7a3a347bdf5c0844dcf7f77f3baa246'
+ 'fb196dee4f38a4b19e0a160f45574032'
+ 'ecd9f66fb57fe1a2e1e2df07a460a35b'
+ 'e961c9ecad84a70345a57a7e9e6d5b09')
+
+backup=('etc/synapse/log_config.yaml')
+install=synapse.install
+
+build() {
+   cd synapse-$pkgver
+   python setup.py build
+}
+
+check() {
+   cd synapse-$pkgver
+   PYTHONPATH=. trial3 tests
+}
+
+package() {
+   install -Dm644 synapse.service 
"$pkgdir"/usr/lib/systemd/system/synapse.service
+
+   cd synapse-$pkgver
+   python setup.py install --root "$pkgdir" --optimize=1 --skip-build
+
+   install -dm755 -o 198 -g 198 "$pkgdir"/etc/synapse
+
+   install -Dm644 contrib/systemd/log_config.yaml 
"$pkgdir"/etc/synapse/log_config.yaml
+   install -Dm644 "$srcdir"/sysusers-synapse.conf 
"$pkgdir"/usr/lib/sysusers.d/synapse.conf
+   install -Dm644 "$srcdir"/tmpfiles-synapse.conf 
"$pkgdir"/usr/lib/tmpfiles.d/synapse.conf
+}

Copied: matrix-synapse/repos/community-testing-any/synapse.install (from rev 
724170, matrix-synapse/trunk/synapse.install)
===
--- community-testing-any/synapse.install   (rev 0)
+++ community-testing-any/synapse.install   2020-10-15 16:07:30 UTC (rev 
724171)
@@ -0,0 +1,38 @@
+#!/bin/bash
+
+# arg 1:  the new package version
+post_install() {
+   if [[ ! -e /etc/synapse/homeserver.yaml ]]; then
+   cat <<-EOF
+   ==> A synapse configuration file needs to be generated before 
you can
+   start synapse, and you should make sure that it's readable 
by the
+   synapse user.
+
+   cd /var/lib/synapse
+   sudo -u synapse python -m synapse.app.homeserver \\
+ --server-name my.domain.name \\
+ --config-path /etc/synapse/homeserver.yaml \\
+ --generate-config \\
+ --report-stats=yes
+
+   N.B.: The default synapse config enables the 

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

2020-10-15 Thread Felix Yan via arch-commits
Date: Thursday, October 15, 2020 @ 17:18:52
  Author: felixonmars
Revision: 724184

upgpkg: dart 2.10.2-1

Modified:
  dart/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 17:18:47 UTC (rev 724183)
+++ PKGBUILD2020-10-15 17:18:52 UTC (rev 724184)
@@ -6,7 +6,7 @@
 # Contributor: Julien Nicoulaud 
 
 pkgname=dart
-pkgver=2.10.1
+pkgver=2.10.2
 pkgrel=1
 pkgdesc='The dart programming language SDK'
 arch=('x86_64')
@@ -16,7 +16,7 @@
 makedepends=('setconf')
 options=('!strip')
 
source=("$pkgname-$pkgver-64.zip::https://storage.googleapis.com/dart-archive/channels/stable/release/$pkgver/sdk/dartsdk-linux-x64-release.zip;)
-sha512sums=('d52361c6ccbf67af6071f98acc4af10482b6083b91ea004dcb658920f59c2c13ddaa89f82a34cf867d50cf0f8ea33516f30e97c188d31d75c047908985f09fe7')
+sha512sums=('91e97068ab3f2d59ae8e7d6ad592ad15e88ca65cac9b57686b71d968db0ad844624741914bacae5e443bcc83a1a180620bdfe9b0534136ed80e16de57db39d10')
 
 prepare() {
   # Fix permissions


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

2020-10-15 Thread Antonio Rojas via arch-commits
Date: Thursday, October 15, 2020 @ 14:48:06
  Author: arojas
Revision: 398395

archrelease: copy trunk to extra-x86_64

Added:
  kio/repos/extra-x86_64/PKGBUILD
(from rev 398394, kio/trunk/PKGBUILD)
Deleted:
  kio/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-15 14:47:54 UTC (rev 398394)
+++ PKGBUILD2020-10-15 14:48:06 UTC (rev 398395)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=kio
-pkgver=5.75.0
-pkgrel=1
-pkgdesc='Resource and network access abstraction'
-arch=(x86_64)
-url='https://community.kde.org/Frameworks'
-license=(LGPL)
-depends=(solid kjobwidgets kbookmarks libxslt kwallet ktextwidgets kded)
-makedepends=(extra-cmake-modules kdoctools doxygen qt5-tools qt5-doc)
-optdepends=('kio-extras: extra protocols support (sftp, fish and more)' 
'kdoctools: for the help kioslave'
-'knetattach: to add new kio-remote entries' 'kio-fuse: to mount 
remote filesystems via FUSE')
-groups=(kf5)
-source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('27af8d83d0ea6c68fc62675a0d0d34e94489e9e518c4a4c32fa9d4784510bc8e'
-'SKIP')
-validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

-
-build() {
-  cmake -B build -S $pkgname-$pkgver \
--DCMAKE_INSTALL_LIBEXECDIR=lib \
--DBUILD_TESTING=OFF \
--DBUILD_QCH=ON
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: kio/repos/extra-x86_64/PKGBUILD (from rev 398394, kio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-15 14:48:06 UTC (rev 398395)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kio
+pkgver=5.75.0
+pkgrel=2
+pkgdesc='Resource and network access abstraction'
+arch=(x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(solid kjobwidgets kbookmarks libxslt kwallet ktextwidgets kded)
+makedepends=(extra-cmake-modules kdoctools doxygen qt5-tools qt5-doc)
+optdepends=('kio-extras: extra protocols support (sftp, fish and more)' 
'kdoctools: for the help kioslave'
+'knetattach: to add new kio-remote entries' 'kio-fuse: to mount 
remote filesystems via FUSE')
+groups=(kf5)
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig}
+ https://invent.kde.org/frameworks/kio/-/commit/4321b8ff.patch)
+sha256sums=('27af8d83d0ea6c68fc62675a0d0d34e94489e9e518c4a4c32fa9d4784510bc8e'
+'SKIP'
+'6516a723e910ae34a3c8572b86e420e234f5a6a37f680ae17ce4d82e64a761e7')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

+
+prepare() {
+  patch -d $pkgname-$pkgver -p1 -i ../4321b8ff.patch # Fix selecting files 
with '#'
+}
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DCMAKE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF \
+-DBUILD_QCH=ON
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2020-10-15 Thread Antonio Rojas via arch-commits
Date: Thursday, October 15, 2020 @ 14:47:54
  Author: arojas
Revision: 398394

Fix selecting files with '#'

Modified:
  kio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-15 14:45:42 UTC (rev 398393)
+++ PKGBUILD2020-10-15 14:47:54 UTC (rev 398394)
@@ -4,7 +4,7 @@
 
 pkgname=kio
 pkgver=5.75.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Resource and network access abstraction'
 arch=(x86_64)
 url='https://community.kde.org/Frameworks'
@@ -14,11 +14,17 @@
 optdepends=('kio-extras: extra protocols support (sftp, fish and more)' 
'kdoctools: for the help kioslave'
 'knetattach: to add new kio-remote entries' 'kio-fuse: to mount 
remote filesystems via FUSE')
 groups=(kf5)
-source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig})
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig}
+ https://invent.kde.org/frameworks/kio/-/commit/4321b8ff.patch)
 sha256sums=('27af8d83d0ea6c68fc62675a0d0d34e94489e9e518c4a4c32fa9d4784510bc8e'
-'SKIP')
+'SKIP'
+'6516a723e910ae34a3c8572b86e420e234f5a6a37f680ae17ce4d82e64a761e7')
 validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

 
+prepare() {
+  patch -d $pkgname-$pkgver -p1 -i ../4321b8ff.patch # Fix selecting files 
with '#'
+}
+
 build() {
   cmake -B build -S $pkgname-$pkgver \
 -DCMAKE_INSTALL_LIBEXECDIR=lib \


[arch-commits] Commit in kodi-addon-game-libretro-snes9x/repos/community-x86_64 (2 files)

2020-10-15 Thread Ike Devolder via arch-commits
Date: Thursday, October 15, 2020 @ 15:58:13
  Author: idevolder
Revision: 724139

archrelease: copy trunk to community-x86_64

Added:
  kodi-addon-game-libretro-snes9x/repos/community-x86_64/PKGBUILD
(from rev 724138, kodi-addon-game-libretro-snes9x/trunk/PKGBUILD)
Deleted:
  kodi-addon-game-libretro-snes9x/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-15 15:58:06 UTC (rev 724138)
+++ PKGBUILD2020-10-15 15:58:13 UTC (rev 724139)
@@ -1,32 +0,0 @@
-# Maintainer: BlackEagle >
-
-pkgname=kodi-addon-game-libretro-snes9x
-pkgver=1.60.0.13
-_codename=Leia
-pkgrel=1
-pkgdesc="Libretro wrapper for Kodi's Game API"
-arch=('x86_64')
-url='https://github.com/kodi-game/game.libretro.snes9x'
-license=('GPL')
-groups=('kodi-addons' 'kodi-addons-game')
-depends=('kodi-addon-game-libretro' 'libretro-snes9x')
-makedepends=('cmake' 'kodi-dev')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.snes9x/archive/$pkgver-$_codename.tar.gz;)
-sha512sums=('0f7bea57e0a9cbdf5d340bb76ea20cbc88338e07a4a379bc8d3d61be633177369249eb306197193364a5fd974ad5c6be2af2365ce4b12774ea0abaad0bc7fabc')
-
-build() {
-cd "game.libretro.snes9x-$pkgver-$_codename"
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_SHARED_LIBS=1 \
--DUSE_LTO=1 \
-.
-make
-}
-
-package() {
-cd "game.libretro.snes9x-$pkgver-$_codename"
-   make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-addon-game-libretro-snes9x/repos/community-x86_64/PKGBUILD (from 
rev 724138, kodi-addon-game-libretro-snes9x/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-15 15:58:13 UTC (rev 724139)
@@ -0,0 +1,32 @@
+# Maintainer: BlackEagle >
+
+pkgname=kodi-addon-game-libretro-snes9x
+pkgver=1.60.0.14
+_codename=Leia
+pkgrel=2
+pkgdesc="Libretro wrapper for Kodi's Game API"
+arch=('x86_64')
+url='https://github.com/kodi-game/game.libretro.snes9x'
+license=('GPL')
+groups=('kodi-addons' 'kodi-addons-game')
+depends=('kodi-addon-game-libretro' 'libretro-snes9x')
+makedepends=('cmake' 'kodi-dev')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/kodi-game/game.libretro.snes9x/archive/$pkgver-$_codename.tar.gz;)
+sha512sums=('8131816ca3103f0c9b588bb6378f743e42ef8d985fa56549985f0475e5ecfa969464e2bbd20a1328b28bd2f7c4b094241f4bfd0c41663e8f1bbf353dddaa8360')
+
+build() {
+cd "game.libretro.snes9x-$pkgver-$_codename"
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DUSE_LTO=1 \
+.
+make
+}
+
+package() {
+cd "game.libretro.snes9x-$pkgver-$_codename"
+   make DESTDIR="$pkgdir/" install
+}
+


  1   2   3   >