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

2017-09-02 Thread Kyle Keen
Date: Sunday, September 3, 2017 @ 04:53:25
  Author: kkeen
Revision: 255598

archrelease: copy trunk to community-any

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

---+
 PKGBUILD  |  164 
 words.install |   66 +++---
 2 files changed, 115 insertions(+), 115 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-03 04:53:06 UTC (rev 255597)
+++ PKGBUILD2017-09-03 04:53:25 UTC (rev 255598)
@@ -1,82 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Lukas Fleischer 
-# Contributor: Eric Johnson 
-pkgname=words
-pkgver=2.1
-pkgrel=4
-pkgdesc="A collection of International 'words' files for /usr/share/dict."
-arch=('any')
-url="ftp://ftp.gnu.org/gnu/aspell/dict/0index.html";
-license=('GPL' 'GPL2' 'custom')
-depends=()
-makedepends=('glibc' 'aspell')
-install=words.install
-source=('ftp://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-7.1-0.tar.bz2'
-'ftp://ftp.gnu.org/gnu/aspell/dict/ca/aspell6-ca-2.1.5-1.tar.bz2'
-'ftp://ftp.gnu.org/gnu/aspell/dict/fi/aspell6-fi-0.7-0.tar.bz2'
-'ftp://ftp.gnu.org/gnu/aspell/dict/fr/aspell-fr-0.50-3.tar.bz2'
-'ftp://ftp.gnu.org/gnu/aspell/dict/de-alt/aspell6-de-alt-2.1-1.tar.bz2'
-
'ftp://ftp.gnu.org/gnu/aspell/dict/it/aspell6-it-2.2_20050523-0.tar.bz2'
-'ftp://ftp.gnu.org/gnu/aspell/dict/de/aspell-de-0.50-2.tar.bz2'
-'ftp://ftp.gnu.org/gnu/aspell/dict/es/aspell6-es-1.11-2.tar.bz2')
-md5sums=('beba5e8f3afd3ed1644653bb685b2dfb'
- '153d26f724866909c6faf49eecefe8b3'
- '6d1032116982c0efab1af8fce83259c0'
- '53a2d05c4e8f7fabd3cefe24db977be7'
- '13245374b03088608d729fd15c58cd7a'
- 'b1217299a0b67d1e121494d7ec18a88d'
- '204a9737ff0110fb8c7d284bd7200f7d'
- '8406336a89c64e47e96f4153d0af70c4')
-
-build() {
-mkdir -p "$srcdir/$pkgname"
-cd "$srcdir/$pkgname"
-
-find "$srcdir" -name '*.cwl' -not -path "$srcdir/$pkgname/*" -exec cp -u 
'{}' './' \;
-preunzip *.cwl
-for wl in *.wl; do
-iconv --from-code=ISO-8859-1 --to-code=UTF-8 $wl | \
-cut -d '/' -f 1 | LC_ALL=C sort -df > $wl.utf8
-done
-rm *.wl
-
-mkdir -p copy
-while read cr; do
-ver=$(cut -d '-' -f 2 <<< "$cr")
-cp "$cr" "copy/copyright-$ver"
-done <<< "$(find "$srcdir" -name 'Copyright')"
-chmod 644 copy/*
-
-# locale specific sort for other languages?
-# sort specified from FS#47262
-cat en-common.wl.utf8 en_US* | sort -u | LC_ALL=C sort -df > us-merged
-cat en-common.wl.utf8 en_GB* | sort -u | LC_ALL=C sort -df > gb-merged
-cat de-only.wl.utf8   de_*   | sort -u | LC_ALL=C sort -df > de-merged
-}
-
-package() {
-cd "$srcdir/$pkgname"
-
-install -Dm644 us-merged "$pkgdir/usr/share/dict/american-english"
-install -Dm644 gb-merged "$pkgdir/usr/share/dict/british-english"
-ln -s american-english   "$pkgdir/usr/share/dict/usa"
-ln -s british-english"$pkgdir/usr/share/dict/british"
-
-install -Dm644 ca-common.wl.utf8 "$pkgdir/usr/share/dict/catala"
-ln -s catala "$pkgdir/usr/share/dict/catalan"
-
-install -Dm644 de-merged   "$pkgdir/usr/share/dict/ngerman"
-install -Dm644 de-alt.wl.utf8  "$pkgdir/usr/share/dict/ogerman"
-ln -s ngerman "$pkgdir/usr/share/dict/german"
-
-install -Dm644 fr-40-only.wl.utf8 "$pkgdir/usr/share/dict/french"
-
-install -Dm644 es.wl.utf8 "$pkgdir/usr/share/dict/spanish"
-install -Dm644 fi.wl.utf8 "$pkgdir/usr/share/dict/finnish"
-install -Dm644 it.wl.utf8 "$pkgdir/usr/share/dict/italian"
-
-install -d "$pkgdir/usr/share/licenses/$pkgname/"
-cp copy/*  "$pkgdir/usr/share/licenses/$pkgname/"
-}
-

Copied: words/repos/community-any/PKGBUILD (from rev 255597, 
words/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-03 04:53:25 UTC (rev 255598)
@@ -0,0 +1,82 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Lukas Fleischer 
+# Contributor: Eric Johnson 
+pkgname=words
+pkgver=2.1
+pkgrel=5
+pkgdesc="A collection of International 'words' files for /usr/share/dict."
+arch=('any')
+url="ftp://ftp.gnu.org/gnu/aspell/dict/0index.html";
+license=('GPL' 'GPL2' 'custom')
+depends=()
+makedepends=('glibc' 'aspell')
+install=words.install
+source=('ftp://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-2017.08.24-0.tar.bz2'
+'ftp://ftp.gnu.org/gnu/aspell/dict/ca/aspell6-ca-2.1.5-1.tar.bz2'
+'ftp://ftp.gnu.org/gnu/aspell/dict/fi/aspell6-fi-0.7-0.tar.bz2'
+'ftp://ftp.gnu.org/gnu/aspell/dict/fr/aspell-fr-0.50-3.tar.bz2'
+'ftp://ftp.gnu.org/gnu

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

2017-09-02 Thread Kyle Keen
Date: Sunday, September 3, 2017 @ 04:53:06
  Author: kkeen
Revision: 255597

upgpkg: words 2.1-5

Modified:
  words/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-03 04:24:31 UTC (rev 255596)
+++ PKGBUILD2017-09-03 04:53:06 UTC (rev 255597)
@@ -4,7 +4,7 @@
 # Contributor: Eric Johnson 
 pkgname=words
 pkgver=2.1
-pkgrel=4
+pkgrel=5
 pkgdesc="A collection of International 'words' files for /usr/share/dict."
 arch=('any')
 url="ftp://ftp.gnu.org/gnu/aspell/dict/0index.html";
@@ -12,7 +12,7 @@
 depends=()
 makedepends=('glibc' 'aspell')
 install=words.install
-source=('ftp://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-7.1-0.tar.bz2'
+source=('ftp://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-2017.08.24-0.tar.bz2'
 'ftp://ftp.gnu.org/gnu/aspell/dict/ca/aspell6-ca-2.1.5-1.tar.bz2'
 'ftp://ftp.gnu.org/gnu/aspell/dict/fi/aspell6-fi-0.7-0.tar.bz2'
 'ftp://ftp.gnu.org/gnu/aspell/dict/fr/aspell-fr-0.50-3.tar.bz2'
@@ -20,7 +20,7 @@
 
'ftp://ftp.gnu.org/gnu/aspell/dict/it/aspell6-it-2.2_20050523-0.tar.bz2'
 'ftp://ftp.gnu.org/gnu/aspell/dict/de/aspell-de-0.50-2.tar.bz2'
 'ftp://ftp.gnu.org/gnu/aspell/dict/es/aspell6-es-1.11-2.tar.bz2')
-md5sums=('beba5e8f3afd3ed1644653bb685b2dfb'
+md5sums=('e844f05fb11426a8620afb45c1b4d104'
  '153d26f724866909c6faf49eecefe8b3'
  '6d1032116982c0efab1af8fce83259c0'
  '53a2d05c4e8f7fabd3cefe24db977be7'


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

2017-09-02 Thread Kyle Keen
Date: Sunday, September 3, 2017 @ 04:24:13
  Author: kkeen
Revision: 255595

upgpkg: python-markdown 2.6.9-1

Modified:
  python-markdown/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-02 23:52:47 UTC (rev 255594)
+++ PKGBUILD2017-09-03 04:24:13 UTC (rev 255595)
@@ -8,7 +8,7 @@
 pkgbase=python-markdown
 pkgname=('python-markdown' 'python2-markdown')
 _pkgbasename=Markdown
-pkgver=2.6.8
+pkgver=2.6.9
 pkgrel=1
 pkgdesc="Python implementation of John Gruber's Markdown."
 arch=('any')
@@ -17,7 +17,7 @@
 depends=('python')
 makedepends=('python' 'python2')
 
source=("https://files.pythonhosted.org/packages/source/M/$_pkgbasename/$_pkgbasename-$pkgver.tar.gz";)
-md5sums=('d9ef057a5bd185f6f536400a31fc5d45')
+md5sums=('56547d362a9abcf30955b8950b08b5e3')
 
 build() {
   # bug in 2.4, some DOS line endings slipped in


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

2017-09-02 Thread Kyle Keen
Date: Sunday, September 3, 2017 @ 04:24:31
  Author: kkeen
Revision: 255596

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-03 04:24:13 UTC (rev 255595)
+++ PKGBUILD2017-09-03 04:24:31 UTC (rev 255596)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Angel Velasquez 
-# Contributor: Andrew Antle 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Chaiwat Suttipongsakul 
-
-pkgbase=python-markdown
-pkgname=('python-markdown' 'python2-markdown')
-_pkgbasename=Markdown
-pkgver=2.6.8
-pkgrel=1
-pkgdesc="Python implementation of John Gruber's Markdown."
-arch=('any')
-url='http://pypi.python.org/pypi/Markdown'
-license=('BSD')
-depends=('python')
-makedepends=('python' 'python2')
-source=("https://files.pythonhosted.org/packages/source/M/$_pkgbasename/$_pkgbasename-$pkgver.tar.gz";)
-md5sums=('d9ef057a5bd185f6f536400a31fc5d45')
-
-build() {
-  # bug in 2.4, some DOS line endings slipped in
-  find "$_pkgbasename-$pkgver/" -name '*py' | xargs sed -i 's|\r||g'
-
-  cp -r $_pkgbasename-$pkgver "$srcdir/python2-markdown"
-  cd "$srcdir/python2-markdown"
-  find "$srcdir/python2-markdown" -name '*py' | xargs sed -i 's|#!/usr/bin/env 
python$|&2|'
-}
-
-package_python-markdown() {
-  depends=('python')
-  cd "$srcdir/$_pkgbasename-$pkgver"
-  python3 setup.py install --root="$pkgdir" --optimize=0
-  install -Dm644 LICENSE.md 
"$pkgdir/usr/share/licenses/python-markdown/LICENSE"
-}
-
-package_python2-markdown() {
-  depends=('python2')
-  cd "$srcdir/python2-markdown"
-  python2 setup.py install --root="$pkgdir" --optimize=0
-  mv "$pkgdir/usr/bin/markdown_py" "$pkgdir/usr/bin/markdown_py2"
-  install -Dm644 LICENSE.md 
"$pkgdir/usr/share/licenses/python2-markdown/LICENSE"
-}
-
-check_python-markdown() {
-  [[ $(python -c "import markdown; print(markdown.version)") == "$pkgver" ]]
-  [[ $(python -c "import markdown; print(markdown.markdown('*test*'))") == 
"test" ]]
-}
-
-check_python2-markdown() {
-  [[ $(python2 -c "import markdown; print(markdown.version)") == "$pkgver" ]]
-  [[ $(python2 -c "import markdown; print(markdown.markdown('*test*'))") == 
"test" ]]
-}
-

Copied: python-markdown/repos/community-any/PKGBUILD (from rev 255595, 
python-markdown/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-03 04:24:31 UTC (rev 255596)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Angel Velasquez 
+# Contributor: Andrew Antle 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Chaiwat Suttipongsakul 
+
+pkgbase=python-markdown
+pkgname=('python-markdown' 'python2-markdown')
+_pkgbasename=Markdown
+pkgver=2.6.9
+pkgrel=1
+pkgdesc="Python implementation of John Gruber's Markdown."
+arch=('any')
+url='http://pypi.python.org/pypi/Markdown'
+license=('BSD')
+depends=('python')
+makedepends=('python' 'python2')
+source=("https://files.pythonhosted.org/packages/source/M/$_pkgbasename/$_pkgbasename-$pkgver.tar.gz";)
+md5sums=('56547d362a9abcf30955b8950b08b5e3')
+
+build() {
+  # bug in 2.4, some DOS line endings slipped in
+  find "$_pkgbasename-$pkgver/" -name '*py' | xargs sed -i 's|\r||g'
+
+  cp -r $_pkgbasename-$pkgver "$srcdir/python2-markdown"
+  cd "$srcdir/python2-markdown"
+  find "$srcdir/python2-markdown" -name '*py' | xargs sed -i 's|#!/usr/bin/env 
python$|&2|'
+}
+
+package_python-markdown() {
+  depends=('python')
+  cd "$srcdir/$_pkgbasename-$pkgver"
+  python3 setup.py install --root="$pkgdir" --optimize=0
+  install -Dm644 LICENSE.md 
"$pkgdir/usr/share/licenses/python-markdown/LICENSE"
+}
+
+package_python2-markdown() {
+  depends=('python2')
+  cd "$srcdir/python2-markdown"
+  python2 setup.py install --root="$pkgdir" --optimize=0
+  mv "$pkgdir/usr/bin/markdown_py" "$pkgdir/usr/bin/markdown_py2"
+  install -Dm644 LICENSE.md 
"$pkgdir/usr/share/licenses/python2-markdown/LICENSE"
+}
+
+check_python-markdown() {
+  [[ $(python -c "import markdown; print(markdown.version)") == "$pkgver" ]]
+  [[ $(python -c "import markdown; print(markdown.markdown('*test*'))") == 
"test" ]]
+}
+
+check_python2-markdown() {
+  [[ $(python2 -c "import markdown; print(markdown.version)") == "$pkgver" ]]
+  [[ $(python2 -c "import markdown; print(markdown.markdown('*test*'))") == 
"test" ]]
+}
+


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

2017-09-02 Thread Jelle van der Waa
Date: Saturday, September 2, 2017 @ 23:52:47
  Author: jelle
Revision: 255594

archrelease: copy trunk to community-any

Added:
  uranium/repos/community-any/PKGBUILD
(from rev 255593, uranium/trunk/PKGBUILD)
Deleted:
  uranium/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-02 23:52:39 UTC (rev 255593)
+++ PKGBUILD2017-09-02 23:52:47 UTC (rev 255594)
@@ -1,37 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Grey Christoforo 
-
-pkgname=uranium
-pkgver=2.6.0
-pkgrel=2
-pkgdesc="A Python framework for building Desktop applications."
-url="https://github.com/Ultimaker/Uranium";
-arch=('any')
-license=('AGPL')
-depends=('python' 'qt5-quickcontrols' 'pyqt5-common' 'python-pyqt5' 
'python-numpy' 'arcus')
-makedepends=('cmake')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz";)
-sha256sums=('3b84975bdac58a0c38fa26d3c1552db73ed04d1506874afc883cd1bca169b4e0')
-
-prepare() {
-  cd Uranium-${pkgver}
-  sed -i 's,DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}/dist-packages,DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages,g' 
CMakeLists.txt
-  sed -i 's,DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}/dist-packages/cura),DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages/cura),g'
 CMakeLists.txt
-}
-
-build() {
-  cd Uranium-${pkgver}
-  mkdir -p build && cd build
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd Uranium-${pkgver}/build
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: uranium/repos/community-any/PKGBUILD (from rev 255593, 
uranium/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-02 23:52:47 UTC (rev 255594)
@@ -0,0 +1,37 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Grey Christoforo 
+
+pkgname=uranium
+pkgver=2.7.0
+pkgrel=1
+pkgdesc="A Python framework for building Desktop applications."
+url="https://github.com/Ultimaker/Uranium";
+arch=('any')
+license=('AGPL')
+depends=('python' 'qt5-quickcontrols' 'pyqt5-common' 'python-pyqt5' 
'python-numpy' 'arcus')
+makedepends=('cmake')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz";)
+sha256sums=('367a6408413bd5cfd8121745f2ae0d855ac0895c7c14326bfd4c9227223ed87b')
+
+prepare() {
+  cd Uranium-${pkgver}
+  sed -i 's,DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}/dist-packages,DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages,g' 
CMakeLists.txt
+  sed -i 's,DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}/dist-packages/cura),DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages/cura),g'
 CMakeLists.txt
+}
+
+build() {
+  cd Uranium-${pkgver}
+  mkdir -p build && cd build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd Uranium-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-09-02 Thread Jelle van der Waa
Date: Saturday, September 2, 2017 @ 23:52:39
  Author: jelle
Revision: 255593

upgpkg: uranium 2.7.0-1

Modified:
  uranium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-02 23:50:51 UTC (rev 255592)
+++ PKGBUILD2017-09-02 23:52:39 UTC (rev 255593)
@@ -2,8 +2,8 @@
 # Contributor: Grey Christoforo 
 
 pkgname=uranium
-pkgver=2.6.0
-pkgrel=2
+pkgver=2.7.0
+pkgrel=1
 pkgdesc="A Python framework for building Desktop applications."
 url="https://github.com/Ultimaker/Uranium";
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('python' 'qt5-quickcontrols' 'pyqt5-common' 'python-pyqt5' 
'python-numpy' 'arcus')
 makedepends=('cmake')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz";)
-sha256sums=('3b84975bdac58a0c38fa26d3c1552db73ed04d1506874afc883cd1bca169b4e0')
+sha256sums=('367a6408413bd5cfd8121745f2ae0d855ac0895c7c14326bfd4c9227223ed87b')
 
 prepare() {
   cd Uranium-${pkgver}


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

2017-09-02 Thread Jelle van der Waa
Date: Saturday, September 2, 2017 @ 23:50:44
  Author: jelle
Revision: 255591

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

Added:
  curaengine/repos/community-i686/PKGBUILD
(from rev 255590, curaengine/trunk/PKGBUILD)
  curaengine/repos/community-x86_64/PKGBUILD
(from rev 255589, curaengine/trunk/PKGBUILD)
Deleted:
  curaengine/repos/community-i686/PKGBUILD
  curaengine/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-02 23:50:39 UTC (rev 255590)
+++ community-i686/PKGBUILD 2017-09-02 23:50:44 UTC (rev 255591)
@@ -1,34 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Grey Christoforo 
-
-pkgname=curaengine
-pkgver=2.6.0
-pkgrel=1
-pkgdesc="Fast and robust engine for processing 3D models into 3D printing 
instruction for Ultimaker and other GCode based 3D printers."
-url="https://github.com/Ultimaker/CuraEngine";
-arch=('x86_64' 'i686')
-license=('AGPL')
-depends=('arcus')
-makedepends=('cmake')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz";)
-md5sums=('0f92c6adc14f34a0263249218f924dee')
-
-
-build() {
-  cd CuraEngine-${pkgver}
-  mkdir -p build
-  cd build
-
-   cmake .. \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_BUILD_TYPE=Release
-
-  make
-}
-
-package() {
-  cd CuraEngine-${pkgver}/build
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: curaengine/repos/community-i686/PKGBUILD (from rev 255590, 
curaengine/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-02 23:50:44 UTC (rev 255591)
@@ -0,0 +1,34 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Grey Christoforo 
+
+pkgname=curaengine
+pkgver=2.7.0
+pkgrel=1
+pkgdesc="Fast and robust engine for processing 3D models into 3D printing 
instruction for Ultimaker and other GCode based 3D printers."
+url="https://github.com/Ultimaker/CuraEngine";
+arch=('x86_64' 'i686')
+license=('AGPL')
+depends=('arcus')
+makedepends=('cmake')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz";)
+md5sums=('fe888562eeb3fc9f518449cf6761d03b')
+
+
+build() {
+  cd CuraEngine-${pkgver}
+  mkdir -p build
+  cd build
+
+   cmake .. \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_BUILD_TYPE=Release
+
+  make
+}
+
+package() {
+  cd CuraEngine-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-02 23:50:39 UTC (rev 255590)
+++ community-x86_64/PKGBUILD   2017-09-02 23:50:44 UTC (rev 255591)
@@ -1,34 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Grey Christoforo 
-
-pkgname=curaengine
-pkgver=2.6.0
-pkgrel=1
-pkgdesc="Fast and robust engine for processing 3D models into 3D printing 
instruction for Ultimaker and other GCode based 3D printers."
-url="https://github.com/Ultimaker/CuraEngine";
-arch=('x86_64' 'i686')
-license=('AGPL')
-depends=('arcus')
-makedepends=('cmake')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz";)
-md5sums=('0f92c6adc14f34a0263249218f924dee')
-
-
-build() {
-  cd CuraEngine-${pkgver}
-  mkdir -p build
-  cd build
-
-   cmake .. \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_BUILD_TYPE=Release
-
-  make
-}
-
-package() {
-  cd CuraEngine-${pkgver}/build
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: curaengine/repos/community-x86_64/PKGBUILD (from rev 255589, 
curaengine/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-02 23:50:44 UTC (rev 255591)
@@ -0,0 +1,34 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Grey Christoforo 
+
+pkgname=curaengine
+pkgver=2.7.0
+pkgrel=1
+pkgdesc="Fast and robust engine for processing 3D models into 3D printing 
instruction for Ultimaker and other GCode based 3D printers."
+url="https://github.com/Ultimaker/CuraEngine";
+arch=('x86_64' 'i686')
+license=('AGPL')
+depends=('arcus')
+makedepends=('cmake')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz";)
+md5sums=('fe888562eeb3fc9f518449cf6761d03b')
+
+
+build() {
+  cd CuraEngine-${pkgver}
+  mkdir -p build
+  cd build
+
+   cmake .. \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_BU

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

2017-09-02 Thread Jelle van der Waa
Date: Saturday, September 2, 2017 @ 23:50:39
  Author: jelle
Revision: 255590

upgpkg: cura 2.7.0-1

Modified:
  cura/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-02 23:50:32 UTC (rev 255589)
+++ PKGBUILD2017-09-02 23:50:39 UTC (rev 255590)
@@ -2,17 +2,18 @@
 # Contributo: Grey Christoforo 
 
 pkgname=cura
-pkgver=2.6.0
-pkgrel=2
+pkgver=2.7.0
+pkgrel=1
 pkgdesc="A software solution for 3D printing aimed at RepRaps and the 
Ultimaker."
 depends=('python-pyqt5' 'qt5-svg' 'python-scipy' 'python-pyserial' 
'python-numpy' 'uranium' 'curaengine' 'cura-binary-data' 
'cura-resources-materials')
 makedepends=('qt5-tools' 'cmake')
+optdepends=('python-zeroconf: network printing support')
 provides=('cura')
 url="https://ultimaker.com/en/products/cura-software";
 license=('AGPL')
 arch=('i686' 'x86_64')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/Cura/archive/${pkgver}.tar.gz)
-sha1sums=('f993376e1b30f76afc8ef34afa5aed6ce4d74172')
+sha1sums=('96104c74c6963afca980addbfbf212602e9b864e')
 
 prepare(){
   cd Cura-${pkgver}


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

2017-09-02 Thread Jelle van der Waa
Date: Saturday, September 2, 2017 @ 23:50:32
  Author: jelle
Revision: 255589

upgpkg: curaengine 2.7.0-1

Modified:
  curaengine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-02 21:04:16 UTC (rev 255588)
+++ PKGBUILD2017-09-02 23:50:32 UTC (rev 255589)
@@ -2,7 +2,7 @@
 # Contributor: Grey Christoforo 
 
 pkgname=curaengine
-pkgver=2.6.0
+pkgver=2.7.0
 pkgrel=1
 pkgdesc="Fast and robust engine for processing 3D models into 3D printing 
instruction for Ultimaker and other GCode based 3D printers."
 url="https://github.com/Ultimaker/CuraEngine";
@@ -11,7 +11,7 @@
 depends=('arcus')
 makedepends=('cmake')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz";)
-md5sums=('0f92c6adc14f34a0263249218f924dee')
+md5sums=('fe888562eeb3fc9f518449cf6761d03b')
 
 
 build() {


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

2017-09-02 Thread Jelle van der Waa
Date: Saturday, September 2, 2017 @ 23:50:51
  Author: jelle
Revision: 255592

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-02 23:50:44 UTC (rev 255591)
+++ community-i686/PKGBUILD 2017-09-02 23:50:51 UTC (rev 255592)
@@ -1,44 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributo: Grey Christoforo 
-
-pkgname=cura
-pkgver=2.6.0
-pkgrel=2
-pkgdesc="A software solution for 3D printing aimed at RepRaps and the 
Ultimaker."
-depends=('python-pyqt5' 'qt5-svg' 'python-scipy' 'python-pyserial' 
'python-numpy' 'uranium' 'curaengine' 'cura-binary-data' 
'cura-resources-materials')
-makedepends=('qt5-tools' 'cmake')
-provides=('cura')
-url="https://ultimaker.com/en/products/cura-software";
-license=('AGPL')
-arch=('i686' 'x86_64')
-source=($pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/Cura/archive/${pkgver}.tar.gz)
-sha1sums=('f993376e1b30f76afc8ef34afa5aed6ce4d74172')
-
-prepare(){
-  cd Cura-${pkgver}
-  sed -i 's,DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}/dist-packages,DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages,g' 
CMakeLists.txt
-  sed -i 's,DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}/dist-packages/cura),DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages/cura),g'
 CMakeLists.txt
-}
-
-build(){
-  cd Cura-${pkgver}
-  mkdir -p build
-  cd build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DURANIUM_SCRIPTS_DIR=/usr/share/uranium/scripts
-
-  make
-}
-
-package(){
-  cd Cura-${pkgver}/build
-  make DESTDIR="${pkgdir}" install
-  
-  # make sure cura can find uranium plugins:
-  ln -s /usr/lib/uranium/plugins/* "${pkgdir}/usr/lib/cura/plugins/."
-
-  # don't ever send any user or print info through the internet to Ultimaker
-  rm -rf "${pkgdir}/usr/lib/cura/plugins/SliceInfoPlugin"
-}

Copied: cura/repos/community-i686/PKGBUILD (from rev 255591, 
cura/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-02 23:50:51 UTC (rev 255592)
@@ -0,0 +1,45 @@
+# Maintainer: Jelle van der Waa 
+# Contributo: Grey Christoforo 
+
+pkgname=cura
+pkgver=2.7.0
+pkgrel=1
+pkgdesc="A software solution for 3D printing aimed at RepRaps and the 
Ultimaker."
+depends=('python-pyqt5' 'qt5-svg' 'python-scipy' 'python-pyserial' 
'python-numpy' 'uranium' 'curaengine' 'cura-binary-data' 
'cura-resources-materials')
+makedepends=('qt5-tools' 'cmake')
+optdepends=('python-zeroconf: network printing support')
+provides=('cura')
+url="https://ultimaker.com/en/products/cura-software";
+license=('AGPL')
+arch=('i686' 'x86_64')
+source=($pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/Cura/archive/${pkgver}.tar.gz)
+sha1sums=('96104c74c6963afca980addbfbf212602e9b864e')
+
+prepare(){
+  cd Cura-${pkgver}
+  sed -i 's,DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}/dist-packages,DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages,g' 
CMakeLists.txt
+  sed -i 's,DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}/dist-packages/cura),DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages/cura),g'
 CMakeLists.txt
+}
+
+build(){
+  cd Cura-${pkgver}
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DURANIUM_SCRIPTS_DIR=/usr/share/uranium/scripts
+
+  make
+}
+
+package(){
+  cd Cura-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+  
+  # make sure cura can find uranium plugins:
+  ln -s /usr/lib/uranium/plugins/* "${pkgdir}/usr/lib/cura/plugins/."
+
+  # don't ever send any user or print info through the internet to Ultimaker
+  rm -rf "${pkgdir}/usr/lib/cura/plugins/SliceInfoPlugin"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-02 23:50:44 UTC (rev 255591)
+++ community-x86_64/PKGBUILD   2017-09-02 23:50:51 UTC (rev 255592)
@@ -1,44 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributo: Grey Christoforo 
-
-pkgname=cura
-pkgver=2.6.0
-pkgrel=2
-pkgdesc="A software solution for 3D printing aimed at RepRaps and the 
Ultimaker."
-depends=('python-pyqt5' 'qt5-svg' 'python-scipy'

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

2017-09-02 Thread Alexander Rødseth
Date: Saturday, September 2, 2017 @ 21:04:16
  Author: arodseth
Revision: 255588

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-02 21:04:00 UTC (rev 255587)
+++ community-i686/PKGBUILD 2017-09-02 21:04:16 UTC (rev 255588)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Blue Peppers 
-# Contributor: Stefan Husmann 
-# Contributor: Yannick LM 
-
-pkgname=tint2
-pkgver=0.14.6
-pkgrel=2
-pkgdesc='Basic, good-looking task manager for WMs'
-arch=('x86_64' 'i686')
-url='https://gitlab.com/o9000/tint2'
-license=('GPL2')
-depends=('gtk2' 'imlib2' 'startup-notification')
-makedepends=('cmake' 'startup-notification' 'git' 'ninja' 'setconf')
-source=("$pkgname-$pkgver.tar.bz2::https://gitlab.com/o9000/tint2/repository/archive.tar.bz2?ref=$pkgver";)
-sha256sums=('b40079fb187aa248cd3b6957076f138d040c723b309e1b254ac0c8ec9826a451')
-
-prepare() {
-  mv "$pkgname-$pkgver-"* "$pkgname"
-  setconf "$pkgname/get_version.sh" VERSION "$pkgver"
-}
-
-build() {
-  mkdir -p build
-  cd build
-  cmake "../$pkgname" \
--DCMAKE_INSTALL_PREFIX=/usr \
--DENABLE_TINT2CONF=1 \
--GNinja
-  ninja
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-}
-
-# getver: gitlab.com/o9000/tint2/blob/master/README.md
-# vim: ts=2 sw=2 et:

Copied: tint2/repos/community-i686/PKGBUILD (from rev 255587, 
tint2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-02 21:04:16 UTC (rev 255588)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Blue Peppers 
+# Contributor: Stefan Husmann 
+# Contributor: Yannick LM 
+
+pkgname=tint2
+pkgver=15.0
+pkgrel=1
+pkgdesc='Basic, good-looking task manager for WMs'
+arch=('x86_64' 'i686')
+url='https://gitlab.com/o9000/tint2'
+license=('GPL2')
+depends=('gtk2' 'imlib2' 'startup-notification')
+makedepends=('cmake' 'startup-notification' 'git' 'ninja' 'setconf')
+source=("$pkgname-$pkgver.tar.bz2::https://gitlab.com/o9000/tint2/repository/archive.tar.bz2?ref=$pkgver";)
+sha256sums=('a39a8f43e6e087bce0f61b4ea20219e5a5a5f696cfa41e4d039c109f98f10cc5')
+
+prepare() {
+  mv "$pkgname-$pkgver-"* "$pkgname"
+  setconf "$pkgname/get_version.sh" VERSION "$pkgver"
+}
+
+build() {
+  mkdir -p build
+  cd build
+  cmake "../$pkgname" \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_TINT2CONF=1 \
+-GNinja
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+}
+
+# getver: gitlab.com/o9000/tint2/blob/master/README.md
+# vim:ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-02 21:04:00 UTC (rev 255587)
+++ community-x86_64/PKGBUILD   2017-09-02 21:04:16 UTC (rev 255588)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Blue Peppers 
-# Contributor: Stefan Husmann 
-# Contributor: Yannick LM 
-
-pkgname=tint2
-pkgver=0.14.6
-pkgrel=2
-pkgdesc='Basic, good-looking task manager for WMs'
-arch=('x86_64' 'i686')
-url='https://gitlab.com/o9000/tint2'
-license=('GPL2')
-depends=('gtk2' 'imlib2' 'startup-notification')
-makedepends=('cmake' 'startup-notification' 'git' 'ninja' 'setconf')
-source=("$pkgname-$pkgver.tar.bz2::https://gitlab.com/o9000/tint2/repository/archive.tar.bz2?ref=$pkgver";)
-sha256sums=('b40079fb187aa248cd3b6957076f138d040c723b309e1b254ac0c8ec9826a451')
-
-prepare() {
-  mv "$pkgname-$pkgver-"* "$pkgname"
-  setconf "$pkgname/get_version.sh" VERSION "$pkgver"
-}
-
-build() {
-  mkdir -p build
-  cd build
-  cmake "../$pkgname" \
--DCMAKE_INSTALL_PREFIX=/usr \
--DENABLE_TINT2CONF=1 \
--GNinja
-  ninja
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-}
-
-# getver: gitlab.com/o9000/tint2/blob/master/README.md
-# vim: ts=2 sw=2 et:

Copied: tint2/repos/community-x86_64/PKGBUILD (from rev 255587, 
tint2/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-02 21:04:16 UTC (rev 255588)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Blue Peppers 
+# Contributor: Stefan Husmann 
+# Cont

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

2017-09-02 Thread Alexander Rødseth
Date: Saturday, September 2, 2017 @ 21:04:00
  Author: arodseth
Revision: 255587

upgpkg: tint2 15.0-1

Modified:
  tint2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-02 20:34:44 UTC (rev 255586)
+++ PKGBUILD2017-09-02 21:04:00 UTC (rev 255587)
@@ -5,8 +5,8 @@
 # Contributor: Yannick LM 
 
 pkgname=tint2
-pkgver=0.14.6
-pkgrel=2
+pkgver=15.0
+pkgrel=1
 pkgdesc='Basic, good-looking task manager for WMs'
 arch=('x86_64' 'i686')
 url='https://gitlab.com/o9000/tint2'
@@ -14,7 +14,7 @@
 depends=('gtk2' 'imlib2' 'startup-notification')
 makedepends=('cmake' 'startup-notification' 'git' 'ninja' 'setconf')
 
source=("$pkgname-$pkgver.tar.bz2::https://gitlab.com/o9000/tint2/repository/archive.tar.bz2?ref=$pkgver";)
-sha256sums=('b40079fb187aa248cd3b6957076f138d040c723b309e1b254ac0c8ec9826a451')
+sha256sums=('a39a8f43e6e087bce0f61b4ea20219e5a5a5f696cfa41e4d039c109f98f10cc5')
 
 prepare() {
   mv "$pkgname-$pkgver-"* "$pkgname"
@@ -36,4 +36,4 @@
 }
 
 # getver: gitlab.com/o9000/tint2/blob/master/README.md
-# vim: ts=2 sw=2 et:
+# vim:ts=2 sw=2 et:


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

2017-09-02 Thread Gaëtan Bisson
Date: Saturday, September 2, 2017 @ 20:58:52
  Author: bisson
Revision: 304605

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-09-02 20:56:53 UTC (rev 304604)
+++ extra-i686/PKGBUILD 2017-09-02 20:58:52 UTC (rev 304605)
@@ -1,49 +0,0 @@
-# $Id$
-# Contributor: tobias [tobias [at] archlinux.org]
-# Maintainer: Gaetan Bisson 
-
-pkgname=mutt
-pkgver=1.8.3
-pkgrel=1
-pkgdesc='Small but very powerful text-based mail client'
-url='http://www.mutt.org/'
-license=('GPL')
-backup=('etc/Muttrc')
-arch=('i686' 'x86_64')
-optdepends=('smtp-forwarder: to send mail')
-depends=('gpgme' 'ncurses' 'openssl' 'libsasl' 'gdbm' 'libidn' 'mime-types' 
'krb5')
-source=("http://ftp.mutt.org/pub/mutt/${pkgname}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('9b81746d67ffeca5ea44f60893b70dc93c86d4bc10187d4dd360185e4d42ed42'
-'SKIP')
-validpgpkeys=('8975A9B33AA37910385C5308ADEF768480316BDA')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --enable-gpgme \
-   --enable-pop \
-   --enable-imap \
-   --enable-smtp \
-   --enable-hcache \
-   --enable-sidebar \
-   --with-curses=/usr \
-   --with-regex \
-   --with-gss=/usr \
-   --with-ssl=/usr \
-   --with-sasl \
-   --with-idn \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-
-   rm "${pkgdir}"/etc/mime.types{,.dist}
-   rm "${pkgdir}"/usr/bin/{flea,muttbug}
-   rm "${pkgdir}"/usr/share/man/man1/{flea,muttbug}.1
-   install -Dm644 contrib/gpg.rc "${pkgdir}"/etc/Muttrc.gpg.dist
-}

Copied: mutt/repos/extra-i686/PKGBUILD (from rev 304604, mutt/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-09-02 20:58:52 UTC (rev 304605)
@@ -0,0 +1,49 @@
+# $Id$
+# Contributor: tobias [tobias [at] archlinux.org]
+# Maintainer: Gaetan Bisson 
+
+pkgname=mutt
+pkgver=1.9.0
+pkgrel=1
+pkgdesc='Small but very powerful text-based mail client'
+url='http://www.mutt.org/'
+license=('GPL')
+backup=('etc/Muttrc')
+arch=('i686' 'x86_64')
+optdepends=('smtp-forwarder: to send mail')
+depends=('gpgme' 'ncurses' 'openssl' 'libsasl' 'gdbm' 'libidn' 'mime-types' 
'krb5')
+source=("http://ftp.mutt.org/pub/mutt/${pkgname}-${pkgver}.tar.gz"{,.asc})
+sha256sums=('ec6d7595d3a1f26ae9f565b5ba5ffee94f9b2dc0683b0014684f2dc874f9e2d4'
+'SKIP')
+validpgpkeys=('8975A9B33AA37910385C5308ADEF768480316BDA')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --enable-gpgme \
+   --enable-pop \
+   --enable-imap \
+   --enable-smtp \
+   --enable-hcache \
+   --enable-sidebar \
+   --with-curses=/usr \
+   --with-regex \
+   --with-gss=/usr \
+   --with-ssl=/usr \
+   --with-sasl \
+   --with-idn \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+
+   rm "${pkgdir}"/etc/mime.types{,.dist}
+   rm "${pkgdir}"/usr/bin/{flea,muttbug}
+   rm "${pkgdir}"/usr/share/man/man1/{flea,muttbug}.1
+   install -Dm644 contrib/gpg.rc "${pkgdir}"/etc/Muttrc.gpg.dist
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-09-02 20:56:53 UTC (rev 304604)
+++ extra-x86_64/PKGBUILD   2017-09-02 20:58:52 UTC (rev 304605)
@@ -1,49 +0,0 @@
-# $Id$
-# Contributor: tobias [tobias [at] archlinux.org]
-# Maintainer: Gaetan Bisson 
-
-pkgname=mutt
-pkgver=1.8.3
-pkgrel=1
-pkgdesc='Small but very powerful text-based mail client'
-url='http://www.mutt.org/'
-license=('GPL')
-backup=('etc/Muttrc')
-arch=('i686' 'x86_64')
-optdepends=('smtp-forwarder: to send mail')
-depends=('gpgme' 'ncurses' 'openssl' 'libsasl' 'gdbm' 'libidn' 'mime-types' 
'krb5')
-source=("http://ftp.mutt.org/pub/mutt/${pkgname}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('9b81746d67ffeca5ea44f60893

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

2017-09-02 Thread Gaëtan Bisson
Date: Saturday, September 2, 2017 @ 20:56:53
  Author: bisson
Revision: 304604

upstream update

Modified:
  mutt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-02 18:43:58 UTC (rev 304603)
+++ PKGBUILD2017-09-02 20:56:53 UTC (rev 304604)
@@ -3,7 +3,7 @@
 # Maintainer: Gaetan Bisson 
 
 pkgname=mutt
-pkgver=1.8.3
+pkgver=1.9.0
 pkgrel=1
 pkgdesc='Small but very powerful text-based mail client'
 url='http://www.mutt.org/'
@@ -13,7 +13,7 @@
 optdepends=('smtp-forwarder: to send mail')
 depends=('gpgme' 'ncurses' 'openssl' 'libsasl' 'gdbm' 'libidn' 'mime-types' 
'krb5')
 source=("http://ftp.mutt.org/pub/mutt/${pkgname}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('9b81746d67ffeca5ea44f60893b70dc93c86d4bc10187d4dd360185e4d42ed42'
+sha256sums=('ec6d7595d3a1f26ae9f565b5ba5ffee94f9b2dc0683b0014684f2dc874f9e2d4'
 'SKIP')
 validpgpkeys=('8975A9B33AA37910385C5308ADEF768480316BDA')
 


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

2017-09-02 Thread Alexander Rødseth
Date: Saturday, September 2, 2017 @ 20:34:28
  Author: arodseth
Revision: 255585

upgpkg: lua-bitop 1.0.2-8

Modified:
  lua-bitop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-02 20:32:04 UTC (rev 255584)
+++ PKGBUILD2017-09-02 20:34:28 UTC (rev 255585)
@@ -1,37 +1,28 @@
 # $Id$
-# Maintainer: Alexander Rødseth 
+# Maintainer: Alexander F Rødseth 
 # Contributor: Sébastien Luttringer
 # Contributor: Lucas Hermann Negri 
 
 pkgbase=lua-bitop
-# BitOp has not been ported to Lua5.3 so no lua-bitop package
-# https://www.freelists.org/post/luajit/Port-bitop-to-53
 pkgname=(lua51-bitop lua52-bitop)
 pkgver=1.0.2
-pkgrel=7
-pkgdesc='C extension adding bitwise operations on numbers'
+pkgrel=8
+pkgdesc='Bitwise operations on numbers'
 arch=('x86_64' 'i686')
-url='http://bitop.luajit.org/'
+license=('MIT')
+url='https://bitop.luajit.org/'
 makedepends=('lua51' 'lua52')
-source=("http://bitop.luajit.org/download/LuaBitOp-$pkgver.tar.gz";)
-md5sums=('d0c1080fe0c844e8477279668e2d0d06')
-license=('MIT')
+source=("https://bitop.luajit.org/download/LuaBitOp-$pkgver.tar.gz";)
+sha256sums=('1207c9293dcd52eb9dca6538d1b87352bd510f4e760938f5048433f7f272ce99')
 
-build() {
+prepare() {
   cp -a "LuaBitOp-$pkgver" "LuaBitOp51-$pkgver"
   cp -a "LuaBitOp-$pkgver" "LuaBitOp52-$pkgver"
+}
 
-  # msg2 'Building with lua 5.3'
-  # cd "LuaBitOp-$pkgver"
-  # make INCLUDES=' -I/usr/include' LUA='lua'
-
-  msg2 'Building with lua 5.2'
-  cd "$srcdir/LuaBitOp52-$pkgver"
-  make INCLUDES=' -I/usr/include/lua5.2' LUA='lua5.2'
-
-  msg2 'Building with lua 5.1'
-  cd "$srcdir/LuaBitOp51-$pkgver"
-  make INCLUDES=' -I/usr/include/lua5.1' LUA='lua5.1'
+build() {
+  make -C "LuaBitOp51-$pkgver" INCLUDES=' -I/usr/include/lua5.1' LUA='lua5.1'
+  make -C "LuaBitOp52-$pkgver" INCLUDES=' -I/usr/include/lua5.2' LUA='lua5.2'
 }
 
 package_lua-bitop() {
@@ -51,7 +42,7 @@
   cd "LuaBitOp51-$pkgver"
   install -Dm 644 bit.so "$pkgdir/usr/lib/lua/5.1/bit.so"
   install -dm 755 "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s '../lua51/LICENSE' "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  ln -s '../lua51/COPYRIGHT' "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
 
 package_lua52-bitop() {
@@ -62,6 +53,7 @@
   cd "LuaBitOp52-$pkgver"
   install -Dm 644 bit.so "$pkgdir/usr/lib/lua/5.2/bit.so"
   install -dm 755 "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s '../lua51/LICENSE' "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  ln -s '../lua52/LICENSE' "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
-# vim:set ts=2 sw=2 et:
+
+# vim:ts=2 sw=2 et:


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

2017-09-02 Thread Alexander Rødseth
Date: Saturday, September 2, 2017 @ 20:34:44
  Author: arodseth
Revision: 255586

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

Added:
  lua-bitop/repos/community-i686/PKGBUILD
(from rev 255585, lua-bitop/trunk/PKGBUILD)
  lua-bitop/repos/community-x86_64/PKGBUILD
(from rev 255585, lua-bitop/trunk/PKGBUILD)
Deleted:
  lua-bitop/repos/community-i686/PKGBUILD
  lua-bitop/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  118 
 community-i686/PKGBUILD   |   67 
 community-x86_64/PKGBUILD |   67 
 3 files changed, 118 insertions(+), 134 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-02 20:34:28 UTC (rev 255585)
+++ community-i686/PKGBUILD 2017-09-02 20:34:44 UTC (rev 255586)
@@ -1,67 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Sébastien Luttringer
-# Contributor: Lucas Hermann Negri 
-
-pkgbase=lua-bitop
-# BitOp has not been ported to Lua5.3 so no lua-bitop package
-# https://www.freelists.org/post/luajit/Port-bitop-to-53
-pkgname=(lua51-bitop lua52-bitop)
-pkgver=1.0.2
-pkgrel=7
-pkgdesc='C extension adding bitwise operations on numbers'
-arch=('x86_64' 'i686')
-url='http://bitop.luajit.org/'
-makedepends=('lua51' 'lua52')
-source=("http://bitop.luajit.org/download/LuaBitOp-$pkgver.tar.gz";)
-md5sums=('d0c1080fe0c844e8477279668e2d0d06')
-license=('MIT')
-
-build() {
-  cp -a "LuaBitOp-$pkgver" "LuaBitOp51-$pkgver"
-  cp -a "LuaBitOp-$pkgver" "LuaBitOp52-$pkgver"
-
-  # msg2 'Building with lua 5.3'
-  # cd "LuaBitOp-$pkgver"
-  # make INCLUDES=' -I/usr/include' LUA='lua'
-
-  msg2 'Building with lua 5.2'
-  cd "$srcdir/LuaBitOp52-$pkgver"
-  make INCLUDES=' -I/usr/include/lua5.2' LUA='lua5.2'
-
-  msg2 'Building with lua 5.1'
-  cd "$srcdir/LuaBitOp51-$pkgver"
-  make INCLUDES=' -I/usr/include/lua5.1' LUA='lua5.1'
-}
-
-package_lua-bitop() {
-  depends=('lua')
-
-  cd "LuaBitOp-$pkgver"
-  install -Dm 644 bit.so "$pkgdir/usr/lib/lua/5.3/bit.so"
-  install -dm 755 "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s '../lua/LICENSE' "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_lua51-bitop() {
-  depends=('lua51')
-  conflicts=('luabitop')
-  replaces=('luabitop')
-
-  cd "LuaBitOp51-$pkgver"
-  install -Dm 644 bit.so "$pkgdir/usr/lib/lua/5.1/bit.so"
-  install -dm 755 "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s '../lua51/LICENSE' "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_lua52-bitop() {
-  depends=('lua52')
-  conflicts=('lua-bitop')
-  replaces=('lua-bitop')
-
-  cd "LuaBitOp52-$pkgver"
-  install -Dm 644 bit.so "$pkgdir/usr/lib/lua/5.2/bit.so"
-  install -dm 755 "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s '../lua51/LICENSE' "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-# vim:set ts=2 sw=2 et:

Copied: lua-bitop/repos/community-i686/PKGBUILD (from rev 255585, 
lua-bitop/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-02 20:34:44 UTC (rev 255586)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Sébastien Luttringer
+# Contributor: Lucas Hermann Negri 
+
+pkgbase=lua-bitop
+pkgname=(lua51-bitop lua52-bitop)
+pkgver=1.0.2
+pkgrel=8
+pkgdesc='Bitwise operations on numbers'
+arch=('x86_64' 'i686')
+license=('MIT')
+url='https://bitop.luajit.org/'
+makedepends=('lua51' 'lua52')
+source=("https://bitop.luajit.org/download/LuaBitOp-$pkgver.tar.gz";)
+sha256sums=('1207c9293dcd52eb9dca6538d1b87352bd510f4e760938f5048433f7f272ce99')
+
+prepare() {
+  cp -a "LuaBitOp-$pkgver" "LuaBitOp51-$pkgver"
+  cp -a "LuaBitOp-$pkgver" "LuaBitOp52-$pkgver"
+}
+
+build() {
+  make -C "LuaBitOp51-$pkgver" INCLUDES=' -I/usr/include/lua5.1' LUA='lua5.1'
+  make -C "LuaBitOp52-$pkgver" INCLUDES=' -I/usr/include/lua5.2' LUA='lua5.2'
+}
+
+package_lua-bitop() {
+  depends=('lua')
+
+  cd "LuaBitOp-$pkgver"
+  install -Dm 644 bit.so "$pkgdir/usr/lib/lua/5.3/bit.so"
+  install -dm 755 "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s '../lua/LICENSE' "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua51-bitop() {
+  depends=('lua51')
+  conflicts=('luabitop')
+  replaces=('luabitop')
+
+  cd "LuaBitOp51-$pkgver"
+  install -Dm 644 bit.so "$pkgdir/usr/lib/lua/5.1/bit.so"
+  install -dm 755 "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s '../lua51/COPYRIGHT' "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua52-bitop() {
+  depends=('lua52')
+  conflicts=('lua-bitop')
+  replaces=('lua-bitop')
+
+  cd "LuaBitOp52-$pkgver"
+  install -Dm 644 bit.so "$pkgdir/usr/lib/lua/5.2/bit.so"
+  install -dm 755 "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s '../lua52/LICENSE' "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:ts=2 sw=2 et:


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

2017-09-02 Thread Maxime Gauduin
Date: Saturday, September 2, 2017 @ 20:31:46
  Author: alucryd
Revision: 255583

upgpkg: lib32-orc 0.4.27-1

Modified:
  lib32-orc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-02 20:16:41 UTC (rev 255582)
+++ PKGBUILD2017-09-02 20:31:46 UTC (rev 255583)
@@ -1,7 +1,8 @@
-# Maintainer: Maxime Gauduin 
+# $Id$
+# Maintainer: Maxime Gauduin 
 
 pkgname=lib32-orc
-pkgver=0.4.26+2+g249c709
+pkgver=0.4.27
 pkgrel=1
 pkgdesc='The Oild Runtime Compiler'
 url="https://cgit.freedesktop.org/gstreamer/orc";
@@ -8,41 +9,38 @@
 arch=('x86_64')
 license=('custom')
 url='https://code.entropywave.com/projects/orc/'
-depends=(lib32-glibc orc)
-makedepends=(valgrind-multilib git)
-_commit=249c709e90458ecef7a068df553ea41a83eedf0f  # master
-source=("git+https://anongit.freedesktop.org/git/gstreamer/orc#commit=$_commit";)
-sha256sums=('SKIP')
+depends=('lib32-glibc' 'orc')
+makedepends=('gtk-doc' 'meson' 'valgrind-multilib')
+#source=("https://gstreamer.freedesktop.org/data/src/orc/orc-${pkgver}.tar.xz"{,.asc})
+source=("https://github.com/GStreamer/orc/archive/orc-${pkgver}.tar.gz";)
+validpgpkeys=('D637032E45B8C6585B9456565D2EEE6F6F349D7C') # Tim-Philipp Müller
+sha256sums=('49f331f1edbd43a0d8fae2634ded9c4a0fc8558a3388f6cbb203858e69165652')
 
-pkgver() {
-  cd orc
-  git describe --tags | sed 's/^orc-//;s/-/+/g'
-}
-
 prepare() {
-  cd orc
-  NOCONFIGURE=1 ./autogen.sh
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build
 }
 
 build() {
-  cd orc
+  cd build
 
   export CC='gcc -m32'
   export CXX='g++ -m32'
   export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
 
-  ./configure \
+  meson ../orc-orc-${pkgver} \
+--buildtype='release' \
 --prefix='/usr' \
---libdir='/usr/lib32' \
---disable-static \
---enable-backend='mmx,sse,altivec'
-  make
+--libdir='/usr/lib32'
+  ninja
 }
 
 package() {
-  cd orc
+  cd build
 
-  make DESTDIR="$pkgdir" install
+  DESTDIR="$pkgdir" ninja install
   rm -rf "${pkgdir}"/usr/{bin,include,share}
 
   install -dm 755 "${pkgdir}"/usr/share/licenses


[arch-commits] Commit in lib32-orc/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2017-09-02 Thread Maxime Gauduin
Date: Saturday, September 2, 2017 @ 20:32:04
  Author: alucryd
Revision: 255584

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-orc/repos/multilib-x86_64/PKGBUILD
(from rev 255583, lib32-orc/trunk/PKGBUILD)
Deleted:
  lib32-orc/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-02 20:31:46 UTC (rev 255583)
+++ PKGBUILD2017-09-02 20:32:04 UTC (rev 255584)
@@ -1,52 +0,0 @@
-# Maintainer: Maxime Gauduin 
-
-pkgname=lib32-orc
-pkgver=0.4.26+2+g249c709
-pkgrel=1
-pkgdesc='The Oild Runtime Compiler'
-url="https://cgit.freedesktop.org/gstreamer/orc";
-arch=('x86_64')
-license=('custom')
-url='https://code.entropywave.com/projects/orc/'
-depends=(lib32-glibc orc)
-makedepends=(valgrind-multilib git)
-_commit=249c709e90458ecef7a068df553ea41a83eedf0f  # master
-source=("git+https://anongit.freedesktop.org/git/gstreamer/orc#commit=$_commit";)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd orc
-  git describe --tags | sed 's/^orc-//;s/-/+/g'
-}
-
-prepare() {
-  cd orc
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd orc
-
-  export CC='gcc -m32'
-  export CXX='g++ -m32'
-  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-
-  ./configure \
---prefix='/usr' \
---libdir='/usr/lib32' \
---disable-static \
---enable-backend='mmx,sse,altivec'
-  make
-}
-
-package() {
-  cd orc
-
-  make DESTDIR="$pkgdir" install
-  rm -rf "${pkgdir}"/usr/{bin,include,share}
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses
-  ln -s orc "${pkgdir}"/usr/share/licenses/lib32-orc
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-orc/repos/multilib-x86_64/PKGBUILD (from rev 255583, 
lib32-orc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-02 20:32:04 UTC (rev 255584)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+
+pkgname=lib32-orc
+pkgver=0.4.27
+pkgrel=1
+pkgdesc='The Oild Runtime Compiler'
+url="https://cgit.freedesktop.org/gstreamer/orc";
+arch=('x86_64')
+license=('custom')
+url='https://code.entropywave.com/projects/orc/'
+depends=('lib32-glibc' 'orc')
+makedepends=('gtk-doc' 'meson' 'valgrind-multilib')
+#source=("https://gstreamer.freedesktop.org/data/src/orc/orc-${pkgver}.tar.xz"{,.asc})
+source=("https://github.com/GStreamer/orc/archive/orc-${pkgver}.tar.gz";)
+validpgpkeys=('D637032E45B8C6585B9456565D2EEE6F6F349D7C') # Tim-Philipp Müller
+sha256sums=('49f331f1edbd43a0d8fae2634ded9c4a0fc8558a3388f6cbb203858e69165652')
+
+prepare() {
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build
+}
+
+build() {
+  cd build
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  meson ../orc-orc-${pkgver} \
+--buildtype='release' \
+--prefix='/usr' \
+--libdir='/usr/lib32'
+  ninja
+}
+
+package() {
+  cd build
+
+  DESTDIR="$pkgdir" ninja install
+  rm -rf "${pkgdir}"/usr/{bin,include,share}
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses
+  ln -s orc "${pkgdir}"/usr/share/licenses/lib32-orc
+}
+
+# vim: ts=2 sw=2 et:


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

2017-09-02 Thread Alexander Rødseth
Date: Saturday, September 2, 2017 @ 20:16:41
  Author: arodseth
Revision: 255582

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

Added:
  sasteroids/repos/community-i686/PKGBUILD
(from rev 255581, sasteroids/trunk/PKGBUILD)
  sasteroids/repos/community-i686/makefile.patch
(from rev 255581, sasteroids/trunk/makefile.patch)
  sasteroids/repos/community-i686/sasteroids.sh
(from rev 255581, sasteroids/trunk/sasteroids.sh)
  sasteroids/repos/community-i686/sbitmap.patch
(from rev 255581, sasteroids/trunk/sbitmap.patch)
  sasteroids/repos/community-x86_64/PKGBUILD
(from rev 255581, sasteroids/trunk/PKGBUILD)
  sasteroids/repos/community-x86_64/makefile.patch
(from rev 255581, sasteroids/trunk/makefile.patch)
  sasteroids/repos/community-x86_64/sasteroids.sh
(from rev 255581, sasteroids/trunk/sasteroids.sh)
  sasteroids/repos/community-x86_64/sbitmap.patch
(from rev 255581, sasteroids/trunk/sbitmap.patch)
Deleted:
  sasteroids/repos/community-i686/PKGBUILD
  sasteroids/repos/community-i686/makefile.patch
  sasteroids/repos/community-i686/sasteroids.sh
  sasteroids/repos/community-i686/sbitmap.patch
  sasteroids/repos/community-x86_64/PKGBUILD
  sasteroids/repos/community-x86_64/makefile.patch
  sasteroids/repos/community-x86_64/sasteroids.sh
  sasteroids/repos/community-x86_64/sbitmap.patch

-+
 /PKGBUILD   |  118 ++
 /makefile.patch |   66 +
 /sasteroids.sh  |6 +
 /sbitmap.patch  |   38 
 community-i686/PKGBUILD |   52 
 community-i686/makefile.patch   |   33 --
 community-i686/sasteroids.sh|3 
 community-i686/sbitmap.patch|   19 --
 community-x86_64/PKGBUILD   |   52 
 community-x86_64/makefile.patch |   33 --
 community-x86_64/sasteroids.sh  |3 
 community-x86_64/sbitmap.patch  |   19 --
 12 files changed, 228 insertions(+), 214 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-02 20:16:21 UTC (rev 255581)
+++ community-i686/PKGBUILD 2017-09-02 20:16:41 UTC (rev 255582)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Matthew Stewart 
-
-pkgname=sasteroids
-pkgver=3.0.1
-pkgrel=6
-pkgdesc='SDL Asteroids'
-arch=('x86_64' 'i686')
-url='http://sdlsas.sourceforge.net/'
-license=('GPL')
-depends=('sdl' 'sdl_image' 'sdl_ttf' 'sdl_mixer' 'mesa' 'glu')
-makedepends=('setconf' 'gendesk' 'glu')
-source=("https://sourceforge.net/projects/sdlsas/files/SDL%20Sasteroids%20Source%20Releases/$pkgver/SDLSasteroids-$pkgver.tar.gz";
-
"$pkgname.png::http://icons.iconarchive.com/icons/etherbrian/space-bits/32/Asteroids-icon.png";
-"$pkgname.sh"
-'sbitmap.patch'
-'makefile.patch')
-sha256sums=('f447a85d75913ee9d1be0bba68813e0627a4c163ab5d12c7fd5a8ea5f455502c'
-'fc6ded2d7a309333eb4cad2e6e03305e43827690ecbd4ebb01012c8598db1f49'
-'6f2ca922eb0be29d6866933aece1cc38dd224adb5f04834cdd0cb12cd7739cbf'
-'eb2139434aae832b395b1d1f6a4ef188f69ebd7c5ed5128df9129027ff9a4ac6'
-'6b35ad008d29cd1433cdbc6094231b5c399e5fc10a65670a67177e44c0f259c6')
-
-prepare() {
-  gendesk -f \
---pkgname "$pkgname" \
---pkgdesc "$pkgdesc" \
---categories 'Game;ArcadeGame'
-
-  setconf "SDLSasteroids-$pkgver/src/Makefile" CFLAGS '$(INC) $(OPTS) -w'
-  patch -p1 -i sbitmap.patch
-  patch -p1 -i makefile.patch
-}
-
-build() {
-  CXXFLAGS="$CXXFLAGS -w" make -C "SDLSasteroids-$pkgver"
-}
-
-package() {
-  make -C "SDLSasteroids-$pkgver" DESTDIR="$pkgdir" install
-
-  mv "$pkgdir/usr/bin/sasteroids" "$pkgdir/usr/bin/sasteroids.elf"
-  install -Dm755 "$pkgname.sh" "$pkgdir/usr/bin/sasteroids"
-  install -Dm644 "$pkgname.png" "$pkgdir/usr/share/pixmaps/$pkgname.png"
-  install -Dm644 "$pkgname.desktop" 
"$pkgdir/usr/share/applications/$pkgname.desktop"
-  install -Dm644 "$pkgdir/usr/man/man6" "$pkgdir/usr/share/man/man6/sasteroids"
-  rm "$pkgdir/usr/man/man6"
-}
-
-# getver: packages.gentoo.org/packages/games-arcade/sdlsasteroids
-# vim:set ts=2 sw=2 et:

Copied: sasteroids/repos/community-i686/PKGBUILD (from rev 255581, 
sasteroids/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-02 20:16:41 UTC (rev 255582)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Matthew Stewart 
+
+pkgname=sasteroids
+pkgver=3.0.1
+pkgrel=7
+pkgdesc='SDL Asteroids'
+arch=('x86_64' 'i686')
+url='https://sdlsas.sourceforge.net/'
+license=('GPL')
+depends=('sdl' 'sdl_image' 'sdl_ttf' 'sdl_mixer' 'mesa' 'glu')
+makedepends=('setconf' 'gendesk' 'glu')
+source=("https://sourceforge.net/projects/sdlsas/files/SDL%

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

2017-09-02 Thread Alexander Rødseth
Date: Saturday, September 2, 2017 @ 20:16:21
  Author: arodseth
Revision: 255581

upgpkg: sasteroids 3.0.1-7

Modified:
  sasteroids/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-02 20:07:48 UTC (rev 255580)
+++ PKGBUILD2017-09-02 20:16:21 UTC (rev 255581)
@@ -4,18 +4,18 @@
 
 pkgname=sasteroids
 pkgver=3.0.1
-pkgrel=6
+pkgrel=7
 pkgdesc='SDL Asteroids'
 arch=('x86_64' 'i686')
-url='http://sdlsas.sourceforge.net/'
+url='https://sdlsas.sourceforge.net/'
 license=('GPL')
 depends=('sdl' 'sdl_image' 'sdl_ttf' 'sdl_mixer' 'mesa' 'glu')
 makedepends=('setconf' 'gendesk' 'glu')
 
source=("https://sourceforge.net/projects/sdlsas/files/SDL%20Sasteroids%20Source%20Releases/$pkgver/SDLSasteroids-$pkgver.tar.gz";
 
"$pkgname.png::http://icons.iconarchive.com/icons/etherbrian/space-bits/32/Asteroids-icon.png";
-"$pkgname.sh"
-'sbitmap.patch'
-'makefile.patch')
+$pkgname.sh
+sbitmap.patch
+makefile.patch)
 sha256sums=('f447a85d75913ee9d1be0bba68813e0627a4c163ab5d12c7fd5a8ea5f455502c'
 'fc6ded2d7a309333eb4cad2e6e03305e43827690ecbd4ebb01012c8598db1f49'
 '6f2ca922eb0be29d6866933aece1cc38dd224adb5f04834cdd0cb12cd7739cbf'
@@ -29,8 +29,17 @@
 --categories 'Game;ArcadeGame'
 
   setconf "SDLSasteroids-$pkgver/src/Makefile" CFLAGS '$(INC) $(OPTS) -w'
+
   patch -p1 -i sbitmap.patch
   patch -p1 -i makefile.patch
+
+  # compress man page
+  gzip -f -9 "SDLSasteroids-$pkgver/$pkgname.6"
+  sed 's/\.6 /.6.gz /' -i "SDLSasteroids-$pkgver/Makefile"
+
+  # fix man page installation instructions
+  setconf "SDLSasteroids-$pkgver/Makefile" MANDIR 
'$(DESTDIR)/usr/share/man/man6/'
+  sed 's:$(MANDIR)/man6:$(MANDIR):' -i "SDLSasteroids-$pkgver/Makefile"
 }
 
 build() {
@@ -44,9 +53,7 @@
   install -Dm755 "$pkgname.sh" "$pkgdir/usr/bin/sasteroids"
   install -Dm644 "$pkgname.png" "$pkgdir/usr/share/pixmaps/$pkgname.png"
   install -Dm644 "$pkgname.desktop" 
"$pkgdir/usr/share/applications/$pkgname.desktop"
-  install -Dm644 "$pkgdir/usr/man/man6" "$pkgdir/usr/share/man/man6/sasteroids"
-  rm "$pkgdir/usr/man/man6"
 }
 
 # getver: packages.gentoo.org/packages/games-arcade/sdlsasteroids
-# vim:set ts=2 sw=2 et:
+# vim:ts=2 sw=2 et:


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

2017-09-02 Thread Maxime Gauduin
Date: Saturday, September 2, 2017 @ 20:07:48
  Author: alucryd
Revision: 255580

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-02 20:07:32 UTC (rev 255579)
+++ PKGBUILD2017-09-02 20:07:48 UTC (rev 255580)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Tatsuyuki Ishi 
-
-pkgbase=python-blessed
-pkgname=('python-blessed' 'python2-blessed')
-pkgver=1.14.2
-pkgrel=1
-pkgdesc='A thin, practical wrapper around terminal styling, screen 
positioning, and keyboard input'
-arch=('any')
-url='https://github.com/jquast/blessed'
-license=('GPL')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("python-blessed-${pkgver}.tar.gz::https://github.com/jquast/blessed/archive/${pkgver}.tar.gz";)
-sha256sums=('6c375f28e8a4d85d03dd46e3dd058a9cd2279d51da018bca0c0f6b5d98b1ee34')
-
-prepare() {
-  cp -r {,python-}blessed-${pkgver}
-  mv {,python2-}blessed-${pkgver}
-}
-
-build() {
-  for py in python{,2}; do
-pushd ${py}-blessed-${pkgver}
-${py} setup.py build
-popd
-  done
-}
-package_python-blessed() {
-  depends=('python' 'python-dateutil' 'python-nose')
-
-  cd python-blessed-${pkgver}
-
-  python setup.py install --skip-build --root="${pkgdir}" --optimize='1' 
--skip-build
-}
-
-package_python2-blessed() {
-  depends=('python2' 'python2-dateutil' 'python2-nose')
-
-  cd python2-blessed-${pkgver}
-
-  python2 setup.py install --skip-build --root="${pkgdir}" --optimize='1' 
--skip-build
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-blessed/repos/community-any/PKGBUILD (from rev 255579, 
python-blessed/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-02 20:07:48 UTC (rev 255580)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Tatsuyuki Ishi 
+
+pkgbase=python-blessed
+pkgname=('python-blessed' 'python2-blessed')
+pkgver=1.14.2
+pkgrel=2
+pkgdesc='A thin, practical wrapper around terminal styling, screen 
positioning, and keyboard input'
+arch=('any')
+url='https://github.com/jquast/blessed'
+license=('GPL')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("python-blessed-${pkgver}.tar.gz::https://github.com/jquast/blessed/archive/${pkgver}.tar.gz";)
+sha256sums=('6c375f28e8a4d85d03dd46e3dd058a9cd2279d51da018bca0c0f6b5d98b1ee34')
+
+prepare() {
+  cp -r {,python-}blessed-${pkgver}
+  mv {,python2-}blessed-${pkgver}
+}
+
+build() {
+  for py in python{,2}; do
+pushd ${py}-blessed-${pkgver}
+${py} setup.py build
+popd
+  done
+}
+package_python-blessed() {
+  depends=('python-six' 'python-wcwidth')
+
+  cd python-blessed-${pkgver}
+
+  python setup.py install --skip-build --root="${pkgdir}" --optimize='1' 
--skip-build
+}
+
+package_python2-blessed() {
+  depends=('python2-six' 'python2-wcwidth')
+
+  cd python2-blessed-${pkgver}
+
+  python2 setup.py install --skip-build --root="${pkgdir}" --optimize='1' 
--skip-build
+}
+
+# vim: ts=2 sw=2 et:


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

2017-09-02 Thread Maxime Gauduin
Date: Saturday, September 2, 2017 @ 20:07:32
  Author: alucryd
Revision: 255579

FS#55318: python-blessed 1.14.2-2

Modified:
  python-blessed/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-02 20:01:59 UTC (rev 255578)
+++ PKGBUILD2017-09-02 20:07:32 UTC (rev 255579)
@@ -5,7 +5,7 @@
 pkgbase=python-blessed
 pkgname=('python-blessed' 'python2-blessed')
 pkgver=1.14.2
-pkgrel=1
+pkgrel=2
 pkgdesc='A thin, practical wrapper around terminal styling, screen 
positioning, and keyboard input'
 arch=('any')
 url='https://github.com/jquast/blessed'
@@ -27,7 +27,7 @@
   done
 }
 package_python-blessed() {
-  depends=('python' 'python-dateutil' 'python-nose')
+  depends=('python-six' 'python-wcwidth')
 
   cd python-blessed-${pkgver}
 
@@ -35,7 +35,7 @@
 }
 
 package_python2-blessed() {
-  depends=('python2' 'python2-dateutil' 'python2-nose')
+  depends=('python2-six' 'python2-wcwidth')
 
   cd python2-blessed-${pkgver}
 


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

2017-09-02 Thread Dan Printzell
Date: Saturday, September 2, 2017 @ 20:01:37
  Author: wild
Revision: 255576

archrelease: copy trunk to community-x86_64

Added:
  dmd/repos/community-x86_64/PKGBUILD
(from rev 255575, dmd/trunk/PKGBUILD)
  dmd/repos/community-x86_64/dmd.conf
(from rev 255575, dmd/trunk/dmd.conf)
Deleted:
  dmd/repos/community-x86_64/PKGBUILD
  dmd/repos/community-x86_64/dmd.conf

--+
 PKGBUILD |  180 ++---
 dmd.conf |   10 +--
 2 files changed, 95 insertions(+), 95 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-02 20:01:27 UTC (rev 255575)
+++ PKGBUILD2017-09-02 20:01:37 UTC (rev 255576)
@@ -1,90 +0,0 @@
-# $Id$
-# Maintainer: Dan Printzell 
-# Contributor: Mihails Strasunse 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Chris Brannon 
-# Contributor: Andrea Scarpino 
-# Contributor: Anders Bergh 
-# Contributor: Alexander Fehr 
-
-pkgname=('dmd' 'libphobos')
-pkgdesc="D programming language compiler and standard library"
-groups=('dlang' 'dlang-dmd')
-pkgbase=dmd
-pkgver=2.075.1
-pkgrel=1
-epoch=1
-arch=('x86_64')
-url="http://www.dlang.org";
-makedepends=('git' 'dmd')
-source=("git+https://github.com/D-Programming-Language/dmd.git#tag=v$pkgver";
-
"git+https://github.com/D-Programming-Language/druntime.git#tag=v$pkgver";
-"git+https://github.com/D-Programming-Language/phobos.git#tag=v$pkgver";
-"dmd.conf")
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'3d639e89528fed1da90006f4dfb2b0fdc41308da5a96d953381ff4ccf257c035')
-
-build() {
-cd dmd/src
-make -f posix.mak RELEASE=1 PIC=1
-
-cd "$srcdir"/druntime
-make -f posix.mak DMD="$srcdir"/dmd/src/dmd RELEASE=1 PIC=1
-
-cd "$srcdir"/phobos
-make -f posix.mak DMD="$srcdir"/dmd/src/dmd RELEASE=1 PIC=1
-}
-
-package_dmd() {
-pkgdesc="The D programming language reference compiler"
-backup=('etc/dmd.conf')
-depends=('gcc' 'libphobos')
-optdepends=(
-'dtools: collection of useful utilities for development in D'
-'gcc-multilib: to cross-compile 32-bit applications'
-)
-provides=("d-compiler=$pkgver")
-license=('custom')
-
-install -Dm755 dmd/src/dmd "$pkgdir"/usr/bin/dmd
-
-mkdir -p "$pkgdir"/etc
-install -Dm644 dmd.conf "$pkgdir"/etc/dmd.conf
-
-mkdir -p "$pkgdir"/usr/share/man/man1
-mkdir -p "$pkgdir"/usr/share/man/man5
-cp -r dmd/docs/man/man1/* "$pkgdir"/usr/share/man/man1/
-cp -r dmd/docs/man/man5/* "$pkgdir"/usr/share/man/man5/
-
-install -Dm644 dmd/LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-mkdir -p "$pkgdir"/usr/share/d/samples/
-cp -r dmd/samples/* "$pkgdir"/usr/share/d/samples/
-
-find "$pkgdir"/usr -type f | xargs chmod 0644
-chmod 755 "$pkgdir"/usr/bin/*
-}
-
-package_libphobos() {
-pkgdesc="The Phobos standard library for D programming language"
-options=('staticlibs')
-depends=('gcc-libs')
-conflicts=('libphobos-devel')
-provides=("d-runtime=$pkgver" "d-stdlib=$pkgver" "libphobos-devel=$pkgver")
-replaces=('libphobos-devel')
-license=('custom')
-
-mkdir -p "$pkgdir"/usr/lib
-install -Dm644 phobos/generated/linux/release/*/libphobos2.{a,so} 
"$pkgdir"/usr/lib/
-install -Dm644 phobos/LICENSE_1_0.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-mkdir -p "$pkgdir"/usr/include/dlang/dmd
-cp -r phobos/{*.d,etc,std} "$pkgdir"/usr/include/dlang/dmd
-cp -r druntime/import/* "$pkgdir"/usr/include/dlang/dmd/
-
-find "$pkgdir"/usr -type f | xargs chmod 0644
-
-install -Dm644 druntime/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE-druntime
-}

Copied: dmd/repos/community-x86_64/PKGBUILD (from rev 255575, 
dmd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-02 20:01:37 UTC (rev 255576)
@@ -0,0 +1,90 @@
+# $Id$
+# Maintainer: Dan Printzell 
+# Contributor: Mihails Strasunse 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Chris Brannon 
+# Contributor: Andrea Scarpino 
+# Contributor: Anders Bergh 
+# Contributor: Alexander Fehr 
+
+pkgname=('dmd' 'libphobos')
+pkgdesc="D programming language compiler and standard library"
+groups=('dlang' 'dlang-dmd')
+pkgbase=dmd
+pkgver=2.076.0
+pkgrel=1
+epoch=1
+arch=('x86_64')
+url="http://www.dlang.org";
+makedepends=('git' 'dmd')
+source=("git+https://github.com/D-Programming-Language/dmd.git#tag=v$pkgver";
+
"git+https://github.com/D-Programming-Language/druntime.git#tag=v$pkgver";
+"git+https://github.com/D-Programming-Language/phobos.git#tag=v$pkgver";
+"dmd.conf")
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'3d639e89528fed1da90006f4dfb2b0fdc41308da5a96d953381ff4ccf257c035')
+
+build() {
+cd dmd/src
+make -f posix.mak RELEASE=1 PIC=1
+
+cd "$srcdir"/d

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

2017-09-02 Thread Dan Printzell
Date: Saturday, September 2, 2017 @ 20:01:59
  Author: wild
Revision: 255578

archrelease: copy trunk to community-x86_64

Added:
  dtools/repos/community-x86_64/PKGBUILD
(from rev 255577, dtools/trunk/PKGBUILD)
  dtools/repos/community-x86_64/autodetect.diff
(from rev 255577, dtools/trunk/autodetect.diff)
Deleted:
  dtools/repos/community-x86_64/PKGBUILD
  dtools/repos/community-x86_64/autodetect.diff

-+
 PKGBUILD|   94 +++---
 autodetect.diff |   94 +++---
 2 files changed, 94 insertions(+), 94 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-02 20:01:49 UTC (rev 255577)
+++ PKGBUILD2017-09-02 20:01:59 UTC (rev 255578)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Dan Printzell 
-# Contributor: Mihails Strasunse 
-
-pkgname='dtools'
-pkgver=2.075.1
-pkgrel=1
-pkgdesc="Ancilliary tools for the D programming language"
-license=('custom')
-groups=('dlang')
-arch=('x86_64')
-url="http://www.dlang.org";
-makedepends=('dmd' 'libphobos')
-depends=('curl')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/dlang/tools/archive/v${pkgver}.tar.gz
-   "http://www.boost.org/LICENSE_1_0.txt";
-   "autodetect.diff")
-sha512sums=('5b659f0cd0fdb9f8837d12a83d2dc0361145f60608c06cb45b7d35581106d574e881856df592df7fd9e949a92dc32087bbb2e10613b90b46df7383e7b534d8e1'
-
'd6078467835dba8932314c1c1e945569a64b065474d7aced27c9a7acc391d52e9f234138ed9f1aa9cd576f25f12f557e0b733c14891d42c16ecdc4a7bd4d60b8'
-
'3bce3c66cf24837fcb9bf244f2b07ed6116d8d67a75b2319010cf93956e93b43262b7d9613359503e6b0352b82684be8baeeb7b1f50e77accda334ce470bf5e3')
-
-build() {
-DMD=dmd
-cd tools-${pkgver}
-
-# rdmd is used to build others
-$DMD -od. -ofdtools-rdmd rdmd.d
-
-for tool in DustMite/dustmite ddemangle catdoc detab tolf dget; do
-./dtools-rdmd --compiler=$DMD --build-only -od. -ofdtools-`basename 
$tool` $tool.d
-done
-}
-
-package() {
-cd tools-${pkgver}
-
-mkdir -p $pkgdir/usr/bin
-for tool in rdmd ddemangle catdoc detab tolf dget dustmite; do
-install -m755 -t $pkgdir/usr/bin $pkgname-$tool
-done
-
-cd $pkgdir
-ln -s dtools-rdmd usr/bin/rdmd
-ln -s dtools-dustmite usr/bin/dustmite
-
-install -Dm644 $srcdir/LICENSE_1_0.txt usr/share/licenses/$pkgname/LICENSE
-}

Copied: dtools/repos/community-x86_64/PKGBUILD (from rev 255577, 
dtools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-02 20:01:59 UTC (rev 255578)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Dan Printzell 
+# Contributor: Mihails Strasunse 
+
+pkgname='dtools'
+pkgver=2.076.0
+pkgrel=1
+pkgdesc="Ancilliary tools for the D programming language"
+license=('custom')
+groups=('dlang')
+arch=('x86_64')
+url="http://www.dlang.org";
+makedepends=('dmd' 'libphobos')
+depends=('curl')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/dlang/tools/archive/v${pkgver}.tar.gz
+   "http://www.boost.org/LICENSE_1_0.txt";
+   "autodetect.diff")
+sha512sums=('fdb30aebda47405b4931d9e9021a30acf35270e7ec9cf8ae07b3672f029d00ce67e60d62721a90c2053065f50cf6fbb75df9ec2bd46c3b84417eae8499f42d95'
+
'd6078467835dba8932314c1c1e945569a64b065474d7aced27c9a7acc391d52e9f234138ed9f1aa9cd576f25f12f557e0b733c14891d42c16ecdc4a7bd4d60b8'
+
'3bce3c66cf24837fcb9bf244f2b07ed6116d8d67a75b2319010cf93956e93b43262b7d9613359503e6b0352b82684be8baeeb7b1f50e77accda334ce470bf5e3')
+
+build() {
+DMD=dmd
+cd tools-${pkgver}
+
+# rdmd is used to build others
+$DMD -od. -ofdtools-rdmd rdmd.d
+
+for tool in DustMite/dustmite ddemangle catdoc detab tolf dget; do
+./dtools-rdmd --compiler=$DMD --build-only -od. -ofdtools-`basename 
$tool` $tool.d
+done
+}
+
+package() {
+cd tools-${pkgver}
+
+mkdir -p $pkgdir/usr/bin
+for tool in rdmd ddemangle catdoc detab tolf dget dustmite; do
+install -m755 -t $pkgdir/usr/bin $pkgname-$tool
+done
+
+cd $pkgdir
+ln -s dtools-rdmd usr/bin/rdmd
+ln -s dtools-dustmite usr/bin/dustmite
+
+install -Dm644 $srcdir/LICENSE_1_0.txt usr/share/licenses/$pkgname/LICENSE
+}

Deleted: autodetect.diff
===
--- autodetect.diff 2017-09-02 20:01:49 UTC (rev 255577)
+++ autodetect.diff 2017-09-02 20:01:59 UTC (rev 255578)
@@ -1,47 +0,0 @@
-diff --git a/rdmd.d b/rdmd.d
-index bd82637..390d533 100644
 a/rdmd.d
-+++ b/rdmd.d
-@@ -52,7 +52,32 @@ else version (LDC)
- else
- static assert(false, "Unknown compiler");
- 
--private string compiler = defaultCompiler;
-+private string compiler;
-+
-+void chooseCompiler(ref string compiler)
-+{
-+import std.stdio;
-+
-+// if compiler is set explicitly, d

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

2017-09-02 Thread Dan Printzell
Date: Saturday, September 2, 2017 @ 20:01:49
  Author: wild
Revision: 255577

upgpkg: dtools 2.076.0-1

Updated to 2.076.0

Modified:
  dtools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-02 20:01:37 UTC (rev 255576)
+++ PKGBUILD2017-09-02 20:01:49 UTC (rev 255577)
@@ -3,7 +3,7 @@
 # Contributor: Mihails Strasunse 
 
 pkgname='dtools'
-pkgver=2.075.1
+pkgver=2.076.0
 pkgrel=1
 pkgdesc="Ancilliary tools for the D programming language"
 license=('custom')
@@ -15,7 +15,7 @@
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/dlang/tools/archive/v${pkgver}.tar.gz
"http://www.boost.org/LICENSE_1_0.txt";
"autodetect.diff")
-sha512sums=('5b659f0cd0fdb9f8837d12a83d2dc0361145f60608c06cb45b7d35581106d574e881856df592df7fd9e949a92dc32087bbb2e10613b90b46df7383e7b534d8e1'
+sha512sums=('fdb30aebda47405b4931d9e9021a30acf35270e7ec9cf8ae07b3672f029d00ce67e60d62721a90c2053065f50cf6fbb75df9ec2bd46c3b84417eae8499f42d95'
 
'd6078467835dba8932314c1c1e945569a64b065474d7aced27c9a7acc391d52e9f234138ed9f1aa9cd576f25f12f557e0b733c14891d42c16ecdc4a7bd4d60b8'
 
'3bce3c66cf24837fcb9bf244f2b07ed6116d8d67a75b2319010cf93956e93b43262b7d9613359503e6b0352b82684be8baeeb7b1f50e77accda334ce470bf5e3')
 


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

2017-09-02 Thread Dan Printzell
Date: Saturday, September 2, 2017 @ 20:01:27
  Author: wild
Revision: 255575

upgpkg: dmd 1:2.076.0-1

Updated to 2.076.0

Modified:
  dmd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-02 19:37:05 UTC (rev 255574)
+++ PKGBUILD2017-09-02 20:01:27 UTC (rev 255575)
@@ -11,7 +11,7 @@
 pkgdesc="D programming language compiler and standard library"
 groups=('dlang' 'dlang-dmd')
 pkgbase=dmd
-pkgver=2.075.1
+pkgver=2.076.0
 pkgrel=1
 epoch=1
 arch=('x86_64')


[arch-commits] Commit in emby-server/repos (24 files)

2017-09-02 Thread Maxime Gauduin
Date: Saturday, September 2, 2017 @ 19:37:05
  Author: alucryd
Revision: 255574

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

Added:
  emby-server/repos/community-i686/PKGBUILD
(from rev 255573, emby-server/trunk/PKGBUILD)
  emby-server/repos/community-i686/emby-migrate-database
(from rev 255573, emby-server/trunk/emby-migrate-database)
  emby-server/repos/community-i686/emby-server
(from rev 255573, emby-server/trunk/emby-server)
  emby-server/repos/community-i686/emby-server.conf
(from rev 255573, emby-server/trunk/emby-server.conf)
  emby-server/repos/community-i686/emby-server.install
(from rev 255573, emby-server/trunk/emby-server.install)
  emby-server/repos/community-i686/emby-server.service
(from rev 255573, emby-server/trunk/emby-server.service)
  emby-server/repos/community-x86_64/PKGBUILD
(from rev 255573, emby-server/trunk/PKGBUILD)
  emby-server/repos/community-x86_64/emby-migrate-database
(from rev 255573, emby-server/trunk/emby-migrate-database)
  emby-server/repos/community-x86_64/emby-server
(from rev 255573, emby-server/trunk/emby-server)
  emby-server/repos/community-x86_64/emby-server.conf
(from rev 255573, emby-server/trunk/emby-server.conf)
  emby-server/repos/community-x86_64/emby-server.install
(from rev 255573, emby-server/trunk/emby-server.install)
  emby-server/repos/community-x86_64/emby-server.service
(from rev 255573, emby-server/trunk/emby-server.service)
Deleted:
  emby-server/repos/community-i686/PKGBUILD
  emby-server/repos/community-i686/emby-migrate-database
  emby-server/repos/community-i686/emby-server
  emby-server/repos/community-i686/emby-server.conf
  emby-server/repos/community-i686/emby-server.install
  emby-server/repos/community-i686/emby-server.service
  emby-server/repos/community-x86_64/PKGBUILD
  emby-server/repos/community-x86_64/emby-migrate-database
  emby-server/repos/community-x86_64/emby-server
  emby-server/repos/community-x86_64/emby-server.conf
  emby-server/repos/community-x86_64/emby-server.install
  emby-server/repos/community-x86_64/emby-server.service

+
 /PKGBUILD  |  112 +++
 /emby-migrate-database |  112 +++
 /emby-server   |6 +
 /emby-server.conf  |8 ++
 /emby-server.install   |   36 +
 /emby-server.service   |   32 
 community-i686/PKGBUILD|   56 ---
 community-i686/emby-migrate-database   |   56 ---
 community-i686/emby-server |3 
 community-i686/emby-server.conf|4 -
 community-i686/emby-server.install |   18 
 community-i686/emby-server.service |   16 
 community-x86_64/PKGBUILD  |   56 ---
 community-x86_64/emby-migrate-database |   56 ---
 community-x86_64/emby-server   |3 
 community-x86_64/emby-server.conf  |4 -
 community-x86_64/emby-server.install   |   18 
 community-x86_64/emby-server.service   |   16 
 18 files changed, 306 insertions(+), 306 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-02 19:36:42 UTC (rev 255573)
+++ community-i686/PKGBUILD 2017-09-02 19:37:05 UTC (rev 255574)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Daniel Seymour 
-
-pkgname=emby-server
-pkgver=3.2.28.0
-pkgrel=1
-pkgdesc='Bring together your videos, music, photos, and live television'
-arch=('i686' 'x86_64')
-url='http://emby.media'
-license=('GPL2')
-depends=('ffmpeg' 'imagemagick' 'mono' 'referenceassemblies-pcl' 'sqlite')
-install='emby-server.install'
-source=("emby-server-${pkgver}.tar.gz::https://github.com/MediaBrowser/Emby/archive/${pkgver}.tar.gz";
-'emby-server'
-'emby-migrate-database'
-'emby-server.conf'
-'emby-server.service')
-backup=('etc/conf.d/emby-server')
-sha256sums=('34e335973d0a9a00232f3e4ed0a6518e6005d253ad8f2b691fb56ff0fd240684'
-'7b1974f7bba8ac4b76e51ef7fe1257d165c7c4abbd0915e192391336048a3d74'
-'b25bf83a0ab371aff3b13b82f7af71b51bfe6d7e51eb8a8a3dd8f0774ffce6a5'
-'c9ad78f3e2f0ffcb4ee66bb3e99249fcd283dc9fee17895b9265dc733288b953'
-'8a91ea49a1699c820c4a180710072cba1d6d5c10e45df97477ff6a898f4e1d70')
-
-prepare() {
-  cd Emby-${pkgver}
-
-  sed 's/libMagickWand-6.Q8.so/libMagickWand-6.Q16HDRI.so/' -i 
MediaBrowser.Server.Mono/ImageMagickSharp.dll.config
-}
-
-build() {
-  cd Emby-${pkgver}
-
-  xbuild \
-/p:Configuration='Release Mono' \
-/p:Platform='Any CPU' \
-/p:OutputPath="${srcdir}/build" \
-/t:build MediaBrowser.sln
-  mono --aot='full' -O='all' ../build/MediaBrowser.Server.Mono.exe
-}
-
-package() {
-  install -dm 755 "${pkgdir}"/{etc/conf.d,usr

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

2017-09-02 Thread Maxime Gauduin
Date: Saturday, September 2, 2017 @ 19:36:42
  Author: alucryd
Revision: 255573

upgpkg: emby-server 3.2.30.0-1

Modified:
  emby-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-02 17:39:04 UTC (rev 255572)
+++ PKGBUILD2017-09-02 19:36:42 UTC (rev 255573)
@@ -3,7 +3,7 @@
 # Contributor: Daniel Seymour 
 
 pkgname=emby-server
-pkgver=3.2.28.0
+pkgver=3.2.30.0
 pkgrel=1
 pkgdesc='Bring together your videos, music, photos, and live television'
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 'emby-server.conf'
 'emby-server.service')
 backup=('etc/conf.d/emby-server')
-sha256sums=('34e335973d0a9a00232f3e4ed0a6518e6005d253ad8f2b691fb56ff0fd240684'
+sha256sums=('10e74af636027ead90626568e8f80d29b831969073e59fcd5e18582e6af1100e'
 '7b1974f7bba8ac4b76e51ef7fe1257d165c7c4abbd0915e192391336048a3d74'
 'b25bf83a0ab371aff3b13b82f7af71b51bfe6d7e51eb8a8a3dd8f0774ffce6a5'
 'c9ad78f3e2f0ffcb4ee66bb3e99249fcd283dc9fee17895b9265dc733288b953'


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

2017-09-02 Thread Jelle van der Waa
Date: Saturday, September 2, 2017 @ 17:39:04
  Author: jelle
Revision: 255572

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-02 17:38:51 UTC (rev 255571)
+++ community-i686/PKGBUILD 2017-09-02 17:39:04 UTC (rev 255572)
@@ -1,37 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Grey Christoforo 
-
-pkgname=arcus
-pkgver=2.6.0
-pkgrel=1
-pkgdesc="Communication library between internal components for Ultimaker 
software"
-url="https://github.com/Ultimaker/libArcus";
-arch=('x86_64' 'i686')
-license=('AGPL')
-makedepends=('cmake')
-depends=('python' 'protobuf' 'python-sip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/libArcus/archive/${pkgver}.tar.gz";)
-md5sums=('181f59c8ed7a6ea82b262a7daf2bd1c1')
-
-build() {
-  cd libArcus-${pkgver}
-  mkdir -p build
-  cd build
-  
-  cmake .. \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DCMAKE_BUILD_TYPE=Release \
-  -DBUILD_EXAMPLES=OFF  \
-  -DCMAKE_INSTALL_LIBDIR=/usr/lib/
-
-  make
-}
-
-package() {
-  cd libArcus-${pkgver}/build
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 "${srcdir}/libArcus-${pkgver}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: arcus/repos/community-i686/PKGBUILD (from rev 255571, 
arcus/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-02 17:39:04 UTC (rev 255572)
@@ -0,0 +1,37 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Grey Christoforo 
+
+pkgname=arcus
+pkgver=2.7.0
+pkgrel=1
+pkgdesc="Communication library between internal components for Ultimaker 
software"
+url="https://github.com/Ultimaker/libArcus";
+arch=('x86_64' 'i686')
+license=('AGPL')
+makedepends=('cmake')
+depends=('python' 'protobuf' 'python-sip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/libArcus/archive/${pkgver}.tar.gz";)
+md5sums=('212448a2f278a080a3430626e26526c2')
+
+build() {
+  cd libArcus-${pkgver}
+  mkdir -p build
+  cd build
+  
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DBUILD_EXAMPLES=OFF  \
+  -DCMAKE_INSTALL_LIBDIR=/usr/lib/
+
+  make
+}
+
+package() {
+  cd libArcus-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 "${srcdir}/libArcus-${pkgver}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-02 17:38:51 UTC (rev 255571)
+++ community-x86_64/PKGBUILD   2017-09-02 17:39:04 UTC (rev 255572)
@@ -1,37 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Grey Christoforo 
-
-pkgname=arcus
-pkgver=2.6.0
-pkgrel=1
-pkgdesc="Communication library between internal components for Ultimaker 
software"
-url="https://github.com/Ultimaker/libArcus";
-arch=('x86_64' 'i686')
-license=('AGPL')
-makedepends=('cmake')
-depends=('python' 'protobuf' 'python-sip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/libArcus/archive/${pkgver}.tar.gz";)
-md5sums=('181f59c8ed7a6ea82b262a7daf2bd1c1')
-
-build() {
-  cd libArcus-${pkgver}
-  mkdir -p build
-  cd build
-  
-  cmake .. \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DCMAKE_BUILD_TYPE=Release \
-  -DBUILD_EXAMPLES=OFF  \
-  -DCMAKE_INSTALL_LIBDIR=/usr/lib/
-
-  make
-}
-
-package() {
-  cd libArcus-${pkgver}/build
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 "${srcdir}/libArcus-${pkgver}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: arcus/repos/community-x86_64/PKGBUILD (from rev 255571, 
arcus/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-02 17:39:04 UTC (rev 255572)
@@ -0,0 +1,37 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Grey Christoforo 
+
+pkgname=arcus
+pkgver=2.7.0
+pkgrel=1
+pkgdesc="Communication library between internal components for Ultimaker 
software"
+url="https://github.com/Ultimaker/libArcus";
+arch=('x86_64' 'i686')
+license=('AGPL')
+makedepends=('cmake')
+depends=('python' 'protobuf' 'python-sip')
+source=("

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

2017-09-02 Thread Jelle van der Waa
Date: Saturday, September 2, 2017 @ 17:38:51
  Author: jelle
Revision: 255571

upgpkg: arcus 2.7.0-1

Modified:
  arcus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-02 17:36:02 UTC (rev 255570)
+++ PKGBUILD2017-09-02 17:38:51 UTC (rev 255571)
@@ -2,7 +2,7 @@
 # Contributor: Grey Christoforo 
 
 pkgname=arcus
-pkgver=2.6.0
+pkgver=2.7.0
 pkgrel=1
 pkgdesc="Communication library between internal components for Ultimaker 
software"
 url="https://github.com/Ultimaker/libArcus";
@@ -11,7 +11,7 @@
 makedepends=('cmake')
 depends=('python' 'protobuf' 'python-sip')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/libArcus/archive/${pkgver}.tar.gz";)
-md5sums=('181f59c8ed7a6ea82b262a7daf2bd1c1')
+md5sums=('212448a2f278a080a3430626e26526c2')
 
 build() {
   cd libArcus-${pkgver}


[arch-commits] Commit in cura-resources-materials/repos/community-any (2 files)

2017-09-02 Thread Jelle van der Waa
Date: Saturday, September 2, 2017 @ 17:36:02
  Author: jelle
Revision: 255570

archrelease: copy trunk to community-any

Added:
  cura-resources-materials/repos/community-any/PKGBUILD
(from rev 255569, cura-resources-materials/trunk/PKGBUILD)
Deleted:
  cura-resources-materials/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-02 17:35:53 UTC (rev 255569)
+++ PKGBUILD2017-09-02 17:36:02 UTC (rev 255570)
@@ -1,19 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Uffe Jakobsen 
- 
-pkgname=cura-resources-materials
-pkgver=2.6.0
-pkgrel=1
-pkgdesc="Missing materials resources for Cura"
-provides=("cura-resource-materials")
-url="https://ultimaker.com/en/products/cura-software";
-license=("AGPL")
-arch=("any")
-source=(fdm_materials-$pkgver.tar.gz::https://github.com/Ultimaker/fdm_materials/archive/${pkgver}.tar.gz)
-sha1sums=('a199f709a60c91ee7a6fceefa903b8241ebaef07')
-
-package()
-{
-  mkdir -p "${pkgdir}/usr/share/cura/resources/materials"
-  cp -r ${srcdir}/fdm_materials-${pkgver}/*.fdm_material 
"${pkgdir}/usr/share/cura/resources/materials/"
-}

Copied: cura-resources-materials/repos/community-any/PKGBUILD (from rev 255569, 
cura-resources-materials/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-02 17:36:02 UTC (rev 255570)
@@ -0,0 +1,18 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Uffe Jakobsen 
+ 
+pkgname=cura-resources-materials
+pkgver=2.7.0
+pkgrel=1
+pkgdesc="Missing materials resources for Cura"
+url="https://ultimaker.com/en/products/cura-software";
+license=("AGPL")
+arch=("any")
+source=(fdm_materials-$pkgver.tar.gz::https://github.com/Ultimaker/fdm_materials/archive/${pkgver}.tar.gz)
+sha1sums=('ffbd6ea3eaea492666d030957efcb0d49b2d6b5a')
+
+package()
+{
+  mkdir -p "${pkgdir}/usr/share/cura/resources/materials"
+  cp -r ${srcdir}/fdm_materials-${pkgver}/*.fdm_material 
"${pkgdir}/usr/share/cura/resources/materials/"
+}


[arch-commits] Commit in cura-resources-materials/trunk (PKGBUILD)

2017-09-02 Thread Jelle van der Waa
Date: Saturday, September 2, 2017 @ 17:35:53
  Author: jelle
Revision: 255569

upgpkg: cura-resources-materials 2.7.0-1

Modified:
  cura-resources-materials/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-02 17:34:46 UTC (rev 255568)
+++ PKGBUILD2017-09-02 17:35:53 UTC (rev 255569)
@@ -2,15 +2,14 @@
 # Contributor: Uffe Jakobsen 
  
 pkgname=cura-resources-materials
-pkgver=2.6.0
+pkgver=2.7.0
 pkgrel=1
 pkgdesc="Missing materials resources for Cura"
-provides=("cura-resource-materials")
 url="https://ultimaker.com/en/products/cura-software";
 license=("AGPL")
 arch=("any")
 
source=(fdm_materials-$pkgver.tar.gz::https://github.com/Ultimaker/fdm_materials/archive/${pkgver}.tar.gz)
-sha1sums=('a199f709a60c91ee7a6fceefa903b8241ebaef07')
+sha1sums=('ffbd6ea3eaea492666d030957efcb0d49b2d6b5a')
 
 package()
 {


[arch-commits] Commit in cura-binary-data/trunk (PKGBUILD)

2017-09-02 Thread Jelle van der Waa
Date: Saturday, September 2, 2017 @ 17:34:36
  Author: jelle
Revision: 255567

upgpkg: cura-binary-data 2.7.0-1

Modified:
  cura-binary-data/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-02 15:35:14 UTC (rev 255566)
+++ PKGBUILD2017-09-02 17:34:36 UTC (rev 255567)
@@ -2,7 +2,7 @@
 # Contributor: Grey Christoforo 
 
 pkgname=cura-binary-data
-pkgver=2.6.0
+pkgver=2.7.0
 pkgrel=1
 pkgdesc="Binary data (firmwares and such) for cura"
 url="https://github.com/Ultimaker/${pkgname}";
@@ -9,7 +9,7 @@
 license=('AGPL')
 arch=('any')
 source=(https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz)
-sha1sums=('d50eba2423db125d9423a1090d3be2a93d080a69')
+sha1sums=('63e4db411eb107d162f0968b05ce8ccb034d6fc1')
 
 package(){
   install -d "${pkgdir}/usr/share/"


[arch-commits] Commit in cura-binary-data/repos/community-any (PKGBUILD PKGBUILD)

2017-09-02 Thread Jelle van der Waa
Date: Saturday, September 2, 2017 @ 17:34:46
  Author: jelle
Revision: 255568

archrelease: copy trunk to community-any

Added:
  cura-binary-data/repos/community-any/PKGBUILD
(from rev 255567, cura-binary-data/trunk/PKGBUILD)
Deleted:
  cura-binary-data/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-02 17:34:36 UTC (rev 255567)
+++ PKGBUILD2017-09-02 17:34:46 UTC (rev 255568)
@@ -1,20 +0,0 @@
-# Maintainer: Jelle  van der Waa 
-# Contributor: Grey Christoforo 
-
-pkgname=cura-binary-data
-pkgver=2.6.0
-pkgrel=1
-pkgdesc="Binary data (firmwares and such) for cura"
-url="https://github.com/Ultimaker/${pkgname}";
-license=('AGPL')
-arch=('any')
-source=(https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz)
-sha1sums=('d50eba2423db125d9423a1090d3be2a93d080a69')
-
-package(){
-  install -d "${pkgdir}/usr/share/"
-  cp -r "${srcdir}/${pkgname}-${pkgver}/cura/" "${pkgdir}/usr/share/cura"
-  
-  # see https://github.com/Ultimaker/cura-binary-data/issues/6
-  rm -rf "${pkgdir}/usr/share/cura/resources/i18n" 
-}

Copied: cura-binary-data/repos/community-any/PKGBUILD (from rev 255567, 
cura-binary-data/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-02 17:34:46 UTC (rev 255568)
@@ -0,0 +1,20 @@
+# Maintainer: Jelle  van der Waa 
+# Contributor: Grey Christoforo 
+
+pkgname=cura-binary-data
+pkgver=2.7.0
+pkgrel=1
+pkgdesc="Binary data (firmwares and such) for cura"
+url="https://github.com/Ultimaker/${pkgname}";
+license=('AGPL')
+arch=('any')
+source=(https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz)
+sha1sums=('63e4db411eb107d162f0968b05ce8ccb034d6fc1')
+
+package(){
+  install -d "${pkgdir}/usr/share/"
+  cp -r "${srcdir}/${pkgname}-${pkgver}/cura/" "${pkgdir}/usr/share/cura"
+  
+  # see https://github.com/Ultimaker/cura-binary-data/issues/6
+  rm -rf "${pkgdir}/usr/share/cura/resources/i18n" 
+}


[arch-commits] Commit in haskell-store/trunk (PKGBUILD ghc-8.2.1.patch)

2017-09-02 Thread Felix Yan
Date: Saturday, September 2, 2017 @ 15:33:36
  Author: felixonmars
Revision: 255564

upgpkg: haskell-store 0.4.3.2-1

rebuild with store,0.4.3.2

Modified:
  haskell-store/trunk/PKGBUILD
Deleted:
  haskell-store/trunk/ghc-8.2.1.patch

-+
 PKGBUILD|   15 ---
 ghc-8.2.1.patch |   53 -
 2 files changed, 4 insertions(+), 64 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-02 15:28:40 UTC (rev 255563)
+++ PKGBUILD2017-09-02 15:33:36 UTC (rev 255564)
@@ -3,8 +3,8 @@
 
 _hkgname=store
 pkgname=haskell-store
-pkgver=0.4.3.1
-pkgrel=36
+pkgver=0.4.3.2
+pkgrel=1
 pkgdesc="Fast binary serialization"
 url="https://github.com/fpco/store";
 license=('custom:BSD3')
@@ -18,16 +18,9 @@
  'haskell-th-lift' 'haskell-th-lift-instances' 'haskell-th-orphans' 
'haskell-th-reify-many'
  'haskell-th-utilities' 'haskell-unordered-containers' 
'haskell-vector' 'haskell-void')
 makedepends=('ghc')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";
-ghc-8.2.1.patch)
-sha512sums=('fde163ef8ccc6a71c4db07681235be7dcebc5f37e2a222b194f1c34fdeef0fb9814383af56ded876a59bcb53bf2126b04a0272db1b05f28d093851cbc56a9f35'
-
'6b1b27bd398c2f2571ff7ee34cefb71cc00b22fab4ad1357ddba9b8a02f09f13be6d7f6ce3bf4f48202ffb5e0a81361fa6b8e1d5fdc612d22e4efed90951c4a4')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('0faa8b71cd2a078e989fb0da428d0f78cf2a7c85fb11584949e47e8a20f5f0f919d7ad82de1f6ce1e1ac33098179adc382dedb04c75db64f2654eeab60fdbb9d')
 
-prepare() {
-cd "${srcdir}/${_hkgname}-${pkgver}"
-patch -p1 -i ../ghc-8.2.1.patch
-}
-
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"
 

Deleted: ghc-8.2.1.patch
===
--- ghc-8.2.1.patch 2017-09-02 15:28:40 UTC (rev 255563)
+++ ghc-8.2.1.patch 2017-09-02 15:33:36 UTC (rev 255564)
@@ -1,53 +0,0 @@
-From 4b667d3b0a9cfa408ed0975e85ad279db543e9c5 Mon Sep 17 00:00:00 2001
-From: Douglas Wilson 
-Date: Thu, 13 Jul 2017 12:09:41 +1200
-Subject: [PATCH] Remove imports of Data.Typeable.Internal
-
-This module is removed from base in ghc-8.2. Luckily, it doesn't appear to have
-been strictly necessary.

- src/Data/Store/Internal.hs |  2 +-
- src/Data/Store/Version.hs  | 10 +++---
- 2 files changed, 4 insertions(+), 8 deletions(-)
-
-diff --git a/src/Data/Store/Internal.hs b/src/Data/Store/Internal.hs
-index aa05625..7cee122 100644
 a/src/Data/Store/Internal.hs
-+++ b/src/Data/Store/Internal.hs
-@@ -108,7 +108,7 @@ import qualified Data.Text.Array as TA
- import qualified Data.Text.Foreign as T
- import qualified Data.Text.Internal as T
- import qualified Data.Time as Time
--import   Data.Typeable.Internal (Typeable)
-+import   Data.Typeable (Typeable)
- import qualified Data.Vector as V
- import qualified Data.Vector.Mutable as MV
- import qualified Data.Vector.Storable as SV
-diff --git a/src/Data/Store/Version.hs b/src/Data/Store/Version.hs
-index 575a7ac..e378978 100644
 a/src/Data/Store/Version.hs
-+++ b/src/Data/Store/Version.hs
-@@ -44,7 +44,6 @@ import qualified Data.Text as T
- import   Data.Text.Encoding (encodeUtf8, decodeUtf8, decodeUtf8With)
- import   Data.Text.Encoding.Error (lenientDecode)
- import qualified Data.Text.IO as T
--import   Data.Typeable.Internal (TypeRep(..))
- import   Data.Word (Word32)
- import   GHC.Generics (Generic)
- import   Language.Haskell.TH
-@@ -230,12 +229,9 @@ getStructureInfo' ignore renames _ = do
- return (error "unexpected evaluation")
- 
- showsQualTypeRep :: M.Map String String -> Int -> TypeRep -> ShowS
--#if MIN_VERSION_base(4,8,0)
--showsQualTypeRep renames p (TypeRep _ tycon _ tys) =
--#else
--showsQualTypeRep renames p (TypeRep _ tycon tys) =
--#endif
--case tys of
-+showsQualTypeRep renames p tyrep =
-+  let (tycon, tys) = splitTyConApp tyrep
-+  in case tys of
- [] -> showsQualTyCon renames tycon
- [x] | tycon == tcList -> showChar '[' . showsQualTypeRep renames 0 x 
. showChar ']'
-   where


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

2017-09-02 Thread Felix Yan
Date: Saturday, September 2, 2017 @ 15:34:07
  Author: felixonmars
Revision: 255565

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

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

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

Copied: haskell-store/repos/community-staging-i686/PKGBUILD (from rev 255564, 
haskell-store/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-02 15:34:07 UTC (rev 255565)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=store
+pkgname=haskell-store
+pkgver=0.4.3.2
+pkgrel=1
+pkgdesc="Fast binary serialization"
+url="https://github.com/fpco/store";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-base-orphans' 
'haskell-base64-bytestring'
+ 'haskell-conduit' 'haskell-contravariant' 'haskell-cryptohash' 
'haskell-free'
+ 'haskell-hashable' 'haskell-hspec' 'haskell-hspec-smallcheck' 
'haskell-lifted-base'
+ 'haskell-monad-control' 'haskell-mono-traversable' 'haskell-network' 
'haskell-primitive'
+ 'haskell-resourcet' 'haskell-safe' 'haskell-semigroups' 
'haskell-smallcheck'
+ 'haskell-streaming-commons' 'haskell-store-core' 'haskell-syb' 
'haskell-text'
+ 'haskell-th-lift' 'haskell-th-lift-instances' 'haskell-th-orphans' 
'haskell-th-reify-many'
+ 'haskell-th-utilities' 'haskell-unordered-containers' 
'haskell-vector' 'haskell-void')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('0faa8b71cd2a078e989fb0da428d0f78cf2a7c85fb11584949e47e8a20f5f0f919d7ad82de1f6ce1e1ac33098179adc382dedb04c75db64f2654eeab60fdbb9d')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-comparison-bench -f-small-bench
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: haskell-store/repos/community-staging-x86_64/PKGBUILD (from rev 255564, 
haskell-store/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-02 15:34:07 UTC (rev 255565)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=store
+pkgname=haskell-store
+pkgver=0.4.3.2
+pkgrel=1
+pkgdesc="Fast binary serialization"
+url="https://github.com/fpco/store";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-base-orphans' 
'haskell-base64-bytestring'
+ 'haskell-conduit' 'haskell-contravariant' 'haskell-cryptohash' 
'haskell-free'
+ 'haskell-hashable' 'haskell-hspec' 'haskell-hspec-smallcheck' 
'haskell-lifted-base'
+ 'haskell-monad-control' 'haskell-mono-traversable' 'haskell-network' 
'haskell-primitive'
+ 'haskell-resourcet' 'haskell-safe' 'haskell-semigroups' 
'haskell-smallcheck'
+ 'haskell-streaming-commons' 'haskell-store-core' 'haskell-syb' 
'haskell-text'
+ 'haskell-th-lift' 'haskell-th-lift-instances' 'haskell-th-orphans' 
'haskell-th-reify-many'
+ 'haskell-th-utilities' 'haskell-unordered-containers' 
'haskell-vector' 'haskell-void')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('0faa8b71cd2a078e989fb0da428d0f78cf2a7c85fb11584949e47e8a20f5f0f919d7ad82de1f6ce1e1ac33098179adc382dedb04c75db64f2654eeab60fdbb9d')
+

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

2017-09-02 Thread Felix Yan
Date: Saturday, September 2, 2017 @ 15:28:40
  Author: felixonmars
Revision: 255563

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  148 ++---
 1 file changed, 74 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-02 15:28:12 UTC (rev 255562)
+++ PKGBUILD2017-09-02 15:28:40 UTC (rev 255563)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-hypothesis
-pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.23.1
-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')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
-  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
-  'python-flaky' 'python2-flaky' 'python-pytest-benchmark' 
'python2-pytest-benchmark'
-  'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
-  'python-mock' 'python2-mock')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz";)
-sha512sums=('fa42cab52e7717b069497e31ff87305363cd7af1c704428ec4ca9a743138132d95e4c30eaa3f2c2beff44eac42d7e8ffd824104ca3c860f5a2c8c90a8c99ed40')
-
-prepare() {
-  cp -a hypothesis-python-$pkgver{,-py2}
-
-  rm -r hypothesis-python-$pkgver/tests/py2
-  rm -r hypothesis-python-$pkgver-py2/tests/py3
-
-  export LC_CTYPE=en_US.UTF-8
-}
-
-build() {
-  cd "$srcdir"/hypothesis-python-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/hypothesis-python-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/hypothesis-python-$pkgver
-  mv tests/django ../
-  python setup.py pytest
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m tests.django.manage test 
tests.django
-
-  cd "$srcdir"/hypothesis-python-$pkgver-py2
-  mv tests/django ../
-  python2 setup.py pytest
-  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-faker: for fakefactory and django module'
-  'python-django: for django module'
-  'python-numpy: for numpy module'
-  'python-pytest: for pytest module')
-
-  cd hypothesis-python-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-hypothesis() {
-  depends=('python2-enum34')
-  optdepends=('python2-pytz: for datetime and django module'
-  'python2-faker: for fakefactory and django module'
-  'python2-django: for django module'
-  'python2-numpy: for numpy module'
-  'python2-pytest: for pytest module')
-
-  cd hypothesis-python-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 255562, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-02 15:28:40 UTC (rev 255563)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=3.23.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')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
+  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
+  'python-flaky' 'python2-flaky' 'python-pytest-benchmark' 
'python2-pytest-benchmark'
+  'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
+  'python-mock' 'python2-mock')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz";)
+sha512sums=('76e96c4cfd977a8e8485364450f0c483d17d889c1389e4360973d3d93547ff99116df69eb0fd5c55dda1e670755c653a963485677b52d8628d49950ad48192cb')
+
+prepare() {
+  cp -a hypothesis-python-$pkgver{,-py2}
+
+  rm -r hypothesis-python-$pkgver/tests/py2
+  rm -r hypothesis-python-$pkgver-py2/tests/py3
+
+  export LC_CTYPE=en_US.UTF-8
+}
+
+build() {
+  cd "$srcdir"/hypothesis-python-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/hypothesis-python-$pkgve

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

2017-09-02 Thread Felix Yan
Date: Saturday, September 2, 2017 @ 15:28:12
  Author: felixonmars
Revision: 255562

upgpkg: python-hypothesis 3.23.2-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-02 11:55:43 UTC (rev 255561)
+++ PKGBUILD2017-09-02 15:28:12 UTC (rev 255562)
@@ -3,7 +3,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.23.1
+pkgver=3.23.2
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -16,7 +16,7 @@
   'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
   'python-mock' 'python2-mock')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz";)
-sha512sums=('fa42cab52e7717b069497e31ff87305363cd7af1c704428ec4ca9a743138132d95e4c30eaa3f2c2beff44eac42d7e8ffd824104ca3c860f5a2c8c90a8c99ed40')
+sha512sums=('76e96c4cfd977a8e8485364450f0c483d17d889c1389e4360973d3d93547ff99116df69eb0fd5c55dda1e670755c653a963485677b52d8628d49950ad48192cb')
 
 prepare() {
   cp -a hypothesis-python-$pkgver{,-py2}


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

2017-09-02 Thread Andreas Radke
Date: Saturday, September 2, 2017 @ 09:22:36
  Author: andyrtr
Revision: 304448

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

Added:
  linux-lts/repos/testing-i686/
  linux-lts/repos/testing-i686/90-linux.hook
(from rev 304447, linux-lts/trunk/90-linux.hook)
  linux-lts/repos/testing-i686/PKGBUILD
(from rev 304447, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-i686/change-default-console-loglevel.patch
(from rev 304447, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-i686/config
(from rev 304447, linux-lts/trunk/config)
  linux-lts/repos/testing-i686/config.x86_64
(from rev 304447, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-i686/linux-lts.install
(from rev 304447, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-i686/linux-lts.preset
(from rev 304447, linux-lts/trunk/linux-lts.preset)
  linux-lts/repos/testing-x86_64/
  linux-lts/repos/testing-x86_64/90-linux.hook
(from rev 304447, linux-lts/trunk/90-linux.hook)
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 304447, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 304447, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-x86_64/config
(from rev 304447, linux-lts/trunk/config)
  linux-lts/repos/testing-x86_64/config.x86_64
(from rev 304447, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-x86_64/linux-lts.install
(from rev 304447, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-x86_64/linux-lts.preset
(from rev 304447, linux-lts/trunk/linux-lts.preset)

--+
 testing-i686/90-linux.hook   |   11 
 testing-i686/PKGBUILD|  300 
 testing-i686/change-default-console-loglevel.patch   |   11 
 testing-i686/config  | 8211 +
 testing-i686/config.x86_64   | 7976 
 testing-i686/linux-lts.install   |   33 
 testing-i686/linux-lts.preset|   14 
 testing-x86_64/90-linux.hook |   11 
 testing-x86_64/PKGBUILD  |  300 
 testing-x86_64/change-default-console-loglevel.patch |   11 
 testing-x86_64/config| 8211 +
 testing-x86_64/config.x86_64 | 7976 
 testing-x86_64/linux-lts.install |   33 
 testing-x86_64/linux-lts.preset  |   14 
 14 files changed, 33112 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 304447:304448 to see the changes.


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

2017-09-02 Thread Andreas Radke
Date: Saturday, September 2, 2017 @ 09:21:59
  Author: andyrtr
Revision: 304447

upgpkg: linux-lts 4.9.47-1

upstream update 4.9.47

Modified:
  linux-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-02 08:44:11 UTC (rev 304446)
+++ PKGBUILD2017-09-02 09:21:59 UTC (rev 304447)
@@ -4,7 +4,7 @@
 pkgbase=linux-lts
 #pkgbase=linux-lts-custom
 _srcname=linux-4.9
-pkgver=4.9.46
+pkgver=4.9.47
 pkgrel=1
 arch=('i686' 'x86_64')
 url="https://www.kernel.org/";
@@ -23,7 +23,7 @@
 # https://www.kernel.org/pub/linux/kernel/v4.x/sha256sums.asc
 sha256sums=('029098dcffab74875e086ae970e3828456838da6e0ba22ce3f64ef764f3d7f1a'
 'SKIP'
-'6f681d7cd775116447fefe56481516f3cd8548da86252fa9494862e40947604d'
+'bdbc18434c6891c126adb2982b0ff9f954783f2e381ab06cfbdeeaef74a0d3c6'
 'SKIP'
 '39e780d61a46eae6ff7714b070942c7c033d449436df561727a93c64d28b3485'
 '50193426ac5d777475336df0ff5350c7de933f2ea2641fbe8956387c75b4c100'


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

2017-09-02 Thread Massimiliano Torromeo
Date: Saturday, September 2, 2017 @ 08:44:30
  Author: mtorromeo
Revision: 255265

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

Added:
  percona-server/repos/community-i686/PKGBUILD
(from rev 255264, percona-server/trunk/PKGBUILD)
  percona-server/repos/community-i686/gcc7-fixes.patch
(from rev 255264, percona-server/trunk/gcc7-fixes.patch)
  percona-server/repos/community-i686/my.cnf
(from rev 255264, percona-server/trunk/my.cnf)
  percona-server/repos/community-i686/mysql-user.conf
(from rev 255264, percona-server/trunk/mysql-user.conf)
  percona-server/repos/community-i686/rocksdb-systemdlibs.patch
(from rev 255264, percona-server/trunk/rocksdb-systemdlibs.patch)
  percona-server/repos/community-x86_64/PKGBUILD
(from rev 255264, percona-server/trunk/PKGBUILD)
  percona-server/repos/community-x86_64/gcc7-fixes.patch
(from rev 255264, percona-server/trunk/gcc7-fixes.patch)
  percona-server/repos/community-x86_64/my.cnf
(from rev 255264, percona-server/trunk/my.cnf)
  percona-server/repos/community-x86_64/mysql-user.conf
(from rev 255264, percona-server/trunk/mysql-user.conf)
  percona-server/repos/community-x86_64/rocksdb-systemdlibs.patch
(from rev 255264, percona-server/trunk/rocksdb-systemdlibs.patch)
Deleted:
  percona-server/repos/community-i686/PKGBUILD
  percona-server/repos/community-i686/gcc7-fixes.patch
  percona-server/repos/community-i686/my.cnf
  percona-server/repos/community-i686/mysql-user.conf
  percona-server/repos/community-i686/rocksdb-systemdlibs.patch
  percona-server/repos/community-x86_64/PKGBUILD
  percona-server/repos/community-x86_64/gcc7-fixes.patch
  percona-server/repos/community-x86_64/my.cnf
  percona-server/repos/community-x86_64/mysql-user.conf
  percona-server/repos/community-x86_64/rocksdb-systemdlibs.patch

+
 /PKGBUILD  |  354 +++
 /gcc7-fixes.patch  |   52 +++
 /my.cnf|   76 +
 /mysql-user.conf   |2 
 /rocksdb-systemdlibs.patch |   98 +++
 community-i686/PKGBUILD|  177 -
 community-i686/gcc7-fixes.patch|   26 -
 community-i686/my.cnf  |   38 --
 community-i686/mysql-user.conf |1 
 community-i686/rocksdb-systemdlibs.patch   |   49 ---
 community-x86_64/PKGBUILD  |  177 -
 community-x86_64/gcc7-fixes.patch  |   26 -
 community-x86_64/my.cnf|   38 --
 community-x86_64/mysql-user.conf   |1 
 community-x86_64/rocksdb-systemdlibs.patch |   49 ---
 15 files changed, 582 insertions(+), 582 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-02 08:40:54 UTC (rev 255264)
+++ community-i686/PKGBUILD 2017-09-02 08:44:30 UTC (rev 255265)
@@ -1,177 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-
-pkgbase=percona-server
-pkgname=('libperconaserverclient' 'percona-server-clients' 'percona-server')
-pkgver=5.7.19_17
-_boost_ver=1.59.0
-_pkgver=${pkgver/_/-}
-_myver=${pkgver/_rel*}
-pkgrel=1
-arch=('i686' 'x86_64')
-makedepends=('cmake' 'zlib' 'lz4' 'zstd' 'libaio' 'systemd-tools' 'valgrind' 
'pam' 'numactl' 'jemalloc' 'openssl')
-license=('GPL')
-url="https://www.percona.com/software/mysql-database/percona-server";
-source=("https://www.percona.com/downloads/Percona-Server-${pkgver%.*_*}/Percona-Server-$_pkgver/source/tarball/percona-server-$_pkgver.tar.gz";
-
"https://sourceforge.net/projects/boost/files/boost/${_boost_ver}/boost_${_boost_ver//./_}.tar.gz";
-'my.cnf'
-'mysql-user.conf'
-'gcc7-fixes.patch'
-'rocksdb-systemdlibs.patch')
-sha256sums=('a3651b46fac3fe1e694a2c5e3faf57dd665859473bd85b1dd2d3cd5c58fbf77a'
-'47f11c8844e579d02691a607fbd32540104a9ac7a2534a8ddaef50daf502baac'
-'ae451839c368f0db25a63bb0a6a890194897a8e74818bd4245140933c29e5f83'
-'e638a2657085f15b6728f43c1fd6aa551b27608fbf6b435e33afd3606a0cfb0e'
-'0d6010539e54752bc9995e569bb813625369fef05be70d9542f0acb70497894a'
-'aef17e069ea417dad053594d0dd919b2daf75cf5ae10da3743c3e293ccd533bf')
-
-prepare() {
-   cd $pkgbase-$_pkgver
-   rm -v sql/sql_yacc.{cc,h}
-
-   sed 's/${fullhostname}/"archbuild"/' -i 
storage/tokudb/PerconaFT/cmake_modules/TokuSetupCTest.cmake
-   sed 's/-Werror//g' -i \
-   storage/tokudb/PerconaFT/cmake_modules/TokuSetupCompiler.cmake \
-   plugin/tokudb-backup-plugin/Percona-TokuBackup/backup/CMakeLists.txt
-
-   patch -p1 -i "$srcdir"/gcc7-fixes.patch
-   patch -p1 -i "$srcdir"/rocksdb-systemdlibs.patch
-}
-
-build() {
-   rm -rf build
-   mkdir build
-   cd build
-
-   cmake ../$pkgbase-$_pkgver \
-   -DCMAKE_B

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

2017-09-02 Thread Massimiliano Torromeo
Date: Saturday, September 2, 2017 @ 08:40:54
  Author: mtorromeo
Revision: 255264

Fixed conflicting file in libperconaserverclient

Modified:
  percona-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-02 07:00:21 UTC (rev 255263)
+++ PKGBUILD2017-09-02 08:40:54 UTC (rev 255264)
@@ -7,7 +7,7 @@
 _boost_ver=1.59.0
 _pkgver=${pkgver/_/-}
 _myver=${pkgver/_rel*}
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 makedepends=('cmake' 'zlib' 'lz4' 'zstd' 'libaio' 'systemd-tools' 'valgrind' 
'pam' 'numactl' 'jemalloc' 'openssl')
 license=('GPL')
@@ -102,7 +102,7 @@
done
 
# Conflicting files with libmariadbclient
-   rm "$pkgdir"/usr/lib/libmysql*
+   rm -rf "$pkgdir"/usr/lib/{libmysql*,mysql}
 
install -Dm755 scripts/mysql_config 
"$pkgdir"/usr/bin/perconaserver_config
install -d "$pkgdir"/usr/share/man/man1


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

2017-09-02 Thread Felix Yan
Date: Saturday, September 2, 2017 @ 07:00:21
  Author: felixonmars
Revision: 255263

archrelease: copy trunk to community-any

Added:
  eslint/repos/community-any/PKGBUILD
(from rev 255262, eslint/trunk/PKGBUILD)
Deleted:
  eslint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-02 06:59:49 UTC (rev 255262)
+++ PKGBUILD2017-09-02 07:00:21 UTC (rev 255263)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=eslint
-pkgver=4.5.0
-pkgrel=1
-pkgdesc='An AST-based pattern checker for JavaScript'
-arch=('any')
-url='http://eslint.org'
-license=('MIT')
-depends=('nodejs' 'acorn')
-makedepends=('npm')
-source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz";)
-noextract=("$pkgname-$pkgver.tgz")
-sha512sums=('84bcfa64d0491beef3dffbb6bffd2270cb6f1b7afb840558084ae3a96765349e85a89f7b34958ffde910de95290f8440ba095d4e8736dd8bf48b200e09a74292')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-
-  # Fix permissions
-  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
-
-  install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
-  ln -s ../../../lib/node_modules/eslint/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-  # Experimental dedup
-  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
-  for dep in acorn; do
-rm -r $dep;
-npm link $dep;
-  done
-}

Copied: eslint/repos/community-any/PKGBUILD (from rev 255262, 
eslint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-02 07:00:21 UTC (rev 255263)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=eslint
+pkgver=4.6.0
+pkgrel=1
+pkgdesc='An AST-based pattern checker for JavaScript'
+arch=('any')
+url='http://eslint.org'
+license=('MIT')
+depends=('nodejs' 'acorn')
+makedepends=('npm')
+source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz";)
+noextract=("$pkgname-$pkgver.tgz")
+sha512sums=('59cb4fc70601ba5962282fa7d58abaf7f3f275baf5a5e5803bb78b0d78578fb8dc60bfb885458685221d1fffbac17154b741a2d7b6b768327ef572e8eb757db3')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+
+  # Fix permissions
+  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
+
+  install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
+  ln -s ../../../lib/node_modules/eslint/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  # Experimental dedup
+  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
+  for dep in acorn; do
+rm -r $dep;
+npm link $dep;
+  done
+}


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

2017-09-02 Thread Felix Yan
Date: Saturday, September 2, 2017 @ 06:59:49
  Author: felixonmars
Revision: 255262

upgpkg: eslint 4.6.0-1

Modified:
  eslint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-09-01 22:25:37 UTC (rev 255261)
+++ PKGBUILD2017-09-02 06:59:49 UTC (rev 255262)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=eslint
-pkgver=4.5.0
+pkgver=4.6.0
 pkgrel=1
 pkgdesc='An AST-based pattern checker for JavaScript'
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('npm')
 source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz";)
 noextract=("$pkgname-$pkgver.tgz")
-sha512sums=('84bcfa64d0491beef3dffbb6bffd2270cb6f1b7afb840558084ae3a96765349e85a89f7b34958ffde910de95290f8440ba095d4e8736dd8bf48b200e09a74292')
+sha512sums=('59cb4fc70601ba5962282fa7d58abaf7f3f275baf5a5e5803bb78b0d78578fb8dc60bfb885458685221d1fffbac17154b741a2d7b6b768327ef572e8eb757db3')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz