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

2018-01-29 Thread Jan Steffens via arch-commits
Date: Monday, January 29, 2018 @ 11:00:30
  Author: heftig
Revision: 287752

archrelease: copy trunk to community-staging-x86_64

Added:
  acpi_call/repos/community-staging-x86_64/
  acpi_call/repos/community-staging-x86_64/PKGBUILD
(from rev 287751, acpi_call/trunk/PKGBUILD)
  acpi_call/repos/community-staging-x86_64/dkms.conf
(from rev 287751, acpi_call/trunk/dkms.conf)

---+
 PKGBUILD  |   62 
 dkms.conf |9 
 2 files changed, 71 insertions(+)

Copied: acpi_call/repos/community-staging-x86_64/PKGBUILD (from rev 287751, 
acpi_call/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-29 11:00:30 UTC (rev 287752)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgbase=acpi_call
+pkgname=(acpi_call acpi_call-dkms)
+pkgver=1.1.0
+pkgrel=97
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+url='https://github.com/mkottman/acpi_call'
+arch=('x86_64')
+license=('GPL')
+depends=('linux>=4.15' 'linux<4.16')
+makedepends=('linux-headers>=4.15' 'linux-headers<4.16')
+_extramodules=extramodules-4.15-ARCH
+source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;
+dkms.conf)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0'
+'32e6ea6523b13132c6c7838bba7fbf3d040ba2d35a892c2c356245612720df8a')
+
+prepare() {
+  cd $pkgbase-$pkgver
+
+  # Fix build with Linux >= 3.17
+  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
+
+  # Fix build with Linux >= 4.12
+  sed -i 's|asm/uaccess.h|linux/uaccess.h|' acpi_call.c
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KVERSION="$(cat /usr/lib/modules/$_extramodules/version)"
+}
+
+package_acpi_call() {
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *.ko
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+
+  echo acpi_call | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/acpi_call.conf"
+
+  mkdir -p "$pkgdir/usr/share/acpi_call"
+  cp -t "$pkgdir/usr/share/acpi_call" -dr --no-preserve=ownership examples 
support
+}
+
+package_acpi_call-dkms() {
+  depends=(dkms)
+  provides=("acpi_call=$pkgver-$pkgrel")
+  conflicts=(acpi_call)
+
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/src/$pkgbase-$pkgver" -m644 Makefile acpi_call.c 
../dkms.conf
+
+  echo acpi_call | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/acpi_call.conf"
+
+  mkdir -p "$pkgdir/usr/share/acpi_call"
+  cp -t "$pkgdir/usr/share/acpi_call" -dr --no-preserve=ownership examples 
support
+}
+
+# vim:set ts=2 sw=2 et:

Copied: acpi_call/repos/community-staging-x86_64/dkms.conf (from rev 287751, 
acpi_call/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2018-01-29 11:00:30 UTC (rev 287752)
@@ -0,0 +1,9 @@
+PACKAGE_NAME="acpi_call"
+PACKAGE_VERSION="#MODULE_VERSION#"
+AUTOINSTALL="yes"
+
+MAKE[0]="make KVERSION=$kernelver"
+CLEAN="make clean"
+
+BUILT_MODULE_NAME[0]="acpi_call"
+DEST_MODULE_LOCATION[0]="/kernel/drivers/acpi"


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

2018-01-29 Thread Jan Steffens via arch-commits
Date: Monday, January 29, 2018 @ 11:38:10
  Author: heftig
Revision: 287758

archrelease: copy trunk to community-staging-x86_64

Added:
  vhba-module/repos/community-staging-x86_64/
  vhba-module/repos/community-staging-x86_64/60-vhba.rules
(from rev 287757, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-staging-x86_64/PKGBUILD
(from rev 287757, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-staging-x86_64/dkms.conf
(from rev 287757, vhba-module/trunk/dkms.conf)

---+
 60-vhba.rules |1 +
 PKGBUILD  |   52 
 dkms.conf |9 +
 3 files changed, 62 insertions(+)

Copied: vhba-module/repos/community-staging-x86_64/60-vhba.rules (from rev 
287757, vhba-module/trunk/60-vhba.rules)
===
--- community-staging-x86_64/60-vhba.rules  (rev 0)
+++ community-staging-x86_64/60-vhba.rules  2018-01-29 11:38:10 UTC (rev 
287758)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Copied: vhba-module/repos/community-staging-x86_64/PKGBUILD (from rev 287757, 
vhba-module/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-29 11:38:10 UTC (rev 287758)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20170610
+pkgrel=38
+pkgdesc="Kernel module that emulates SCSI devices"
+url="http://cdemu.sourceforge.net/;
+arch=(x86_64)
+license=(GPL)
+depends=('linux>=4.15' 'linux<4.16')
+makedepends=('linux-headers>=4.15' 'linux-headers<4.16')
+_extramodules=extramodules-4.15-ARCH
+source=("https://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.bz2;
+60-vhba.rules dkms.conf)
+sha256sums=('7970c93f989d9c4f2629371bf5ee7a76f95e4c12342c3320ddc528d0df02d9ec'
+'3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b'
+'8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7')
+
+prepare() {
+  cd $pkgbase-$pkgver
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KERNELRELEASE="$(cat /usr/lib/modules/$_extramodules/version)"
+}
+
+package_vhba-module() {
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *.ko
+  install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules
+  echo 'g cdemu - -' | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/sysusers.d/cdemu.conf"
+
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+}
+
+package_vhba-module-dkms() {
+  depends=(dkms)
+  provides=("vhba-module=$pkgver-$pkgrel")
+  conflicts=(vhba-module)
+
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/src/$pkgbase-$pkgver" -m644 Makefile vhba.c 
../dkms.conf
+  install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules
+  echo 'g cdemu - -' | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/sysusers.d/cdemu.conf"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: vhba-module/repos/community-staging-x86_64/dkms.conf (from rev 287757, 
vhba-module/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2018-01-29 11:38:10 UTC (rev 287758)
@@ -0,0 +1,9 @@
+PACKAGE_NAME="vhba-module"
+PACKAGE_VERSION="#MODULE_VERSION#"
+AUTOINSTALL="yes"
+
+MAKE[0]="make KERNELRELEASE=$kernelver"
+CLEAN="make clean"
+
+BUILT_MODULE_NAME[0]="vhba"
+DEST_MODULE_LOCATION[0]="/kernel/drivers/scsi"


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

2018-01-29 Thread Jan Steffens via arch-commits
Date: Monday, January 29, 2018 @ 11:37:35
  Author: heftig
Revision: 287757

20170610-38

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 11:22:45 UTC (rev 287756)
+++ PKGBUILD2018-01-29 11:37:35 UTC (rev 287757)
@@ -6,14 +6,14 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20170610
-pkgrel=37
+pkgrel=38
 pkgdesc="Kernel module that emulates SCSI devices"
 url="http://cdemu.sourceforge.net/;
 arch=(x86_64)
 license=(GPL)
-depends=('linux>=4.14' 'linux<4.15')
-makedepends=('linux-headers>=4.14' 'linux-headers<4.15')
-_extramodules=extramodules-4.14-ARCH
+depends=('linux>=4.15' 'linux<4.16')
+makedepends=('linux-headers>=4.15' 'linux-headers<4.16')
+_extramodules=extramodules-4.15-ARCH
 source=("https://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.bz2;
 60-vhba.rules dkms.conf)
 sha256sums=('7970c93f989d9c4f2629371bf5ee7a76f95e4c12342c3320ddc528d0df02d9ec'
@@ -31,11 +31,11 @@
 
 package_vhba-module() {
   cd $pkgbase-$pkgver
-  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 vhba.ko
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *.ko
   install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules
   echo 'g cdemu - -' | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/sysusers.d/cdemu.conf"
 
-  find "$pkgdir" -name '*.ko' -exec gzip -n {} +
+  find "$pkgdir" -name '*.ko' -exec xz {} +
 }
 
 package_vhba-module-dkms() {


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

2018-01-29 Thread Florian Pritz via arch-commits
Date: Monday, January 29, 2018 @ 11:54:50
  Author: bluewind
Revision: 287764

archrelease: copy trunk to community-staging-x86_64

Added:
  libopenshot/repos/community-staging-x86_64/
  libopenshot/repos/community-staging-x86_64/PKGBUILD
(from rev 287763, libopenshot/trunk/PKGBUILD)

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

Copied: libopenshot/repos/community-staging-x86_64/PKGBUILD (from rev 287763, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-29 11:54:50 UTC (rev 287764)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.1.9
+pkgrel=5
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('libmagick6' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenShot/libopenshot/archive/v$pkgver.tar.gz;)
+sha256sums=('2547969818092d77a1c742e27cf416b34b4d326abf6b089fc10b921f4a4141ec')
+
+build() {
+   cd ${pkgname}-${pkgver}
+   mkdir build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
+ -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
+   make
+}
+
+package() {
+   cd ${pkgname}-${pkgver}
+   cd build
+   make DESTDIR="${pkgdir}" install
+}


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Monday, January 29, 2018 @ 15:40:03
  Author: felixonmars
Revision: 287792

archrelease: copy trunk to community-any

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

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

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-29 15:39:15 UTC (rev 287791)
+++ PKGBUILD2018-01-29 15:40:03 UTC (rev 287792)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Alexander Rødseth 
-# Contributor: Marcel Huber 
-# Contributor: Illarion Kovalchuk 
-
-pkgname=jenkins
-pkgver=2.103
-pkgrel=1
-pkgdesc='Extendable continuous integration server (latest)'
-arch=('any')
-url='https://jenkins.io'
-license=('MIT')
-depends=('java-runtime>=8' 'ttf-dejavu' 'libcups')
-provides=('jenkins-ci')
-conflicts=('jenkins-ci')

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

2018-01-29 Thread Jan de Groot via arch-commits
Date: Monday, January 29, 2018 @ 15:52:46
  Author: jgc
Revision: 315571

archrelease: copy trunk to extra-x86_64

Added:
  fribidi/repos/extra-x86_64/PKGBUILD
(from rev 315570, fribidi/trunk/PKGBUILD)
Deleted:
  fribidi/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-29 15:52:37 UTC (rev 315570)
+++ PKGBUILD2018-01-29 15:52:46 UTC (rev 315571)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Nezmer 
-
-pkgname=fribidi
-pkgver=0.19.7
-pkgrel=1
-pkgdesc="A Free Implementation of the Unicode Bidirectional Algorithm"
-arch=('i686' 'x86_64')
-license=('LGPL')
-url="http://fribidi.org;
-depends=('glib2')
-source=("http://fribidi.org/download/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('6c7e7cfdd39c908f7ac619351c1c5c23')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr
-
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: fribidi/repos/extra-x86_64/PKGBUILD (from rev 315570, 
fribidi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-29 15:52:46 UTC (rev 315571)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Nezmer 
+
+pkgname=fribidi
+pkgver=0.19.7
+pkgrel=2
+pkgdesc="A Free Implementation of the Unicode Bidirectional Algorithm"
+arch=('x86_64')
+license=('LGPL')
+url="https://github.com/fribidi/fribidi/;
+depends=('glib2')
+makedepends=(git)
+_commit=1a6935cd8cd7d907fb3c5f3bcae174bee727c83d  # tags/0.19.7^0
+source=("git+https://github.com/fribidi/fribidi#commit=$_commit;)
+md5sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+
+prepare() {
+  cd $pkgname
+  git cherry-pick -n 0efbaa9052320a951823a6e776b30a580e3a2b4e
+  ./bootstrap
+}
+
+build() {
+  cd "${srcdir}/$pkgname"
+
+  ./configure --prefix=/usr
+
+  make -j1
+}
+
+package() {
+  cd "${srcdir}/$pkgname"
+
+  make -j1 DESTDIR="${pkgdir}" install
+}


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

2018-01-29 Thread Jan de Groot via arch-commits
Date: Monday, January 29, 2018 @ 15:52:37
  Author: jgc
Revision: 315570

upgpkg: fribidi 0.19.7-2

Switch to new upstream.

Modified:
  fribidi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 15:27:47 UTC (rev 315569)
+++ PKGBUILD2018-01-29 15:52:37 UTC (rev 315570)
@@ -4,25 +4,39 @@
 
 pkgname=fribidi
 pkgver=0.19.7
-pkgrel=1
+pkgrel=2
 pkgdesc="A Free Implementation of the Unicode Bidirectional Algorithm"
 arch=('x86_64')
 license=('LGPL')
-url="http://fribidi.org;
+url="https://github.com/fribidi/fribidi/;
 depends=('glib2')
-source=("http://fribidi.org/download/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('6c7e7cfdd39c908f7ac619351c1c5c23')
+makedepends=(git)
+_commit=1a6935cd8cd7d907fb3c5f3bcae174bee727c83d  # tags/0.19.7^0
+source=("git+https://github.com/fribidi/fribidi#commit=$_commit;)
+md5sums=('SKIP')
 
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+
+prepare() {
+  cd $pkgname
+  git cherry-pick -n 0efbaa9052320a951823a6e776b30a580e3a2b4e
+  ./bootstrap
+}
+
 build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd "${srcdir}/$pkgname"
 
   ./configure --prefix=/usr
 
-  make
+  make -j1
 }
 
 package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd "${srcdir}/$pkgname"
 
-  make DESTDIR="${pkgdir}" install
+  make -j1 DESTDIR="${pkgdir}" install
 }


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

2018-01-29 Thread Sergej Pupykin via arch-commits
Date: Monday, January 29, 2018 @ 16:01:34
  Author: spupykin
Revision: 287795

upgpkg: jcl 0.1rc2-1

Modified:
  jcl/trunk/PKGBUILD(contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 16:01:30 UTC (rev 287794)
+++ PKGBUILD2018-01-29 16:01:34 UTC (rev 287795)
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 194152 2016-10-31 13:48:24Z spupykin $
+# $Id$
 # Maintainer: Sergej Pupykin 
 # Contributor: Sergej Pupykin 
 
@@ -6,14 +6,13 @@
 pkgver=0.1rc2
 pkgrel=1
 _commit=6893bcf7f720a7b0beeaed5f433539d0b06d3b1a
-pkgdesc="jabber mail component"
+pkgdesc="jabber component library"
 arch=(any)
 url="https://github.com/dax/jcl;
 license=("GPL")
 backup=(etc/ejabberd/jmc.xml)
-depends=('python2' 'python2-pyxmpp')
-makedepends=('git')
-install=jmc.install
+depends=('python2' 'python2-pysqlite' 'python2-sqlobject')
+makedepends=('git' 'python2-setuptools')
 source=("git+https://github.com/dax/jcl.git#commit=${_commit};)
 sha256sums=('SKIP')
 


Property changes on: jcl/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in jmc/trunk (PKGBUILD jmc.install jmc.rc jmc.service)

2018-01-29 Thread Sergej Pupykin via arch-commits
Date: Monday, January 29, 2018 @ 16:01:58
  Author: spupykin
Revision: 287796

upgpkg: jmc 0.3rc3-1

Modified:
  jmc/trunk/PKGBUILD
  jmc/trunk/jmc.install
  jmc/trunk/jmc.service
Deleted:
  jmc/trunk/jmc.rc

-+
 PKGBUILD|   31 +--
 jmc.install |4 ++--
 jmc.rc  |   53 -
 jmc.service |7 ---
 4 files changed, 19 insertions(+), 76 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 16:01:34 UTC (rev 287795)
+++ PKGBUILD2018-01-29 16:01:58 UTC (rev 287796)
@@ -3,30 +3,25 @@
 # Contributor: Sergej Pupykin 
 
 pkgname=jmc
-pkgver=0.2.3
-pkgrel=8
+pkgver=0.3rc3
+pkgrel=1
+_commit=8db8619603afa408d47078112106a64e0c3e9f9b
 pkgdesc="jabber mail component"
 arch=(any)
-url="http://people.happycoders.org/dax/projects/jmc;
+url="https://github.com/dax/jmc;
 license=("GPL")
-backup=(etc/ejabberd/jmc.xml)
-depends=(python2 python2-pyxmpp)
+backup=(etc/jabber/jmc.conf)
+depends=('python2' 'python2-pyxmpp' 'jcl')
+makedepends=('git' 'python2-setuptools')
 install=jmc.install
-source=(http://people.happycoders.org/dax/projects/release/jmc/0.2/jmc-$pkgver.tar.gz
+source=("git+https://github.com/dax/jmc.git#commit=${_commit};
jmc.service)
-md5sums=('89dcd54e19842619000d447bfaceb8ab'
- 'eee9affe33a8e27e4d0aafffeff56cb0')
+sha256sums=('SKIP'
+'93770f067647182d917df0206f8a6a47ab26bad009a5388bc1e3a240318c59f1')
 
 package() {
-  cd "$srcdir"
-
-  install -D -m0644 ./jmc-$pkgver/jmc.xml "$pkgdir"/etc/ejabberd/jmc.xml
-  rm -f ./jmc-$pkgver/jmc.xml
-
-  install -d -m0755 "$pkgdir"/usr/lib
-  cp -r jmc-$pkgver/src "$pkgdir"/usr/lib
-  mv "$pkgdir"/usr/lib/src "$pkgdir"/usr/lib/jmc
-
-  install -dm0755 "$pkgdir"/var/spool/ejabberd/jmc
+  cd "$srcdir/jmc"
+  python2 setup.py install --root="$pkgdir"
+  install -dm0755 "$pkgdir"/var/spool/jabber
   install -Dm0644 "$srcdir"/jmc.service 
"$pkgdir"/usr/lib/systemd/system/jmc.service
 }

Modified: jmc.install
===
--- jmc.install 2018-01-29 16:01:34 UTC (rev 287795)
+++ jmc.install 2018-01-29 16:01:58 UTC (rev 287796)
@@ -1,7 +1,7 @@
 post_install() {
-chown -R ejabberd.jabber /var/spool/ejabberd
+chown -R jabber.jabber /var/spool/jabber
 }
 
 post_upgrade() {
-chown -R ejabberd.jabber /var/spool/ejabberd
+chown -R jabber.jabber /var/spool/jabber
 }

Deleted: jmc.rc
===
--- jmc.rc  2018-01-29 16:01:34 UTC (rev 287795)
+++ jmc.rc  2018-01-29 16:01:58 UTC (rev 287796)
@@ -1,53 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-get_pid() {
-   [ -f /var/run/jmc.pid ] && echo `cat /var/run/jmc.pid`
-}
-
-case "$1" in
-  start)
-stat_busy "Starting jabber mail component daemon"
-
-[ -f /var/run/jmc.pid ] && rm -f /var/run/jmc.pid
-PID=`get_pid`
-if [ -z "$PID" ]; then
-  cd /usr/lib/jmc && python2 jmc.py -c /etc/ejabberd/jmc.xml 
1>>/var/log/ejabberd/jmc1.log 2>>/var/log/ejabberd/jmc2.log &
-  if [ $? -gt 0 ]; then
-stat_fail
-exit 1
-  else
-add_daemon jmc
-stat_done
-  fi
-else
-  stat_fail
-  exit 1
-fi
-;;
-
-  stop)
-stat_busy "Stopping jabber mail component daemon"
-PID=`get_pid`
-[ ! -z "$PID" ] && kill $PID &> /dev/null
-if [ $? -gt 0 ]; then
-  stat_fail
-  exit 1
-else
-  rm -f /var/run/jmc.pid &> /dev/null
-  rm_daemon jmc
-  stat_done
-fi
-;;
-
-  restart)
-$0 stop
-sleep 3
-$0 start
-;;
-  *)
-echo "usage: $0 {start|stop|restart}"  
-esac
-exit 0

Modified: jmc.service
===
--- jmc.service 2018-01-29 16:01:34 UTC (rev 287795)
+++ jmc.service 2018-01-29 16:01:58 UTC (rev 287796)
@@ -3,8 +3,9 @@
 
 [Service]
 Type=simple
-PIDFile=/var/run/jmc.pid
-ExecStart=python2 /usr/lib/jmc/jmc.py -c /etc/ejabberd/jmc.xml
+User=jabber
+PIDFile=/run/jmc.pid
+ExecStart=/usr/bin/jmc
 
 [Install]
-WantedBy=bluetooth.target
+WantedBy=multi-user.target


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

2018-01-29 Thread Eli Schwartz via arch-commits
Date: Monday, January 29, 2018 @ 16:01:30
  Author: eschwartz
Revision: 287794

archrelease: copy trunk to community-x86_64

Added:
  pypy3/repos/community-x86_64/PKGBUILD
(from rev 287793, pypy3/trunk/PKGBUILD)
Deleted:
  pypy3/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-29 16:01:10 UTC (rev 287793)
+++ PKGBUILD2018-01-29 16:01:30 UTC (rev 287794)
@@ -1,56 +0,0 @@
-# $Id: PKGBUILD 95035 2013-08-04 09:44:24Z svenstaro $
-# Maintainer: Sven-Hendrik Haase 
-
-pkgname=pypy3
-pkgver=5.10.0
-pkgrel=2
-pkgdesc="A Python3 implementation written in Python, JIT enabled"
-url="http://pypy.org;
-arch=('x86_64')
-depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
-makedepends=('python2' 'sqlite' 'tk' 'python2-pycparser')
-optdepends=('sqlite: sqlite module'
-'tk: tk module')
-options=(!buildflags)
-license=('custom:MIT')
-source=("https://bitbucket.org/pypy/pypy/downloads/pypy3-v${pkgver}-src.tar.bz2;)
-sha512sums=('69a373c18dbad9dd617f994ad885c8d8975f0c484ba9dd547e6e892c9a3030a43e9e3ee668aee5f4969403883de1311cef97a0a5e5701921172ee6c2119b771b')
-
-prepare() {
-  cd pypy3-v${pkgver}-src
-}
-
-build() {
-  cd pypy3-v${pkgver}-src/pypy/goal
-
-  python2 ../../rpython/bin/rpython -Ojit --shared targetpypystandalone
-
-  # Compile binary modules
-  PYTHONPATH=../.. ./pypy3-c ../tool/build_cffi_imports.py
-}
-
-package() {
-  cd pypy3-v${pkgver}-src
-
-  # Prepare installation
-  python2 pypy/tool/release/package.py --archive-name pypy --targetdir .
-  mkdir unpacked
-  tar xf pypy.tar.bz2 -C unpacked
-
-  # Install pypy
-  cd unpacked
-  install -Dm755 pypy/bin/pypy3 "${pkgdir}"/opt/pypy3/bin/pypy3
-  install -Dm755 pypy/bin/libpypy3-c.so "${pkgdir}"/usr/lib/libpypy3-c.so
-  cp -r pypy/include pypy/lib_pypy pypy/lib-python pypy/site-packages 
"${pkgdir}"/opt/pypy3
-  cd ..
-
-  # Install symlink
-  mkdir -p "${pkgdir}"/usr/bin
-  ln -s /opt/pypy3/bin/pypy3 "${pkgdir}"/usr/bin/pypy3
-
-  # Install misc stuff
-  install -Dm644 README.rst "${pkgdir}"/opt/pypy3/README.rst
-  install -Dm644 LICENSE "${pkgdir}"/opt/pypy3/LICENSE
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/pypy3/LICENSE
-}
-# vim: ts=2 sw=2 et:

Copied: pypy3/repos/community-x86_64/PKGBUILD (from rev 287793, 
pypy3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-29 16:01:30 UTC (rev 287794)
@@ -0,0 +1,57 @@
+# $Id: PKGBUILD 95035 2013-08-04 09:44:24Z svenstaro $
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=pypy3
+pkgver=5.10.0
+pkgrel=4
+pkgdesc="A Python3 implementation written in Python, JIT enabled"
+url="https://pypy.org;
+arch=('x86_64')
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
+makedepends=('python2' 'sqlite' 'tk' 'python2-pycparser')
+optdepends=('sqlite: sqlite module'
+'tk: tk module')
+options=(!buildflags)
+license=('MIT')
+source=("https://bitbucket.org/pypy/pypy/downloads/pypy3-v${pkgver}-src.tar.bz2;)
+sha512sums=('69a373c18dbad9dd617f994ad885c8d8975f0c484ba9dd547e6e892c9a3030a43e9e3ee668aee5f4969403883de1311cef97a0a5e5701921172ee6c2119b771b')
+
+prepare() {
+  cd pypy3-v${pkgver}-src
+}
+
+build() {
+  cd pypy3-v${pkgver}-src/pypy/goal
+
+  python2 ../../rpython/bin/rpython -Ojit --shared targetpypystandalone
+
+  # Compile binary modules
+  PYTHONPATH=../.. ./pypy3-c ../tool/build_cffi_imports.py
+}
+
+package() {
+  cd pypy3-v${pkgver}-src
+
+  # Prepare installation
+  python2 pypy/tool/release/package.py --archive-name pypy --targetdir .
+  mkdir unpacked
+  tar xf pypy.tar.bz2 -C unpacked
+
+  # Install pypy
+  cd unpacked
+  install -Dm755 pypy/bin/pypy3 "${pkgdir}"/opt/pypy3/bin/pypy3
+  install -Dm755 pypy/bin/libpypy3-c.so "${pkgdir}"/opt/pypy3/bin/libpypy3-c.so
+  cp -r pypy/include pypy/lib_pypy pypy/lib-python pypy/site-packages 
"${pkgdir}"/opt/pypy3
+  cd ..
+
+  # Install symlinks
+  mkdir -p "${pkgdir}"/usr/bin "${pkgdir}"/usr/lib
+  ln -s /opt/pypy3/bin/pypy3 "${pkgdir}"/usr/bin/pypy3
+  ln -s /opt/pypy3/bin/libpypy3-c.so "${pkgdir}"/usr/lib/libpypy3-c.so
+
+  # Install misc stuff
+  install -Dm644 README.rst "${pkgdir}"/opt/pypy3/README.rst
+  install -Dm644 LICENSE "${pkgdir}"/opt/pypy3/LICENSE
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/pypy3/LICENSE
+}
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in jmc/repos/community-any (7 files)

2018-01-29 Thread Sergej Pupykin via arch-commits
Date: Monday, January 29, 2018 @ 16:02:16
  Author: spupykin
Revision: 287797

archrelease: copy trunk to community-any

Added:
  jmc/repos/community-any/PKGBUILD
(from rev 287796, jmc/trunk/PKGBUILD)
  jmc/repos/community-any/jmc.install
(from rev 287796, jmc/trunk/jmc.install)
  jmc/repos/community-any/jmc.service
(from rev 287796, jmc/trunk/jmc.service)
Deleted:
  jmc/repos/community-any/PKGBUILD
  jmc/repos/community-any/jmc.install
  jmc/repos/community-any/jmc.rc
  jmc/repos/community-any/jmc.service

-+
 PKGBUILD|   59 ++
 jmc.install |   14 ++---
 jmc.rc  |   53 
 jmc.service |   21 ++--
 4 files changed, 45 insertions(+), 102 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-29 16:01:58 UTC (rev 287796)
+++ PKGBUILD2018-01-29 16:02:16 UTC (rev 287797)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Sergej Pupykin 
-
-pkgname=jmc
-pkgver=0.2.3
-pkgrel=8
-pkgdesc="jabber mail component"
-arch=(any)
-url="http://people.happycoders.org/dax/projects/jmc;
-license=("GPL")
-backup=(etc/ejabberd/jmc.xml)
-depends=(python2 python2-pyxmpp)
-install=jmc.install
-source=(http://people.happycoders.org/dax/projects/release/jmc/0.2/jmc-$pkgver.tar.gz
-   jmc.service)
-md5sums=('89dcd54e19842619000d447bfaceb8ab'
- 'eee9affe33a8e27e4d0aafffeff56cb0')
-
-package() {
-  cd $srcdir
-
-  install -D -m0644 ./jmc-$pkgver/jmc.xml $pkgdir/etc/ejabberd/jmc.xml
-  rm -f ./jmc-$pkgver/jmc.xml
-
-  install -d -m0755 $pkgdir/usr/lib
-  cp -r jmc-$pkgver/src $pkgdir/usr/lib
-  mv $pkgdir/usr/lib/src $pkgdir/usr/lib/jmc
-
-  install -dm0755 $pkgdir/var/spool/ejabberd/jmc
-  install -Dm0644 $srcdir/jmc.service 
$pkgdir/usr/lib/systemd/system/jmc.service
-}

Copied: jmc/repos/community-any/PKGBUILD (from rev 287796, jmc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-29 16:02:16 UTC (rev 287797)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Sergej Pupykin 
+
+pkgname=jmc
+pkgver=0.3rc3
+pkgrel=1
+_commit=8db8619603afa408d47078112106a64e0c3e9f9b
+pkgdesc="jabber mail component"
+arch=(any)
+url="https://github.com/dax/jmc;
+license=("GPL")
+backup=(etc/jabber/jmc.conf)
+depends=('python2' 'python2-pyxmpp' 'jcl')
+makedepends=('git' 'python2-setuptools')
+install=jmc.install
+source=("git+https://github.com/dax/jmc.git#commit=${_commit};
+   jmc.service)
+sha256sums=('SKIP'
+'93770f067647182d917df0206f8a6a47ab26bad009a5388bc1e3a240318c59f1')
+
+package() {
+  cd "$srcdir/jmc"
+  python2 setup.py install --root="$pkgdir"
+  install -dm0755 "$pkgdir"/var/spool/jabber
+  install -Dm0644 "$srcdir"/jmc.service 
"$pkgdir"/usr/lib/systemd/system/jmc.service
+}

Deleted: jmc.install
===
--- jmc.install 2018-01-29 16:01:58 UTC (rev 287796)
+++ jmc.install 2018-01-29 16:02:16 UTC (rev 287797)
@@ -1,7 +0,0 @@
-post_install() {
-chown -R ejabberd.jabber /var/spool/ejabberd
-}
-
-post_upgrade() {
-chown -R ejabberd.jabber /var/spool/ejabberd
-}

Copied: jmc/repos/community-any/jmc.install (from rev 287796, 
jmc/trunk/jmc.install)
===
--- jmc.install (rev 0)
+++ jmc.install 2018-01-29 16:02:16 UTC (rev 287797)
@@ -0,0 +1,7 @@
+post_install() {
+chown -R jabber.jabber /var/spool/jabber
+}
+
+post_upgrade() {
+chown -R jabber.jabber /var/spool/jabber
+}

Deleted: jmc.rc
===
--- jmc.rc  2018-01-29 16:01:58 UTC (rev 287796)
+++ jmc.rc  2018-01-29 16:02:16 UTC (rev 287797)
@@ -1,53 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-get_pid() {
-   [ -f /var/run/jmc.pid ] && echo `cat /var/run/jmc.pid`
-}
-
-case "$1" in
-  start)
-stat_busy "Starting jabber mail component daemon"
-
-[ -f /var/run/jmc.pid ] && rm -f /var/run/jmc.pid
-PID=`get_pid`
-if [ -z "$PID" ]; then
-  cd /usr/lib/jmc && python2 jmc.py -c /etc/ejabberd/jmc.xml 
1>>/var/log/ejabberd/jmc1.log 2>>/var/log/ejabberd/jmc2.log &
-  if [ $? -gt 0 ]; then
-stat_fail
-exit 1
-  else
-add_daemon jmc
-stat_done
-  fi
-else
-  stat_fail
-  exit 1
-fi
-;;
-
-  stop)
-stat_busy "Stopping jabber mail component daemon"
-PID=`get_pid`
-[ ! -z "$PID" ] && kill $PID &> /dev/null
-if [ $? -gt 0 ]; then
-  stat_fail
-  exit 1
-else
-  rm -f /var/run/jmc.pid &> /dev/null
-  rm_daemon jmc
-  stat_done
- 

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

2018-01-29 Thread Sergej Pupykin via arch-commits
Date: Monday, January 29, 2018 @ 16:02:34
  Author: spupykin
Revision: 287798

upgpkg: moreutils 0.62-1

Modified:
  moreutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 16:02:16 UTC (rev 287797)
+++ PKGBUILD2018-01-29 16:02:34 UTC (rev 287798)
@@ -3,7 +3,7 @@
 # Contributor: Alessio 'mOLOk' Bolognino 
 
 pkgname=moreutils
-pkgver=0.61
+pkgver=0.62
 pkgrel=1
 pkgdesc="A growing collection of the unix tools that nobody thought to write 
thirty years ago"
 arch=('x86_64')


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

2018-01-29 Thread Sergej Pupykin via arch-commits
Date: Monday, January 29, 2018 @ 16:04:11
  Author: spupykin
Revision: 287801

archrelease: copy trunk to community-x86_64

Added:
  splint/repos/community-x86_64/PKGBUILD
(from rev 287800, splint/trunk/PKGBUILD)
  splint/repos/community-x86_64/splint.sh
(from rev 287800, splint/trunk/splint.sh)
Deleted:
  splint/repos/community-x86_64/PKGBUILD
  splint/repos/community-x86_64/splint.sh

---+
 PKGBUILD  |   65 
 splint.sh |4 +--
 2 files changed, 37 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-29 16:03:41 UTC (rev 287800)
+++ PKGBUILD2018-01-29 16:04:11 UTC (rev 287801)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: William Rea 
-
-pkgname=splint
-pkgver=3.1.2
-pkgrel=4
-pkgdesc="A tool for statically checking C programs for security 
vulnerabilities and coding mistakes"
-arch=('i686' 'x86_64')
-url="http://www.splint.org/;
-license=('GPL')
-depends=('flex')
-source=("http://www.splint.org/downloads/${pkgname}-${pkgver}.src.tgz;
-   'splint.sh')
-md5sums=('25f47d70bd9c8bdddf6b03de5949c4fd'
- '0efb6341b384dc44590989fe3678c96c')
-options=('!makeflags')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-  ./configure --prefix=/usr --mandir=/usr/share/man
-  make LDFLAGS="$LDFLAGS -lfl"
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-  make DESTDIR="${pkgdir}" install
-
-  install -D -m755 "${srcdir}"/splint.sh "${pkgdir}"/etc/profile.d/splint.sh
-}

Copied: splint/repos/community-x86_64/PKGBUILD (from rev 287800, 
splint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-29 16:04:11 UTC (rev 287801)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: William Rea 
+
+pkgname=splint
+pkgver=3.1.2.git20180129
+pkgrel=1
+_commit=3fb908d0d8a4daa26dc770e1f2aa133f93100503
+pkgdesc="A tool for statically checking C programs for security 
vulnerabilities and coding mistakes"
+arch=('x86_64')
+url="http://repo.or.cz/splint-patched.git;
+license=('GPL')
+depends=('flex')
+makedepends=('git')
+options=('!makeflags')
+source=("git+https://repo.or.cz/splint-patched.git#commit=${_commit};
+   'splint.sh')
+sha256sums=('SKIP'
+'ea90b733037ef1ad25a0a5f39cbb33ca747dabd3b2bfd9d087f3981bc6990b61')
+
+build() {
+  cd "${srcdir}"/splint-patched
+  automake --add-missing || true
+  autoreconf || true
+  automake --add-missing
+  autoreconf
+  ./configure --prefix=/usr --mandir=/usr/share/man
+  make -j1
+}
+
+package() {
+  cd "${srcdir}"/splint-patched
+  make DESTDIR="${pkgdir}" install
+  install -D -m755 "${srcdir}"/splint.sh "${pkgdir}"/etc/profile.d/splint.sh
+}

Deleted: splint.sh
===
--- splint.sh   2018-01-29 16:03:41 UTC (rev 287800)
+++ splint.sh   2018-01-29 16:04:11 UTC (rev 287801)
@@ -1,2 +0,0 @@
-export LCLIMPORTDIR=/usr/share/splint/imports
-export LARCH_PATH=/usr/share/splint/lib

Copied: splint/repos/community-x86_64/splint.sh (from rev 287800, 
splint/trunk/splint.sh)
===
--- splint.sh   (rev 0)
+++ splint.sh   2018-01-29 16:04:11 UTC (rev 287801)
@@ -0,0 +1,2 @@
+export LCLIMPORTDIR=/usr/share/splint/imports
+export LARCH_PATH=/usr/share/splint/lib


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

2018-01-29 Thread Andreas Radke via arch-commits
Date: Monday, January 29, 2018 @ 16:03:52
  Author: andyrtr
Revision: 315573

upgpkg: libtirpc 1.0.2-2

add buildfix from git - FS#57250

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

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 16:00:29 UTC (rev 315572)
+++ PKGBUILD2018-01-29 16:03:52 UTC (rev 315573)
@@ -4,7 +4,7 @@
 
 pkgname=libtirpc
 pkgver=1.0.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Transport Independent RPC library (SunRPC replacement)"
 arch=('x86_64')
 url="http://libtirpc.sourceforge.net/;
@@ -12,9 +12,15 @@
 depends=('krb5')
 backup=('etc/netconfig')
 # git tree: git://linux-nfs.org/~steved/libtirpc
-source=(http://downloads.sourceforge.net/sourceforge/libtirpc/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('2a8dc0e6eecc45be6597c8287b1d8e15cbee46e3')
+source=(http://downloads.sourceforge.net/sourceforge/libtirpc/${pkgname}-${pkgver}.tar.bz2
 buildfix.diff)
+sha1sums=('2a8dc0e6eecc45be6597c8287b1d8e15cbee46e3'
+  '6bf8a0afc9f11832f94573ff938114aad2cfa862')
 
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i $srcdir/buildfix.diff
+}
+
 build() {
   cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr --sysconf=/etc

Added: buildfix.diff
===
--- buildfix.diff   (rev 0)
+++ buildfix.diff   2018-01-29 16:03:52 UTC (rev 315573)
@@ -0,0 +1,28 @@
+From acb9a37977cf0a9630eac74af9adebf35e38e719 Mon Sep 17 00:00:00 2001
+From: Thorsten Kukuk 
+Date: Tue, 14 Nov 2017 10:39:08 -0500
+Subject: [PATCH] Include stdint.h from xdr_sizeof.c to avoid missing
+ declaration errors.
+
+Signed-off-by: Thorsten Kukuk 
+Signed-off-by: Steve Dickson 
+---
+ src/xdr_sizeof.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/xdr_sizeof.c b/src/xdr_sizeof.c
+index d23fbd1..79d6707 100644
+--- a/src/xdr_sizeof.c
 b/src/xdr_sizeof.c
+@@ -39,6 +39,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include "un-namespace.h"
+ 
+ /* ARGSUSED */
+-- 
+1.8.3.1
+
+


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

2018-01-29 Thread Sergej Pupykin via arch-commits
Date: Monday, January 29, 2018 @ 16:05:46
  Author: spupykin
Revision: 287802

archrelease: copy trunk to community-any

Added:
  jcl/repos/
  jcl/repos/community-any/
  jcl/repos/community-any/PKGBUILD
(from rev 287801, jcl/trunk/PKGBUILD)

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

Copied: jcl/repos/community-any/PKGBUILD (from rev 287801, jcl/trunk/PKGBUILD)
===
--- repos/community-any/PKGBUILD(rev 0)
+++ repos/community-any/PKGBUILD2018-01-29 16:05:46 UTC (rev 287802)
@@ -0,0 +1,22 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Sergej Pupykin 
+
+pkgname=jcl
+pkgver=0.1rc2
+pkgrel=1
+_commit=6893bcf7f720a7b0beeaed5f433539d0b06d3b1a
+pkgdesc="jabber component library"
+arch=(any)
+url="https://github.com/dax/jcl;
+license=("GPL")
+backup=(etc/ejabberd/jmc.xml)
+depends=('python2' 'python2-pysqlite' 'python2-sqlobject')
+makedepends=('git' 'python2-setuptools')
+source=("git+https://github.com/dax/jcl.git#commit=${_commit};)
+sha256sums=('SKIP')
+
+package() {
+  cd "$srcdir/jcl"
+  python2 setup.py install --root="$pkgdir"
+}


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

2018-01-29 Thread Bartłomiej Piotrowski via arch-commits
Date: Monday, January 29, 2018 @ 16:09:06
  Author: bpiotrowski
Revision: 315576

archrelease: copy trunk to testing-x86_64

Added:
  ncurses/repos/testing-x86_64/PKGBUILD
(from rev 315575, ncurses/trunk/PKGBUILD)
Deleted:
  ncurses/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-29 16:08:33 UTC (rev 315575)
+++ PKGBUILD2018-01-29 16:09:06 UTC (rev 315576)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Allan McRae 
-# Contributor: judd 
-
-pkgname=ncurses
-pkgver=6.1
-pkgrel=2
-pkgdesc='System V Release 4.0 curses emulation library'
-arch=(x86_64)
-url='http://invisible-island.net/ncurses/ncurses.html'
-license=(MIT)
-depends=(glibc gcc-libs)
-provides=(libncurses++w.so libformw.so libmenuw.so libpanelw.so libncursesw.so)
-#source=(http://invisible-mirror.net/archives/ncurses/current/ncurses-${_pkgver}.tgz{,.asc})
-source=(https://ftp.gnu.org/pub/gnu/ncurses/ncurses-$pkgver.tar.gz{,.sig})
-md5sums=('98c889aaf8d23910d2b92d65be2e737a'
- 'SKIP')
-validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB')  # Thomas Dickey
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --mandir=/usr/share/man \
---with-pkg-config-libdir=/usr/lib/pkgconfig \
---with-shared --with-normal --without-debug --without-ada \
---enable-widec --enable-pc-files --with-cxx-binding --with-cxx-shared
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  # fool packages looking to link to non-wide-character ncurses libraries
-  for lib in ncurses ncurses++ form panel menu; do
-echo 'INPUT(-l${lib}w)' > "$pkgdir/usr/lib/lib${lib}.so"
-ln -s ${lib}w.pc "$pkgdir/usr/lib/pkgconfig/${lib}.pc"
-  done
-
-  for lib in tic tinfo; do
-echo "INPUT(libncursesw.so.${pkgver:0:1})" > "$pkgdir/usr/lib/lib${lib}.so"
-ln -s libncursesw.so.${pkgver:0:1} 
"$pkgdir/usr/lib/lib${lib}.so.${pkgver:0:1}"
-  done
-
-  # some packages look for -lcurses during build
-  echo 'INPUT(-lncursesw)' > "$pkgdir/usr/lib/libcursesw.so"
-  ln -s libncurses.so "$pkgdir/usr/lib/libcurses.so"
-
-  # install license, rip it from the readme
-  install -d "$pkgdir/usr/share/licenses/$pkgname"
-  grep -B 100 '$Id' README > "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: ncurses/repos/testing-x86_64/PKGBUILD (from rev 315575, 
ncurses/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-29 16:09:06 UTC (rev 315576)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: judd 
+
+pkgname=ncurses
+pkgver=6.1
+pkgrel=3
+pkgdesc='System V Release 4.0 curses emulation library'
+arch=(x86_64)
+url='http://invisible-island.net/ncurses/ncurses.html'
+license=(MIT)
+depends=(glibc gcc-libs)
+provides=(libncurses++w.so libformw.so libmenuw.so libpanelw.so libncursesw.so)
+#source=(http://invisible-mirror.net/archives/ncurses/current/ncurses-${_pkgver}.tgz{,.asc})
+source=(https://ftp.gnu.org/pub/gnu/ncurses/ncurses-$pkgver.tar.gz{,.sig})
+md5sums=('98c889aaf8d23910d2b92d65be2e737a'
+ 'SKIP')
+validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB')  # Thomas Dickey
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --mandir=/usr/share/man \
+--with-pkg-config-libdir=/usr/lib/pkgconfig \
+--with-shared --with-normal --without-debug --without-ada \
+--enable-widec --enable-pc-files --with-cxx-binding --with-cxx-shared
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  # fool packages looking to link to non-wide-character ncurses libraries
+  for lib in ncurses ncurses++ form panel menu; do
+echo "INPUT(-l${lib}w)" > "$pkgdir/usr/lib/lib${lib}.so"
+ln -s ${lib}w.pc "$pkgdir/usr/lib/pkgconfig/${lib}.pc"
+  done
+
+  for lib in tic tinfo; do
+echo "INPUT(libncursesw.so.${pkgver:0:1})" > "$pkgdir/usr/lib/lib${lib}.so"
+ln -s libncursesw.so.${pkgver:0:1} 
"$pkgdir/usr/lib/lib${lib}.so.${pkgver:0:1}"
+  done
+
+  # some packages look for -lcurses during build
+  echo 'INPUT(-lncursesw)' > "$pkgdir/usr/lib/libcursesw.so"
+  ln -s libncurses.so "$pkgdir/usr/lib/libcurses.so"
+
+  # install license, rip it from the readme
+  install -d "$pkgdir/usr/share/licenses/$pkgname"
+  grep -B 100 '$Id' README > "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2018-01-29 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, January 29, 2018 @ 16:12:18
  Author: svenstaro
Revision: 287804

archrelease: copy trunk to community-any

Added:
  absl-py/repos/community-any/
  absl-py/repos/community-any/PKGBUILD
(from rev 287803, absl-py/trunk/PKGBUILD)

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

Copied: absl-py/repos/community-any/PKGBUILD (from rev 287803, 
absl-py/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2018-01-29 16:12:18 UTC (rev 287804)
@@ -0,0 +1,27 @@
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=absl-py
+pkgver=0.1.9
+pkgrel=1
+pkgdesc="Abseil Python Common Libraries"
+arch=(any)
+url="https://github.com/abseil/abseil-py;
+license=(APACHE)
+makedepends=(python-setuptools)
+source=(https://pypi.python.org/packages/42/3c/1985d86a44bfe44fd060c02807336f840a509bfaa2d340860fba7d22da39/absl-py-${pkgver}.tar.gz)
+sha512sums=('bbea574e98b6016abad35d3a66293b4cd542faa94d2ed1b5f90b5872932aad00bae1270741ef8cf65d22c48a8824a3ac1a34409509df2c16980a0e271ff5064e')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+  chmod -R +r "${pkgdir}"/usr/lib
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (absl-py absl-py/repos absl-py/trunk absl-py/trunk/PKGBUILD)

2018-01-29 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, January 29, 2018 @ 16:11:38
  Author: svenstaro
Revision: 287803

Add absl-py for tensorflow

Added:
  absl-py/
  absl-py/repos/
  absl-py/trunk/
  absl-py/trunk/PKGBUILD

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

Added: absl-py/trunk/PKGBUILD
===
--- absl-py/trunk/PKGBUILD  (rev 0)
+++ absl-py/trunk/PKGBUILD  2018-01-29 16:11:38 UTC (rev 287803)
@@ -0,0 +1,27 @@
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=absl-py
+pkgver=0.1.9
+pkgrel=1
+pkgdesc="Abseil Python Common Libraries"
+arch=(any)
+url="https://github.com/abseil/abseil-py;
+license=(APACHE)
+makedepends=(python-setuptools)
+source=(https://pypi.python.org/packages/42/3c/1985d86a44bfe44fd060c02807336f840a509bfaa2d340860fba7d22da39/absl-py-${pkgver}.tar.gz)
+sha512sums=('bbea574e98b6016abad35d3a66293b4cd542faa94d2ed1b5f90b5872932aad00bae1270741ef8cf65d22c48a8824a3ac1a34409509df2c16980a0e271ff5064e')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+  chmod -R +r "${pkgdir}"/usr/lib
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Monday, January 29, 2018 @ 16:33:19
  Author: felixonmars
Revision: 287806

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-texmath/repos/community-staging-x86_64/PKGBUILD (from rev 
287805, haskell-texmath/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-29 16:33:19 UTC (rev 287806)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=texmath
+pkgname=haskell-texmath
+pkgver=0.10.1.1
+pkgrel=1
+pkgdesc="Conversion between formats used to represent mathematics."
+url="https://github.com/jgm/texmath;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-mtl" "haskell-network-uri" "haskell-pandoc-types" 
"haskell-parsec"
+ "haskell-syb" "haskell-xml")
+makedepends=('ghc' 'haskell-split' 'haskell-temporary' 'haskell-utf8-string')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('db84c0b176b625c8d3b402156b8b60e245d55c0e233ef2da154e847fb48a73259c486095756f1d78ad4a5ec751f659b573de7cf4f32b27186aeb4ba03b6d13c0')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri -f-executable
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Monday, January 29, 2018 @ 15:39:15
  Author: felixonmars
Revision: 287791

upgpkg: jenkins 2.104-1

Modified:
  jenkins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 15:37:28 UTC (rev 287790)
+++ PKGBUILD2018-01-29 15:39:15 UTC (rev 287791)
@@ -5,7 +5,7 @@
 # Contributor: Illarion Kovalchuk 
 
 pkgname=jenkins
-pkgver=2.103
+pkgver=2.104
 pkgrel=1
 pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
@@ -25,7 +25,7 @@
 'jenkins.tmpfiles'
 'jenkins.sysusers'
 'LICENSE')
-sha512sums=('14079d098873b8c78f4564cd99be0e22395d7b1f90f878cf4ebad7f6220658bf0a69aaf7fe21f563e2679291d0ae41f30f9ba04e06d895802fe03ae82859887e'
+sha512sums=('7a2bc0e85f64148731fa48916cce214d841cc2b181de127f31e785f04afa164f5b6d507851e74268c7f43e3b82ead4c39714a72757c91d4170c042666bec0198'
 
'3a8421cef3953d899c150609f959cf5d5dd6d08d079a5e0f48bfece4f3c80491722b9e90ef841fddb87401c226b8338297c5c4e83e55a33ef8d6e387de3048d0'
 
'a336b006d3711abb75b49a2e12c09ee61cf3275a2cdbbd3676480e2f6ca8ba0fb4b9c08f3f9da193252c4fca827e9a1d5eaad847d0a889445693427ae1571fe7'
 
'a845a7147be54affc586dfce9a188ec24c92e673e88dec0b62da386d2e597de6ecda103429008562abd897f179a52c37cf2188ebc65b8c636efd07d707e18f90'


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

2018-01-29 Thread Eli Schwartz via arch-commits
Date: Monday, January 29, 2018 @ 16:01:10
  Author: eschwartz
Revision: 287793

upgpkg: pypy3 5.10.0-4

Rebuild for FS#57064 after staging overwrote the changes.

Modified:
  pypy3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 15:40:03 UTC (rev 287792)
+++ PKGBUILD2018-01-29 16:01:10 UTC (rev 287793)
@@ -3,9 +3,9 @@
 
 pkgname=pypy3
 pkgver=5.10.0
-pkgrel=3
+pkgrel=4
 pkgdesc="A Python3 implementation written in Python, JIT enabled"
-url="http://pypy.org;
+url="https://pypy.org;
 arch=('x86_64')
 depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
 makedepends=('python2' 'sqlite' 'tk' 'python2-pycparser')
@@ -12,7 +12,7 @@
 optdepends=('sqlite: sqlite module'
 'tk: tk module')
 options=(!buildflags)
-license=('custom:MIT')
+license=('MIT')
 
source=("https://bitbucket.org/pypy/pypy/downloads/pypy3-v${pkgver}-src.tar.bz2;)
 
sha512sums=('69a373c18dbad9dd617f994ad885c8d8975f0c484ba9dd547e6e892c9a3030a43e9e3ee668aee5f4969403883de1311cef97a0a5e5701921172ee6c2119b771b')
 


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

2018-01-29 Thread Sergej Pupykin via arch-commits
Date: Monday, January 29, 2018 @ 16:02:57
  Author: spupykin
Revision: 287799

archrelease: copy trunk to community-x86_64

Added:
  moreutils/repos/community-x86_64/PKGBUILD
(from rev 287798, moreutils/trunk/PKGBUILD)
Deleted:
  moreutils/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-29 16:02:34 UTC (rev 287798)
+++ PKGBUILD2018-01-29 16:02:57 UTC (rev 287799)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Alessio 'mOLOk' Bolognino 
-
-pkgname=moreutils
-pkgver=0.61
-pkgrel=1
-pkgdesc="A growing collection of the unix tools that nobody thought to write 
thirty years ago"
-arch=('i686' 'x86_64')
-url="http://joeyh.name/code/moreutils/;
-license=('GPL')
-depends=('perl' 'perl-ipc-run' 'perl-timedate' 'perl-time-duration')
-makedepends=('docbook2x' 'docbook-xml' 'perl-xml-sax' 'git')
-options=('!emptydirs' 'zipman')
-replaces=(moreutils-svn)
-#source=(http://ftp.de.debian.org/debian/pool/main/m/moreutils/moreutils_$pkgver.orig.tar.gz)
-source=("git://git.kitenet.net/moreutils.git#tag=$pkgver")
-sha256sums=('SKIP')
-
-build() {
-  cd "$srcdir"/$pkgname
-  make DOCBOOK2XMAN=docbook2man
-}
-
-package() {
-  cd "$srcdir"/$pkgname
-  make PREFIX="$pkgdir"/usr install
-  chmod 0644 "$pkgdir"/usr/share/man/man1/*
-  mv "$pkgdir"/usr/share/man/man1/ts.1 
"$pkgdir"/usr/share/man/man1/ts.1moreutils
-  mv "$pkgdir"/usr/share/man/man1/parallel.1 
"$pkgdir"/usr/share/man/man1/parallel-moreutils.1
-  mv "$pkgdir"/usr/bin/parallel "$pkgdir"/usr/bin/parallel-moreutils
-}

Copied: moreutils/repos/community-x86_64/PKGBUILD (from rev 287798, 
moreutils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-29 16:02:57 UTC (rev 287799)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Alessio 'mOLOk' Bolognino 
+
+pkgname=moreutils
+pkgver=0.62
+pkgrel=1
+pkgdesc="A growing collection of the unix tools that nobody thought to write 
thirty years ago"
+arch=('x86_64')
+url="http://joeyh.name/code/moreutils/;
+license=('GPL')
+depends=('perl' 'perl-ipc-run' 'perl-timedate' 'perl-time-duration')
+makedepends=('docbook2x' 'docbook-xml' 'perl-xml-sax' 'git')
+options=('!emptydirs' 'zipman')
+replaces=(moreutils-svn)
+#source=(http://ftp.de.debian.org/debian/pool/main/m/moreutils/moreutils_$pkgver.orig.tar.gz)
+source=("git://git.kitenet.net/moreutils.git#tag=$pkgver")
+sha256sums=('SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname
+  make DOCBOOK2XMAN=docbook2man
+}
+
+package() {
+  cd "$srcdir"/$pkgname
+  make PREFIX="$pkgdir"/usr install
+  chmod 0644 "$pkgdir"/usr/share/man/man1/*
+  mv "$pkgdir"/usr/share/man/man1/ts.1 
"$pkgdir"/usr/share/man/man1/ts.1moreutils
+  mv "$pkgdir"/usr/share/man/man1/parallel.1 
"$pkgdir"/usr/share/man/man1/parallel-moreutils.1
+  mv "$pkgdir"/usr/bin/parallel "$pkgdir"/usr/bin/parallel-moreutils
+}


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

2018-01-29 Thread Sergej Pupykin via arch-commits
Date: Monday, January 29, 2018 @ 16:03:41
  Author: spupykin
Revision: 287800

upgpkg: splint 3.1.2.git20180129-1

Modified:
  splint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 16:02:57 UTC (rev 287799)
+++ PKGBUILD2018-01-29 16:03:41 UTC (rev 287800)
@@ -3,28 +3,33 @@
 # Contributor: William Rea 
 
 pkgname=splint
-pkgver=3.1.2
-pkgrel=4
+pkgver=3.1.2.git20180129
+pkgrel=1
+_commit=3fb908d0d8a4daa26dc770e1f2aa133f93100503
 pkgdesc="A tool for statically checking C programs for security 
vulnerabilities and coding mistakes"
 arch=('x86_64')
-url="http://www.splint.org/;
+url="http://repo.or.cz/splint-patched.git;
 license=('GPL')
 depends=('flex')
-source=("http://www.splint.org/downloads/${pkgname}-${pkgver}.src.tgz;
-   'splint.sh')
-md5sums=('25f47d70bd9c8bdddf6b03de5949c4fd'
- '0efb6341b384dc44590989fe3678c96c')
+makedepends=('git')
 options=('!makeflags')
+source=("git+https://repo.or.cz/splint-patched.git#commit=${_commit};
+   'splint.sh')
+sha256sums=('SKIP'
+'ea90b733037ef1ad25a0a5f39cbb33ca747dabd3b2bfd9d087f3981bc6990b61')
 
 build() {
-  cd "${srcdir}"/$pkgname-$pkgver
+  cd "${srcdir}"/splint-patched
+  automake --add-missing || true
+  autoreconf || true
+  automake --add-missing
+  autoreconf
   ./configure --prefix=/usr --mandir=/usr/share/man
-  make LDFLAGS="$LDFLAGS -lfl"
+  make -j1
 }
 
 package() {
-  cd "${srcdir}"/$pkgname-$pkgver
+  cd "${srcdir}"/splint-patched
   make DESTDIR="${pkgdir}" install
-
   install -D -m755 "${srcdir}"/splint.sh "${pkgdir}"/etc/profile.d/splint.sh
 }


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

2018-01-29 Thread Andreas Radke via arch-commits
Date: Monday, January 29, 2018 @ 16:04:20
  Author: andyrtr
Revision: 315574

archrelease: copy trunk to testing-x86_64

Added:
  libtirpc/repos/testing-x86_64/
  libtirpc/repos/testing-x86_64/PKGBUILD
(from rev 315573, libtirpc/trunk/PKGBUILD)
  libtirpc/repos/testing-x86_64/buildfix.diff
(from rev 315573, libtirpc/trunk/buildfix.diff)

---+
 PKGBUILD  |   34 ++
 buildfix.diff |   28 
 2 files changed, 62 insertions(+)

Copied: libtirpc/repos/testing-x86_64/PKGBUILD (from rev 315573, 
libtirpc/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-01-29 16:04:20 UTC (rev 315574)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Contributor: Tobias Powalowski 
+
+pkgname=libtirpc
+pkgver=1.0.2
+pkgrel=2
+pkgdesc="Transport Independent RPC library (SunRPC replacement)"
+arch=('x86_64')
+url="http://libtirpc.sourceforge.net/;
+license=('BSD')
+depends=('krb5')
+backup=('etc/netconfig')
+# git tree: git://linux-nfs.org/~steved/libtirpc
+source=(http://downloads.sourceforge.net/sourceforge/libtirpc/${pkgname}-${pkgver}.tar.bz2
 buildfix.diff)
+sha1sums=('2a8dc0e6eecc45be6597c8287b1d8e15cbee46e3'
+  '6bf8a0afc9f11832f94573ff938114aad2cfa862')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i $srcdir/buildfix.diff
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconf=/etc
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -D -m644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: libtirpc/repos/testing-x86_64/buildfix.diff (from rev 315573, 
libtirpc/trunk/buildfix.diff)
===
--- testing-x86_64/buildfix.diff(rev 0)
+++ testing-x86_64/buildfix.diff2018-01-29 16:04:20 UTC (rev 315574)
@@ -0,0 +1,28 @@
+From acb9a37977cf0a9630eac74af9adebf35e38e719 Mon Sep 17 00:00:00 2001
+From: Thorsten Kukuk 
+Date: Tue, 14 Nov 2017 10:39:08 -0500
+Subject: [PATCH] Include stdint.h from xdr_sizeof.c to avoid missing
+ declaration errors.
+
+Signed-off-by: Thorsten Kukuk 
+Signed-off-by: Steve Dickson 
+---
+ src/xdr_sizeof.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/xdr_sizeof.c b/src/xdr_sizeof.c
+index d23fbd1..79d6707 100644
+--- a/src/xdr_sizeof.c
 b/src/xdr_sizeof.c
+@@ -39,6 +39,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include "un-namespace.h"
+ 
+ /* ARGSUSED */
+-- 
+1.8.3.1
+
+


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

2018-01-29 Thread Bartłomiej Piotrowski via arch-commits
Date: Monday, January 29, 2018 @ 16:08:33
  Author: bpiotrowski
Revision: 315575

6.1-3: use proper quotes for variable expansion

Modified:
  ncurses/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 16:04:20 UTC (rev 315574)
+++ PKGBUILD2018-01-29 16:08:33 UTC (rev 315575)
@@ -5,7 +5,7 @@
 
 pkgname=ncurses
 pkgver=6.1
-pkgrel=2
+pkgrel=3
 pkgdesc='System V Release 4.0 curses emulation library'
 arch=(x86_64)
 url='http://invisible-island.net/ncurses/ncurses.html'
@@ -34,7 +34,7 @@
 
   # fool packages looking to link to non-wide-character ncurses libraries
   for lib in ncurses ncurses++ form panel menu; do
-echo 'INPUT(-l${lib}w)' > "$pkgdir/usr/lib/lib${lib}.so"
+echo "INPUT(-l${lib}w)" > "$pkgdir/usr/lib/lib${lib}.so"
 ln -s ${lib}w.pc "$pkgdir/usr/lib/pkgconfig/${lib}.pc"
   done
 


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Monday, January 29, 2018 @ 16:32:58
  Author: felixonmars
Revision: 287805

upgpkg: haskell-texmath 0.10.1.1-1

rebuild with texmath,0.10.1.1

Modified:
  haskell-texmath/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 16:12:18 UTC (rev 287804)
+++ PKGBUILD2018-01-29 16:32:58 UTC (rev 287805)
@@ -4,8 +4,8 @@
 
 _hkgname=texmath
 pkgname=haskell-texmath
-pkgver=0.10.1
-pkgrel=6
+pkgver=0.10.1.1
+pkgrel=1
 pkgdesc="Conversion between formats used to represent mathematics."
 url="https://github.com/jgm/texmath;
 license=("GPL")
@@ -14,7 +14,7 @@
  "haskell-syb" "haskell-xml")
 makedepends=('ghc' 'haskell-split' 'haskell-temporary' 'haskell-utf8-string')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('6410aa02fe07a008ff228550967dd73cc623c8796f930148cf4b5c9774c6cb50cd19d4518f5c92ba2578aec9ada4ee53561cb093abf2fca674cbc9bf6b1be70b')
+sha512sums=('db84c0b176b625c8d3b402156b8b60e245d55c0e233ef2da154e847fb48a73259c486095756f1d78ad4a5ec751f659b573de7cf4f32b27186aeb4ba03b6d13c0')
 
 build() {
 cd $_hkgname-$pkgver


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

2018-01-29 Thread Bruno Pagani via arch-commits
Date: Monday, January 29, 2018 @ 14:00:42
  Author: archange
Revision: 287769

upgpkg: paraview 5.4.1-2

JSONCPP rebuild + use system NETCDF

Modified:
  paraview/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 12:49:48 UTC (rev 287768)
+++ PKGBUILD2018-01-29 14:00:42 UTC (rev 287769)
@@ -14,7 +14,7 @@
 pkgname=${_pkg}
 #-${_mpi}
 pkgver=5.4.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Parallel Visualization application using VTK (${_mpi} version)"
 arch=('x86_64')
 url="https://www.paraview.org;
@@ -26,7 +26,7 @@
  'python-autobahn' 'python-zope-interface' 'python-incremental'
  'boost-libs' 'glew' 'expat' 'freetype2'
  'libjpeg' 'jsoncpp' 'libxml2' 'libtheora' 'libpng'
- 'libtiff' 'zlib' 'hdf5-openmpi' 'lz4')
+ 'libtiff' 'zlib' 'hdf5-openmpi' 'lz4' 'netcdf')
 #netcdf-cxx gl2ps libharu
 #python-txaio python-hyperlink
 #proj apparently not used in this VTK configuration
@@ -56,7 +56,7 @@
 # TXAIO HYPERLINK in a future VTK version
 # LIBPROJ4 apparently not used in this VTK configuration
 local VTK_USE_SYSTEM_LIB=""
-for lib in EXPAT FREETYPE JPEG PNG TIFF ZLIB LIBXML2 OGGTHEORA TWISTED 
ZOPE SIX AUTOBAHN MPI4PY JSONCPP GLEW HDF5 CONSTANTLY INCREMENTAL LZ4
+for lib in EXPAT FREETYPE JPEG PNG TIFF ZLIB LIBXML2 OGGTHEORA TWISTED 
ZOPE SIX AUTOBAHN MPI4PY JSONCPP GLEW HDF5 CONSTANTLY INCREMENTAL LZ4 NETCDF
 do
 VTK_USE_SYSTEM_LIB+="-DVTK_USE_SYSTEM_${lib}:BOOL=ON "
 done


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

2018-01-29 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, January 29, 2018 @ 23:56:14
  Author: svenstaro
Revision: 287898

Add absl dependency

Modified:
  tensorflow/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 22:56:24 UTC (rev 287897)
+++ PKGBUILD2018-01-29 23:56:14 UTC (rev 287898)
@@ -6,7 +6,7 @@
 pkgname=(tensorflow tensorflow-opt tensorflow-cuda tensorflow-opt-cuda 
python-tensorflow python-tensorflow-opt python-tensorflow-cuda 
python-tensorflow-opt-cuda)
 pkgver=1.5.0
 _pkgver=1.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Library for computation using data flow graphs for scalable machine 
learning"
 url="https://www.tensorflow.org/;
 license=('APACHE')
@@ -154,7 +154,7 @@
 }
 
 package_python-tensorflow() {
-  depends=(python python-protobuf)
+  depends=(python python-protobuf absl-py)
 
   cd ${srcdir}/tensorflow-${_pkgver}
 
@@ -170,7 +170,7 @@
 }
 
 package_python-tensorflow-opt() {
-  depends=(python python-protobuf)
+  depends=(python python-protobuf absl-py)
   conflicts=(python-tensorflow)
   provides=(python-tensorflow)
   pkgdesc="Library for computation using data flow graphs for scalable machine 
learning (with CPU optimizations)"
@@ -189,7 +189,7 @@
 }
 
 package_python-tensorflow-cuda() {
-  depends=(python cuda cudnn python-pycuda python-protobuf)
+  depends=(python cuda cudnn python-pycuda python-protobuf absl-py)
   conflicts=(python-tensorflow)
   provides=(python-tensorflow)
   pkgdesc="Library for computation using data flow graphs for scalable machine 
learning (with CUDA)"
@@ -208,7 +208,7 @@
 }
 
 package_python-tensorflow-opt-cuda() {
-  depends=(python cuda cudnn python-pycuda python-protobuf)
+  depends=(python cuda cudnn python-pycuda python-protobuf absl-py)
   conflicts=(python-tensorflow)
   provides=(python-tensorflow)
   pkgdesc="Library for computation using data flow graphs for scalable machine 
learning (with CUDA and CPU optimizations)"


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

2018-01-29 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, January 30, 2018 @ 00:03:14
  Author: svenstaro
Revision: 287901

archrelease: copy trunk to community-x86_64

Added:
  pypy/repos/community-x86_64/LICENSE
(from rev 287900, pypy/trunk/LICENSE)
  pypy/repos/community-x86_64/PKGBUILD
(from rev 287900, pypy/trunk/PKGBUILD)
Deleted:
  pypy/repos/community-x86_64/LICENSE
  pypy/repos/community-x86_64/PKGBUILD

--+
 LICENSE  |  308 ++---
 PKGBUILD |  108 ++---
 2 files changed, 208 insertions(+), 208 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2018-01-30 00:02:29 UTC (rev 287900)
+++ LICENSE 2018-01-30 00:03:14 UTC (rev 287901)
@@ -1,154 +0,0 @@
-License for files in the pypy/ directory 
-==
-
-Except when otherwise stated (look for LICENSE files in directories or
-information at the beginning of each file) all software and
-documentation in the 'pypy' directories is licensed as follows: 
-
-The MIT License
-
-Permission is hereby granted, free of charge, to any person 
-obtaining a copy of this software and associated documentation 
-files (the "Software"), to deal in the Software without 
-restriction, including without limitation the rights to use, 
-copy, modify, merge, publish, distribute, sublicense, and/or 
-sell copies of the Software, and to permit persons to whom the 
-Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included 
-in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 
-OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 
MERCHANTABILITY, 
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 
-THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 
-FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 
-DEALINGS IN THE SOFTWARE.
-
-
-PyPy Copyright holders 2003-2010
 
-
-Except when otherwise stated (look for LICENSE files or information at
-the beginning of each file) the files in the 'pypy' directory are each
-copyrighted by one or more of the following people and organizations:
-
-Armin Rigo
-Maciej Fijalkowski
-Carl Friedrich Bolz
-Samuele Pedroni
-Antonio Cuni
-Michael Hudson
-Christian Tismer
-Holger Krekel
-Eric van Riet Paap
-Richard Emslie
-Anders Chrigstrom
-Amaury Forgeot d Arc
-Aurelien Campeas
-Anders Lehmann
-Niklaus Haldimann
-Seo Sanghyeon
-Leonardo Santagada
-Lawrence Oluyede
-Jakub Gustak
-Guido Wesdorp
-Benjamin Peterson
-Alexander Schremmer
-Niko Matsakis
-Ludovic Aubry
-Alex Martelli
-Toon Verwaest
-Stephan Diehl
-Adrien Di Mascio
-Stefan Schwarzer
-Tomek Meka
-Patrick Maupin
-Jacob Hallen
-Laura Creighton
-Bob Ippolito
-Camillo Bruni
-Simon Burton
-Bruno Gola
-Alexandre Fayolle
-Marius Gedminas
-Guido van Rossum
-Valentino Volonghi
-Adrian Kuhn
-Paul deGrandis
-Gerald Klix
-Wanja Saatkamp
-Anders Hammarquist
-Oscar Nierstrasz
-Eugene Oden
-Lukas Renggli
-Guenter Jantzen
-Dinu Gherman
-Bartosz Skowron
-Georg Brandl
-Ben Young
-Jean-Paul Calderone
-Nicolas Chauvat
-Rocco Moretti
-Michael Twomey
-boria
-Jared Grubb
-Olivier Dormond
-Stuart Williams
-Jens-Uwe Mager
-Justas Sadzevicius
-Mikael Schönenberg
-Brian Dorsey
-Jonathan David Riehl
-Beatrice During
-Elmo Mäntynen
-Andreas Friedge
-Alex Gaynor
-Anders Qvist
-Alan McIntyre
-Bert Freudenberg
-
-Heinrich-Heine University, Germany 
-Open End AB (formerly AB Strakt), Sweden
-merlinux GmbH, Germany 
-tismerysoft GmbH, Germany 
-Logilab Paris, France 
-DFKI GmbH, Germany 
-Impara, Germany
-Change Maker, Sweden 
-
- 
-License for 'lib-python/2.5.2' and 'lib-python/2.5.2-modified'
-== 
-
-Except when otherwise stated (look for LICENSE files or
-copyright/license information at the beginning of each file) the files
-in the 'lib-python/2.5.2' and 'lib-python/2.5.2-modified' directories
-are all copyrighted by the Python Software Foundation and licensed under
-the Python Software License of which you can find a copy here:
-http://www.python.org/doc/Copyright.html 
-
-License for 'pypy/translator/jvm/src/jna.jar'
-=
-
-The file 'pypy/translator/jvm/src/jna.jar' is licensed under the GNU
-Lesser General Public License of which 

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

2018-01-29 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, January 30, 2018 @ 00:04:08
  Author: svenstaro
Revision: 287902

upgpkg: pypy3 5.10.0-5

Add ncurses to deps

Modified:
  pypy3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 00:03:14 UTC (rev 287901)
+++ PKGBUILD2018-01-30 00:04:08 UTC (rev 287902)
@@ -3,11 +3,11 @@
 
 pkgname=pypy3
 pkgver=5.10.0
-pkgrel=4
+pkgrel=5
 pkgdesc="A Python3 implementation written in Python, JIT enabled"
 url="https://pypy.org;
 arch=('x86_64')
-depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib' 'ncurses')
 makedepends=('python2' 'sqlite' 'tk' 'python2-pycparser')
 optdepends=('sqlite: sqlite module'
 'tk: tk module')


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

2018-01-29 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, January 30, 2018 @ 00:02:29
  Author: svenstaro
Revision: 287900

upgpkg: pypy 5.10.0-5

Add ncurses to deps

Modified:
  pypy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 00:00:18 UTC (rev 287899)
+++ PKGBUILD2018-01-30 00:02:29 UTC (rev 287900)
@@ -4,11 +4,11 @@
 
 pkgname=pypy
 pkgver=5.10.0
-pkgrel=4
+pkgrel=5
 pkgdesc="A Python implementation written in Python, JIT enabled"
 url="https://pypy.org;
 arch=('x86_64')
-depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib' 'ncurses')
 makedepends=('python2' 'tk' 'sqlite' 'mercurial' 'python2-pycparser')
 optdepends=('sqlite: sqlite module'
 'tk: tk module')


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

2018-01-29 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, January 30, 2018 @ 00:04:47
  Author: svenstaro
Revision: 287903

archrelease: copy trunk to community-x86_64

Added:
  pypy3/repos/community-x86_64/PKGBUILD
(from rev 287902, pypy3/trunk/PKGBUILD)
Deleted:
  pypy3/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 00:04:08 UTC (rev 287902)
+++ PKGBUILD2018-01-30 00:04:47 UTC (rev 287903)
@@ -1,57 +0,0 @@
-# $Id: PKGBUILD 95035 2013-08-04 09:44:24Z svenstaro $
-# Maintainer: Sven-Hendrik Haase 
-
-pkgname=pypy3
-pkgver=5.10.0
-pkgrel=4
-pkgdesc="A Python3 implementation written in Python, JIT enabled"
-url="https://pypy.org;
-arch=('x86_64')
-depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
-makedepends=('python2' 'sqlite' 'tk' 'python2-pycparser')
-optdepends=('sqlite: sqlite module'
-'tk: tk module')
-options=(!buildflags)
-license=('MIT')
-source=("https://bitbucket.org/pypy/pypy/downloads/pypy3-v${pkgver}-src.tar.bz2;)
-sha512sums=('69a373c18dbad9dd617f994ad885c8d8975f0c484ba9dd547e6e892c9a3030a43e9e3ee668aee5f4969403883de1311cef97a0a5e5701921172ee6c2119b771b')
-
-prepare() {
-  cd pypy3-v${pkgver}-src
-}
-
-build() {
-  cd pypy3-v${pkgver}-src/pypy/goal
-
-  python2 ../../rpython/bin/rpython -Ojit --shared targetpypystandalone
-
-  # Compile binary modules
-  PYTHONPATH=../.. ./pypy3-c ../tool/build_cffi_imports.py
-}
-
-package() {
-  cd pypy3-v${pkgver}-src
-
-  # Prepare installation
-  python2 pypy/tool/release/package.py --archive-name pypy --targetdir .
-  mkdir unpacked
-  tar xf pypy.tar.bz2 -C unpacked
-
-  # Install pypy
-  cd unpacked
-  install -Dm755 pypy/bin/pypy3 "${pkgdir}"/opt/pypy3/bin/pypy3
-  install -Dm755 pypy/bin/libpypy3-c.so "${pkgdir}"/opt/pypy3/bin/libpypy3-c.so
-  cp -r pypy/include pypy/lib_pypy pypy/lib-python pypy/site-packages 
"${pkgdir}"/opt/pypy3
-  cd ..
-
-  # Install symlinks
-  mkdir -p "${pkgdir}"/usr/bin "${pkgdir}"/usr/lib
-  ln -s /opt/pypy3/bin/pypy3 "${pkgdir}"/usr/bin/pypy3
-  ln -s /opt/pypy3/bin/libpypy3-c.so "${pkgdir}"/usr/lib/libpypy3-c.so
-
-  # Install misc stuff
-  install -Dm644 README.rst "${pkgdir}"/opt/pypy3/README.rst
-  install -Dm644 LICENSE "${pkgdir}"/opt/pypy3/LICENSE
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/pypy3/LICENSE
-}
-# vim: ts=2 sw=2 et:

Copied: pypy3/repos/community-x86_64/PKGBUILD (from rev 287902, 
pypy3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-30 00:04:47 UTC (rev 287903)
@@ -0,0 +1,57 @@
+# $Id: PKGBUILD 95035 2013-08-04 09:44:24Z svenstaro $
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=pypy3
+pkgver=5.10.0
+pkgrel=5
+pkgdesc="A Python3 implementation written in Python, JIT enabled"
+url="https://pypy.org;
+arch=('x86_64')
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib' 'ncurses')
+makedepends=('python2' 'sqlite' 'tk' 'python2-pycparser')
+optdepends=('sqlite: sqlite module'
+'tk: tk module')
+options=(!buildflags)
+license=('MIT')
+source=("https://bitbucket.org/pypy/pypy/downloads/pypy3-v${pkgver}-src.tar.bz2;)
+sha512sums=('69a373c18dbad9dd617f994ad885c8d8975f0c484ba9dd547e6e892c9a3030a43e9e3ee668aee5f4969403883de1311cef97a0a5e5701921172ee6c2119b771b')
+
+prepare() {
+  cd pypy3-v${pkgver}-src
+}
+
+build() {
+  cd pypy3-v${pkgver}-src/pypy/goal
+
+  python2 ../../rpython/bin/rpython -Ojit --shared targetpypystandalone
+
+  # Compile binary modules
+  PYTHONPATH=../.. ./pypy3-c ../tool/build_cffi_imports.py
+}
+
+package() {
+  cd pypy3-v${pkgver}-src
+
+  # Prepare installation
+  python2 pypy/tool/release/package.py --archive-name pypy --targetdir .
+  mkdir unpacked
+  tar xf pypy.tar.bz2 -C unpacked
+
+  # Install pypy
+  cd unpacked
+  install -Dm755 pypy/bin/pypy3 "${pkgdir}"/opt/pypy3/bin/pypy3
+  install -Dm755 pypy/bin/libpypy3-c.so "${pkgdir}"/opt/pypy3/bin/libpypy3-c.so
+  cp -r pypy/include pypy/lib_pypy pypy/lib-python pypy/site-packages 
"${pkgdir}"/opt/pypy3
+  cd ..
+
+  # Install symlinks
+  mkdir -p "${pkgdir}"/usr/bin "${pkgdir}"/usr/lib
+  ln -s /opt/pypy3/bin/pypy3 "${pkgdir}"/usr/bin/pypy3
+  ln -s /opt/pypy3/bin/libpypy3-c.so "${pkgdir}"/usr/lib/libpypy3-c.so
+
+  # Install misc stuff
+  install -Dm644 README.rst "${pkgdir}"/opt/pypy3/README.rst
+  install -Dm644 LICENSE "${pkgdir}"/opt/pypy3/LICENSE
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/pypy3/LICENSE
+}
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in firefox-extension-https-everywhere/repos/community-any (2 files)

2018-01-29 Thread Eli Schwartz via arch-commits
Date: Tuesday, January 30, 2018 @ 01:04:59
  Author: eschwartz
Revision: 287905

archrelease: copy trunk to community-any

Added:
  firefox-extension-https-everywhere/repos/community-any/PKGBUILD
(from rev 287904, firefox-extension-https-everywhere/trunk/PKGBUILD)
Deleted:
  firefox-extension-https-everywhere/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 01:04:22 UTC (rev 287904)
+++ PKGBUILD2018-01-30 01:04:59 UTC (rev 287905)
@@ -1,45 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Hyacinthe Cartiaux 
-
-_pkgname=https-everywhere
-pkgname=firefox-extension-${_pkgname}
-pkgver=2018.1.11
-pkgrel=1
-pkgdesc="Plugin for firefox which ensures you are using https whenever it's 
possible."
-arch=('any')
-url="https://www.eff.org/https-everywhere;
-license=('GPL2')
-groups=('firefox-addons')
-depends=("firefox")
-makedepends=("unzip")
-source=("${_pkgname}-${pkgver}.xpi::https://www.eff.org/files/https-everywhere-${pkgver}-eff.xpi;
-
"${_pkgname}-${pkgver}.xpi.sig::https://www.eff.org/files/https-everywhere-${pkgver}-eff.xpi.sig;)
-noextract=("${_pkgname}-${pkgver}.xpi")
-sha256sums=('6d7e48f5d51f1a2062e95c0777a6143f4c3b4c06c1efc467bc66fd39c0fc9bae'
-'SKIP')
-validpgpkeys=('1073E74EB38BD6D19476CBF8EA9DBF9FB761A677') # William Budington 

-
-prepare() {
-  cd "$srcdir"
-
-  unzip -qqo "${_pkgname}-${pkgver}.xpi" -d "${_pkgname}-${pkgver}"
-}
-
-package() {
-  cd "${srcdir}"
-
-  if [[ -f ${_pkgname}-${pkgver}/install.rdf ]]; then
-_extension_id="$(sed -n '/.*\(.*\)<\/em:id>.*/{s//\1/p;q}' 
${_pkgname}-${pkgver}/install.rdf)"
-  else
-_extension_id="$(sed -n 's/.*"id": "\(.*\)".*/\1/p' 
${_pkgname}-${pkgver}/manifest.json)"
-  fi
-  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
-  # Should this extension be unpacked or not?
-  if grep -q 'true' ${_pkgname}-${pkgver}/install.rdf 
2>/dev/null; then
-install -dm755 "${_extension_dest}"
-cp -R ${_pkgname}-${pkgver}/* "${_extension_dest}"
-chmod -R ugo+rX "${_extension_dest}"
-  else
-install -Dm644 ${_pkgname}-${pkgver}.xpi "${_extension_dest}.xpi"
-  fi
-}

Copied: firefox-extension-https-everywhere/repos/community-any/PKGBUILD (from 
rev 287904, firefox-extension-https-everywhere/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-30 01:04:59 UTC (rev 287905)
@@ -0,0 +1,45 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Hyacinthe Cartiaux 
+
+_pkgname=https-everywhere
+pkgname=firefox-extension-${_pkgname}
+pkgver=2018.1.29
+pkgrel=1
+pkgdesc="Plugin for firefox which ensures you are using https whenever it's 
possible."
+arch=('any')
+url="https://www.eff.org/https-everywhere;
+license=('GPL2')
+groups=('firefox-addons')
+depends=("firefox")
+makedepends=("unzip")
+source=("${_pkgname}-${pkgver}.xpi::https://www.eff.org/files/https-everywhere-${pkgver}-eff.xpi;
+
"${_pkgname}-${pkgver}.xpi.sig::https://www.eff.org/files/https-everywhere-${pkgver}-eff.xpi.sig;)
+noextract=("${_pkgname}-${pkgver}.xpi")
+sha256sums=('833661e5832b071a427b6f2cebae237b8dd4daa1b0de14a5833954fd1f59ef39'
+'SKIP')
+validpgpkeys=('1073E74EB38BD6D19476CBF8EA9DBF9FB761A677') # William Budington 

+
+prepare() {
+  cd "$srcdir"
+
+  unzip -qqo "${_pkgname}-${pkgver}.xpi" -d "${_pkgname}-${pkgver}"
+}
+
+package() {
+  cd "${srcdir}"
+
+  if [[ -f ${_pkgname}-${pkgver}/install.rdf ]]; then
+_extension_id="$(sed -n '/.*\(.*\)<\/em:id>.*/{s//\1/p;q}' 
${_pkgname}-${pkgver}/install.rdf)"
+  else
+_extension_id="$(sed -n 's/.*"id": "\(.*\)".*/\1/p' 
${_pkgname}-${pkgver}/manifest.json)"
+  fi
+  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
+  # Should this extension be unpacked or not?
+  if grep -q 'true' ${_pkgname}-${pkgver}/install.rdf 
2>/dev/null; then
+install -dm755 "${_extension_dest}"
+cp -R ${_pkgname}-${pkgver}/* "${_extension_dest}"
+chmod -R ugo+rX "${_extension_dest}"
+  else
+install -Dm644 ${_pkgname}-${pkgver}.xpi "${_extension_dest}.xpi"
+  fi
+}


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

2018-01-29 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, January 30, 2018 @ 00:00:18
  Author: svenstaro
Revision: 287899

archrelease: copy trunk to community-x86_64

Added:
  tensorflow/repos/community-x86_64/15229.patch
(from rev 287898, tensorflow/trunk/15229.patch)
  tensorflow/repos/community-x86_64/PKGBUILD
(from rev 287898, tensorflow/trunk/PKGBUILD)
Deleted:
  tensorflow/repos/community-x86_64/15229.patch
  tensorflow/repos/community-x86_64/PKGBUILD

-+
 15229.patch |   74 -
 PKGBUILD|  458 +-
 2 files changed, 266 insertions(+), 266 deletions(-)

Deleted: 15229.patch
===
--- 15229.patch 2018-01-29 23:56:14 UTC (rev 287898)
+++ 15229.patch 2018-01-30 00:00:18 UTC (rev 287899)
@@ -1,37 +0,0 @@
-From d4c33cfc944cbcac7a31811ba8f86448d8cc2e23 Mon Sep 17 00:00:00 2001
-From: Anush Elangovan 
-Date: Fri, 8 Dec 2017 20:48:23 -0800
-Subject: [PATCH] [XLA] Fix XLA/tfcompile compile error on OSX
-
-This fixes issue #15196
-
-kernel_support_library.cc:99:5: error: no matching function
-for call to 'transform' std::transform(function->arg_begin(),..
-
-TEST=build tfcompile on OSX (also requires PR#14893)

- .../compiler/xla/service/llvm_ir/kernel_support_library.cc| 11 +--
- 1 file changed, 9 insertions(+), 2 deletions(-)
-
-diff --git a/tensorflow/compiler/xla/service/llvm_ir/kernel_support_library.cc 
b/tensorflow/compiler/xla/service/llvm_ir/kernel_support_library.cc
-index 5f6f9810c3a..23d2d4e87d2 100644
 a/tensorflow/compiler/xla/service/llvm_ir/kernel_support_library.cc
-+++ b/tensorflow/compiler/xla/service/llvm_ir/kernel_support_library.cc
-@@ -111,8 +111,15 @@ void KernelSupportLibrary::EmitAndCallOutlinedKernel(
- ir_builder->SetInsertPoint(return_inst);
- 
- std::vector arg_values;
--std::transform(function->arg_begin(), function->arg_end(),
--   std::back_inserter(arg_values), 
std::addressof);
-+/*
-+ * clang on OSX doesn't like std::transform or range for loop here.
-+ * See https://github.com/tensorflow/tensorflow/issues/15196
-+ */
-+for (llvm::Function::arg_iterator arg = function->arg_begin(),
-+  arg_e = function->arg_end();
-+ arg != arg_e; ++arg) {
-+  arg_values.push_back(arg);
-+}
- if (null_arg_idx != -1) {
-   arg_values.insert(arg_values.begin() + null_arg_idx, nullptr);
- }

Copied: tensorflow/repos/community-x86_64/15229.patch (from rev 287898, 
tensorflow/trunk/15229.patch)
===
--- 15229.patch (rev 0)
+++ 15229.patch 2018-01-30 00:00:18 UTC (rev 287899)
@@ -0,0 +1,37 @@
+From d4c33cfc944cbcac7a31811ba8f86448d8cc2e23 Mon Sep 17 00:00:00 2001
+From: Anush Elangovan 
+Date: Fri, 8 Dec 2017 20:48:23 -0800
+Subject: [PATCH] [XLA] Fix XLA/tfcompile compile error on OSX
+
+This fixes issue #15196
+
+kernel_support_library.cc:99:5: error: no matching function
+for call to 'transform' std::transform(function->arg_begin(),..
+
+TEST=build tfcompile on OSX (also requires PR#14893)
+---
+ .../compiler/xla/service/llvm_ir/kernel_support_library.cc| 11 +--
+ 1 file changed, 9 insertions(+), 2 deletions(-)
+
+diff --git a/tensorflow/compiler/xla/service/llvm_ir/kernel_support_library.cc 
b/tensorflow/compiler/xla/service/llvm_ir/kernel_support_library.cc
+index 5f6f9810c3a..23d2d4e87d2 100644
+--- a/tensorflow/compiler/xla/service/llvm_ir/kernel_support_library.cc
 b/tensorflow/compiler/xla/service/llvm_ir/kernel_support_library.cc
+@@ -111,8 +111,15 @@ void KernelSupportLibrary::EmitAndCallOutlinedKernel(
+ ir_builder->SetInsertPoint(return_inst);
+ 
+ std::vector arg_values;
+-std::transform(function->arg_begin(), function->arg_end(),
+-   std::back_inserter(arg_values), 
std::addressof);
++/*
++ * clang on OSX doesn't like std::transform or range for loop here.
++ * See https://github.com/tensorflow/tensorflow/issues/15196
++ */
++for (llvm::Function::arg_iterator arg = function->arg_begin(),
++  arg_e = function->arg_end();
++ arg != arg_e; ++arg) {
++  arg_values.push_back(arg);
++}
+ if (null_arg_idx != -1) {
+   arg_values.insert(arg_values.begin() + null_arg_idx, nullptr);
+ }

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-29 23:56:14 UTC (rev 287898)
+++ PKGBUILD2018-01-30 00:00:18 UTC (rev 287899)
@@ -1,229 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Adria Arrufat (archdria) 
-# Contributor: Thibault Lorrain (fredszaq) 
-
-pkgbase=tensorflow
-pkgname=(tensorflow tensorflow-opt tensorflow-cuda tensorflow-opt-cuda 

[arch-commits] Commit in mupdf/trunk (3 files)

2018-01-29 Thread Levente Polyak via arch-commits
Date: Tuesday, January 30, 2018 @ 01:59:35
  Author: anthraxx
Revision: 287906

upgpkg: mupdf 1.12.0-2 (security update)

- CVE-2017-17858
- security roundup from upstream

Added:
  mupdf/trunk/mupdf-1.12.0-security-roundup.patch
  mupdf/trunk/mupdf-CVE-2017-17858.patch
Modified:
  mupdf/trunk/PKGBUILD

-+
 PKGBUILD|   10 ++
 mupdf-1.12.0-security-roundup.patch |  131 ++
 mupdf-CVE-2017-17858.patch  |  101 ++
 3 files changed, 241 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 01:04:59 UTC (rev 287905)
+++ PKGBUILD2018-01-30 01:59:35 UTC (rev 287906)
@@ -9,7 +9,7 @@
 pkgbase=mupdf
 pkgname=(libmupdf mupdf mupdf-gl mupdf-tools)
 pkgver=1.12.0
-pkgrel=1
+pkgrel=2
 _openjpeg_version=2.3
 pkgdesc='Lightweight PDF and XPS viewer'
 arch=('x86_64')
@@ -21,10 +21,14 @@
 options=('staticlibs')
 source=("https://mupdf.com/downloads/mupdf-${pkgver/_/}-source.tar.xz;
 '0001-mupdf-openjpeg.patch'
+"mupdf-1.12.0-security-roundup.patch"
+"mupdf-CVE-2017-17858.patch"
 'mupdf.desktop'
 'mupdf.xpm')
 sha256sums=('577b3820c6b23d319be91e0e06080263598aa0662d9a7c50af500eb6f003322d'
 'e4be458dabc577e687c3abfa1ae03bd62e8727cfa24f25b8eb23384263486605'
+'04d0b69d2af9839e3bbaf89af05fadc635312dd4a7f536e087450dc13d3aa180'
+'61e5528761a1be9361ccbda07faa669070cca8e8ad7320fa82eaa9fd72eb4b01'
 'ccff66979249bd4ab4ba8918660f194eb90eb0ae231b16e36a6cecdcf471883f'
 'a435f44425f5432c074dee745d8fbaeb879038ec1f1ec64f037c74662f09aca8')
 
@@ -31,6 +35,10 @@
 prepare() {
   cd $pkgbase-${pkgver/_/}-source
 
+  # security fixes
+  patch -Np1 < ../mupdf-1.12.0-security-roundup.patch
+  patch -Np1 < ../mupdf-CVE-2017-17858.patch
+
   # remove bundled packages, we want our system libraries
   rm -rf 
thirdparty/{curl,freeglut,freetype,harfbuzz,jbig2dec,libjpeg,openjpeg,zlib}
 

Added: mupdf-1.12.0-security-roundup.patch
===
--- mupdf-1.12.0-security-roundup.patch (rev 0)
+++ mupdf-1.12.0-security-roundup.patch 2018-01-30 01:59:35 UTC (rev 287906)
@@ -0,0 +1,131 @@
+From 22339500c243e564eadf564b5ae2925e1caf44a9 Mon Sep 17 00:00:00 2001
+From: Sebastian Rasmussen 
+Date: Sun, 21 Jan 2018 21:08:07 +0100
+Subject: [PATCH] Bug 698889: Handle unterminated PDF arrays gracefully.
+
+Thanks to oss-fuzz for reporting this.
+---
+ source/pdf/pdf-parse.c | 3 +++
+ 1 file changed, 3 insertions(+)
+
+From 2a1611030030e18010a0ab1d69eda0359eb5f585 Mon Sep 17 00:00:00 2001
+From: Sebastian Rasmussen 
+Date: Wed, 13 Dec 2017 21:14:19 +0100
+Subject: [PATCH] Validate that /Size in trailer is in range.
+
+---
+ source/pdf/pdf-xref.c | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+From 5722ebc5823381ee57c525cbc0d4dc627009979d Mon Sep 17 00:00:00 2001
+From: Tor Andersson 
+Date: Fri, 1 Dec 2017 16:25:39 +0100
+Subject: [PATCH] Fix 698787: avoid using "system()" to copy files.
+
+---
+ platform/x11/x11_main.c | 35 ++-
+ 1 file changed, 30 insertions(+), 5 deletions(-)
+
+From d9bc8c6f7fb2e3ec7035bebaaee0edcf59287705 Mon Sep 17 00:00:00 2001
+From: Sebastian Rasmussen 
+Date: Mon, 22 Jan 2018 17:56:20 +0100
+Subject: [PATCH] Bug 698885: When parsing PDF version, make sure to initialize
+ buffer.
+
+Thanks to oss-fuzz for reporting this.
+---
+ source/pdf/pdf-xref.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/source/pdf/pdf-parse.c b/source/pdf/pdf-parse.c
+index ff741dc..7904ebd 100644
+--- a/source/pdf/pdf-parse.c
 b/source/pdf/pdf-parse.c
+@@ -401,6 +401,9 @@ pdf_parse_array(fz_context *ctx, pdf_document *doc, 
fz_stream *file, pdf_lexbuf
+ 
+   switch (tok)
+   {
++  case PDF_TOK_EOF:
++  fz_throw(ctx, FZ_ERROR_SYNTAX, "array not 
closed before end of file");
++
+   case PDF_TOK_CLOSE_ARRAY:
+   op = ary;
+   goto end;
+diff --git a/source/pdf/pdf-xref.c b/source/pdf/pdf-xref.c
+index f2ba5a5..392adf3 100644
+--- a/source/pdf/pdf-xref.c
 b/source/pdf/pdf-xref.c
+@@ -748,8 +748,8 @@ pdf_xref_size_from_old_trailer(fz_context *ctx, 
pdf_document *doc, pdf_lexbuf *b
+   trailer = pdf_parse_dict(ctx, doc, doc->file, buf);
+ 
+   size = pdf_to_int(ctx, pdf_dict_get(ctx, trailer, 
PDF_NAME_Size));
+-  if (!size)
+-  fz_throw(ctx, FZ_ERROR_GENERIC, "trailer missing Size 
entry");
++  if (size < 0 || size > PDF_MAX_OBJECT_NUMBER + 1)
++  fz_throw(ctx, 

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

2018-01-29 Thread Levente Polyak via arch-commits
Date: Tuesday, January 30, 2018 @ 02:00:00
  Author: anthraxx
Revision: 287907

archrelease: copy trunk to community-x86_64

Added:
  mupdf/repos/community-x86_64/0001-mupdf-openjpeg.patch
(from rev 287906, mupdf/trunk/0001-mupdf-openjpeg.patch)
  mupdf/repos/community-x86_64/PKGBUILD
(from rev 287906, mupdf/trunk/PKGBUILD)
  mupdf/repos/community-x86_64/mupdf-1.12.0-security-roundup.patch
(from rev 287906, mupdf/trunk/mupdf-1.12.0-security-roundup.patch)
  mupdf/repos/community-x86_64/mupdf-CVE-2017-17858.patch
(from rev 287906, mupdf/trunk/mupdf-CVE-2017-17858.patch)
  mupdf/repos/community-x86_64/mupdf.desktop
(from rev 287906, mupdf/trunk/mupdf.desktop)
  mupdf/repos/community-x86_64/mupdf.xpm
(from rev 287906, mupdf/trunk/mupdf.xpm)
Deleted:
  mupdf/repos/community-x86_64/0001-mupdf-openjpeg.patch
  mupdf/repos/community-x86_64/PKGBUILD
  mupdf/repos/community-x86_64/mupdf.desktop
  mupdf/repos/community-x86_64/mupdf.xpm

-+
 0001-mupdf-openjpeg.patch   |   70 -
 PKGBUILD|  258 +-
 mupdf-1.12.0-security-roundup.patch |  131 +
 mupdf-CVE-2017-17858.patch  |  101 +
 mupdf.desktop   |   30 +--
 5 files changed, 415 insertions(+), 175 deletions(-)

Deleted: 0001-mupdf-openjpeg.patch
===
--- 0001-mupdf-openjpeg.patch   2018-01-30 01:59:35 UTC (rev 287906)
+++ 0001-mupdf-openjpeg.patch   2018-01-30 02:00:00 UTC (rev 287907)
@@ -1,35 +0,0 @@
-diff --git a/source/fitz/load-jpx.c b/source/fitz/load-jpx.c
-index 65699ba..5f36221 100644
 a/source/fitz/load-jpx.c
-+++ b/source/fitz/load-jpx.c
-@@ -445,14 +445,18 @@ fz_load_jpx_info(fz_context *ctx, const unsigned char 
*data, size_t size, int *w
- 
- #else /* HAVE_LURATECH */
- 
-+#ifdef __cplusplus
-+extern "C"
-+{
- #define OPJ_STATIC
- #define OPJ_HAVE_INTTYPES_H
- #if !defined(_MSC_VER) || _MSC_VER >= 1600
- #define OPJ_HAVE_STDINT_H
- #endif
-+#endif
- #define USE_JPIP
- 
--#include 
-+#include 
- 
- struct fz_jpxd_s
- {
-@@ -930,6 +934,10 @@ fz_load_jpx_info(fz_context *ctx, const unsigned char 
*data, size_t size, int *w
-   *yresp = state.yres;
- }
- 
-+#ifdef __cplusplus
-+}
-+#endif
-+
- #endif /* HAVE_LURATECH */
- 
- #else /* FZ_ENABLE_JPX */

Copied: mupdf/repos/community-x86_64/0001-mupdf-openjpeg.patch (from rev 
287906, mupdf/trunk/0001-mupdf-openjpeg.patch)
===
--- 0001-mupdf-openjpeg.patch   (rev 0)
+++ 0001-mupdf-openjpeg.patch   2018-01-30 02:00:00 UTC (rev 287907)
@@ -0,0 +1,35 @@
+diff --git a/source/fitz/load-jpx.c b/source/fitz/load-jpx.c
+index 65699ba..5f36221 100644
+--- a/source/fitz/load-jpx.c
 b/source/fitz/load-jpx.c
+@@ -445,14 +445,18 @@ fz_load_jpx_info(fz_context *ctx, const unsigned char 
*data, size_t size, int *w
+ 
+ #else /* HAVE_LURATECH */
+ 
++#ifdef __cplusplus
++extern "C"
++{
+ #define OPJ_STATIC
+ #define OPJ_HAVE_INTTYPES_H
+ #if !defined(_MSC_VER) || _MSC_VER >= 1600
+ #define OPJ_HAVE_STDINT_H
+ #endif
++#endif
+ #define USE_JPIP
+ 
+-#include 
++#include 
+ 
+ struct fz_jpxd_s
+ {
+@@ -930,6 +934,10 @@ fz_load_jpx_info(fz_context *ctx, const unsigned char 
*data, size_t size, int *w
+   *yresp = state.yres;
+ }
+ 
++#ifdef __cplusplus
++}
++#endif
++
+ #endif /* HAVE_LURATECH */
+ 
+ #else /* FZ_ENABLE_JPX */

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 01:59:35 UTC (rev 287906)
+++ PKGBUILD2018-01-30 02:00:00 UTC (rev 287907)
@@ -1,125 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Brad Fanella 
-# Contributor: Stefan Husmann 
-# Contributor: Pierre-Paul Paquin 
-# Contributor: xduugu
-
-pkgbase=mupdf
-pkgname=(libmupdf mupdf mupdf-gl mupdf-tools)
-pkgver=1.12.0
-pkgrel=1
-_openjpeg_version=2.3
-pkgdesc='Lightweight PDF and XPS viewer'
-arch=('x86_64')
-url='http://mupdf.com'
-license=('AGPL3')
-makedepends=('curl' 'desktop-file-utils' 'freetype2' 'freeglut' 'glu' 
'harfbuzz'
- 'jbig2dec' 'libjpeg' 'mesa-libgl' 'openjpeg2' 'libxext')
-# we need static libs for zathura-pdf-mupdf
-options=('staticlibs')
-source=("https://mupdf.com/downloads/mupdf-${pkgver/_/}-source.tar.xz;
-'0001-mupdf-openjpeg.patch'
-'mupdf.desktop'
-'mupdf.xpm')
-sha256sums=('577b3820c6b23d319be91e0e06080263598aa0662d9a7c50af500eb6f003322d'
-'e4be458dabc577e687c3abfa1ae03bd62e8727cfa24f25b8eb23384263486605'
-'ccff66979249bd4ab4ba8918660f194eb90eb0ae231b16e36a6cecdcf471883f'
-'a435f44425f5432c074dee745d8fbaeb879038ec1f1ec64f037c74662f09aca8')
-
-prepare() {
-  cd 

[arch-commits] Commit in zathura-pdf-mupdf/trunk (PKGBUILD)

2018-01-29 Thread Levente Polyak via arch-commits
Date: Tuesday, January 30, 2018 @ 02:23:43
  Author: anthraxx
Revision: 287908

upgpkg: zathura-pdf-mupdf 0.3.2-2 (security update)

- CVE-2017-17858 and friends

Modified:
  zathura-pdf-mupdf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 02:00:00 UTC (rev 287907)
+++ PKGBUILD2018-01-30 02:23:43 UTC (rev 287908)
@@ -6,7 +6,7 @@
 
 pkgname=zathura-pdf-mupdf
 pkgver=0.3.2
-pkgrel=1
+pkgrel=2
 
 pkgdesc="PDF support for Zathura (MuPDF backend) (Supports PDF, ePub, and 
OpenXPS)"
 url="https://pwmt.org/projects/zathura-pdf-mupdf/;


[arch-commits] Commit in zathura-pdf-mupdf/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-01-29 Thread Levente Polyak via arch-commits
Date: Tuesday, January 30, 2018 @ 02:24:03
  Author: anthraxx
Revision: 287909

archrelease: copy trunk to community-x86_64

Added:
  zathura-pdf-mupdf/repos/community-x86_64/PKGBUILD
(from rev 287908, zathura-pdf-mupdf/trunk/PKGBUILD)
Deleted:
  zathura-pdf-mupdf/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 02:23:43 UTC (rev 287908)
+++ PKGBUILD2018-01-30 02:24:03 UTC (rev 287909)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Johannes Löthberg 
-# Contributor: Daniel Wallace 
-# Contributor: Sergej Pupykin 
-# Contributor: Moritz Lipp 
-
-pkgname=zathura-pdf-mupdf
-pkgver=0.3.2
-pkgrel=1
-
-pkgdesc="PDF support for Zathura (MuPDF backend) (Supports PDF, ePub, and 
OpenXPS)"
-url="https://pwmt.org/projects/zathura-pdf-mupdf/;
-arch=('x86_64')
-license=('zlib')
-
-conflicts=('zathura-pdf-poppler')
-
-depends=('zathura' 'jbig2dec' 'openjpeg2' 'cairo' 'desktop-file-utils' 
'openssl')
-makedepends=('libmupdf')
-
-source=(https://pwmt.org/projects/zathura/plugins/download/zathura-pdf-mupdf-$pkgver.tar.gz)
-
-sha1sums=('b33c7ec1ac3cf2ee575b7cc1eae611f00b9ba8d7')
-
-build() {
-  make -C zathura-pdf-mupdf-$pkgver MUPDF_LIB="-lmupdf -lmupdfthird"
-}
-
-package(){
-  make -C zathura-pdf-mupdf-$pkgver DESTDIR="$pkgdir" install
-  install -Dm0644 zathura-pdf-mupdf-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: zathura-pdf-mupdf/repos/community-x86_64/PKGBUILD (from rev 287908, 
zathura-pdf-mupdf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-30 02:24:03 UTC (rev 287909)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Johannes Löthberg 
+# Contributor: Daniel Wallace 
+# Contributor: Sergej Pupykin 
+# Contributor: Moritz Lipp 
+
+pkgname=zathura-pdf-mupdf
+pkgver=0.3.2
+pkgrel=2
+
+pkgdesc="PDF support for Zathura (MuPDF backend) (Supports PDF, ePub, and 
OpenXPS)"
+url="https://pwmt.org/projects/zathura-pdf-mupdf/;
+arch=('x86_64')
+license=('zlib')
+
+conflicts=('zathura-pdf-poppler')
+
+depends=('zathura' 'jbig2dec' 'openjpeg2' 'cairo' 'desktop-file-utils' 
'openssl')
+makedepends=('libmupdf')
+
+source=(https://pwmt.org/projects/zathura/plugins/download/zathura-pdf-mupdf-$pkgver.tar.gz)
+
+sha1sums=('b33c7ec1ac3cf2ee575b7cc1eae611f00b9ba8d7')
+
+build() {
+  make -C zathura-pdf-mupdf-$pkgver MUPDF_LIB="-lmupdf -lmupdfthird"
+}
+
+package(){
+  make -C zathura-pdf-mupdf-$pkgver DESTDIR="$pkgdir" install
+  install -Dm0644 zathura-pdf-mupdf-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2018-01-29 Thread Eli Schwartz via arch-commits
Date: Tuesday, January 30, 2018 @ 04:23:35
  Author: eschwartz
Revision: 287927

upgpkg: diffoscope 90-2

Fix manpage generation.
Depend on xxd rather than the vim implementation specifically.

Modified:
  diffoscope/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 04:23:31 UTC (rev 287926)
+++ PKGBUILD2018-01-30 04:23:35 UTC (rev 287927)
@@ -2,7 +2,7 @@
 
 pkgname=diffoscope
 pkgver=90
-pkgrel=1
+pkgrel=2
 pkgdesc='Tool for in-depth comparison of files, archives, and directories'
 url='https://diffoscope.org/'
 arch=('x86_64')
@@ -47,9 +47,10 @@
   'unzip: zip utilities support'
   'gzip: gzip utilities support'
   'tar: tar utilities support'
-  'vim: Vi IMproved (xxd) utilities support'
+  'xxd: xxd utilities support'
   'xz: XZ and LZMA utilities support'
 )
+makedepends=('help2man' 'python-docutils')
 checkdepends=(
   'python-pytest' 'python-jsbeautifier' 'acl' 'binutils' 'bzip2' 'cdrtools' 
'cpio' 'diffutils' 'e2fsprogs' 'enjarify' 'imagemagick'
   'java-environment>=8' 'fontforge' 'gettext' 'ghc' 'gnupg' 'mono' 
'mono-tools' 'poppler' 'sqlite' 'squashfs-tools'


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

2018-01-29 Thread Eli Schwartz via arch-commits
Date: Tuesday, January 30, 2018 @ 04:23:57
  Author: eschwartz
Revision: 287928

archrelease: copy trunk to community-x86_64

Added:
  diffoscope/repos/community-x86_64/PKGBUILD
(from rev 287927, diffoscope/trunk/PKGBUILD)
Deleted:
  diffoscope/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 04:23:35 UTC (rev 287927)
+++ PKGBUILD2018-01-30 04:23:57 UTC (rev 287928)
@@ -1,85 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=diffoscope
-pkgver=90
-pkgrel=1
-pkgdesc='Tool for in-depth comparison of files, archives, and directories'
-url='https://diffoscope.org/'
-arch=('x86_64')
-license=('GPL3')
-depends=('python-magic' 'python-libarchive-c' 'python-setuptools' 
'python-distro' 'python-defusedxml')
-optdepends=(
-  'acl: access control list utilities support'
-  'binutils: binary utilities support'
-  'binwalk: binwalk support'
-  'bzip2: bzip2 utilities support'
-  'cdrtools: ISO utilities support'
-  'colord: ICC profiles support'
-  'cpio: cpio archive support'
-  'diffutils: diff utilities support'
-  'docx2txt: docx comparing support'
-  'dtc: device tree comparing support'
-  'e2fsprogs: Ext2/3/4 filesystem utilities support'
-  'enjarify: Android dex file support'
-  'imagemagick: ImageMagick identify support'
-  'fpc: Free Pascal utilities support'
-  'java-environment: java utilities support'
-  'libcaca: image compare support'
-  'llvm: LLVM bitcode files support'
-  'odt2txt: odt comparing support'
-  'fontforge: bitmap font utilities support'
-  'gettext: GNU internationalization utilities support'
-  'ghc: haskell utilities support'
-  'giflib: gifbuild utilities support'
-  'gnupg: GNU privacy guard support'
-  'mono: mono support'
-  'openssh: OpenSSH key comparing support'
-  'poppler: PDF utilities support'
-  'r: R language support'
-  'sqlite: SQLite support'
-  'squashfs-tools: squashfs filesystem support'
-  #'python-guestfs: guestfs filesystem support'
-  'python-argcomplete: completion support'
-  'python-jsbeautifier: javascript beautifier support'
-  'python-progressbar: show progressbar support'
-  'tcpdump: pcap matching support'
-  'tlsh: fuzzy matching supprt'
-  'unzip: zip utilities support'
-  'gzip: gzip utilities support'
-  'tar: tar utilities support'
-  'vim: Vi IMproved (xxd) utilities support'
-  'xz: XZ and LZMA utilities support'
-)
-checkdepends=(
-  'python-pytest' 'python-jsbeautifier' 'acl' 'binutils' 'bzip2' 'cdrtools' 
'cpio' 'diffutils' 'e2fsprogs' 'enjarify' 'imagemagick'
-  'java-environment>=8' 'fontforge' 'gettext' 'ghc' 'gnupg' 'mono' 
'mono-tools' 'poppler' 'sqlite' 'squashfs-tools'
-  'tlsh' 'unzip' 'gzip' 'tar' 'tcpdump' 'vim' 'xz' 'llvm' 'colord' 'fpc' 
'openssh' 'odt2txt' 'docx2txt' 'r' 'dtc' 'giflib'
-  'python-progressbar' 'binwalk' 'python-argcomplete')
-source=(${pkgname}-${pkgver}.tar.xz::https://anonscm.debian.org/cgit/reproducible/${pkgname}.git/snapshot/${pkgname}-${pkgver}.tar.xz)
-sha512sums=('189123539db21c68cd3ed4100ece7aff55e8824c51fbc5632e23641c7bb025f406c8bb207f364c34900162a60959f649dceae0037f1487c98958ff6fdb511c75')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  sed '/python-magic/d' -i setup.py
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python setup.py build
-  make -C doc
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  PYTHONPATH=".:${PYTHONPATH}" py.test \
--k 'not test_rlib and not test_progress and not test_ppu and not test_elf 
and not test_icc'
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python setup.py install --skip-build -O1 --root="${pkgdir}"
-  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 doc/diffoscope.1 -t "${pkgdir}/usr/share/man/man1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: diffoscope/repos/community-x86_64/PKGBUILD (from rev 287927, 
diffoscope/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-30 04:23:57 UTC (rev 287928)
@@ -0,0 +1,86 @@
+# Maintainer: Levente Polyak 
+
+pkgname=diffoscope
+pkgver=90
+pkgrel=2
+pkgdesc='Tool for in-depth comparison of files, archives, and directories'
+url='https://diffoscope.org/'
+arch=('x86_64')
+license=('GPL3')
+depends=('python-magic' 'python-libarchive-c' 'python-setuptools' 
'python-distro' 'python-defusedxml')
+optdepends=(
+  'acl: access control list utilities support'
+  'binutils: binary utilities support'
+  'binwalk: binwalk support'
+  'bzip2: bzip2 utilities support'
+  'cdrtools: ISO utilities support'
+  'colord: ICC profiles support'
+  'cpio: cpio archive support'
+  'diffutils: diff utilities support'
+  'docx2txt: docx comparing support'
+  'dtc: device tree comparing support'
+  'e2fsprogs: Ext2/3/4 

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

2018-01-29 Thread Balló György via arch-commits
Date: Monday, January 29, 2018 @ 14:08:21
  Author: bgyorgy
Revision: 287772

archrelease: copy trunk to community-x86_64

Added:
  geany/repos/community-x86_64/PKGBUILD
(from rev 287771, geany/trunk/PKGBUILD)
Deleted:
  geany/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-29 14:08:01 UTC (rev 287771)
+++ PKGBUILD2018-01-29 14:08:21 UTC (rev 287772)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Angel Velasquez 
-# Contributor: Ionut Biru  
-# Contributor: William Rea 
-# Contributor: Allan McRae 
-
-pkgname=geany
-pkgver=1.32.0
-pkgrel=1
-pkgdesc='Fast and lightweight IDE'
-arch=('x86_64')
-url='https://www.geany.org/'
-license=('GPL')
-depends=('desktop-file-utils' 'gtk2' 'hicolor-icon-theme')
-makedepends=('intltool' 'perl-xml-parser')
-optdepends=('geany-plugins: additional functionality'
-'vte: terminal support'
-'python2: Python 2 support')
-source=("https://download.geany.org/$pkgname-${pkgver/.0}.tar.bz2;)
-sha256sums=('8b7be10b95d0614eb07f845ba2280f7c026eacd5739d8fac4d5d26606f8c3c2d')
-
-build() {
-  cd "$pkgname-${pkgver/.0}"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  make -C "$pkgname-${pkgver/.0}" DESTDIR="$pkgdir" install
-}
-
-# getver: geany.org
-# vim: ts=2 sw=2 et:

Copied: geany/repos/community-x86_64/PKGBUILD (from rev 287771, 
geany/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-29 14:08:21 UTC (rev 287772)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Angel Velasquez 
+# Contributor: Ionut Biru  
+# Contributor: William Rea 
+# Contributor: Allan McRae 
+
+pkgname=geany
+pkgver=1.32.0
+pkgrel=2
+pkgdesc='Fast and lightweight IDE'
+arch=('x86_64')
+url='https://www.geany.org/'
+license=('GPL')
+depends=('gtk3')
+makedepends=('intltool')
+optdepends=('geany-plugins: additional functionality'
+'vte3: embedded terminal support')
+source=("https://download.geany.org/$pkgname-${pkgver/.0}.tar.bz2;)
+sha256sums=('8b7be10b95d0614eb07f845ba2280f7c026eacd5739d8fac4d5d26606f8c3c2d')
+
+build() {
+  cd "$pkgname-${pkgver/.0}"
+
+  ./configure --prefix=/usr --enable-gtk3
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  make -C "$pkgname-${pkgver/.0}" DESTDIR="$pkgdir" install
+}
+
+# getver: geany.org
+# vim: ts=2 sw=2 et:


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

2018-01-29 Thread Balló György via arch-commits
Date: Monday, January 29, 2018 @ 14:08:01
  Author: bgyorgy
Revision: 287771

upgpkg: geany 1.32.0-2

Build with gtk3

Modified:
  geany/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 14:01:06 UTC (rev 287770)
+++ PKGBUILD2018-01-29 14:08:01 UTC (rev 287771)
@@ -7,16 +7,15 @@
 
 pkgname=geany
 pkgver=1.32.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Fast and lightweight IDE'
 arch=('x86_64')
 url='https://www.geany.org/'
 license=('GPL')
-depends=('desktop-file-utils' 'gtk2' 'hicolor-icon-theme')
-makedepends=('intltool' 'perl-xml-parser')
+depends=('gtk3')
+makedepends=('intltool')
 optdepends=('geany-plugins: additional functionality'
-'vte: terminal support'
-'python2: Python 2 support')
+'vte3: embedded terminal support')
 source=("https://download.geany.org/$pkgname-${pkgver/.0}.tar.bz2;)
 sha256sums=('8b7be10b95d0614eb07f845ba2280f7c026eacd5739d8fac4d5d26606f8c3c2d')
 
@@ -23,7 +22,8 @@
 build() {
   cd "$pkgname-${pkgver/.0}"
 
-  ./configure --prefix=/usr
+  ./configure --prefix=/usr --enable-gtk3
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
 


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

2018-01-29 Thread Balló György via arch-commits
Date: Monday, January 29, 2018 @ 14:10:42
  Author: bgyorgy
Revision: 287773

upgpkg: geany-plugins 1.32-4

Build with gtk3, disable incompatible plugins: debugger, geanypy, multiterm, 
scope

Modified:
  geany-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 14:08:21 UTC (rev 287772)
+++ PKGBUILD2018-01-29 14:10:42 UTC (rev 287773)
@@ -6,14 +6,13 @@
 
 pkgname=geany-plugins
 pkgver=1.32
-pkgrel=3
+pkgrel=4
 pkgdesc='Plugins for Geany'
 arch=('x86_64')
 url='https://plugins.geany.org/'
 license=('GPL')
-depends=("geany>=$pkgver" 'ctpl' 'desktop-file-utils' 'gpgme' 'gtkspell' 
'libgit2' 'lua51' 'pygtk' 'python2' 'vte')
-makedepends=('cppcheck' 'gdb' 'intltool' 'libgit2' 'vala')
-optdepends=('hspell: hebrew spell checker')
+depends=("geany>=$pkgver" 'ctpl' 'gpgme' 'gtkspell3' 'libgit2' 'lua51')
+makedepends=('cppcheck' 'intltool')
 source=("https://plugins.geany.org/$pkgname/$pkgname-$pkgver.tar.bz2;
 enchant-2.patch)
 sha256sums=('78d4b394fe22fda298e80a22616421efdd4a419eb227b99eadca73f65abac117'


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

2018-01-29 Thread Balló György via arch-commits
Date: Monday, January 29, 2018 @ 14:10:48
  Author: bgyorgy
Revision: 287774

archrelease: copy trunk to community-x86_64

Added:
  geany-plugins/repos/community-x86_64/PKGBUILD
(from rev 287773, geany-plugins/trunk/PKGBUILD)
  geany-plugins/repos/community-x86_64/enchant-2.patch
(from rev 287773, geany-plugins/trunk/enchant-2.patch)
Deleted:
  geany-plugins/repos/community-x86_64/PKGBUILD
  geany-plugins/repos/community-x86_64/enchant-2.patch

-+
 PKGBUILD|   87 ++---
 enchant-2.patch |  104 +++---
 2 files changed, 95 insertions(+), 96 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-29 14:10:42 UTC (rev 287773)
+++ PKGBUILD2018-01-29 14:10:48 UTC (rev 287774)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Angel 'angvp' Velasquez 
-# Contributor: Gerardo Exequiel Pozzi 
-# Contributor: Patrick Melo 
-
-pkgname=geany-plugins
-pkgver=1.32
-pkgrel=3
-pkgdesc='Plugins for Geany'
-arch=('x86_64')
-url='https://plugins.geany.org/'
-license=('GPL')
-depends=("geany>=$pkgver" 'ctpl' 'desktop-file-utils' 'gpgme' 'gtkspell' 
'libgit2' 'lua51' 'pygtk' 'python2' 'vte')
-makedepends=('cppcheck' 'gdb' 'intltool' 'libgit2' 'vala')
-optdepends=('hspell: hebrew spell checker')
-source=("https://plugins.geany.org/$pkgname/$pkgname-$pkgver.tar.bz2;
-enchant-2.patch)
-sha256sums=('78d4b394fe22fda298e80a22616421efdd4a419eb227b99eadca73f65abac117'
-'094a613b600e42de9b23c3586abf25f3b0695eb62ca2d341e82c0a5633fefeb8')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1 -i ../enchant-2.patch
-  autoreconf -fi
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  # Looking forward to Python 3 being supported
-  export PYTHON=/usr/bin/python2
-
-  ./configure --prefix=/usr --libexecdir=/usr/lib
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
-}
-
-# getver: plugins.geany.org/downloads.html
-# vim: ts=2 sw=2 et:

Copied: geany-plugins/repos/community-x86_64/PKGBUILD (from rev 287773, 
geany-plugins/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-29 14:10:48 UTC (rev 287774)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Angel 'angvp' Velasquez 
+# Contributor: Gerardo Exequiel Pozzi 
+# Contributor: Patrick Melo 
+
+pkgname=geany-plugins
+pkgver=1.32
+pkgrel=4
+pkgdesc='Plugins for Geany'
+arch=('x86_64')
+url='https://plugins.geany.org/'
+license=('GPL')
+depends=("geany>=$pkgver" 'ctpl' 'gpgme' 'gtkspell3' 'libgit2' 'lua51')
+makedepends=('cppcheck' 'intltool')
+source=("https://plugins.geany.org/$pkgname/$pkgname-$pkgver.tar.bz2;
+enchant-2.patch)
+sha256sums=('78d4b394fe22fda298e80a22616421efdd4a419eb227b99eadca73f65abac117'
+'094a613b600e42de9b23c3586abf25f3b0695eb62ca2d341e82c0a5633fefeb8')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../enchant-2.patch
+  autoreconf -fi
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  # Looking forward to Python 3 being supported
+  export PYTHON=/usr/bin/python2
+
+  ./configure --prefix=/usr --libexecdir=/usr/lib
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+}
+
+# getver: plugins.geany.org/downloads.html
+# vim: ts=2 sw=2 et:

Deleted: enchant-2.patch
===
--- enchant-2.patch 2018-01-29 14:10:42 UTC (rev 287773)
+++ enchant-2.patch 2018-01-29 14:10:48 UTC (rev 287774)
@@ -1,52 +0,0 @@
 geany-plugins-1.32/spellcheck/src/speller.c.orig   2017-10-17 
04:58:25.0 +
-+++ geany-plugins-1.32/spellcheck/src/speller.c2017-11-23 
09:20:27.280196692 +
-@@ -470,7 +470,7 @@
-   g_return_if_fail(sc_speller_dict != NULL);
-   g_return_if_fail(word != NULL);
- 
--  enchant_dict_add_to_pwl(sc_speller_dict, word, -1);
-+  enchant_dict_add(sc_speller_dict, word, -1);
- }
- 
- gboolean sc_speller_dict_check(const gchar *word)
-@@ -518,24 +518,6 @@
-   if (sc_speller_dict != NULL)
-   enchant_broker_free_dict(sc_speller_broker, sc_speller_dict);
- 
--#if HAVE_ENCHANT_1_5
--  {
--  const gchar *old_path;
--  gchar *new_path;
--
--  /* add custom dictionary path for myspell (primarily used on 
Windows) */
--  old_path = enchant_broker_get_param(sc_speller_broker, 
"enchant.myspell.dictionary.path");
--  if (old_path != NULL)
-- 

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

2018-01-29 Thread Sergej Pupykin via arch-commits
Date: Monday, January 29, 2018 @ 14:46:17
  Author: spupykin
Revision: 287776

https url

Modified:
  netwatch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 14:41:27 UTC (rev 287775)
+++ PKGBUILD2018-01-29 14:46:17 UTC (rev 287776)
@@ -10,8 +10,8 @@
 license=('GPL')
 options=(zipman)
 depends=(ncurses)
-source=(http://www.slctech.org/~mackay/NETWATCH/netwatch-${pkgver/_/-}.tgz)
-md5sums=('6147b0235207912ca941a4e45c9cee14')
+source=(https://www.slctech.org/~mackay/NETWATCH/netwatch-${pkgver/_/-}.tgz)
+sha256sums=('9374fa55a41a4addd8897f1ff10a3453c840bf28534f500e8661a614231cc161')
 
 prepare() {
   cd "$srcdir/$pkgname-${pkgver/_/-}"


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

2018-01-29 Thread Jonathan Steel via arch-commits
Date: Monday, January 29, 2018 @ 15:12:50
  Author: jsteel
Revision: 287781

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-29 15:12:32 UTC (rev 287780)
+++ PKGBUILD2018-01-29 15:12:50 UTC (rev 287781)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=python-boto3
-pkgver=1.5.21
-pkgrel=1
-pkgdesc='The AWS SDK for Python'
-arch=('any')
-license=('Apache')
-url='https://github.com/boto/boto3'
-depends=('python-botocore' 'python-jmespath' 'python-s3transfer')
-makedepends=('python-setuptools')
-# checkdepends=('python-coverage' 'python-nose' 'python-mock')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/boto/boto3/archive/$pkgver.tar.gz;)
-sha512sums=('9717b883a40fc37294ef5ae3951f5fd48bcd8f7e011a17cef719b81aca3a16e8280cd8243ea65181d99fc03792316bbd28337537608b5d8d33a13a60284f3ba1')
-
-build() {
-  cd "$srcdir"/boto3-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/boto3-$pkgver
-  # scripts/ci/run-tests
-}
-
-package() {
-  cd boto3-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-boto3/repos/community-any/PKGBUILD (from rev 287780, 
python-boto3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-29 15:12:50 UTC (rev 287781)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jonathan Steel 
+# Contributor: Felix Yan 
+
+pkgname=python-boto3
+pkgver=1.5.22
+pkgrel=1
+pkgdesc='The AWS SDK for Python'
+arch=('any')
+license=('Apache')
+url='https://github.com/boto/boto3'
+depends=('python-botocore' 'python-jmespath' 'python-s3transfer')
+makedepends=('python-setuptools')
+# checkdepends=('python-coverage' 'python-nose' 'python-mock')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/boto/boto3/archive/$pkgver.tar.gz;)
+sha512sums=('b0812024534d9ce49443500d79a8aa1ec39207a2e896a8bb431c9e879385c1ddd8dc879513369028461dbd7a371e3db4e643cb5e25b6ab30558a5d4ecb0698ad')
+
+build() {
+  cd "$srcdir"/boto3-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/boto3-$pkgver
+  # scripts/ci/run-tests
+}
+
+package() {
+  cd boto3-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2018-01-29 Thread Jonathan Steel via arch-commits
Date: Monday, January 29, 2018 @ 15:12:32
  Author: jsteel
Revision: 287780

upgpkg: python-boto3 1.5.22-1

Modified:
  python-boto3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 14:50:40 UTC (rev 287779)
+++ PKGBUILD2018-01-29 15:12:32 UTC (rev 287780)
@@ -1,8 +1,9 @@
 # $Id$
-# Maintainer: Felix Yan 
+# Maintainer: Jonathan Steel 
+# Contributor: Felix Yan 
 
 pkgname=python-boto3
-pkgver=1.5.21
+pkgver=1.5.22
 pkgrel=1
 pkgdesc='The AWS SDK for Python'
 arch=('any')
@@ -12,7 +13,7 @@
 makedepends=('python-setuptools')
 # checkdepends=('python-coverage' 'python-nose' 'python-mock')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/boto/boto3/archive/$pkgver.tar.gz;)
-sha512sums=('9717b883a40fc37294ef5ae3951f5fd48bcd8f7e011a17cef719b81aca3a16e8280cd8243ea65181d99fc03792316bbd28337537608b5d8d33a13a60284f3ba1')
+sha512sums=('b0812024534d9ce49443500d79a8aa1ec39207a2e896a8bb431c9e879385c1ddd8dc879513369028461dbd7a371e3db4e643cb5e25b6ab30558a5d4ecb0698ad')
 
 build() {
   cd "$srcdir"/boto3-$pkgver


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

2018-01-29 Thread Jonathan Steel via arch-commits
Date: Monday, January 29, 2018 @ 15:15:58
  Author: jsteel
Revision: 287783

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-29 15:15:48 UTC (rev 287782)
+++ PKGBUILD2018-01-29 15:15:58 UTC (rev 287783)
@@ -1,30 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Ainola
-# Contributor: Chris Fordham
-
-pkgname=python-botocore
-pkgver=1.8.35
-pkgrel=1
-pkgdesc='A low-level interface to a growing number of Amazon Web Services'
-arch=('any')
-url="https://github.com/boto/botocore;
-license=('Apache')
-depends=('python-dateutil' 'python-jmespath' 'python-docutils')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-sha512sums=('beb348ce1f478c1c6860374008833699bb15bdef2b558f630f6bad2cedd7163c17912a26384f62974cbffe1bbdc553eb5ba5dfbbb3017175943ae1a4564bf9b7')
-
-build() {
-  cd botocore-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd botocore-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-botocore/repos/community-any/PKGBUILD (from rev 287782, 
python-botocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-29 15:15:58 UTC (rev 287783)
@@ -0,0 +1,30 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Ainola
+# Contributor: Chris Fordham
+
+pkgname=python-botocore
+pkgver=1.8.36
+pkgrel=1
+pkgdesc='A low-level interface to a growing number of Amazon Web Services'
+arch=('any')
+url="https://github.com/boto/botocore;
+license=('Apache')
+depends=('python-dateutil' 'python-jmespath' 'python-docutils')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('2ff93b63d8a66ba57da95b2847cc7bed')
+
+build() {
+  cd botocore-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd botocore-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2018-01-29 Thread Jonathan Steel via arch-commits
Date: Monday, January 29, 2018 @ 15:18:10
  Author: jsteel
Revision: 287785

archrelease: copy trunk to community-any

Added:
  aws-cli/repos/community-any/PKGBUILD
(from rev 287784, aws-cli/trunk/PKGBUILD)
Deleted:
  aws-cli/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-29 15:17:59 UTC (rev 287784)
+++ PKGBUILD2018-01-29 15:18:10 UTC (rev 287785)
@@ -1,34 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Alper KANAT 
-
-pkgname=aws-cli
-pkgver=1.14.30
-pkgrel=1
-pkgdesc='Universal Command Line Interface for Amazon Web Services'
-arch=('any')
-url="https://github.com/aws/aws-cli;
-license=('Apache')
-depends=('python-botocore' 'python-dateutil' 'python-jmespath'
- 'python-colorama' 'python-docutils' 'python-rsa'
- 'python-s3transfer' 'python-yaml')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('18abdcfcb41b2c345ca9450ff4379651')
-
-build() {
-  cd $pkgname-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
-
-  rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer}
-}

Copied: aws-cli/repos/community-any/PKGBUILD (from rev 287784, 
aws-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-29 15:18:10 UTC (rev 287785)
@@ -0,0 +1,34 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Alper KANAT 
+
+pkgname=aws-cli
+pkgver=1.14.32
+pkgrel=1
+pkgdesc='Universal Command Line Interface for Amazon Web Services'
+arch=('any')
+url="https://github.com/aws/aws-cli;
+license=('Apache')
+depends=('python-botocore' 'python-dateutil' 'python-jmespath'
+ 'python-colorama' 'python-docutils' 'python-rsa'
+ 'python-s3transfer' 'python-yaml')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('b785d40234a759fd512ca01433ab7ffa')
+
+build() {
+  cd $pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
+
+  rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer}
+}


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

2018-01-29 Thread Andreas Radke via arch-commits
Date: Monday, January 29, 2018 @ 15:17:39
  Author: andyrtr
Revision: 315565

upgpkg: libevdev 1.5.8-1

upstream update 1.5.8

Modified:
  libevdev/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 13:53:18 UTC (rev 315564)
+++ PKGBUILD2018-01-29 15:17:39 UTC (rev 315565)
@@ -2,7 +2,7 @@
 # Maintainer: Andreas Radke 
 
 pkgname=libevdev
-pkgver=1.5.7
+pkgver=1.5.8
 pkgrel=1
 pkgdesc="Wrapper library for evdev devices"
 arch=(x86_64)
@@ -12,7 +12,7 @@
 makedepends=('python2' 'check' 'valgrind' 'doxygen')
 #checkdepends=('kmod')
 
source=(https://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
-sha512sums=('53adf6c92ec61f0635b643a88d8762a18f7cd3088d23ac95831be32cc7150ebd19f20265b90f6a1f9a63420c2f8968c2d17d8dc4892c0e90f9dfcce82c622df1'
+sha512sums=('e9485d8c6b48ebf762b32b003bc6b761c548024ad3bc34a0793485b53383746881fcc9b206a078d571937291e519d9822e50c5d8816778d347094691b65ec3fa'
 'SKIP')
 validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
 


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

2018-01-29 Thread Andreas Radke via arch-commits
Date: Monday, January 29, 2018 @ 15:17:57
  Author: andyrtr
Revision: 315566

archrelease: copy trunk to testing-x86_64

Added:
  libevdev/repos/testing-x86_64/
  libevdev/repos/testing-x86_64/PKGBUILD
(from rev 315565, libevdev/trunk/PKGBUILD)

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

Copied: libevdev/repos/testing-x86_64/PKGBUILD (from rev 315565, 
libevdev/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-01-29 15:17:57 UTC (rev 315566)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Andreas Radke 
+
+pkgname=libevdev
+pkgver=1.5.8
+pkgrel=1
+pkgdesc="Wrapper library for evdev devices"
+arch=(x86_64)
+url="http://www.freedesktop.org/wiki/Software/libevdev/;
+license=(custom:X11)
+depends=('glibc')
+makedepends=('python2' 'check' 'valgrind' 'doxygen')
+#checkdepends=('kmod')
+source=(https://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+sha512sums=('e9485d8c6b48ebf762b32b003bc6b761c548024ad3bc34a0793485b53383746881fcc9b206a078d571937291e519d9822e50c5d8816778d347094691b65ec3fa'
+'SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+--disable-static
+  make
+}
+check() {
+  cd $pkgname-$pkgver
+  # test suite requires root access and needs to load uinput module
+  # that's not possible in our chroot
+  #modprobe uinput
+  make check || /bin/true
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}


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

2018-01-29 Thread Jonathan Steel via arch-commits
Date: Monday, January 29, 2018 @ 15:17:59
  Author: jsteel
Revision: 287784

upgpkg: aws-cli 1.14.32-1

Modified:
  aws-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 15:15:58 UTC (rev 287783)
+++ PKGBUILD2018-01-29 15:17:59 UTC (rev 287784)
@@ -3,7 +3,7 @@
 # Contributor: Alper KANAT 
 
 pkgname=aws-cli
-pkgver=1.14.30
+pkgver=1.14.32
 pkgrel=1
 pkgdesc='Universal Command Line Interface for Amazon Web Services'
 arch=('any')
@@ -14,7 +14,7 @@
  'python-s3transfer' 'python-yaml')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('18abdcfcb41b2c345ca9450ff4379651')
+md5sums=('b785d40234a759fd512ca01433ab7ffa')
 
 build() {
   cd $pkgname-$pkgver


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

2018-01-29 Thread Sergej Pupykin via arch-commits
Date: Monday, January 29, 2018 @ 14:50:16
  Author: spupykin
Revision: 287778

fix source url

Modified:
  xloadimage/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 14:47:40 UTC (rev 28)
+++ PKGBUILD2018-01-29 14:50:16 UTC (rev 287778)
@@ -8,19 +8,18 @@
 pkgrel=13
 pkgdesc="An utility to view many different types of images under X11"
 arch=(x86_64)
-#url="http://world.std.com/~jimf/xloadimage.html;
 url="http://sioseis.ucsd.edu/xloadimage.html;
 license=("MIT")
 depends=('libtiff' 'libpng' 'libx11' 'libxext')
 makedepends=('patch' 'imake')
-source=(http://archlinux-stuff.googlecode.com/files/xloadimage.$pkgver-1.tar.gz
+source=(https://arch.p5n.pp.ru/~sergej/dl/2018/xloadimage.$pkgver-1.tar.gz
license.txt
enable-image-types.patch
png15-tiff4.patch)
-md5sums=('86b42b1b628a9c8b7deec21e1175'
- 'cc16a51aeb5083b8ff07939dfe244130'
- '3a2703925011276fd2d2bd139b676487'
- 'c797cfc3f4588b96275d82c2c9cc7025')
+sha256sums=('0e97ebb57a0666f604bcb29c72018c15ca59b743ddf7d5fdccc05892e52695fb'
+'db7d013cfa6cdd8c695e4bbc5152c49a3acc7eab7f5c3e5f5d9d87828658c9a7'
+'54755994f787287b94be156c9e3f82c4214172636488e243039ccf9bdaab2b74'
+'91ddbf7f8575245634f4fbd05fa28c9e9bb941d4067176ca75d85089c07982c8')
 
 build() {
   cd "$srcdir"/$pkgname.$pkgver


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Monday, January 29, 2018 @ 15:35:22
  Author: felixonmars
Revision: 287788

upgpkg: deepin-boot-maker 2.0.4.3-1

Modified:
  deepin-boot-maker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 15:22:36 UTC (rev 287787)
+++ PKGBUILD2018-01-29 15:35:22 UTC (rev 287788)
@@ -2,8 +2,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=deepin-boot-maker
-pkgver=2.0.4.2
-pkgrel=2
+pkgver=2.0.4.3
+pkgrel=1
 pkgdesc='Tool to create a bootable usb stick quick and easy'
 arch=('x86_64')
 url="https://github.com/linuxdeepin/deepin-boot-maker;
@@ -12,7 +12,7 @@
 makedepends=('qt5-tools' 'python')
 groups=('deepin')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-boot-maker/archive/$pkgver.tar.gz;)
-sha512sums=('964a21e1a3fd556ba6783f86b194004e7a9a2bcdca2645211d39345aa347245ad02ec46eea080a904aac51230c520e569b4d22c79c481a7eb35433a39596d461')
+sha512sums=('5f682de463d2f82f7c281abed4aea320ca962fd7b23eadefa247497dce419898fb80c21c1e6d115418ee8d601d124c12cd8e14b07a5ace522c4a7ebadd83f7b8')
 
 build(){
   cd deepin-boot-maker-$pkgver


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Monday, January 29, 2018 @ 15:35:46
  Author: felixonmars
Revision: 287789

archrelease: copy trunk to community-x86_64

Added:
  deepin-boot-maker/repos/community-x86_64/PKGBUILD
(from rev 287788, deepin-boot-maker/trunk/PKGBUILD)
Deleted:
  deepin-boot-maker/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-29 15:35:22 UTC (rev 287788)
+++ PKGBUILD2018-01-29 15:35:46 UTC (rev 287789)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=deepin-boot-maker
-pkgver=2.0.4.2
-pkgrel=2
-pkgdesc='Tool to create a bootable usb stick quick and easy'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/deepin-boot-maker;
-license=('GPL3')
-depends=('deepin-qt5integration' 'p7zip' 'mtools' 'syslinux')
-makedepends=('qt5-tools' 'python')
-groups=('deepin')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-boot-maker/archive/$pkgver.tar.gz;)
-sha512sums=('964a21e1a3fd556ba6783f86b194004e7a9a2bcdca2645211d39345aa347245ad02ec46eea080a904aac51230c520e569b4d22c79c481a7eb35433a39596d461')
-
-build(){
-  cd deepin-boot-maker-$pkgver
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd deepin-boot-maker-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-boot-maker/repos/community-x86_64/PKGBUILD (from rev 287788, 
deepin-boot-maker/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-29 15:35:46 UTC (rev 287789)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=deepin-boot-maker
+pkgver=2.0.4.3
+pkgrel=1
+pkgdesc='Tool to create a bootable usb stick quick and easy'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-boot-maker;
+license=('GPL3')
+depends=('deepin-qt5integration' 'p7zip' 'mtools' 'syslinux')
+makedepends=('qt5-tools' 'python')
+groups=('deepin')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-boot-maker/archive/$pkgver.tar.gz;)
+sha512sums=('5f682de463d2f82f7c281abed4aea320ca962fd7b23eadefa247497dce419898fb80c21c1e6d115418ee8d601d124c12cd8e14b07a5ace522c4a7ebadd83f7b8')
+
+build(){
+  cd deepin-boot-maker-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd deepin-boot-maker-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}


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

2018-01-29 Thread Bruno Pagani via arch-commits
Date: Monday, January 29, 2018 @ 14:01:06
  Author: archange
Revision: 287770

archrelease: copy trunk to community-staging-x86_64

Added:
  paraview/repos/community-staging-x86_64/
  paraview/repos/community-staging-x86_64/PKGBUILD
(from rev 287769, paraview/trunk/PKGBUILD)
  paraview/repos/community-staging-x86_64/jsoncpp-1.8.4.patch
(from rev 287769, paraview/trunk/jsoncpp-1.8.4.patch)
  paraview/repos/community-staging-x86_64/visit_fix_gcc7.patch
(from rev 287769, paraview/trunk/visit_fix_gcc7.patch)

--+
 PKGBUILD |  109 +
 jsoncpp-1.8.4.patch  |   16 +++
 visit_fix_gcc7.patch |   43 +++
 3 files changed, 168 insertions(+)

Copied: paraview/repos/community-staging-x86_64/PKGBUILD (from rev 287769, 
paraview/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-29 14:01:06 UTC (rev 287770)
@@ -0,0 +1,109 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Oliver Goethel 
+# Contributor: eolianoe eolianoe 
+# Contributor: George Eleftheriou 
+# Contributor: Mathias Anselmann 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Michele Mocciola 
+# Contributor: Simon Zilliken 
+# Contributor: chuckdaniels
+
+_pkg=paraview
+_mpi=openmpi
+pkgname=${_pkg}
+#-${_mpi}
+pkgver=5.4.1
+pkgrel=2
+pkgdesc="Parallel Visualization application using VTK (${_mpi} version)"
+arch=('x86_64')
+url="https://www.paraview.org;
+license=('custom')
+depends=('qt5-tools' 'qt5-x11extras' 'ospray' 'ffmpeg' 'openmpi'
+ 'cgns' 'python-pygments' 'protobuf' 'pugixml'
+ 'python-matplotlib' 'python-numpy' 'python-mpi4py'
+ 'python-six' 'python-constantly' 'python-twisted'
+ 'python-autobahn' 'python-zope-interface' 'python-incremental'
+ 'boost-libs' 'glew' 'expat' 'freetype2'
+ 'libjpeg' 'jsoncpp' 'libxml2' 'libtheora' 'libpng'
+ 'libtiff' 'zlib' 'hdf5-openmpi' 'lz4' 'netcdf')
+#netcdf-cxx gl2ps libharu
+#python-txaio python-hyperlink
+#proj apparently not used in this VTK configuration
+makedepends=('cmake' 'boost' 'mesa' 'gcc-fortran' 'ninja' 'qt5-tools' 
'qt5-xmlpatterns')
+source=("${url}/files/v${pkgver:0:3}/ParaView-v${pkgver}.tar.gz"
+'visit_fix_gcc7.patch'
+'jsoncpp-1.8.4.patch')
+sha256sums=('390d0f5dc66bf432e202a39b1f34193af4bf8aad2355338fa5e2778ea07a80e4'
+'d1daa5da6ec25c5a6bfcabb3cf0bf02ab97ec87a332886a2f42695072fe8568d'
+'ed9a99d5d0fb54f7506e819f6d54bd1b6cd7dd0e91647d9d06591ae300f9ef05')
+
+prepare() {
+mkdir -p build
+cd ParaView-v${pkgver}
+patch Utilities/VisItBridge/databases/readers/Vs/VsStaggeredField.C 
"${srcdir}"/visit_fix_gcc7.patch
+patch -p1 -i "${srcdir}"/jsoncpp-1.8.4.patch
+}
+
+build() {
+cd build
+
+# Flags to enable system libs in VTK building, as in VTK package
+# NETCDF NETCDFCPP status?
+# LIBPROJ4 UNUSED?
+# GL2PS fails.
+# libharu blocked by https://github.com/libharu/libharu/pull/157
+# TXAIO HYPERLINK in a future VTK version
+# LIBPROJ4 apparently not used in this VTK configuration
+local VTK_USE_SYSTEM_LIB=""
+for lib in EXPAT FREETYPE JPEG PNG TIFF ZLIB LIBXML2 OGGTHEORA TWISTED 
ZOPE SIX AUTOBAHN MPI4PY JSONCPP GLEW HDF5 CONSTANTLY INCREMENTAL LZ4 NETCDF
+do
+VTK_USE_SYSTEM_LIB+="-DVTK_USE_SYSTEM_${lib}:BOOL=ON "
+done
+# Specific system libs for ParaView version
+for lib in CGNS PUGIXML PROTOBUF PYGMENTS 
+do
+VTK_USE_SYSTEM_LIB+="-DVTK_USE_SYSTEM_${lib}:BOOL=ON "
+done
+
+cmake ../ParaView-v${pkgver} \
+-DBUILD_DOCUMENTATION=OFF \
+-DBUILD_EXAMPLES=ON \
+-DBUILD_SHARED_LIBS=ON \
+-DBUILD_TESTING=OFF \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_C_COMPILER=mpicc \
+-DCMAKE_CXX_COMPILER=mpicxx \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOSPRAY_INSTALL_DIR=/usr \
+-DPARAVIEW_ENABLE_FFMPEG=ON \
+-DPARAVIEW_ENABLE_MATPLOTLIB=ON \
+-DPARAVIEW_ENABLE_PYTHON=ON \
+-DPARAVIEW_INSTALL_DEVELOPMENT_FILES=ON \
+-DPARAVIEW_QT_VERSION=5 \
+-DPARAVIEW_USE_MPI=ON \
+-DPARAVIEW_USE_VISITBRIDGE=ON \
+-DPARAVIEW_USE_OSPRAY=ON \
+-DVISIT_BUILD_READER_CGNS=ON \
+-DVTK_PYTHON_FULL_THREADSAFE=ON \
+-DVTK_PYTHON_VERSION=3 \
+-DVTK_QT_VERSION=5 \
+-DVTK_RENDERING_BACKEND=OpenGL2 \
+-DVTK_SMP_IMPLEMENTATION_TYPE=OpenMP \
+${VTK_USE_SYSTEM_LIB} \
+-GNinja
+
+ninja ${MAKEFLAGS}
+}
+
+package() {
+cd build
+
+DESTDIR="${pkgdir}" ninja install
+
+# Install license
+install -Dm644 

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

2018-01-29 Thread Antonio Rojas via arch-commits
Date: Monday, January 29, 2018 @ 14:47:40
  Author: arojas
Revision: 28

Fix python2 sed line (FS#57271)

Modified:
  sagemath/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 14:46:17 UTC (rev 287776)
+++ PKGBUILD2018-01-29 14:47:40 UTC (rev 28)
@@ -9,7 +9,7 @@
 pkgbase=sagemath
 pkgname=(sagemath sagemath-jupyter)
 pkgver=8.1
-pkgrel=5
+pkgrel=6
 pkgdesc="Open Source Mathematics Software, free alternative to Magma, Maple, 
Mathematica, and Matlab"
 arch=(x86_64)
 url="http://www.sagemath.org;
@@ -106,7 +106,7 @@
   patch -p1 -i ../sagemath-matplotlib2.patch
 
 # use python2
-  sed -e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' -e 's|exec 
python|exec python2|' -i src/bin/*
+  sed -e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' -e 's|\|exec python2|' -i src/bin/*
   sed -e 's|cython {OPT}|cython2 {OPT}|' -e 's|python setup.py|python2 
setup.py|' -i src/sage/misc/cython.py
   sed -e 's|exec ipython|exec ipython2|' -e 's|cygdb|cygdb2|g' -i src/bin/sage
   sed -e "s|'cython'|'cython2'|" -i src/bin/sage-cython


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

2018-01-29 Thread Jonathan Steel via arch-commits
Date: Monday, January 29, 2018 @ 15:15:48
  Author: jsteel
Revision: 287782

upgpkg: python-botocore 1.8.36-1

Modified:
  python-botocore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 15:12:50 UTC (rev 287781)
+++ PKGBUILD2018-01-29 15:15:48 UTC (rev 287782)
@@ -4,7 +4,7 @@
 # Contributor: Chris Fordham
 
 pkgname=python-botocore
-pkgver=1.8.35
+pkgver=1.8.36
 pkgrel=1
 pkgdesc='A low-level interface to a growing number of Amazon Web Services'
 arch=('any')
@@ -13,7 +13,7 @@
 depends=('python-dateutil' 'python-jmespath' 'python-docutils')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-sha512sums=('beb348ce1f478c1c6860374008833699bb15bdef2b558f630f6bad2cedd7163c17912a26384f62974cbffe1bbdc553eb5ba5dfbbb3017175943ae1a4564bf9b7')
+md5sums=('2ff93b63d8a66ba57da95b2847cc7bed')
 
 build() {
   cd botocore-$pkgver


[arch-commits] Commit in babe (3 files)

2018-01-29 Thread Antonio Rojas via arch-commits
Date: Monday, January 29, 2018 @ 15:22:36
  Author: arojas
Revision: 287787

archrelease: copy trunk to community-x86_64

Added:
  babe/repos/
  babe/repos/community-x86_64/
  babe/repos/community-x86_64/PKGBUILD
(from rev 287786, babe/trunk/PKGBUILD)

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

Copied: babe/repos/community-x86_64/PKGBUILD (from rev 287786, 
babe/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2018-01-29 15:22:36 UTC (rev 287787)
@@ -0,0 +1,29 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=babe
+pkgver=1.2
+pkgrel=1
+pkgdesc='A tiny music collection manager'
+url='https://babe.kde.org'
+arch=(x86_64)
+license=(GPL3)
+depends=(ki18n knotifications qt5-webengine qt5-websockets taglib)
+makedepends=(extra-cmake-modules python)
+source=("https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha256sums=('f686e8ac3b5d18389cd1018df0ae93e8bcbe9fae9741c6f3da8920d46b4ef1fe')
+
+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 (babe babe/trunk babe/trunk/PKGBUILD)

2018-01-29 Thread Antonio Rojas via arch-commits
Date: Monday, January 29, 2018 @ 15:22:09
  Author: arojas
Revision: 287786

Add babe, new KDE music player

Added:
  babe/
  babe/trunk/
  babe/trunk/PKGBUILD

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

Added: babe/trunk/PKGBUILD
===
--- babe/trunk/PKGBUILD (rev 0)
+++ babe/trunk/PKGBUILD 2018-01-29 15:22:09 UTC (rev 287786)
@@ -0,0 +1,29 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=babe
+pkgver=1.2
+pkgrel=1
+pkgdesc='A tiny music collection manager'
+url='https://babe.kde.org'
+arch=(x86_64)
+license=(GPL3)
+depends=(ki18n knotifications qt5-webengine qt5-websockets taglib)
+makedepends=(extra-cmake-modules python)
+source=("https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha256sums=('f686e8ac3b5d18389cd1018df0ae93e8bcbe9fae9741c6f3da8920d46b4ef1fe')
+
+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 systemd/repos (14 files)

2018-01-29 Thread Christian Hesse via arch-commits
Date: Monday, January 29, 2018 @ 15:27:14
  Author: eworm
Revision: 315568

archrelease: copy trunk to testing-x86_64

Added:
  systemd/repos/testing-x86_64/
  systemd/repos/testing-x86_64/PKGBUILD
(from rev 315567, systemd/trunk/PKGBUILD)
  systemd/repos/testing-x86_64/arch.conf
(from rev 315567, systemd/trunk/arch.conf)
  systemd/repos/testing-x86_64/initcpio-hook-udev
(from rev 315567, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-x86_64/initcpio-install-systemd
(from rev 315567, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-x86_64/initcpio-install-udev
(from rev 315567, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-x86_64/loader.conf
(from rev 315567, systemd/trunk/loader.conf)
  systemd/repos/testing-x86_64/splash-arch.bmp
(from rev 315567, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-x86_64/systemd-hwdb.hook
(from rev 315567, systemd/trunk/systemd-hwdb.hook)
  systemd/repos/testing-x86_64/systemd-sysusers.hook
(from rev 315567, systemd/trunk/systemd-sysusers.hook)
  systemd/repos/testing-x86_64/systemd-tmpfiles.hook
(from rev 315567, systemd/trunk/systemd-tmpfiles.hook)
  systemd/repos/testing-x86_64/systemd-update.hook
(from rev 315567, systemd/trunk/systemd-update.hook)
  systemd/repos/testing-x86_64/systemd-user.pam
(from rev 315567, systemd/trunk/systemd-user.pam)
  systemd/repos/testing-x86_64/systemd.install
(from rev 315567, systemd/trunk/systemd.install)

--+
 PKGBUILD |  263 +
 arch.conf|7 +
 initcpio-hook-udev   |   22 +++
 initcpio-install-systemd |  198 +
 initcpio-install-udev|   29 
 loader.conf  |1 
 systemd-hwdb.hook|   11 +
 systemd-sysusers.hook|   11 +
 systemd-tmpfiles.hook|   11 +
 systemd-update.hook  |   11 +
 systemd-user.pam |5 
 systemd.install  |   99 
 12 files changed, 668 insertions(+)

Copied: systemd/repos/testing-x86_64/PKGBUILD (from rev 315567, 
systemd/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-01-29 15:27:14 UTC (rev 315568)
@@ -0,0 +1,263 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Maintainer: Dave Reisner 
+# Maintainer: Tom Gundersen 
+
+pkgbase=systemd
+pkgname=('systemd' 'libsystemd' 'systemd-sysvcompat')
+# latest commit on stable branch
+_commit='46659f7deb962f55c728e70597e37c2a3ab6326d'
+# Bump this to latest major release for signed tag verification,
+# the commit count is handled by pkgver() function.
+pkgver=237.0
+pkgrel=1
+arch=('x86_64')
+url="https://www.github.com/systemd/systemd;
+makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gperf' 'lz4' 'xz' 'pam' 'libelf'
+ 'intltool' 'iptables' 'kmod' 'libcap' 'libidn' 'libgcrypt'
+ 'libmicrohttpd' 'libxslt' 'util-linux' 'linux-api-headers'
+ 'python-lxml' 'quota-tools' 'shadow' 'gnu-efi-libs' 'git'
+ 'meson' 'libseccomp')
+options=('strip')
+validpgpkeys=('63CDA1E5D3FC22B998D20DD6327F26951A015CC4')  # Lennart 
Poettering 
+source=('git://github.com/systemd/systemd-stable.git'
+'git://github.com/systemd/systemd.git' # pull in for tags, backports & 
reverts
+'initcpio-hook-udev'
+'initcpio-install-systemd'
+'initcpio-install-udev'
+'arch.conf'
+'loader.conf'
+'splash-arch.bmp'
+'systemd-user.pam'
+'systemd-hwdb.hook'
+'systemd-sysusers.hook'
+'systemd-tmpfiles.hook'
+'systemd-update.hook')
+sha512sums=('SKIP'
+'SKIP'
+
'f0d933e8c6064ed830dec54049b0a01e27be87203208f6ae982f10fb4eddc7258cb2919d594cbfb9a33e74c3510cfd682f3416ba8e804387ab87d1a217eb4b73'
+
'86d7cacd7536b1069c8208de7ec81e7f0f18a19fc2b06fabe90db4700623eb3540b75121080d325672d92e26912632ae4f93fd3c0bb48eb3e5eedd88352c'
+
'a25b28af2e8c516c3a2eec4e64b8c7f70c21f974af4a955a4a9d45fd3e3ff0d2a98b4419fe425d47152d5acae77d64e69d8d014a7209524b75a81b0edb10bf3a'
+
'61032d29241b74a0f28446f8cf1be0e8ec46d0847a61dadb2a4f096e8686d5f57fe5c72bcf386003f6520bc4b5856c32d63bf3efe7eb0bc0deefc9f68159e648'
+
'c416e2121df83067376bcaacb58c05b01990f4614ad9de657d74b6da3efa441af251d13bf21e3f0f71ddcb4c9ea658b81da3d915667dc5c309c87ec32a1cb5a5'
+
'5a1d78b5170da5abe3d18fdf9f2c3a4d78f15ba7d1ee9ec2708c4c9c2e28973469bc19386f70b3cf32ffafbe4fcc4303e5ebbd6d5187a1df3314ae0965b25e75'
+
'b90c99d768dc2a4f020ba854edf45ccf1b86a09d2f66e475de21fe589ff7e32c33ef4aa0876d7f1864491488fd7edb2682fc0d68e83a6d4890a0778dc2d6fe19'
+

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

2018-01-29 Thread Christian Hesse via arch-commits
Date: Monday, January 29, 2018 @ 15:26:54
  Author: eworm
Revision: 315567

upgpkg: systemd 237.0-1

new upstream release

Modified:
  systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 15:17:57 UTC (rev 315566)
+++ PKGBUILD2018-01-29 15:26:54 UTC (rev 315567)
@@ -6,10 +6,10 @@
 pkgbase=systemd
 pkgname=('systemd' 'libsystemd' 'systemd-sysvcompat')
 # latest commit on stable branch
-_commit='242f14c5a807bb50bfda18568887deae1eb8a3ec'
+_commit='46659f7deb962f55c728e70597e37c2a3ab6326d'
 # Bump this to latest major release for signed tag verification,
 # the commit count is handled by pkgver() function.
-pkgver=236.81
+pkgver=237.0
 pkgrel=1
 arch=('x86_64')
 url="https://www.github.com/systemd/systemd;


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

2018-01-29 Thread Sergej Pupykin via arch-commits
Date: Monday, January 29, 2018 @ 15:37:28
  Author: spupykin
Revision: 287790

add jcl

Added:
  jcl/
  jcl/trunk/
  jcl/trunk/PKGBUILD

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

Added: jcl/trunk/PKGBUILD
===
--- jcl/trunk/PKGBUILD  (rev 0)
+++ jcl/trunk/PKGBUILD  2018-01-29 15:37:28 UTC (rev 287790)
@@ -0,0 +1,23 @@
+# $Id: PKGBUILD 194152 2016-10-31 13:48:24Z spupykin $
+# Maintainer: Sergej Pupykin 
+# Contributor: Sergej Pupykin 
+
+pkgname=jcl
+pkgver=0.1rc2
+pkgrel=1
+_commit=6893bcf7f720a7b0beeaed5f433539d0b06d3b1a
+pkgdesc="jabber mail component"
+arch=(any)
+url="https://github.com/dax/jcl;
+license=("GPL")
+backup=(etc/ejabberd/jmc.xml)
+depends=('python2' 'python2-pyxmpp')
+makedepends=('git')
+install=jmc.install
+source=("git+https://github.com/dax/jcl.git#commit=${_commit};)
+sha256sums=('SKIP')
+
+package() {
+  cd "$srcdir/jcl"
+  python2 setup.py install --root="$pkgdir"
+}


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Monday, January 29, 2018 @ 16:43:42
  Author: felixonmars
Revision: 287808

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc/repos/community-staging-x86_64/PKGBUILD (from rev 287807, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-29 16:43:42 UTC (rev 287808)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=2.0.6
+pkgrel=29
+pkgdesc="Conversion between markup formats"
+url="http://pandoc.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-http" "haskell-juicypixels" "haskell-sha" 
"haskell-aeson"
+ "haskell-aeson-pretty" "haskell-base64-bytestring" 
"haskell-blaze-html"
+ "haskell-blaze-markup" "haskell-case-insensitive" "haskell-cmark-gfm"
+ "haskell-data-default" "haskell-doctemplates" "haskell-glob" 
"haskell-mtl"
+ "haskell-haddock-library" "haskell-skylighting" "haskell-hslua" 
"haskell-hslua-module-text"
+ "haskell-http-client" "haskell-syb" "haskell-http-client-tls" 
"haskell-http-types"
+ "haskell-safe" "haskell-split" "haskell-text" "haskell-texmath" 
"haskell-network"
+ "haskell-pandoc-types" "haskell-parsec" "haskell-random" 
"haskell-scientific"
+ "haskell-tagsoup" "haskell-temporary" "haskell-network-uri" 
"haskell-unordered-containers"
+ "haskell-zip-archive" "haskell-vector" "haskell-xml" "haskell-yaml" 
"haskell-zlib")
+optdepends=('pandoc-citeproc: for citation rendering with pandoc-citeproc 
filter'
+'pandoc-crossref: for numbering figures, equations, tables and 
cross-references to them with pandoc-crossref filter'
+'texlive-core: for pdf output')
+conflicts=('haskell-pandoc')
+replaces=('haskell-pandoc')
+makedepends=('ghc' 'haskell-diff' 'haskell-tasty' 'haskell-tasty-hunit' 
'haskell-tasty-quickcheck'
+ 'haskell-tasty-golden' 'haskell-quickcheck' 
'haskell-executable-path')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('a1e59fbedc8efbeaa482a90392beff3e6b93c5ee52f2955c57eba83baadfc10c76f474c1254de22daf7c0d250dc9114331d878f56ebf2e90cdd5bf75ecd6f208')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+# TODO: find a better solution
+sed -i "s|let env' = dynlibEnv ++ |let env' = dynlibEnv ++ 
[(\"LD_LIBRARY_PATH\", \"$PWD/dist/build\")] ++ |" test/Tests/Command.hs
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-old-locale -fnetwork-uri -f-trypandoc -f-embed_data_files 
-f-weigh-pandoc -f-static
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING.md"
+}


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Monday, January 29, 2018 @ 16:43:16
  Author: felixonmars
Revision: 287807

upgpkg: pandoc 2.0.6-29

rebuild with texmath,0.10.1.1

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 16:33:19 UTC (rev 287806)
+++ PKGBUILD2018-01-29 16:43:16 UTC (rev 287807)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc
 pkgver=2.0.6
-pkgrel=28
+pkgrel=29
 pkgdesc="Conversion between markup formats"
 url="http://pandoc.org;
 license=("GPL")


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Monday, January 29, 2018 @ 16:46:50
  Author: felixonmars
Revision: 287810

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
287809, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-29 16:46:50 UTC (rev 287810)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.12.2.5
+pkgrel=30
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/$pkgname;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-attoparsec'
+ 'haskell-data-default' 'haskell-hs-bibutils' 'haskell-mtl' 
'haskell-old-locale' 'pandoc'
+ 'haskell-pandoc-types' 'haskell-parsec' 'haskell-rfc5051' 
'haskell-setenv' 'haskell-split'
+ 'haskell-syb' 'haskell-tagsoup' 'haskell-temporary' 'haskell-text' 
'haskell-text-icu'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-xml-conduit' 
'haskell-yaml')
+conflicts=('haskell-pandoc-citeproc')
+replaces=('haskell-pandoc-citeproc')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/${pkgver}/$pkgname-${pkgver}.tar.gz;)
+sha512sums=('f8072d9ca2e9cf04f506094fbf9c15eb6f53a19a602dfb565ed611e4f0f287166ec5097f59fe89b1b070e2b0137f57a7f977027b99dc4d422ad7a98dac3a85c6')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+# TODO: find a better solution
+sed -i 
"s|(\"HOME\",\".\")|(\"HOME\",\".\"),(\"LD_LIBRARY_PATH\",\"$PWD/dist/build\"),(\"pandoc_citeproc_datadir\",\"$PWD\")|"
 tests/test-pandoc-citeproc.hs
+}
+
+build() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/$pkgname" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug -f-test_citeproc -funicode_collation -f-embed_data_files 
-fbibutils -f-static
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/$pkgname.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/$pkgname.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/$pkgname/LICENSE"
+}


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

2018-01-29 Thread Antonio Rojas via arch-commits
Date: Monday, January 29, 2018 @ 16:47:52
  Author: arojas
Revision: 315577

Update

Modified:
  archlinux-appstream-data/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 16:09:06 UTC (rev 315576)
+++ PKGBUILD2018-01-29 16:47:52 UTC (rev 315577)
@@ -2,7 +2,7 @@
 # Maintainer: Antonio Rojas <aro...@archlinux.org>
 
 pkgname=archlinux-appstream-data
-pkgver=20171217
+pkgver=20180129
 pkgrel=1
 pkgdesc="Arch Linux application database for AppStream-based software centers"
 arch=(any)
@@ -18,15 +18,15 @@
   
$_repo-icons-128x128.tar.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/icons-128x128.tar.gz)
  noextract+=($_repo.xml.gz $_repo-icons-{64x64,128x128}.tar.gz)
 done
-sha256sums=('da61313bcbd9afd012064b6cacf3fdadd29caca6a8bfb94b1b5e2c0f7a20232b'
+sha256sums=('4eada9278c7f65e43bf12059dea0ca0d1f7ce4a318d75991f571dc8efbefa0ce'
 '7989bb311baa38ef545250282aa065d23281c46dfb8faabe4c653487bdbded5c'
 '7989bb311baa38ef545250282aa065d23281c46dfb8faabe4c653487bdbded5c'
-'a1e72abe2afb9107475e472c4c2cefec74f396de7d8236215abcbe81d4211dcc'
-'6dbf54fe7b6bd19292474d0142de77492e10c7405502f9a4945fcc0462018833'
-'2ee0a77d8f7b2577436c96fff4215e82ee92070dec9118787524af89a300d24e'
-'477810ec71f5b233438d2bcb8764ebe8969aaadc33e71c30cfec95f8e63ebc4b'
-'392170eb1cfc5d89ccc96b22486623779a8ef7c4b0d59780613bf5c24cba2925'
-'ea13f96b68afd9650628f6e1fe5d5cdbb9158ca2ad733a2ad6e8f53fd5e6349d')
+'7966ca12d0505d19e773146d618f217116e8d8b07357897c800868233a48a4de'
+'4f615f30096f8076efe748bfb230109a48be7b4eb722f3d322df958085a3e643'
+'ae4b25414f4c32e33af5913f7e90116441ad85e3ed80b6d3ae8efc11e9eb1dc1'
+'6a8dbf41c8205e00fe783f1ded710ddc28cfe5797116066013434bcb3d9a430f'
+'77ad1068c2b4d503904c6a3c7ff73ff67ff59da67baab94572dfc1cc9c9129ea'
+'a09479c2b70e2304cb6925abe12a41317bb80a0160881641f6b3903b4ae06a31')
 
 package() {
   mkdir -p 
"$pkgdir"/usr/share/app-info/{icons/archlinux-arch-{core,extra,community}/{64x64,128x128},xmls}


[arch-commits] Commit in archlinux-appstream-data/repos/extra-any (PKGBUILD PKGBUILD)

2018-01-29 Thread Antonio Rojas via arch-commits
Date: Monday, January 29, 2018 @ 16:48:55
  Author: arojas
Revision: 315578

archrelease: copy trunk to extra-any

Added:
  archlinux-appstream-data/repos/extra-any/PKGBUILD
(from rev 315577, archlinux-appstream-data/trunk/PKGBUILD)
Deleted:
  archlinux-appstream-data/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-29 16:47:52 UTC (rev 315577)
+++ PKGBUILD2018-01-29 16:48:55 UTC (rev 315578)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas <aro...@archlinux.org>
-
-pkgname=archlinux-appstream-data
-pkgver=20171217
-pkgrel=1
-pkgdesc="Arch Linux application database for AppStream-based software centers"
-arch=(any)
-url="http://www.archlinux.org;
-license=(GPL)
-depends=()
-makedepends=()
-source=()
-noextract=()
-for _repo in core extra community; do
- 
source+=($_repo.xml.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/Components-x86_64.xml.gz
-  
$_repo-icons-64x64.tar.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/icons-64x64.tar.gz
-  
$_repo-icons-128x128.tar.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/icons-128x128.tar.gz)
- noextract+=($_repo.xml.gz $_repo-icons-{64x64,128x128}.tar.gz)
-done
-sha256sums=('da61313bcbd9afd012064b6cacf3fdadd29caca6a8bfb94b1b5e2c0f7a20232b'
-'7989bb311baa38ef545250282aa065d23281c46dfb8faabe4c653487bdbded5c'
-'7989bb311baa38ef545250282aa065d23281c46dfb8faabe4c653487bdbded5c'
-'a1e72abe2afb9107475e472c4c2cefec74f396de7d8236215abcbe81d4211dcc'
-'6dbf54fe7b6bd19292474d0142de77492e10c7405502f9a4945fcc0462018833'
-'2ee0a77d8f7b2577436c96fff4215e82ee92070dec9118787524af89a300d24e'
-'477810ec71f5b233438d2bcb8764ebe8969aaadc33e71c30cfec95f8e63ebc4b'
-'392170eb1cfc5d89ccc96b22486623779a8ef7c4b0d59780613bf5c24cba2925'
-'ea13f96b68afd9650628f6e1fe5d5cdbb9158ca2ad733a2ad6e8f53fd5e6349d')
-
-package() {
-  mkdir -p 
"$pkgdir"/usr/share/app-info/{icons/archlinux-arch-{core,extra,community}/{64x64,128x128},xmls}
-  for _repo in core extra community; do
-   tar -xzf $_repo-icons-64x64.tar.gz -C 
"$pkgdir"/usr/share/app-info/icons/archlinux-arch-$_repo/64x64
-   tar -xzf $_repo-icons-128x128.tar.gz -C 
"$pkgdir"/usr/share/app-info/icons/archlinux-arch-$_repo/128x128
-  done
-  cp *.xml.gz "$pkgdir"/usr/share/app-info/xmls/
-}

Copied: archlinux-appstream-data/repos/extra-any/PKGBUILD (from rev 315577, 
archlinux-appstream-data/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-29 16:48:55 UTC (rev 315578)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Antonio Rojas <aro...@archlinux.org>
+
+pkgname=archlinux-appstream-data
+pkgver=20180129
+pkgrel=1
+pkgdesc="Arch Linux application database for AppStream-based software centers"
+arch=(any)
+url="http://www.archlinux.org;
+license=(GPL)
+depends=()
+makedepends=()
+source=()
+noextract=()
+for _repo in core extra community; do
+ 
source+=($_repo.xml.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/Components-x86_64.xml.gz
+  
$_repo-icons-64x64.tar.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/icons-64x64.tar.gz
+  
$_repo-icons-128x128.tar.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/icons-128x128.tar.gz)
+ noextract+=($_repo.xml.gz $_repo-icons-{64x64,128x128}.tar.gz)
+done
+sha256sums=('4eada9278c7f65e43bf12059dea0ca0d1f7ce4a318d75991f571dc8efbefa0ce'
+'7989bb311baa38ef545250282aa065d23281c46dfb8faabe4c653487bdbded5c'
+'7989bb311baa38ef545250282aa065d23281c46dfb8faabe4c653487bdbded5c'
+'7966ca12d0505d19e773146d618f217116e8d8b07357897c800868233a48a4de'
+'4f615f30096f8076efe748bfb230109a48be7b4eb722f3d322df958085a3e643'
+'ae4b25414f4c32e33af5913f7e90116441ad85e3ed80b6d3ae8efc11e9eb1dc1'
+'6a8dbf41c8205e00fe783f1ded710ddc28cfe5797116066013434bcb3d9a430f'
+'77ad1068c2b4d503904c6a3c7ff73ff67ff59da67baab94572dfc1cc9c9129ea'
+'a09479c2b70e2304cb6925abe12a41317bb80a0160881641f6b3903b4ae06a31')
+
+package() {
+  mkdir -p 
"$pkgdir"/usr/share/app-info/{icons/archlinux-arch-{core,extra,community}/{64x64,128x128},xmls}
+  for _repo in core extra community; do
+   tar -xzf $_repo-icons-64x64.tar.gz -C 
"$pkgdir"/usr/share/app-info/icons/archlinux-arch-$_repo/64x64
+   tar -xzf $_repo-icons-128x128.tar.gz -C 
"$pkgdir"/usr/share/app-info/icons/archlinux-arch-$_repo/128x128
+  done
+  cp *.xml.gz "$pkgdir"/usr/share/app-info/xmls/
+}


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Monday, January 29, 2018 @ 16:49:14
  Author: felixonmars
Revision: 287812

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
287811, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-29 16:49:14 UTC (rev 287812)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.10.0.0
+pkgrel=50
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptohash'
+ 'haskell-data-default' 'haskell-fsnotify' 'haskell-http-conduit' 
'haskell-http-types'
+ 'haskell-lrucache' 'haskell-mtl' 'haskell-network' 
'haskell-network-uri'
+ 'haskell-optparse-applicative' 'pandoc' 'pandoc-citeproc' 
'haskell-parsec'
+ 'haskell-random' 'haskell-regex-base' 'haskell-regex-tdfa' 
'haskell-resourcet'
+ 'haskell-scientific' 'haskell-system-filepath' 'haskell-tagsoup' 
'haskell-text'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-vector' 'haskell-wai'
+ 'haskell-wai-app-static' 'haskell-warp' 'haskell-yaml')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('17c5986ba3a522d081067e7d728113311b918289c2b35da372d5804d1606fe58494249b3acc9e0988a0608f8d9715eace172f6e64fed1e45625b791410a61d37')
+
+prepare() {
+sed -e 's/tasty  >= 0.11 && < 0.12,/tasty,/' \
+-e 's/tasty-hunit>= 0.9  && < 0.10,/tasty-hunit,/' \
+-i $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test
+# pandoc 2.0.6 is causing the test suite of hakyll to hang
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Monday, January 29, 2018 @ 16:50:33
  Author: felixonmars
Revision: 287813

upgpkg: pandoc-crossref 0.3.0.1-17

rebuild with texmath,0.10.1.1

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 16:49:14 UTC (rev 287812)
+++ PKGBUILD2018-01-29 16:50:33 UTC (rev 287813)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.0.1
-pkgrel=16
+pkgrel=17
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname};
 license=("GPL2")


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

2018-01-29 Thread Bartłomiej Piotrowski via arch-commits
Date: Monday, January 29, 2018 @ 16:51:13
  Author: bpiotrowski
Revision: 315579

2.0.2-2:

Modified:
  htop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 16:48:55 UTC (rev 315578)
+++ PKGBUILD2018-01-29 16:51:13 UTC (rev 315579)
@@ -15,7 +15,7 @@
 makedepends=('python')
 optdepends=('lsof: show files opened by a process'
 'strace: attach to a running process')
-options=('!emptydirs')
+options=('!emptydirs' debug)
 validpgpkeys=('8460980B2B79786DE0C7FCC83FD8F43C2BB3C478') # Hisham Muhammad 

 
source=("https://hisham.hm/$pkgname/releases/$pkgver/$pkgname-$pkgver.tar.gz"{,.asc})
 sha256sums=('179be9dccb80cee0c5e1a1f58c8f72ce7b2328ede30fb71dcdf336539be2f487'


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Monday, January 29, 2018 @ 16:46:28
  Author: felixonmars
Revision: 287809

upgpkg: pandoc-citeproc 0.12.2.5-30

rebuild with texmath,0.10.1.1

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 16:43:42 UTC (rev 287808)
+++ PKGBUILD2018-01-29 16:46:28 UTC (rev 287809)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.12.2.5
-pkgrel=29
+pkgrel=30
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname;
 license=("custom:BSD3")


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Monday, January 29, 2018 @ 16:48:52
  Author: felixonmars
Revision: 287811

upgpkg: haskell-hakyll 4.10.0.0-50

rebuild with texmath,0.10.1.1

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 16:46:50 UTC (rev 287810)
+++ PKGBUILD2018-01-29 16:48:52 UTC (rev 287811)
@@ -5,7 +5,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.10.0.0
-pkgrel=49
+pkgrel=50
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("custom:BSD3")


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Monday, January 29, 2018 @ 16:51:50
  Author: felixonmars
Revision: 287814

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
287813, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-29 16:51:50 UTC (rev 287814)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.3.0.1
+pkgrel=17
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgname};
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default' 'haskell-data-accessor' 
'haskell-data-accessor-template'
+ 'haskell-data-accessor-transformers' 'haskell-file-embed' 
'haskell-mtl'
+ 'haskell-open-browser' 'haskell-optparse-applicative' 'pandoc' 
'haskell-pandoc-types'
+ 'haskell-roman-numerals' 'haskell-syb' 'haskell-text' 
'haskell-utility-ht')
+makedepends=('ghc')
+conflicts=('haskell-pandoc-crossref')
+replaces=('haskell-pandoc-crossref')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lierdakil/pandoc-crossref/archive/v$pkgver.tar.gz;)
+sha512sums=('9484b50cb01bad33687d4787f48878899d59eeaddd6714ac324e37be5bd20a313f246cafce1d7fba36432fd99cb75f10d4efba5ebd9b0def87dc77410c912b13')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Monday, January 29, 2018 @ 17:14:52
  Author: felixonmars
Revision: 287821

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-keys/repos/community-staging-x86_64/PKGBUILD (from rev 287820, 
haskell-keys/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-29 17:14:52 UTC (rev 287821)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=keys
+pkgname=haskell-keys
+pkgver=3.12
+pkgrel=1
+pkgdesc="Keyed functors and containers"
+url="https://github.com/ekmett/keys/;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-comonad' 'haskell-free' 'haskell-hashable' 
'haskell-semigroupoids'
+ 'haskell-semigroups' 'haskell-tagged' 'haskell-transformers-compat'
+ 'haskell-unordered-containers')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('7d8ce7b6366b60d11eb839d7e7ef60ec6ac7370c641f0ec2d4acaa0fd37119f37aae4e570cf55a835bf8aaf9895de3ed0747070d6afc7f38faa12122935df49a')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Monday, January 29, 2018 @ 17:14:31
  Author: felixonmars
Revision: 287820

upgpkg: haskell-keys 3.12-1

rebuild with keys,3.12

Modified:
  haskell-keys/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 17:12:05 UTC (rev 287819)
+++ PKGBUILD2018-01-29 17:14:31 UTC (rev 287820)
@@ -4,20 +4,21 @@
 
 _hkgname=keys
 pkgname=haskell-keys
-pkgver=3.11
-pkgrel=48
+pkgver=3.12
+pkgrel=1
 pkgdesc="Keyed functors and containers"
 url="https://github.com/ekmett/keys/;
 license=("custom:BSD3")
 arch=('x86_64')
-depends=('ghc-libs' "haskell-comonad" "haskell-free" "haskell-hashable" 
"haskell-semigroupoids"
- "haskell-semigroups" "haskell-transformers-compat" 
"haskell-unordered-containers")
+depends=('ghc-libs' 'haskell-comonad' 'haskell-free' 'haskell-hashable' 
'haskell-semigroupoids'
+ 'haskell-semigroups' 'haskell-tagged' 'haskell-transformers-compat'
+ 'haskell-unordered-containers')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('027080dcaa59f364ac5c043586f54ed42a69cf2c2fac7955ae11029e01d2fa0fa2805286e4bf70db68f1f22467cd98f68e942ec6210524c1cd71609e44f1a1a6')
+sha512sums=('7d8ce7b6366b60d11eb839d7e7ef60ec6ac7370c641f0ec2d4acaa0fd37119f37aae4e570cf55a835bf8aaf9895de3ed0747070d6afc7f38faa12122935df49a')
 
 build() {
-cd "${srcdir}/${_hkgname}-${pkgver}"
+cd $_hkgname-$pkgver
 
 runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
 --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
@@ -30,7 +31,7 @@
 }
 
 package() {
-cd "${srcdir}/${_hkgname}-${pkgver}"
+cd $_hkgname-$pkgver
 
 install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
 install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Monday, January 29, 2018 @ 17:16:36
  Author: felixonmars
Revision: 287823

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-vector-instances/repos/community-staging-x86_64/
  haskell-vector-instances/repos/community-staging-x86_64/PKGBUILD
(from rev 287822, haskell-vector-instances/trunk/PKGBUILD)

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

Copied: haskell-vector-instances/repos/community-staging-x86_64/PKGBUILD (from 
rev 287822, haskell-vector-instances/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-29 17:16:36 UTC (rev 287823)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vector-instances
+pkgname=haskell-vector-instances
+pkgver=3.4
+pkgrel=31
+pkgdesc="Orphan Instances for \'Data.Vector\'"
+url="https://github.com/ekmett/vector-instances;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-comonad" "haskell-hashable" "haskell-keys" 
"haskell-pointed"
+ "haskell-semigroupoids" "haskell-semigroups" "haskell-vector")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('67ffd6b941909bda1b6f26c8c7579fc495267425461f15f20bbaecf22b67d3dbf4ee88eb2ac76232f47917c26558eb325fedfe8ffc97368bbe1ad90fb427a7b1')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fhashable
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Monday, January 29, 2018 @ 17:16:05
  Author: felixonmars
Revision: 287822

upgpkg: haskell-vector-instances 3.4-31

rebuild with keys,3.12

Modified:
  haskell-vector-instances/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-29 17:14:52 UTC (rev 287821)
+++ PKGBUILD2018-01-29 17:16:05 UTC (rev 287822)
@@ -5,7 +5,7 @@
 _hkgname=vector-instances
 pkgname=haskell-vector-instances
 pkgver=3.4
-pkgrel=30
+pkgrel=31
 pkgdesc="Orphan Instances for \'Data.Vector\'"
 url="https://github.com/ekmett/vector-instances;
 license=("custom:BSD3")


[arch-commits] Commit in firefox-extension-https-everywhere/trunk (PKGBUILD)

2018-01-29 Thread Eli Schwartz via arch-commits
Date: Tuesday, January 30, 2018 @ 01:04:22
  Author: eschwartz
Revision: 287904

upgpkg: firefox-extension-https-everywhere 2018.1.29-1

upstream release

Modified:
  firefox-extension-https-everywhere/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 00:04:47 UTC (rev 287903)
+++ PKGBUILD2018-01-30 01:04:22 UTC (rev 287904)
@@ -3,7 +3,7 @@
 
 _pkgname=https-everywhere
 pkgname=firefox-extension-${_pkgname}
-pkgver=2018.1.11
+pkgver=2018.1.29
 pkgrel=1
 pkgdesc="Plugin for firefox which ensures you are using https whenever it's 
possible."
 arch=('any')
@@ -15,7 +15,7 @@
 
source=("${_pkgname}-${pkgver}.xpi::https://www.eff.org/files/https-everywhere-${pkgver}-eff.xpi;
 
"${_pkgname}-${pkgver}.xpi.sig::https://www.eff.org/files/https-everywhere-${pkgver}-eff.xpi.sig;)
 noextract=("${_pkgname}-${pkgver}.xpi")
-sha256sums=('6d7e48f5d51f1a2062e95c0777a6143f4c3b4c06c1efc467bc66fd39c0fc9bae'
+sha256sums=('833661e5832b071a427b6f2cebae237b8dd4daa1b0de14a5833954fd1f59ef39'
 'SKIP')
 validpgpkeys=('1073E74EB38BD6D19476CBF8EA9DBF9FB761A677') # William Budington 

 


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 06:46:50
  Author: felixonmars
Revision: 287930

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-semigroups/repos/community-staging-x86_64/PKGBUILD (from rev 
287929, haskell-semigroups/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-30 06:46:50 UTC (rev 287930)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=semigroups
+pkgname=haskell-semigroups
+pkgver=0.18.4
+pkgrel=1
+pkgdesc="Anything that associates"
+url="https://github.com/ekmett/semigroups/;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('4f7483174066c6c2d7bf9a47e5d2edcc37d0b59f73a0a229548f58bc19cac3d4575f4ea2fd76209ff52c434a95152b8f9a696aa355936fabd2e1c6bf1694a29e')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 06:49:33
  Author: felixonmars
Revision: 287932

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-listlike/repos/community-staging-x86_64/PKGBUILD (from rev 
287931, haskell-listlike/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-30 06:49:33 UTC (rev 287932)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=ListLike
+pkgname=haskell-listlike
+pkgver=4.6
+pkgrel=4
+pkgdesc="Generic support for list-like structures"
+url="https://github.com/sjoerdvisscher/listlike;
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-dlist' 'haskell-fmlist' 'haskell-semigroups' 
'haskell-text'
+ 'haskell-utf8-string' 'haskell-vector')
+makedepends=('ghc' 'haskell-hunit' 'haskell-quickcheck' 'haskell-random')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('47f32716b95e1c520701d63c6bebe0be3cb9d5d5dbead3a16f70dc5ddef985d00a414e469e9674036714b7ad70f18cc077893bc03a6d77634b078ce1a730b26d')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "COPYRIGHT" 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYRIGHT"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYRIGHT"
+}


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 06:50:19
  Author: felixonmars
Revision: 287933

upgpkg: haskell-process-extras 0.7.2-15

rebuild with semigroups,0.18.4

Modified:
  haskell-process-extras/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 06:49:33 UTC (rev 287932)
+++ PKGBUILD2018-01-30 06:50:19 UTC (rev 287933)
@@ -5,7 +5,7 @@
 _hkgname=process-extras
 pkgname=haskell-process-extras
 pkgver=0.7.2
-pkgrel=14
+pkgrel=15
 pkgdesc="Process extras"
 url="https://github.com/seereason/process-extras;
 license=('MIT')


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 06:49:07
  Author: felixonmars
Revision: 287931

upgpkg: haskell-listlike 4.6-4

rebuild with semigroups,0.18.4

Modified:
  haskell-listlike/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 06:46:50 UTC (rev 287930)
+++ PKGBUILD2018-01-30 06:49:07 UTC (rev 287931)
@@ -4,7 +4,7 @@
 _hkgname=ListLike
 pkgname=haskell-listlike
 pkgver=4.6
-pkgrel=3
+pkgrel=4
 pkgdesc="Generic support for list-like structures"
 url="https://github.com/sjoerdvisscher/listlike;
 license=('custom:BSD3')


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 06:52:46
  Author: felixonmars
Revision: 287937

upgpkg: cblrepo 0.24.0-55

rebuild with semigroups,0.18.4

Modified:
  cblrepo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 06:51:49 UTC (rev 287936)
+++ PKGBUILD2018-01-30 06:52:46 UTC (rev 287937)
@@ -3,7 +3,7 @@
 
 pkgname=cblrepo
 pkgver=0.24.0
-pkgrel=54
+pkgrel=55
 pkgdesc="Tool to maintain a database of CABAL packages and their dependencies"
 url="https://github.com/magthe/cblrepo;
 license=("Apache")


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 06:53:28
  Author: felixonmars
Revision: 287938

archrelease: copy trunk to community-staging-x86_64

Added:
  cblrepo/repos/community-staging-x86_64/
  cblrepo/repos/community-staging-x86_64/PKGBUILD
(from rev 287937, cblrepo/trunk/PKGBUILD)

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

Copied: cblrepo/repos/community-staging-x86_64/PKGBUILD (from rev 287937, 
cblrepo/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-30 06:53:28 UTC (rev 287938)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=cblrepo
+pkgver=0.24.0
+pkgrel=55
+pkgdesc="Tool to maintain a database of CABAL packages and their dependencies"
+url="https://github.com/magthe/cblrepo;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-ansi-wl-pprint" "haskell-mtl" 
"haskell-optparse-applicative"
+ "haskell-safe" "haskell-stringsearch" "haskell-tar" "haskell-text" 
"haskell-unixutils"
+ "haskell-utf8-string" "haskell-vector" "haskell-zlib")
+makedepends=('ghc')
+source=("https://github.com/MaskRay/cblrepo/archive/771cb062435b7ef5511f77187f051b1a0e908f69.tar.gz;)
+sha256sums=('cc671f14ddb9cf1eea5f04be0d97fb8600da8551b56440375838079aa8bccb71')
+
+prepare() {
+mv cblrepo-771cb062435b7ef5511f77187f051b1a0e908f69 cblrepo-$pkgver
+sed -i 's/optparse-applicative ==0.13.*,/optparse-applicative >=0.13,/' 
cblrepo-$pkgver/cblrepo.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/share
+}


[arch-commits] Commit in haskell-bytestring-strict-builder/trunk (PKGBUILD)

2018-01-29 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 06:57:39
  Author: felixonmars
Revision: 287943

upgpkg: haskell-bytestring-strict-builder 0.4.5-7

rebuild with semigroups,0.18.4

Modified:
  haskell-bytestring-strict-builder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 06:56:59 UTC (rev 287942)
+++ PKGBUILD2018-01-30 06:57:39 UTC (rev 287943)
@@ -4,7 +4,7 @@
 _hkgname=bytestring-strict-builder
 pkgname=haskell-bytestring-strict-builder
 pkgver=0.4.5
-pkgrel=6
+pkgrel=7
 pkgdesc="An efficient strict bytestring builder"
 url="https://github.com/nikita-volkov/bytestring-strict-builder;
 license=('MIT')


[arch-commits] Commit in haskell-bytestring-tree-builder/trunk (PKGBUILD)

2018-01-29 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 06:58:46
  Author: felixonmars
Revision: 287945

upgpkg: haskell-bytestring-tree-builder 0.2.7.1-10

rebuild with semigroups,0.18.4

Modified:
  haskell-bytestring-tree-builder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 06:58:05 UTC (rev 287944)
+++ PKGBUILD2018-01-30 06:58:46 UTC (rev 287945)
@@ -5,7 +5,7 @@
 _hkgname=bytestring-tree-builder
 pkgname=haskell-bytestring-tree-builder
 pkgver=0.2.7.1
-pkgrel=9
+pkgrel=10
 pkgdesc="A very efficient ByteString builder implementation based on the 
binary tree"
 url="https://github.com/nikita-volkov/bytestring-tree-builder;
 license=("MIT")


[arch-commits] Commit in haskell-bytestring-strict-builder/repos (2 files)

2018-01-29 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 06:58:05
  Author: felixonmars
Revision: 287944

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-bytestring-strict-builder/repos/community-staging-x86_64/
  haskell-bytestring-strict-builder/repos/community-staging-x86_64/PKGBUILD
(from rev 287943, haskell-bytestring-strict-builder/trunk/PKGBUILD)

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

Copied: 
haskell-bytestring-strict-builder/repos/community-staging-x86_64/PKGBUILD (from 
rev 287943, haskell-bytestring-strict-builder/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-30 06:58:05 UTC (rev 287944)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=bytestring-strict-builder
+pkgname=haskell-bytestring-strict-builder
+pkgver=0.4.5
+pkgrel=7
+pkgdesc="An efficient strict bytestring builder"
+url="https://github.com/nikita-volkov/bytestring-strict-builder;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-prelude' 'haskell-semigroups')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('b1e0a551abf663daeaf71cb36e883e5b3db0a5112d7190d0743a5ed26aa334d3fede5be8c35dc2821d24d1fd88eae1de7e4983cc31bdc5c14960defc0ce47bcd')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 06:59:58
  Author: felixonmars
Revision: 287947

upgpkg: haskell-charset 0.3.7.1-24

rebuild with semigroups,0.18.4

Modified:
  haskell-charset/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 06:59:11 UTC (rev 287946)
+++ PKGBUILD2018-01-30 06:59:58 UTC (rev 287947)
@@ -5,7 +5,7 @@
 _hkgname=charset
 pkgname=haskell-charset
 pkgver=0.3.7.1
-pkgrel=23
+pkgrel=24
 pkgdesc="A compatibility layer for base"
 url="https://github.com/ekmett/charset;
 license=("custom:BSD3")


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 07:00:22
  Author: felixonmars
Revision: 287948

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-charset/repos/community-staging-x86_64/PKGBUILD (from rev 
287947, haskell-charset/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-30 07:00:22 UTC (rev 287948)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=charset
+pkgname=haskell-charset
+pkgver=0.3.7.1
+pkgrel=24
+pkgdesc="A compatibility layer for base"
+url="https://github.com/ekmett/charset;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-semigroups" "haskell-unordered-containers")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('594e71a5d6ced52e1491368611775bda106119b82025e84fc97078753358af7d9f6c22b99291dd51a990ff223c4582f913e01d829418f8918652c3c9fc495792')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in haskell-bytestring-tree-builder/repos (2 files)

2018-01-29 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 06:59:11
  Author: felixonmars
Revision: 287946

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-bytestring-tree-builder/repos/community-staging-x86_64/
  haskell-bytestring-tree-builder/repos/community-staging-x86_64/PKGBUILD
(from rev 287945, haskell-bytestring-tree-builder/trunk/PKGBUILD)

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

Copied: haskell-bytestring-tree-builder/repos/community-staging-x86_64/PKGBUILD 
(from rev 287945, haskell-bytestring-tree-builder/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-30 06:59:11 UTC (rev 287946)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=bytestring-tree-builder
+pkgname=haskell-bytestring-tree-builder
+pkgver=0.2.7.1
+pkgrel=10
+pkgdesc="A very efficient ByteString builder implementation based on the 
binary tree"
+url="https://github.com/nikita-volkov/bytestring-tree-builder;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-base-prelude" "haskell-semigroups" "haskell-text")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('cf522d6c13bb2fd6b23e0b78abec5836c20d19effcceb184646aa885df12c665738a9134b0cf6c8f5b30d05606c1a0880829600181342c678bb8ab32a9f3765d')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 07:02:53
  Author: felixonmars
Revision: 287951

upgpkg: python-peewee 3.0.2-1

Modified:
  python-peewee/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 07:01:22 UTC (rev 287950)
+++ PKGBUILD2018-01-30 07:02:53 UTC (rev 287951)
@@ -6,7 +6,7 @@
 
 pkgbase=python-peewee
 pkgname=('python-peewee' 'python2-peewee')
-pkgver=3.0.0
+pkgver=3.0.2
 pkgrel=1
 pkgdesc="a little orm"
 url="https://pypi.python.org/pypi/peewee/;
@@ -16,7 +16,7 @@
 checkdepends=('python-apsw' 'python2-apsw' 'python-flask' 'python2-flask')
  # 'python-psycopg2' 'python2-psycopg2')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/coleifer/peewee/archive/$pkgver.tar.gz;)
-sha512sums=('8e9ee514fb26042e4cc036a53cd7cbe92143c257f1e4920e2473e4958dd222bcbee7bb3b487267eeb29dd01dd921219d265c2b7b46d3cd34ee7d792e8c56448e')
+sha512sums=('fca0a1760e7b7c852b4ac03a931465924855f6c8f156ae49d19d5352671233749f31e59f70863b7680b8e908246f8ea8a2ffd859a3f3a302ca004922c194d0f9')
 
 prepare() {
   cp -a peewee-$pkgver{,-py2}


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 07:04:57
  Author: felixonmars
Revision: 287955

upgpkg: python-keyring 11.0.0-1

Modified:
  python-keyring/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 07:04:39 UTC (rev 287954)
+++ PKGBUILD2018-01-30 07:04:57 UTC (rev 287955)
@@ -8,7 +8,7 @@
 
 pkgbase=python-keyring
 pkgname=('python-keyring' 'python2-keyring')
-pkgver=10.6.0
+pkgver=11.0.0
 pkgrel=1
 pkgdesc="Store and access your passwords safely."
 arch=('any')
@@ -18,7 +18,7 @@
 makedepends=('python-setuptools_scm' 'python2-setuptools_scm' 
'python-secretstorage'
  'python2-secretstorage')
 checkdepends=('python-pytest-runner' 'python2-pytest-runner')
-sha512sums=('56e9c11ac6d50d22ca74f6d677eb24da876a27c84501d8be4ad0cee44356a67213a7d255e0fdab1343411b75b55e9ab50210d0ae95879ae9f3acb8cbe73f9848')
+sha512sums=('d4937e84e6de18ed8fcba02d2d297ecc5a6434623c362f5608141041acbc7bc27fbf94e54a5a503a02b725df737fa8505d0d91e2c3e84298fa4044d7dc99f207')
 
 prepare() {
   cp -a keyring-$pkgver{,-py2}


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 07:04:39
  Author: felixonmars
Revision: 287954

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-conduit-combinators/repos/community-staging-x86_64/
  haskell-conduit-combinators/repos/community-staging-x86_64/PKGBUILD
(from rev 287953, haskell-conduit-combinators/trunk/PKGBUILD)

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

Copied: haskell-conduit-combinators/repos/community-staging-x86_64/PKGBUILD 
(from rev 287953, haskell-conduit-combinators/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-30 07:04:39 UTC (rev 287954)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=conduit-combinators
+pkgname=haskell-conduit-combinators
+pkgver=1.1.2
+pkgrel=18
+pkgdesc="Commonly used conduit functions, for both chunked and unchunked data"
+url="https://github.com/snoyberg/mono-traversable;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base16-bytestring' 'haskell-base64-bytestring' 
'haskell-chunked-data'
+ 'haskell-conduit' 'haskell-conduit-extra' 'haskell-monad-control'
+ 'haskell-mono-traversable' 'haskell-mwc-random' 'haskell-primitive' 
'haskell-resourcet'
+ 'haskell-text' 'haskell-transformers-base' 'haskell-unix-compat' 
'haskell-vector'
+ 'haskell-void')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-hspec' 'haskell-mtl' 
'haskell-safe'
+ 'haskell-silently')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('7ece12d0af700f2fe903f044857d0ae754bd205b427dc63f2e8749b18e2fbdbd3c1727df742618ef5019abb25ffbf2dec9ba59a6c2f996e0e502eb2f7a6499ba')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fmonotrav1
+LC_CTYPE=en_US.UTF-8 runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 07:05:33
  Author: felixonmars
Revision: 287957

upgpkg: haskell-comonad 5.0.2-6

rebuild with semigroups,0.18.4

Modified:
  haskell-comonad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 07:05:24 UTC (rev 287956)
+++ PKGBUILD2018-01-30 07:05:33 UTC (rev 287957)
@@ -5,7 +5,7 @@
 _hkgname=comonad
 pkgname=haskell-comonad
 pkgver=5.0.2
-pkgrel=5
+pkgrel=6
 pkgdesc="Comonads"
 url="https://github.com/ekmett/comonad/;
 license=("custom:BSD3")


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 07:05:24
  Author: felixonmars
Revision: 287956

archrelease: copy trunk to community-testing-any

Added:
  python-keyring/repos/community-testing-any/
  python-keyring/repos/community-testing-any/PKGBUILD
(from rev 287955, python-keyring/trunk/PKGBUILD)

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

Copied: python-keyring/repos/community-testing-any/PKGBUILD (from rev 287955, 
python-keyring/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2018-01-30 07:05:24 UTC (rev 287956)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Johannes Dewender  arch at JonnyJD dot net
+# Contributor: Ivan Sichmann Freitas 
+# Contributor: Brice Maron 
+# Contributor: Nuno Araujo 
+# Contributor: Steven Allen 
+
+pkgbase=python-keyring
+pkgname=('python-keyring' 'python2-keyring')
+pkgver=11.0.0
+pkgrel=1
+pkgdesc="Store and access your passwords safely."
+arch=('any')
+url="http://pypi.python.org/pypi/keyring;
+license=('PSF' 'MIT')
+source=("https://pypi.io/packages/source/k/keyring/keyring-$pkgver.tar.gz;)
+makedepends=('python-setuptools_scm' 'python2-setuptools_scm' 
'python-secretstorage'
+ 'python2-secretstorage')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+sha512sums=('d4937e84e6de18ed8fcba02d2d297ecc5a6434623c362f5608141041acbc7bc27fbf94e54a5a503a02b725df737fa8505d0d91e2c3e84298fa4044d7dc99f207')
+
+prepare() {
+  cp -a keyring-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/keyring-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/keyring-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/keyring-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/keyring-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-keyring() {
+  depends=('python-setuptools' 'python-secretstorage')
+  optdepends=('python-keyrings-alt: Alternative backends')
+
+  cd keyring-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-keyring() {
+  depends=('python2-setuptools' 'python2-secretstorage')
+  optdepends=('python2-keyrings-alt: Alternative backends')
+
+  cd keyring-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  mv "$pkgdir"/usr/bin/keyring{,2}
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 07:09:14
  Author: felixonmars
Revision: 287962

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-descriptive/repos/community-staging-x86_64/PKGBUILD (from rev 
287961, haskell-descriptive/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-30 07:09:14 UTC (rev 287962)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=descriptive
+pkgname=haskell-descriptive
+pkgver=0.9.4
+pkgrel=74
+pkgdesc="Self-describing consumers/parsers; forms, cmd-line args, JSON, etc."
+url="https://github.com/chrisdone/descriptive;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-bifunctors" "haskell-mtl" 
"haskell-scientific"
+ "haskell-text" "haskell-vector")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('795ec65756bf87ec6ea4c92d85a25d0eb0d8cfa1df40685ddcf74b83099bba2f')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE" 
+}


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 07:08:34
  Author: felixonmars
Revision: 287961

upgpkg: haskell-descriptive 0.9.4-74

rebuild with semigroups,0.18.4

Modified:
  haskell-descriptive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 07:07:24 UTC (rev 287960)
+++ PKGBUILD2018-01-30 07:08:34 UTC (rev 287961)
@@ -5,7 +5,7 @@
 _hkgname=descriptive
 pkgname=haskell-descriptive
 pkgver=0.9.4
-pkgrel=73
+pkgrel=74
 pkgdesc="Self-describing consumers/parsers; forms, cmd-line args, JSON, etc."
 url="https://github.com/chrisdone/descriptive;
 license=("custom:BSD3")


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 07:11:20
  Author: felixonmars
Revision: 287963

upgpkg: haskell-criterion 1.3.0.0-7

rebuild with semigroups,0.18.4

Modified:
  haskell-criterion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 07:09:14 UTC (rev 287962)
+++ PKGBUILD2018-01-30 07:11:20 UTC (rev 287963)
@@ -5,7 +5,7 @@
 _hkgname=criterion
 pkgname=haskell-criterion
 pkgver=1.3.0.0
-pkgrel=6
+pkgrel=7
 pkgdesc="Robust, reliable performance measurement and analysis"
 url="http://www.serpentine.com/criterion;
 license=("custom:BSD3")


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

2018-01-29 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 07:13:10
  Author: felixonmars
Revision: 287966

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hjsonpointer/repos/community-staging-x86_64/PKGBUILD (from rev 
287965, haskell-hjsonpointer/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-30 07:13:10 UTC (rev 287966)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hjsonpointer
+pkgname=haskell-hjsonpointer
+pkgver=1.3.0
+pkgrel=6
+pkgdesc="JSON Pointer library"
+url="https://github.com/haskell-foundation/foundation;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-hashable' 'haskell-quickcheck'
+ 'haskell-unordered-containers' 'haskell-semigroups' 'haskell-text' 
'haskell-vector')
+makedepends=('ghc' 'haskell-hspec' 'haskell-http-types')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('44fad6d263a8455cf6230e7e2ad8607a98e4368be3ddeeef538043ba205f4efad545338faee931283fe7e61732908347e017d9708b07192840206d665e5e7e5c')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "MIT-LICENSE.txt" 
"${pkgdir}/usr/share/licenses/${pkgname}/MIT-LICENSE.txt"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/MIT-LICENSE.txt"
+}


<    1   2   3   >