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

2017-09-16 Thread Sven-Hendrik Haase
Date: Sunday, September 17, 2017 @ 01:08:57
  Author: svenstaro
Revision: 258585

upgpkg: blender 17:2.79-3

boost 1.65.1 rebuild

Modified:
  blender/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 00:34:43 UTC (rev 258584)
+++ PKGBUILD2017-09-17 01:08:57 UTC (rev 258585)
@@ -17,7 +17,7 @@
 pkgname=blender
 pkgver=2.79
 #[[ -n $_gitcommit ]] && pkgver=${pkgver}.git1.${_gitcommit}
-pkgrel=2
+pkgrel=3
 epoch=17
 pkgdesc="A fully integrated 3D graphics creation suite"
 arch=('i686' 'x86_64')
@@ -68,6 +68,8 @@
 
   [[ $CARCH == i686 ]] && BUILDCUDA="OFF" || BUILDCUDA="ON"
 
+  export CFLAGS="${CFLAGS} -DOPENVDB_3_ABI_COMPATIBLE"
+  export CXXFLAGS="${CXXFLAGS} -DOPENVDB_3_ABI_COMPATIBLE"
   cmake -C../build_files/cmake/config/blender_release.cmake .. \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_BUILD_TYPE=Release \
@@ -86,7 +88,6 @@
 -DPYTHON_LIBPATH=/usr/lib \
 -DPYTHON_LIBRARY=python3.6m \
 -DPYTHON_INCLUDE_DIRS=/usr/include/python3.6m
-  # We need -DCUDA_NVCC_FLAGS="-D_BITS_FLOATN_H" for glibc 2.26
   make
 
   # PTEX is currently broken and experimental in blender anyway


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

2017-09-16 Thread Sven-Hendrik Haase
Date: Sunday, September 17, 2017 @ 01:09:17
  Author: svenstaro
Revision: 258586

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  blender/repos/community-staging-i686/
  blender/repos/community-staging-i686/PKGBUILD
(from rev 258585, blender/trunk/PKGBUILD)
  blender/repos/community-staging-x86_64/
  blender/repos/community-staging-x86_64/PKGBUILD
(from rev 258585, blender/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |  103 
 community-staging-x86_64/PKGBUILD |  103 
 2 files changed, 206 insertions(+)

Copied: blender/repos/community-staging-i686/PKGBUILD (from rev 258585, 
blender/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-17 01:09:17 UTC (rev 258586)
@@ -0,0 +1,103 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: John Sowiak 
+# Contributor: tobias 
+
+# Sometimes blender.org takes some time to release patch releases and because 
Arch users
+# are impatient, we sometimes need to build from git directly.
+# Update because I get so many queries on this:
+# Due to our other rolling deps, it's sometimes not possible to build Blender 
stable releases.
+# More often than not, a new openshadinglanguage breaks it and I could either 
backport fixes
+# or simply roll with a new version. I usually choose the latter when the 
former seems
+# unreasonable.
+
+ _gittag=v2.79
+#_gitcommit=3c3d0898b0c1a1d7da70f4a1778d4360b3cfe5c8
+
+pkgname=blender
+pkgver=2.79
+#[[ -n $_gitcommit ]] && pkgver=${pkgver}.git1.${_gitcommit}
+pkgrel=3
+epoch=17
+pkgdesc="A fully integrated 3D graphics creation suite"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.blender.org;
+depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' 
'python-requests'
+ 'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 'openjpeg'
+ 'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada' 
'alembic'
+ 'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage'
+ 'jemalloc' 'libspnav' 'ptex' 'opensubdiv' 'openvdb' 'log4cplus' 
'sdl2')
+makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm35' 'gcc5')
+makedepends_x86_64=('cuda')
+optdepends=('cuda: cycles renderer cuda support')
+options=(!strip)
+source=("git://git.blender.org/blender-addons.git"
+"git://git.blender.org/blender-addons-contrib.git"
+"git://git.blender.org/blender-translations.git"
+"git://git.blender.org/blender-dev-tools.git"
+"git://git.blender.org/scons.git")
+if [[ -n $_gittag ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#tag=${_gittag}")
+elif [[ -n $_gitcommit ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#commit=${_gitcommit}")
+fi
+md5sums=('SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  git submodule init
+  git config submodule."release/scripts/addons".url ${srcdir}/blender-addons
+  git config submodule."release/scripts/addons_contrib".url 
${srcdir}/blender-addons-contrib
+  git config submodule."release/datafiles/locale".url 
${srcdir}/blender-translations
+  git config submodule."source/tools".url ${srcdir}/blender-dev-tools
+  git config submodule."scons".url ${srcdir}/scons
+  git submodule update
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  mkdir build && cd build
+
+  [[ $CARCH == i686 ]] && BUILDCUDA="OFF" || BUILDCUDA="ON"
+
+  export CFLAGS="${CFLAGS} -DOPENVDB_3_ABI_COMPATIBLE"
+  export CXXFLAGS="${CXXFLAGS} -DOPENVDB_3_ABI_COMPATIBLE"
+  cmake -C../build_files/cmake/config/blender_release.cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DWITH_INSTALL_PORTABLE=OFF \
+-DWITH_PYTHON_INSTALL=OFF \
+-DOPENIMAGEIO_ROOT_DIR=/usr \
+-DWITH_LLVM=ON \
+-DWITH_SYSTEM_OPENJPEG=ON \
+-DWITH_GL_PROFILE_CORE=OFF \
+-DWITH_GL_PROFILE_ES20=OFF \
+-DLLVM_VERSION=3.6 \
+-DLLVM_STATIC=ON \
+-DWITH_CYCLES_CUDA_BINARIES=$BUILDCUDA \
+-DWITH_CYCLES_PTEX=OFF \
+-DPYTHON_VERSION=3.6 \
+-DPYTHON_LIBPATH=/usr/lib \
+-DPYTHON_LIBRARY=python3.6m \
+-DPYTHON_INCLUDE_DIRS=/usr/include/python3.6m
+  make
+
+  # PTEX is currently broken and experimental in blender anyway
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver/build"
+
+  make DESTDIR="${pkgdir}" install
+  install -Dm755 ../release/bin/blender-softwaregl 
"${pkgdir}/usr/bin/blender-softwaregl"
+  python -m compileall "${pkgdir}/usr/share/blender"
+  python -O -m compileall "${pkgdir}/usr/share/blender"
+}

Copied: blender/repos/community-staging-x86_64/PKGBUILD (from rev 

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

2017-09-16 Thread Kyle Keen
Date: Sunday, September 17, 2017 @ 00:34:43
  Author: kkeen
Revision: 258584

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  gqrx/repos/community-staging-i686/PKGBUILD
(from rev 258583, gqrx/trunk/PKGBUILD)
  gqrx/repos/community-staging-x86_64/PKGBUILD
(from rev 258583, gqrx/trunk/PKGBUILD)
Deleted:
  gqrx/repos/community-staging-i686/PKGBUILD
  gqrx/repos/community-staging-x86_64/PKGBUILD

---+
 /PKGBUILD |  102 
 community-staging-i686/PKGBUILD   |   51 --
 community-staging-x86_64/PKGBUILD |   51 --
 3 files changed, 102 insertions(+), 102 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2017-09-17 00:34:20 UTC (rev 258583)
+++ community-staging-i686/PKGBUILD 2017-09-17 00:34:43 UTC (rev 258584)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Dominik Heidler 
-
-pkgname=gqrx
-pkgver=2.7
-pkgrel=2
-pkgdesc="Interactive SDR receiver waterfall for many devices."
-arch=('i686' 'x86_64')
-url="http://gqrx.dk/;
-license=('GPL')
-depends=('qt5-svg' 'libpulse' 'gnuradio-osmosdr' 'libxkbcommon-x11')
-makedepends=('boost')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/csete/gqrx/archive/v$pkgver.tar.gz;)
-md5sums=('cc9d918fab02e94457d9c85582ca3929')
-
-prepare() {
-  cd "$srcdir"
-  echo "StartupNotify=false" >> gqrx-$pkgver/gqrx.desktop
-  cp -r gqrx-$pkgver gqrx-$pkgver-alsa
-  cd gqrx-$pkgver-alsa
-  sed -i 's/AUDIO_BACKEND = pulse/#&/' gqrx.pro
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  rm -rf build
-  mkdir build
-  cd build
-  qmake PREFIX=/usr/ ..
-  make
-  cd "$srcdir/$pkgname-$pkgver-alsa"
-  rm -rf build
-  mkdir build
-  cd build
-  qmake PREFIX=/usr/ ..
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  install -Dm644 "$pkgname.desktop" 
"$pkgdir/usr/share/applications/$pkgname.desktop"
-  install -Dm644 "resources/icons/gqrx.svg" 
"$pkgdir/usr/share/pixmaps/gqrx.svg"
-
-  cd "$srcdir/$pkgname-$pkgver/build"
-  make install INSTALL_ROOT="$pkgdir"
-
-  cd "$srcdir/$pkgname-$pkgver-alsa/build"
-  install -Dm755 gqrx "$pkgdir/usr/bin/gqrx-alsa"
-}
-

Copied: gqrx/repos/community-staging-i686/PKGBUILD (from rev 258583, 
gqrx/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-17 00:34:43 UTC (rev 258584)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+
+pkgname=gqrx
+pkgver=2.8
+pkgrel=2
+pkgdesc="Interactive SDR receiver waterfall for many devices."
+arch=('i686' 'x86_64')
+url="http://gqrx.dk/;
+license=('GPL')
+depends=('qt5-svg' 'libpulse' 'gnuradio-osmosdr' 'libxkbcommon-x11')
+makedepends=('boost')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/csete/gqrx/archive/v$pkgver.tar.gz;)
+md5sums=('0ccc2d9d78c5e7d21ca09f4c07c426a4')
+
+prepare() {
+  cd "$srcdir"
+  echo "StartupNotify=false" >> gqrx-$pkgver/gqrx.desktop
+  cp -r gqrx-$pkgver gqrx-$pkgver-alsa
+  cd gqrx-$pkgver-alsa
+  sed -i 's/AUDIO_BACKEND = pulse/#&/' gqrx.pro
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  rm -rf build
+  mkdir build
+  cd build
+  qmake PREFIX=/usr/ ..
+  make
+  cd "$srcdir/$pkgname-$pkgver-alsa"
+  rm -rf build
+  mkdir build
+  cd build
+  qmake PREFIX=/usr/ ..
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  install -Dm644 "$pkgname.desktop" 
"$pkgdir/usr/share/applications/$pkgname.desktop"
+  install -Dm644 "resources/icons/gqrx.svg" 
"$pkgdir/usr/share/pixmaps/gqrx.svg"
+
+  cd "$srcdir/$pkgname-$pkgver/build"
+  make install INSTALL_ROOT="$pkgdir"
+
+  cd "$srcdir/$pkgname-$pkgver-alsa/build"
+  install -Dm755 gqrx "$pkgdir/usr/bin/gqrx-alsa"
+}
+

Deleted: community-staging-x86_64/PKGBUILD
===
--- community-staging-x86_64/PKGBUILD   2017-09-17 00:34:20 UTC (rev 258583)
+++ community-staging-x86_64/PKGBUILD   2017-09-17 00:34:43 UTC (rev 258584)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Dominik Heidler 
-
-pkgname=gqrx
-pkgver=2.7
-pkgrel=2
-pkgdesc="Interactive SDR receiver waterfall for many devices."
-arch=('i686' 'x86_64')
-url="http://gqrx.dk/;
-license=('GPL')
-depends=('qt5-svg' 'libpulse' 'gnuradio-osmosdr' 'libxkbcommon-x11')
-makedepends=('boost')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/csete/gqrx/archive/v$pkgver.tar.gz;)
-md5sums=('cc9d918fab02e94457d9c85582ca3929')
-
-prepare() {
-  cd "$srcdir"
-  echo "StartupNotify=false" >> gqrx-$pkgver/gqrx.desktop
-  cp -r gqrx-$pkgver gqrx-$pkgver-alsa
-  cd gqrx-$pkgver-alsa
-  sed -i 

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

2017-09-16 Thread Kyle Keen
Date: Sunday, September 17, 2017 @ 00:34:20
  Author: kkeen
Revision: 258583

boost 1.65.1 rebuild

Modified:
  gqrx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-17 00:29:07 UTC (rev 258582)
+++ PKGBUILD2017-09-17 00:34:20 UTC (rev 258583)
@@ -4,7 +4,7 @@
 
 pkgname=gqrx
 pkgver=2.8
-pkgrel=1
+pkgrel=2
 pkgdesc="Interactive SDR receiver waterfall for many devices."
 arch=('i686' 'x86_64')
 url="http://gqrx.dk/;


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

2017-09-16 Thread Kyle Keen
Date: Sunday, September 17, 2017 @ 00:29:07
  Author: kkeen
Revision: 258582

archrelease: copy trunk to community-i686, community-x86_64

Added:
  gqrx/repos/community-i686/PKGBUILD
(from rev 258581, gqrx/trunk/PKGBUILD)
  gqrx/repos/community-x86_64/PKGBUILD
(from rev 258581, gqrx/trunk/PKGBUILD)
Deleted:
  gqrx/repos/community-i686/PKGBUILD
  gqrx/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  102 
 community-i686/PKGBUILD   |   51 --
 community-x86_64/PKGBUILD |   51 --
 3 files changed, 102 insertions(+), 102 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-17 00:28:47 UTC (rev 258581)
+++ community-i686/PKGBUILD 2017-09-17 00:29:07 UTC (rev 258582)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Dominik Heidler 
-
-pkgname=gqrx
-pkgver=2.7
-pkgrel=1
-pkgdesc="Interactive SDR receiver waterfall for many devices."
-arch=('i686' 'x86_64')
-url="http://gqrx.dk/;
-license=('GPL')
-depends=('qt5-svg' 'libpulse' 'gnuradio-osmosdr' 'libxkbcommon-x11')
-makedepends=('boost')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/csete/gqrx/archive/v$pkgver.tar.gz;)
-md5sums=('cc9d918fab02e94457d9c85582ca3929')
-
-prepare() {
-  cd "$srcdir"
-  echo "StartupNotify=false" >> gqrx-$pkgver/gqrx.desktop
-  cp -r gqrx-$pkgver gqrx-$pkgver-alsa
-  cd gqrx-$pkgver-alsa
-  sed -i 's/AUDIO_BACKEND = pulse/#&/' gqrx.pro
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  rm -rf build
-  mkdir build
-  cd build
-  qmake PREFIX=/usr/ ..
-  make
-  cd "$srcdir/$pkgname-$pkgver-alsa"
-  rm -rf build
-  mkdir build
-  cd build
-  qmake PREFIX=/usr/ ..
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  install -Dm644 "$pkgname.desktop" 
"$pkgdir/usr/share/applications/$pkgname.desktop"
-  install -Dm644 "resources/icons/gqrx.svg" 
"$pkgdir/usr/share/pixmaps/gqrx.svg"
-
-  cd "$srcdir/$pkgname-$pkgver/build"
-  make install INSTALL_ROOT="$pkgdir"
-
-  cd "$srcdir/$pkgname-$pkgver-alsa/build"
-  install -Dm755 gqrx "$pkgdir/usr/bin/gqrx-alsa"
-}
-

Copied: gqrx/repos/community-i686/PKGBUILD (from rev 258581, 
gqrx/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-17 00:29:07 UTC (rev 258582)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+
+pkgname=gqrx
+pkgver=2.8
+pkgrel=1
+pkgdesc="Interactive SDR receiver waterfall for many devices."
+arch=('i686' 'x86_64')
+url="http://gqrx.dk/;
+license=('GPL')
+depends=('qt5-svg' 'libpulse' 'gnuradio-osmosdr' 'libxkbcommon-x11')
+makedepends=('boost')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/csete/gqrx/archive/v$pkgver.tar.gz;)
+md5sums=('0ccc2d9d78c5e7d21ca09f4c07c426a4')
+
+prepare() {
+  cd "$srcdir"
+  echo "StartupNotify=false" >> gqrx-$pkgver/gqrx.desktop
+  cp -r gqrx-$pkgver gqrx-$pkgver-alsa
+  cd gqrx-$pkgver-alsa
+  sed -i 's/AUDIO_BACKEND = pulse/#&/' gqrx.pro
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  rm -rf build
+  mkdir build
+  cd build
+  qmake PREFIX=/usr/ ..
+  make
+  cd "$srcdir/$pkgname-$pkgver-alsa"
+  rm -rf build
+  mkdir build
+  cd build
+  qmake PREFIX=/usr/ ..
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  install -Dm644 "$pkgname.desktop" 
"$pkgdir/usr/share/applications/$pkgname.desktop"
+  install -Dm644 "resources/icons/gqrx.svg" 
"$pkgdir/usr/share/pixmaps/gqrx.svg"
+
+  cd "$srcdir/$pkgname-$pkgver/build"
+  make install INSTALL_ROOT="$pkgdir"
+
+  cd "$srcdir/$pkgname-$pkgver-alsa/build"
+  install -Dm755 gqrx "$pkgdir/usr/bin/gqrx-alsa"
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-17 00:28:47 UTC (rev 258581)
+++ community-x86_64/PKGBUILD   2017-09-17 00:29:07 UTC (rev 258582)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Dominik Heidler 
-
-pkgname=gqrx
-pkgver=2.7
-pkgrel=1
-pkgdesc="Interactive SDR receiver waterfall for many devices."
-arch=('i686' 'x86_64')
-url="http://gqrx.dk/;
-license=('GPL')
-depends=('qt5-svg' 'libpulse' 'gnuradio-osmosdr' 'libxkbcommon-x11')
-makedepends=('boost')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/csete/gqrx/archive/v$pkgver.tar.gz;)
-md5sums=('cc9d918fab02e94457d9c85582ca3929')
-
-prepare() {
-  cd "$srcdir"
-  echo "StartupNotify=false" >> gqrx-$pkgver/gqrx.desktop
-  cp -r gqrx-$pkgver gqrx-$pkgver-alsa
-  cd gqrx-$pkgver-alsa
-  sed -i 's/AUDIO_BACKEND = pulse/#&/' gqrx.pro
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  rm -rf build
-  mkdir build
-  cd build
-  qmake 

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

2017-09-16 Thread Kyle Keen
Date: Sunday, September 17, 2017 @ 00:28:47
  Author: kkeen
Revision: 258581

upgpkg: gqrx 2.8-1

Modified:
  gqrx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 23:09:59 UTC (rev 258580)
+++ PKGBUILD2017-09-17 00:28:47 UTC (rev 258581)
@@ -3,8 +3,8 @@
 # Contributor: Dominik Heidler 
 
 pkgname=gqrx
-pkgver=2.7
-pkgrel=2
+pkgver=2.8
+pkgrel=1
 pkgdesc="Interactive SDR receiver waterfall for many devices."
 arch=('i686' 'x86_64')
 url="http://gqrx.dk/;
@@ -12,7 +12,7 @@
 depends=('qt5-svg' 'libpulse' 'gnuradio-osmosdr' 'libxkbcommon-x11')
 makedepends=('boost')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/csete/gqrx/archive/v$pkgver.tar.gz;)
-md5sums=('cc9d918fab02e94457d9c85582ca3929')
+md5sums=('0ccc2d9d78c5e7d21ca09f4c07c426a4')
 
 prepare() {
   cd "$srcdir"


[arch-commits] Commit in freetype2/repos (16 files)

2017-09-16 Thread Jan Steffens
Date: Saturday, September 16, 2017 @ 23:49:20
  Author: heftig
Revision: 305704

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  freetype2/repos/testing-i686/
  freetype2/repos/testing-i686/0001-Enable-table-validation-modules.patch
(from rev 305703, 
freetype2/trunk/0001-Enable-table-validation-modules.patch)
  freetype2/repos/testing-i686/0003-Enable-infinality-subpixel-hinting.patch
(from rev 305703, 
freetype2/trunk/0003-Enable-infinality-subpixel-hinting.patch)
  freetype2/repos/testing-i686/0004-Enable-long-PCF-family-names.patch
(from rev 305703, freetype2/trunk/0004-Enable-long-PCF-family-names.patch)
  freetype2/repos/testing-i686/0005-freetype-2.5.2-more-demos.patch
(from rev 305703, freetype2/trunk/0005-freetype-2.5.2-more-demos.patch)
  freetype2/repos/testing-i686/PKGBUILD
(from rev 305703, freetype2/trunk/PKGBUILD)
  freetype2/repos/testing-i686/freetype2.install
(from rev 305703, freetype2/trunk/freetype2.install)
  freetype2/repos/testing-i686/freetype2.sh
(from rev 305703, freetype2/trunk/freetype2.sh)
  freetype2/repos/testing-x86_64/
  freetype2/repos/testing-x86_64/0001-Enable-table-validation-modules.patch
(from rev 305703, 
freetype2/trunk/0001-Enable-table-validation-modules.patch)
  freetype2/repos/testing-x86_64/0003-Enable-infinality-subpixel-hinting.patch
(from rev 305703, 
freetype2/trunk/0003-Enable-infinality-subpixel-hinting.patch)
  freetype2/repos/testing-x86_64/0004-Enable-long-PCF-family-names.patch
(from rev 305703, freetype2/trunk/0004-Enable-long-PCF-family-names.patch)
  freetype2/repos/testing-x86_64/0005-freetype-2.5.2-more-demos.patch
(from rev 305703, freetype2/trunk/0005-freetype-2.5.2-more-demos.patch)
  freetype2/repos/testing-x86_64/PKGBUILD
(from rev 305703, freetype2/trunk/PKGBUILD)
  freetype2/repos/testing-x86_64/freetype2.install
(from rev 305703, freetype2/trunk/freetype2.install)
  freetype2/repos/testing-x86_64/freetype2.sh
(from rev 305703, freetype2/trunk/freetype2.sh)

--+
 testing-i686/0001-Enable-table-validation-modules.patch  |   49 
 testing-i686/0003-Enable-infinality-subpixel-hinting.patch   |   27 ++
 testing-i686/0004-Enable-long-PCF-family-names.patch |   25 ++
 testing-i686/0005-freetype-2.5.2-more-demos.patch|   17 +
 testing-i686/PKGBUILD|  100 ++
 testing-i686/freetype2.install   |8 
 testing-i686/freetype2.sh|   12 +
 testing-x86_64/0001-Enable-table-validation-modules.patch|   49 
 testing-x86_64/0003-Enable-infinality-subpixel-hinting.patch |   27 ++
 testing-x86_64/0004-Enable-long-PCF-family-names.patch   |   25 ++
 testing-x86_64/0005-freetype-2.5.2-more-demos.patch  |   17 +
 testing-x86_64/PKGBUILD  |  100 ++
 testing-x86_64/freetype2.install |8 
 testing-x86_64/freetype2.sh  |   12 +
 14 files changed, 476 insertions(+)

Copied: freetype2/repos/testing-i686/0001-Enable-table-validation-modules.patch 
(from rev 305703, freetype2/trunk/0001-Enable-table-validation-modules.patch)
===
--- testing-i686/0001-Enable-table-validation-modules.patch 
(rev 0)
+++ testing-i686/0001-Enable-table-validation-modules.patch 2017-09-16 
23:49:20 UTC (rev 305704)
@@ -0,0 +1,49 @@
+From 17dd2751813c3c8b37dac474cc5024473eb9bece Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Tue, 23 Jun 2015 08:40:29 +0200
+Subject: [PATCH 1/4] Enable table validation modules
+
+---
+ modules.cfg | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/modules.cfg b/modules.cfg
+index 517111efeb642459..64b2a34d510ce8f7 100644
+--- a/modules.cfg
 b/modules.cfg
+@@ -120,30 +120,30 @@ AUX_MODULES += cache
+ # TrueType GX/AAT table validation.  Needs ftgxval.c below.
+ #
+ # No FT_CONFIG_OPTION_PIC support.
+-# AUX_MODULES += gxvalid
++AUX_MODULES += gxvalid
+ 
+ # Support for streams compressed with gzip (files with suffix .gz).
+ #
+ # See include/freetype/ftgzip.h for the API.
+ # No FT_CONFIG_OPTION_PIC support.
+ AUX_MODULES += gzip
+ 
+ # Support for streams compressed with LZW (files with suffix .Z).
+ #
+ # See include/freetype/ftlzw.h for the API.
+ # No FT_CONFIG_OPTION_PIC support.
+ AUX_MODULES += lzw
+ 
+ # Support for streams compressed with bzip2 (files with suffix .bz2).
+ #
+ # See include/freetype/ftbzip2.h for the API.
+ # No FT_CONFIG_OPTION_PIC support.
+ AUX_MODULES += bzip2
+ 
+ # OpenType table validation.  Needs ftotval.c below.
+ #
+ # No FT_CONFIG_OPTION_PIC support.
+-# AUX_MODULES += otvalid
++AUX_MODULES += otvalid
+ 
+ # Auxiliary PostScript driver component to share 

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

2017-09-16 Thread Jan Steffens
Date: Saturday, September 16, 2017 @ 23:44:29
  Author: heftig
Revision: 305703

Whoops, pkgdesc

Modified:
  freetype2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 23:42:49 UTC (rev 305702)
+++ PKGBUILD2017-09-16 23:44:29 UTC (rev 305703)
@@ -89,7 +89,7 @@
 }
 
 package_freetype2-docs() {
-  pkgdesc="Freetype documentation, tools and demos"
+  pkgdesc="Freetype documentation"
   depends=('freetype2')
 
   cd freetype2


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

2017-09-16 Thread Jan Steffens
Date: Saturday, September 16, 2017 @ 23:42:49
  Author: heftig
Revision: 305702

Actually, just make a real docs package

Modified:
  freetype2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 23:38:51 UTC (rev 305701)
+++ PKGBUILD2017-09-16 23:42:49 UTC (rev 305702)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgbase=freetype2
-pkgname=('freetype2' 'freetype2-demos')
+pkgname=('freetype2' 'freetype2-demos' 'freetype2-docs')
 pkgver=2.8.1
 pkgrel=1
 pkgdesc="Font rasterization library"
@@ -78,7 +78,7 @@
 }
 
 package_freetype2-demos() {
-  pkgdesc="Freetype documentation, tools and demos"
+  pkgdesc="Freetype tools and demos"
   depends=('freetype2' 'libx11')
 
   cd freetype2-demos
@@ -86,10 +86,15 @@
   for _i in bin/{f,t}t*; do
 libtool --mode=install install $_i "${pkgdir}/usr/bin"
   done
+}
 
-  # Package docs
+package_freetype2-docs() {
+  pkgdesc="Freetype documentation, tools and demos"
+  depends=('freetype2')
+
+  cd freetype2
   install -d "${pkgdir}/usr/share/doc"
-  cp -a ../freetype2/docs "${pkgdir}/usr/share/doc/freetype2"
+  cp -a docs "${pkgdir}/usr/share/doc/freetype2"
 }
 
 # vim:set ts=2 sw=2 et:


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

2017-09-16 Thread Jan Steffens
Date: Saturday, September 16, 2017 @ 23:38:51
  Author: heftig
Revision: 305701

Move docs to the demos package

Not ideal, but the demos package was only ~160K before, making it rather 
pointless, size-wise,
compared to the 2.5M+ main package. Moving the docs makes the sizes much more 
reasonable.

Modified:
  freetype2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 23:25:44 UTC (rev 305700)
+++ PKGBUILD2017-09-16 23:38:51 UTC (rev 305701)
@@ -74,15 +74,11 @@
 
   cd freetype2
   make DESTDIR="${pkgdir}" install
-  install -Dm644 ../freetype2.sh "${pkgdir}/etc/profile.d/freetype2.sh"
-
-  # Package docs
-  install -d "${pkgdir}/usr/share/doc"
-  cp -a docs "${pkgdir}/usr/share/doc/freetype2"
+  install -Dt "${pkgdir}/etc/profile.d" -m644 ../freetype2.sh
 }
 
 package_freetype2-demos() {
-  pkgdesc="Freetype tools and demos"
+  pkgdesc="Freetype documentation, tools and demos"
   depends=('freetype2' 'libx11')
 
   cd freetype2-demos
@@ -90,6 +86,10 @@
   for _i in bin/{f,t}t*; do
 libtool --mode=install install $_i "${pkgdir}/usr/bin"
   done
+
+  # Package docs
+  install -d "${pkgdir}/usr/share/doc"
+  cp -a ../freetype2/docs "${pkgdir}/usr/share/doc/freetype2"
 }
 
 # vim:set ts=2 sw=2 et:


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

2017-09-16 Thread Jan Steffens
Date: Saturday, September 16, 2017 @ 23:25:44
  Author: heftig
Revision: 305700

2.8.1-1

Modified:
  freetype2/trunk/PKGBUILD
Deleted:
  freetype2/trunk/0002-Enable-subpixel-rendering.patch

--+
 0002-Enable-subpixel-rendering.patch |   25 -
 PKGBUILD |   13 +
 2 files changed, 5 insertions(+), 33 deletions(-)

Deleted: 0002-Enable-subpixel-rendering.patch
===
--- 0002-Enable-subpixel-rendering.patch2017-09-16 23:19:38 UTC (rev 
305699)
+++ 0002-Enable-subpixel-rendering.patch2017-09-16 23:25:44 UTC (rev 
305700)
@@ -1,25 +0,0 @@
-From a8f7f3068a8a5f94adfc77f4ddf03bf08da38f9b Mon Sep 17 00:00:00 2001
-From: "Jan Alexander Steffens (heftig)" 
-Date: Tue, 23 Jun 2015 08:43:07 +0200
-Subject: [PATCH 2/4] Enable subpixel rendering
-

- include/freetype/config/ftoption.h | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/include/freetype/config/ftoption.h 
b/include/freetype/config/ftoption.h
-index 1bf6e8f534ff0734..1126716626b570df 100644
 a/include/freetype/config/ftoption.h
-+++ b/include/freetype/config/ftoption.h
-@@ -122,7 +122,7 @@ FT_BEGIN_HEADER
-   /* This is done to allow FreeType clients to run unmodified, forcing */
-   /* them to display normal gray-level anti-aliased glyphs.*/
-   /*   */
--/* #define FT_CONFIG_OPTION_SUBPIXEL_RENDERING */
-+#define FT_CONFIG_OPTION_SUBPIXEL_RENDERING
- 
- 
-   /*/
--- 
-2.13.0
-

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 23:19:38 UTC (rev 305699)
+++ PKGBUILD2017-09-16 23:25:44 UTC (rev 305700)
@@ -3,8 +3,8 @@
 
 pkgbase=freetype2
 pkgname=('freetype2' 'freetype2-demos')
-pkgver=2.8
-pkgrel=2
+pkgver=2.8.1
+pkgrel=1
 pkgdesc="Font rasterization library"
 arch=(i686 x86_64)
 license=('GPL')
@@ -17,19 +17,17 @@
 
https://download-mirror.savannah.gnu.org/releases/freetype/freetype-doc-${pkgver}.tar.bz2{,.sig}
 
https://download-mirror.savannah.gnu.org/releases/freetype/ft2demos-${pkgver}.tar.bz2{,.sig}
 0001-Enable-table-validation-modules.patch
-0002-Enable-subpixel-rendering.patch
 0003-Enable-infinality-subpixel-hinting.patch
 0004-Enable-long-PCF-family-names.patch
 0005-freetype-2.5.2-more-demos.patch
 freetype2.sh)
-sha1sums=('42c6b1f733fe13a3eba135f5025b22cb68450f91'
+sha1sums=('417bb3747c4ac95b6f2652024a53fad45581fa1c'
   'SKIP'
-  '5b221ee14fe674cd5f6db0193d55360bc0bd3655'
+  '9ee079ee02e6b6895802104f58cd5e5be517dce7'
   'SKIP'
-  '7849f1ac4a352971fab61a5fc2e5c6a597201201'
+  '7fbae5708cc5edc97279f2a9db1b369d7ec619b6'
   'SKIP'
   'c3e91e668936206d3c158bffde0f69788a086a5b'
-  '4ff958229a7f87e04a9894d5a6ed2df227071931'
   '81586014ea44375ddc85dd9dbcabae6e91c34d62'
   '334f229875039794adeb574e27d365bb445fb314'
   '72cfecbe738085eec475e012617661ad0cc9b76f'
@@ -43,7 +41,6 @@
 
   cd freetype2
   patch -Np1 -i ../0001-Enable-table-validation-modules.patch
-  patch -Np1 -i ../0002-Enable-subpixel-rendering.patch
   patch -Np1 -i ../0003-Enable-infinality-subpixel-hinting.patch
   patch -Np1 -i ../0004-Enable-long-PCF-family-names.patch
 


[arch-commits] Commit in grub/repos (18 files)

2017-09-16 Thread Christian Hesse
Date: Saturday, September 16, 2017 @ 23:19:38
  Author: eworm
Revision: 305699

archrelease: copy trunk to testing-x86_64, testing-i686

Added:
  grub/repos/testing-i686/
  grub/repos/testing-i686/0002-intel-ucode.patch
(from rev 305698, grub/trunk/0002-intel-ucode.patch)
  grub/repos/testing-i686/0003-10_linux-detect-archlinux-initramfs.patch
(from rev 305698, grub/trunk/0003-10_linux-detect-archlinux-initramfs.patch)
  grub/repos/testing-i686/0004-add-GRUB_COLOR_variables.patch
(from rev 305698, grub/trunk/0004-add-GRUB_COLOR_variables.patch)
  
grub/repos/testing-i686/0005-Allow_GRUB_to_mount_ext234_filesystems_that_have_the_encryption_feature.patch
(from rev 305698, 
grub/trunk/0005-Allow_GRUB_to_mount_ext234_filesystems_that_have_the_encryption_feature.patch)
  grub/repos/testing-i686/PKGBUILD
(from rev 305698, grub/trunk/PKGBUILD)
  grub/repos/testing-i686/grub.cfg
(from rev 305698, grub/trunk/grub.cfg)
  grub/repos/testing-i686/grub.default
(from rev 305698, grub/trunk/grub.default)
  grub/repos/testing-i686/grub.install
(from rev 305698, grub/trunk/grub.install)
  grub/repos/testing-x86_64/
  grub/repos/testing-x86_64/0002-intel-ucode.patch
(from rev 305698, grub/trunk/0002-intel-ucode.patch)
  grub/repos/testing-x86_64/0003-10_linux-detect-archlinux-initramfs.patch
(from rev 305698, grub/trunk/0003-10_linux-detect-archlinux-initramfs.patch)
  grub/repos/testing-x86_64/0004-add-GRUB_COLOR_variables.patch
(from rev 305698, grub/trunk/0004-add-GRUB_COLOR_variables.patch)
  
grub/repos/testing-x86_64/0005-Allow_GRUB_to_mount_ext234_filesystems_that_have_the_encryption_feature.patch
(from rev 305698, 
grub/trunk/0005-Allow_GRUB_to_mount_ext234_filesystems_that_have_the_encryption_feature.patch)
  grub/repos/testing-x86_64/PKGBUILD
(from rev 305698, grub/trunk/PKGBUILD)
  grub/repos/testing-x86_64/grub.cfg
(from rev 305698, grub/trunk/grub.cfg)
  grub/repos/testing-x86_64/grub.default
(from rev 305698, grub/trunk/grub.default)
  grub/repos/testing-x86_64/grub.install
(from rev 305698, grub/trunk/grub.install)

---+
 testing-i686/0002-intel-ucode.patch
   |   52 +
 testing-i686/0003-10_linux-detect-archlinux-initramfs.patch
   |   44 +
 testing-i686/0004-add-GRUB_COLOR_variables.patch   
   |   32 
 
testing-i686/0005-Allow_GRUB_to_mount_ext234_filesystems_that_have_the_encryption_feature.patch
   |  140 +++
 testing-i686/PKGBUILD  
   |  367 ++
 testing-i686/grub.cfg  
   |  139 +++
 testing-i686/grub.default  
   |   54 +
 testing-i686/grub.install  
   |   15 
 testing-x86_64/0002-intel-ucode.patch  
   |   52 +
 testing-x86_64/0003-10_linux-detect-archlinux-initramfs.patch  
   |   44 +
 testing-x86_64/0004-add-GRUB_COLOR_variables.patch 
   |   32 
 
testing-x86_64/0005-Allow_GRUB_to_mount_ext234_filesystems_that_have_the_encryption_feature.patch
 |  140 +++
 testing-x86_64/PKGBUILD
   |  367 ++
 testing-x86_64/grub.cfg
   |  139 +++
 testing-x86_64/grub.default
   |   54 +
 testing-x86_64/grub.install
   |   15 
 16 files changed, 1686 insertions(+)

Copied: grub/repos/testing-i686/0002-intel-ucode.patch (from rev 305698, 
grub/trunk/0002-intel-ucode.patch)
===
--- testing-i686/0002-intel-ucode.patch (rev 0)
+++ testing-i686/0002-intel-ucode.patch 2017-09-16 23:19:38 UTC (rev 305699)
@@ -0,0 +1,52 @@
+diff --git a/util/grub.d/10_linux.in b/util/grub.d/10_linux.in
+index de9044c..f5d3e78 100644
+--- a/util/grub.d/10_linux.in
 b/util/grub.d/10_linux.in
+@@ -133,13 +133,15 @@ linux_entry ()
+   echo'$(echo "$message" | grub_quote)'
+   linux   ${rel_dirname}/${basename} 
root=${linux_root_device_thisversion} ro ${args}
+ EOF
+-  if test -n "${initrd}" ; then
++  if test -n "${initrd}" -o -n "${initrd_extra}" ; then
+ # TRANSLATORS: ramdisk isn't identifier. Should be translated.
+ message="$(gettext_printf "Loading initial ramdisk ...")"
+-sed "s/^/$submenu_indentation/" << EOF
+-  echo

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

2017-09-16 Thread Christian Hesse
Date: Saturday, September 16, 2017 @ 23:19:12
  Author: eworm
Revision: 305698

upgpkg: grub 2:2.02-3

update unifont to version 10.0.06

Modified:
  grub/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 23:13:34 UTC (rev 305697)
+++ PKGBUILD2017-09-16 23:19:12 UTC (rev 305698)
@@ -11,7 +11,7 @@
 
 _GRUB_EXTRAS_COMMIT="f2a079441939eee7251bf141986cdd78946e1d20"
 
-_UNIFONT_VER="9.0.06"
+_UNIFONT_VER="10.0.06"
 
 [[ "${CARCH}" == "x86_64" ]] && _EFI_ARCH="x86_64"
 [[ "${CARCH}" == "i686" ]] && _EFI_ARCH="i386"
@@ -22,7 +22,7 @@
 pkgname="grub"
 pkgdesc="GNU GRand Unified Bootloader (2)"
 pkgver=2.02
-pkgrel=2
+pkgrel=3
 epoch=2
 url="https://www.gnu.org/software/grub/;
 arch=('x86_64' 'i686')
@@ -70,7 +70,7 @@
 sha256sums=('810b3798d316394f94096ec2797909dbf23c858e48f7b3830826b8daa06b7b0f'
 'SKIP'
 '2844601914cea6b1231eca0104853a93c4d67a5209933a0766f1475953300646'
-'4246c4773ed70f78a7e27ff1118fd257a280d1102200265ad5d58bb2011195ef'
+'0d81571fc519573057b7641d26a31ead55cc0b02a931589fb346a3a534c3dcc1'
 'SKIP'
 '37adb95049f6cdcbdbf60ed6b6440c5be99a4cd307a0f96c3c3837b6c2e07f3c'
 'b41e4438319136b5e74e0abdfcb64ae115393e4e15207490272c425f54026dd3'


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

2017-09-16 Thread Antonio Rojas
Date: Saturday, September 16, 2017 @ 23:13:34
  Author: arojas
Revision: 305697

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  akregator/repos/extra-i686/PKGBUILD
(from rev 305696, akregator/trunk/PKGBUILD)
  akregator/repos/extra-x86_64/PKGBUILD
(from rev 305696, akregator/trunk/PKGBUILD)
Deleted:
  akregator/repos/extra-i686/PKGBUILD
  akregator/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   86 
 extra-i686/PKGBUILD   |   38 -
 extra-x86_64/PKGBUILD |   38 -
 3 files changed, 86 insertions(+), 76 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-09-16 23:13:01 UTC (rev 305696)
+++ extra-i686/PKGBUILD 2017-09-16 23:13:34 UTC (rev 305697)
@@ -1,38 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=akregator
-pkgver=17.08.1
-pkgrel=1
-pkgdesc="A Feed Reader by KDE"
-arch=(i686 x86_64)
-url="https://community.kde.org/KDE_PIM;
-license=(GPL2)
-depends=(hicolor-icon-theme kontactinterface messagelib knotifyconfig 
ktexteditor kde-syndication)
-makedepends=(extra-cmake-modules boost kdoctools python)
-optdepends=('kdepim-addons: additional plugins')
-groups=(kde-applications kdepim)
-source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('e728588e732fa0c56abf781d1ebe578577c4d28cef8dc721c4fe86543bdde10a'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

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

Copied: akregator/repos/extra-i686/PKGBUILD (from rev 305696, 
akregator/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-09-16 23:13:34 UTC (rev 305697)
@@ -0,0 +1,43 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=akregator
+pkgver=17.08.1
+pkgrel=2
+pkgdesc="A Feed Reader by KDE"
+arch=(i686 x86_64)
+url="https://community.kde.org/KDE_PIM;
+license=(GPL2)
+depends=(kontactinterface messagelib knotifyconfig ktexteditor kde-syndication)
+makedepends=(extra-cmake-modules boost kdoctools python)
+optdepends=('kdepim-addons: additional plugins')
+groups=(kde-applications kdepim)
+source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
+
kdebug-377129.patch::"https://cgit.kde.org/akregator.git/patch/?id=d0a5f415;)
+sha256sums=('e728588e732fa0c56abf781d1ebe578577c4d28cef8dc721c4fe86543bdde10a'
+'SKIP'
+'587c48bc5c0415d785b606b47c1c26ca44e69726dcb29076cf6921b2b5eb0bd9')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../kdebug-377129.patch # fix crash at startup
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-09-16 23:13:01 UTC (rev 305696)
+++ extra-x86_64/PKGBUILD   2017-09-16 23:13:34 UTC (rev 305697)
@@ -1,38 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=akregator
-pkgver=17.08.1
-pkgrel=1
-pkgdesc="A Feed Reader by KDE"
-arch=(i686 x86_64)
-url="https://community.kde.org/KDE_PIM;
-license=(GPL2)
-depends=(hicolor-icon-theme kontactinterface messagelib knotifyconfig 
ktexteditor kde-syndication)
-makedepends=(extra-cmake-modules boost kdoctools python)
-optdepends=('kdepim-addons: additional plugins')
-groups=(kde-applications kdepim)
-source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('e728588e732fa0c56abf781d1ebe578577c4d28cef8dc721c4fe86543bdde10a'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  

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

2017-09-16 Thread Antonio Rojas
Date: Saturday, September 16, 2017 @ 23:13:01
  Author: arojas
Revision: 305696

Fix crash at startup (KDEBUG#377129)

Modified:
  akregator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 21:14:50 UTC (rev 305695)
+++ PKGBUILD2017-09-16 23:13:01 UTC (rev 305696)
@@ -3,23 +3,28 @@
 
 pkgname=akregator
 pkgver=17.08.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A Feed Reader by KDE"
 arch=(i686 x86_64)
 url="https://community.kde.org/KDE_PIM;
 license=(GPL2)
-depends=(hicolor-icon-theme kontactinterface messagelib knotifyconfig 
ktexteditor kde-syndication)
+depends=(kontactinterface messagelib knotifyconfig ktexteditor kde-syndication)
 makedepends=(extra-cmake-modules boost kdoctools python)
 optdepends=('kdepim-addons: additional plugins')
 groups=(kde-applications kdepim)
-source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
+
kdebug-377129.patch::"https://cgit.kde.org/akregator.git/patch/?id=d0a5f415;)
 sha256sums=('e728588e732fa0c56abf781d1ebe578577c4d28cef8dc721c4fe86543bdde10a'
-'SKIP')
+'SKIP'
+'587c48bc5c0415d785b606b47c1c26ca44e69726dcb29076cf6921b2b5eb0bd9')
 validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

   F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

 
 prepare() {
   mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../kdebug-377129.patch # fix crash at startup
 }
 
 build() {


[arch-commits] Commit in python-pytorch (4 files)

2017-09-16 Thread Sven-Hendrik Haase
Date: Saturday, September 16, 2017 @ 23:09:59
  Author: svenstaro
Revision: 258580

archrelease: copy trunk to community-x86_64

Added:
  python-pytorch/repos/
  python-pytorch/repos/community-x86_64/
  python-pytorch/repos/community-x86_64/2334.patch
(from rev 258579, python-pytorch/trunk/2334.patch)
  python-pytorch/repos/community-x86_64/PKGBUILD
(from rev 258579, python-pytorch/trunk/PKGBUILD)

+
 2334.patch |   21 ++
 PKGBUILD   |  120 +++
 2 files changed, 141 insertions(+)

Copied: python-pytorch/repos/community-x86_64/2334.patch (from rev 258579, 
python-pytorch/trunk/2334.patch)
===
--- repos/community-x86_64/2334.patch   (rev 0)
+++ repos/community-x86_64/2334.patch   2017-09-16 23:09:59 UTC (rev 258580)
@@ -0,0 +1,21 @@
+From 5e2b1b975bf758b67a190444a1d4a6f18c997095 Mon Sep 17 00:00:00 2001
+From: Mo Zhou 
+Date: Tue, 8 Aug 2017 09:58:23 +
+Subject: [PATCH] THD: add a missing header to fix build failure
+
+---
+ torch/lib/THD/base/ChannelUtils.hpp | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/torch/lib/THD/base/ChannelUtils.hpp 
b/torch/lib/THD/base/ChannelUtils.hpp
+index 563e68297e..e03e8bd132 100644
+--- a/torch/lib/THD/base/ChannelUtils.hpp
 b/torch/lib/THD/base/ChannelUtils.hpp
+@@ -5,6 +5,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 

Copied: python-pytorch/repos/community-x86_64/PKGBUILD (from rev 258579, 
python-pytorch/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-09-16 23:09:59 UTC (rev 258580)
@@ -0,0 +1,120 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Stephen Zhang 
+
+pkgbase="python-pytorch"
+pkgname=("python-pytorch" "python2-pytorch" "python-pytorch-cuda" 
"python2-pytorch-cuda")
+_pkgname="pytorch"
+pkgver=0.2.0
+pkgrel=1
+pkgdesc="Tensors and Dynamic neural networks in Python with strong GPU 
acceleration"
+arch=('x86_64')
+url="http://pytorch.org;
+license=('BSD')
+makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools'
+ 'python-yaml' 'python2-yaml' 'python-numpy' 'python2-numpy'
+ 'gcc5' 'cmake' 'cuda' 'cudnn')
+source=("https://github.com/pytorch/pytorch/archive/v${pkgver}.tar.gz;
+2334.patch)
+sha256sums=('b76d61aaa8fc18b928ca3c910c398687be08f5661d6615884c4faba3e8742a26'
+'1933b0e73785cc3d24013815c79f36267380239f2cbf0561b7702e0d5af61daf')
+
+prepare() {
+  cd "${_pkgname}-${pkgver}"
+  sed -i -e '144icp -r nccl gloo/third-party/' torch/lib/build_all.sh
+  sed -i -e '470,475d' setup.py
+
+  patch -Np1 < ${srcdir}/2334.patch
+
+  cd ..
+
+  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-py2"
+  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-py3"
+  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-py2-cuda"
+  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-py3-cuda"
+}
+
+build() {
+  msg "Building Python 2 without cuda"
+  cd "$srcdir/${_pkgname}-${pkgver}-py2"
+  # Uncomment and modify the following line to enable Intel MKL and magma 
support
+  
#CMAKE_PREFIX_PATH=/opt/intel/mkl/include:/opt/intel/mkl/lib/intel64:/opt/magma 
\
+  CFLAGS="${CFLAGS/-fno-plt/}" \
+  CXXFLAGS="${CFLAGS/-fno-plt/}" \
+  NO_CUDA=1 \
+  WITH_CUDA=0 \
+  WITH_CUDNN=0 \
+  python2 setup.py build
+
+  msg "Building Python 3 without cuda"
+  cd "$srcdir/${_pkgname}-${pkgver}-py3"
+  # Uncomment and modify the following line to enable Intel MKL and magma 
support
+  
#CMAKE_PREFIX_PATH=/opt/intel/mkl/include:/opt/intel/mkl/lib/intel64:/opt/magma 
\
+  CFLAGS="${CFLAGS/-fno-plt/}" \
+  CXXFLAGS="${CFLAGS/-fno-plt/}" \
+  NO_CUDA=1 \
+  WITH_CUDA=0 \
+  WITH_CUDNN=0 \
+  python setup.py build
+
+  msg "Building Python 2 with cuda"
+  cd "$srcdir/${_pkgname}-${pkgver}-py2-cuda"
+  # Uncomment and modify the following line to enable Intel MKL and magma 
support
+  
#CMAKE_PREFIX_PATH=/opt/intel/mkl/include:/opt/intel/mkl/lib/intel64:/opt/magma 
\
+  CC=gcc-5 \
+  CXX=g++-5 \
+  CFLAGS="${CFLAGS/-fno-plt/}" \
+  CXXFLAGS="${CFLAGS/-fno-plt/}" \
+  WITH_CUDA=1 \
+  CUDA_HOME=/opt/cuda \
+  WITH_CUDNN=1 \
+  CUDNN_LIB_DIR=/opt/cuda/lib64 \
+  CUDNN_INCLUDE_DIR=/opt/cuda/include \
+  python2 setup.py build
+
+  msg "Building Python 3 with cuda"
+  cd "$srcdir/${_pkgname}-${pkgver}-py3-cuda"
+  # Uncomment and modify the following line to enable Intel MKL and magma 
support
+  
#CMAKE_PREFIX_PATH=/opt/intel/mkl/include:/opt/intel/mkl/lib/intel64:/opt/magma 
\
+  CC=gcc-5 \
+  CXX=g++-5 \
+  CFLAGS="${CFLAGS/-fno-plt/}" \
+  CXXFLAGS="${CFLAGS/-fno-plt/}" \
+  WITH_CUDA=1 \
+  CUDA_HOME=/opt/cuda \
+  WITH_CUDNN=1 \
+  CUDNN_LIB_DIR=/opt/cuda/lib64 \
+  CUDNN_INCLUDE_DIR=/opt/cuda/include \
+  

[arch-commits] Commit in python-pytorch/trunk (2334.patch PKGBUILD)

2017-09-16 Thread Sven-Hendrik Haase
Date: Saturday, September 16, 2017 @ 23:09:48
  Author: svenstaro
Revision: 258579

upgpkg: python-pytorch 0.2.0-1

Pushing

Added:
  python-pytorch/trunk/2334.patch
Modified:
  python-pytorch/trunk/PKGBUILD

+
 2334.patch |   21 +++
 PKGBUILD   |   65 +--
 2 files changed, 75 insertions(+), 11 deletions(-)

Added: 2334.patch
===
--- 2334.patch  (rev 0)
+++ 2334.patch  2017-09-16 23:09:48 UTC (rev 258579)
@@ -0,0 +1,21 @@
+From 5e2b1b975bf758b67a190444a1d4a6f18c997095 Mon Sep 17 00:00:00 2001
+From: Mo Zhou 
+Date: Tue, 8 Aug 2017 09:58:23 +
+Subject: [PATCH] THD: add a missing header to fix build failure
+
+---
+ torch/lib/THD/base/ChannelUtils.hpp | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/torch/lib/THD/base/ChannelUtils.hpp 
b/torch/lib/THD/base/ChannelUtils.hpp
+index 563e68297e..e03e8bd132 100644
+--- a/torch/lib/THD/base/ChannelUtils.hpp
 b/torch/lib/THD/base/ChannelUtils.hpp
+@@ -5,6 +5,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 20:05:18 UTC (rev 258578)
+++ PKGBUILD2017-09-16 23:09:48 UTC (rev 258579)
@@ -2,11 +2,11 @@
 # Contributor: Stephen Zhang 
 
 pkgbase="python-pytorch"
-pkgname=("python-pytorch" "python2-pytorch")
+pkgname=("python-pytorch" "python2-pytorch" "python-pytorch-cuda" 
"python2-pytorch-cuda")
 _pkgname="pytorch"
 pkgver=0.2.0
 pkgrel=1
-pkgdesc="Tensors and dynamic neural networks in Python with strong GPU 
acceleration"
+pkgdesc="Tensors and Dynamic neural networks in Python with strong GPU 
acceleration"
 arch=('x86_64')
 url="http://pytorch.org;
 license=('BSD')
@@ -13,26 +13,53 @@
 makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools'
  'python-yaml' 'python2-yaml' 'python-numpy' 'python2-numpy'
  'gcc5' 'cmake' 'cuda' 'cudnn')
-optdepends=('cuda' 'cudnn')
-source=("https://github.com/pytorch/pytorch/archive/v${pkgver}.tar.gz;)
-sha256sums=('b76d61aaa8fc18b928ca3c910c398687be08f5661d6615884c4faba3e8742a26')
+source=("https://github.com/pytorch/pytorch/archive/v${pkgver}.tar.gz;
+2334.patch)
+sha256sums=('b76d61aaa8fc18b928ca3c910c398687be08f5661d6615884c4faba3e8742a26'
+'1933b0e73785cc3d24013815c79f36267380239f2cbf0561b7702e0d5af61daf')
 
 prepare() {
-  cd "$srcdir/"
-
   cd "${_pkgname}-${pkgver}"
   sed -i -e '144icp -r nccl gloo/third-party/' torch/lib/build_all.sh
   sed -i -e '470,475d' setup.py
+
+  patch -Np1 < ${srcdir}/2334.patch
+
   cd ..
 
   cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-py2"
+  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-py3"
+  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-py2-cuda"
+  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-py3-cuda"
 }
 
 build() {
-  msg "Building Python 2"
+  msg "Building Python 2 without cuda"
   cd "$srcdir/${_pkgname}-${pkgver}-py2"
   # Uncomment and modify the following line to enable Intel MKL and magma 
support
   
#CMAKE_PREFIX_PATH=/opt/intel/mkl/include:/opt/intel/mkl/lib/intel64:/opt/magma 
\
+  CFLAGS="${CFLAGS/-fno-plt/}" \
+  CXXFLAGS="${CFLAGS/-fno-plt/}" \
+  NO_CUDA=1 \
+  WITH_CUDA=0 \
+  WITH_CUDNN=0 \
+  python2 setup.py build
+
+  msg "Building Python 3 without cuda"
+  cd "$srcdir/${_pkgname}-${pkgver}-py3"
+  # Uncomment and modify the following line to enable Intel MKL and magma 
support
+  
#CMAKE_PREFIX_PATH=/opt/intel/mkl/include:/opt/intel/mkl/lib/intel64:/opt/magma 
\
+  CFLAGS="${CFLAGS/-fno-plt/}" \
+  CXXFLAGS="${CFLAGS/-fno-plt/}" \
+  NO_CUDA=1 \
+  WITH_CUDA=0 \
+  WITH_CUDNN=0 \
+  python setup.py build
+
+  msg "Building Python 2 with cuda"
+  cd "$srcdir/${_pkgname}-${pkgver}-py2-cuda"
+  # Uncomment and modify the following line to enable Intel MKL and magma 
support
+  
#CMAKE_PREFIX_PATH=/opt/intel/mkl/include:/opt/intel/mkl/lib/intel64:/opt/magma 
\
   CC=gcc-5 \
   CXX=g++-5 \
   CFLAGS="${CFLAGS/-fno-plt/}" \
@@ -44,8 +71,8 @@
   CUDNN_INCLUDE_DIR=/opt/cuda/include \
   python2 setup.py build
 
-  msg "Building Python 3"
-  cd "$srcdir/${_pkgname}-${pkgver}"
+  msg "Building Python 3 with cuda"
+  cd "$srcdir/${_pkgname}-${pkgver}-py3-cuda"
   # Uncomment and modify the following line to enable Intel MKL and magma 
support
   
#CMAKE_PREFIX_PATH=/opt/intel/mkl/include:/opt/intel/mkl/lib/intel64:/opt/magma 
\
   CC=gcc-5 \
@@ -69,9 +96,25 @@
 
 package_python-pytorch() {
   depends+=('python' 'python-yaml' 'python-numpy')
-  cd "$srcdir/${_pkgname}-${pkgver}"
+  cd "$srcdir/${_pkgname}-${pkgver}-py3"
   python setup.py install --root="$pkgdir"/ --optimize=1 --skip-build
   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
 }
 
+package_python2-pytorch-cuda() {
+  

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

2017-09-16 Thread Jan de Groot
Date: Saturday, September 16, 2017 @ 20:49:54
  Author: jgc
Revision: 305694

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  pipewire/repos/gnome-unstable-i686/
  pipewire/repos/gnome-unstable-i686/PKGBUILD
(from rev 305693, pipewire/trunk/PKGBUILD)
  pipewire/repos/gnome-unstable-x86_64/
  pipewire/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 305693, pipewire/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   44 +++
 gnome-unstable-x86_64/PKGBUILD |   44 +++
 2 files changed, 88 insertions(+)

Copied: pipewire/repos/gnome-unstable-i686/PKGBUILD (from rev 305693, 
pipewire/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2017-09-16 20:49:54 UTC (rev 305694)
@@ -0,0 +1,44 @@
+# $Id: $
+# Maintainer: Jan de Groot 
+
+pkgname=pipewire
+pkgver=0.1.4
+pkgrel=1
+pkgdesc="Server and user space API to deal with multimedia pipelines"
+url="http://pipewire.org;
+license=(LGPL2.1)
+arch=(i686 x86_64)
+depends=(gstreamer gst-plugins-base v4l-utils)
+makedepends=(git meson doxygen graphviz xmltoman ffmpeg jack2 libva)
+optdepends=(ffmpeg jack2 libva)
+_commit=b7e334e55ddbdd9afe811c043e782ae31596899e  # tags/0.1.4
+source=("git+https://github.com/PipeWire/pipewire.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+  git cherry-pick -n ff363cc7bf1db8da7ffe3423de0fb85fd1531bc2
+}
+
+build() {
+  cd build
+  meson setup --prefix=/usr --sysconfdir=/etc --buildtype=release ../$pkgname
+  ninja
+}
+
+check() {
+  cd build
+  meson test
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+}

Copied: pipewire/repos/gnome-unstable-x86_64/PKGBUILD (from rev 305693, 
pipewire/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2017-09-16 20:49:54 UTC (rev 305694)
@@ -0,0 +1,44 @@
+# $Id: $
+# Maintainer: Jan de Groot 
+
+pkgname=pipewire
+pkgver=0.1.4
+pkgrel=1
+pkgdesc="Server and user space API to deal with multimedia pipelines"
+url="http://pipewire.org;
+license=(LGPL2.1)
+arch=(i686 x86_64)
+depends=(gstreamer gst-plugins-base v4l-utils)
+makedepends=(git meson doxygen graphviz xmltoman ffmpeg jack2 libva)
+optdepends=(ffmpeg jack2 libva)
+_commit=b7e334e55ddbdd9afe811c043e782ae31596899e  # tags/0.1.4
+source=("git+https://github.com/PipeWire/pipewire.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+  git cherry-pick -n ff363cc7bf1db8da7ffe3423de0fb85fd1531bc2
+}
+
+build() {
+  cd build
+  meson setup --prefix=/usr --sysconfdir=/etc --buildtype=release ../$pkgname
+  ninja
+}
+
+check() {
+  cd build
+  meson test
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+}


[arch-commits] Commit in (4 files)

2017-09-16 Thread Jan de Groot
Date: Saturday, September 16, 2017 @ 20:48:42
  Author: jgc
Revision: 305693

Add new package

Added:
  pipewire/
  pipewire/repos/
  pipewire/trunk/
  pipewire/trunk/PKGBUILD

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

Added: pipewire/trunk/PKGBUILD
===
--- pipewire/trunk/PKGBUILD (rev 0)
+++ pipewire/trunk/PKGBUILD 2017-09-16 20:48:42 UTC (rev 305693)
@@ -0,0 +1,44 @@
+# $Id: $
+# Maintainer: Jan de Groot 
+
+pkgname=pipewire
+pkgver=0.1.4
+pkgrel=1
+pkgdesc="Server and user space API to deal with multimedia pipelines"
+url="http://pipewire.org;
+license=(LGPL2.1)
+arch=(i686 x86_64)
+depends=(gstreamer gst-plugins-base v4l-utils)
+makedepends=(git meson doxygen graphviz xmltoman ffmpeg jack2 libva)
+optdepends=(ffmpeg jack2 libva)
+_commit=b7e334e55ddbdd9afe811c043e782ae31596899e  # tags/0.1.4
+source=("git+https://github.com/PipeWire/pipewire.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+  git cherry-pick -n ff363cc7bf1db8da7ffe3423de0fb85fd1531bc2
+}
+
+build() {
+  cd build
+  meson setup --prefix=/usr --sysconfdir=/etc --buildtype=release ../$pkgname
+  ninja
+}
+
+check() {
+  cd build
+  meson test
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+}


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

2017-09-16 Thread Andreas Radke
Date: Saturday, September 16, 2017 @ 20:11:49
  Author: andyrtr
Revision: 305690

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  libcdr/repos/extra-i686/PKGBUILD
(from rev 305689, libcdr/trunk/PKGBUILD)
  libcdr/repos/extra-x86_64/PKGBUILD
(from rev 305689, libcdr/trunk/PKGBUILD)
Deleted:
  libcdr/repos/extra-i686/PKGBUILD
  libcdr/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   64 
 extra-i686/PKGBUILD   |   32 
 extra-x86_64/PKGBUILD |   32 
 3 files changed, 64 insertions(+), 64 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-09-16 20:11:34 UTC (rev 305689)
+++ extra-i686/PKGBUILD 2017-09-16 20:11:49 UTC (rev 305690)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-# Contributor: megadriver 
-# Contributor: Luca Bennati 
-
-pkgname=libcdr
-pkgver=0.1.3
-pkgrel=3
-pkgdesc="CorelDraw file format importer library for LibreOffice"
-arch=('i686' 'x86_64')
-url="https://wiki.documentfoundation.org/DLP/Libraries/libcdr;
-license=('GPL2' 'LGPL2.1' 'MPL')
-depends=('libwpd' 'lcms2' 'icu' 'librevenge')
-makedepends=('libwpg' 'boost' 'doxygen' 'cppunit')
-source=(https://dev-www.libreoffice.org/src/$pkgname/$pkgname-$pkgver.tar.xz)
-md5sums=('74589ce5bb944974f4308906d9e9dc5c')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make -k check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: libcdr/repos/extra-i686/PKGBUILD (from rev 305689, 
libcdr/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-09-16 20:11:49 UTC (rev 305690)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: megadriver 
+# Contributor: Luca Bennati 
+
+pkgname=libcdr
+pkgver=0.1.4
+pkgrel=1
+pkgdesc="CorelDraw file format importer library for LibreOffice"
+arch=('i686' 'x86_64')
+url="https://wiki.documentfoundation.org/DLP/Libraries/libcdr;
+license=('GPL2' 'LGPL2.1' 'MPL')
+depends=('libwpd' 'lcms2' 'icu' 'librevenge')
+makedepends=('libwpg' 'boost' 'doxygen' 'cppunit')
+source=(https://dev-www.libreoffice.org/src/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('e7a7e8b00a3df5798110024d7061fe9d1c3330277d2e4fa9213294f966a4a66d')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make -k check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-09-16 20:11:34 UTC (rev 305689)
+++ extra-x86_64/PKGBUILD   2017-09-16 20:11:49 UTC (rev 305690)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-# Contributor: megadriver 
-# Contributor: Luca Bennati 
-
-pkgname=libcdr
-pkgver=0.1.3
-pkgrel=3
-pkgdesc="CorelDraw file format importer library for LibreOffice"
-arch=('i686' 'x86_64')
-url="https://wiki.documentfoundation.org/DLP/Libraries/libcdr;
-license=('GPL2' 'LGPL2.1' 'MPL')
-depends=('libwpd' 'lcms2' 'icu' 'librevenge')
-makedepends=('libwpg' 'boost' 'doxygen' 'cppunit')
-source=(https://dev-www.libreoffice.org/src/$pkgname/$pkgname-$pkgver.tar.xz)
-md5sums=('74589ce5bb944974f4308906d9e9dc5c')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make -k check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: libcdr/repos/extra-x86_64/PKGBUILD (from rev 305689, 
libcdr/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-09-16 20:11:49 UTC (rev 305690)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: megadriver 
+# Contributor: Luca Bennati 
+
+pkgname=libcdr
+pkgver=0.1.4
+pkgrel=1
+pkgdesc="CorelDraw file format importer library for LibreOffice"
+arch=('i686' 'x86_64')
+url="https://wiki.documentfoundation.org/DLP/Libraries/libcdr;
+license=('GPL2' 'LGPL2.1' 'MPL')
+depends=('libwpd' 'lcms2' 'icu' 'librevenge')
+makedepends=('libwpg' 'boost' 'doxygen' 'cppunit')
+source=(https://dev-www.libreoffice.org/src/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('e7a7e8b00a3df5798110024d7061fe9d1c3330277d2e4fa9213294f966a4a66d')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make -k check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in gnome-control-center/repos (4 files)

2017-09-16 Thread Jan de Groot
Date: Saturday, September 16, 2017 @ 20:11:34
  Author: jgc
Revision: 305689

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gnome-control-center/repos/gnome-unstable-i686/
  gnome-control-center/repos/gnome-unstable-i686/PKGBUILD
(from rev 305687, gnome-control-center/trunk/PKGBUILD)
  gnome-control-center/repos/gnome-unstable-x86_64/
  gnome-control-center/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 305688, gnome-control-center/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   68 +++
 gnome-unstable-x86_64/PKGBUILD |   68 +++
 2 files changed, 136 insertions(+)

Copied: gnome-control-center/repos/gnome-unstable-i686/PKGBUILD (from rev 
305687, gnome-control-center/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2017-09-16 20:11:34 UTC (rev 305689)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-control-center
+pkgver=3.26.0+7+gfed3e1939
+pkgrel=1
+pkgdesc="GNOME's main interface to configure various aspects of the desktop"
+url="https://git.gnome.org/browse/gnome-control-center;
+license=(GPL2)
+arch=(i686 x86_64)
+depends=(accountsservice cups-pk-helper gnome-bluetooth gnome-desktop
+ gnome-online-accounts gnome-settings-daemon gsettings-desktop-schemas 
gtk3
+ libgtop libnm-gtk sound-theme-freedesktop upower libpwquality
+ gnome-color-manager smbclient libmm-glib libgnomekbd grilo 
clutter-gtk libibus
+ cheese libgudev)
+makedepends=(intltool docbook-xsl modemmanager gnome-common git python)
+optdepends=('system-config-printer: Printer settings'
+'gnome-user-share: Bluetooth and WebDAV file sharing'
+'rygel: media sharing'
+'vino: screen sharing'
+'openssh: remote login')
+groups=(gnome)
+options=('!emptydirs')
+_commit=fed3e19392934d4a2ea7b9c83dc1372bdf0fda0b  # gnome-3-26
+source=("git+https://git.gnome.org/browse/gnome-control-center#commit=$_commit;
+"git+https://git.gnome.org/browse/libgnome-volume-control;
+"git+https://git.gnome.org/browse/libgd;)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^GNOME_CONTROL_CENTER_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git config --local submodule."panels/sound/gvc".url 
"$srcdir/libgnome-volume-control"
+  git config --local submodule.libgd.url "$srcdir/libgd"
+  git submodule update
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+
+build() {
+  cd $pkgname
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/$pkgname --disable-static
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=656229
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
"$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/  
func_append compile_command " -Wl,-O1,--as-needed"\n  func_append 
finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname
+
+  make DESTDIR="$pkgdir" install
+
+  install -d -o root -g 102 -m 750 "$pkgdir/usr/share/polkit-1/rules.d"
+}

Copied: gnome-control-center/repos/gnome-unstable-x86_64/PKGBUILD (from rev 
305688, gnome-control-center/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2017-09-16 20:11:34 UTC (rev 305689)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-control-center
+pkgver=3.26.0+7+gfed3e1939
+pkgrel=1
+pkgdesc="GNOME's main interface to configure various aspects of the desktop"
+url="https://git.gnome.org/browse/gnome-control-center;
+license=(GPL2)
+arch=(i686 x86_64)
+depends=(accountsservice cups-pk-helper gnome-bluetooth gnome-desktop
+ gnome-online-accounts gnome-settings-daemon gsettings-desktop-schemas 
gtk3
+ libgtop libnm-gtk sound-theme-freedesktop upower libpwquality
+ gnome-color-manager smbclient libmm-glib libgnomekbd grilo 
clutter-gtk libibus
+ cheese libgudev)
+makedepends=(intltool docbook-xsl modemmanager gnome-common git python)
+optdepends=('system-config-printer: Printer settings'
+'gnome-user-share: Bluetooth and WebDAV file sharing'
+'rygel: media sharing'
+'vino: screen sharing'
+'openssh: remote login')
+groups=(gnome)
+options=('!emptydirs')
+_commit=fed3e19392934d4a2ea7b9c83dc1372bdf0fda0b  # gnome-3-26

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

2017-09-16 Thread Jan de Groot
Date: Saturday, September 16, 2017 @ 20:11:24
  Author: jgc
Revision: 305687

upgpkg: gnome-control-center 3.26.0+7+gfed3e1939-1

Modified:
  gnome-control-center/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 20:06:54 UTC (rev 305686)
+++ PKGBUILD2017-09-16 20:11:24 UTC (rev 305687)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=gnome-control-center
-pkgver=3.24.3
+pkgver=3.26.0+7+gfed3e1939
 pkgrel=1
 pkgdesc="GNOME's main interface to configure various aspects of the desktop"
 url="https://git.gnome.org/browse/gnome-control-center;
@@ -22,7 +22,7 @@
 'openssh: remote login')
 groups=(gnome)
 options=('!emptydirs')
-_commit=fa4bea1383c11ec6e1f27f6b850104a98d4d2a0c  # 
tags/GNOME_CONTROL_CENTER_3_24_3^0
+_commit=fed3e19392934d4a2ea7b9c83dc1372bdf0fda0b  # gnome-3-26
 source=("git+https://git.gnome.org/browse/gnome-control-center#commit=$_commit;
 "git+https://git.gnome.org/browse/libgnome-volume-control;
 "git+https://git.gnome.org/browse/libgd;)


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

2017-09-16 Thread Andreas Radke
Date: Saturday, September 16, 2017 @ 20:11:27
  Author: andyrtr
Revision: 305688

upgpkg: libcdr 0.1.4-1

upstream update 0.1.4

Modified:
  libcdr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 20:11:24 UTC (rev 305687)
+++ PKGBUILD2017-09-16 20:11:27 UTC (rev 305688)
@@ -4,8 +4,8 @@
 # Contributor: Luca Bennati 
 
 pkgname=libcdr
-pkgver=0.1.3
-pkgrel=3
+pkgver=0.1.4
+pkgrel=1
 pkgdesc="CorelDraw file format importer library for LibreOffice"
 arch=('i686' 'x86_64')
 url="https://wiki.documentfoundation.org/DLP/Libraries/libcdr;
@@ -13,7 +13,7 @@
 depends=('libwpd' 'lcms2' 'icu' 'librevenge')
 makedepends=('libwpg' 'boost' 'doxygen' 'cppunit')
 source=(https://dev-www.libreoffice.org/src/$pkgname/$pkgname-$pkgver.tar.xz)
-md5sums=('74589ce5bb944974f4308906d9e9dc5c')
+sha256sums=('e7a7e8b00a3df5798110024d7061fe9d1c3330277d2e4fa9213294f966a4a66d')
 
 build() {
   cd $pkgname-$pkgver


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

2017-09-16 Thread Jan de Groot
Date: Saturday, September 16, 2017 @ 20:06:47
  Author: jgc
Revision: 305685

upgpkg: cheese 3.26.0-1

Modified:
  cheese/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 20:01:56 UTC (rev 305684)
+++ PKGBUILD2017-09-16 20:06:47 UTC (rev 305685)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=cheese
-pkgver=3.24.0
+pkgver=3.26.0
 pkgrel=1
 pkgdesc="Take photos and videos with your webcam, with fun graphical effects"
 url="https://wiki.gnome.org/Apps/Cheese;
@@ -16,7 +16,7 @@
 optdepends=('gnome-video-effects: Camera effects')
 groups=(gnome-extra)
 options=(!emptydirs)
-_commit=e0f4befb62bb02522a364251e1be429942a1d446  # master~4
+_commit=41843aad67d56918587543aec22ba15cfef25ebc  # master~1
 source=("git+https://git.gnome.org/browse/cheese#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -30,7 +30,7 @@
 prepare() {
   cd $pkgname
   # Fixup tags for pkgver()
-  git tag -f 3.24.0 e0f4befb62bb02522a364251e1be429942a1d446
+  git tag -f 3.26.0 41843aad67d56918587543aec22ba15cfef25ebc
   NOCONFIGURE=1 ./autogen.sh
 }
 


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

2017-09-16 Thread Jan de Groot
Date: Saturday, September 16, 2017 @ 20:06:54
  Author: jgc
Revision: 305686

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  cheese/repos/gnome-unstable-i686/
  cheese/repos/gnome-unstable-i686/PKGBUILD
(from rev 305685, cheese/trunk/PKGBUILD)
  cheese/repos/gnome-unstable-x86_64/
  cheese/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 305685, cheese/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   52 +++
 gnome-unstable-x86_64/PKGBUILD |   52 +++
 2 files changed, 104 insertions(+)

Copied: cheese/repos/gnome-unstable-i686/PKGBUILD (from rev 305685, 
cheese/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2017-09-16 20:06:54 UTC (rev 305686)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=cheese
+pkgver=3.26.0
+pkgrel=1
+pkgdesc="Take photos and videos with your webcam, with fun graphical effects"
+url="https://wiki.gnome.org/Apps/Cheese;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(gtk3 gstreamer gst-plugins-bad gst-plugins-base gst-plugins-good 
clutter-gst clutter-gtk
+ libcanberra librsvg gnome-desktop libgudev dconf)
+makedepends=(pkgconfig intltool gobject-introspection itstool vala 
gnome-common git appstream-glib
+ gnome-video-effects)
+optdepends=('gnome-video-effects: Camera effects')
+groups=(gnome-extra)
+options=(!emptydirs)
+_commit=41843aad67d56918587543aec22ba15cfef25ebc  # master~1
+source=("git+https://git.gnome.org/browse/cheese#commit=$_commit;)
+sha256sums=('SKIP')
+
+# TODO: Consider splitting libcheese
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  # Fixup tags for pkgver()
+  git tag -f 3.26.0 41843aad67d56918587543aec22ba15cfef25ebc
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --disable-static --disable-schemas-compile --libexecdir=/usr/lib/cheese \
+  --enable-gtk-doc
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Copied: cheese/repos/gnome-unstable-x86_64/PKGBUILD (from rev 305685, 
cheese/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2017-09-16 20:06:54 UTC (rev 305686)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=cheese
+pkgver=3.26.0
+pkgrel=1
+pkgdesc="Take photos and videos with your webcam, with fun graphical effects"
+url="https://wiki.gnome.org/Apps/Cheese;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(gtk3 gstreamer gst-plugins-bad gst-plugins-base gst-plugins-good 
clutter-gst clutter-gtk
+ libcanberra librsvg gnome-desktop libgudev dconf)
+makedepends=(pkgconfig intltool gobject-introspection itstool vala 
gnome-common git appstream-glib
+ gnome-video-effects)
+optdepends=('gnome-video-effects: Camera effects')
+groups=(gnome-extra)
+options=(!emptydirs)
+_commit=41843aad67d56918587543aec22ba15cfef25ebc  # master~1
+source=("git+https://git.gnome.org/browse/cheese#commit=$_commit;)
+sha256sums=('SKIP')
+
+# TODO: Consider splitting libcheese
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  # Fixup tags for pkgver()
+  git tag -f 3.26.0 41843aad67d56918587543aec22ba15cfef25ebc
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --disable-static --disable-schemas-compile --libexecdir=/usr/lib/cheese \
+  --enable-gtk-doc
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in newsbeuter/repos (18 files)

2017-09-16 Thread Levente Polyak
Date: Saturday, September 16, 2017 @ 20:05:18
  Author: anthraxx
Revision: 258578

archrelease: copy trunk to community-i686, community-x86_64

Added:
  newsbeuter/repos/community-i686/PKGBUILD
(from rev 258577, newsbeuter/trunk/PKGBUILD)
  newsbeuter/repos/community-i686/newsbeuter-2.9-ncursesw6.patch
(from rev 258577, newsbeuter/trunk/newsbeuter-2.9-ncursesw6.patch)
  newsbeuter/repos/community-i686/newsbeuter-CVE-2017-12904.patch
(from rev 258577, newsbeuter/trunk/newsbeuter-CVE-2017-12904.patch)
  newsbeuter/repos/community-i686/newsbeuter.changelog
(from rev 258577, newsbeuter/trunk/newsbeuter.changelog)
  newsbeuter/repos/community-i686/remote-code-execution-podcast-name.patch
(from rev 258577, newsbeuter/trunk/remote-code-execution-podcast-name.patch)
  newsbeuter/repos/community-x86_64/PKGBUILD
(from rev 258577, newsbeuter/trunk/PKGBUILD)
  newsbeuter/repos/community-x86_64/newsbeuter-2.9-ncursesw6.patch
(from rev 258577, newsbeuter/trunk/newsbeuter-2.9-ncursesw6.patch)
  newsbeuter/repos/community-x86_64/newsbeuter-CVE-2017-12904.patch
(from rev 258577, newsbeuter/trunk/newsbeuter-CVE-2017-12904.patch)
  newsbeuter/repos/community-x86_64/newsbeuter.changelog
(from rev 258577, newsbeuter/trunk/newsbeuter.changelog)
  newsbeuter/repos/community-x86_64/remote-code-execution-podcast-name.patch
(from rev 258577, newsbeuter/trunk/remote-code-execution-podcast-name.patch)
Deleted:
  newsbeuter/repos/community-i686/PKGBUILD
  newsbeuter/repos/community-i686/newsbeuter-2.9-ncursesw6.patch
  newsbeuter/repos/community-i686/newsbeuter.changelog
  newsbeuter/repos/community-i686/newsbeuter.install
  newsbeuter/repos/community-x86_64/PKGBUILD
  newsbeuter/repos/community-x86_64/newsbeuter-2.9-ncursesw6.patch
  newsbeuter/repos/community-x86_64/newsbeuter.changelog
  newsbeuter/repos/community-x86_64/newsbeuter.install

---+
 /PKGBUILD |   92 
 /newsbeuter-2.9-ncursesw6.patch   |   54 +++
 /newsbeuter.changelog |   90 +++
 community-i686/PKGBUILD   |   45 -
 community-i686/newsbeuter-2.9-ncursesw6.patch |   27 ---
 community-i686/newsbeuter-CVE-2017-12904.patch|   19 ++
 community-i686/newsbeuter.changelog   |   45 -
 community-i686/newsbeuter.install |6 
 community-i686/remote-code-execution-podcast-name.patch   |   28 +++
 community-x86_64/PKGBUILD |   45 -
 community-x86_64/newsbeuter-2.9-ncursesw6.patch   |   27 ---
 community-x86_64/newsbeuter-CVE-2017-12904.patch  |   19 ++
 community-x86_64/newsbeuter.changelog |   45 -
 community-x86_64/newsbeuter.install   |6 
 community-x86_64/remote-code-execution-podcast-name.patch |   28 +++
 15 files changed, 330 insertions(+), 246 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-16 19:57:36 UTC (rev 258577)
+++ community-i686/PKGBUILD 2017-09-16 20:05:18 UTC (rev 258578)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Sven Pfleiderer 
-
-pkgname=newsbeuter
-pkgver=2.9
-pkgrel=7
-pkgdesc="A RSS feed reader for the text console with special Podcast support"
-arch=('i686' 'x86_64')
-url="http://www.newsbeuter.org/;
-license=('custom: MIT')
-depends=('curl' 'json-c' 'libxml2' 'sqlite' 'stfl')
-makedepends=('swig' 'gettext')
-install=$pkgname.install
-changelog=$pkgname.changelog
-source=($pkgname-r$pkgver.tar.gz::https://github.com/akrennmair/$pkgname/archive/r2.9.tar.gz
-$pkgname-$pkgver-ncursesw6.patch
-
$pkgname-segfault.patch::https://github.com/akrennmair/newsbeuter/commit/33577f842d9b74c119f3cebda95ef8652304db81.patch
-
$pkgname-CVE-2017-12904.patch::https://github.com/akrennmair/newsbeuter/commit/96e9506ae9e252c548665152d1b8968297128307.patch)
-sha256sums=('489694a57d4af390aa15ab48b66517b0dc34a1cda4410eb5f6f997c6369f51d8'
-'5ae54c463f44d91725da3be655d2b107d598ade6da86ab4a99b10b039b8dba27'
-'60f56cabe47a1773f4a3a960ae0aee418f8a6df7bdd48b9874bf79cdd4c23b84'
-'e68046ad75362a10db1d7a30b1193d4f9ce55c1ef99f217ee11fad66b00e9a2c')
-
-prepare() {
-  cd "${srcdir}"/$pkgname-r$pkgver
-
-  patch -p1 -i ../$pkgname-$pkgver-ncursesw6.patch
-  patch -p1 -i ../$pkgname-segfault.patch
-}
-
-build() {
-  cd "${srcdir}"/$pkgname-r$pkgver
-
-  make prefix=/usr
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-r$pkgver
-
-  make prefix=/usr DESTDIR="${pkgdir}" install
-
-#license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: newsbeuter/repos/community-i686/PKGBUILD 

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

2017-09-16 Thread Jan de Groot
Date: Saturday, September 16, 2017 @ 20:01:50
  Author: jgc
Revision: 305683

upgpkg: grilo 0.3.4-1

Modified:
  grilo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 20:00:53 UTC (rev 305682)
+++ PKGBUILD2017-09-16 20:01:50 UTC (rev 305683)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=grilo
-pkgver=0.3.3+3+g3104a34
+pkgver=0.3.4
 pkgrel=1
 pkgdesc="Framework that provides access to various sources of multimedia 
content"
 url="https://wiki.gnome.org/Projects/Grilo;
@@ -11,7 +11,7 @@
 depends=(gtk3 libxml2 libsoup liboauth totem-plparser)
 makedepends=(gobject-introspection gtk-doc vala git meson)
 optdepends=('grilo-plugins: Plugins for grilo')
-_commit=3104a340a674429a01a41fbce8441728660077e4  # master
+_commit=b773deccb84c159850cdcf73db0d8e8707f9da09  # tags/grilo-0.3.4^0
 source=("git+https://git.gnome.org/browse/grilo#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -22,9 +22,6 @@
 
 prepare() {
   mkdir build
-  cd $pkgname
-  # Fixup tag mess
-  git tag -f grilo-0.3.3 8d04687dfa80625e655ce79fc995d7635456388b
 }
 
 build() {


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

2017-09-16 Thread Jan de Groot
Date: Saturday, September 16, 2017 @ 20:01:56
  Author: jgc
Revision: 305684

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  grilo/repos/gnome-unstable-i686/
  grilo/repos/gnome-unstable-i686/PKGBUILD
(from rev 305683, grilo/trunk/PKGBUILD)
  grilo/repos/gnome-unstable-x86_64/
  grilo/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 305683, grilo/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   42 +++
 gnome-unstable-x86_64/PKGBUILD |   42 +++
 2 files changed, 84 insertions(+)

Copied: grilo/repos/gnome-unstable-i686/PKGBUILD (from rev 305683, 
grilo/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2017-09-16 20:01:56 UTC (rev 305684)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=grilo
+pkgver=0.3.4
+pkgrel=1
+pkgdesc="Framework that provides access to various sources of multimedia 
content"
+url="https://wiki.gnome.org/Projects/Grilo;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(gtk3 libxml2 libsoup liboauth totem-plparser)
+makedepends=(gobject-introspection gtk-doc vala git meson)
+optdepends=('grilo-plugins: Plugins for grilo')
+_commit=b773deccb84c159850cdcf73db0d8e8707f9da09  # tags/grilo-0.3.4^0
+source=("git+https://git.gnome.org/browse/grilo#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^grilo-//;s/-/+/g'
+}
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  export LANG=en_US.UTF-8
+  meson --prefix=/usr --buildtype=plain -Denable-gtk-doc=true ../$pkgname
+  ninja
+}
+
+check() {
+  cd build
+  ninja test
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+}

Copied: grilo/repos/gnome-unstable-x86_64/PKGBUILD (from rev 305683, 
grilo/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2017-09-16 20:01:56 UTC (rev 305684)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=grilo
+pkgver=0.3.4
+pkgrel=1
+pkgdesc="Framework that provides access to various sources of multimedia 
content"
+url="https://wiki.gnome.org/Projects/Grilo;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(gtk3 libxml2 libsoup liboauth totem-plparser)
+makedepends=(gobject-introspection gtk-doc vala git meson)
+optdepends=('grilo-plugins: Plugins for grilo')
+_commit=b773deccb84c159850cdcf73db0d8e8707f9da09  # tags/grilo-0.3.4^0
+source=("git+https://git.gnome.org/browse/grilo#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^grilo-//;s/-/+/g'
+}
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  export LANG=en_US.UTF-8
+  meson --prefix=/usr --buildtype=plain -Denable-gtk-doc=true ../$pkgname
+  ninja
+}
+
+check() {
+  cd build
+  ninja test
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+}


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

2017-09-16 Thread Andreas Radke
Date: Saturday, September 16, 2017 @ 20:00:39
  Author: andyrtr
Revision: 305681

upgpkg: cups-filters 1.17.6-1

upstream update 1.17.6

Modified:
  cups-filters/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 19:59:36 UTC (rev 305680)
+++ PKGBUILD2017-09-16 20:00:39 UTC (rev 305681)
@@ -2,7 +2,7 @@
 # Maintainer: Andreas Radke 
 
 pkgname=cups-filters
-pkgver=1.17.5
+pkgver=1.17.6
 pkgrel=1
 pkgdesc="OpenPrinting CUPS Filters"
 arch=('i686' 'x86_64')
@@ -18,7 +18,7 @@
 backup=(etc/fonts/conf.d/99pdftoopvp.conf
 etc/cups/cups-browsed.conf)
 
source=(https://www.openprinting.org/download/cups-filters/$pkgname-$pkgver.tar.xz)
-sha256sums=('b10e347171ace6d4adf32b707008cf09e9d5193826fac1deb2eed96f5f432e31')
+sha256sums=('124921a2864787bc38a6488c04e4897228722b5ba6cfe2fff903ab989ae2fb49')
 
 build() {
   cd $pkgname-$pkgver


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

2017-09-16 Thread Andreas Radke
Date: Saturday, September 16, 2017 @ 20:00:53
  Author: andyrtr
Revision: 305682

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  cups-filters/repos/staging-i686/PKGBUILD
(from rev 305681, cups-filters/trunk/PKGBUILD)
  cups-filters/repos/staging-x86_64/PKGBUILD
(from rev 305681, cups-filters/trunk/PKGBUILD)
Deleted:
  cups-filters/repos/staging-i686/PKGBUILD
  cups-filters/repos/staging-x86_64/PKGBUILD

-+
 /PKGBUILD   |  114 ++
 staging-i686/PKGBUILD   |   57 ---
 staging-x86_64/PKGBUILD |   57 ---
 3 files changed, 114 insertions(+), 114 deletions(-)

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2017-09-16 20:00:39 UTC (rev 305681)
+++ staging-i686/PKGBUILD   2017-09-16 20:00:53 UTC (rev 305682)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-
-pkgname=cups-filters
-pkgver=1.17.5
-pkgrel=1
-pkgdesc="OpenPrinting CUPS Filters"
-arch=('i686' 'x86_64')
-url="https://wiki.linuxfoundation.org/openprinting/cups-filters;
-license=('custom')
-depends=('lcms2' 'poppler' 'qpdf' 'imagemagick' 'liblouis' 'ijs' 'libcups' 
'systemd')
-makedepends=('ghostscript' 'ttf-dejavu' 'python' 'mupdf-tools') # ttf-dejavu 
for make check
-optdepends=('ghostscript: for non-PostScript printers to print with CUPS to 
convert PostScript to raster images'
-   'foomatic-db: drivers use Ghostscript to convert PostScript to a 
printable form directly'
-   'foomatic-db-engine: drivers use Ghostscript to convert PostScript 
to a printable form directly'
-   'foomatic-db-nonfree: drivers use Ghostscript to convert PostScript 
to a printable form directly'
-   'antiword: needed to convert MS Word documents (requires also 
docx2txt (AUR)')
-backup=(etc/fonts/conf.d/99pdftoopvp.conf
-etc/cups/cups-browsed.conf)
-source=(https://www.openprinting.org/download/cups-filters/$pkgname-$pkgver.tar.xz)
-sha256sums=('b10e347171ace6d4adf32b707008cf09e9d5193826fac1deb2eed96f5f432e31')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr  \
---sysconfdir=/etc \
---sbindir=/usr/bin \
---localstatedir=/var \
---with-rcdir=no \
---enable-avahi \
---with-browseremoteprotocols=DNSSD,CUPS \
---enable-auto-setup-driverless \
---with-test-font-path=/usr/share/fonts/TTF/DejaVuSans.ttf
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir/" install
-  
-  # add upstream systemd support file
-  install -Dm644 utils/cups-browsed.service 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
-  sed -i "s|/usr/sbin/cups-browsed|/usr/bin/cups-browsed|" 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
-  sed -i "s|cups.service|org.cups.cupsd.service|g" 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
-  
-  # use lp group from cups pkg FS#36769
-  chgrp -R lp ${pkgdir}/etc/cups
-
-  # license
-  mkdir -p "${pkgdir}"/usr/share/licenses/${pkgname}
-  install -m644 "${srcdir}"/${pkgname}-${pkgver}/COPYING 
"${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: cups-filters/repos/staging-i686/PKGBUILD (from rev 305681, 
cups-filters/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-09-16 20:00:53 UTC (rev 305682)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Andreas Radke 
+
+pkgname=cups-filters
+pkgver=1.17.6
+pkgrel=1
+pkgdesc="OpenPrinting CUPS Filters"
+arch=('i686' 'x86_64')
+url="https://wiki.linuxfoundation.org/openprinting/cups-filters;
+license=('custom')
+depends=('lcms2' 'poppler' 'qpdf' 'imagemagick' 'liblouis' 'ijs' 'libcups' 
'systemd')
+makedepends=('ghostscript' 'ttf-dejavu' 'python' 'mupdf-tools') # ttf-dejavu 
for make check
+optdepends=('ghostscript: for non-PostScript printers to print with CUPS to 
convert PostScript to raster images'
+   'foomatic-db: drivers use Ghostscript to convert PostScript to a 
printable form directly'
+   'foomatic-db-engine: drivers use Ghostscript to convert PostScript 
to a printable form directly'
+   'foomatic-db-nonfree: drivers use Ghostscript to convert PostScript 
to a printable form directly'
+   'antiword: needed to convert MS Word documents (requires also 
docx2txt (AUR)')
+backup=(etc/fonts/conf.d/99pdftoopvp.conf
+etc/cups/cups-browsed.conf)
+source=(https://www.openprinting.org/download/cups-filters/$pkgname-$pkgver.tar.xz)
+sha256sums=('124921a2864787bc38a6488c04e4897228722b5ba6cfe2fff903ab989ae2fb49')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr  \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--with-rcdir=no \
+--enable-avahi 

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

2017-09-16 Thread Jan de Groot
Date: Saturday, September 16, 2017 @ 19:59:36
  Author: jgc
Revision: 305680

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  totem-plparser/repos/gnome-unstable-i686/
  totem-plparser/repos/gnome-unstable-i686/PKGBUILD
(from rev 305679, totem-plparser/trunk/PKGBUILD)
  totem-plparser/repos/gnome-unstable-x86_64/
  totem-plparser/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 305679, totem-plparser/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   37 +
 gnome-unstable-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: totem-plparser/repos/gnome-unstable-i686/PKGBUILD (from rev 305679, 
totem-plparser/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2017-09-16 19:59:36 UTC (rev 305680)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=totem-plparser
+pkgver=3.26.0
+pkgrel=1
+pkgdesc="Simple GObject-based library to parse and save a host of playlist 
formats"
+url="https://git.gnome.org/browse/totem-pl-parser;
+license=(LGPL)
+arch=(i686 x86_64)
+depends=(gmime3 libarchive libquvi libxml2)
+makedepends=(gobject-introspection git gtk-doc libsoup meson)
+_commit=279ca9c68f9ed24a29bec5ababcdbf97fd5d08e7  # tags/V_3_26_0^0
+source=("git+https://git.gnome.org/browse/totem-pl-parser#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd totem-pl-parser
+  git describe --tags | sed 's/^V_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd totem-pl-parser
+}
+
+build() {
+  cd build
+  meson setup --prefix=/usr --libexecdir=/usr/lib --buildtype=release 
-Denable-gtk-doc=true ../totem-pl-parser
+  ninja
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+}

Copied: totem-plparser/repos/gnome-unstable-x86_64/PKGBUILD (from rev 305679, 
totem-plparser/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2017-09-16 19:59:36 UTC (rev 305680)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=totem-plparser
+pkgver=3.26.0
+pkgrel=1
+pkgdesc="Simple GObject-based library to parse and save a host of playlist 
formats"
+url="https://git.gnome.org/browse/totem-pl-parser;
+license=(LGPL)
+arch=(i686 x86_64)
+depends=(gmime3 libarchive libquvi libxml2)
+makedepends=(gobject-introspection git gtk-doc libsoup meson)
+_commit=279ca9c68f9ed24a29bec5ababcdbf97fd5d08e7  # tags/V_3_26_0^0
+source=("git+https://git.gnome.org/browse/totem-pl-parser#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd totem-pl-parser
+  git describe --tags | sed 's/^V_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd totem-pl-parser
+}
+
+build() {
+  cd build
+  meson setup --prefix=/usr --libexecdir=/usr/lib --buildtype=release 
-Denable-gtk-doc=true ../totem-pl-parser
+  ninja
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+}


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

2017-09-16 Thread Jan de Groot
Date: Saturday, September 16, 2017 @ 19:59:29
  Author: jgc
Revision: 305679

upgpkg: totem-plparser 3.26.0-1

Disable testsuite, fails with a 404 error on an image that is no longer 
available

Modified:
  totem-plparser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 19:56:37 UTC (rev 305678)
+++ PKGBUILD2017-09-16 19:59:29 UTC (rev 305679)
@@ -10,16 +10,11 @@
 license=(LGPL)
 arch=(i686 x86_64)
 depends=(gmime3 libarchive libquvi libxml2)
-makedepends=(gobject-introspection git gnome-common gtk-doc libsoup meson)
+makedepends=(gobject-introspection git gtk-doc libsoup meson)
 _commit=279ca9c68f9ed24a29bec5ababcdbf97fd5d08e7  # tags/V_3_26_0^0
 source=("git+https://git.gnome.org/browse/totem-pl-parser#commit=$_commit;)
 sha256sums=('SKIP')
 
-check() {
-  cd build
-  meson test
-}
-
 pkgver() {
   cd totem-pl-parser
   git describe --tags | sed 's/^V_//;s/_/./g;s/-/+/g'
@@ -32,7 +27,7 @@
 
 build() {
   cd build
-  meson setup --prefix=/usr --buildtype=release -Denable-gtk-doc=true 
../totem-pl-parser
+  meson setup --prefix=/usr --libexecdir=/usr/lib --buildtype=release 
-Denable-gtk-doc=true ../totem-pl-parser
   ninja
 }
 


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

2017-09-16 Thread Levente Polyak
Date: Saturday, September 16, 2017 @ 19:57:36
  Author: anthraxx
Revision: 258577

fix security patch and remove useless install file

Modified:
  newsbeuter/trunk/PKGBUILD
  newsbeuter/trunk/remote-code-execution-podcast-name.patch
Deleted:
  newsbeuter/trunk/newsbeuter.install

--+
 PKGBUILD |7 ++-
 newsbeuter.install   |6 --
 remote-code-execution-podcast-name.patch |2 +-
 3 files changed, 3 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 19:53:20 UTC (rev 258576)
+++ PKGBUILD2017-09-16 19:57:36 UTC (rev 258577)
@@ -11,9 +11,8 @@
 license=('custom: MIT')
 depends=('curl' 'json-c' 'libxml2' 'sqlite' 'stfl')
 makedepends=('swig' 'gettext')
-install=$pkgname.install
 changelog=$pkgname.changelog
-source=($pkgname-r$pkgver.tar.gz::https://github.com/akrennmair/$pkgname/archive/r2.9.tar.gz
+source=($pkgname-r$pkgver.tar.gz::https://github.com/akrennmair/$pkgname/archive/r$pkgver.tar.gz
 $pkgname-$pkgver-ncursesw6.patch
 
$pkgname-segfault.patch::https://github.com/akrennmair/newsbeuter/commit/33577f842d9b74c119f3cebda95ef8652304db81.patch
 newsbeuter-CVE-2017-12904.patch
@@ -22,7 +21,7 @@
 '5ae54c463f44d91725da3be655d2b107d598ade6da86ab4a99b10b039b8dba27'
 '60f56cabe47a1773f4a3a960ae0aee418f8a6df7bdd48b9874bf79cdd4c23b84'
 '51c57a5b92704f5659e1283d1bdde521b9df64d315c9584e0fc4e69bb74db930'
-'481b301c217f4512390ef8428654fdf217bc04c361e3e6c4f97c6c96efac161a')
+'f5d7b9af66884e9551eb28a36bad9f14f361809664fddde68e89ca540e4a27c9')
 
 prepare() {
   cd "${srcdir}"/$pkgname-r$pkgver
@@ -43,7 +42,5 @@
   cd "${srcdir}"/$pkgname-r$pkgver
 
   make prefix=/usr DESTDIR="${pkgdir}" install
-
-#license
   install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
 }

Deleted: newsbeuter.install
===
--- newsbeuter.install  2017-09-16 19:53:20 UTC (rev 258576)
+++ newsbeuter.install  2017-09-16 19:57:36 UTC (rev 258577)
@@ -1,6 +0,0 @@
-post_install() {
-cat << EOF
-==> If you're not satisfied by the information "man newsbeuter" provides,
-==> have a look at /usr/share/doc/newsbeuter/newsbeuter.html
-EOF
-}

Modified: remote-code-execution-podcast-name.patch
===
--- remote-code-execution-podcast-name.patch2017-09-16 19:53:20 UTC (rev 
258576)
+++ remote-code-execution-podcast-name.patch2017-09-16 19:57:36 UTC (rev 
258577)
@@ -10,7 +10,7 @@
 -  cmdline.append("\"");
 +  cmdline.append(" \'");
 +  cmdline.append(utils::replace_all(file,"'", "%27"));
-+  cmdline.append(" \'");
++  cmdline.append("\'");
stfl::reset();
LOG(LOG_DEBUG, "pb_controller::play_file: running `%s'", 
cmdline.c_str());
::system(cmdline.c_str());


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

2017-09-16 Thread Andreas Radke
Date: Saturday, September 16, 2017 @ 19:56:37
  Author: andyrtr
Revision: 305678

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  qpdf/repos/staging-i686/PKGBUILD
(from rev 305677, qpdf/trunk/PKGBUILD)
  qpdf/repos/staging-x86_64/PKGBUILD
(from rev 305677, qpdf/trunk/PKGBUILD)
Deleted:
  qpdf/repos/staging-i686/PKGBUILD
  qpdf/repos/staging-x86_64/PKGBUILD

-+
 /PKGBUILD   |   70 ++
 staging-i686/PKGBUILD   |   40 --
 staging-x86_64/PKGBUILD |   40 --
 3 files changed, 70 insertions(+), 80 deletions(-)

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2017-09-16 19:56:12 UTC (rev 305677)
+++ staging-i686/PKGBUILD   2017-09-16 19:56:37 UTC (rev 305678)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-# Contributor: Miguel Revilla 
-# Contributor: David Sotelo 
-# Contributor: Nuno Araujo 
-
-pkgname=qpdf
-pkgver=7.0B1
-_pkgver=7.0.b1
-pkgrel=1
-pkgdesc="QPDF: A Content-Preserving PDF Transformation System"
-arch=('i686' 'x86_64')
-url="https://qpdf.sourceforge.net/;
-license=('custom:Artistic-2.0')
-depends=('openjpeg2')
-#source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}-${_pkgver}.tar.gz)
-sha1sums=('431d6b37520587860e722b5eb2dc8e3cc0f079f6')
-
-build() {
-#  cd ${pkgname}-${pkgver}
-  cd ${pkgname}-${_pkgver}
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-check() {
-#  cd ${pkgname}-${pkgver}
-  cd ${pkgname}-${_pkgver}
-  make check # passes all
-}
-
-package() {
-#  cd ${pkgname}-${pkgver}
-  cd ${pkgname}-${_pkgver}
-  make DESTDIR="${pkgdir}/" install
-
-  mkdir -m755 -p ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 Artistic-2.0 ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: qpdf/repos/staging-i686/PKGBUILD (from rev 305677, qpdf/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-09-16 19:56:37 UTC (rev 305678)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Miguel Revilla 
+# Contributor: David Sotelo 
+# Contributor: Nuno Araujo 
+
+pkgname=qpdf
+pkgver=7.0.0
+pkgrel=1
+pkgdesc="QPDF: A Content-Preserving PDF Transformation System"
+arch=('i686' 'x86_64')
+url="https://qpdf.sourceforge.net/;
+license=('custom:Artistic-2.0' 'Apache')
+depends=('openjpeg2' 'perl')
+source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('506002271a7e04f431014baa94dd820c47235356')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check # passes all
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}/" install
+
+  mkdir -m755 -p ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 {Artistic-2.0,LICENSE.txt} 
${pkgdir}/usr/share/licenses/${pkgname}/
+}

Deleted: staging-x86_64/PKGBUILD
===
--- staging-x86_64/PKGBUILD 2017-09-16 19:56:12 UTC (rev 305677)
+++ staging-x86_64/PKGBUILD 2017-09-16 19:56:37 UTC (rev 305678)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-# Contributor: Miguel Revilla 
-# Contributor: David Sotelo 
-# Contributor: Nuno Araujo 
-
-pkgname=qpdf
-pkgver=7.0B1
-_pkgver=7.0.b1
-pkgrel=1
-pkgdesc="QPDF: A Content-Preserving PDF Transformation System"
-arch=('i686' 'x86_64')
-url="https://qpdf.sourceforge.net/;
-license=('custom:Artistic-2.0')
-depends=('openjpeg2')
-#source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}-${_pkgver}.tar.gz)
-sha1sums=('431d6b37520587860e722b5eb2dc8e3cc0f079f6')
-
-build() {
-#  cd ${pkgname}-${pkgver}
-  cd ${pkgname}-${_pkgver}
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-check() {
-#  cd ${pkgname}-${pkgver}
-  cd ${pkgname}-${_pkgver}
-  make check # passes all
-}
-
-package() {
-#  cd ${pkgname}-${pkgver}
-  cd ${pkgname}-${_pkgver}
-  make DESTDIR="${pkgdir}/" install
-
-  mkdir -m755 -p ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 Artistic-2.0 ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: qpdf/repos/staging-x86_64/PKGBUILD (from rev 305677, 
qpdf/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-09-16 19:56:37 UTC (rev 305678)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Miguel 

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

2017-09-16 Thread Andreas Radke
Date: Saturday, September 16, 2017 @ 19:56:12
  Author: andyrtr
Revision: 305677

upgpkg: qpdf 7.0.0-1

upstream update 7.0.0

Modified:
  qpdf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 19:53:48 UTC (rev 305676)
+++ PKGBUILD2017-09-16 19:56:12 UTC (rev 305677)
@@ -5,36 +5,31 @@
 # Contributor: Nuno Araujo 
 
 pkgname=qpdf
-pkgver=7.0B1
-_pkgver=7.0.b1
+pkgver=7.0.0
 pkgrel=1
 pkgdesc="QPDF: A Content-Preserving PDF Transformation System"
 arch=('i686' 'x86_64')
 url="https://qpdf.sourceforge.net/;
-license=('custom:Artistic-2.0')
-depends=('openjpeg2')
-#source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}-${_pkgver}.tar.gz)
-sha1sums=('431d6b37520587860e722b5eb2dc8e3cc0f079f6')
+license=('custom:Artistic-2.0' 'Apache')
+depends=('openjpeg2' 'perl')
+source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('506002271a7e04f431014baa94dd820c47235356')
 
 build() {
-#  cd ${pkgname}-${pkgver}
-  cd ${pkgname}-${_pkgver}
+  cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr --disable-static
   make
 }
 
 check() {
-#  cd ${pkgname}-${pkgver}
-  cd ${pkgname}-${_pkgver}
+  cd ${pkgname}-${pkgver}
   make check # passes all
 }
 
 package() {
-#  cd ${pkgname}-${pkgver}
-  cd ${pkgname}-${_pkgver}
+  cd ${pkgname}-${pkgver}
   make DESTDIR="${pkgdir}/" install
 
   mkdir -m755 -p ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 Artistic-2.0 ${pkgdir}/usr/share/licenses/${pkgname}/
+  install -m644 {Artistic-2.0,LICENSE.txt} 
${pkgdir}/usr/share/licenses/${pkgname}/
 }


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

2017-09-16 Thread Jan de Groot
Date: Saturday, September 16, 2017 @ 19:53:32
  Author: jgc
Revision: 305673

Add repos dir

Modified:
  totem-plparser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 19:53:26 UTC (rev 305672)
+++ PKGBUILD2017-09-16 19:53:32 UTC (rev 305673)
@@ -3,18 +3,23 @@
 # Contributor: Jan de Groot 
 
 pkgname=totem-plparser
-pkgver=3.10.7+40+g3859685
+pkgver=3.26.0
 pkgrel=1
 pkgdesc="Simple GObject-based library to parse and save a host of playlist 
formats"
 url="https://git.gnome.org/browse/totem-pl-parser;
 license=(LGPL)
 arch=(i686 x86_64)
-depends=(gmime libarchive libquvi libxml2)
-makedepends=(intltool gobject-introspection git gnome-common gtk-doc libsoup)
-_commit=38596857372ef60205da048d38d21f3b6368875f  # master
+depends=(gmime3 libarchive libquvi libxml2)
+makedepends=(gobject-introspection git gnome-common gtk-doc libsoup meson)
+_commit=279ca9c68f9ed24a29bec5ababcdbf97fd5d08e7  # tags/V_3_26_0^0
 source=("git+https://git.gnome.org/browse/totem-pl-parser#commit=$_commit;)
 sha256sums=('SKIP')
 
+check() {
+  cd build
+  meson test
+}
+
 pkgver() {
   cd totem-pl-parser
   git describe --tags | sed 's/^V_//;s/_/./g;s/-/+/g'
@@ -21,19 +26,17 @@
 }
 
 prepare() {
+  mkdir build
   cd totem-pl-parser
-  NOCONFIGURE=1 ./autogen.sh
 }
 
 build() {
-  cd totem-pl-parser
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --libexecdir=/usr/lib --disable-static --enable-gtk-doc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
+  cd build
+  meson setup --prefix=/usr --buildtype=release -Denable-gtk-doc=true 
../totem-pl-parser
+  ninja
 }
 
-package(){
-  cd totem-pl-parser
-  make DESTDIR="$pkgdir" install
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
 }


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

2017-09-16 Thread Jan de Groot
Date: Saturday, September 16, 2017 @ 19:53:02
  Author: jgc
Revision: 305669

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gmime3/repos/gnome-unstable-i686/
  gmime3/repos/gnome-unstable-i686/PKGBUILD
(from rev 305667, gmime3/trunk/PKGBUILD)
  gmime3/repos/gnome-unstable-x86_64/
  gmime3/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 305667, gmime3/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   46 +++
 gnome-unstable-x86_64/PKGBUILD |   46 +++
 2 files changed, 92 insertions(+)

Copied: gmime3/repos/gnome-unstable-i686/PKGBUILD (from rev 305667, 
gmime3/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2017-09-16 19:53:02 UTC (rev 305669)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Ben 
+
+pkgname=gmime3
+pkgver=3.0.2
+pkgrel=1
+pkgdesc="Glorious MIME Utility Library"
+arch=(i686 x86_64)
+license=(GPL)
+url="http://spruce.sourceforge.net/gmime/;
+depends=(glib2 gpgme zlib)
+makedepends=(gobject-introspection gtk-doc git vala docbook-utils)
+_commit=36649c37b163adc75a7229f799afd186edebe9bd  # master
+source=("git+https://git.gnome.org/browse/gmime#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd gmime
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd gmime
+  git tag -f 3.0.2 36649c37b163adc75a7229f799afd186edebe9bd 
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd gmime
+
+  ./configure --prefix=/usr \
+--program-prefix=$pkgname \
+--enable-gtk-doc \
+--enable-smime \
+--disable-static
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd gmime
+  make DESTDIR="$pkgdir" install
+}

Copied: gmime3/repos/gnome-unstable-x86_64/PKGBUILD (from rev 305667, 
gmime3/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2017-09-16 19:53:02 UTC (rev 305669)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Ben 
+
+pkgname=gmime3
+pkgver=3.0.2
+pkgrel=1
+pkgdesc="Glorious MIME Utility Library"
+arch=(i686 x86_64)
+license=(GPL)
+url="http://spruce.sourceforge.net/gmime/;
+depends=(glib2 gpgme zlib)
+makedepends=(gobject-introspection gtk-doc git vala docbook-utils)
+_commit=36649c37b163adc75a7229f799afd186edebe9bd  # master
+source=("git+https://git.gnome.org/browse/gmime#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd gmime
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd gmime
+  git tag -f 3.0.2 36649c37b163adc75a7229f799afd186edebe9bd 
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd gmime
+
+  ./configure --prefix=/usr \
+--program-prefix=$pkgname \
+--enable-gtk-doc \
+--enable-smime \
+--disable-static
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd gmime
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in gmime3 (repos)

2017-09-16 Thread Jan de Groot
Date: Saturday, September 16, 2017 @ 19:52:27
  Author: jgc
Revision: 305667

Add repos dir

Added:
  gmime3/repos/


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

2017-09-16 Thread Jan de Groot
Date: Saturday, September 16, 2017 @ 19:52:11
  Author: jgc
Revision: 305666

Add gmime3 package, parallel installable with old gmime 2.6

Added:
  gmime3/
  gmime3/trunk/
Modified:
  gmime3/trunk/PKGBUILD

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

Modified: gmime3/trunk/PKGBUILD
===
--- gmime/trunk/PKGBUILD2017-09-16 19:32:30 UTC (rev 305665)
+++ gmime3/trunk/PKGBUILD   2017-09-16 19:52:11 UTC (rev 305666)
@@ -2,8 +2,8 @@
 # Maintainer: Jan de Groot 
 # Contributor: Ben 
 
-pkgname=gmime
-pkgver=2.6.23+4+g91dcee38
+pkgname=gmime3
+pkgver=3.0.2
 pkgrel=1
 pkgdesc="Glorious MIME Utility Library"
 arch=(i686 x86_64)
@@ -10,32 +10,28 @@
 license=(GPL)
 url="http://spruce.sourceforge.net/gmime/;
 depends=(glib2 gpgme zlib)
-makedepends=(gtk-sharp-2 gobject-introspection gtk-doc git vala docbook-utils)
-_commit=91dcee38ea301463fb9c6bc936f08b9fd1c0969f  # gmime-2-6
+makedepends=(gobject-introspection gtk-doc git vala docbook-utils)
+_commit=36649c37b163adc75a7229f799afd186edebe9bd  # master
 source=("git+https://git.gnome.org/browse/gmime#commit=$_commit;)
 sha256sums=('SKIP')
 
 pkgver() {
-  cd $pkgname
+  cd gmime
   git describe --tags | sed 's/-/+/g'
 }
 
 prepare() {
-  cd $pkgname
+  cd gmime
+  git tag -f 3.0.2 36649c37b163adc75a7229f799afd186edebe9bd 
   NOCONFIGURE=1 ./autogen.sh
 }
 
 build() {
-  # get rid of that .wapi errors in fakeroot
-  export MONO_SHARED_DIR="$srcdir/weird"
-  mkdir -p "$MONO_SHARED_DIR"
+  cd gmime
 
-  cd "$pkgname"
-
   ./configure --prefix=/usr \
 --program-prefix=$pkgname \
 --enable-gtk-doc \
---enable-mono \
 --enable-smime \
 --disable-static
 
@@ -45,6 +41,6 @@
 }
 
 package() {
-  cd "$pkgname"
+  cd gmime
   make DESTDIR="$pkgdir" install
 }


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

2017-09-16 Thread Jelle van der Waa
Date: Saturday, September 16, 2017 @ 19:41:55
  Author: jelle
Revision: 258571

bump pkgrel for two CVE issues

Fix the non-applied CVE patch for bookmarking remote code execution and the new
remote execution issue.

Modified:
  newsbeuter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 19:41:14 UTC (rev 258570)
+++ PKGBUILD2017-09-16 19:41:55 UTC (rev 258571)
@@ -4,7 +4,7 @@
 
 pkgname=newsbeuter
 pkgver=2.9
-pkgrel=7
+pkgrel=8
 pkgdesc="A RSS feed reader for the text console with special Podcast support"
 arch=('i686' 'x86_64')
 url="http://www.newsbeuter.org/;
@@ -16,11 +16,13 @@
 
source=($pkgname-r$pkgver.tar.gz::https://github.com/akrennmair/$pkgname/archive/r2.9.tar.gz
 $pkgname-$pkgver-ncursesw6.patch
 
$pkgname-segfault.patch::https://github.com/akrennmair/newsbeuter/commit/33577f842d9b74c119f3cebda95ef8652304db81.patch
-
$pkgname-CVE-2017-12904.patch::https://github.com/akrennmair/newsbeuter/commit/96e9506ae9e252c548665152d1b8968297128307.patch)
+newsbeuter-CVE-2017-12904.patch
+remote-code-execution-podcast-name.patch)
 sha256sums=('489694a57d4af390aa15ab48b66517b0dc34a1cda4410eb5f6f997c6369f51d8'
 '5ae54c463f44d91725da3be655d2b107d598ade6da86ab4a99b10b039b8dba27'
 '60f56cabe47a1773f4a3a960ae0aee418f8a6df7bdd48b9874bf79cdd4c23b84'
-'e68046ad75362a10db1d7a30b1193d4f9ce55c1ef99f217ee11fad66b00e9a2c')
+'51c57a5b92704f5659e1283d1bdde521b9df64d315c9584e0fc4e69bb74db930'
+'481b301c217f4512390ef8428654fdf217bc04c361e3e6c4f97c6c96efac161a')
 
 prepare() {
   cd "${srcdir}"/$pkgname-r$pkgver
@@ -27,6 +29,8 @@
 
   patch -p1 -i ../$pkgname-$pkgver-ncursesw6.patch
   patch -p1 -i ../$pkgname-segfault.patch
+  patch -p1 -i ../$pkgname-CVE-2017-12904.patch
+  patch -p1 -i ../remote-code-execution-podcast-name.patch
 }
 
 build() {


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

2017-09-16 Thread Jelle van der Waa
Date: Saturday, September 16, 2017 @ 19:41:14
  Author: jelle
Revision: 258570

Add security patches

Added:
  newsbeuter/trunk/newsbeuter-CVE-2017-12904.patch
  newsbeuter/trunk/remote-code-execution-podcast-name.patch

--+
 newsbeuter-CVE-2017-12904.patch  |   19 +++
 remote-code-execution-podcast-name.patch |   28 
 2 files changed, 47 insertions(+)

Added: newsbeuter-CVE-2017-12904.patch
===
--- newsbeuter-CVE-2017-12904.patch (rev 0)
+++ newsbeuter-CVE-2017-12904.patch 2017-09-16 19:41:14 UTC (rev 258570)
@@ -0,0 +1,19 @@
+diff -aur newsbeuter-r2.9/src/controller.cpp 
newsbeuter-r2.9.new/src/controller.cpp
+--- newsbeuter-r2.9/src/controller.cpp 2015-02-19 11:56:59.0 +0100
 newsbeuter-r2.9.new/src/controller.cpp 2017-09-16 21:33:14.568552568 
+0200
+@@ -1275,9 +1275,11 @@
+   std::string bookmark_cmd = cfg.get_configvalue("bookmark-cmd");
+   bool is_interactive = 
cfg.get_configvalue_as_bool("bookmark-interactive");
+   if (bookmark_cmd.length() > 0) {
+-  std::string cmdline = utils::strprintf("%s '%s' %s %s",
+- bookmark_cmd.c_str(), 
utils::replace_all(url,"'", "%27").c_str(),
+- 
stfl::quote(title).c_str(), stfl::quote(description).c_str());
++  std::string cmdline = utils::strprintf("%s '%s' '%s' '%s'",
++ bookmark_cmd.c_str(),
++ 
utils::replace_all(url,"'", "%27").c_str(),
++ 
utils::replace_all(title,"'", "%27").c_str(),
++ 
utils::replace_all(description,"'", "%27").c_str());
+ 
+   LOG(LOG_DEBUG, "controller::bookmark: cmd = %s", 
cmdline.c_str());
+ 
+Only in newsbeuter-r2.9.new/src: .controller.cpp.swp

Added: remote-code-execution-podcast-name.patch
===
--- remote-code-execution-podcast-name.patch(rev 0)
+++ remote-code-execution-podcast-name.patch2017-09-16 19:41:14 UTC (rev 
258570)
@@ -0,0 +1,28 @@
+diff -aur newsbeuter-r2.9/src/pb_controller.cpp 
newsbeuter-r2.9.new/src/pb_controller.cpp
+--- newsbeuter-r2.9/src/pb_controller.cpp  2015-02-19 11:56:59.0 
+0100
 newsbeuter-r2.9.new/src/pb_controller.cpp  2017-09-16 20:43:29.180683163 
+0200
+@@ -306,9 +306,9 @@
+   if (player == "")
+   return;
+   cmdline.append(player);
+-  cmdline.append(" \"");
+-  cmdline.append(utils::replace_all(file,"\"", "\\\""));
+-  cmdline.append("\"");
++  cmdline.append(" \'");
++  cmdline.append(utils::replace_all(file,"'", "%27"));
++  cmdline.append(" \'");
+   stfl::reset();
+   LOG(LOG_DEBUG, "pb_controller::play_file: running `%s'", 
cmdline.c_str());
+   ::system(cmdline.c_str());
+diff -aur newsbeuter-r2.9/src/queueloader.cpp 
newsbeuter-r2.9.new/src/queueloader.cpp
+--- newsbeuter-r2.9/src/queueloader.cpp2015-02-19 11:56:59.0 
+0100
 newsbeuter-r2.9.new/src/queueloader.cpp2017-09-16 20:47:01.884411680 
+0200
+@@ -130,7 +130,7 @@
+   strftime(lbuf, sizeof(lbuf), "%Y-%b-%d-%H%M%S.unknown", 
localtime());
+   fn.append(lbuf);
+   } else {
+-  fn.append(base);
++  fn.append(utils::replace_all(base, "'", "%27"));
+   }
+   return fn;
+ }


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

2017-09-16 Thread Jürgen Hötzel
Date: Saturday, September 16, 2017 @ 19:32:17
  Author: juergen
Revision: 305664

upgpkg: geoip 1.6.11-1

Modified:
  geoip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 19:29:37 UTC (rev 305663)
+++ PKGBUILD2017-09-16 19:32:17 UTC (rev 305664)
@@ -3,7 +3,7 @@
 # Contributor: Manolis Tzanidakis 
 
 pkgname=geoip
-pkgver=1.6.10
+pkgver=1.6.11
 pkgrel=1
 pkgdesc="Non-DNS IP-to-country resolver C library & utils"
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 makedepends=('autoconf' 'libtool')
 options=('!emptydirs')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/maxmind/${pkgname}-api-c/archive/v${pkgver}.tar.gz)
-sha256sums=('de0d6d037d5e0ad9f7110e7f3b82eb20a24616712d29be0019e28ba7364cdc3e')
+sha256sums=('8859cb7c9cb63e77f4aedb40a4622024359b956b251aba46b255acbe190c34e0')
 
 prepare() {
   cd geoip-api-c-$pkgver


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

2017-09-16 Thread Jürgen Hötzel
Date: Saturday, September 16, 2017 @ 19:32:30
  Author: juergen
Revision: 305665

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  geoip/repos/extra-i686/PKGBUILD
(from rev 305664, geoip/trunk/PKGBUILD)
  geoip/repos/extra-x86_64/PKGBUILD
(from rev 305664, geoip/trunk/PKGBUILD)
Deleted:
  geoip/repos/extra-i686/PKGBUILD
  geoip/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   78 
 extra-i686/PKGBUILD   |   39 
 extra-x86_64/PKGBUILD |   39 
 3 files changed, 78 insertions(+), 78 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-09-16 19:32:17 UTC (rev 305664)
+++ extra-i686/PKGBUILD 2017-09-16 19:32:30 UTC (rev 305665)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Juergen Hoetzel 
-# Contributor: Manolis Tzanidakis 
-
-pkgname=geoip
-pkgver=1.6.10
-pkgrel=1
-pkgdesc="Non-DNS IP-to-country resolver C library & utils"
-arch=('i686' 'x86_64')
-url="http://www.maxmind.com/app/c;
-license=('GPL')
-depends=('zlib' 'geoip-database')
-optdepends=('geoip-database-extra: city/ASN databases (not needed for country 
lookups)')
-makedepends=('autoconf' 'libtool')
-options=('!emptydirs')
-source=($pkgname-$pkgver.tar.gz::https://github.com/maxmind/${pkgname}-api-c/archive/v${pkgver}.tar.gz)
-sha256sums=('de0d6d037d5e0ad9f7110e7f3b82eb20a24616712d29be0019e28ba7364cdc3e')
-
-prepare() {
-  cd geoip-api-c-$pkgver
-  ./bootstrap
-}
-
-build() {
-  cd geoip-api-c-$pkgver
-
-  ./configure \
---prefix=/usr \
---mandir=/usr/share/man \
---sysconfdir=/etc/geoip
-  make
-}
-
-package() {
-  cd geoip-api-c-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: geoip/repos/extra-i686/PKGBUILD (from rev 305664, geoip/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-09-16 19:32:30 UTC (rev 305665)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Juergen Hoetzel 
+# Contributor: Manolis Tzanidakis 
+
+pkgname=geoip
+pkgver=1.6.11
+pkgrel=1
+pkgdesc="Non-DNS IP-to-country resolver C library & utils"
+arch=('i686' 'x86_64')
+url="http://www.maxmind.com/app/c;
+license=('GPL')
+depends=('zlib' 'geoip-database')
+optdepends=('geoip-database-extra: city/ASN databases (not needed for country 
lookups)')
+makedepends=('autoconf' 'libtool')
+options=('!emptydirs')
+source=($pkgname-$pkgver.tar.gz::https://github.com/maxmind/${pkgname}-api-c/archive/v${pkgver}.tar.gz)
+sha256sums=('8859cb7c9cb63e77f4aedb40a4622024359b956b251aba46b255acbe190c34e0')
+
+prepare() {
+  cd geoip-api-c-$pkgver
+  ./bootstrap
+}
+
+build() {
+  cd geoip-api-c-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--mandir=/usr/share/man \
+--sysconfdir=/etc/geoip
+  make
+}
+
+package() {
+  cd geoip-api-c-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-09-16 19:32:17 UTC (rev 305664)
+++ extra-x86_64/PKGBUILD   2017-09-16 19:32:30 UTC (rev 305665)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Juergen Hoetzel 
-# Contributor: Manolis Tzanidakis 
-
-pkgname=geoip
-pkgver=1.6.10
-pkgrel=1
-pkgdesc="Non-DNS IP-to-country resolver C library & utils"
-arch=('i686' 'x86_64')
-url="http://www.maxmind.com/app/c;
-license=('GPL')
-depends=('zlib' 'geoip-database')
-optdepends=('geoip-database-extra: city/ASN databases (not needed for country 
lookups)')
-makedepends=('autoconf' 'libtool')
-options=('!emptydirs')
-source=($pkgname-$pkgver.tar.gz::https://github.com/maxmind/${pkgname}-api-c/archive/v${pkgver}.tar.gz)
-sha256sums=('de0d6d037d5e0ad9f7110e7f3b82eb20a24616712d29be0019e28ba7364cdc3e')
-
-prepare() {
-  cd geoip-api-c-$pkgver
-  ./bootstrap
-}
-
-build() {
-  cd geoip-api-c-$pkgver
-
-  ./configure \
---prefix=/usr \
---mandir=/usr/share/man \
---sysconfdir=/etc/geoip
-  make
-}
-
-package() {
-  cd geoip-api-c-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: geoip/repos/extra-x86_64/PKGBUILD (from rev 305664, 
geoip/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-09-16 19:32:30 UTC (rev 305665)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Juergen Hoetzel 
+# Contributor: Manolis Tzanidakis 
+
+pkgname=geoip
+pkgver=1.6.11
+pkgrel=1
+pkgdesc="Non-DNS IP-to-country resolver C library & utils"
+arch=('i686' 'x86_64')
+url="http://www.maxmind.com/app/c;
+license=('GPL')

[arch-commits] Commit in gnome-color-manager/repos (4 files)

2017-09-16 Thread Jan de Groot
Date: Saturday, September 16, 2017 @ 19:29:37
  Author: jgc
Revision: 305663

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gnome-color-manager/repos/gnome-unstable-i686/
  gnome-color-manager/repos/gnome-unstable-i686/PKGBUILD
(from rev 305662, gnome-color-manager/trunk/PKGBUILD)
  gnome-color-manager/repos/gnome-unstable-x86_64/
  gnome-color-manager/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 305662, gnome-color-manager/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   40 +++
 gnome-unstable-x86_64/PKGBUILD |   40 +++
 2 files changed, 80 insertions(+)

Copied: gnome-color-manager/repos/gnome-unstable-i686/PKGBUILD (from rev 
305662, gnome-color-manager/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2017-09-16 19:29:37 UTC (rev 305663)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-color-manager
+pkgver=3.26.0+3+g3620f9b
+pkgrel=1
+pkgdesc="GNOME Color Profile Tools"
+arch=(i686 x86_64)
+url="https://git.gnome.org/browse/gnome-color-manager;
+license=(GPL2)
+depends=(libcanberra vte3 exiv2 shared-color-targets colord-gtk libexif)
+makedepends=(itstool git appstream-glib meson)
+optdepends=('argyllcms: color calibration')
+options=('!emptydirs')
+groups=('gnome-extra')
+_commit=3620f9bc7e5f4f3cae856eaeac1046a41da69164  # master
+source=("git+https://git.gnome.org/browse/gnome-color-manager#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^GNOME_COLOR_MANAGER_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+}
+  
+
+build() {
+  cd build
+  meson setup --prefix=/usr --libexecdir=/usr/lib/gnome-color-manager 
--buildtype=release ../$pkgname
+  ninja
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+}

Copied: gnome-color-manager/repos/gnome-unstable-x86_64/PKGBUILD (from rev 
305662, gnome-color-manager/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2017-09-16 19:29:37 UTC (rev 305663)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-color-manager
+pkgver=3.26.0+3+g3620f9b
+pkgrel=1
+pkgdesc="GNOME Color Profile Tools"
+arch=(i686 x86_64)
+url="https://git.gnome.org/browse/gnome-color-manager;
+license=(GPL2)
+depends=(libcanberra vte3 exiv2 shared-color-targets colord-gtk libexif)
+makedepends=(itstool git appstream-glib meson)
+optdepends=('argyllcms: color calibration')
+options=('!emptydirs')
+groups=('gnome-extra')
+_commit=3620f9bc7e5f4f3cae856eaeac1046a41da69164  # master
+source=("git+https://git.gnome.org/browse/gnome-color-manager#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^GNOME_COLOR_MANAGER_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+}
+  
+
+build() {
+  cd build
+  meson setup --prefix=/usr --libexecdir=/usr/lib/gnome-color-manager 
--buildtype=release ../$pkgname
+  ninja
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+}


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

2017-09-16 Thread Jan de Groot
Date: Saturday, September 16, 2017 @ 19:29:31
  Author: jgc
Revision: 305662

upgpkg: gnome-color-manager 3.26.0+3+g3620f9b-1

Modified:
  gnome-color-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 19:23:35 UTC (rev 305661)
+++ PKGBUILD2017-09-16 19:29:31 UTC (rev 305662)
@@ -2,44 +2,39 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-color-manager
-pkgver=3.24.0+4+ge78025a
-pkgrel=2
+pkgver=3.26.0+3+g3620f9b
+pkgrel=1
 pkgdesc="GNOME Color Profile Tools"
 arch=(i686 x86_64)
 url="https://git.gnome.org/browse/gnome-color-manager;
 license=(GPL2)
 depends=(libcanberra vte3 exiv2 shared-color-targets colord-gtk libexif)
-makedepends=(intltool yelp-tools git gnome-common appstream-glib)
+makedepends=(itstool git appstream-glib meson)
 optdepends=('argyllcms: color calibration')
 options=('!emptydirs')
 groups=('gnome-extra')
-_commit=e78025ac3ef768eecd0051748044113dc3dcb4eb  # master
+_commit=3620f9bc7e5f4f3cae856eaeac1046a41da69164  # master
 source=("git+https://git.gnome.org/browse/gnome-color-manager#commit=$_commit;)
 sha256sums=('SKIP')
 
 pkgver() {
   cd $pkgname
-  git describe --tags | sed -e 's/GNOME_COLOR_MANAGER_//' -e 's/_/\./g' -e 
's/-/+/g'
+  git describe --tags | sed 's/^GNOME_COLOR_MANAGER_//;s/_/./g;s/-/+/g'
 }
 
 prepare() {
+  mkdir build
   cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
 }
   
 
-build(){
-  cd $pkgname
-
-  # man pages need docbook-sgml, which we don't have
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --libexecdir=/usr/lib/gnome-color-manager --disable-static 
--disable-man-pages
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
+build() {
+  cd build
+  meson setup --prefix=/usr --libexecdir=/usr/lib/gnome-color-manager 
--buildtype=release ../$pkgname
+  ninja
 }
 
 package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
+  cd build
+  DESTDIR="$pkgdir" ninja install
 }


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

2017-09-16 Thread Jürgen Hötzel
Date: Saturday, September 16, 2017 @ 19:23:18
  Author: juergen
Revision: 305660

upgpkg: emacs 25.3-1

Modified:
  emacs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 14:51:49 UTC (rev 305659)
+++ PKGBUILD2017-09-16 19:23:18 UTC (rev 305660)
@@ -3,8 +3,8 @@
 # Contributor: Renchi Raju 
 
 pkgname=emacs
-pkgver=25.2
-pkgrel=2
+pkgver=25.3
+pkgrel=1
 pkgdesc="The extensible, customizable, self-documenting real-time display 
editor"
 arch=('i686' 'x86_64')
 url="http://www.gnu.org/software/emacs/emacs.html;
@@ -12,7 +12,7 @@
 depends=('librsvg' 'gpm' 'giflib' 'libxpm' 'libotf' 'm17n-lib' 'gtk3' 
'hicolor-icon-theme' 'gconf' 'desktop-file-utils' 'alsa-lib' 'imagemagick' 
'gnutls')
 validpgpkeys=('B29426DEFB07724C3C35E5D36592E9A3A0B0F199' 
'28D3BED851FDF3AB57FEF93C233587A47C207910')
 source=(ftp://ftp.gnu.org/gnu/emacs/$pkgname-$pkgver.tar.xz{,.sig})
-sha1sums=('3960d0b64031c645d98aafd4dc9ebf6f6ef4cf50'
+sha1sums=('1cb4f39e9c0a3305fd62f936c7c95ff8e2924323'
  'SKIP')
 
 build() {


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

2017-09-16 Thread Jürgen Hötzel
Date: Saturday, September 16, 2017 @ 19:23:35
  Author: juergen
Revision: 305661

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  emacs/repos/extra-i686/PKGBUILD
(from rev 305660, emacs/trunk/PKGBUILD)
  emacs/repos/extra-x86_64/PKGBUILD
(from rev 305660, emacs/trunk/PKGBUILD)
Deleted:
  emacs/repos/extra-i686/PKGBUILD
  emacs/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   82 
 extra-i686/PKGBUILD   |   41 
 extra-x86_64/PKGBUILD |   41 
 3 files changed, 82 insertions(+), 82 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-09-16 19:23:18 UTC (rev 305660)
+++ extra-i686/PKGBUILD 2017-09-16 19:23:35 UTC (rev 305661)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Juergen Hoetzel 
-# Contributor: Renchi Raju 
-
-pkgname=emacs
-pkgver=25.2
-pkgrel=2
-pkgdesc="The extensible, customizable, self-documenting real-time display 
editor"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/emacs/emacs.html;
-license=('GPL3')
-depends=('librsvg' 'gpm' 'giflib' 'libxpm' 'libotf' 'm17n-lib' 'gtk3' 
'hicolor-icon-theme' 'gconf' 'desktop-file-utils' 'alsa-lib' 'imagemagick' 
'gnutls')
-validpgpkeys=('B29426DEFB07724C3C35E5D36592E9A3A0B0F199' 
'28D3BED851FDF3AB57FEF93C233587A47C207910')
-source=(ftp://ftp.gnu.org/gnu/emacs/$pkgname-$pkgver.tar.xz{,.sig})
-sha1sums=('3960d0b64031c645d98aafd4dc9ebf6f6ef4cf50'
- 'SKIP')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  ac_cv_lib_gif_EGifPutExtensionLast=yes ./configure --prefix=/usr 
--sysconfdir=/etc --libexecdir=/usr/lib \
---localstatedir=/var --with-x-toolkit=gtk3 
--with-xft \
---with-modules
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  # remove conflict with ctags package
-  mv "$pkgdir"/usr/bin/{ctags,ctags.emacs}
-  mv "$pkgdir"/usr/share/man/man1/{ctags.1.gz,ctags.emacs.1}
-
-  # fix user/root permissions on usr/share files
-  find "$pkgdir"/usr/share/emacs/$pkgver -exec chown root:root {} \;
-  # fix perms on /var/games
-  chmod 775 "$pkgdir"/var/games
-  chmod 775 "$pkgdir"/var/games/emacs
-  chmod 664 "$pkgdir"/var/games/emacs/*
-  chown -R root:games "$pkgdir"/var/games
-}

Copied: emacs/repos/extra-i686/PKGBUILD (from rev 305660, emacs/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-09-16 19:23:35 UTC (rev 305661)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Juergen Hoetzel 
+# Contributor: Renchi Raju 
+
+pkgname=emacs
+pkgver=25.3
+pkgrel=1
+pkgdesc="The extensible, customizable, self-documenting real-time display 
editor"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/emacs/emacs.html;
+license=('GPL3')
+depends=('librsvg' 'gpm' 'giflib' 'libxpm' 'libotf' 'm17n-lib' 'gtk3' 
'hicolor-icon-theme' 'gconf' 'desktop-file-utils' 'alsa-lib' 'imagemagick' 
'gnutls')
+validpgpkeys=('B29426DEFB07724C3C35E5D36592E9A3A0B0F199' 
'28D3BED851FDF3AB57FEF93C233587A47C207910')
+source=(ftp://ftp.gnu.org/gnu/emacs/$pkgname-$pkgver.tar.xz{,.sig})
+sha1sums=('1cb4f39e9c0a3305fd62f936c7c95ff8e2924323'
+ 'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  ac_cv_lib_gif_EGifPutExtensionLast=yes ./configure --prefix=/usr 
--sysconfdir=/etc --libexecdir=/usr/lib \
+--localstatedir=/var --with-x-toolkit=gtk3 
--with-xft \
+--with-modules
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  # remove conflict with ctags package
+  mv "$pkgdir"/usr/bin/{ctags,ctags.emacs}
+  mv "$pkgdir"/usr/share/man/man1/{ctags.1.gz,ctags.emacs.1}
+
+  # fix user/root permissions on usr/share files
+  find "$pkgdir"/usr/share/emacs/$pkgver -exec chown root:root {} \;
+  # fix perms on /var/games
+  chmod 775 "$pkgdir"/var/games
+  chmod 775 "$pkgdir"/var/games/emacs
+  chmod 664 "$pkgdir"/var/games/emacs/*
+  chown -R root:games "$pkgdir"/var/games
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-09-16 19:23:18 UTC (rev 305660)
+++ extra-x86_64/PKGBUILD   2017-09-16 19:23:35 UTC (rev 305661)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Juergen Hoetzel 
-# Contributor: Renchi Raju 
-
-pkgname=emacs
-pkgver=25.2
-pkgrel=2
-pkgdesc="The extensible, customizable, self-documenting real-time display 
editor"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/emacs/emacs.html;
-license=('GPL3')
-depends=('librsvg' 'gpm' 'giflib' 'libxpm' 

[arch-commits] Commit in wine-staging-nine/repos/multilib-x86_64 (4 files)

2017-09-16 Thread Laurent Carlier
Date: Saturday, September 16, 2017 @ 18:10:44
  Author: lcarlier
Revision: 258569

archrelease: copy trunk to multilib-x86_64

Added:
  wine-staging-nine/repos/multilib-x86_64/30-win32-aliases.conf
(from rev 258568, wine-staging-nine/trunk/30-win32-aliases.conf)
  wine-staging-nine/repos/multilib-x86_64/PKGBUILD
(from rev 258568, wine-staging-nine/trunk/PKGBUILD)
Deleted:
  wine-staging-nine/repos/multilib-x86_64/30-win32-aliases.conf
  wine-staging-nine/repos/multilib-x86_64/PKGBUILD

---+
 30-win32-aliases.conf |   40 ++--
 PKGBUILD  |  404 
 2 files changed, 222 insertions(+), 222 deletions(-)

Deleted: 30-win32-aliases.conf
===
--- 30-win32-aliases.conf   2017-09-16 18:10:18 UTC (rev 258568)
+++ 30-win32-aliases.conf   2017-09-16 18:10:44 UTC (rev 258569)
@@ -1,20 +0,0 @@
-
-
-
-  
-MS Shell Dlg
-Microsoft Sans Serif
-sans-serif
-  
-  
-MS Shell Dlg 2
-Tahoma
-sans-serif
-  
-
-  
-MS Sans Serif
-Microsoft Sans Serif
-sans-serif
-  
-

Copied: wine-staging-nine/repos/multilib-x86_64/30-win32-aliases.conf (from rev 
258568, wine-staging-nine/trunk/30-win32-aliases.conf)
===
--- 30-win32-aliases.conf   (rev 0)
+++ 30-win32-aliases.conf   2017-09-16 18:10:44 UTC (rev 258569)
@@ -0,0 +1,20 @@
+
+
+
+  
+MS Shell Dlg
+Microsoft Sans Serif
+sans-serif
+  
+  
+MS Shell Dlg 2
+Tahoma
+sans-serif
+  
+
+  
+MS Sans Serif
+Microsoft Sans Serif
+sans-serif
+  
+

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-16 18:10:18 UTC (rev 258568)
+++ PKGBUILD2017-09-16 18:10:44 UTC (rev 258569)
@@ -1,202 +0,0 @@
-# $Id$
-# Maintainer: Laurent Carlier 
-# Contributor: Felix Yan 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine-staging-nine
-pkgver=2.15
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-_ninepatchver=${pkgver}
-
-source=("https://github.com/wine-compholio/wine-patched/archive/staging-$_pkgbasever.tar.gz;
-
"https://github.com/sarnex/wine-d3d9-patches/archive/wine-d3d9-$_ninepatchver.tar.gz;
-30-win32-aliases.conf)
-sha512sums=('8ba7087464163ba711338f16dcaa93e7950660af78e8ed1c3c6bd7e15916319901a65e2ea80d0b276e111c9c667c93dba04ab875a8b16d49cfa0eb1fb20afc2d'
-
'5298de273fc95f65ee481416f8ed16059f244e3781058cb76ee60b6a85aaf8d977a619c75cccd08aadeac9aae9ad2e08b49c5b52ab141cbff351a4b001e7c434'
-
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb')
-
-pkgdesc="A compatibility layer for running Windows programs - Staging branch 
with the gallium-nine patches"
-url="http://www.wine-staging.com;
-arch=(i686 x86_64)
-options=(staticlibs)
-license=(LGPL)
-
-_depends=(
-  attr lib32-attr
-  fontconfig   lib32-fontconfig
-  lcms2lib32-lcms2
-  libxml2  lib32-libxml2
-  libxcursor   lib32-libxcursor
-  libxrandrlib32-libxrandr
-  libxdamage   lib32-libxdamage
-  libxilib32-libxi
-  gettext  lib32-gettext
-  freetype2lib32-freetype2
-  glu  lib32-glu
-  libsmlib32-libsm
-  gcc-libs lib32-gcc-libs
-  libpcap  lib32-libpcap
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex
-  'gcc>=4.5.0-2'   'gcc-multilib>=4.5.0-2'
-  gifliblib32-giflib
-  libpnglib32-libpng
-  gnutlslib32-gnutls
-  libxinerama   lib32-libxinerama
-  libxcomposite lib32-libxcomposite
-  libxmulib32-libxmu
-  libxxf86vmlib32-libxxf86vm
-  libldap   lib32-libldap
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  alsa-lib  lib32-alsa-lib
-  libxcomposite lib32-libxcomposite
-  mesa  lib32-mesa
-  mesa-libgllib32-mesa-libgl
-  opencl-icd-loader lib32-opencl-icd-loader
-  libxslt   lib32-libxslt
-  libpulse  lib32-libpulse
-  libva lib32-libva
-  gtk3  lib32-gtk3
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  samba
-  opencl-headers
-  xorg-server-devel
-)
-  
-optdepends=(
-  gifliblib32-giflib
-  libpnglib32-libpng
-  libldap   lib32-libldap
-  gnutlslib32-gnutls
-  mpg123lib32-mpg123
-  openal

[arch-commits] Commit in wine-staging-nine/repos/community-i686 (4 files)

2017-09-16 Thread Laurent Carlier
Date: Saturday, September 16, 2017 @ 18:10:18
  Author: lcarlier
Revision: 258568

archrelease: copy trunk to community-i686

Added:
  wine-staging-nine/repos/community-i686/30-win32-aliases.conf
(from rev 258567, wine-staging-nine/trunk/30-win32-aliases.conf)
  wine-staging-nine/repos/community-i686/PKGBUILD
(from rev 258567, wine-staging-nine/trunk/PKGBUILD)
Deleted:
  wine-staging-nine/repos/community-i686/30-win32-aliases.conf
  wine-staging-nine/repos/community-i686/PKGBUILD

---+
 30-win32-aliases.conf |   40 ++--
 PKGBUILD  |  404 
 2 files changed, 222 insertions(+), 222 deletions(-)

Deleted: 30-win32-aliases.conf
===
--- 30-win32-aliases.conf   2017-09-16 18:10:09 UTC (rev 258567)
+++ 30-win32-aliases.conf   2017-09-16 18:10:18 UTC (rev 258568)
@@ -1,20 +0,0 @@
-
-
-
-  
-MS Shell Dlg
-Microsoft Sans Serif
-sans-serif
-  
-  
-MS Shell Dlg 2
-Tahoma
-sans-serif
-  
-
-  
-MS Sans Serif
-Microsoft Sans Serif
-sans-serif
-  
-

Copied: wine-staging-nine/repos/community-i686/30-win32-aliases.conf (from rev 
258567, wine-staging-nine/trunk/30-win32-aliases.conf)
===
--- 30-win32-aliases.conf   (rev 0)
+++ 30-win32-aliases.conf   2017-09-16 18:10:18 UTC (rev 258568)
@@ -0,0 +1,20 @@
+
+
+
+  
+MS Shell Dlg
+Microsoft Sans Serif
+sans-serif
+  
+  
+MS Shell Dlg 2
+Tahoma
+sans-serif
+  
+
+  
+MS Sans Serif
+Microsoft Sans Serif
+sans-serif
+  
+

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-16 18:10:09 UTC (rev 258567)
+++ PKGBUILD2017-09-16 18:10:18 UTC (rev 258568)
@@ -1,202 +0,0 @@
-# $Id$
-# Maintainer: Laurent Carlier 
-# Contributor: Felix Yan 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine-staging-nine
-pkgver=2.15
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-_ninepatchver=${pkgver}
-
-source=("https://github.com/wine-compholio/wine-patched/archive/staging-$_pkgbasever.tar.gz;
-
"https://github.com/sarnex/wine-d3d9-patches/archive/wine-d3d9-$_ninepatchver.tar.gz;
-30-win32-aliases.conf)
-sha512sums=('8ba7087464163ba711338f16dcaa93e7950660af78e8ed1c3c6bd7e15916319901a65e2ea80d0b276e111c9c667c93dba04ab875a8b16d49cfa0eb1fb20afc2d'
-
'5298de273fc95f65ee481416f8ed16059f244e3781058cb76ee60b6a85aaf8d977a619c75cccd08aadeac9aae9ad2e08b49c5b52ab141cbff351a4b001e7c434'
-
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb')
-
-pkgdesc="A compatibility layer for running Windows programs - Staging branch 
with the gallium-nine patches"
-url="http://www.wine-staging.com;
-arch=(i686 x86_64)
-options=(staticlibs)
-license=(LGPL)
-
-_depends=(
-  attr lib32-attr
-  fontconfig   lib32-fontconfig
-  lcms2lib32-lcms2
-  libxml2  lib32-libxml2
-  libxcursor   lib32-libxcursor
-  libxrandrlib32-libxrandr
-  libxdamage   lib32-libxdamage
-  libxilib32-libxi
-  gettext  lib32-gettext
-  freetype2lib32-freetype2
-  glu  lib32-glu
-  libsmlib32-libsm
-  gcc-libs lib32-gcc-libs
-  libpcap  lib32-libpcap
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex
-  'gcc>=4.5.0-2'   'gcc-multilib>=4.5.0-2'
-  gifliblib32-giflib
-  libpnglib32-libpng
-  gnutlslib32-gnutls
-  libxinerama   lib32-libxinerama
-  libxcomposite lib32-libxcomposite
-  libxmulib32-libxmu
-  libxxf86vmlib32-libxxf86vm
-  libldap   lib32-libldap
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  alsa-lib  lib32-alsa-lib
-  libxcomposite lib32-libxcomposite
-  mesa  lib32-mesa
-  mesa-libgllib32-mesa-libgl
-  opencl-icd-loader lib32-opencl-icd-loader
-  libxslt   lib32-libxslt
-  libpulse  lib32-libpulse
-  libva lib32-libva
-  gtk3  lib32-gtk3
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  samba
-  opencl-headers
-  xorg-server-devel
-)
-  
-optdepends=(
-  gifliblib32-giflib
-  libpnglib32-libpng
-  libldap   lib32-libldap
-  gnutlslib32-gnutls
-  mpg123lib32-mpg123
-  openal

[arch-commits] Commit in wine-staging-nine/trunk (PKGBUILD)

2017-09-16 Thread Laurent Carlier
Date: Saturday, September 16, 2017 @ 18:10:09
  Author: lcarlier
Revision: 258567

upgpkg: wine-staging-nine 2.16-1

upstream update 2.16

Modified:
  wine-staging-nine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 18:07:42 UTC (rev 258566)
+++ PKGBUILD2017-09-16 18:10:09 UTC (rev 258567)
@@ -7,7 +7,7 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=wine-staging-nine
-pkgver=2.15
+pkgver=2.16
 pkgrel=1
 
 _pkgbasever=${pkgver/rc/-rc}
@@ -16,8 +16,8 @@
 
source=("https://github.com/wine-compholio/wine-patched/archive/staging-$_pkgbasever.tar.gz;
 
"https://github.com/sarnex/wine-d3d9-patches/archive/wine-d3d9-$_ninepatchver.tar.gz;
 30-win32-aliases.conf)
-sha512sums=('8ba7087464163ba711338f16dcaa93e7950660af78e8ed1c3c6bd7e15916319901a65e2ea80d0b276e111c9c667c93dba04ab875a8b16d49cfa0eb1fb20afc2d'
-
'5298de273fc95f65ee481416f8ed16059f244e3781058cb76ee60b6a85aaf8d977a619c75cccd08aadeac9aae9ad2e08b49c5b52ab141cbff351a4b001e7c434'
+sha512sums=('f375c74b3c5fd2a0d46de0e4f371c1fe58059da776851e4f9854d288b0d9a97bd9c5432fdd713d0bfdb77b7d6a43a8d7c1c8ae5adc29d637ab30b87788de336f'
+
'f3950d7e34ec537b95b963fb3b35ee3729c1b3f9d8c225e96ae9ab9cf8011571ba22105a17309c481f3a504a8aa4d5ae04270691c49098924aa2f72463b79e08'
 
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb')
 
 pkgdesc="A compatibility layer for running Windows programs - Staging branch 
with the gallium-nine patches"


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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 18:07:42
  Author: felixonmars
Revision: 258566

archrelease: copy trunk to community-i686, community-x86_64

Added:
  haskell-jose/repos/community-i686/
  haskell-jose/repos/community-i686/PKGBUILD
(from rev 258565, haskell-jose/trunk/PKGBUILD)
  haskell-jose/repos/community-x86_64/
  haskell-jose/repos/community-x86_64/PKGBUILD
(from rev 258565, haskell-jose/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   45 
 community-x86_64/PKGBUILD |   45 
 2 files changed, 90 insertions(+)

Copied: haskell-jose/repos/community-i686/PKGBUILD (from rev 258565, 
haskell-jose/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-16 18:07:42 UTC (rev 258566)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=jose
+pkgname=haskell-jose
+pkgver=0.6.0.3
+pkgrel=1
+pkgdesc="Javascript Object Signing and Encryption and JSON Web Token library"
+url="https://github.com/frasertweedale/hs-jose;
+license=("Apache")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-concise'
+ 'haskell-cryptonite' 'haskell-lens' 'haskell-memory' 
'haskell-monad-time' 'haskell-mtl'
+ 'haskell-semigroups' 'haskell-safe' 'haskell-aeson' 
'haskell-unordered-containers'
+ 'haskell-text' 'haskell-network-uri' 'haskell-quickcheck' 
'haskell-quickcheck-instances'
+ 'haskell-x509' 'haskell-vector')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('7ea81c0d3571debbf18409c9f77cb1528df611ca4b7186f705158edea9b6b8e348d5f6d5fd2acfcd00063011b053bb2bfa43086177f21ef7300af5d5c7e6b45c')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--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}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-jose/repos/community-x86_64/PKGBUILD (from rev 258565, 
haskell-jose/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-16 18:07:42 UTC (rev 258566)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=jose
+pkgname=haskell-jose
+pkgver=0.6.0.3
+pkgrel=1
+pkgdesc="Javascript Object Signing and Encryption and JSON Web Token library"
+url="https://github.com/frasertweedale/hs-jose;
+license=("Apache")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-concise'
+ 'haskell-cryptonite' 'haskell-lens' 'haskell-memory' 
'haskell-monad-time' 'haskell-mtl'
+ 'haskell-semigroups' 'haskell-safe' 'haskell-aeson' 
'haskell-unordered-containers'
+ 'haskell-text' 'haskell-network-uri' 'haskell-quickcheck' 
'haskell-quickcheck-instances'
+ 'haskell-x509' 'haskell-vector')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('7ea81c0d3571debbf18409c9f77cb1528df611ca4b7186f705158edea9b6b8e348d5f6d5fd2acfcd00063011b053bb2bfa43086177f21ef7300af5d5c7e6b45c')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--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   

[arch-commits] Commit in (4 files)

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 18:07:09
  Author: felixonmars
Revision: 258565

addpkg: haskell-jose 0.6.0.3-1

Added:
  haskell-jose/
  haskell-jose/repos/
  haskell-jose/trunk/
  haskell-jose/trunk/PKGBUILD

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

Added: haskell-jose/trunk/PKGBUILD
===
--- haskell-jose/trunk/PKGBUILD (rev 0)
+++ haskell-jose/trunk/PKGBUILD 2017-09-16 18:07:09 UTC (rev 258565)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=jose
+pkgname=haskell-jose
+pkgver=0.6.0.3
+pkgrel=1
+pkgdesc="Javascript Object Signing and Encryption and JSON Web Token library"
+url="https://github.com/frasertweedale/hs-jose;
+license=("Apache")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-concise'
+ 'haskell-cryptonite' 'haskell-lens' 'haskell-memory' 
'haskell-monad-time' 'haskell-mtl'
+ 'haskell-semigroups' 'haskell-safe' 'haskell-aeson' 
'haskell-unordered-containers'
+ 'haskell-text' 'haskell-network-uri' 'haskell-quickcheck' 
'haskell-quickcheck-instances'
+ 'haskell-x509' 'haskell-vector')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('7ea81c0d3571debbf18409c9f77cb1528df611ca4b7186f705158edea9b6b8e348d5f6d5fd2acfcd00063011b053bb2bfa43086177f21ef7300af5d5c7e6b45c')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--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}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}


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


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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 18:04:28
  Author: felixonmars
Revision: 258562

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   45 
 community-staging-x86_64/PKGBUILD |   45 
 2 files changed, 90 insertions(+)

Copied: cryptol/repos/community-staging-i686/PKGBUILD (from rev 258561, 
cryptol/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-16 18:04:28 UTC (rev 258562)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=cryptol
+pkgver=2.5.0
+pkgrel=4
+pkgdesc="The Language of Cryptography"
+url="http://www.cryptol.net;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'z3' 'haskell-base-compat' 'haskell-async' 
'haskell-gitrev' 'haskell-graphscc'
+ 'haskell-heredoc' 'haskell-monad-control' 'haskell-monadlib' 
'haskell-old-time'
+ 'haskell-presburger' 'haskell-quickcheck' 'haskell-random' 
'haskell-sbv' 'haskell-smtlib'
+ 'haskell-simple-smt' 'haskell-syb' 'haskell-text' 'haskell-tf-random'
+ 'haskell-transformers-base' 'haskell-utf8-string' 'haskell-mtl' 
'haskell-ansi-terminal')
+makedepends=('ghc' 'alex' 'happy')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/${pkgver}/$pkgname-${pkgver}.tar.gz;)
+sha512sums=('e528c2b75853f559a0e122286734fce373150a458a5af2a74020240629f9f550747f30f50c16d261326e94f4060497af43951f0253dc6885043cf21aab849265')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-static -f-relocatable
+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}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: cryptol/repos/community-staging-x86_64/PKGBUILD (from rev 258561, 
cryptol/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-16 18:04:28 UTC (rev 258562)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=cryptol
+pkgver=2.5.0
+pkgrel=4
+pkgdesc="The Language of Cryptography"
+url="http://www.cryptol.net;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'z3' 'haskell-base-compat' 'haskell-async' 
'haskell-gitrev' 'haskell-graphscc'
+ 'haskell-heredoc' 'haskell-monad-control' 'haskell-monadlib' 
'haskell-old-time'
+ 'haskell-presburger' 'haskell-quickcheck' 'haskell-random' 
'haskell-sbv' 'haskell-smtlib'
+ 'haskell-simple-smt' 'haskell-syb' 'haskell-text' 'haskell-tf-random'
+ 'haskell-transformers-base' 'haskell-utf8-string' 'haskell-mtl' 
'haskell-ansi-terminal')
+makedepends=('ghc' 'alex' 'happy')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/${pkgver}/$pkgname-${pkgver}.tar.gz;)
+sha512sums=('e528c2b75853f559a0e122286734fce373150a458a5af2a74020240629f9f550747f30f50c16d261326e94f4060497af43951f0253dc6885043cf21aab849265')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-static -f-relocatable
+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' |" 

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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 18:03:55
  Author: felixonmars
Revision: 258561

upgpkg: cryptol 2.5.0-4

rebuild with sbv,7.3

Modified:
  cryptol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 18:01:22 UTC (rev 258560)
+++ PKGBUILD2017-09-16 18:03:55 UTC (rev 258561)
@@ -3,7 +3,7 @@
 
 pkgname=cryptol
 pkgver=2.5.0
-pkgrel=3
+pkgrel=4
 pkgdesc="The Language of Cryptography"
 url="http://www.cryptol.net;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-quickcheck-instances/repos (4 files)

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 18:01:22
  Author: felixonmars
Revision: 258560

archrelease: copy trunk to community-i686, community-x86_64

Added:
  haskell-quickcheck-instances/repos/community-i686/
  haskell-quickcheck-instances/repos/community-i686/PKGBUILD
(from rev 258559, haskell-quickcheck-instances/trunk/PKGBUILD)
  haskell-quickcheck-instances/repos/community-x86_64/
  haskell-quickcheck-instances/repos/community-x86_64/PKGBUILD
(from rev 258559, haskell-quickcheck-instances/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   45 
 community-x86_64/PKGBUILD |   45 
 2 files changed, 90 insertions(+)

Copied: haskell-quickcheck-instances/repos/community-i686/PKGBUILD (from rev 
258559, haskell-quickcheck-instances/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-16 18:01:22 UTC (rev 258560)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=quickcheck-instances
+pkgname=haskell-quickcheck-instances
+pkgver=0.3.16
+pkgrel=1
+pkgdesc="Common quickcheck instances"
+url="https://github.com/phadej/qc-instances;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-base-compat' 
'haskell-case-insensitive'
+ 'haskell-hashable' 'haskell-old-time' 'haskell-scientific' 
'haskell-tagged' 'haskell-text'
+ 'haskell-transformers-compat' 'haskell-unordered-containers' 
'haskell-uuid-types'
+ 'haskell-vector')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('636709fda594605d4fe4e829a13a4bb44c5052ae1c8ad9515c270f6b4f4142981aa735e2be9c31e096b8a344a73e2a511ba30a97a5c899b810c843b86fa058b6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--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"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-quickcheck-instances/repos/community-x86_64/PKGBUILD (from rev 
258559, haskell-quickcheck-instances/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-16 18:01:22 UTC (rev 258560)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=quickcheck-instances
+pkgname=haskell-quickcheck-instances
+pkgver=0.3.16
+pkgrel=1
+pkgdesc="Common quickcheck instances"
+url="https://github.com/phadej/qc-instances;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-base-compat' 
'haskell-case-insensitive'
+ 'haskell-hashable' 'haskell-old-time' 'haskell-scientific' 
'haskell-tagged' 'haskell-text'
+ 'haskell-transformers-compat' 'haskell-unordered-containers' 
'haskell-uuid-types'
+ 'haskell-vector')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('636709fda594605d4fe4e829a13a4bb44c5052ae1c8ad9515c270f6b4f4142981aa735e2be9c31e096b8a344a73e2a511ba30a97a5c899b810c843b86fa058b6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--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 

[arch-commits] Commit in (4 files)

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 18:00:43
  Author: felixonmars
Revision: 258559

addpkg: haskell-quickcheck-instances 0.3.16-1

Added:
  haskell-quickcheck-instances/
  haskell-quickcheck-instances/repos/
  haskell-quickcheck-instances/trunk/
  haskell-quickcheck-instances/trunk/PKGBUILD

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

Added: haskell-quickcheck-instances/trunk/PKGBUILD
===
--- haskell-quickcheck-instances/trunk/PKGBUILD (rev 0)
+++ haskell-quickcheck-instances/trunk/PKGBUILD 2017-09-16 18:00:43 UTC (rev 
258559)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=quickcheck-instances
+pkgname=haskell-quickcheck-instances
+pkgver=0.3.16
+pkgrel=1
+pkgdesc="Common quickcheck instances"
+url="https://github.com/phadej/qc-instances;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-base-compat' 
'haskell-case-insensitive'
+ 'haskell-hashable' 'haskell-old-time' 'haskell-scientific' 
'haskell-tagged' 'haskell-text'
+ 'haskell-transformers-compat' 'haskell-unordered-containers' 
'haskell-uuid-types'
+ 'haskell-vector')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('636709fda594605d4fe4e829a13a4bb44c5052ae1c8ad9515c270f6b4f4142981aa735e2be9c31e096b8a344a73e2a511ba30a97a5c899b810c843b86fa058b6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--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"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}


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


[arch-commits] Commit in haskell-monad-time/repos (4 files)

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 17:57:16
  Author: felixonmars
Revision: 258558

archrelease: copy trunk to community-i686, community-x86_64

Added:
  haskell-monad-time/repos/community-i686/
  haskell-monad-time/repos/community-i686/PKGBUILD
(from rev 258557, haskell-monad-time/trunk/PKGBUILD)
  haskell-monad-time/repos/community-x86_64/
  haskell-monad-time/repos/community-x86_64/PKGBUILD
(from rev 258557, haskell-monad-time/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   42 ++
 community-x86_64/PKGBUILD |   42 ++
 2 files changed, 84 insertions(+)

Copied: haskell-monad-time/repos/community-i686/PKGBUILD (from rev 258557, 
haskell-monad-time/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-16 17:57:16 UTC (rev 258558)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=monad-time
+pkgname=haskell-monad-time
+pkgver=0.2
+pkgrel=1
+pkgdesc="Type class for monads which carry the notion of the current time"
+url="https://github.com/scrive/monad-time;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-mtl')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('702ec4ee66265549f8629aa9ce28094c8abc4e817dfc339b119c73a4dccf178cebe2a10bc9087b480bbf639b5ccb84fdb4e7cb44b410cc4ff7b8f32bf8a05460')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--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"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-monad-time/repos/community-x86_64/PKGBUILD (from rev 258557, 
haskell-monad-time/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-16 17:57:16 UTC (rev 258558)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=monad-time
+pkgname=haskell-monad-time
+pkgver=0.2
+pkgrel=1
+pkgdesc="Type class for monads which carry the notion of the current time"
+url="https://github.com/scrive/monad-time;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-mtl')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('702ec4ee66265549f8629aa9ce28094c8abc4e817dfc339b119c73a4dccf178cebe2a10bc9087b480bbf639b5ccb84fdb4e7cb44b410cc4ff7b8f32bf8a05460')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--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"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}


[arch-commits] Commit in (4 files)

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 17:56:43
  Author: felixonmars
Revision: 258557

addpkg: haskell-monad-time 0.2-1

Added:
  haskell-monad-time/
  haskell-monad-time/repos/
  haskell-monad-time/trunk/
  haskell-monad-time/trunk/PKGBUILD

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

Added: haskell-monad-time/trunk/PKGBUILD
===
--- haskell-monad-time/trunk/PKGBUILD   (rev 0)
+++ haskell-monad-time/trunk/PKGBUILD   2017-09-16 17:56:43 UTC (rev 258557)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=monad-time
+pkgname=haskell-monad-time
+pkgver=0.2
+pkgrel=1
+pkgdesc="Type class for monads which carry the notion of the current time"
+url="https://github.com/scrive/monad-time;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-mtl')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('702ec4ee66265549f8629aa9ce28094c8abc4e817dfc339b119c73a4dccf178cebe2a10bc9087b480bbf639b5ccb84fdb4e7cb44b410cc4ff7b8f32bf8a05460')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--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"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}


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


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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 17:55:18
  Author: felixonmars
Revision: 258556

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   44 
 community-staging-x86_64/PKGBUILD |   44 
 2 files changed, 88 insertions(+)

Copied: haskell-sbv/repos/community-staging-i686/PKGBUILD (from rev 258555, 
haskell-sbv/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-16 17:55:18 UTC (rev 258556)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=sbv
+pkgname=haskell-sbv
+pkgver=7.3
+pkgrel=1
+pkgdesc="SMT Based Verification: Symbolic Haskell theorem prover using SMT 
solving"
+url="http://leventerkok.github.com/sbv;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-ghc' 'haskell-quickcheck' 'haskell-cracknum' 
'haskell-async'
+ 'haskell-mtl' 'haskell-random' 'haskell-syb' 
'haskell-data-binary-ieee754'
+ 'haskell-generic-deriving')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('df4a94f811573cf3c48892ce0a121f0cbea090784d92dc376f68caf1d2d9e5f9fee2ba7efb44e6dbfeb41c397946eb2b0136d2324b9f47a2889a8fb4cec5892f')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--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"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-sbv/repos/community-staging-x86_64/PKGBUILD (from rev 258555, 
haskell-sbv/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-16 17:55:18 UTC (rev 258556)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=sbv
+pkgname=haskell-sbv
+pkgver=7.3
+pkgrel=1
+pkgdesc="SMT Based Verification: Symbolic Haskell theorem prover using SMT 
solving"
+url="http://leventerkok.github.com/sbv;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-ghc' 'haskell-quickcheck' 'haskell-cracknum' 
'haskell-async'
+ 'haskell-mtl' 'haskell-random' 'haskell-syb' 
'haskell-data-binary-ieee754'
+ 'haskell-generic-deriving')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('df4a94f811573cf3c48892ce0a121f0cbea090784d92dc376f68caf1d2d9e5f9fee2ba7efb44e6dbfeb41c397946eb2b0136d2324b9f47a2889a8fb4cec5892f')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--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" 

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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 17:54:45
  Author: felixonmars
Revision: 258555

upgpkg: haskell-sbv 7.3-1

rebuild with sbv,7.3

Modified:
  haskell-sbv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 17:54:01 UTC (rev 258554)
+++ PKGBUILD2017-09-16 17:54:45 UTC (rev 258555)
@@ -4,8 +4,8 @@
 
 _hkgname=sbv
 pkgname=haskell-sbv
-pkgver=7.2
-pkgrel=2
+pkgver=7.3
+pkgrel=1
 pkgdesc="SMT Based Verification: Symbolic Haskell theorem prover using SMT 
solving"
 url="http://leventerkok.github.com/sbv;
 license=("custom:BSD3")
@@ -15,7 +15,7 @@
  'haskell-generic-deriving')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('1bbcd4afc29a83da10ab390a0eae5ced2ee3949e312e5690613895552f29c8932ac5d8de6da04e12eca926b6504e85c5256fa13fd9e9374935b0ce838fe11ac8')
+sha512sums=('df4a94f811573cf3c48892ce0a121f0cbea090784d92dc376f68caf1d2d9e5f9fee2ba7efb44e6dbfeb41c397946eb2b0136d2324b9f47a2889a8fb4cec5892f')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 17:54:01
  Author: felixonmars
Revision: 258554

archrelease: copy trunk to community-i686, community-x86_64

Added:
  haskell-concise/repos/community-i686/
  haskell-concise/repos/community-i686/PKGBUILD
(from rev 258553, haskell-concise/trunk/PKGBUILD)
  haskell-concise/repos/community-x86_64/
  haskell-concise/repos/community-x86_64/PKGBUILD
(from rev 258553, haskell-concise/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   42 ++
 community-x86_64/PKGBUILD |   42 ++
 2 files changed, 84 insertions(+)

Copied: haskell-concise/repos/community-i686/PKGBUILD (from rev 258553, 
haskell-concise/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-16 17:54:01 UTC (rev 258554)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=concise
+pkgname=haskell-concise
+pkgver=0.1.0.0
+pkgrel=1
+pkgdesc="Utilities for Control.Lens.Cons"
+url="https://github.com/frasertweedal/hs-concise;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-lens' 'haskell-text')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('4b414dce93f6c16625289d39aeae85fcb3f8192059ac3b5f12c786d0330b41282fcdf897687daec0f42d1a93fd056608bc9589b00709df3ba9a9d1b75d048121')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--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"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-concise/repos/community-x86_64/PKGBUILD (from rev 258553, 
haskell-concise/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-16 17:54:01 UTC (rev 258554)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=concise
+pkgname=haskell-concise
+pkgver=0.1.0.0
+pkgrel=1
+pkgdesc="Utilities for Control.Lens.Cons"
+url="https://github.com/frasertweedal/hs-concise;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-lens' 'haskell-text')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('4b414dce93f6c16625289d39aeae85fcb3f8192059ac3b5f12c786d0330b41282fcdf897687daec0f42d1a93fd056608bc9589b00709df3ba9a9d1b75d048121')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--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"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}


[arch-commits] Commit in (4 files)

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 17:53:27
  Author: felixonmars
Revision: 258553

addpkg: haskell-concise 0.1.0.0-1

Added:
  haskell-concise/
  haskell-concise/repos/
  haskell-concise/trunk/
  haskell-concise/trunk/PKGBUILD

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

Added: haskell-concise/trunk/PKGBUILD
===
--- haskell-concise/trunk/PKGBUILD  (rev 0)
+++ haskell-concise/trunk/PKGBUILD  2017-09-16 17:53:27 UTC (rev 258553)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=concise
+pkgname=haskell-concise
+pkgver=0.1.0.0
+pkgrel=1
+pkgdesc="Utilities for Control.Lens.Cons"
+url="https://github.com/frasertweedal/hs-concise;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-lens' 'haskell-text')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('4b414dce93f6c16625289d39aeae85fcb3f8192059ac3b5f12c786d0330b41282fcdf897687daec0f42d1a93fd056608bc9589b00709df3ba9a9d1b75d048121')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--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"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}


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


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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 17:48:03
  Author: felixonmars
Revision: 258552

archrelease: copy trunk to community-any

Added:
  python-email-validator/repos/community-any/PKGBUILD
(from rev 258551, python-email-validator/trunk/PKGBUILD)
Deleted:
  python-email-validator/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-16 17:47:39 UTC (rev 258551)
+++ PKGBUILD2017-09-16 17:48:03 UTC (rev 258552)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgbase=python-email-validator
-pkgname=(python-email-validator python2-email-validator)
-pkgver=1.0.2
-_commit=ca2c3b79589ec94d654dfab6aa7dbc117ab296ea
-pkgrel=1
-pkgdesc="A robust email syntax and deliverability validation library for 
Python 2.x/3.x."
-arch=('any')
-url="https://github.com/JoshData/python-email-validator;
-license=('custom:CC0')
-makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-dnspython' 
'python2-dnspython'
- 'python-idna' 'python2-idna')
-source=("git+https://github.com/JoshData/python-email-validator.git#commit=$_commit;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a python-email-validator{,-py2}
-}
-
-build() {
-  cd "$srcdir"/python-email-validator
-  python setup.py build
-
-  cd "$srcdir"/python-email-validator-py2
-  python2 setup.py build
-}
-
-check() {
-  export LC_CTYPE=en_US.UTF-8
-
-  cd "$srcdir"/python-email-validator
-  python email_validator/__init__.py --tests < test_pass.txt
-
-  cd "$srcdir"/python-email-validator-py2
-  python2 email_validator/__init__.py --tests < test_pass.txt
-}
-
-package_python-email-validator() {
-  depends=('python-dnspython' 'python-idna')
-
-  cd "$srcdir"/python-email-validator
-  python setup.py install --root="$pkgdir/" --optimize=1
-  install -Dm644 "LICENSE" "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-email-validator() {
-  depends=('python2-dnspython' 'python2-idna')
-
-  cd "$srcdir"/python-email-validator-py2
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-  install -Dm644 "LICENSE" "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  mv "$pkgdir"/usr/bin/email_validator{,2}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-email-validator/repos/community-any/PKGBUILD (from rev 258551, 
python-email-validator/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-16 17:48:03 UTC (rev 258552)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-email-validator
+pkgname=(python-email-validator python2-email-validator)
+pkgver=1.0.3
+pkgrel=1
+pkgdesc="A robust email syntax and deliverability validation library for 
Python 2.x/3.x."
+arch=('any')
+url="https://github.com/JoshData/python-email-validator;
+license=('custom:CC0')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-dnspython' 
'python2-dnspython'
+ 'python-idna' 'python2-idna')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/JoshData/python-email-validator/archive/v$pkgver.tar.gz;)
+sha512sums=('1e816fdaa796aa92963f0fd90c8b6d111c6484a45416365095d08adc9243a7f8c6a90fb07df9b2e60c664f9b756252d6589baf137f5e0e60833d8759363fdc26')
+
+prepare() {
+  cp -a python-email-validator-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/python-email-validator-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/python-email-validator-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  export LC_CTYPE=en_US.UTF-8
+
+  cd "$srcdir"/python-email-validator-$pkgver
+  python email_validator/__init__.py --tests < test_pass.txt
+
+  cd "$srcdir"/python-email-validator-$pkgver-py2
+  python2 email_validator/__init__.py --tests < test_pass.txt
+}
+
+package_python-email-validator() {
+  depends=('python-dnspython' 'python-idna')
+
+  cd "$srcdir"/python-email-validator-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1
+  install -Dm644 "LICENSE" "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-email-validator() {
+  depends=('python2-dnspython' 'python2-idna')
+
+  cd "$srcdir"/python-email-validator-$pkgver-py2
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+  install -Dm644 "LICENSE" "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  mv "$pkgdir"/usr/bin/email_validator{,2}
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 17:47:39
  Author: felixonmars
Revision: 258551

upgpkg: python-email-validator 1.0.3-1

Modified:
  python-email-validator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 17:44:15 UTC (rev 258550)
+++ PKGBUILD2017-09-16 17:47:39 UTC (rev 258551)
@@ -4,27 +4,26 @@
 
 pkgbase=python-email-validator
 pkgname=(python-email-validator python2-email-validator)
-pkgver=1.0.2
-_commit=ca2c3b79589ec94d654dfab6aa7dbc117ab296ea
+pkgver=1.0.3
 pkgrel=1
 pkgdesc="A robust email syntax and deliverability validation library for 
Python 2.x/3.x."
 arch=('any')
 url="https://github.com/JoshData/python-email-validator;
 license=('custom:CC0')
-makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-dnspython' 
'python2-dnspython'
+makedepends=('python-setuptools' 'python2-setuptools' 'python-dnspython' 
'python2-dnspython'
  'python-idna' 'python2-idna')
-source=("git+https://github.com/JoshData/python-email-validator.git#commit=$_commit;)
-md5sums=('SKIP')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/JoshData/python-email-validator/archive/v$pkgver.tar.gz;)
+sha512sums=('1e816fdaa796aa92963f0fd90c8b6d111c6484a45416365095d08adc9243a7f8c6a90fb07df9b2e60c664f9b756252d6589baf137f5e0e60833d8759363fdc26')
 
 prepare() {
-  cp -a python-email-validator{,-py2}
+  cp -a python-email-validator-$pkgver{,-py2}
 }
 
 build() {
-  cd "$srcdir"/python-email-validator
+  cd "$srcdir"/python-email-validator-$pkgver
   python setup.py build
 
-  cd "$srcdir"/python-email-validator-py2
+  cd "$srcdir"/python-email-validator-$pkgver-py2
   python2 setup.py build
 }
 
@@ -31,10 +30,10 @@
 check() {
   export LC_CTYPE=en_US.UTF-8
 
-  cd "$srcdir"/python-email-validator
+  cd "$srcdir"/python-email-validator-$pkgver
   python email_validator/__init__.py --tests < test_pass.txt
 
-  cd "$srcdir"/python-email-validator-py2
+  cd "$srcdir"/python-email-validator-$pkgver-py2
   python2 email_validator/__init__.py --tests < test_pass.txt
 }
 
@@ -41,7 +40,7 @@
 package_python-email-validator() {
   depends=('python-dnspython' 'python-idna')
 
-  cd "$srcdir"/python-email-validator
+  cd "$srcdir"/python-email-validator-$pkgver
   python setup.py install --root="$pkgdir/" --optimize=1
   install -Dm644 "LICENSE" "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
@@ -49,7 +48,7 @@
 package_python2-email-validator() {
   depends=('python2-dnspython' 'python2-idna')
 
-  cd "$srcdir"/python-email-validator-py2
+  cd "$srcdir"/python-email-validator-$pkgver-py2
   python2 setup.py install --root="$pkgdir/" --optimize=1
   install -Dm644 "LICENSE" "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 


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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 16:56:34
  Author: felixonmars
Revision: 257933

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  darcs/repos/community-staging-i686/
  darcs/repos/community-staging-i686/PKGBUILD
(from rev 257932, darcs/trunk/PKGBUILD)
  darcs/repos/community-staging-x86_64/
  darcs/repos/community-staging-x86_64/PKGBUILD
(from rev 257932, darcs/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   59 
 community-staging-x86_64/PKGBUILD |   59 
 2 files changed, 118 insertions(+)

Copied: darcs/repos/community-staging-i686/PKGBUILD (from rev 257932, 
darcs/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-16 16:56:34 UTC (rev 257933)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=darcs
+pkgver=2.12.5.20170909
+pkgrel=2
+pkgdesc="A distributed, interactive, smart revision control system"
+url="http://darcs.net;
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('curl' 'ghc' "haskell-async" "haskell-attoparsec" 
"haskell-base16-bytestring"
+ "haskell-cryptohash" "haskell-data-ordlist" "haskell-fgl" 
"haskell-graphviz"
+ "haskell-hashable" "haskell-html" "haskell-http" "haskell-knob" 
"haskell-mmap"
+ "haskell-mtl" "haskell-network" "haskell-network-uri" 
"haskell-old-time" "haskell-parsec"
+ "haskell-sandi" "haskell-random" "haskell-regex-applicative" 
"haskell-regex-compat-tdfa"
+ "haskell-tar" "haskell-text" "haskell-unix-compat" 
"haskell-utf8-string" "haskell-vector"
+ "haskell-zip-archive" "haskell-zlib")
+makedepends=('ghc')
+# Fetched from http://darcs.net/reviewed/reviewed.zip
+source=("https://pkgbuild.com/~felixonmars/sources/darcs-2.12.5.20170909.zip;)
+#source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('64f44e9d9727b8f7e00402a8a5dde9b6dc8f103776c4decef90b28af9603830f')
+
+prepare() {
+mv reviewed $pkgname-$pkgver
+sed -e 's/graphviz >= 2999.18.1 && < 2999.19,/graphviz >= 
2999.18.1,/' \
+-e 's/process  >= 1.2.3.0 && < 1.5.0.0,/process  >= 1.2.3.0,/' 
\
+-e 's/time >= 1.5.0.1 && < 1.8,/time >= 1.5.0.1,/' \
+-i $pkgname-$pkgver/darcs.cabal
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcurl -fpkgconfig -f-static -fterminfo -fthreaded -fexecutable \
+-f-rts -foptimize -f-warn-as-error -f-libiconv
+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 $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"
+chmod 644 "${pkgdir}/usr/share/man/man1/darcs.1"
+
+install -Dm644 contrib/darcs_completion 
"${pkgdir}/usr/share/bash-completion/completions/darcs"
+install -Dm644 contrib/_darcs.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_darcs"
+}

Copied: darcs/repos/community-staging-x86_64/PKGBUILD (from rev 257932, 
darcs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-16 16:56:34 UTC (rev 257933)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=darcs
+pkgver=2.12.5.20170909
+pkgrel=2
+pkgdesc="A distributed, interactive, smart revision control system"
+url="http://darcs.net;
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('curl' 'ghc' "haskell-async" "haskell-attoparsec" 
"haskell-base16-bytestring"
+ "haskell-cryptohash" "haskell-data-ordlist" "haskell-fgl" 
"haskell-graphviz"
+ "haskell-hashable" "haskell-html" "haskell-http" "haskell-knob" 
"haskell-mmap"
+ "haskell-mtl" "haskell-network" "haskell-network-uri" 
"haskell-old-time" "haskell-parsec"
+ "haskell-sandi" "haskell-random" "haskell-regex-applicative" 
"haskell-regex-compat-tdfa"
+ "haskell-tar" "haskell-text" 

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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 16:56:03
  Author: felixonmars
Revision: 257932

upgpkg: darcs 2.12.5.20170909-2

rebuild with foundation,0.0.15

Modified:
  darcs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 16:47:14 UTC (rev 257931)
+++ PKGBUILD2017-09-16 16:56:03 UTC (rev 257932)
@@ -4,7 +4,7 @@
 
 pkgname=darcs
 pkgver=2.12.5.20170909
-pkgrel=1
+pkgrel=2
 pkgdesc="A distributed, interactive, smart revision control system"
 url="http://darcs.net;
 license=("GPL")


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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 16:47:14
  Author: felixonmars
Revision: 257931

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

+
 community-staging-i686/PKGBUILD|   70 +++
 community-staging-i686/stack.install   |4 +
 community-staging-x86_64/PKGBUILD  |   70 +++
 community-staging-x86_64/stack.install |4 +
 4 files changed, 148 insertions(+)

Copied: stack/repos/community-staging-i686/PKGBUILD (from rev 257930, 
stack/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-16 16:47:14 UTC (rev 257931)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=1.5.1.20170916
+_commit=4de4a450e426f70a5e5f127d7e7568f556ec9404
+pkgrel=2
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-annotated-wl-pprint" 
"haskell-ansi-terminal"
+ "haskell-attoparsec" "haskell-base64-bytestring" 
"haskell-bindings-uname"
+ "haskell-blaze-builder" "haskell-clock" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptonite" "haskell-cryptonite-conduit" "haskell-echo" 
"haskell-exceptions"
+ "haskell-extra" "haskell-fast-logger" "haskell-file-embed" 
"haskell-filelock"
+ "haskell-fsnotify" "haskell-generic-deriving" "haskell-gitrev" 
"haskell-hackage-security"
+ "haskell-hashable" "haskell-hastache" "haskell-http-client" 
"haskell-http-client-tls"
+ "haskell-http-conduit" "haskell-http-types" "haskell-hpack" 
"haskell-memory"
+ "haskell-microlens" "haskell-microlens-mtl" "haskell-mintty" 
"haskell-monad-logger"
+ "haskell-mtl" "haskell-network-uri" "haskell-open-browser" 
"haskell-optparse-applicative"
+ "haskell-optparse-simple" "haskell-path" "haskell-path-io" 
"haskell-persistent"
+ "haskell-persistent-sqlite" "haskell-persistent-template" 
"haskell-pid1" "haskell-primitive"
+ "haskell-project-template" "haskell-regex-applicative-text" 
"haskell-resourcet"
+ "haskell-retry" "haskell-semigroups" "haskell-split" "haskell-stm" 
"haskell-store"
+ "haskell-store-core" "haskell-streaming-commons" "haskell-tar" 
"haskell-text"
+ "haskell-text-metrics" "haskell-tls" "haskell-unicode-transforms" 
"haskell-unix-compat"
+ "haskell-unliftio" "haskell-unordered-containers" "haskell-vector" 
"haskell-yaml"
+ "haskell-zip-archive" "haskell-zlib")
+makedepends=('ghc')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("$pkgname-$pkgver.tar.gz::https://github.com/commercialhaskell/stack/archive/$_commit.tar.gz;)
+sha512sums=('6bb019c61e89631d83704fe3215d2cb7c790d150ad5b8a2e8e3863ad644aea5306aa4bb02bd64f9a6164bf540f5b98d042f30712029e1f5e314a4b6766d2b931')
+
+prepare() {
+mv $pkgname-$_commit $pkgname-$pkgver
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions
+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}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+LD_PRELOAD=$(ls "$pkgdir"/usr/lib/libHSstack-*-ghc*.so) 
"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+install -Dm644 stack_completion_script 

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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 16:46:41
  Author: felixonmars
Revision: 257930

upgpkg: stack 1.5.1.20170916-2

rebuild with foundation,0.0.15

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 16:27:58 UTC (rev 257929)
+++ PKGBUILD2017-09-16 16:46:41 UTC (rev 257930)
@@ -5,7 +5,7 @@
 pkgname=stack
 pkgver=1.5.1.20170916
 _commit=4de4a450e426f70a5e5f127d7e7568f556ec9404
-pkgrel=1
+pkgrel=2
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("custom:BSD3")


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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 16:27:58
  Author: felixonmars
Revision: 257929

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  tamarin-prover/repos/community-staging-i686/
  tamarin-prover/repos/community-staging-i686/PKGBUILD
(from rev 257928, tamarin-prover/trunk/PKGBUILD)
  tamarin-prover/repos/community-staging-i686/binary-orphans-0.1.8.0.patch
(from rev 257928, tamarin-prover/trunk/binary-orphans-0.1.8.0.patch)
  tamarin-prover/repos/community-staging-x86_64/
  tamarin-prover/repos/community-staging-x86_64/PKGBUILD
(from rev 257928, tamarin-prover/trunk/PKGBUILD)
  tamarin-prover/repos/community-staging-x86_64/binary-orphans-0.1.8.0.patch
(from rev 257928, tamarin-prover/trunk/binary-orphans-0.1.8.0.patch)

---+
 community-staging-i686/PKGBUILD   |   54 
 community-staging-i686/binary-orphans-0.1.8.0.patch   |   16 
 community-staging-x86_64/PKGBUILD |   54 
 community-staging-x86_64/binary-orphans-0.1.8.0.patch |   16 
 4 files changed, 140 insertions(+)

Copied: tamarin-prover/repos/community-staging-i686/PKGBUILD (from rev 257928, 
tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-16 16:27:58 UTC (rev 257929)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=tamarin-prover
+pkgver=1.2.2
+pkgrel=19
+pkgdesc="The Tamarin prover for security protocol analysis"
+url="http://tamarin-prover.github.io;
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'graphviz' 'maude' "haskell-hunit" "haskell-binary-orphans"
+ "haskell-blaze-builder" "haskell-blaze-html" "haskell-cmdargs" 
"haskell-conduit"
+ "haskell-fclabels" "haskell-file-embed" "haskell-gitrev" 
"haskell-http-types"
+ "haskell-lifted-base" "haskell-mtl" "haskell-resourcet" "haskell-safe"
+ "haskell-shakespeare" "haskell-text" "haskell-threads" "haskell-wai" 
"haskell-warp"
+ "haskell-yesod-core" "haskell-yesod-static" 
"haskell-tamarin-prover-utils"
+ "haskell-tamarin-prover-term" "haskell-tamarin-prover-theory")
+optdepends=('ocaml: for sapic support')
+makedepends=('ghc' 'ocaml')
+source=("tamarin-prover-$pkgver.tar.gz::https://github.com/tamarin-prover/tamarin-prover/archive/$pkgver.tar.gz;
+binary-orphans-0.1.8.0.patch)
+sha256sums=('f9b2d3acc01b89f71d2b246a6b3010ebab71e4fe309b3be8a8eac213422b43de'
+'d2f700f4d5b0a3aaf239139bc4abba85acdc2ab86ae3ff7fe345b95679998011')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+sed -i '/cp sapic/d' plugins/sapic/Makefile
+patch -p1 -i ../binary-orphans-0.1.8.0.patch
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-executable-dynamic --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \
+-fthreaded -ftest-coverage -f-build-tests
+runhaskell Setup build
+
+cd plugins/sapic
+make -j1
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+install -Dm644 etc/filetype.vim 
"$pkgdir"/usr/share/vim/vimfiles/filetype.vim
+install -Dm644 etc/spthy.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/spthy.vim
+install -Dm644 etc/sapic.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/sapic.vim
+
+cd plugins/sapic
+install -Dm755 sapic "$pkgdir"/usr/bin/sapic
+}

Copied: 
tamarin-prover/repos/community-staging-i686/binary-orphans-0.1.8.0.patch (from 
rev 257928, tamarin-prover/trunk/binary-orphans-0.1.8.0.patch)
===
--- community-staging-i686/binary-orphans-0.1.8.0.patch 
(rev 0)
+++ community-staging-i686/binary-orphans-0.1.8.0.patch 2017-09-16 16:27:58 UTC 
(rev 257929)
@@ -0,0 +1,16 @@
+diff --git a/src/Web/Types.hs b/src/Web/Types.hs
+index 8efe669..95e75f3 100644
+--- a/src/Web/Types.hs
 b/src/Web/Types.hs
+@@ -79,11 +79,6 @@ import   Yesod.Static
+ import   Theory
+ 
+ 
+--- | Derived Instances to fix things
+-instance Bin.Binary ZonedTime where
+-  get = liftM2 ZonedTime Bin.get Bin.get
+-  put (ZonedTime d tod) = Bin.put d >> Bin.put tod
+-
+ --
+ -- Types
+ --

Copied: tamarin-prover/repos/community-staging-x86_64/PKGBUILD (from rev 
257928, tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ 

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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 16:27:27
  Author: felixonmars
Revision: 257928

upgpkg: tamarin-prover 1.2.2-19

rebuild with foundation,0.0.15

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 16:25:26 UTC (rev 257927)
+++ PKGBUILD2017-09-16 16:27:27 UTC (rev 257928)
@@ -4,7 +4,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.2.2
-pkgrel=18
+pkgrel=19
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="http://tamarin-prover.github.io;
 license=("GPL")


[arch-commits] Commit in homebank/trunk (PKGBUILD homebank.changelog)

2017-09-16 Thread Jaroslav Lichtblau
Date: Saturday, September 16, 2017 @ 16:25:01
  Author: jlichtblau
Revision: 257926

upgpkg: homebank 5.1.6-1 - new upstream release

Modified:
  homebank/trunk/PKGBUILD
  homebank/trunk/homebank.changelog

+
 PKGBUILD   |4 ++--
 homebank.changelog |3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 16:24:12 UTC (rev 257925)
+++ PKGBUILD2017-09-16 16:25:01 UTC (rev 257926)
@@ -3,7 +3,7 @@
 # Contributor: William Rea 
 
 pkgname=homebank
-pkgver=5.1.5
+pkgver=5.1.6
 pkgrel=1
 pkgdesc="Free, easy, personal accounting for everyone"
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 makedepends=('intltool')
 changelog=$pkgname.changelog
 source=(http://homebank.free.fr/public/$pkgname-$pkgver.tar.gz)
-sha256sums=('5c3fd3478577e91a5d8e6e28fced58b5ad611eecb06e8f335a9585b817a1330f')
+sha256sums=('2861e11590a00f5cbc505293821cb8caeabb74c26babe8a6a9d728f3404290e0')
 
 build() {
   cd "${srcdir}"/$pkgname-$pkgver

Modified: homebank.changelog
===
--- homebank.changelog  2017-09-16 16:24:12 UTC (rev 257925)
+++ homebank.changelog  2017-09-16 16:25:01 UTC (rev 257926)
@@ -1,3 +1,6 @@
+2017-09-16 Jaroslav Lichtblau 
+   * homebank 5.1.6-1
+
 2017-05-11 Jaroslav Lichtblau 
* homebank 5.1.5-1
 


[arch-commits] Commit in homebank/repos (8 files)

2017-09-16 Thread Jaroslav Lichtblau
Date: Saturday, September 16, 2017 @ 16:25:26
  Author: jlichtblau
Revision: 257927

archrelease: copy trunk to community-i686, community-x86_64

Added:
  homebank/repos/community-i686/PKGBUILD
(from rev 257926, homebank/trunk/PKGBUILD)
  homebank/repos/community-i686/homebank.changelog
(from rev 257926, homebank/trunk/homebank.changelog)
  homebank/repos/community-x86_64/PKGBUILD
(from rev 257926, homebank/trunk/PKGBUILD)
  homebank/repos/community-x86_64/homebank.changelog
(from rev 257926, homebank/trunk/homebank.changelog)
Deleted:
  homebank/repos/community-i686/PKGBUILD
  homebank/repos/community-i686/homebank.changelog
  homebank/repos/community-x86_64/PKGBUILD
  homebank/repos/community-x86_64/homebank.changelog

-+
 /PKGBUILD   |   60 
 /homebank.changelog |  160 ++
 community-i686/PKGBUILD |   30 --
 community-i686/homebank.changelog   |   77 
 community-x86_64/PKGBUILD   |   30 --
 community-x86_64/homebank.changelog |   77 
 6 files changed, 220 insertions(+), 214 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-16 16:25:01 UTC (rev 257926)
+++ community-i686/PKGBUILD 2017-09-16 16:25:26 UTC (rev 257927)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: William Rea 
-
-pkgname=homebank
-pkgver=5.1.5
-pkgrel=1
-pkgdesc="Free, easy, personal accounting for everyone"
-arch=('i686' 'x86_64')
-url="http://homebank.free.fr/;
-license=('GPL')
-depends=('desktop-file-utils' 'gtk3' 'hicolor-icon-theme' 'libofx'
- 'librsvg' 'perl-xml-parser' 'shared-mime-info' 'libsoup')
-makedepends=('intltool')
-changelog=$pkgname.changelog
-source=(http://homebank.free.fr/public/$pkgname-$pkgver.tar.gz)
-sha256sums=('5c3fd3478577e91a5d8e6e28fced58b5ad611eecb06e8f335a9585b817a1330f')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: homebank/repos/community-i686/PKGBUILD (from rev 257926, 
homebank/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-16 16:25:26 UTC (rev 257927)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: William Rea 
+
+pkgname=homebank
+pkgver=5.1.6
+pkgrel=1
+pkgdesc="Free, easy, personal accounting for everyone"
+arch=('i686' 'x86_64')
+url="http://homebank.free.fr/;
+license=('GPL')
+depends=('desktop-file-utils' 'gtk3' 'hicolor-icon-theme' 'libofx'
+ 'librsvg' 'perl-xml-parser' 'shared-mime-info' 'libsoup')
+makedepends=('intltool')
+changelog=$pkgname.changelog
+source=(http://homebank.free.fr/public/$pkgname-$pkgver.tar.gz)
+sha256sums=('2861e11590a00f5cbc505293821cb8caeabb74c26babe8a6a9d728f3404290e0')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-i686/homebank.changelog
===
--- community-i686/homebank.changelog   2017-09-16 16:25:01 UTC (rev 257926)
+++ community-i686/homebank.changelog   2017-09-16 16:25:26 UTC (rev 257927)
@@ -1,77 +0,0 @@
-2017-05-11 Jaroslav Lichtblau 
-   * homebank 5.1.5-1
-
-2017-02-16 Jaroslav Lichtblau 
-   * homebank 5.1.4-1
-
-2017-01-23 Jaroslav Lichtblau 
-   * homebank 5.1.3-1
-
-2016-12-08 Jaroslav Lichtblau 
-   * homebank 5.1.2-1
-
-2016-11-06 Jaroslav Lichtblau 
-   * homebank 5.1.1-1
-
-2016-10-17 Jaroslav Lichtblau 
-   * homebank 5.1-1
-
-2016-07-25 Jaroslav Lichtblau 
-   * homebank 5.0.9-1
-
-2016-05-22 Jaroslav Lichtblau 
-   * homebank 5.0.8-1
-
-2016-05-09 Jaroslav Lichtblau 
-   * homebank 5.0.7-1
-
-2016-04-29 Jaroslav Lichtblau 
-   * homebank 5.0.6-2 pacman hooks rebuild
-
-2015-11-01 Jaroslav Lichtblau 
-   * homebank 5.0.6-1
-
-2015-09-26 Jaroslav Lichtblau 
-   * homebank 5.0.5-1
-
-2015-06-15 Jaroslav Lichtblau 
-   * homebank 5.0.3-1
-
-2015-05-14 Jaroslav Lichtblau 
-   * homebank 5.0.2-1
-
-2015-04-18 Jaroslav Lichtblau 
-   

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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 16:24:12
  Author: felixonmars
Revision: 257925

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   50 
 community-staging-x86_64/PKGBUILD |   50 
 2 files changed, 100 insertions(+)

Copied: hledger-web/repos/community-staging-i686/PKGBUILD (from rev 257924, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-16 16:24:12 UTC (rev 257925)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.3.1
+pkgrel=14
+pkgdesc="Web interface for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'hledger' "haskell-hledger-lib" "haskell-base-compat" 
"haskell-blaze-html"
+ "haskell-blaze-markup" "haskell-clientsession" "haskell-cmdargs" 
"haskell-data-default"
+ "haskell-hjsmin" "haskell-http-conduit" "haskell-http-client" 
"haskell-hunit"
+ "haskell-conduit-extra" "haskell-safe" "haskell-shakespeare" 
"haskell-text" "haskell-wai"
+ "haskell-wai-extra" "haskell-wai-handler-launch" "haskell-warp" 
"haskell-yesod"
+ "haskell-yesod-core" "haskell-yesod-form" "haskell-yesod-static" 
"haskell-json" 
+ "haskell-megaparsec" "haskell-mtl")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('39517998fbbf73c931a056f4e9e2a134e022516bebd9ecb012ae1a32f94d5b46ecfd71cf70e73ef612fa4ca46e6be78fd132e84405fc9abd0e98238d73d0aadf')
+
+prepare() {
+sed -e 's/megaparsec >=5.0 && < 5.3/megaparsec >=5.0 \&\& < 5.4/' \
+-i ${pkgname}-${pkgver}/${pkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-dev -f-library-only -f-oldtime -fthreaded
+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"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 257924, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-16 16:24:12 UTC (rev 257925)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.3.1
+pkgrel=14
+pkgdesc="Web interface for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'hledger' "haskell-hledger-lib" "haskell-base-compat" 
"haskell-blaze-html"
+ "haskell-blaze-markup" "haskell-clientsession" "haskell-cmdargs" 
"haskell-data-default"
+ "haskell-hjsmin" "haskell-http-conduit" "haskell-http-client" 
"haskell-hunit"
+ "haskell-conduit-extra" "haskell-safe" "haskell-shakespeare" 
"haskell-text" "haskell-wai"
+ "haskell-wai-extra" "haskell-wai-handler-launch" "haskell-warp" 
"haskell-yesod"
+ "haskell-yesod-core" "haskell-yesod-form" "haskell-yesod-static" 
"haskell-json" 
+ "haskell-megaparsec" "haskell-mtl")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('39517998fbbf73c931a056f4e9e2a134e022516bebd9ecb012ae1a32f94d5b46ecfd71cf70e73ef612fa4ca46e6be78fd132e84405fc9abd0e98238d73d0aadf')
+
+prepare() {
+sed -e 's/megaparsec >=5.0 && < 5.3/megaparsec 

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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 16:23:39
  Author: felixonmars
Revision: 257924

upgpkg: hledger-web 1.3.1-14

rebuild with foundation,0.0.15

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 16:21:27 UTC (rev 257923)
+++ PKGBUILD2017-09-16 16:23:39 UTC (rev 257924)
@@ -4,7 +4,7 @@
 
 pkgname=hledger-web
 pkgver=1.3.1
-pkgrel=13
+pkgrel=14
 pkgdesc="Web interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2017-09-16 Thread Jaroslav Lichtblau
Date: Saturday, September 16, 2017 @ 16:21:27
  Author: jlichtblau
Revision: 257923

archrelease: copy trunk to community-any

Added:
  youtube-dl/repos/community-any/PKGBUILD
(from rev 257922, youtube-dl/trunk/PKGBUILD)
Deleted:
  youtube-dl/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-16 16:21:10 UTC (rev 257922)
+++ PKGBUILD2017-09-16 16:21:27 UTC (rev 257923)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-# Maintainer: Jaroslav Lichtblau 
-
-pkgname=youtube-dl
-pkgver=2017.09.11
-pkgrel=1
-pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
-arch=('any')
-url="http://rg3.github.io/youtube-dl/;
-license=('custom')
-depends=('python' 'python-setuptools')
-optdepends=('ffmpeg: for video post-processing'
-'rtmpdump: for rtmp streams support'
-'atomicparsley: for embedding thumbnails into m4a files')
-source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('8b6defdd7cb9a8228eca2ef03a8c203a3ccba1ed97cb700f11b40a3af548212a'
-'SKIP')
-validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
-  'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M. 
-
-prepare() {
-  cd ${pkgname}
-  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
-  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
-}
-
-package() {
-  cd ${pkgname}
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
- "${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
-  install -Dm644 youtube-dl.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_youtube-dl"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: youtube-dl/repos/community-any/PKGBUILD (from rev 257922, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-16 16:21:27 UTC (rev 257923)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=youtube-dl
+pkgver=2017.09.15
+pkgrel=1
+pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
+arch=('any')
+url="http://rg3.github.io/youtube-dl/;
+license=('custom')
+depends=('python' 'python-setuptools')
+optdepends=('ffmpeg: for video post-processing'
+'rtmpdump: for rtmp streams support'
+'atomicparsley: for embedding thumbnails into m4a files')
+source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('eef429c94978febb7b022ad7805adda3fdc78814c92c293eebfe2eb83fbe88cf'
+'SKIP')
+validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
+  'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M. 
+
+prepare() {
+  cd ${pkgname}
+  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
+  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --root="${pkgdir}/" --optimize=1
+  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
+ "${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
+  install -Dm644 youtube-dl.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_youtube-dl"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2017-09-16 Thread Jaroslav Lichtblau
Date: Saturday, September 16, 2017 @ 16:21:10
  Author: jlichtblau
Revision: 257922

upgpkg: youtube-dl 2017.09.15-1 - new upstream release

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 16:20:35 UTC (rev 257921)
+++ PKGBUILD2017-09-16 16:21:10 UTC (rev 257922)
@@ -3,7 +3,7 @@
 # Maintainer: Jaroslav Lichtblau 
 
 pkgname=youtube-dl
-pkgver=2017.09.11
+pkgver=2017.09.15
 pkgrel=1
 pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
 arch=('any')
@@ -14,7 +14,7 @@
 'rtmpdump: for rtmp streams support'
 'atomicparsley: for embedding thumbnails into m4a files')
 
source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('8b6defdd7cb9a8228eca2ef03a8c203a3ccba1ed97cb700f11b40a3af548212a'
+sha256sums=('eef429c94978febb7b022ad7805adda3fdc78814c92c293eebfe2eb83fbe88cf'
 'SKIP')
 validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
   'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M. 


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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 16:20:35
  Author: felixonmars
Revision: 257921

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   53 
 community-staging-x86_64/PKGBUILD |   53 
 2 files changed, 106 insertions(+)

Copied: git-annex/repos/community-staging-i686/PKGBUILD (from rev 257920, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-16 16:20:35 UTC (rev 257921)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20170818
+pkgrel=18
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('git' 'rsync' 'ghc-libs' "haskell-aeson" "haskell-async" "haskell-aws"
+ "haskell-blaze-builder" "haskell-bloomfilter" "haskell-byteable" 
"haskell-case-insensitive"
+ "haskell-clientsession" "haskell-concurrent-output" "haskell-conduit" 
"haskell-crypto-api"
+ "haskell-cryptonite" "haskell-data-default" "haskell-dav" 
"haskell-dbus"
+ "haskell-disk-free-space" "haskell-dlist" "haskell-dns" 
"haskell-edit-distance"
+ "haskell-esqueleto" "haskell-exceptions" "haskell-fdo-notify" 
"haskell-feed"
+ "haskell-hinotify" "haskell-hslogger" "haskell-http-client" 
"haskell-http-conduit"
+ "haskell-http-types" "haskell-ifelse" "haskell-magic" "haskell-memory"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-mountpoints" 
"haskell-mtl"
+ "haskell-network" "haskell-network-info" "haskell-network-multicast" 
"haskell-network-uri"
+ "haskell-old-locale" "haskell-optparse-applicative" 
"haskell-path-pieces"
+ "haskell-persistent" "haskell-persistent-sqlite" 
"haskell-persistent-template"
+ "haskell-quickcheck" "haskell-random" "haskell-regex-tdfa" 
"haskell-resourcet"
+ "haskell-safesemaphore" "haskell-sandi" "haskell-securemem" 
"haskell-shakespeare"
+ "haskell-socks" "haskell-split" "haskell-stm" "haskell-stm-chans" 
"haskell-tasty"
+ "haskell-tasty-hunit" "haskell-tasty-quickcheck" 
"haskell-tasty-rerun" "haskell-text"
+ "haskell-torrent" "haskell-unix-compat" "haskell-unordered-containers"
+ "haskell-utf8-string" "haskell-uuid" "haskell-wai" 
"haskell-wai-extra" "haskell-warp"
+ "haskell-warp-tls" "haskell-yesod" "haskell-yesod-core" 
"haskell-yesod-default"
+ "haskell-yesod-form" "haskell-yesod-static")
+makedepends=("chrpath" 'ghc')
+source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+build() {
+  cd git-annex
+
+  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--docdir="/usr/share/doc/$pkgname" \
+-fnetwork-uri -fconcurrentoutput -ftorrentparser \
+-ftestsuite -f-androidsplice -f-android -fproduction -fpairing -fwebapp \
+-fassistant -fwebdav -fs3 -f-benchmark -fdbus -fmagicmime
+  runhaskell Setup build
+}
+
+package() {
+  cd git-annex
+  runhaskell Setup copy --destdir="$pkgdir"
+  make GHC="ghc -dynamic" BUILDER=true DESTDIR="$pkgdir" install-misc
+
+  rm "$pkgdir"/usr/share/doc/git-annex/COPYRIGHT
+  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
+}

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 257920, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-16 16:20:35 UTC (rev 257921)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20170818
+pkgrel=18
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('git' 'rsync' 'ghc-libs' "haskell-aeson" "haskell-async" "haskell-aws"
+ "haskell-blaze-builder" "haskell-bloomfilter" "haskell-byteable" 
"haskell-case-insensitive"
+ "haskell-clientsession" "haskell-concurrent-output" "haskell-conduit" 
"haskell-crypto-api"
+ "haskell-cryptonite" "haskell-data-default" "haskell-dav" 
"haskell-dbus"
+ "haskell-disk-free-space" 

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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 16:20:01
  Author: felixonmars
Revision: 257920

upgpkg: git-annex 6.20170818-18

rebuild with foundation,0.0.15

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 16:10:08 UTC (rev 257919)
+++ PKGBUILD2017-09-16 16:20:01 UTC (rev 257920)
@@ -4,7 +4,7 @@
 
 pkgname=git-annex
 pkgver=6.20170818
-pkgrel=17
+pkgrel=18
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/;
 license=("AGPL3")


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

2017-09-16 Thread Sven-Hendrik Haase
Date: Saturday, September 16, 2017 @ 16:10:08
  Author: svenstaro
Revision: 257919

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  openvdb/repos/community-staging-i686/
  openvdb/repos/community-staging-i686/PKGBUILD
(from rev 257918, openvdb/trunk/PKGBUILD)
  openvdb/repos/community-staging-x86_64/
  openvdb/repos/community-staging-x86_64/PKGBUILD
(from rev 257918, openvdb/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   45 
 community-staging-x86_64/PKGBUILD |   45 
 2 files changed, 90 insertions(+)

Copied: openvdb/repos/community-staging-i686/PKGBUILD (from rev 257918, 
openvdb/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-16 16:10:08 UTC (rev 257919)
@@ -0,0 +1,45 @@
+# Maintainer : Sven-Hendrik Haase 
+
+pkgname=openvdb
+pkgver=4.0.2
+pkgrel=1
+pkgdesc='A large suite of tools for the efficient storage and manipulation of 
sparse volumetric data discretized on three-dimensional grids'
+url='https://github.com/dreamworksanimation/openvdb'
+arch=('i686' 'x86_64')
+license=('MPL')
+depends=('openexr' 'boost-libs' 'intel-tbb' 'zlib' 'jemalloc' 'blosc')
+makedepends=('doxygen' 'boost' 'cmake' 'mesa' 'cppunit' 'glfw-x11' 'glu')
+optdepends=('glfw: for tools'
+'glu: for tools')
+source=("https://github.com/dreamworksanimation/openvdb/archive/v${pkgver}.tar.gz;)
+sha512sums=('8e3e12583b81f9b9303b309e839c8321c67b67ff8a0e61bb56c87276bf25c0deff22f5a73c7c5b661b8e5df345bfdabfa6b0aea9bf16fce57d9c53a76751c75d')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+  cmake .. \
+-DBLOSC_LOCATION=/usr/ \
+-DTBB_LOCATION=/usr/ \
+-DUSE_GLFW3=ON \
+-DGLFW3_LOCATION=/usr/ \
+-DILMBASE_NAMESPACE_VERSIONING=OFF \
+-DOPENEXR_NAMESPACE_VERSIONING=OFF \
+-DILMBASE_LOCATION=/usr/ \
+-DOPENEXR_LOCATION=/usr/ \
+-DCPPUNIT_LOCATION=/usr/include/cppunit \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOPENVDB_BUILD_PYTHON_MODULE=OFF \
+-DOPENVDB_BUILD_DOCS=ON
+
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}/build"
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim:set sw=2 sts=2 et:

Copied: openvdb/repos/community-staging-x86_64/PKGBUILD (from rev 257918, 
openvdb/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-16 16:10:08 UTC (rev 257919)
@@ -0,0 +1,45 @@
+# Maintainer : Sven-Hendrik Haase 
+
+pkgname=openvdb
+pkgver=4.0.2
+pkgrel=1
+pkgdesc='A large suite of tools for the efficient storage and manipulation of 
sparse volumetric data discretized on three-dimensional grids'
+url='https://github.com/dreamworksanimation/openvdb'
+arch=('i686' 'x86_64')
+license=('MPL')
+depends=('openexr' 'boost-libs' 'intel-tbb' 'zlib' 'jemalloc' 'blosc')
+makedepends=('doxygen' 'boost' 'cmake' 'mesa' 'cppunit' 'glfw-x11' 'glu')
+optdepends=('glfw: for tools'
+'glu: for tools')
+source=("https://github.com/dreamworksanimation/openvdb/archive/v${pkgver}.tar.gz;)
+sha512sums=('8e3e12583b81f9b9303b309e839c8321c67b67ff8a0e61bb56c87276bf25c0deff22f5a73c7c5b661b8e5df345bfdabfa6b0aea9bf16fce57d9c53a76751c75d')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+  cmake .. \
+-DBLOSC_LOCATION=/usr/ \
+-DTBB_LOCATION=/usr/ \
+-DUSE_GLFW3=ON \
+-DGLFW3_LOCATION=/usr/ \
+-DILMBASE_NAMESPACE_VERSIONING=OFF \
+-DOPENEXR_NAMESPACE_VERSIONING=OFF \
+-DILMBASE_LOCATION=/usr/ \
+-DOPENEXR_LOCATION=/usr/ \
+-DCPPUNIT_LOCATION=/usr/include/cppunit \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOPENVDB_BUILD_PYTHON_MODULE=OFF \
+-DOPENVDB_BUILD_DOCS=ON
+
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}/build"
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim:set sw=2 sts=2 et:


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

2017-09-16 Thread Sven-Hendrik Haase
Date: Saturday, September 16, 2017 @ 16:09:54
  Author: svenstaro
Revision: 257918

upgpkg: openvdb 4.0.2-1

Modified:
  openvdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 16:08:19 UTC (rev 257917)
+++ PKGBUILD2017-09-16 16:09:54 UTC (rev 257918)
@@ -1,51 +1,45 @@
 # Maintainer : Sven-Hendrik Haase 
 
-# I would just like to take a minute here to state that this is probably one
-# of the worst packaged software packages that I have ever looked at.
-# The Makefile has defaults set to the upstream developers' specific systems
-# as well as other oddities.
-
 pkgname=openvdb
-pkgver=3.2.0
-pkgrel=4
+pkgver=4.0.2
+pkgrel=1
 pkgdesc='A large suite of tools for the efficient storage and manipulation of 
sparse volumetric data discretized on three-dimensional grids'
 url='https://github.com/dreamworksanimation/openvdb'
 arch=('i686' 'x86_64')
 license=('MPL')
 depends=('openexr' 'boost-libs' 'intel-tbb' 'zlib' 'jemalloc' 'blosc')
-makedepends=('doxygen' 'boost' 'python2' 'log4cplus' 'python2-numpy' 
'texlive-core' 'ghostscript')
-optdepends=('python2-numpy: Python module'
-'log4cplus: for vdb_print')
+makedepends=('doxygen' 'boost' 'cmake' 'mesa' 'cppunit' 'glfw-x11' 'glu')
+optdepends=('glfw: for tools'
+'glu: for tools')
 
source=("https://github.com/dreamworksanimation/openvdb/archive/v${pkgver}.tar.gz;)
-sha512sums=('df9a4895b219aae3b5a9616c34eb846d565877ff76648405691f0c903507f6faba94e8eba9173423b50cb5cef80f3ec500a9f70977cb7161701d39fd105abc91')
+sha512sums=('8e3e12583b81f9b9303b309e839c8321c67b67ff8a0e61bb56c87276bf25c0deff22f5a73c7c5b661b8e5df345bfdabfa6b0aea9bf16fce57d9c53a76751c75d')
 
 build() {
-  cd "${srcdir}/${pkgname}-${pkgver}/${pkgname}"
+  cd "${srcdir}/${pkgname}-${pkgver}"
 
-  make all \
-OPENVDB_ENABLE_3_ABI_COMPATIBLE=ON \
-PYTHON_VERSION='2.7' \
-CPPUNIT_INCL_DIR='' \
-HDSO='/usr' \
-PYTHON_INCL_DIR=/usr/include/python2.7 \
-PYTHON_LIB_DIR=/usr/lib \
-EXR_LIB_DIR=/usr/lib \
-ILMBASE_LIB_DIR=/usr/lib \
-NUMPY_INCL_DIR=/usr/lib/python2.7/site-packages/numpy/core/include/numpy \
-GLFW_INCL_DIR='' \
-BOOST_PYTHON_LIB_DIR=/usr/lib \
-BOOST_PYTHON_LIB=-lboost_python
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+  cmake .. \
+-DBLOSC_LOCATION=/usr/ \
+-DTBB_LOCATION=/usr/ \
+-DUSE_GLFW3=ON \
+-DGLFW3_LOCATION=/usr/ \
+-DILMBASE_NAMESPACE_VERSIONING=OFF \
+-DOPENEXR_NAMESPACE_VERSIONING=OFF \
+-DILMBASE_LOCATION=/usr/ \
+-DOPENEXR_LOCATION=/usr/ \
+-DCPPUNIT_LOCATION=/usr/include/cppunit \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOPENVDB_BUILD_PYTHON_MODULE=OFF \
+-DOPENVDB_BUILD_DOCS=ON
 
+  make
 }
 
 package() {
-  cd "${srcdir}/${pkgname}-${pkgver}/${pkgname}"
+  cd "${srcdir}/${pkgname}-${pkgver}/build"
 
-  mkdir ${pkgdir}/usr
-  make install \
-GLFW_INCL_DIR='' \
-EPYDOC='' \
-DESTDIR=${pkgdir}/usr
+  make DESTDIR="${pkgdir}" install
 }
 
 # vim:set sw=2 sts=2 et:


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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 16:08:19
  Author: felixonmars
Revision: 257917

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   48 
 community-staging-x86_64/PKGBUILD |   48 
 2 files changed, 96 insertions(+)

Copied: haskell-yesod-static/repos/community-staging-i686/PKGBUILD (from rev 
257916, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-16 16:08:19 UTC (rev 257917)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.5.3.1
+pkgrel=22
+pkgdesc="Static file serving subsite for Yesod Web Framework."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-async" "haskell-attoparsec" 
"haskell-base64-bytestring"
+ "haskell-blaze-builder" "haskell-byteable" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptonite" "haskell-cryptonite-conduit" "haskell-memory" 
"haskell-css-text"
+ "haskell-data-default" "haskell-exceptions" "haskell-file-embed" 
"haskell-hashable"
+ "haskell-hjsmin" "haskell-http-types" "haskell-mime-types" 
"haskell-old-time"
+ "haskell-resourcet" "haskell-text" "haskell-unix-compat" 
"haskell-unordered-containers"
+ "haskell-wai" "haskell-wai-app-static" "haskell-yesod-core")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('1ba2061e05d7374579e6ada4760db569817e957ae7adcbde49deab88cb60d2940475b530d017b12dc92ae9acc722c4ac46750e65ec23e485097ccb6e54d123a2')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--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"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD (from rev 
257916, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-16 16:08:19 UTC (rev 257917)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.5.3.1
+pkgrel=22
+pkgdesc="Static file serving subsite for Yesod Web Framework."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-async" "haskell-attoparsec" 
"haskell-base64-bytestring"
+ "haskell-blaze-builder" "haskell-byteable" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptonite" "haskell-cryptonite-conduit" "haskell-memory" 
"haskell-css-text"
+ "haskell-data-default" "haskell-exceptions" "haskell-file-embed" 
"haskell-hashable"
+ "haskell-hjsmin" "haskell-http-types" "haskell-mime-types" 
"haskell-old-time"
+ "haskell-resourcet" "haskell-text" "haskell-unix-compat" 
"haskell-unordered-containers"
+ "haskell-wai" "haskell-wai-app-static" "haskell-yesod-core")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)

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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 16:07:49
  Author: felixonmars
Revision: 257916

upgpkg: haskell-yesod-static 1.5.3.1-22

rebuild with foundation,0.0.15

Modified:
  haskell-yesod-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 16:05:57 UTC (rev 257915)
+++ PKGBUILD2017-09-16 16:07:49 UTC (rev 257916)
@@ -5,7 +5,7 @@
 _hkgname=yesod-static
 pkgname=haskell-yesod-static
 pkgver=1.5.3.1
-pkgrel=21
+pkgrel=22
 pkgdesc="Static file serving subsite for Yesod Web Framework."
 url="http://www.yesodweb.com/;
 license=("MIT")


[arch-commits] Commit in haskell-yesod-auth/repos (4 files)

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 16:05:57
  Author: felixonmars
Revision: 257915

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-yesod-auth/repos/community-staging-i686/
  haskell-yesod-auth/repos/community-staging-i686/PKGBUILD
(from rev 257914, haskell-yesod-auth/trunk/PKGBUILD)
  haskell-yesod-auth/repos/community-staging-x86_64/
  haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD
(from rev 257914, haskell-yesod-auth/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   52 
 community-staging-x86_64/PKGBUILD |   52 
 2 files changed, 104 insertions(+)

Copied: haskell-yesod-auth/repos/community-staging-i686/PKGBUILD (from rev 
257914, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-16 16:05:57 UTC (rev 257915)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.4.19
+pkgrel=6
+pkgdesc="Authentication for Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-authenticate" 
"haskell-base16-bytestring"
+ "haskell-base64-bytestring" "haskell-blaze-builder" 
"haskell-blaze-html"
+ "haskell-blaze-markup" "haskell-byteable" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptonite" "haskell-data-default" "haskell-email-validate"
+ "haskell-file-embed" "haskell-http-client" "haskell-http-conduit" 
"haskell-http-types"
+ "haskell-lifted-base" "haskell-memory" "haskell-mime-mail" 
"haskell-network-uri"
+ "haskell-nonce" "haskell-persistent" "haskell-persistent-template" 
"haskell-random"
+ "haskell-resourcet" "haskell-safe" "haskell-shakespeare" 
"haskell-text"
+ "haskell-unordered-containers" "haskell-wai" "haskell-yesod-core" 
"haskell-yesod-form"
+ "haskell-yesod-persistent")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('711b52a03b9d02748abe437fb30eaeb63a959db9c24f1a1a7ec37835bfdc0ceb48cefc1e79525999e041b84692ab9398f43bfa8c523270efeb4d0e41b32c05f3')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+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"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD (from rev 
257914, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-16 16:05:57 UTC (rev 257915)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.4.19
+pkgrel=6
+pkgdesc="Authentication for Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-authenticate" 
"haskell-base16-bytestring"
+ "haskell-base64-bytestring" "haskell-blaze-builder" 
"haskell-blaze-html"
+ "haskell-blaze-markup" "haskell-byteable" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptonite" "haskell-data-default" "haskell-email-validate"
+ "haskell-file-embed" "haskell-http-client" "haskell-http-conduit" 
"haskell-http-types"
+ "haskell-lifted-base" "haskell-memory" "haskell-mime-mail" 
"haskell-network-uri"
+ "haskell-nonce" "haskell-persistent" "haskell-persistent-template" 
"haskell-random"
+ "haskell-resourcet" "haskell-safe" "haskell-shakespeare" 
"haskell-text"
+  

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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 16:05:26
  Author: felixonmars
Revision: 257914

upgpkg: haskell-yesod-auth 1.4.19-6

rebuild with foundation,0.0.15

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 16:02:38 UTC (rev 257913)
+++ PKGBUILD2017-09-16 16:05:26 UTC (rev 257914)
@@ -5,7 +5,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.4.19
-pkgrel=5
+pkgrel=6
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 16:02:38
  Author: felixonmars
Revision: 257913

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  hoogle/repos/community-staging-i686/
  hoogle/repos/community-staging-i686/PKGBUILD
(from rev 257912, hoogle/trunk/PKGBUILD)
  hoogle/repos/community-staging-x86_64/
  hoogle/repos/community-staging-x86_64/PKGBUILD
(from rev 257912, hoogle/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   47 
 community-staging-x86_64/PKGBUILD |   47 
 2 files changed, 94 insertions(+)

Copied: hoogle/repos/community-staging-i686/PKGBUILD (from rev 257912, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-16 16:02:38 UTC (rev 257913)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.13
+pkgrel=19
+pkgdesc="Haskell API Search"
+url="http://www.haskell.org/hoogle/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-quickcheck" "haskell-aeson" "haskell-cmdargs" 
"haskell-conduit"
+ "haskell-conduit-extra" "haskell-connection" "haskell-extra" 
"haskell-src-exts"
+ "haskell-http-conduit" "haskell-http-types" "haskell-js-flot" 
"haskell-js-jquery"
+ "haskell-mmap" "haskell-network" "haskell-network-uri" 
"haskell-old-locale"
+ "haskell-process-extras" "haskell-resourcet" "haskell-tar" 
"haskell-text"
+ "haskell-uniplate" "haskell-utf8-string" "haskell-vector" 
"haskell-wai"
+ "haskell-wai-logger" "haskell-warp" "haskell-warp-tls" "haskell-zlib")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('9b5925b39b19000f312a700bf46a157efd028d2f2748ac03efe1b703659a40535dd7259dfa212d534e20358c00143df59b8e6198bfa064847559bec0c64d41b0')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--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}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: hoogle/repos/community-staging-x86_64/PKGBUILD (from rev 257912, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-16 16:02:38 UTC (rev 257913)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.13
+pkgrel=19
+pkgdesc="Haskell API Search"
+url="http://www.haskell.org/hoogle/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-quickcheck" "haskell-aeson" "haskell-cmdargs" 
"haskell-conduit"
+ "haskell-conduit-extra" "haskell-connection" "haskell-extra" 
"haskell-src-exts"
+ "haskell-http-conduit" "haskell-http-types" "haskell-js-flot" 
"haskell-js-jquery"
+ "haskell-mmap" "haskell-network" "haskell-network-uri" 
"haskell-old-locale"
+ "haskell-process-extras" "haskell-resourcet" "haskell-tar" 
"haskell-text"
+ "haskell-uniplate" "haskell-utf8-string" "haskell-vector" 
"haskell-wai"
+ "haskell-wai-logger" "haskell-warp" "haskell-warp-tls" "haskell-zlib")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('9b5925b39b19000f312a700bf46a157efd028d2f2748ac03efe1b703659a40535dd7259dfa212d534e20358c00143df59b8e6198bfa064847559bec0c64d41b0')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+

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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 16:02:04
  Author: felixonmars
Revision: 257912

upgpkg: hoogle 5.0.13-19

rebuild with foundation,0.0.15

Modified:
  hoogle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 15:59:00 UTC (rev 257911)
+++ PKGBUILD2017-09-16 16:02:04 UTC (rev 257912)
@@ -4,7 +4,7 @@
 
 pkgname=hoogle
 pkgver=5.0.13
-pkgrel=18
+pkgrel=19
 pkgdesc="Haskell API Search"
 url="http://www.haskell.org/hoogle/;
 license=("custom:BSD3")


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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 15:58:29
  Author: felixonmars
Revision: 257910

upgpkg: haskell-warp-tls 3.2.4-20

rebuild with foundation,0.0.15

Modified:
  haskell-warp-tls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 15:57:14 UTC (rev 257909)
+++ PKGBUILD2017-09-16 15:58:29 UTC (rev 257910)
@@ -5,7 +5,7 @@
 _hkgname=warp-tls
 pkgname=haskell-warp-tls
 pkgver=3.2.4
-pkgrel=19
+pkgrel=20
 pkgdesc="HTTP over TLS support for Warp via the TLS package"
 url="http://github.com/yesodweb/wai;
 license=("MIT")


[arch-commits] Commit in haskell-warp-tls/repos (4 files)

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 15:59:00
  Author: felixonmars
Revision: 257911

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-warp-tls/repos/community-staging-i686/
  haskell-warp-tls/repos/community-staging-i686/PKGBUILD
(from rev 257910, haskell-warp-tls/trunk/PKGBUILD)
  haskell-warp-tls/repos/community-staging-x86_64/
  haskell-warp-tls/repos/community-staging-x86_64/PKGBUILD
(from rev 257910, haskell-warp-tls/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   44 
 community-staging-x86_64/PKGBUILD |   44 
 2 files changed, 88 insertions(+)

Copied: haskell-warp-tls/repos/community-staging-i686/PKGBUILD (from rev 
257910, haskell-warp-tls/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-16 15:59:00 UTC (rev 257911)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp-tls
+pkgname=haskell-warp-tls
+pkgver=3.2.4
+pkgrel=20
+pkgdesc="HTTP over TLS support for Warp via the TLS package"
+url="http://github.com/yesodweb/wai;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-cryptonite" "haskell-data-default-class" 
"haskell-network"
+ "haskell-streaming-commons" "haskell-tls" 
"haskell-tls-session-manager" "haskell-wai"
+ "haskell-warp")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('3cf7b549f39bc314a9a648f9e0b43e5d47a6b08fd56189af4f1d8dbcd9092dc411bc5a3cc429c0fb79738f3e84ec096ad0a8ac83bd8d14ecf90d505f17391642')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--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"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-warp-tls/repos/community-staging-x86_64/PKGBUILD (from rev 
257910, haskell-warp-tls/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-16 15:59:00 UTC (rev 257911)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp-tls
+pkgname=haskell-warp-tls
+pkgver=3.2.4
+pkgrel=20
+pkgdesc="HTTP over TLS support for Warp via the TLS package"
+url="http://github.com/yesodweb/wai;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-cryptonite" "haskell-data-default-class" 
"haskell-network"
+ "haskell-streaming-commons" "haskell-tls" 
"haskell-tls-session-manager" "haskell-wai"
+ "haskell-warp")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('3cf7b549f39bc314a9a648f9e0b43e5d47a6b08fd56189af4f1d8dbcd9092dc411bc5a3cc429c0fb79738f3e84ec096ad0a8ac83bd8d14ecf90d505f17391642')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--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" 

[arch-commits] Commit in haskell-tls-session-manager/repos (4 files)

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 15:57:14
  Author: felixonmars
Revision: 257909

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-tls-session-manager/repos/community-staging-i686/
  haskell-tls-session-manager/repos/community-staging-i686/PKGBUILD
(from rev 257908, haskell-tls-session-manager/trunk/PKGBUILD)
  haskell-tls-session-manager/repos/community-staging-x86_64/
  haskell-tls-session-manager/repos/community-staging-x86_64/PKGBUILD
(from rev 257908, haskell-tls-session-manager/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   42 
 community-staging-x86_64/PKGBUILD |   42 
 2 files changed, 84 insertions(+)

Copied: haskell-tls-session-manager/repos/community-staging-i686/PKGBUILD (from 
rev 257908, haskell-tls-session-manager/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-16 15:57:14 UTC (rev 257909)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tls-session-manager
+pkgname=haskell-tls-session-manager
+pkgver=0.0.0.1
+pkgrel=9
+pkgdesc="In-memory TLS session manager"
+url="https://hackage.haskell.org/package/tls-session-manager;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-auto-update" "haskell-clock" "haskell-psqueues" 
"haskell-tls")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('a25943739299d93af431184a1272bc780d89ac48733c7684d17d5f39439189de3a7f0770ccabf77a5587d3b83f848f62634504fa01d2b1badf3907b868f0e4d0')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--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"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-tls-session-manager/repos/community-staging-x86_64/PKGBUILD 
(from rev 257908, haskell-tls-session-manager/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-16 15:57:14 UTC (rev 257909)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tls-session-manager
+pkgname=haskell-tls-session-manager
+pkgver=0.0.0.1
+pkgrel=9
+pkgdesc="In-memory TLS session manager"
+url="https://hackage.haskell.org/package/tls-session-manager;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-auto-update" "haskell-clock" "haskell-psqueues" 
"haskell-tls")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('a25943739299d93af431184a1272bc780d89ac48733c7684d17d5f39439189de3a7f0770ccabf77a5587d3b83f848f62634504fa01d2b1badf3907b868f0e4d0')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--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 

[arch-commits] Commit in haskell-tls-session-manager/trunk (PKGBUILD)

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 15:56:43
  Author: felixonmars
Revision: 257908

upgpkg: haskell-tls-session-manager 0.0.0.1-9

rebuild with foundation,0.0.15

Modified:
  haskell-tls-session-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 15:55:37 UTC (rev 257907)
+++ PKGBUILD2017-09-16 15:56:43 UTC (rev 257908)
@@ -5,7 +5,7 @@
 _hkgname=tls-session-manager
 pkgname=haskell-tls-session-manager
 pkgver=0.0.0.1
-pkgrel=8
+pkgrel=9
 pkgdesc="In-memory TLS session manager"
 url="https://hackage.haskell.org/package/tls-session-manager;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-pipes-http/repos (4 files)

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 15:55:37
  Author: felixonmars
Revision: 257907

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-pipes-http/repos/community-staging-i686/
  haskell-pipes-http/repos/community-staging-i686/PKGBUILD
(from rev 257906, haskell-pipes-http/trunk/PKGBUILD)
  haskell-pipes-http/repos/community-staging-x86_64/
  haskell-pipes-http/repos/community-staging-x86_64/PKGBUILD
(from rev 257906, haskell-pipes-http/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   42 
 community-staging-x86_64/PKGBUILD |   42 
 2 files changed, 84 insertions(+)

Copied: haskell-pipes-http/repos/community-staging-i686/PKGBUILD (from rev 
257906, haskell-pipes-http/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-16 15:55:37 UTC (rev 257907)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pipes-http
+pkgname=haskell-pipes-http
+pkgver=1.0.5
+pkgrel=58
+pkgdesc="HTTP client with pipes interface"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-http-client" "haskell-http-client-tls" 
"haskell-pipes")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('49a196466de1638f3806a49bf10fef9eb3c06456ababf09ffd025b6b64f23055')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--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"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-pipes-http/repos/community-staging-x86_64/PKGBUILD (from rev 
257906, haskell-pipes-http/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-16 15:55:37 UTC (rev 257907)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pipes-http
+pkgname=haskell-pipes-http
+pkgver=1.0.5
+pkgrel=58
+pkgdesc="HTTP client with pipes interface"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-http-client" "haskell-http-client-tls" 
"haskell-pipes")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('49a196466de1638f3806a49bf10fef9eb3c06456ababf09ffd025b6b64f23055')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--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"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}


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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 15:55:02
  Author: felixonmars
Revision: 257906

upgpkg: haskell-pipes-http 1.0.5-58

rebuild with foundation,0.0.15

Modified:
  haskell-pipes-http/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 15:53:50 UTC (rev 257905)
+++ PKGBUILD2017-09-16 15:55:02 UTC (rev 257906)
@@ -5,7 +5,7 @@
 _hkgname=pipes-http
 pkgname=haskell-pipes-http
 pkgver=1.0.5
-pkgrel=57
+pkgrel=58
 pkgdesc="HTTP client with pipes interface"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("custom:BSD3")


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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 15:53:50
  Author: felixonmars
Revision: 257905

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   44 
 community-staging-x86_64/PKGBUILD |   44 
 2 files changed, 88 insertions(+)

Copied: pandoc-crossref/repos/community-staging-i686/PKGBUILD (from rev 257904, 
pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-16 15:53:50 UTC (rev 257905)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.2.6.0
+pkgrel=11
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgname};
+license=("GPL2")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-data-default" "haskell-data-accessor" 
"haskell-data-accessor-template"
+ "haskell-data-accessor-transformers" "haskell-mtl" "pandoc" 
"haskell-pandoc-types"
+ "haskell-roman-numerals" "haskell-syb" "haskell-utility-ht")
+conflicts=('haskell-pandoc-crossref')
+replaces=('haskell-pandoc-crossref')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('2af52b5f347b039148d5285b1277a1c3e382bf0f666d353ac593635f1bae3ef692fac7319ed0ca8c9ab33475a2bb28ae5b540d80c637eb39f8f5a22830258fc1')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--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.md"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
257904, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-16 15:53:50 UTC (rev 257905)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.2.6.0
+pkgrel=11
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgname};
+license=("GPL2")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-data-default" "haskell-data-accessor" 
"haskell-data-accessor-template"
+ "haskell-data-accessor-transformers" "haskell-mtl" "pandoc" 
"haskell-pandoc-types"
+ "haskell-roman-numerals" "haskell-syb" "haskell-utility-ht")
+conflicts=('haskell-pandoc-crossref')
+replaces=('haskell-pandoc-crossref')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('2af52b5f347b039148d5285b1277a1c3e382bf0f666d353ac593635f1bae3ef692fac7319ed0ca8c9ab33475a2bb28ae5b540d80c637eb39f8f5a22830258fc1')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--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"
+

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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 15:53:17
  Author: felixonmars
Revision: 257904

upgpkg: pandoc-crossref 0.2.6.0-11

rebuild with foundation,0.0.15

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 15:51:06 UTC (rev 257903)
+++ PKGBUILD2017-09-16 15:53:17 UTC (rev 257904)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.2.6.0
-pkgrel=10
+pkgrel=11
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname};
 license=("GPL2")


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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 15:51:06
  Author: felixonmars
Revision: 257903

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   57 
 community-staging-x86_64/PKGBUILD |   57 
 2 files changed, 114 insertions(+)

Copied: haskell-hakyll/repos/community-staging-i686/PKGBUILD (from rev 257902, 
haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-16 15:51:06 UTC (rev 257903)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.9.8.0
+pkgrel=54
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll;
+license=("custom:BSD3")
+arch=('i686' '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')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('933645964113bbdf898366aedd11c6f26035e633b66fb01206258264a3b8857e08ea919f3284b6dfef28c32e6dc2bdd21ee85ed5e1c4c184423dfdc4a487')
+
+prepare() {
+sed -e 's/pandoc-citeproc  >= 0.10.5 && < 0.11,/pandoc-citeproc  
>= 0.10.5,/' \
+-e 's/process  >= 1.0&& < 1.6,/process  >= 
1.0,/' \
+-e 's/time >= 1.4&& < 1.8,/time >= 
1.4,/' \
+-i $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--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
+}
+
+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"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
257902, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-16 15:51:06 UTC (rev 257903)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.9.8.0
+pkgrel=54
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll;
+license=("custom:BSD3")
+arch=('i686' '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" 

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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 15:50:34
  Author: felixonmars
Revision: 257902

upgpkg: haskell-hakyll 4.9.8.0-54

rebuild with foundation,0.0.15

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 15:46:16 UTC (rev 257901)
+++ PKGBUILD2017-09-16 15:50:34 UTC (rev 257902)
@@ -5,7 +5,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.9.8.0
-pkgrel=53
+pkgrel=54
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("custom:BSD3")


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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 15:46:16
  Author: felixonmars
Revision: 257901

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   52 
 community-staging-x86_64/PKGBUILD |   52 
 2 files changed, 104 insertions(+)

Copied: pandoc-citeproc/repos/community-staging-i686/PKGBUILD (from rev 257900, 
pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-16 15:46:16 UTC (rev 257901)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.11.1
+pkgrel=11
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/$pkgname;
+license=("custom:BSD3")
+arch=('i686' '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=('d9540d7ec17d12a10620cc26f93b1ef940e17e49896e6044f68823768da9aaa24ce01b7afb68b2e52af928d0ca6e211d6eb557ffac64666137e044531bb59dc6')
+
+prepare() {
+sed -i 's/xml-conduit >= 1.2 && < 1.6,/xml-conduit >= 1.2,/' 
$pkgname-$pkgver/$pkgname.cabal
+}
+
+build() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/$pkgname" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug -f-test_citeproc -funicode_collation -f-embed_data_files 
-fbibutils
+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}"
+install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/$pkgname/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
257900, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-16 15:46:16 UTC (rev 257901)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.11.1
+pkgrel=11
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/$pkgname;
+license=("custom:BSD3")
+arch=('i686' '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=('d9540d7ec17d12a10620cc26f93b1ef940e17e49896e6044f68823768da9aaa24ce01b7afb68b2e52af928d0ca6e211d6eb557ffac64666137e044531bb59dc6')
+
+prepare() {
+

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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 15:45:45
  Author: felixonmars
Revision: 257900

upgpkg: pandoc-citeproc 0.11.1-11

rebuild with foundation,0.0.15

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 15:40:34 UTC (rev 257899)
+++ PKGBUILD2017-09-16 15:45:45 UTC (rev 257900)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.11.1
-pkgrel=10
+pkgrel=11
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname;
 license=("custom:BSD3")


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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 15:40:34
  Author: felixonmars
Revision: 257899

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  pandoc/repos/community-staging-i686/
  pandoc/repos/community-staging-i686/PKGBUILD
(from rev 257898, pandoc/trunk/PKGBUILD)
  pandoc/repos/community-staging-i686/ghc-8.2.1.patch
(from rev 257898, pandoc/trunk/ghc-8.2.1.patch)
  pandoc/repos/community-staging-x86_64/
  pandoc/repos/community-staging-x86_64/PKGBUILD
(from rev 257898, pandoc/trunk/PKGBUILD)
  pandoc/repos/community-staging-x86_64/ghc-8.2.1.patch
(from rev 257898, pandoc/trunk/ghc-8.2.1.patch)

--+
 community-staging-i686/PKGBUILD  |   65 +++
 community-staging-i686/ghc-8.2.1.patch   |   81 +
 community-staging-x86_64/PKGBUILD|   65 +++
 community-staging-x86_64/ghc-8.2.1.patch |   81 +
 4 files changed, 292 insertions(+)

Copied: pandoc/repos/community-staging-i686/PKGBUILD (from rev 257898, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-16 15:40:34 UTC (rev 257899)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=1.19.2.1
+pkgrel=113
+pkgdesc="Conversion between markup formats"
+url="http://pandoc.org;
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('ghc-libs' "haskell-http" "haskell-juicypixels" "haskell-sha" 
"haskell-aeson"
+ "haskell-base64-bytestring" "haskell-blaze-html" 
"haskell-blaze-markup" "haskell-cmark"
+ "haskell-data-default" "haskell-doctemplates" "haskell-mtl" 
"haskell-extensible-exceptions"
+ "haskell-filemanip" "haskell-haddock-library" "haskell-skylighting" 
"haskell-hslua"
+ "haskell-http-client" "haskell-syb" "haskell-http-client-tls" 
"haskell-http-types"
+ "haskell-text" "haskell-texmath" "haskell-network" "haskell-old-time"
+ "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'
+'texlive-core: for pdf output')
+conflicts=('haskell-pandoc')
+replaces=('haskell-pandoc')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;
+ghc-8.2.1.patch)
+sha256sums=('08692f3d77bf95bb9ba3407f7af26de7c23134e7efcdafad0bdaf9050e2c7801'
+'2d28962550964540ad543833b38fee8ae8d247d2b8ec08fcef9b9879bf967846')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+patch -p1 -i ../ghc-8.2.1.patch
+sed -e 's/syb >= 0.1 && < 0.7,/syb >= 0.1,/' \
+-e 's/aeson >= 0.7.* && < 1.2,/aeson >= 0.7,/' \
+-e 's/process >= 1 && < 1.5,/process >= 1,/' \
+-e 's/time >= 1.5 && < 1.7/time >= 1.5/' \
+-e '/Build-Depends: pandoc,/a \ texmath,' \
+-i $pkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-old-locale -fnetwork-uri -fhttps -f-trypandoc 
-f-embed_data_files -f-weigh-pandoc
+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}/${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"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: pandoc/repos/community-staging-i686/ghc-8.2.1.patch (from rev 257898, 
pandoc/trunk/ghc-8.2.1.patch)
===
--- community-staging-i686/ghc-8.2.1.patch  (rev 0)
+++ community-staging-i686/ghc-8.2.1.patch  2017-09-16 15:40:34 UTC (rev 
257899)
@@ -0,0 +1,81 @@
+From 10d91c147968d2e4d63b99b5b0342624827f416f Mon Sep 17 00:00:00 2001
+From: John MacFarlane 
+Date: Sun, 26 Mar 2017 

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

2017-09-16 Thread Felix Yan
Date: Saturday, September 16, 2017 @ 15:40:03
  Author: felixonmars
Revision: 257898

upgpkg: pandoc 1.19.2.1-113

rebuild with foundation,0.0.15

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-16 15:28:41 UTC (rev 257897)
+++ PKGBUILD2017-09-16 15:40:03 UTC (rev 257898)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc
 pkgver=1.19.2.1
-pkgrel=112
+pkgrel=113
 pkgdesc="Conversion between markup formats"
 url="http://pandoc.org;
 license=("GPL")


  1   2   3   >