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

2016-11-04 Thread Sven-Hendrik Haase
Date: Saturday, November 5, 2016 @ 05:54:16
  Author: svenstaro
Revision: 194679

upgpkg: ripgrep 0.2.6-1

upstream release 0.2.6

Modified:
  ripgrep/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-05 05:49:09 UTC (rev 194678)
+++ PKGBUILD2016-11-05 05:54:16 UTC (rev 194679)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=0.2.5
+pkgver=0.2.6
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 depends=('gcc-libs')
 makedepends=('cargo')
 source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz;)
-sha256sums=('2e535701ed4c36875a29041b4a47629af514182177b82d681a8e4d0fed4a9767')
+sha256sums=('6170e5866b49759401e912bd59ffe5a764ee501a6056396f7a3c9f131a75af65')
 
 build() {
   cd "$pkgname-$pkgver"


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

2016-11-04 Thread Sven-Hendrik Haase
Date: Saturday, November 5, 2016 @ 05:54:35
  Author: svenstaro
Revision: 194680

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-11-05 05:54:16 UTC (rev 194679)
+++ community-i686/PKGBUILD 2016-11-05 05:54:35 UTC (rev 194680)
@@ -1,31 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Andrew Gallant 
-pkgname=ripgrep
-pkgver=0.2.5
-pkgrel=1
-pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
-arch=('i686' 'x86_64')
-url="https://github.com/BurntSushi/ripgrep;
-license=('MIT' 'UNLICENSE')
-depends=('gcc-libs')
-makedepends=('cargo')
-source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz;)
-sha256sums=('2e535701ed4c36875a29041b4a47629af514182177b82d681a8e4d0fed4a9767')
-
-build() {
-  cd "$pkgname-$pkgver"
-  cargo build --release
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  install -Dm755 "target/release/rg" "$pkgdir/usr/bin/rg"
-
-  install -Dm644 "doc/rg.1" "$pkgdir/usr/share/man/man1/rg.1"
-  install -Dm644 "README.md" "$pkgdir/usr/share/doc/${pkgname}/README.md"
-
-  install -Dm644 "COPYING" "$pkgdir/usr/share/licenses/${pkgname}/COPYING"
-  install -Dm644 "LICENSE-MIT" 
"$pkgdir/usr/share/licenses/${pkgname}/LICENSE-MIT"
-  install -Dm644 "UNLICENSE" "$pkgdir/usr/share/licenses/${pkgname}/UNLICENSE"
-}

Copied: ripgrep/repos/community-i686/PKGBUILD (from rev 194679, 
ripgrep/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-11-05 05:54:35 UTC (rev 194680)
@@ -0,0 +1,31 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Andrew Gallant 
+pkgname=ripgrep
+pkgver=0.2.6
+pkgrel=1
+pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
+arch=('i686' 'x86_64')
+url="https://github.com/BurntSushi/ripgrep;
+license=('MIT' 'UNLICENSE')
+depends=('gcc-libs')
+makedepends=('cargo')
+source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz;)
+sha256sums=('6170e5866b49759401e912bd59ffe5a764ee501a6056396f7a3c9f131a75af65')
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --release
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  install -Dm755 "target/release/rg" "$pkgdir/usr/bin/rg"
+
+  install -Dm644 "doc/rg.1" "$pkgdir/usr/share/man/man1/rg.1"
+  install -Dm644 "README.md" "$pkgdir/usr/share/doc/${pkgname}/README.md"
+
+  install -Dm644 "COPYING" "$pkgdir/usr/share/licenses/${pkgname}/COPYING"
+  install -Dm644 "LICENSE-MIT" 
"$pkgdir/usr/share/licenses/${pkgname}/LICENSE-MIT"
+  install -Dm644 "UNLICENSE" "$pkgdir/usr/share/licenses/${pkgname}/UNLICENSE"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-11-05 05:54:16 UTC (rev 194679)
+++ community-x86_64/PKGBUILD   2016-11-05 05:54:35 UTC (rev 194680)
@@ -1,31 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Andrew Gallant 
-pkgname=ripgrep
-pkgver=0.2.5
-pkgrel=1
-pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
-arch=('i686' 'x86_64')
-url="https://github.com/BurntSushi/ripgrep;
-license=('MIT' 'UNLICENSE')
-depends=('gcc-libs')
-makedepends=('cargo')
-source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz;)
-sha256sums=('2e535701ed4c36875a29041b4a47629af514182177b82d681a8e4d0fed4a9767')
-
-build() {
-  cd "$pkgname-$pkgver"
-  cargo build --release
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  install -Dm755 "target/release/rg" "$pkgdir/usr/bin/rg"
-
-  install -Dm644 "doc/rg.1" "$pkgdir/usr/share/man/man1/rg.1"
-  install -Dm644 "README.md" "$pkgdir/usr/share/doc/${pkgname}/README.md"
-
-  install -Dm644 "COPYING" "$pkgdir/usr/share/licenses/${pkgname}/COPYING"
-  install -Dm644 "LICENSE-MIT" 
"$pkgdir/usr/share/licenses/${pkgname}/LICENSE-MIT"
-  install -Dm644 "UNLICENSE" "$pkgdir/usr/share/licenses/${pkgname}/UNLICENSE"
-}

Copied: ripgrep/repos/community-x86_64/PKGBUILD (from rev 194679, 
ripgrep/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)

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

2016-11-04 Thread Sven-Hendrik Haase
Date: Saturday, November 5, 2016 @ 05:49:09
  Author: svenstaro
Revision: 194678

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

Added:
  sfml/repos/community-i686/PKGBUILD
(from rev 194677, sfml/trunk/PKGBUILD)
  sfml/repos/community-i686/sfml.install
(from rev 194677, sfml/trunk/sfml.install)
  sfml/repos/community-x86_64/PKGBUILD
(from rev 194677, sfml/trunk/PKGBUILD)
  sfml/repos/community-x86_64/sfml.install
(from rev 194677, sfml/trunk/sfml.install)
Deleted:
  sfml/repos/community-i686/PKGBUILD
  sfml/repos/community-i686/sfml.install
  sfml/repos/community-x86_64/PKGBUILD
  sfml/repos/community-x86_64/sfml.install

---+
 /PKGBUILD |   80 
 /sfml.install |6 +++
 community-i686/PKGBUILD   |   40 
 community-i686/sfml.install   |3 -
 community-x86_64/PKGBUILD |   40 
 community-x86_64/sfml.install |3 -
 6 files changed, 86 insertions(+), 86 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-11-05 05:48:57 UTC (rev 194677)
+++ community-i686/PKGBUILD 2016-11-05 05:49:09 UTC (rev 194678)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Ondrej Martinak 
-
-pkgname=sfml
-pkgver=2.4.0
-pkgrel=1
-pkgdesc='A simple, fast, cross-platform, and object-oriented multimedia API'
-arch=('i686' 'x86_64')
-url='http://www.sfml-dev.org/'
-license=('zlib')
-depends=('libsndfile' 'libxrandr' 'libjpeg' 'openal' 'glew' 'freetype2' 
'xcb-util-image')
-makedepends=('mesa' 'cmake' 'doxygen' 'git')
-install=sfml.install
-source=("git+git://github.com/LaurentGomila/SFML.git#tag=${pkgver}")
-md5sums=('SKIP')
-
-build() {
-  cd "$srcdir"/SFML
-
-  mkdir build && cd build
-  cmake .. \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DSFML_BUILD_EXAMPLES=1 \
-  -DSFML_BUILD_DOC=1 \
-  -DSFML_INSTALL_PKGCONFIG_FILES=1
-  make
-  make doc
-}
-
-package() {
-  cd "$srcdir"/SFML/build
-
-  make DESTDIR="$pkgdir/" install
-
-  install -Dm644 "$pkgdir/usr/share/SFML/cmake/Modules/FindSFML.cmake" 
"$pkgdir/usr/share/cmake-3.6/Modules/FindSFML.cmake"
-
-  install -Dm644 ../license.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-

Copied: sfml/repos/community-i686/PKGBUILD (from rev 194677, 
sfml/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-11-05 05:49:09 UTC (rev 194678)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Ondrej Martinak 
+
+pkgname=sfml
+pkgver=2.4.1
+pkgrel=1
+pkgdesc='A simple, fast, cross-platform, and object-oriented multimedia API'
+arch=('i686' 'x86_64')
+url='http://www.sfml-dev.org/'
+license=('zlib')
+depends=('libsndfile' 'libxrandr' 'libjpeg' 'openal' 'glew' 'freetype2' 
'libx11')
+makedepends=('mesa' 'cmake' 'doxygen' 'git' 'systemd')
+install=sfml.install
+source=("git+git://github.com/LaurentGomila/SFML.git#tag=${pkgver}")
+md5sums=('SKIP')
+
+build() {
+  cd "$srcdir"/SFML
+
+  mkdir build && cd build
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DSFML_BUILD_EXAMPLES=1 \
+  -DSFML_BUILD_DOC=1 \
+  -DSFML_INSTALL_PKGCONFIG_FILES=1
+  make
+  make doc
+}
+
+package() {
+  cd "$srcdir"/SFML/build
+
+  make DESTDIR="$pkgdir/" install
+
+  install -Dm644 "$pkgdir/usr/share/SFML/cmake/Modules/FindSFML.cmake" 
"$pkgdir/usr/share/cmake-3.6/Modules/FindSFML.cmake"
+
+  install -Dm644 ../license.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+

Deleted: community-i686/sfml.install
===
--- community-i686/sfml.install 2016-11-05 05:48:57 UTC (rev 194677)
+++ community-i686/sfml.install 2016-11-05 05:49:09 UTC (rev 194678)
@@ -1,3 +0,0 @@
-post_install() {
-echo "To view the SFML samples, go to /usr/share/SFML/examples/ and run 
them individually"
-}

Copied: sfml/repos/community-i686/sfml.install (from rev 194677, 
sfml/trunk/sfml.install)
===
--- community-i686/sfml.install (rev 0)
+++ community-i686/sfml.install 2016-11-05 05:49:09 UTC (rev 194678)
@@ -0,0 +1,3 @@
+post_install() {
+echo "To view the SFML samples, go to /usr/share/SFML/examples/ and run 
them individually"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-11-05 05:48:57 UTC (rev 194677)
+++ community-x86_64/PKGBUILD   2016-11-05 05:49:09 UTC (rev 194678)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Ondrej Martinak 
-

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

2016-11-04 Thread Sven-Hendrik Haase
Date: Saturday, November 5, 2016 @ 05:48:57
  Author: svenstaro
Revision: 194677

upgpkg: sfml 2.4.1-1

upstream release 2.4.1

Modified:
  sfml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-05 05:27:42 UTC (rev 194676)
+++ PKGBUILD2016-11-05 05:48:57 UTC (rev 194677)
@@ -3,14 +3,14 @@
 # Contributor: Ondrej Martinak 
 
 pkgname=sfml
-pkgver=2.4.0
+pkgver=2.4.1
 pkgrel=1
 pkgdesc='A simple, fast, cross-platform, and object-oriented multimedia API'
 arch=('i686' 'x86_64')
 url='http://www.sfml-dev.org/'
 license=('zlib')
-depends=('libsndfile' 'libxrandr' 'libjpeg' 'openal' 'glew' 'freetype2' 
'xcb-util-image')
-makedepends=('mesa' 'cmake' 'doxygen' 'git')
+depends=('libsndfile' 'libxrandr' 'libjpeg' 'openal' 'glew' 'freetype2' 
'libx11')
+makedepends=('mesa' 'cmake' 'doxygen' 'git' 'systemd')
 install=sfml.install
 source=("git+git://github.com/LaurentGomila/SFML.git#tag=${pkgver}")
 md5sums=('SKIP')


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

2016-11-04 Thread Sven-Hendrik Haase
Date: Saturday, November 5, 2016 @ 05:27:42
  Author: svenstaro
Revision: 194676

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-11-05 05:27:29 UTC (rev 194675)
+++ community-i686/PKGBUILD 2016-11-05 05:27:42 UTC (rev 194676)
@@ -1,27 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Collaborator: Jonathan Fine (were.Vire AT gmail DOT com)
-pkgname=tiled
-pkgver=0.17.0
-pkgrel=1
-pkgdesc='A general purpose tile map editor, built to be flexible and easy to 
use'
-arch=('i686' 'x86_64')
-url='http://mapeditor.org'
-license=('GPL')
-replaces=('tiled-qt')
-depends=('qt5-base' 'libgl' 'gtk-update-icon-cache' 'shared-mime-info' 
'desktop-file-utils' 'libxkbcommon-x11')
-makedepends=('mesa' 'qt5-tools' 'python2')
-optdepends=('python2: Python plugin')
-source=($pkgname-$pkgver.tar.gz::https://github.com/bjorn/tiled/archive/v${pkgver}.tar.gz)
-md5sums=('9fd229a67c718f6adcdf8b7a3d57f5e1')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  qmake -r INSTALL_HEADERS=yes RPATH=no PREFIX=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make install INSTALL_ROOT=$pkgdir
-}

Copied: tiled/repos/community-i686/PKGBUILD (from rev 194675, 
tiled/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-11-05 05:27:42 UTC (rev 194676)
@@ -0,0 +1,27 @@
+# Maintainer: Sven-Hendrik Haase 
+# Collaborator: Jonathan Fine (were.Vire AT gmail DOT com)
+pkgname=tiled
+pkgver=0.17.1
+pkgrel=1
+pkgdesc='A general purpose tile map editor, built to be flexible and easy to 
use'
+arch=('i686' 'x86_64')
+url='http://mapeditor.org'
+license=('GPL')
+replaces=('tiled-qt')
+depends=('qt5-base' 'libgl' 'gtk-update-icon-cache' 'shared-mime-info' 
'desktop-file-utils' 'libxkbcommon-x11')
+makedepends=('mesa' 'qt5-tools' 'python2')
+optdepends=('python2: Python plugin')
+source=($pkgname-$pkgver.tar.gz::https://github.com/bjorn/tiled/archive/v${pkgver}.tar.gz)
+md5sums=('5fb2635469625a5d5215c3b6f4c37cb6')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  qmake -r INSTALL_HEADERS=yes RPATH=no PREFIX=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make install INSTALL_ROOT=$pkgdir
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-11-05 05:27:29 UTC (rev 194675)
+++ community-x86_64/PKGBUILD   2016-11-05 05:27:42 UTC (rev 194676)
@@ -1,27 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Collaborator: Jonathan Fine (were.Vire AT gmail DOT com)
-pkgname=tiled
-pkgver=0.17.0
-pkgrel=1
-pkgdesc='A general purpose tile map editor, built to be flexible and easy to 
use'
-arch=('i686' 'x86_64')
-url='http://mapeditor.org'
-license=('GPL')
-replaces=('tiled-qt')
-depends=('qt5-base' 'libgl' 'gtk-update-icon-cache' 'shared-mime-info' 
'desktop-file-utils' 'libxkbcommon-x11')
-makedepends=('mesa' 'qt5-tools' 'python2')
-optdepends=('python2: Python plugin')
-source=($pkgname-$pkgver.tar.gz::https://github.com/bjorn/tiled/archive/v${pkgver}.tar.gz)
-md5sums=('9fd229a67c718f6adcdf8b7a3d57f5e1')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  qmake -r INSTALL_HEADERS=yes RPATH=no PREFIX=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make install INSTALL_ROOT=$pkgdir
-}

Copied: tiled/repos/community-x86_64/PKGBUILD (from rev 194675, 
tiled/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-11-05 05:27:42 UTC (rev 194676)
@@ -0,0 +1,27 @@
+# Maintainer: Sven-Hendrik Haase 
+# Collaborator: Jonathan Fine (were.Vire AT gmail DOT com)
+pkgname=tiled
+pkgver=0.17.1
+pkgrel=1
+pkgdesc='A general purpose tile map editor, built to be flexible and easy to 
use'
+arch=('i686' 'x86_64')
+url='http://mapeditor.org'
+license=('GPL')
+replaces=('tiled-qt')
+depends=('qt5-base' 'libgl' 'gtk-update-icon-cache' 'shared-mime-info' 
'desktop-file-utils' 'libxkbcommon-x11')
+makedepends=('mesa' 'qt5-tools' 'python2')
+optdepends=('python2: Python plugin')
+source=($pkgname-$pkgver.tar.gz::https://github.com/bjorn/tiled/archive/v${pkgver}.tar.gz)

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

2016-11-04 Thread Sven-Hendrik Haase
Date: Saturday, November 5, 2016 @ 05:27:29
  Author: svenstaro
Revision: 194675

upgpkg: tiled 0.17.1-1

upstream release 0.17.1

Modified:
  tiled/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-05 05:20:30 UTC (rev 194674)
+++ PKGBUILD2016-11-05 05:27:29 UTC (rev 194675)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Collaborator: Jonathan Fine (were.Vire AT gmail DOT com)
 pkgname=tiled
-pkgver=0.17.0
+pkgver=0.17.1
 pkgrel=1
 pkgdesc='A general purpose tile map editor, built to be flexible and easy to 
use'
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('mesa' 'qt5-tools' 'python2')
 optdepends=('python2: Python plugin')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/bjorn/tiled/archive/v${pkgver}.tar.gz)
-md5sums=('9fd229a67c718f6adcdf8b7a3d57f5e1')
+md5sums=('5fb2635469625a5d5215c3b6f4c37cb6')
 
 build() {
   cd $srcdir/$pkgname-$pkgver


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

2016-11-04 Thread Sven-Hendrik Haase
Date: Saturday, November 5, 2016 @ 05:20:30
  Author: svenstaro
Revision: 194674

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

Added:
  0ad/repos/community-i686/0ad-gcc6.patch
(from rev 194673, 0ad/trunk/0ad-gcc6.patch)
  0ad/repos/community-i686/PKGBUILD
(from rev 194673, 0ad/trunk/PKGBUILD)
  0ad/repos/community-x86_64/0ad-gcc6.patch
(from rev 194673, 0ad/trunk/0ad-gcc6.patch)
  0ad/repos/community-x86_64/PKGBUILD
(from rev 194673, 0ad/trunk/PKGBUILD)
Deleted:
  0ad/repos/community-i686/0ad-gcc6.patch
  0ad/repos/community-i686/PKGBUILD
  0ad/repos/community-x86_64/0ad-gcc6.patch
  0ad/repos/community-x86_64/PKGBUILD

-+
 /0ad-gcc6.patch |   62 ++
 /PKGBUILD   |  128 ++
 community-i686/0ad-gcc6.patch   |   31 -
 community-i686/PKGBUILD |   64 ---
 community-x86_64/0ad-gcc6.patch |   31 -
 community-x86_64/PKGBUILD   |   64 ---
 6 files changed, 190 insertions(+), 190 deletions(-)

Deleted: community-i686/0ad-gcc6.patch
===
--- community-i686/0ad-gcc6.patch   2016-11-05 05:20:09 UTC (rev 194673)
+++ community-i686/0ad-gcc6.patch   2016-11-05 05:20:30 UTC (rev 194674)
@@ -1,31 +0,0 @@
-Index: libraries/source/nvtt/src/src/nvimage/ImageIO.cpp
-===
 libraries/source/nvtt/src/src/nvimage/ImageIO.cpp  (revision 18164)
-+++ libraries/source/nvtt/src/src/nvimage/ImageIO.cpp  (working copy)
-@@ -621,7 +621,7 @@
-   png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, 
NULL);
-   if (png_ptr == NULL) {
-   //  nvDebug( "*** LoadPNG: Error allocating read buffer in file 
'%s'.\n", name );
--  return false;
-+  return NULL;
-   }
- 
-   // Allocate/initialize a memory block for the image information
-@@ -629,7 +629,7 @@
-   if (info_ptr == NULL) {
-   png_destroy_read_struct(_ptr, NULL, NULL);
-   //  nvDebug( "*** LoadPNG: Error allocating image information for 
'%s'.\n", name );
--  return false;
-+  return NULL;
-   }
- 
-   // Set up the error handling
-@@ -636,7 +636,7 @@
-   if (setjmp(png_jmpbuf(png_ptr))) {
-   png_destroy_read_struct(_ptr, _ptr, NULL);
-   //  nvDebug( "*** LoadPNG: Error reading png file '%s'.\n", name );
--  return false;
-+  return NULL;
-   }
- 
-   // Set up the I/O functions.

Copied: 0ad/repos/community-i686/0ad-gcc6.patch (from rev 194673, 
0ad/trunk/0ad-gcc6.patch)
===
--- community-i686/0ad-gcc6.patch   (rev 0)
+++ community-i686/0ad-gcc6.patch   2016-11-05 05:20:30 UTC (rev 194674)
@@ -0,0 +1,31 @@
+Index: libraries/source/nvtt/src/src/nvimage/ImageIO.cpp
+===
+--- libraries/source/nvtt/src/src/nvimage/ImageIO.cpp  (revision 18164)
 libraries/source/nvtt/src/src/nvimage/ImageIO.cpp  (working copy)
+@@ -621,7 +621,7 @@
+   png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, 
NULL);
+   if (png_ptr == NULL) {
+   //  nvDebug( "*** LoadPNG: Error allocating read buffer in file 
'%s'.\n", name );
+-  return false;
++  return NULL;
+   }
+ 
+   // Allocate/initialize a memory block for the image information
+@@ -629,7 +629,7 @@
+   if (info_ptr == NULL) {
+   png_destroy_read_struct(_ptr, NULL, NULL);
+   //  nvDebug( "*** LoadPNG: Error allocating image information for 
'%s'.\n", name );
+-  return false;
++  return NULL;
+   }
+ 
+   // Set up the error handling
+@@ -636,7 +636,7 @@
+   if (setjmp(png_jmpbuf(png_ptr))) {
+   png_destroy_read_struct(_ptr, _ptr, NULL);
+   //  nvDebug( "*** LoadPNG: Error reading png file '%s'.\n", name );
+-  return false;
++  return NULL;
+   }
+ 
+   // Set up the I/O functions.

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-11-05 05:20:09 UTC (rev 194673)
+++ community-i686/PKGBUILD 2016-11-05 05:20:30 UTC (rev 194674)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: t3ddy  
-# Contributor: Adrián Chaves Fernández (Gallaecio) 
-pkgname=0ad
-pkgver=a20
-_pkgver=0.0.20-alpha
-pkgrel=9
-pkgdesc="Cross-platform, 3D and historically-based real-time strategy game"
-arch=('i686' 'x86_64')
-url="http://play0ad.com/;
-license=('GPL2' 'CCPL')
-depends=('binutils' 'boost-libs' 'curl' 'enet' 'libogg' 'libpng' 'libvorbis'
- 

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

2016-11-04 Thread Sven-Hendrik Haase
Date: Saturday, November 5, 2016 @ 05:20:09
  Author: svenstaro
Revision: 194673

upgpkg: 0ad a20-10

rebuild

Modified:
  0ad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-05 04:23:51 UTC (rev 194672)
+++ PKGBUILD2016-11-05 05:20:09 UTC (rev 194673)
@@ -5,7 +5,7 @@
 pkgname=0ad
 pkgver=a20
 _pkgver=0.0.20-alpha
-pkgrel=9
+pkgrel=10
 pkgdesc="Cross-platform, 3D and historically-based real-time strategy game"
 arch=('i686' 'x86_64')
 url="http://play0ad.com/;
@@ -22,7 +22,7 @@
   cd "$srcdir/$pkgname-$_pkgver/"
   sed -i "s/env python/env python2/g" 
libraries/source/cxxtest-4.4/bin/cxxtestgen
 
-  # Fix build with GCC 6 
+  # Fix build with GCC 6
   patch -p0 -i ../0ad-gcc6.patch
 }
 


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

2016-11-04 Thread Sven-Hendrik Haase
Date: Saturday, November 5, 2016 @ 04:23:51
  Author: svenstaro
Revision: 194672

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-11-05 04:23:35 UTC (rev 194671)
+++ community-i686/PKGBUILD 2016-11-05 04:23:51 UTC (rev 194672)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Denis Martinez 
-
-pkgname=wt
-pkgver=3.3.6
-_pkgver=3.3.6
-pkgrel=3
-pkgdesc="a C++ library and application server for developing and deploying web 
applications"
-arch=('i686' 'x86_64')
-url="http://www.webtoolkit.eu/;
-license=('GPL')
-depends=('boost-libs' 'libharu' 'graphicsmagick' 'pango' 'zlib')
-makedepends=('boost' 'cmake' 'postgresql-libs' 'fcgi' 'sqlite' 'mysql++' 'qt4' 
'doxygen' 'mesa' 'glu')
-optdepends=('openssl: for SSL support in built-in webserver'
-   'fcgi: for FastCGI support'
-   'postgresql-libs: for PostgreSQL Dbo support'
-   'sqlite: for Sqlite Dbo support'
-   'mysql++: for the hangman example'
-   'qt4: for the Wt/Qt interopability example (wtwithqt)')
-backup=('etc/wt/wt_config.xml')
-source=(https://github.com/kdeforche/wt/archive/${_pkgver}.tar.gz)
-md5sums=('a5be5f7efa93c4eae7f1d8812ff78c70')
-
-build() {
-  cd ${srcdir}/${pkgname}-${_pkgver}
-
-  [[ -d build ]] && rm -r build
-  mkdir -p build && cd build
-  cmake \
-  -DCONNECTOR_HTTP=ON \
-  -DWT_CPP_11_MODE=-std=c++11 \
-  -DCONFIGDIR=/etc \
-  -DWT_WRASTERIMAGE_IMPLEMENTATION=GraphicsMagick \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DWEBUSER=http \
-  -DWEBGROUP=http \
-  -DUSE_SYSTEM_SQLITE3=ON \
-  -DINSTALL_EXAMPLES=ON \
-  -DBUILD_EXAMPLES=ON \
-  -DINSTALL_FINDWT_CMAKE_FILE=ON \
-  ..
-  # build examples again when they are compatible with boost 1.58
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${_pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-}

Copied: wt/repos/community-i686/PKGBUILD (from rev 194671, wt/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-11-05 04:23:51 UTC (rev 194672)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Denis Martinez 
+
+pkgname=wt
+pkgver=3.3.6
+_pkgver=3.3.6
+pkgrel=4
+pkgdesc="a C++ library and application server for developing and deploying web 
applications"
+arch=('i686' 'x86_64')
+url="http://www.webtoolkit.eu/;
+license=('GPL')
+depends=('boost-libs' 'libharu' 'graphicsmagick' 'pango' 'zlib')
+makedepends=('boost' 'cmake' 'postgresql-libs' 'fcgi' 'sqlite' 'mysql++' 'qt4' 
'doxygen' 'mesa' 'glu')
+optdepends=('openssl: for SSL support in built-in webserver'
+   'fcgi: for FastCGI support'
+   'postgresql-libs: for PostgreSQL Dbo support'
+   'sqlite: for Sqlite Dbo support'
+   'mysql++: for the hangman example'
+   'qt4: for the Wt/Qt interopability example (wtwithqt)')
+backup=('etc/wt/wt_config.xml')
+source=(https://github.com/kdeforche/wt/archive/${_pkgver}.tar.gz)
+md5sums=('a5be5f7efa93c4eae7f1d8812ff78c70')
+
+build() {
+  cd "$srcdir"/${pkgname}-${_pkgver}
+
+  [[ -d build ]] && rm -r build
+  mkdir -p build && cd build
+  cmake \
+  -DCONNECTOR_HTTP=ON \
+  -DWT_CPP_11_MODE=-std=c++11 \
+  -DCONFIGDIR=/etc \
+  -DWT_WRASTERIMAGE_IMPLEMENTATION=GraphicsMagick \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DWEBUSER=http \
+  -DWEBGROUP=http \
+  -DUSE_SYSTEM_SQLITE3=ON \
+  -DINSTALL_EXAMPLES=ON \
+  -DBUILD_EXAMPLES=ON \
+  -DINSTALL_FINDWT_CMAKE_FILE=ON \
+  ..
+  # build examples again when they are compatible with boost 1.58
+  make
+}
+
+package() {
+  cd "$srcdir"/${pkgname}-${_pkgver}/build
+
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-11-05 04:23:35 UTC (rev 194671)
+++ community-x86_64/PKGBUILD   2016-11-05 04:23:51 UTC (rev 194672)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: 

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

2016-11-04 Thread Sven-Hendrik Haase
Date: Saturday, November 5, 2016 @ 04:23:35
  Author: svenstaro
Revision: 194671

upgpkg: wt 3.3.6-4

rebuild

Modified:
  wt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 21:51:46 UTC (rev 194670)
+++ PKGBUILD2016-11-05 04:23:35 UTC (rev 194671)
@@ -6,7 +6,7 @@
 pkgname=wt
 pkgver=3.3.6
 _pkgver=3.3.6
-pkgrel=3
+pkgrel=4
 pkgdesc="a C++ library and application server for developing and deploying web 
applications"
 arch=('i686' 'x86_64')
 url="http://www.webtoolkit.eu/;


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

2016-11-04 Thread Antonio Rojas
Date: Friday, November 4, 2016 @ 22:05:33
  Author: arojas
Revision: 279860

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-11-04 22:05:18 UTC (rev 279859)
+++ extra-i686/PKGBUILD 2016-11-04 22:05:33 UTC (rev 279860)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Andrea Scarpino 
-# Contributor: Tobias Powalowski 
-
-pkgname=cfitsio
-pkgver=3.390
-pkgrel=3
-pkgdesc="A library of C and Fortran subroutines for reading and writing data 
files in FITS (Flexible Image Transport System) data format"
-arch=(i686 x86_64)
-url="http://heasarc.gsfc.nasa.gov/fitsio/;
-license=(custom)
-depends=(glibc)
-source=("ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/${pkgname}${pkgver/./}.tar.gz;)
-sha512sums=('9e72fe58e1b2e45dfad23c5a60f9056a4e958b3b567751c5284d5d89992f0a2721aa44ede8655f0e1595eaea9d6ba4644b001c54274764f9d05f890d471e4534')
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr \
---enable-reentrant
-  make shared
-  make utils
-}
-
-check() {
-  cd $pkgname
-  LD_LIBRARY_PATH=. ./testprog > testprog.lis
-  [[ -z $(diff testprog.lis testprog.out) ]] || return 1
-  [[ -z $(cmp testprog.fit testprog.std) ]] || return 1
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-
-  install -d "$pkgdir"/usr/bin
-  install -m755 {fpack,funpack,fitscopy,imcopy,smem,speed} "$pkgdir"/usr/bin/
-
-  install -D -m644 License.txt \
-"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-# Fix conflicts with ccfits and smem
-  rm "$pkgdir"/usr/bin/{cookbook,smem,testprog}
-}

Copied: cfitsio/repos/extra-i686/PKGBUILD (from rev 279859, 
cfitsio/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-11-04 22:05:33 UTC (rev 279860)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino 
+# Contributor: Tobias Powalowski 
+
+pkgname=cfitsio
+pkgver=3.390
+pkgrel=3
+pkgdesc="A library of C and Fortran subroutines for reading and writing data 
files in FITS (Flexible Image Transport System) data format"
+arch=(i686 x86_64)
+url="http://heasarc.gsfc.nasa.gov/fitsio/;
+license=(custom)
+depends=(glibc)
+source=("ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/${pkgname}${pkgver/./}.tar.gz;)
+sha512sums=('9e72fe58e1b2e45dfad23c5a60f9056a4e958b3b567751c5284d5d89992f0a2721aa44ede8655f0e1595eaea9d6ba4644b001c54274764f9d05f890d471e4534')
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr \
+--enable-reentrant
+  make shared
+  make utils
+}
+
+check() {
+  cd $pkgname
+  LD_LIBRARY_PATH=. ./testprog > testprog.lis
+  [[ -z $(diff testprog.lis testprog.out) ]] || return 1
+  [[ -z $(cmp testprog.fit testprog.std) ]] || return 1
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+
+  install -D -m644 License.txt \
+"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+# Fix conflicts with ccfits and smem
+  rm "$pkgdir"/usr/bin/{cookbook,smem,testprog}
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-11-04 22:05:18 UTC (rev 279859)
+++ extra-x86_64/PKGBUILD   2016-11-04 22:05:33 UTC (rev 279860)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Andrea Scarpino 
-# Contributor: Tobias Powalowski 
-
-pkgname=cfitsio
-pkgver=3.390
-pkgrel=3
-pkgdesc="A library of C and Fortran subroutines for reading and writing data 
files in FITS (Flexible Image Transport System) data format"
-arch=(i686 x86_64)
-url="http://heasarc.gsfc.nasa.gov/fitsio/;
-license=(custom)
-depends=(glibc)
-source=("ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/${pkgname}${pkgver/./}.tar.gz;)
-sha512sums=('9e72fe58e1b2e45dfad23c5a60f9056a4e958b3b567751c5284d5d89992f0a2721aa44ede8655f0e1595eaea9d6ba4644b001c54274764f9d05f890d471e4534')
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr \
---enable-reentrant
-  make shared
-  make utils
-}
-
-check() {
-  cd $pkgname
-  LD_LIBRARY_PATH=. ./testprog > testprog.lis
-  [[ -z $(diff testprog.lis testprog.out) ]] || return 1
-  [[ -z $(cmp testprog.fit testprog.std) ]] || return 1
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-
-  install -d 

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

2016-11-04 Thread Antonio Rojas
Date: Friday, November 4, 2016 @ 22:05:18
  Author: arojas
Revision: 279859

Don't install twice

Modified:
  cfitsio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 21:14:20 UTC (rev 279858)
+++ PKGBUILD2016-11-04 22:05:18 UTC (rev 279859)
@@ -33,9 +33,6 @@
   cd $pkgname
   make DESTDIR="$pkgdir" install
 
-  install -d "$pkgdir"/usr/bin
-  install -m755 {fpack,funpack,fitscopy,imcopy,smem,speed} "$pkgdir"/usr/bin/
-
   install -D -m644 License.txt \
 "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 


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

2016-11-04 Thread Johannes Löthberg
Date: Friday, November 4, 2016 @ 21:51:39
  Author: demize
Revision: 194669

upgpkg: salt 2016.3.4-1

Modified:
  salt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 17:34:56 UTC (rev 194668)
+++ PKGBUILD2016-11-04 21:51:39 UTC (rev 194669)
@@ -5,8 +5,8 @@
 # Contributor: Christer Edwards 
 
 pkgname=salt
-pkgver=2016.3.3
-pkgrel=2
+pkgver=2016.3.4
+pkgrel=1
 
 pkgdesc='Central system and configuration manager'
 arch=('any')
@@ -16,31 +16,25 @@
 replaces=('salt-zmq' 'salt-raet')
 conflicts=('salt-zmq' 'salt-raet')
 
-depends=(
-  'python2-jinja'
-  'python2-msgpack'
-  'python2-yaml'
-  'python2-markupsafe'
-  'python2-requests'
-  'python2-pyzmq'
-  'python2-crypto'
-  'python2-m2crypto'
-  'python2-systemd'
-  'python2-tornado'
-)
-optdepends=(
-  'dmidecode: decode SMBIOS/DMI tables'
-  'python2-pygit2: gitfs support'
-)
+depends=('python2-jinja'
+ 'python2-msgpack'
+ 'python2-yaml'
+ 'python2-markupsafe'
+ 'python2-requests'
+ 'python2-pyzmq'
+ 'python2-crypto'
+ 'python2-m2crypto'
+ 'python2-systemd'
+ 'python2-tornado')
+optdepends=('dmidecode: decode SMBIOS/DMI tables'
+'python2-pygit2: gitfs support')
 
-backup=(
-  'etc/salt/master'
-  'etc/salt/minion'
-)
+backup=('etc/salt/master'
+'etc/salt/minion')
 
 install=salt.install
 source=("https://pypi.io/packages/source/s/salt/salt-$pkgver.tar.gz;)
-md5sums=('47dc52c372c42535b99cb04ebb21947b')
+md5sums=('9a110f379d8af6be9b0a692430cc17a6')
 
 package() {
   cd salt-$pkgver


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

2016-11-04 Thread Johannes Löthberg
Date: Friday, November 4, 2016 @ 21:51:46
  Author: demize
Revision: 194670

archrelease: copy trunk to community-any

Added:
  salt/repos/community-any/
  salt/repos/community-any/PKGBUILD
(from rev 194669, salt/trunk/PKGBUILD)
  salt/repos/community-any/salt.install
(from rev 194669, salt/trunk/salt.install)

--+
 PKGBUILD |   56 
 salt.install |   22 ++
 2 files changed, 78 insertions(+)

Copied: salt/repos/community-any/PKGBUILD (from rev 194669, salt/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-11-04 21:51:46 UTC (rev 194670)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Johannes Löthberg 
+# Contributor: Sébastien Luttringer
+# Contributor: Daniel Wallace 
+# Contributor: Christer Edwards 
+
+pkgname=salt
+pkgver=2016.3.4
+pkgrel=1
+
+pkgdesc='Central system and configuration manager'
+arch=('any')
+url='http://saltstack.org/'
+license=('Apache')
+
+replaces=('salt-zmq' 'salt-raet')
+conflicts=('salt-zmq' 'salt-raet')
+
+depends=('python2-jinja'
+ 'python2-msgpack'
+ 'python2-yaml'
+ 'python2-markupsafe'
+ 'python2-requests'
+ 'python2-pyzmq'
+ 'python2-crypto'
+ 'python2-m2crypto'
+ 'python2-systemd'
+ 'python2-tornado')
+optdepends=('dmidecode: decode SMBIOS/DMI tables'
+'python2-pygit2: gitfs support')
+
+backup=('etc/salt/master'
+'etc/salt/minion')
+
+install=salt.install
+source=("https://pypi.io/packages/source/s/salt/salt-$pkgver.tar.gz;)
+md5sums=('9a110f379d8af6be9b0a692430cc17a6')
+
+package() {
+  cd salt-$pkgver
+  python2 setup.py clean
+  python2 setup.py --salt-pidfile-dir="/run/salt" install --root="$pkgdir" 
--optimize=1
+
+  # default config
+  install -Dm644 conf/master "$pkgdir/etc/salt/master"
+  install -Dm644 conf/minion "$pkgdir/etc/salt/minion"
+
+  # systemd services
+  for _svc in salt-master.service salt-syndic.service salt-minion.service 
salt-api.service; do
+install -Dm644 pkg/$_svc "$pkgdir/usr/lib/systemd/system/$_svc"
+  done
+  install -Dm644 pkg/salt.bash 
"$pkgdir/usr/share/bash-completion/completions/salt"
+  install -Dm644 pkg/zsh_completion.zsh 
"$pkgdir/usr/share/zsh/site-functions/_salt"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: salt/repos/community-any/salt.install (from rev 194669, 
salt/trunk/salt.install)
===
--- community-any/salt.install  (rev 0)
+++ community-any/salt.install  2016-11-04 21:51:46 UTC (rev 194670)
@@ -0,0 +1,22 @@
+#!/bin/bash
+
+# arg 1:  the new package version
+# arg 2:  the old package version
+post_upgrade() {
+  if [[ "$(vercmp $2 2014.1.1-1)" -le 0 ]]; then
+cat << EOF
+==> Since version 2014.1.1-2, salt-master runs by default as root user.
+==> You need to manually update your configuration and remove the salt user and
+==> group to follow the new default behavior.
+EOF
+  fi
+
+  if [[ "$(vercmp $2 2016.3.3-1)" -le 0 ]]; then
+cat << EOF
+==> Since version 2016.3.3-2 RAET is no longer supported.  Please switch to 
either
+==> zeromq or tcp for transport instead.
+EOF
+  fi
+}
+
+# vim:set ts=2 sw=2 ft=sh et:


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

2016-11-04 Thread Antonio Rojas
Date: Friday, November 4, 2016 @ 21:07:49
  Author: arojas
Revision: 279857

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-11-04 21:07:13 UTC (rev 279856)
+++ extra-i686/PKGBUILD 2016-11-04 21:07:49 UTC (rev 279857)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Andrea Scarpino 
-# Contributor: Tobias Powalowski 
-
-pkgname=cfitsio
-pkgver=3.390
-pkgrel=2
-pkgdesc="A library of C and Fortran subroutines for reading and writing data 
files in FITS (Flexible Image Transport System) data format"
-arch=(i686 x86_64)
-url="http://heasarc.gsfc.nasa.gov/fitsio/;
-license=(custom)
-depends=(glibc)
-source=("ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/${pkgname}${pkgver/./}.tar.gz;)
-sha512sums=('9e72fe58e1b2e45dfad23c5a60f9056a4e958b3b567751c5284d5d89992f0a2721aa44ede8655f0e1595eaea9d6ba4644b001c54274764f9d05f890d471e4534')
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr \
---enable-reentrant
-  make shared
-  make utils
-}
-
-check() {
-  cd $pkgname
-  LD_LIBRARY_PATH=. ./testprog > testprog.lis
-  [[ -z $(diff testprog.lis testprog.out) ]] || return 1
-  [[ -z $(cmp testprog.fit testprog.std) ]] || return 1
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-
-  install -d "$pkgdir"/usr/bin
-  install -m755 {fpack,funpack,cookbook,fitscopy,imcopy,smem,speed} 
"$pkgdir"/usr/bin/
-
-  install -D -m644 License.txt \
-"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: cfitsio/repos/extra-i686/PKGBUILD (from rev 279856, 
cfitsio/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-11-04 21:07:49 UTC (rev 279857)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino 
+# Contributor: Tobias Powalowski 
+
+pkgname=cfitsio
+pkgver=3.390
+pkgrel=3
+pkgdesc="A library of C and Fortran subroutines for reading and writing data 
files in FITS (Flexible Image Transport System) data format"
+arch=(i686 x86_64)
+url="http://heasarc.gsfc.nasa.gov/fitsio/;
+license=(custom)
+depends=(glibc)
+source=("ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/${pkgname}${pkgver/./}.tar.gz;)
+sha512sums=('9e72fe58e1b2e45dfad23c5a60f9056a4e958b3b567751c5284d5d89992f0a2721aa44ede8655f0e1595eaea9d6ba4644b001c54274764f9d05f890d471e4534')
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr \
+--enable-reentrant
+  make shared
+  make utils
+}
+
+check() {
+  cd $pkgname
+  LD_LIBRARY_PATH=. ./testprog > testprog.lis
+  [[ -z $(diff testprog.lis testprog.out) ]] || return 1
+  [[ -z $(cmp testprog.fit testprog.std) ]] || return 1
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+
+  install -d "$pkgdir"/usr/bin
+  install -m755 {fpack,funpack,fitscopy,imcopy,smem,speed} "$pkgdir"/usr/bin/
+
+  install -D -m644 License.txt \
+"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+# Fix conflicts with ccfits and smem
+  rm "$pkgdir"/usr/bin/{cookbook,smem,testprog}
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-11-04 21:07:13 UTC (rev 279856)
+++ extra-x86_64/PKGBUILD   2016-11-04 21:07:49 UTC (rev 279857)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Andrea Scarpino 
-# Contributor: Tobias Powalowski 
-
-pkgname=cfitsio
-pkgver=3.390
-pkgrel=2
-pkgdesc="A library of C and Fortran subroutines for reading and writing data 
files in FITS (Flexible Image Transport System) data format"
-arch=(i686 x86_64)
-url="http://heasarc.gsfc.nasa.gov/fitsio/;
-license=(custom)
-depends=(glibc)
-source=("ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/${pkgname}${pkgver/./}.tar.gz;)
-sha512sums=('9e72fe58e1b2e45dfad23c5a60f9056a4e958b3b567751c5284d5d89992f0a2721aa44ede8655f0e1595eaea9d6ba4644b001c54274764f9d05f890d471e4534')
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr \
---enable-reentrant
-  make shared
-  make utils
-}
-
-check() {
-  cd $pkgname
-  LD_LIBRARY_PATH=. ./testprog > testprog.lis
-  [[ -z $(diff testprog.lis testprog.out) ]] || return 1
-  [[ -z $(cmp testprog.fit testprog.std) ]] || return 1
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" 

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

2016-11-04 Thread Antonio Rojas
Date: Friday, November 4, 2016 @ 21:07:13
  Author: arojas
Revision: 279856

Fix conflicts with ccfits (FS#51678) and smem (FS#51679)

Modified:
  cfitsio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 16:58:58 UTC (rev 279855)
+++ PKGBUILD2016-11-04 21:07:13 UTC (rev 279856)
@@ -38,4 +38,7 @@
 
   install -D -m644 License.txt \
 "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+# Fix conflicts with ccfits and smem
+  rm "$pkgdir"/usr/bin/{cookbook,smem,testprog}
 }


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

2016-11-04 Thread Jonathan Steel
Date: Friday, November 4, 2016 @ 17:34:56
  Author: jsteel
Revision: 194668

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

Added:
  obs-studio/repos/community-testing-i686/PKGBUILD
(from rev 194667, obs-studio/trunk/PKGBUILD)
  obs-studio/repos/community-testing-x86_64/PKGBUILD
(from rev 194667, obs-studio/trunk/PKGBUILD)
Deleted:
  obs-studio/repos/community-testing-i686/PKGBUILD
  obs-studio/repos/community-testing-x86_64/PKGBUILD

---+
 /PKGBUILD |   68 
 community-testing-i686/PKGBUILD   |   34 --
 community-testing-x86_64/PKGBUILD |   34 --
 3 files changed, 68 insertions(+), 68 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2016-11-04 17:34:37 UTC (rev 194667)
+++ community-testing-i686/PKGBUILD 2016-11-04 17:34:56 UTC (rev 194668)
@@ -1,34 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Benjamin Klettbach 
-
-pkgname=obs-studio
-pkgver=0.16.3
-pkgrel=1
-pkgdesc="Free, open source software for live streaming and recording"
-arch=('i686' 'x86_64')
-url="https://obsproject.com;
-license=('GPL2')
-depends=('ffmpeg' 'jansson' 'libxinerama' 'libxkbcommon-x11'
- 'qt5-x11extras' 'curl' 'jack' 'gtk-update-icon-cache')
-makedepends=('cmake' 'libfdk-aac' 'libxcomposite' 'x264')
-optdepends=('libfdk-aac: FDK AAC codec support'
-'libxcomposite: XComposite capture support')
-source=($pkgname-$pkgver.tar.gz::https://github.com/jp9000/obs-studio/archive/$pkgver.tar.gz)
-md5sums=('3059953d2f487fcd025cda331cd4f733')
-
-build() {
-  cd $pkgname-$pkgver
-
-  mkdir -p build; cd build
-
-  cmake -DCMAKE_INSTALL_PREFIX="/usr" \
--DOBS_VERSION_OVERRIDE="$pkgver-$pkgrel" ..
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver/build
-
-  make install DESTDIR="$pkgdir"
-}

Copied: obs-studio/repos/community-testing-i686/PKGBUILD (from rev 194667, 
obs-studio/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-11-04 17:34:56 UTC (rev 194668)
@@ -0,0 +1,34 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Benjamin Klettbach 
+
+pkgname=obs-studio
+pkgver=0.16.4
+pkgrel=1
+pkgdesc="Free, open source software for live streaming and recording"
+arch=('i686' 'x86_64')
+url="https://obsproject.com;
+license=('GPL2')
+depends=('ffmpeg' 'jansson' 'libxinerama' 'libxkbcommon-x11'
+ 'qt5-x11extras' 'curl' 'jack' 'gtk-update-icon-cache')
+makedepends=('cmake' 'libfdk-aac' 'libxcomposite' 'x264')
+optdepends=('libfdk-aac: FDK AAC codec support'
+'libxcomposite: XComposite capture support')
+source=($pkgname-$pkgver.tar.gz::https://github.com/jp9000/obs-studio/archive/$pkgver.tar.gz)
+md5sums=('412adb4f4f8b24255e527dedf7d0a272')
+
+build() {
+  cd $pkgname-$pkgver
+
+  mkdir -p build; cd build
+
+  cmake -DCMAKE_INSTALL_PREFIX="/usr" \
+-DOBS_VERSION_OVERRIDE="$pkgver-$pkgrel" ..
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver/build
+
+  make install DESTDIR="$pkgdir"
+}

Deleted: community-testing-x86_64/PKGBUILD
===
--- community-testing-x86_64/PKGBUILD   2016-11-04 17:34:37 UTC (rev 194667)
+++ community-testing-x86_64/PKGBUILD   2016-11-04 17:34:56 UTC (rev 194668)
@@ -1,34 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Benjamin Klettbach 
-
-pkgname=obs-studio
-pkgver=0.16.3
-pkgrel=1
-pkgdesc="Free, open source software for live streaming and recording"
-arch=('i686' 'x86_64')
-url="https://obsproject.com;
-license=('GPL2')
-depends=('ffmpeg' 'jansson' 'libxinerama' 'libxkbcommon-x11'
- 'qt5-x11extras' 'curl' 'jack' 'gtk-update-icon-cache')
-makedepends=('cmake' 'libfdk-aac' 'libxcomposite' 'x264')
-optdepends=('libfdk-aac: FDK AAC codec support'
-'libxcomposite: XComposite capture support')
-source=($pkgname-$pkgver.tar.gz::https://github.com/jp9000/obs-studio/archive/$pkgver.tar.gz)
-md5sums=('3059953d2f487fcd025cda331cd4f733')
-
-build() {
-  cd $pkgname-$pkgver
-
-  mkdir -p build; cd build
-
-  cmake -DCMAKE_INSTALL_PREFIX="/usr" \
--DOBS_VERSION_OVERRIDE="$pkgver-$pkgrel" ..
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver/build
-
-  make install DESTDIR="$pkgdir"
-}

Copied: obs-studio/repos/community-testing-x86_64/PKGBUILD (from rev 194667, 
obs-studio/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2016-11-04 17:34:56 UTC (rev 194668)
@@ -0,0 +1,34 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Benjamin Klettbach 

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

2016-11-04 Thread Jonathan Steel
Date: Friday, November 4, 2016 @ 17:34:37
  Author: jsteel
Revision: 194667

upgpkg: obs-studio 0.16.4-1

Modified:
  obs-studio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 17:21:32 UTC (rev 194666)
+++ PKGBUILD2016-11-04 17:34:37 UTC (rev 194667)
@@ -2,7 +2,7 @@
 # Contributor: Benjamin Klettbach 
 
 pkgname=obs-studio
-pkgver=0.16.3
+pkgver=0.16.4
 pkgrel=1
 pkgdesc="Free, open source software for live streaming and recording"
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 optdepends=('libfdk-aac: FDK AAC codec support'
 'libxcomposite: XComposite capture support')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/jp9000/obs-studio/archive/$pkgver.tar.gz)
-md5sums=('3059953d2f487fcd025cda331cd4f733')
+md5sums=('412adb4f4f8b24255e527dedf7d0a272')
 
 build() {
   cd $pkgname-$pkgver


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

2016-11-04 Thread Jaroslav Lichtblau
Date: Friday, November 4, 2016 @ 17:21:32
  Author: jlichtblau
Revision: 194666

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-11-04 17:21:19 UTC (rev 194665)
+++ PKGBUILD2016-11-04 17:21:32 UTC (rev 194666)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-# Maintainer: Jaroslav Lichtblau 
-
-pkgname=youtube-dl
-pkgver=2016.11.02
-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=('9924c3df763d3f2259c9a7f227a01e787ccd452be198191a4a848a7632d7'
-'SKIP')
-validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
-  '428DF5D63EF07494BB455AC0EBF01804BCF05F6B'  # Filippo Valsorda
-  '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 194665, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-11-04 17:21:32 UTC (rev 194666)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=youtube-dl
+pkgver=2016.11.04
+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=('9622b29b81587278a00e39e4206e7c52555d240cbbb44242f237660169e8d531'
+'SKIP')
+validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
+  '428DF5D63EF07494BB455AC0EBF01804BCF05F6B'  # Filippo Valsorda
+  '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)

2016-11-04 Thread Jaroslav Lichtblau
Date: Friday, November 4, 2016 @ 17:21:19
  Author: jlichtblau
Revision: 194665

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

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 16:21:17 UTC (rev 194664)
+++ PKGBUILD2016-11-04 17:21:19 UTC (rev 194665)
@@ -3,7 +3,7 @@
 # Maintainer: Jaroslav Lichtblau 
 
 pkgname=youtube-dl
-pkgver=2016.11.02
+pkgver=2016.11.04
 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=('9924c3df763d3f2259c9a7f227a01e787ccd452be198191a4a848a7632d7'
+sha256sums=('9622b29b81587278a00e39e4206e7c52555d240cbbb44242f237660169e8d531'
 'SKIP')
 validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
   '428DF5D63EF07494BB455AC0EBF01804BCF05F6B'  # Filippo Valsorda


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

2016-11-04 Thread Levente Polyak
Date: Friday, November 4, 2016 @ 16:58:58
  Author: anthraxx
Revision: 279855

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

Added:
  nvidia-settings/repos/extra-i686/PKGBUILD
(from rev 279854, nvidia-settings/trunk/PKGBUILD)
  nvidia-settings/repos/extra-i686/libxnvctrl_so.patch
(from rev 279854, nvidia-settings/trunk/libxnvctrl_so.patch)
  nvidia-settings/repos/extra-x86_64/PKGBUILD
(from rev 279854, nvidia-settings/trunk/PKGBUILD)
  nvidia-settings/repos/extra-x86_64/libxnvctrl_so.patch
(from rev 279854, nvidia-settings/trunk/libxnvctrl_so.patch)
Deleted:
  nvidia-settings/repos/extra-i686/PKGBUILD
  nvidia-settings/repos/extra-i686/libxnvctrl_so.patch
  nvidia-settings/repos/extra-x86_64/PKGBUILD
  nvidia-settings/repos/extra-x86_64/libxnvctrl_so.patch

--+
 /PKGBUILD|  124 ++
 /libxnvctrl_so.patch |  134 +
 extra-i686/PKGBUILD  |   61 
 extra-i686/libxnvctrl_so.patch   |   67 --
 extra-x86_64/PKGBUILD|   61 
 extra-x86_64/libxnvctrl_so.patch |   67 --
 6 files changed, 258 insertions(+), 256 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-11-04 16:58:50 UTC (rev 279854)
+++ extra-i686/PKGBUILD 2016-11-04 16:58:58 UTC (rev 279855)
@@ -1,61 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Levente Polyak 
-
-pkgbase=nvidia-settings
-pkgname=('nvidia-settings' 'libxnvctrl')
-pkgver=370.28
-pkgrel=1
-pkgdesc="Tool for configuring the NVIDIA graphics driver"
-arch=('i686' 'x86_64')
-url="https://github.com/NVIDIA/nvidia-settings;
-license=('GPL2')
-makedepends=('git' 'inetutils' 'gtk2' 'jansson' 'gtk3' 'libxv' 'libvdpau' 
'nvidia-utils' 'libxext')
-options=('staticlibs')
-source=("git+https://github.com/NVIDIA/nvidia-settings#tag=$pkgver;
-libxnvctrl_so.patch)
-sha1sums=('SKIP'
-  '16619a01e92e565c79ad344be87ad11244ac1762')
-
-prepare() {
-  export PREFIX=/usr
-  export NV_USE_BUNDLED_LIBJANSSON=0
-  cd ${pkgbase}
-  patch -p1 < "${srcdir}/libxnvctrl_so.patch"
-}
-
-build() {
-  cd ${pkgbase}
-  make
-  make -C src/libXNVCtrl
-}
-
-package_nvidia-settings() {
-  depends=('jansson' 'gtk3' 'libxv' 'libvdpau' 'nvidia-utils' 'libxnvctrl')
-
-  cd ${pkgbase}
-  make DESTDIR="${pkgdir}" install
-
-  install -D -m644 doc/nvidia-settings.desktop 
"${pkgdir}/usr/share/applications/nvidia-settings.desktop"
-  install -D -m644 doc/nvidia-settings.png 
"${pkgdir}/usr/share/pixmaps/nvidia-settings.png"
-  sed -e 's:__UTILS_PATH__:/usr/bin:' -e 
's:__PIXMAP_PATH__:/usr/share/pixmaps:' -i 
"${pkgdir}/usr/share/applications/nvidia-settings.desktop"
-
-  rm "$pkgdir/usr/lib/libnvidia-gtk2.so.$pkgver"
-}
-
-package_libxnvctrl() {
-  depends=('libxext')
-  pkgdesc='NVIDIA NV-CONTROL X extension'
-
-  cd ${pkgbase}
-  install -Dm 644 doc/{NV-CONTROL-API.txt,FRAMELOCK.txt} -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 samples/{Makefile,README,*.c,*.h,*.mk} -t 
"${pkgdir}/usr/share/doc/${pkgname}/samples"
-
-  cd src/libXNVCtrl
-  install -Dm 644 *.h -t "${pkgdir}/usr/include/NVCtrl"
-  install -Dm 644 libXNVCtrl.a -t "${pkgdir}/usr/lib"
-  install -Dm 755 libXNVCtrl.so.0.0.0 -t "${pkgdir}/usr/lib"
-  ln -s libXNVCtrl.so.0.0.0 "${pkgdir}/usr/lib/libXNVCtrl.so.0"
-  ln -s libXNVCtrl.so.0 "${pkgdir}/usr/lib/libXNVCtrl.so"
-}
-
-# vim: ts=2 sw=2 et:

Copied: nvidia-settings/repos/extra-i686/PKGBUILD (from rev 279854, 
nvidia-settings/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-11-04 16:58:58 UTC (rev 279855)
@@ -0,0 +1,62 @@
+# Maintainer: Felix Yan 
+# Maintainer: Levente Polyak 
+
+pkgbase=nvidia-settings
+pkgname=('nvidia-settings' 'libxnvctrl')
+pkgver=375.10
+_gitcommit=168e17f53098254b4a5ab93eeb2f23c80ca1d97f
+pkgrel=1
+pkgdesc="Tool for configuring the NVIDIA graphics driver"
+arch=('i686' 'x86_64')
+url="https://github.com/NVIDIA/nvidia-settings;
+license=('GPL2')
+makedepends=('git' 'inetutils' 'gtk2' 'jansson' 'gtk3' 'libxv' 'libvdpau' 
'nvidia-utils' 'libxext')
+options=('staticlibs')
+source=("git+https://github.com/NVIDIA/nvidia-settings#commit=${_gitcommit};
+libxnvctrl_so.patch)
+sha1sums=('SKIP'
+  '16619a01e92e565c79ad344be87ad11244ac1762')
+
+prepare() {
+  export PREFIX=/usr
+  export NV_USE_BUNDLED_LIBJANSSON=0
+  cd ${pkgbase}
+  patch -p1 < "${srcdir}/libxnvctrl_so.patch"
+}
+
+build() {
+  cd ${pkgbase}
+  make
+  make -C src/libXNVCtrl
+}
+
+package_nvidia-settings() {
+  depends=('jansson' 'gtk3' 'libxv' 'libvdpau' 'nvidia-utils' 'libxnvctrl')
+
+  cd ${pkgbase}
+  make 

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

2016-11-04 Thread Levente Polyak
Date: Friday, November 4, 2016 @ 16:58:50
  Author: anthraxx
Revision: 279854

upgpkg: nvidia-settings 375.10-1

Modified:
  nvidia-settings/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 16:21:12 UTC (rev 279853)
+++ PKGBUILD2016-11-04 16:58:50 UTC (rev 279854)
@@ -3,7 +3,8 @@
 
 pkgbase=nvidia-settings
 pkgname=('nvidia-settings' 'libxnvctrl')
-pkgver=370.28
+pkgver=375.10
+_gitcommit=168e17f53098254b4a5ab93eeb2f23c80ca1d97f
 pkgrel=1
 pkgdesc="Tool for configuring the NVIDIA graphics driver"
 arch=('i686' 'x86_64')
@@ -11,7 +12,7 @@
 license=('GPL2')
 makedepends=('git' 'inetutils' 'gtk2' 'jansson' 'gtk3' 'libxv' 'libvdpau' 
'nvidia-utils' 'libxext')
 options=('staticlibs')
-source=("git+https://github.com/NVIDIA/nvidia-settings#tag=$pkgver;
+source=("git+https://github.com/NVIDIA/nvidia-settings#commit=${_gitcommit};
 libxnvctrl_so.patch)
 sha1sums=('SKIP'
   '16619a01e92e565c79ad344be87ad11244ac1762')


[arch-commits] Commit in hplip/repos (10 files)

2016-11-04 Thread Andreas Radke
Date: Friday, November 4, 2016 @ 14:58:49
  Author: andyrtr
Revision: 279850

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

Added:
  hplip/repos/testing-i686/
  
hplip/repos/testing-i686/0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
(from rev 279849, 
hplip/trunk/0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch)
  hplip/repos/testing-i686/PKGBUILD
(from rev 279849, hplip/trunk/PKGBUILD)
  hplip/repos/testing-i686/disable_upgrade.patch
(from rev 279849, hplip/trunk/disable_upgrade.patch)
  hplip/repos/testing-i686/fix_tabs.patch
(from rev 279849, hplip/trunk/fix_tabs.patch)
  hplip/repos/testing-x86_64/
  
hplip/repos/testing-x86_64/0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
(from rev 279849, 
hplip/trunk/0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch)
  hplip/repos/testing-x86_64/PKGBUILD
(from rev 279849, hplip/trunk/PKGBUILD)
  hplip/repos/testing-x86_64/disable_upgrade.patch
(from rev 279849, hplip/trunk/disable_upgrade.patch)
  hplip/repos/testing-x86_64/fix_tabs.patch
(from rev 279849, hplip/trunk/fix_tabs.patch)

+
 testing-i686/0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch   
|   50 +
 testing-i686/PKGBUILD  
|   95 ++
 testing-i686/disable_upgrade.patch 
|   14 +
 testing-i686/fix_tabs.patch
|   17 +
 testing-x86_64/0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch 
|   50 +
 testing-x86_64/PKGBUILD
|   95 ++
 testing-x86_64/disable_upgrade.patch   
|   14 +
 testing-x86_64/fix_tabs.patch  
|   17 +
 8 files changed, 352 insertions(+)

Copied: 
hplip/repos/testing-i686/0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
 (from rev 279849, 
hplip/trunk/0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch)
===
--- 
testing-i686/0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
(rev 0)
+++ 
testing-i686/0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
2016-11-04 14:58:49 UTC (rev 279850)
@@ -0,0 +1,50 @@
+From b3a7fa4d4a573cfe0073ae50197f679af7e3a0ac Mon Sep 17 00:00:00 2001
+From: Till Kamppeter 
+Date: Sat, 24 Sep 2016 10:37:20 +0200
+Subject: Add 'include ' in various places as CUPS 2.2 moved some
+ definitions to ppd.h
+
+---
+ configure.in   | 2 +-
+ prnt/hpcups/HPCupsFilter.h | 2 ++
+ prnt/hpijs/hpcupsfax.cpp   | 1 +
+ 3 files changed, 4 insertions(+), 1 deletion(-)
+
+diff --git a/configure.in b/configure.in
+index d3a1ddb..eabe14a 100755
+--- a/configure.in
 b/configure.in
+@@ -554,7 +554,7 @@ fi
+ 
+ if test "$hpijs_only_build" = "no" && test "$hpcups_only_build" = "no"; then
+AC_CHECK_LIB([cups], [cupsDoFileRequest], [LIBS="$LIBS"], 
[AC_MSG_ERROR([cannot find libcups support], 9)])
+-   AC_CHECK_HEADERS(cups/cups.h, ,[AC_MSG_ERROR([cannot find cups-devel 
support], 3)])
++   AC_CHECK_HEADERS(cups/cups.h cups/ppd.h, ,[AC_MSG_ERROR([cannot find 
cups-devel support], 3)])
+if test "$libusb01_build" = "yes"; then
+   AC_CHECK_LIB([usb], [usb_init], [LIBS="$LIBS"], [AC_MSG_ERROR([cannot 
find libusb support], 2)])
+   AC_CHECK_HEADERS(usb.h, ,[AC_MSG_ERROR([cannot find libusb-devel 
support], 11)])
+diff --git a/prnt/hpcups/HPCupsFilter.h b/prnt/hpcups/HPCupsFilter.h
+index ff5548e..c517989 100644
+--- a/prnt/hpcups/HPCupsFilter.h
 b/prnt/hpcups/HPCupsFilter.h
+@@ -38,6 +38,8 @@
+ 
+ #include "dbuscomm.h"
+ 
++#include 
++
+ #define   DBITMAPFILEHEADER   14
+ #define   DBITMAPINFOHEADER   40
+ 
+diff --git a/prnt/hpijs/hpcupsfax.cpp b/prnt/hpijs/hpcupsfax.cpp
+index 8514775..994e50f 100644
+--- a/prnt/hpijs/hpcupsfax.cpp
 b/prnt/hpijs/hpcupsfax.cpp
+@@ -43,6 +43,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include 
+ #include 
+ #ifdef FALSE

Copied: hplip/repos/testing-i686/PKGBUILD (from rev 279849, 
hplip/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-11-04 14:58:49 UTC (rev 279850)
@@ -0,0 +1,95 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Maintainer: Tom Gundersen 
+# Contributor : Rémy Oudompheng 
+# Contributor: Morgan LEFIEUX 
+
+pkgname=hplip
+pkgver=3.16.10
+pkgrel=1
+pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some 

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

2016-11-04 Thread Andreas Radke
Date: Friday, November 4, 2016 @ 14:58:37
  Author: andyrtr
Revision: 279849

upgpkg: hplip 3.16.10-1

upstream update 3.16.10

Modified:
  hplip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 14:53:22 UTC (rev 279848)
+++ PKGBUILD2016-11-04 14:58:37 UTC (rev 279849)
@@ -5,7 +5,7 @@
 # Contributor: Morgan LEFIEUX 
 
 pkgname=hplip
-pkgver=3.16.9
+pkgver=3.16.10
 pkgrel=1
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
@@ -24,11 +24,11 @@
 'hplip-plugin: binary blobs for specific devices (AUR) or run 
hp-setup to download the plugin'
 'libusb: for advanced usb support')
 backup=('etc/hp/hplip.conf' 'etc/sane.d/dll.d/hpaio')
-source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
+source=(https://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
 disable_upgrade.patch
 fix_tabs.patch
 0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch)
-sha1sums=('bf9ef2955df365c9544138aa6b7a6d5d20650792'
+sha1sums=('e3bc9a0d135232eba412952ca58b63757783e22f'
   'SKIP'
   '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e'
   'bd18428ff1e378aa0a299331607eaed82021e34b'


[arch-commits] Commit in libreoffice-fresh-i18n/trunk (PKGBUILD)

2016-11-04 Thread Andreas Radke
Date: Friday, November 4, 2016 @ 14:53:11
  Author: andyrtr
Revision: 279847

https/gpg signature

Modified:
  libreoffice-fresh-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  187 ++---
 1 file changed, 180 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 14:52:49 UTC (rev 279846)
+++ PKGBUILD2016-11-04 14:53:11 UTC (rev 279847)
@@ -15,11 +15,11 @@
 license=('LGPL')
 makedepends=('rpmextract')
 
-#http://download.documentfoundation.org/mirrors/all.html
+#https://download.documentfoundation.org/mirrors/all.html
 _url="https://download.documentfoundation.org/libreoffice/stable;
-#_url="http://download.documentfoundation.org/libreoffice/testing;
-#_url="http://dev-builds.libreoffice.org/pre-releases;
-#_url="http://www.libreoffice.org/download/pre-releases;
+#_url="https://download.documentfoundation.org/libreoffice/testing;
+#_url="https://dev-builds.libreoffice.org/pre-releases;
+#_url="https://www.libreoffice.org/download/pre-releases;
 
 #_url+="/${pkgver}-rc2/rpm/x86"
 _url+="/${pkgver}/rpm/x86"
@@ -137,178 +137,351 @@
   'zu"Zulu"'
 )
 sha256sums=('cb4bae86635d44db6ab6937cf42ba37a11c8826aac098d5a2cd9bad02d0400a0'
+'SKIP'
 'fe834551738c066075c19f53c39582bd83f4202c05de27de1021cc7985646ed6'
+'SKIP'
 '002fdf15d3b81bbe7114b7413b727a2b00436e6d9ab7449c8f2a4d106328c898'
+'SKIP'
 '1114c15202ece894b29b7c292270532be249b9e5e3b4aea7c548c7370838df84'
+'SKIP'
 '9a5f14570539c8381741c2c803c621b16f0b9be950106376ec34b3f28db0f357'
+'SKIP'
 '58ac1ff0c16a145cf65666d87b14fb7bc34825ce3864c805ac62c59c98d3'
+'SKIP'
 'b88c8138e595f7d5eb4954ec2dad1308a658cb88b03005481593c39ead37340e'
+'SKIP'
 'd4aee08f83c8d65e47e007101f4720f277d7612d2c9497b19133141916a19412'
+'SKIP'
 'a37a82e23d0c3d1d77204d2fcad18641548de789a9f5e51cad6ac69e4f944e0e'
+'SKIP'
 '55de68dcb9fbe5fa21da61206868a6c0f17f1f621e2b7591ac4ab36ebb663311'
+'SKIP'
 '6e5921ccc58adf175781a99650f4951ec325e34f6cf4006750cb8231bbc6e2cb'
+'SKIP'
 '9f5ed36687225e2d753655fad8732e9682e70d423805991bfc04e73b38ac1167'
+'SKIP'
 '5397c36129b08045536fec91374c86131a676adbaa22b99c2444855111b0c3b4'
+'SKIP'
 '052ca84dcaee635b8a164669b65a916238eba7da8d8cfebfc336c293c206fbe9'
+'SKIP'
 '43fdbd3caad7a813acb346ef8087bd3015fa4851d50ef05fc4482d5a48f6b3d5'
+'SKIP'
 'bf647cbad8bb6482258f57405838651487573a56293806aca4eaeed59a047ff8'
+'SKIP'
 'e53b52069ce5b250c118bec448deb616dc7e87650322363251d70e1ce0bd6fda'
+'SKIP'
 '6b9d5e8b019c940ed2fb60f3c5c79dfabf7cf5ef83777680b71d97ce5d5e7e63'
+'SKIP'
 '03668a412b8769593d6d3368ddf735e28304eea72748aee35ac10d12243c67e4'
+'SKIP'
 '3122520a20089100ef9dae98611f239687e8d3eb2224f0de152659da5aebb94b'
+'SKIP'
 '5acdec1fb67b6b018c213d4ea295cd141630c9715b9f476f562d00632d28e7d8'
+'SKIP'
 '7809ae5e541524e83971c96b7e1eae60bd20ff5825b6e52b02c611ca43d21734'
+'SKIP'
 '1da4cae0dbf3990efda1a41ca6ad42d58bc5792fd5c0e0614f7f5f4bc5d36fbb'
+'SKIP'
 '9db0f5a491a3a6e15ba3da5e247328e417a7619d310878d6795fa37572f0147c'
+'SKIP'
 'ff9e196d00d4cd8370db5ddbe35ee8b3951bbc3cadcc6a5bf06904b2174f523f'
+'SKIP'
 '69d76138e1d58bdd3a60cbe555ac955ac93cfd4c50a0a71ae4aa5062f6e6ea51'
+'SKIP'
 '362b7032a8677129c9d78cf7cbd6274bc640e3878aace47283b30e9b7e03d1bd'
+'SKIP'
 '5488a5f792c008bdd418ea189a1cbb9cc677e3e62e41f9d76f71356ec88c9899'
+'SKIP'
 '48daca769a0cff4d9b9aae1df50c6f434a4e4fd15a9f302e37c42e67a3bd451f'
+'SKIP'
 '7072f0396dd8a9b8cc43e87fa3dc5a04c2086d09bc700d6250b0ed415ba91738'
+'SKIP'
 '6f17c20eb2201bddf03ed87ea8642a7e005b68fbf08717e8a1987cd9a511'
+'SKIP'
 'a4ccb46fa90738494578a90d0070c6c2a128c1ac7ec565cf6000fbf173049df9'
+'SKIP'
 'c13982b5e307b5ebd9fb690cf0420aafa87ccd6eddcc77b4a7a73f7dcba4a573'
+'SKIP'
 'bf672b4841db101b3caab89e63d5edb28d88afec7ed945a58fc0e006286f1fa3'
+'SKIP'
 'f5f32f6fa6077c1cf677638ce956a4966752184471263635f5f9f578f3113465'
+'SKIP'
 '973b65bc6fd6612307b6e3d4a5cc8f2cb5bc5c88b40a20c8e7254cf0fca7c0c1'
+'SKIP'
 '9a589c2e93cd6527e5fe39321f752b7b0bd4edfd49554b0993909d0364808d06'
+'SKIP'
 

[arch-commits] Commit in libreoffice-fresh-i18n/repos/extra-any (PKGBUILD PKGBUILD)

2016-11-04 Thread Andreas Radke
Date: Friday, November 4, 2016 @ 14:53:22
  Author: andyrtr
Revision: 279848

archrelease: copy trunk to extra-any

Added:
  libreoffice-fresh-i18n/repos/extra-any/PKGBUILD
(from rev 279847, libreoffice-fresh-i18n/trunk/PKGBUILD)
Deleted:
  libreoffice-fresh-i18n/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  895 -
 1 file changed, 534 insertions(+), 361 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-11-04 14:53:11 UTC (rev 279847)
+++ PKGBUILD2016-11-04 14:53:22 UTC (rev 279848)
@@ -1,361 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Maintainer: Bartłomiej Piotrowski 
-
-pkgbase=libreoffice-fresh-i18n
-
-pkgver=5.2.3
-pkgrel=1
-_rcver=${pkgver}.3
-#_oodlver=${pkgver}.0.beta1
-_oodlver=${pkgver}
-
-arch=('any')
-url="http://www.documentfoundation.org;
-license=('LGPL')
-makedepends=('rpmextract')
-
-#http://download.documentfoundation.org/mirrors/all.html
-_url="https://download.documentfoundation.org/libreoffice/stable;
-#_url="http://download.documentfoundation.org/libreoffice/testing;
-#_url="http://dev-builds.libreoffice.org/pre-releases;
-#_url="http://www.libreoffice.org/download/pre-releases;
-
-#_url+="/${pkgver}-rc2/rpm/x86"
-_url+="/${pkgver}/rpm/x86"
-#_url+="/rpm/x86"
-
-_languages=(
-  'af"Afrikaans"'
-  'am"Amharic"'
-  'ar"Arabic"'
-  'as"Assamese (India)"'
-  'ast   "Asturianu"'
-  'be"Belarusian"'
-  'bg"Bulgarian"'
-  'bn"Bengali"'
-  'bn-IN "Bengali (India)"'
-  'bo"Tibetan"'
-  'br"Breton"'
-  'brx   "Bodo"'
-  'bs"Bosnian"'
-  'ca"Catalan"'
-  'ca-valencia   "Catalan (Valencia)"'
-  'cs"Czech"'
-  'cy"Welsh"'
-  'da"Danish"'
-  'de"German"'
-  'dgo   "Dogri"'
-  'dz"Dzongkha"'
-  'el"Greek"'
-  'en-GB "English (GB)"'
-  'en-ZA "English (ZA)"'
-  'eo"Esperanto"'
-  'es"Spanish"'
-  'et"Estonian"'
-  'eu"Basque"'
-  'fa"Persian"'
-  'fi"Finnish"'
-  'fr"French"'
-  'ga"Irish"'
-  'gd"Gaelic (Scottish)"'
-  'gl"Galician"'
-  'gu"Gujarati"'
-  'he"Hebrew"'
-  'hi"Hindi"'
-  'hr"Croatian"'
-  'hu"Hungarian"'
-  'id"Indonesian"'
-  'is"Icelandic"'
-  'it"Italian"'
-  'ja"Japanese"'
-  'ka"Georgian"'
-  'kk"Kazakh"'
-  'km"Khmer (Cambodia)"'
-  'kmr-Latn  "Kurdish"'
-  'kn"Kannada"'
-  'ko"Korean"'
-  'kok   "Konkani"'
-  'ks"Kashmiri"'
-  'lb"Luxembourgish"'
-  'lo"Lao"'
-  'lt"Lithuanian"'
-  'lv"Latvian"'
-  'mai   "Maithili"'
-  'mk"Macedonian"'
-  'ml"Malayalam"'
-  'mn"Mongolian"'
-  'mni   "Manipuri"'
-  'mr"Marathi"'
-  'my"Burmese"'
-  'nb"Norwegian Bokmal"'
-  'ne"Nepali"'
-  'nl"Dutch"'
-  'nn"Norwegian Nynorsk"'
-  'nr"Ndebele (South)"'
-  'nso   "Northern Sotho"'
-  'oc"Occitan"'
-  'om"Oromo"'
-  'or"Oriya"'
-  'pa-IN "Punjabi (India)"'
-  'pl"Polish"'
-  'pt"Portuguese"'
-  'pt-BR "Portuguese (Brasil)"'
-  'ro"Romanian"'
-  'ru"Russian"'
-  'rw"Kinyarwanda"'
-  'sa-IN "Sanskrit (India)"'
-  'sat   "Santali"'
-  'sd"Sindhi"'
-  'si"Singhalese"'
-  'sid   "Sidama"'
-  'sk"Slovak"'
-  'sl"Slovenian"'
-  'sq"Albanien"'
-  'sr"Serbian"'
-  'sr-Latn   "Serbian (Latin)"'
-  'ss"Swati"'
-  'st"Southern Sotho"'
-  'sv"Swedish"'
-  'sw-TZ "Swahili (Tanzania)"'
-  'ta"Tamil"'
-  'te"Telugu"'
-  'tg"Tajik"'
-  'th"Thai"'
-  'tn"Tswana"'
-  'tr"Turkish"'
-  'ts"Tsonga"'
-  'tt"Tatar"'
-  'ug"Uighur"'
-  'uk"Ukrainian"'
-  'uz"Uzbek"'
-  've"Venda"'
-  'vi"Vietnamese"'
-  'xh"Xhosa"'
-  'zh-CN "Chinese (simplified)"'
-  'zh-TW "Chinese (traditional)"'
-  'zu"Zulu"'
-)
-sha256sums=('cb4bae86635d44db6ab6937cf42ba37a11c8826aac098d5a2cd9bad02d0400a0'
-'fe834551738c066075c19f53c39582bd83f4202c05de27de1021cc7985646ed6'
-'002fdf15d3b81bbe7114b7413b727a2b00436e6d9ab7449c8f2a4d106328c898'
-   

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

2016-11-04 Thread Andreas Radke
Date: Friday, November 4, 2016 @ 14:52:43
  Author: andyrtr
Revision: 279845

upgpkg: tzdata 2016i-1

upstream update 2016i

Modified:
  tzdata/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 14:47:02 UTC (rev 279844)
+++ PKGBUILD2016-11-04 14:52:43 UTC (rev 279845)
@@ -2,7 +2,7 @@
 # Maintainer: Andreas Radke 
 
 pkgname=tzdata
-pkgver=2016h
+pkgver=2016i
 pkgrel=1
 pkgdesc="Sources for time zone and daylight saving time data"
 arch=('any')
@@ -10,10 +10,10 @@
 license=('GPL')
 options=('!emptydirs')
 # new signing key is not available via public keyservers
-source=(http://www.iana.org/time-zones/repository/releases/${pkgname}${pkgver}.tar.gz)
 #{,.asc})
-sha512sums=('8d4eeaebe39392ca9163d03601d1178597b3f0092419d1f54ebd34944110a0b10cb22d4ab8bacfb48bce3f6f7175177105e204f1b4edeadc38ad4ac2d6ded835')
-#'SKIP')
-#validpgpkeys=('7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34') # Paul Eggert 

+source=(https://www.iana.org/time-zones/repository/releases/${pkgname}${pkgver}.tar.gz{,.asc})
+sha512sums=('801059f43c91798cf69fb2ae77c1ffab8d06987325081511d573febde19ae423e7432c2b65c7c256077bbdb1b359e010302955786e18f2697bb263c4e0f1cc91'
+'SKIP')
+validpgpkeys=('7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34') # Paul Eggert 

 
 timezones=('africa' 'antarctica' 'asia' 'australasia'
'europe' 'northamerica' 'southamerica'


[arch-commits] Commit in tzdata/repos (testing-any testing-any/PKGBUILD)

2016-11-04 Thread Andreas Radke
Date: Friday, November 4, 2016 @ 14:52:49
  Author: andyrtr
Revision: 279846

archrelease: copy trunk to testing-any

Added:
  tzdata/repos/testing-any/
  tzdata/repos/testing-any/PKGBUILD
(from rev 279845, tzdata/trunk/PKGBUILD)

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

Copied: tzdata/repos/testing-any/PKGBUILD (from rev 279845, 
tzdata/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2016-11-04 14:52:49 UTC (rev 279846)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andreas Radke 
+
+pkgname=tzdata
+pkgver=2016i
+pkgrel=1
+pkgdesc="Sources for time zone and daylight saving time data"
+arch=('any')
+url="http://www.iana.org/time-zones;
+license=('GPL')
+options=('!emptydirs')
+# new signing key is not available via public keyservers
+source=(https://www.iana.org/time-zones/repository/releases/${pkgname}${pkgver}.tar.gz{,.asc})
+sha512sums=('801059f43c91798cf69fb2ae77c1ffab8d06987325081511d573febde19ae423e7432c2b65c7c256077bbdb1b359e010302955786e18f2697bb263c4e0f1cc91'
+'SKIP')
+validpgpkeys=('7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34') # Paul Eggert 

+
+timezones=('africa' 'antarctica' 'asia' 'australasia'
+   'europe' 'northamerica' 'southamerica'
+   'pacificnew' 'etcetera' 'backward'
+   'systemv' 'factory')
+
+package() {
+  cd ${srcdir}
+  zic -y ./yearistype -d ${pkgdir}/usr/share/zoneinfo ${timezones[@]}
+  zic -y ./yearistype -d ${pkgdir}/usr/share/zoneinfo/posix ${timezones[@]}
+  zic -y ./yearistype -d ${pkgdir}/usr/share/zoneinfo/right -L leapseconds 
${timezones[@]}
+  
+  zic -y ./yearistype -d ${pkgdir}/usr/share/zoneinfo -p America/New_York
+  install -m444 -t ${pkgdir}/usr/share/zoneinfo iso3166.tab zone1970.tab 
zone.tab # zone.tab is depricated and will go soon
+}


[arch-commits] Commit in libreoffice-still-i18n/trunk (PKGBUILD)

2016-11-04 Thread Andreas Radke
Date: Friday, November 4, 2016 @ 14:46:52
  Author: andyrtr
Revision: 279843

https/gpg signature

Modified:
  libreoffice-still-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  510 -
 1 file changed, 339 insertions(+), 171 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 14:44:33 UTC (rev 279842)
+++ PKGBUILD2016-11-04 14:46:52 UTC (rev 279843)
@@ -16,7 +16,7 @@
 makedepends=('rpmextract')
 
 #http://download.documentfoundation.org/mirrors/all.html
-_url="http://download.documentfoundation.org/libreoffice/stable;
+_url="https://download.documentfoundation.org/libreoffice/stable;
 #_url="http://download.documentfoundation.org/libreoffice/testing;
 #_url="http://dev-builds.libreoffice.org/pre-releases;
 #_url="http://www.libreoffice.org/download/pre-releases;
@@ -136,174 +136,342 @@
   'zh-TW "Chinese (traditional)"'
   'zu"Zulu"'
 )
-md5sums=('5a30d57a576ec71f93ce8079413342ad'
- '6b6f24ab414a47997912032a8cbd1bc7'
- '9742cb61fbc2ef6bc40d2f8f23eaf61b'
- 'b29cc72fde618d4dba2ea9dd6bb28bb1'
- 'f1d829a0c40fd2761d36ffd3bfc1414e'
- 'b4bb9087c145ac18b578b1ffda95105c'
- '06d281799bc0849b7b43808db9ab43bb'
- 'f2428a42b0ea238570890657dfd97207'
- 'd76abc59c35d41f2b4bf6f10e47534c1'
- '6d86a790e2883d351ccca6d508856527'
- '6f5a390d059d1bb201287111facd185a'
- '39c4eb07f8c89ee37759c1d72ce604e6'
- 'ebac1cadf1ae30d5553f2677421026da'
- 'de433d9f8a93917c6ad69b9e8d97c89a'
- '1a5b951932d9c9a929c0dcb6ffb4a89f'
- '63d1dbfb9dda6f39bf12f8ad620853a2'
- '64afb62f8e9ca44974e0fc776928d859'
- 'b4930384fcf15efdc99f8eede99ad7e7'
- '8dd04e6faa7edd8ae9ab4953e3eac5b8'
- '84f907d8aa0a30cfe4b317ad0bfccd13'
- '69f23e74a361d05400ff489936cf7e49'
- '71aab84e9afbd64e9ae0a28bbb089aa5'
- 'e7df6394e27d682a417394145ac93faf'
- '0d92694fb34013db96be5ca0fe808795'
- 'ce10cf23bc0be0a805bb4267e8fc54e3'
- '87f09323ea6e6ce168ec14f5e963b466'
- '2c628c16e857ecdda1d3fedbe293859b'
- '7d652cc35fa06d9c25879a19b87870c3'
- 'fc6fd5e82abc6e334a8af57590f6f18f'
- 'd88c10a1748b5237e4b3ff0060ade71f'
- '113ae61cc0ae0f52cb257209dac4f1ac'
- 'b4964c57aa296264a76b2859c1b788d2'
- 'ae81f101c5e599c3d0d25e860d9fa47f'
- '2095514f883dda900722703fca769cb6'
- '1c31943863370d89f049863fbc66e7e1'
- '17cb99597437fce5d1521013a0cc6203'
- '66d7d8ff0795c8d3d5925aa347bac6da'
- '281c6a2f64ce55cfac8239cd8d73911f'
- '73706628da392f60a7951c8701a91521'
- '6b61097d6b4995927143b61f41d1fff8'
- 'c6b62bdb39fe4c47f02a551d80507064'
- 'e6bd72c396bc2d7fb0672717e2c7404c'
- 'b7f35d206f78eaf7b06c50f297c4c271'
- '0f42b7b649b1037a1aee40b3468b5d8f'
- '3d285ba94700f284ea2e735e6230eda1'
- 'e48c4d7960d61ab47cfd4211a6c7fbd0'
- '80383e1ce11b3fbd1c68fef57ac0ffb8'
- '876f44ade07f6913a1da68b9879a7b56'
- 'af0050d6edca018dae9b125362809dad'
- 'f77ec90dd8b103ed039496ea44ad681a'
- '8b571cead6aac17f3fc7c60aa21e079d'
- 'abd3f47d1fc604a08a26d57e5e8869ac'
- 'e2541cdd919bce1bc9eba203ef84db89'
- '770ba6cf385a8bc9e7afb9196f1bdcff'
- '88205442b625971fb4b6824025915417'
- 'd6d91c44daf4be4f5edc22bb03fc73a6'
- '2c702965e95980263e0ec95d813f5a66'
- 'a5aea8c3f0e11bdd998518566b85f901'
- '52af0e28a76344ef8825d53958db1531'
- '0ec835efc4d3680874634e674be5b0be'
- '2a539a44f69587dcdd4c9932bee20a08'
- '7291ce56c91cc4cd41cb998e4d72d08f'
- '4fbabf260ac1df93950a8961465ef616'
- '7b87da451735ed50576123860f1a4cce'
- 'b671d791be001ac0da5a32edcfc7885b'
- 'c34855d21d5db8db6a3a1435c817ea58'
- '0c3b342bf8538aefd5b2d3e2d248227d'
- '0d4f6456edd2d1f2f72c10ffacb4258b'
- 'e5cf745909c3bdae82d0183a4d5f4373'
- '7d9a7c1a0ed42090b93ac42d6779f3b3'
- 'ddcce3f1a86dac41ed979d035f634abe'
- '7a8908a08cc51a8e2b2f61d12af54b9a'
- '3e7f55a283d8c82e2db774817c7529ab'
- '0daab5308ca61dcfea0885b580228081'
- 'd5d7bb95e129f05a52562ca1d0d7a4a6'
- '48d55a6b58a7f2a0f57d62fd58b8f46b'
- '69e9548e172511be6dd618bf0b7b15ad'
- '6c87985c98c5aafb90487b41c9943936'
- 'b819d725f778d017dc8135668ba62ce6'
- '359c829305ebebb0fc30ab7668505ca5'
- '0633508808b10044a22ab9e74016fe1c'
- 'f948596f3d05e6cc4281af0b3cf4b5ec'
- '016c9a08415e13cb916ee1e1910b52ac'
- 'ecb7d94fb5cac2b3f52c6ebd9ac3f12e'
- 'b32c156f419f30fba0f17084bf31fd88'
- '8a98776fe71b5f72635d76316ab068ec'
- '9a166cdae5f2e2616741d3eafaa17181'
- '0b6bb798de27cbde7bcdd4a552448b02'
- 

[arch-commits] Commit in libreoffice-still-i18n/repos/extra-any (PKGBUILD PKGBUILD)

2016-11-04 Thread Andreas Radke
Date: Friday, November 4, 2016 @ 14:47:02
  Author: andyrtr
Revision: 279844

archrelease: copy trunk to extra-any

Added:
  libreoffice-still-i18n/repos/extra-any/PKGBUILD
(from rev 279843, libreoffice-still-i18n/trunk/PKGBUILD)
Deleted:
  libreoffice-still-i18n/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  878 -
 1 file changed, 523 insertions(+), 355 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-11-04 14:46:52 UTC (rev 279843)
+++ PKGBUILD2016-11-04 14:47:02 UTC (rev 279844)
@@ -1,355 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Maintainer: Bartłomiej Piotrowski 
-
-pkgbase=libreoffice-still-i18n
-
-pkgver=5.1.6
-pkgrel=1
-_rcver=${pkgver}.2
-#_oodlver=${pkgver}.0.beta1
-_oodlver=${pkgver}
-
-arch=('any')
-url="http://www.documentfoundation.org;
-license=('LGPL')
-makedepends=('rpmextract')
-
-#http://download.documentfoundation.org/mirrors/all.html
-_url="http://download.documentfoundation.org/libreoffice/stable;
-#_url="http://download.documentfoundation.org/libreoffice/testing;
-#_url="http://dev-builds.libreoffice.org/pre-releases;
-#_url="http://www.libreoffice.org/download/pre-releases;
-
-#_url+="/${pkgver}-rc2/rpm/x86"
-_url+="/${pkgver}/rpm/x86"
-#_url+="/rpm/x86"
-
-_languages=(
-  'af"Afrikaans"'
-  'am"Amharic"'
-  'ar"Arabic"'
-  'as"Assamese (India)"'
-  'ast   "Asturianu"'
-  'be"Belarusian"'
-  'bg"Bulgarian"'
-  'bn"Bengali"'
-  'bn-IN "Bengali (India)"'
-  'bo"Tibetan"'
-  'br"Breton"'
-  'brx   "Bodo"'
-  'bs"Bosnian"'
-  'ca"Catalan"'
-  'ca-valencia   "Catalan (Valencia)"'
-  'cs"Czech"'
-  'cy"Welsh"'
-  'da"Danish"'
-  'de"German"'
-  'dgo   "Dogri"'
-  'dz"Dzongkha"'
-  'el"Greek"'
-  'en-GB "English (GB)"'
-  'en-ZA "English (ZA)"'
-  'eo"Esperanto"'
-  'es"Spanish"'
-  'et"Estonian"'
-  'eu"Basque"'
-  'fa"Persian"'
-  'fi"Finnish"'
-  'fr"French"'
-  'ga"Irish"'
-  'gd"Gaelic (Scottish)"'
-  'gl"Galician"'
-  'gu"Gujarati"'
-  'he"Hebrew"'
-  'hi"Hindi"'
-  'hr"Croatian"'
-  'hu"Hungarian"'
-  'id"Indonesian"'
-  'is"Icelandic"'
-  'it"Italian"'
-  'ja"Japanese"'
-  'ka"Georgian"'
-  'kk"Kazakh"'
-  'km"Khmer (Cambodia)"'
-  'kmr-Latn  "Kurdish"'
-  'kn"Kannada"'
-  'ko"Korean"'
-  'kok   "Konkani"'
-  'ks"Kashmiri"'
-  'lb"Luxembourgish"'
-  'lo"Lao"'
-  'lt"Lithuanian"'
-  'lv"Latvian"'
-  'mai   "Maithili"'
-  'mk"Macedonian"'
-  'ml"Malayalam"'
-  'mn"Mongolian"'
-  'mni   "Manipuri"'
-  'mr"Marathi"'
-  'my"Burmese"'
-  'nb"Norwegian Bokmal"'
-  'ne"Nepali"'
-  'nl"Dutch"'
-  'nn"Norwegian Nynorsk"'
-  'nr"Ndebele (South)"'
-  'nso   "Northern Sotho"'
-  'oc"Occitan"'
-  'om"Oromo"'
-  'or"Oriya"'
-  'pa-IN "Punjabi (India)"'
-  'pl"Polish"'
-  'pt"Portuguese"'
-  'pt-BR "Portuguese (Brasil)"'
-  'ro"Romanian"'
-  'ru"Russian"'
-  'rw"Kinyarwanda"'
-  'sa-IN "Sanskrit (India)"'
-  'sat   "Santali"'
-  'sd"Sindhi"'
-  'si"Singhalese"'
-  'sid   "Sidama"'
-  'sk"Slovak"'
-  'sl"Slovenian"'
-  'sq"Albanien"'
-  'sr"Serbian"'
-  'sr-Latn   "Serbian (Latin)"'
-  'ss"Swati"'
-  'st"Southern Sotho"'
-  'sv"Swedish"'
-  'sw-TZ "Swahili (Tanzania)"'
-  'ta"Tamil"'
-  'te"Telugu"'
-  'tg"Tajik"'
-  'th"Thai"'
-  'tn"Tswana"'
-  'tr"Turkish"'
-  'ts"Tsonga"'
-  'tt"Tatar"'
-  'ug"Uighur"'
-  'uk"Ukrainian"'
-  'uz"Uzbek"'
-  've"Venda"'
-  'vi"Vietnamese"'
-  'xh"Xhosa"'
-  'zh-CN "Chinese (simplified)"'
-  'zh-TW "Chinese (traditional)"'
-  'zu"Zulu"'
-)
-md5sums=('5a30d57a576ec71f93ce8079413342ad'
- '6b6f24ab414a47997912032a8cbd1bc7'
- '9742cb61fbc2ef6bc40d2f8f23eaf61b'
- 'b29cc72fde618d4dba2ea9dd6bb28bb1'
- 'f1d829a0c40fd2761d36ffd3bfc1414e'
- 

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

2016-11-04 Thread Andreas Radke
Date: Friday, November 4, 2016 @ 14:44:33
  Author: andyrtr
Revision: 279842

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

Added:
  sqlite/repos/testing-i686/
  sqlite/repos/testing-i686/PKGBUILD
(from rev 279841, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-i686/license.txt
(from rev 279841, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 279841, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 279841, sqlite/trunk/license.txt)

+
 testing-i686/PKGBUILD  |  116 +++
 testing-i686/license.txt   |   33 
 testing-x86_64/PKGBUILD|  116 +++
 testing-x86_64/license.txt |   33 
 4 files changed, 298 insertions(+)

Copied: sqlite/repos/testing-i686/PKGBUILD (from rev 279841, 
sqlite/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-11-04 14:44:33 UTC (rev 279842)
@@ -0,0 +1,116 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer')
+_srcver=3150100
+_docver=${_srcver}
+#_docver=3080001
+pkgver=3.15.1
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('i686' 'x86_64')
+license=('custom:Public Domain')
+url="http://www.sqlite.org/;
+makedepends=('tcl' 'readline')
+source=(https://www.sqlite.org/2016/sqlite-src-${_srcver}.zip
+https://www.sqlite.org/2016/sqlite-doc-${_docver}.zip
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+sha1sums=('2e327da0763e6fcb38ba01c8159ee9c1db015c2c'
+  '25da810eb1aaa1058465513eea181ecbb8a42aaf'
+  'f34f6daa4ab3073d74e774aad21d66878cf26853')
+
+prepare() {
+  cd sqlite-src-$_srcver
+#  autoreconf -vfi
+}
+
+build() {
+  export CPPFLAGS="$CPPFLAGS -DSQLITE_ENABLE_COLUMN_METADATA=1 \
+ -DSQLITE_ENABLE_UNLOCK_NOTIFY \
+ -DSQLITE_ENABLE_DBSTAT_VTAB=1 \
+ -DSQLITE_ENABLE_FTS3_TOKENIZER=1 \
+ -DSQLITE_SECURE_DELETE"
+
+  # build sqlite
+  cd sqlite-src-$_srcver
+  ./configure --prefix=/usr \
+   --disable-static \
+   --disable-amalgamation \
+   --enable-fts3 \
+   --enable-fts4 \
+   --enable-fts5 \
+   --enable-rtree \
+   --enable-json1 \
+   TCLLIBDIR=/usr/lib/sqlite$pkgver
+  make
+  # build additional tools
+  make showdb showjournal showstat4 showwal sqldiff sqlite3_analyzer
+}
+
+package_sqlite() {
+
+ pkgdesc="A C library that implements an SQL database engine"
+ depends=('readline')
+ provides=("sqlite3=$pkgver")
+ replaces=("sqlite3")
+
+  cd sqlite-src-$_srcver
+  make DESTDIR=${pkgdir} install
+
+  install -m755 showdb showjournal showstat4 showwal sqldiff ${pkgdir}/usr/bin/
+
+  # install manpage
+  install -m755 -d ${pkgdir}/usr/share/man/man1
+  install -m644 sqlite3.1 ${pkgdir}/usr/share/man/man1/
+
+  # license - no linking required because pkgbase=pkgname
+  install -D -m644 ${srcdir}/license.txt 
${pkgdir}/usr/share/licenses/${pkgbase}/license.txt
+
+  # split out tcl extension
+  mkdir $srcdir/tcl
+  mv $pkgdir/usr/lib/sqlite* $srcdir/tcl
+}
+
+package_sqlite-tcl() {
+
+ pkgdesc="sqlite Tcl Extension Architecture (TEA)"
+ depends=('sqlite')
+ provides=("sqlite3-tcl=$pkgver")
+ replaces=("sqlite3-tcl")
+
+  install -m755 -d ${pkgdir}/usr/lib
+  mv $srcdir/tcl/* ${pkgdir}/usr/lib
+
+  # install manpage
+  install -m755 -d ${pkgdir}/usr/share/man/mann
+  install -m644 ${srcdir}/sqlite-src-$_srcver/autoconf/tea/doc/sqlite3.n 
${pkgdir}/usr/share/man/mann/
+
+  # link license
+  install -m755 -d ${pkgdir}/usr/share/licenses
+  ln -sf /usr/share/licenses/${pkgbase} 
"${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+package_sqlite-analyzer() {
+
+ pkgdesc="An analysis program for sqlite3 database files"
+ depends=('sqlite' 'tcl')
+
+  cd sqlite-src-$_srcver
+  install -m755 -d ${pkgdir}/usr/bin
+  install -m755 sqlite3_analyzer ${pkgdir}/usr/bin/
+}
+
+package_sqlite-doc() {
+
+ pkgdesc="most of the static HTML files that comprise this website, including 
all of the SQL Syntax and the C/C++ interface specs and other miscellaneous 
documentation"
+ #arch=('any') - not yet supported
+ provides=("sqlite3-doc=$pkgver")
+ replaces=("sqlite3-doc")
+
+  cd sqlite-doc-${_docver}
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgbase}
+  cp -R *  ${pkgdir}/usr/share/doc/${pkgbase}/
+}

Copied: sqlite/repos/testing-i686/license.txt (from rev 279841, 
sqlite/trunk/license.txt)
===
--- testing-i686/license.txt(rev 0)
+++ testing-i686/license.txt 

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

2016-11-04 Thread Andreas Radke
Date: Friday, November 4, 2016 @ 14:44:22
  Author: andyrtr
Revision: 279841

upgpkg: sqlite 3.15.1-1

upstream update 3.15.1

Modified:
  sqlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 14:35:37 UTC (rev 279840)
+++ PKGBUILD2016-11-04 14:44:22 UTC (rev 279841)
@@ -4,10 +4,10 @@
 
 pkgbase="sqlite"
 pkgname=('sqlite' 'sqlite-tcl' 'sqlite-doc' 'sqlite-analyzer')
-_srcver=315
+_srcver=3150100
 _docver=${_srcver}
 #_docver=3080001
-pkgver=3.15.0
+pkgver=3.15.1
 pkgrel=1
 pkgdesc="A C library that implements an SQL database engine"
 arch=('i686' 'x86_64')
@@ -14,12 +14,12 @@
 license=('custom:Public Domain')
 url="http://www.sqlite.org/;
 makedepends=('tcl' 'readline')
-source=(http://www.sqlite.org/2016/sqlite-src-${_srcver}.zip
-http://www.sqlite.org/2016/sqlite-doc-${_docver}.zip
+source=(https://www.sqlite.org/2016/sqlite-src-${_srcver}.zip
+https://www.sqlite.org/2016/sqlite-doc-${_docver}.zip
 license.txt)
 options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
-sha1sums=('48aaa84b12f4c6c500ac2d7b99fa5efbd5183bf1'
-  '0a0537702edefeff71355ee54ccced88d5035198'
+sha1sums=('2e327da0763e6fcb38ba01c8159ee9c1db015c2c'
+  '25da810eb1aaa1058465513eea181ecbb8a42aaf'
   'f34f6daa4ab3073d74e774aad21d66878cf26853')
 
 prepare() {


[arch-commits] Commit in xf86-video-intel/repos (6 files)

2016-11-04 Thread Andreas Radke
Date: Friday, November 4, 2016 @ 14:35:37
  Author: andyrtr
Revision: 279840

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

Added:
  xf86-video-intel/repos/testing-i686/
  xf86-video-intel/repos/testing-i686/PKGBUILD
(from rev 279839, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/testing-i686/xf86-video-intel.install
(from rev 279839, xf86-video-intel/trunk/xf86-video-intel.install)
  xf86-video-intel/repos/testing-x86_64/
  xf86-video-intel/repos/testing-x86_64/PKGBUILD
(from rev 279839, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/testing-x86_64/xf86-video-intel.install
(from rev 279839, xf86-video-intel/trunk/xf86-video-intel.install)

-+
 testing-i686/PKGBUILD   |   65 ++
 testing-i686/xf86-video-intel.install   |   21 +
 testing-x86_64/PKGBUILD |   65 ++
 testing-x86_64/xf86-video-intel.install |   21 +
 4 files changed, 172 insertions(+)

Copied: xf86-video-intel/repos/testing-i686/PKGBUILD (from rev 279839, 
xf86-video-intel/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-11-04 14:35:37 UTC (rev 279840)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-intel
+_commit=bf7316a # 7 digits
+pkgver=2.99.917+725+gbf7316a
+pkgrel=1
+epoch=1
+arch=(i686 x86_64)
+url="https://01.org/linuxgraphics;
+license=('custom')
+install=$pkgname.install
+pkgdesc="X.org Intel i810/i830/i915/945G/G965+ video drivers"
+depends=('mesa-dri' 'libxvmc' 'pixman' 'xcb-util>=0.3.9')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=20' 'libx11' 
'libxrender'
+ # additional deps for intel-virtual-output
+ 'libxrandr' 'libxinerama' 'libxcursor' 'libxtst' 'libxss'
+ # additional for git snapshot
+ 'git')
+optdepends=('libxrandr: for intel-virtual-output'
+'libxinerama: for intel-virtual-output'
+'libxcursor: for intel-virtual-output'
+'libxtst: for intel-virtual-output'
+'libxss: for intel-virtual-output')
+replaces=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
+provides=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
+conflicts=('xorg-server<1.16' 'X-ABI-VIDEODRV_VERSION<20' 
'X-ABI-VIDEODRV_VERSION>=21'
+   'xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xf86-video-i810' 
'xf86-video-intel-legacy')
+groups=('xorg-drivers' 'xorg')
+#source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+source=("git://anongit.freedesktop.org/xorg/driver/xf86-video-intel#commit=${_commit}")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --long | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr \
+--libexecdir=/usr/lib \
+--with-default-dri=3
+  make
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+package() {
+  cd $pkgname
+
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Copied: xf86-video-intel/repos/testing-i686/xf86-video-intel.install (from rev 
279839, xf86-video-intel/trunk/xf86-video-intel.install)
===
--- testing-i686/xf86-video-intel.install   (rev 0)
+++ testing-i686/xf86-video-intel.install   2016-11-04 14:35:37 UTC (rev 
279840)
@@ -0,0 +1,21 @@
+post_install() {
+  cat <>> This driver now uses DRI3 as the default Direct Rendering
+Infrastructure. You can try falling back to DRI2 if you run
+into trouble. To do so, save a file with the following 
+content as /etc/X11/xorg.conf.d/20-intel.conf :
+  Section "Device"
+Identifier  "Intel Graphics"
+Driver  "intel"
+Option  "DRI" "2" # DRI3 is now default 
+#Option  "AccelMethod"  "sna" # default
+#Option  "AccelMethod"  "uxa" # fallback
+  EndSection
+MSG
+}
+
+post_upgrade() {
+  if (( $(vercmp $2 1:2.99.917+684+g6988b87-3) < 0 )); then
+post_install
+  fi
+}

Copied: xf86-video-intel/repos/testing-x86_64/PKGBUILD (from rev 279839, 
xf86-video-intel/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-11-04 14:35:37 UTC (rev 279840)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-intel
+_commit=bf7316a # 7 digits
+pkgver=2.99.917+725+gbf7316a
+pkgrel=1
+epoch=1
+arch=(i686 x86_64)

[arch-commits] Commit in xf86-video-intel/trunk (PKGBUILD)

2016-11-04 Thread Andreas Radke
Date: Friday, November 4, 2016 @ 14:35:25
  Author: andyrtr
Revision: 279839

upgpkg: xf86-video-intel 1:2.99.917+725+gbf7316a-1

update to latest git commit

Modified:
  xf86-video-intel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 14:25:13 UTC (rev 279838)
+++ PKGBUILD2016-11-04 14:35:25 UTC (rev 279839)
@@ -3,8 +3,8 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xf86-video-intel
-_commit=714052f # 7 digits
-pkgver=2.99.917+722+g714052f
+_commit=bf7316a # 7 digits
+pkgver=2.99.917+725+gbf7316a
 pkgrel=1
 epoch=1
 arch=(i686 x86_64)


[arch-commits] Commit in docbook-xsl/repos/extra-any (5 files)

2016-11-04 Thread Jan de Groot
Date: Friday, November 4, 2016 @ 13:36:22
  Author: jgc
Revision: 279836

archrelease: copy trunk to extra-any

Added:
  docbook-xsl/repos/extra-any/765567_non-recursive_string_subst.patch
(from rev 279835, docbook-xsl/trunk/765567_non-recursive_string_subst.patch)
  docbook-xsl/repos/extra-any/PKGBUILD
(from rev 279835, docbook-xsl/trunk/PKGBUILD)
  docbook-xsl/repos/extra-any/docbook-xsl.install
(from rev 279835, docbook-xsl/trunk/docbook-xsl.install)
Deleted:
  docbook-xsl/repos/extra-any/PKGBUILD
  docbook-xsl/repos/extra-any/docbook-xsl.install

-+
 765567_non-recursive_string_subst.patch |   30 ++
 PKGBUILD|   77 +++-
 docbook-xsl.install |   82 +++---
 3 files changed, 113 insertions(+), 76 deletions(-)

Copied: docbook-xsl/repos/extra-any/765567_non-recursive_string_subst.patch 
(from rev 279835, docbook-xsl/trunk/765567_non-recursive_string_subst.patch)
===
--- 765567_non-recursive_string_subst.patch (rev 0)
+++ 765567_non-recursive_string_subst.patch 2016-11-04 13:36:22 UTC (rev 
279836)
@@ -0,0 +1,30 @@
+Description: use EXSLT "replace" function when available
+ A recursive implementation  of string.subst is problematic,
+ long strings with many matches will cause stack overflows.
+Author: Peter De Wachter 
+Bug-Debian: https://bugs.debian.org/750593
+
+--- docbook-xsl-1.78.1+dfsg.orig/docbook-xsl/lib/lib.xsl
 docbook-xsl-1.78.1+dfsg/docbook-xsl/lib/lib.xsl
+@@ -10,7 +10,10 @@
+  This module implements DTD-independent functions
+ 
+   -->
+-http://www.w3.org/1999/XSL/Transform; 
version="1.0">
++http://www.w3.org/1999/XSL/Transform;
++xmlns:str="http://exslt.org/strings;
++exclude-result-prefixes="str"
++version="1.0">
+ 
+ 
+   
+@@ -56,6 +59,9 @@
+   
+ 
+   
++
++  
++
+ 
+   
+ 

Deleted: PKGBUILD
===
--- PKGBUILD2016-11-04 13:36:18 UTC (rev 279835)
+++ PKGBUILD2016-11-04 13:36:22 UTC (rev 279836)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen 
-# Contributor: Jan de Groot 
-# Contributor: Sean Middleditch 
-# Contributor: Daniel J Griffiths 
-
-pkgname=docbook-xsl
-pkgver=1.79.1
-pkgrel=1
-pkgdesc='XML stylesheets for Docbook-xml transformations'
-arch=('any')
-license=('custom')
-url='http://docbook.sourceforge.net/'
-depends=('libxml2' 'libxslt' 'docbook-xml')
-install="$pkgname.install"
-source=("http://downloads.sourceforge.net/docbook/${pkgname}-${pkgver}.tar.bz2;)
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   _pkgroot=${pkgdir}/usr/share/xml/docbook/xsl-stylesheets-${pkgver}
-
-install -dm755 ${_pkgroot}
-   install -m644 VERSION VERSION.xsl ${_pkgroot}
-
-   for fn in assembly common eclipse epub epub3 fo highlighting html 
htmlhelp javahelp lib \
-  manpages params profiling roundtrip template website xhtml 
xhtml-1_1 xhtml5; do
-   install -dm755 ${_pkgroot}/${fn}
-   install -m644 ${fn}/*.{xml,xsl,dtd,ent} ${_pkgroot}/${fn} || 
true  # ignore missing files
-   done
-
-   install -dm755 ${pkgdir}/etc/xml
-   install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}
-md5sums=('b48cbf929a2ad85e6672f710777ca7bc')

Copied: docbook-xsl/repos/extra-any/PKGBUILD (from rev 279835, 
docbook-xsl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-11-04 13:36:22 UTC (rev 279836)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Contributor: Jan de Groot 
+# Contributor: Sean Middleditch 
+# Contributor: Daniel J Griffiths 
+
+pkgname=docbook-xsl
+pkgver=1.79.1
+pkgrel=2
+pkgdesc='XML stylesheets for Docbook-xml transformations'
+arch=('any')
+license=('custom')
+url='http://docbook.sourceforge.net/'
+depends=('libxml2' 'libxslt' 'docbook-xml')
+install="$pkgname.install"
+source=("https://downloads.sourceforge.net/docbook/${pkgname}-${pkgver}.tar.bz2;
+765567_non-recursive_string_subst.patch)
+md5sums=('b48cbf929a2ad85e6672f710777ca7bc'
+ 'e0dbf66b23121ae789f1930fe90fae0c')
+
+prepare() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   patch -Np2 -i ../765567_non-recursive_string_subst.patch
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   _pkgroot=${pkgdir}/usr/share/xml/docbook/xsl-stylesheets-${pkgver}
+
+install -dm755 ${_pkgroot}
+   install -m644 VERSION 

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

2016-11-04 Thread Jan de Groot
Date: Friday, November 4, 2016 @ 13:36:18
  Author: jgc
Revision: 279835

upgpkg: docbook-xsl 1.79.1-2

Add non-recursive string_subst function from 
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=765567

Added:
  docbook-xsl/trunk/765567_non-recursive_string_subst.patch
Modified:
  docbook-xsl/trunk/PKGBUILD

-+
 765567_non-recursive_string_subst.patch |   30 ++
 PKGBUILD|   13 ++---
 2 files changed, 40 insertions(+), 3 deletions(-)

Added: 765567_non-recursive_string_subst.patch
===
--- 765567_non-recursive_string_subst.patch (rev 0)
+++ 765567_non-recursive_string_subst.patch 2016-11-04 13:36:18 UTC (rev 
279835)
@@ -0,0 +1,30 @@
+Description: use EXSLT "replace" function when available
+ A recursive implementation  of string.subst is problematic,
+ long strings with many matches will cause stack overflows.
+Author: Peter De Wachter 
+Bug-Debian: https://bugs.debian.org/750593
+
+--- docbook-xsl-1.78.1+dfsg.orig/docbook-xsl/lib/lib.xsl
 docbook-xsl-1.78.1+dfsg/docbook-xsl/lib/lib.xsl
+@@ -10,7 +10,10 @@
+  This module implements DTD-independent functions
+ 
+   -->
+-http://www.w3.org/1999/XSL/Transform; 
version="1.0">
++http://www.w3.org/1999/XSL/Transform;
++xmlns:str="http://exslt.org/strings;
++exclude-result-prefixes="str"
++version="1.0">
+ 
+ 
+   
+@@ -56,6 +59,9 @@
+   
+ 
+   
++
++  
++
+ 
+   
+ 

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 12:49:02 UTC (rev 279834)
+++ PKGBUILD2016-11-04 13:36:18 UTC (rev 279835)
@@ -6,7 +6,7 @@
 
 pkgname=docbook-xsl
 pkgver=1.79.1
-pkgrel=1
+pkgrel=2
 pkgdesc='XML stylesheets for Docbook-xml transformations'
 arch=('any')
 license=('custom')
@@ -13,8 +13,16 @@
 url='http://docbook.sourceforge.net/'
 depends=('libxml2' 'libxslt' 'docbook-xml')
 install="$pkgname.install"
-source=("http://downloads.sourceforge.net/docbook/${pkgname}-${pkgver}.tar.bz2;)
+source=("https://downloads.sourceforge.net/docbook/${pkgname}-${pkgver}.tar.bz2;
+765567_non-recursive_string_subst.patch)
+md5sums=('b48cbf929a2ad85e6672f710777ca7bc'
+ 'e0dbf66b23121ae789f1930fe90fae0c')
 
+prepare() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   patch -Np2 -i ../765567_non-recursive_string_subst.patch
+}
+
 package() {
cd ${srcdir}/${pkgname}-${pkgver}
 
@@ -32,4 +40,3 @@
install -dm755 ${pkgdir}/etc/xml
install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }
-md5sums=('b48cbf929a2ad85e6672f710777ca7bc')


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

2016-11-04 Thread Dave Reisner
Date: Friday, November 4, 2016 @ 12:49:02
  Author: dreisner
Revision: 279834

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

Added:
  systemd/repos/testing-i686/
  systemd/repos/testing-i686/PKGBUILD
(from rev 279833, systemd/trunk/PKGBUILD)
  systemd/repos/testing-i686/arch.conf
(from rev 279833, systemd/trunk/arch.conf)
  systemd/repos/testing-i686/initcpio-hook-udev
(from rev 279833, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-i686/initcpio-install-systemd
(from rev 279833, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-i686/initcpio-install-udev
(from rev 279833, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-i686/loader.conf
(from rev 279833, systemd/trunk/loader.conf)
  systemd/repos/testing-i686/splash-arch.bmp
(from rev 279833, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-i686/systemd.install
(from rev 279833, systemd/trunk/systemd.install)
  systemd/repos/testing-i686/udev-hwdb.hook
(from rev 279833, systemd/trunk/udev-hwdb.hook)
  systemd/repos/testing-x86_64/
  systemd/repos/testing-x86_64/PKGBUILD
(from rev 279833, systemd/trunk/PKGBUILD)
  systemd/repos/testing-x86_64/arch.conf
(from rev 279833, systemd/trunk/arch.conf)
  systemd/repos/testing-x86_64/initcpio-hook-udev
(from rev 279833, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-x86_64/initcpio-install-systemd
(from rev 279833, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-x86_64/initcpio-install-udev
(from rev 279833, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-x86_64/loader.conf
(from rev 279833, systemd/trunk/loader.conf)
  systemd/repos/testing-x86_64/splash-arch.bmp
(from rev 279833, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-x86_64/systemd.install
(from rev 279833, systemd/trunk/systemd.install)
  systemd/repos/testing-x86_64/udev-hwdb.hook
(from rev 279833, systemd/trunk/udev-hwdb.hook)

-+
 testing-i686/PKGBUILD   |  181 +++
 testing-i686/arch.conf  |7 +
 testing-i686/initcpio-hook-udev |   22 +++
 testing-i686/initcpio-install-systemd   |  195 ++
 testing-i686/initcpio-install-udev  |   28 
 testing-i686/loader.conf|1 
 testing-i686/systemd.install|   80 
 testing-i686/udev-hwdb.hook |   11 +
 testing-x86_64/PKGBUILD |  181 +++
 testing-x86_64/arch.conf|7 +
 testing-x86_64/initcpio-hook-udev   |   22 +++
 testing-x86_64/initcpio-install-systemd |  195 ++
 testing-x86_64/initcpio-install-udev|   28 
 testing-x86_64/loader.conf  |1 
 testing-x86_64/systemd.install  |   80 
 testing-x86_64/udev-hwdb.hook   |   11 +
 16 files changed, 1050 insertions(+)

Copied: systemd/repos/testing-i686/PKGBUILD (from rev 279833, 
systemd/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-11-04 12:49:02 UTC (rev 279834)
@@ -0,0 +1,181 @@
+# Maintainer: Dave Reisner 
+# Maintainer: Tom Gundersen 
+
+pkgbase=systemd
+pkgname=('systemd' 'libsystemd' 'systemd-sysvcompat')
+pkgver=232
+pkgrel=1
+arch=('i686' 'x86_64')
+url="https://www.github.com/systemd/systemd;
+makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gperf' 'lz4' 'xz' 'pam' 'libelf'
+ 'intltool' 'iptables' 'kmod' 'libcap' 'libidn' 'libgcrypt'
+ 'libmicrohttpd' 'libxslt' 'util-linux' 'linux-api-headers'
+ 'python-lxml' 'quota-tools' 'shadow' 'gnu-efi-libs' 'git')
+options=('strip')
+source=("git://github.com/systemd/systemd.git#tag=v$pkgver"
+'initcpio-hook-udev'
+'initcpio-install-systemd'
+'initcpio-install-udev'
+'arch.conf'
+'loader.conf'
+'splash-arch.bmp'
+'udev-hwdb.hook')
+sha512sums=('SKIP'
+
'f0d933e8c6064ed830dec54049b0a01e27be87203208f6ae982f10fb4eddc7258cb2919d594cbfb9a33e74c3510cfd682f3416ba8e804387ab87d1a217eb4b73'
+
'5a3cf61bb0b8da6061c13fbfce7191c545ccf4c95c5bbf3e47f2b41225f35a4a366e691a04f90b76fd24536ea4cb29ff24585408d4a9972cd0f1279544604abb'
+
'fec639de0d99967ed3e67289eff5ff78fff0c5829d350e73bed536a8391f1daa1d118d72dbdc1f480ffd33fc22b72f4817d0973bd09ec7f182fd26ad87b24355'
+
'61032d29241b74a0f28446f8cf1be0e8ec46d0847a61dadb2a4f096e8686d5f57fe5c72bcf386003f6520bc4b5856c32d63bf3efe7eb0bc0deefc9f68159e648'
+
'c416e2121df83067376bcaacb58c05b01990f4614ad9de657d74b6da3efa441af251d13bf21e3f0f71ddcb4c9ea658b81da3d915667dc5c309c87ec32a1cb5a5'
+

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

2016-11-04 Thread Dave Reisner
Date: Friday, November 4, 2016 @ 12:26:03
  Author: dreisner
Revision: 279833

upgpkg: systemd 232-1

Modified:
  systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 11:59:24 UTC (rev 279832)
+++ PKGBUILD2016-11-04 12:26:03 UTC (rev 279833)
@@ -3,15 +3,15 @@
 
 pkgbase=systemd
 pkgname=('systemd' 'libsystemd' 'systemd-sysvcompat')
-pkgver=231
-pkgrel=4
+pkgver=232
+pkgrel=1
 arch=('i686' 'x86_64')
-url="http://www.freedesktop.org/wiki/Software/systemd;
+url="https://www.github.com/systemd/systemd;
 makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gperf' 'lz4' 'xz' 'pam' 'libelf'
  'intltool' 'iptables' 'kmod' 'libcap' 'libidn' 'libgcrypt'
  'libmicrohttpd' 'libxslt' 'util-linux' 'linux-api-headers'
  'python-lxml' 'quota-tools' 'shadow' 'gnu-efi-libs' 'git')
-options=('strip' 'debug')
+options=('strip')
 source=("git://github.com/systemd/systemd.git#tag=v$pkgver"
 'initcpio-hook-udev'
 'initcpio-install-systemd'
@@ -20,21 +20,16 @@
 'loader.conf'
 'splash-arch.bmp'
 'udev-hwdb.hook')
-md5sums=('SKIP'
- '90ea67a7bb237502094914622a39e281'
- '55ea7d81c02d090b65c42a88f1a5a21a'
- '1b3aa3a0551b08af9305d33f85b5c2fc'
- '20ead378f5d6df4b2a3e670301510a7d'
- 'ddaef54f68f6c86c6c07835fc668f62a'
- '1e2f9a8b0fa32022bf0a8f39123e5f4e'
- 'a475a5ed8f03fb0f6b58b4684998d05c')
+sha512sums=('SKIP'
+
'f0d933e8c6064ed830dec54049b0a01e27be87203208f6ae982f10fb4eddc7258cb2919d594cbfb9a33e74c3510cfd682f3416ba8e804387ab87d1a217eb4b73'
+
'5a3cf61bb0b8da6061c13fbfce7191c545ccf4c95c5bbf3e47f2b41225f35a4a366e691a04f90b76fd24536ea4cb29ff24585408d4a9972cd0f1279544604abb'
+
'fec639de0d99967ed3e67289eff5ff78fff0c5829d350e73bed536a8391f1daa1d118d72dbdc1f480ffd33fc22b72f4817d0973bd09ec7f182fd26ad87b24355'
+
'61032d29241b74a0f28446f8cf1be0e8ec46d0847a61dadb2a4f096e8686d5f57fe5c72bcf386003f6520bc4b5856c32d63bf3efe7eb0bc0deefc9f68159e648'
+
'c416e2121df83067376bcaacb58c05b01990f4614ad9de657d74b6da3efa441af251d13bf21e3f0f71ddcb4c9ea658b81da3d915667dc5c309c87ec32a1cb5a5'
+
'5a1d78b5170da5abe3d18fdf9f2c3a4d78f15ba7d1ee9ec2708c4c9c2e28973469bc19386f70b3cf32ffafbe4fcc4303e5ebbd6d5187a1df3314ae0965b25e75'
+
'888ab01bc6e09beb08d7126472c34c9e1aa35ea34e62a09e900ae34c93b1de2fcc988586efd8d0dc962393974f45c77b206d59a86cf53e370f061bf9a1b1a862')
 
 _backports=(
-  '531ac2b2349da02acc9c382849758e07eb92b020'  # If the notification message 
length is 0, ignore the message
-  '8523bf7dd514a3a2c6114b7b8fb8f308b4f09fc4'  # pid1: process zero-length 
notification messages again
-  '9987750e7a4c62e0eb8473603150596ba7c3a015'  # pid1: don't return any error 
in manager_dispatch_notify_fd()
-  'bd64d82c1c0e3fe2a5f9b3dd9132d62834f50b2d'  # Revert "pid1: reconnect to the 
console before being re-executed"
-  'bd5b9f0a12dd9c1947b11534e99c395ddf44caa9'  # systemctl: suppress errors 
with "show" for nonexistent units and properties
 )
 
 prepare() {
@@ -160,8 +155,7 @@
   license=('GPL2')
   provides=('libsystemd.so' 'libudev.so')
 
-  # TODO(dreisner): for v232, this should be install-rootlibLTLIBRARIES.
-  make -C "$pkgbase" DESTDIR="$pkgdir" install-libLTLIBRARIES
+  make -C "$pkgbase" DESTDIR="$pkgdir" install-rootlibLTLIBRARIES
 }
 
 package_systemd-sysvcompat() {


[arch-commits] Commit in iasl/repos (12 files)

2016-11-04 Thread Laurent Carlier
Date: Friday, November 4, 2016 @ 12:16:27
  Author: lcarlier
Revision: 194662

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

Added:
  iasl/repos/community-i686/LICENSE
(from rev 194661, iasl/trunk/LICENSE)
  iasl/repos/community-i686/PKGBUILD
(from rev 194661, iasl/trunk/PKGBUILD)
  iasl/repos/community-i686/iasl.install
(from rev 194661, iasl/trunk/iasl.install)
  iasl/repos/community-x86_64/LICENSE
(from rev 194661, iasl/trunk/LICENSE)
  iasl/repos/community-x86_64/PKGBUILD
(from rev 194661, iasl/trunk/PKGBUILD)
  iasl/repos/community-x86_64/iasl.install
(from rev 194661, iasl/trunk/iasl.install)
Deleted:
  iasl/repos/community-i686/LICENSE
  iasl/repos/community-i686/PKGBUILD
  iasl/repos/community-i686/iasl.install
  iasl/repos/community-x86_64/LICENSE
  iasl/repos/community-x86_64/PKGBUILD
  iasl/repos/community-x86_64/iasl.install

---+
 /LICENSE  |   66 +++
 /PKGBUILD |   74 
 /iasl.install |   34 ++
 community-i686/LICENSE|   33 -
 community-i686/PKGBUILD   |   37 
 community-i686/iasl.install   |   17 -
 community-x86_64/LICENSE  |   33 -
 community-x86_64/PKGBUILD |   37 
 community-x86_64/iasl.install |   17 -
 9 files changed, 174 insertions(+), 174 deletions(-)

Deleted: community-i686/LICENSE
===
--- community-i686/LICENSE  2016-11-04 12:16:17 UTC (rev 194661)
+++ community-i686/LICENSE  2016-11-04 12:16:27 UTC (rev 194662)
@@ -1,33 +0,0 @@
-IMPORTANT - READ BEFORE COPYING, INSTALLING OR USING.
-Do not use or load this software and any associated materials (collectively, 
the "Software") until you have carefully read the following terms and 
conditions. By loading or using the Software, you agree to the terms of this 
Agreement. If you do not wish to so agree, do not install or use the Software.
-
-1. COPYRIGHT NOTICE
-Some or all of this work - Copyright © 1999-2008, Intel Corp. All rights 
reserved.
-
-2. LICENSE
-
-2.1. This is your license from Intel Corp. under its intellectual property 
rights. You may have additional license terms from the party that provided you 
this software, covering your right to use that party's intellectual property 
rights.
-
-2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a copy 
of the source code appearing in this file ("Covered Code") an irrevocable, 
perpetual, worldwide license under Intel's copyrights in the base code 
distributed originally by Intel ("Original Intel Code") to copy, make 
derivatives, distribute, use and display any portion of the Covered Code in any 
form, with the right to sublicense such rights; and
-
-2.3. Intel grants Licensee a non-exclusive and non-transferable patent license 
(with the right to sublicense), under only those claims of Intel patents that 
are infringed by the Original Intel Code, to make, use, sell, offer to sell, 
and import the Covered Code and derivative works thereof solely to the minimum 
extent necessary to exercise the above copyright license, and in no event shall 
the patent license extend to any additions to or modifications of the Original 
Intel Code. No other license or right is granted directly or by implication, 
estoppel or otherwise; The above copyright and patent license is granted only 
if the following conditions are met:
-
-3. CONDITIONS
-
-3.1. Redistribution of Source with Rights to Further Distribute Source. 
Redistribution of source code of any substantial portion of the Covered Code or 
modification with rights to further distribute source must include the above 
Copyright Notice, the above License, this list of Conditions, and the following 
Disclaimer and Export Compliance provision. In addition, Licensee must cause 
all Covered Code to which Licensee contributes to contain a file documenting 
the changes Licensee made to create that Covered Code and the date of any 
change. Licensee must include in that file the documentation of any changes 
made by any predecessor Licensee. Licensee must include a prominent statement 
that the modification is derived, directly or indirectly, from Original Intel 
Code.
-
-3.2. Redistribution of Source with no Rights to Further Distribute Source. 
Redistribution of source code of any substantial portion of the Covered Code or 
modification without rights to further distribute source must include the 
following Disclaimer and Export Compliance provision in the documentation 
and/or other materials provided with distribution. In addition, Licensee may 
not authorize further sublicense of source of any portion of the Covered Code, 
and must include terms to the effect that the license from Licensee to its 
licensee is limited to the 

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

2016-11-04 Thread Laurent Carlier
Date: Friday, November 4, 2016 @ 12:16:17
  Author: lcarlier
Revision: 194661

upgpkg: iasl 20160930-1

upstream update 20160930

Modified:
  iasl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 11:23:38 UTC (rev 194660)
+++ PKGBUILD2016-11-04 12:16:17 UTC (rev 194661)
@@ -4,7 +4,7 @@
 # Contributor: Alessio 'mOlOk' Bolognino 
 
 pkgname=iasl
-pkgver=20160831
+pkgver=20160930
 pkgrel=1
 pkgdesc="Intel ACPI Source Language compiler"
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 #install=iasl.install
 source=(http://acpica.org/sites/acpica/files/acpica-unix-${pkgver}.tar.gz
LICENSE)
-md5sums=('09d7d59b92ad41e1a5e4f6adb043513c'
+md5sums=('cd355f3f1e21f2ee76ba6e91e0908a33'
  '8615526144f69ea4e870d9bc37df9b29')
 
 build() {


[arch-commits] Commit in hdparm/repos (10 files)

2016-11-04 Thread Tobias Powalowski
Date: Friday, November 4, 2016 @ 11:59:21
  Author: tpowa
Revision: 279831

db-move: moved hdparm from [testing] to [core] (i686, x86_64)

Added:
  hdparm/repos/core-i686/PKGBUILD
(from rev 279830, hdparm/repos/testing-i686/PKGBUILD)
  hdparm/repos/core-i686/wiper.sh.2_6.max-ranges.patch
(from rev 279830, hdparm/repos/testing-i686/wiper.sh.2_6.max-ranges.patch)
  hdparm/repos/core-x86_64/PKGBUILD
(from rev 279830, hdparm/repos/testing-x86_64/PKGBUILD)
  hdparm/repos/core-x86_64/wiper.sh.2_6.max-ranges.patch
(from rev 279830, hdparm/repos/testing-x86_64/wiper.sh.2_6.max-ranges.patch)
Deleted:
  hdparm/repos/core-i686/PKGBUILD
  hdparm/repos/core-i686/wiper.sh.2_6.max-ranges.patch
  hdparm/repos/core-x86_64/PKGBUILD
  hdparm/repos/core-x86_64/wiper.sh.2_6.max-ranges.patch
  hdparm/repos/testing-i686/
  hdparm/repos/testing-x86_64/

---+
 /PKGBUILD |   88 ++
 /wiper.sh.2_6.max-ranges.patch|  168 
 core-i686/PKGBUILD|   44 ---
 core-i686/wiper.sh.2_6.max-ranges.patch   |   84 --
 core-x86_64/PKGBUILD  |   44 ---
 core-x86_64/wiper.sh.2_6.max-ranges.patch |   84 --
 6 files changed, 256 insertions(+), 256 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2016-11-04 10:25:39 UTC (rev 279830)
+++ core-i686/PKGBUILD  2016-11-04 11:59:21 UTC (rev 279831)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Paul Mattal 
-
-pkgname=hdparm
-pkgver=9.48
-pkgrel=1
-pkgdesc="A shell utility for manipulating Linux IDE drive/driver parameters"
-arch=(i686 x86_64)
-depends=('glibc')
-optdepends=('sh: required by idectl and ultrabayd')
-source=(http://downloads.sourceforge.net/sourceforge/hdparm/${pkgname}-${pkgver}.tar.gz
-wiper.sh.2_6.max-ranges.patch)
-license=('BSD')
-url="http://sourceforge.net/projects/hdparm/;
-optdepends=('bash: for wiper.sh script')
-options=('emptydirs')
-md5sums=('213efdbe7471fad3408198918e164354'
- '74e368f384166a7710b447573cda120a')
-
-prepare() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  # Fix Range input/output error when wiping Intel G2 and OCZ drives
-  patch -Np1 -i $srcdir/wiper.sh.2_6.max-ranges.patch
-}
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  # install
-  mkdir -p ${pkgdir}/usr/bin
-  make DESTDIR=${pkgdir} sbindir=/usr/bin install
-  install -m755 contrib/idectl ${pkgdir}/usr/bin
-  install -m755 contrib/ultrabayd ${pkgdir}/usr/bin
-
-  install -D -m 0644 $srcdir/$pkgname-$pkgver/wiper/README.txt 
$pkgdir/usr/share/doc/wiper/README.txt
-  install -D -m 0755 $srcdir/$pkgname-$pkgver/wiper/wiper.sh 
$pkgdir/usr/bin/wiper.sh
-
-  #install license file
-  install -D -m 644 LICENSE.TXT $pkgdir/usr/share/licenses/hdparm/LICENSE.TXT
-}

Copied: hdparm/repos/core-i686/PKGBUILD (from rev 279830, 
hdparm/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2016-11-04 11:59:21 UTC (rev 279831)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Paul Mattal 
+
+pkgname=hdparm
+pkgver=9.50
+pkgrel=1
+pkgdesc="A shell utility for manipulating Linux IDE drive/driver parameters"
+arch=(i686 x86_64)
+depends=('glibc')
+optdepends=('sh: required by idectl and ultrabayd')
+source=(http://downloads.sourceforge.net/sourceforge/hdparm/${pkgname}-${pkgver}.tar.gz
+wiper.sh.2_6.max-ranges.patch)
+license=('BSD')
+url="http://sourceforge.net/projects/hdparm/;
+optdepends=('bash: for wiper.sh script')
+options=('emptydirs')
+md5sums=('d380062ad6c4b40076736efbb640f1f5'
+ '74e368f384166a7710b447573cda120a')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  # Fix Range input/output error when wiping Intel G2 and OCZ drives
+  patch -Np1 -i $srcdir/wiper.sh.2_6.max-ranges.patch
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  # install
+  mkdir -p ${pkgdir}/usr/bin
+  make DESTDIR=${pkgdir} sbindir=/usr/bin install
+  install -m755 contrib/idectl ${pkgdir}/usr/bin
+  install -m755 contrib/ultrabayd ${pkgdir}/usr/bin
+
+  install -D -m 0644 $srcdir/$pkgname-$pkgver/wiper/README.txt 
$pkgdir/usr/share/doc/wiper/README.txt
+  install -D -m 0755 $srcdir/$pkgname-$pkgver/wiper/wiper.sh 
$pkgdir/usr/bin/wiper.sh
+
+  #install license file
+  install -D -m 644 LICENSE.TXT $pkgdir/usr/share/licenses/hdparm/LICENSE.TXT
+}

Deleted: core-i686/wiper.sh.2_6.max-ranges.patch
===
--- core-i686/wiper.sh.2_6.max-ranges.patch 2016-11-04 10:25:39 UTC (rev 
279830)
+++ core-i686/wiper.sh.2_6.max-ranges.patch 2016-11-04 11:59:21 UTC (rev 
279831)
@@ 

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

2016-11-04 Thread Tobias Powalowski
Date: Friday, November 4, 2016 @ 11:59:24
  Author: tpowa
Revision: 279832

db-move: moved pciutils from [testing] to [core] (i686, x86_64)

Added:
  pciutils/repos/core-i686/PKGBUILD
(from rev 279831, pciutils/repos/testing-i686/PKGBUILD)
  pciutils/repos/core-x86_64/PKGBUILD
(from rev 279831, pciutils/repos/testing-x86_64/PKGBUILD)
Deleted:
  pciutils/repos/core-i686/PKGBUILD
  pciutils/repos/core-x86_64/PKGBUILD
  pciutils/repos/testing-i686/
  pciutils/repos/testing-x86_64/

--+
 /PKGBUILD|   70 +
 core-i686/PKGBUILD   |   35 
 core-x86_64/PKGBUILD |   35 
 3 files changed, 70 insertions(+), 70 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2016-11-04 11:59:21 UTC (rev 279831)
+++ core-i686/PKGBUILD  2016-11-04 11:59:24 UTC (rev 279832)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-pkgname=pciutils
-pkgver=3.5.1
-pkgrel=1
-pkgdesc="PCI bus configuration space access library and tools"
-arch=(i686 x86_64)
-license=('GPL2')
-groups=('base')
-url="http://mj.ucw.cz/sw/pciutils/;
-depends=('glibc' 'hwids' 'kmod')
-source=(#ftp://ftp.kernel.org/pub/software/utils/${pkgname}/${pkgname}-${pkgver}.tar.bz2
-   ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${pkgname}-${pkgver}.tar.gz
-   
ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${pkgname}-${pkgver}.tar.gz.sign)
-validpgpkeys=(
-  '5558F9399CD7836850553C6EC28E7847ED70F82D' # Martin Mares 

- )
-
-md5sums=('6f2c216ad37eb3ee57d3ae266d3955e4'
- 'SKIP')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make OPT="${CFLAGS} -fPIC -DPIC" ZLIB=no SHARED=no PREFIX=/usr 
SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man SBINDIR=/usr/bin lib/libpci.a 
-  cp lib/libpci.a "${srcdir}/"
-  make clean
-  make OPT="${CFLAGS}" ZLIB=no SHARED=yes PREFIX=/usr SBINDIR=/usr/bin 
SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man all
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make SHARED=yes PREFIX=/usr SBINDIR=/usr/bin SHAREDIR=/usr/share/hwdata 
MANDIR=/usr/share/man DESTDIR="${pkgdir}" install install-lib
-  # this is now supplied by the hwids package
-  rm -rf 
$pkgdir/usr/{sbin/update-pciids,share/{man/man8/update-pciids.8,hwdata}}
-}

Copied: pciutils/repos/core-i686/PKGBUILD (from rev 279831, 
pciutils/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2016-11-04 11:59:24 UTC (rev 279832)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+pkgname=pciutils
+pkgver=3.5.2
+pkgrel=1
+pkgdesc="PCI bus configuration space access library and tools"
+arch=(i686 x86_64)
+license=('GPL2')
+groups=('base')
+url="http://mj.ucw.cz/sw/pciutils/;
+depends=('glibc' 'hwids' 'kmod')
+source=(#ftp://ftp.kernel.org/pub/software/utils/${pkgname}/${pkgname}-${pkgver}.tar.bz2
+   ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${pkgname}-${pkgver}.tar.gz
+   
ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${pkgname}-${pkgver}.tar.gz.sign)
+validpgpkeys=(
+  '5558F9399CD7836850553C6EC28E7847ED70F82D' # Martin Mares 

+ )
+
+md5sums=('eae9b6b22a4af894b9bb1411ca4a7d4a'
+ 'SKIP')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make OPT="${CFLAGS} -fPIC -DPIC" ZLIB=no SHARED=no PREFIX=/usr 
SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man SBINDIR=/usr/bin lib/libpci.a 
+  cp lib/libpci.a "${srcdir}/"
+  make clean
+  make OPT="${CFLAGS}" ZLIB=no SHARED=yes PREFIX=/usr SBINDIR=/usr/bin 
SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man all
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make SHARED=yes PREFIX=/usr SBINDIR=/usr/bin SHAREDIR=/usr/share/hwdata 
MANDIR=/usr/share/man DESTDIR="${pkgdir}" install install-lib
+  # this is now supplied by the hwids package
+  rm -rf 
$pkgdir/usr/{sbin/update-pciids,share/{man/man8/update-pciids.8,hwdata}}
+}

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2016-11-04 11:59:21 UTC (rev 279831)
+++ core-x86_64/PKGBUILD2016-11-04 11:59:24 UTC (rev 279832)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-pkgname=pciutils
-pkgver=3.5.1
-pkgrel=1
-pkgdesc="PCI bus configuration space access library and tools"
-arch=(i686 x86_64)
-license=('GPL2')
-groups=('base')
-url="http://mj.ucw.cz/sw/pciutils/;
-depends=('glibc' 'hwids' 'kmod')
-source=(#ftp://ftp.kernel.org/pub/software/utils/${pkgname}/${pkgname}-${pkgver}.tar.bz2
-   ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${pkgname}-${pkgver}.tar.gz
-   
ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${pkgname}-${pkgver}.tar.gz.sign)
-validpgpkeys=(

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

2016-11-04 Thread Jonathan Steel
Date: Friday, November 4, 2016 @ 11:23:21
  Author: jsteel
Revision: 194659

upgpkg: obs-studio 0.16.3-1

Modified:
  obs-studio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 10:22:23 UTC (rev 194658)
+++ PKGBUILD2016-11-04 11:23:21 UTC (rev 194659)
@@ -2,7 +2,7 @@
 # Contributor: Benjamin Klettbach 
 
 pkgname=obs-studio
-pkgver=0.16.2
+pkgver=0.16.3
 pkgrel=1
 pkgdesc="Free, open source software for live streaming and recording"
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 optdepends=('libfdk-aac: FDK AAC codec support'
 'libxcomposite: XComposite capture support')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/jp9000/obs-studio/archive/$pkgver.tar.gz)
-md5sums=('19bc6fcff2ad4f7070e8c80b58c4b8f1')
+md5sums=('3059953d2f487fcd025cda331cd4f733')
 
 build() {
   cd $pkgname-$pkgver


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

2016-11-04 Thread Jonathan Steel
Date: Friday, November 4, 2016 @ 11:23:38
  Author: jsteel
Revision: 194660

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

Added:
  obs-studio/repos/community-testing-i686/
  obs-studio/repos/community-testing-i686/PKGBUILD
(from rev 194659, obs-studio/trunk/PKGBUILD)
  obs-studio/repos/community-testing-x86_64/
  obs-studio/repos/community-testing-x86_64/PKGBUILD
(from rev 194659, obs-studio/trunk/PKGBUILD)

---+
 community-testing-i686/PKGBUILD   |   34 ++
 community-testing-x86_64/PKGBUILD |   34 ++
 2 files changed, 68 insertions(+)

Copied: obs-studio/repos/community-testing-i686/PKGBUILD (from rev 194659, 
obs-studio/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-11-04 11:23:38 UTC (rev 194660)
@@ -0,0 +1,34 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Benjamin Klettbach 
+
+pkgname=obs-studio
+pkgver=0.16.3
+pkgrel=1
+pkgdesc="Free, open source software for live streaming and recording"
+arch=('i686' 'x86_64')
+url="https://obsproject.com;
+license=('GPL2')
+depends=('ffmpeg' 'jansson' 'libxinerama' 'libxkbcommon-x11'
+ 'qt5-x11extras' 'curl' 'jack' 'gtk-update-icon-cache')
+makedepends=('cmake' 'libfdk-aac' 'libxcomposite' 'x264')
+optdepends=('libfdk-aac: FDK AAC codec support'
+'libxcomposite: XComposite capture support')
+source=($pkgname-$pkgver.tar.gz::https://github.com/jp9000/obs-studio/archive/$pkgver.tar.gz)
+md5sums=('3059953d2f487fcd025cda331cd4f733')
+
+build() {
+  cd $pkgname-$pkgver
+
+  mkdir -p build; cd build
+
+  cmake -DCMAKE_INSTALL_PREFIX="/usr" \
+-DOBS_VERSION_OVERRIDE="$pkgver-$pkgrel" ..
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver/build
+
+  make install DESTDIR="$pkgdir"
+}

Copied: obs-studio/repos/community-testing-x86_64/PKGBUILD (from rev 194659, 
obs-studio/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2016-11-04 11:23:38 UTC (rev 194660)
@@ -0,0 +1,34 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Benjamin Klettbach 
+
+pkgname=obs-studio
+pkgver=0.16.3
+pkgrel=1
+pkgdesc="Free, open source software for live streaming and recording"
+arch=('i686' 'x86_64')
+url="https://obsproject.com;
+license=('GPL2')
+depends=('ffmpeg' 'jansson' 'libxinerama' 'libxkbcommon-x11'
+ 'qt5-x11extras' 'curl' 'jack' 'gtk-update-icon-cache')
+makedepends=('cmake' 'libfdk-aac' 'libxcomposite' 'x264')
+optdepends=('libfdk-aac: FDK AAC codec support'
+'libxcomposite: XComposite capture support')
+source=($pkgname-$pkgver.tar.gz::https://github.com/jp9000/obs-studio/archive/$pkgver.tar.gz)
+md5sums=('3059953d2f487fcd025cda331cd4f733')
+
+build() {
+  cd $pkgname-$pkgver
+
+  mkdir -p build; cd build
+
+  cmake -DCMAKE_INSTALL_PREFIX="/usr" \
+-DOBS_VERSION_OVERRIDE="$pkgver-$pkgrel" ..
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver/build
+
+  make install DESTDIR="$pkgdir"
+}


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

2016-11-04 Thread Christian Hesse
Date: Friday, November 4, 2016 @ 10:25:29
  Author: eworm
Revision: 279829

upgpkg: f2fs-tools 1.7.0-1

* download sources via https
* new upstream release
* add upstream patch to build without libselinux

Modified:
  f2fs-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 06:38:43 UTC (rev 279828)
+++ PKGBUILD2016-11-04 10:25:29 UTC (rev 279829)
@@ -3,16 +3,24 @@
 # Contributor: Christian Hesse 
 
 pkgname=f2fs-tools
-pkgver=1.6.1
+pkgver=1.7.0
 pkgrel=1
 pkgdesc="Tools for Flash-Friendly File System (F2FS)"
 arch=('i686' 'x86_64')
-url="http://sourceforge.net/projects/f2fs-tools/;
+url='http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/about/'
 depends=('util-linux')
 license=('GPL')
-source=("http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/snapshot/$pkgname-$pkgver.tar.gz;)
-md5sums=('06feb8c9524b7e92f0ac460cd8c266bb')
+source=("https://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/snapshot/$pkgname-$pkgver.tar.gz;
+   
'f2fs-tools-allow-to-build-without-libselinux.patch::https://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/patch/?id=b0a2386089fd6efade6b89094325ed8a9f8c6fff')
+sha256sums=('33d454c2e95aabef5659949c4fff15f6c9877b48349e64411de502bc62b0cbd4'
+'4ac1dcf67c0b9b4dbca12602cd9d2180363d67e721a667bf14ad4147f0bbf4f6')
 
+prepare() {
+   cd "${pkgname}-${pkgver}"
+
+   patch -Np1 < 
"${srcdir}/f2fs-tools-allow-to-build-without-libselinux.patch"
+}
+
 build() {
cd "${pkgname}-${pkgver}"
 


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

2016-11-04 Thread Christian Hesse
Date: Friday, November 4, 2016 @ 10:25:39
  Author: eworm
Revision: 279830

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

Added:
  f2fs-tools/repos/testing-i686/
  f2fs-tools/repos/testing-i686/PKGBUILD
(from rev 279829, f2fs-tools/trunk/PKGBUILD)
  f2fs-tools/repos/testing-x86_64/
  f2fs-tools/repos/testing-x86_64/PKGBUILD
(from rev 279829, f2fs-tools/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   36 
 testing-x86_64/PKGBUILD |   36 
 2 files changed, 72 insertions(+)

Copied: f2fs-tools/repos/testing-i686/PKGBUILD (from rev 279829, 
f2fs-tools/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-11-04 10:25:39 UTC (rev 279830)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Contributor: Christian Hesse 
+
+pkgname=f2fs-tools
+pkgver=1.7.0
+pkgrel=1
+pkgdesc="Tools for Flash-Friendly File System (F2FS)"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/about/'
+depends=('util-linux')
+license=('GPL')
+source=("https://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/snapshot/$pkgname-$pkgver.tar.gz;
+   
'f2fs-tools-allow-to-build-without-libselinux.patch::https://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/patch/?id=b0a2386089fd6efade6b89094325ed8a9f8c6fff')
+sha256sums=('33d454c2e95aabef5659949c4fff15f6c9877b48349e64411de502bc62b0cbd4'
+'4ac1dcf67c0b9b4dbca12602cd9d2180363d67e721a667bf14ad4147f0bbf4f6')
+
+prepare() {
+   cd "${pkgname}-${pkgver}"
+
+   patch -Np1 < 
"${srcdir}/f2fs-tools-allow-to-build-without-libselinux.patch"
+}
+
+build() {
+   cd "${pkgname}-${pkgver}"
+
+   autoreconf -fi
+   ./configure --prefix=/usr --sbindir=/usr/bin
+   make
+}
+
+package() {
+   cd "${pkgname}-${pkgver}"
+
+   make DESTDIR="${pkgdir}/" sbindir=/usr/bin install
+}

Copied: f2fs-tools/repos/testing-x86_64/PKGBUILD (from rev 279829, 
f2fs-tools/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-11-04 10:25:39 UTC (rev 279830)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Contributor: Christian Hesse 
+
+pkgname=f2fs-tools
+pkgver=1.7.0
+pkgrel=1
+pkgdesc="Tools for Flash-Friendly File System (F2FS)"
+arch=('i686' 'x86_64')
+url='http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/about/'
+depends=('util-linux')
+license=('GPL')
+source=("https://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/snapshot/$pkgname-$pkgver.tar.gz;
+   
'f2fs-tools-allow-to-build-without-libselinux.patch::https://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/patch/?id=b0a2386089fd6efade6b89094325ed8a9f8c6fff')
+sha256sums=('33d454c2e95aabef5659949c4fff15f6c9877b48349e64411de502bc62b0cbd4'
+'4ac1dcf67c0b9b4dbca12602cd9d2180363d67e721a667bf14ad4147f0bbf4f6')
+
+prepare() {
+   cd "${pkgname}-${pkgver}"
+
+   patch -Np1 < 
"${srcdir}/f2fs-tools-allow-to-build-without-libselinux.patch"
+}
+
+build() {
+   cd "${pkgname}-${pkgver}"
+
+   autoreconf -fi
+   ./configure --prefix=/usr --sbindir=/usr/bin
+   make
+}
+
+package() {
+   cd "${pkgname}-${pkgver}"
+
+   make DESTDIR="${pkgdir}/" sbindir=/usr/bin install
+}


[arch-commits] Commit in elasticsearch/repos/community-any (16 files)

2016-11-04 Thread Massimiliano Torromeo
Date: Friday, November 4, 2016 @ 10:22:23
  Author: mtorromeo
Revision: 194658

archrelease: copy trunk to community-any

Added:
  elasticsearch/repos/community-any/PKGBUILD
(from rev 194657, elasticsearch/trunk/PKGBUILD)
  elasticsearch/repos/community-any/elasticsearch-sysctl.conf
(from rev 194657, elasticsearch/trunk/elasticsearch-sysctl.conf)
  elasticsearch/repos/community-any/elasticsearch-tmpfile.conf
(from rev 194657, elasticsearch/trunk/elasticsearch-tmpfile.conf)
  elasticsearch/repos/community-any/elasticsearch-user.conf
(from rev 194657, elasticsearch/trunk/elasticsearch-user.conf)
  elasticsearch/repos/community-any/elasticsearch.default
(from rev 194657, elasticsearch/trunk/elasticsearch.default)
  elasticsearch/repos/community-any/elasticsearch.install
(from rev 194657, elasticsearch/trunk/elasticsearch.install)
  elasticsearch/repos/community-any/elasticsearch.service
(from rev 194657, elasticsearch/trunk/elasticsearch.service)
  elasticsearch/repos/community-any/elasticsearch@.service
(from rev 194657, elasticsearch/trunk/elasticsearch@.service)
Deleted:
  elasticsearch/repos/community-any/PKGBUILD
  elasticsearch/repos/community-any/elasticsearch-sysctl.conf
  elasticsearch/repos/community-any/elasticsearch-tmpfile.conf
  elasticsearch/repos/community-any/elasticsearch-user.conf
  elasticsearch/repos/community-any/elasticsearch.default
  elasticsearch/repos/community-any/elasticsearch.install
  elasticsearch/repos/community-any/elasticsearch.service
  elasticsearch/repos/community-any/elasticsearch@.service

+
 PKGBUILD   |  152 +--
 elasticsearch-sysctl.conf  |2 
 elasticsearch-tmpfile.conf |   12 +--
 elasticsearch-user.conf|2 
 elasticsearch.default  |   26 +++
 elasticsearch.install  |   28 +++
 elasticsearch.service  |   78 +++---
 elasticsearch@.service |   78 +++---
 8 files changed, 189 insertions(+), 189 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-11-04 10:22:00 UTC (rev 194657)
+++ PKGBUILD2016-11-04 10:22:23 UTC (rev 194658)
@@ -1,76 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Marcello "mererghost" Rocha 
-# Refactored by Blaž "Speed" Hrastnik 
-
-pkgname=elasticsearch
-pkgver=5.0.0
-pkgrel=1
-pkgdesc="Distributed RESTful search engine built on top of Lucene"
-arch=('any')
-url="https://www.elastic.co/products/elasticsearch;
-license=('APACHE')
-depends=('java-runtime-headless' 'systemd')
-install='elasticsearch.install'
-source=(
-  "https://artifacts.elastic.co/downloads/$pkgname/$pkgname-$pkgver.tar.gz;
-  elasticsearch.service
-  elasticsearch@.service
-  elasticsearch-sysctl.conf
-  elasticsearch-user.conf
-  elasticsearch-tmpfile.conf
-  elasticsearch.default
-)
-sha256sums=('a866534f0fa7428e980c985d712024feef1dee04709add6e360fc7b73bb1e7ae'
-'51154ac04d90c6b534a3d86bb41c8654726a2a7b3a5a767411dfce30e7bb21fe'
-'22ec53ed1ac5231b501b2311aad4953a8210d9e72b4204c9c2facab13f8e'
-'b3feb1e9c7e7ce6b33cea6c727728ed700332aae942ca475c3bcc1d56b9f113c'
-'815f6a39db6f54bb40750c382ffbdc298d2c4c187ee8ea7e2f855923e2ff354b'
-'6578cacc9fdbdf4713e9f607710701edcd46b026e99743af0fbb63e177eed9b1'
-'bb74e5fb8bc28f2125e015395ab05bea117b72bfc6dadbca827694b362ee0bf8')
-
-backup=('etc/elasticsearch/elasticsearch.yml'
-'etc/elasticsearch/log4j2.properties'
-'etc/elasticsearch/jvm.options'
-'etc/default/elasticsearch')
-
-prepare() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  for script in elasticsearch{,-plugin,-translog}; do
-sed -e 's|^ES_HOME=.*dirname.*|ES_HOME=/usr/share/elasticsearch|' \
--e '/^ES_HOME=.*pwd/d' \
--e 's|$ES_HOME/config|/etc/elasticsearch|' \
--i bin/$script
-  done
-
-  sed -re 's;#\s*(path\.conf:).*$;\1 /etc/elasticsearch;' \
--e '0,/#\s*(path\.data:).*$/s;;\1 /var/lib/elasticsearch;' \
--e 's;#\s*(path\.work:).*$;\1 /tmp/elasticsearch;' \
--e 's;#\s*(path\.logs:).*$;\1 /var/log/elasticsearch;' \
--i config/elasticsearch.yml
-}
-
-package() {
-  cd "$pkgdir"
-  install -dm750 etc/elasticsearch/scripts
-  install -dm755 usr/share/elasticsearch/plugins
-  install -dm755 var/lib/elasticsearch
-  install -dm755 var/log/elasticsearch
-
-  install -Dm644 "$srcdir"/elasticsearch.service 
usr/lib/systemd/system/elasticsearch.service
-  install -Dm644 "$srcdir"/elasticsearch@.service 
usr/lib/systemd/system/elasticsearch@.service
-  install -Dm644 "$srcdir"/elasticsearch-user.conf 
usr/lib/sysusers.d/elasticsearch.conf
-  install -Dm644 "$srcdir"/elasticsearch-tmpfile.conf 
usr/lib/tmpfiles.d/elasticsearch.conf
-  install -Dm644 "$srcdir"/elasticsearch-sysctl.conf 

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

2016-11-04 Thread Massimiliano Torromeo
Date: Friday, November 4, 2016 @ 10:22:00
  Author: mtorromeo
Revision: 194657

upgpkg: elasticsearch 5.0.0-2

Modified:
  elasticsearch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 10:12:53 UTC (rev 194656)
+++ PKGBUILD2016-11-04 10:22:00 UTC (rev 194657)
@@ -5,12 +5,12 @@
 
 pkgname=elasticsearch
 pkgver=5.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Distributed RESTful search engine built on top of Lucene"
 arch=('any')
 url="https://www.elastic.co/products/elasticsearch;
 license=('APACHE')
-depends=('java-runtime-headless' 'systemd')
+depends=('java-runtime-headless=8' 'systemd')
 install='elasticsearch.install'
 source=(
   "https://artifacts.elastic.co/downloads/$pkgname/$pkgname-$pkgver.tar.gz;


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

2016-11-04 Thread Jonathan Steel
Date: Friday, November 4, 2016 @ 10:12:40
  Author: jsteel
Revision: 194654

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-11-04 10:12:27 UTC (rev 194653)
+++ PKGBUILD2016-11-04 10:12:40 UTC (rev 194654)
@@ -1,30 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Ainola
-# Contributor: Chris Fordham
-
-pkgname=python-botocore
-pkgver=1.4.68
-pkgrel=1
-pkgdesc='A low-level interface to a growing number of Amazon Web Services'
-arch=('any')
-url="https://github.com/boto/botocore;
-license=('Apache')
-depends=('python-dateutil' 'python-jmespath' 'python-docutils')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('cf7e56cad0323ff243c1e301f5d822a7')
-
-build() {
-  cd botocore-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd botocore-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

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


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

2016-11-04 Thread Jonathan Steel
Date: Friday, November 4, 2016 @ 10:12:46
  Author: jsteel
Revision: 194655

upgpkg: aws-cli 1.11.13-1

Modified:
  aws-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 10:12:40 UTC (rev 194654)
+++ PKGBUILD2016-11-04 10:12:46 UTC (rev 194655)
@@ -3,7 +3,7 @@
 # Contributor: Alper KANAT 
 
 pkgname=aws-cli
-pkgver=1.11.11
+pkgver=1.11.13
 pkgrel=1
 pkgdesc='Universal Command Line Interface for Amazon Web Services'
 arch=('any')
@@ -14,7 +14,7 @@
  'python-s3transfer')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('76428c8e63ade6e24b86b2d1cd506195')
+md5sums=('6761ff56e4866ca4cb6723c709e12b4f')
 
 build() {
   cd $pkgname-$pkgver


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

2016-11-04 Thread Jonathan Steel
Date: Friday, November 4, 2016 @ 10:12:53
  Author: jsteel
Revision: 194656

archrelease: copy trunk to community-any

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

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

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

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


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

2016-11-04 Thread Jonathan Steel
Date: Friday, November 4, 2016 @ 10:12:27
  Author: jsteel
Revision: 194653

upgpkg: python-botocore 1.4.70-1

Modified:
  python-botocore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 09:02:25 UTC (rev 194652)
+++ PKGBUILD2016-11-04 10:12:27 UTC (rev 194653)
@@ -4,7 +4,7 @@
 # Contributor: Chris Fordham
 
 pkgname=python-botocore
-pkgver=1.4.68
+pkgver=1.4.70
 pkgrel=1
 pkgdesc='A low-level interface to a growing number of Amazon Web Services'
 arch=('any')
@@ -13,7 +13,7 @@
 depends=('python-dateutil' 'python-jmespath' 'python-docutils')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('cf7e56cad0323ff243c1e301f5d822a7')
+md5sums=('6c77b862c0b1b0bc660535af87032ee1')
 
 build() {
   cd botocore-$pkgver


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

2016-11-04 Thread Felix Yan
Date: Friday, November 4, 2016 @ 09:02:10
  Author: felixonmars
Revision: 194651

upgpkg: python-hypothesis 3.6.0-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 07:08:01 UTC (rev 194650)
+++ PKGBUILD2016-11-04 09:02:10 UTC (rev 194651)
@@ -3,7 +3,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.4.2
+pkgver=3.6.0
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -10,15 +10,20 @@
 license=('MPL')
 url="https://hypothesis.readthedocs.org;
 makedepends=('python-setuptools' 'python2-setuptools' 'python2-enum34' 'git')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8'
-  'python-pytz' 'python2-pytz' 'python-django' 'python2-django' 
'python-numpy'
-  'python2-numpy' 'python-fake-factory' 'python2-fake-factory' 
'python-flaky'
-  'python2-flaky' 'python-pytest-benchmark' 
'python2-pytest-benchmark')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
+  'python2-pytz' 'python-numpy' 'python2-numpy' 
'python-fake-factory'
+  'python2-fake-factory' 'python-flaky' 'python2-flaky' 
'python-pytest-benchmark'
+  'python2-pytest-benchmark' 'python-django' 'python2-django')
 source=("git+https://github.com/DRMacIver/hypothesis.git#tag=$pkgver;)
 sha512sums=('SKIP')
 
 prepare() {
+  sed -i 's/@pytest.mark.hookwrapper/@pytest.hookimpl(hookwrapper=True)/' 
hypothesis/src/hypothesis/extra/pytestplugin.py
+
   cp -a hypothesis{,-py2}
+
+  rm -r hypothesis/tests/py2
+  rm -r hypothesis-py2/tests/py3
 }
 
 build() {
@@ -29,17 +34,20 @@
   python2 setup.py build
 }
 
-check() {(
-  # I dunno how to fix pytest w/django tests :/
-
+check() {
   export LC_CTYPE=en_US.UTF-8
 
   cd "$srcdir"/hypothesis
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python setup.py ptr
+  mv tests/django ../
+  python setup.py ptr
+  mv ../django tests/
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m tests.django.manage test 
tests.django
 
   cd "$srcdir"/hypothesis-py2
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 setup.py ptr
-  ) || warning "Tests failed"
+  mv tests/django ../
+  python2 setup.py ptr
+  mv ../django tests/
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m tests.django.manage test 
tests.django
 }
 
 package_python-hypothesis() {


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

2016-11-04 Thread Felix Yan
Date: Friday, November 4, 2016 @ 09:02:25
  Author: felixonmars
Revision: 194652

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-11-04 09:02:10 UTC (rev 194651)
+++ PKGBUILD2016-11-04 09:02:25 UTC (rev 194652)
@@ -1,67 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-hypothesis
-pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.4.2
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org;
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-enum34' 'git')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8'
-  'python-pytz' 'python2-pytz' 'python-django' 'python2-django' 
'python-numpy'
-  'python2-numpy' 'python-fake-factory' 'python2-fake-factory' 
'python-flaky'
-  'python2-flaky' 'python-pytest-benchmark' 
'python2-pytest-benchmark')
-source=("git+https://github.com/DRMacIver/hypothesis.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a hypothesis{,-py2}
-}
-
-build() {
-  cd "$srcdir"/hypothesis
-  python setup.py build
-
-  cd "$srcdir"/hypothesis-py2
-  python2 setup.py build
-}
-
-check() {(
-  # I dunno how to fix pytest w/django tests :/
-
-  export LC_CTYPE=en_US.UTF-8
-
-  cd "$srcdir"/hypothesis
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python setup.py ptr
-
-  cd "$srcdir"/hypothesis-py2
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 setup.py ptr
-  ) || warning "Tests failed"
-}
-
-package_python-hypothesis() {
-  depends=('python')
-  optdepends=('python-pytz: for datetime and django module'
-  'python-fake-factory: for fakefactory and django module'
-  'python-django: for django module'
-  'python-numpy: for numpy module'
-  'python-pytest: for pytest module')
-
-  cd hypothesis
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-hypothesis() {
-  depends=('python2-enum34')
-  optdepends=('python2-pytz: for datetime and django module'
-  'python2-fake-factory: for fakefactory and django module'
-  'python2-django: for django module'
-  'python2-numpy: for numpy module'
-  'python2-pytest: for pytest module')
-
-  cd hypothesis-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 194651, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-11-04 09:02:25 UTC (rev 194652)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=3.6.0
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-enum34' 'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
+  'python2-pytz' 'python-numpy' 'python2-numpy' 
'python-fake-factory'
+  'python2-fake-factory' 'python-flaky' 'python2-flaky' 
'python-pytest-benchmark'
+  'python2-pytest-benchmark' 'python-django' 'python2-django')
+source=("git+https://github.com/DRMacIver/hypothesis.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  sed -i 's/@pytest.mark.hookwrapper/@pytest.hookimpl(hookwrapper=True)/' 
hypothesis/src/hypothesis/extra/pytestplugin.py
+
+  cp -a hypothesis{,-py2}
+
+  rm -r hypothesis/tests/py2
+  rm -r hypothesis-py2/tests/py3
+}
+
+build() {
+  cd "$srcdir"/hypothesis
+  python setup.py build
+
+  cd "$srcdir"/hypothesis-py2
+  python2 setup.py build
+}
+
+check() {
+  export LC_CTYPE=en_US.UTF-8
+
+  cd "$srcdir"/hypothesis
+  mv tests/django ../
+  python setup.py ptr
+  mv ../django tests/
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m tests.django.manage test 
tests.django
+
+  cd "$srcdir"/hypothesis-py2
+  mv tests/django ../
+  python2 setup.py ptr
+  mv ../django tests/
+  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m tests.django.manage test 
tests.django
+}
+
+package_python-hypothesis() {
+  depends=('python')
+  optdepends=('python-pytz: for datetime and django module'
+  'python-fake-factory: for fakefactory and django module'
+  'python-django: for django module'
+  

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

2016-11-04 Thread Connor Behan
Date: Friday, November 4, 2016 @ 07:08:01
  Author: cbehan
Revision: 194650

https for pdflib-lite

Modified:
  pdflib-lite/repos/community-x86_64/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 07:07:37 UTC (rev 194649)
+++ PKGBUILD2016-11-04 07:08:01 UTC (rev 194650)
@@ -11,7 +11,7 @@
 arch=(i686 x86_64)
 depends=('glibc')
 provides=('pdflib')
-source=(http://www.pdflib.com/binaries/PDFlib/${_basepkgver//./}/${_pkgnamecaps}-${pkgver}.tar.gz
 http://www.pdflib.com/fileadmin/pdflib/pdf/license/PDFlib-Lite-license.pdf)
+source=(https://www.pdflib.com/binaries/PDFlib/${_basepkgver//./}/${_pkgnamecaps}-${pkgver}.tar.gz
 https://www.pdflib.com/fileadmin/pdflib/pdf/license/PDFlib-Lite-license.pdf)
 license=(custom:pdflib-lite)
 
 build() {


[arch-commits] Commit in pdflib-lite (repos/community-i686/PKGBUILD trunk/PKGBUILD)

2016-11-04 Thread Connor Behan
Date: Friday, November 4, 2016 @ 07:07:37
  Author: cbehan
Revision: 194649

https for pdflib-lite

Modified:
  pdflib-lite/repos/community-i686/PKGBUILD
  pdflib-lite/trunk/PKGBUILD

---+
 repos/community-i686/PKGBUILD |2 +-
 trunk/PKGBUILD|2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Modified: repos/community-i686/PKGBUILD
===
--- repos/community-i686/PKGBUILD   2016-11-04 06:58:57 UTC (rev 194648)
+++ repos/community-i686/PKGBUILD   2016-11-04 07:07:37 UTC (rev 194649)
@@ -11,7 +11,7 @@
 arch=(i686 x86_64)
 depends=('glibc')
 provides=('pdflib')
-source=(http://www.pdflib.com/binaries/PDFlib/${_basepkgver//./}/${_pkgnamecaps}-${pkgver}.tar.gz
 http://www.pdflib.com/fileadmin/pdflib/pdf/license/PDFlib-Lite-license.pdf)
+source=(https://www.pdflib.com/binaries/PDFlib/${_basepkgver//./}/${_pkgnamecaps}-${pkgver}.tar.gz
 https://www.pdflib.com/fileadmin/pdflib/pdf/license/PDFlib-Lite-license.pdf)
 license=(custom:pdflib-lite)
 
 build() {

Modified: trunk/PKGBUILD
===
--- trunk/PKGBUILD  2016-11-04 06:58:57 UTC (rev 194648)
+++ trunk/PKGBUILD  2016-11-04 07:07:37 UTC (rev 194649)
@@ -11,7 +11,7 @@
 arch=(i686 x86_64)
 depends=('glibc')
 provides=('pdflib')
-source=(http://www.pdflib.com/binaries/PDFlib/${_basepkgver//./}/${_pkgnamecaps}-${pkgver}.tar.gz
 http://www.pdflib.com/fileadmin/pdflib/pdf/license/PDFlib-Lite-license.pdf)
+source=(https://www.pdflib.com/binaries/PDFlib/${_basepkgver//./}/${_pkgnamecaps}-${pkgver}.tar.gz
 https://www.pdflib.com/fileadmin/pdflib/pdf/license/PDFlib-Lite-license.pdf)
 license=(custom:pdflib-lite)
 
 build() {


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

2016-11-04 Thread Connor Behan
Date: Friday, November 4, 2016 @ 06:58:57
  Author: cbehan
Revision: 194648

https for gtkglarea

Modified:
  gtkglarea/repos/community-i686/PKGBUILD
  gtkglarea/repos/community-x86_64/PKGBUILD

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

Modified: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-11-04 06:57:22 UTC (rev 194647)
+++ community-i686/PKGBUILD 2016-11-04 06:58:57 UTC (rev 194648)
@@ -12,7 +12,7 @@
 url="http://mono-project.com/GtkGLArea;
 license=('GPL')
 depends=('gtk2' 'glu')
-source=("http://ftp.gnome.org/pub/GNOME/sources/$pkgname/2.1/$pkgname-$pkgver.tar.xz;)
+source=("https://ftp.gnome.org/pub/GNOME/sources/$pkgname/2.1/$pkgname-$pkgver.tar.xz;)
 md5sums=('60d4470107d4faa9fc916c9a0d05bb9f')
 
 build() {

Modified: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-11-04 06:57:22 UTC (rev 194647)
+++ community-x86_64/PKGBUILD   2016-11-04 06:58:57 UTC (rev 194648)
@@ -12,7 +12,7 @@
 url="http://mono-project.com/GtkGLArea;
 license=('GPL')
 depends=('gtk2' 'glu')
-source=("http://ftp.gnome.org/pub/GNOME/sources/$pkgname/2.1/$pkgname-$pkgver.tar.xz;)
+source=("https://ftp.gnome.org/pub/GNOME/sources/$pkgname/2.1/$pkgname-$pkgver.tar.xz;)
 md5sums=('60d4470107d4faa9fc916c9a0d05bb9f')
 
 build() {


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

2016-11-04 Thread Connor Behan
Date: Friday, November 4, 2016 @ 06:57:22
  Author: cbehan
Revision: 194647

https for gtkglarea

Modified:
  gtkglarea/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 06:44:36 UTC (rev 194646)
+++ PKGBUILD2016-11-04 06:57:22 UTC (rev 194647)
@@ -12,7 +12,7 @@
 url="http://mono-project.com/GtkGLArea;
 license=('GPL')
 depends=('gtk2' 'glu')
-source=("http://ftp.gnome.org/pub/GNOME/sources/$pkgname/2.1/$pkgname-$pkgver.tar.xz;)
+source=("https://ftp.gnome.org/pub/GNOME/sources/$pkgname/2.1/$pkgname-$pkgver.tar.xz;)
 md5sums=('60d4470107d4faa9fc916c9a0d05bb9f')
 
 build() {


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

2016-11-04 Thread Lukas Fleischer
Date: Friday, November 4, 2016 @ 06:44:36
  Author: lfleischer
Revision: 194646

archrelease: copy trunk to community-any

Added:
  dblatex/repos/community-any/PKGBUILD
(from rev 194645, dblatex/trunk/PKGBUILD)
Deleted:
  dblatex/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-11-04 06:44:28 UTC (rev 194645)
+++ PKGBUILD2016-11-04 06:44:36 UTC (rev 194646)
@@ -1,23 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Marcin Karpezo 
-# Contributor: Andreas Hauser 
-
-pkgname=dblatex
-pkgver=0.3.7
-pkgrel=1
-pkgdesc='DocBook (XML and SGML) to DVI, PDF, PostScript converter using latex.'
-arch=('any')
-url='http://dblatex.sourceforge.net/'
-license=('GPL')
-depends=('docbook-xsl' 'docbook-xml' 'libxslt' 'python2' 'texlive-core' 
'texlive-htmlxml'
- 'texlive-latexextra' 'texlive-pictures')
-source=("http://downloads.sourceforge.net/project/dblatex/dblatex/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('15ba461151e7cc2d6a89cb6ebcf3650b')
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  python2 setup.py install --root "${pkgdir}" --catalogs=/etc/xml/docbook-xml
-  sed -i -e "s,${pkgdir},," -e "s,#!/usr/bin/env python,#!/usr/bin/env 
python2," \
-"${pkgdir}/usr/bin/dblatex"
-}

Copied: dblatex/repos/community-any/PKGBUILD (from rev 194645, 
dblatex/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-11-04 06:44:36 UTC (rev 194646)
@@ -0,0 +1,23 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Marcin Karpezo 
+# Contributor: Andreas Hauser 
+
+pkgname=dblatex
+pkgver=0.3.9
+pkgrel=1
+pkgdesc='DocBook (XML and SGML) to DVI, PDF, PostScript converter using latex.'
+arch=('any')
+url='http://dblatex.sourceforge.net/'
+license=('GPL')
+depends=('docbook-xsl' 'docbook-xml' 'libxslt' 'python2' 'texlive-core' 
'texlive-htmlxml'
+ 'texlive-latexextra' 'texlive-pictures')
+source=("https://downloads.sourceforge.net/project/dblatex/dblatex/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('38e9fd93dd37d71e352010ad40e1dfb4')
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  python2 setup.py install --root "${pkgdir}" --catalogs=/etc/xml/docbook-xml
+  sed -i -e "s,${pkgdir},," -e "s,#!/usr/bin/env python,#!/usr/bin/env 
python2," \
+"${pkgdir}/usr/bin/dblatex"
+}


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

2016-11-04 Thread Lukas Fleischer
Date: Friday, November 4, 2016 @ 06:44:28
  Author: lfleischer
Revision: 194645

upgpkg: dblatex 0.3.9-1

Upstream update.

Modified:
  dblatex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 06:29:00 UTC (rev 194644)
+++ PKGBUILD2016-11-04 06:44:28 UTC (rev 194645)
@@ -3,7 +3,7 @@
 # Contributor: Andreas Hauser 
 
 pkgname=dblatex
-pkgver=0.3.7
+pkgver=0.3.9
 pkgrel=1
 pkgdesc='DocBook (XML and SGML) to DVI, PDF, PostScript converter using latex.'
 arch=('any')
@@ -11,8 +11,8 @@
 license=('GPL')
 depends=('docbook-xsl' 'docbook-xml' 'libxslt' 'python2' 'texlive-core' 
'texlive-htmlxml'
  'texlive-latexextra' 'texlive-pictures')
-source=("http://downloads.sourceforge.net/project/dblatex/dblatex/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('15ba461151e7cc2d6a89cb6ebcf3650b')
+source=("https://downloads.sourceforge.net/project/dblatex/dblatex/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('38e9fd93dd37d71e352010ad40e1dfb4')
 
 package() {
   cd "${srcdir}/${pkgname}-${pkgver}"


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

2016-11-04 Thread Felix Yan
Date: Friday, November 4, 2016 @ 06:38:43
  Author: felixonmars
Revision: 279828

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

Added:
  cmake/repos/extra-i686/PKGBUILD
(from rev 279827, cmake/trunk/PKGBUILD)
  cmake/repos/extra-i686/rebuild.list
(from rev 279827, cmake/trunk/rebuild.list)
  cmake/repos/extra-x86_64/PKGBUILD
(from rev 279827, cmake/trunk/PKGBUILD)
  cmake/repos/extra-x86_64/rebuild.list
(from rev 279827, cmake/trunk/rebuild.list)
Deleted:
  cmake/repos/extra-i686/PKGBUILD
  cmake/repos/extra-i686/rebuild.list
  cmake/repos/extra-x86_64/PKGBUILD
  cmake/repos/extra-x86_64/rebuild.list

---+
 /PKGBUILD |  116 
 /rebuild.list |8 +++
 extra-i686/PKGBUILD   |   58 --
 extra-i686/rebuild.list   |4 -
 extra-x86_64/PKGBUILD |   58 --
 extra-x86_64/rebuild.list |4 -
 6 files changed, 124 insertions(+), 124 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-11-04 06:38:20 UTC (rev 279827)
+++ extra-i686/PKGBUILD 2016-11-04 06:38:43 UTC (rev 279828)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=cmake
-pkgver=3.6.2
-pkgrel=2
-pkgdesc='A cross-platform open-source make system'
-arch=('i686' 'x86_64')
-url="http://www.cmake.org/;
-license=('custom')
-depends=('curl' 'libarchive' 'shared-mime-info' 'jsoncpp')
-makedepends=('qt5-base' 'python-sphinx' 'emacs')
-optdepends=('qt5-base: cmake-gui'
-'libxkbcommon-x11: cmake-gui')
-source=("http://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('139d7affdd4e8ab1edfc9f4322d69e43')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  ./bootstrap --prefix=/usr \
---mandir=/share/man \
---docdir=/share/doc/cmake \
---sphinx-man \
---system-libs \
---qt-gui \
---parallel=$(/usr/bin/getconf _NPROCESSORS_ONLN)
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  vimpath="${pkgdir}/usr/share/vim/vimfiles"
-  install -d "${vimpath}"/{help,indent,syntax}
-  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/cmake-help.vim \
-"${vimpath}"/help/
-  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/cmake-indent.vim \
-"${vimpath}"/indent/
-  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/cmake-syntax.vim \
-"${vimpath}"/syntax/
-
-  install -d "${pkgdir}"/usr/share/emacs/site-lisp/
-  emacs -batch -f batch-byte-compile \
-"${pkgdir}"/usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el
-  ln -s /usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el \
-"${pkgdir}"/usr/share/emacs/site-lisp/
-
-  install -Dm644 Copyright.txt \
-"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: cmake/repos/extra-i686/PKGBUILD (from rev 279827, cmake/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-11-04 06:38:43 UTC (rev 279828)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=cmake
+pkgver=3.6.3
+pkgrel=1
+pkgdesc='A cross-platform open-source make system'
+arch=('i686' 'x86_64')
+url="http://www.cmake.org/;
+license=('custom')
+depends=('curl' 'libarchive' 'shared-mime-info' 'jsoncpp')
+makedepends=('qt5-base' 'python-sphinx' 'emacs')
+optdepends=('qt5-base: cmake-gui'
+'libxkbcommon-x11: cmake-gui')
+source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('7d73ee4fae572eb2d7cd3feb48971aea903bb30a20ea5ae8b4da826d8ccad5fe')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./bootstrap --prefix=/usr \
+--mandir=/share/man \
+--docdir=/share/doc/cmake \
+--sphinx-man \
+--system-libs \
+--qt-gui \
+--parallel=$(/usr/bin/getconf _NPROCESSORS_ONLN)
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  vimpath="${pkgdir}/usr/share/vim/vimfiles"
+  install -d "${vimpath}"/{help,indent,syntax}
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/cmake-help.vim \
+"${vimpath}"/help/
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/cmake-indent.vim \
+"${vimpath}"/indent/
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/cmake-syntax.vim \
+"${vimpath}"/syntax/
+
+  install -d "${pkgdir}"/usr/share/emacs/site-lisp/
+  emacs -batch -f batch-byte-compile \
+"${pkgdir}"/usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el
+  ln -s 

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

2016-11-04 Thread Felix Yan
Date: Friday, November 4, 2016 @ 06:38:20
  Author: felixonmars
Revision: 279827

upgpkg: cmake 3.6.3-1

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 02:57:03 UTC (rev 279826)
+++ PKGBUILD2016-11-04 06:38:20 UTC (rev 279827)
@@ -4,8 +4,8 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.6.2
-pkgrel=2
+pkgver=3.6.3
+pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('i686' 'x86_64')
 url="http://www.cmake.org/;
@@ -14,8 +14,8 @@
 makedepends=('qt5-base' 'python-sphinx' 'emacs')
 optdepends=('qt5-base: cmake-gui'
 'libxkbcommon-x11: cmake-gui')
-source=("http://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('139d7affdd4e8ab1edfc9f4322d69e43')
+source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('7d73ee4fae572eb2d7cd3feb48971aea903bb30a20ea5ae8b4da826d8ccad5fe')
 
 prepare() {
   cd ${pkgname}-${pkgver}


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

2016-11-04 Thread Felix Yan
Date: Friday, November 4, 2016 @ 06:28:38
  Author: felixonmars
Revision: 194643

upgpkg: batctl 2016.4-1

Modified:
  batctl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 06:25:12 UTC (rev 194642)
+++ PKGBUILD2016-11-04 06:28:38 UTC (rev 194643)
@@ -4,7 +4,7 @@
 # Contributor: Nathan Owe 
 
 pkgname=batctl
-pkgver=2016.2
+pkgver=2016.4
 pkgrel=1
 pkgdesc='B.A.T.M.A.N. advanced control and management tool'
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 license=('GPL')
 depends=('libnl')
 
source=("http://downloads.open-mesh.net/batman/releases/batman-adv-${pkgver}/batctl-${pkgver}.tar.gz;)
-sha1sums=('a97bcc0aa08854bc096f1a8c16661957063bcc56')
+sha1sums=('030aff4109ede74d22161bd8ce0f60d125df8a6b')
 
 build(){
   cd batctl-$pkgver


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

2016-11-04 Thread Felix Yan
Date: Friday, November 4, 2016 @ 06:29:00
  Author: felixonmars
Revision: 194644

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-11-04 06:28:38 UTC (rev 194643)
+++ community-i686/PKGBUILD 2016-11-04 06:29:00 UTC (rev 194644)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Thomas Weißschuh 
-# Contributor: Nathan Owe 
-
-pkgname=batctl
-pkgver=2016.2
-pkgrel=1
-pkgdesc='B.A.T.M.A.N. advanced control and management tool'
-arch=('i686' 'x86_64')
-url='http://www.open-mesh.net/'
-license=('GPL')
-depends=('libnl')
-source=("http://downloads.open-mesh.net/batman/releases/batman-adv-${pkgver}/batctl-${pkgver}.tar.gz;)
-sha1sums=('a97bcc0aa08854bc096f1a8c16661957063bcc56')
-
-build(){
-  cd batctl-$pkgver
-  make
-}
-
-package() {
-  cd batctl-$pkgver
-  make DESTDIR="$pkgdir" PREFIX=/usr SBINDIR=/usr/bin install
-}

Copied: batctl/repos/community-i686/PKGBUILD (from rev 194643, 
batctl/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-11-04 06:29:00 UTC (rev 194644)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Weißschuh 
+# Contributor: Nathan Owe 
+
+pkgname=batctl
+pkgver=2016.4
+pkgrel=1
+pkgdesc='B.A.T.M.A.N. advanced control and management tool'
+arch=('i686' 'x86_64')
+url='http://www.open-mesh.net/'
+license=('GPL')
+depends=('libnl')
+source=("http://downloads.open-mesh.net/batman/releases/batman-adv-${pkgver}/batctl-${pkgver}.tar.gz;)
+sha1sums=('030aff4109ede74d22161bd8ce0f60d125df8a6b')
+
+build(){
+  cd batctl-$pkgver
+  make
+}
+
+package() {
+  cd batctl-$pkgver
+  make DESTDIR="$pkgdir" PREFIX=/usr SBINDIR=/usr/bin install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-11-04 06:28:38 UTC (rev 194643)
+++ community-x86_64/PKGBUILD   2016-11-04 06:29:00 UTC (rev 194644)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Thomas Weißschuh 
-# Contributor: Nathan Owe 
-
-pkgname=batctl
-pkgver=2016.2
-pkgrel=1
-pkgdesc='B.A.T.M.A.N. advanced control and management tool'
-arch=('i686' 'x86_64')
-url='http://www.open-mesh.net/'
-license=('GPL')
-depends=('libnl')
-source=("http://downloads.open-mesh.net/batman/releases/batman-adv-${pkgver}/batctl-${pkgver}.tar.gz;)
-sha1sums=('a97bcc0aa08854bc096f1a8c16661957063bcc56')
-
-build(){
-  cd batctl-$pkgver
-  make
-}
-
-package() {
-  cd batctl-$pkgver
-  make DESTDIR="$pkgdir" PREFIX=/usr SBINDIR=/usr/bin install
-}

Copied: batctl/repos/community-x86_64/PKGBUILD (from rev 194643, 
batctl/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-11-04 06:29:00 UTC (rev 194644)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Weißschuh 
+# Contributor: Nathan Owe 
+
+pkgname=batctl
+pkgver=2016.4
+pkgrel=1
+pkgdesc='B.A.T.M.A.N. advanced control and management tool'
+arch=('i686' 'x86_64')
+url='http://www.open-mesh.net/'
+license=('GPL')
+depends=('libnl')
+source=("http://downloads.open-mesh.net/batman/releases/batman-adv-${pkgver}/batctl-${pkgver}.tar.gz;)
+sha1sums=('030aff4109ede74d22161bd8ce0f60d125df8a6b')
+
+build(){
+  cd batctl-$pkgver
+  make
+}
+
+package() {
+  cd batctl-$pkgver
+  make DESTDIR="$pkgdir" PREFIX=/usr SBINDIR=/usr/bin install
+}


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

2016-11-04 Thread Felix Yan
Date: Friday, November 4, 2016 @ 06:25:12
  Author: felixonmars
Revision: 194642

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

Added:
  haskell-hasql-pool/repos/community-i686/
  haskell-hasql-pool/repos/community-i686/PKGBUILD
(from rev 194641, haskell-hasql-pool/trunk/PKGBUILD)
  haskell-hasql-pool/repos/community-x86_64/
  haskell-hasql-pool/repos/community-x86_64/PKGBUILD
(from rev 194641, haskell-hasql-pool/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   41 +
 community-x86_64/PKGBUILD |   41 +
 2 files changed, 82 insertions(+)

Copied: haskell-hasql-pool/repos/community-i686/PKGBUILD (from rev 194641, 
haskell-hasql-pool/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-11-04 06:25:12 UTC (rev 194642)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=hasql-pool
+pkgname=haskell-hasql-pool
+pkgver=0.4.1
+pkgrel=1
+pkgdesc="A pool of connections for Hasql"
+url="https://github.com/nikita-volkov/hasql-pool;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-base-prelude' 'haskell-hasql' 
'haskell-resource-pool')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('c0fcb158ccfc72f1101d9a9289ade442')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-hasql-pool/repos/community-x86_64/PKGBUILD (from rev 194641, 
haskell-hasql-pool/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-11-04 06:25:12 UTC (rev 194642)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=hasql-pool
+pkgname=haskell-hasql-pool
+pkgver=0.4.1
+pkgrel=1
+pkgdesc="A pool of connections for Hasql"
+url="https://github.com/nikita-volkov/hasql-pool;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-base-prelude' 'haskell-hasql' 
'haskell-resource-pool')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('c0fcb158ccfc72f1101d9a9289ade442')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in (4 files)

2016-11-04 Thread Felix Yan
Date: Friday, November 4, 2016 @ 06:24:52
  Author: felixonmars
Revision: 194641

addpkg: haskell-hasql-pool 0.4.1-1

Added:
  haskell-hasql-pool/
  haskell-hasql-pool/repos/
  haskell-hasql-pool/trunk/
  haskell-hasql-pool/trunk/PKGBUILD

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

Added: haskell-hasql-pool/trunk/PKGBUILD
===
--- haskell-hasql-pool/trunk/PKGBUILD   (rev 0)
+++ haskell-hasql-pool/trunk/PKGBUILD   2016-11-04 06:24:52 UTC (rev 194641)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=hasql-pool
+pkgname=haskell-hasql-pool
+pkgver=0.4.1
+pkgrel=1
+pkgdesc="A pool of connections for Hasql"
+url="https://github.com/nikita-volkov/hasql-pool;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-base-prelude' 'haskell-hasql' 
'haskell-resource-pool')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('c0fcb158ccfc72f1101d9a9289ade442')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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


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

2016-11-04 Thread Felix Yan
Date: Friday, November 4, 2016 @ 06:20:59
  Author: felixonmars
Revision: 194640

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

Added:
  haskell-microlens-aeson/repos/community-i686/
  haskell-microlens-aeson/repos/community-i686/PKGBUILD
(from rev 194639, haskell-microlens-aeson/trunk/PKGBUILD)
  haskell-microlens-aeson/repos/community-x86_64/
  haskell-microlens-aeson/repos/community-x86_64/PKGBUILD
(from rev 194639, haskell-microlens-aeson/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   41 +
 community-x86_64/PKGBUILD |   41 +
 2 files changed, 82 insertions(+)

Copied: haskell-microlens-aeson/repos/community-i686/PKGBUILD (from rev 194639, 
haskell-microlens-aeson/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-11-04 06:20:59 UTC (rev 194640)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=microlens-aeson
+pkgname=haskell-microlens-aeson
+pkgver=2.1.1.1
+pkgrel=1
+pkgdesc="Law-abiding lenses for Aeson, using microlens"
+url="http://github.com/fosskers/microlens-aeson/;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-aeson' 'haskell-attoparsec' 'haskell-microlens' 
'haskell-scientific'
+ 'haskell-text' 'haskell-unordered-containers' 'haskell-vector')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('9e8031f4ffcaf831bd08e7add445b21a')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-microlens-aeson/repos/community-x86_64/PKGBUILD (from rev 
194639, haskell-microlens-aeson/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-11-04 06:20:59 UTC (rev 194640)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=microlens-aeson
+pkgname=haskell-microlens-aeson
+pkgver=2.1.1.1
+pkgrel=1
+pkgdesc="Law-abiding lenses for Aeson, using microlens"
+url="http://github.com/fosskers/microlens-aeson/;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-aeson' 'haskell-attoparsec' 'haskell-microlens' 
'haskell-scientific'
+ 'haskell-text' 'haskell-unordered-containers' 'haskell-vector')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('9e8031f4ffcaf831bd08e7add445b21a')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in (4 files)

2016-11-04 Thread Felix Yan
Date: Friday, November 4, 2016 @ 06:20:39
  Author: felixonmars
Revision: 194639

addpkg: haskell-microlens-aeson 2.1.1.1-1

Added:
  haskell-microlens-aeson/
  haskell-microlens-aeson/repos/
  haskell-microlens-aeson/trunk/
  haskell-microlens-aeson/trunk/PKGBUILD

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

Added: haskell-microlens-aeson/trunk/PKGBUILD
===
--- haskell-microlens-aeson/trunk/PKGBUILD  (rev 0)
+++ haskell-microlens-aeson/trunk/PKGBUILD  2016-11-04 06:20:39 UTC (rev 
194639)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=microlens-aeson
+pkgname=haskell-microlens-aeson
+pkgver=2.1.1.1
+pkgrel=1
+pkgdesc="Law-abiding lenses for Aeson, using microlens"
+url="http://github.com/fosskers/microlens-aeson/;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-aeson' 'haskell-attoparsec' 'haskell-microlens' 
'haskell-scientific'
+ 'haskell-text' 'haskell-unordered-containers' 'haskell-vector')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('9e8031f4ffcaf831bd08e7add445b21a')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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


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

2016-11-04 Thread Felix Yan
Date: Friday, November 4, 2016 @ 06:15:54
  Author: felixonmars
Revision: 194638

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

Added:
  haskell-ranged-sets/repos/community-i686/
  haskell-ranged-sets/repos/community-i686/PKGBUILD
(from rev 194637, haskell-ranged-sets/trunk/PKGBUILD)
  haskell-ranged-sets/repos/community-x86_64/
  haskell-ranged-sets/repos/community-x86_64/PKGBUILD
(from rev 194637, haskell-ranged-sets/trunk/PKGBUILD)

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

Copied: haskell-ranged-sets/repos/community-i686/PKGBUILD (from rev 194637, 
haskell-ranged-sets/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-11-04 06:15:54 UTC (rev 194638)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=Ranged-sets
+pkgname=haskell-ranged-sets
+pkgver=0.3.0
+pkgrel=1
+pkgdesc="Ranged sets for Haskell"
+url="http://code.haskell.org/ranged-sets;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-hunit' 'haskell-quickcheck')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('c9c20783a74d280f0cd5f35691d705c2')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE.txt" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.txt"
+}

Copied: haskell-ranged-sets/repos/community-x86_64/PKGBUILD (from rev 194637, 
haskell-ranged-sets/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-11-04 06:15:54 UTC (rev 194638)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=Ranged-sets
+pkgname=haskell-ranged-sets
+pkgver=0.3.0
+pkgrel=1
+pkgdesc="Ranged sets for Haskell"
+url="http://code.haskell.org/ranged-sets;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-hunit' 'haskell-quickcheck')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('c9c20783a74d280f0cd5f35691d705c2')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE.txt" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.txt"
+}


[arch-commits] Commit in (4 files)

2016-11-04 Thread Felix Yan
Date: Friday, November 4, 2016 @ 06:15:32
  Author: felixonmars
Revision: 194637

addpkg: haskell-ranged-sets 0.3.0-1

Added:
  haskell-ranged-sets/
  haskell-ranged-sets/repos/
  haskell-ranged-sets/trunk/
  haskell-ranged-sets/trunk/PKGBUILD

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

Added: haskell-ranged-sets/trunk/PKGBUILD
===
--- haskell-ranged-sets/trunk/PKGBUILD  (rev 0)
+++ haskell-ranged-sets/trunk/PKGBUILD  2016-11-04 06:15:32 UTC (rev 194637)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=Ranged-sets
+pkgname=haskell-ranged-sets
+pkgver=0.3.0
+pkgrel=1
+pkgdesc="Ranged sets for Haskell"
+url="http://code.haskell.org/ranged-sets;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-hunit' 'haskell-quickcheck')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('c9c20783a74d280f0cd5f35691d705c2')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE.txt" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.txt"
+}


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


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

2016-11-04 Thread Felix Yan
Date: Friday, November 4, 2016 @ 06:12:07
  Author: felixonmars
Revision: 194636

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

Added:
  haskell-interpolatedstring-perl6/repos/community-i686/
  haskell-interpolatedstring-perl6/repos/community-i686/PKGBUILD
(from rev 194635, haskell-interpolatedstring-perl6/trunk/PKGBUILD)
  haskell-interpolatedstring-perl6/repos/community-x86_64/
  haskell-interpolatedstring-perl6/repos/community-x86_64/PKGBUILD
(from rev 194635, haskell-interpolatedstring-perl6/trunk/PKGBUILD)

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

Copied: haskell-interpolatedstring-perl6/repos/community-i686/PKGBUILD (from 
rev 194635, haskell-interpolatedstring-perl6/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-11-04 06:12:07 UTC (rev 194636)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=interpolatedstring-perl6
+pkgname=haskell-interpolatedstring-perl6
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="QuasiQuoter for Perl6-style multi-line interpolated strings"
+url="https://github.com/audreyt/interpolatedstring-perl6;
+license=('custom:PublicDomain')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-src-meta' 'haskell-text')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('fa05580d47b3d00a74fbe2b0013de14d')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-interpolatedstring-perl6/repos/community-x86_64/PKGBUILD (from 
rev 194635, haskell-interpolatedstring-perl6/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-11-04 06:12:07 UTC (rev 194636)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=interpolatedstring-perl6
+pkgname=haskell-interpolatedstring-perl6
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="QuasiQuoter for Perl6-style multi-line interpolated strings"
+url="https://github.com/audreyt/interpolatedstring-perl6;
+license=('custom:PublicDomain')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-src-meta' 'haskell-text')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('fa05580d47b3d00a74fbe2b0013de14d')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in (4 files)

2016-11-04 Thread Felix Yan
Date: Friday, November 4, 2016 @ 06:11:45
  Author: felixonmars
Revision: 194635

addpkg: haskell-interpolatedstring-perl6 1.0.0-1

Added:
  haskell-interpolatedstring-perl6/
  haskell-interpolatedstring-perl6/repos/
  haskell-interpolatedstring-perl6/trunk/
  haskell-interpolatedstring-perl6/trunk/PKGBUILD

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

Added: haskell-interpolatedstring-perl6/trunk/PKGBUILD
===
--- haskell-interpolatedstring-perl6/trunk/PKGBUILD 
(rev 0)
+++ haskell-interpolatedstring-perl6/trunk/PKGBUILD 2016-11-04 06:11:45 UTC 
(rev 194635)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=interpolatedstring-perl6
+pkgname=haskell-interpolatedstring-perl6
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="QuasiQuoter for Perl6-style multi-line interpolated strings"
+url="https://github.com/audreyt/interpolatedstring-perl6;
+license=('custom:PublicDomain')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-src-meta' 'haskell-text')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('fa05580d47b3d00a74fbe2b0013de14d')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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


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

2016-11-04 Thread Felix Yan
Date: Friday, November 4, 2016 @ 06:08:41
  Author: felixonmars
Revision: 194634

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

Added:
  haskell-src-meta/repos/community-i686/
  haskell-src-meta/repos/community-i686/PKGBUILD
(from rev 194633, haskell-src-meta/trunk/PKGBUILD)
  haskell-src-meta/repos/community-x86_64/
  haskell-src-meta/repos/community-x86_64/PKGBUILD
(from rev 194633, haskell-src-meta/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   41 +
 community-x86_64/PKGBUILD |   41 +
 2 files changed, 82 insertions(+)

Copied: haskell-src-meta/repos/community-i686/PKGBUILD (from rev 194633, 
haskell-src-meta/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-11-04 06:08:41 UTC (rev 194634)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=haskell-src-meta
+pkgname=haskell-src-meta
+pkgver=0.7.0
+pkgrel=1
+pkgdesc="Parse source to template-haskell abstract syntax"
+url="https://github.com/bmillwood/haskell-src-meta;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-src-exts" "haskell-syb" "haskell-th-orphans")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('2a6735cc3379171a722f2a1df15dc67f216a404db4396b05f5e06ac82ab89856')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-src-meta/repos/community-x86_64/PKGBUILD (from rev 194633, 
haskell-src-meta/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-11-04 06:08:41 UTC (rev 194634)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=haskell-src-meta
+pkgname=haskell-src-meta
+pkgver=0.7.0
+pkgrel=1
+pkgdesc="Parse source to template-haskell abstract syntax"
+url="https://github.com/bmillwood/haskell-src-meta;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-src-exts" "haskell-syb" "haskell-th-orphans")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('2a6735cc3379171a722f2a1df15dc67f216a404db4396b05f5e06ac82ab89856')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in (4 files)

2016-11-04 Thread Felix Yan
Date: Friday, November 4, 2016 @ 06:08:07
  Author: felixonmars
Revision: 194633

addpkg: haskell-src-meta 0.7.0-1

Added:
  haskell-src-meta/
  haskell-src-meta/repos/
  haskell-src-meta/trunk/
  haskell-src-meta/trunk/PKGBUILD

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

Added: haskell-src-meta/trunk/PKGBUILD
===
--- haskell-src-meta/trunk/PKGBUILD (rev 0)
+++ haskell-src-meta/trunk/PKGBUILD 2016-11-04 06:08:07 UTC (rev 194633)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=haskell-src-meta
+pkgname=haskell-src-meta
+pkgver=0.7.0
+pkgrel=1
+pkgdesc="Parse source to template-haskell abstract syntax"
+url="https://github.com/bmillwood/haskell-src-meta;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-src-exts" "haskell-syb" "haskell-th-orphans")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('2a6735cc3379171a722f2a1df15dc67f216a404db4396b05f5e06ac82ab89856')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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


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

2016-11-04 Thread Felix Yan
Date: Friday, November 4, 2016 @ 06:06:57
  Author: felixonmars
Revision: 194632

archrelease: copy trunk to community-any

Added:
  python-oslo-utils/repos/community-any/PKGBUILD
(from rev 194631, python-oslo-utils/trunk/PKGBUILD)
Deleted:
  python-oslo-utils/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-11-04 06:06:40 UTC (rev 194631)
+++ PKGBUILD2016-11-04 06:06:57 UTC (rev 194632)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgbase=python-oslo-utils
-pkgname=(python-oslo-utils python2-oslo-utils)
-pkgver=3.17.0
-pkgrel=1
-pkgdesc="Oslo Utility library"
-arch=('any')
-url="https://pypi.python.org/pypi/oslo.utils/$pkgver;
-license=('Apache')
-makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python2-funcsigs'
- 'python-iso8601' 'python2-iso8601' 'python-oslo-i18n' 
'python2-oslo-i18n' 'python2-monotonic'
- 'python-pytz' 'python2-pytz' 'python-netaddr' 'python2-netaddr' 
'python-netifaces'
- 'python2-netifaces' 'python-debtcollector' 
'python2-debtcollector')
-checkdepends=('python-oslotest' 'python2-oslotest')
-source=("git+https://git.openstack.org/openstack/oslo.utils#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a oslo.utils{,-py2}
-
-  # Use python 3's standard monotonic function
-  sed -i '/monotonic/d' oslo.utils/requirements.txt
-  sed -i 's/from monotonic import monotonic/from time import monotonic/' 
oslo.utils/oslo_utils/timeutils.py
-}
-
-build() {
-  cd "$srcdir"/oslo.utils
-  python setup.py build
-
-  cd "$srcdir"/oslo.utils-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/oslo.utils
-  python setup.py testr
-
-  cd "$srcdir"/oslo.utils-py2
-  PYTHON=python2 python2 setup.py testr
-}
-
-package_python-oslo-utils() {
-  depends=('python-six' 'python-pbr' 'python-iso8601' 'python-oslo-i18n' 
'python-pytz'
-   'python-netaddr' 'python-netifaces' 'python-debtcollector')
-
-  cd "$srcdir"/oslo.utils
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-package_python2-oslo-utils() {
-  depends=('python2-six' 'python2-pbr' 'python2-iso8601' 'python2-oslo-i18n' 
'python2-monotonic'
-   'python2-pytz' 'python2-netaddr' 'python2-netifaces' 
'python2-debtcollector'
-   'python2-funcsigs')
-
-  cd "$srcdir"/oslo.utils-py2
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-oslo-utils/repos/community-any/PKGBUILD (from rev 194631, 
python-oslo-utils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-11-04 06:06:57 UTC (rev 194632)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-oslo-utils
+pkgname=(python-oslo-utils python2-oslo-utils)
+pkgver=3.18.0
+pkgrel=1
+pkgdesc="Oslo Utility library"
+arch=('any')
+url="https://pypi.python.org/pypi/oslo.utils/$pkgver;
+license=('Apache')
+makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python2-funcsigs'
+ 'python-iso8601' 'python2-iso8601' 'python-oslo-i18n' 
'python2-oslo-i18n' 'python2-monotonic'
+ 'python-pytz' 'python2-pytz' 'python-netaddr' 'python2-netaddr' 
'python-netifaces'
+ 'python2-netifaces' 'python-debtcollector' 
'python2-debtcollector')
+checkdepends=('python-oslotest' 'python2-oslotest')
+source=("git+https://git.openstack.org/openstack/oslo.utils#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a oslo.utils{,-py2}
+
+  # Use python 3's standard monotonic function
+  sed -i '/monotonic/d' oslo.utils/requirements.txt
+  sed -i 's/from monotonic import monotonic/from time import monotonic/' 
oslo.utils/oslo_utils/timeutils.py
+}
+
+build() {
+  cd "$srcdir"/oslo.utils
+  python setup.py build
+
+  cd "$srcdir"/oslo.utils-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/oslo.utils
+  python setup.py testr
+
+  cd "$srcdir"/oslo.utils-py2
+  PYTHON=python2 python2 setup.py testr
+}
+
+package_python-oslo-utils() {
+  depends=('python-six' 'python-pbr' 'python-iso8601' 'python-oslo-i18n' 
'python-pytz'
+   'python-netaddr' 'python-netifaces' 'python-debtcollector')
+
+  cd "$srcdir"/oslo.utils
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-oslo-utils() {
+  depends=('python2-six' 'python2-pbr' 'python2-iso8601' 'python2-oslo-i18n' 
'python2-monotonic'
+   'python2-pytz' 'python2-netaddr' 'python2-netifaces' 
'python2-debtcollector'
+   'python2-funcsigs')
+
+  cd "$srcdir"/oslo.utils-py2
+  python2 setup.py install --root="$pkgdir/" 

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

2016-11-04 Thread Felix Yan
Date: Friday, November 4, 2016 @ 06:06:40
  Author: felixonmars
Revision: 194631

upgpkg: python-oslo-utils 3.18.0-1

Modified:
  python-oslo-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 05:51:21 UTC (rev 194630)
+++ PKGBUILD2016-11-04 06:06:40 UTC (rev 194631)
@@ -4,7 +4,7 @@
 
 pkgbase=python-oslo-utils
 pkgname=(python-oslo-utils python2-oslo-utils)
-pkgver=3.17.0
+pkgver=3.18.0
 pkgrel=1
 pkgdesc="Oslo Utility library"
 arch=('any')