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

2019-02-21 Thread Kyle Keen via arch-commits
Date: Friday, February 22, 2019 @ 06:19:48
  Author: kkeen
Revision: 435165

archrelease: copy trunk to community-x86_64

Added:
  cryptominisat5/repos/community-x86_64/PKGBUILD
(from rev 435164, cryptominisat5/trunk/PKGBUILD)
Deleted:
  cryptominisat5/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-22 06:19:20 UTC (rev 435164)
+++ PKGBUILD2019-02-22 06:19:48 UTC (rev 435165)
@@ -1,66 +0,0 @@
-# Maintainer: Kyle Keen 
-
-# cms2 had a manpage, where did it go?
-# need to hack up the pythonpath and get the tests to run
-
-pkgname=cryptominisat5
-pkgver=5.6.6
-pkgrel=2
-pkgdesc="A modern, multi-threaded, feature-rich, simplifying SAT solver"
-arch=('x86_64')
-#url="https://www.msoos.org/2016/07/cryptominisat-5-0-0-released/;
-url="https://github.com/msoos/cryptominisat/;
-license=('MIT')
-depends=('zlib' 'gcc-libs' 'boost-libs' 'intel-tbb')
-makedepends=('python2' 'boost' 'cmake' 'vim')
-# vim for xxd
-optdepends=('python2: python module')
-source=("cms5-$pkgver.tgz::https://github.com/msoos/cryptominisat/archive/$pkgver.tar.gz;)
-md5sums=('cce64bfd256700e96baee90b7bdfe770')
-
-# many fancy features requiring makedeps
-# intel-tbb, python2, m4ri, libmysqlclient, valgrind
-
-# todo, upstream python3 support
-
-prepare() {
-  cd cryptominisat-$pkgver
-  sed -i 's/python$/python2/' python/Makefile
-  sed -i 's/\(CRYPTOMINISAT4_EXECUTABLE\).*/\1 cryptominisat5\)/' *.cmake.in
-}
-
-build() {
-  cd cryptominisat-$pkgver
-  mkdir -p build
-  cd build
-  # options to play with:
-  # -DUSE_TBB -DUSE_ZLIB -DUSE_MYSQL
-  # NOMYSQL NOSTATS NOM4RI ENABLE_TESTING
-  cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr \
-  -DNOM4RI=on -DNOMYSQL=on ../
-  make
-  cd pycryptosat
-  python2 setup.py build
-}
-
-check() {
-  _TESTPATH="$PYTHONPATH:$srcdir/cryptominisat-$pkgver/build/pycryptosat"
-  cd "$srcdir/cryptominisat-$pkgver/build/pycryptosat"
-  ln -sf pycryptosat.so libcryptominisat5.so.5.6
-  PYTHONPATH=$_TESTPATH python2 -c "from pycryptosat import Solver"
-  return
-  cd "$srcdir/cryptominisat-$pkgver/python/tests"
-  ln -sf "$srcdir/cryptominisat-$pkgver/build/pycryptosat/pycryptosat.so" 
libcryptominisat5.so.5.6
-  PYTHONPATH=$_TESTPATH python2 test_pycryptosat.py
-}
-
-package() {
-  cd cryptominisat-$pkgver
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  cd build
-  make install DESTDIR="$pkgdir"
-  # todo, tweak the build tools to respect DESTDIR
-  cd pycryptosat
-  python2 setup.py install --record files.txt --root="${pkgdir}"
-}
-

Copied: cryptominisat5/repos/community-x86_64/PKGBUILD (from rev 435164, 
cryptominisat5/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-22 06:19:48 UTC (rev 435165)
@@ -0,0 +1,66 @@
+# Maintainer: Kyle Keen 
+
+# cms2 had a manpage, where did it go?
+# need to hack up the pythonpath and get the tests to run
+
+pkgname=cryptominisat5
+pkgver=5.6.8
+pkgrel=1
+pkgdesc="A modern, multi-threaded, feature-rich, simplifying SAT solver"
+arch=('x86_64')
+#url="https://www.msoos.org/2016/07/cryptominisat-5-0-0-released/;
+url="https://github.com/msoos/cryptominisat/;
+license=('MIT')
+depends=('zlib' 'gcc-libs' 'boost-libs' 'intel-tbb')
+makedepends=('python2' 'boost' 'cmake' 'vim')
+# vim for xxd
+optdepends=('python2: python module')
+source=("cms5-$pkgver.tgz::https://github.com/msoos/cryptominisat/archive/$pkgver.tar.gz;)
+md5sums=('ca1bf853e568c19968daa5464ab86843')
+
+# many fancy features requiring makedeps
+# intel-tbb, python2, m4ri, libmysqlclient, valgrind
+
+# todo, upstream python3 support
+
+prepare() {
+  cd cryptominisat-$pkgver
+  sed -i 's/python$/python2/' python/Makefile
+  sed -i 's/\(CRYPTOMINISAT4_EXECUTABLE\).*/\1 cryptominisat5\)/' *.cmake.in
+}
+
+build() {
+  cd cryptominisat-$pkgver
+  mkdir -p build
+  cd build
+  # options to play with:
+  # -DUSE_TBB -DUSE_ZLIB -DUSE_MYSQL
+  # NOMYSQL NOSTATS NOM4RI ENABLE_TESTING
+  cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr \
+  -DNOM4RI=on -DNOMYSQL=on ../
+  make
+  cd pycryptosat
+  python2 setup.py build
+}
+
+check() {
+  _TESTPATH="$PYTHONPATH:$srcdir/cryptominisat-$pkgver/build/pycryptosat"
+  cd "$srcdir/cryptominisat-$pkgver/build/pycryptosat"
+  ln -sf pycryptosat.so libcryptominisat5.so.5.6
+  PYTHONPATH=$_TESTPATH python2 -c "from pycryptosat import Solver"
+  return
+  cd "$srcdir/cryptominisat-$pkgver/python/tests"
+  ln -sf "$srcdir/cryptominisat-$pkgver/build/pycryptosat/pycryptosat.so" 
libcryptominisat5.so.5.6
+  PYTHONPATH=$_TESTPATH python2 test_pycryptosat.py
+}
+
+package() {
+  cd cryptominisat-$pkgver
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  cd build
+  make install DESTDIR="$pkgdir"
+  

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

2019-02-21 Thread Kyle Keen via arch-commits
Date: Friday, February 22, 2019 @ 06:19:20
  Author: kkeen
Revision: 435164

upgpkg: cryptominisat5 5.6.8-1

Modified:
  cryptominisat5/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-22 05:57:45 UTC (rev 435163)
+++ PKGBUILD2019-02-22 06:19:20 UTC (rev 435164)
@@ -4,8 +4,8 @@
 # need to hack up the pythonpath and get the tests to run
 
 pkgname=cryptominisat5
-pkgver=5.6.6
-pkgrel=2
+pkgver=5.6.8
+pkgrel=1
 pkgdesc="A modern, multi-threaded, feature-rich, simplifying SAT solver"
 arch=('x86_64')
 #url="https://www.msoos.org/2016/07/cryptominisat-5-0-0-released/;
@@ -16,7 +16,7 @@
 # vim for xxd
 optdepends=('python2: python module')
 
source=("cms5-$pkgver.tgz::https://github.com/msoos/cryptominisat/archive/$pkgver.tar.gz;)
-md5sums=('cce64bfd256700e96baee90b7bdfe770')
+md5sums=('ca1bf853e568c19968daa5464ab86843')
 
 # many fancy features requiring makedeps
 # intel-tbb, python2, m4ri, libmysqlclient, valgrind


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

2019-02-21 Thread Eli Schwartz via arch-commits
Date: Friday, February 22, 2019 @ 05:57:45
  Author: eschwartz
Revision: 435163

archrelease: copy trunk to community-any

Added:
  exploitdb/repos/community-any/PKGBUILD
(from rev 435162, exploitdb/trunk/PKGBUILD)
  exploitdb/repos/community-any/rcfile.diff
(from rev 435162, exploitdb/trunk/rcfile.diff)
Deleted:
  exploitdb/repos/community-any/PKGBUILD
  exploitdb/repos/community-any/rcfile.diff

-+
 PKGBUILD|   72 +-
 rcfile.diff |   62 -
 2 files changed, 67 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-22 05:57:27 UTC (rev 435162)
+++ PKGBUILD2019-02-22 05:57:45 UTC (rev 435163)
@@ -1,36 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Maintainer: Levente Polyak 
-
-pkgname=exploitdb
-_pkgver=2019-02-07
-pkgver=${_pkgver//-/}
-pkgrel=1
-pkgdesc="Offensive Security’s Exploit Database Archive"
-arch=('any')
-url="https://www.exploit-db.com/;
-license=('GPL')
-optdepends=('libxml2: to check nmap XML results'
-'xclip: copy paths to the clipboard')
-backup=('etc/searchsploit_rc')
-options=('!strip')
-source=("${pkgname}-${_pkgver}.tar.gz::https://github.com/offensive-security/${pkgname}/archive/${_pkgver}.tar.gz;
-"rcfile.diff")
-sha512sums=('ffd9316859ec87c0651f69451f51908c7d7e261ebc923d9b52ebe94f186fdd06fd883db23002f5fba59fce6b1e635ca5c521c9db4832d00fa4f95c6edd33d914'
-
'e170da5b974975c6c23c5b09e8c1825bbb17446fb506f2d00f92f86f94394acf18a53458bd90969de38da642fc1f7abb08ba940969108002dab17415b88211d6')
-
-prepare() {
-cd ${pkgname}-${_pkgver}
-
-patch -p1 -i ../rcfile.diff
-}
-
-package() {
-cd ${pkgname}-${_pkgver}
-
-install -Dm755 searchsploit "${pkgdir}"/usr/bin/searchsploit
-install -Dm644 .searchsploit_rc "${pkgdir}"/etc/searchsploit_rc
-mkdir -p "${pkgdir}"/usr/share/${pkgname}
-cp -a exploits/ shellcodes/ files_*.csv "${pkgdir}"/usr/share/${pkgname}
-}
-
-# vim: ts=4 sw=4 et:

Copied: exploitdb/repos/community-any/PKGBUILD (from rev 435162, 
exploitdb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-22 05:57:45 UTC (rev 435163)
@@ -0,0 +1,36 @@
+# Maintainer: Eli Schwartz 
+# Maintainer: Levente Polyak 
+
+pkgname=exploitdb
+_pkgver=2019-02-22
+pkgver=${_pkgver//-/}
+pkgrel=1
+pkgdesc="Offensive Security’s Exploit Database Archive"
+arch=('any')
+url="https://www.exploit-db.com/;
+license=('GPL')
+optdepends=('libxml2: to check nmap XML results'
+'xclip: copy paths to the clipboard')
+backup=('etc/searchsploit_rc')
+options=('!strip')
+source=("${pkgname}-${_pkgver}.tar.gz::https://github.com/offensive-security/${pkgname}/archive/${_pkgver}.tar.gz;
+"rcfile.diff")
+sha512sums=('ea3849fa7ba2cee944a0b0361c4464cd6d7347547e36206b85c2adc9b189dbc2d6e4650d58fdd5e09b44ab8c4e3e4ed05e507e50401f1c32086a3d7f111e29df'
+
'e170da5b974975c6c23c5b09e8c1825bbb17446fb506f2d00f92f86f94394acf18a53458bd90969de38da642fc1f7abb08ba940969108002dab17415b88211d6')
+
+prepare() {
+cd ${pkgname}-${_pkgver}
+
+patch -p1 -i ../rcfile.diff
+}
+
+package() {
+cd ${pkgname}-${_pkgver}
+
+install -Dm755 searchsploit "${pkgdir}"/usr/bin/searchsploit
+install -Dm644 .searchsploit_rc "${pkgdir}"/etc/searchsploit_rc
+mkdir -p "${pkgdir}"/usr/share/${pkgname}
+cp -a exploits/ shellcodes/ files_*.csv "${pkgdir}"/usr/share/${pkgname}
+}
+
+# vim: ts=4 sw=4 et:

Deleted: rcfile.diff
===
--- rcfile.diff 2019-02-22 05:57:27 UTC (rev 435162)
+++ rcfile.diff 2019-02-22 05:57:45 UTC (rev 435163)
@@ -1,31 +0,0 @@
-diff --git a/.searchsploit_rc b/.searchsploit_rc
-index 36c9b1c8..62bbe404 100644
 a/.searchsploit_rc
-+++ b/.searchsploit_rc
-@@ -4,7 +4,7 @@ progname="$( basename "$0" )"
- 
- ##-- Exploits
- files_array+=("files_exploits.csv")
--path_array+=("/opt/exploitdb")
-+path_array+=("/usr/share/exploitdb")
- name_array+=("Exploit")
- git_array+=("https://github.com/offensive-security/exploitdb.git;)
- package_array+=("exploitdb")
-@@ -12,7 +12,7 @@ package_array+=("exploitdb")
- 
- ##-- Shellcodes
- files_array+=("files_shellcodes.csv")
--path_array+=("/opt/exploitdb")
-+path_array+=("/usr/share/exploitdb")
- name_array+=("Shellcode")
- git_array+=("https://github.com/offensive-security/exploitdb.git;)
- package_array+=("exploitdb")
-@@ -20,7 +20,7 @@ package_array+=("exploitdb")
- 
- ##-- Papers
- files_array+=("files_papers.csv")
--path_array+=("/opt/exploitdb-papers")
-+path_array+=("/usr/share/exploitdb-papers")
- name_array+=("Paper")
- git_array+=("https://github.com/offensive-security/exploitdb-papers.git;)
- package_array+=("exploitdb-papers")

Copied: exploitdb/repos/community-any/rcfile.diff (from rev 435162, 

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

2019-02-21 Thread Eli Schwartz via arch-commits
Date: Friday, February 22, 2019 @ 05:57:27
  Author: eschwartz
Revision: 435162

upgpkg: exploitdb 20190222-1

upstream release

Modified:
  exploitdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-22 04:18:47 UTC (rev 435161)
+++ PKGBUILD2019-02-22 05:57:27 UTC (rev 435162)
@@ -2,7 +2,7 @@
 # Maintainer: Levente Polyak 
 
 pkgname=exploitdb
-_pkgver=2019-02-07
+_pkgver=2019-02-22
 pkgver=${_pkgver//-/}
 pkgrel=1
 pkgdesc="Offensive Security’s Exploit Database Archive"
@@ -15,7 +15,7 @@
 options=('!strip')
 
source=("${pkgname}-${_pkgver}.tar.gz::https://github.com/offensive-security/${pkgname}/archive/${_pkgver}.tar.gz;
 "rcfile.diff")
-sha512sums=('ffd9316859ec87c0651f69451f51908c7d7e261ebc923d9b52ebe94f186fdd06fd883db23002f5fba59fce6b1e635ca5c521c9db4832d00fa4f95c6edd33d914'
+sha512sums=('ea3849fa7ba2cee944a0b0361c4464cd6d7347547e36206b85c2adc9b189dbc2d6e4650d58fdd5e09b44ab8c4e3e4ed05e507e50401f1c32086a3d7f111e29df'
 
'e170da5b974975c6c23c5b09e8c1825bbb17446fb506f2d00f92f86f94394acf18a53458bd90969de38da642fc1f7abb08ba940969108002dab17415b88211d6')
 
 prepare() {


[arch-commits] Commit in firefox-tree-style-tab/trunk (PKGBUILD)

2019-02-21 Thread Daniel M. Capella via arch-commits
Date: Friday, February 22, 2019 @ 04:18:21
  Author: polyzen
Revision: 435160

upgpkg: firefox-tree-style-tab 2.7.23-1

Modified:
  firefox-tree-style-tab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 23:27:37 UTC (rev 435159)
+++ PKGBUILD2019-02-22 04:18:21 UTC (rev 435160)
@@ -2,7 +2,7 @@
 # Contributor: Jérémie Detrey 
 
 pkgname=firefox-tree-style-tab
-pkgver=2.7.22
+pkgver=2.7.23
 pkgrel=1
 pkgdesc='Firefox extension to show tabs like a tree'
 arch=('any')
@@ -11,7 +11,7 @@
 url=https://piro.sakura.ne.jp/xul/_treestyletab.html.en
 
source=("https://addons.cdn.mozilla.net/user-media/addons/5890/tree_style_tab-$pkgver-fx.xpi;)
 noextract=("${source##*/}")
-sha256sums=('2400367eb99ff2b566570d334ae23ddeff28f025695d202f3860cde302238c98')
+sha256sums=('2baa1deb7b10411904465775645b147acf3426044ecda10e0dc1915f3daad9fa')
 
 package() {
   install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/treestyle...@piro.sakura.ne.jp.xpi


[arch-commits] Commit in firefox-tree-style-tab/repos/community-any (2 files)

2019-02-21 Thread Daniel M. Capella via arch-commits
Date: Friday, February 22, 2019 @ 04:18:47
  Author: polyzen
Revision: 435161

archrelease: copy trunk to community-any

Added:
  firefox-tree-style-tab/repos/community-any/PKGBUILD
(from rev 435160, firefox-tree-style-tab/trunk/PKGBUILD)
Deleted:
  firefox-tree-style-tab/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-22 04:18:21 UTC (rev 435160)
+++ PKGBUILD2019-02-22 04:18:47 UTC (rev 435161)
@@ -1,20 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Jérémie Detrey 
-
-pkgname=firefox-tree-style-tab
-pkgver=2.7.22
-pkgrel=1
-pkgdesc='Firefox extension to show tabs like a tree'
-arch=('any')
-license=('MPL' 'GPL' 'LGPL')
-groups=('firefox-addons')
-url=https://piro.sakura.ne.jp/xul/_treestyletab.html.en
-source=("https://addons.cdn.mozilla.net/user-media/addons/5890/tree_style_tab-$pkgver-fx.xpi;)
-noextract=("${source##*/}")
-sha256sums=('2400367eb99ff2b566570d334ae23ddeff28f025695d202f3860cde302238c98')
-
-package() {
-  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/treestyle...@piro.sakura.ne.jp.xpi
-}
-
-# vim:set ts=2 sw=2 et:

Copied: firefox-tree-style-tab/repos/community-any/PKGBUILD (from rev 435160, 
firefox-tree-style-tab/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-22 04:18:47 UTC (rev 435161)
@@ -0,0 +1,20 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Jérémie Detrey 
+
+pkgname=firefox-tree-style-tab
+pkgver=2.7.23
+pkgrel=1
+pkgdesc='Firefox extension to show tabs like a tree'
+arch=('any')
+license=('MPL' 'GPL' 'LGPL')
+groups=('firefox-addons')
+url=https://piro.sakura.ne.jp/xul/_treestyletab.html.en
+source=("https://addons.cdn.mozilla.net/user-media/addons/5890/tree_style_tab-$pkgver-fx.xpi;)
+noextract=("${source##*/}")
+sha256sums=('2baa1deb7b10411904465775645b147acf3426044ecda10e0dc1915f3daad9fa')
+
+package() {
+  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/treestyle...@piro.sakura.ne.jp.xpi
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in linux-hardened/repos/extra-x86_64 (12 files)

2019-02-21 Thread Levente Polyak via arch-commits
Date: Friday, February 22, 2019 @ 00:41:41
  Author: anthraxx
Revision: 346649

archrelease: copy trunk to extra-x86_64

Added:
  linux-hardened/repos/extra-x86_64/60-linux.hook
(from rev 346648, linux-hardened/trunk/60-linux.hook)
  linux-hardened/repos/extra-x86_64/90-linux.hook
(from rev 346648, linux-hardened/trunk/90-linux.hook)
  linux-hardened/repos/extra-x86_64/PKGBUILD
(from rev 346648, linux-hardened/trunk/PKGBUILD)
  linux-hardened/repos/extra-x86_64/config.x86_64
(from rev 346648, linux-hardened/trunk/config.x86_64)
  linux-hardened/repos/extra-x86_64/linux.install
(from rev 346648, linux-hardened/trunk/linux.install)
  linux-hardened/repos/extra-x86_64/linux.preset
(from rev 346648, linux-hardened/trunk/linux.preset)
Deleted:
  linux-hardened/repos/extra-x86_64/60-linux.hook
  linux-hardened/repos/extra-x86_64/90-linux.hook
  linux-hardened/repos/extra-x86_64/PKGBUILD
  linux-hardened/repos/extra-x86_64/config.x86_64
  linux-hardened/repos/extra-x86_64/linux.install
  linux-hardened/repos/extra-x86_64/linux.preset

---+
 60-linux.hook |   24 
 90-linux.hook |   22 
 PKGBUILD  |  504 -
 config.x86_64 |19720 
 linux.install |   26 
 linux.preset  |   28 
 6 files changed, 10162 insertions(+), 10162 deletions(-)

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


[arch-commits] Commit in linux-hardened/trunk (PKGBUILD config.x86_64)

2019-02-21 Thread Levente Polyak via arch-commits
Date: Friday, February 22, 2019 @ 00:41:28
  Author: anthraxx
Revision: 346648

upgpkg: linux-hardened 4.20.11.a-1

Modified:
  linux-hardened/trunk/PKGBUILD
  linux-hardened/trunk/config.x86_64

---+
 PKGBUILD  |8 
 config.x86_64 |2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 22:27:48 UTC (rev 346647)
+++ PKGBUILD2019-02-22 00:41:28 UTC (rev 346648)
@@ -4,7 +4,7 @@
 # Contributor: Thomas Baechler 
 
 pkgbase=linux-hardened
-_pkgver=4.20.10
+_pkgver=4.20.11
 _hardenedver=a
 _srcname=linux-${_pkgver}
 pkgver=${_pkgver}.${_hardenedver}
@@ -23,11 +23,11 @@
 linux.preset   # standard config files for mkinitcpio ramdisk
 )
 replaces=('linux-grsec')
-sha256sums=('53de6be9adfb8899f0a15855f1aef62b8b5a3c5c575196ec8a640a5b8c1c3cf8'
+sha256sums=('dcd95c41f45c8ee90e249887f4aa8657b9a4c5d0fcef69ba17e75b5304d7411f'
 'SKIP'
-'12ae9028543b25f77317cb85e20554b8cc9ca0df84440d8edd7a3241703a4889'
+'cb0c074323cbc2ac0bc0c52be56e2133a83c31d5be1ea2fbcd3783c296cd9558'
 'SKIP'
-'768b0e588cbf83d3cc5a59f4b545022502a64414b20b32abacba5da3ba07f362'
+'ab6551cf1cc64057704e1a772414225b0733b1d4ebbd4bb28c012a83c6b299c8'
 'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21'
 'c043f3033bb781e2688794a59f6d1f7ed49ef9b13eb77ff9a425df33a244a636'
 'ad6344badc91ad0630caacde83f7f9b97276f80d26a20619a87952be65492c65')

Modified: config.x86_64
===
--- config.x86_64   2019-02-21 22:27:48 UTC (rev 346647)
+++ config.x86_64   2019-02-22 00:41:28 UTC (rev 346648)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 4.20.6 Kernel Configuration
+# Linux/x86 4.20.11 Kernel Configuration
 #
 
 #


[arch-commits] Commit in (fox-devel)

2019-02-21 Thread David Runge via arch-commits
Date: Thursday, February 21, 2019 @ 23:27:37
  Author: dvzrv
Revision: 435159

Moving to AUR.

Deleted:
  fox-devel/


[arch-commits] Commit in sagemath/repos (community-staging-x86_64)

2019-02-21 Thread Antonio Rojas via arch-commits
Date: Thursday, February 21, 2019 @ 22:51:55
  Author: arojas
Revision: 435158

Deleted:
  sagemath/repos/community-staging-x86_64/


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

2019-02-21 Thread Maxim Baz via arch-commits
Date: Thursday, February 21, 2019 @ 22:38:47
  Author: maximbaz
Revision: 435156

archrelease: copy trunk to community-any

Added:
  python-language-server/repos/community-any/PKGBUILD
(from rev 435155, python-language-server/trunk/PKGBUILD)
Deleted:
  python-language-server/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 22:38:37 UTC (rev 435155)
+++ PKGBUILD2019-02-21 22:38:47 UTC (rev 435156)
@@ -1,43 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: fenuks
-
-pkgname=python-language-server
-pkgver=0.23.2
-pkgrel=2
-pkgdesc="An implementation of the Language Server Protocol for Python"
-arch=("any")
-url="https://github.com/palantir/python-language-server;
-license=("MIT")
-depends=("python" "python-jsonrpc-server" "python-future" "python-jedi" 
"python-pluggy")
-optdepends=("python-mccabe: for complexity checking"
-"python-rope: for completions and renaming"
-"python-pyflakes: for linter to detect various errors"
-"python-pycodestyle: for style checking"
-"autopep8: for code formatting"
-"yapf: for code formatting (preferred over autopep8)"
-"python-pydocstyle: for docstring style checking")
-makedepends=("python" "python-setuptools")
-checkdepends=("python-pytest" "python-pytest-runner" "python-pytest-cov"  
"python-pyflakes"
-  "python-mock" "python-jedi" "python-future" "yapf" 
"python-mccabe" "python-pycodestyle"
- "autopep8" "python-rope" "python-pydocstyle" 
"python-jsonrpc-server")
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('d0da957d6d7044c46ce23c0e4aefedb28d7b591adb2705c13037c91679e903c1')
-
-build() {
-cd "${pkgname}-${pkgver}"
-python setup.py build
-}
-
-check() {
-cd "${pkgname}-${pkgver}"
-py.test
-}
-
-package() {
-cd "${pkgname}-${pkgver}"
-python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
-install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim:set ts=4 sw=4 et:

Copied: python-language-server/repos/community-any/PKGBUILD (from rev 435155, 
python-language-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 22:38:47 UTC (rev 435156)
@@ -0,0 +1,43 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: fenuks
+
+pkgname=python-language-server
+pkgver=0.24.0
+pkgrel=1
+pkgdesc="An implementation of the Language Server Protocol for Python"
+arch=("any")
+url="https://github.com/palantir/python-language-server;
+license=("MIT")
+depends=("python" "python-jsonrpc-server" "python-future" "python-jedi" 
"python-pluggy")
+optdepends=("python-mccabe: for complexity checking"
+"python-rope: for completions and renaming"
+"python-pyflakes: for linter to detect various errors"
+"python-pycodestyle: for style checking"
+"autopep8: for code formatting"
+"yapf: for code formatting (preferred over autopep8)"
+"python-pydocstyle: for docstring style checking")
+makedepends=("python" "python-setuptools")
+checkdepends=("python-pytest" "python-pytest-runner" "python-pytest-cov"  
"python-pyflakes"
+  "python-mock" "python-jedi" "python-future" "yapf" 
"python-mccabe" "python-pycodestyle"
+ "autopep8" "python-rope" "python-pydocstyle" 
"python-jsonrpc-server")
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('a056d2504d78fc596099a24a8aa20895923c4fbe05620afeb46fe193a5d9f517')
+
+build() {
+cd "${pkgname}-${pkgver}"
+python setup.py build
+}
+
+check() {
+cd "${pkgname}-${pkgver}"
+py.test
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
+install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=4 sw=4 et:


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

2019-02-21 Thread Antonio Rojas via arch-commits
Date: Thursday, February 21, 2019 @ 22:38:48
  Author: arojas
Revision: 435157

archrelease: copy trunk to community-x86_64

Added:
  sagemath/repos/community-staging-x86_64/
  sagemath/repos/community-x86_64/PKGBUILD
(from rev 435154, sagemath/trunk/PKGBUILD)
  sagemath/repos/community-x86_64/fes02.patch
(from rev 435154, sagemath/trunk/fes02.patch)
  sagemath/repos/community-x86_64/latte-count.patch
(from rev 435154, sagemath/trunk/latte-count.patch)
  sagemath/repos/community-x86_64/package.patch
(from rev 435154, sagemath/trunk/package.patch)
  sagemath/repos/community-x86_64/sagemath-cremona.patch
(from rev 435154, sagemath/trunk/sagemath-cremona.patch)
  sagemath/repos/community-x86_64/sagemath-cypari2.patch
(from rev 435154, sagemath/trunk/sagemath-cypari2.patch)
  sagemath/repos/community-x86_64/sagemath-ecl-sigfpe.patch
(from rev 435154, sagemath/trunk/sagemath-ecl-sigfpe.patch)
  sagemath/repos/community-x86_64/sagemath-env.patch
(from rev 435154, sagemath/trunk/sagemath-env.patch)
  sagemath/repos/community-x86_64/sagemath-numpy-1.16.patch
(from rev 435154, sagemath/trunk/sagemath-numpy-1.16.patch)
  sagemath/repos/community-x86_64/sagemath-python3-notebook.patch
(from rev 435154, sagemath/trunk/sagemath-python3-notebook.patch)
  sagemath/repos/community-x86_64/sagemath-singular-4.1.1.p4.patch
(from rev 435154, sagemath/trunk/sagemath-singular-4.1.1.p4.patch)
  sagemath/repos/community-x86_64/sagemath-sphinx-1.8.patch
(from rev 435154, sagemath/trunk/sagemath-sphinx-1.8.patch)
  sagemath/repos/community-x86_64/sagemath-threejs.patch
(from rev 435155, sagemath/trunk/sagemath-threejs.patch)
  sagemath/repos/community-x86_64/test-optional.patch
(from rev 435155, sagemath/trunk/test-optional.patch)
Deleted:
  sagemath/repos/community-staging-x86_64/PKGBUILD
  sagemath/repos/community-staging-x86_64/fes02.patch
  sagemath/repos/community-staging-x86_64/latte-count.patch
  sagemath/repos/community-staging-x86_64/package.patch
  sagemath/repos/community-staging-x86_64/sagemath-cremona.patch
  sagemath/repos/community-staging-x86_64/sagemath-cypari2.patch
  sagemath/repos/community-staging-x86_64/sagemath-ecl-sigfpe.patch
  sagemath/repos/community-staging-x86_64/sagemath-env.patch
  sagemath/repos/community-staging-x86_64/sagemath-numpy-1.16.patch
  sagemath/repos/community-staging-x86_64/sagemath-python3-notebook.patch
  sagemath/repos/community-staging-x86_64/sagemath-singular-4.1.1.p4.patch
  sagemath/repos/community-staging-x86_64/sagemath-sphinx-1.8.patch
  sagemath/repos/community-staging-x86_64/sagemath-threejs.patch
  sagemath/repos/community-staging-x86_64/test-optional.patch
  sagemath/repos/community-x86_64/PKGBUILD
  sagemath/repos/community-x86_64/fes02.patch
  sagemath/repos/community-x86_64/latte-count.patch
  sagemath/repos/community-x86_64/package.patch
  sagemath/repos/community-x86_64/sagemath-cremona.patch
  sagemath/repos/community-x86_64/sagemath-cypari2.patch
  sagemath/repos/community-x86_64/sagemath-ecl-sigfpe.patch
  sagemath/repos/community-x86_64/sagemath-env.patch
  sagemath/repos/community-x86_64/sagemath-numpy-1.16.patch
  sagemath/repos/community-x86_64/sagemath-python3-notebook.patch
  sagemath/repos/community-x86_64/sagemath-singular-4.1.1.p4.patch
  sagemath/repos/community-x86_64/sagemath-sphinx-1.8.patch
  sagemath/repos/community-x86_64/sagemath-threejs.patch
  sagemath/repos/community-x86_64/test-optional.patch

---+
 /PKGBUILD |  161 ++
 /fes02.patch  |   57 
 /latte-count.patch|   89 +
 /package.patch|   39 
 /sagemath-cremona.patch   |   31 
 /sagemath-cypari2.patch   |  711 
 /sagemath-ecl-sigfpe.patch|  147 ++
 /sagemath-env.patch   |  162 ++
 /sagemath-numpy-1.16.patch|   85 +
 /sagemath-python3-notebook.patch  |   27 
 /sagemath-singular-4.1.1.p4.patch |   78 +
 /sagemath-sphinx-1.8.patch|   28 
 /sagemath-threejs.patch   |   11 
 /test-optional.patch  |   25 
 community-staging-x86_64/PKGBUILD |  161 --
 community-staging-x86_64/fes02.patch  |   57 
 community-staging-x86_64/latte-count.patch|   89 -
 community-staging-x86_64/package.patch|   39 
 community-staging-x86_64/sagemath-cremona.patch   |   31 
 community-staging-x86_64/sagemath-cypari2.patch   |  711 
 community-staging-x86_64/sagemath-ecl-sigfpe.patch|  147 --
 

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

2019-02-21 Thread Maxim Baz via arch-commits
Date: Thursday, February 21, 2019 @ 22:38:37
  Author: maximbaz
Revision: 435155

upgpkg: python-language-server 0.24.0-1

Modified:
  python-language-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 22:36:36 UTC (rev 435154)
+++ PKGBUILD2019-02-21 22:38:37 UTC (rev 435155)
@@ -3,8 +3,8 @@
 # Contributor: fenuks
 
 pkgname=python-language-server
-pkgver=0.23.2
-pkgrel=2
+pkgver=0.24.0
+pkgrel=1
 pkgdesc="An implementation of the Language Server Protocol for Python"
 arch=("any")
 url="https://github.com/palantir/python-language-server;
@@ -22,7 +22,7 @@
   "python-mock" "python-jedi" "python-future" "yapf" 
"python-mccabe" "python-pycodestyle"
  "autopep8" "python-rope" "python-pydocstyle" 
"python-jsonrpc-server")
 
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('d0da957d6d7044c46ce23c0e4aefedb28d7b591adb2705c13037c91679e903c1')
+sha256sums=('a056d2504d78fc596099a24a8aa20895923c4fbe05620afeb46fe193a5d9f517')
 
 build() {
 cd "${pkgname}-${pkgver}"


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

2019-02-21 Thread Antonio Rojas via arch-commits
Date: Thursday, February 21, 2019 @ 22:36:36
  Author: arojas
Revision: 435154

Do not enforce a specific blas implementation

Modified:
  sagemath/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 22:27:20 UTC (rev 435153)
+++ PKGBUILD2019-02-21 22:36:36 UTC (rev 435154)
@@ -8,7 +8,7 @@
 pkgbase=sagemath
 pkgname=(sagemath sagemath-jupyter)
 pkgver=8.6
-pkgrel=3
+pkgrel=4
 pkgdesc="Open Source Mathematics Software, free alternative to Magma, Maple, 
Mathematica, and Matlab"
 arch=(x86_64)
 url="http://www.sagemath.org;
@@ -17,7 +17,7 @@
   python2-matplotlib python2-scipy python2-sympy python2-networkx 
python2-pillow python2-future gap flintqs lcalc lrcalc arb
   eclib gmp-ecm zn_poly gd python2-cvxopt pynac linbox m4rie rubiks 
pari-galdata pari-seadata-small planarity rankwidth tachyon
   sage-data-combinatorial_designs sage-data-elliptic_curves sage-data-graphs 
sage-data-polytopes_db sage-data-conway_polynomials
-  libgiac libhomfly libbraiding three.js openblas)
+  libgiac libhomfly libbraiding three.js)
 optdepends=('cython2: to compile cython code' 'python2-pkgconfig: to compile 
cython code'
   'jmol: 3D plots' 'sage-notebook: Flask notebook interface (deprecated)'
   'sagemath-doc: Documentation and inline help' 'python2-igraph: igraph 
backend for graph theory'
@@ -28,7 +28,7 @@
   'lrs: Algorithms for linear reverse search used in game theory and for 
computing volume of polytopes'
   'libfes: exhaustive search of solutions for boolean equations' 
'python2-pynormaliz: Normaliz backend for polyhedral computations'
   'latte-integrale: integral point count in polyhedra' 'polymake: polymake 
backend for polyhedral computations'
-  'shared_meataxe: faster matrix arithmetic over finite fields'
+  'shared_meataxe: faster matrix arithmetic over finite fields' 'openblas: 
faster linear algebra'
   'sirocco: for computing the fundamental group of the complement of a plane 
curve' 'primecount: faster prime_pi implementation'
   'dot2tex: for displaying some diagrams' 'cryptominisat5: SAT solver' 
'python2-pycosat: picosat SAT solver'
   'python2-pip: to install optional packages with sage -pip')


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

2019-02-21 Thread Alexander Rødseth via arch-commits
Date: Thursday, February 21, 2019 @ 22:21:54
  Author: arodseth
Revision: 435143

archrelease: copy trunk to community-x86_64

Added:
  libnsbmp/repos/community-x86_64/PKGBUILD
(from rev 435142, libnsbmp/trunk/PKGBUILD)
Deleted:
  libnsbmp/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 22:21:43 UTC (rev 435142)
+++ PKGBUILD2019-02-21 22:21:54 UTC (rev 435143)
@@ -1,36 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Paulo Matias 
-# Contributor: Daniel J Griffiths 
-
-pkgname=libnsbmp
-pkgver=0.1.5
-pkgrel=1
-pkgdesc='Decoding library for BMP and ICO image file formats'
-arch=('x86_64')
-url='http://www.netsurf-browser.org/projects/libnsbmp/'
-license=('MIT')
-makedepends=('netsurf-buildsystem>=1.7')
-# no https available
-source=("http://download.netsurf-browser.org/libs/releases/$pkgname-$pkgver-src.tar.gz;)
-sha256sums=('65cc0d81727e2ece417b7997ba2451309f07a4e5932e52019a20867640152b52')
-
-build() {
-  make -C "$pkgname-$pkgver" \
-INCLUDEDIR=include \
-LIBDIR=lib PREFIX=/usr \
-COMPONENT_TYPE="lib-shared"
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make install \
-INCLUDEDIR=include \
-LIBDIR=lib \
-PREFIX=/usr \
-DESTDIR="$pkgdir"
-
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-# vim: ts=2 sw=2 et:

Copied: libnsbmp/repos/community-x86_64/PKGBUILD (from rev 435142, 
libnsbmp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 22:21:54 UTC (rev 435143)
@@ -0,0 +1,33 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Paulo Matias 
+# Contributor: Daniel J Griffiths 
+
+pkgname=libnsbmp
+pkgver=0.1.5
+pkgrel=2
+pkgdesc='Decoding library for BMP and ICO image file formats'
+arch=(x86_64)
+url='https://www.netsurf-browser.org/projects/libnsbmp/'
+license=(MIT)
+makedepends=('netsurf-buildsystem>=1.7')
+source=("https://download.netsurf-browser.org/libs/releases/$pkgname-$pkgver-src.tar.gz;)
+sha256sums=('65cc0d81727e2ece417b7997ba2451309f07a4e5932e52019a20867640152b52')
+
+build() {
+  make -C $pkgname-$pkgver \
+INCLUDEDIR=include \
+LIBDIR=lib PREFIX=/usr \
+COMPONENT_TYPE=lib-shared
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make install \
+INCLUDEDIR=include \
+LIBDIR=lib \
+PREFIX=/usr \
+DESTDIR="$pkgdir"
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-02-21 Thread Alexander Rødseth via arch-commits
Date: Thursday, February 21, 2019 @ 22:21:43
  Author: arodseth
Revision: 435142

upgpkg: libnsbmp 0.1.5-2

Modified:
  libnsbmp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 21:00:52 UTC (rev 435141)
+++ PKGBUILD2019-02-21 22:21:43 UTC (rev 435142)
@@ -4,32 +4,29 @@
 
 pkgname=libnsbmp
 pkgver=0.1.5
-pkgrel=1
+pkgrel=2
 pkgdesc='Decoding library for BMP and ICO image file formats'
-arch=('x86_64')
-url='http://www.netsurf-browser.org/projects/libnsbmp/'
-license=('MIT')
+arch=(x86_64)
+url='https://www.netsurf-browser.org/projects/libnsbmp/'
+license=(MIT)
 makedepends=('netsurf-buildsystem>=1.7')
-# no https available
-source=("http://download.netsurf-browser.org/libs/releases/$pkgname-$pkgver-src.tar.gz;)
+source=("https://download.netsurf-browser.org/libs/releases/$pkgname-$pkgver-src.tar.gz;)
 sha256sums=('65cc0d81727e2ece417b7997ba2451309f07a4e5932e52019a20867640152b52')
 
 build() {
-  make -C "$pkgname-$pkgver" \
+  make -C $pkgname-$pkgver \
 INCLUDEDIR=include \
 LIBDIR=lib PREFIX=/usr \
-COMPONENT_TYPE="lib-shared"
+COMPONENT_TYPE=lib-shared
 }
 
 package() {
-  cd "$pkgname-$pkgver"
-
+  cd $pkgname-$pkgver
   make install \
 INCLUDEDIR=include \
 LIBDIR=lib \
 PREFIX=/usr \
 DESTDIR="$pkgdir"
-
   install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
 }
 


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

2019-02-21 Thread David Runge via arch-commits
Date: Thursday, February 21, 2019 @ 21:00:52
  Author: dvzrv
Revision: 435141

archrelease: copy trunk to community-x86_64

Added:
  gogglesmm/repos/community-x86_64/PKGBUILD
(from rev 435140, gogglesmm/trunk/PKGBUILD)
Deleted:
  gogglesmm/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 21:00:41 UTC (rev 435140)
+++ PKGBUILD2019-02-21 21:00:52 UTC (rev 435141)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Sander Jansen 
-
-pkgname=gogglesmm
-pkgver=1.2.1
-pkgrel=1
-pkgdesc="Music Manager and Player"
-arch=('x86_64')
-url="http://gogglesmm.github.io/;
-license=('GPL3')
-depends=('fox-devel>=1.7.48' 'libmad' 'faad2' 'sqlite3'
-'libpulse' 'opus' 'dbus' 'taglib>=1.9.0' 
-'hicolor-icon-theme' 'desktop-file-utils'
-'libepoxy')
-makedepends=('glproto' 'dri2proto' 'cmake')
-conflicts=('musicmanager')
-replaces=('musicmanager')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/gogglesmm/gogglesmm/archive/$pkgver.tar.gz;)
-sha256sums=('f068667e0a825ac792eda344cbe94c29fe8668ddbdd269c094e5bf168acd2380')
-
-prepare() {
-  cd gogglesmm-$pkgver
-#  sed -i 's|reswrap-1.7|reswrap-devel|g' src/CMakeLists.txt
-}
-
-build() {
-  cd gogglesmm-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX=/usr .
-  make
-}
-
-package() {
-  cd gogglesmm-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gogglesmm/repos/community-x86_64/PKGBUILD (from rev 435140, 
gogglesmm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 21:00:52 UTC (rev 435141)
@@ -0,0 +1,29 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: David Runge 
+# Contributor: Sander Jansen 
+
+pkgname=gogglesmm
+pkgver=1.2.1
+pkgrel=2
+pkgdesc="Music Manager and Player"
+arch=('x86_64')
+url="http://gogglesmm.github.io/;
+license=('GPL3')
+depends=('desktop-file-utils' 'faad2' 'glu' 'hicolor-icon-theme' 'libepoxy'
+'libmad' 'libpulse' 'opus' 'sqlite3' 'taglib')
+makedepends=('cmake' 'dri2proto' 'glproto')
+optdepends=('python2: Import scripts')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/gogglesmm/gogglesmm/archive/$pkgver.tar.gz;)
+sha512sums=('c165ddde463afcf863b74f00dfa1566077007f51617fa00a95dfcdeeab49da9ee87406f6bdc7779c597002d1e587886c7992e9e892ce4988f3bb14f015336547')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="$pkgdir" install
+}


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

2019-02-21 Thread David Runge via arch-commits
Date: Thursday, February 21, 2019 @ 21:00:41
  Author: dvzrv
Revision: 435140

upgpkg: gogglesmm 1.2.1-2

Removing use of fox-devel. Adding python2 as optdepends for import scripts.

Modified:
  gogglesmm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 19:40:59 UTC (rev 435139)
+++ PKGBUILD2019-02-21 21:00:41 UTC (rev 435140)
@@ -1,35 +1,29 @@
 # Maintainer: Sergej Pupykin 
+# Contributor: David Runge 
 # Contributor: Sander Jansen 
 
 pkgname=gogglesmm
 pkgver=1.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Music Manager and Player"
 arch=('x86_64')
 url="http://gogglesmm.github.io/;
 license=('GPL3')
-depends=('fox-devel>=1.7.48' 'libmad' 'faad2' 'sqlite3'
-'libpulse' 'opus' 'dbus' 'taglib>=1.9.0' 
-'hicolor-icon-theme' 'desktop-file-utils'
-'libepoxy')
-makedepends=('glproto' 'dri2proto' 'cmake')
-conflicts=('musicmanager')
-replaces=('musicmanager')
+depends=('desktop-file-utils' 'faad2' 'glu' 'hicolor-icon-theme' 'libepoxy'
+'libmad' 'libpulse' 'opus' 'sqlite3' 'taglib')
+makedepends=('cmake' 'dri2proto' 'glproto')
+optdepends=('python2: Import scripts')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/gogglesmm/gogglesmm/archive/$pkgver.tar.gz;)
-sha256sums=('f068667e0a825ac792eda344cbe94c29fe8668ddbdd269c094e5bf168acd2380')
+sha512sums=('c165ddde463afcf863b74f00dfa1566077007f51617fa00a95dfcdeeab49da9ee87406f6bdc7779c597002d1e587886c7992e9e892ce4988f3bb14f015336547')
 
-prepare() {
-  cd gogglesmm-$pkgver
-#  sed -i 's|reswrap-1.7|reswrap-devel|g' src/CMakeLists.txt
-}
-
 build() {
-  cd gogglesmm-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX=/usr .
+  cd "${pkgname}-${pkgver}"
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr
   make
 }
 
 package() {
-  cd gogglesmm-$pkgver
+  cd "${pkgname}-${pkgver}"
   make DESTDIR="$pkgdir" install
 }


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 19:40:43
  Author: felixonmars
Revision: 435138

upgpkg: python-bitvector 3.4.8-3

remove python2 sibling

Modified:
  python-bitvector/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 19:39:13 UTC (rev 435137)
+++ PKGBUILD2019-02-21 19:40:43 UTC (rev 435138)
@@ -2,40 +2,24 @@
 # Contributor: Simon Sapin 
 # Contributor: Kyle Keen 
 
-pkgbase=python-bitvector
-pkgname=(python-bitvector python2-bitvector)
+pkgname=python-bitvector
 pkgver=3.4.8
-pkgrel=2
+pkgrel=3
 pkgdesc="A memory-efficient packed representation for bit arrays in pure 
Python"
 url="https://pypi.python.org/pypi/BitVector;
 license=('PSF')
 arch=('any')
-makedepends=('python-setuptools' 'python2-setuptools')
+depends=('python')
+makedepends=('python-setuptools')
 source=("https://pypi.io/packages/source/B/BitVector/BitVector-$pkgver.tar.gz;)
 
sha512sums=('22d76c33d407b7ff2b0493ed4949189d7fc9ea8fd7497610014ede5f27756b5f91678a5f2da5db5e04f9e85e98378001d0edb5a8c2e3053083d18e547799f3f1')
 
-prepare() {
-  cp -a BitVector-$pkgver{,-py2}
-}
-
 build() {
-  cd "$srcdir"/BitVector-$pkgver
+  cd BitVector-$pkgver
   python setup.py build
-
-  cd "$srcdir"/BitVector-$pkgver-py2
-  python2 setup.py build
 }
 
-package_python-bitvector() {
-  depends=('python')
-
+package() {
   cd BitVector-$pkgver
-  python3 setup.py install --root="$pkgdir" --optimize=1
+  python setup.py install --root="$pkgdir" --optimize=1
 }
-
-package_python2-bitvector() {
-  depends=('python2')
-
-  cd BitVector-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 19:40:59
  Author: felixonmars
Revision: 435139

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 19:40:43 UTC (rev 435138)
+++ PKGBUILD2019-02-21 19:40:59 UTC (rev 435139)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Simon Sapin 
-# Contributor: Kyle Keen 
-
-pkgbase=python-bitvector
-pkgname=(python-bitvector python2-bitvector)
-pkgver=3.4.8
-pkgrel=2
-pkgdesc="A memory-efficient packed representation for bit arrays in pure 
Python"
-url="https://pypi.python.org/pypi/BitVector;
-license=('PSF')
-arch=('any')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("https://pypi.io/packages/source/B/BitVector/BitVector-$pkgver.tar.gz;)
-sha512sums=('22d76c33d407b7ff2b0493ed4949189d7fc9ea8fd7497610014ede5f27756b5f91678a5f2da5db5e04f9e85e98378001d0edb5a8c2e3053083d18e547799f3f1')
-
-prepare() {
-  cp -a BitVector-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/BitVector-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/BitVector-$pkgver-py2
-  python2 setup.py build
-}
-
-package_python-bitvector() {
-  depends=('python')
-
-  cd BitVector-$pkgver
-  python3 setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-bitvector() {
-  depends=('python2')
-
-  cd BitVector-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-bitvector/repos/community-any/PKGBUILD (from rev 435138, 
python-bitvector/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 19:40:59 UTC (rev 435139)
@@ -0,0 +1,25 @@
+# Maintainer: Felix Yan 
+# Contributor: Simon Sapin 
+# Contributor: Kyle Keen 
+
+pkgname=python-bitvector
+pkgver=3.4.8
+pkgrel=3
+pkgdesc="A memory-efficient packed representation for bit arrays in pure 
Python"
+url="https://pypi.python.org/pypi/BitVector;
+license=('PSF')
+arch=('any')
+depends=('python')
+makedepends=('python-setuptools')
+source=("https://pypi.io/packages/source/B/BitVector/BitVector-$pkgver.tar.gz;)
+sha512sums=('22d76c33d407b7ff2b0493ed4949189d7fc9ea8fd7497610014ede5f27756b5f91678a5f2da5db5e04f9e85e98378001d0edb5a8c2e3053083d18e547799f3f1')
+
+build() {
+  cd BitVector-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd BitVector-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 19:38:02
  Author: felixonmars
Revision: 435134

upgpkg: lib32-libcap 2.26-1

Modified:
  lib32-libcap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 19:34:40 UTC (rev 435133)
+++ PKGBUILD2019-02-21 19:38:02 UTC (rev 435134)
@@ -3,8 +3,8 @@
 
 _pkgbasename=libcap
 pkgname=lib32-$_pkgbasename
-pkgver=2.25
-pkgrel=2
+pkgver=2.26
+pkgrel=1
 pkgdesc="POSIX 1003.1e capabilities (32-bit)"
 arch=(x86_64)
 url="http://www.kernel.org/pub/linux/libs/security/linux-privs/;
@@ -11,9 +11,19 @@
 license=('GPL2')
 depends=('lib32-attr' $_pkgbasename)
 makedepends=('gcc-multilib' 'linux-api-headers')
-source=(https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/libcap-${pkgver}.tar.xz)
-md5sums=('b839e5d46c2ad33fc8aa2ceb5f77')
+validpgpkeys=('38A644698C69787344E954CE29EE848AE2CCF3F4') # Andrew G. Morgan 

+source=(https://kernel.org/pub/linux/libs/security/linux-privs/libcap2/libcap-$pkgver.tar.{xz,sign})
+md5sums=('968ac4d42a1a71754313527be2ab5df3'
+ 'SKIP')
 
+prepare() {
+  cd "${srcdir}/${_pkgbasename}-${pkgver}"
+
+  # use our buildflags
+  sed -i "s/CFLAGS :=/CFLAGS += \$(CPPFLAGS) /" Make.Rules
+  sed -i "s/LDFLAGS :=/LDFLAGS +=/" Make.Rules
+}
+
 build() {
   cd "${srcdir}/${_pkgbasename}-${pkgver}"
 


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 19:39:13
  Author: felixonmars
Revision: 435137

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libgpg-error/repos/multilib-x86_64/PKGBUILD
(from rev 435136, lib32-libgpg-error/trunk/PKGBUILD)
Deleted:
  lib32-libgpg-error/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 19:38:56 UTC (rev 435136)
+++ PKGBUILD2019-02-21 19:39:13 UTC (rev 435137)
@@ -1,39 +0,0 @@
-# Maintainer: judd 
-
-_pkgbasename=libgpg-error
-pkgname=lib32-$_pkgbasename
-pkgver=1.34
-pkgrel=1
-pkgdesc="Support library for libgcrypt (32-bit)"
-arch=(x86_64)
-url="https://www.gnupg.org;
-license=('LGPL')
-depends=('lib32-glibc' $_pkgbasename)
-source=(ftp://ftp.gnupg.org/gcrypt/libgpg-error/${_pkgbasename}-${pkgver}.tar.bz2{,.sig})
-  
#ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/libgpg-error/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('0a3e67e428a2e051a94cabd9fb140bf49fdc13d0'
-  'SKIP')
-validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'  # Werner Koch
-  '031EC2536E580D8EA286A9F22071B08A33BD3F06') # NIIBE Yutaka 
(GnuPG Release Key) 
-
-build() {
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-
-  cd "${srcdir}"/${_pkgbasename}-${pkgver}
-  ./configure --prefix=/usr --libdir=/usr/lib32
-  make
-}
-
-check() {
-  cd "${srcdir}"/${_pkgbasename}-${pkgver}
-  make check
-}
-
-package() {
-  cd "${srcdir}"/${_pkgbasename}-${pkgver}
-  make DESTDIR="${pkgdir}/" install
-
-  rm -rf "${pkgdir}"/usr/{include,share,bin}
-}

Copied: lib32-libgpg-error/repos/multilib-x86_64/PKGBUILD (from rev 435136, 
lib32-libgpg-error/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 19:39:13 UTC (rev 435137)
@@ -0,0 +1,39 @@
+# Maintainer: judd 
+
+_pkgbasename=libgpg-error
+pkgname=lib32-$_pkgbasename
+pkgver=1.35
+pkgrel=1
+pkgdesc="Support library for libgcrypt (32-bit)"
+arch=(x86_64)
+url="https://www.gnupg.org;
+license=('LGPL')
+depends=('lib32-glibc' $_pkgbasename)
+source=(ftp://ftp.gnupg.org/gcrypt/libgpg-error/${_pkgbasename}-${pkgver}.tar.bz2{,.sig})
+  
#ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/libgpg-error/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('1ffc6aaac4a4eecf16132c1b4eb500c1765d7190'
+  'SKIP')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'  # Werner Koch
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06') # NIIBE Yutaka 
(GnuPG Release Key) 
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  cd "${srcdir}"/${_pkgbasename}-${pkgver}
+  ./configure --prefix=/usr --libdir=/usr/lib32
+  make
+}
+
+check() {
+  cd "${srcdir}"/${_pkgbasename}-${pkgver}
+  make check
+}
+
+package() {
+  cd "${srcdir}"/${_pkgbasename}-${pkgver}
+  make DESTDIR="${pkgdir}/" install
+
+  rm -rf "${pkgdir}"/usr/{include,share,bin}
+}


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 19:38:26
  Author: felixonmars
Revision: 435135

archrelease: copy trunk to multilib-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 19:38:02 UTC (rev 435134)
+++ PKGBUILD2019-02-21 19:38:26 UTC (rev 435135)
@@ -1,32 +0,0 @@
-# Maintainer: Florian Pritz 
-# Contributor: Hugo Doria 
-
-_pkgbasename=libcap
-pkgname=lib32-$_pkgbasename
-pkgver=2.25
-pkgrel=2
-pkgdesc="POSIX 1003.1e capabilities (32-bit)"
-arch=(x86_64)
-url="http://www.kernel.org/pub/linux/libs/security/linux-privs/;
-license=('GPL2')
-depends=('lib32-attr' $_pkgbasename)
-makedepends=('gcc-multilib' 'linux-api-headers')
-source=(https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/libcap-${pkgver}.tar.xz)
-md5sums=('b839e5d46c2ad33fc8aa2ceb5f77')
-
-build() {
-  cd "${srcdir}/${_pkgbasename}-${pkgver}"
-
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-
-  make -C libcap CC="gcc -m32" prefix=/usr lib=lib32
-}
-
-package() {
-  cd "${srcdir}/${_pkgbasename}-${pkgver}"
-
-  make -C libcap prefix=/usr lib=lib32 DESTDIR=${pkgdir} install
-  chmod 755 ${pkgdir}/usr/lib32/libcap.so.${pkgver}
-
-  rm -rf "${pkgdir}/usr/include"
-}

Copied: lib32-libcap/repos/multilib-x86_64/PKGBUILD (from rev 435134, 
lib32-libcap/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 19:38:26 UTC (rev 435135)
@@ -0,0 +1,42 @@
+# Maintainer: Florian Pritz 
+# Contributor: Hugo Doria 
+
+_pkgbasename=libcap
+pkgname=lib32-$_pkgbasename
+pkgver=2.26
+pkgrel=1
+pkgdesc="POSIX 1003.1e capabilities (32-bit)"
+arch=(x86_64)
+url="http://www.kernel.org/pub/linux/libs/security/linux-privs/;
+license=('GPL2')
+depends=('lib32-attr' $_pkgbasename)
+makedepends=('gcc-multilib' 'linux-api-headers')
+validpgpkeys=('38A644698C69787344E954CE29EE848AE2CCF3F4') # Andrew G. Morgan 

+source=(https://kernel.org/pub/linux/libs/security/linux-privs/libcap2/libcap-$pkgver.tar.{xz,sign})
+md5sums=('968ac4d42a1a71754313527be2ab5df3'
+ 'SKIP')
+
+prepare() {
+  cd "${srcdir}/${_pkgbasename}-${pkgver}"
+
+  # use our buildflags
+  sed -i "s/CFLAGS :=/CFLAGS += \$(CPPFLAGS) /" Make.Rules
+  sed -i "s/LDFLAGS :=/LDFLAGS +=/" Make.Rules
+}
+
+build() {
+  cd "${srcdir}/${_pkgbasename}-${pkgver}"
+
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  make -C libcap CC="gcc -m32" prefix=/usr lib=lib32
+}
+
+package() {
+  cd "${srcdir}/${_pkgbasename}-${pkgver}"
+
+  make -C libcap prefix=/usr lib=lib32 DESTDIR=${pkgdir} install
+  chmod 755 ${pkgdir}/usr/lib32/libcap.so.${pkgver}
+
+  rm -rf "${pkgdir}/usr/include"
+}


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 19:38:56
  Author: felixonmars
Revision: 435136

upgpkg: lib32-libgpg-error 1.35-1

Modified:
  lib32-libgpg-error/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 19:38:26 UTC (rev 435135)
+++ PKGBUILD2019-02-21 19:38:56 UTC (rev 435136)
@@ -2,7 +2,7 @@
 
 _pkgbasename=libgpg-error
 pkgname=lib32-$_pkgbasename
-pkgver=1.34
+pkgver=1.35
 pkgrel=1
 pkgdesc="Support library for libgcrypt (32-bit)"
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=('lib32-glibc' $_pkgbasename)
 
source=(ftp://ftp.gnupg.org/gcrypt/libgpg-error/${_pkgbasename}-${pkgver}.tar.bz2{,.sig})
   
#ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/libgpg-error/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('0a3e67e428a2e051a94cabd9fb140bf49fdc13d0'
+sha1sums=('1ffc6aaac4a4eecf16132c1b4eb500c1765d7190'
   'SKIP')
 validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'  # Werner Koch
   '031EC2536E580D8EA286A9F22071B08A33BD3F06') # NIIBE Yutaka 
(GnuPG Release Key) 


[arch-commits] Commit in (haskell-jwt)

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 19:34:40
  Author: felixonmars
Revision: 435133

remove haskell-jwt

Deleted:
  haskell-jwt/


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 19:33:16
  Author: felixonmars
Revision: 435132

archrelease: copy trunk to community-x86_64

Added:
  dart/repos/community-x86_64/PKGBUILD
(from rev 435131, dart/trunk/PKGBUILD)
Deleted:
  dart/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 19:32:59 UTC (rev 435131)
+++ PKGBUILD2019-02-21 19:33:16 UTC (rev 435132)
@@ -1,61 +0,0 @@
-# Maintainer: Alexander Rødseth 
-# Maintainer: Felix Yan 
-# Contributor: T. Jameson Little 
-# Contributor: Usagi Ito 
-# Contributor: siasia 
-# Contributor: Julien Nicoulaud 
-
-pkgname=dart
-pkgver=2.1.0
-pkgrel=1
-pkgdesc='The dart programming language SDK'
-arch=('x86_64')
-url='http://www.dartlang.org/'
-license=('BSD')
-makedepends=('setconf')
-options=('!strip')
-source_x86_64+=("$pkgname-$pkgver-64.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip;)
-sha512sums_x86_64=('929a7c6a7a5046b4135a40202170e20dd0285f3cc8cacd22881e766def21a8fcd2ffaedb305ff90789461a38aa21a4a6858a407295257ae7027d0c47a78cb16f')
-
-prepare() {
-  # Fix permissions
-  find "$pkgname-sdk" -type d -exec chmod 0755 '{}' + \
--or -type f -exec chmod 0644 '{}' +
-  chmod +x "$pkgname-sdk/bin/"*
-
-  cd "$pkgname-sdk/bin"
-
-  # Configure paths
-  for _f in dart2js dartanalyzer pub dartfmt dartdevc dartdevk dartdoc; do
-setconf $_f BIN_DIR "/opt/$pkgname-sdk/bin"
-setconf $_f PROG_NAME "/opt/$pkgname-sdk/bin/$_f"
-setconf $_f SDK_DIR "/opt/$pkgname-sdk/"
-  done
-
-  # Extract license (AUTHORS and LICENSE files are missing)
-  head -n5 "../include/dart_api.h" > ../../LICENSE
-}
-
-package() {
-  # Create directories
-  install -d "$pkgdir"{"/opt/$pkgname-sdk",/usr/{bin,"share/doc/$pkgname-sdk"}}
-
-  # Package the files
-  cp -a "$pkgname-sdk/"* "$pkgdir/opt/$pkgname-sdk/"
-
-  # Set up symbolic links for the executables
-  for f in dart dart2js dartanalyzer pub dartfmt dartdevc dartdevk dartdoc; do
-ln -s "/opt/$pkgname-sdk/bin/$f" "$pkgdir/usr/bin/$f"
-  done
-
-  # Package samples and documentation
-  for f in samples about.html about_files; do
-echo mv "$pkgdir/opt/$pkgname-sdk/$f" "$pkgdir/usr/share/doc/$pkgname/"
-  done
-
-  # BSD License
-  install -Dm644 LICENSE \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dart/repos/community-x86_64/PKGBUILD (from rev 435131, 
dart/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 19:33:16 UTC (rev 435132)
@@ -0,0 +1,61 @@
+# Maintainer: Alexander Rødseth 
+# Maintainer: Felix Yan 
+# Contributor: T. Jameson Little 
+# Contributor: Usagi Ito 
+# Contributor: siasia 
+# Contributor: Julien Nicoulaud 
+
+pkgname=dart
+pkgver=2.1.1
+pkgrel=1
+pkgdesc='The dart programming language SDK'
+arch=('x86_64')
+url='http://www.dartlang.org/'
+license=('BSD')
+makedepends=('setconf')
+options=('!strip')
+source_x86_64+=("$pkgname-$pkgver-64.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip;)
+sha512sums_x86_64=('69fc1b660fb49b29928ea4420b8777c07e683fcca21e4aefedfd46da9cc24e0b6a560b25d1f7ecda04c0cc11723c96aa6ed699e8eb22275a2ae0ef47a7465ca8')
+
+prepare() {
+  # Fix permissions
+  find "$pkgname-sdk" -type d -exec chmod 0755 '{}' + \
+-or -type f -exec chmod 0644 '{}' +
+  chmod +x "$pkgname-sdk/bin/"*
+
+  cd "$pkgname-sdk/bin"
+
+  # Configure paths
+  for _f in dart2js dartanalyzer pub dartfmt dartdevc dartdoc; do
+setconf $_f BIN_DIR "/opt/$pkgname-sdk/bin"
+setconf $_f PROG_NAME "/opt/$pkgname-sdk/bin/$_f"
+setconf $_f SDK_DIR "/opt/$pkgname-sdk/"
+  done
+
+  # Extract license (AUTHORS and LICENSE files are missing)
+  head -n5 "../include/dart_api.h" > ../../LICENSE
+}
+
+package() {
+  # Create directories
+  install -d "$pkgdir"{"/opt/$pkgname-sdk",/usr/{bin,"share/doc/$pkgname-sdk"}}
+
+  # Package the files
+  cp -a "$pkgname-sdk/"* "$pkgdir/opt/$pkgname-sdk/"
+
+  # Set up symbolic links for the executables
+  for f in dart dart2js dartanalyzer pub dartfmt dartdevc dartdoc; do
+ln -s "/opt/$pkgname-sdk/bin/$f" "$pkgdir/usr/bin/$f"
+  done
+
+  # Package samples and documentation
+  for f in samples about.html about_files; do
+echo mv "$pkgdir/opt/$pkgname-sdk/$f" "$pkgdir/usr/share/doc/$pkgname/"
+  done
+
+  # BSD License
+  install -Dm644 LICENSE \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 19:32:59
  Author: felixonmars
Revision: 435131

upgpkg: dart 2.1.1-1

Modified:
  dart/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 19:31:15 UTC (rev 435130)
+++ PKGBUILD2019-02-21 19:32:59 UTC (rev 435131)
@@ -6,7 +6,7 @@
 # Contributor: Julien Nicoulaud 
 
 pkgname=dart
-pkgver=2.1.0
+pkgver=2.1.1
 pkgrel=1
 pkgdesc='The dart programming language SDK'
 arch=('x86_64')
@@ -15,7 +15,7 @@
 makedepends=('setconf')
 options=('!strip')
 
source_x86_64+=("$pkgname-$pkgver-64.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip;)
-sha512sums_x86_64=('929a7c6a7a5046b4135a40202170e20dd0285f3cc8cacd22881e766def21a8fcd2ffaedb305ff90789461a38aa21a4a6858a407295257ae7027d0c47a78cb16f')
+sha512sums_x86_64=('69fc1b660fb49b29928ea4420b8777c07e683fcca21e4aefedfd46da9cc24e0b6a560b25d1f7ecda04c0cc11723c96aa6ed699e8eb22275a2ae0ef47a7465ca8')
 
 prepare() {
   # Fix permissions
@@ -26,7 +26,7 @@
   cd "$pkgname-sdk/bin"
 
   # Configure paths
-  for _f in dart2js dartanalyzer pub dartfmt dartdevc dartdevk dartdoc; do
+  for _f in dart2js dartanalyzer pub dartfmt dartdevc dartdoc; do
 setconf $_f BIN_DIR "/opt/$pkgname-sdk/bin"
 setconf $_f PROG_NAME "/opt/$pkgname-sdk/bin/$_f"
 setconf $_f SDK_DIR "/opt/$pkgname-sdk/"
@@ -44,7 +44,7 @@
   cp -a "$pkgname-sdk/"* "$pkgdir/opt/$pkgname-sdk/"
 
   # Set up symbolic links for the executables
-  for f in dart dart2js dartanalyzer pub dartfmt dartdevc dartdevk dartdoc; do
+  for f in dart dart2js dartanalyzer pub dartfmt dartdevc dartdoc; do
 ln -s "/opt/$pkgname-sdk/bin/$f" "$pkgdir/usr/bin/$f"
   done
 


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 19:31:15
  Author: felixonmars
Revision: 435130

archrelease: copy trunk to community-x86_64

Added:
  zbar/repos/community-x86_64/PKGBUILD
(from rev 435125, zbar/trunk/PKGBUILD)
  zbar/repos/community-x86_64/imagemagick7.patch
(from rev 435125, zbar/trunk/imagemagick7.patch)
Deleted:
  zbar/repos/community-x86_64/PKGBUILD
  zbar/repos/community-x86_64/imagemagick7.patch

+
 PKGBUILD   |  212 ++-
 imagemagick7.patch |   44 +-
 2 files changed, 132 insertions(+), 124 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 19:31:12 UTC (rev 435129)
+++ PKGBUILD2019-02-21 19:31:15 UTC (rev 435130)
@@ -1,102 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Marti Raudsepp 
-# Contributor: Radu Andries 
-# Contributor: Andy Weidenbaum 
-
-pkgbase=zbar
-pkgname=(zbar zbar-gtk zbar-qt python2-zbar)
-pkgver=0.21
-pkgrel=1
-pkgdesc="Application and library for reading bar codes from various sources"
-arch=('x86_64')
-url="https://github.com/mchehab/zbar;
-license=('LGPL')
-makedepends=('libmagick' 'libxv' 'v4l-utils' 'qt5-x11extras' 'pygtk' 'python' 
'xmlto' 'docbook-xsl')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/mchehab/zbar/archive/$pkgver.tar.gz;
-imagemagick7.patch)
-sha512sums=('148fbcdc3fc01c54087f92f746c92bd21ec37a7e0c27b0f48862f0ff0490d9a4b0954cf9cbc10a536d3bf559e13c8cb2670c1c9e6832ca70841107f3c5bb0210'
-
'43987414a6432b9e7da329f5a416f389d29bfc3417a6edc65a46b2677ade7dbb8c150df90c8b42464a6cb17c4732509fb8d3672387dafe9fd17a5def78a5ef63')
-
-prepare() {
-  cd zbar-$pkgver
-  patch -p1 -i ../imagemagick7.patch
-  autoreconf -vfi
-}
-
-build() {
-  cd zbar-$pkgver
-  PKG_CONFIG_PATH="/usr/lib/imagemagick6/pkgconfig" \
-  PYTHON="/usr/bin/python2" \
-  ./configure --prefix=/usr --with-qt --with-gtk CFLAGS="$CFLAGS -DNDEBUG"
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package_zbar() {
-  depends=('libmagick' 'libsm' 'libxv' 'v4l-utils')
-
-  cd zbar-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  rm -r "$pkgdir"/usr/lib/libzbar{gtk,qt}.so* \
-"$pkgdir"/usr/lib/*.a \
-"$pkgdir"/usr/include/zbar/zbargtk.h \
-"$pkgdir"/usr/include/zbar/QZBar*.h \
-"$pkgdir"/usr/lib/pkgconfig/zbar-{gtk,qt}.pc \
-"$pkgdir"/usr/lib/python2.7 \
-"$pkgdir"/usr/bin/zbarcam-*
-}
-
-package_zbar-gtk() {
-  depends=('zbar' 'gtk2')
-
-  cd zbar-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  mv "$pkgdir"/usr/include/zbar/zbargtk.h ./
-
-  rm -r "$pkgdir"/usr/lib/libzbar{,qt}.so* \
-"$pkgdir"/usr/lib/*.a \
-"$pkgdir"/usr/include/zbar/*.h \
-"$pkgdir"/usr/include/zbar.h \
-"$pkgdir"/usr/lib/pkgconfig/zbar{,-qt}.pc \
-"$pkgdir"/usr/lib/python2.7 \
-"$pkgdir"/usr/share \
-"$pkgdir"/usr/bin/{zbarimg,zbarcam,zbarcam-qt}
-
-  mv ./zbargtk.h "$pkgdir"/usr/include/zbar/
-}
-
-package_zbar-qt() {
-  depends=('zbar' 'qt5-x11extras')
-
-  cd zbar-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  mv "$pkgdir"/usr/include/zbar/QZBar*.h ./
-
-  rm -r "$pkgdir"/usr/lib/libzbar{,gtk}.so* \
-"$pkgdir"/usr/lib/*.a \
-"$pkgdir"/usr/include/zbar/*.h \
-"$pkgdir"/usr/include/zbar.h \
-"$pkgdir"/usr/lib/pkgconfig/zbar{,-gtk}.pc \
-"$pkgdir"/usr/lib/python2.7 \
-"$pkgdir"/usr/share \
-"$pkgdir"/usr/bin/{zbarimg,zbarcam,zbarcam-gtk}
-
-  mv ./QZBar*.h "$pkgdir"/usr/include/zbar/
-}
-
-package_python2-zbar() {
-  depends=('zbar-gtk' 'pygtk')
-
-  cd zbar-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  rm -r "$pkgdir"/usr/lib/*.so* \
-"$pkgdir"/usr/include \
-"$pkgdir"/usr/lib/pkgconfig \
-"$pkgdir"/usr/{bin,share}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: zbar/repos/community-x86_64/PKGBUILD (from rev 435125, 
zbar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 19:31:15 UTC (rev 435130)
@@ -0,0 +1,110 @@
+# Maintainer: Felix Yan 
+# Contributor: Marti Raudsepp 
+# Contributor: Radu Andries 
+# Contributor: Andy Weidenbaum 
+
+pkgbase=zbar
+pkgname=(zbar zbar-gtk zbar-qt python2-zbar)
+pkgver=0.21
+pkgrel=2
+pkgdesc="Application and library for reading bar codes from various sources"
+arch=('x86_64')
+url="https://github.com/mchehab/zbar;
+license=('LGPL')
+makedepends=('libmagick' 'libxv' 'v4l-utils' 'qt5-x11extras' 'pygtk' 'python' 
'xmlto' 'docbook-xsl')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/mchehab/zbar/archive/$pkgver.tar.gz;
+imagemagick7.patch)
+sha512sums=('148fbcdc3fc01c54087f92f746c92bd21ec37a7e0c27b0f48862f0ff0490d9a4b0954cf9cbc10a536d3bf559e13c8cb2670c1c9e6832ca70841107f3c5bb0210'
+

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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 19:30:57
  Author: felixonmars
Revision: 435125

upgpkg: zbar 0.21-2

- fix file confliction (FS#61815)
- fix dbus file location

Modified:
  zbar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 19:27:11 UTC (rev 435124)
+++ PKGBUILD2019-02-21 19:30:57 UTC (rev 435125)
@@ -6,7 +6,7 @@
 pkgbase=zbar
 pkgname=(zbar zbar-gtk zbar-qt python2-zbar)
 pkgver=0.21
-pkgrel=1
+pkgrel=2
 pkgdesc="Application and library for reading bar codes from various sources"
 arch=('x86_64')
 url="https://github.com/mchehab/zbar;
@@ -33,11 +33,14 @@
 }
 
 package_zbar() {
-  depends=('libmagick' 'libsm' 'libxv' 'v4l-utils')
+  depends=('dbus' 'libmagick' 'libsm' 'libxv' 'v4l-utils')
 
   cd zbar-$pkgver
   make DESTDIR="$pkgdir" install
 
+  install -dm755 "$pkgdir"/usr/share/dbus-1/system.d
+  mv "$pkgdir"{/etc,/usr/share}/dbus-1/system.d/org.linuxtv.Zbar.conf
+
   rm -r "$pkgdir"/usr/lib/libzbar{gtk,qt}.so* \
 "$pkgdir"/usr/lib/*.a \
 "$pkgdir"/usr/include/zbar/zbargtk.h \
@@ -45,6 +48,8 @@
 "$pkgdir"/usr/lib/pkgconfig/zbar-{gtk,qt}.pc \
 "$pkgdir"/usr/lib/python2.7 \
 "$pkgdir"/usr/bin/zbarcam-*
+
+  rmdir "$pkgdir"/etc{/dbus-1/system.d,/dbus-1,}
 }
 
 package_zbar-gtk() {
@@ -62,7 +67,8 @@
 "$pkgdir"/usr/lib/pkgconfig/zbar{,-qt}.pc \
 "$pkgdir"/usr/lib/python2.7 \
 "$pkgdir"/usr/share \
-"$pkgdir"/usr/bin/{zbarimg,zbarcam,zbarcam-qt}
+"$pkgdir"/usr/bin/{zbarimg,zbarcam,zbarcam-qt} \
+"$pkgdir"/etc
 
   mv ./zbargtk.h "$pkgdir"/usr/include/zbar/
 }
@@ -82,7 +88,8 @@
 "$pkgdir"/usr/lib/pkgconfig/zbar{,-gtk}.pc \
 "$pkgdir"/usr/lib/python2.7 \
 "$pkgdir"/usr/share \
-"$pkgdir"/usr/bin/{zbarimg,zbarcam,zbarcam-gtk}
+"$pkgdir"/usr/bin/{zbarimg,zbarcam,zbarcam-gtk} \
+"$pkgdir"/etc
 
   mv ./QZBar*.h "$pkgdir"/usr/include/zbar/
 }
@@ -96,7 +103,8 @@
   rm -r "$pkgdir"/usr/lib/*.so* \
 "$pkgdir"/usr/include \
 "$pkgdir"/usr/lib/pkgconfig \
-"$pkgdir"/usr/{bin,share}
+"$pkgdir"/usr/{bin,share} \
+"$pkgdir"/etc
 }
 
 # vim:set ts=2 sw=2 et:


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

2019-02-21 Thread Andreas Radke via arch-commits
Date: Thursday, February 21, 2019 @ 19:29:26
  Author: andyrtr
Revision: 346642

archrelease: copy trunk to testing-x86_64

Added:
  xf86-video-intel/repos/testing-x86_64/
  
xf86-video-intel/repos/testing-x86_64/0001-SNA-fix-PRIME-output-support-since-xserver-1.20.patch
(from rev 346641, 
xf86-video-intel/trunk/0001-SNA-fix-PRIME-output-support-since-xserver-1.20.patch)
  xf86-video-intel/repos/testing-x86_64/PKGBUILD
(from rev 346641, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/testing-x86_64/xf86-video-intel.install
(from rev 346641, xf86-video-intel/trunk/xf86-video-intel.install)

+
 0001-SNA-fix-PRIME-output-support-since-xserver-1.20.patch |   93 +++
 PKGBUILD   |   88 ++
 xf86-video-intel.install   |   21 ++
 3 files changed, 202 insertions(+)

Copied: 
xf86-video-intel/repos/testing-x86_64/0001-SNA-fix-PRIME-output-support-since-xserver-1.20.patch
 (from rev 346641, 
xf86-video-intel/trunk/0001-SNA-fix-PRIME-output-support-since-xserver-1.20.patch)
===
--- testing-x86_64/0001-SNA-fix-PRIME-output-support-since-xserver-1.20.patch   
(rev 0)
+++ testing-x86_64/0001-SNA-fix-PRIME-output-support-since-xserver-1.20.patch   
2019-02-21 19:29:26 UTC (rev 346642)
@@ -0,0 +1,93 @@
+From e85424325911626556fbe5a313c698a5da701163 Mon Sep 17 00:00:00 2001
+From: Peter Wu 
+Date: Mon, 13 Aug 2018 22:59:50 +0200
+Subject: [PATCH xf86-video-intel] SNA: fix PRIME output support since xserver
+ 1.20
+
+Since xorg-server 1.20, an external monitor would remain blank when used
+in a PRIME output slave setup. Only a cursor was visible. The cause is
+"Make PixmapDirtyUpdateRec::src a DrawablePtr" in xserver, the "src"
+pointer might point to the root window (created by the server) instead
+of a pixmap (as created by xf86-video-intel). Use get_drawable_pixmap to
+handle both cases.
+
+When built with -fsanitize=address, the following test will trigger a
+heap-buffer-overflow error due to to_sna_from_pixmap receiving a window
+instead of a pixmap.
+
+Test on a hybrid graphics laptop (Intel + modesetting/nouveau):
+
+xrandr --setprovideroutputsource modesetting Intel
+xrandr --output DP-1-1 --mode 2560x1440  # should not crash
+glxgears  # should display gears on both screens
+
+Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=100086
+Signed-off-by: Peter Wu 
+---
+Tested with xserver 1.20.1 with ASAN enabled. Survives multiple
+resolution changes, works with a Plasma desktop session, it seems
+stable. Something like this patch is required to make multi-monitor
+setups usable in a hybrid graphics setting with Xorg 1.20.
+---
+ src/sna/sna_accel.c | 18 ++
+ 1 file changed, 18 insertions(+)
+
+diff --git a/src/sna/sna_accel.c b/src/sna/sna_accel.c
+index 2f669bcf..80b116a3 100644
+--- a/src/sna/sna_accel.c
 b/src/sna/sna_accel.c
+@@ -17510,7 +17510,11 @@ static bool has_offload_slaves(struct sna *sna)
+   PixmapDirtyUpdatePtr dirty;
+ 
+   xorg_list_for_each_entry(dirty, >pixmap_dirty_list, ent) {
++#ifdef HAS_DIRTYTRACKING_DRAWABLE_SRC
++  assert(dirty->src == >front->drawable);
++#else
+   assert(dirty->src == sna->front);
++#endif
+   if (RegionNotEmpty(DamageRegion(dirty->damage)))
+   return true;
+   }
+@@ -17671,7 +17675,11 @@ static void sna_accel_post_damage(struct sna *sna)
+   if (RegionNil(damage))
+   continue;
+ 
++#ifdef HAS_DIRTYTRACKING_DRAWABLE_SRC
++  src = get_drawable_pixmap(dirty->src);
++#else
+   src = dirty->src;
++#endif
+   dst = dirty->slave_dst->master_pixmap;
+ 
+   region.extents.x1 = dirty->x;
+@@ -17922,9 +17930,15 @@ migrate_dirty_tracking(PixmapPtr old_front, PixmapPtr 
new_front)
+   PixmapDirtyUpdatePtr dirty, safe;
+ 
+   xorg_list_for_each_entry_safe(dirty, safe, >pixmap_dirty_list, 
ent) {
++#ifdef HAS_DIRTYTRACKING_DRAWABLE_SRC
++  assert(dirty->src == _front->drawable);
++  if (dirty->src != _front->drawable)
++  continue;
++#else
+   assert(dirty->src == old_front);
+   if (dirty->src != old_front)
+   continue;
++#endif
+ 
+   DamageUnregister(>src->drawable, dirty->damage);
+   DamageDestroy(dirty->damage);
+@@ -17939,7 +17953,11 @@ migrate_dirty_tracking(PixmapPtr old_front, PixmapPtr 
new_front)
+   }
+ 
+   DamageRegister(_front->drawable, dirty->damage);
++#ifdef HAS_DIRTYTRACKING_DRAWABLE_SRC
++  dirty->src = _front->drawable;
++#else
+   dirty->src = new_front;
++#endif
+   }
+ #endif
+ }
+-- 
+2.18.0
+

Copied: 

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

2019-02-21 Thread Andreas Radke via arch-commits
Date: Thursday, February 21, 2019 @ 19:29:14
  Author: andyrtr
Revision: 346641

upgpkg: xf86-video-intel 1:2.99.917+860+g3a2dec17-1

update to latest git commit

Modified:
  xf86-video-intel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 19:19:58 UTC (rev 346640)
+++ PKGBUILD2019-02-21 19:29:14 UTC (rev 346641)
@@ -2,8 +2,8 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xf86-video-intel
-_commit=33ee0c3b21ea279e08d0863fcb2e874f0974b00e # master
-pkgver=2.99.917+859+g33ee0c3b
+_commit=3a2dec17459dea56331430c8481646d538278518 # master
+pkgver=2.99.917+860+g3a2dec17
 pkgrel=1
 epoch=1
 arch=(x86_64)


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 19:24:57
  Author: felixonmars
Revision: 435120

upgpkg: hedgewars 0.9.25-9

rebuild with sandi 0.5

Modified:
  hedgewars/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 19:24:52 UTC (rev 435119)
+++ PKGBUILD2019-02-21 19:24:57 UTC (rev 435120)
@@ -4,7 +4,7 @@
 
 pkgname=hedgewars
 pkgver=0.9.25
-pkgrel=8
+pkgrel=9
 pkgdesc="Turn-based strategy artillery game similiar to Worms"
 arch=('x86_64')
 url="https://hedgewars.org;


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 19:25:18
  Author: felixonmars
Revision: 435122

archrelease: copy trunk to community-staging-x86_64

Added:
  hedgewars/repos/community-staging-x86_64/
  hedgewars/repos/community-staging-x86_64/PKGBUILD
(from rev 435121, hedgewars/trunk/PKGBUILD)

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

Copied: hedgewars/repos/community-staging-x86_64/PKGBUILD (from rev 435121, 
hedgewars/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-21 19:25:18 UTC (rev 435122)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+# Contributor: Sergej Pupykin 
+# Contributor: Tinxy 
+
+pkgname=hedgewars
+pkgver=0.9.25
+pkgrel=9
+pkgdesc="Turn-based strategy artillery game similiar to Worms"
+arch=('x86_64')
+url="https://hedgewars.org;
+license=('GPL' 'custom')
+depends=('qt5-base' 'sdl2' 'sdl2_mixer' 'sdl2_image' 'sdl2_net' 'sdl2_ttf' 
'lua51' 'ffmpeg' 'glut'
+ 'physfs' 'ghc-libs' 'haskell-entropy' 'haskell-sha' 'haskell-random' 
'haskell-regex-tdfa'
+ 'haskell-sandi' 'haskell-hslogger' 'haskell-utf8-string' 
'haskell-vector')
+makedepends=('fpc' 'cmake' 'qt5-tools' 'ghc' 'haskell-network' 
'haskell-bytestring-show'
+ 'haskell-zlib' 'haskell-base-prelude' 'imagemagick' 'mesa')
+source=("https://www.hedgewars.org/download/releases/hedgewars-src-$pkgver.tar.bz2;)
+sha512sums=('956c21a7203586485e885f98fa4eccdc2fd34b50c0f817c1f6f610af1b4f341a5bb32bb8e0ace13f78ce2fb79a48934b89c1b56459a411c07a1809041968')
+
+prepare() {
+  cd hedgewars-src-$pkgver
+  sed -i 's|set(ghc_flags|set(ghc_flags -dynamic|' gameServer/CMakeLists.txt
+}
+
+build() {
+  cd hedgewars-src-$pkgver
+  cmake \
+-DCMAKE_BUILD_TYPE="Release" \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DDATA_INSTALL_DIR=/usr/share/hedgewars \
+-DNOSERVER=0 \
+.
+  make
+
+  # resize icon
+  for _size in 16 32 48 64 128 256; do
+convert +set date:create +set date:modify misc/hedgewars.png -resize 
${_size}x${_size} hedgewars_${_size}.png
+  done
+}
+
+package() {
+  cd hedgewars-src-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -D -m644 Fonts_LICENSE.txt 
"$pkgdir"/usr/share/licenses/${pkgname}/Fonts_LICENSE.txt
+
+  # install icons
+  install -D -m644 misc/hedgewars.png 
"$pkgdir"/usr/share/icons/hicolor/512x512/apps/hedgewars.png
+  for _size in 16 32 48 64 128 256; do
+install -D -m644 hedgewars_${_size}.png 
"$pkgdir"/usr/share/icons/hicolor/${_size}x${_size}/apps/hedgewars.png
+  done
+  rm -rf "$pkgdir"/usr/share/pixmaps
+
+  install -D -m644 share/hedgewars/Data/misc/hedgewars.desktop 
"$pkgdir"/usr/share/applications/hedgewars.desktop
+}


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 19:25:08
  Author: felixonmars
Revision: 435121

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  160 ++---
 1 file changed, 80 insertions(+), 80 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 19:24:57 UTC (rev 435120)
+++ PKGBUILD2019-02-21 19:25:08 UTC (rev 435121)
@@ -1,80 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-hypothesis
-pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=4.7.0
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
- 'python-coverage' 'python2-coverage' '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-django' 'python2-django' 
'python-mock'
-  'python2-mock' 'python-pandas' 'python2-pandas' 
'python-dpcontracts'
-  'python2-dpcontracts' 'python-pytest-xdist' 
'python2-pytest-xdist'
-  'python-lark-parser' 'python2-lark-parser')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('de5916dd1116c9fc8bea8d72efd04ceec9b649470c689ebcfc847fe5eaa6dd5696c21e097d825e6133a246dedf1ec5b58f67c840019df6e56c06957edc3eec1a')
-
-prepare() {
-  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
-
-  cp -a hypothesis-$pkgver{,-py2}
-
-  rm -r hypothesis-$pkgver/hypothesis-python/tests/py2
-  rm -r hypothesis-$pkgver-py2/hypothesis-python/tests/py3
-
-  export LC_CTYPE=en_US.UTF-8
-}
-
-build() {
-  cd "$srcdir"/hypothesis-$pkgver/hypothesis-python
-  python setup.py build
-
-  cd "$srcdir"/hypothesis-$pkgver-py2/hypothesis-python
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/hypothesis-$pkgver/hypothesis-python
-  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-$pkgver-py2/hypothesis-python
-  mv tests/django ../
-  # https://github.com/python/typing/issues/612
-  python2 setup.py pytest || warning "Tests failed"
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m tests.django.manage test 
tests.django
-}
-
-package_python-hypothesis() {
-  depends=('python-attrs' 'python-coverage')
-  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'
-  'python-lark-parser: for lark module')
-
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-hypothesis() {
-  depends=('python2-attrs' 'python2-coverage' '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'
-  'python2-lark-parser: for lark module')
-
-  cd hypothesis-$pkgver-py2/hypothesis-python
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 435120, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 19:25:08 UTC (rev 435121)
@@ -0,0 +1,80 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=4.7.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' 'python-attrs' 
'python2-attrs'
+ 'python-coverage' 'python2-coverage' '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-django' 'python2-django' 
'python-mock'
+  'python2-mock' 'python-pandas' 'python2-pandas' 
'python-dpcontracts'
+ 

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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 19:24:52
  Author: felixonmars
Revision: 435119

upgpkg: python-hypothesis 4.7.1-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 19:18:00 UTC (rev 435118)
+++ PKGBUILD2019-02-21 19:24:52 UTC (rev 435119)
@@ -2,7 +2,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=4.7.0
+pkgver=4.7.1
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -17,7 +17,7 @@
   'python2-dpcontracts' 'python-pytest-xdist' 
'python2-pytest-xdist'
   'python-lark-parser' 'python2-lark-parser')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('de5916dd1116c9fc8bea8d72efd04ceec9b649470c689ebcfc847fe5eaa6dd5696c21e097d825e6133a246dedf1ec5b58f67c840019df6e56c06957edc3eec1a')
+sha512sums=('dc4f518eeab6fe4b421f03d8726d24cc5dbe3f1200d0785c86c624aae58c711572a8e2c9baf88ddafc270e6bd3b87ebeaa22800f861c50a0523095acb5c356b8')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver


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

2019-02-21 Thread Andreas Radke via arch-commits
Date: Thursday, February 21, 2019 @ 19:19:58
  Author: andyrtr
Revision: 346640

archrelease: copy trunk to extra-x86_64

Added:
  libfontenc/repos/extra-x86_64/PKGBUILD
(from rev 346639, libfontenc/trunk/PKGBUILD)
Deleted:
  libfontenc/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 19:19:51 UTC (rev 346639)
+++ PKGBUILD2019-02-21 19:19:58 UTC (rev 346640)
@@ -1,30 +0,0 @@
-# $Id$
-#Maintainer: Jan de Groot 
-
-pkgname=libfontenc
-pkgver=1.1.3
-pkgrel=2
-pkgdesc="X11 font encoding library"
-arch=('x86_64')
-url="https://xorg.freedesktop.org/;
-license=('custom')
-depends=('zlib')
-makedepends=('pkgconfig' 'xorgproto')
-source=(${url}/releases/individual/lib/${pkgname}-${pkgver}.tar.bz2{,.sig})
-sha256sums=('70588930e6fc9542ff38e0884778fbc6e6febf21adbab92fd8f524fe60aefd21'
-'SKIP')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') #Alan Coopersmith 

-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static \
-  --with-encodingsdir=/usr/share/fonts/encodings  
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: libfontenc/repos/extra-x86_64/PKGBUILD (from rev 346639, 
libfontenc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 19:19:58 UTC (rev 346640)
@@ -0,0 +1,29 @@
+#Maintainer: Jan de Groot 
+
+pkgname=libfontenc
+pkgver=1.1.4
+pkgrel=1
+pkgdesc="X11 font encoding library"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('zlib')
+makedepends=('pkgconfig' 'xorgproto')
+source=(${url}/releases/individual/lib/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha512sums=('76fa851d00113241f15fdd5b5bb7e927b8d8b9a82ce3fcb0678b8c7e32cb5e8d898c4bda1d60dafb7748145049d3240627ac34a2360c64e98a7a912ea7c30582'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') #Alan Coopersmith 

+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --with-encodingsdir=/usr/share/fonts/encodings  
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}


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

2019-02-21 Thread Andreas Radke via arch-commits
Date: Thursday, February 21, 2019 @ 19:19:51
  Author: andyrtr
Revision: 346639

upgpkg: libfontenc 1.1.4-1

upstream update 1.1.4

Modified:
  libfontenc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 19:18:35 UTC (rev 346638)
+++ PKGBUILD2019-02-21 19:19:51 UTC (rev 346639)
@@ -1,8 +1,8 @@
 #Maintainer: Jan de Groot 
 
 pkgname=libfontenc
-pkgver=1.1.3
-pkgrel=2
+pkgver=1.1.4
+pkgrel=1
 pkgdesc="X11 font encoding library"
 arch=('x86_64')
 url="https://xorg.freedesktop.org/;
@@ -10,7 +10,7 @@
 depends=('zlib')
 makedepends=('pkgconfig' 'xorgproto')
 source=(${url}/releases/individual/lib/${pkgname}-${pkgver}.tar.bz2{,.sig})
-sha256sums=('70588930e6fc9542ff38e0884778fbc6e6febf21adbab92fd8f524fe60aefd21'
+sha512sums=('76fa851d00113241f15fdd5b5bb7e927b8d8b9a82ce3fcb0678b8c7e32cb5e8d898c4bda1d60dafb7748145049d3240627ac34a2360c64e98a7a912ea7c30582'
 'SKIP')
 validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') #Alan Coopersmith 

 


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 19:18:00
  Author: felixonmars
Revision: 435118

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2019-02-21 Thread Andreas Radke via arch-commits
Date: Thursday, February 21, 2019 @ 19:18:26
  Author: andyrtr
Revision: 346637

upgpkg: xorg-xvinfo 1.1.4-1

upstream update 1.1.4

Modified:
  xorg-xvinfo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 19:17:07 UTC (rev 346636)
+++ PKGBUILD2019-02-21 19:18:26 UTC (rev 346637)
@@ -1,8 +1,8 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xorg-xvinfo
-pkgver=1.1.3
-pkgrel=2
+pkgver=1.1.4
+pkgrel=1
 pkgdesc="Prints out the capabilities of any video adaptors associated with the 
display that are accessible through the X-Video extension"
 arch=('x86_64')
 url="https://xorg.freedesktop.org/;
@@ -11,7 +11,7 @@
 makedepends=('xorg-util-macros')
 groups=('xorg-apps' 'xorg')
 
source=(https://xorg.freedesktop.org/archive/individual/app/xvinfo-${pkgver}.tar.bz2{,.sig})
-sha512sums=('df8356898390d2aec4fbd15cee1627bb86b57ff8af41a527d4f6f6703a81f399a3098da342b94af6d4cf4a817d9fda1946a206bfbe3995e87ceb9910bb8b51bc'
+sha512sums=('85e1f936c5c826f0fdde3670bd77d5cde8641c6e8e7849e42142e91b5aa01d7e0e60d2b064eb6fef4f5666321813ca2dc9f9656756ccbe6dcda37b119ee8a63e'
 'SKIP')
 validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') #Alan Coopersmith 

 


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

2019-02-21 Thread Andreas Radke via arch-commits
Date: Thursday, February 21, 2019 @ 19:18:35
  Author: andyrtr
Revision: 346638

archrelease: copy trunk to extra-x86_64

Added:
  xorg-xvinfo/repos/extra-x86_64/PKGBUILD
(from rev 346637, xorg-xvinfo/trunk/PKGBUILD)
Deleted:
  xorg-xvinfo/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 19:18:26 UTC (rev 346637)
+++ PKGBUILD2019-02-21 19:18:35 UTC (rev 346638)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xorg-xvinfo
-pkgver=1.1.3
-pkgrel=2
-pkgdesc="Prints out the capabilities of any video adaptors associated with the 
display that are accessible through the X-Video extension"
-arch=('x86_64')
-url="https://xorg.freedesktop.org/;
-license=('custom')
-depends=('libx11' 'libxv')
-makedepends=('xorg-util-macros')
-groups=('xorg-apps' 'xorg')
-source=(https://xorg.freedesktop.org/archive/individual/app/xvinfo-${pkgver}.tar.bz2{,.sig})
-sha512sums=('df8356898390d2aec4fbd15cee1627bb86b57ff8af41a527d4f6f6703a81f399a3098da342b94af6d4cf4a817d9fda1946a206bfbe3995e87ceb9910bb8b51bc'
-'SKIP')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') #Alan Coopersmith 

-
-build() {
-  cd xvinfo-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd xvinfo-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: xorg-xvinfo/repos/extra-x86_64/PKGBUILD (from rev 346637, 
xorg-xvinfo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 19:18:35 UTC (rev 346638)
@@ -0,0 +1,28 @@
+# Maintainer: Jan de Groot 
+
+pkgname=xorg-xvinfo
+pkgver=1.1.4
+pkgrel=1
+pkgdesc="Prints out the capabilities of any video adaptors associated with the 
display that are accessible through the X-Video extension"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libx11' 'libxv')
+makedepends=('xorg-util-macros')
+groups=('xorg-apps' 'xorg')
+source=(https://xorg.freedesktop.org/archive/individual/app/xvinfo-${pkgver}.tar.bz2{,.sig})
+sha512sums=('85e1f936c5c826f0fdde3670bd77d5cde8641c6e8e7849e42142e91b5aa01d7e0e60d2b064eb6fef4f5666321813ca2dc9f9656756ccbe6dcda37b119ee8a63e'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') #Alan Coopersmith 

+
+build() {
+  cd xvinfo-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd xvinfo-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 19:17:38
  Author: felixonmars
Revision: 435117

upgpkg: git-annex 7.20190219-4

rebuild with sandi 0.5

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 19:11:09 UTC (rev 435116)
+++ PKGBUILD2019-02-21 19:17:38 UTC (rev 435117)
@@ -3,7 +3,7 @@
 
 pkgname=git-annex
 pkgver=7.20190219
-pkgrel=3
+pkgrel=4
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/;
 license=("AGPL3")


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

2019-02-21 Thread Andreas Radke via arch-commits
Date: Thursday, February 21, 2019 @ 19:17:07
  Author: andyrtr
Revision: 346636

archrelease: copy trunk to extra-x86_64

Added:
  xorg-xrdb/repos/extra-x86_64/PKGBUILD
(from rev 346635, xorg-xrdb/trunk/PKGBUILD)
Deleted:
  xorg-xrdb/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 19:16:59 UTC (rev 346635)
+++ PKGBUILD2019-02-21 19:17:07 UTC (rev 346636)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xorg-xrdb
-pkgver=1.1.1
-pkgrel=1
-pkgdesc="X server resource database utility"
-arch=('x86_64')
-url="https://xorg.freedesktop.org/;
-license=('custom')
-depends=('libx11' 'libxmu')
-makedepends=('xorg-util-macros')
-optdepends=('gcc: for preprocessing'
-'mcpp: a lightweight alternative for preprocessing')
-groups=('xorg-apps' 'xorg')
-source=(https://xorg.freedesktop.org/archive/individual/app/xrdb-${pkgver}.tar.bz2{,.sig})
-sha512sums=('20c342004ef911fc4d3ef4ac3ac15d1c30bb946b8156f3a6916c242e470be0cb63261563462fd1e2e07b1a7cc527b8cacf5f913e31b02196629a95043cf8d13f'
-'SKIP')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith 
"
-
-build() {
-  cd xrdb-${pkgver}
-  # --with-cpp=path   comma-separated list of paths to cpp command for 
xrdb to use at runtime
-  # mcpp is small but can fail, FS#46934
-  ./configure --prefix=/usr --with-cpp=/usr/bin/cpp,/usr/bin/mcpp
-  make
-}
-
-package() {
-  cd xrdb-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: xorg-xrdb/repos/extra-x86_64/PKGBUILD (from rev 346635, 
xorg-xrdb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 19:17:07 UTC (rev 346636)
@@ -0,0 +1,32 @@
+# Maintainer: Jan de Groot 
+
+pkgname=xorg-xrdb
+pkgver=1.2.0
+pkgrel=1
+pkgdesc="X server resource database utility"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libx11' 'libxmu')
+makedepends=('xorg-util-macros')
+optdepends=('gcc: for preprocessing'
+'mcpp: a lightweight alternative for preprocessing')
+groups=('xorg-apps' 'xorg')
+source=(https://xorg.freedesktop.org/archive/individual/app/xrdb-${pkgver}.tar.bz2{,.sig})
+sha512sums=('14e1cdfb2152fb28f1f4641b177ab236648d7e967a95b952bf4cfce8d3e1ef085e85385354e3381aaf644462ea1847f755ab4016ecb4cb4a715b001dd2ef'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith 
"
+
+build() {
+  cd xrdb-${pkgver}
+  # --with-cpp=path   comma-separated list of paths to cpp command for 
xrdb to use at runtime
+  # mcpp is small but can fail, FS#46934
+  ./configure --prefix=/usr --with-cpp=/usr/bin/cpp,/usr/bin/mcpp
+  make
+}
+
+package() {
+  cd xrdb-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}


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

2019-02-21 Thread Andreas Radke via arch-commits
Date: Thursday, February 21, 2019 @ 19:16:59
  Author: andyrtr
Revision: 346635

upgpkg: xorg-xrdb 1.2.0-1

upstream update 1.2.0

Modified:
  xorg-xrdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 19:15:00 UTC (rev 346634)
+++ PKGBUILD2019-02-21 19:16:59 UTC (rev 346635)
@@ -1,7 +1,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xorg-xrdb
-pkgver=1.1.1
+pkgver=1.2.0
 pkgrel=1
 pkgdesc="X server resource database utility"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 'mcpp: a lightweight alternative for preprocessing')
 groups=('xorg-apps' 'xorg')
 
source=(https://xorg.freedesktop.org/archive/individual/app/xrdb-${pkgver}.tar.bz2{,.sig})
-sha512sums=('20c342004ef911fc4d3ef4ac3ac15d1c30bb946b8156f3a6916c242e470be0cb63261563462fd1e2e07b1a7cc527b8cacf5f913e31b02196629a95043cf8d13f'
+sha512sums=('14e1cdfb2152fb28f1f4641b177ab236648d7e967a95b952bf4cfce8d3e1ef085e85385354e3381aaf644462ea1847f755ab4016ecb4cb4a715b001dd2ef'
 'SKIP')
 validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith 
"
 


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

2019-02-21 Thread Andreas Radke via arch-commits
Date: Thursday, February 21, 2019 @ 19:15:00
  Author: andyrtr
Revision: 346634

archrelease: copy trunk to extra-x86_64

Added:
  xorg-xmodmap/repos/extra-x86_64/PKGBUILD
(from rev 346633, xorg-xmodmap/trunk/PKGBUILD)
Deleted:
  xorg-xmodmap/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 19:14:52 UTC (rev 346633)
+++ PKGBUILD2019-02-21 19:15:00 UTC (rev 346634)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xorg-xmodmap
-pkgver=1.0.9
-pkgrel=2
-pkgdesc="Utility for modifying keymaps and button mappings"
-arch=('x86_64')
-url="https://xorg.freedesktop.org/;
-license=('custom')
-depends=('libx11')
-makedepends=('xorg-util-macros')
-groups=('xorg-apps' 'xorg')
-source=(https://xorg.freedesktop.org/archive/individual/app/xmodmap-${pkgver}.tar.bz2{,.sig})
-sha512sums=('6e50f2ba072ec171bd3fc34f75b21c63f9834f3c0f1608c857f80a4b2c8a9696b03dde79f8342bf67504b759297bc24a64056a625d295a4f89dd31eb938400ac'
-'SKIP')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

-
-build() {
-  cd xmodmap-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd xmodmap-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: xorg-xmodmap/repos/extra-x86_64/PKGBUILD (from rev 346633, 
xorg-xmodmap/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 19:15:00 UTC (rev 346634)
@@ -0,0 +1,28 @@
+# Maintainer: Jan de Groot 
+
+pkgname=xorg-xmodmap
+pkgver=1.0.10
+pkgrel=1
+pkgdesc="Utility for modifying keymaps and button mappings"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libx11')
+makedepends=('xorg-util-macros')
+groups=('xorg-apps' 'xorg')
+source=(https://xorg.freedesktop.org/archive/individual/app/xmodmap-${pkgver}.tar.bz2{,.sig})
+sha512sums=('324c7dcef843186088f16b3bc47485eb3c9b4331e56ce43b692deb4bb3d4f4f27512480e91a379cceac8383df920dc5e37cd825246b50b6343291cec48134c04'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

+
+build() {
+  cd xmodmap-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd xmodmap-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}


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

2019-02-21 Thread Andreas Radke via arch-commits
Date: Thursday, February 21, 2019 @ 19:14:52
  Author: andyrtr
Revision: 346633

upgpkg: xorg-xmodmap 1.0.10-1

upstream update 1.0.10

Modified:
  xorg-xmodmap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 19:13:29 UTC (rev 346632)
+++ PKGBUILD2019-02-21 19:14:52 UTC (rev 346633)
@@ -1,8 +1,8 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xorg-xmodmap
-pkgver=1.0.9
-pkgrel=2
+pkgver=1.0.10
+pkgrel=1
 pkgdesc="Utility for modifying keymaps and button mappings"
 arch=('x86_64')
 url="https://xorg.freedesktop.org/;
@@ -11,7 +11,7 @@
 makedepends=('xorg-util-macros')
 groups=('xorg-apps' 'xorg')
 
source=(https://xorg.freedesktop.org/archive/individual/app/xmodmap-${pkgver}.tar.bz2{,.sig})
-sha512sums=('6e50f2ba072ec171bd3fc34f75b21c63f9834f3c0f1608c857f80a4b2c8a9696b03dde79f8342bf67504b759297bc24a64056a625d295a4f89dd31eb938400ac'
+sha512sums=('324c7dcef843186088f16b3bc47485eb3c9b4331e56ce43b692deb4bb3d4f4f27512480e91a379cceac8383df920dc5e37cd825246b50b6343291cec48134c04'
 'SKIP')
 validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

 


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

2019-02-21 Thread Andreas Radke via arch-commits
Date: Thursday, February 21, 2019 @ 19:13:29
  Author: andyrtr
Revision: 346632

archrelease: copy trunk to extra-x86_64

Added:
  xorg-xlsatoms/repos/extra-x86_64/PKGBUILD
(from rev 346631, xorg-xlsatoms/trunk/PKGBUILD)
Deleted:
  xorg-xlsatoms/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 19:13:21 UTC (rev 346631)
+++ PKGBUILD2019-02-21 19:13:29 UTC (rev 346632)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xorg-xlsatoms
-pkgver=1.1.2
-pkgrel=2
-pkgdesc="List interned atoms defined on server"
-arch=('x86_64')
-url="https://xorg.freedesktop.org/;
-license=('custom')
-depends=('libxcb')
-makedepends=('xorg-util-macros')
-groups=('xorg-apps' 'xorg')
-source=(https://xorg.freedesktop.org/archive/individual/app/xlsatoms-${pkgver}.tar.bz2{,.sig})
-sha512sums=('f29001de22818792212312f1b9daee1bf7afa2ef2ae945cd8c14bdc1a7bb40064d3878c5efea60458ac0bf515ab1ece16fa90cbd2b0a879a5f07f3aa3e6a0baa'
-'SKIP')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

-
-build() {
-  cd xlsatoms-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd xlsatoms-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: xorg-xlsatoms/repos/extra-x86_64/PKGBUILD (from rev 346631, 
xorg-xlsatoms/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 19:13:29 UTC (rev 346632)
@@ -0,0 +1,28 @@
+# Maintainer: Jan de Groot 
+
+pkgname=xorg-xlsatoms
+pkgver=1.1.3
+pkgrel=1
+pkgdesc="List interned atoms defined on server"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libxcb')
+makedepends=('xorg-util-macros')
+groups=('xorg-apps' 'xorg')
+source=(https://xorg.freedesktop.org/archive/individual/app/xlsatoms-${pkgver}.tar.bz2{,.sig})
+sha512sums=('c267ccfdc5a83e834bfb5c3b144e22642badcadef4eb146eeec2df6fe6f85e9379500ae4219912c70fa2e535036a1a96cf496381f5d814e79af075e03c975f30'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

+
+build() {
+  cd xlsatoms-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd xlsatoms-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}


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

2019-02-21 Thread Andreas Radke via arch-commits
Date: Thursday, February 21, 2019 @ 19:13:21
  Author: andyrtr
Revision: 346631

upgpkg: xorg-xlsatoms 1.1.3-1

upstream update 1.1.3

Modified:
  xorg-xlsatoms/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 19:11:52 UTC (rev 346630)
+++ PKGBUILD2019-02-21 19:13:21 UTC (rev 346631)
@@ -1,8 +1,8 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xorg-xlsatoms
-pkgver=1.1.2
-pkgrel=2
+pkgver=1.1.3
+pkgrel=1
 pkgdesc="List interned atoms defined on server"
 arch=('x86_64')
 url="https://xorg.freedesktop.org/;
@@ -11,7 +11,7 @@
 makedepends=('xorg-util-macros')
 groups=('xorg-apps' 'xorg')
 
source=(https://xorg.freedesktop.org/archive/individual/app/xlsatoms-${pkgver}.tar.bz2{,.sig})
-sha512sums=('f29001de22818792212312f1b9daee1bf7afa2ef2ae945cd8c14bdc1a7bb40064d3878c5efea60458ac0bf515ab1ece16fa90cbd2b0a879a5f07f3aa3e6a0baa'
+sha512sums=('c267ccfdc5a83e834bfb5c3b144e22642badcadef4eb146eeec2df6fe6f85e9379500ae4219912c70fa2e535036a1a96cf496381f5d814e79af075e03c975f30'
 'SKIP')
 validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

 


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

2019-02-21 Thread Andreas Radke via arch-commits
Date: Thursday, February 21, 2019 @ 19:11:52
  Author: andyrtr
Revision: 346630

archrelease: copy trunk to extra-x86_64

Added:
  xorg-xhost/repos/extra-x86_64/PKGBUILD
(from rev 346629, xorg-xhost/trunk/PKGBUILD)
Deleted:
  xorg-xhost/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 19:11:35 UTC (rev 346629)
+++ PKGBUILD2019-02-21 19:11:52 UTC (rev 346630)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xorg-xhost
-pkgver=1.0.7
-pkgrel=2
-pkgdesc="Server access control program for X"
-arch=('x86_64')
-url="https://xorg.freedesktop.org/;
-license=('custom')
-depends=('libx11' 'libxmu')
-makedepends=('xorg-util-macros')
-groups=('xorg-apps' 'xorg')
-source=(https://xorg.freedesktop.org/archive/individual/app/xhost-${pkgver}.tar.bz2{,.sig})
-sha512sums=('670a8c97291565f6c36c94e135f7bd60a572bb42b4fca9d2460823db0d0576187c64f9b876ed60d348029d3f74a732862eea4ce889a6b6b9c97665746a38b1d7'
-'SKIP')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

-
-build() {
-  cd xhost-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd xhost-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: xorg-xhost/repos/extra-x86_64/PKGBUILD (from rev 346629, 
xorg-xhost/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 19:11:52 UTC (rev 346630)
@@ -0,0 +1,28 @@
+# Maintainer: Jan de Groot 
+
+pkgname=xorg-xhost
+pkgver=1.0.8
+pkgrel=1
+pkgdesc="Server access control program for X"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libx11' 'libxmu')
+makedepends=('xorg-util-macros')
+groups=('xorg-apps' 'xorg')
+source=(https://xorg.freedesktop.org/archive/individual/app/xhost-${pkgver}.tar.bz2{,.sig})
+sha512sums=('55581f9bc45a70a73b13fe718ca83c4cb0a6116d26addc0f07659ebeb5bf7d2379e84cab5a1702ae77a298a66f42ae03f41ddc7d5acd61c6f18448e58ad7cb6b'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

+
+build() {
+  cd xhost-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd xhost-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}


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

2019-02-21 Thread Andreas Radke via arch-commits
Date: Thursday, February 21, 2019 @ 19:11:35
  Author: andyrtr
Revision: 346629

upgpkg: xorg-xhost 1.0.8-1

upstream update 1.0.8

Modified:
  xorg-xhost/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 19:08:47 UTC (rev 346628)
+++ PKGBUILD2019-02-21 19:11:35 UTC (rev 346629)
@@ -1,8 +1,8 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xorg-xhost
-pkgver=1.0.7
-pkgrel=2
+pkgver=1.0.8
+pkgrel=1
 pkgdesc="Server access control program for X"
 arch=('x86_64')
 url="https://xorg.freedesktop.org/;
@@ -11,7 +11,7 @@
 makedepends=('xorg-util-macros')
 groups=('xorg-apps' 'xorg')
 
source=(https://xorg.freedesktop.org/archive/individual/app/xhost-${pkgver}.tar.bz2{,.sig})
-sha512sums=('670a8c97291565f6c36c94e135f7bd60a572bb42b4fca9d2460823db0d0576187c64f9b876ed60d348029d3f74a732862eea4ce889a6b6b9c97665746a38b1d7'
+sha512sums=('55581f9bc45a70a73b13fe718ca83c4cb0a6116d26addc0f07659ebeb5bf7d2379e84cab5a1702ae77a298a66f42ae03f41ddc7d5acd61c6f18448e58ad7cb6b'
 'SKIP')
 validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

 


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 19:11:09
  Author: felixonmars
Revision: 435116

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: darcs/repos/community-staging-x86_64/PKGBUILD (from rev 435115, 
darcs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-21 19:11:09 UTC (rev 435116)
@@ -0,0 +1,63 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=darcs
+pkgver=2.14.2
+pkgrel=15
+pkgdesc="A distributed, interactive, smart revision control system"
+url="http://darcs.net;
+license=("GPL2")
+arch=('x86_64')
+depends=('curl' 'ghc-libs' 'haskell-async' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-cryptohash' 'haskell-data-ordlist' 'haskell-fgl' 
'haskell-graphviz'
+ 'haskell-hashable' 'haskell-html' 'haskell-http' 'haskell-knob' 
'haskell-mmap'
+ 'haskell-network' 'haskell-network-uri' 'haskell-old-time'
+ 'haskell-sandi' 'haskell-random' 'haskell-regex-applicative' 
'haskell-regex-compat-tdfa'
+ 'haskell-tar' 'haskell-unix-compat' 'haskell-utf8-string'
+ 'haskell-vector' 'haskell-zip-archive' 'haskell-zlib')
+makedepends=('ghc' 'haskell-cmdargs' 'haskell-findbin' 'haskell-hunit' 
'haskell-quickcheck'
+ 'haskell-shelly' 'haskell-split' 'haskell-test-framework'
+ 'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('0fd3aa052da9d74f31835a12e7bb50beeff7beec8b10c72cafef7e97fbac02ae178a8f52bf55f1d79887e19164633c8a19ddda01ff2ba4aa8795ac071903552b')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -e 's/^ghc /ghc -dynamic /' \
+-e 's/ ghc / ghc -dynamic /' \
+-i tests/*.sh tests/lib
+sed -i 's/< *0.5/<1/' $pkgname.cabal
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcurl -fpkgconfig -f-static -fterminfo -fthreaded -fexecutable \
+-f-rts -foptimize -f-warn-as-error -f-libiconv
+LD_LIBRARY_PATH="$srcdir"/$pkgname-$pkgver/dist/build runhaskell Setup 
build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+chmod 644 "${pkgdir}/usr/share/man/man1/darcs.1"
+
+install -Dm644 contrib/darcs_completion 
"${pkgdir}/usr/share/bash-completion/completions/darcs"
+install -Dm644 contrib/_darcs.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_darcs"
+}


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 19:10:43
  Author: felixonmars
Revision: 435115

upgpkg: darcs 2.14.2-15

rebuild with sandi 0.5

Modified:
  darcs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 19:06:43 UTC (rev 435114)
+++ PKGBUILD2019-02-21 19:10:43 UTC (rev 435115)
@@ -3,7 +3,7 @@
 
 pkgname=darcs
 pkgver=2.14.2
-pkgrel=14
+pkgrel=15
 pkgdesc="A distributed, interactive, smart revision control system"
 url="http://darcs.net;
 license=("GPL2")
@@ -26,6 +26,7 @@
 sed -e 's/^ghc /ghc -dynamic /' \
 -e 's/ ghc / ghc -dynamic /' \
 -i tests/*.sh tests/lib
+sed -i 's/< *0.5/<1/' $pkgname.cabal
 }
 
 build() {


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

2019-02-21 Thread Andreas Radke via arch-commits
Date: Thursday, February 21, 2019 @ 19:08:47
  Author: andyrtr
Revision: 346628

archrelease: copy trunk to extra-x86_64

Added:
  xorg-xclock/repos/extra-x86_64/PKGBUILD
(from rev 346627, xorg-xclock/trunk/PKGBUILD)
Deleted:
  xorg-xclock/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 19:08:37 UTC (rev 346627)
+++ PKGBUILD2019-02-21 19:08:47 UTC (rev 346628)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xorg-xclock
-pkgver=1.0.7
-pkgrel=2
-pkgdesc="X clock"
-arch=(x86_64)
-url="https://xorg.freedesktop.org/;
-license=('custom')
-depends=('libx11' 'libxmu' 'libxaw' 'libxrender' 'libxft' 'libxkbfile')
-makedepends=('xorg-util-macros')
-source=(https://xorg.freedesktop.org/archive/individual/app/xclock-${pkgver}.tar.bz2)
-sha512sums=('56689bdae6c83e9e1da5c4c48cf1136ca8b4f45b177f27bc1deeb24758e2c180035b639e8df72e3ebf32dc301bceb59118309fcce2ffab54e5abe9bfa645e607')
-
-build() {
-  cd "${srcdir}/xclock-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/xclock-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xorg-xclock/repos/extra-x86_64/PKGBUILD (from rev 346627, 
xorg-xclock/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 19:08:47 UTC (rev 346628)
@@ -0,0 +1,28 @@
+# Maintainer: Jan de Groot 
+
+pkgname=xorg-xclock
+pkgver=1.0.8
+pkgrel=1
+pkgdesc="X clock"
+arch=(x86_64)
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('libx11' 'libxmu' 'libxaw' 'libxrender' 'libxft' 'libxkbfile')
+makedepends=('xorg-util-macros')
+source=(https://xorg.freedesktop.org/archive/individual/app/xclock-${pkgver}.tar.bz2{,.sig})
+sha512sums=('1272221ace3657505bae1b22f181e9ecbf1710900c89a860c8ceae47ae31ca5e75b6557c37dc0a881a0a24c9597b9a07f46200926feb1013f1e2e995111a7646'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith 
"
+
+build() {
+  cd "xclock-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "xclock-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2019-02-21 Thread Andreas Radke via arch-commits
Date: Thursday, February 21, 2019 @ 19:08:37
  Author: andyrtr
Revision: 346627

upgpkg: xorg-xclock 1.0.8-1

upstream update 1.0.8

Modified:
  xorg-xclock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 19:01:43 UTC (rev 346626)
+++ PKGBUILD2019-02-21 19:08:37 UTC (rev 346627)
@@ -1,8 +1,8 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xorg-xclock
-pkgver=1.0.7
-pkgrel=2
+pkgver=1.0.8
+pkgrel=1
 pkgdesc="X clock"
 arch=(x86_64)
 url="https://xorg.freedesktop.org/;
@@ -9,17 +9,19 @@
 license=('custom')
 depends=('libx11' 'libxmu' 'libxaw' 'libxrender' 'libxft' 'libxkbfile')
 makedepends=('xorg-util-macros')
-source=(https://xorg.freedesktop.org/archive/individual/app/xclock-${pkgver}.tar.bz2)
-sha512sums=('56689bdae6c83e9e1da5c4c48cf1136ca8b4f45b177f27bc1deeb24758e2c180035b639e8df72e3ebf32dc301bceb59118309fcce2ffab54e5abe9bfa645e607')
+source=(https://xorg.freedesktop.org/archive/individual/app/xclock-${pkgver}.tar.bz2{,.sig})
+sha512sums=('1272221ace3657505bae1b22f181e9ecbf1710900c89a860c8ceae47ae31ca5e75b6557c37dc0a881a0a24c9597b9a07f46200926feb1013f1e2e995111a7646'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith 
"
 
 build() {
-  cd "${srcdir}/xclock-${pkgver}"
+  cd "xclock-${pkgver}"
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd "${srcdir}/xclock-${pkgver}"
+  cd "xclock-${pkgver}"
   make DESTDIR="${pkgdir}" install
   install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
   install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"


[arch-commits] Commit in shadowsocks-v2ray-plugin/repos/community-x86_64 (2 files)

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 19:06:43
  Author: felixonmars
Revision: 435114

archrelease: copy trunk to community-x86_64

Added:
  shadowsocks-v2ray-plugin/repos/community-x86_64/PKGBUILD
(from rev 435113, shadowsocks-v2ray-plugin/trunk/PKGBUILD)
Deleted:
  shadowsocks-v2ray-plugin/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 19:06:27 UTC (rev 435113)
+++ PKGBUILD2019-02-21 19:06:43 UTC (rev 435114)
@@ -1,23 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=shadowsocks-v2ray-plugin
-pkgver=1.0
-pkgrel=1
-pkgdesc='A SIP003 plugin based on v2ray for shadowsocks'
-arch=('x86_64')
-url='https://github.com/shadowsocks/v2ray-plugin'
-license=('GPL')
-depends=('glibc')
-makedepends=('go-pie' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/shadowsocks/v2ray-plugin/archive/v$pkgver.tar.gz;)
-sha512sums=('0202bf7c0624ed323fd90647f2e3042528c3ce7b2b100c2f9bfe9a50042569fdb96ceca178473acc39c52a3dc0ff4c067ee567ddfc537877cbb27593bab43611')
-
-build() {
-  cd v2ray-plugin-$pkgver
-  go build
-}
-
-package() {
-  cd v2ray-plugin-$pkgver
-  install -Dm755 v2ray-plugin "$pkgdir"/usr/bin/v2ray-plugin
-}

Copied: shadowsocks-v2ray-plugin/repos/community-x86_64/PKGBUILD (from rev 
435113, shadowsocks-v2ray-plugin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 19:06:43 UTC (rev 435114)
@@ -0,0 +1,23 @@
+# Maintainer: Felix Yan 
+
+pkgname=shadowsocks-v2ray-plugin
+pkgver=1.1.0
+pkgrel=1
+pkgdesc='A SIP003 plugin based on v2ray for shadowsocks'
+arch=('x86_64')
+url='https://github.com/shadowsocks/v2ray-plugin'
+license=('GPL')
+depends=('glibc')
+makedepends=('go-pie' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/shadowsocks/v2ray-plugin/archive/v$pkgver.tar.gz;)
+sha512sums=('3b6529fed628370f8db2e9f9016a9e31712c8275f347478a3d6578a00929b7f27000bcfa8e3eea7eba0e00c94b79df0d7fb40d26ab86c90016250a1dedd4d9c6')
+
+build() {
+  cd v2ray-plugin-$pkgver
+  go build
+}
+
+package() {
+  cd v2ray-plugin-$pkgver
+  install -Dm755 v2ray-plugin "$pkgdir"/usr/bin/v2ray-plugin
+}


[arch-commits] Commit in shadowsocks-v2ray-plugin/trunk (PKGBUILD)

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 19:06:27
  Author: felixonmars
Revision: 435113

upgpkg: shadowsocks-v2ray-plugin 1.1.0-1

Modified:
  shadowsocks-v2ray-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 19:03:17 UTC (rev 435112)
+++ PKGBUILD2019-02-21 19:06:27 UTC (rev 435113)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=shadowsocks-v2ray-plugin
-pkgver=1.0
+pkgver=1.1.0
 pkgrel=1
 pkgdesc='A SIP003 plugin based on v2ray for shadowsocks'
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('glibc')
 makedepends=('go-pie' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/shadowsocks/v2ray-plugin/archive/v$pkgver.tar.gz;)
-sha512sums=('0202bf7c0624ed323fd90647f2e3042528c3ce7b2b100c2f9bfe9a50042569fdb96ceca178473acc39c52a3dc0ff4c067ee567ddfc537877cbb27593bab43611')
+sha512sums=('3b6529fed628370f8db2e9f9016a9e31712c8275f347478a3d6578a00929b7f27000bcfa8e3eea7eba0e00c94b79df0d7fb40d26ab86c90016250a1dedd4d9c6')
 
 build() {
   cd v2ray-plugin-$pkgver


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 19:03:17
  Author: felixonmars
Revision: 435112

archrelease: copy trunk to community-x86_64

Added:
  v2ray/repos/community-x86_64/PKGBUILD
(from rev 435111, v2ray/trunk/PKGBUILD)
  v2ray/repos/community-x86_64/v2ray.service
(from rev 435111, v2ray/trunk/v2ray.service)
Deleted:
  v2ray/repos/community-x86_64/PKGBUILD
  v2ray/repos/community-x86_64/v2ray.service

---+
 PKGBUILD  |   96 
 v2ray.service |   28 
 2 files changed, 62 insertions(+), 62 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 19:03:00 UTC (rev 435111)
+++ PKGBUILD2019-02-21 19:03:17 UTC (rev 435112)
@@ -1,48 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: pandada8 
-
-pkgname=v2ray
-pkgver=4.16.3
-pkgrel=1
-pkgdesc="A platform for building proxies to bypass network restrictions"
-arch=('x86_64')
-url="https://github.com/v2ray/v2ray-core;
-license=('MIT')
-depends=('glibc')
-makedepends=('go-pie' 'git')
-backup=(etc/v2ray/config.json)
-source=("$pkgname-$pkgver.zip::https://github.com/v2ray/v2ray-core/releases/download/v$pkgver/src_all.zip;
-'v2ray.service')
-sha512sums=('598c0d1ddcbe9b4d5a4623a2a63bc9478d8ef8cf88cd1a7fb00b97eecd22fa4873d747d7a0099148dd06ab6d2cb8e0b945beeb7145fb1b0ecd8b997c1bf5eba4'
-
'37efc20ef71147f4400eba2bf57766462b5803b5952768bd32d5224f35e37c9c5639aaa19e0f3b63b52063dafd0381f40e2bfbb60dace08b055f0b3245cfa2b7')
-
-prepare() {
-  export GOPATH="$srcdir/build"
-  mkdir -p "$GOPATH"/src
-
-  mv *.com *.io *.org "$GOPATH"/src/
-}
-
-build() {
-  go build -o v2ray v2ray.com/core/main
-  go build -o v2ctl v2ray.com/core/infra/control/main
-}
-
-check() {
-  cd "$GOPATH"/src/v2ray.com/core
-  go test -p 1 -tags json -v v2ray.com/core/... || warning "Tests failed"
-}
-
-package() {
-  cd "$GOPATH"/src/v2ray.com/core
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/v2ray/LICENSE
-  install -Dm644 release/config/systemd/v2ray.service 
"$pkgdir"/usr/lib/systemd/system/v2ray.service
-  sed -i -e '/ExecStart/i Environment=V2RAY_LOCATION_ASSET=/etc/v2ray' \
- -e 's|/usr/bin/v2ray/v2ray|/usr/bin/v2ray|' \
- "$pkgdir"/usr/lib/systemd/system/v2ray.service
-  install -Dm644 release/config/geoip.dat release/config/geosite.dat 
release/config/*.json -t "$pkgdir"/etc/v2ray/
-  install -Dm755 "$srcdir"/v2ray -t "$pkgdir"/usr/bin/
-  install -Dm755 "$srcdir"/v2ctl -t "$pkgdir"/usr/bin/
-
-  install -Dm644 "$srcdir"/v2ray.service 
"$pkgdir"/usr/lib/systemd/system/v2ray@.service
-}

Copied: v2ray/repos/community-x86_64/PKGBUILD (from rev 435111, 
v2ray/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 19:03:17 UTC (rev 435112)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: pandada8 
+
+pkgname=v2ray
+pkgver=4.17.0
+pkgrel=1
+pkgdesc="A platform for building proxies to bypass network restrictions"
+arch=('x86_64')
+url="https://github.com/v2ray/v2ray-core;
+license=('MIT')
+depends=('glibc')
+makedepends=('go-pie' 'git')
+backup=(etc/v2ray/config.json)
+source=("$pkgname-$pkgver.zip::https://github.com/v2ray/v2ray-core/releases/download/v$pkgver/src_all.zip;
+'v2ray.service')
+sha512sums=('22407b029d63dda5830db09fb9a58b0af756f3928ea3e5f313bf12c76552bf5ea0162ad703a58d0138489f2aecf9412927a9738287ea388411e341a8fa4ec6df'
+
'37efc20ef71147f4400eba2bf57766462b5803b5952768bd32d5224f35e37c9c5639aaa19e0f3b63b52063dafd0381f40e2bfbb60dace08b055f0b3245cfa2b7')
+
+prepare() {
+  export GOPATH="$srcdir/build"
+  mkdir -p "$GOPATH"/src
+
+  mv *.com *.io *.org "$GOPATH"/src/
+}
+
+build() {
+  go build -o v2ray v2ray.com/core/main
+  go build -o v2ctl v2ray.com/core/infra/control/main
+}
+
+check() {
+  cd "$GOPATH"/src/v2ray.com/core
+  go test -p 1 -tags json -v v2ray.com/core/...
+}
+
+package() {
+  cd "$GOPATH"/src/v2ray.com/core
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/v2ray/LICENSE
+  install -Dm644 release/config/systemd/v2ray.service 
"$pkgdir"/usr/lib/systemd/system/v2ray.service
+  sed -i -e '/ExecStart/i Environment=V2RAY_LOCATION_ASSET=/etc/v2ray' \
+ -e 's|/usr/bin/v2ray/v2ray|/usr/bin/v2ray|' \
+ "$pkgdir"/usr/lib/systemd/system/v2ray.service
+  install -Dm644 release/config/geoip.dat release/config/geosite.dat 
release/config/*.json -t "$pkgdir"/etc/v2ray/
+  install -Dm755 "$srcdir"/v2ray -t "$pkgdir"/usr/bin/
+  install -Dm755 "$srcdir"/v2ctl -t "$pkgdir"/usr/bin/
+
+  install -Dm644 "$srcdir"/v2ray.service 
"$pkgdir"/usr/lib/systemd/system/v2ray@.service
+}

Deleted: v2ray.service
===
--- v2ray.service   2019-02-21 19:03:00 UTC (rev 435111)
+++ v2ray.service   2019-02-21 19:03:17 UTC (rev 435112)
@@ -1,14 +0,0 @@
-[Unit]
-Description=V2Ray 

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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 19:03:00
  Author: felixonmars
Revision: 435111

upgpkg: v2ray 4.17.0-1

Modified:
  v2ray/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 18:57:41 UTC (rev 435110)
+++ PKGBUILD2019-02-21 19:03:00 UTC (rev 435111)
@@ -2,7 +2,7 @@
 # Contributor: pandada8 
 
 pkgname=v2ray
-pkgver=4.16.3
+pkgver=4.17.0
 pkgrel=1
 pkgdesc="A platform for building proxies to bypass network restrictions"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 backup=(etc/v2ray/config.json)
 
source=("$pkgname-$pkgver.zip::https://github.com/v2ray/v2ray-core/releases/download/v$pkgver/src_all.zip;
 'v2ray.service')
-sha512sums=('598c0d1ddcbe9b4d5a4623a2a63bc9478d8ef8cf88cd1a7fb00b97eecd22fa4873d747d7a0099148dd06ab6d2cb8e0b945beeb7145fb1b0ecd8b997c1bf5eba4'
+sha512sums=('22407b029d63dda5830db09fb9a58b0af756f3928ea3e5f313bf12c76552bf5ea0162ad703a58d0138489f2aecf9412927a9738287ea388411e341a8fa4ec6df'
 
'37efc20ef71147f4400eba2bf57766462b5803b5952768bd32d5224f35e37c9c5639aaa19e0f3b63b52063dafd0381f40e2bfbb60dace08b055f0b3245cfa2b7')
 
 prepare() {
@@ -30,7 +30,7 @@
 
 check() {
   cd "$GOPATH"/src/v2ray.com/core
-  go test -p 1 -tags json -v v2ray.com/core/... || warning "Tests failed"
+  go test -p 1 -tags json -v v2ray.com/core/...
 }
 
 package() {


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 19:01:43
  Author: felixonmars
Revision: 346626

archrelease: copy trunk to testing-x86_64

Added:
  libblockdev/repos/testing-x86_64/
  libblockdev/repos/testing-x86_64/PKGBUILD
(from rev 346625, libblockdev/trunk/PKGBUILD)

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

Copied: libblockdev/repos/testing-x86_64/PKGBUILD (from rev 346625, 
libblockdev/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-02-21 19:01:43 UTC (rev 346626)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+
+pkgname=libblockdev
+pkgver=2.21
+pkgrel=1
+pkgdesc="A library for manipulating block devices"
+arch=('x86_64')
+url="https://github.com/rhinstaller/libblockdev;
+license=('LGPL')
+depends=('btrfs-progs' 'dosfstools' 'dmraid' 'gptfdisk' 'libbytesize' 'lvm2' 
'mdadm' 'ndctl'
+ 'parted' 'volume_key' 'xfsprogs' 'kmod' 'libyaml')
+makedepends=('autoconf-archive' 'gobject-introspection' 'systemd' 'python')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/rhinstaller/libblockdev/archive/$pkgver-1.tar.gz;)
+sha512sums=('9991e5b776b4fe62b7f703753630e8ec4769c043047452d63de08d93f823b778179e4568b8b78c3963daf6219422afc9eb82bcc5b07b7f0a422162037b569e41')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver-1
+  ./autogen.sh
+  ./configure --prefix=/usr --sysconfdir=/etc --without-lvm_dbus
+  make
+}
+
+check() {
+  cd "$srcdir"/$pkgname-$pkgver-1
+  make check
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver-1
+  make DESTDIR="$pkgdir" install
+}


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 19:01:14
  Author: felixonmars
Revision: 346625

upgpkg: libblockdev 2.21-1

Modified:
  libblockdev/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 18:04:31 UTC (rev 346624)
+++ PKGBUILD2019-02-21 19:01:14 UTC (rev 346625)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=libblockdev
-pkgver=2.20
+pkgver=2.21
 pkgrel=1
 pkgdesc="A library for manipulating block devices"
 arch=('x86_64')
@@ -9,15 +9,10 @@
 license=('LGPL')
 depends=('btrfs-progs' 'dosfstools' 'dmraid' 'gptfdisk' 'libbytesize' 'lvm2' 
'mdadm' 'ndctl'
  'parted' 'volume_key' 'xfsprogs' 'kmod' 'libyaml')
-makedepends=('gobject-introspection' 'systemd' 'python')
+makedepends=('autoconf-archive' 'gobject-introspection' 'systemd' 'python')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/rhinstaller/libblockdev/archive/$pkgver-1.tar.gz;)
-sha512sums=('4cb6b18d5de63461f35e0b6f6896599aa41da2c995839c2e88661dacdf07522842b612820fb1d83edbde72092cc62295d5411e8607f52c611db7f02aa16c9ab3')
+sha512sums=('9991e5b776b4fe62b7f703753630e8ec4769c043047452d63de08d93f823b778179e4568b8b78c3963daf6219422afc9eb82bcc5b07b7f0a422162037b569e41')
 
-prepare() {
-  # sed -i 's/-ldmraid //' $pkgname-$pkgver-1/src/lib/Makefile.am
-  :
-}
-
 build() {
   cd "$srcdir"/$pkgname-$pkgver-1
   ./autogen.sh


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 18:57:41
  Author: felixonmars
Revision: 435110

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-sandi/repos/community-staging-x86_64/PKGBUILD (from rev 435109, 
haskell-sandi/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-21 18:57:41 UTC (rev 435110)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=sandi
+pkgname=haskell-sandi
+pkgver=0.5
+pkgrel=1
+pkgdesc="Data encoding library"
+url="https://hackage.haskell.org/package/sandi;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-conduit' 'haskell-exceptions')
+makedepends=('ghc' 'haskell-tasty' 'haskell-tasty-hunit' 
'haskell-tasty-quickcheck'
+ 'haskell-tasty-th')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('8abff3496d0d3f082f12416eea3189e06d1663fe78d996159396ab944389b2a816853c0191edced3b176fc506dac60e9ce84347ecaf2c255e5ec0d6b1590c012')
+
+prepare() {
+cd $_hkgname-$pkgver
+echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fwith-conduit
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 18:57:20
  Author: felixonmars
Revision: 435109

upgpkg: haskell-sandi 0.5-1

rebuild with sandi 0.5

Modified:
  haskell-sandi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 15:08:39 UTC (rev 435108)
+++ PKGBUILD2019-02-21 18:57:20 UTC (rev 435109)
@@ -3,8 +3,8 @@
 
 _hkgname=sandi
 pkgname=haskell-sandi
-pkgver=0.4.3
-pkgrel=18
+pkgver=0.5
+pkgrel=1
 pkgdesc="Data encoding library"
 url="https://hackage.haskell.org/package/sandi;
 license=("BSD")
@@ -13,7 +13,7 @@
 makedepends=('ghc' 'haskell-tasty' 'haskell-tasty-hunit' 
'haskell-tasty-quickcheck'
  'haskell-tasty-th')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('76d9288d7dce824d320e545b0540b40b148b8c848c7785fc79514cdfa6815a946229fd70c341443f52a9cf8cdb4f425980a14b33d0c3b02cf6645854e5048269')
+sha512sums=('8abff3496d0d3f082f12416eea3189e06d1663fe78d996159396ab944389b2a816853c0191edced3b176fc506dac60e9ce84347ecaf2c255e5ec0d6b1590c012')
 
 prepare() {
 cd $_hkgname-$pkgver


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

2019-02-21 Thread Gaëtan Bisson via arch-commits
Date: Thursday, February 21, 2019 @ 18:04:31
  Author: bisson
Revision: 346624

archrelease: copy trunk to testing-any

Added:
  iana-etc/repos/testing-any/
  iana-etc/repos/testing-any/LICENSE
(from rev 346623, iana-etc/trunk/LICENSE)
  iana-etc/repos/testing-any/PKGBUILD
(from rev 346623, iana-etc/trunk/PKGBUILD)

--+
 LICENSE  |1 +
 PKGBUILD |   50 ++
 2 files changed, 51 insertions(+)

Copied: iana-etc/repos/testing-any/LICENSE (from rev 346623, 
iana-etc/trunk/LICENSE)
===
--- testing-any/LICENSE (rev 0)
+++ testing-any/LICENSE 2019-02-21 18:04:31 UTC (rev 346624)
@@ -0,0 +1 @@
+The contents of this package are inelligible for copyright protection.

Copied: iana-etc/repos/testing-any/PKGBUILD (from rev 346623, 
iana-etc/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2019-02-21 18:04:31 UTC (rev 346624)
@@ -0,0 +1,50 @@
+# Contributor: Thomas Bächler 
+# Maintainer: Gaetan Bisson 
+
+pkgname=iana-etc
+pkgver=20190219
+pkgrel=1
+pkgdesc='/etc/protocols and /etc/services provided by IANA'
+url='https://www.iana.org/protocols'
+arch=('any')
+license=('custom:none')
+backup=('etc/'{protocols,services})
+source=('https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xml'
+
'https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xml'
+'LICENSE')
+sha256sums=('c712f1cba560872513d92803fbd5666d7de6de9e7ee3cfaf5094600e4af6ef27'
+'4992fbc5453d0feb48492e6abda96bf9285ff4d2516f6924a0f92f773dc4cea2'
+'dd37e92942d5a4024f1c77df49d61ca77fc6284691814903a741785df61f78cb')
+
+pkgver() {
+   cd "${srcdir}"
+   awk -F"[<>]" '/updated/{print$3;nextfile}' * |
+   sort -n | tail -n 1 | tr -d -
+}
+
+package() {
+   cd "${srcdir}"
+   install -d "${pkgdir}/etc"
+   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/iana-etc/LICENSE"
+   install -Dm644 protocol-numbers.xml 
"${pkgdir}/usr/share/iana-etc/protocol-numbers.iana"
+   install -Dm644 service-names-port-numbers.xml 
"${pkgdir}/usr/share/iana-etc/port-numbers.iana"
+
+   gawk -F"[<>]" '
+BEGIN { print "# Full data: /usr/share/iana-etc/protocol-numbers.iana\n" }
+(/ "${pkgdir}/etc/protocols"
+
+   gawk -F"[<>]" '
+BEGIN { print "# Full data: /usr/share/iana-etc/port-numbers.iana\n" }
+(/ "${pkgdir}/etc/services"
+
+}


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

2019-02-21 Thread Gaëtan Bisson via arch-commits
Date: Thursday, February 21, 2019 @ 18:04:08
  Author: bisson
Revision: 346623

upstream update

Modified:
  iana-etc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 13:59:28 UTC (rev 346622)
+++ PKGBUILD2019-02-21 18:04:08 UTC (rev 346623)
@@ -2,7 +2,7 @@
 # Maintainer: Gaetan Bisson 
 
 pkgname=iana-etc
-pkgver=20190125
+pkgver=20190219
 pkgrel=1
 pkgdesc='/etc/protocols and /etc/services provided by IANA'
 url='https://www.iana.org/protocols'
@@ -12,7 +12,7 @@
 
source=('https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xml'
 
'https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xml'
 'LICENSE')
-sha256sums=('b4dcb54af98d10af309ea7c4ba13f1416b5597dd81e65d02714404e31508a655'
+sha256sums=('c712f1cba560872513d92803fbd5666d7de6de9e7ee3cfaf5094600e4af6ef27'
 '4992fbc5453d0feb48492e6abda96bf9285ff4d2516f6924a0f92f773dc4cea2'
 'dd37e92942d5a4024f1c77df49d61ca77fc6284691814903a741785df61f78cb')
 


[arch-commits] Commit in xlockmore/repos/community-x86_64 (6 files)

2019-02-21 Thread Sergej Pupykin via arch-commits
Date: Thursday, February 21, 2019 @ 15:00:10
  Author: spupykin
Revision: 435102

archrelease: copy trunk to community-x86_64

Added:
  xlockmore/repos/community-x86_64/LICENSE
(from rev 435101, xlockmore/trunk/LICENSE)
  xlockmore/repos/community-x86_64/PKGBUILD
(from rev 435101, xlockmore/trunk/PKGBUILD)
  xlockmore/repos/community-x86_64/xlockmore.install
(from rev 435101, xlockmore/trunk/xlockmore.install)
Deleted:
  xlockmore/repos/community-x86_64/LICENSE
  xlockmore/repos/community-x86_64/PKGBUILD
  xlockmore/repos/community-x86_64/xlockmore.install

---+
 LICENSE   |   36 +++---
 PKGBUILD  |   82 ++--
 xlockmore.install |8 ++---
 3 files changed, 63 insertions(+), 63 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2019-02-21 14:59:58 UTC (rev 435101)
+++ LICENSE 2019-02-21 15:00:10 UTC (rev 435102)
@@ -1,18 +0,0 @@
-/*-
- * xscreensaver compatibility layer for xlockmore modules.
- * xscreensaver, Copyright (c) 1997, 1998 Jamie Zawinski 
- *
- * Permission to use, copy, modify, distribute, and sell this software and its
- * documentation for any purpose is hereby granted without fee, provided that
- * the above copyright notice appear in all copies and that both that
- * copyright notice and this permission notice appear in supporting
- * documentation.  No representations are made about the suitability of this
- * software for any purpose.  It is provided "as is" without express or
- * implied warranty.
- *
- * This file, along with xlockmore.h, make it possible to compile an xlockmore
- * module into a standalone program, and thus use it with xscreensaver.
- * By Jamie Zawinski  on 10-May-97; based on the ideas
- * in the older xlock.h by Charles Hannum .  (I had
- * to redo it, since xlockmore has diverged so far from xlock...)
- */

Copied: xlockmore/repos/community-x86_64/LICENSE (from rev 435101, 
xlockmore/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2019-02-21 15:00:10 UTC (rev 435102)
@@ -0,0 +1,18 @@
+/*-
+ * xscreensaver compatibility layer for xlockmore modules.
+ * xscreensaver, Copyright (c) 1997, 1998 Jamie Zawinski 
+ *
+ * Permission to use, copy, modify, distribute, and sell this software and its
+ * documentation for any purpose is hereby granted without fee, provided that
+ * the above copyright notice appear in all copies and that both that
+ * copyright notice and this permission notice appear in supporting
+ * documentation.  No representations are made about the suitability of this
+ * software for any purpose.  It is provided "as is" without express or
+ * implied warranty.
+ *
+ * This file, along with xlockmore.h, make it possible to compile an xlockmore
+ * module into a standalone program, and thus use it with xscreensaver.
+ * By Jamie Zawinski  on 10-May-97; based on the ideas
+ * in the older xlock.h by Charles Hannum .  (I had
+ * to redo it, since xlockmore has diverged so far from xlock...)
+ */

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 14:59:58 UTC (rev 435101)
+++ PKGBUILD2019-02-21 15:00:10 UTC (rev 435102)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: dorphell 
-
-pkgname=xlockmore
-pkgver=5.56
-pkgrel=1
-pkgdesc="screen saver / locker for the X Window System"
-arch=(x86_64)
-license=('BSD')
-depends=(freetype2 gtk2 libxpm openmotif pam libxmu glu)
-optdepends=('fortune-mod')
-makedepends=(mesa)
-url="http://sillycycle.com/xlockmore.html;
-options=('!makeflags')
-install=xlockmore.install
-validpgpkeys=('1B79C8478F236DCDADC0D6ACCF159707377919AE')
-DLAGENTS=('http::/usr/bin/curl --user-agent Firefox -fLC - --retry 3 
--retry-delay 3 -o %o %u')
-source=(http://sillycycle.com/xlock/xlockmore-$pkgver.tar.xz{,.asc}
-   LICENSE)
-sha256sums=('a0dd8eb470bbda89b3ffdfaeb85c8a675c7469a1b657333eee906b9bd3b1e1b5'
-'SKIP'
-'f9f41a5590c5c3ee9780f6013d9f03c229674e8d72e086b22f07c399be0f5b39')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  ./configure --prefix=/usr --disable-setuid \
- --enable-appdefaultdir=/usr/share/X11/app-defaults \
- --enable-pam --with-gtk2 --without-esound --without-ftgl
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  make xapploaddir="$pkgdir"/usr/share/X11/app-defaults \
-   mandir="$pkgdir"/usr/man/man1 \
-   prefix="$pkgdir"/usr install
-  install -D -m644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  mv "$pkgdir"/usr/man "$pkgdir"/usr/share/
-}

Copied: xlockmore/repos/community-x86_64/PKGBUILD (from rev 435101, 
xlockmore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD

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

2019-02-21 Thread Maxime Gauduin via arch-commits
Date: Thursday, February 21, 2019 @ 14:52:53
  Author: alucryd
Revision: 435096

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 14:52:43 UTC (rev 435095)
+++ PKGBUILD2019-02-21 14:52:53 UTC (rev 435096)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Chuan Ji 
-
-pkgbase=python-wikipedia
-pkgname=('python-wikipedia' 'python2-wikipedia')
-pkgver=1.4.0
-pkgrel=5
-pkgdesc='A Pythonic wrapper for the Wikipedia API'
-arch=('any')
-url='https://github.com/goldsmith/Wikipedia'
-license=('MIT')
-depends=('python-beautifulsoup4' 'python-requests')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("https://pypi.python.org/packages/source/w/wikipedia/wikipedia-${pkgver}.tar.gz;)
-sha256sums=('db0fad1829fdd441b1852306e9856398204dc0786d2996dd2e0c8bb8e26133b2')
-
-prepare() {
-  cp -r wikipedia-${pkgver} python-wikipedia-${pkgver}
-  mv wikipedia-${pkgver} python2-wikipedia-${pkgver}
-}
-
-build() {
-  cd python-wikipedia-${pkgver}
-
-  python setup.py build
-
-  cd ../python2-wikipedia-${pkgver}
-
-  python2 setup.py build
-}
-
-package_python-wikipedia() {
-  cd python-wikipedia-${pkgver}
-
-  python setup.py install --root="${pkgdir}" --optimize='1'
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses/python-wikipedia
-  install -m 644 LICENSE "${pkgdir}"/usr/share/licenses/python-wikipedia/
-
-}
-
-package_python2-wikipedia() {
-  cd python2-wikipedia-${pkgver}
-
-  python2 setup.py install --root="${pkgdir}" --optimize='1'
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses/python2-wikipedia
-  install -m 644 LICENSE "${pkgdir}"/usr/share/licenses/python2-wikipedia/
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-wikipedia/repos/community-any/PKGBUILD (from rev 435095, 
python-wikipedia/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 14:52:53 UTC (rev 435096)
@@ -0,0 +1,33 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Chuan Ji 
+
+pkgname=python-wikipedia
+pkgver=1.4.0
+pkgrel=6
+pkgdesc='A Pythonic wrapper for the Wikipedia API'
+arch=(any)
+url=https://github.com/goldsmith/Wikipedia
+license=(MIT)
+depends=(
+  python-beautifulsoup4
+  python-requests
+)
+makedepends=(python-setuptools)
+source=(https://pypi.python.org/packages/source/w/wikipedia/wikipedia-${pkgver}.tar.gz)
+sha256sums=(db0fad1829fdd441b1852306e9856398204dc0786d2996dd2e0c8bb8e26133b2)
+
+build() {
+  cd wikipedia-${pkgver}
+
+  python setup.py build
+}
+
+package_python-wikipedia() {
+  cd wikipedia-${pkgver}
+
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+
+  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/python-wikipedia/
+}
+
+# vim: ts=2 sw=2 et:


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

2019-02-21 Thread Sergej Pupykin via arch-commits
Date: Thursday, February 21, 2019 @ 15:06:09
  Author: spupykin
Revision: 435105

upgpkg: luasocket 20190219-1

Modified:
  luasocket/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 15:03:11 UTC (rev 435104)
+++ PKGBUILD2019-02-21 15:06:09 UTC (rev 435105)
@@ -3,9 +3,9 @@
 
 pkgbase=luasocket
 pkgname=(lua-socket lua51-socket lua52-socket)
-pkgver=20160311
-_commit=23ce5aeaa22b49d6649096b520b292a3626474ef
-pkgrel=2
+pkgver=20190219
+_commit=144fa01c2f204e3b1b13c834f2644d100dba701b
+pkgrel=1
 pkgdesc='Networking support library for the Lua language'
 arch=('x86_64')
 url='https://github.com/diegonehab/luasocket'


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

2019-02-21 Thread Maxime Gauduin via arch-commits
Date: Thursday, February 21, 2019 @ 14:52:43
  Author: alucryd
Revision: 435095

upgpkg: python-wikipedia 1.4.0-6

Modified:
  python-wikipedia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 14:51:55 UTC (rev 435094)
+++ PKGBUILD2019-02-21 14:52:43 UTC (rev 435095)
@@ -1,51 +1,33 @@
 # Maintainer: Maxime Gauduin 
 # Contributor: Chuan Ji 
 
-pkgbase=python-wikipedia
-pkgname=('python-wikipedia' 'python2-wikipedia')
+pkgname=python-wikipedia
 pkgver=1.4.0
-pkgrel=5
+pkgrel=6
 pkgdesc='A Pythonic wrapper for the Wikipedia API'
-arch=('any')
-url='https://github.com/goldsmith/Wikipedia'
-license=('MIT')
-depends=('python-beautifulsoup4' 'python-requests')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("https://pypi.python.org/packages/source/w/wikipedia/wikipedia-${pkgver}.tar.gz;)
-sha256sums=('db0fad1829fdd441b1852306e9856398204dc0786d2996dd2e0c8bb8e26133b2')
+arch=(any)
+url=https://github.com/goldsmith/Wikipedia
+license=(MIT)
+depends=(
+  python-beautifulsoup4
+  python-requests
+)
+makedepends=(python-setuptools)
+source=(https://pypi.python.org/packages/source/w/wikipedia/wikipedia-${pkgver}.tar.gz)
+sha256sums=(db0fad1829fdd441b1852306e9856398204dc0786d2996dd2e0c8bb8e26133b2)
 
-prepare() {
-  cp -r wikipedia-${pkgver} python-wikipedia-${pkgver}
-  mv wikipedia-${pkgver} python2-wikipedia-${pkgver}
-}
-
 build() {
-  cd python-wikipedia-${pkgver}
+  cd wikipedia-${pkgver}
 
   python setup.py build
-
-  cd ../python2-wikipedia-${pkgver}
-
-  python2 setup.py build
 }
 
 package_python-wikipedia() {
-  cd python-wikipedia-${pkgver}
+  cd wikipedia-${pkgver}
 
-  python setup.py install --root="${pkgdir}" --optimize='1'
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
 
-  install -dm 755 "${pkgdir}"/usr/share/licenses/python-wikipedia
-  install -m 644 LICENSE "${pkgdir}"/usr/share/licenses/python-wikipedia/
-
+  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/python-wikipedia/
 }
 
-package_python2-wikipedia() {
-  cd python2-wikipedia-${pkgver}
-
-  python2 setup.py install --root="${pkgdir}" --optimize='1'
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses/python2-wikipedia
-  install -m 644 LICENSE "${pkgdir}"/usr/share/licenses/python2-wikipedia/
-}
-
 # vim: ts=2 sw=2 et:


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

2019-02-21 Thread Sergej Pupykin via arch-commits
Date: Thursday, February 21, 2019 @ 14:51:55
  Author: spupykin
Revision: 435094

archrelease: copy trunk to community-any

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

+
 PKGBUILD   |   94 +++
 drupal.install |   14 
 2 files changed, 54 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 14:51:42 UTC (rev 435093)
+++ PKGBUILD2019-02-21 14:51:55 UTC (rev 435094)
@@ -1,47 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Corrado Primier 
-
-pkgname=drupal
-pkgver=8.6.9
-pkgrel=1
-pkgdesc="A PHP-based content management platform"
-arch=('any')
-url="http://www.drupal.org/;
-license=('GPL')
-depends=()
-install='drupal.install'
-backup=('etc/webapps/drupal/.htaccess')
-options=(!strip)
-source=(https://ftp.drupal.org/files/projects/$pkgname-$pkgver.tar.gz)
-sha256sums=('e09058f7ab40eb447865daaf038e1518c50e50425c71503777f21ba6c0cee68a')
-
-package() {
-  depends=('php' 'php-gd')
-
-  _instdir="$pkgdir"/usr/share/webapps/drupal
-  mkdir -p ${_instdir}
-  cd ${_instdir}
-  cp -r "$srcdir"/$pkgname-$pkgver/{*,.htaccess} ${_instdir}
-
-  # move .htaccess
-  mkdir -p "$pkgdir"/etc/webapps/drupal
-  sed -i '1,1iRequire all denied' ${_instdir}/.htaccess
-  mv ${_instdir}/.htaccess "$pkgdir"/etc/webapps/drupal/.htaccess
-  ln -s /etc/webapps/drupal/.htaccess ${_instdir}/.htaccess
-
-  # move sites/
-  mkdir -p "$pkgdir"/var/lib/drupal/
-  mv ${_instdir}/sites "$pkgdir"/var/lib/drupal/sites
-  ln -s /var/lib/drupal/sites ${_instdir}/sites
-
-  # apache config example
-  cat >"$pkgdir"/etc/webapps/drupal/apache.example.conf <
-   AllowOverride All
-   Options FollowSymlinks
-   Require all granted
-   php_admin_value open_basedir 
"/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/:/var/lib/drupal"
-   
-EOF
-}

Copied: drupal/repos/community-any/PKGBUILD (from rev 435093, 
drupal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 14:51:55 UTC (rev 435094)
@@ -0,0 +1,47 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Corrado Primier 
+
+pkgname=drupal
+pkgver=8.6.10
+pkgrel=1
+pkgdesc="A PHP-based content management platform"
+arch=('any')
+url="http://www.drupal.org/;
+license=('GPL')
+depends=()
+install='drupal.install'
+backup=('etc/webapps/drupal/.htaccess')
+options=(!strip)
+source=(https://ftp.drupal.org/files/projects/$pkgname-$pkgver.tar.gz)
+sha256sums=('0b22ac1b8541170b81fdcf6e3d71f0e268b9d9245abe3ad3ca83bc0f11b5c182')
+
+package() {
+  depends=('php' 'php-gd')
+
+  _instdir="$pkgdir"/usr/share/webapps/drupal
+  mkdir -p ${_instdir}
+  cd ${_instdir}
+  cp -r "$srcdir"/$pkgname-$pkgver/{*,.htaccess} ${_instdir}
+
+  # move .htaccess
+  mkdir -p "$pkgdir"/etc/webapps/drupal
+  sed -i '1,1iRequire all denied' ${_instdir}/.htaccess
+  mv ${_instdir}/.htaccess "$pkgdir"/etc/webapps/drupal/.htaccess
+  ln -s /etc/webapps/drupal/.htaccess ${_instdir}/.htaccess
+
+  # move sites/
+  mkdir -p "$pkgdir"/var/lib/drupal/
+  mv ${_instdir}/sites "$pkgdir"/var/lib/drupal/sites
+  ln -s /var/lib/drupal/sites ${_instdir}/sites
+
+  # apache config example
+  cat >"$pkgdir"/etc/webapps/drupal/apache.example.conf <
+   AllowOverride All
+   Options FollowSymlinks
+   Require all granted
+   php_admin_value open_basedir 
"/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/:/var/lib/drupal"
+   
+EOF
+}

Deleted: drupal.install
===
--- drupal.install  2019-02-21 14:51:42 UTC (rev 435093)
+++ drupal.install  2019-02-21 14:51:55 UTC (rev 435094)
@@ -1,7 +0,0 @@
-post_install() {
-  chown -R http:http var/lib/drupal
-}
-
-post_upgrade() {
-  chown -R http:http var/lib/drupal
-}

Copied: drupal/repos/community-any/drupal.install (from rev 435093, 
drupal/trunk/drupal.install)
===
--- drupal.install  (rev 0)
+++ drupal.install  2019-02-21 14:51:55 UTC (rev 435094)
@@ -0,0 +1,7 @@
+post_install() {
+  chown -R http:http var/lib/drupal
+}
+
+post_upgrade() {
+  chown -R http:http var/lib/drupal
+}


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

2019-02-21 Thread Sergej Pupykin via arch-commits
Date: Thursday, February 21, 2019 @ 15:06:25
  Author: spupykin
Revision: 435106

archrelease: copy trunk to community-x86_64

Added:
  luasocket/repos/community-x86_64/PKGBUILD
(from rev 435105, luasocket/trunk/PKGBUILD)
Deleted:
  luasocket/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 15:06:09 UTC (rev 435105)
+++ PKGBUILD2019-02-21 15:06:25 UTC (rev 435106)
@@ -1,70 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Anders Bergh 
-
-pkgbase=luasocket
-pkgname=(lua-socket lua51-socket lua52-socket)
-pkgver=20160311
-_commit=23ce5aeaa22b49d6649096b520b292a3626474ef
-pkgrel=2
-pkgdesc='Networking support library for the Lua language'
-arch=('x86_64')
-url='https://github.com/diegonehab/luasocket'
-license=('MIT')
-makedepends=('lua' 'lua51' 'lua52' 'git')
-source=("git+https://github.com/diegonehab/luasocket.git#commit=${_commit};)
-md5sums=('SKIP')
-
-build() {
-  cp -a luasocket luasocket-52
-  cp -a luasocket luasocket-51
-
-  msg2 'Building with lua 5.3'
-  cd "$srcdir"/luasocket
-  make LUAV=5.3 linux
-
-  msg2 'Building with lua 5.1'
-  cd "$srcdir"/luasocket-51
-  find . -type f -name \*.[ch] -exec sed -i \
--e 's|include "lua.h|include "lua5.1/lua.h|g' \
--e 's|include "lualib.h|include "lua5.1/lualib.h|g' \
--e 's|include "luaconf.h|include "lua5.1/luaconf.h|g' \
--e 's|include "lauxlib.h|include "lua5.1/lauxlib.h|g' \
-{} \;
-  sed -i 's|usocket.$(O)|usocket.$(O) compat.$(O)|' makefile
-  make LUAV=5.1 linux
-
-  msg2 'Building with lua 5.2'
-  cd "$srcdir"/luasocket-52
-  find . -type f -name \*.[ch] -exec sed -i \
--e 's|include "lua.h|include "lua5.2/lua.h|g' \
--e 's|include "lualib.h|include "lua5.2/lualib.h|g' \
--e 's|include "luaconf.h|include "lua5.2/luaconf.h|g' \
--e 's|include "lauxlib.h|include "lua5.2/lauxlib.h|g' \
-{} \;
-  make LUAV=5.2 linux
-}
-
-package_lua-socket() {
-  depends=('lua')
-  cd luasocket
-  make DESTDIR="$pkgdir/" LUAV=5.3 prefix=/usr install-unix
-  install -D -m0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_lua51-socket() {
-  depends=('lua51')
-  replaces=('luasocket')
-  conflicts=('luasocket')
-
-  cd luasocket-51
-  make DESTDIR="$pkgdir/" LUAV=5.1 prefix=/usr install-unix
-  install -D -m0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_lua52-socket() {
-  depends=('lua52')
-
-  cd luasocket-52
-  make DESTDIR="$pkgdir/" LUAV=5.2 prefix=/usr install-unix
-  install -D -m0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: luasocket/repos/community-x86_64/PKGBUILD (from rev 435105, 
luasocket/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 15:06:25 UTC (rev 435106)
@@ -0,0 +1,70 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Anders Bergh 
+
+pkgbase=luasocket
+pkgname=(lua-socket lua51-socket lua52-socket)
+pkgver=20190219
+_commit=144fa01c2f204e3b1b13c834f2644d100dba701b
+pkgrel=1
+pkgdesc='Networking support library for the Lua language'
+arch=('x86_64')
+url='https://github.com/diegonehab/luasocket'
+license=('MIT')
+makedepends=('lua' 'lua51' 'lua52' 'git')
+source=("git+https://github.com/diegonehab/luasocket.git#commit=${_commit};)
+md5sums=('SKIP')
+
+build() {
+  cp -a luasocket luasocket-52
+  cp -a luasocket luasocket-51
+
+  msg2 'Building with lua 5.3'
+  cd "$srcdir"/luasocket
+  make LUAV=5.3 linux
+
+  msg2 'Building with lua 5.1'
+  cd "$srcdir"/luasocket-51
+  find . -type f -name \*.[ch] -exec sed -i \
+-e 's|include "lua.h|include "lua5.1/lua.h|g' \
+-e 's|include "lualib.h|include "lua5.1/lualib.h|g' \
+-e 's|include "luaconf.h|include "lua5.1/luaconf.h|g' \
+-e 's|include "lauxlib.h|include "lua5.1/lauxlib.h|g' \
+{} \;
+  sed -i 's|usocket.$(O)|usocket.$(O) compat.$(O)|' makefile
+  make LUAV=5.1 linux
+
+  msg2 'Building with lua 5.2'
+  cd "$srcdir"/luasocket-52
+  find . -type f -name \*.[ch] -exec sed -i \
+-e 's|include "lua.h|include "lua5.2/lua.h|g' \
+-e 's|include "lualib.h|include "lua5.2/lualib.h|g' \
+-e 's|include "luaconf.h|include "lua5.2/luaconf.h|g' \
+-e 's|include "lauxlib.h|include "lua5.2/lauxlib.h|g' \
+{} \;
+  make LUAV=5.2 linux
+}
+
+package_lua-socket() {
+  depends=('lua')
+  cd luasocket
+  make DESTDIR="$pkgdir/" LUAV=5.3 prefix=/usr install-unix
+  install -D -m0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua51-socket() {
+  depends=('lua51')
+  replaces=('luasocket')
+  conflicts=('luasocket')
+
+  cd luasocket-51
+  make DESTDIR="$pkgdir/" LUAV=5.1 prefix=/usr install-unix
+  install -D -m0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+

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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 15:08:20
  Author: felixonmars
Revision: 435107

upgpkg: python-crayons 0.2.0-1

Modified:
  python-crayons/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 15:06:25 UTC (rev 435106)
+++ PKGBUILD2019-02-21 15:08:20 UTC (rev 435107)
@@ -2,8 +2,8 @@
 
 pkgbase=python-crayons
 pkgname=('python-crayons' 'python2-crayons')
-pkgver=0.1.2
-pkgrel=2
+pkgver=0.2.0
+pkgrel=1
 pkgdesc='TextUI colors for Python'
 arch=('any')
 license=('MIT')
@@ -10,7 +10,7 @@
 url='https://github.com/kennethreitz/crayons'
 makedepends=('python-setuptools' 'python2-setuptools' 'python-colorama' 
'python2-colorama')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/kennethreitz/crayons/archive/v$pkgver.tar.gz;)
-sha512sums=('5da863c9f1b0f2c8713c6e0412701309ff9e52df782151b9aad4d2a852e2fa1220f96ddee9ced1aed6500fa2b67e6d3bbc53d980c51f77739888d826c6f5c275')
+sha512sums=('6fc3798c8f389adff7292d20de301e4393ea133db07b63b76a1cdc657e1e114144257081511294c3b924f653e21379526b564dd715174a9c6f16ba17152b665d')
 
 prepare() {
   cp -a crayons-$pkgver{,-py2}


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 15:08:39
  Author: felixonmars
Revision: 435108

archrelease: copy trunk to community-testing-any

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

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

Copied: python-crayons/repos/community-testing-any/PKGBUILD (from rev 435107, 
python-crayons/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2019-02-21 15:08:39 UTC (rev 435108)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-crayons
+pkgname=('python-crayons' 'python2-crayons')
+pkgver=0.2.0
+pkgrel=1
+pkgdesc='TextUI colors for Python'
+arch=('any')
+license=('MIT')
+url='https://github.com/kennethreitz/crayons'
+makedepends=('python-setuptools' 'python2-setuptools' 'python-colorama' 
'python2-colorama')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/kennethreitz/crayons/archive/v$pkgver.tar.gz;)
+sha512sums=('6fc3798c8f389adff7292d20de301e4393ea133db07b63b76a1cdc657e1e114144257081511294c3b924f653e21379526b564dd715174a9c6f16ba17152b665d')
+
+prepare() {
+  cp -a crayons-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/crayons-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/crayons-$pkgver-py2
+  python2 setup.py build
+}
+
+package_python-crayons() {
+  depends=('python-colorama')
+
+  cd crayons-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  # install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-crayons() {
+  depends=('python2-colorama')
+
+  cd crayons-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  # install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-02-21 Thread Sergej Pupykin via arch-commits
Date: Thursday, February 21, 2019 @ 14:59:51
  Author: spupykin
Revision: 435100

archrelease: copy trunk to community-any

Added:
  perlbrew/repos/community-any/PKGBUILD
(from rev 435099, perlbrew/trunk/PKGBUILD)
Deleted:
  perlbrew/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 14:59:40 UTC (rev 435099)
+++ PKGBUILD2019-02-21 14:59:51 UTC (rev 435100)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=perlbrew
-pkgver=0.84
-pkgrel=2
-pkgdesc='Manage perl installations in your $HOME'
-arch=('any')
-url="https://metacpan.org/release/App-perlbrew;
-license=('MIT')
-depends=('perl' 'perl-capture-tiny' 'perl-cpan-perl-releases' 
'perl-devel-patchperl'
- 'perl-file-path-tiny' 'perl-local-lib')
-makedepends=('perl-module-build-tiny')
-checkdepends=('perl-test-exception' 'perl-test-output' 'perl-test-spec'
-  'perl-path-class' 'perl-io-all')
-options=('!emptydirs')
-source=("http://search.cpan.org/CPAN/authors/id/G/GU/GUGOD/App-perlbrew-$pkgver.tar.gz;)
-sha1sums=('502d59dee497fa75f5cdc5af958ce671a672c953')
-
-build() {
-  cd App-perlbrew-$pkgver
-  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
-  export PERL_MM_USE_DEFAULT=1 MODULEBUILDRC=/dev/null
-  perl Build.PL
-  ./Build
-}
-
-package() {
-  cd App-perlbrew-$pkgver
-  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
-  ./Build install --installdirs=vendor --destdir="$pkgdir"
-  install -Dm0644 LICENSE "$pkgdir"/usr/share/licenses/perlbrew/LICENSE
-}

Copied: perlbrew/repos/community-any/PKGBUILD (from rev 435099, 
perlbrew/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 14:59:51 UTC (rev 435100)
@@ -0,0 +1,32 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=perlbrew
+pkgver=0.86
+pkgrel=1
+pkgdesc='Manage perl installations in your $HOME'
+arch=('any')
+url="https://metacpan.org/release/App-perlbrew;
+license=('MIT')
+depends=('perl' 'perl-capture-tiny' 'perl-cpan-perl-releases' 
'perl-devel-patchperl'
+ 'perl-file-path-tiny' 'perl-local-lib')
+makedepends=('perl-module-build-tiny')
+checkdepends=('perl-test-exception' 'perl-test-output' 'perl-test-spec'
+  'perl-path-class' 'perl-io-all')
+options=('!emptydirs')
+source=("http://search.cpan.org/CPAN/authors/id/G/GU/GUGOD/App-perlbrew-$pkgver.tar.gz;)
+sha1sums=('521962b3a9016ab35a23c34625d01f548b052107')
+
+build() {
+  cd App-perlbrew-$pkgver
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 MODULEBUILDRC=/dev/null
+  perl Build.PL
+  ./Build
+}
+
+package() {
+  cd App-perlbrew-$pkgver
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  ./Build install --installdirs=vendor --destdir="$pkgdir"
+  install -Dm0644 LICENSE "$pkgdir"/usr/share/licenses/perlbrew/LICENSE
+}


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

2019-02-21 Thread Sergej Pupykin via arch-commits
Date: Thursday, February 21, 2019 @ 14:59:40
  Author: spupykin
Revision: 435099

upgpkg: perlbrew 0.86-1

Modified:
  perlbrew/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 14:54:13 UTC (rev 435098)
+++ PKGBUILD2019-02-21 14:59:40 UTC (rev 435099)
@@ -1,8 +1,8 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=perlbrew
-pkgver=0.84
-pkgrel=2
+pkgver=0.86
+pkgrel=1
 pkgdesc='Manage perl installations in your $HOME'
 arch=('any')
 url="https://metacpan.org/release/App-perlbrew;
@@ -14,7 +14,7 @@
   'perl-path-class' 'perl-io-all')
 options=('!emptydirs')
 
source=("http://search.cpan.org/CPAN/authors/id/G/GU/GUGOD/App-perlbrew-$pkgver.tar.gz;)
-sha1sums=('502d59dee497fa75f5cdc5af958ce671a672c953')
+sha1sums=('521962b3a9016ab35a23c34625d01f548b052107')
 
 build() {
   cd App-perlbrew-$pkgver


[arch-commits] Commit in elementary-icon-theme/repos/community-any (PKGBUILD PKGBUILD)

2019-02-21 Thread Maxime Gauduin via arch-commits
Date: Thursday, February 21, 2019 @ 15:03:11
  Author: alucryd
Revision: 435104

archrelease: copy trunk to community-any

Added:
  elementary-icon-theme/repos/community-any/PKGBUILD
(from rev 435103, elementary-icon-theme/trunk/PKGBUILD)
Deleted:
  elementary-icon-theme/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 15:03:01 UTC (rev 435103)
+++ PKGBUILD2019-02-21 15:03:11 UTC (rev 435104)
@@ -1,32 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Diego Principe 
-# Contributor: paterbrown 
-# Contributor: Josip 
-
-pkgname=elementary-icon-theme
-pkgver=5.0.2
-pkgrel=1
-pkgdesc='Named, vector icons for elementary OS'
-arch=(any)
-url='https://github.com/elementary/icons'
-license=(GPL3)
-groups=(pantheon)
-depends=(hicolor-icon-theme)
-makedepends=(
-  git
-  meson
-)
-source=(elementary-icon-theme::git+https://github.com/elementary/icons.git#tag=${pkgver})
-sha256sums=(SKIP)
-
-build() {
-  arch-meson elementary-icon-theme build
-  ninja -C build
-}
-
-package() {
-  DESTDIR="${pkgdir}" ninja -C build install
-  rm -rf "${pkgdir}"/.VolumeIcon.*
-}
-
-# vim: ts=2 sw=2 et:

Copied: elementary-icon-theme/repos/community-any/PKGBUILD (from rev 435103, 
elementary-icon-theme/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 15:03:11 UTC (rev 435104)
@@ -0,0 +1,32 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Diego Principe 
+# Contributor: paterbrown 
+# Contributor: Josip 
+
+pkgname=elementary-icon-theme
+pkgver=5.0.3
+pkgrel=1
+pkgdesc='Named, vector icons for elementary OS'
+arch=(any)
+url=https://github.com/elementary/icons
+license=(GPL3)
+groups=(pantheon)
+depends=(hicolor-icon-theme)
+makedepends=(
+  git
+  meson
+)
+source=(elementary-icon-theme::git+https://github.com/elementary/icons.git#tag=${pkgver})
+sha256sums=(SKIP)
+
+build() {
+  arch-meson elementary-icon-theme build
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+  rm -rf "${pkgdir}"/.VolumeIcon.*
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in elementary-icon-theme/trunk (PKGBUILD)

2019-02-21 Thread Maxime Gauduin via arch-commits
Date: Thursday, February 21, 2019 @ 15:03:01
  Author: alucryd
Revision: 435103

upgpkg: elementary-icon-theme 5.0.3-1

Modified:
  elementary-icon-theme/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 15:00:10 UTC (rev 435102)
+++ PKGBUILD2019-02-21 15:03:01 UTC (rev 435103)
@@ -4,11 +4,11 @@
 # Contributor: Josip 
 
 pkgname=elementary-icon-theme
-pkgver=5.0.2
+pkgver=5.0.3
 pkgrel=1
 pkgdesc='Named, vector icons for elementary OS'
 arch=(any)
-url='https://github.com/elementary/icons'
+url=https://github.com/elementary/icons
 license=(GPL3)
 groups=(pantheon)
 depends=(hicolor-icon-theme)


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

2019-02-21 Thread Maxime Gauduin via arch-commits
Date: Thursday, February 21, 2019 @ 14:30:06
  Author: alucryd
Revision: 435092

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 14:29:58 UTC (rev 435091)
+++ PKGBUILD2019-02-21 14:30:06 UTC (rev 435092)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Adrian Sampson 
-
-pkgbase=python-munkres
-pkgname=('python-munkres' 'python2-munkres')
-pkgver=1.0.12
-pkgrel=2
-pkgdesc='Munkres algorithm for Python'
-arch=('any')
-url='https://github.com/bmc/munkres'
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("python-munkres-${pkgver}.tar.gz::https://github.com/bmc/munkres/archive/release-${pkgver}.tar.gz;)
-sha256sums=('70b3b32b4fed3b354e5c42e4d1273880a33a13ab8c108a4247140eb661767a0b')
-
-prepare() {
-  mv {,python-}munkres-release-${pkgver}
-  cp -r python{,2}-munkres-release-${pkgver}
-
-  cd python2-munkres-release-${pkgver}
-
-  sed 's|#!.*python$|#!/usr/bin/env python2|' -i $(grep -rl '#!.*python$')
-}
-
-build() {
-  for py in python{,2}; do
-pushd ${py}-munkres-release-${pkgver}
-${py} setup.py build
-popd
-  done
-}
-
-package_python-munkres() {
-  depends=('python')
-
-  cd python-munkres-release-${pkgver}
-
-  python setup.py install --root="${pkgdir}" --optimize='1'
-}
-
-package_python2-munkres() {
-  depends=('python2')
-
-  cd python2-munkres-release-${pkgver}
-
-  python2 setup.py install --root="${pkgdir}" --optimize='1'
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-munkres/repos/community-any/PKGBUILD (from rev 435091, 
python-munkres/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 14:30:06 UTC (rev 435092)
@@ -0,0 +1,31 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Adrian Sampson 
+
+pkgname=python-munkres
+pkgver=1.1.2
+pkgrel=1
+pkgdesc='Munkres algorithm for Python'
+arch=(any)
+url=https://github.com/bmc/munkres
+license=(Apache)
+depends=(python)
+makedepends=(
+  git
+  python-setuptools
+)
+source=(git+https://github.com/bmc/munkres.git#tag=release-${pkgver})
+sha256sums=(SKIP)
+
+build() {
+  cd munkres
+
+  python setup.py build
+}
+
+package() {
+  cd munkres
+
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}
+
+# vim: ts=2 sw=2 et:


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

2019-02-21 Thread Sergej Pupykin via arch-commits
Date: Thursday, February 21, 2019 @ 14:59:58
  Author: spupykin
Revision: 435101

upgpkg: xlockmore 5.56-2

Modified:
  xlockmore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 14:59:51 UTC (rev 435100)
+++ PKGBUILD2019-02-21 14:59:58 UTC (rev 435101)
@@ -3,7 +3,7 @@
 
 pkgname=xlockmore
 pkgver=5.56
-pkgrel=1
+pkgrel=2
 pkgdesc="screen saver / locker for the X Window System"
 arch=(x86_64)
 license=('BSD')
@@ -35,6 +35,7 @@
   make xapploaddir="$pkgdir"/usr/share/X11/app-defaults \
mandir="$pkgdir"/usr/man/man1 \
prefix="$pkgdir"/usr install
-  install -D -m644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm0644 etc/xlock.pamd "${pkgdir}"/etc/pam.d/xlock
+  install -Dm0644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
   mv "$pkgdir"/usr/man "$pkgdir"/usr/share/
 }


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

2019-02-21 Thread Sergej Pupykin via arch-commits
Date: Thursday, February 21, 2019 @ 14:51:42
  Author: spupykin
Revision: 435093

upgpkg: drupal 8.6.10-1

Modified:
  drupal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 14:30:06 UTC (rev 435092)
+++ PKGBUILD2019-02-21 14:51:42 UTC (rev 435093)
@@ -2,7 +2,7 @@
 # Contributor: Corrado Primier 
 
 pkgname=drupal
-pkgver=8.6.9
+pkgver=8.6.10
 pkgrel=1
 pkgdesc="A PHP-based content management platform"
 arch=('any')
@@ -13,7 +13,7 @@
 backup=('etc/webapps/drupal/.htaccess')
 options=(!strip)
 source=(https://ftp.drupal.org/files/projects/$pkgname-$pkgver.tar.gz)
-sha256sums=('e09058f7ab40eb447865daaf038e1518c50e50425c71503777f21ba6c0cee68a')
+sha256sums=('0b22ac1b8541170b81fdcf6e3d71f0e268b9d9245abe3ad3ca83bc0f11b5c182')
 
 package() {
   depends=('php' 'php-gd')


[arch-commits] Commit in gsoap/repos/community-x86_64 (6 files)

2019-02-21 Thread Sergej Pupykin via arch-commits
Date: Thursday, February 21, 2019 @ 14:54:13
  Author: spupykin
Revision: 435098

archrelease: copy trunk to community-x86_64

Added:
  gsoap/repos/community-x86_64/0001-no-xlocale.patch
(from rev 435097, gsoap/trunk/0001-no-xlocale.patch)
  gsoap/repos/community-x86_64/LICENSE
(from rev 435097, gsoap/trunk/LICENSE)
  gsoap/repos/community-x86_64/PKGBUILD
(from rev 435097, gsoap/trunk/PKGBUILD)
Deleted:
  gsoap/repos/community-x86_64/0001-no-xlocale.patch
  gsoap/repos/community-x86_64/LICENSE
  gsoap/repos/community-x86_64/PKGBUILD

---+
 0001-no-xlocale.patch |   82 ++--
 LICENSE   |  326 
 PKGBUILD  |   90 ++---
 3 files changed, 249 insertions(+), 249 deletions(-)

Deleted: 0001-no-xlocale.patch
===
--- 0001-no-xlocale.patch   2019-02-21 14:54:01 UTC (rev 435097)
+++ 0001-no-xlocale.patch   2019-02-21 14:54:13 UTC (rev 435098)
@@ -1,41 +0,0 @@
-diff -wbBur gsoap-2.8/gsoap/stdsoap2.h gsoap-2.8.my/gsoap/stdsoap2.h
 gsoap-2.8/gsoap/stdsoap2.h 2018-03-08 18:45:36.0 +0300
-+++ gsoap-2.8.my/gsoap/stdsoap2.h  2018-03-28 15:51:38.342848826 +0300
-@@ -338,7 +338,6 @@
- #  define HAVE_MBTOWC
- #  define HAVE_INTTYPES_H
- #  define HAVE_LOCALE_H
--#  define HAVE_XLOCALE_H
- #  define HAVE_RANDOM
- # elif defined(_AIX43)
- #  define HAVE_SNPRINTF
-@@ -419,7 +418,6 @@
- #  define HAVE_ISNAN
- #  define HAVE_ISINF
- #  define HAVE_LOCALE_H
--#  define HAVE_XLOCALE_H
- #  define HAVE_RANDOM
- # elif defined(__VMS)
- #  include 
-@@ -720,11 +718,6 @@
- # endif
- #endif
- 
--/* force inclusion of xlocale.h */
--#if defined(WITH_INCLUDE_XLOCALE_H) && !defined(HAVE_XLOCALE_H)
--# define HAVE_XLOCALE_H
--#endif
--
- #ifdef WITH_C_LOCALE
- # include 
- # if defined(WIN32) && !defined(CYGWIN)
-@@ -732,9 +725,6 @@
- #  define SOAP_LOCALE(soap) ((soap)->c_locale ? (soap)->c_locale : 
((soap)->c_locale = _create_locale(LC_ALL, "C")))
- #  define SOAP_FREELOCALE(soap) (void)((soap)->c_locale && 
(_free_locale((soap)->c_locale), ((soap)->c_locale = NULL)))
- # else
--#  if defined(HAVE_XLOCALE_H)
--#   include 
--#  endif
- #  define SOAP_LOCALE_T locale_t
- #  define SOAP_LOCALE(soap) ((soap)->c_locale ? (soap)->c_locale : 
((soap)->c_locale = newlocale(LC_ALL_MASK, "C", NULL)))
- #  define SOAP_FREELOCALE(soap) (void)((soap)->c_locale && 
(freelocale((soap)->c_locale), ((soap)->c_locale = NULL)))

Copied: gsoap/repos/community-x86_64/0001-no-xlocale.patch (from rev 435097, 
gsoap/trunk/0001-no-xlocale.patch)
===
--- 0001-no-xlocale.patch   (rev 0)
+++ 0001-no-xlocale.patch   2019-02-21 14:54:13 UTC (rev 435098)
@@ -0,0 +1,41 @@
+diff -wbBur gsoap-2.8/gsoap/stdsoap2.h gsoap-2.8.my/gsoap/stdsoap2.h
+--- gsoap-2.8/gsoap/stdsoap2.h 2018-03-08 18:45:36.0 +0300
 gsoap-2.8.my/gsoap/stdsoap2.h  2018-03-28 15:51:38.342848826 +0300
+@@ -338,7 +338,6 @@
+ #  define HAVE_MBTOWC
+ #  define HAVE_INTTYPES_H
+ #  define HAVE_LOCALE_H
+-#  define HAVE_XLOCALE_H
+ #  define HAVE_RANDOM
+ # elif defined(_AIX43)
+ #  define HAVE_SNPRINTF
+@@ -419,7 +418,6 @@
+ #  define HAVE_ISNAN
+ #  define HAVE_ISINF
+ #  define HAVE_LOCALE_H
+-#  define HAVE_XLOCALE_H
+ #  define HAVE_RANDOM
+ # elif defined(__VMS)
+ #  include 
+@@ -720,11 +718,6 @@
+ # endif
+ #endif
+ 
+-/* force inclusion of xlocale.h */
+-#if defined(WITH_INCLUDE_XLOCALE_H) && !defined(HAVE_XLOCALE_H)
+-# define HAVE_XLOCALE_H
+-#endif
+-
+ #ifdef WITH_C_LOCALE
+ # include 
+ # if defined(WIN32) && !defined(CYGWIN)
+@@ -732,9 +725,6 @@
+ #  define SOAP_LOCALE(soap) ((soap)->c_locale ? (soap)->c_locale : 
((soap)->c_locale = _create_locale(LC_ALL, "C")))
+ #  define SOAP_FREELOCALE(soap) (void)((soap)->c_locale && 
(_free_locale((soap)->c_locale), ((soap)->c_locale = NULL)))
+ # else
+-#  if defined(HAVE_XLOCALE_H)
+-#   include 
+-#  endif
+ #  define SOAP_LOCALE_T locale_t
+ #  define SOAP_LOCALE(soap) ((soap)->c_locale ? (soap)->c_locale : 
((soap)->c_locale = newlocale(LC_ALL_MASK, "C", NULL)))
+ #  define SOAP_FREELOCALE(soap) (void)((soap)->c_locale && 
(freelocale((soap)->c_locale), ((soap)->c_locale = NULL)))

Deleted: LICENSE
===
--- LICENSE 2019-02-21 14:54:01 UTC (rev 435097)
+++ LICENSE 2019-02-21 14:54:13 UTC (rev 435098)
@@ -1,163 +0,0 @@
-gSOAP Public License
-Version 1.3a
-The gSOAP public license is derived from the Mozilla Public License (MPL1.1). 
The sections that were deleted from the original MPL1.1 text are 1.0.1, 
2.1.(c),(d), 2.2.(c),(d), 8.2.(b), 10, and 11. Section 3.8 was added. The 
modified sections are 2.1.(b), 2.2.(b), 3.2 (simplified), 3.5 (deleted the last 
sentence), and 3.6 (simplified).
-1  DEFINITIONS.
-
-1.0.1.
-1.1. "Contributor"
-means each entity that 

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

2019-02-21 Thread Maxime Gauduin via arch-commits
Date: Thursday, February 21, 2019 @ 14:29:58
  Author: alucryd
Revision: 435091

upgpkg: python-munkres 1.1.2-1

Modified:
  python-munkres/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 14:19:55 UTC (rev 435090)
+++ PKGBUILD2019-02-21 14:29:58 UTC (rev 435091)
@@ -1,49 +1,31 @@
 # Maintainer: Maxime Gauduin 
 # Contributor: Adrian Sampson 
 
-pkgbase=python-munkres
-pkgname=('python-munkres' 'python2-munkres')
-pkgver=1.0.12
-pkgrel=2
+pkgname=python-munkres
+pkgver=1.1.2
+pkgrel=1
 pkgdesc='Munkres algorithm for Python'
-arch=('any')
-url='https://github.com/bmc/munkres'
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("python-munkres-${pkgver}.tar.gz::https://github.com/bmc/munkres/archive/release-${pkgver}.tar.gz;)
-sha256sums=('70b3b32b4fed3b354e5c42e4d1273880a33a13ab8c108a4247140eb661767a0b')
+arch=(any)
+url=https://github.com/bmc/munkres
+license=(Apache)
+depends=(python)
+makedepends=(
+  git
+  python-setuptools
+)
+source=(git+https://github.com/bmc/munkres.git#tag=release-${pkgver})
+sha256sums=(SKIP)
 
-prepare() {
-  mv {,python-}munkres-release-${pkgver}
-  cp -r python{,2}-munkres-release-${pkgver}
-
-  cd python2-munkres-release-${pkgver}
-
-  sed 's|#!.*python$|#!/usr/bin/env python2|' -i $(grep -rl '#!.*python$')
-}
-
 build() {
-  for py in python{,2}; do
-pushd ${py}-munkres-release-${pkgver}
-${py} setup.py build
-popd
-  done
-}
+  cd munkres
 
-package_python-munkres() {
-  depends=('python')
-
-  cd python-munkres-release-${pkgver}
-
-  python setup.py install --root="${pkgdir}" --optimize='1'
+  python setup.py build
 }
 
-package_python2-munkres() {
-  depends=('python2')
+package() {
+  cd munkres
 
-  cd python2-munkres-release-${pkgver}
-
-  python2 setup.py install --root="${pkgdir}" --optimize='1'
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
 }
 
 # vim: ts=2 sw=2 et:


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

2019-02-21 Thread Maxime Gauduin via arch-commits
Date: Thursday, February 21, 2019 @ 14:19:46
  Author: alucryd
Revision: 435089

upgpkg: python-mpd2 1.0.0-3

Modified:
  python-mpd2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 14:13:36 UTC (rev 435088)
+++ PKGBUILD2019-02-21 14:19:46 UTC (rev 435089)
@@ -5,44 +5,31 @@
 # Contributor: Wieland Hoffmann 
 # Contributor: stonecrest 
 
-pkgbase=python-mpd2
-pkgname=('python2-mpd2' 'python-mpd2')
+pkgname=python-mpd2
 pkgver=1.0.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Python library which provides a client interface for the Music Player 
Daemon'
-url='https://github.com/Mic92/python-mpd2'
-license=('GPL3')
-makedepends=('python2-setuptools' 'python-setuptools')
-arch=('any')
-source=("python-mpd2-${pkgver}.tar.gz::https://github.com/Mic92/python-mpd2/archive/v${pkgver}.tar.gz;)
-sha256sums=('877fa1685a56815107cb0b1eb004e7fe261b620fafd4d38cdaa2b6f3edd35928')
+url=https://github.com/Mic92/python-mpd2
+license=(GPL3)
+depends=(python)
+makedepends=(
+  git
+  python-setuptools
+)
+arch=(any)
+source=(git+https://github.com/Mic92/python-mpd2.git#tag=v${pkgver})
+sha256sums=(SKIP)
 
-prepare() {
-  cp -r python{,2}-mpd2-${pkgver}
-}
-
 build() {
-  for py in python{,2}; do
-pushd ${py}-mpd2-${pkgver}
-${py} setup.py build
-popd
-  done
-}
+  cd python-mpd2
 
-package_python-mpd2() {
-  depends=('python')
-
-  cd python-mpd2-${pkgver}
-
-  python setup.py install --root="$pkgdir/" --optimize='1' --skip-build
+  python setup.py build
 }
 
-package_python2-mpd2() {
-  depends=('python2')
+package() {
+  cd python-mpd2
 
-  cd python2-mpd2-${pkgver}
-
-  python2 setup.py install --root="$pkgdir/" --optimize='1' --skip-build
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
 }
 
 # vim: ts=2 sw=2 et:


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

2019-02-21 Thread Maxime Gauduin via arch-commits
Date: Thursday, February 21, 2019 @ 14:19:55
  Author: alucryd
Revision: 435090

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 14:19:46 UTC (rev 435089)
+++ PKGBUILD2019-02-21 14:19:55 UTC (rev 435090)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Jörg Thalheim 
-# Contributor: Emmanuel Gil Peyrot 
-# Contributor: Peter Richard Lewis 
-# Contributor: Wieland Hoffmann 
-# Contributor: stonecrest 
-
-pkgbase=python-mpd2
-pkgname=('python2-mpd2' 'python-mpd2')
-pkgver=1.0.0
-pkgrel=2
-pkgdesc='Python library which provides a client interface for the Music Player 
Daemon'
-url='https://github.com/Mic92/python-mpd2'
-license=('GPL3')
-makedepends=('python2-setuptools' 'python-setuptools')
-arch=('any')
-source=("python-mpd2-${pkgver}.tar.gz::https://github.com/Mic92/python-mpd2/archive/v${pkgver}.tar.gz;)
-sha256sums=('877fa1685a56815107cb0b1eb004e7fe261b620fafd4d38cdaa2b6f3edd35928')
-
-prepare() {
-  cp -r python{,2}-mpd2-${pkgver}
-}
-
-build() {
-  for py in python{,2}; do
-pushd ${py}-mpd2-${pkgver}
-${py} setup.py build
-popd
-  done
-}
-
-package_python-mpd2() {
-  depends=('python')
-
-  cd python-mpd2-${pkgver}
-
-  python setup.py install --root="$pkgdir/" --optimize='1' --skip-build
-}
-
-package_python2-mpd2() {
-  depends=('python2')
-
-  cd python2-mpd2-${pkgver}
-
-  python2 setup.py install --root="$pkgdir/" --optimize='1' --skip-build
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-mpd2/repos/community-any/PKGBUILD (from rev 435089, 
python-mpd2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 14:19:55 UTC (rev 435090)
@@ -0,0 +1,35 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Jörg Thalheim 
+# Contributor: Emmanuel Gil Peyrot 
+# Contributor: Peter Richard Lewis 
+# Contributor: Wieland Hoffmann 
+# Contributor: stonecrest 
+
+pkgname=python-mpd2
+pkgver=1.0.0
+pkgrel=3
+pkgdesc='Python library which provides a client interface for the Music Player 
Daemon'
+url=https://github.com/Mic92/python-mpd2
+license=(GPL3)
+depends=(python)
+makedepends=(
+  git
+  python-setuptools
+)
+arch=(any)
+source=(git+https://github.com/Mic92/python-mpd2.git#tag=v${pkgver})
+sha256sums=(SKIP)
+
+build() {
+  cd python-mpd2
+
+  python setup.py build
+}
+
+package() {
+  cd python-mpd2
+
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}
+
+# vim: ts=2 sw=2 et:


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

2019-02-21 Thread Nicola Squartini via arch-commits
Date: Thursday, February 21, 2019 @ 14:13:26
  Author: tensor5
Revision: 435086

upgpkg: go-ethereum 1.8.23-1

Modified:
  go-ethereum/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 14:12:42 UTC (rev 435085)
+++ PKGBUILD2019-02-21 14:13:26 UTC (rev 435086)
@@ -1,8 +1,8 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=go-ethereum
-pkgver=1.8.22
-_commit=7fa3509e2eaf1a4ebc12344590e5699406690f15
+pkgver=1.8.23
+_commit=c942700427557e3ff6de3aaf6b916e2f056c1ec2
 pkgrel=1
 pkgdesc='Official Go implementation of the Ethereum protocol'
 arch=('x86_64')


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

2019-02-21 Thread Nicola Squartini via arch-commits
Date: Thursday, February 21, 2019 @ 14:13:36
  Author: tensor5
Revision: 435088

archrelease: copy trunk to community-x86_64

Added:
  go-ethereum/repos/community-x86_64/PKGBUILD
(from rev 435087, go-ethereum/trunk/PKGBUILD)
Deleted:
  go-ethereum/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 14:13:26 UTC (rev 435087)
+++ PKGBUILD2019-02-21 14:13:36 UTC (rev 435088)
@@ -1,29 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=go-ethereum
-pkgver=1.8.22
-_commit=7fa3509e2eaf1a4ebc12344590e5699406690f15
-pkgrel=1
-pkgdesc='Official Go implementation of the Ethereum protocol'
-arch=('x86_64')
-url='https://geth.ethereum.org/'
-license=('GPL3')
-depends=('glibc')
-makedepends=('git' 'go-pie')
-provides=('geth')
-conflicts=('geth')
-replaces=('geth')
-source=("git+https://github.com/ethereum/go-ethereum.git#commit=${_commit};)
-sha256sums=('SKIP')
-
-build() {
-cd ${pkgname}
-
-make all
-}
-
-package() {
-cd ${pkgname}
-
-install -Dm755 -t "${pkgdir}"/usr/bin build/bin/*
-}

Copied: go-ethereum/repos/community-x86_64/PKGBUILD (from rev 435087, 
go-ethereum/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 14:13:36 UTC (rev 435088)
@@ -0,0 +1,29 @@
+# Maintainer: Nicola Squartini 
+
+pkgname=go-ethereum
+pkgver=1.8.23
+_commit=c942700427557e3ff6de3aaf6b916e2f056c1ec2
+pkgrel=1
+pkgdesc='Official Go implementation of the Ethereum protocol'
+arch=('x86_64')
+url='https://geth.ethereum.org/'
+license=('GPL3')
+depends=('glibc')
+makedepends=('git' 'go-pie')
+provides=('geth')
+conflicts=('geth')
+replaces=('geth')
+source=("git+https://github.com/ethereum/go-ethereum.git#commit=${_commit};)
+sha256sums=('SKIP')
+
+build() {
+cd ${pkgname}
+
+make all
+}
+
+package() {
+cd ${pkgname}
+
+install -Dm755 -t "${pkgdir}"/usr/bin build/bin/*
+}


[arch-commits] Commit in fossil/repos/community-x86_64 (8 files)

2019-02-21 Thread Anatol Pomozov via arch-commits
Date: Thursday, February 21, 2019 @ 14:13:26
  Author: anatolik
Revision: 435087

archrelease: copy trunk to community-x86_64

Added:
  fossil/repos/community-x86_64/PKGBUILD
(from rev 435085, fossil/trunk/PKGBUILD)
  fossil/repos/community-x86_64/fossil-xinetd
(from rev 435085, fossil/trunk/fossil-xinetd)
  fossil/repos/community-x86_64/fossil.service
(from rev 435085, fossil/trunk/fossil.service)
  fossil/repos/community-x86_64/fossil.socket
(from rev 435085, fossil/trunk/fossil.socket)
Deleted:
  fossil/repos/community-x86_64/PKGBUILD
  fossil/repos/community-x86_64/fossil-xinetd
  fossil/repos/community-x86_64/fossil.service
  fossil/repos/community-x86_64/fossil.socket

+
 PKGBUILD   |   88 +++
 fossil-xinetd  |   46 ++--
 fossil.service |   22 ++---
 fossil.socket  |   20 ++--
 4 files changed, 88 insertions(+), 88 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 14:13:26 UTC (rev 435086)
+++ PKGBUILD2019-02-21 14:13:26 UTC (rev 435087)
@@ -1,44 +0,0 @@
-# Maintainer: Anatol Pomozov  
-# Contributor: Daniel YC Lin 
-# Contributor: Konstantin Plotnikov 
-
-pkgname=fossil
-pkgver=2.7
-pkgrel=1
-pkgdesc='Simple, high-reliability, distributed software configuration 
management'
-arch=(x86_64)
-license=(BSD)
-url='http://www.fossil-scm.org'
-depends=(openssl zlib sqlite)
-makedepends=(tcl)
-optdepends=(tcl)
-backup=(etc/xinetd.d/fossil)
-source=(
-  fossil.socket
-  fossil.service
-  fossil-xinetd
-  https://www.fossil-scm.org/index.html/uv/fossil-src-$pkgver.tar.gz
-)
-sha256sums=('f885e17998dc1eece1688a75e516663462fe72a7f4f132def4132055777c7ff8'
-'c4973079facf209d3757db81df08f8d0843ede242f2a0c12281720da65e3b166'
-'2f9a141fadfb7cb5225f0d65a308949bbc592bff9d567b5c472edb413c81f5aa'
-'2c24359131d7495e47dc95021eb35f1ba408ded9087e36370d94742a4011033c')
-
-build() {
-  cd fossil-$pkgver
-  ./configure --prefix=/usr --json --disable-internal-sqlite --with-tcl=/usr 
--with-tcl-private-stubs=1
-  # headers and translate targets are problematic with parallel jobs
-  #make -j1 bld bld/headers
-  make
-}
-
-package() {
-  install -Dm644 fossil-xinetd "$pkgdir"/etc/xinetd.d/fossil
-  install -Dm644 fossil.socket "$pkgdir"/usr/lib/systemd/system/fossil.socket
-  install -Dm644 fossil.service 
"$pkgdir"/usr/lib/systemd/system/fossil@.service
-
-  cd fossil-$pkgver
-  install -Dm755 fossil "$pkgdir"/usr/bin/fossil
-  install -Dm644 tools/fossil-autocomplete.bash 
"$pkgdir"/usr/share/bash-completion/completions/fossil
-  install -Dm644 COPYRIGHT-BSD2.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: fossil/repos/community-x86_64/PKGBUILD (from rev 435085, 
fossil/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 14:13:26 UTC (rev 435087)
@@ -0,0 +1,44 @@
+# Maintainer: Anatol Pomozov  
+# Contributor: Daniel YC Lin 
+# Contributor: Konstantin Plotnikov 
+
+pkgname=fossil
+pkgver=2.8
+pkgrel=1
+pkgdesc='Simple, high-reliability, distributed software configuration 
management'
+arch=(x86_64)
+license=(BSD)
+url='http://www.fossil-scm.org'
+depends=(openssl zlib sqlite)
+makedepends=(tcl)
+optdepends=(tcl)
+backup=(etc/xinetd.d/fossil)
+source=(
+  fossil.socket
+  fossil.service
+  fossil-xinetd
+  https://www.fossil-scm.org/index.html/uv/fossil-src-$pkgver.tar.gz
+)
+sha256sums=('f885e17998dc1eece1688a75e516663462fe72a7f4f132def4132055777c7ff8'
+'c4973079facf209d3757db81df08f8d0843ede242f2a0c12281720da65e3b166'
+'2f9a141fadfb7cb5225f0d65a308949bbc592bff9d567b5c472edb413c81f5aa'
+'6a32bec73de26ff5cc8bbb0b7b45360f4e4145931fd215ed91414ed190b3715d')
+
+build() {
+  cd fossil-$pkgver
+  ./configure --prefix=/usr --json --disable-internal-sqlite --with-tcl=/usr 
--with-tcl-private-stubs=1
+  # headers and translate targets are problematic with parallel jobs
+  #make -j1 bld bld/headers
+  make
+}
+
+package() {
+  install -Dm644 fossil-xinetd "$pkgdir"/etc/xinetd.d/fossil
+  install -Dm644 fossil.socket "$pkgdir"/usr/lib/systemd/system/fossil.socket
+  install -Dm644 fossil.service 
"$pkgdir"/usr/lib/systemd/system/fossil@.service
+
+  cd fossil-$pkgver
+  install -Dm755 fossil "$pkgdir"/usr/bin/fossil
+  install -Dm644 tools/fossil-autocomplete.bash 
"$pkgdir"/usr/share/bash-completion/completions/fossil
+  install -Dm644 COPYRIGHT-BSD2.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: fossil-xinetd
===
--- fossil-xinetd   2019-02-21 14:13:26 UTC (rev 435086)
+++ fossil-xinetd   2019-02-21 14:13:26 UTC (rev 435087)
@@ -1,23 +0,0 @@
-service fossil
-{
-#better not change any of these
-type = UNLISTED
-socket_type = stream
-protocol = tcp

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

2019-02-21 Thread Anatol Pomozov via arch-commits
Date: Thursday, February 21, 2019 @ 14:12:42
  Author: anatolik
Revision: 435085

upgpkg: fossil 2.8-1

Modified:
  fossil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 14:06:53 UTC (rev 435084)
+++ PKGBUILD2019-02-21 14:12:42 UTC (rev 435085)
@@ -3,7 +3,7 @@
 # Contributor: Konstantin Plotnikov 
 
 pkgname=fossil
-pkgver=2.7
+pkgver=2.8
 pkgrel=1
 pkgdesc='Simple, high-reliability, distributed software configuration 
management'
 arch=(x86_64)
@@ -22,7 +22,7 @@
 sha256sums=('f885e17998dc1eece1688a75e516663462fe72a7f4f132def4132055777c7ff8'
 'c4973079facf209d3757db81df08f8d0843ede242f2a0c12281720da65e3b166'
 '2f9a141fadfb7cb5225f0d65a308949bbc592bff9d567b5c472edb413c81f5aa'
-'2c24359131d7495e47dc95021eb35f1ba408ded9087e36370d94742a4011033c')
+'6a32bec73de26ff5cc8bbb0b7b45360f4e4145931fd215ed91414ed190b3715d')
 
 build() {
   cd fossil-$pkgver


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

2019-02-21 Thread Nicola Squartini via arch-commits
Date: Thursday, February 21, 2019 @ 14:03:15
  Author: tensor5
Revision: 435032

upgpkg: parity-ethereum 2.2.11-1

Modified:
  parity-ethereum/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 13:53:38 UTC (rev 435031)
+++ PKGBUILD2019-02-21 14:03:15 UTC (rev 435032)
@@ -1,8 +1,8 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=parity-ethereum
-pkgver=2.2.9
-_commit=5d5b372f4452e3bc3c3f1917fde4c0c2252b897a
+pkgver=2.2.11
+_commit=8e31051c432487d75c6c645b7da889e770abe4d7
 pkgrel=1
 pkgdesc='Fast, light, robust Ethereum implementation'
 arch=('x86_64')


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

2019-02-21 Thread Nicola Squartini via arch-commits
Date: Thursday, February 21, 2019 @ 14:03:34
  Author: tensor5
Revision: 435033

archrelease: copy trunk to community-x86_64

Added:
  parity-ethereum/repos/community-x86_64/PKGBUILD
(from rev 435032, parity-ethereum/trunk/PKGBUILD)
  parity-ethereum/repos/community-x86_64/parity.service
(from rev 435032, parity-ethereum/trunk/parity.service)
Deleted:
  parity-ethereum/repos/community-x86_64/PKGBUILD
  parity-ethereum/repos/community-x86_64/parity.service

+
 PKGBUILD   |   76 +++
 parity.service |   18 ++---
 2 files changed, 47 insertions(+), 47 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 14:03:15 UTC (rev 435032)
+++ PKGBUILD2019-02-21 14:03:34 UTC (rev 435033)
@@ -1,38 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=parity-ethereum
-pkgver=2.2.9
-_commit=5d5b372f4452e3bc3c3f1917fde4c0c2252b897a
-pkgrel=1
-pkgdesc='Fast, light, robust Ethereum implementation'
-arch=('x86_64')
-url='https://parity.io/'
-license=('GPL3')
-depends=('libsystemd')
-makedepends=('cmake' 'git' 'rust' 'systemd')
-provides=('parity')
-conflicts=('parity')
-replaces=('parity')
-source=("git+https://github.com/paritytech/parity-ethereum.git#commit=${_commit};
-'parity.service')
-sha256sums=('SKIP'
-'2b3714df9417fa11b7636114b8a5f126c2f6fd3934e74d81bdc85061e8d6e737')
-
-build() {
-cd ${pkgname}
-
-cargo build --release --features final
-cargo build --release -p evmbin
-cargo build --release -p ethstore-cli
-cargo build --release -p ethkey-cli
-cargo build --release -p whisper-cli
-}
-
-package() {
-cd ${pkgname}
-
-install -Dm755 -t "${pkgdir}"/usr/bin \
-target/release/{ethstore,parity,parity-evm,whisper}
-install -Dm755 target/release/ethkey "${pkgdir}"/usr/bin/parity-ethkey
-install -Dm644 -t "${pkgdir}"/usr/lib/systemd/user ../parity.service
-}

Copied: parity-ethereum/repos/community-x86_64/PKGBUILD (from rev 435032, 
parity-ethereum/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 14:03:34 UTC (rev 435033)
@@ -0,0 +1,38 @@
+# Maintainer: Nicola Squartini 
+
+pkgname=parity-ethereum
+pkgver=2.2.11
+_commit=8e31051c432487d75c6c645b7da889e770abe4d7
+pkgrel=1
+pkgdesc='Fast, light, robust Ethereum implementation'
+arch=('x86_64')
+url='https://parity.io/'
+license=('GPL3')
+depends=('systemd-libs')
+makedepends=('cmake' 'git' 'rust' 'systemd')
+provides=('parity')
+conflicts=('parity')
+replaces=('parity')
+source=("git+https://github.com/paritytech/parity-ethereum.git#commit=${_commit};
+'parity.service')
+sha256sums=('SKIP'
+'2b3714df9417fa11b7636114b8a5f126c2f6fd3934e74d81bdc85061e8d6e737')
+
+build() {
+cd ${pkgname}
+
+cargo build --release --features final
+cargo build --release -p evmbin
+cargo build --release -p ethstore-cli
+cargo build --release -p ethkey-cli
+cargo build --release -p whisper-cli
+}
+
+package() {
+cd ${pkgname}
+
+install -Dm755 -t "${pkgdir}"/usr/bin \
+target/release/{ethstore,parity,parity-evm,whisper}
+install -Dm755 target/release/ethkey "${pkgdir}"/usr/bin/parity-ethkey
+install -Dm644 -t "${pkgdir}"/usr/lib/systemd/user ../parity.service
+}

Deleted: parity.service
===
--- parity.service  2019-02-21 14:03:15 UTC (rev 435032)
+++ parity.service  2019-02-21 14:03:34 UTC (rev 435033)
@@ -1,9 +0,0 @@
-[Unit]
-Description=Parity Daemon
-After=network.target
-
-[Service]
-ExecStart=/usr/bin/parity
-
-[Install]
-WantedBy=default.target

Copied: parity-ethereum/repos/community-x86_64/parity.service (from rev 435032, 
parity-ethereum/trunk/parity.service)
===
--- parity.service  (rev 0)
+++ parity.service  2019-02-21 14:03:34 UTC (rev 435033)
@@ -0,0 +1,9 @@
+[Unit]
+Description=Parity Daemon
+After=network.target
+
+[Service]
+ExecStart=/usr/bin/parity
+
+[Install]
+WantedBy=default.target


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

2019-02-21 Thread Antonio Rojas via arch-commits
Date: Thursday, February 21, 2019 @ 13:59:28
  Author: arojas
Revision: 346622

archrelease: copy trunk to extra-x86_64

Added:
  unrar/repos/extra-x86_64/PKGBUILD
(from rev 346621, unrar/trunk/PKGBUILD)
Deleted:
  unrar/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 13:59:08 UTC (rev 346621)
+++ PKGBUILD2019-02-21 13:59:28 UTC (rev 346622)
@@ -1,39 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Giovanni Scafora 
-# Contributor: dorphell 
-
-pkgbase=unrar
-pkgname=(unrar libunrar)
-pkgver=5.7.1
-pkgrel=1
-epoch=1
-arch=(x86_64)
-url="https://www.rarlab.com/rar_add.htm;
-license=(custom)
-source=("https://www.rarlab.com/rar/unrarsrc-${pkgver}.tar.gz;)
-sha256sums=('d208abcceecfee0084bb8a93e9b756319d906a3ac6380ee5d10285fb0ffc4d65')
-
-build() {
-  cp -a unrar libunrar
-  make -C libunrar lib
-  make -C unrar STRIP="true"
-}
-
-package_unrar() {
-  pkgdesc="The RAR uncompression program"
-  depends=(gcc-libs)
-  cd unrar
-  install -Dm755 unrar "$pkgdir"/usr/bin/unrar
-  # install license
-  install -Dm644 license.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_libunrar() {
-  pkgdesc="Library and header file for applications that use libunrar"
-  depends=(gcc-libs)
-  cd libunrar
-  install -Dm755 libunrar.so "$pkgdir"/usr/lib/libunrar.so
-  install -Dm644 dll.hpp "$pkgdir"/usr/include/unrar/dll.hpp
-  # install license
-  install -Dm644 license.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: unrar/repos/extra-x86_64/PKGBUILD (from rev 346621, 
unrar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-21 13:59:28 UTC (rev 346622)
@@ -0,0 +1,39 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Giovanni Scafora 
+# Contributor: dorphell 
+
+pkgbase=unrar
+pkgname=(unrar libunrar)
+pkgver=5.7.2
+pkgrel=1
+epoch=1
+arch=(x86_64)
+url="https://www.rarlab.com/rar_add.htm;
+license=(custom)
+source=("https://www.rarlab.com/rar/unrarsrc-${pkgver}.tar.gz;)
+sha256sums=('46dd410ba57652e972a6c601e7500d01d0ca3257661577466c2cbf6f843cb13a')
+
+build() {
+  cp -a unrar libunrar
+  make -C libunrar lib
+  make -C unrar STRIP="true"
+}
+
+package_unrar() {
+  pkgdesc="The RAR uncompression program"
+  depends=(gcc-libs)
+  cd unrar
+  install -Dm755 unrar "$pkgdir"/usr/bin/unrar
+  # install license
+  install -Dm644 license.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_libunrar() {
+  pkgdesc="Library and header file for applications that use libunrar"
+  depends=(gcc-libs)
+  cd libunrar
+  install -Dm755 libunrar.so "$pkgdir"/usr/lib/libunrar.so
+  install -Dm644 dll.hpp "$pkgdir"/usr/include/unrar/dll.hpp
+  # install license
+  install -Dm644 license.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-02-21 Thread Antonio Rojas via arch-commits
Date: Thursday, February 21, 2019 @ 13:59:08
  Author: arojas
Revision: 346621

Update to 5.7.2

Modified:
  unrar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 13:01:40 UTC (rev 346620)
+++ PKGBUILD2019-02-21 13:59:08 UTC (rev 346621)
@@ -4,7 +4,7 @@
 
 pkgbase=unrar
 pkgname=(unrar libunrar)
-pkgver=5.7.1
+pkgver=5.7.2
 pkgrel=1
 epoch=1
 arch=(x86_64)
@@ -11,7 +11,7 @@
 url="https://www.rarlab.com/rar_add.htm;
 license=(custom)
 source=("https://www.rarlab.com/rar/unrarsrc-${pkgver}.tar.gz;)
-sha256sums=('d208abcceecfee0084bb8a93e9b756319d906a3ac6380ee5d10285fb0ffc4d65')
+sha256sums=('46dd410ba57652e972a6c601e7500d01d0ca3257661577466c2cbf6f843cb13a')
 
 build() {
   cp -a unrar libunrar


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

2019-02-21 Thread Antonio Rojas via arch-commits
Date: Thursday, February 21, 2019 @ 13:53:38
  Author: arojas
Revision: 435031

archrelease: copy trunk to community-x86_64

Added:
  giac/repos/community-x86_64/PKGBUILD
(from rev 435030, giac/trunk/PKGBUILD)
Deleted:
  giac/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-21 13:53:10 UTC (rev 435030)
+++ PKGBUILD2019-02-21 13:53:38 UTC (rev 435031)
@@ -1,43 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgbase=giac
-pkgname=(xcas libgiac)
-_pkgver=1.5.0-37
-pkgver=${_pkgver//-/.}
-pkgrel=1
-pkgdesc="A free computer algebra system"
-arch=(x86_64)
-url="http://www-fourier.ujf-grenoble.fr/~parisse/giac.html;
-license=(GPL3)
-makedepends=(mpfi gsl pari ntl lapack libpng libjpeg fltk texlive-core 
texlive-science hevea glpk libao gmp-ecm)
-source=("http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgbase}_${_pkgver}.tar.gz;)
-sha256sums=('780f0b19b1788f487551bbb2c6172df5b5bbece1093e598d1dc1abb1b9aed2b0')
-
-build() {
-  cd $pkgbase-${pkgver%.*}
-
-  ./configure --prefix=/usr
-  make
-}
-
-package_xcas() {
-  depends=(libgiac fltk)
-  conflicts=(giac)
-  provides=(giac)
-  replaces=(giac)
-
-  cd $pkgbase-${pkgver%.*}
-  make DESTDIR="$pkgdir" install
-
-  rm -r "$pkgdir"/usr/{lib,include}
-}
-
-package_libgiac() {
-  pkgdesc="Giac shared library"
-  depends=(mpfi gsl pari ntl lapack libpng curl glpk libao gmp-ecm)
-
-  cd $pkgbase-${pkgver%.*}
-  make DESTDIR="$pkgdir" install
-
-  rm -r "$pkgdir"/usr/{bin,share}
-}

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


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

2019-02-21 Thread Antonio Rojas via arch-commits
Date: Thursday, February 21, 2019 @ 13:53:10
  Author: arojas
Revision: 435030

Update to 1.5.0.43

Modified:
  giac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 13:39:53 UTC (rev 435029)
+++ PKGBUILD2019-02-21 13:53:10 UTC (rev 435030)
@@ -2,7 +2,7 @@
 
 pkgbase=giac
 pkgname=(xcas libgiac)
-_pkgver=1.5.0-37
+_pkgver=1.5.0-43
 pkgver=${_pkgver//-/.}
 pkgrel=1
 pkgdesc="A free computer algebra system"
@@ -11,7 +11,7 @@
 license=(GPL3)
 makedepends=(mpfi gsl pari ntl lapack libpng libjpeg fltk texlive-core 
texlive-science hevea glpk libao gmp-ecm)
 
source=("http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgbase}_${_pkgver}.tar.gz;)
-sha256sums=('780f0b19b1788f487551bbb2c6172df5b5bbece1093e598d1dc1abb1b9aed2b0')
+sha256sums=('b791eadaf4dee78d6d129aca8e26c7476ddd83f43d12d81cd7fdb716ef66a8c8')
 
 build() {
   cd $pkgbase-${pkgver%.*}


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 13:39:53
  Author: felixonmars
Revision: 435029

archrelease: copy trunk to community-staging-x86_64

Added:
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 435028, xmobar/trunk/PKGBUILD)

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

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 435028, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-21 13:39:53 UTC (rev 435029)
@@ -0,0 +1,45 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jelle van der Waa 
+# Contributer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.29.4
+pkgrel=25
+pkgdesc='Minimalistic Text Based Status Bar'
+url='https://hackage.haskell.org/package/xmobar'
+license=('BSD')
+arch=('x86_64')
+depends=('libxft' 'libxinerama' 'libxrandr' 'libxpm' 'ghc-libs' 'haskell-x11'
+ 'haskell-x11-xft' 'haskell-utf8-string' 'haskell-network-uri'
+ 'haskell-hinotify' 'haskell-stm' 'haskell-parsec' 
'haskell-parsec-numbers'
+ 'haskell-mtl' 'haskell-regex-base' 'haskell-regex-compat'
+ 'haskell-http' 'haskell-dbus' 'haskell-libmpd' 'haskell-iwlib'
+ 'wireless_tools' 'haskell-text' 'haskell-async' 
'haskell-extensible-exceptions')
+makedepends=('ghc')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/jaor/xmobar/archive/${pkgver}.tar.gz)
+sha512sums=('d56ce2ec6014f9bd1d224980524d91c0f72030d4559c001dfbc049902931541b9abd3c8f055cacc10fd3e7cdd067686cdc4f15fcdc37d4c50dfc59d6edcb036e')
+
+prepare() {
+  cd xmobar-$pkgver
+  sed -i -e 's/==.*0.3/== 0.4/' -e 's/< *4.12/<5/' -e 's/< *2.5/<3/' 
xmobar.cabal
+}
+
+build() {
+  cd xmobar-${pkgver}
+  runhaskell setup configure -O \
+--enable-shared \
+--prefix=/usr \
+--enable-executable-dynamic \
+--disable-library-vanilla \
+--flags="with_utf8 with_xft with_iwlib with_xpm with_inotify with_mpd 
with_dbus with_mpris"
+  runhaskell setup build
+}
+
+package() {
+  cd xmobar-${pkgver}
+  runhaskell setup copy --destdir="${pkgdir}"
+  install -Dm 644 license "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 13:39:15
  Author: felixonmars
Revision: 435028

upgpkg: xmobar 0.29.4-25

rebuild with auto-update 0.1.4.1

Modified:
  xmobar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 13:37:41 UTC (rev 435027)
+++ PKGBUILD2019-02-21 13:39:15 UTC (rev 435028)
@@ -5,7 +5,7 @@
 
 pkgname=xmobar
 pkgver=0.29.4
-pkgrel=24
+pkgrel=25
 pkgdesc='Minimalistic Text Based Status Bar'
 url='https://hackage.haskell.org/package/xmobar'
 license=('BSD')


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 13:36:54
  Author: felixonmars
Revision: 435026

upgpkg: tamarin-prover 1.4.1-28

rebuild with auto-update 0.1.4.1

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 13:34:56 UTC (rev 435025)
+++ PKGBUILD2019-02-21 13:36:54 UTC (rev 435026)
@@ -3,7 +3,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.4.1
-pkgrel=27
+pkgrel=28
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="http://tamarin-prover.github.io;
 license=("GPL")


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 13:37:41
  Author: felixonmars
Revision: 435027

archrelease: copy trunk to community-staging-x86_64

Added:
  tamarin-prover/repos/community-staging-x86_64/
  tamarin-prover/repos/community-staging-x86_64/PKGBUILD
(from rev 435026, tamarin-prover/trunk/PKGBUILD)

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

Copied: tamarin-prover/repos/community-staging-x86_64/PKGBUILD (from rev 
435026, tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-21 13:37:41 UTC (rev 435027)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=tamarin-prover
+pkgver=1.4.1
+pkgrel=28
+pkgdesc="The Tamarin prover for security protocol analysis"
+url="http://tamarin-prover.github.io;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'graphviz' 'maude' 'haskell-hunit' 'haskell-binary-orphans'
+ 'haskell-blaze-builder' 'haskell-blaze-html' 'haskell-cmdargs' 
'haskell-conduit'
+ 'haskell-fclabels' 'haskell-file-embed' 'haskell-gitrev' 
'haskell-http-types'
+ 'haskell-lifted-base' 'haskell-monad-unlift'
+ 'haskell-resourcet' 'haskell-safe' 'haskell-shakespeare' 
'haskell-threads'
+ 'haskell-wai' 'haskell-warp' 'haskell-yesod-core' 
'haskell-yesod-static'
+ 'haskell-tamarin-prover-utils' 'haskell-tamarin-prover-term'
+ 'haskell-tamarin-prover-theory')
+optdepends=('ocaml: for sapic support')
+makedepends=('ghc' 'ocaml')
+source=("tamarin-prover-$pkgver.tar.gz::https://github.com/tamarin-prover/tamarin-prover/archive/$pkgver.tar.gz;)
+sha512sums=('4d3aeae02be5d430bff6c55d78656e3c9a648674d235bfeb36ce227a39abd3054a132b99ff8040abf05d8e26506fe85d21ecfb6fce73062dd45b5ba98d941144')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+sed -i '/cp sapic/d' plugins/sapic/Makefile
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-executable-dynamic --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \
+-fthreaded -ftest-coverage -f-build-tests
+runhaskell Setup build
+
+cd plugins/sapic
+make -j1
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+install -Dm644 etc/filetype.vim 
"$pkgdir"/usr/share/vim/vimfiles/ftdetect/tamarin.vim
+install -Dm644 etc/spthy.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/spthy.vim
+install -Dm644 etc/sapic.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/sapic.vim
+
+cd plugins/sapic
+install -Dm755 sapic "$pkgdir"/usr/bin/sapic
+}


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 13:34:56
  Author: felixonmars
Revision: 435025

archrelease: copy trunk to community-staging-x86_64

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

---+
 PKGBUILD  |   75 
 stack.install |4 ++
 2 files changed, 79 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 435024, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-21 13:34:56 UTC (rev 435025)
@@ -0,0 +1,75 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=1.9.3
+pkgrel=70
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-conduit'
+ 'haskell-conduit-extra' 'haskell-cryptonite' 
'haskell-cryptonite-conduit' 'haskell-echo'
+ 'haskell-exceptions' 'haskell-extra' 'haskell-file-embed' 
'haskell-filelock'
+ 'haskell-fsnotify' 'haskell-generic-deriving' 'haskell-githash' 
'haskell-hackage-security'
+ 'haskell-hashable' 'haskell-hpack' 'haskell-hpc' 'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-microlens' 'haskell-mintty' 'haskell-monad-logger' 
'haskell-mono-traversable'
+ 'haskell-mustache' 'haskell-neat-interpolation' 'haskell-network-uri' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'haskell-optparse-simple' 
'haskell-path' 'haskell-path-io'
+ 'haskell-persistent' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
+ 'haskell-primitive' 'haskell-project-template' 
'haskell-regex-applicative-text'
+ 'haskell-resourcet' 'haskell-retry' 'haskell-rio' 'haskell-split' 
'haskell-store'
+ 'haskell-store-core' 'haskell-streaming-commons' 'haskell-tar' 
'haskell-temporary'
+ 'haskell-text-metrics' 'haskell-th-reify-many' 'haskell-tls' 
'haskell-typed-process'
+ 'haskell-unicode-transforms' 'haskell-unix-compat' 'haskell-unliftio'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-yaml' 
'haskell-zip-archive'
+ 'haskell-zlib' 'haskell-bindings-uname')
+makedepends=('ghc' 'git' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("git+https://github.com/commercialhaskell/stack.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  hpack
+  sed -i -e '/semigroups/d' -e 's/< *0.8/<1/' $pkgname.cabal
+}
+
+build() {
+  cd $pkgname
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+  -f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions -f-supported-build
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $pkgname
+  # cabal update
+  LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" 
runhaskell Setup test
+  # Integration tests will result in 4 failures on Arch currently
+}
+
+package() {
+  cd $pkgname
+
+  install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup copy --destdir="${pkgdir}"
+  install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+  LD_PRELOAD=$(ls "$pkgdir"/usr/lib/libHSstack-*-ghc*.so) 
"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+  install -Dm644 stack_completion_script 
"${pkgdir}/usr/share/bash-completion/completions/stack"
+}

Copied: stack/repos/community-staging-x86_64/stack.install (from rev 435024, 
stack/trunk/stack.install)
===
--- community-staging-x86_64/stack.install  (rev 0)
+++ community-staging-x86_64/stack.install  2019-02-21 13:34:56 UTC (rev 
435025)
@@ -0,0 +1,4 @@

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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 13:34:07
  Author: felixonmars
Revision: 435024

upgpkg: stack 1.9.3-70

rebuild with auto-update 0.1.4.1

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 13:27:25 UTC (rev 435023)
+++ PKGBUILD2019-02-21 13:34:07 UTC (rev 435024)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=1.9.3
-pkgrel=69
+pkgrel=70
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("BSD")


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 13:27:25
  Author: felixonmars
Revision: 435023

archrelease: copy trunk to community-staging-x86_64

Added:
  shellcheck/repos/community-staging-x86_64/
  shellcheck/repos/community-staging-x86_64/PKGBUILD
(from rev 435022, shellcheck/trunk/PKGBUILD)

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

Copied: shellcheck/repos/community-staging-x86_64/PKGBUILD (from rev 435022, 
shellcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-21 13:27:25 UTC (rev 435023)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ShellCheck
+pkgname=shellcheck
+pkgver=0.6.0
+pkgrel=46
+pkgdesc="Shell script analysis tool"
+url="http://www.shellcheck.net;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-quickcheck' 'haskell-regex-tdfa')
+makedepends=('ghc' 'pandoc')
+source=("$_hkgname-$pkgver.tar.gz::https://github.com/koalaman/shellcheck/archive/v$pkgver.tar.gz;)
+sha512sums=('4e9575985fe914cb35444995212ac1afaa40b004dbbc86b5987bf8b65e20b14a0102c9c601dc061d604129a8e978021f22a11d682545cb7f07ec974495cfa387')
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+
+pandoc -s -t man shellcheck.1.md -o shellcheck.1
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m644 ${pkgname}.1   "${pkgdir}/usr/share/man/man1/${pkgname}.1"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 21, 2019 @ 13:26:37
  Author: felixonmars
Revision: 435022

upgpkg: shellcheck 0.6.0-46

rebuild with auto-update 0.1.4.1

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-21 13:23:17 UTC (rev 435021)
+++ PKGBUILD2019-02-21 13:26:37 UTC (rev 435022)
@@ -4,7 +4,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.6.0
-pkgrel=45
+pkgrel=46
 pkgdesc="Shell script analysis tool"
 url="http://www.shellcheck.net;
 license=("GPL")


  1   2   3   >