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

2019-08-24 Thread Felix Yan via arch-commits
Date: Sunday, August 25, 2019 @ 00:23:21
  Author: felixonmars
Revision: 501625

archrelease: copy trunk to community-staging-x86_64

Added:
  root/repos/community-staging-x86_64/
  root/repos/community-staging-x86_64/PKGBUILD
(from rev 501624, root/trunk/PKGBUILD)
  root/repos/community-staging-x86_64/root.xml
(from rev 501624, root/trunk/root.xml)
  root/repos/community-staging-x86_64/rootd
(from rev 501624, root/trunk/rootd)
  root/repos/community-staging-x86_64/settings-cuda.cmake
(from rev 501624, root/trunk/settings-cuda.cmake)
  root/repos/community-staging-x86_64/settings.cmake
(from rev 501624, root/trunk/settings.cmake)

-+
 PKGBUILD|  224 ++
 root.xml|   14 +++
 rootd   |   37 
 settings-cuda.cmake |   99 ++
 settings.cmake  |   98 +
 5 files changed, 472 insertions(+)

Copied: root/repos/community-staging-x86_64/PKGBUILD (from rev 501624, 
root/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-25 00:23:21 UTC (rev 501625)
@@ -0,0 +1,224 @@
+# Maintainer: Konstantin Gizdov < arch at kge dot pw >
+# Contributor: Frank Siegert < frank.siegert at googlemail dot com >
+# Contributor: Scott Lawrence < bytbox at gmail dot com >
+# Contributor: Thomas Dziedzic < gostrc at gmail dot com >
+# Contributor: Sebastian Voecking < voeck at web dot de >
+
+pkgbase=root
+pkgname=('root' 'root-cuda')
+pkgver=6.18.00
+pkgrel=4
+pkgdesc='C++ data analysis framework and interpreter from CERN'
+arch=('x86_64')
+url='https://root.cern.ch'
+license=('LGPL2.1')
+makedepends=('ccache'
+ 'cern-vdt'
+ 'cfitsio'
+ 'cmake'
+ 'cuda'
+ 'fcgi'
+ 'fftw'
+ 'ftgl'
+ 'blas'
+ 'gcc-fortran'
+ 'gcc8'
+ 'gcc8-fortran'
+ 'giflib'
+ 'git'
+ 'gl2ps'
+ 'glew'
+ 'go-pie'
+ 'gsl'
+ 'hicolor-icon-theme'
+ 'intel-tbb'
+ 'libafterimage'
+ 'libmariadbclient'
+ 'librsvg'
+ 'libxpm'
+ 'ocaml'
+ 'ocaml-ctypes'
+ 'openssl'
+ 'postgresql-libs'
+ 'pythia8>=8.2.40-1'
+ 'python'
+ 'python-numpy'
+ 'sqlite'
+ 'tex-gyre-fonts'
+ 'unuran'
+ 'vc'
+ 'xmlrpc-c'
+ 'xrootd>=4.6.0-2'
+ 'xxhash>=0.6.5-1'
+ 'z3')
+depends=('blas'
+ 'desktop-file-utils'
+ 'fcgi'
+ 'fftw'
+ 'ftgl'
+ 'giflib'
+ 'gl2ps'
+ 'glew'
+ 'graphviz'
+ 'gsl'
+ 'hicolor-icon-theme'
+ 'intel-tbb'
+ 'libafterimage'
+ 'librsvg'
+ 'libxpm'
+ 'tex-gyre-fonts'
+ 'unixodbc'
+ 'xxhash>=0.6.5-1')
+optdepends=('cfitsio: Read images and data from FITS files'
+'cern-vdt: Add a set of fast and vectorisable mathematical 
functions'
+'libmariadbclient: MySQL support'
+'openssl: OpenSSL support'
+'postgresql-libs: PostgreSQL support'
+'pythia8>=8.2.40-1: Pythia8 EG support'
+'sqlite: SQLite support'
+'tcsh: Legacy CSH support'
+'unuran: Support non-uniform random numbers'
+'vc: Add types for portable and intuitive SIMD programming'
+'libxml2: XML parser interface'
+'xrootd: Support remote file server and client')
+source=("https://root.cern.ch/download/root_v${pkgver}.source.tar.gz;
+'root.xml'
+'rootd'
+'settings.cmake'
+'settings-cuda.cmake')
+sha256sums=('e6698d6cfe585f186490b667163db65e7d1b92a2447658d77fa831096383ea71'
+'50c08191a5b281a39aa05ace4feb8d5405707b4c54a5dcba061f954649c38cb0'
+'3c45b03761d5254142710b7004af0077f18efece7c95511910140d0542c8de8a'
+'4214201976d25801aab9b3306984e8b523e9c0e7995766728484f241bcaef397'
+'6dd2b669aa76e371475001ee603d699e49c155c21f97bf3da12e33c22bc98126')
+get_pyver () {
+python -c 'import sys; print(str(sys.version_info[0]) + "." + 
str(sys.version_info[1]))'
+}
+prepare() {
+# cd "${srcdir}/${pkgbase}-${pkgver}"
+
+2to3 -w "${srcdir}/${pkgbase}-${pkgver}"/etc/dictpch/makepch.py 2>&1 > 
/dev/null
+
+# don't let ROOT play around with lib paths
+sed -i -e 's@SetLibraryPath();@@g' \
+"${srcdir}/${pkgbase}-${pkgver}/rootx/src/rootx.cxx"
+
+cp -r "${pkgbase}-${pkgver}" "${pkgbase}-${pkgver}-cuda"
+}
+
+build() {
+## ROOT
+mkdir -p "${srcdir}/build"
+cd "${srcdir}/build"
+
+CFLAGS="${CFLAGS} -pthread" \
+

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

2019-08-24 Thread Felix Yan via arch-commits
Date: Sunday, August 25, 2019 @ 00:20:31
  Author: felixonmars
Revision: 501624

gsl 2.6 rebuild

Modified:
  root/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 23:42:47 UTC (rev 501623)
+++ PKGBUILD2019-08-25 00:20:31 UTC (rev 501624)
@@ -7,7 +7,7 @@
 pkgbase=root
 pkgname=('root' 'root-cuda')
 pkgver=6.18.00
-pkgrel=3
+pkgrel=4
 pkgdesc='C++ data analysis framework and interpreter from CERN'
 arch=('x86_64')
 url='https://root.cern.ch'


[arch-commits] Commit in tachyon/trunk (PKGBUILD tachyon-system-cflags.patch)

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 23:42:08
  Author: arojas
Revision: 501622

Switch to sagemath tarball since upstream is gone (FS#63506), enforce system 
build flags

Added:
  tachyon/trunk/tachyon-system-cflags.patch
Modified:
  tachyon/trunk/PKGBUILD

-+
 PKGBUILD|   36 
 tachyon-system-cflags.patch |   17 +
 2 files changed, 33 insertions(+), 20 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 22:49:02 UTC (rev 501621)
+++ PKGBUILD2019-08-24 23:42:08 UTC (rev 501622)
@@ -3,7 +3,7 @@
 
 pkgname=tachyon
 pkgver=0.98.9
-pkgrel=5
+pkgrel=6
 pkgdesc="Multithreaded ray tracing software"
 arch=(x86_64)
 url="http://jedi.ks.uiuc.edu/~johns/raytracer/;
@@ -10,36 +10,32 @@
 license=(BSD)
 depends=(libjpeg-turbo libpng)
 makedepends=()
-source=("http://jedi.ks.uiuc.edu/~johns/raytracer/files/$pkgver/$pkgname-$pkgver.tar.gz;
 'enable-jpeg-png.patch')
-sha256sums=('c6a3298ded4dc3e9390447819e1dac59b62c3d2d46d4154312ffe71549ee40d7'
-'ecd6ab6274879e0f971e2eba17871fffe2e24dcc9a332013a0b100ee4857cc2c')
+#source=("http://jedi.ks.uiuc.edu/~johns/raytracer/files/$pkgver/$pkgname-$pkgver.tar.gz;
 'enable-jpeg-png.patch')
+source=("https://mirrors.mit.edu/sage/spkg/upstream/tachyon/tachyon-$pkgver.tar.bz2;
 enable-jpeg-png.patch tachyon-system-cflags.patch)
+sha256sums=('ea410610e2726dca32f40f31ff34a83cb474b41e5a1e0ac8bbb175e1a466'
+'ecd6ab6274879e0f971e2eba17871fffe2e24dcc9a332013a0b100ee4857cc2c'
+'34f703af96afe117c851a5825b7fd6b71211c09e4a8c3b836d012d250bb6918f')
+_target=linux-64-thr
 
-case "$CARCH" in
-  "i686") _target=linux-thr ;;
-  "x86_64") _target=linux-64-thr ;;
-esac
-
 prepare(){
-  cd $pkgname
+  cd $pkgname-$pkgver
 # enable JPEG and PNG support
-  patch -p0 -i "$srcdir"/enable-jpeg-png.patch
+  patch -p0 -i ../enable-jpeg-png.patch
+# use system build flags
+  patch -p1 -i ../tachyon-system-cflags.patch
+  sed -e 's|${CC} ${CFLAGS}|${CC} ${CFLAGS} ${LDFLAGS}|g' -i unix/Makefile
 }
 
 build() {
-  cd $pkgname/unix
-  make $_target
+  cd $pkgname-$pkgver/unix
+  make $_target CC="gcc ${CFLAGS} ${LDFLAGS}"
 }
 
 package() {
-  cd $pkgname/compile/$_target
+  cd $pkgname-$pkgver/compile/$_target
   install -D -m 755 tachyon $pkgdir/usr/bin/tachyon
   install -D -m 644 libtachyon.a $pkgdir/usr/lib/libtachyon.a
 
-  cd $srcdir/$pkgname/scenes
-  install -d "$pkgdir"/usr/share/tachyon/scenes/imaps
-  install -m 644 README *.dat *.cam *.ac "$pkgdir"/usr/share/tachyon/scenes
-  install -m 644 imaps/* "$pkgdir"/usr/share/tachyon/scenes/imaps
-
   install -d "$pkgdir"/usr/share/licenses/tachyon
-  install $srcdir/$pkgname/Copyright "$pkgdir"/usr/share/licenses/tachyon
+  install "$srcdir"/$pkgname-$pkgver/Copyright 
"$pkgdir"/usr/share/licenses/tachyon
 }

Added: tachyon-system-cflags.patch
===
--- tachyon-system-cflags.patch (rev 0)
+++ tachyon-system-cflags.patch 2019-08-24 23:42:08 UTC (rev 501622)
@@ -0,0 +1,17 @@
+--- tachyon/unix/Make-arch.orig2019-08-24 23:13:05.136655180 +
 tachyon/unix/Make-arch 2019-08-24 23:13:36.057062493 +
+@@ -1217,12 +1217,12 @@
+   $(MAKE) all \
+   "ARCH = linux-64-thr" \
+   "CC = gcc" \
+-  "CFLAGS = -m64 -Wall -O3 -fomit-frame-pointer -ffast-math -DLinux 
-DLP64 -DTHR -D_REENTRANT $(MISCFLAGS)" \
++  "CFLAGS = $(CFLAGS) -DLinux -DLP64 -DTHR -D_REENTRANT $(MISCFLAGS)" \
+   "AR = ar" \
+   "ARFLAGS = r" \
+   "STRIP = strip" \
+   "RANLIB = ranlib" \
+-  "LIBS = -L. -ltachyon $(MISCLIB) -lm -lpthread"
++  "LIBS = -L. -ltachyon $(MISCLIB) -lm -lpthread" "LDFLAGS = $(LDFLAGS)"
+ 
+ # Linux x86, on AMD Athlon, using gcc
+ linux-p4:


[arch-commits] Commit in tachyon/repos/community-x86_64 (5 files)

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 23:42:47
  Author: arojas
Revision: 501623

archrelease: copy trunk to community-x86_64

Added:
  tachyon/repos/community-x86_64/PKGBUILD
(from rev 501622, tachyon/trunk/PKGBUILD)
  tachyon/repos/community-x86_64/enable-jpeg-png.patch
(from rev 501622, tachyon/trunk/enable-jpeg-png.patch)
  tachyon/repos/community-x86_64/tachyon-system-cflags.patch
(from rev 501622, tachyon/trunk/tachyon-system-cflags.patch)
Deleted:
  tachyon/repos/community-x86_64/PKGBUILD
  tachyon/repos/community-x86_64/enable-jpeg-png.patch

-+
 PKGBUILD|   86 +++--
 enable-jpeg-png.patch   |   88 +-
 tachyon-system-cflags.patch |   17 
 3 files changed, 102 insertions(+), 89 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-24 23:42:08 UTC (rev 501622)
+++ PKGBUILD2019-08-24 23:42:47 UTC (rev 501623)
@@ -1,45 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Rémy Oudompheng 
-
-pkgname=tachyon
-pkgver=0.98.9
-pkgrel=5
-pkgdesc="Multithreaded ray tracing software"
-arch=(x86_64)
-url="http://jedi.ks.uiuc.edu/~johns/raytracer/;
-license=(BSD)
-depends=(libjpeg-turbo libpng)
-makedepends=()
-source=("http://jedi.ks.uiuc.edu/~johns/raytracer/files/$pkgver/$pkgname-$pkgver.tar.gz;
 'enable-jpeg-png.patch')
-sha256sums=('c6a3298ded4dc3e9390447819e1dac59b62c3d2d46d4154312ffe71549ee40d7'
-'ecd6ab6274879e0f971e2eba17871fffe2e24dcc9a332013a0b100ee4857cc2c')
-
-case "$CARCH" in
-  "i686") _target=linux-thr ;;
-  "x86_64") _target=linux-64-thr ;;
-esac
-
-prepare(){
-  cd $pkgname
-# enable JPEG and PNG support
-  patch -p0 -i "$srcdir"/enable-jpeg-png.patch
-}
-
-build() {
-  cd $pkgname/unix
-  make $_target
-}
-
-package() {
-  cd $pkgname/compile/$_target
-  install -D -m 755 tachyon $pkgdir/usr/bin/tachyon
-  install -D -m 644 libtachyon.a $pkgdir/usr/lib/libtachyon.a
-
-  cd $srcdir/$pkgname/scenes
-  install -d "$pkgdir"/usr/share/tachyon/scenes/imaps
-  install -m 644 README *.dat *.cam *.ac "$pkgdir"/usr/share/tachyon/scenes
-  install -m 644 imaps/* "$pkgdir"/usr/share/tachyon/scenes/imaps
-
-  install -d "$pkgdir"/usr/share/licenses/tachyon
-  install $srcdir/$pkgname/Copyright "$pkgdir"/usr/share/licenses/tachyon
-}

Copied: tachyon/repos/community-x86_64/PKGBUILD (from rev 501622, 
tachyon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-24 23:42:47 UTC (rev 501623)
@@ -0,0 +1,41 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Rémy Oudompheng 
+
+pkgname=tachyon
+pkgver=0.98.9
+pkgrel=6
+pkgdesc="Multithreaded ray tracing software"
+arch=(x86_64)
+url="http://jedi.ks.uiuc.edu/~johns/raytracer/;
+license=(BSD)
+depends=(libjpeg-turbo libpng)
+makedepends=()
+#source=("http://jedi.ks.uiuc.edu/~johns/raytracer/files/$pkgver/$pkgname-$pkgver.tar.gz;
 'enable-jpeg-png.patch')
+source=("https://mirrors.mit.edu/sage/spkg/upstream/tachyon/tachyon-$pkgver.tar.bz2;
 enable-jpeg-png.patch tachyon-system-cflags.patch)
+sha256sums=('ea410610e2726dca32f40f31ff34a83cb474b41e5a1e0ac8bbb175e1a466'
+'ecd6ab6274879e0f971e2eba17871fffe2e24dcc9a332013a0b100ee4857cc2c'
+'34f703af96afe117c851a5825b7fd6b71211c09e4a8c3b836d012d250bb6918f')
+_target=linux-64-thr
+
+prepare(){
+  cd $pkgname-$pkgver
+# enable JPEG and PNG support
+  patch -p0 -i ../enable-jpeg-png.patch
+# use system build flags
+  patch -p1 -i ../tachyon-system-cflags.patch
+  sed -e 's|${CC} ${CFLAGS}|${CC} ${CFLAGS} ${LDFLAGS}|g' -i unix/Makefile
+}
+
+build() {
+  cd $pkgname-$pkgver/unix
+  make $_target CC="gcc ${CFLAGS} ${LDFLAGS}"
+}
+
+package() {
+  cd $pkgname-$pkgver/compile/$_target
+  install -D -m 755 tachyon $pkgdir/usr/bin/tachyon
+  install -D -m 644 libtachyon.a $pkgdir/usr/lib/libtachyon.a
+
+  install -d "$pkgdir"/usr/share/licenses/tachyon
+  install "$srcdir"/$pkgname-$pkgver/Copyright 
"$pkgdir"/usr/share/licenses/tachyon
+}

Deleted: enable-jpeg-png.patch
===
--- enable-jpeg-png.patch   2019-08-24 23:42:08 UTC (rev 501622)
+++ enable-jpeg-png.patch   2019-08-24 23:42:47 UTC (rev 501623)
@@ -1,44 +0,0 @@
 unix/Make-config.orig  2015-01-08 20:45:17.968890865 +0100
-+++ unix/Make-config   2015-01-08 20:46:16.223075085 +0100
-@@ -108,14 +108,14 @@
- #   http://www.ijg.org/files/
- ##
- # Uncomment the following lines to disable JPEG support
--USEJPEG=
--JPEGINC=
--JPEGLIB=
-+#USEJPEG=
-+#JPEGINC=
-+#JPEGLIB=
- 
- # Uncomment the following lines to enable JPEG support
--#USEJPEG= -DUSEJPEG
--#JPEGINC= -I/usr/local/include
--#JPEGLIB= -L/usr/local/lib -ljpeg
-+USEJPEG= -DUSEJPEG
-+JPEGINC= -I/usr/include
-+JPEGLIB= 

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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 22:49:02
  Author: arojas
Revision: 501621

archrelease: copy trunk to community-any

Added:
  pdfarranger/repos/community-any/PKGBUILD
(from rev 501620, pdfarranger/trunk/PKGBUILD)
Deleted:
  pdfarranger/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-24 22:48:42 UTC (rev 501620)
+++ PKGBUILD2019-08-24 22:49:02 UTC (rev 501621)
@@ -1,25 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Alois Nespor 
-
-pkgname=pdfarranger
-pkgver=1.3.0
-pkgrel=1
-pkgdesc='Helps merge or split PDF documents and rotate, crop and rearrange 
pages'
-arch=(any)
-url='https://github.com/jeromerobert/pdfarranger'
-license=('GPL3')
-source=($pkgname-$pkgver.tar.gz::https://github.com/jeromerobert/pdfarranger/archive/$pkgver.tar.gz)
-depends=(gtk3 python-gobject python-cairo python-pikepdf ghostscript 
python-setuptools)
-makedepends=(python-distutils-extra)
-sha256sums=('ead7943ad08438677503892f763d69945c0938dc4cb443906e3cfd6f00c747fe')
-
-build () {
-  cd $pkgname-$pkgver
-  python setup.py build
-}
-
-package () {
-  cd $pkgname-$pkgver
-  python setup.py install --root="$pkgdir"
-}
-

Copied: pdfarranger/repos/community-any/PKGBUILD (from rev 501620, 
pdfarranger/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-24 22:49:02 UTC (rev 501621)
@@ -0,0 +1,25 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Alois Nespor 
+
+pkgname=pdfarranger
+pkgver=1.3.0
+pkgrel=2
+pkgdesc='Helps merge or split PDF documents and rotate, crop and rearrange 
pages'
+arch=(any)
+url='https://github.com/jeromerobert/pdfarranger'
+license=('GPL3')
+source=($pkgname-$pkgver.tar.gz::https://github.com/jeromerobert/pdfarranger/archive/$pkgver.tar.gz)
+depends=(gtk3 python-gobject python-cairo python-pikepdf ghostscript 
python-setuptools poppler-glib)
+makedepends=(python-distutils-extra)
+sha256sums=('ead7943ad08438677503892f763d69945c0938dc4cb443906e3cfd6f00c747fe')
+
+build () {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+package () {
+  cd $pkgname-$pkgver
+  python setup.py install --root="$pkgdir"
+}
+


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 22:48:42
  Author: arojas
Revision: 501620

Add missing poppler-glib dependency (FS#63523)

Modified:
  pdfarranger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 22:37:43 UTC (rev 501619)
+++ PKGBUILD2019-08-24 22:48:42 UTC (rev 501620)
@@ -3,13 +3,13 @@
 
 pkgname=pdfarranger
 pkgver=1.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Helps merge or split PDF documents and rotate, crop and rearrange 
pages'
 arch=(any)
 url='https://github.com/jeromerobert/pdfarranger'
 license=('GPL3')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/jeromerobert/pdfarranger/archive/$pkgver.tar.gz)
-depends=(gtk3 python-gobject python-cairo python-pikepdf ghostscript 
python-setuptools)
+depends=(gtk3 python-gobject python-cairo python-pikepdf ghostscript 
python-setuptools poppler-glib)
 makedepends=(python-distutils-extra)
 sha256sums=('ead7943ad08438677503892f763d69945c0938dc4cb443906e3cfd6f00c747fe')
 


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 22:45:22
  Author: foutrelis
Revision: 361130

archrelease: copy trunk to staging-x86_64

Added:
  asymptote/repos/staging-x86_64/
  asymptote/repos/staging-x86_64/PKGBUILD
(from rev 361129, asymptote/trunk/PKGBUILD)

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

Copied: asymptote/repos/staging-x86_64/PKGBUILD (from rev 361129, 
asymptote/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-24 22:45:22 UTC (rev 361130)
@@ -0,0 +1,62 @@
+# Maintainer: Rémy Oudompheng 
+# Contributor: Firmicus 
+# Contributor: bender02 at gmx dot com
+
+pkgname=asymptote
+pkgver=2.47+14+g38a59370
+pkgrel=3
+pkgdesc="A vector graphics language (like metapost)"
+arch=('x86_64')
+url="http://asymptote.sourceforge.net/;
+license=("GPL3")
+depends=('texlive-core' 'gc' 'freeglut' 'glu' 'gsl' 'fftw' 'libsigsegv')
+makedepends=('git' 'ghostscript' 'imagemagick'
+ 'mesa'   # For OpenGL headers
+ 'texlive-plainextra' # For texinfo
+ 'python-pyqt5'   # For xasy GUI generation
+)
+optdepends=('python-pyqt5: for the xasy GUI'
+'python-cson:  for the xasy GUI')
+#source=("https://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.src.tgz;)
+#sha1sums=('89b6eaf4148ebe9cae61a171a7a7ce24f38a7cbb')
+_commit=38a59370dc5ac720c29e1424614a10f7384b943f
+source=("git+https://github.com/vectorgraphics/asymptote#commit=$_commit;)
+sha1sums=(SKIP)
+
+prepare() {
+  cd "${srcdir}/${pkgname}"
+  ./autogen.sh
+}
+
+build() {
+  cd "${srcdir}/${pkgname}"
+
+  ./configure --enable-gc=/usr \
+  --prefix=/usr \
+  --with-latex=/usr/share/texmf/tex/latex \
+  --with-context=/usr/share/texmf/tex/context \
+  --enable-offscreen
+  make all
+}
+
+check() {
+  cd "${srcdir}/${pkgname}"
+  make check-all
+}
+
+package() {
+  cd "${srcdir}/${pkgname}"
+  make -j1 DESTDIR="${pkgdir}" install-all
+  # this dir contains png files that are already embedded in the pdf 
documentation:
+  rm -rf ${pkgdir}/usr/share/info/asymptote
+
+  # copy some data files to their correct location
+  mkdir -p "$pkgdir"/usr/share/emacs/site-lisp
+  cp "$pkgdir"/usr/share/asymptote/*.el "$pkgdir"/usr/share/emacs/site-lisp
+  mkdir -p "$pkgdir"/usr/share/vim/vimfiles/syntax
+  cp "$pkgdir"/usr/share/asymptote/*.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax
+  mkdir -p "$pkgdir"/usr/share/org.kde.syntax-highlighting/syntax
+  cd "$pkgdir"/usr/share/asymptote/
+  sh asy-kate.sh
+  mv asymptote.xml "$pkgdir"/usr/share/org.kde.syntax-highlighting/syntax
+}


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 22:45:15
  Author: foutrelis
Revision: 361129

gsl 2.6 rebuild

Modified:
  asymptote/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 22:31:28 UTC (rev 361128)
+++ PKGBUILD2019-08-24 22:45:15 UTC (rev 361129)
@@ -4,7 +4,7 @@
 
 pkgname=asymptote
 pkgver=2.47+14+g38a59370
-pkgrel=2
+pkgrel=3
 pkgdesc="A vector graphics language (like metapost)"
 arch=('x86_64')
 url="http://asymptote.sourceforge.net/;


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 22:37:37
  Author: foutrelis
Revision: 501618

gsl 2.6 rebuild

Modified:
  qgis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 22:36:38 UTC (rev 501617)
+++ PKGBUILD2019-08-24 22:37:37 UTC (rev 501618)
@@ -10,7 +10,7 @@
 
 pkgname=qgis
 pkgver=3.8.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Geographic Information System (GIS) that supports vector, raster & 
database formats'
 url='https://qgis.org/'
 license=(GPL)


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 22:37:43
  Author: foutrelis
Revision: 501619

archrelease: copy trunk to community-staging-x86_64

Added:
  qgis/repos/community-staging-x86_64/
  qgis/repos/community-staging-x86_64/PKGBUILD
(from rev 501618, qgis/trunk/PKGBUILD)
  qgis/repos/community-staging-x86_64/qt-5.13.patch
(from rev 501618, qgis/trunk/qt-5.13.patch)

---+
 PKGBUILD  |   61 
 qt-5.13.patch |   22 
 2 files changed, 83 insertions(+)

Copied: qgis/repos/community-staging-x86_64/PKGBUILD (from rev 501618, 
qgis/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-24 22:37:43 UTC (rev 501619)
@@ -0,0 +1,61 @@
+# Maintainer: Balló György 
+# Contributor: Doug Newgard 
+# Contributor: XavierCLL 
+# Contributor: SaultDon 
+# Contributor: Lantald < lantald at gmx.com >
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
+# Contributor: Gerardo Exequiel Pozzi 
+# Contributor: Eric Forgeot < http://esclinux.tk >
+
+pkgname=qgis
+pkgver=3.8.0
+pkgrel=2
+pkgdesc='Geographic Information System (GIS) that supports vector, raster & 
database formats'
+url='https://qgis.org/'
+license=(GPL)
+arch=(x86_64)
+depends=(desktop-file-utils exiv2 gdal hicolor-icon-theme libzip 
python-qscintilla-qt5 qca qt5-3d
+ qt5-serialport qt5-webkit qtkeychain qwtpolar spatialindex python-sip)
+makedepends=(cmake fcgi gsl python-six qt5-tools txt2tags sip)
+optdepends=('fcgi: Map server'
+'gpsbabel: GPS Tools plugin'
+'gsl: Georeferencer plugin'
+'python-gdal: DB Manager plugin; Processing plugin'
+'python-jinja: MetaSearch plugin'
+'python-owslib: MetaSearch plugin'
+'python-psycopg2: DB Manager plugin; Processing plugin'
+'python-pygments: MetaSearch plugin'
+'python-numpy: Processing plugin'
+'python-yaml: Processing plugin')
+source=("https://qgis.org/downloads/$pkgname-$pkgver.tar.bz2;
+qt-5.13.patch)
+sha256sums=('a28ff8cec27e1160ddfd331bc58f190f4dd581222a51b32eece7cd7ca8b8fc03'
+'2798a8c2d2dfbe18e05a4c44611291d9688dddac3e000dc95f4c8893e0fbfe93')
+
+prepare() {
+  [[ -d build ]] || mkdir build
+
+  cd $pkgname-$pkgver
+  # Fix build with Qt 5.13
+  patch -Np1 -i ../qt-5.13.patch
+}
+
+build() {
+  cd build
+  cmake -G "Unix Makefiles" ../$pkgname-$pkgver/ \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_3D=TRUE \
+-DWITH_SERVER=TRUE \
+-DWITH_CUSTOM_WIDGETS=TRUE \
+-DBINDINGS_GLOBAL_INSTALL=TRUE \
+-DQGIS_MANUAL_SUBDIR=share/man \
+-DWITH_QWTPOLAR=TRUE \
+-DWITH_INTERNAL_QWTPOLAR=FALSE
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: qgis/repos/community-staging-x86_64/qt-5.13.patch (from rev 501618, 
qgis/trunk/qt-5.13.patch)
===
--- community-staging-x86_64/qt-5.13.patch  (rev 0)
+++ community-staging-x86_64/qt-5.13.patch  2019-08-24 22:37:43 UTC (rev 
501619)
@@ -0,0 +1,22 @@
+From ef8f06330f57882f740cfe7f8f3659b54b1bb1fb Mon Sep 17 00:00:00 2001
+From: Matthias Kuhn 
+Date: Sat, 22 Jun 2019 10:11:31 +0200
+Subject: [PATCH] Add missing include
+
+Fix https://github.com/qgis/QGIS/issues/30316
+---
+ src/analysis/interpolation/qgsinterpolator.h | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/analysis/interpolation/qgsinterpolator.h 
b/src/analysis/interpolation/qgsinterpolator.h
+index 35343ccdf7f..5d694418299 100644
+--- a/src/analysis/interpolation/qgsinterpolator.h
 b/src/analysis/interpolation/qgsinterpolator.h
+@@ -19,6 +19,7 @@
+ #define QGSINTERPOLATOR_H
+ 
+ #include 
++#include 
+ #include "qgis_sip.h"
+ #include "qgis_analysis.h"
+ 


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 22:36:38
  Author: arojas
Revision: 501617

archrelease: copy trunk to community-x86_64

Added:
  kdeconnect/repos/community-x86_64/PKGBUILD
(from rev 501616, kdeconnect/trunk/PKGBUILD)
Deleted:
  kdeconnect/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-24 22:36:16 UTC (rev 501616)
+++ PKGBUILD2019-08-24 22:36:38 UTC (rev 501617)
@@ -1,39 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-# Contributor: Kuba Serafinowski 
-
-pkgname=kdeconnect
-pkgver=1.3.5
-pkgrel=1
-pkgdesc='Adds communication between KDE and your smartphone'
-url='https://community.kde.org/KDEConnect'
-license=(GPL)
-arch=(x86_64)
-depends=(hicolor-icon-theme kcmutils kwayland libfakekey qca)
-makedepends=(extra-cmake-modules kdoctools qt5-declarative)
-optdepends=('sshfs: remote filesystem browser' 'kde-cli-tools: configuration 
UI'
-'qt5-declarative: QML bindings' 'python-nautilus: Nautilus 
integration')
-source=("https://download.kde.org/stable/$pkgname/$pkgver/$pkgname-kde-$pkgver.tar.xz"{,.sig})
-sha256sums=('e5ce7084427a831e6506494b656af9c1dd7bf29b7458c2546baf0a5d7a1f990a'
-'SKIP')
-validpgpkeys=(B3487CA0FF36258E2A2F338BD33E721DF877EFE8  # Albert Vaca Cintora 

-  F53223F3337665C2CCEA122E873AC3459BBCF5C0) # Nicolas Fella 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-kde-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_INSTALL_LIBEXECDIR=lib
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kdeconnect/repos/community-x86_64/PKGBUILD (from rev 501616, 
kdeconnect/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-24 22:36:38 UTC (rev 501617)
@@ -0,0 +1,39 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: Kuba Serafinowski 
+
+pkgname=kdeconnect
+pkgver=1.3.5
+pkgrel=2
+pkgdesc='Adds communication between KDE and your smartphone'
+url='https://community.kde.org/KDEConnect'
+license=(GPL)
+arch=(x86_64)
+depends=(hicolor-icon-theme kcmutils kwayland libfakekey qca qt5-connectivity)
+makedepends=(extra-cmake-modules kdoctools qt5-declarative)
+optdepends=('sshfs: remote filesystem browser' 'kde-cli-tools: configuration 
UI'
+'qt5-declarative: QML bindings' 'python-nautilus: Nautilus 
integration')
+source=("https://download.kde.org/stable/$pkgname/$pkgver/$pkgname-kde-$pkgver.tar.xz"{,.sig})
+sha256sums=('e5ce7084427a831e6506494b656af9c1dd7bf29b7458c2546baf0a5d7a1f990a'
+'SKIP')
+validpgpkeys=(B3487CA0FF36258E2A2F338BD33E721DF877EFE8  # Albert Vaca Cintora 

+  F53223F3337665C2CCEA122E873AC3459BBCF5C0) # Nicolas Fella 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-kde-$pkgver \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_INSTALL_LIBEXECDIR=lib \
+-DBLUETOOTH_ENABLED=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 22:36:16
  Author: arojas
Revision: 501616

Enable bluetooth support (FS#63481)

Modified:
  kdeconnect/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 22:34:12 UTC (rev 501615)
+++ PKGBUILD2019-08-24 22:36:16 UTC (rev 501616)
@@ -4,12 +4,12 @@
 
 pkgname=kdeconnect
 pkgver=1.3.5
-pkgrel=1
+pkgrel=2
 pkgdesc='Adds communication between KDE and your smartphone'
 url='https://community.kde.org/KDEConnect'
 license=(GPL)
 arch=(x86_64)
-depends=(hicolor-icon-theme kcmutils kwayland libfakekey qca)
+depends=(hicolor-icon-theme kcmutils kwayland libfakekey qca qt5-connectivity)
 makedepends=(extra-cmake-modules kdoctools qt5-declarative)
 optdepends=('sshfs: remote filesystem browser' 'kde-cli-tools: configuration 
UI'
 'qt5-declarative: QML bindings' 'python-nautilus: Nautilus 
integration')
@@ -26,10 +26,10 @@
 build() {
   cd build
   cmake ../$pkgname-kde-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
 -DBUILD_TESTING=OFF \
 -DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_INSTALL_LIBEXECDIR=lib
+-DCMAKE_INSTALL_LIBEXECDIR=lib \
+-DBLUETOOTH_ENABLED=ON
   make
 }
 


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 22:34:07
  Author: foutrelis
Revision: 501614

gsl 2.6 rebuild

Modified:
  luminancehdr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 22:33:17 UTC (rev 501613)
+++ PKGBUILD2019-08-24 22:34:07 UTC (rev 501614)
@@ -4,7 +4,7 @@
 
 pkgname=luminancehdr
 pkgver=2.6.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Open source graphical user interface application that aims to provide 
a workflow for HDR imaging'
 arch=('x86_64')
 url='http://qtpfsgui.sourceforge.net/'


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 22:34:12
  Author: foutrelis
Revision: 501615

archrelease: copy trunk to community-staging-x86_64

Added:
  luminancehdr/repos/community-staging-x86_64/
  luminancehdr/repos/community-staging-x86_64/PKGBUILD
(from rev 501614, luminancehdr/trunk/PKGBUILD)
  luminancehdr/repos/community-staging-x86_64/luminancehdr.changelog
(from rev 501614, luminancehdr/trunk/luminancehdr.changelog)

+
 PKGBUILD   |   32 ++
 luminancehdr.changelog |  102 +++
 2 files changed, 134 insertions(+)

Copied: luminancehdr/repos/community-staging-x86_64/PKGBUILD (from rev 501614, 
luminancehdr/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-24 22:34:12 UTC (rev 501615)
@@ -0,0 +1,32 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Lukas Jirkovsky 
+# Contributor: Dmitry N. Shilov 
+
+pkgname=luminancehdr
+pkgver=2.6.0
+pkgrel=2
+pkgdesc='Open source graphical user interface application that aims to provide 
a workflow for HDR imaging'
+arch=('x86_64')
+url='http://qtpfsgui.sourceforge.net/'
+license=('GPL')
+depends=('exiv2' 'fftw' 'gsl' 'lcms2' 'libraw' 'openexr' 'qt5-webengine' 
'qt5-svg'
+ 'qt5-webkit' 'ccfits' 'desktop-file-utils' 'hicolor-icon-theme' 
'boost-libs')
+makedepends=('cmake' 'boost' 'gtest' 'qt5-tools' 'eigen')
+optdepends=('hugin: align image stack functionality')
+changelog=$pkgname.changelog
+options=('!emptydirs')
+source=(https://sourceforge.net/projects/qtpfsgui/files/luminance/$pkgver/luminance-hdr-$pkgver.tar.bz2)
+sha256sums=('d7d2003e0ef4ead6f4b4c526bc44749a1fb845e795e0c5b7c35a393b0c0518a1')
+
+build() {
+  cd "${srcdir}"/luminance-hdr-$pkgver
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd "${srcdir}"/luminance-hdr-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}

Copied: luminancehdr/repos/community-staging-x86_64/luminancehdr.changelog 
(from rev 501614, luminancehdr/trunk/luminancehdr.changelog)
===
--- community-staging-x86_64/luminancehdr.changelog 
(rev 0)
+++ community-staging-x86_64/luminancehdr.changelog 2019-08-24 22:34:12 UTC 
(rev 501615)
@@ -0,0 +1,102 @@
+2019-06-10 Jaroslav Lichtblau 
+   * luminancehdr 2.6.0-1
+
+2017-12-30 Jaroslav Lichtblau 
+   * luminancehdr 2.5.1-6 boost 1.66.0 rebuild
+
+2017-09-10 Jaroslav Lichtblau 
+   * luminancehdr 2.5.1-5 boost 1.65.1 rebuild
+
+2017-08-16 Jaroslav Lichtblau 
+   * luminancehdr 2.5.1-4 FS#55166 fix
+
+2017-07-14 Jaroslav Lichtblau 
+   * luminancehdr 2.5.1-3 exiv2 0.26 rebuild
+
+2017-06-24 Jaroslav Lichtblau 
+   * luminancehdr 2.5.1-2 gsl 2.4 rebuild
+
+2017-06-04 Jaroslav Lichtblau 
+   * luminancehdr 2.5.1-1
+
+2017-05-19 Jaroslav Lichtblau 
+   * luminancehdr 2.5.0-3 boost 1.64.0 rebuild
+
+2017-04-18 Jaroslav Lichtblau 
+   * luminancehdr 2.5.0-1
+
+2017-01-07 Jaroslav Lichtblau 
+   * luminancehdr 2.4.0-9 libraw 0.18 rebuild
+
+2016-05-01 Jaroslav Lichtblau 
+   * luminancehdr 2.4.0-8 pacman hooks rebuild
+
+2016-02-20 Jaroslav Lichtblau 
+   * luminancehdr 2.4.0-7 gsl 2.1 rebuild
+
+2015-08-27 Jaroslav Lichtblau 
+   * luminancehdr 2.4.0-5 libraw 0.17 rebuild
+
+2015-07-03 Jaroslav Lichtblau 
+   * luminancehdr 2.4.0-4 exiv2-0.25 rebuild
+
+2015-05-14 Jaroslav Lichtblau 
+   * luminancehdr 2.4.0-3
+
+2014-02-04 Jaroslav Lichtblau 
+   * luminancehdr 2.4.0-1
+
+2014-01-20 Jaroslav Lichtblau 
+   * luminancehdr 2.3.1-4 libraw rebuild
+
+2013-06-15 Jaroslav Lichtblau 
+   * luminancehdr 2.3.1-3 libraw rebuild
+
+2013-04-20 Jaroslav Lichtblau 
+   * luminancehdr 2.3.1-1
+
+2012-07-30 Jaroslav Lichtblau 
+   * luminancehdr 2.3.0-2 exiv2-0.23 rebuild
+
+2012-07-07 Jaroslav Lichtblau 
+   * luminancehdr 2.3.0-1
+
+2012-03-18 Jaroslav Lichtblau 
+   * luminancehdr 2.2.1-1
+
+2012-01-27 Eric Belanger  
+   * Rebuild against libpng 1.5 and libtiff 4.0
+
+2011-08-21 Jaroslav Lichtblau 
+   * luminancehdr 2.1.0-1
+
+2011-05-01 Jaroslav Lichtblau 
+   * luminancehdr 2.0.2-1
+
+2010-10-19 Jaroslav Lichtblau 
+   * exiv2 0.20 rebuild
+
+2010-10-17 Jaroslav Lichtblau 
+   * Update to major release 2.0.1
+
+2010-06-27 Jaroslav Lichtblau 
+   * Package renamed to LuminanceHDR
+   * Update to major release 2.0.0
+
+2010-03-09 Andrea Scarpino 
+   * exiv2 0.19 rebuild
+
+2009-11-02 Biru Ionut 
+   * add translation and fix segfault on old i686 procesors
+
+2009-04-29 Jaroslav Lichtblau 
+   * Update to major release v1.9.3
+
+2009-04-04 Jaroslav Lichtblau 
+   * Minor version (v1.9.2-3) update caused by exiv2 upgrade.
+
+2008-11-04 Jaroslav Lichtblau 
+   * Minor version 

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

2019-08-24 Thread Felix Yan via arch-commits
Date: Saturday, August 24, 2019 @ 22:33:17
  Author: felixonmars
Revision: 501613

archrelease: copy trunk to community-staging-x86_64

Added:
  gnuradio/repos/community-staging-x86_64/
  gnuradio/repos/community-staging-x86_64/21-fcd.rules
(from rev 501612, gnuradio/trunk/21-fcd.rules)
  gnuradio/repos/community-staging-x86_64/PKGBUILD
(from rev 501612, gnuradio/trunk/PKGBUILD)

--+
 21-fcd.rules |9 
 PKGBUILD |  103 +
 2 files changed, 112 insertions(+)

Copied: gnuradio/repos/community-staging-x86_64/21-fcd.rules (from rev 501612, 
gnuradio/trunk/21-fcd.rules)
===
--- community-staging-x86_64/21-fcd.rules   (rev 0)
+++ community-staging-x86_64/21-fcd.rules   2019-08-24 22:33:17 UTC (rev 
501613)
@@ -0,0 +1,9 @@
+# Udev rules for the Funcube Dongle Pro (0xfb56) and Pro+ (0xfb31)
+
+# HIDAPI/libusb:
+SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb56" MODE:="0666"
+SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb31" MODE:="0666"
+
+# HIDAPI/hidraw:
+KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb56", MODE="0666"
+KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb31", MODE="0666"

Copied: gnuradio/repos/community-staging-x86_64/PKGBUILD (from rev 501612, 
gnuradio/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-24 22:33:17 UTC (rev 501613)
@@ -0,0 +1,103 @@
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+# Contributor: Jonatan Sastre 
+pkgbase=gnuradio
+pkgname=(gnuradio gnuradio-companion)
+pkgver=3.8.0.0
+pkgrel=2
+pkgdesc="General purpose DSP and SDR toolkit.  With drivers for usrp and fcd."
+arch=('x86_64')
+url="https://gnuradio.org;
+license=('GPL')
+depends=('fftw' 'python-numpy' 'gsl' 'blas' 'boost-libs>=1.53'
+'libusbx' 'portaudio' 'libuhd' 'zeromq' 'libvolk' 'log4cpp' 'python-yaml'
+'gmp' 'gsm' 'codec2' 'python-mako' 'python-click-plugins')
+makedepends=('boost' 'cmake' 'python-lxml' 'glu' 'swig' 'python-gobject'
+'qwt' 'python-pyqt5' 'python-cairo')
+
+# todo
+# split the gui components?
+# build doxygen docs?
+# gr-video-sdl ?
+# icons
+# add thrift?
+
+# zeroc-ice: gr-ctrlport
+# doxygen: C++ autogenerated documentation
+# python-sphinx: Python autogenerated documentation
+
+# secret release directory
+#source=("http://s3-dist.gnuradio.org/gnuradio-$pkgver.tar.gz;
+# neglected official release directory
+#source=("https://gnuradio.org/releases/$pkgbase/$pkgbase-$pkgver.tar.gz;
+source=("https://github.com/gnuradio/gnuradio/releases/download/v$pkgver/gnuradio-$pkgver.tar.gz;
+
"https://github.com/gnuradio/gnuradio/releases/download/v$pkgver/gnuradio-$pkgver.tar.gz.asc;
+"21-fcd.rules")
+validpgpkeys=('B90DDFAC56989BF62262EB812987C77CBB8ED9B2'  # GNU Radio Project
+  'D74F9F146E7F755783583158B343B2BA293E5174') # Marcus Müller
+md5sums=('85e1ed4b18c46227731d83f8c3fbe45a'
+ 'SKIP'
+ '465e12c454c6a22ebec9849181af7bdc')
+
+prepare() {
+  cd "$srcdir/$pkgbase-$pkgver"
+  sed -i -e "s|GR_PKG_LIBEXEC_DIR|GR_RUNTIME_DIR|" 
grc/scripts/freedesktop/CMakeLists.txt
+  #sed -i -e "s|/qwt$|/qwt5|" -e "s| qwt | qwt5 |" cmake/Modules/FindQwt.cmake
+  sed -i -e "s| sphinx-build$| sphinx-build2|" cmake/Modules/FindSphinx.cmake
+}
+
+build() {
+  export PYTHON=python3
+  cd "$srcdir/$pkgbase-$pkgver"
+  mkdir -p build
+  cd build
+  cmake \
+-DPYTHON_EXECUTABLE=$(which python3) \
+-DPYTHON_INCLUDE_DIR=$(echo /usr/include/python3*) \
+-DPYTHON_LIBRARY=$(echo /usr/lib/libpython3.*m.so) \
+-DGR_PYTHON_DIR=$(echo /usr/lib/python3.*/site-packages/) \
+-DENABLE_INTERNAL_VOLK=OFF \
+-DENABLE_GRC=ON \
+-DENABLE_GR_QTGUI=ON \
+-DQWT_LIBRARIES=/usr/lib/libqwt.so \
+-DCMAKE_INSTALL_PREFIX=/usr -Wno-dev ../
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgbase-$pkgver/build"
+  export PYTHON=python3
+  #make test
+}
+
+package_gnuradio() {
+  optdepends=('boost: gr_modtool'
+  'swig: gr_modtool'
+  'cmake: gr_modtool'
+  'pkgconfig: libuhd')
+  cd "$srcdir"
+  install -Dm644 21-fcd.rules "$pkgdir/usr/lib/udev/rules.d/21-fcd.rules"
+  cd "$srcdir/$pkgbase-$pkgver/grc/scripts/freedesktop"
+  install -Dm644 gnuradio-grc.desktop 
"$pkgdir/usr/share/applications/gnuradio-grc.desktop"
+  cd "$srcdir/$pkgbase-$pkgver/build"
+  make DESTDIR="$pkgdir" install
+}
+
+package_gnuradio-companion() {
+  pkgdesc="GUI frontend for gnuradio and SDR."
+  depends=('gnuradio' 'qwt' 'python-lxml'
+   'python-opengl' 'python-cairo' 'python-pyqt5')
+  # Yup, nothing in the package except dependencies,
+  # because more than five optdeps is too many for most people.
+}

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

2019-08-24 Thread Felix Yan via arch-commits
Date: Saturday, August 24, 2019 @ 22:33:02
  Author: felixonmars
Revision: 501612

gsl 2.6 rebuild

Modified:
  gnuradio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 22:31:09 UTC (rev 501611)
+++ PKGBUILD2019-08-24 22:33:02 UTC (rev 501612)
@@ -4,7 +4,7 @@
 pkgbase=gnuradio
 pkgname=(gnuradio gnuradio-companion)
 pkgver=3.8.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc="General purpose DSP and SDR toolkit.  With drivers for usrp and fcd."
 arch=('x86_64')
 url="https://gnuradio.org;


[arch-commits] Commit in calligra/repos (7 files)

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 22:31:28
  Author: foutrelis
Revision: 361128

archrelease: copy trunk to staging-x86_64

Added:
  calligra/repos/staging-x86_64/
  calligra/repos/staging-x86_64/PKGBUILD
(from rev 361127, calligra/trunk/PKGBUILD)
  calligra/repos/staging-x86_64/calligra-poppler-0.71.patch
(from rev 361127, calligra/trunk/calligra-poppler-0.71.patch)
  calligra/repos/staging-x86_64/calligra-poppler-0.72.patch
(from rev 361127, calligra/trunk/calligra-poppler-0.72.patch)
  calligra/repos/staging-x86_64/calligra-poppler-0.73.patch
(from rev 361127, calligra/trunk/calligra-poppler-0.73.patch)
  calligra/repos/staging-x86_64/calligra-qt5.11.patch
(from rev 361127, calligra/trunk/calligra-qt5.11.patch)
  calligra/repos/staging-x86_64/calligra-qt5.13.patch
(from rev 361127, calligra/trunk/calligra-qt5.13.patch)

-+
 PKGBUILD|   86 ++
 calligra-poppler-0.71.patch |  131 
 calligra-poppler-0.72.patch |   29 +
 calligra-poppler-0.73.patch |   32 +
 calligra-qt5.11.patch   |  135 ++
 calligra-qt5.13.patch   |   21 ++
 6 files changed, 434 insertions(+)

Copied: calligra/repos/staging-x86_64/PKGBUILD (from rev 361127, 
calligra/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-24 22:31:28 UTC (rev 361128)
@@ -0,0 +1,86 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: Ronald van Haren 
+
+pkgname=calligra
+pkgdesc="A set of applications for productivity and creative usage"
+pkgver=3.1.0
+pkgrel=22
+arch=(x86_64)
+url='https://www.calligra-suite.org/'
+license=(FDL1.2 GPL2 LGPL)
+depends=(kcmutils knotifyconfig kross kactivities kdiagram libspnav 
kdelibs4support
+ gsl openexr kcontacts qca-qt5 poppler-qt5 libodfgen qt5-webkit cauchy 
khtml)
+makedepends=(extra-cmake-modules kdoctools kdesignerplugin boost openjpeg 
akonadi-contacts
+ libwpg okular eigen marble-common pstoedit libvisio libetonyek 
libwps vc libgit2)
+optdepends=('libwpg: Corel WordPerfect Graphics image importer'
+'libwps: Microsoft Works file word processor format import'
+'libvisio: Microsoft Visio import filter'
+'libetonyek: Apple Keynote import filter'
+'pstoedit: EPS to SVG filter'
+'poppler: PDF to SVG filter'
+'openjpeg: PDF to SVG filer'
+'libgit2: Calligra Gemini git plugin'
+'kirigami2: for Calligra Gemini'
+'qt5-quickcontrols: for Calligra Gemini'
+'qt5-webengine: for Calligra Gemini')
+conflicts=(calligra-devtools calligra-extras calligra-filters calligra-karbon 
karbon calligra-libs
+   calligra-plugins calligra-sheets calligra-stage calligra-words 
calligra-l10n calligra-meta
+   calligra-flow calligra-braindump calligra-gemini calligra-handbook)
+replaces=(calligra-devtools calligra-extras calligra-filters calligra-karbon 
karbon calligra-libs
+  calligra-plugins calligra-sheets calligra-stage calligra-words 
calligra-l10n calligra-meta)
+for _lang in bs ca ca@valencia cs da de el en_gb es et fi fr gl hu it ja kk nb 
nl \
+ pl pt pt_br ru sk sv uk zh_cn zh_tw; do
+  conflicts+=(calligra-l10n-$_lang)
+  replaces+=(calligra-l10n-$_lang)
+done
+source=("https://download.kde.org/stable/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig}
+calligra-qt5.11.patch
+calligra-qt5.13.patch
+
calligra-poppler-0.69.patch::"https://cgit.kde.org/calligra.git/patch/?id=a6157182;
+calligra-poppler-0.71.patch
+calligra-poppler-0.72.patch
+calligra-poppler-0.73.patch)
+sha256sums=('6818cd6e64136321be217eb57cc7d6ac7c7035191fdb1ee336ebe60bc114e870'
+'SKIP'
+'40ac9fabed8e13c31f6f243bd7e9083c3ec322568991ba84987106b982ffc10a'
+'d32a9cda1343f224f5a0cfa2b8122c5571a0dbb09c9948414d6770d9c3814f4d'
+'127cc5e0946fbf741279306b4e9d592f5f901a7fab09039fcfc6c7e60193fa80'
+'052adc4ea812d7667812ff7867e703327dbe7c1ecad86094fd6772dc09782d87'
+'87a09710b9e7e825a46344ddec08eb98b3454d6d067b0177d284733b2342cece'
+'ef95f49f69c9f2a5b530e416003f2d6d106bb3c85e8458ae27494c64c8b474a8')
+validpgpkeys=(05D00A8B73A686789E0A156858B9596C722EA3BD  # Boudewijn Rempt 

+  42A60D06F449E895F40F09C01638B8A616108B8A) # Dag Andersen 

+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+# Fix build with Qt 5.11
+  patch -p1 -i ../calligra-qt5.11.patch
+# Fix build with Qt 5.13
+  patch -p1 -i ../calligra-qt5.13.patch
+# Fix build with poppler 0.69
+  patch -p1 -i ../calligra-poppler-0.69.patch
+# Fix build with poppler 0.71
+  patch -p1 -i 

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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 22:31:20
  Author: foutrelis
Revision: 361127

gsl 2.6 rebuild

Modified:
  calligra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 22:28:44 UTC (rev 361126)
+++ PKGBUILD2019-08-24 22:31:20 UTC (rev 361127)
@@ -6,7 +6,7 @@
 pkgname=calligra
 pkgdesc="A set of applications for productivity and creative usage"
 pkgver=3.1.0
-pkgrel=21
+pkgrel=22
 arch=(x86_64)
 url='https://www.calligra-suite.org/'
 license=(FDL1.2 GPL2 LGPL)


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

2019-08-24 Thread Jerome Leclanche via arch-commits
Date: Saturday, August 24, 2019 @ 22:31:09
  Author: jleclanche
Revision: 501611

archrelease: copy trunk to community-any

Added:
  xonsh/repos/community-any/PKGBUILD
(from rev 501610, xonsh/trunk/PKGBUILD)
  xonsh/repos/community-any/xonsh.install
(from rev 501610, xonsh/trunk/xonsh.install)
Deleted:
  xonsh/repos/community-any/PKGBUILD
  xonsh/repos/community-any/xonsh.install

---+
 PKGBUILD  |   42 +-
 xonsh.install |   22 +++---
 2 files changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-24 22:31:05 UTC (rev 501610)
+++ PKGBUILD2019-08-24 22:31:09 UTC (rev 501611)
@@ -1,21 +0,0 @@
-# Maintainer: Jerome Leclanche 
-
-pkgname=xonsh
-pkgver=0.9.9
-pkgrel=1
-pkgdesc="Python-powered, cross-platform, Unix-gazing shell"
-url="https://xon.sh/;
-arch=("any")
-license=("BSD")
-depends=("python" "python-ply")
-optdepends=("python-prompt_toolkit: support for SHELL_TYPE=prompt_toolkit")
-makedepends=("python-setuptools")
-source=("https://github.com/xonsh/xonsh/releases/download/$pkgver/$pkgname-$pkgver.tar.gz;)
-install=xonsh.install
-sha256sums=("a26d4bbd49b106b0c650dc8ebc5f4948900fe1e18204e1af2887a572af6fad44")
-
-package() {
-   cd "$srcdir/$pkgname-$pkgver"
-   python setup.py install --root="$pkgdir"
-   install -D -m644 license "$pkgdir/usr/share/licenses/$pkgname/license"
-}

Copied: xonsh/repos/community-any/PKGBUILD (from rev 501610, 
xonsh/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-24 22:31:09 UTC (rev 501611)
@@ -0,0 +1,21 @@
+# Maintainer: Jerome Leclanche 
+
+pkgname=xonsh
+pkgver=0.9.10
+pkgrel=1
+pkgdesc="Python-powered, cross-platform, Unix-gazing shell"
+url="https://xon.sh/;
+arch=("any")
+license=("BSD")
+depends=("python" "python-ply")
+optdepends=("python-prompt_toolkit: support for SHELL_TYPE=prompt_toolkit")
+makedepends=("python-setuptools")
+source=("https://github.com/xonsh/xonsh/releases/download/$pkgver/$pkgname-$pkgver.tar.gz;)
+install=xonsh.install
+sha256sums=("d41fca7bef961121b2da9c31505e654c2312a7221b810ad6fd3b8c2eebeda3b7")
+
+package() {
+   cd "$srcdir/$pkgname-$pkgver"
+   python setup.py install --root="$pkgdir"
+   install -D -m644 license "$pkgdir/usr/share/licenses/$pkgname/license"
+}

Deleted: xonsh.install
===
--- xonsh.install   2019-08-24 22:31:05 UTC (rev 501610)
+++ xonsh.install   2019-08-24 22:31:09 UTC (rev 501611)
@@ -1,11 +0,0 @@
-post_install() {
-   grep -x /usr/bin/xonsh /etc/shells >/dev/null || echo /usr/bin/xonsh >> 
/etc/shells
-}
-
-post_remove() {
-   sed -i "/^\/usr\/bin\/xonsh$/d" /etc/shells
-}
-
-post_upgrade() {
-   post_install
-}

Copied: xonsh/repos/community-any/xonsh.install (from rev 501610, 
xonsh/trunk/xonsh.install)
===
--- xonsh.install   (rev 0)
+++ xonsh.install   2019-08-24 22:31:09 UTC (rev 501611)
@@ -0,0 +1,11 @@
+post_install() {
+   grep -x /usr/bin/xonsh /etc/shells >/dev/null || echo /usr/bin/xonsh >> 
/etc/shells
+}
+
+post_remove() {
+   sed -i "/^\/usr\/bin\/xonsh$/d" /etc/shells
+}
+
+post_upgrade() {
+   post_install
+}


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

2019-08-24 Thread Jerome Leclanche via arch-commits
Date: Saturday, August 24, 2019 @ 22:31:05
  Author: jleclanche
Revision: 501610

upgpkg: xonsh 0.9.10-1

Upstream release 0.9.10

Modified:
  xonsh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 22:30:05 UTC (rev 501609)
+++ PKGBUILD2019-08-24 22:31:05 UTC (rev 501610)
@@ -1,7 +1,7 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=xonsh
-pkgver=0.9.9
+pkgver=0.9.10
 pkgrel=1
 pkgdesc="Python-powered, cross-platform, Unix-gazing shell"
 url="https://xon.sh/;
@@ -12,7 +12,7 @@
 makedepends=("python-setuptools")
 
source=("https://github.com/xonsh/xonsh/releases/download/$pkgver/$pkgname-$pkgver.tar.gz;)
 install=xonsh.install
-sha256sums=("a26d4bbd49b106b0c650dc8ebc5f4948900fe1e18204e1af2887a572af6fad44")
+sha256sums=("d41fca7bef961121b2da9c31505e654c2312a7221b810ad6fd3b8c2eebeda3b7")
 
 package() {
cd "$srcdir/$pkgname-$pkgver"


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

2019-08-24 Thread Jerome Leclanche via arch-commits
Date: Saturday, August 24, 2019 @ 22:29:55
  Author: jleclanche
Revision: 501608

upgpkg: terraform 0.12.7-1

Upstream release 0.12.7

Modified:
  terraform/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 22:27:17 UTC (rev 501607)
+++ PKGBUILD2019-08-24 22:29:55 UTC (rev 501608)
@@ -2,8 +2,8 @@
 # Maintainer: Christian Rebischke 
 
 pkgname=terraform
-pkgver=0.12.6
-pkgrel=2
+pkgver=0.12.7
+pkgrel=1
 pkgdesc="Tool for building, changing, and versioning infrastructure safely and 
efficiently"
 url="https://www.terraform.io/;
 arch=("x86_64")
@@ -10,23 +10,23 @@
 license=("MPL")
 makedepends=("go-pie")
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/hashicorp/terraform/archive/v$pkgver.tar.gz;)
-sha512sums=('295ca012ab67b5cc4c32a450b2c3e61bc4635ab3c93a242ac457208e1230f12e7145b456ed944aa1b6d87ad18205320200926541dd274d5e162e4b0b9d4a8e90')
-changelog=CHANGELOG.md
+sha256sums=("1c4b04e219de9325b3c018679004795fd90c4f5148c6249ff43b156e35f58d56")
+changelog="CHANGELOG.md"
 
 prepare() {
-  export GOPATH="${srcdir}"
-  export PATH="$PATH:$GOPATH/bin"
-  mkdir -p src/github.com/hashicorp/
-  mv "${pkgname}-${pkgver}" src/github.com/hashicorp/${pkgname}
+   export GOPATH="${srcdir}"
+   export PATH="$PATH:$GOPATH/bin"
+   mkdir -p src/github.com/hashicorp/
+   mv "${pkgname}-${pkgver}" src/github.com/hashicorp/${pkgname}
 }
 
 build() {
-  cd src/github.com/hashicorp/"${pkgname}"
-  go build -o terraform-binary
+   cd src/github.com/hashicorp/"${pkgname}"
+   go build -o terraform-binary
 }
 
 package() {
-  cd src/github.com/hashicorp/"${pkgname}"
-  install -Dm755 terraform-binary "$pkgdir/usr/bin/terraform"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+   cd src/github.com/hashicorp/"${pkgname}"
+   install -Dm755 terraform-binary "$pkgdir/usr/bin/terraform"
+   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }


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

2019-08-24 Thread Jerome Leclanche via arch-commits
Date: Saturday, August 24, 2019 @ 22:30:05
  Author: jleclanche
Revision: 501609

archrelease: copy trunk to community-x86_64

Added:
  terraform/repos/community-x86_64/CHANGELOG.md
(from rev 501608, terraform/trunk/CHANGELOG.md)
  terraform/repos/community-x86_64/PKGBUILD
(from rev 501608, terraform/trunk/PKGBUILD)
Deleted:
  terraform/repos/community-x86_64/CHANGELOG.md
  terraform/repos/community-x86_64/PKGBUILD

--+
 CHANGELOG.md |  448 -
 PKGBUILD |   64 
 2 files changed, 256 insertions(+), 256 deletions(-)

Deleted: CHANGELOG.md
===
--- CHANGELOG.md2019-08-24 22:29:55 UTC (rev 501608)
+++ CHANGELOG.md2019-08-24 22:30:05 UTC (rev 501609)
@@ -1,224 +0,0 @@
-## 0.12.7 (Unreleased)
-
-ENHANCEMENTS:
-* lang/funcs: `lookup()` can work with maps of lists, maps and objects 
[GH-22269]
-
-BUG FIXES:
-* config: fix panic on tuples with `for_each` [GH-22279]
-* config: fix references to `each` of `for_each` in provisioners [GH-22289]
-* plugin/sdk: Azure SDK components used by the `azure` remote state backend 
have been updated to recent versions. This should help prevent dependency 
conflicts when using Terraform components or the plugin SDK in other projects 
that have their own Azure dependencies. [GH-22247], [GH-22248]
-
-
-## 0.12.6 (July 31, 2019)
-
-NOTES:
-
-* backend/s3: After this update, the AWS Go SDK will prefer credentials found 
via the `AWS_PROFILE` environment variable when both the `AWS_PROFILE` 
environment variable and the `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` 
environment variables are statically defined. Previously the SDK would ignore 
the `AWS_PROFILE` environment variable, if static environment credentials were 
also specified. This is listed as a bug fix in the AWS Go SDK release notes. 
([#22253](https://github.com/hashicorp/terraform/issues/22253))
-
-NEW FEATURES:
-* backend/oss: added support for assume role config 
([#22186](https://github.com/hashicorp/terraform/issues/22186))
-* config: Resources can now use a for_each meta-argument 
([#17179](https://github.com/hashicorp/terraform/issues/17179))
-
-ENHANCEMENTS:
-* backend/s3: Add support for assuming role via web identity token via the 
`AWS_WEB_IDENTITY_TOKEN_FILE` and `AWS_ROLE_ARN` environment variables 
([#22253](https://github.com/hashicorp/terraform/issues/22253))
-* backend/s3: Support automatic region validation for `me-south-1`. For AWS 
operations to work in the new region, the region must be explicitly enabled as 
outlined in the [AWS 
Documentation](https://docs.aws.amazon.com/general/latest/gr/rande-manage.html#rande-manage-enable)
 ([#22253](https://github.com/hashicorp/terraform/issues/22253))
-* connection/ssh: Improve connection debug messages 
([#22097](https://github.com/hashicorp/terraform/issues/22097))
-
-BUG FIXES:
-* backend/remote: remove misleading contents from error message 
([#22148](https://github.com/hashicorp/terraform/issues/22148))
-* backend/s3: Load credentials via the `AWS_PROFILE` environment variable (if 
available) when `AWS_PROFILE` is defined along with `AWS_ACCESS_KEY_ID` and 
`AWS_SECRET_ACCESS_KEY` 
([#22253](https://github.com/hashicorp/terraform/issues/22253))
-* config: Improve conditionals to returns the correct type when dynamic values 
are present but unevaluated 
([#22137](https://github.com/hashicorp/terraform/issues/22137))
-* config: Fix panic when mistakingly using `dynamic` on an attribute 
([#22169](https://github.com/hashicorp/terraform/issues/22169))
-* cli: Fix crash with reset connection during init 
([#22146](https://github.com/hashicorp/terraform/issues/22146))
-* cli: show all deposed instances and prevent crash in `show` command 
([#22149](https://github.com/hashicorp/terraform/issues/22149))
-* configs/configupgrade: Fix crash with nil hilNode 
([#22181](https://github.com/hashicorp/terraform/issues/22181))
-* command/fmt: now formats correctly in presence of here-docs 
([#21434](https://github.com/hashicorp/terraform/issues/21434))
-* helper/schema: don't skip deprecation check during validation when attribute 
value is unknown ([#22262](https://github.com/hashicorp/terraform/issues/22262))
-* plugin/sdk: allow MinItems > 1 when dynamic blocks 
([#1](https://github.com/hashicorp/terraform/issues/1))
-* plugin/sdk: fix reflect panics in helper/schema validation 
([#22236](https://github.com/hashicorp/terraform/issues/22236))
-
-## 0.12.5 (July 18, 2019)
-
-ENHANCEMENTS:
-* command/format: No longer show no-ops in `terraform show`, since nothing 
will change ([#21907](https://github.com/hashicorp/terraform/issues/21907))
-* backend/s3: Support for assuming role using credential process from the 
shared AWS configuration file (support profile containing both 
`credential_process` and `role_arn` configurations) 
([#21908](https://github.com/hashicorp/terraform/issues/21908))

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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 22:28:44
  Author: arojas
Revision: 361126

New upstream URL (FS#63455)

Modified:
  libcerf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 22:20:49 UTC (rev 361125)
+++ PKGBUILD2019-08-24 22:28:44 UTC (rev 361126)
@@ -5,12 +5,12 @@
 pkgrel=1
 pkgdesc="Self-contained numeric library that provides an efficient and 
accurate implementation of complex error functions"
 arch=(x86_64)
-url="http://apps.jcns.fz-juelich.de/doku/sc/libcerf;
+url="https://jugit.fz-juelich.de/mlz/libcerf/;
 license=(custom)
 depends=(glibc)
 makedepends=(cmake)
-source=(http://apps.jcns.fz-juelich.de/src/libcerf/$pkgname-$pkgver.tgz)
-sha256sums=('011303e59ac63b280d3d8b10c66b07eb02140fcb75954d13ec26bf830e0ea2f9')
+source=(https://jugit.fz-juelich.de/mlz/libcerf/-/archive/v$pkgver/libcerf-v$pkgver.tar.gz)
+sha256sums=('e4699f81af838aef5b3e77209fec8e9820a4f492d598fb5a070800854976a305')
 
 prepare() {
   mkdir -p build


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 22:27:17
  Author: foutrelis
Revision: 501607

Refresh checksums

Modified:
  luminancehdr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 22:21:46 UTC (rev 501606)
+++ PKGBUILD2019-08-24 22:27:17 UTC (rev 501607)
@@ -16,7 +16,7 @@
 changelog=$pkgname.changelog
 options=('!emptydirs')
 
source=(https://sourceforge.net/projects/qtpfsgui/files/luminance/$pkgver/luminance-hdr-$pkgver.tar.bz2)
-sha256sums=('64fded5fdb51815132fa9b61519f2b6107bcf535721a63d9eea1a6884be27cf4')
+sha256sums=('d7d2003e0ef4ead6f4b4c526bc44749a1fb845e795e0c5b7c35a393b0c0518a1')
 
 build() {
   cd "${srcdir}"/luminance-hdr-$pkgver


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 22:21:46
  Author: foutrelis
Revision: 501606

archrelease: copy trunk to community-staging-x86_64

Added:
  xaos/repos/community-staging-x86_64/
  xaos/repos/community-staging-x86_64/PKGBUILD
(from rev 501605, xaos/trunk/PKGBUILD)

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

Copied: xaos/repos/community-staging-x86_64/PKGBUILD (from rev 501605, 
xaos/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-24 22:21:46 UTC (rev 501606)
@@ -0,0 +1,47 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Eric Bélanger 
+
+pkgname=xaos
+pkgver=3.6
+pkgrel=8
+pkgdesc='Interactive fractal zoomer'
+arch=(x86_64)
+# https is not available
+url='http://matek.hu/xaos/'
+license=(GPL)
+makedepends=(gendesk)
+depends=(aalib gsl gtk2 libpng)
+options=(!makeflags)
+source=("https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;)
+sha256sums=('989f3e38f7793810cbb1496d5291d44836a7d7c058422b9ee1cffb163a0b8d95')
+
+prepare() {
+  gendesk -f -n --pkgname=$pkgname --pkgdesc="$pkgdesc" \
+--categories='Application;Graphics'
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--with-long-double=yes \
+--with-mitshm=no \
+--with-pthread=yes \
+--with-png=yes \
+--with-gsl=yes \
+--with-x11-driver=no \
+--with-gtk-driver=yes \
+--with-win32-driver=no \
+--with-aa-driver=yes
+  make
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
+  install -Dm644 "$pkgname-$pkgver/src/ui/ui-drv/qt/images/xaosbig.png" \
+"$pkgdir/usr/share/pixmaps/$pkgname.png"
+  install -Dm644 $pkgname.desktop \
+"$pkgdir/usr/share/applications/$pkgname.desktop"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 22:21:41
  Author: foutrelis
Revision: 501605

gsl 2.6 rebuild

Modified:
  xaos/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 22:18:04 UTC (rev 501604)
+++ PKGBUILD2019-08-24 22:21:41 UTC (rev 501605)
@@ -3,7 +3,7 @@
 
 pkgname=xaos
 pkgver=3.6
-pkgrel=7
+pkgrel=8
 pkgdesc='Interactive fractal zoomer'
 arch=(x86_64)
 # https is not available


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 22:20:45
  Author: foutrelis
Revision: 361124

gsl 2.6 rebuild

Modified:
  step/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 22:15:34 UTC (rev 361123)
+++ PKGBUILD2019-08-24 22:20:45 UTC (rev 361124)
@@ -4,7 +4,7 @@
 
 pkgname=step
 pkgver=19.08.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Interactive Physical Simulator"
 url="https://kde.org/applications/education/step/;
 arch=(x86_64)


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 22:20:49
  Author: foutrelis
Revision: 361125

archrelease: copy trunk to staging-x86_64

Added:
  step/repos/staging-x86_64/
  step/repos/staging-x86_64/PKGBUILD
(from rev 361124, step/trunk/PKGBUILD)

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

Copied: step/repos/staging-x86_64/PKGBUILD (from rev 361124, 
step/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-24 22:20:49 UTC (rev 361125)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=step
+pkgver=19.08.0
+pkgrel=2
+pkgdesc="Interactive Physical Simulator"
+url="https://kde.org/applications/education/step/;
+arch=(x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdeedu)
+depends=(libqalculate gsl knewstuff khtml kplotting hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools eigen qt5-tools)
+source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('7a2dc38617822c8118c721ccaaa9907ec3e109eacf57e46b599c6731b325a993'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in gmic/trunk (PKGBUILD zart-opencv4.patch zart-opencv4.patch)

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 22:17:43
  Author: arojas
Revision: 501603

Update to 2.7.0

Added:
  gmic/trunk/zart-opencv4.patch
Modified:
  gmic/trunk/PKGBUILD
Deleted:
  gmic/trunk/zart-opencv4.patch

+
 PKGBUILD   |9 ---
 zart-opencv4.patch |   61 ++-
 2 files changed, 27 insertions(+), 43 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 22:17:35 UTC (rev 501602)
+++ PKGBUILD2019-08-24 22:17:43 UTC (rev 501603)
@@ -6,7 +6,7 @@
 
 pkgbase=gmic
 pkgname=(gmic zart gimp-plugin-gmic krita-plugin-gmic)
-pkgver=2.6.7
+pkgver=2.7.0
 pkgrel=1
 arch=(x86_64)
 url="https://gmic.eu/;
@@ -13,8 +13,8 @@
 license=(custom:CeCILL)
 makedepends=(gimp qt5-base fftw openexr opencv eigen)
 source=(https://gmic.eu/files/source/gmic_$pkgver.tar.gz zart-opencv4.patch)
-sha256sums=('2e5535d1bae66254136e928428750aac8efcef6f4413fc352b6de9ce8ac8b0ff'
-'182c6723708302a8cee92bfb45a40ff09b8903c649ce856d0d8cd10aab0ee39b')
+sha256sums=('8629c39ca5fa02c44a462727d36f50557e1397af2feeddf39628608c028824d3'
+'f4295a2b9a6730060e1dd763c602bd5156570d623bc69c2214dfd11e94943296')
 
 prepare() {
   sed -e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' 
-i gmic-$pkgver/src/Makefile
@@ -23,7 +23,8 @@
   -e 's/pkg-config opencv/pkg-config opencv4/' -i 
gmic-$pkgver/src/Makefile 
 # fix build with openCV 4.0
   cd gmic-$pkgver/zart
-  patch -p1 -i "$srcdir"/zart-opencv4.patch
+  patch -p1 -i ../../zart-opencv4.patch
+  sed -e 's|opencv|opencv4|' -i zart.pro
 }
 
 build() {

Deleted: zart-opencv4.patch
===
--- zart-opencv4.patch  2019-08-24 22:17:35 UTC (rev 501602)
+++ zart-opencv4.patch  2019-08-24 22:17:43 UTC (rev 501603)
@@ -1,39 +0,0 @@
-diff --git a/include/VideoFileSource.h b/include/VideoFileSource.h
-index 0fda14e..8c15178 100644
 a/include/VideoFileSource.h
-+++ b/include/VideoFileSource.h
-@@ -50,6 +50,8 @@
- #if defined(HAS_OPENCV2_HEADERS) || defined(OPENCV2_HEADERS)
- #include 
- #include 
-+#include 
-+#include 
- #else
- #include 
- #include 
-diff --git a/include/WebcamSource.h b/include/WebcamSource.h
-index 8c1911a..9194385 100644
 a/include/WebcamSource.h
-+++ b/include/WebcamSource.h
-@@ -51,6 +51,8 @@
- #if defined(HAS_OPENCV2_HEADERS) || defined(OPENCV2_HEADERS)
- #include 
- #include 
-+#include 
-+#include 
- #else
- #include 
- #include 
-diff --git a/zart.pro b/zart.pro
-index d98a192..ddb2d3b 100644
 a/zart.pro
-+++ b/zart.pro
-@@ -19,7 +19,7 @@ greaterThan(QT_MAJOR_VERSION, 4): CONFIG += c++11
- CONFIG+= warn_on
- QT_CONFIG -= no-pkg-config
- CONFIG += link_pkgconfig
--PKGCONFIG += opencv fftw3 zlib
-+PKGCONFIG += opencv4 fftw3 zlib
- # LIBS += -lfftw3_threads
- DEFINES += cimg_use_fftw3 cimg_use_zlib
- 

Added: zart-opencv4.patch
===
--- zart-opencv4.patch  (rev 0)
+++ zart-opencv4.patch  2019-08-24 22:17:43 UTC (rev 501603)
@@ -0,0 +1,22 @@
+diff --git a/src/ImageConverter.cpp b/src/ImageConverter.cpp
+index dc7605b..56f59db 100644
+--- a/src/ImageConverter.cpp
 b/src/ImageConverter.cpp
+@@ -70,7 +70,7 @@ void ImageConverter::convert(const cv::Mat * in, QImage * 
out)
+ 
+   cv::Mat tmp(in->cols, in->rows, in->depth());
+ 
+-  cvtColor(*in, tmp, (in->channels() == 1) ? CV_GRAY2RGB : CV_BGR2RGB);
++  cvtColor(*in, tmp, (in->channels() == 1) ? cv::COLOR_GRAY2RGB : 
cv::COLOR_BGR2RGB);
+ 
+   const unsigned int w3 = 3 * tmp.cols;
+   unsigned char * src = reinterpret_cast(tmp.ptr());
+@@ -106,7 +106,7 @@ void ImageConverter::convert(const QImage & in, cv::Mat ** 
out)
+   dst += step;
+ }
+   }
+-  cvtColor(**out, **out, CV_BGR2RGB);
++  cvtColor(**out, **out, cv::COLOR_BGR2RGB);
+ }
+ 
+ void ImageConverter::convert(const cimg_library::CImg & in, QImage * 
out)


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 22:17:35
  Author: foutrelis
Revision: 501602

archrelease: copy trunk to community-staging-x86_64

Added:
  snd/repos/community-staging-x86_64/
  snd/repos/community-staging-x86_64/PKGBUILD
(from rev 501601, snd/trunk/PKGBUILD)

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

Copied: snd/repos/community-staging-x86_64/PKGBUILD (from rev 501601, 
snd/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-24 22:17:35 UTC (rev 501602)
@@ -0,0 +1,63 @@
+# Maintainer: David Runge 
+# Contributor: Ray Rashif 
+# Contributor: Juergen Hoetzel 
+# Contributor: see .contrib
+
+pkgname=snd
+pkgver=19.6
+pkgrel=2
+pkgdesc="An advanced sound editor"
+arch=('x86_64')
+url="https://ccrma.stanford.edu/software/snd/;
+license=('custom:free')
+groups=('pro-audio')
+depends=('fftw' 'gsl' 'gtk3' 'jack' 'libmpc' 'ruby')
+makedepends=('flac' 'gendesk' 'gmp' 'glu' 'ladspa' 'libpulse' 'libxpm' 'mpg123'
+'openmotif' 'speex' 'timidity++' 'vorbis-tools' 'wavpack')
+optdepends=('wavpack: For wav support'
+'flac: For flac support'
+'speex: For speex support'
+'mpg123: For MPEG support'
+'pulseaudio: For pulseaudio support'
+'timidity++: For MIDI to WAVE support'
+'vorbis-tools: For OGG support')
+source=("https://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('13dccf3fc41bf4822dbb6b0d164a576dfd19427d6eddc396d38b366922df6cfb853ed69be92528d04556fe11b14ec5bbd101d18dd30c74a6de74ea9eb24d9903')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  # create XDG desktop file, as the default is broken
+  gendesk -f -n \
+  --pkgname "${pkgname}" \
+  --name "${pkgname}" \
+  --exec "${pkgname}" \
+  --genericname "Sound Editor" \
+  --categories "AudioVideo;Audio"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr \
+  --with-alsa \
+  --with-gmp \
+  --with-gtk \
+  --with-jack \
+  --with-ladspa \
+  --with-pulseaudio \
+  --with-ruby
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make prefix="${pkgdir}/usr" install
+  install -vDm 644 *.desktop -t "${pkgdir}/usr/share/applications/"
+  install -vDm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  # docs
+  install -vDm 644 {{HISTORY,README}.Snd,NEWS} \
+-t "${pkgdir}/usr/share/doc/${pkgname}/"
+  install -vDm 644 *.html -t "${pkgdir}/usr/share/doc/${pkgname}/html"
+  install -vDm 644 pix/*.png -t "${pkgdir}/usr/share/doc/${pkgname}/html/pix"
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 22:18:04
  Author: arojas
Revision: 501604

archrelease: copy trunk to community-x86_64

Added:
  gmic/repos/community-x86_64/PKGBUILD
(from rev 501603, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/zart-opencv4.patch
(from rev 501603, gmic/trunk/zart-opencv4.patch)
Deleted:
  gmic/repos/community-x86_64/PKGBUILD
  gmic/repos/community-x86_64/zart-opencv4.patch

+
 PKGBUILD   |  159 +--
 zart-opencv4.patch |   61 +++
 2 files changed, 102 insertions(+), 118 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-24 22:17:43 UTC (rev 501603)
+++ PKGBUILD2019-08-24 22:18:04 UTC (rev 501604)
@@ -1,79 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Sergej Pupykin 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: farid 
-# Contributor: Archie 
-
-pkgbase=gmic
-pkgname=(gmic zart gimp-plugin-gmic krita-plugin-gmic)
-pkgver=2.6.7
-pkgrel=1
-arch=(x86_64)
-url="https://gmic.eu/;
-license=(custom:CeCILL)
-makedepends=(gimp qt5-base fftw openexr opencv eigen)
-source=(https://gmic.eu/files/source/gmic_$pkgver.tar.gz zart-opencv4.patch)
-sha256sums=('2e5535d1bae66254136e928428750aac8efcef6f4413fc352b6de9ce8ac8b0ff'
-'182c6723708302a8cee92bfb45a40ff09b8903c649ce856d0d8cd10aab0ee39b')
-
-prepare() {
-  sed -e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' 
-i gmic-$pkgver/src/Makefile
-# fix overlinking
-  sed -e 's/pkg-config opencv --libs ||//' -e 
's/-lopencv_highgui/-lopencv_videoio/' \
-  -e 's/pkg-config opencv/pkg-config opencv4/' -i 
gmic-$pkgver/src/Makefile 
-# fix build with openCV 4.0
-  cd gmic-$pkgver/zart
-  patch -p1 -i "$srcdir"/zart-opencv4.patch
-}
-
-build() {
-  cd gmic-$pkgver
-  make -C src cli lib libc WGET=/bin/true LIBS=${LDFLAGS} -j1
-
-  cd gmic-qt
-  qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on HOST=none
-  make
-  qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on HOST=gimp
-  make
-  qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on HOST=krita
-  make  
-
-  cd ../zart
-  qmake GMIC_PATH=../src GMIC_DYNAMIC_LINKING=on QMAKE_CXXFLAGS+=" 
-DOPENCV2_HEADERS"
-  make
-}
-
-package_gmic() {
-  pkgdesc="GREYC's Magic Image Converter: image processing framework"
-  depends=(opencv fftw curl)
-  optdepends=('qt5-base: for the Qt UI')
-
-  cd gmic-$pkgver/src
-  make DESTDIR="$pkgdir" install
-  install -Dm644 ../COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  rm -r "$pkgdir"/usr/{bin/zart,lib/gimp,bin/gmic_krita_qt}
-}
-
-package_zart() {
-  pkgdesc="A GUI for G'MIC real-time manipulations on the output of a webcam"
-  depends=(gmic qt5-base)
-
-  install -Dm755 gmic-$pkgver/zart/zart -t "$pkgdir"/usr/bin
-  install -Dm644 gmic-$pkgver/zart/Licence_CeCILL_V2-en.html -t 
"$pkgdir"/usr/share/licenses/$pkgname
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc="Gimp plugin for the G'MIC image processing framework"
-  depends=(gimp gmic qt5-base)
-
-  install -Dm755 gmic-$pkgver/gmic-qt/gmic_gimp_qt 
"$pkgdir"/usr/lib/gimp/2.0/plug-ins/gmic_gimp
-  install -Dm644 gmic-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_krita-plugin-gmic() {
-  pkgdesc="Krita plugin for the G'MIC image processing framework"
-  depends=(krita gmic)
-
-  install -Dm755 gmic-$pkgver/gmic-qt/gmic_krita_qt -t "$pkgdir"/usr/bin/
-  install -Dm644 gmic-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: gmic/repos/community-x86_64/PKGBUILD (from rev 501603, 
gmic/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-24 22:18:04 UTC (rev 501604)
@@ -0,0 +1,80 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Sergej Pupykin 
+# Contributor: Jan "heftig" Steffens 
+# Contributor: farid 
+# Contributor: Archie 
+
+pkgbase=gmic
+pkgname=(gmic zart gimp-plugin-gmic krita-plugin-gmic)
+pkgver=2.7.0
+pkgrel=1
+arch=(x86_64)
+url="https://gmic.eu/;
+license=(custom:CeCILL)
+makedepends=(gimp qt5-base fftw openexr opencv eigen)
+source=(https://gmic.eu/files/source/gmic_$pkgver.tar.gz zart-opencv4.patch)
+sha256sums=('8629c39ca5fa02c44a462727d36f50557e1397af2feeddf39628608c028824d3'
+'f4295a2b9a6730060e1dd763c602bd5156570d623bc69c2214dfd11e94943296')
+
+prepare() {
+  sed -e 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' 
-i gmic-$pkgver/src/Makefile
+# fix overlinking
+  sed -e 's/pkg-config opencv --libs ||//' -e 
's/-lopencv_highgui/-lopencv_videoio/' \
+  -e 's/pkg-config opencv/pkg-config opencv4/' -i 
gmic-$pkgver/src/Makefile 
+# fix build with openCV 4.0
+  cd gmic-$pkgver/zart
+  patch -p1 -i ../../zart-opencv4.patch
+  sed -e 's|opencv|opencv4|' -i zart.pro
+}
+
+build() {
+  cd gmic-$pkgver
+  make -C src cli lib libc WGET=/bin/true LIBS=${LDFLAGS} -j1
+
+  cd gmic-qt
+  qmake 

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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 22:17:30
  Author: foutrelis
Revision: 501601

gsl 2.6 rebuild

Modified:
  snd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 22:04:16 UTC (rev 501600)
+++ PKGBUILD2019-08-24 22:17:30 UTC (rev 501601)
@@ -5,7 +5,7 @@
 
 pkgname=snd
 pkgver=19.6
-pkgrel=1
+pkgrel=2
 pkgdesc="An advanced sound editor"
 arch=('x86_64')
 url="https://ccrma.stanford.edu/software/snd/;


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 22:15:34
  Author: foutrelis
Revision: 361123

archrelease: copy trunk to staging-x86_64

Added:
  inkscape/repos/staging-x86_64/
  inkscape/repos/staging-x86_64/PKGBUILD
(from rev 361122, inkscape/trunk/PKGBUILD)
  inkscape/repos/staging-x86_64/PKGBUILD.cmake
(from rev 361122, inkscape/trunk/PKGBUILD.cmake)

+
 PKGBUILD   |   66 +++
 PKGBUILD.cmake |   61 ++
 2 files changed, 127 insertions(+)

Copied: inkscape/repos/staging-x86_64/PKGBUILD (from rev 361122, 
inkscape/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-24 22:15:34 UTC (rev 361123)
@@ -0,0 +1,66 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Kieslich 
+# Contributor: tobias 
+
+pkgname=inkscape
+pkgver=0.92.4
+pkgrel=8
+pkgdesc='Professional vector graphics editor'
+url='https://inkscape.org/'
+license=('GPL' 'LGPL')
+arch=('x86_64')
+depends=('gc' 'gsl' 'gtkmm' 'gtkspell' 'libmagick6' 'libxslt' 'poppler-glib'
+ 'popt' 'potrace' 'ttf-dejavu' 'python2' 'libcdr'
+ 'desktop-file-utils' 'hicolor-icon-theme')
+# python is needed for glib-genmarshal (at least with GLib 2.54)
+makedepends=('boost' 'intltool' 'python')
+optdepends=('gvfs: import clip art'
+'pstoedit: latex formulas'
+'python2-scour: optimized SVG output'
+'texlive-core: latex formulas'
+'python2-numpy: some extensions'
+'python2-lxml: some extensions and filters')
+source=("https://media.inkscape.org/dl/resources/file/${pkgname}-${pkgver}.tar.bz2;)
+sha256sums=('57ec2da8177b36614a513e2822efd73af721e690f7ddc6bd0a5fbb1525b4515e')
+
+# NB: Some CDN nodes appear to be distributing an outdated version of this 
file.
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./autogen.sh
+
+   sed -i 's|/usr/bin/python\>|/usr/bin/python2|g' cxxtest/*.py
+   sed -i 's|/usr/bin/env python\>|/usr/bin/env python2|g' 
share/*/{test/,}*.py
+   sed -i 's|"python" },|"python2" },|g' 
src/extension/implementation/script.cpp
+   sed -i 's|python -c|python2 -c|g' configure share/extensions/uniconv*.py
+   sed -i 's|"python"|"python2"|g' src/main.cpp
+
+   sed -i 's| abs(| std::fabs(|g' src/ui/tools/flood-tool.cpp
+   # Fix build with poppler 0.71
+sed -e 's|gTrue|true|g' -e 's|gFalse|false|g' -e 's|GBool|bool|g' -i 
src/extension/internal/pdfinput/pdf-parser.*
+   # Fix build with poppler 0.72
+sed -e 's|getCString|c_str|g' -i src/extension/internal/pdfinput/*
+   # Fix build with poppler 0.76
+sed -e 's|new Lexer(xref, obj)|obj|g' -i 
src/extension/internal/pdfinput/pdf-parser.cpp
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export PKG_CONFIG_PATH='/usr/lib/imagemagick6/pkgconfig'
+   export FREETYPE_CONFIG="/usr/bin/pkg-config freetype2"
+
+   ./configure \
+   --prefix=/usr \
+   --with-python \
+   --with-perl \
+   --enable-lcms \
+   --enable-poppler-cairo \
+   --disable-strict-build \
+   --disable-dependency-tracking
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}

Copied: inkscape/repos/staging-x86_64/PKGBUILD.cmake (from rev 361122, 
inkscape/trunk/PKGBUILD.cmake)
===
--- staging-x86_64/PKGBUILD.cmake   (rev 0)
+++ staging-x86_64/PKGBUILD.cmake   2019-08-24 22:15:34 UTC (rev 361123)
@@ -0,0 +1,61 @@
+# $Id: PKGBUILD 305444 2017-09-13 20:29:19Z andyrtr $
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Kieslich 
+# Contributor: tobias 
+
+pkgname=inkscape
+pkgver=0.92.2
+pkgrel=3
+pkgdesc='Professional vector graphics editor'
+url='https://inkscape.org/'
+license=('GPL' 'LGPL')
+arch=('x86_64')
+makedepends=('boost' 'intltool' 'cmake')
+depends=('gc' 'gsl' 'gtkmm' 'gtkspell' 'imagemagick' 'libxslt' 'poppler-glib'
+ 'popt' 'potrace' 'ttf-dejavu' 'python' 'libcdr' 'libvisio' 'libwpg'
+ 'desktop-file-utils' 'hicolor-icon-theme')
+optdepends=('gvfs: import clip art'
+'pstoedit: latex formulas'
+'scour: optimized SVG output'
+'texlive-core: latex formulas'
+'python-numpy: some extensions'
+'python-lxml: some extensions and filters'
+'uniconvertor: reading/writing to some proprietary formats')
+source=("https://media.inkscape.org/dl/resources/file/${pkgname}-${pkgver}.tar.bz2;
+poppler-0.58.patch)
+sha256sums=('a628d0e04c254e9840947e6d866974f92c68ae31631a38b94d9b65e5cd84cfd3'
+'af6796619a74b392432c72abdb703971fbcaf1c8ff196ce5bb37505914d38f5a')
+
+# NB: Some 

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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 22:15:29
  Author: foutrelis
Revision: 361122

gsl 2.6 rebuild

Modified:
  inkscape/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 22:03:57 UTC (rev 361121)
+++ PKGBUILD2019-08-24 22:15:29 UTC (rev 361122)
@@ -4,7 +4,7 @@
 
 pkgname=inkscape
 pkgver=0.92.4
-pkgrel=7
+pkgrel=8
 pkgdesc='Professional vector graphics editor'
 url='https://inkscape.org/'
 license=('GPL' 'LGPL')


[arch-commits] Commit in sagemath/repos (15 files)

2019-08-24 Thread Felix Yan via arch-commits
Date: Saturday, August 24, 2019 @ 22:04:16
  Author: felixonmars
Revision: 501600

archrelease: copy trunk to community-staging-x86_64

Added:
  sagemath/repos/community-staging-x86_64/
  sagemath/repos/community-staging-x86_64/PKGBUILD
(from rev 501597, sagemath/trunk/PKGBUILD)
  sagemath/repos/community-staging-x86_64/fes02.patch
(from rev 501597, sagemath/trunk/fes02.patch)
  sagemath/repos/community-staging-x86_64/latte-count.patch
(from rev 501597, sagemath/trunk/latte-count.patch)
  sagemath/repos/community-staging-x86_64/meataxe-tables.patch
(from rev 501597, sagemath/trunk/meataxe-tables.patch)
  sagemath/repos/community-staging-x86_64/package.patch
(from rev 501597, sagemath/trunk/package.patch)
  sagemath/repos/community-staging-x86_64/sagemath-cremona.patch
(from rev 501597, sagemath/trunk/sagemath-cremona.patch)
  sagemath/repos/community-staging-x86_64/sagemath-ecl-sigfpe.patch
(from rev 501597, sagemath/trunk/sagemath-ecl-sigfpe.patch)
  sagemath/repos/community-staging-x86_64/sagemath-env.patch
(from rev 501597, sagemath/trunk/sagemath-env.patch)
  sagemath/repos/community-staging-x86_64/sagemath-linbox-1.6.patch
(from rev 501597, sagemath/trunk/sagemath-linbox-1.6.patch)
  sagemath/repos/community-staging-x86_64/sagemath-python3-notebook.patch
(from rev 501597, sagemath/trunk/sagemath-python3-notebook.patch)
  sagemath/repos/community-staging-x86_64/sagemath-singular-4.1.2.patch
(from rev 501598, sagemath/trunk/sagemath-singular-4.1.2.patch)
  sagemath/repos/community-staging-x86_64/sagemath-threejs-dir-structure.patch
(from rev 501598, sagemath/trunk/sagemath-threejs-dir-structure.patch)
  sagemath/repos/community-staging-x86_64/sagemath-threejs.patch
(from rev 501598, sagemath/trunk/sagemath-threejs.patch)
  sagemath/repos/community-staging-x86_64/test-optional.patch
(from rev 501599, sagemath/trunk/test-optional.patch)

--+
 PKGBUILD |  163 
 fes02.patch  |   57 ++
 latte-count.patch|   89 
 meataxe-tables.patch |   34 +
 package.patch|   39 +
 sagemath-cremona.patch   |   31 +
 sagemath-ecl-sigfpe.patch|  147 +++
 sagemath-env.patch   |  141 +++
 sagemath-linbox-1.6.patch|  650 +
 sagemath-python3-notebook.patch  |   18 
 sagemath-singular-4.1.2.patch|  102 +
 sagemath-threejs-dir-structure.patch |   40 ++
 sagemath-threejs.patch   |   11 
 test-optional.patch  |   20 +
 14 files changed, 1542 insertions(+)

Copied: sagemath/repos/community-staging-x86_64/PKGBUILD (from rev 501597, 
sagemath/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-24 22:04:16 UTC (rev 501600)
@@ -0,0 +1,163 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Evgeniy Alekseev 
+# Contributor: Daniel Wallace 
+# Contributor: Thomas Dziedzic 
+# Contributor: Osman Ugus 
+# Contributor: Stefan Husmann 
+
+pkgbase=sagemath
+pkgname=(sagemath sagemath-jupyter)
+pkgver=8.8
+pkgrel=5
+pkgdesc="Open Source Mathematics Software, free alternative to Magma, Maple, 
Mathematica, and Matlab"
+arch=(x86_64)
+url="http://www.sagemath.org;
+license=(GPL)
+depends=(ipython2 palp brial cliquer maxima-ecl gfan sympow nauty python2-rpy2 
python2-fpylll python2-psutil python2-cypari2
+  python2-matplotlib python2-scipy python2-sympy python2-networkx 
python2-pillow python2-pplpy python2-future
+  gap flintqs lcalc lrcalc arb eclib zn_poly gd python2-cvxopt pynac linbox 
m4rie rubiks pari-galdata pari-seadata-small planarity rankwidth tachyon
+  sage-data-combinatorial_designs sage-data-elliptic_curves sage-data-graphs 
sage-data-polytopes_db sage-data-conway_polynomials
+  iml libgiac libhomfly libbraiding symmetrica three.js)
+optdepends=('cython2: to compile cython code' 'python2-pkgconfig: to compile 
cython code'
+  'jmol: 3D plots' 'sage-notebook: Flask notebook interface (deprecated)'
+  'sagemath-doc: Documentation and inline help' 'python2-igraph: igraph 
backend for graph theory'
+  'coin-or-cbc: COIN backend for numerical computations' 'coin-or-csdp: for 
computing Lovász theta-function of graphs'
+  'buckygen: for generating fullerene graphs' 'plantri: for generating some 
classes of graphs' 'benzene: for generating fusenes and benzenoids'
+  'ffmpeg: to export animations to video' 'imagemagick: to show animations'
+  'coxeter: Coxeter groups implementation'
+  'lrs: Algorithms for linear reverse search used in game theory and for 
computing volume of polytopes'
+  'libfes: exhaustive search of solutions for boolean equations' 
'python2-pynormaliz: Normaliz backend for polyhedral computations'
+  'latte-integrale: integral 

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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 22:03:57
  Author: arojas
Revision: 361121

archrelease: copy trunk to extra-x86_64

Added:
  appstream/repos/extra-x86_64/PKGBUILD
(from rev 361120, appstream/trunk/PKGBUILD)
  appstream/repos/extra-x86_64/update-appstream-cache.hook
(from rev 361120, appstream/trunk/update-appstream-cache.hook)
Deleted:
  appstream/repos/extra-x86_64/PKGBUILD
  appstream/repos/extra-x86_64/update-appstream-cache.hook

-+
 PKGBUILD|  112 +-
 update-appstream-cache.hook |   34 ++--
 2 files changed, 73 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-24 22:03:38 UTC (rev 361120)
+++ PKGBUILD2019-08-24 22:03:57 UTC (rev 361121)
@@ -1,56 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Jameson Pugh 
-# Contributor: Tim Jester-Pfadt gmx.de>
-
-pkgbase=appstream
-pkgname=(appstream appstream-qt)
-pkgver=0.12.7
-pkgrel=1
-pkgdesc="Provides a standard for creating app stores across distributions"
-arch=(x86_64)
-url="https://distributions.freedesktop.org/wiki/AppStream;
-license=(GPL)
-depends=(libyaml libxml2 libstemmer glib2 lmdb)
-makedepends=(meson xmlto gobject-introspection gtk-doc qt5-tools itstool vala 
gperf)
-source=("https://www.freedesktop.org/software/appstream/releases/AppStream-$pkgver.tar.xz"{,.asc}
-update-appstream-cache.hook)
-sha256sums=('696d2f09187a8cdcb1e87a881a9634b5d921f8d24be08e4f41f2bcf11d8b57d5'
-'SKIP'
-'a6c42e4607ffd7d7dc931d608f1856e2ba7689d4caac0783e7100d86de0f951b')
-validpgpkeys=(D33A3F0CA16B0ACC51A60738494C8A5FBF4DECEB) # Matthias Klumpp 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  meson ../AppStream-$pkgver \
---prefix=/usr \
--Dqt=true \
--Dvapi=true
-  ninja
-}
-
-package_appstream() {
-  cd build
-
-  DESTDIR="$pkgdir" ninja install
-
-# provided by -qt subpackage
-  rm -r "$pkgdir"/usr/{include/AppStreamQt,lib/cmake,lib/libAppStreamQt.*}
-
-  install -Dm644 "$srcdir"/update-appstream-cache.hook 
"$pkgdir"/usr/share/libalpm/hooks/update-appstream-cache.hook
-}
-
-package_appstream-qt() {
-  pkgdesc='Qt5 interface for AppStream'
-  depends=(appstream qt5-base)
-
-  cd build
-  DESTDIR="$pkgdir" ninja install
-
-# provided by appstream
-  rm -r 
"$pkgdir"{/etc,/usr/{bin,include/appstream,lib/{girepository-1.0,libappstream*,pkgconfig},share}}
-}

Copied: appstream/repos/extra-x86_64/PKGBUILD (from rev 361120, 
appstream/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-24 22:03:57 UTC (rev 361121)
@@ -0,0 +1,56 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Jameson Pugh 
+# Contributor: Tim Jester-Pfadt gmx.de>
+
+pkgbase=appstream
+pkgname=(appstream appstream-qt)
+pkgver=0.12.8
+pkgrel=1
+pkgdesc="Provides a standard for creating app stores across distributions"
+arch=(x86_64)
+url="https://distributions.freedesktop.org/wiki/AppStream;
+license=(GPL)
+depends=(libyaml libxml2 libstemmer glib2 lmdb)
+makedepends=(meson xmlto gobject-introspection gtk-doc qt5-tools itstool vala 
gperf)
+source=("https://www.freedesktop.org/software/appstream/releases/AppStream-$pkgver.tar.xz"{,.asc}
+update-appstream-cache.hook)
+sha256sums=('6e2518529fdfc554b2d69a489dd3c50d6f660872236daa20003a4258d503ccff'
+'SKIP'
+'a6c42e4607ffd7d7dc931d608f1856e2ba7689d4caac0783e7100d86de0f951b')
+validpgpkeys=(D33A3F0CA16B0ACC51A60738494C8A5FBF4DECEB) # Matthias Klumpp 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  meson ../AppStream-$pkgver \
+--prefix=/usr \
+-Dqt=true \
+-Dvapi=true
+  ninja
+}
+
+package_appstream() {
+  cd build
+
+  DESTDIR="$pkgdir" ninja install
+
+# provided by -qt subpackage
+  rm -r "$pkgdir"/usr/{include/AppStreamQt,lib/cmake,lib/libAppStreamQt.*}
+
+  install -Dm644 "$srcdir"/update-appstream-cache.hook 
"$pkgdir"/usr/share/libalpm/hooks/update-appstream-cache.hook
+}
+
+package_appstream-qt() {
+  pkgdesc='Qt5 interface for AppStream'
+  depends=(appstream qt5-base)
+
+  cd build
+  DESTDIR="$pkgdir" ninja install
+
+# provided by appstream
+  rm -r 
"$pkgdir"{/etc,/usr/{bin,include/appstream,lib/{girepository-1.0,libappstream*,pkgconfig},share}}
+}

Deleted: update-appstream-cache.hook
===
--- update-appstream-cache.hook 2019-08-24 22:03:38 UTC (rev 361120)
+++ update-appstream-cache.hook 2019-08-24 22:03:57 UTC (rev 361121)
@@ -1,17 +0,0 @@
-[Trigger]
-Type = File
-Operation = Install
-Operation = Upgrade
-Operation = Remove
-Target = usr/share/app-info/*
-
-[Trigger]
-Type = Package
-Operation = Install
-Operation = Upgrade
-Target = appstream
-
-[Action]
-Description = Updating the appstream cache...
-When = PostTransaction
-Exec = 

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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 22:03:30
  Author: foutrelis
Revision: 501596

archrelease: copy trunk to community-staging-x86_64

Added:
  gambas3/repos/community-staging-x86_64/
  gambas3/repos/community-staging-x86_64/PKGBUILD
(from rev 501595, gambas3/trunk/PKGBUILD)
  gambas3/repos/community-staging-x86_64/gambas-poppler-0.76.patch
(from rev 501595, gambas3/trunk/gambas-poppler-0.76.patch)
  gambas3/repos/community-staging-x86_64/gambas-qt-5.13.patch
(from rev 501595, gambas3/trunk/gambas-qt-5.13.patch)

---+
 PKGBUILD  | 1147 
 gambas-poppler-0.76.patch |  128 
 gambas-qt-5.13.patch  |  342 +
 3 files changed, 1617 insertions(+)

Copied: gambas3/repos/community-staging-x86_64/PKGBUILD (from rev 501595, 
gambas3/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-24 22:03:30 UTC (rev 501596)
@@ -0,0 +1,1147 @@
+# Maintainer: Laurent Carlier 
+# Contributor : sebikul 
+
+pkgbase=gambas3
+pkgname=('gambas3-gb-args'
+ 'gambas3-gb-cairo' 'gambas3-gb-chart' 'gambas3-gb-clipper' 
'gambas3-gb-complex' 'gambas3-gb-compress' 'gambas3-gb-crypt'
+ 'gambas3-gb-dbus' 'gambas3-gb-data'
+ 'gambas3-gb-db-form' 'gambas3-gb-db-mysql' 'gambas3-gb-db-odbc' 
'gambas3-gb-db-postgresql' 'gambas3-gb-db-sqlite3' 'gambas3-gb-db'
+ 'gambas3-gb-desktop-gnome' 'gambas3-gb-desktop-x11' 
'gambas3-gb-desktop'
+ 'gambas3-gb-eval-highlight' 'gambas3-gb-httpd'
+ 'gambas3-gb-form-dialog' 'gambas3-gb-form-mdi' 
'gambas3-gb-form-terminal' 'gambas3-gb-form-stock' 'gambas3-gb-form-editor' 
'gambas3-gb-form'
+ 'gambas3-gb-gmp' 'gambas3-gb-gsl' 'gambas3-gb-gtk-opengl' 
'gambas3-gb-gtk' 'gambas3-gb-gtk3'
+ 'gambas3-gb-image-effect' 'gambas3-gb-image-imlib' 
'gambas3-gb-image-io' 'gambas3-gb-image' 'gambas3-gb-inotify'
+ 'gambas3-gb-libxml' 'gambas3-gb-logging'
+ 'gambas3-gb-map' 'gambas3-gb-markdown' 'gambas3-gb-media-form' 
'gambas3-gb-media' 'gambas3-gb-memcached' 'gambas3-gb-mime' 'gambas3-gb-mysql'
+ 'gambas3-gb-ncurses' 'gambas3-gb-net-curl' 'gambas3-gb-net-pop3' 
'gambas3-gb-net-smtp' 'gambas3-gb-net'
+ 'gambas3-gb-openal' 'gambas3-gb-opengl-glu' 'gambas3-gb-opengl-glsl' 
'gambas3-gb-opengl-sge' 'gambas3-gb-opengl' 'gambas3-gb-option'
+ 'gambas3-gb-pcre' 'gambas3-gb-pdf'
+ 'gambas3-gb-qt5-opengl' 'gambas3-gb-qt5-webkit' 'gambas3-gb-qt5'
+ 'gambas3-gb-openssl'
+ 'gambas3-gb-report'
+ 'gambas3-gb-scanner' 'gambas3-gb-sdl2-audio' 'gambas3-gb-sdl2' 
'gambas3-gb-sdl-sound' 'gambas3-gb-sdl' 'gambas3-gb-settings' 
'gambas3-gb-signal'
+ 'gambas3-gb-term'
+ 'gambas3-gb-util-web' 'gambas3-gb-util'
+ 'gambas3-gb-v4l' 'gambas3-gb-vb'
+ 'gambas3-gb-xml-html' 'gambas3-gb-xml-rpc' 'gambas3-gb-xml-xslt' 
'gambas3-gb-xml'
+ 'gambas3-gb-web-feed' 'gambas3-gb-web-form' 'gambas3-gb-web'
+ 'gambas3-runtime' 'gambas3-devel' 'gambas3-ide' 'gambas3-script')
+pkgver=3.13.0
+pkgrel=7
+pkgdesc="A free development environment based on a Basic interpreter."
+arch=('x86_64')
+url="http://gambas.sourceforge.net/;
+license=('GPL2')
+groups=('gambas3')
+makedepends=('intltool' 'postgresql' 'libffi' 'bzip2' 'glib2' 'v4l-utils'
+ 'zlib' 'mesa' 'glew' 'xdg-utils' 'gtk2' 'imlib2' 'gdk-pixbuf2' 'gtk3'
+ 'postgresql-libs' 'mariadb-libs' 'unixodbc' 'sqlite' 'librsvg'
+ 'curl' 'poppler-glib' 'sdl_mixer' 'sdl_ttf' 'sdl2' 'sdl2_mixer' 
'sdl2_image' 'sdl2_ttf' 'libxtst'
+ 'pcre' 'qt5-webkit' 'qt5-x11extras' 'qt5-svg' 'libxcursor' 'libsm' 
'dbus' 'libxml2'
+ 'libxslt' 'libgnome-keyring' 'gsl' 'gst-plugins-base-libs' 'alure' 
'gtkglext' 'ncurses'
+'gmime3')
+options=('!emptydirs' 'libtool')
+source=("https://gitlab.com/gambas/gambas/-/archive/${pkgver}/gambas-${pkgver}.tar.bz2;
+gambas-poppler-0.76.patch
+gambas-qt-5.13.patch)
+sha512sums=('5a7954df222a91f87926e6d96aca39b098cd3205f43d48557459e639ed4cf70bfb67c41a19d8296ec8f82acaa9a040549a99d4e1702f3fae2af381615a6cc84d'
+
'dab805eb855ad5774833a9d040599c37b7154cf8ad065278d425ea4a23749c442e0585309e4c03f5f2be286398226ee7153f1060fd2e1025c3761e5ded7056df'
+
'f7f6c124886062a14ec5fc03d1985317349dcaa83743364eb210413ba3060a2814c67de5715f0e829c642a2ba1a38072039741ebdeb268f05bbebbaebd38')
+
+create_dirs() {
+  install -dm755 ${pkgdir}/usr/lib/gambas3
+  install -dm755 ${pkgdir}/usr/share/gambas3/info/control
+}
+
+prepare() {
+  cd ${srcdir}/gambas-${pkgver}
+
+  patch -p1 -i ../gambas-poppler-0.76.patch
+  patch -p1 -i ../gambas-qt-5.13.patch
+  ./reconf-all
+}
+
+build() {
+  cd ${srcdir}/gambas-${pkgver}
+
+  ./configure --prefix=/usr
+
+  make bindir=${pkgdir}/usr/bin
+
+  mkdir -p 

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

2019-08-24 Thread Felix Yan via arch-commits
Date: Saturday, August 24, 2019 @ 22:03:36
  Author: felixonmars
Revision: 501597

gsl 2.6 rebuild

Modified:
  sagemath/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 22:03:30 UTC (rev 501596)
+++ PKGBUILD2019-08-24 22:03:36 UTC (rev 501597)
@@ -8,7 +8,7 @@
 pkgbase=sagemath
 pkgname=(sagemath sagemath-jupyter)
 pkgver=8.8
-pkgrel=4
+pkgrel=5
 pkgdesc="Open Source Mathematics Software, free alternative to Magma, Maple, 
Mathematica, and Matlab"
 arch=(x86_64)
 url="http://www.sagemath.org;


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 22:03:58
  Author: foutrelis
Revision: 501598

gsl 2.6 rebuild

Modified:
  enblend-enfuse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 22:03:36 UTC (rev 501597)
+++ PKGBUILD2019-08-24 22:03:58 UTC (rev 501598)
@@ -4,7 +4,7 @@
 
 pkgname=enblend-enfuse
 pkgver=4.2
-pkgrel=4
+pkgrel=5
 pkgdesc="Intelligent blend tool for overlapping picture"
 arch=('x86_64')
 url="http://enblend.sourceforge.net;


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 22:04:02
  Author: foutrelis
Revision: 501599

archrelease: copy trunk to community-staging-x86_64

Added:
  enblend-enfuse/repos/community-staging-x86_64/
  enblend-enfuse/repos/community-staging-x86_64/PKGBUILD
(from rev 501598, enblend-enfuse/trunk/PKGBUILD)

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

Copied: enblend-enfuse/repos/community-staging-x86_64/PKGBUILD (from rev 
501598, enblend-enfuse/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-24 22:04:02 UTC (rev 501599)
@@ -0,0 +1,34 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Daniel Isenmann 
+# Contributor: Dominik Ryba 
+
+pkgname=enblend-enfuse
+pkgver=4.2
+pkgrel=5
+pkgdesc="Intelligent blend tool for overlapping picture"
+arch=('x86_64')
+url="http://enblend.sourceforge.net;
+license=('GPL')
+depends=('lcms2' 'vigra' 'gsl')
+makedepends=('libjpeg' 'libpng' 'libtiff' 'openexr' 'libgl' 'glu' 'boost' 
'help2man' 'texlive-bin')
+# Not building doc fails if pdflatex is not available, hence 
texlive-bin above.
+# Building doc is failing because of something FS#56460 related, 
but not sure why.
+# 'texlive-latexextra' 'perl-readonly' 'perl-timedate' 
'imagemagick' 'hevea' 'gnuplot' 'graphviz' 'librsvg')
+replaces=('enblend')
+conflicts=('enblend')
+provides=('enblend')
+source=(https://downloads.sourceforge.net/enblend/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('8703e324939ebd70d76afd350e56800f5ea2c053a040a5f5218b2a1a4300bd48')
+
+build() {
+cd ${pkgname}-${pkgver}
+./configure --prefix=/usr \
+--enable-openmp=yes \
+--enable-opencl=yes
+make
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+make DESTDIR="${pkgdir}" install
+}


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 22:03:15
  Author: foutrelis
Revision: 501595

gsl 2.6 rebuild

Modified:
  gambas3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 22:01:15 UTC (rev 501594)
+++ PKGBUILD2019-08-24 22:03:15 UTC (rev 501595)
@@ -27,7 +27,7 @@
  'gambas3-gb-web-feed' 'gambas3-gb-web-form' 'gambas3-gb-web'
  'gambas3-runtime' 'gambas3-devel' 'gambas3-ide' 'gambas3-script')
 pkgver=3.13.0
-pkgrel=6
+pkgrel=7
 pkgdesc="A free development environment based on a Basic interpreter."
 arch=('x86_64')
 url="http://gambas.sourceforge.net/;


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 22:03:38
  Author: arojas
Revision: 361120

Update to 0.12.8

Modified:
  appstream/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 21:56:27 UTC (rev 361119)
+++ PKGBUILD2019-08-24 22:03:38 UTC (rev 361120)
@@ -4,7 +4,7 @@
 
 pkgbase=appstream
 pkgname=(appstream appstream-qt)
-pkgver=0.12.7
+pkgver=0.12.8
 pkgrel=1
 pkgdesc="Provides a standard for creating app stores across distributions"
 arch=(x86_64)
@@ -14,7 +14,7 @@
 makedepends=(meson xmlto gobject-introspection gtk-doc qt5-tools itstool vala 
gperf)
 
source=("https://www.freedesktop.org/software/appstream/releases/AppStream-$pkgver.tar.xz"{,.asc}
 update-appstream-cache.hook)
-sha256sums=('696d2f09187a8cdcb1e87a881a9634b5d921f8d24be08e4f41f2bcf11d8b57d5'
+sha256sums=('6e2518529fdfc554b2d69a489dd3c50d6f660872236daa20003a4258d503ccff'
 'SKIP'
 'a6c42e4607ffd7d7dc931d608f1856e2ba7689d4caac0783e7100d86de0f951b')
 validpgpkeys=(D33A3F0CA16B0ACC51A60738494C8A5FBF4DECEB) # Matthias Klumpp 



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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 22:01:10
  Author: foutrelis
Revision: 501593

gsl 2.6 rebuild

Modified:
  kstars/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 22:01:03 UTC (rev 501592)
+++ PKGBUILD2019-08-24 22:01:10 UTC (rev 501593)
@@ -4,7 +4,7 @@
 
 pkgname=kstars
 pkgver=3.3.4
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="Desktop Planetarium"
 url="https://kde.org/applications/education/kstars/;


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 22:01:15
  Author: foutrelis
Revision: 501594

archrelease: copy trunk to community-staging-x86_64

Added:
  kstars/repos/community-staging-x86_64/
  kstars/repos/community-staging-x86_64/PKGBUILD
(from rev 501593, kstars/trunk/PKGBUILD)

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

Copied: kstars/repos/community-staging-x86_64/PKGBUILD (from rev 501593, 
kstars/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-24 22:01:15 UTC (rev 501594)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kstars
+pkgver=3.3.4
+pkgrel=2
+epoch=1
+pkgdesc="Desktop Planetarium"
+url="https://kde.org/applications/education/kstars/;
+arch=(x86_64)
+license=(GPL LGPL FDL)
+depends=(wcslib libraw kplotting knewstuff knotifyconfig qt5-datavis3d libindi 
qt5-quickcontrols qt5-websockets qtkeychain
+ breeze-icons hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools eigen)
+optdepends=('xplanet: XPlanet support')
+source=("https://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('0579dabaf8a024bcea1e7c97cc3284a013da8d2bc14a95dcdb74f088e18e86d9'
+'SKIP')
+validpgpkeys=(259D9FCEE9175351965633696D9CE2AEE028C4F3) # Jasem Mutlaq 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DOpenGL_GL_PREFERENCE=GLVND
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 22:01:03
  Author: arojas
Revision: 501592

archrelease: copy trunk to community-x86_64

Added:
  clipgrab/repos/community-x86_64/PKGBUILD
(from rev 501591, clipgrab/trunk/PKGBUILD)
  clipgrab/repos/community-x86_64/clipgrab.desktop
(from rev 501591, clipgrab/trunk/clipgrab.desktop)
Deleted:
  clipgrab/repos/community-x86_64/PKGBUILD
  clipgrab/repos/community-x86_64/clipgrab.desktop

--+
 PKGBUILD |   74 ++---
 clipgrab.desktop |   26 +-
 2 files changed, 50 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-24 22:00:43 UTC (rev 501591)
+++ PKGBUILD2019-08-24 22:01:03 UTC (rev 501592)
@@ -1,37 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Alois Nespor 
-# Contributor: kikadf 
-# Contributor: Stefan Husmann 
-# Contributor: thacrazze 
-
-pkgname=clipgrab
-pkgver=3.8.3
-pkgrel=1
-pkgdesc='A video downloader and converter for YouTube, Veoh, DailyMotion, 
MyVideo, ...'
-arch=(x86_64)
-url='https://clipgrab.org'
-license=(GPL3)
-depends=(qt5-webengine)
-optdepends=('ffmpeg: for the conversion functionality')
-source=(https://download.clipgrab.org/$pkgname-$pkgver.tar.gz
-$pkgname.desktop)
-sha256sums=('ee03fe7fbac15c8ed7f8e6fd577c8d9372472ac0317dc5bf7fc363f930dd1bed'
-'840910097d8c129ea12c395c4a33f562591e878e521c98fde8a7b3f9403aa23f')
-
-build() {
-  cd $pkgname-$pkgver
-
-  qmake \
-QMAKE_CFLAGS_RELEASE="$CPPFLAGS $CFLAGS" \
-QMAKE_CXXFLAGS_RELEASE="$CPPFLAGS $CXXFLAGS" \
-QMAKE_LFLAGS_RELEASE="$LDFLAGS" \
-clipgrab.pro
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dm755 $pkgname -t "$pkgdir"/usr/bin/
-  install -Dm644 icon.png "$pkgdir/usr/share/pixmaps/$pkgname.png"
-  install -Dm644 "$srcdir"/$pkgname.desktop -t 
"$pkgdir"/usr/share/applications/
-}

Copied: clipgrab/repos/community-x86_64/PKGBUILD (from rev 501591, 
clipgrab/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-24 22:01:03 UTC (rev 501592)
@@ -0,0 +1,37 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Alois Nespor 
+# Contributor: kikadf 
+# Contributor: Stefan Husmann 
+# Contributor: thacrazze 
+
+pkgname=clipgrab
+pkgver=3.8.4
+pkgrel=1
+pkgdesc='A video downloader and converter for YouTube, Veoh, DailyMotion, 
MyVideo, ...'
+arch=(x86_64)
+url='https://clipgrab.org'
+license=(GPL3)
+depends=(qt5-webengine)
+optdepends=('ffmpeg: for the conversion functionality')
+source=(https://download.clipgrab.org/$pkgname-$pkgver.tar.gz
+$pkgname.desktop)
+sha256sums=('5a90ead0eddc9c1bb2d2d2b96fd1306226bc6076a29b9ded46a3349df378d95f'
+'840910097d8c129ea12c395c4a33f562591e878e521c98fde8a7b3f9403aa23f')
+
+build() {
+  cd $pkgname-$pkgver
+
+  qmake \
+QMAKE_CFLAGS_RELEASE="$CPPFLAGS $CFLAGS" \
+QMAKE_CXXFLAGS_RELEASE="$CPPFLAGS $CXXFLAGS" \
+QMAKE_LFLAGS_RELEASE="$LDFLAGS" \
+clipgrab.pro
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dm755 $pkgname -t "$pkgdir"/usr/bin/
+  install -Dm644 icon.png "$pkgdir/usr/share/pixmaps/$pkgname.png"
+  install -Dm644 "$srcdir"/$pkgname.desktop -t 
"$pkgdir"/usr/share/applications/
+}

Deleted: clipgrab.desktop
===
--- clipgrab.desktop2019-08-24 22:00:43 UTC (rev 501591)
+++ clipgrab.desktop2019-08-24 22:01:03 UTC (rev 501592)
@@ -1,13 +0,0 @@
-[Desktop Entry]
-Type=Application
-Encoding=UTF-8
-Name=ClipGrab
-GenericName=Video Downloader
-GenericName[de]=Video-Downloader
-Comment=Download videos and convert it
-Comment[de]=Videos herunterladen und konvertieren
-Icon=/usr/share/pixmaps/clipgrab.png
-Exec=clipgrab
-TryExec=clipgrab
-Terminal=false
-Categories=Qt;AudioVideo;Audio;Video;

Copied: clipgrab/repos/community-x86_64/clipgrab.desktop (from rev 501591, 
clipgrab/trunk/clipgrab.desktop)
===
--- clipgrab.desktop(rev 0)
+++ clipgrab.desktop2019-08-24 22:01:03 UTC (rev 501592)
@@ -0,0 +1,13 @@
+[Desktop Entry]
+Type=Application
+Encoding=UTF-8
+Name=ClipGrab
+GenericName=Video Downloader
+GenericName[de]=Video-Downloader
+Comment=Download videos and convert it
+Comment[de]=Videos herunterladen und konvertieren
+Icon=/usr/share/pixmaps/clipgrab.png
+Exec=clipgrab
+TryExec=clipgrab
+Terminal=false
+Categories=Qt;AudioVideo;Audio;Video;


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 22:00:43
  Author: arojas
Revision: 501591

Update to 3.8.4

Modified:
  clipgrab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 21:58:35 UTC (rev 501590)
+++ PKGBUILD2019-08-24 22:00:43 UTC (rev 501591)
@@ -5,7 +5,7 @@
 # Contributor: thacrazze 
 
 pkgname=clipgrab
-pkgver=3.8.3
+pkgver=3.8.4
 pkgrel=1
 pkgdesc='A video downloader and converter for YouTube, Veoh, DailyMotion, 
MyVideo, ...'
 arch=(x86_64)
@@ -15,7 +15,7 @@
 optdepends=('ffmpeg: for the conversion functionality')
 source=(https://download.clipgrab.org/$pkgname-$pkgver.tar.gz
 $pkgname.desktop)
-sha256sums=('ee03fe7fbac15c8ed7f8e6fd577c8d9372472ac0317dc5bf7fc363f930dd1bed'
+sha256sums=('5a90ead0eddc9c1bb2d2d2b96fd1306226bc6076a29b9ded46a3349df378d95f'
 '840910097d8c129ea12c395c4a33f562591e878e521c98fde8a7b3f9403aa23f')
 
 build() {


[arch-commits] Commit in coin-or-osi/trunk (PKGBUILD)

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 21:58:18
  Author: arojas
Revision: 501589

Update to 0.108.5

Modified:
  coin-or-osi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 21:56:29 UTC (rev 501588)
+++ PKGBUILD2019-08-24 21:58:18 UTC (rev 501589)
@@ -1,7 +1,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=coin-or-osi
-pkgver=0.108.4
+pkgver=0.108.5
 pkgrel=1
 pkgdesc="COIN-OR Open Solver Interface"
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(coin-or-coinutils)
 makedepends=(gcc-fortran)
 source=("https://www.coin-or.org/download/source/Osi/Osi-${pkgver}.tgz;)
-sha256sums=('45a72e7019d33b9cf9c3f9fde30a9cb1e822e3b6897239c7dd67bc0060837c8d')
+sha256sums=('8efabdb3d5c89837d73fa6f9e7b764dce7450c579037964b64a996757f4d7d2c')
 
 build() {
   cd Osi-$pkgver


[arch-commits] Commit in coin-or-osi/repos/community-x86_64 (PKGBUILD PKGBUILD)

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 21:58:35
  Author: arojas
Revision: 501590

archrelease: copy trunk to community-x86_64

Added:
  coin-or-osi/repos/community-x86_64/PKGBUILD
(from rev 501589, coin-or-osi/trunk/PKGBUILD)
Deleted:
  coin-or-osi/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-24 21:58:18 UTC (rev 501589)
+++ PKGBUILD2019-08-24 21:58:35 UTC (rev 501590)
@@ -1,29 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=coin-or-osi
-pkgver=0.108.4
-pkgrel=1
-pkgdesc="COIN-OR Open Solver Interface"
-arch=(x86_64)
-url="https://projects.coin-or.org/Osi;
-license=(EPL)
-groups=(coin-or)
-depends=(coin-or-coinutils)
-makedepends=(gcc-fortran)
-source=("https://www.coin-or.org/download/source/Osi/Osi-${pkgver}.tgz;)
-sha256sums=('45a72e7019d33b9cf9c3f9fde30a9cb1e822e3b6897239c7dd67bc0060837c8d')
-
-build() {
-  cd Osi-$pkgver
-  COIN_SKIP_PROJECTS="Sample" \
-  ./configure --prefix=/usr --enable-dependency-linking \
-  --with-coinutils-lib="$(pkg-config --libs coinutils)" \
-  --with-coinutils-incdir="/usr/include/coin/"
-  make
-}
-
-package() {
-  cd Osi-$pkgver
-  PKG_CONFIG_LIBDIR="${pkgdir}/usr/lib/pkgconfig/" \
-  make DESTDIR="$pkgdir" install
-}

Copied: coin-or-osi/repos/community-x86_64/PKGBUILD (from rev 501589, 
coin-or-osi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-24 21:58:35 UTC (rev 501590)
@@ -0,0 +1,29 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=coin-or-osi
+pkgver=0.108.5
+pkgrel=1
+pkgdesc="COIN-OR Open Solver Interface"
+arch=(x86_64)
+url="https://projects.coin-or.org/Osi;
+license=(EPL)
+groups=(coin-or)
+depends=(coin-or-coinutils)
+makedepends=(gcc-fortran)
+source=("https://www.coin-or.org/download/source/Osi/Osi-${pkgver}.tgz;)
+sha256sums=('8efabdb3d5c89837d73fa6f9e7b764dce7450c579037964b64a996757f4d7d2c')
+
+build() {
+  cd Osi-$pkgver
+  COIN_SKIP_PROJECTS="Sample" \
+  ./configure --prefix=/usr --enable-dependency-linking \
+  --with-coinutils-lib="$(pkg-config --libs coinutils)" \
+  --with-coinutils-incdir="/usr/include/coin/"
+  make
+}
+
+package() {
+  cd Osi-$pkgver
+  PKG_CONFIG_LIBDIR="${pkgdir}/usr/lib/pkgconfig/" \
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in coin-or-coinutils/repos/community-x86_64 (PKGBUILD PKGBUILD)

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 21:56:29
  Author: arojas
Revision: 501588

archrelease: copy trunk to community-x86_64

Added:
  coin-or-coinutils/repos/community-x86_64/PKGBUILD
(from rev 501587, coin-or-coinutils/trunk/PKGBUILD)
Deleted:
  coin-or-coinutils/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-24 21:56:09 UTC (rev 501587)
+++ PKGBUILD2019-08-24 21:56:29 UTC (rev 501588)
@@ -1,34 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: tikysal 
-# Derived from Daniel Ehlers'
-
-pkgname=coin-or-coinutils
-pkgver=2.11.2
-pkgrel=1
-pkgdesc="COIN-OR collection of utility classes"
-arch=(x86_64)
-url="https://projects.coin-or.org/CoinUtils;
-license=(EPL)
-depends=(zlib bzip2 glpk lapack)
-makedepends=(gcc-fortran doxygen)
-groups=(coin-or)
-source=("https://www.coin-or.org/download/source/CoinUtils/CoinUtils-$pkgver.tgz;)
-sha256sums=('23e955e5c02f2ccc9db9561f4f803ef76e976cf4aed54cea2973eedbffc79ad8')
-
-build() {
-  cd CoinUtils-$pkgver
-
-  ./configure --prefix=/usr --with-blas-lib='-lblas' 
--with-lapack-lib='-llapack' --with-glpk-lib='-lglpk' 
--enable-dependency-linking
-  make
-}
-
-check() {
-  cd CoinUtils-$pkgver
-  make test
-}
-
-package() {
-  cd CoinUtils-$pkgver
-  PKG_CONFIG_LIBDIR="$pkgdir"/usr/lib/pkgconfig/ \
-  make DESTDIR="$pkgdir" install
-}

Copied: coin-or-coinutils/repos/community-x86_64/PKGBUILD (from rev 501587, 
coin-or-coinutils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-24 21:56:29 UTC (rev 501588)
@@ -0,0 +1,34 @@
+# Maintainer: Antonio Rojas 
+# Contributor: tikysal 
+# Derived from Daniel Ehlers'
+
+pkgname=coin-or-coinutils
+pkgver=2.11.3
+pkgrel=1
+pkgdesc="COIN-OR collection of utility classes"
+arch=(x86_64)
+url="https://projects.coin-or.org/CoinUtils;
+license=(EPL)
+depends=(zlib bzip2 glpk lapack)
+makedepends=(gcc-fortran doxygen)
+groups=(coin-or)
+source=("https://www.coin-or.org/download/source/CoinUtils/CoinUtils-$pkgver.tgz;)
+sha256sums=('7c364792effe89d78b9b5385f30eaccc0fe92aab1caf5a1a835d81680639911f')
+
+build() {
+  cd CoinUtils-$pkgver
+
+  ./configure --prefix=/usr --with-blas-lib='-lblas' 
--with-lapack-lib='-llapack' --with-glpk-lib='-lglpk' 
--enable-dependency-linking
+  make
+}
+
+check() {
+  cd CoinUtils-$pkgver
+  make test
+}
+
+package() {
+  cd CoinUtils-$pkgver
+  PKG_CONFIG_LIBDIR="$pkgdir"/usr/lib/pkgconfig/ \
+  make DESTDIR="$pkgdir" install
+}


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 21:56:27
  Author: foutrelis
Revision: 361119

archrelease: copy trunk to staging-x86_64

Added:
  bogofilter/repos/staging-x86_64/
  bogofilter/repos/staging-x86_64/PKGBUILD
(from rev 361118, bogofilter/trunk/PKGBUILD)
  bogofilter/repos/staging-x86_64/bogofilter-1.2.4-test-env.patch
(from rev 361118, bogofilter/trunk/bogofilter-1.2.4-test-env.patch)

-+
 PKGBUILD|   58 ++
 bogofilter-1.2.4-test-env.patch |   11 +++
 2 files changed, 69 insertions(+)

Copied: bogofilter/repos/staging-x86_64/PKGBUILD (from rev 361118, 
bogofilter/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-24 21:56:27 UTC (rev 361119)
@@ -0,0 +1,58 @@
+# Maintainer: AndyRTR 
+# Contributor: tobias 
+# Contributor: Low Kian Seong 
+
+pkgname=bogofilter
+pkgver=1.2.4
+pkgrel=5
+pkgdesc="A fast Bayesian spam filtering tool"
+arch=('x86_64')
+license=('GPL3')
+url="http://bogofilter.sourceforge.net;
+depends=('db' 'perl' 'gsl') # 'sqlite'
+makedepends=('valgrind' 'xmlto')
+backup=('etc/bogofilter/bogofilter.cf')
+source=(https://sourceforge.net/projects/${pkgname}/files/${pkgname}-current/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2
+bogofilter-1.2.4-test-env.patch)
+md5sums=('d0a5eebb3274b23ceabe766a6443a1c5'
+ 'd01f23755ee9b4f5807b9feefea0b42d')
+
+# keep Berkeley DB as backend for now
+# sqlite3 based backend doesn't allow
+# to use db-transaction option that is
+# used to bf_compact the wordlist.db
+# other backend aren't available 
+# currently in Arch repos
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  # taken from Gentoo
+  patch -Np1 -i $srcdir/bogofilter-1.2.4-test-env.patch
+  chmod +x 
src/tests/t.{ctype,leakfind,lexer.qpcr,lexer.eoh,message_id,queue_id}
+  autoreconf -vfi
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc/bogofilter  \
+  --localstatedir=/var \
+  --enable-transactions \
+  --with-database=db  #--help
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  BF_RUN_VALGRIND=1 make -k -C src check || /bin/true
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  mv "${pkgdir}/etc/bogofilter/bogofilter.cf.example" 
"${pkgdir}/etc/bogofilter/bogofilter.cf"
+
+  install -dm755 "${pkgdir}/usr/share/${pkgname}/contrib"
+  install -m644 contrib/* "${pkgdir}/usr/share/${pkgname}/contrib/"
+}

Copied: bogofilter/repos/staging-x86_64/bogofilter-1.2.4-test-env.patch (from 
rev 361118, bogofilter/trunk/bogofilter-1.2.4-test-env.patch)
===
--- staging-x86_64/bogofilter-1.2.4-test-env.patch  
(rev 0)
+++ staging-x86_64/bogofilter-1.2.4-test-env.patch  2019-08-24 21:56:27 UTC 
(rev 361119)
@@ -0,0 +1,11 @@
+--- a/src/tests/Makefile.am
 b/src/tests/Makefile.am
+@@ -67,7 +67,7 @@
+ 
+ TESTS=$(BUILT_TESTS) $(TESTSCRIPTS)
+ 
+-TESTS_ENVIRONMENT=RUN_FROM_MAKE=1 AWK=$(AWK) srcdir=$(srcdir) 
SHELL="$(SHELL)" $(SHELL) $(VERBOSE)
++TESTS_ENVIRONMENT=RUN_FROM_MAKE=1 AWK=$(AWK) srcdir=$(srcdir) 
SHELL="$(SHELL)" $(VERBOSE)
+ 
+ EXTRA_DIST=$(TESTSCRIPTS) t.frame t.save t.skel \
+   printcore t._abort unsort.pl \


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 21:56:22
  Author: foutrelis
Revision: 361118

gsl 2.6 rebuild

Modified:
  bogofilter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 21:55:23 UTC (rev 361117)
+++ PKGBUILD2019-08-24 21:56:22 UTC (rev 361118)
@@ -4,7 +4,7 @@
 
 pkgname=bogofilter
 pkgver=1.2.4
-pkgrel=4
+pkgrel=5
 pkgdesc="A fast Bayesian spam filtering tool"
 arch=('x86_64')
 license=('GPL3')


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 21:55:23
  Author: foutrelis
Revision: 361117

archrelease: copy trunk to staging-x86_64

Added:
  krita/repos/staging-x86_64/
  krita/repos/staging-x86_64/PKGBUILD
(from rev 361116, krita/trunk/PKGBUILD)

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

Copied: krita/repos/staging-x86_64/PKGBUILD (from rev 361116, 
krita/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-24 21:55:23 UTC (rev 361117)
@@ -0,0 +1,38 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=krita
+pkgver=4.2.5
+pkgrel=2
+pkgdesc="Edit and paint images"
+arch=(x86_64)
+url="https://krita.org;
+license=(GPL3)
+depends=(kitemviews kitemmodels ki18n kcompletion karchive kguiaddons kcrash 
qt5-svg qt5-multimedia quazip
+ gsl libraw exiv2 openexr fftw curl boost-libs giflib 
hicolor-icon-theme desktop-file-utils)
+makedepends=(extra-cmake-modules kdoctools boost eigen vc poppler-qt5 
opencolorio python-pyqt5 libheif sip python-sip)
+optdepends=('poppler-qt5: PDF filter' 'ffmpeg: to save animations' 
'opencolorio: for the LUT docker'
+"krita-plugin-gmic: G'MIC plugin" 'python-pyqt5: for the Python 
plugins' 'libheif: HEIF filter')
+conflicts=(calligra-krita krita-l10n)
+replaces=(calligra-krita krita-l10n)
+source=("https://download.kde.org/stable/krita/$pkgver/$pkgname-$pkgver.tar.gz"{,.sig})
+sha256sums=('fce4342ae54f7c9b2a318d49d678699d760485ef406b3db235542b9cabc824b8'
+'SKIP')
+validpgpkeys=('05D00A8B73A686789E0A156858B9596C722EA3BD') # Boudewijn Rempt 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 21:55:16
  Author: foutrelis
Revision: 361116

gsl 2.6 rebuild

Modified:
  krita/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 21:22:47 UTC (rev 361115)
+++ PKGBUILD2019-08-24 21:55:16 UTC (rev 361116)
@@ -2,7 +2,7 @@
 
 pkgname=krita
 pkgver=4.2.5
-pkgrel=1
+pkgrel=2
 pkgdesc="Edit and paint images"
 arch=(x86_64)
 url="https://krita.org;


[arch-commits] Commit in coin-or-coinutils/trunk (PKGBUILD)

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 21:56:09
  Author: arojas
Revision: 501587

Update to 2.11.3

Modified:
  coin-or-coinutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 21:50:32 UTC (rev 501586)
+++ PKGBUILD2019-08-24 21:56:09 UTC (rev 501587)
@@ -3,7 +3,7 @@
 # Derived from Daniel Ehlers'
 
 pkgname=coin-or-coinutils
-pkgver=2.11.2
+pkgver=2.11.3
 pkgrel=1
 pkgdesc="COIN-OR collection of utility classes"
 arch=(x86_64)
@@ -13,7 +13,7 @@
 makedepends=(gcc-fortran doxygen)
 groups=(coin-or)
 
source=("https://www.coin-or.org/download/source/CoinUtils/CoinUtils-$pkgver.tgz;)
-sha256sums=('23e955e5c02f2ccc9db9561f4f803ef76e976cf4aed54cea2973eedbffc79ad8')
+sha256sums=('7c364792effe89d78b9b5385f30eaccc0fe92aab1caf5a1a835d81680639911f')
 
 build() {
   cd CoinUtils-$pkgver


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 21:50:32
  Author: foutrelis
Revision: 501586

archrelease: copy trunk to community-staging-x86_64

Added:
  labplot/repos/community-staging-x86_64/
  labplot/repos/community-staging-x86_64/PKGBUILD
(from rev 501585, labplot/trunk/PKGBUILD)

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

Copied: labplot/repos/community-staging-x86_64/PKGBUILD (from rev 501585, 
labplot/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-24 21:50:32 UTC (rev 501586)
@@ -0,0 +1,29 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=labplot
+pkgver=2.6
+pkgrel=4
+arch=(x86_64)
+pkgdesc="KDE Application for interactive graphing and analysis of scientific 
data"
+url="https://labplot.kde.org/;
+license=(GPL2)
+depends=(cantor netcdf cfitsio fftw gsl qt5-serialport libcerf)
+makedepends=(extra-cmake-modules kdelibs4support kdesignerplugin kdoctools)
+source=(https://download.kde.org/stable/$pkgname/$pkgver.0/$pkgname-$pkgver.0.tar.xz)
+sha256sums=('4556541fb6544cda56c2625a1fc5c9c8b0ba6bc8178af076c68a792b545c5657')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package(){
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 21:50:27
  Author: foutrelis
Revision: 501585

gsl 2.6 rebuild

Modified:
  labplot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 21:48:27 UTC (rev 501584)
+++ PKGBUILD2019-08-24 21:50:27 UTC (rev 501585)
@@ -2,7 +2,7 @@
 
 pkgname=labplot
 pkgver=2.6
-pkgrel=3
+pkgrel=4
 arch=(x86_64)
 pkgdesc="KDE Application for interactive graphing and analysis of scientific 
data"
 url="https://labplot.kde.org/;


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

2019-08-24 Thread Felix Yan via arch-commits
Date: Saturday, August 24, 2019 @ 21:48:27
  Author: felixonmars
Revision: 501584

archrelease: copy trunk to community-staging-x86_64

Added:
  guvcview/repos/community-staging-x86_64/
  
guvcview/repos/community-staging-x86_64/0001-Update-AppStream-metadata-to-a-newer-version.patch
(from rev 501583, 
guvcview/trunk/0001-Update-AppStream-metadata-to-a-newer-version.patch)
  guvcview/repos/community-staging-x86_64/PKGBUILD
(from rev 501583, guvcview/trunk/PKGBUILD)

-+
 0001-Update-AppStream-metadata-to-a-newer-version.patch |   71 
 PKGBUILD|   81 ++
 2 files changed, 152 insertions(+)

Copied: 
guvcview/repos/community-staging-x86_64/0001-Update-AppStream-metadata-to-a-newer-version.patch
 (from rev 501583, 
guvcview/trunk/0001-Update-AppStream-metadata-to-a-newer-version.patch)
===
--- 
community-staging-x86_64/0001-Update-AppStream-metadata-to-a-newer-version.patch
(rev 0)
+++ 
community-staging-x86_64/0001-Update-AppStream-metadata-to-a-newer-version.patch
2019-08-24 21:48:27 UTC (rev 501584)
@@ -0,0 +1,71 @@
+From ee2a783223fc9be7135505535f67ade84d984940 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= 
+Date: Fri, 28 Dec 2018 21:35:06 +0100
+Subject: [PATCH] Update AppStream metadata to a newer version
+
+---
+ data/Makefile.am|  2 +-
+ data/guvcview.appdata.xml.in.in | 29 -
+ 2 files changed, 21 insertions(+), 10 deletions(-)
+
+diff --git a/data/Makefile.am b/data/Makefile.am
+index 22055f0..ad14d10 100644
+--- a/data/Makefile.am
 b/data/Makefile.am
+@@ -28,7 +28,7 @@ desktop_DATA = $(DESKTOP_FILES)
+ APPDATA_IN_FILES= guvcview.appdata.xml.in
+ APPDATA_FILES= $(APPDATA_IN_FILES:.xml.in=.xml)
+ 
+-appdatadir = $(datadir)/appdata
++appdatadir = $(datadir)/metainfo
+ appdata_DATA = $(APPDATA_FILES)
+ 
+ endif
+diff --git a/data/guvcview.appdata.xml.in.in b/data/guvcview.appdata.xml.in.in
+index 61ba8c3..de934f7 100644
+--- a/data/guvcview.appdata.xml.in.in
 b/data/guvcview.appdata.xml.in.in
+@@ -1,7 +1,8 @@
+ 
+ 
+-
+- guvcview.desktop
++
++ net.sourceforge.guvcview
++ guvcview.desktop
+  CC0-1.0
+  GPL-2.0+
+  Simple UVC Viewer
+@@ -16,12 +17,22 @@
+  that is compatible with any other v4l2 app.
+  
+  
+-  
https://sourceforge.net/p/guvcview/screenshot/guvcview_image_tab.png
+-  
https://sourceforge.net/p/guvcview/screenshot/guvcview_h264_tab.png
+-  
https://sourceforge.net/p/guvcview/screenshot/guvcview_video_tab.png
+-  
https://sourceforge.net/p/guvcview/screenshot/guvcview_audio_tab.png
+-  
https://a.fsdn.com/con/app/proj/guvcview/screenshots/guvcview_video_preview.png
++  
++   
https://sourceforge.net/p/guvcview/screenshot/guvcview_image_tab.png
++  
++  
++   
https://sourceforge.net/p/guvcview/screenshot/guvcview_h264_tab.png
++  
++  
++   
https://sourceforge.net/p/guvcview/screenshot/guvcview_video_tab.png
++  
++  
++   
https://sourceforge.net/p/guvcview/screenshot/guvcview_audio_tab.png
++  
++  
++   
https://a.fsdn.com/con/app/proj/guvcview/screenshots/guvcview_video_preview.png
++  
+  
+  http://guvcview.sourceforge.net/
+- ass...@gmail.com
+-
++ ass...@gmail.com
++
+-- 
+2.20.1
+

Copied: guvcview/repos/community-staging-x86_64/PKGBUILD (from rev 501583, 
guvcview/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-24 21:48:27 UTC (rev 501584)
@@ -0,0 +1,81 @@
+# Maintainer: Balló György 
+# Contributor: Giovanni Scafora 
+# Contributor: Maxwell Pray a.k.a. Synthead 
+
+pkgbase=guvcview
+pkgname=(guvcview guvcview-common guvcview-qt)
+pkgver=2.0.6
+pkgrel=4
+pkgdesc="Simple interface for capturing and viewing video from v4l2 devices"
+arch=('x86_64')
+url="http://guvcview.sourceforge.net/;
+license=('GPL3')
+depends=('ffmpeg' 'gsl' 'gtk3' 'qt5-base' 'portaudio')
+makedepends=('intltool')
+options=('!emptydirs')
+source=("https://downloads.sourceforge.net/$pkgbase/$pkgbase-src-$pkgver.tar.gz;
+0001-Update-AppStream-metadata-to-a-newer-version.patch)
+sha256sums=('95381cef5ee139e15f90b79d1425cc22bbaae43f87452cdce6674636aff37e85'
+'d9c65a9bf53eb28c48f9a9126035f5ebe520923124eae507d1cb2994e2a0d08f')
+
+prepare() {
+  cd $pkgbase-src-$pkgver
+
+  # Update AppStream metadata to a newer version
+  patch -Np1 -i ../0001-Update-AppStream-metadata-to-a-newer-version.patch
+
+  autoreconf -fi
+  cp -a ../$pkgbase{,-qt}-src-$pkgver
+}
+
+build() {
+  # GTK+ version
+  cd $pkgbase-src-$pkgver
+  ./configure --prefix=/usr --disable-debian-menu
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+
+  # Qt version
+  cd ../$pkgbase-qt-src-$pkgver
+  ./configure --prefix=/usr --disable-debian-menu 

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

2019-08-24 Thread Felix Yan via arch-commits
Date: Saturday, August 24, 2019 @ 21:48:14
  Author: felixonmars
Revision: 501583

gsl 2.6 rebuild

Modified:
  guvcview/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 21:48:04 UTC (rev 501582)
+++ PKGBUILD2019-08-24 21:48:14 UTC (rev 501583)
@@ -5,7 +5,7 @@
 pkgbase=guvcview
 pkgname=(guvcview guvcview-common guvcview-qt)
 pkgver=2.0.6
-pkgrel=3
+pkgrel=4
 pkgdesc="Simple interface for capturing and viewing video from v4l2 devices"
 arch=('x86_64')
 url="http://guvcview.sourceforge.net/;


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

2019-08-24 Thread Felix Yan via arch-commits
Date: Saturday, August 24, 2019 @ 21:48:04
  Author: felixonmars
Revision: 501582

archrelease: copy trunk to community-staging-x86_64

Added:
  algol68g/repos/community-staging-x86_64/
  algol68g/repos/community-staging-x86_64/PKGBUILD
(from rev 501581, algol68g/trunk/PKGBUILD)
  algol68g/repos/community-staging-x86_64/plotutils.patch
(from rev 501581, algol68g/trunk/plotutils.patch)

-+
 PKGBUILD|   43 +++
 plotutils.patch |   20 
 2 files changed, 63 insertions(+)

Copied: algol68g/repos/community-staging-x86_64/PKGBUILD (from rev 501581, 
algol68g/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-24 21:48:04 UTC (rev 501582)
@@ -0,0 +1,43 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: 
+
+pkgname=('algol68g' 'algol68g-doc')
+pkgver=2.8.5
+pkgrel=3
+pkgdesc='Algol 68 compiler and interpreter'
+arch=('x86_64')
+url='https://jmvdveer.home.xs4all.nl/algol.html'
+license=('GPL')
+depends=('gsl' 'plotutils')
+optdepends=('postgresql-libs: for postgresql support')
+source=("https://jmvdveer.home.xs4all.nl/algol68g-$pkgver.tar.gz;
+'plotutils.patch'
+'https://ftp.tw.freebsd.org/distfiles/a68g-doc.pdf')
+sha256sums=('0f757c64a8342fe38ec501bde68b61d26d051dffd45742ca58b7288a99c7e2d8'
+'50afcc7812d117e5f0a2f5240c9cd58f8bfcc04b3da0634b9aa0ab06183ed0aa'
+'064b6761207d937aa704d245fc871a072f5a33ea23a346cb136ec8b2078ea321')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  patch -p1 -i ../plotutils.patch
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package_algol68g() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" \
+docdir="/usr/share/doc/$pkgname" install
+}
+
+package_algol68g-doc() {
+  install -Dm644 a68g-doc.pdf \
+"$pkgdir/usr/share/doc/algol68g/learning_algol.pdf"
+}
+
+# vim: ts=2 sw=2 et:

Copied: algol68g/repos/community-staging-x86_64/plotutils.patch (from rev 
501581, algol68g/trunk/plotutils.patch)
===
--- community-staging-x86_64/plotutils.patch(rev 0)
+++ community-staging-x86_64/plotutils.patch2019-08-24 21:48:04 UTC (rev 
501582)
@@ -0,0 +1,20 @@
+--- ./source/plotutils.c.orig  2012-04-05 00:44:52.0 +0200
 ./source/plotutils.c   2012-04-28 05:27:04.0 +0200
+@@ -1018,7 +1018,7 @@
+ X_COORD ( (f)) = 0;
+ Y_COORD ( (f)) = 0;
+ return (PLOTTER ( (f)));
+-  } else if (!strcmp (device_type, "gif")) {
++  } else if (!strcmp (device_type, "gif") || !strcmp (device_type, "png")) {
+ /*+
+ | Supported plotter type - pseudo GIF |
+ +*/
+@@ -1059,7 +1059,7 @@
+ (void) pl_setplparam (PLOTTER_PARAMS ( (f)), "BITMAPSIZE", size);
+ (void) pl_setplparam (PLOTTER_PARAMS ( (f)), "BG_COLOR", (void *) 
"black");
+ (void) pl_setplparam (PLOTTER_PARAMS ( (f)), "GIF_ANIMATION", 
(void *) "no");
+-PLOTTER ( (f)) = pl_newpl_r ("gif", NULL, STREAM ( (f)), 
stderr, PLOTTER_PARAMS ( (f)));
++PLOTTER ( (f)) = pl_newpl_r (device_type, NULL, STREAM ( 
(f)), stderr, PLOTTER_PARAMS ( (f)));
+ if (PLOTTER ( (f)) == NULL) {
+   diagnostic_node (A68_RUNTIME_ERROR, p, ERROR_DEVICE_CANNOT_OPEN);
+   exit_genie (p, A68_RUNTIME_ERROR);


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

2019-08-24 Thread Felix Yan via arch-commits
Date: Saturday, August 24, 2019 @ 21:47:52
  Author: felixonmars
Revision: 501581

gsl 2.6 rebuild

Modified:
  algol68g/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 21:45:21 UTC (rev 501580)
+++ PKGBUILD2019-08-24 21:47:52 UTC (rev 501581)
@@ -3,7 +3,7 @@
 
 pkgname=('algol68g' 'algol68g-doc')
 pkgver=2.8.5
-pkgrel=2
+pkgrel=3
 pkgdesc='Algol 68 compiler and interpreter'
 arch=('x86_64')
 url='https://jmvdveer.home.xs4all.nl/algol.html'


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

2019-08-24 Thread Felix Yan via arch-commits
Date: Saturday, August 24, 2019 @ 21:45:21
  Author: felixonmars
Revision: 501580

archrelease: copy trunk to community-staging-x86_64

Added:
  giac/repos/community-staging-x86_64/
  giac/repos/community-staging-x86_64/PKGBUILD
(from rev 501579, giac/trunk/PKGBUILD)

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

Copied: giac/repos/community-staging-x86_64/PKGBUILD (from rev 501579, 
giac/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-24 21:45:21 UTC (rev 501580)
@@ -0,0 +1,43 @@
+# Maintainer: Antonio Rojas 
+
+pkgbase=giac
+pkgname=(xcas libgiac)
+_pkgver=1.5.0-63
+pkgver=${_pkgver//-/.}
+pkgrel=2
+pkgdesc="A free computer algebra system"
+arch=(x86_64)
+url="http://www-fourier.ujf-grenoble.fr/~parisse/giac.html;
+license=(GPL3)
+makedepends=(mpfi gsl pari ntl lapack libpng libjpeg fltk texlive-core 
texlive-science hevea glpk libao gmp-ecm)
+source=("http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgbase}_${_pkgver}.tar.gz;)
+sha256sums=('1373eae7850cd40a7005aef534fd84dd05bc5a435f0064a1331c49743d57e7ca')
+
+build() {
+  cd $pkgbase-${pkgver%.*}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package_xcas() {
+  depends=(libgiac fltk)
+  conflicts=(giac)
+  provides=(giac)
+  replaces=(giac)
+
+  cd $pkgbase-${pkgver%.*}
+  make DESTDIR="$pkgdir" install
+
+  rm -r "$pkgdir"/usr/{lib,include}
+}
+
+package_libgiac() {
+  pkgdesc="Giac shared library"
+  depends=(mpfi gsl pari ntl lapack libpng curl glpk libao gmp-ecm)
+
+  cd $pkgbase-${pkgver%.*}
+  make DESTDIR="$pkgdir" install
+
+  rm -r "$pkgdir"/usr/{bin,share}
+}


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

2019-08-24 Thread Felix Yan via arch-commits
Date: Saturday, August 24, 2019 @ 21:45:09
  Author: felixonmars
Revision: 501579

gsl 2.6 rebuild

Modified:
  giac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 21:42:53 UTC (rev 501578)
+++ PKGBUILD2019-08-24 21:45:09 UTC (rev 501579)
@@ -4,7 +4,7 @@
 pkgname=(xcas libgiac)
 _pkgver=1.5.0-63
 pkgver=${_pkgver//-/.}
-pkgrel=1
+pkgrel=2
 pkgdesc="A free computer algebra system"
 arch=(x86_64)
 url="http://www-fourier.ujf-grenoble.fr/~parisse/giac.html;


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 21:42:53
  Author: foutrelis
Revision: 501578

archrelease: copy trunk to community-staging-x86_64

Added:
  python-cvxopt/repos/community-staging-x86_64/
  python-cvxopt/repos/community-staging-x86_64/PKGBUILD
(from rev 501577, python-cvxopt/trunk/PKGBUILD)

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

Copied: python-cvxopt/repos/community-staging-x86_64/PKGBUILD (from rev 501577, 
python-cvxopt/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-24 21:42:53 UTC (rev 501578)
@@ -0,0 +1,58 @@
+# Maintainer: Andrzej Giniewicz 
+# Contributor: BinkyTheClown 
+# Contributor: Julien Ugon 
+# Contributor: Lex Black 
+# Contributor: Gustavao A. Gomez Farhat 
+
+pkgbase=python-cvxopt
+pkgname=('python2-cvxopt' 'python-cvxopt')
+pkgver=1.2.3
+pkgrel=2
+pkgdesc="A free software package for convex optimization written in Python"
+url="https://cvxopt.org/;
+arch=('x86_64')
+license=('GPL3')
+makedepends=('gsl' 'fftw' 'glpk' 'dsdp' 'python-setuptools' 
'python2-setuptools' 'suitesparse')
+optdepends=('gsl: for custom random number generators'
+'fftw: for FFTW interface'
+'glpk: solver for linear cone and PWL programming problems'
+'dsdp: solver for linear cone semidefinite programming problems')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/cvxopt/cvxopt/archive/${pkgver}.tar.gz;)
+sha1sums=('fa566af5ff09088d2a73d219febea1d896c06c9d')
+
+prepare() {
+  cd "$srcdir"
+  cp -a cvxopt-${pkgver} cvxopt-py2-${pkgver}
+}
+
+build() {
+  cd "$srcdir"/cvxopt-$pkgver
+
+  for lib in GSL FFTW GLPK DSDP; do
+eval "export $'CVXOPT_BUILD_$lib'=1"
+  done
+
+  msg "Building Python2"
+  cd "$srcdir"/cvxopt-py2-${pkgver}
+  python2 setup.py build
+
+  msg "Building Python3"
+  cd "$srcdir"/cvxopt-${pkgver}
+  python setup.py build
+}
+
+package_python2-cvxopt() {
+  depends=("python2" "suitesparse")
+
+  cd "$srcdir"/cvxopt-py2-${pkgver}
+
+  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1
+}
+
+package_python-cvxopt() {
+  depends=("python" "suitesparse")
+
+  cd "$srcdir"/cvxopt-${pkgver}
+
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+}


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 21:42:48
  Author: foutrelis
Revision: 501577

gsl 2.6 rebuild

Modified:
  python-cvxopt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 21:41:34 UTC (rev 501576)
+++ PKGBUILD2019-08-24 21:42:48 UTC (rev 501577)
@@ -7,7 +7,7 @@
 pkgbase=python-cvxopt
 pkgname=('python2-cvxopt' 'python-cvxopt')
 pkgver=1.2.3
-pkgrel=1
+pkgrel=2
 pkgdesc="A free software package for convex optimization written in Python"
 url="https://cvxopt.org/;
 arch=('x86_64')


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 21:41:34
  Author: foutrelis
Revision: 501576

Refresh checksums

Modified:
  python-cvxopt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 21:39:42 UTC (rev 501575)
+++ PKGBUILD2019-08-24 21:41:34 UTC (rev 501576)
@@ -18,7 +18,7 @@
 'glpk: solver for linear cone and PWL programming problems'
 'dsdp: solver for linear cone semidefinite programming problems')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/cvxopt/cvxopt/archive/${pkgver}.tar.gz;)
-sha1sums=('13070fa81ea910597fc4c7642179c7d7a57cdd94')
+sha1sums=('fa566af5ff09088d2a73d219febea1d896c06c9d')
 
 prepare() {
   cd "$srcdir"


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 21:39:21
  Author: foutrelis
Revision: 501573

archrelease: copy trunk to community-staging-x86_64

Added:
  libindi/repos/community-staging-x86_64/
  libindi/repos/community-staging-x86_64/PKGBUILD
(from rev 501572, libindi/trunk/PKGBUILD)

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

Copied: libindi/repos/community-staging-x86_64/PKGBUILD (from rev 501572, 
libindi/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-24 21:39:21 UTC (rev 501573)
@@ -0,0 +1,37 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: Tobias Powalowski 
+
+pkgname=libindi
+pkgver=1.8.0
+pkgrel=2
+pkgdesc="A distributed control protocol designed to operate astronomical 
instrumentation"
+url="https://www.indilib.org/index.php?title=Main_Page;
+license=(GPL2)
+arch=(x86_64)
+depends=(libnova cfitsio libusb libjpeg gsl libtheora fftw)
+makedepends=(cmake boost qt5-base)
+#source=("https://github.com/indilib/indi/releases/download/v$pkgver/libindi_$pkgver.tar.gz;)
+source=($pkgname-$pkgver.tar.gz::"https://github.com/indilib/indi/archive/v$pkgver.tar.gz;)
+sha256sums=('82004db3d1e45f8852c1b871fdb925a9ce0afda4f8f92de0a197b9b868933abf')
+
+prepare() {
+  mkdir -p build
+
+  sed -e 's|GROUP="plugdev", MODE="0666"|TAG+="uaccess"|' -i 
indi-$pkgver/libindi/drivers/*/*.rules
+}
+
+build() {
+  cd build
+  cmake ../indi-$pkgver/libindi \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DINDI_BUILD_QT5_CLIENT=ON \
+-DUDEVRULES_INSTALL_DIR=/usr/lib/udev/rules.d
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 21:39:22
  Author: arojas
Revision: 501574

Update to 1.2.7

Modified:
  kio-gdrive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 21:39:21 UTC (rev 501573)
+++ PKGBUILD2019-08-24 21:39:22 UTC (rev 501574)
@@ -1,8 +1,8 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=kio-gdrive
-pkgver=1.2.6
-pkgrel=2
+pkgver=1.2.7
+pkgrel=1
 arch=(x86_64)
 pkgdesc="KIO Slave to access Google Drive"
 url="https://community.kde.org/KIO_GDrive;
@@ -9,18 +9,13 @@
 license=(GPL)
 depends=(libkgapi kaccounts-providers)
 makedepends=(extra-cmake-modules kdesignerplugin kdoctools intltool)
-source=(https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz{,.sig}
-
kio-gdrive-libkgapi-19.08.patch::"https://cgit.kde.org/kio-gdrive.git/patch/?id=b11f84ba;)
-sha256sums=('7a9169e1d464641eb0ae4013ca1732b46bdfd50a13b3e87810c19ba794527f7b'
-'SKIP'
-'2c3cc73e2382390cd39fd7ef122592b4cf7f206e33406fb28126c1bdf29e53d9')
+source=(https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('1b59e4d9940deb290cc4d7441d4ae8762ccb1de8d14dbd0bdbd3bc9a5fc266a4'
+'SKIP')
 validpgpkeys=('F07D85CAA18ACF46A346FD017C7FC6EA8633B4EA') # Elvis Angelaccio 

 
 prepare() {
   mkdir -p build
-
-  cd $pkgname-$pkgver
-  patch -p1 -i ../kio-gdrive-libkgapi-19.08.patch # Fix build with libkgapi 
19.08
 }
 
 build() {


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

2019-08-24 Thread Evangelos Foutras via arch-commits
Date: Saturday, August 24, 2019 @ 21:39:17
  Author: foutrelis
Revision: 501572

gsl 2.6 rebuild

Modified:
  libindi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 21:38:09 UTC (rev 501571)
+++ PKGBUILD2019-08-24 21:39:17 UTC (rev 501572)
@@ -4,7 +4,7 @@
 
 pkgname=libindi
 pkgver=1.8.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A distributed control protocol designed to operate astronomical 
instrumentation"
 url="https://www.indilib.org/index.php?title=Main_Page;
 license=(GPL2)


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 21:39:42
  Author: arojas
Revision: 501575

archrelease: copy trunk to community-x86_64

Added:
  kio-gdrive/repos/community-x86_64/PKGBUILD
(from rev 501574, kio-gdrive/trunk/PKGBUILD)
Deleted:
  kio-gdrive/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-24 21:39:22 UTC (rev 501574)
+++ PKGBUILD2019-08-24 21:39:42 UTC (rev 501575)
@@ -1,35 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=kio-gdrive
-pkgver=1.2.6
-pkgrel=2
-arch=(x86_64)
-pkgdesc="KIO Slave to access Google Drive"
-url="https://community.kde.org/KIO_GDrive;
-license=(GPL)
-depends=(libkgapi kaccounts-providers)
-makedepends=(extra-cmake-modules kdesignerplugin kdoctools intltool)
-source=(https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz{,.sig}
-
kio-gdrive-libkgapi-19.08.patch::"https://cgit.kde.org/kio-gdrive.git/patch/?id=b11f84ba;)
-sha256sums=('7a9169e1d464641eb0ae4013ca1732b46bdfd50a13b3e87810c19ba794527f7b'
-'SKIP'
-'2c3cc73e2382390cd39fd7ef122592b4cf7f206e33406fb28126c1bdf29e53d9')
-validpgpkeys=('F07D85CAA18ACF46A346FD017C7FC6EA8633B4EA') # Elvis Angelaccio 

-
-prepare() {
-  mkdir -p build
-
-  cd $pkgname-$pkgver
-  patch -p1 -i ../kio-gdrive-libkgapi-19.08.patch # Fix build with libkgapi 
19.08
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver
-  make
-}
-
-package(){
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kio-gdrive/repos/community-x86_64/PKGBUILD (from rev 501574, 
kio-gdrive/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-24 21:39:42 UTC (rev 501575)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kio-gdrive
+pkgver=1.2.7
+pkgrel=1
+arch=(x86_64)
+pkgdesc="KIO Slave to access Google Drive"
+url="https://community.kde.org/KIO_GDrive;
+license=(GPL)
+depends=(libkgapi kaccounts-providers)
+makedepends=(extra-cmake-modules kdesignerplugin kdoctools intltool)
+source=(https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('1b59e4d9940deb290cc4d7441d4ae8762ccb1de8d14dbd0bdbd3bc9a5fc266a4'
+'SKIP')
+validpgpkeys=('F07D85CAA18ACF46A346FD017C7FC6EA8633B4EA') # Elvis Angelaccio 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver
+  make
+}
+
+package(){
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2019-08-24 Thread Felix Yan via arch-commits
Date: Saturday, August 24, 2019 @ 21:38:09
  Author: felixonmars
Revision: 501571

archrelease: copy trunk to community-staging-x86_64

Added:
  unuran/repos/community-staging-x86_64/
  unuran/repos/community-staging-x86_64/PKGBUILD
(from rev 501570, unuran/trunk/PKGBUILD)

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

Copied: unuran/repos/community-staging-x86_64/PKGBUILD (from rev 501570, 
unuran/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-24 21:38:09 UTC (rev 501571)
@@ -0,0 +1,25 @@
+# Maintainer: Felix Yan 
+# Contributor: Konstantin Gizdov < arch at kge dot pw >
+
+pkgname=unuran
+pkgver=1.8.1
+pkgrel=3
+pkgdesc='A C library for generating non-uniform pseudorandom variates.'
+arch=('x86_64')
+url='http://statmath.wu.ac.at/unuran/'
+license=('GPL2')
+depends=('gsl')
+options=('!emptydirs')
+source=("http://statmath.wu.ac.at/$pkgname/$pkgname-$pkgver.tar.gz;)
+sha256sums=('c270ae96857857dbac6450043df865e0517f52856ddbe5202fd35583b13c5193')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --with-urng-gsl --enable-shared
+  make "$MAKEFLAGS"
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2019-08-24 Thread Felix Yan via arch-commits
Date: Saturday, August 24, 2019 @ 21:37:59
  Author: felixonmars
Revision: 501570

gsl 2.6 rebuild

Modified:
  unuran/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 21:14:42 UTC (rev 501569)
+++ PKGBUILD2019-08-24 21:37:59 UTC (rev 501570)
@@ -3,7 +3,7 @@
 
 pkgname=unuran
 pkgver=1.8.1
-pkgrel=2
+pkgrel=3
 pkgdesc='A C library for generating non-uniform pseudorandom variates.'
 arch=('x86_64')
 url='http://statmath.wu.ac.at/unuran/'


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 21:22:47
  Author: arojas
Revision: 361115

archrelease: copy trunk to extra-x86_64

Added:
  gsl/repos/extra-x86_64/PKGBUILD
(from rev 361114, gsl/trunk/PKGBUILD)
Deleted:
  gsl/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-24 21:21:33 UTC (rev 361114)
+++ PKGBUILD2019-08-24 21:22:47 UTC (rev 361115)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: Juergen Hoetzel 
-# Contributor: Tom Newsom 
-
-pkgname=gsl
-pkgver=2.5
-pkgrel=1
-pkgdesc="The GNU Scientific Library (GSL) is a modern numerical library for C 
and C++ programmers"
-url="http://www.gnu.org/software/gsl/gsl.html;
-source=("http://ftp.gnu.org/gnu/gsl/$pkgname-$pkgver.tar.gz"{,.sig})
-license=('GPL')
-arch=('x86_64')
-depends=('glibc')
-sha256sums=('0460ad7c2542caaddc6729762952d345374784100223995eb14d614861f2258d'
-'SKIP')
-validpgpkeys=(DD61B7FC02790F978360F399245FB74BAE05B3E9) # Patrick Alken 

-
-build() {
-cd ${pkgname}-${pkgver}
-./configure --prefix=/usr
-make
-}
-
-check() {
-cd ${pkgname}-${pkgver}
-make check
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
-}

Copied: gsl/repos/extra-x86_64/PKGBUILD (from rev 361114, gsl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-24 21:22:47 UTC (rev 361115)
@@ -0,0 +1,32 @@
+# Maintainer: Ronald van Haren 
+# Contributor: Juergen Hoetzel 
+# Contributor: Tom Newsom 
+
+pkgname=gsl
+pkgver=2.6
+pkgrel=1
+pkgdesc="The GNU Scientific Library (GSL) is a modern numerical library for C 
and C++ programmers"
+url="https://www.gnu.org/software/gsl/gsl.html;
+source=("https://ftp.gnu.org/gnu/gsl/$pkgname-$pkgver.tar.gz"{,.sig})
+license=('GPL')
+arch=('x86_64')
+depends=('glibc')
+sha256sums=('b782339fc7a38fe17689cb39966c4d821236c28018b6593ddb6fd59ee40786a8'
+'SKIP')
+validpgpkeys=(DD61B7FC02790F978360F399245FB74BAE05B3E9) # Patrick Alken 

+
+build() {
+cd ${pkgname}-${pkgver}
+./configure --prefix=/usr
+make
+}
+
+check() {
+cd ${pkgname}-${pkgver}
+make check
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+make DESTDIR="${pkgdir}" install
+}


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 21:21:33
  Author: arojas
Revision: 361114

archrelease: copy trunk to staging-x86_64

Added:
  gsl/repos/staging-x86_64/
  gsl/repos/staging-x86_64/PKGBUILD
(from rev 361113, gsl/trunk/PKGBUILD)

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

Copied: gsl/repos/staging-x86_64/PKGBUILD (from rev 361113, gsl/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-08-24 21:21:33 UTC (rev 361114)
@@ -0,0 +1,32 @@
+# Maintainer: Ronald van Haren 
+# Contributor: Juergen Hoetzel 
+# Contributor: Tom Newsom 
+
+pkgname=gsl
+pkgver=2.6
+pkgrel=1
+pkgdesc="The GNU Scientific Library (GSL) is a modern numerical library for C 
and C++ programmers"
+url="https://www.gnu.org/software/gsl/gsl.html;
+source=("https://ftp.gnu.org/gnu/gsl/$pkgname-$pkgver.tar.gz"{,.sig})
+license=('GPL')
+arch=('x86_64')
+depends=('glibc')
+sha256sums=('b782339fc7a38fe17689cb39966c4d821236c28018b6593ddb6fd59ee40786a8'
+'SKIP')
+validpgpkeys=(DD61B7FC02790F978360F399245FB74BAE05B3E9) # Patrick Alken 

+
+build() {
+cd ${pkgname}-${pkgver}
+./configure --prefix=/usr
+make
+}
+
+check() {
+cd ${pkgname}-${pkgver}
+make check
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+make DESTDIR="${pkgdir}" install
+}


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 21:21:06
  Author: arojas
Revision: 361113

Update to 2.6

Modified:
  gsl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 21:01:14 UTC (rev 361112)
+++ PKGBUILD2019-08-24 21:21:06 UTC (rev 361113)
@@ -3,7 +3,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=gsl
-pkgver=2.5
+pkgver=2.6
 pkgrel=1
 pkgdesc="The GNU Scientific Library (GSL) is a modern numerical library for C 
and C++ programmers"
 url="https://www.gnu.org/software/gsl/gsl.html;
@@ -11,7 +11,7 @@
 license=('GPL')
 arch=('x86_64')
 depends=('glibc')
-sha256sums=('0460ad7c2542caaddc6729762952d345374784100223995eb14d614861f2258d'
+sha256sums=('b782339fc7a38fe17689cb39966c4d821236c28018b6593ddb6fd59ee40786a8'
 'SKIP')
 validpgpkeys=(DD61B7FC02790F978360F399245FB74BAE05B3E9) # Patrick Alken 

 


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 21:14:42
  Author: arojas
Revision: 501569

archrelease: copy trunk to community-any

Added:
  jupyterlab_server/repos/community-any/PKGBUILD
(from rev 501568, jupyterlab_server/trunk/PKGBUILD)
Deleted:
  jupyterlab_server/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-24 21:14:24 UTC (rev 501568)
+++ PKGBUILD2019-08-24 21:14:42 UTC (rev 501569)
@@ -1,26 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Guillaume Duboc 
-
-pkgname=jupyterlab_server
-pkgver=1.0.0
-pkgrel=2
-pkgdesc="Launch an application built using JupyterLab"
-arch=(any)
-url="https://jupyter.org/;
-license=(custom)
-depends=(python-json5 jupyter-notebook)
-makedepends=(python-setuptools)
-source=(https://pypi.io/packages/source/j/$pkgname/$pkgname-$pkgver.tar.gz)
-sha256sums=('a77e63ee8f93f77d03b5bcb9955ad0b4edda1e5c49d0b11fae6cc66cc1f41a1a')
-
-build() {
-  cd $pkgname-$pkgver
-  python setup.py build 
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: jupyterlab_server/repos/community-any/PKGBUILD (from rev 501568, 
jupyterlab_server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-24 21:14:42 UTC (rev 501569)
@@ -0,0 +1,26 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Guillaume Duboc 
+
+pkgname=jupyterlab_server
+pkgver=1.0.6
+pkgrel=1
+pkgdesc="Launch an application built using JupyterLab"
+arch=(any)
+url="https://jupyter.org/;
+license=(custom)
+depends=(python-json5 jupyter-notebook)
+makedepends=(python-setuptools)
+source=(https://pypi.io/packages/source/j/$pkgname/$pkgname-$pkgver.tar.gz)
+sha256sums=('d0977527bfce6f47c782cb6bf79d2c949ebe3f22ac695fa000b730c671445dad')
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build 
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 21:14:24
  Author: arojas
Revision: 501568

Update to 1.0.6

Modified:
  jupyterlab_server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 21:13:12 UTC (rev 501567)
+++ PKGBUILD2019-08-24 21:14:24 UTC (rev 501568)
@@ -2,8 +2,8 @@
 # Contributor: Guillaume Duboc 
 
 pkgname=jupyterlab_server
-pkgver=1.0.0
-pkgrel=2
+pkgver=1.0.6
+pkgrel=1
 pkgdesc="Launch an application built using JupyterLab"
 arch=(any)
 url="https://jupyter.org/;
@@ -11,7 +11,7 @@
 depends=(python-json5 jupyter-notebook)
 makedepends=(python-setuptools)
 source=(https://pypi.io/packages/source/j/$pkgname/$pkgname-$pkgver.tar.gz)
-sha256sums=('a77e63ee8f93f77d03b5bcb9955ad0b4edda1e5c49d0b11fae6cc66cc1f41a1a')
+sha256sums=('d0977527bfce6f47c782cb6bf79d2c949ebe3f22ac695fa000b730c671445dad')
 
 build() {
   cd $pkgname-$pkgver


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 21:12:54
  Author: arojas
Revision: 501566

Update to 1.0.9

Modified:
  jupyterlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 21:08:10 UTC (rev 501565)
+++ PKGBUILD2019-08-24 21:12:54 UTC (rev 501566)
@@ -2,7 +2,7 @@
 
 pkgname=jupyterlab
 _pipname=jupyterlab
-pkgver=1.0.4
+pkgver=1.0.9
 pkgrel=1
 pkgdesc="JupyterLab computational environment"
 arch=(any)
@@ -12,7 +12,7 @@
 depends=(jupyterlab_server)
 optdepends=('npm: to install extensions')
 
source=(https://pypi.io/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz)
-sha256sums=('32a72032ad537a7410f11c8c08243fce68d8d503f09376461f344778f35f0d6e')
+sha256sums=('e8b6f058bc2ef8bf11fb742e170226fa5100c01ff57c0b37deb173ddd4a3f8c2')
 
 build() {
   cd $pkgname-$pkgver


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 21:13:12
  Author: arojas
Revision: 501567

archrelease: copy trunk to community-any

Added:
  jupyterlab/repos/community-any/PKGBUILD
(from rev 501566, jupyterlab/trunk/PKGBUILD)
Deleted:
  jupyterlab/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-24 21:12:54 UTC (rev 501566)
+++ PKGBUILD2019-08-24 21:13:12 UTC (rev 501567)
@@ -1,28 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=jupyterlab
-_pipname=jupyterlab
-pkgver=1.0.4
-pkgrel=1
-pkgdesc="JupyterLab computational environment"
-arch=(any)
-url="https://github.com/jupyterlab/jupyterlab;
-license=(custom)
-makedepends=(python-setuptools nodejs python2)
-depends=(jupyterlab_server)
-optdepends=('npm: to install extensions')
-source=(https://pypi.io/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz)
-sha256sums=('32a72032ad537a7410f11c8c08243fce68d8d503f09376461f344778f35f0d6e')
-
-build() {
-  cd $pkgname-$pkgver
-  python setup.py build 
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/etc "$pkgdir"
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: jupyterlab/repos/community-any/PKGBUILD (from rev 501566, 
jupyterlab/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-24 21:13:12 UTC (rev 501567)
@@ -0,0 +1,28 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=jupyterlab
+_pipname=jupyterlab
+pkgver=1.0.9
+pkgrel=1
+pkgdesc="JupyterLab computational environment"
+arch=(any)
+url="https://github.com/jupyterlab/jupyterlab;
+license=(custom)
+makedepends=(python-setuptools nodejs python2)
+depends=(jupyterlab_server)
+optdepends=('npm: to install extensions')
+source=(https://pypi.io/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz)
+sha256sums=('e8b6f058bc2ef8bf11fb742e170226fa5100c01ff57c0b37deb173ddd4a3f8c2')
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build 
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  mv "$pkgdir"/usr/etc "$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 21:07:51
  Author: arojas
Revision: 501564

Update to 3.59.2

Modified:
  imagescan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 21:01:58 UTC (rev 501563)
+++ PKGBUILD2019-08-24 21:07:51 UTC (rev 501564)
@@ -2,7 +2,7 @@
 # Contributor: Leonardo Santana Vieira 
 
 pkgname=imagescan
-pkgver=3.57.0
+pkgver=3.59.2
 _utsushiver=${pkgver/3./0.}
 pkgrel=1
 pkgdesc="EPSON Image Scan v3 front-end for scanners and all-in-ones"
@@ -13,7 +13,7 @@
 makedepends=(boost)
 optdepends=('tesseract: OCR support')
 
source=(https://support.epson.net/linux/src/scanner/imagescanv3/common/imagescan_$pkgver.orig.tar.gz)
-sha256sums=('de9ef2a6154a636d517374a2a0406305c524eb8547b63830f07be9b8acb1c663')
+sha256sums=('b8e53fafbaf411e46f6ab1057741b3d9c7a49a158fc925609ef94a7f2b08dad6')
 backup=('etc/utsushi/utsushi.conf')
 
 prepare() {


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 21:08:10
  Author: arojas
Revision: 501565

archrelease: copy trunk to community-x86_64

Added:
  imagescan/repos/community-x86_64/PKGBUILD
(from rev 501564, imagescan/trunk/PKGBUILD)
Deleted:
  imagescan/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-24 21:07:51 UTC (rev 501564)
+++ PKGBUILD2019-08-24 21:08:10 UTC (rev 501565)
@@ -1,48 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Leonardo Santana Vieira 
-
-pkgname=imagescan
-pkgver=3.57.0
-_utsushiver=${pkgver/3./0.}
-pkgrel=1
-pkgdesc="EPSON Image Scan v3 front-end for scanners and all-in-ones"
-arch=(x86_64)
-url="http://download.ebz.epson.net/dsc/search/01/search/?OSC=LX;
-license=(GPL3)
-depends=(sane gtkmm graphicsmagick boost-libs)
-makedepends=(boost)
-optdepends=('tesseract: OCR support')
-source=(https://support.epson.net/linux/src/scanner/imagescanv3/common/imagescan_$pkgver.orig.tar.gz)
-sha256sums=('de9ef2a6154a636d517374a2a0406305c524eb8547b63830f07be9b8acb1c663')
-backup=('etc/utsushi/utsushi.conf')
-
-prepare() {
-  cd utsushi-$_utsushiver
-  sed -e 's|-Werror||g' -i configure.ac
-  autoreconf -vif
-}
-
-build() {
-  cd utsushi-$_utsushiver
-  ./configure \
---with-boost-libdir=/usr/lib/ \
---prefix=/usr/ \
---libexecdir=/usr/lib/ \
---sysconfdir=/etc/ \
---enable-sane-config \
---enable-udev-config \
---with-gtkmm \
---with-jpeg \
---with-magick \
---with-magick-pp \
---with-sane \
---with-tiff
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool # 
https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  make
-}
-
-package() {
-  cd utsushi-$_utsushiver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 lib/devices.conf "$pkgdir"/etc/utsushi/utsushi.conf
-}

Copied: imagescan/repos/community-x86_64/PKGBUILD (from rev 501564, 
imagescan/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-24 21:08:10 UTC (rev 501565)
@@ -0,0 +1,48 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Leonardo Santana Vieira 
+
+pkgname=imagescan
+pkgver=3.59.2
+_utsushiver=${pkgver/3./0.}
+pkgrel=1
+pkgdesc="EPSON Image Scan v3 front-end for scanners and all-in-ones"
+arch=(x86_64)
+url="http://download.ebz.epson.net/dsc/search/01/search/?OSC=LX;
+license=(GPL3)
+depends=(sane gtkmm graphicsmagick boost-libs)
+makedepends=(boost)
+optdepends=('tesseract: OCR support')
+source=(https://support.epson.net/linux/src/scanner/imagescanv3/common/imagescan_$pkgver.orig.tar.gz)
+sha256sums=('b8e53fafbaf411e46f6ab1057741b3d9c7a49a158fc925609ef94a7f2b08dad6')
+backup=('etc/utsushi/utsushi.conf')
+
+prepare() {
+  cd utsushi-$_utsushiver
+  sed -e 's|-Werror||g' -i configure.ac
+  autoreconf -vif
+}
+
+build() {
+  cd utsushi-$_utsushiver
+  ./configure \
+--with-boost-libdir=/usr/lib/ \
+--prefix=/usr/ \
+--libexecdir=/usr/lib/ \
+--sysconfdir=/etc/ \
+--enable-sane-config \
+--enable-udev-config \
+--with-gtkmm \
+--with-jpeg \
+--with-magick \
+--with-magick-pp \
+--with-sane \
+--with-tiff
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool # 
https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  make
+}
+
+package() {
+  cd utsushi-$_utsushiver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 lib/devices.conf "$pkgdir"/etc/utsushi/utsushi.conf
+}


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 21:01:14
  Author: arojas
Revision: 361112

archrelease: copy trunk to extra-x86_64

Added:
  imagemagick/repos/extra-x86_64/PKGBUILD
(from rev 36, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-x86_64/arch-fonts.diff
(from rev 36, imagemagick/trunk/arch-fonts.diff)
Deleted:
  imagemagick/repos/extra-x86_64/PKGBUILD
  imagemagick/repos/extra-x86_64/arch-fonts.diff

-+
 PKGBUILD|  236 +++---
 arch-fonts.diff |  214 
 2 files changed, 225 insertions(+), 225 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-24 21:00:36 UTC (rev 36)
+++ PKGBUILD2019-08-24 21:01:14 UTC (rev 361112)
@@ -1,118 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Eric Bélanger 
-
-pkgbase=imagemagick
-pkgname=(imagemagick imagemagick-doc)
-pkgver=7.0.8.59
-pkgrel=1
-pkgdesc="An image viewing/manipulation program"
-url="https://www.imagemagick.org/;
-arch=(x86_64)
-license=(custom)
-makedepends=(ghostscript openexr libwmf librsvg libxml2 openjpeg2 libraw 
opencl-headers libwebp
- chrpath ocl-icd glu ghostpcl ghostxps libheif jbigkit lcms2 
libxext liblqr libraqm libpng)
-checkdepends=(gsfonts ttf-dejavu)
-_relname=ImageMagick-${pkgver%%.*}
-_tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
-source=(https://www.imagemagick.org/download/releases/$_tarname.tar.xz{,.asc}
-arch-fonts.diff)
-sha256sums=('201189b894d46ede08e6c276a069e7a453b25f26aba1d9bb568e3b71135cf48f'
-'SKIP'
-'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
-validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae
-
-shopt -s extglob
-
-prepare() {
-  mkdir -p docpkg/usr/share
-
-  cd $_tarname
-
-  # Fix up typemaps to match our packages, where possible
-  patch -p1 -i ../arch-fonts.diff
-}
-
-build() {
-  cd $_tarname
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---with-dejavu-font-dir=/usr/share/fonts/TTF \
---with-gs-font-dir=/usr/share/fonts/gsfonts \
-PSDelegate=/usr/bin/gs \
-XPSDelegate=/usr/bin/gxps \
-PCLDelegate=/usr/bin/gpcl6 \
---enable-hdri \
---enable-opencl \
---without-gslib \
---with-lqr \
---with-modules \
---with-openexr \
---with-openjp2 \
---with-perl \
---with-perl-options=INSTALLDIRS=vendor \
---with-rsvg \
---with-webp \
---with-wmf \
---with-xml \
---without-autotrace \
---without-djvu \
---without-dps \
---without-fftw \
---without-fpx \
---without-gcc-arch \
---without-gvc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() (
-  cd $_tarname
-  ulimit -n 4096
-  make check
-)
-
-package_imagemagick() {
-  depends=(libltdl lcms2 fontconfig libxext liblqr libraqm libpng libxml2)
-  optdepends=('ghostscript: PS/PDF support'
-  'libheif: HEIF support'
-  'libraw: DNG support'
-  'librsvg: SVG support'
-  'libwebp: WEBP support'
-  'libwmf: WMF support'
-  'libxml2: Magick Scripting Language'
-  'ocl-icd: OpenCL support'
-  'openexr: OpenEXR support'
-  'openjpeg2: JPEG2000 support'
-  'pango: Text rendering'
-  'imagemagick-doc: manual and API docs')
-  options=(!emptydirs libtool)
-  
backup=(etc/$_relname/{colors,delegates,log,mime,policy,quantization-table,thresholds,type,type-{dejavu,ghostscript}}.xml)
-  conflicts=(imagemagick6)
-  provides=(libmagick)
-  replaces=(imagemagick6 libmagick)
-
-  cd $_tarname
-  make DESTDIR="$pkgdir" install
-
-  find "$pkgdir/usr/lib/perl5" -name '*.so' -exec chrpath -d {} +
-  rm "$pkgdir"/etc/$_relname/type-{apple,urw-base35,windows}.xml
-  rm "$pkgdir"/usr/lib/*.la
-
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-
-# Split docs
-  mv "$pkgdir/usr/share/doc" "$srcdir/docpkg/usr/share/"
-
-# Harden security policy https://bugs.archlinux.org/task/62785
-  sed -e '/<\/policymap>/i \ \ ' -i "$pkgdir"/etc/ImageMagick-7/policy.xml
-}
-
-package_imagemagick-doc() {
-  pkgdesc+=" (manual and API docs)"
-
-  mv docpkg/* "$pkgdir"
-
-  cd $_tarname
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-}

Copied: imagemagick/repos/extra-x86_64/PKGBUILD (from rev 36, 
imagemagick/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-24 21:01:14 UTC (rev 361112)
@@ -0,0 +1,118 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Eric Bélanger 
+
+pkgbase=imagemagick
+pkgname=(imagemagick imagemagick-doc)
+pkgver=7.0.8.62
+pkgrel=1
+pkgdesc="An image viewing/manipulation program"
+url="https://www.imagemagick.org/;
+arch=(x86_64)
+license=(custom)

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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 21:00:36
  Author: arojas
Revision: 36

Update to 7.0.8.62

Modified:
  imagemagick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 20:44:41 UTC (rev 361110)
+++ PKGBUILD2019-08-24 21:00:36 UTC (rev 36)
@@ -3,7 +3,7 @@
 
 pkgbase=imagemagick
 pkgname=(imagemagick imagemagick-doc)
-pkgver=7.0.8.59
+pkgver=7.0.8.62
 pkgrel=1
 pkgdesc="An image viewing/manipulation program"
 url="https://www.imagemagick.org/;
@@ -16,7 +16,7 @@
 _tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
 source=(https://www.imagemagick.org/download/releases/$_tarname.tar.xz{,.asc}
 arch-fonts.diff)
-sha256sums=('201189b894d46ede08e6c276a069e7a453b25f26aba1d9bb568e3b71135cf48f'
+sha256sums=('a5b77766d5b9a78957ddfff04737adc0c80c682ac55d9d8f8b1f2937e94b7ffd'
 'SKIP'
 'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
 validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae


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

2019-08-24 Thread Jelle van der Waa via arch-commits
Date: Saturday, August 24, 2019 @ 20:44:41
  Author: jelle
Revision: 361110

Replace python2 make dependency with python

Modified:
  syslinux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 20:18:09 UTC (rev 361109)
+++ PKGBUILD2019-08-24 20:44:41 UTC (rev 361110)
@@ -17,7 +17,7 @@
 # syslinux build system is a mess of submakes that does not work with -jN
 # efi32/com32 do not like Arch cflags/ldflags, though it would be nice to have 
the flags for userspace tools
 options=(!makeflags !buildflags)
-makedepends=(git python2 nasm upx asciidoc)
+makedepends=(git python nasm upx asciidoc)
 makedepends_x86_64=(lib32-glibc) # efi32 needs it
 optdepends=('perl-crypt-passwdmd5: For md5pass'
 'perl-digest-sha1: For sha1pass'


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 20:25:49
  Author: arojas
Revision: 501559

archrelease: copy trunk to community-staging-x86_64

Added:
  gap/repos/community-staging-x86_64/
  gap/repos/community-staging-x86_64/PKGBUILD
(from rev 501558, gap/trunk/PKGBUILD)
  gap/repos/community-staging-x86_64/gap.sh
(from rev 501558, gap/trunk/gap.sh)

--+
 PKGBUILD |  117 +
 gap.sh   |7 +++
 2 files changed, 124 insertions(+)

Copied: gap/repos/community-staging-x86_64/PKGBUILD (from rev 501558, 
gap/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-24 20:25:49 UTC (rev 501559)
@@ -0,0 +1,117 @@
+# Maintainer: Antonio Rojas 
+# Contributor:  TDY 
+# Contributor: Rémy Oudompheng 
+
+pkgbase=gap
+pkgname=(gap gap-doc gap-packages)
+pkgver=4.10.2
+pkgrel=2
+pkgdesc="Groups, Algorithms, Programming: a system for computational discrete 
algebra"
+arch=(x86_64)
+url="https://www.gap-system.org/;
+license=(GPL)
+source=("https://www.gap-system.org/pub/gap/gap-${pkgver%.*}/tar.gz/gap-$pkgver.tar.gz;
 gap.sh)
+sha256sums=('11175bed0234101643d510d4ab94c44db30bd303bfe63d86b9b86ae67cff9e49'
+'143fb8a79a52c007903cce13407850df309ef803a9b00398d05169355917de46')
+makedepends=(libxaw givaro mpfi normaliz boost libsemigroups c-xsc zeromq 
fplll polymake wget chrpath)
+
+prepare() {
+  cd gap-$pkgver
+
+# Use system normaliz
+  sed -e '/build-normaliz.sh/d' -i bin/BuildPackages.sh
+# Use system libsemigroups
+  sed -e 's|test "$with_external_libsemigroups" = yes|true|' -i 
pkg/semigroups-*/configure
+# Disable anupq package, it's i686 only
+  rm -r pkg/anupq-*
+# Fix https://bugs.archlinux.org/task/55174
+  sed -e '/xgap/d' -i pkg/sonata-*/PackageInfo.g
+  sed -e '/XGAP/d' -i pkg/cryst/PackageInfo.g
+}
+
+build() {
+  cd gap-$pkgver
+  ./configure --prefix=/usr --with-gmp=system
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+  make libgap.la
+
+  # Install libgap so we can link packages against it
+  mkdir -p tmp-install
+  libtool --mode=install install libgap.la "$srcdir"/gap-$pkgver/tmp-install
+
+  cd pkg
+  export CXXFLAGS+=" -I/usr/include/cxsc" # Find c-xsc headers
+  export LDFLAGS+=" -L$srcdir/gap-$pkgver/tmp-install -lgap" # See 
https://trac.sagemath.org/ticket/27372
+  export LD_LIBRARY_PATH="$srcdir"/gap-$pkgver/tmp-install
+  ../bin/BuildPackages.sh
+}
+
+_standardpkgs=(GAPDoc-* primgrp-* SmallGrp-* transgrp atlasrep autpgrp-* 
alnuth-* crisp-* ctbllib FactInt-* fga irredsol-* laguna-*
+   polenta-* polycyclic-* resclasses-* sophus-* tomlib-*)
+
+package_gap() {
+  depends=(gmp zlib)
+  optdepends=('gap-packages: extra packages' 'gap-doc: documentation')
+  conflicts=(libgap)
+  replaces=(gap-data libgap gap-4.8 gap-4.8-data)
+  cd gap-$pkgver
+
+  install -Dm644 src/*.h -t "$pkgdir"/usr/include/gap
+  install -Dm644 gen/config.h -t "$pkgdir"/usr/include/gap
+  install -Dm644 src/hpc/*.h -t "$pkgdir"/usr/include/gap/hpc
+
+  install -d "$pkgdir"/usr/lib
+  libtool --mode=install install libgap.la "$pkgdir"/usr/lib
+
+  mkdir -p "$pkgdir"/usr/{bin,lib/gap/pkg}
+  cp -r grp lib "$pkgdir"/usr/lib/gap
+  for _pkg in ${_standardpkgs[@]}; do
+cp -r pkg/$_pkg "$pkgdir"/usr/lib/gap/pkg
+  done
+  install -Dm755 gap -t "$pkgdir"/usr/lib/gap
+# Install launcher script
+  install -Dm755 "$srcdir"/gap.sh "$pkgdir"/usr/bin/gap
+}
+
+package_gap-doc() {
+  depends=(gap)
+  replaces=(gap-4.8-doc)
+  pkgdesc="Documentation for GAP"
+  cd gap-$pkgver
+
+  mkdir -p "$pkgdir"/usr/lib/gap
+  cp -r doc "$pkgdir"/usr/lib/gap
+}
+
+package_gap-packages() {
+  depends=(gap)
+  replaces=(gap-4.8-packages)
+  optdepends=('normaliz: Normaliz interface package' 'libxaw: xgap package' 
'c-xsc: float package' 'mpfi: float package'
+  'libmpc: float package' 'fplll: float package' 'zeromq: ZeroMQ 
interface package' 'planarity: digraph package'
+  'polymake: Polymake interface package' 'curl: curl interface 
package' 'libsemigroups: semigroups package')
+  pkgdesc="Extra packages for GAP"
+  cd gap-$pkgver
+
+  mkdir -p "$pkgdir"/usr/lib/gap
+  cp -r pkg "$pkgdir"/usr/lib/gap
+
+# provided by main gap package
+  for _pkg in ${_standardpkgs[@]}; do
+rm -r "$pkgdir"/usr/lib/gap/pkg/$_pkg
+  done
+
+# fix RPATH
+  find "$pkgdir"/usr/lib/gap/pkg/ -name '*.so' | xargs chrpath -d
+
+# remove bundled planarity
+  rm -r "$pkgdir"/usr/lib/gap/pkg/digraphs-*/bin/lib/
+
+# remove leftover binaries and source files
+  find "$pkgdir"/usr/lib/gap/pkg -name .libs -o -name '*.o' | xargs rm -fr
+  find "$pkgdir"/usr/lib/gap/pkg -type d -name src | xargs rm -fr
+  rm -fr "$pkgdir"/usr/lib/gap/pkg/log
+}

Copied: gap/repos/community-staging-x86_64/gap.sh (from rev 501558, 
gap/trunk/gap.sh)

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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 20:23:07
  Author: arojas
Revision: 501558

polymake 3.5 rebuild

Modified:
  gap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 20:22:06 UTC (rev 501557)
+++ PKGBUILD2019-08-24 20:23:07 UTC (rev 501558)
@@ -5,7 +5,7 @@
 pkgbase=gap
 pkgname=(gap gap-doc gap-packages)
 pkgver=4.10.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Groups, Algorithms, Programming: a system for computational discrete 
algebra"
 arch=(x86_64)
 url="https://www.gap-system.org/;


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 20:21:37
  Author: arojas
Revision: 501556

Update to 14.29.52

Modified:
  jmol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 20:15:24 UTC (rev 501555)
+++ PKGBUILD2019-08-24 20:21:37 UTC (rev 501556)
@@ -3,7 +3,7 @@
 
 pkgbase=jmol
 pkgname=(jmol jsmol)
-pkgver=14.29.49
+pkgver=14.29.52
 pkgrel=1
 arch=(any)
 url="https://jmol.sourceforge.net;
@@ -10,7 +10,7 @@
 license=(LGPL)
 makedepends=(unzip)
 
source=("https://sourceforge.net/projects/jmol/files/Jmol/Version%20${pkgver%.*}/Jmol%20$pkgver/Jmol-$pkgver-binary.tar.gz;)
-sha256sums=('85d6b0f628863733d1f9239fee6be782307e5d7a54c314f8caa5addd28c9dea5')
+sha256sums=('993b9df5a0417451bbb3a022050e447807b8765c6b6ddcb29dd9648c7a0539a2')
 
 package_jmol() {
   pkgdesc="a Java 3D viewer for chemical structures"


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 20:22:06
  Author: arojas
Revision: 501557

archrelease: copy trunk to community-any

Added:
  jmol/repos/community-any/PKGBUILD
(from rev 501556, jmol/trunk/PKGBUILD)
Deleted:
  jmol/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-24 20:21:37 UTC (rev 501556)
+++ PKGBUILD2019-08-24 20:22:06 UTC (rev 501557)
@@ -1,34 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: James Spencer 
-
-pkgbase=jmol
-pkgname=(jmol jsmol)
-pkgver=14.29.49
-pkgrel=1
-arch=(any)
-url="https://jmol.sourceforge.net;
-license=(LGPL)
-makedepends=(unzip)
-source=("https://sourceforge.net/projects/jmol/files/Jmol/Version%20${pkgver%.*}/Jmol%20$pkgver/Jmol-$pkgver-binary.tar.gz;)
-sha256sums=('85d6b0f628863733d1f9239fee6be782307e5d7a54c314f8caa5addd28c9dea5')
-
-package_jmol() {
-  pkgdesc="a Java 3D viewer for chemical structures"
-  depends=(java-runtime)
-
-  cd $pkgbase-$pkgver
-
-  mkdir -p "$pkgdir"/usr/share/$pkgname
-  mkdir -p "$pkgdir"/usr/bin
-
-  cp *.jar jmol.sh "$pkgdir"/usr/share/$pkgname
-  ln -s /usr/share/$pkgname/$pkgname.sh "$pkgdir"/usr/bin/$pkgname
-}
-
-package_jsmol() {
-  pkgdesc="a JavaScript 3D viewer for chemical structures"
-  cd $pkgbase-$pkgver
-
-  mkdir -p "$pkgdir"/usr/share
-  unzip jsmol.zip -d "$pkgdir"/usr/share/
-}

Copied: jmol/repos/community-any/PKGBUILD (from rev 501556, jmol/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-24 20:22:06 UTC (rev 501557)
@@ -0,0 +1,34 @@
+# Maintainer: Antonio Rojas 
+# Contributor: James Spencer 
+
+pkgbase=jmol
+pkgname=(jmol jsmol)
+pkgver=14.29.52
+pkgrel=1
+arch=(any)
+url="https://jmol.sourceforge.net;
+license=(LGPL)
+makedepends=(unzip)
+source=("https://sourceforge.net/projects/jmol/files/Jmol/Version%20${pkgver%.*}/Jmol%20$pkgver/Jmol-$pkgver-binary.tar.gz;)
+sha256sums=('993b9df5a0417451bbb3a022050e447807b8765c6b6ddcb29dd9648c7a0539a2')
+
+package_jmol() {
+  pkgdesc="a Java 3D viewer for chemical structures"
+  depends=(java-runtime)
+
+  cd $pkgbase-$pkgver
+
+  mkdir -p "$pkgdir"/usr/share/$pkgname
+  mkdir -p "$pkgdir"/usr/bin
+
+  cp *.jar jmol.sh "$pkgdir"/usr/share/$pkgname
+  ln -s /usr/share/$pkgname/$pkgname.sh "$pkgdir"/usr/bin/$pkgname
+}
+
+package_jsmol() {
+  pkgdesc="a JavaScript 3D viewer for chemical structures"
+  cd $pkgbase-$pkgver
+
+  mkdir -p "$pkgdir"/usr/share
+  unzip jsmol.zip -d "$pkgdir"/usr/share/
+}


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 20:18:09
  Author: arojas
Revision: 361109

archrelease: copy trunk to extra-x86_64

Added:
  libraw/repos/extra-x86_64/PKGBUILD
(from rev 361108, libraw/trunk/PKGBUILD)
Deleted:
  libraw/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-24 20:17:50 UTC (rev 361108)
+++ PKGBUILD2019-08-24 20:18:09 UTC (rev 361109)
@@ -1,30 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Ionut Biru 
-# Contributor: Joeny Ang 
-# Contributor: Brad Fanella 
-
-pkgname=libraw
-pkgver=0.19.4
-pkgrel=1
-pkgdesc="A library for reading RAW files obtained from digital photo cameras 
(CRW/CR2, NEF, RAF, DNG, and others)"
-arch=('x86_64')
-url="https://www.libraw.org/;
-license=(CDDL LGPL)
-depends=(lcms2 jasper)
-source=($pkgname-$pkgver.tar.gz::"https://github.com/LibRaw/LibRaw/archive/$pkgver.tar.gz;)
-sha256sums=('66a97f96a79d671da26866774b03935dfda24fba94778238e32e21332e8ac47f')
-
-build() {
-  cd LibRaw-$pkgver
-  ./mkdist.sh
-  ./configure --prefix=/usr \
---disable-examples
-  make
-}
-
-package() {
-  cd LibRaw-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: libraw/repos/extra-x86_64/PKGBUILD (from rev 361108, 
libraw/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-24 20:18:09 UTC (rev 361109)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Ionut Biru 
+# Contributor: Joeny Ang 
+# Contributor: Brad Fanella 
+
+pkgname=libraw
+pkgver=0.19.5
+pkgrel=1
+pkgdesc="A library for reading RAW files obtained from digital photo cameras 
(CRW/CR2, NEF, RAF, DNG, and others)"
+arch=('x86_64')
+url="https://www.libraw.org/;
+license=(CDDL LGPL)
+depends=(lcms2 jasper)
+source=($pkgname-$pkgver.tar.gz::"https://github.com/LibRaw/LibRaw/archive/$pkgver.tar.gz;)
+sha256sums=('9a2a40418e4fb0ab908f6d384ff6f9075f4431f8e3d79a0e44e5a6ea9e75abdc')
+
+build() {
+  cd LibRaw-$pkgver
+  ./mkdist.sh
+  ./configure --prefix=/usr \
+--disable-examples
+  make
+}
+
+package() {
+  cd LibRaw-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 20:17:50
  Author: arojas
Revision: 361108

Update to 0.19.5

Modified:
  libraw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 18:26:35 UTC (rev 361107)
+++ PKGBUILD2019-08-24 20:17:50 UTC (rev 361108)
@@ -6,7 +6,7 @@
 # Contributor: Brad Fanella 
 
 pkgname=libraw
-pkgver=0.19.4
+pkgver=0.19.5
 pkgrel=1
 pkgdesc="A library for reading RAW files obtained from digital photo cameras 
(CRW/CR2, NEF, RAF, DNG, and others)"
 arch=('x86_64')
@@ -14,7 +14,7 @@
 license=(CDDL LGPL)
 depends=(lcms2 jasper)
 
source=($pkgname-$pkgver.tar.gz::"https://github.com/LibRaw/LibRaw/archive/$pkgver.tar.gz;)
-sha256sums=('66a97f96a79d671da26866774b03935dfda24fba94778238e32e21332e8ac47f')
+sha256sums=('9a2a40418e4fb0ab908f6d384ff6f9075f4431f8e3d79a0e44e5a6ea9e75abdc')
 
 build() {
   cd LibRaw-$pkgver


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 20:15:24
  Author: arojas
Revision: 501555

archrelease: copy trunk to community-any

Added:
  mathjax/repos/community-any/PKGBUILD
(from rev 501554, mathjax/trunk/PKGBUILD)
Deleted:
  mathjax/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-24 20:15:08 UTC (rev 501554)
+++ PKGBUILD2019-08-24 20:15:24 UTC (rev 501555)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Kevin Dodd 
-# Contributor: Tianjiao Yin 
-
-pkgname=mathjax
-pkgver=2.7.5
-pkgrel=1
-pkgdesc='An open source JavaScript display engine for mathematics that works 
in all modern browsers'
-url='https://www.mathjax.org/'
-arch=(any)
-license=(Apache)
-depends=(xorg-mkfontdir fontconfig)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/mathjax/MathJax/archive/$pkgver.tar.gz;)
-sha256sums=('a25e5736553eef7b05ba00df133ad36d8f7b3b967f1e32d2f7505ac77427946f')
-
-prepare() {
-  cd MathJax-$pkgver
-
-# Remove unneeded stuff, see 
https://github.com/mathjax/MathJax-docs/wiki/Guide%3A-reducing-size-of-a-mathjax-installation
-  rm -r docs test unpacked
-  rm -r fonts/HTML-CSS/TeX/png
-  for _format in eot otf svg ; do
-   find . -type d -name "$_format" -prune -exec rm -rf {} \;
-  done
-}
-
-package() {
-  mkdir -p "$pkgdir"/usr/share/{fonts,licenses/mathjax}
-  cp -a MathJax-$pkgver "$pkgdir"/usr/share/mathjax
-  mv "$pkgdir"/usr/share/mathjax/fonts "$pkgdir"/usr/share/fonts/mathjax
-  ln -s /usr/share/fonts/mathjax "$pkgdir"/usr/share/mathjax/fonts
-  mv "$pkgdir"/usr/share/mathjax/LICENSE 
"$pkgdir"/usr/share/licenses/mathjax/LICENSE
-}

Copied: mathjax/repos/community-any/PKGBUILD (from rev 501554, 
mathjax/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-24 20:15:24 UTC (rev 501555)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Kevin Dodd 
+# Contributor: Tianjiao Yin 
+
+pkgname=mathjax
+pkgver=2.7.6
+pkgrel=1
+pkgdesc='An open source JavaScript display engine for mathematics that works 
in all modern browsers'
+url='https://www.mathjax.org/'
+arch=(any)
+license=(Apache)
+depends=(xorg-mkfontdir fontconfig)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/mathjax/MathJax/archive/$pkgver.tar.gz;)
+sha256sums=('51a529d3361aa5cb2e1d56a37b3ed9b08f061ddcc893084b3ecefbfa978895f5')
+
+prepare() {
+  cd MathJax-$pkgver
+
+# Remove unneeded stuff, see 
https://github.com/mathjax/MathJax-docs/wiki/Guide%3A-reducing-size-of-a-mathjax-installation
+  rm -r docs test unpacked
+  rm -r fonts/HTML-CSS/TeX/png
+  for _format in eot otf svg ; do
+   find . -type d -name "$_format" -prune -exec rm -rf {} \;
+  done
+}
+
+package() {
+  mkdir -p "$pkgdir"/usr/share/{fonts,licenses/mathjax}
+  cp -a MathJax-$pkgver "$pkgdir"/usr/share/mathjax
+  mv "$pkgdir"/usr/share/mathjax/fonts "$pkgdir"/usr/share/fonts/mathjax
+  ln -s /usr/share/fonts/mathjax "$pkgdir"/usr/share/mathjax/fonts
+  mv "$pkgdir"/usr/share/mathjax/LICENSE 
"$pkgdir"/usr/share/licenses/mathjax/LICENSE
+}


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 20:15:08
  Author: arojas
Revision: 501554

Update to 2.7.6

Modified:
  mathjax/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 20:05:20 UTC (rev 501553)
+++ PKGBUILD2019-08-24 20:15:08 UTC (rev 501554)
@@ -3,7 +3,7 @@
 # Contributor: Tianjiao Yin 
 
 pkgname=mathjax
-pkgver=2.7.5
+pkgver=2.7.6
 pkgrel=1
 pkgdesc='An open source JavaScript display engine for mathematics that works 
in all modern browsers'
 url='https://www.mathjax.org/'
@@ -11,7 +11,7 @@
 license=(Apache)
 depends=(xorg-mkfontdir fontconfig)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/mathjax/MathJax/archive/$pkgver.tar.gz;)
-sha256sums=('a25e5736553eef7b05ba00df133ad36d8f7b3b967f1e32d2f7505ac77427946f')
+sha256sums=('51a529d3361aa5cb2e1d56a37b3ed9b08f061ddcc893084b3ecefbfa978895f5')
 
 prepare() {
   cd MathJax-$pkgver


[arch-commits] Commit in gnome-code-assistance/repos/community-x86_64 (2 files)

2019-08-24 Thread Jelle van der Waa via arch-commits
Date: Saturday, August 24, 2019 @ 20:05:20
  Author: jelle
Revision: 501553

archrelease: copy trunk to community-x86_64

Added:
  gnome-code-assistance/repos/community-x86_64/PKGBUILD
(from rev 501552, gnome-code-assistance/trunk/PKGBUILD)
Deleted:
  gnome-code-assistance/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-24 20:05:11 UTC (rev 501552)
+++ PKGBUILD2019-08-24 20:05:20 UTC (rev 501553)
@@ -1,43 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-code-assistance
-pkgver=3.16.1+14+gaad6437
-pkgrel=1
-pkgdesc="Code assistance services for GNOME"
-arch=(x86_64)
-url="https://wiki.gnome.org/Projects/CodeAssistance;
-license=(GPL3)
-depends=(libgee python-dbus python-gobject python-pylint python-pyflakes 
python-pycodestyle
- python-lxml python-simplejson ruby-dbus ruby-sass)
-makedepends=(intltool gobject-introspection llvm clang gjs vala go-pie 
gnome-common git)
-optdepends=('clang: Assistance for C and C++'
-'gjs: Assistance for JavaScript'
-#'vala: Assistance for Vala'
-'go: Assistance for Go')
-groups=(gnome-extra)
-_commit=aad6437571461d35fe86c34a97f264e9bd7720c3  # master
-source=("git+https://gitlab.gnome.org/GNOME/gnome-code-assistance.git#commit=$_commit;)
-sha512sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  sed -i 's/libvala-0\.42/libvala-0.44/g' configure.ac
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib --disable-vala
-  make
-}
-
-package(){
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-code-assistance/repos/community-x86_64/PKGBUILD (from rev 501552, 
gnome-code-assistance/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-24 20:05:20 UTC (rev 501553)
@@ -0,0 +1,43 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-code-assistance
+pkgver=3.16.1+14+gaad6437
+pkgrel=2
+pkgdesc="Code assistance services for GNOME"
+arch=(x86_64)
+url="https://wiki.gnome.org/Projects/CodeAssistance;
+license=(GPL3)
+depends=(libgee python-dbus python-gobject python-pylint python-pyflakes 
python-pycodestyle
+ python-lxml python-simplejson ruby-dbus ruby-sass)
+makedepends=(intltool gobject-introspection llvm clang gjs vala go-pie 
gnome-common git)
+optdepends=('clang: Assistance for C and C++'
+'gjs: Assistance for JavaScript'
+#'vala: Assistance for Vala'
+'go: Assistance for Go')
+groups=(gnome-extra)
+_commit=aad6437571461d35fe86c34a97f264e9bd7720c3  # master
+source=("git+https://gitlab.gnome.org/GNOME/gnome-code-assistance.git#commit=$_commit;)
+sha512sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  sed -i 's/libvala-0\.42/libvala-0.44/g' configure.ac
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib --disable-vala
+  make
+}
+
+package(){
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2019-08-24 Thread Jelle van der Waa via arch-commits
Date: Saturday, August 24, 2019 @ 20:05:11
  Author: jelle
Revision: 501552

upgpkg: gnome-code-assistance 3.16.1+14+gaad6437-2

golang 1.12.8 security rebuild

Modified:
  gnome-code-assistance/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 19:59:54 UTC (rev 501551)
+++ PKGBUILD2019-08-24 20:05:11 UTC (rev 501552)
@@ -2,7 +2,7 @@
 
 pkgname=gnome-code-assistance
 pkgver=3.16.1+14+gaad6437
-pkgrel=1
+pkgrel=2
 pkgdesc="Code assistance services for GNOME"
 arch=(x86_64)
 url="https://wiki.gnome.org/Projects/CodeAssistance;


[arch-commits] Commit in consul/repos/community-x86_64 (20 files)

2019-08-24 Thread Jelle van der Waa via arch-commits
Date: Saturday, August 24, 2019 @ 19:59:54
  Author: jelle
Revision: 501551

archrelease: copy trunk to community-x86_64

Added:
  consul/repos/community-x86_64/PKGBUILD
(from rev 501550, consul/trunk/PKGBUILD)
  consul/repos/community-x86_64/consul-ldflags.patch
(from rev 501550, consul/trunk/consul-ldflags.patch)
  consul/repos/community-x86_64/consul.default
(from rev 501550, consul/trunk/consul.default)
  consul/repos/community-x86_64/consul.install
(from rev 501550, consul/trunk/consul.install)
  consul/repos/community-x86_64/consul.service
(from rev 501550, consul/trunk/consul.service)
  consul/repos/community-x86_64/consul.sysusers
(from rev 501550, consul/trunk/consul.sysusers)
  consul/repos/community-x86_64/disable-syslog-test.patch
(from rev 501550, consul/trunk/disable-syslog-test.patch)
  consul/repos/community-x86_64/example.json
(from rev 501550, consul/trunk/example.json)
  consul/repos/community-x86_64/fix-build-version-info.patch
(from rev 501550, consul/trunk/fix-build-version-info.patch)
  consul/repos/community-x86_64/unparallelize-or-disable-flaky-tests.patch
(from rev 501550, consul/trunk/unparallelize-or-disable-flaky-tests.patch)
Deleted:
  consul/repos/community-x86_64/PKGBUILD
  consul/repos/community-x86_64/consul-ldflags.patch
  consul/repos/community-x86_64/consul.default
  consul/repos/community-x86_64/consul.install
  consul/repos/community-x86_64/consul.service
  consul/repos/community-x86_64/consul.sysusers
  consul/repos/community-x86_64/disable-syslog-test.patch
  consul/repos/community-x86_64/example.json
  consul/repos/community-x86_64/fix-build-version-info.patch
  consul/repos/community-x86_64/unparallelize-or-disable-flaky-tests.patch

+
 PKGBUILD   |  176 +--
 consul-ldflags.patch   |   62 -
 consul.default |2 
 consul.install |   18 +-
 consul.service |   32 ++--
 consul.sysusers|2 
 disable-syslog-test.patch  |   24 +--
 example.json   |   14 +-
 fix-build-version-info.patch   |  148 +++---
 unparallelize-or-disable-flaky-tests.patch |  108 
 10 files changed, 293 insertions(+), 293 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-24 19:59:17 UTC (rev 501550)
+++ PKGBUILD2019-08-24 19:59:54 UTC (rev 501551)
@@ -1,88 +0,0 @@
-# Maintainer: Thore Bödecker 
-# Maintainer: Felix Yan 
-
-pkgname=consul
-pkgver=1.5.3
-pkgrel=1
-pkgdesc="A tool for service discovery, monitoring and configuration."
-arch=('x86_64')
-_gocli_commit='3d22a244be8aa6fb16ac24af0e195c08b7d973aa' # HEAD
-url="https://www.consul.io;
-license=('MPL2')
-depends=('glibc')
-makedepends=('git' 'go-pie' 'procps-ng' 'zip')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/hashicorp/consul/archive/v${pkgver}.tar.gz;
-"gocli::git+https://github.com/mitchellh/cli#commit=${_gocli_commit};
-'consul.service'
-'consul.default'
-'consul.sysusers'
-'example.json'
-'fix-build-version-info.patch'
-'consul-ldflags.patch'
-'unparallelize-or-disable-flaky-tests.patch'
-)
-install=consul.install
-backup=('etc/default/consul')
-sha512sums=('3f275ec160b9e583b81ba8d463fdb05e9fc9058db2453d9393a56b67337ea04df98a89225323192230938e1abfb48fa60fe0a32b4d8980573b749217b69933e9'
-'SKIP'
-
'c70b9d1556f6c7ecb2e915ab685f289cef0e31198bd2e50c74a0483bbfb387beec67334f539a90adbf68b61b07946e98b300ab8a8e26e53b35f4ab4894adeb04'
-
'ec5a800529a297c709fa383c094ecf106351cf0f8ac7b613b972d415d77fe001088902d7ab805e63e78a8e6360323fec1b795db5a4446df1e21b9b4ed31e7079'
-
'ef872aedb2bc022a29292b7972a792b22e684c1ccb904a2b2cfec6d8966c28fb19be1452ce060821c419f1b646b236ba2e783175595e4bb6926d164c27a15c87'
-
'c4292b8f56ee955ed7385a49843fd90d6434029891b3e1e724cb2fc841514c06e2554a26d3937c114371b18c2168c4e64319eb2cbd726ee8b35870df19089348'
-
'8442826050639bf4a8799d5bdeb9778b5dbf45c7c557292209691a08d207ece6106e7f6711ccb1e252b7d1dbbff14f0deb72b4f07e664a304b91092d0afa447b'
-
'0d779e78bb5f5edafddcc3de1a754a6c39e3ce6dd7aa1387f491803f977b4a7d5e9a1eaa17d212be89109b191c91c2cdf4dd9728cffb3b724b28d20248ce8e12'
-
'b59b2733d598ae6648c198f26f23961d4c1ea8c693a1a5b1c16a0951400c3bb9a9d2d5efe4f0a5cca9ae3b1f225a8eb4133c9011c4125589e936c7dcdc4b2495')
-
-prepare() {
-  export  GOPATH="${srcdir}"
-  export  PATH="$PATH:$GOPATH/bin"
-  mkdir -p "src/github.com/mitchellh"
-  mkdir -p "src/github.com/hashicorp"
-
-  mv "${pkgname}-${pkgver}" "${srcdir}/src/github.com/hashicorp/${pkgname}"
-  mv "gocli" "${srcdir}/src/github.com/mitchellh/cli"
-
-  cd 

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

2019-08-24 Thread Jelle van der Waa via arch-commits
Date: Saturday, August 24, 2019 @ 19:59:17
  Author: jelle
Revision: 501550

upgpkg: consul 1.5.3-2

golang 1.12.8 security rebuild.

Modified:
  consul/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 19:55:03 UTC (rev 501549)
+++ PKGBUILD2019-08-24 19:59:17 UTC (rev 501550)
@@ -3,7 +3,7 @@
 
 pkgname=consul
 pkgver=1.5.3
-pkgrel=1
+pkgrel=2
 pkgdesc="A tool for service discovery, monitoring and configuration."
 arch=('x86_64')
 _gocli_commit='3d22a244be8aa6fb16ac24af0e195c08b7d973aa' # HEAD
@@ -23,7 +23,7 @@
 )
 install=consul.install
 backup=('etc/default/consul')
-sha512sums=('3f275ec160b9e583b81ba8d463fdb05e9fc9058db2453d9393a56b67337ea04df98a89225323192230938e1abfb48fa60fe0a32b4d8980573b749217b69933e9'
+sha512sums=('9a1ec590132069deb0d74809bcc7da7df4d40b17e6e2ff95cf90a2dbd5487bd2309164f09ca9c4802f77a56b453479605841531083bf272dbcb9a53b91e9bc8c'
 'SKIP'
 
'c70b9d1556f6c7ecb2e915ab685f289cef0e31198bd2e50c74a0483bbfb387beec67334f539a90adbf68b61b07946e98b300ab8a8e26e53b35f4ab4894adeb04'
 
'ec5a800529a297c709fa383c094ecf106351cf0f8ac7b613b972d415d77fe001088902d7ab805e63e78a8e6360323fec1b795db5a4446df1e21b9b4ed31e7079'


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 19:54:47
  Author: arojas
Revision: 501548

polymake 3.5 rebuild

Modified:
  jupymake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 19:52:13 UTC (rev 501547)
+++ PKGBUILD2019-08-24 19:54:47 UTC (rev 501548)
@@ -4,7 +4,7 @@
 pkgbase=jupymake
 pkgname=(python-jupymake python2-jupymake)
 pkgver=0.9
-pkgrel=1
+pkgrel=2
 pkgdesc="A Python interface to Polymake"
 arch=(x86_64)
 url="https://github.com/sebasguts/JuPyMake;


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 19:55:03
  Author: arojas
Revision: 501549

archrelease: copy trunk to community-staging-x86_64

Added:
  jupymake/repos/community-staging-x86_64/
  jupymake/repos/community-staging-x86_64/PKGBUILD
(from rev 501548, jupymake/trunk/PKGBUILD)

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

Copied: jupymake/repos/community-staging-x86_64/PKGBUILD (from rev 501548, 
jupymake/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-24 19:55:03 UTC (rev 501549)
@@ -0,0 +1,40 @@
+# Maintainer: Antonio Rojas 
+
+_name=JuPyMake
+pkgbase=jupymake
+pkgname=(python-jupymake python2-jupymake)
+pkgver=0.9
+pkgrel=2
+pkgdesc="A Python interface to Polymake"
+arch=(x86_64)
+url="https://github.com/sebasguts/JuPyMake;
+license=(GPL2)
+makedepends=(python-setuptools python2-setuptools polymake)
+source=("https://pypi.python.org/packages/source/${_name:0:1}/${_name}/${_name}-${pkgver}.tar.gz;)
+sha256sums=('4c756cd6a6056a20cd71f7b5e463c79dad0257241bbd32a40b750882fafdb545')
+
+prepare() {
+  cp -r $_name-$pkgver{,-py2}
+}
+
+build() {
+  cd $_name-$pkgver
+  python setup.py build
+
+  cd ../$_name-$pkgver-py2
+  python2 setup.py build
+}
+
+package_python-jupymake() {
+  depends=(python polymake)
+
+  cd $_name-$pkgver
+  python setup.py install --skip-build --prefix=/usr --root="$pkgdir" 
--optimize=1
+}
+
+package_python2-jupymake() {
+  depends=(python2 polymake)
+
+  cd $_name-$pkgver-py2
+  python2 setup.py install --skip-build --prefix=/usr --root="$pkgdir" 
--optimize=1
+}


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 19:51:51
  Author: arojas
Revision: 501546

polymake 3.5 rebuild

Modified:
  singular/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-24 19:43:13 UTC (rev 501545)
+++ PKGBUILD2019-08-24 19:51:51 UTC (rev 501546)
@@ -6,7 +6,7 @@
 _patchver=1
 pkgver=${_majver//-/.}.p${_patchver}
 #pkgver=${_majver//-/.}
-pkgrel=3
+pkgrel=4
 pkgdesc="Computer Algebra System for polynomial computations"
 arch=(x86_64)
 url="https://www.singular.uni-kl.de/;


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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 19:52:13
  Author: arojas
Revision: 501547

archrelease: copy trunk to community-staging-x86_64

Added:
  singular/repos/community-staging-x86_64/
  singular/repos/community-staging-x86_64/PKGBUILD
(from rev 501546, singular/trunk/PKGBUILD)
  singular/repos/community-staging-x86_64/singular-polymake-3.3.patch
(from rev 501546, singular/trunk/singular-polymake-3.3.patch)

-+
 PKGBUILD|   41 ++
 singular-polymake-3.3.patch |  116 ++
 2 files changed, 157 insertions(+)

Copied: singular/repos/community-staging-x86_64/PKGBUILD (from rev 501546, 
singular/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-24 19:52:13 UTC (rev 501547)
@@ -0,0 +1,41 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Rémy Oudompheng 
+
+pkgname=singular
+_majver=4-1-2
+_patchver=1
+pkgver=${_majver//-/.}.p${_patchver}
+#pkgver=${_majver//-/.}
+pkgrel=4
+pkgdesc="Computer Algebra System for polynomial computations"
+arch=(x86_64)
+url="https://www.singular.uni-kl.de/;
+license=(GPL)
+depends=(flint cddlib)
+makedepends=(doxygen python2 polymake)
+optdepends=('python2: Python interface' 'polymake: Polymake module')
+source=("ftp://jim.mathematik.uni-kl.de/pub/Math/Singular/SOURCES/$_majver/singular-${_majver//-/.}p${_patchver}.tar.gz;
+#source=("ftp://jim.mathematik.uni-kl.de/pub/Math/Singular/SOURCES/$_majver/singular-${_majver//-/.}.tar.gz;
+singular-polymake-3.3.patch)
+sha256sums=('b520809ce061059081a973d4a3b102b05863d49c20565d03f638ba5146296d4f'
+'683fd857562928833209f70765a6348a547d41bda6293b59a6e8ced54d062efc')
+options=(!zipman)
+
+prepare() {
+  cd singular-${_majver//-/.}
+  patch -p1 -i ../singular-polymake-3.3.patch # Fix build with polymake 3.3
+}
+
+build() {
+  cd singular-${_majver//-/.}
+  ./configure --prefix=/usr --libexecdir=/usr/lib
+  make
+}
+
+package() {
+  cd singular-${_majver//-/.}
+  make DESTDIR="$pkgdir" install
+
+  # Fix ownership
+  chown -R root:root "$pkgdir"/usr/share/singular/html 
"$pkgdir"/usr/share/info "$pkgdir"/usr/share/singular/singular.idx
+}

Copied: singular/repos/community-staging-x86_64/singular-polymake-3.3.patch 
(from rev 501546, singular/trunk/singular-polymake-3.3.patch)
===
--- community-staging-x86_64/singular-polymake-3.3.patch
(rev 0)
+++ community-staging-x86_64/singular-polymake-3.3.patch2019-08-24 
19:52:13 UTC (rev 501547)
@@ -0,0 +1,116 @@
+diff --git a/Singular/dyn_modules/polymake/polymake_conversion.cc 
b/Singular/dyn_modules/polymake/polymake_conversion.cc
+index 7d6411997..896db9ca9 100644
+--- a/Singular/dyn_modules/polymake/polymake_conversion.cc
 b/Singular/dyn_modules/polymake/polymake_conversion.cc
+@@ -403,7 +403,7 @@ gfan::ZFan* PmFan2ZFan (polymake::perl::Object* pf)
+ int n = pf->give("N_MAXIMAL_CONES");
+ for (int i=0; iCallPolymakeMethod("cone",i);
++  polymake::perl::Object pmcone=pf->call_method("cone",i);
+   gfan::ZCone* zc=PmCone2ZCone();
+   zf->insert(*zc);
+ }
+diff --git a/Singular/dyn_modules/polymake/polymake_wrapper.cc 
b/Singular/dyn_modules/polymake/polymake_wrapper.cc
+index a43eb66cd..3f73bd4f8 100644
+--- a/Singular/dyn_modules/polymake/polymake_wrapper.cc
 b/Singular/dyn_modules/polymake/polymake_wrapper.cc
+@@ -34,7 +34,7 @@ static BOOLEAN bbpolytope_Op2(int op, leftv res, leftv i1, 
leftv i2)
+   polymake::perl::Object* pp = ZPolytope2PmPolytope(zp);
+   polymake::perl::Object* pq = ZPolytope2PmPolytope(zq);
+   polymake::perl::Object pms;
+-  CallPolymakeFunction("minkowski_sum", *pp, *pq) >> pms;
++  polymake::call_function("minkowski_sum", *pp, *pq) >> pms;
+   ms = PmPolytope2ZPolytope();
+   delete pp;
+   delete pq;
+@@ -1063,7 +1063,7 @@ BOOLEAN PMlatticePoints(leftv res, leftv args)
+ {
+   polymake::perl::Object* p = ZPolytope2PmPolytope(zp);
+   #if (POLYMAKEVERSION >=214)
+-  polymake::Matrix lp = 
p->CallPolymakeMethod("LATTICE_POINTS");
++  polymake::Matrix lp = 
p->call_method("LATTICE_POINTS");
+   #elif (POLYMAKEVERSION >=212)
+   polymake::Matrix lp = p->give("LATTICE_POINTS");
+   #else
+@@ -1291,7 +1291,7 @@ BOOLEAN PMhilbertBasis(leftv res, leftv args)
+ {
+   polymake::perl::Object* p = ZPolytope2PmPolytope(zp);
+   #if (POLYMAKEVERSION >=214)
+-  polymake::Matrix lp = 
p->CallPolymakeMethod("HILBERT_BASIS");
++  polymake::Matrix lp = 
p->call_method("HILBERT_BASIS");
+   #elif (POLYMAKEVERSION >=212)
+   polymake::Matrix lp = p->give("HILBERT_BASIS");
+   #else
+@@ -1375,7 +1375,7 @@ BOOLEAN PMminkowskiSum(leftv res, leftv args)
+ 

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

2019-08-24 Thread Antonio Rojas via arch-commits
Date: Saturday, August 24, 2019 @ 19:43:13
  Author: arojas
Revision: 501545

archrelease: copy trunk to community-staging-x86_64

Added:
  polymake/repos/community-staging-x86_64/
  polymake/repos/community-staging-x86_64/PKGBUILD
(from rev 501544, polymake/trunk/PKGBUILD)

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

Copied: polymake/repos/community-staging-x86_64/PKGBUILD (from rev 501544, 
polymake/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-08-24 19:43:13 UTC (rev 501545)
@@ -0,0 +1,28 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=polymake
+_pkgver=3.5
+_patchver=
+#pkgver=$_pkgver.r$_patchver
+pkgver=$_pkgver
+pkgrel=1
+pkgdesc="Open source software for research in polyhedral geometry"
+arch=(x86_64)
+url="https://polymake.org/;
+license=(GPL)
+depends=(normaliz singular ppl lrs perl-xml-writer perl-xml-libxml 
perl-xml-libxslt perl-term-readline-gnu perl-term-readkey perl-json)
+makedepends=(ninja cddlib ant boost bliss libnsl jdk8-openjdk)
+optdepends=('java-runtime: java module')
+source=("https://polymake.org/lib/exe/fetch.php/download/polymake-${_pkgver}-minimal.tar.bz2;)
+sha256sums=('03e88420ba66cc55edc9afc140f62a317b8adfbe88e609997cfead01cbb1d849')
+
+build() {
+  cd polymake-$_pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd polymake-$_pkgver
+  make DESTDIR="$pkgdir" install
+}


  1   2   3   >