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

2017-12-31 Thread Felix Yan via arch-commits
Date: Monday, January 1, 2018 @ 07:58:35
  Author: felixonmars
Revision: 277635

upgpkg: jenkins 2.99-1

Modified:
  jenkins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-01 03:44:42 UTC (rev 277634)
+++ PKGBUILD2018-01-01 07:58:35 UTC (rev 277635)
@@ -5,7 +5,7 @@
 # Contributor: Illarion Kovalchuk 
 
 pkgname=jenkins
-pkgver=2.98
+pkgver=2.99
 pkgrel=1
 pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
@@ -25,7 +25,7 @@
 'jenkins.tmpfiles'
 'jenkins.sysusers'
 'LICENSE')
-sha512sums=('880d4e9008bb5c8b7fa380940f59847b77b15acf19912f3a842dfe9fb0efd0e25de1dde234ef56dbd67164db66f2faaf402c4aa984d99cedf8867d764545d463'
+sha512sums=('2a6cc7fb7f894691e762cdef17b727b73c3444e6fe775d6b1cebf3ce240bc9e27750294ea92e95cae8b79f3ebadf16fe5cd04d23cf9a78024c02d82f7db7b328'
 
'3a8421cef3953d899c150609f959cf5d5dd6d08d079a5e0f48bfece4f3c80491722b9e90ef841fddb87401c226b8338297c5c4e83e55a33ef8d6e387de3048d0'
 
'a336b006d3711abb75b49a2e12c09ee61cf3275a2cdbbd3676480e2f6ca8ba0fb4b9c08f3f9da193252c4fca827e9a1d5eaad847d0a889445693427ae1571fe7'
 
'a845a7147be54affc586dfce9a188ec24c92e673e88dec0b62da386d2e597de6ecda103429008562abd897f179a52c37cf2188ebc65b8c636efd07d707e18f90'


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

2017-12-31 Thread Baptiste Jonglez via arch-commits
Date: Monday, January 1, 2018 @ 03:44:32
  Author: zorun
Revision: 277633

upgpkg: ring-daemon 2:20171215.1.bc414d7-3

boost 1.66 rebuild

Modified:
  ring-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-01 01:33:07 UTC (rev 277632)
+++ PKGBUILD2018-01-01 03:44:32 UTC (rev 277633)
@@ -2,7 +2,7 @@
 
 pkgname=ring-daemon
 pkgver=20171215.1.bc414d7
-pkgrel=2
+pkgrel=3
 epoch=2
 pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (daemon)"
 arch=("x86_64")


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

2017-12-31 Thread Baptiste Jonglez via arch-commits
Date: Monday, January 1, 2018 @ 03:44:42
  Author: zorun
Revision: 277634

archrelease: copy trunk to community-staging-x86_64

Added:
  ring-daemon/repos/community-staging-x86_64/
  ring-daemon/repos/community-staging-x86_64/PKGBUILD
(from rev 277633, ring-daemon/trunk/PKGBUILD)

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

Copied: ring-daemon/repos/community-staging-x86_64/PKGBUILD (from rev 277633, 
ring-daemon/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-01 03:44:42 UTC (rev 277634)
@@ -0,0 +1,53 @@
+# Maintainer: Baptiste Jonglez 
+
+pkgname=ring-daemon
+pkgver=20171215.1.bc414d7
+pkgrel=3
+epoch=2
+pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (daemon)"
+arch=("x86_64")
+url="https://ring.cx;
+license=('GPL3')
+groups=("ring")
+depends=('opendht' 'yaml-cpp' 'alsa-lib' 'libpulse' 'jack' 'jsoncpp'
+ 'libsamplerate' 'libsndfile' 'dbus-c++' 'ffmpeg' 'udev' 'gnutls'
+ 'expat' 'gsm' 'libupnp' 'libnatpmp' 'libva' 'libvdpau' 'restbed'
+ 'libsecp256k1' 'pjproject-savoirfairelinux')
+makedepends=('git' 'boost' 'msgpack-c' 'autoconf-archive')
+#checkdepends=('cppunit')
+source=("git+https://gerrit-ring.savoirfairelinux.com/ring-daemon#commit=d08826f038f6fe9a275ba66ff8d0af60a78a7f88;)
+md5sums=('SKIP')
+
+build() {
+  cd "${pkgname}"
+
+  msg2 'Building...'
+  autoreconf --force --install --verbose
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--libexecdir=/usr/bin \
+--sysconfdir=/etc \
+--with-contrib="no" \
+--enable-ipv6
+  DISABLE_CONTRIB_DOWNLOADS="TRUE" make
+}
+
+# Disabled because some tests (TURN) use the network.
+#check() {
+#  cd "${pkgname}"
+#  make -k check
+#}
+
+package() {
+  cd "${pkgname}"
+
+  msg2 'Installing...'
+  DISABLE_CONTRIB_DOWNLOADS="TRUE" make DESTDIR="$pkgdir" install
+
+  msg2 'Cleaning up pkgdir...'
+  find "$pkgdir" -type d -name .git -exec rm -r '{}' +
+  find "$pkgdir" -type f -name .gitignore -exec rm -r '{}' +
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-12-31 Thread Kyle Keen via arch-commits
Date: Monday, January 1, 2018 @ 01:32:54
  Author: kkeen
Revision: 277631

boost 1.66.0 rebuild

Modified:
  cryptominisat5/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-01 01:27:45 UTC (rev 277630)
+++ PKGBUILD2018-01-01 01:32:54 UTC (rev 277631)
@@ -6,7 +6,7 @@
 
 pkgname=cryptominisat5
 pkgver=5.0.1
-pkgrel=3
+pkgrel=4
 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/;


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

2017-12-31 Thread Kyle Keen via arch-commits
Date: Monday, January 1, 2018 @ 01:33:07
  Author: kkeen
Revision: 277632

archrelease: copy trunk to community-staging-x86_64

Added:
  cryptominisat5/repos/community-staging-x86_64/
  cryptominisat5/repos/community-staging-x86_64/PKGBUILD
(from rev 277631, cryptominisat5/trunk/PKGBUILD)

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

Copied: cryptominisat5/repos/community-staging-x86_64/PKGBUILD (from rev 
277631, cryptominisat5/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-01 01:33:07 UTC (rev 277632)
@@ -0,0 +1,67 @@
+# $Id$
+# 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.0.1
+pkgrel=4
+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=('45203be947368de75b44cf734cbac1d7')
+
+# 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() {
+  return
+  python2 -c "from pycryptosat import Solver"
+  return
+  cd "$srcdir/cryptominisat-$pkgver/build/pycryptosat"
+  ln -s pycryptosat.so libcryptominisat5.so.5.0
+  cd "$srcdir/cryptominisat-$pkgver/python"
+  ln -s "$srcdir/cryptominisat-$pkgver/build/pycryptosat/pycryptosat.so" 
libcryptominisat5.so.5.0
+  PYTHONPATH=$PYTHONPATH:$srcdir/cryptominisat-$pkgver/build/pycryptosat 
python2 test_pycryptosat.py
+}
+
+package() {
+  cd cryptominisat-$pkgver
+  install -Dm644 LICENSE-SCALMC "$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}"
+}
+


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

2017-12-31 Thread Kyle Keen via arch-commits
Date: Monday, January 1, 2018 @ 01:27:45
  Author: kkeen
Revision: 277630

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2017-12-31 Thread Kyle Keen via arch-commits
Date: Monday, January 1, 2018 @ 01:27:30
  Author: kkeen
Revision: 277629

boost 1.66.0 rebuild

Modified:
  gqrx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-01 01:23:48 UTC (rev 277628)
+++ PKGBUILD2018-01-01 01:27:30 UTC (rev 277629)
@@ -4,7 +4,7 @@
 
 pkgname=gqrx
 pkgver=2.9
-pkgrel=1
+pkgrel=2
 pkgdesc="Interactive SDR receiver waterfall for many devices."
 arch=('x86_64')
 url="http://gqrx.dk/;


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

2017-12-31 Thread Kyle Keen via arch-commits
Date: Monday, January 1, 2018 @ 01:23:48
  Author: kkeen
Revision: 277628

archrelease: copy trunk to community-staging-x86_64

Added:
  gnuradio-osmosdr/repos/community-staging-x86_64/
  gnuradio-osmosdr/repos/community-staging-x86_64/PKGBUILD
(from rev 277627, gnuradio-osmosdr/trunk/PKGBUILD)

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

Copied: gnuradio-osmosdr/repos/community-staging-x86_64/PKGBUILD (from rev 
277627, gnuradio-osmosdr/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-01 01:23:48 UTC (rev 277628)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+pkgname=gnuradio-osmosdr
+_pkgname=gr-osmosdr
+pkgver=0.1.4
+pkgrel=25
+pkgdesc="Source block for Funcube Dongle, RTL-SDR, USRP, OsmoSDR, BladeRF, 
HackRF and AirSpy devices"
+url="http://sdr.osmocom.org/trac/;
+arch=('x86_64')
+license=('GPL')
+depends=('gnuradio' 'gnuradio-iqbal' 'rtl-sdr' 'gnuradio-fcdproplus' 'hackrf' 
'bladerf' 'airspy')
+optdepends=('python2-opengl: osmocom_fft')
+makedepends=('git' 'cmake' 'boost' 'python2-cheetah' 'swig')
+conflicts=('gr-osmosdr-git')
+replaces=('gr-osmosdr')
+source=("git://git.osmocom.org/gr-osmosdr#tag=v$pkgver")
+md5sums=('SKIP')
+
+# add support for miri, osmo?
+
+prepare() {
+  cd "$srcdir/$_pkgname"
+  sed -i 's/python$/python2/' apps/osmocom_siggen_base.py
+}
+
+build() {
+  cd "$srcdir/$_pkgname"
+  mkdir build
+  cd build
+  cmake \
+-Wno-dev \
+-DCMAKE_BUILD_TYPE=Release \
+-DPYTHON_EXECUTABLE=$(which python2) \
+-DPYTHON_INCLUDE_DIR=$(echo /usr/include/python2*) \
+-DPYTHON_LIBRARY=$(echo /usr/lib/libpython2.*.so) \
+-DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+}
+
+package() {
+  cd "$srcdir/$_pkgname/build/"
+  make DESTDIR="${pkgdir}" install
+}


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

2017-12-31 Thread Kyle Keen via arch-commits
Date: Monday, January 1, 2018 @ 01:23:31
  Author: kkeen
Revision: 277627

boost 1.66.0 rebuild

Modified:
  gnuradio-osmosdr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-01 01:19:59 UTC (rev 277626)
+++ PKGBUILD2018-01-01 01:23:31 UTC (rev 277627)
@@ -4,7 +4,7 @@
 pkgname=gnuradio-osmosdr
 _pkgname=gr-osmosdr
 pkgver=0.1.4
-pkgrel=24
+pkgrel=25
 pkgdesc="Source block for Funcube Dongle, RTL-SDR, USRP, OsmoSDR, BladeRF, 
HackRF and AirSpy devices"
 url="http://sdr.osmocom.org/trac/;
 arch=('x86_64')


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

2017-12-31 Thread Kyle Keen via arch-commits
Date: Monday, January 1, 2018 @ 01:19:59
  Author: kkeen
Revision: 277626

archrelease: copy trunk to community-staging-x86_64

Added:
  gnuradio-fcdproplus/repos/community-staging-x86_64/
  gnuradio-fcdproplus/repos/community-staging-x86_64/88-fcdproplus.rules
(from rev 277625, gnuradio-fcdproplus/trunk/88-fcdproplus.rules)
  gnuradio-fcdproplus/repos/community-staging-x86_64/PKGBUILD
(from rev 277625, gnuradio-fcdproplus/trunk/PKGBUILD)

-+
 88-fcdproplus.rules |9 +
 PKGBUILD|   42 ++
 2 files changed, 51 insertions(+)

Copied: gnuradio-fcdproplus/repos/community-staging-x86_64/88-fcdproplus.rules 
(from rev 277625, gnuradio-fcdproplus/trunk/88-fcdproplus.rules)
===
--- community-staging-x86_64/88-fcdproplus.rules
(rev 0)
+++ community-staging-x86_64/88-fcdproplus.rules2018-01-01 01:19:59 UTC 
(rev 277626)
@@ -0,0 +1,9 @@
+# Udev rules for the Funcube Dongle Pro (0xfb56) and Pro+ (0xfb31)
+
+# HIDAPI/libusb:
+SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb56" MODE:="0666"
+SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb31" MODE:="0666"
+
+# HIDAPI/hidraw:
+KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb56", MODE="0666"
+KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb31", MODE="0666"

Copied: gnuradio-fcdproplus/repos/community-staging-x86_64/PKGBUILD (from rev 
277625, gnuradio-fcdproplus/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-01 01:19:59 UTC (rev 277626)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+pkgname=gnuradio-fcdproplus
+_pkgname=gr-fcdproplus
+pkgver=3.7.5
+pkgrel=11
+_tag=fcdproplus-0.1.0
+pkgdesc="GNU Radio source block for Funcube Dongle Pro +"
+arch=('x86_64')
+url="https://github.com/dl1ksv/gr-fcdproplus;
+license=('GPL3')
+depends=('gnuradio' 'libusb' 'alsa-lib' 'boost-libs')
+makedepends=('git' 'cmake' 'boost' 'swig' 'systemd')
+# systemd for FS#54735 (libudev.h)
+replaces=('gr-fcdproplus')
+source=("git://github.com/dl1ksv/gr-fcdproplus.git#tag=$_tag"
+"88-fcdproplus.rules")
+md5sums=('SKIP'
+ '465e12c454c6a22ebec9849181af7bdc')
+
+prepare() {
+  cd "$srcdir/$_pkgname"
+}
+
+build() {
+  cd "$srcdir/$_pkgname"
+  mkdir -p build
+  cd build
+  cmake \
+-DPYTHON_EXECUTABLE=$(which python2) \
+-DPYTHON_INCLUDE_DIR=$(echo /usr/include/python2*) \
+-DPYTHON_LIBRARY=$(echo /usr/lib/libpython2.*.so) \
+-DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+}
+
+package() {
+  cd "$srcdir/$_pkgname/build/"
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 "$srcdir/88-fcdproplus.rules" 
"$pkgdir/etc/udev/rules.d/88-fcdproplus.rules"
+}


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

2017-12-31 Thread Kyle Keen via arch-commits
Date: Monday, January 1, 2018 @ 01:19:38
  Author: kkeen
Revision: 277625

boost 1.66.0 rebuild

Modified:
  gnuradio-fcdproplus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-01 01:13:45 UTC (rev 277624)
+++ PKGBUILD2018-01-01 01:19:38 UTC (rev 277625)
@@ -4,7 +4,7 @@
 pkgname=gnuradio-fcdproplus
 _pkgname=gr-fcdproplus
 pkgver=3.7.5
-pkgrel=10
+pkgrel=11
 _tag=fcdproplus-0.1.0
 pkgdesc="GNU Radio source block for Funcube Dongle Pro +"
 arch=('x86_64')


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

2017-12-31 Thread Kyle Keen via arch-commits
Date: Monday, January 1, 2018 @ 01:13:31
  Author: kkeen
Revision: 277623

boost 1.66.0 rebuild

Modified:
  gnuradio-iqbal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-01 01:07:07 UTC (rev 277622)
+++ PKGBUILD2018-01-01 01:13:31 UTC (rev 277623)
@@ -4,7 +4,7 @@
 pkgname=gnuradio-iqbal
 _pkgname=gr-iqbal
 pkgver=0.37.2
-pkgrel=26
+pkgrel=27
 pkgdesc="Gnuradio I/Q balancing"
 arch=('x86_64')
 url="http://cgit.osmocom.org/gr-iqbal/;


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

2017-12-31 Thread Kyle Keen via arch-commits
Date: Monday, January 1, 2018 @ 01:13:45
  Author: kkeen
Revision: 277624

archrelease: copy trunk to community-staging-x86_64

Added:
  gnuradio-iqbal/repos/community-staging-x86_64/
  gnuradio-iqbal/repos/community-staging-x86_64/PKGBUILD
(from rev 277623, gnuradio-iqbal/trunk/PKGBUILD)

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

Copied: gnuradio-iqbal/repos/community-staging-x86_64/PKGBUILD (from rev 
277623, gnuradio-iqbal/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-01 01:13:45 UTC (rev 277624)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+pkgname=gnuradio-iqbal
+_pkgname=gr-iqbal
+pkgver=0.37.2
+pkgrel=27
+pkgdesc="Gnuradio I/Q balancing"
+arch=('x86_64')
+url="http://cgit.osmocom.org/gr-iqbal/;
+license=('GPL')
+depends=('gnuradio' 'fftw')
+replaces=('gr-iqbal')
+makedepends=('git' 'cmake' 'boost' 'swig')
+source=("git://git.osmocom.org/gr-iqbal/#tag=v$pkgver")
+md5sums=('SKIP')
+
+build() {
+  cd "$srcdir/$_pkgname"
+  git submodule init
+  git submodule update
+  sed -i 's/LIBOSMODSP_LIBRARIES ""/LIBOSMODSP_LIBRARIES ${FFTW3F_LIBRARIES}/' 
CMakeLists.txt 
+  mkdir build
+  cd build
+  cmake \
+-Wno-dev \
+-DCMAKE_BUILD_TYPE=Release \
+-DPYTHON_EXECUTABLE=$(which python2) \
+-DPYTHON_INCLUDE_DIR=$(echo /usr/include/python2*) \
+-DPYTHON_LIBRARY=$(echo /usr/lib/libpython2.*.so) \
+-DCMAKE_LIBRARY_PATH=/usr/lib \
+-DCMAKE_INSTALL_PREFIX=/usr ../
+  make
+}
+
+package() {
+  cd "$srcdir/$_pkgname/build/"
+  make DESTDIR="${pkgdir}" install
+}


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

2017-12-31 Thread Kyle Keen via arch-commits
Date: Monday, January 1, 2018 @ 01:07:07
  Author: kkeen
Revision: 277622

archrelease: copy trunk to community-staging-x86_64

Added:
  gnuradio/repos/community-staging-x86_64/
  gnuradio/repos/community-staging-x86_64/21-fcd.rules
(from rev 277621, gnuradio/trunk/21-fcd.rules)
  gnuradio/repos/community-staging-x86_64/PKGBUILD
(from rev 277621, gnuradio/trunk/PKGBUILD)
  gnuradio/repos/community-staging-x86_64/gnuradio-gcc7.patch
(from rev 277621, gnuradio/trunk/gnuradio-gcc7.patch)

-+
 21-fcd.rules|9 
 PKGBUILD|  110 ++
 gnuradio-gcc7.patch |   71 
 3 files changed, 190 insertions(+)

Copied: gnuradio/repos/community-staging-x86_64/21-fcd.rules (from rev 277621, 
gnuradio/trunk/21-fcd.rules)
===
--- community-staging-x86_64/21-fcd.rules   (rev 0)
+++ community-staging-x86_64/21-fcd.rules   2018-01-01 01:07:07 UTC (rev 
277622)
@@ -0,0 +1,9 @@
+# Udev rules for the Funcube Dongle Pro (0xfb56) and Pro+ (0xfb31)
+
+# HIDAPI/libusb:
+SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb56" MODE:="0666"
+SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb31" MODE:="0666"
+
+# HIDAPI/hidraw:
+KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb56", MODE="0666"
+KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", 
ATTRS{idProduct}=="fb31", MODE="0666"

Copied: gnuradio/repos/community-staging-x86_64/PKGBUILD (from rev 277621, 
gnuradio/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-01 01:07:07 UTC (rev 277622)
@@ -0,0 +1,110 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+# Contributor: Jonatan Sastre 
+pkgbase=gnuradio
+pkgname=(gnuradio gnuradio-companion)
+pkgver=3.7.11
+pkgrel=5
+pkgdesc="General purpose DSP and SDR toolkit.  With drivers for usrp and fcd."
+arch=('x86_64')
+url="http://gnuradio.org;
+license=('GPL')
+depends=('fftw' 'python2-numpy' 'cppunit' 'gsl' 'blas' 'boost-libs>=1.53'
+'libusbx' 'portaudio' 'libuhd' 'zeromq' 'libvolk')
+makedepends=('boost' 'cmake' 'python2-lxml' 'python2-cheetah' 'glu' 'swig'
+'pygtk' 'wxpython' 'python2-pyqwt' 'qwtplot3d')
+
+# todo
+# split the gui components?
+# build doxygen docs?
+# gr-video-sdl ?
+# icons
+
+# comedilib: gr-comedi
+# zeroc-ice: gr-ctrlport
+# doxygen: C++ autogenerated documentation
+# python2-sphinx: Python autogenerated documentation
+
+# secret release directory
+#source=("http://s3-dist.gnuradio.org/gnuradio-$pkgver.tar.gz;
+source=("https://gnuradio.org/releases/$pkgbase/$pkgbase-$pkgver.tar.gz;
+"https://gnuradio.org/releases/$pkgbase/$pkgbase-$pkgver.tar.gz.asc;
+"21-fcd.rules" "gnuradio-gcc7.patch")
+validpgpkeys=('B90DDFAC56989BF62262EB812987C77CBB8ED9B2') # GNU Radio Project
+md5sums=('7b7b871237ae6fc109d203f78c4654ef'
+ 'SKIP'
+ '465e12c454c6a22ebec9849181af7bdc'
+ 'c510104fa2ad9852a683c265c42ae1da')
+
+prepare() {
+  cd "$srcdir/$pkgbase-$pkgver"
+  msg "Replacing filenames to use python2."
+  sed -i -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
+$(find ./ -name '*.py') \
+$(find ./ -name 'gnuradio-companion' -o -name 'flow_graph.tmpl')
+  sed -i -e "s|#![ ]*/usr/bin/env /usr/bin/python$|#!/usr/bin/env python2|" \
+$(find ./ -name '*.py')
+  # fix build with GCC 7 (Fedora)
+  patch -p1 -i ../gnuradio-gcc7.patch
+}
+
+build() {
+  export PYTHON=python2
+  cd "$srcdir/$pkgbase-$pkgver"
+  sed -i -e "s|GR_PKG_LIBEXEC_DIR|GR_RUNTIME_DIR|" 
grc/scripts/freedesktop/CMakeLists.txt
+  sed -i -e "s|/qwt$|/qwt5|" -e "s| qwt | qwt5 |" cmake/Modules/FindQwt.cmake
+  sed -i -e "s| sphinx-build$| sphinx-build2|" cmake/Modules/FindSphinx.cmake
+  msg "Starting build."
+  mkdir -p build
+  cd build
+  cmake \
+-DPYTHON_EXECUTABLE=$(which python2) \
+-DPYTHON_INCLUDE_DIR=$(echo /usr/include/python2*) \
+-DPYTHON_LIBRARY=$(echo /usr/lib/libpython2.*.so) \
+-DENABLE_INTERNAL_VOLK=OFF \
+-DENABLE_GRC=ON \
+-DENABLE_GR_WXGUI=ON \
+-DENABLE_GR_QTGUI=ON \
+-DCMAKE_INSTALL_PREFIX=/usr -Wno-dev ../
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgbase-$pkgver/build"
+  export PYTHON=python2
+  #make test
+}
+
+package_gnuradio() {
+  optdepends=('boost: gr_modtool'
+  'swig: gr_modtool'
+  'cmake: gr_modtool'
+  'pkgconfig: libuhd')
+  cd "$srcdir"
+  install -Dm644 21-fcd.rules "$pkgdir/usr/lib/udev/rules.d/21-fcd.rules"
+  cd "$srcdir/$pkgbase-$pkgver/grc/scripts/freedesktop"
+  install -Dm644 gnuradio-grc.desktop 
"$pkgdir/usr/share/applications/gnuradio-grc.desktop"
+  cd 

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

2017-12-31 Thread Kyle Keen via arch-commits
Date: Monday, January 1, 2018 @ 01:06:44
  Author: kkeen
Revision: 277621

boost 1.66.0 rebuild

Modified:
  gnuradio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-01 00:48:59 UTC (rev 277620)
+++ PKGBUILD2018-01-01 01:06:44 UTC (rev 277621)
@@ -5,7 +5,7 @@
 pkgbase=gnuradio
 pkgname=(gnuradio gnuradio-companion)
 pkgver=3.7.11
-pkgrel=4
+pkgrel=5
 pkgdesc="General purpose DSP and SDR toolkit.  With drivers for usrp and fcd."
 arch=('x86_64')
 url="http://gnuradio.org;


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

2017-12-31 Thread Kyle Keen via arch-commits
Date: Monday, January 1, 2018 @ 00:48:37
  Author: kkeen
Revision: 277619

boost 1.66.0 rebuild

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 20:38:41 UTC (rev 277618)
+++ PKGBUILD2018-01-01 00:48:37 UTC (rev 277619)
@@ -5,7 +5,7 @@
 pkgname=libuhd
 pkgver=3.10.2.0
 _verstring='003_010_002_000'
-pkgrel=2
+pkgrel=3
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64')
 url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;
@@ -17,6 +17,14 @@
 
source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz;)
 md5sums=('f1e1977cd6c146daf800df681cb22944')
 
+prepare() {
+  cd "$srcdir/uhd-release_$_verstring/host"
+  # from commit d9d9d0a8a2e6, remove on 3.10.2.1
+  sed -i 's|socket->native()|socket->native_handle()|' 
examples/network_relay.cpp
+  sed -i 's|socket->native()|socket->native_handle()|' 
lib/transport/{tcp_zero_copy,udp_simple,udp_zero_copy}.cpp
+  sed -i 's|recver->native()|recver->native_handle()|' 
lib/usrp/e300/e300_network.cpp
+}
+
 build() {
   cd "$srcdir/uhd-release_$_verstring/host"
   # fix for py2


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

2017-12-31 Thread Kyle Keen via arch-commits
Date: Monday, January 1, 2018 @ 00:48:59
  Author: kkeen
Revision: 277620

archrelease: copy trunk to community-staging-x86_64

Added:
  libuhd/repos/community-staging-x86_64/
  libuhd/repos/community-staging-x86_64/PKGBUILD
(from rev 277619, libuhd/trunk/PKGBUILD)

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

Copied: libuhd/repos/community-staging-x86_64/PKGBUILD (from rev 277619, 
libuhd/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-01 00:48:59 UTC (rev 277620)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Dominik Heidler 
+
+pkgname=libuhd
+pkgver=3.10.2.0
+_verstring='003_010_002_000'
+pkgrel=3
+pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
+arch=('x86_64')
+url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;
+license=('GPL')
+depends=('boost-libs' 'orc' 'libusb')
+optdepends=('python2: usrp utils')
+makedepends=('cmake' 'boost' 'python2-cheetah' 'python2-mako')
+
+source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz;)
+md5sums=('f1e1977cd6c146daf800df681cb22944')
+
+prepare() {
+  cd "$srcdir/uhd-release_$_verstring/host"
+  # from commit d9d9d0a8a2e6, remove on 3.10.2.1
+  sed -i 's|socket->native()|socket->native_handle()|' 
examples/network_relay.cpp
+  sed -i 's|socket->native()|socket->native_handle()|' 
lib/transport/{tcp_zero_copy,udp_simple,udp_zero_copy}.cpp
+  sed -i 's|recver->native()|recver->native_handle()|' 
lib/usrp/e300/e300_network.cpp
+}
+
+build() {
+  cd "$srcdir/uhd-release_$_verstring/host"
+  # fix for py2
+  find -name "*.py" -or -name '*.py.in' | xargs sed -i "s|#!/usr/bin/env 
python$|#!/usr/bin/env python2|"
+
+  mkdir -p build
+  cd build
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr/ \
+   -DPYTHON_EXECUTABLE=/usr/bin/python2 \
+   -DENABLE_EXAMPLES=OFF \
+   -DENABLE_UTILS=ON \
+   -DENABLE_TESTS=OFF \
+   -DENABLE_E100=ON \
+   -DENABLE_E300=ON
+  make
+}
+
+check() {
+  cd "$srcdir/uhd-release_$_verstring/host/build"
+  make test
+}
+
+package() {
+  cd "$srcdir/uhd-release_$_verstring/host/build"
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "../utils/uhd-usrp.rules" 
"$pkgdir/usr/lib/udev/rules.d/10-uhd-usrp.rules"
+} 
+


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

2017-12-31 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 31, 2017 @ 20:38:41
  Author: alucryd
Revision: 277618

archrelease: copy trunk to community-x86_64

Added:
  retroarch/repos/community-x86_64/PKGBUILD
(from rev 277617, retroarch/trunk/PKGBUILD)
  retroarch/repos/community-x86_64/retroarch-config.patch
(from rev 277617, retroarch/trunk/retroarch-config.patch)
Deleted:
  retroarch/repos/community-x86_64/PKGBUILD
  retroarch/repos/community-x86_64/retroarch-config.patch

+
 PKGBUILD   |  134 +--
 retroarch-config.patch |  134 +++
 2 files changed, 127 insertions(+), 141 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-31 20:38:28 UTC (rev 277617)
+++ PKGBUILD2017-12-31 20:38:41 UTC (rev 277618)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Themaister 
-# Contributor: lifning 
-
-pkgname=retroarch
-pkgver=1.7.0
-pkgrel=1
-pkgdesc='Reference frontend for the libretro API'
-arch=('x86_64')
-url='http://www.libretro.com/'
-license=('GPL')
-groups=('libretro')
-depends=('alsa-lib' 'gcc-libs' 'glibc' 'libdrm' 'libgl' 'libpulse' 'libusb'
- 'libx11' 'libxcb' 'libxext' 'libxinerama' 'libxkbcommon' 'libxv'
- 'libxxf86vm' 'mesa' 'openal' 'sdl2' 'wayland' 'zlib'
- 'libass.so' 'libavcodec.so' 'libavformat.so' 'libavutil.so'
- 'libfreetype.so' 'libswresample.so' 'libswscale.so' 'libudev.so')
-makedepends=('vulkan-icd-loader')
-optdepends=('libretro-beetle-psx: Sony PlayStation core'
-'libretro-beetle-psx-hw: Sony PlayStation core'
-'libretro-blastem: Sega Mega Drive core'
-'libretro-bsnes: Super Nintendo Entertainment System cores'
-'libretro-desmume: Nintendo DS core'
-'libretro-gambatte: Nintendo Game Boy/Game Boy Color core'
-'libretro-genesis-plus-gx: Sega MS/GG/MD/CD core'
-'libretro-mgba: Nintendo Game Boy Advance core'
-'libretro-mupen64plus: Nintendo 64 core'
-'libretro-nestopia: Nintendo Entertainment System core'
-'libretro-reicast: Sega Dreamcast core'
-'libretro-scummvm: ScummVM core'
-'libretro-snes9x: Super Nintendo Entertainment System core'
-'libretro-yabause: Sega Saturn core'
-'libretro-overlays: Collection of overlays'
-'libretro-shaders: Collection of shaders'
-'python: retroarch-cg2glsl'
-'retroarch-assets-xmb: XMB menu assets'
-'retroarch-autoconfig-udev: udev joypad autoconfig')
-backup=('etc/retroarch.cfg')
-source=("retroarch-${pkgver}.tar.gz::https://github.com/libretro/RetroArch/archive/v${pkgver}.tar.gz;
-'retroarch-config.patch')
-sha256sums=('b32fa4a37ff777e9fe45eeef7ccf2e4e06520dd268584034f687a494dc9f5af1'
-'8dca43954d05ea1f989932fb26828b6e8325394eec070c4530dd21eab3f02c44')
-
-prepare() {
-  cd RetroArch-${pkgver}
-
-  patch -Np0 -i ../retroarch-config.patch
-}
-
-build() {
-  cd RetroArch-${pkgver}
-
-  ./configure \
---prefix='/usr' \
---disable-cg \
---disable-jack \
---disable-oss \
---disable-sdl
-  make
-  make -C libretro-common/audio/dsp_filters
-  make -C gfx/video_filters
-}
-
-package() {
-  cd RetroArch-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm 644 libretro-common/audio/dsp_filters/*.{dsp,so} -t 
"${pkgdir}"/usr/lib/retroarch/filters/audio/
-  install -Dm 644 gfx/video_filters/*.{filt,so} -t 
"${pkgdir}"/usr/lib/retroarch/filters/video/
-}
-
-# vim: ts=2 sw=2 et:

Copied: retroarch/repos/community-x86_64/PKGBUILD (from rev 277617, 
retroarch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-31 20:38:41 UTC (rev 277618)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Themaister 
+# Contributor: lifning 
+
+pkgname=retroarch
+pkgver=1.7.0
+pkgrel=2
+pkgdesc='Reference frontend for the libretro API'
+arch=('x86_64')
+url='http://www.libretro.com/'
+license=('GPL')
+groups=('libretro')
+depends=('alsa-lib' 'gcc-libs' 'glibc' 'libdrm' 'libgl' 'libpulse' 'libusb'
+ 'libx11' 'libxcb' 'libxext' 'libxinerama' 'libxkbcommon' 'libxv'
+ 'libxxf86vm' 'mesa' 'openal' 'sdl2' 'wayland' 'zlib'
+ 'libass.so' 'libavcodec.so' 'libavformat.so' 'libavutil.so'
+ 'libfreetype.so' 'libswresample.so' 'libswscale.so' 'libudev.so')
+makedepends=('vulkan-icd-loader')
+optdepends=('libretro-overlays: Collection of overlays'
+'libretro-shaders: Collection of shaders'
+'python: retroarch-cg2glsl'
+'retroarch-assets-xmb: XMB menu assets'
+

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

2017-12-31 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 31, 2017 @ 20:38:28
  Author: alucryd
Revision: 277617

upgpkg: retroarch 1.7.0-2

Modified:
  retroarch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 19:37:13 UTC (rev 277616)
+++ PKGBUILD2017-12-31 20:38:28 UTC (rev 277617)
@@ -5,7 +5,7 @@
 
 pkgname=retroarch
 pkgver=1.7.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Reference frontend for the libretro API'
 arch=('x86_64')
 url='http://www.libretro.com/'
@@ -17,21 +17,7 @@
  'libass.so' 'libavcodec.so' 'libavformat.so' 'libavutil.so'
  'libfreetype.so' 'libswresample.so' 'libswscale.so' 'libudev.so')
 makedepends=('vulkan-icd-loader')
-optdepends=('libretro-beetle-psx: Sony PlayStation core'
-'libretro-beetle-psx-hw: Sony PlayStation core'
-'libretro-blastem: Sega Mega Drive core'
-'libretro-bsnes: Super Nintendo Entertainment System cores'
-'libretro-desmume: Nintendo DS core'
-'libretro-gambatte: Nintendo Game Boy/Game Boy Color core'
-'libretro-genesis-plus-gx: Sega MS/GG/MD/CD core'
-'libretro-mgba: Nintendo Game Boy Advance core'
-'libretro-mupen64plus: Nintendo 64 core'
-'libretro-nestopia: Nintendo Entertainment System core'
-'libretro-reicast: Sega Dreamcast core'
-'libretro-scummvm: ScummVM core'
-'libretro-snes9x: Super Nintendo Entertainment System core'
-'libretro-yabause: Sega Saturn core'
-'libretro-overlays: Collection of overlays'
+optdepends=('libretro-overlays: Collection of overlays'
 'libretro-shaders: Collection of shaders'
 'python: retroarch-cg2glsl'
 'retroarch-assets-xmb: XMB menu assets'


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

2017-12-31 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 31, 2017 @ 19:37:13
  Author: alucryd
Revision: 277616

archrelease: copy trunk to community-x86_64

Added:
  libretro-melonds/repos/community-x86_64/PKGBUILD
(from rev 277615, libretro-melonds/trunk/PKGBUILD)
Deleted:
  libretro-melonds/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-31 19:37:03 UTC (rev 277615)
+++ PKGBUILD2017-12-31 19:37:13 UTC (rev 277616)
@@ -1,37 +0,0 @@
-# Maintainer: Maxime Gauduin 
-
-pkgname=libretro-melonds
-pkgver=541
-pkgrel=1
-pkgdesc='Nintendo DS core'
-arch=('x86_64')
-url='https://github.com/libretro/melonDS'
-license=('GPL2')
-groups=('libretro')
-depends=('gcc-libs' 'glibc' 'libretro-core-info')
-makedepends=('git')
-_commit='9440f3d5f02d3af049b4610f38f528ce9c57629c'
-source=("libretro-melonds::git+https://github.com/libretro/melonDS.git#commit=${_commit};)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd libretro-melonds
-
-  git rev-list --count HEAD
-}
-
-build() {
-  cd libretro-melonds
-
-  export LDFLAGS="$LDFLAGS -lpthread"
-
-  make
-}
-
-package() {
-  cd libretro-melonds
-
-  install -Dm 644 melonds_libretro.so -t "${pkgdir}"/usr/lib/libretro/
-}
-
-# vim: ts=2 sw=2 et:

Copied: libretro-melonds/repos/community-x86_64/PKGBUILD (from rev 277615, 
libretro-melonds/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-31 19:37:13 UTC (rev 277616)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+
+pkgname=libretro-melonds
+pkgver=541
+pkgrel=2
+pkgdesc='Nintendo DS core'
+arch=('x86_64')
+url='https://github.com/libretro/melonDS'
+license=('GPL2')
+groups=('libretro')
+depends=('gcc-libs' 'glibc' 'libretro-core-info')
+makedepends=('git')
+_commit='9440f3d5f02d3af049b4610f38f528ce9c57629c'
+source=("libretro-melonds::git+https://github.com/libretro/melonDS.git#commit=${_commit};)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd libretro-melonds
+
+  git rev-list --count HEAD
+}
+
+build() {
+  cd libretro-melonds
+
+  export LDFLAGS="$LDFLAGS -lpthread"
+
+  make
+}
+
+package() {
+  cd libretro-melonds
+
+  install -Dm 644 melonds_libretro.so -t "${pkgdir}"/usr/lib/libretro/
+}
+
+# vim: ts=2 sw=2 et:


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

2017-12-31 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 31, 2017 @ 19:37:03
  Author: alucryd
Revision: 277615

upgpkg: libretro-melonds 541-2

Modified:
  libretro-melonds/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 19:35:09 UTC (rev 277614)
+++ PKGBUILD2017-12-31 19:37:03 UTC (rev 277615)
@@ -1,8 +1,9 @@
+# $Id$
 # Maintainer: Maxime Gauduin 
 
 pkgname=libretro-melonds
 pkgver=541
-pkgrel=1
+pkgrel=2
 pkgdesc='Nintendo DS core'
 arch=('x86_64')
 url='https://github.com/libretro/melonDS'


[arch-commits] Commit in libretro-redream (3 files)

2017-12-31 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 31, 2017 @ 19:35:09
  Author: alucryd
Revision: 277614

archrelease: copy trunk to community-x86_64

Added:
  libretro-redream/repos/
  libretro-redream/repos/community-x86_64/
  libretro-redream/repos/community-x86_64/PKGBUILD
(from rev 277613, libretro-redream/trunk/PKGBUILD)

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

Copied: libretro-redream/repos/community-x86_64/PKGBUILD (from rev 277613, 
libretro-redream/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-12-31 19:35:09 UTC (rev 277614)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+
+pkgname=libretro-redream
+pkgver=1077
+pkgrel=1
+pkgdesc='Sega Dreamcast core'
+arch=('x86_64')
+url='https://github.com/libretro/redream'
+license=('GPL2')
+groups=('libretro')
+depends=('gcc-libs' 'glibc' 'libgl' 'libretro-core-info')
+makedepends=('git')
+_commit='e032445a089b90e597eed77baa0aa316614b92b7'
+source=("libretro-redream::git+https://github.com/libretro/redream.git#commit=${_commit};)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd libretro-redream
+
+  git rev-list --count HEAD
+}
+
+build() {
+  cd libretro-redream/deps/libretro
+
+  make
+}
+
+package() {
+  cd libretro-redream/deps/libretro
+
+  install -Dm 644 redream_libretro.so -t "${pkgdir}"/usr/lib/libretro/
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in (3 files)

2017-12-31 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 31, 2017 @ 19:34:48
  Author: alucryd
Revision: 277613

Add libretro-redream

Added:
  libretro-redream/
  libretro-redream/trunk/
  libretro-redream/trunk/PKGBUILD

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

Added: libretro-redream/trunk/PKGBUILD
===
--- libretro-redream/trunk/PKGBUILD (rev 0)
+++ libretro-redream/trunk/PKGBUILD 2017-12-31 19:34:48 UTC (rev 277613)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+
+pkgname=libretro-redream
+pkgver=1077
+pkgrel=1
+pkgdesc='Sega Dreamcast core'
+arch=('x86_64')
+url='https://github.com/libretro/redream'
+license=('GPL2')
+groups=('libretro')
+depends=('gcc-libs' 'glibc' 'libgl' 'libretro-core-info')
+makedepends=('git')
+_commit='e032445a089b90e597eed77baa0aa316614b92b7'
+source=("libretro-redream::git+https://github.com/libretro/redream.git#commit=${_commit};)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd libretro-redream
+
+  git rev-list --count HEAD
+}
+
+build() {
+  cd libretro-redream/deps/libretro
+
+  make
+}
+
+package() {
+  cd libretro-redream/deps/libretro
+
+  install -Dm 644 redream_libretro.so -t "${pkgdir}"/usr/lib/libretro/
+}
+
+# vim: ts=2 sw=2 et:


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


[arch-commits] Commit in filesystem/repos/testing-x86_64 (44 files)

2017-12-31 Thread Sébastien Luttringer via arch-commits
Date: Sunday, December 31, 2017 @ 19:32:38
  Author: seblu
Revision: 313829

archrelease: copy trunk to testing-x86_64

Added:
  filesystem/repos/testing-x86_64/PKGBUILD
(from rev 313828, filesystem/trunk/PKGBUILD)
  filesystem/repos/testing-x86_64/crypttab
(from rev 313828, filesystem/trunk/crypttab)
  filesystem/repos/testing-x86_64/env-generator
(from rev 313828, filesystem/trunk/env-generator)
  filesystem/repos/testing-x86_64/fstab
(from rev 313828, filesystem/trunk/fstab)
  filesystem/repos/testing-x86_64/group
(from rev 313828, filesystem/trunk/group)
  filesystem/repos/testing-x86_64/gshadow
(from rev 313828, filesystem/trunk/gshadow)
  filesystem/repos/testing-x86_64/host.conf
(from rev 313828, filesystem/trunk/host.conf)
  filesystem/repos/testing-x86_64/hosts
(from rev 313828, filesystem/trunk/hosts)
  filesystem/repos/testing-x86_64/issue
(from rev 313828, filesystem/trunk/issue)
  filesystem/repos/testing-x86_64/ld.so.conf
(from rev 313828, filesystem/trunk/ld.so.conf)
  filesystem/repos/testing-x86_64/locale.sh
(from rev 313828, filesystem/trunk/locale.sh)
  filesystem/repos/testing-x86_64/motd
(from rev 313828, filesystem/trunk/motd)
  filesystem/repos/testing-x86_64/nsswitch.conf
(from rev 313828, filesystem/trunk/nsswitch.conf)
  filesystem/repos/testing-x86_64/os-release
(from rev 313828, filesystem/trunk/os-release)
  filesystem/repos/testing-x86_64/passwd
(from rev 313828, filesystem/trunk/passwd)
  filesystem/repos/testing-x86_64/profile
(from rev 313828, filesystem/trunk/profile)
  filesystem/repos/testing-x86_64/resolv.conf
(from rev 313828, filesystem/trunk/resolv.conf)
  filesystem/repos/testing-x86_64/securetty
(from rev 313828, filesystem/trunk/securetty)
  filesystem/repos/testing-x86_64/shadow
(from rev 313828, filesystem/trunk/shadow)
  filesystem/repos/testing-x86_64/shells
(from rev 313828, filesystem/trunk/shells)
  filesystem/repos/testing-x86_64/sysusers
(from rev 313828, filesystem/trunk/sysusers)
  filesystem/repos/testing-x86_64/tmpfiles
(from rev 313828, filesystem/trunk/tmpfiles)
Deleted:
  filesystem/repos/testing-x86_64/PKGBUILD
  filesystem/repos/testing-x86_64/crypttab
  filesystem/repos/testing-x86_64/env-generator
  filesystem/repos/testing-x86_64/fstab
  filesystem/repos/testing-x86_64/group
  filesystem/repos/testing-x86_64/gshadow
  filesystem/repos/testing-x86_64/host.conf
  filesystem/repos/testing-x86_64/hosts
  filesystem/repos/testing-x86_64/issue
  filesystem/repos/testing-x86_64/ld.so.conf
  filesystem/repos/testing-x86_64/locale.sh
  filesystem/repos/testing-x86_64/motd
  filesystem/repos/testing-x86_64/nsswitch.conf
  filesystem/repos/testing-x86_64/os-release
  filesystem/repos/testing-x86_64/passwd
  filesystem/repos/testing-x86_64/profile
  filesystem/repos/testing-x86_64/resolv.conf
  filesystem/repos/testing-x86_64/securetty
  filesystem/repos/testing-x86_64/shadow
  filesystem/repos/testing-x86_64/shells
  filesystem/repos/testing-x86_64/sysusers
  filesystem/repos/testing-x86_64/tmpfiles

---+
 PKGBUILD  |  246 
 crypttab  |   24 ++---
 env-generator |6 -
 fstab |8 -
 group |2 
 gshadow   |2 
 host.conf |8 -
 hosts |4 
 issue |4 
 ld.so.conf|8 -
 locale.sh |   38 
 nsswitch.conf |   36 
 os-release|   16 +--
 passwd|2 
 profile   |   80 +-
 resolv.conf   |4 
 securetty |   24 ++---
 shadow|2 
 shells|   10 +-
 sysusers  |   56 ++--
 tmpfiles  |   34 +++
 21 files changed, 307 insertions(+), 307 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-31 19:32:18 UTC (rev 313828)
+++ PKGBUILD2017-12-31 19:32:38 UTC (rev 313829)
@@ -1,123 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Tom Gundersen 
-
-pkgname=filesystem
-pkgver=2017.12
-pkgrel=1
-pkgdesc='Base Arch Linux files'
-arch=('x86_64')
-license=('GPL')
-url='https://www.archlinux.org'
-groups=('base')
-depends=('iana-etc')
-backup=('etc/crypttab' 'etc/fstab' 'etc/group' 'etc/gshadow' 'etc/host.conf'
-'etc/hosts' 'etc/issue' 'etc/ld.so.conf' 'etc/motd' 'etc/nsswitch.conf'
-'etc/passwd' 'etc/profile' 'etc/resolv.conf' 'etc/securetty'
-'etc/shadow' 'etc/shells')
-source=('crypttab' 'env-generator' 'fstab' 'group' 'gshadow' 'host.conf' 
'hosts'
-'issue' 'ld.so.conf' 'locale.sh' 'motd' 'nsswitch.conf' 'os-release'
-'passwd' 'profile' 'resolv.conf' 'securetty' 'shadow' 'shells'
-'sysusers' 'tmpfiles')
-md5sums=('5fa6674df7645d7f5895f2d12b4ef4e9'
- '2b0344e9639f35f3c0d5637a23556089'
- 'e33f6dfdd61978fcb3ddf1431286e05a'
- '7fed1e1fb855e41a6d64d41f8521d69a'
- 

[arch-commits] Commit in filesystem/trunk (PKGBUILD nsswitch.conf)

2017-12-31 Thread Sébastien Luttringer via arch-commits
Date: Sunday, December 31, 2017 @ 19:32:18
  Author: seblu
Revision: 313828

upgpkg: filesystem 2017.12-2

Modified:
  filesystem/trunk/PKGBUILD
  filesystem/trunk/nsswitch.conf

---+
 PKGBUILD  |4 ++--
 nsswitch.conf |2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 18:34:17 UTC (rev 313827)
+++ PKGBUILD2017-12-31 19:32:18 UTC (rev 313828)
@@ -4,7 +4,7 @@
 
 pkgname=filesystem
 pkgver=2017.12
-pkgrel=1
+pkgrel=2
 pkgdesc='Base Arch Linux files'
 arch=('x86_64')
 license=('GPL')
@@ -30,7 +30,7 @@
  '5deb9f890a4d08a245e9752ede77271e'
  '380ccce470d309efb631f7ec3f86db48'
  'd41d8cd98f00b204e9800998ecf8427e'
- '9a439ad4ca5c0fe885fc79159a108e36'
+ '981ee4d7e506a9d6d9ed2d872e16004b'
  '0a0fbb8e64faabb40023bd180d7190a1'
  '5182ac38a0de85da8ade93ef71975ca4'
  '2c79e1762978235e7b4a9ef595f6c029'

Modified: nsswitch.conf
===
--- nsswitch.conf   2017-12-31 18:34:17 UTC (rev 313827)
+++ nsswitch.conf   2017-12-31 19:32:18 UTC (rev 313828)
@@ -7,7 +7,7 @@
 
 publickey: files
 
-hosts: files mymachine myhostnames resolve [!UNAVAIL=return] dns
+hosts: files mymachines myhostname resolve [!UNAVAIL=return] dns
 networks: files
 
 protocols: files


[arch-commits] Commit in libretro-melonds (3 files)

2017-12-31 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 31, 2017 @ 19:27:16
  Author: alucryd
Revision: 277612

archrelease: copy trunk to community-x86_64

Added:
  libretro-melonds/repos/
  libretro-melonds/repos/community-x86_64/
  libretro-melonds/repos/community-x86_64/PKGBUILD
(from rev 277611, libretro-melonds/trunk/PKGBUILD)

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

Copied: libretro-melonds/repos/community-x86_64/PKGBUILD (from rev 277611, 
libretro-melonds/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-12-31 19:27:16 UTC (rev 277612)
@@ -0,0 +1,37 @@
+# Maintainer: Maxime Gauduin 
+
+pkgname=libretro-melonds
+pkgver=541
+pkgrel=1
+pkgdesc='Nintendo DS core'
+arch=('x86_64')
+url='https://github.com/libretro/melonDS'
+license=('GPL2')
+groups=('libretro')
+depends=('gcc-libs' 'glibc' 'libretro-core-info')
+makedepends=('git')
+_commit='9440f3d5f02d3af049b4610f38f528ce9c57629c'
+source=("libretro-melonds::git+https://github.com/libretro/melonDS.git#commit=${_commit};)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd libretro-melonds
+
+  git rev-list --count HEAD
+}
+
+build() {
+  cd libretro-melonds
+
+  export LDFLAGS="$LDFLAGS -lpthread"
+
+  make
+}
+
+package() {
+  cd libretro-melonds
+
+  install -Dm 644 melonds_libretro.so -t "${pkgdir}"/usr/lib/libretro/
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in (3 files)

2017-12-31 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 31, 2017 @ 19:26:45
  Author: alucryd
Revision: 277611

Add libretro-melonds

Added:
  libretro-melonds/
  libretro-melonds/trunk/
  libretro-melonds/trunk/PKGBUILD

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

Added: libretro-melonds/trunk/PKGBUILD
===
--- libretro-melonds/trunk/PKGBUILD (rev 0)
+++ libretro-melonds/trunk/PKGBUILD 2017-12-31 19:26:45 UTC (rev 277611)
@@ -0,0 +1,37 @@
+# Maintainer: Maxime Gauduin 
+
+pkgname=libretro-melonds
+pkgver=541
+pkgrel=1
+pkgdesc='Nintendo DS core'
+arch=('x86_64')
+url='https://github.com/libretro/melonDS'
+license=('GPL2')
+groups=('libretro')
+depends=('gcc-libs' 'glibc' 'libretro-core-info')
+makedepends=('git')
+_commit='9440f3d5f02d3af049b4610f38f528ce9c57629c'
+source=("libretro-melonds::git+https://github.com/libretro/melonDS.git#commit=${_commit};)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd libretro-melonds
+
+  git rev-list --count HEAD
+}
+
+build() {
+  cd libretro-melonds
+
+  export LDFLAGS="$LDFLAGS -lpthread"
+
+  make
+}
+
+package() {
+  cd libretro-melonds
+
+  install -Dm 644 melonds_libretro.so -t "${pkgdir}"/usr/lib/libretro/
+}
+
+# vim: ts=2 sw=2 et:


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


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

2017-12-31 Thread Baptiste Jonglez via arch-commits
Date: Sunday, December 31, 2017 @ 19:24:07
  Author: zorun
Revision: 277610

archrelease: copy trunk to community-x86_64

Added:
  ring-gnome/repos/community-x86_64/PKGBUILD
(from rev 277609, ring-gnome/trunk/PKGBUILD)
Deleted:
  ring-gnome/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-31 19:23:40 UTC (rev 277609)
+++ PKGBUILD2017-12-31 19:24:07 UTC (rev 277610)
@@ -1,44 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-
-pkgname=ring-gnome
-pkgver=20171215.1.bc414d7
-pkgrel=2
-epoch=3
-pkgdesc="The GNOME client for ring.cx (formerly known as SFLphone)"
-arch=("x86_64")
-url="https://ring.cx;
-license=('GPL3')
-groups=("ring")
-depends=("libringclient" "ring-daemon"
- "gtk3" "dconf" "clutter" "clutter-gtk" "webkit2gtk" "qrencode"
- "qt5-base" "gtk-update-icon-cache" "desktop-file-utils"
- "evolution-data-server" "libnotify")
-makedepends=('git' 'cmake' 'libnm-glib')
-optdepends=('libnm-glib: to make Network Manager notify the daemon when 
network changes')
-source=("git+https://gerrit-ring.savoirfairelinux.com/ring-client-gnome#commit=6b5f788d9304ef4dc9716524ad18cbb6fe38f354;)
-sha256sums=('SKIP')
-
-build() {
-  cd "ring-client-gnome"
-
-  msg2 'Building...'
-  mkdir -p build
-  cd build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd "ring-client-gnome/build"
-
-  msg2 'Installing...'
-  make DESTDIR="$pkgdir" install
-
-  msg2 'Cleaning up pkgdir...'
-  find "$pkgdir" -type d -name .git -exec rm -r '{}' +
-  find "$pkgdir" -type f -name .gitignore -exec rm -r '{}' +
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ring-gnome/repos/community-x86_64/PKGBUILD (from rev 277609, 
ring-gnome/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-31 19:24:07 UTC (rev 277610)
@@ -0,0 +1,43 @@
+# Maintainer: Baptiste Jonglez 
+
+pkgname=ring-gnome
+pkgver=20171215.1.bc414d7
+pkgrel=3
+epoch=3
+pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (GNOME client)"
+arch=("x86_64")
+url="https://ring.cx;
+license=('GPL3')
+groups=("ring")
+depends=("libringclient" "ring-daemon"
+ "gtk3" "dconf" "clutter" "clutter-gtk" "webkit2gtk" "qrencode"
+ "qt5-base" "gtk-update-icon-cache" "desktop-file-utils"
+ "evolution-data-server" "libnotify" "libnm-glib")
+makedepends=('git' 'cmake')
+source=("git+https://gerrit-ring.savoirfairelinux.com/ring-client-gnome#commit=6b5f788d9304ef4dc9716524ad18cbb6fe38f354;)
+sha256sums=('SKIP')
+
+build() {
+  cd "ring-client-gnome"
+
+  msg2 'Building...'
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd "ring-client-gnome/build"
+
+  msg2 'Installing...'
+  make DESTDIR="$pkgdir" install
+
+  msg2 'Cleaning up pkgdir...'
+  find "$pkgdir" -type d -name .git -exec rm -r '{}' +
+  find "$pkgdir" -type f -name .gitignore -exec rm -r '{}' +
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-12-31 Thread Baptiste Jonglez via arch-commits
Date: Sunday, December 31, 2017 @ 19:23:40
  Author: zorun
Revision: 277609

upgpkg: ring-gnome 3:20171215.1.bc414d7-3

libnm-glib is required at runtime if build against.

Modified:
  ring-gnome/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 19:06:28 UTC (rev 277608)
+++ PKGBUILD2017-12-31 19:23:40 UTC (rev 277609)
@@ -2,9 +2,9 @@
 
 pkgname=ring-gnome
 pkgver=20171215.1.bc414d7
-pkgrel=2
+pkgrel=3
 epoch=3
-pkgdesc="The GNOME client for ring.cx (formerly known as SFLphone)"
+pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (GNOME client)"
 arch=("x86_64")
 url="https://ring.cx;
 license=('GPL3')
@@ -12,9 +12,8 @@
 depends=("libringclient" "ring-daemon"
  "gtk3" "dconf" "clutter" "clutter-gtk" "webkit2gtk" "qrencode"
  "qt5-base" "gtk-update-icon-cache" "desktop-file-utils"
- "evolution-data-server" "libnotify")
-makedepends=('git' 'cmake' 'libnm-glib')
-optdepends=('libnm-glib: to make Network Manager notify the daemon when 
network changes')
+ "evolution-data-server" "libnotify" "libnm-glib")
+makedepends=('git' 'cmake')
 
source=("git+https://gerrit-ring.savoirfairelinux.com/ring-client-gnome#commit=6b5f788d9304ef4dc9716524ad18cbb6fe38f354;)
 sha256sums=('SKIP')
 


[arch-commits] Commit in ring-gnome (3 files)

2017-12-31 Thread Baptiste Jonglez via arch-commits
Date: Sunday, December 31, 2017 @ 19:06:28
  Author: zorun
Revision: 277608

archrelease: copy trunk to community-x86_64

Added:
  ring-gnome/repos/
  ring-gnome/repos/community-x86_64/
  ring-gnome/repos/community-x86_64/PKGBUILD
(from rev 277607, ring-gnome/trunk/PKGBUILD)

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

Copied: ring-gnome/repos/community-x86_64/PKGBUILD (from rev 277607, 
ring-gnome/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-12-31 19:06:28 UTC (rev 277608)
@@ -0,0 +1,44 @@
+# Maintainer: Baptiste Jonglez 
+
+pkgname=ring-gnome
+pkgver=20171215.1.bc414d7
+pkgrel=2
+epoch=3
+pkgdesc="The GNOME client for ring.cx (formerly known as SFLphone)"
+arch=("x86_64")
+url="https://ring.cx;
+license=('GPL3')
+groups=("ring")
+depends=("libringclient" "ring-daemon"
+ "gtk3" "dconf" "clutter" "clutter-gtk" "webkit2gtk" "qrencode"
+ "qt5-base" "gtk-update-icon-cache" "desktop-file-utils"
+ "evolution-data-server" "libnotify")
+makedepends=('git' 'cmake' 'libnm-glib')
+optdepends=('libnm-glib: to make Network Manager notify the daemon when 
network changes')
+source=("git+https://gerrit-ring.savoirfairelinux.com/ring-client-gnome#commit=6b5f788d9304ef4dc9716524ad18cbb6fe38f354;)
+sha256sums=('SKIP')
+
+build() {
+  cd "ring-client-gnome"
+
+  msg2 'Building...'
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd "ring-client-gnome/build"
+
+  msg2 'Installing...'
+  make DESTDIR="$pkgdir" install
+
+  msg2 'Cleaning up pkgdir...'
+  find "$pkgdir" -type d -name .git -exec rm -r '{}' +
+  find "$pkgdir" -type f -name .gitignore -exec rm -r '{}' +
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-12-31 Thread Baptiste Jonglez via arch-commits
Date: Sunday, December 31, 2017 @ 19:05:31
  Author: zorun
Revision: 277607

archrelease: copy trunk to community-x86_64

Added:
  libringclient/repos/
  libringclient/repos/community-x86_64/
  libringclient/repos/community-x86_64/PKGBUILD
(from rev 277606, libringclient/trunk/PKGBUILD)

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

Copied: libringclient/repos/community-x86_64/PKGBUILD (from rev 277606, 
libringclient/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-12-31 19:05:31 UTC (rev 277607)
@@ -0,0 +1,40 @@
+# Maintainer: Baptiste Jonglez 
+
+pkgname=libringclient
+pkgver=20171215.1.bc414d7
+pkgrel=2
+epoch=2
+pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (client communication library)"
+arch=("x86_64")
+url="https://ring.cx;
+license=('GPL3')
+groups=("ring")
+depends=("ring-daemon" "qt5-base")
+makedepends=('git' 'cmake' 'qt5-tools')
+source=("git+https://gerrit-ring.savoirfairelinux.com/ring-lrc#commit=9b262bbd66d7fd8cc4cd5b7d47b6d3e8b4dd837e;)
+md5sums=('SKIP')
+
+build() {
+  cd "ring-lrc"
+
+  msg2 'Building...'
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd "ring-lrc/build"
+
+  msg2 'Installing...'
+  make DESTDIR="$pkgdir" install
+
+  msg2 'Cleaning up pkgdir...'
+  find "$pkgdir" -type d -name .git -exec rm -r '{}' +
+  find "$pkgdir" -type f -name .gitignore -exec rm -r '{}' +
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-12-31 Thread Baptiste Jonglez via arch-commits
Date: Sunday, December 31, 2017 @ 19:04:25
  Author: zorun
Revision: 277606

ring-gnome: import from AUR

Added:
  ring-gnome/
  ring-gnome/trunk/
  ring-gnome/trunk/PKGBUILD

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

Added: ring-gnome/trunk/PKGBUILD
===
--- ring-gnome/trunk/PKGBUILD   (rev 0)
+++ ring-gnome/trunk/PKGBUILD   2017-12-31 19:04:25 UTC (rev 277606)
@@ -0,0 +1,44 @@
+# Maintainer: Baptiste Jonglez 
+
+pkgname=ring-gnome
+pkgver=20171215.1.bc414d7
+pkgrel=2
+epoch=3
+pkgdesc="The GNOME client for ring.cx (formerly known as SFLphone)"
+arch=("x86_64")
+url="https://ring.cx;
+license=('GPL3')
+groups=("ring")
+depends=("libringclient" "ring-daemon"
+ "gtk3" "dconf" "clutter" "clutter-gtk" "webkit2gtk" "qrencode"
+ "qt5-base" "gtk-update-icon-cache" "desktop-file-utils"
+ "evolution-data-server" "libnotify")
+makedepends=('git' 'cmake' 'libnm-glib')
+optdepends=('libnm-glib: to make Network Manager notify the daemon when 
network changes')
+source=("git+https://gerrit-ring.savoirfairelinux.com/ring-client-gnome#commit=6b5f788d9304ef4dc9716524ad18cbb6fe38f354;)
+sha256sums=('SKIP')
+
+build() {
+  cd "ring-client-gnome"
+
+  msg2 'Building...'
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd "ring-client-gnome/build"
+
+  msg2 'Installing...'
+  make DESTDIR="$pkgdir" install
+
+  msg2 'Cleaning up pkgdir...'
+  find "$pkgdir" -type d -name .git -exec rm -r '{}' +
+  find "$pkgdir" -type f -name .gitignore -exec rm -r '{}' +
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-12-31 Thread Baptiste Jonglez via arch-commits
Date: Sunday, December 31, 2017 @ 19:03:17
  Author: zorun
Revision: 277605

upgpkg: libringclient 2:20171215.1.bc414d7-2

Fix commit ID

Modified:
  libringclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 18:48:10 UTC (rev 277604)
+++ PKGBUILD2017-12-31 19:03:17 UTC (rev 277605)
@@ -2,7 +2,7 @@
 
 pkgname=libringclient
 pkgver=20171215.1.bc414d7
-pkgrel=1
+pkgrel=2
 epoch=2
 pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (client communication library)"
 arch=("x86_64")
@@ -11,7 +11,7 @@
 groups=("ring")
 depends=("ring-daemon" "qt5-base")
 makedepends=('git' 'cmake' 'qt5-tools')
-source=("git+https://gerrit-ring.savoirfairelinux.com/ring-lrc#commit=ec8c1780da19cd9781518ff790c965ab6e423662;)
+source=("git+https://gerrit-ring.savoirfairelinux.com/ring-lrc#commit=9b262bbd66d7fd8cc4cd5b7d47b6d3e8b4dd837e;)
 md5sums=('SKIP')
 
 build() {


[arch-commits] Commit in (3 files)

2017-12-31 Thread Baptiste Jonglez via arch-commits
Date: Sunday, December 31, 2017 @ 18:48:10
  Author: zorun
Revision: 277604

libringclient: import from AUR

Added:
  libringclient/
  libringclient/trunk/
  libringclient/trunk/PKGBUILD

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

Added: libringclient/trunk/PKGBUILD
===
--- libringclient/trunk/PKGBUILD(rev 0)
+++ libringclient/trunk/PKGBUILD2017-12-31 18:48:10 UTC (rev 277604)
@@ -0,0 +1,40 @@
+# Maintainer: Baptiste Jonglez 
+
+pkgname=libringclient
+pkgver=20171215.1.bc414d7
+pkgrel=1
+epoch=2
+pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (client communication library)"
+arch=("x86_64")
+url="https://ring.cx;
+license=('GPL3')
+groups=("ring")
+depends=("ring-daemon" "qt5-base")
+makedepends=('git' 'cmake' 'qt5-tools')
+source=("git+https://gerrit-ring.savoirfairelinux.com/ring-lrc#commit=ec8c1780da19cd9781518ff790c965ab6e423662;)
+md5sums=('SKIP')
+
+build() {
+  cd "ring-lrc"
+
+  msg2 'Building...'
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd "ring-lrc/build"
+
+  msg2 'Installing...'
+  make DESTDIR="$pkgdir" install
+
+  msg2 'Cleaning up pkgdir...'
+  find "$pkgdir" -type d -name .git -exec rm -r '{}' +
+  find "$pkgdir" -type f -name .gitignore -exec rm -r '{}' +
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in ring-daemon (3 files)

2017-12-31 Thread Baptiste Jonglez via arch-commits
Date: Sunday, December 31, 2017 @ 18:45:55
  Author: zorun
Revision: 277603

archrelease: copy trunk to community-x86_64

Added:
  ring-daemon/repos/
  ring-daemon/repos/community-x86_64/
  ring-daemon/repos/community-x86_64/PKGBUILD
(from rev 277602, ring-daemon/trunk/PKGBUILD)

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

Copied: ring-daemon/repos/community-x86_64/PKGBUILD (from rev 277602, 
ring-daemon/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-12-31 18:45:55 UTC (rev 277603)
@@ -0,0 +1,53 @@
+# Maintainer: Baptiste Jonglez 
+
+pkgname=ring-daemon
+pkgver=20171215.1.bc414d7
+pkgrel=2
+epoch=2
+pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (daemon)"
+arch=("x86_64")
+url="https://ring.cx;
+license=('GPL3')
+groups=("ring")
+depends=('opendht' 'yaml-cpp' 'alsa-lib' 'libpulse' 'jack' 'jsoncpp'
+ 'libsamplerate' 'libsndfile' 'dbus-c++' 'ffmpeg' 'udev' 'gnutls'
+ 'expat' 'gsm' 'libupnp' 'libnatpmp' 'libva' 'libvdpau' 'restbed'
+ 'libsecp256k1' 'pjproject-savoirfairelinux')
+makedepends=('git' 'boost' 'msgpack-c' 'autoconf-archive')
+#checkdepends=('cppunit')
+source=("git+https://gerrit-ring.savoirfairelinux.com/ring-daemon#commit=d08826f038f6fe9a275ba66ff8d0af60a78a7f88;)
+md5sums=('SKIP')
+
+build() {
+  cd "${pkgname}"
+
+  msg2 'Building...'
+  autoreconf --force --install --verbose
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--libexecdir=/usr/bin \
+--sysconfdir=/etc \
+--with-contrib="no" \
+--enable-ipv6
+  DISABLE_CONTRIB_DOWNLOADS="TRUE" make
+}
+
+# Disabled because some tests (TURN) use the network.
+#check() {
+#  cd "${pkgname}"
+#  make -k check
+#}
+
+package() {
+  cd "${pkgname}"
+
+  msg2 'Installing...'
+  DISABLE_CONTRIB_DOWNLOADS="TRUE" make DESTDIR="$pkgdir" install
+
+  msg2 'Cleaning up pkgdir...'
+  find "$pkgdir" -type d -name .git -exec rm -r '{}' +
+  find "$pkgdir" -type f -name .gitignore -exec rm -r '{}' +
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-12-31 Thread Baptiste Jonglez via arch-commits
Date: Sunday, December 31, 2017 @ 18:35:30
  Author: zorun
Revision: 277602

ring-daemon: import from AUR

Added:
  ring-daemon/
  ring-daemon/trunk/
  ring-daemon/trunk/PKGBUILD

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

Added: ring-daemon/trunk/PKGBUILD
===
--- ring-daemon/trunk/PKGBUILD  (rev 0)
+++ ring-daemon/trunk/PKGBUILD  2017-12-31 18:35:30 UTC (rev 277602)
@@ -0,0 +1,53 @@
+# Maintainer: Baptiste Jonglez 
+
+pkgname=ring-daemon
+pkgver=20171215.1.bc414d7
+pkgrel=2
+epoch=2
+pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (daemon)"
+arch=("x86_64")
+url="https://ring.cx;
+license=('GPL3')
+groups=("ring")
+depends=('opendht' 'yaml-cpp' 'alsa-lib' 'libpulse' 'jack' 'jsoncpp'
+ 'libsamplerate' 'libsndfile' 'dbus-c++' 'ffmpeg' 'udev' 'gnutls'
+ 'expat' 'gsm' 'libupnp' 'libnatpmp' 'libva' 'libvdpau' 'restbed'
+ 'libsecp256k1' 'pjproject-savoirfairelinux')
+makedepends=('git' 'boost' 'msgpack-c' 'autoconf-archive')
+#checkdepends=('cppunit')
+source=("git+https://gerrit-ring.savoirfairelinux.com/ring-daemon#commit=d08826f038f6fe9a275ba66ff8d0af60a78a7f88;)
+md5sums=('SKIP')
+
+build() {
+  cd "${pkgname}"
+
+  msg2 'Building...'
+  autoreconf --force --install --verbose
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--libexecdir=/usr/bin \
+--sysconfdir=/etc \
+--with-contrib="no" \
+--enable-ipv6
+  DISABLE_CONTRIB_DOWNLOADS="TRUE" make
+}
+
+# Disabled because some tests (TURN) use the network.
+#check() {
+#  cd "${pkgname}"
+#  make -k check
+#}
+
+package() {
+  cd "${pkgname}"
+
+  msg2 'Installing...'
+  DISABLE_CONTRIB_DOWNLOADS="TRUE" make DESTDIR="$pkgdir" install
+
+  msg2 'Cleaning up pkgdir...'
+  find "$pkgdir" -type d -name .git -exec rm -r '{}' +
+  find "$pkgdir" -type f -name .gitignore -exec rm -r '{}' +
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in filesystem/trunk (PKGBUILD locale.sh nsswitch.conf profile)

2017-12-31 Thread Sébastien Luttringer via arch-commits
Date: Sunday, December 31, 2017 @ 18:33:48
  Author: seblu
Revision: 313826

upgpkg: filesystem 2017.12-1

- fix FS#56684
- fix FS#56688

Modified:
  filesystem/trunk/PKGBUILD
  filesystem/trunk/locale.sh
  filesystem/trunk/nsswitch.conf
  filesystem/trunk/profile

---+
 PKGBUILD  |   10 +-
 locale.sh |   23 ---
 nsswitch.conf |2 +-
 profile   |2 +-
 4 files changed, 15 insertions(+), 22 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 18:14:19 UTC (rev 313825)
+++ PKGBUILD2017-12-31 18:33:48 UTC (rev 313826)
@@ -3,8 +3,8 @@
 # Contributor: Tom Gundersen 
 
 pkgname=filesystem
-pkgver=2017.10
-pkgrel=2
+pkgver=2017.12
+pkgrel=1
 pkgdesc='Base Arch Linux files'
 arch=('x86_64')
 license=('GPL')
@@ -28,12 +28,12 @@
  'a1315ea3e2b64d197b6efaf9c14ff778'
  '7813c481156f6b280a3ba91fc6236368'
  '5deb9f890a4d08a245e9752ede77271e'
- '71ed98c52e11ada1f936ac8cb14eecd9'
+ '380ccce470d309efb631f7ec3f86db48'
  'd41d8cd98f00b204e9800998ecf8427e'
- '44851ecc062ba34a4c024b6f3246c48f'
+ '9a439ad4ca5c0fe885fc79159a108e36'
  '0a0fbb8e64faabb40023bd180d7190a1'
  '5182ac38a0de85da8ade93ef71975ca4'
- '13feaea89d404729ad2f7cf0bcc41d85'
+ '2c79e1762978235e7b4a9ef595f6c029'
  '0ee015fad07732676d9488ae498eed41'
  'f04bcb2803afc4dcb95670fe87343b4d'
  'f64466dd77c7bec37a8b47681468211a'

Modified: locale.sh
===
--- locale.sh   2017-12-31 18:14:19 UTC (rev 313825)
+++ locale.sh   2017-12-31 18:33:48 UTC (rev 313826)
@@ -1,26 +1,19 @@
 #!/bin/sh
 
+# load locale.conf in XDG paths.
+# /etc/locale.conf loads and overrides by kernel command line is done by 
systemd
 if [ -z "$LANG" ]; then
   if [ -n "$XDG_CONFIG_HOME" ] && [ -r "$XDG_CONFIG_HOME/locale.conf" ]; then
 . "$XDG_CONFIG_HOME/locale.conf"
   elif [ -n "$HOME" ] && [ -r "$HOME/.config/locale.conf" ]; then
 . "$HOME/.config/locale.conf"
-  elif [ -r /etc/locale.conf ]; then
-. /etc/locale.conf
   fi
 fi
 
+# define default LANG to C if not already defined
 LANG=${LANG:-C}
-export LANG
-[ -n "$LC_CTYPE" ]  && export LC_CTYPE
-[ -n "$LC_NUMERIC" ]&& export LC_NUMERIC
-[ -n "$LC_TIME" ]   && export LC_TIME
-[ -n "$LC_COLLATE" ]&& export LC_COLLATE
-[ -n "$LC_MONETARY" ]   && export LC_MONETARY
-[ -n "$LC_MESSAGES" ]   && export LC_MESSAGES
-[ -n "$LC_PAPER" ]  && export LC_PAPER
-[ -n "$LC_NAME" ]   && export LC_NAME
-[ -n "$LC_ADDRESS" ]&& export LC_ADDRESS
-[ -n "$LC_TELEPHONE" ]  && export LC_TELEPHONE
-[ -n "$LC_MEASUREMENT" ]&& export LC_MEASUREMENT
-[ -n "$LC_IDENTIFICATION" ] && export LC_IDENTIFICATION
+
+# export all locale (7) variables when they exist
+export LANG LANGUAGE LC_ALL LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY 
\
+ LC_MESSAGES LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_IDENTIFICATION \
+ LC_MEASUREMENT

Modified: nsswitch.conf
===
--- nsswitch.conf   2017-12-31 18:14:19 UTC (rev 313825)
+++ nsswitch.conf   2017-12-31 18:33:48 UTC (rev 313826)
@@ -7,7 +7,7 @@
 
 publickey: files
 
-hosts: files mymachines resolve [!UNAVAIL=return] dns myhostname
+hosts: files mymachine myhostnames resolve [!UNAVAIL=return] dns
 networks: files
 
 protocols: files

Modified: profile
===
--- profile 2017-12-31 18:14:19 UTC (rev 313825)
+++ profile 2017-12-31 18:33:48 UTC (rev 313826)
@@ -9,7 +9,7 @@
 *:"$1":*)
 ;;
 *)
-PATH="$PATH:$1"
+PATH="${PATH:+$PATH:}$1"
 esac
 }
 


[arch-commits] Commit in filesystem/repos (23 files)

2017-12-31 Thread Sébastien Luttringer via arch-commits
Date: Sunday, December 31, 2017 @ 18:34:17
  Author: seblu
Revision: 313827

archrelease: copy trunk to testing-x86_64

Added:
  filesystem/repos/testing-x86_64/
  filesystem/repos/testing-x86_64/PKGBUILD
(from rev 313826, filesystem/trunk/PKGBUILD)
  filesystem/repos/testing-x86_64/crypttab
(from rev 313826, filesystem/trunk/crypttab)
  filesystem/repos/testing-x86_64/env-generator
(from rev 313826, filesystem/trunk/env-generator)
  filesystem/repos/testing-x86_64/fstab
(from rev 313826, filesystem/trunk/fstab)
  filesystem/repos/testing-x86_64/group
(from rev 313826, filesystem/trunk/group)
  filesystem/repos/testing-x86_64/gshadow
(from rev 313826, filesystem/trunk/gshadow)
  filesystem/repos/testing-x86_64/host.conf
(from rev 313826, filesystem/trunk/host.conf)
  filesystem/repos/testing-x86_64/hosts
(from rev 313826, filesystem/trunk/hosts)
  filesystem/repos/testing-x86_64/issue
(from rev 313826, filesystem/trunk/issue)
  filesystem/repos/testing-x86_64/ld.so.conf
(from rev 313826, filesystem/trunk/ld.so.conf)
  filesystem/repos/testing-x86_64/locale.sh
(from rev 313826, filesystem/trunk/locale.sh)
  filesystem/repos/testing-x86_64/motd
(from rev 313826, filesystem/trunk/motd)
  filesystem/repos/testing-x86_64/nsswitch.conf
(from rev 313826, filesystem/trunk/nsswitch.conf)
  filesystem/repos/testing-x86_64/os-release
(from rev 313826, filesystem/trunk/os-release)
  filesystem/repos/testing-x86_64/passwd
(from rev 313826, filesystem/trunk/passwd)
  filesystem/repos/testing-x86_64/profile
(from rev 313826, filesystem/trunk/profile)
  filesystem/repos/testing-x86_64/resolv.conf
(from rev 313826, filesystem/trunk/resolv.conf)
  filesystem/repos/testing-x86_64/securetty
(from rev 313826, filesystem/trunk/securetty)
  filesystem/repos/testing-x86_64/shadow
(from rev 313826, filesystem/trunk/shadow)
  filesystem/repos/testing-x86_64/shells
(from rev 313826, filesystem/trunk/shells)
  filesystem/repos/testing-x86_64/sysusers
(from rev 313826, filesystem/trunk/sysusers)
  filesystem/repos/testing-x86_64/tmpfiles
(from rev 313826, filesystem/trunk/tmpfiles)

---+
 PKGBUILD  |  123 
 crypttab  |   12 +
 env-generator |3 +
 fstab |4 +
 group |1 
 gshadow   |1 
 host.conf |4 +
 hosts |2 
 issue |2 
 ld.so.conf|4 +
 locale.sh |   19 
 nsswitch.conf |   18 
 os-release|8 +++
 passwd|1 
 profile   |   40 ++
 resolv.conf   |2 
 securetty |   12 +
 shadow|1 
 shells|5 ++
 sysusers  |   28 
 tmpfiles  |   17 +++
 21 files changed, 307 insertions(+)

Copied: filesystem/repos/testing-x86_64/PKGBUILD (from rev 313826, 
filesystem/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-31 18:34:17 UTC (rev 313827)
@@ -0,0 +1,123 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Tom Gundersen 
+
+pkgname=filesystem
+pkgver=2017.12
+pkgrel=1
+pkgdesc='Base Arch Linux files'
+arch=('x86_64')
+license=('GPL')
+url='https://www.archlinux.org'
+groups=('base')
+depends=('iana-etc')
+backup=('etc/crypttab' 'etc/fstab' 'etc/group' 'etc/gshadow' 'etc/host.conf'
+'etc/hosts' 'etc/issue' 'etc/ld.so.conf' 'etc/motd' 'etc/nsswitch.conf'
+'etc/passwd' 'etc/profile' 'etc/resolv.conf' 'etc/securetty'
+'etc/shadow' 'etc/shells')
+source=('crypttab' 'env-generator' 'fstab' 'group' 'gshadow' 'host.conf' 
'hosts'
+'issue' 'ld.so.conf' 'locale.sh' 'motd' 'nsswitch.conf' 'os-release'
+'passwd' 'profile' 'resolv.conf' 'securetty' 'shadow' 'shells'
+'sysusers' 'tmpfiles')
+md5sums=('5fa6674df7645d7f5895f2d12b4ef4e9'
+ '2b0344e9639f35f3c0d5637a23556089'
+ 'e33f6dfdd61978fcb3ddf1431286e05a'
+ '7fed1e1fb855e41a6d64d41f8521d69a'
+ '1c1e3b08acfa286f4b417c49de3e4366'
+ '7d119a9cce152aa182fb3392ddeecea7'
+ 'a1315ea3e2b64d197b6efaf9c14ff778'
+ '7813c481156f6b280a3ba91fc6236368'
+ '5deb9f890a4d08a245e9752ede77271e'
+ '380ccce470d309efb631f7ec3f86db48'
+ 'd41d8cd98f00b204e9800998ecf8427e'
+ '9a439ad4ca5c0fe885fc79159a108e36'
+ '0a0fbb8e64faabb40023bd180d7190a1'
+ '5182ac38a0de85da8ade93ef71975ca4'
+ '2c79e1762978235e7b4a9ef595f6c029'
+ '0ee015fad07732676d9488ae498eed41'
+ 'f04bcb2803afc4dcb95670fe87343b4d'
+ 'f64466dd77c7bec37a8b47681468211a'
+ 'a78cd8d7f8240a8448edee82f503c34e'
+ 'af7832eabaac9804c22f1f2b53816a49'
+ '0267a3a463f35eec8a31f40a720dfd86')
+
+package() {
+  cd "$pkgdir"
+
+  # setup root filesystem
+  for d in boot dev 

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

2017-12-31 Thread Baptiste Jonglez via arch-commits
Date: Sunday, December 31, 2017 @ 18:31:38
  Author: zorun
Revision: 277601

pjproject-savoirfairelinux: remove i686 support

Modified:
  pjproject-savoirfairelinux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 18:31:14 UTC (rev 277600)
+++ PKGBUILD2017-12-31 18:31:38 UTC (rev 277601)
@@ -5,7 +5,7 @@
 pkgver=2.6
 pkgrel=6
 pkgdesc="Open source SIP stack and media stack, built with patches from 
SavoirFaire Linux (mostly GnuTLS support)"
-arch=('i686' 'x86_64')
+arch=('x86_64')
 url="http://www.pjsip.org/;
 license=('GPL')
 depends=('util-linux' 'gnutls' 'portaudio' 'speex' 'alsa-lib' 'libsamplerate' 
'ffmpeg' 'libsrtp' 'opus')


[arch-commits] Commit in bird/repos/extra-x86_64 (6 files)

2017-12-31 Thread Sébastien Luttringer via arch-commits
Date: Sunday, December 31, 2017 @ 18:14:19
  Author: seblu
Revision: 313825

archrelease: copy trunk to extra-x86_64

Added:
  bird/repos/extra-x86_64/01-fix-leak.patch
(from rev 313824, bird/trunk/01-fix-leak.patch)
  bird/repos/extra-x86_64/PKGBUILD
(from rev 313824, bird/trunk/PKGBUILD)
  bird/repos/extra-x86_64/bird.service
(from rev 313824, bird/trunk/bird.service)
Deleted:
  bird/repos/extra-x86_64/01-fix-leak.patch
  bird/repos/extra-x86_64/PKGBUILD
  bird/repos/extra-x86_64/bird.service

---+
 01-fix-leak.patch |   76 +++
 PKGBUILD  |  126 ++--
 bird.service  |   24 -
 3 files changed, 113 insertions(+), 113 deletions(-)

Deleted: 01-fix-leak.patch
===
--- 01-fix-leak.patch   2017-12-31 18:13:38 UTC (rev 313824)
+++ 01-fix-leak.patch   2017-12-31 18:14:19 UTC (rev 313825)
@@ -1,38 +0,0 @@
-From 3013fc57bdc97b0031c4f4250b9bdd172f4c0f4e Mon Sep 17 00:00:00 2001
-From: "Ondrej Zajicek (work)" 
-Date: Sat, 16 Dec 2017 00:42:56 +0100
-Subject: [PATCH] Netlink: Fix memory leak
-

- sysdep/linux/netlink.c | 11 ---
- 1 file changed, 11 deletions(-)
-
-diff --git a/sysdep/linux/netlink.c b/sysdep/linux/netlink.c
-index 72ff13fa..4cb51519 100644
 a/sysdep/linux/netlink.c
-+++ b/sysdep/linux/netlink.c
-@@ -1666,14 +1666,6 @@ nl_parse_route(struct nl_parse_state *s, struct 
nlmsghdr *h)
- ra->nh.labels = labels;
- #endif
- 
--  rte *e = rte_get_temp(ra);
--  e->net = net;
--  e->u.krt.src = src;
--  e->u.krt.proto = i->rtm_protocol;
--  e->u.krt.seen = 0;
--  e->u.krt.best = 0;
--  e->u.krt.metric = 0;
--
-   if (i->rtm_scope != def_scope)
- {
-   ea_list *ea = lp_alloc(s->pool, sizeof(ea_list) + sizeof(eattr));
-@@ -1687,9 +1679,6 @@ nl_parse_route(struct nl_parse_state *s, struct nlmsghdr 
*h)
-   ea->attrs[0].u.data = i->rtm_scope;
- }
- 
--  if (a[RTA_PRIORITY])
--e->u.krt.metric = rta_get_u32(a[RTA_PRIORITY]);
--
-   if (a[RTA_PREFSRC])
- {
-   ip_addr ps = rta_get_ipa(a[RTA_PREFSRC]);

Copied: bird/repos/extra-x86_64/01-fix-leak.patch (from rev 313824, 
bird/trunk/01-fix-leak.patch)
===
--- 01-fix-leak.patch   (rev 0)
+++ 01-fix-leak.patch   2017-12-31 18:14:19 UTC (rev 313825)
@@ -0,0 +1,38 @@
+From 3013fc57bdc97b0031c4f4250b9bdd172f4c0f4e Mon Sep 17 00:00:00 2001
+From: "Ondrej Zajicek (work)" 
+Date: Sat, 16 Dec 2017 00:42:56 +0100
+Subject: [PATCH] Netlink: Fix memory leak
+
+---
+ sysdep/linux/netlink.c | 11 ---
+ 1 file changed, 11 deletions(-)
+
+diff --git a/sysdep/linux/netlink.c b/sysdep/linux/netlink.c
+index 72ff13fa..4cb51519 100644
+--- a/sysdep/linux/netlink.c
 b/sysdep/linux/netlink.c
+@@ -1666,14 +1666,6 @@ nl_parse_route(struct nl_parse_state *s, struct 
nlmsghdr *h)
+ ra->nh.labels = labels;
+ #endif
+ 
+-  rte *e = rte_get_temp(ra);
+-  e->net = net;
+-  e->u.krt.src = src;
+-  e->u.krt.proto = i->rtm_protocol;
+-  e->u.krt.seen = 0;
+-  e->u.krt.best = 0;
+-  e->u.krt.metric = 0;
+-
+   if (i->rtm_scope != def_scope)
+ {
+   ea_list *ea = lp_alloc(s->pool, sizeof(ea_list) + sizeof(eattr));
+@@ -1687,9 +1679,6 @@ nl_parse_route(struct nl_parse_state *s, struct nlmsghdr 
*h)
+   ea->attrs[0].u.data = i->rtm_scope;
+ }
+ 
+-  if (a[RTA_PRIORITY])
+-e->u.krt.metric = rta_get_u32(a[RTA_PRIORITY]);
+-
+   if (a[RTA_PREFSRC])
+ {
+   ip_addr ps = rta_get_ipa(a[RTA_PREFSRC]);

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-31 18:13:38 UTC (rev 313824)
+++ PKGBUILD2017-12-31 18:14:19 UTC (rev 313825)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-pkgname=bird
-pkgver=2.0.0
-pkgrel=2
-pkgdesc='RIP, OSPF, BGP, MPLS, BFD, Babbel routing daemon'
-arch=('x86_64')
-url='http://bird.network.cz/'
-license=('GPL2')
-backup=('etc/bird.conf')
-depends=('glibc' 'readline' 'ncurses')
-replaces=('bird6')
-source=("ftp://bird.network.cz/pub/bird/$pkgname-$pkgver.tar.gz;
-'bird.service'
-'01-fix-leak.patch')
-md5sums=('31cbd40f493d6e946e7cdf3158c4923a'
- '69221e063a3f07dcad519d5eeacaae75'
- '4936f7eb7a66014e2ad358d94a9ea1a9')
-
-prepare() {
-  cd $pkgname-$pkgver
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -i "$srcdir/${filename##*/}"
-fi
-  done
-  :
-}
-
-build() {
-  cd $pkgbase-$pkgver
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc \
---localstatedir=/var \
---docdir=/usr/share/doc/$pkgname
-  make
-}
-
-package () {
-
-  cd $pkgbase-$pkgver

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

2017-12-31 Thread Sébastien Luttringer via arch-commits
Date: Sunday, December 31, 2017 @ 18:13:38
  Author: seblu
Revision: 313824

upgpkg: bird 2.0.0-3

- fix FS#56909

Modified:
  bird/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-30 23:54:06 UTC (rev 313823)
+++ PKGBUILD2017-12-31 18:13:38 UTC (rev 313824)
@@ -3,13 +3,13 @@
 
 pkgname=bird
 pkgver=2.0.0
-pkgrel=2
+pkgrel=3
 pkgdesc='RIP, OSPF, BGP, MPLS, BFD, Babbel routing daemon'
 arch=('x86_64')
 url='http://bird.network.cz/'
 license=('GPL2')
 backup=('etc/bird.conf')
-depends=('glibc' 'readline' 'ncurses')
+depends=('glibc' 'readline' 'ncurses' 'libssh')
 replaces=('bird6')
 source=("ftp://bird.network.cz/pub/bird/$pkgname-$pkgver.tar.gz;
 'bird.service'


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

2017-12-31 Thread Baptiste Jonglez via arch-commits
Date: Sunday, December 31, 2017 @ 18:08:07
  Author: zorun
Revision: 277598

Update source URL to google code archive

Modified:
  distcc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 17:39:11 UTC (rev 277597)
+++ PKGBUILD2017-12-31 18:08:07 UTC (rev 277598)
@@ -16,7 +16,7 @@
'python2')
 backup=('etc/conf.d/distccd'
'etc/distcc/hosts')
-source=(http://distcc.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2
+source=(https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/distcc/${pkgname}-${pkgver}.tar.bz2
distccd.conf.d
distccd.service)
 md5sums=('18cd4f33f5cfc3e75675cafc568fb9cf'


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

2017-12-31 Thread Baptiste Jonglez via arch-commits
Date: Sunday, December 31, 2017 @ 17:33:39
  Author: zorun
Revision: 277596

archrelease: copy trunk to community-x86_64

Added:
  libsecp256k1/repos/
  libsecp256k1/repos/community-x86_64/
  libsecp256k1/repos/community-x86_64/PKGBUILD
(from rev 277595, libsecp256k1/trunk/PKGBUILD)

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

Copied: libsecp256k1/repos/community-x86_64/PKGBUILD (from rev 277595, 
libsecp256k1/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-12-31 17:33:39 UTC (rev 277596)
@@ -0,0 +1,48 @@
+# Maintainer: Baptiste Jonglez 
+# Contributor: Andy Weidenbaum 
+
+pkgname=libsecp256k1
+_gitcommit=0b7024185045a49a1a6a4c5615bf31c94f63d9c4
+pkgver=20170927+825+g0b70241
+pkgrel=1
+pkgdesc="Optimized C library for EC operations on curve secp256k1"
+arch=('x86_64')
+url="https://github.com/bitcoin-core/secp256k1;
+depends=("gmp")
+license=('MIT')
+source=($pkgname-$pkgver.tar.gz::https://github.com/bitcoin-core/secp256k1/archive/${_gitcommit}.tar.gz)
+sha512sums=('54e0c446ae63105800dfaf23dc934734f196c91f275db0455e58a36926c29ecc51a13d9b1eb2e45bc86199120c3c472ec7b39086787a49ce388a4df462a870bc')
+
+build() {
+  cd "secp256k1-$_gitcommit"
+  ./autogen.sh
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--libexecdir=/usr/bin \
+--sysconfdir=/etc \
+--sharedstatedir=/usr/share/libsecp256k1 \
+--localstatedir=/var/lib/libsecp256k1 \
+--disable-static \
+--disable-benchmark \
+--disable-coverage \
+--enable-module-recovery \
+--disable-jni \
+--enable-tests \
+--enable-exhaustive-tests \
+--disable-openssl-tests \
+--with-gnu-ld
+  make
+}
+
+check() {
+  cd "secp256k1-$_gitcommit"
+  make check
+}
+
+package() {
+  cd "secp256k1-$_gitcommit"
+  install -Dm 644 COPYING -t "$pkgdir/usr/share/licenses/libsecp256k1"
+  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/libsecp256k1"
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in (3 files)

2017-12-31 Thread Baptiste Jonglez via arch-commits
Date: Sunday, December 31, 2017 @ 17:32:04
  Author: zorun
Revision: 277595

Add libsecp256k1

Added:
  libsecp256k1/
  libsecp256k1/trunk/
  libsecp256k1/trunk/PKGBUILD

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

Added: libsecp256k1/trunk/PKGBUILD
===
--- libsecp256k1/trunk/PKGBUILD (rev 0)
+++ libsecp256k1/trunk/PKGBUILD 2017-12-31 17:32:04 UTC (rev 277595)
@@ -0,0 +1,48 @@
+# Maintainer: Baptiste Jonglez 
+# Contributor: Andy Weidenbaum 
+
+pkgname=libsecp256k1
+_gitcommit=0b7024185045a49a1a6a4c5615bf31c94f63d9c4
+pkgver=20170927+825+g0b70241
+pkgrel=1
+pkgdesc="Optimized C library for EC operations on curve secp256k1"
+arch=('x86_64')
+url="https://github.com/bitcoin-core/secp256k1;
+depends=("gmp")
+license=('MIT')
+source=($pkgname-$pkgver.tar.gz::https://github.com/bitcoin-core/secp256k1/archive/${_gitcommit}.tar.gz)
+sha512sums=('54e0c446ae63105800dfaf23dc934734f196c91f275db0455e58a36926c29ecc51a13d9b1eb2e45bc86199120c3c472ec7b39086787a49ce388a4df462a870bc')
+
+build() {
+  cd "secp256k1-$_gitcommit"
+  ./autogen.sh
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--libexecdir=/usr/bin \
+--sysconfdir=/etc \
+--sharedstatedir=/usr/share/libsecp256k1 \
+--localstatedir=/var/lib/libsecp256k1 \
+--disable-static \
+--disable-benchmark \
+--disable-coverage \
+--enable-module-recovery \
+--disable-jni \
+--enable-tests \
+--enable-exhaustive-tests \
+--disable-openssl-tests \
+--with-gnu-ld
+  make
+}
+
+check() {
+  cd "secp256k1-$_gitcommit"
+  make check
+}
+
+package() {
+  cd "secp256k1-$_gitcommit"
+  install -Dm 644 COPYING -t "$pkgdir/usr/share/licenses/libsecp256k1"
+  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/libsecp256k1"
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in libretro-citra (3 files)

2017-12-31 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 31, 2017 @ 14:59:08
  Author: alucryd
Revision: 277594

archrelease: copy trunk to community-x86_64

Added:
  libretro-citra/repos/
  libretro-citra/repos/community-x86_64/
  libretro-citra/repos/community-x86_64/PKGBUILD
(from rev 277593, libretro-citra/trunk/PKGBUILD)

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

Copied: libretro-citra/repos/community-x86_64/PKGBUILD (from rev 277593, 
libretro-citra/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-12-31 14:59:08 UTC (rev 277594)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+
+pkgname=libretro-citra
+pkgver=5621
+pkgrel=1
+pkgdesc='Nintendo 3DS core'
+arch=('x86_64')
+url='https://github.com/libretro/citra'
+license=('GPL2')
+groups=('libretro')
+depends=('curl' 'gcc-libs' 'glibc' 'libretro-core-info')
+makedepends=('cmake' 'git')
+source=('libretro-citra::git+https://github.com/libretro/citra.git'
+'citra-boost::git+https://github.com/citra-emu/ext-boost'
+'git+https://github.com/philsquared/Catch'
+'git+https://github.com/whoshuu/cpr'
+'git+https://github.com/weidai11/cryptopp'
+'git+https://github.com/MerryMage/dynarmic'
+'git+https://github.com/lsalzman/enet'
+'git+https://github.com/fmtlib/fmt'
+'git+https://github.com/svn2github/inih'
+'git+https://github.com/neobrain/nihstro'
+'citra-soundtouch::git+https://github.com/citra-emu/ext-soundtouch'
+'git+https://github.com/herumi/xbyak')
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+pkgver() {
+  cd libretro-citra
+
+  git rev-list --count HEAD
+}
+
+prepare() {
+  cd libretro-citra
+
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build
+
+  for submodule in 
externals/{catch,cpr,cryptopp/cryptopp,dynarmic,enet,fmt,inih/inih,nihstro,xbyak};
 do
+git submodule init ${submodule}
+git config submodule.${submodule}.url ../${submodule##*/}
+git submodule update
+  done
+  for submodule in externals/{boost,soundtouch}; do
+git submodule init ${submodule}
+git config submodule.${submodule}.url ../citra-${submodule##*/}
+git submodule update
+  done
+}
+
+build() {
+  cd libretro-citra/build
+
+  cmake .. \
+-DCMAKE_BUILD_TYPE='Release' \
+-DDISABLE_LIBPNG='ON' \
+-DENABLE_LIBRETRO='ON' \
+-DENABLE_QT='OFF' \
+-DENABLE_SDL2='OFF' \
+-DENABLE_WEB_SERVICE='OFF' \
+-DUSE_SYSTEM_CURL='ON'
+  make
+}
+
+package() {
+  cd libretro-citra/build
+
+  install -Dm 644 src/citra_libretro/citra_libretro.so -t 
"${pkgdir}"/usr/lib/libretro/
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in (3 files)

2017-12-31 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 31, 2017 @ 14:58:50
  Author: alucryd
Revision: 277593

Add libretro-citra

Added:
  libretro-citra/
  libretro-citra/trunk/
  libretro-citra/trunk/PKGBUILD

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

Added: libretro-citra/trunk/PKGBUILD
===
--- libretro-citra/trunk/PKGBUILD   (rev 0)
+++ libretro-citra/trunk/PKGBUILD   2017-12-31 14:58:50 UTC (rev 277593)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+
+pkgname=libretro-citra
+pkgver=5621
+pkgrel=1
+pkgdesc='Nintendo 3DS core'
+arch=('x86_64')
+url='https://github.com/libretro/citra'
+license=('GPL2')
+groups=('libretro')
+depends=('curl' 'gcc-libs' 'glibc' 'libretro-core-info')
+makedepends=('cmake' 'git')
+source=('libretro-citra::git+https://github.com/libretro/citra.git'
+'citra-boost::git+https://github.com/citra-emu/ext-boost'
+'git+https://github.com/philsquared/Catch'
+'git+https://github.com/whoshuu/cpr'
+'git+https://github.com/weidai11/cryptopp'
+'git+https://github.com/MerryMage/dynarmic'
+'git+https://github.com/lsalzman/enet'
+'git+https://github.com/fmtlib/fmt'
+'git+https://github.com/svn2github/inih'
+'git+https://github.com/neobrain/nihstro'
+'citra-soundtouch::git+https://github.com/citra-emu/ext-soundtouch'
+'git+https://github.com/herumi/xbyak')
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+pkgver() {
+  cd libretro-citra
+
+  git rev-list --count HEAD
+}
+
+prepare() {
+  cd libretro-citra
+
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build
+
+  for submodule in 
externals/{catch,cpr,cryptopp/cryptopp,dynarmic,enet,fmt,inih/inih,nihstro,xbyak};
 do
+git submodule init ${submodule}
+git config submodule.${submodule}.url ../${submodule##*/}
+git submodule update
+  done
+  for submodule in externals/{boost,soundtouch}; do
+git submodule init ${submodule}
+git config submodule.${submodule}.url ../citra-${submodule##*/}
+git submodule update
+  done
+}
+
+build() {
+  cd libretro-citra/build
+
+  cmake .. \
+-DCMAKE_BUILD_TYPE='Release' \
+-DDISABLE_LIBPNG='ON' \
+-DENABLE_LIBRETRO='ON' \
+-DENABLE_QT='OFF' \
+-DENABLE_SDL2='OFF' \
+-DENABLE_WEB_SERVICE='OFF' \
+-DUSE_SYSTEM_CURL='ON'
+  make
+}
+
+package() {
+  cd libretro-citra/build
+
+  install -Dm 644 src/citra_libretro/citra_libretro.so -t 
"${pkgdir}"/usr/lib/libretro/
+}
+
+# vim: ts=2 sw=2 et:


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


[arch-commits] Commit in libretro-ppsspp (3 files)

2017-12-31 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 31, 2017 @ 14:48:57
  Author: alucryd
Revision: 277592

archrelease: copy trunk to community-x86_64

Added:
  libretro-ppsspp/repos/
  libretro-ppsspp/repos/community-x86_64/
  libretro-ppsspp/repos/community-x86_64/PKGBUILD
(from rev 277591, libretro-ppsspp/trunk/PKGBUILD)

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

Copied: libretro-ppsspp/repos/community-x86_64/PKGBUILD (from rev 277591, 
libretro-ppsspp/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-12-31 14:48:57 UTC (rev 277592)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Duck Hunt 
+
+pkgname=libretro-ppsspp
+pkgver=23325
+pkgrel=1
+pkgdesc='Sony PlayStation Portable core'
+arch=('x86_64')
+url='https://github.com/libretro/libretro-ppsspp'
+license=('GPL2')
+groups=('libretro')
+depends=('gcc-libs' 'glibc' 'libgl' 'libretro-core-info')
+makedepends=('git')
+_commit='dd73f9110d49a83478216672ea4880a1998c1ed2'
+source=("libretro-ppsspp::git+https://github.com/libretro/ppsspp.git#commit=${_commit};
+'ppsspp-ffmpeg::git+https://github.com/hrydgard/ppsspp-ffmpeg.git'
+'ppsspp-glslang::git+https://github.com/hrydgard/glslang.git'
+'git+https://github.com/hrydgard/ppsspp-lang.git'
+'git+https://github.com/Kingcom/armips.git'
+'armips-tinyformat::git+https://github.com/Kingcom/tinyformat.git'
+'git+https://github.com/KhronosGroup/SPIRV-Cross.git')
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+pkgver() {
+  cd libretro-ppsspp
+
+  git rev-list --count HEAD
+}
+
+prepare() {
+  cd libretro-ppsspp
+
+  for submodule in ffmpeg assets/lang ext/glslang; do
+git submodule init ${submodule}
+git config submodule.${submodule}.url ../ppsspp-${submodule#*/}
+git submodule update ${submodule}
+  done
+  for submodule in ext/{SPIRV-Cross,armips}; do
+git submodule init ${submodule}
+git config submodule.${submodule}.url ../${submodule#*/}
+git submodule update ${submodule}
+  done
+
+  cd ext/armips
+
+  for submodule in ext/tinyformat; do
+git submodule init ${submodule}
+git config submodule.${submodule}.url ../../../armips-${submodule#*/}
+git submodule update ${submodule}
+  done
+}
+
+build() {
+  cd libretro-ppsspp/libretro
+
+  make WITH_DYNAREC='x86_64'
+}
+
+package() {
+  cd libretro-ppsspp/libretro
+
+  install -Dm 644 ppsspp_libretro.so -t "${pkgdir}"/usr/lib/libretro/
+  install -Dm 644 ../LICENSE.TXT -t 
"${pkgdir}"/usr/share/licenses/libretro-ppsspp-git/
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in (3 files)

2017-12-31 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 31, 2017 @ 14:48:43
  Author: alucryd
Revision: 277591

Add libretro-ppsspp

Added:
  libretro-ppsspp/
  libretro-ppsspp/trunk/
  libretro-ppsspp/trunk/PKGBUILD

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

Added: libretro-ppsspp/trunk/PKGBUILD
===
--- libretro-ppsspp/trunk/PKGBUILD  (rev 0)
+++ libretro-ppsspp/trunk/PKGBUILD  2017-12-31 14:48:43 UTC (rev 277591)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Duck Hunt 
+
+pkgname=libretro-ppsspp
+pkgver=23325
+pkgrel=1
+pkgdesc='Sony PlayStation Portable core'
+arch=('x86_64')
+url='https://github.com/libretro/libretro-ppsspp'
+license=('GPL2')
+groups=('libretro')
+depends=('gcc-libs' 'glibc' 'libgl' 'libretro-core-info')
+makedepends=('git')
+_commit='dd73f9110d49a83478216672ea4880a1998c1ed2'
+source=("libretro-ppsspp::git+https://github.com/libretro/ppsspp.git#commit=${_commit};
+'ppsspp-ffmpeg::git+https://github.com/hrydgard/ppsspp-ffmpeg.git'
+'ppsspp-glslang::git+https://github.com/hrydgard/glslang.git'
+'git+https://github.com/hrydgard/ppsspp-lang.git'
+'git+https://github.com/Kingcom/armips.git'
+'armips-tinyformat::git+https://github.com/Kingcom/tinyformat.git'
+'git+https://github.com/KhronosGroup/SPIRV-Cross.git')
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+pkgver() {
+  cd libretro-ppsspp
+
+  git rev-list --count HEAD
+}
+
+prepare() {
+  cd libretro-ppsspp
+
+  for submodule in ffmpeg assets/lang ext/glslang; do
+git submodule init ${submodule}
+git config submodule.${submodule}.url ../ppsspp-${submodule#*/}
+git submodule update ${submodule}
+  done
+  for submodule in ext/{SPIRV-Cross,armips}; do
+git submodule init ${submodule}
+git config submodule.${submodule}.url ../${submodule#*/}
+git submodule update ${submodule}
+  done
+
+  cd ext/armips
+
+  for submodule in ext/tinyformat; do
+git submodule init ${submodule}
+git config submodule.${submodule}.url ../../../armips-${submodule#*/}
+git submodule update ${submodule}
+  done
+}
+
+build() {
+  cd libretro-ppsspp/libretro
+
+  make WITH_DYNAREC='x86_64'
+}
+
+package() {
+  cd libretro-ppsspp/libretro
+
+  install -Dm 644 ppsspp_libretro.so -t "${pkgdir}"/usr/lib/libretro/
+  install -Dm 644 ../LICENSE.TXT -t 
"${pkgdir}"/usr/share/licenses/libretro-ppsspp-git/
+}
+
+# vim: ts=2 sw=2 et:


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


[arch-commits] Commit in libretro-parallel-n64/repos/community-x86_64 (2 files)

2017-12-31 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 31, 2017 @ 14:43:59
  Author: alucryd
Revision: 277590

archrelease: copy trunk to community-x86_64

Added:
  libretro-parallel-n64/repos/community-x86_64/PKGBUILD
(from rev 277589, libretro-parallel-n64/trunk/PKGBUILD)
Deleted:
  libretro-parallel-n64/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-31 14:43:47 UTC (rev 277589)
+++ PKGBUILD2017-12-31 14:43:59 UTC (rev 277590)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Thomas Schneider 
-
-pkgname=libretro-parallel-n64
-pkgver=4910
-pkgrel=2
-pkgdesc='Nintendo 64 core'
-arch=('x86_64')
-url='https://github.com/libretro/parallel-n64'
-license=('GPL2')
-groups=('libretro')
-depends=('gcc-libs' 'glibc' 'libgl')
-makedepends=('git')
-_commit='8c7466029074c9a465fd47dcea812fed7e4d49d3'
-source=("libretro-parallel-n64::git+https://github.com/libretro/parallel-n64.git#commit=${_commit};)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd libretro-parallel-n64
-
-  git rev-list --count HEAD
-}
-
-build() {
-  cd libretro-parallel-n64
-
-  make WITH_DYNAREC='x86_64'
-}
-
-package() {
-  cd libretro-parallel-n64
-
-  install -Dm 644 parallel_n64_libretro.so -t "${pkgdir}"/usr/lib/libretro/
-}
-
-# vim: ts=2 sw=2 et:

Copied: libretro-parallel-n64/repos/community-x86_64/PKGBUILD (from rev 277589, 
libretro-parallel-n64/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-31 14:43:59 UTC (rev 277590)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Thomas Schneider 
+
+pkgname=libretro-parallel-n64
+pkgver=4910
+pkgrel=3
+pkgdesc='Nintendo 64 core'
+arch=('x86_64')
+url='https://github.com/libretro/parallel-n64'
+license=('GPL2')
+groups=('libretro')
+depends=('gcc-libs' 'glibc' 'libgl' 'libretro-core-info')
+makedepends=('git')
+_commit='8c7466029074c9a465fd47dcea812fed7e4d49d3'
+source=("libretro-parallel-n64::git+https://github.com/libretro/parallel-n64.git#commit=${_commit};)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd libretro-parallel-n64
+
+  git rev-list --count HEAD
+}
+
+build() {
+  cd libretro-parallel-n64
+
+  make WITH_DYNAREC='x86_64'
+}
+
+package() {
+  cd libretro-parallel-n64
+
+  install -Dm 644 parallel_n64_libretro.so -t "${pkgdir}"/usr/lib/libretro/
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in libretro-parallel-n64/trunk (PKGBUILD)

2017-12-31 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 31, 2017 @ 14:43:47
  Author: alucryd
Revision: 277589

upgpkg: libretro-parallel-n64 4910-3

Modified:
  libretro-parallel-n64/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 14:22:40 UTC (rev 277588)
+++ PKGBUILD2017-12-31 14:43:47 UTC (rev 277589)
@@ -4,13 +4,13 @@
 
 pkgname=libretro-parallel-n64
 pkgver=4910
-pkgrel=2
+pkgrel=3
 pkgdesc='Nintendo 64 core'
 arch=('x86_64')
 url='https://github.com/libretro/parallel-n64'
 license=('GPL2')
 groups=('libretro')
-depends=('gcc-libs' 'glibc' 'libgl')
+depends=('gcc-libs' 'glibc' 'libgl' 'libretro-core-info')
 makedepends=('git')
 _commit='8c7466029074c9a465fd47dcea812fed7e4d49d3'
 
source=("libretro-parallel-n64::git+https://github.com/libretro/parallel-n64.git#commit=${_commit};)


[arch-commits] Commit in libretro-parallel-n64/repos/community-x86_64 (2 files)

2017-12-31 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 31, 2017 @ 14:22:40
  Author: alucryd
Revision: 277588

archrelease: copy trunk to community-x86_64

Added:
  libretro-parallel-n64/repos/community-x86_64/PKGBUILD
(from rev 277587, libretro-parallel-n64/trunk/PKGBUILD)
Deleted:
  libretro-parallel-n64/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-31 14:22:29 UTC (rev 277587)
+++ PKGBUILD2017-12-31 14:22:40 UTC (rev 277588)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Thomas Schneider 
-
-pkgname=libretro-parallel-n64
-pkgver=4910
-pkgrel=1
-pkgdesc='Nintendo 64 core'
-arch=('x86_64')
-url='https://github.com/libretro/parallel-n64'
-license=('GPL2')
-groups=('libretro')
-depends=('gcc-libs' 'glibc' 'libgl')
-makedepends=('git')
-provides=('libretro-parallel-n64')
-conflicts=('libretro-parallel-n64')
-_commit='8c7466029074c9a465fd47dcea812fed7e4d49d3'
-source=("libretro-parallel-n64::git+https://github.com/libretro/parallel-n64.git#commit=${_commit};)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd libretro-parallel-n64
-
-  git rev-list --count HEAD
-}
-
-build() {
-  cd libretro-parallel-n64
-
-  make WITH_DYNAREC='x86_64'
-}
-
-package() {
-  cd libretro-parallel-n64
-
-  install -Dm 644 parallel_n64_libretro.so -t "${pkgdir}"/usr/lib/libretro/
-}
-
-# vim: ts=2 sw=2 et:

Copied: libretro-parallel-n64/repos/community-x86_64/PKGBUILD (from rev 277587, 
libretro-parallel-n64/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-31 14:22:40 UTC (rev 277588)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Thomas Schneider 
+
+pkgname=libretro-parallel-n64
+pkgver=4910
+pkgrel=2
+pkgdesc='Nintendo 64 core'
+arch=('x86_64')
+url='https://github.com/libretro/parallel-n64'
+license=('GPL2')
+groups=('libretro')
+depends=('gcc-libs' 'glibc' 'libgl')
+makedepends=('git')
+_commit='8c7466029074c9a465fd47dcea812fed7e4d49d3'
+source=("libretro-parallel-n64::git+https://github.com/libretro/parallel-n64.git#commit=${_commit};)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd libretro-parallel-n64
+
+  git rev-list --count HEAD
+}
+
+build() {
+  cd libretro-parallel-n64
+
+  make WITH_DYNAREC='x86_64'
+}
+
+package() {
+  cd libretro-parallel-n64
+
+  install -Dm 644 parallel_n64_libretro.so -t "${pkgdir}"/usr/lib/libretro/
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in libretro-parallel-n64/trunk (PKGBUILD)

2017-12-31 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 31, 2017 @ 14:22:29
  Author: alucryd
Revision: 277587

upgpkg: libretro-parallel-n64 4910-2

Modified:
  libretro-parallel-n64/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 14:15:43 UTC (rev 277586)
+++ PKGBUILD2017-12-31 14:22:29 UTC (rev 277587)
@@ -4,7 +4,7 @@
 
 pkgname=libretro-parallel-n64
 pkgver=4910
-pkgrel=1
+pkgrel=2
 pkgdesc='Nintendo 64 core'
 arch=('x86_64')
 url='https://github.com/libretro/parallel-n64'
@@ -12,8 +12,6 @@
 groups=('libretro')
 depends=('gcc-libs' 'glibc' 'libgl')
 makedepends=('git')
-provides=('libretro-parallel-n64')
-conflicts=('libretro-parallel-n64')
 _commit='8c7466029074c9a465fd47dcea812fed7e4d49d3'
 
source=("libretro-parallel-n64::git+https://github.com/libretro/parallel-n64.git#commit=${_commit};)
 sha256sums=('SKIP')


[arch-commits] Commit in libretro-parallel-n64 (3 files)

2017-12-31 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 31, 2017 @ 14:15:43
  Author: alucryd
Revision: 277586

archrelease: copy trunk to community-x86_64

Added:
  libretro-parallel-n64/repos/
  libretro-parallel-n64/repos/community-x86_64/
  libretro-parallel-n64/repos/community-x86_64/PKGBUILD
(from rev 277585, libretro-parallel-n64/trunk/PKGBUILD)

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

Copied: libretro-parallel-n64/repos/community-x86_64/PKGBUILD (from rev 277585, 
libretro-parallel-n64/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-12-31 14:15:43 UTC (rev 277586)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Thomas Schneider 
+
+pkgname=libretro-parallel-n64
+pkgver=4910
+pkgrel=1
+pkgdesc='Nintendo 64 core'
+arch=('x86_64')
+url='https://github.com/libretro/parallel-n64'
+license=('GPL2')
+groups=('libretro')
+depends=('gcc-libs' 'glibc' 'libgl')
+makedepends=('git')
+provides=('libretro-parallel-n64')
+conflicts=('libretro-parallel-n64')
+_commit='8c7466029074c9a465fd47dcea812fed7e4d49d3'
+source=("libretro-parallel-n64::git+https://github.com/libretro/parallel-n64.git#commit=${_commit};)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd libretro-parallel-n64
+
+  git rev-list --count HEAD
+}
+
+build() {
+  cd libretro-parallel-n64
+
+  make WITH_DYNAREC='x86_64'
+}
+
+package() {
+  cd libretro-parallel-n64
+
+  install -Dm 644 parallel_n64_libretro.so -t "${pkgdir}"/usr/lib/libretro/
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in (3 files)

2017-12-31 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 31, 2017 @ 14:14:54
  Author: alucryd
Revision: 277585

Add libretro-parallel-n64

Added:
  libretro-parallel-n64/
  libretro-parallel-n64/trunk/
  libretro-parallel-n64/trunk/PKGBUILD

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

Added: libretro-parallel-n64/trunk/PKGBUILD
===
--- libretro-parallel-n64/trunk/PKGBUILD(rev 0)
+++ libretro-parallel-n64/trunk/PKGBUILD2017-12-31 14:14:54 UTC (rev 
277585)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Thomas Schneider 
+
+pkgname=libretro-parallel-n64
+pkgver=4910
+pkgrel=1
+pkgdesc='Nintendo 64 core'
+arch=('x86_64')
+url='https://github.com/libretro/parallel-n64'
+license=('GPL2')
+groups=('libretro')
+depends=('gcc-libs' 'glibc' 'libgl')
+makedepends=('git')
+provides=('libretro-parallel-n64')
+conflicts=('libretro-parallel-n64')
+_commit='8c7466029074c9a465fd47dcea812fed7e4d49d3'
+source=("libretro-parallel-n64::git+https://github.com/libretro/parallel-n64.git#commit=${_commit};)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd libretro-parallel-n64
+
+  git rev-list --count HEAD
+}
+
+build() {
+  cd libretro-parallel-n64
+
+  make WITH_DYNAREC='x86_64'
+}
+
+package() {
+  cd libretro-parallel-n64
+
+  install -Dm 644 parallel_n64_libretro.so -t "${pkgdir}"/usr/lib/libretro/
+}
+
+# vim: ts=2 sw=2 et:


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


[arch-commits] Commit in pcsx2/repos/multilib-x86_64 (4 files)

2017-12-31 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 31, 2017 @ 14:02:32
  Author: alucryd
Revision: 277584

archrelease: copy trunk to multilib-x86_64

Added:
  pcsx2/repos/multilib-x86_64/PKGBUILD
(from rev 277583, pcsx2/trunk/PKGBUILD)
  pcsx2/repos/multilib-x86_64/pcsx2-gcc6.patch
(from rev 277583, pcsx2/trunk/pcsx2-gcc6.patch)
Deleted:
  pcsx2/repos/multilib-x86_64/PKGBUILD
  pcsx2/repos/multilib-x86_64/pcsx2-gcc6.patch

--+
 PKGBUILD |  142 ++---
 pcsx2-gcc6.patch |   24 
 2 files changed, 72 insertions(+), 94 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-31 14:02:16 UTC (rev 277583)
+++ PKGBUILD2017-12-31 14:02:32 UTC (rev 277584)
@@ -1,82 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: josephgbr 
-# Contributor: vEX 
-
-pkgname=pcsx2
-pkgver=1.4.0
-pkgrel=7
-pkgdesc='A Sony PlayStation 2 emulator'
-arch=('i686' 'x86_64')
-url='http://www.pcsx2.net'
-license=('GPL2' 'GPL3' 'LGPL2.1' 'LGPL3')
-depends_i686=('glew' 'libaio' 'libcanberra' 'libjpeg-turbo' 'nvidia-cg-toolkit'
-  'portaudio' 'sdl2' 'soundtouch' 'wxgtk2')
-depends_x86_64=('lib32-glew' 'lib32-libaio' 'lib32-libcanberra'
-'lib32-libjpeg-turbo' 'lib32-nvidia-cg-toolkit'
-'lib32-portaudio' 'lib32-sdl2' 'lib32-soundtouch'
-'lib32-wxgtk')
-makedepends=('cmake' 'png++')
-makedepends_x86_64=('gcc-multilib')
-options=('!emptydirs')
-source=("pcsx2-${pkgver}.tar.gz::https://github.com/PCSX2/pcsx2/archive/v${pkgver}.tar.gz;
-'pcsx2-gcc6.patch')
-sha256sums=('2c8a986e2b6514d7018f6cfd39c4f2a72229b9b4ab06ca6b1d3466dfd9c33005'
-'d78c63808a609a249ec7e8330eeabee306a55ee08d2c9ce9c383b46b334bf7d0')
-
-prepare() {
-  cd pcsx2-${pkgver}
-
-  patch -p1 -i ../pcsx2-gcc6.patch
-}
-
-build() {
-  cd pcsx2-${pkgver}
-
-  if [[ -d build ]]; then
-rm -rf build
-  fi
-  mkdir build && cd build
-
-  if [[ $CARCH == i686 ]]; then
-cmake .. \
-  -DCMAKE_BUILD_TYPE='Release' \
-  -DCMAKE_INSTALL_PREFIX='/usr' \
-  -DCMAKE_LIBRARY_PATH='/usr/lib' \
-  -DPLUGIN_DIR='/usr/lib/pcsx2' \
-  -DGAMEINDEX_DIR='/usr/share/pcsx2' \
-  -DDISABLE_ADVANCE_SIMD='TRUE' \
-  -DEXTRA_PLUGINS='TRUE' \
-  -DREBUILD_SHADER='TRUE' \
-  -DGLSL_API='TRUE' \
-  -DPACKAGE_MODE='TRUE' \
-  -DXDG_STD='TRUE'
-  elif [[ $CARCH == x86_64 ]]; then
-# TODO: Drop wxWidgets_CONFIG_EXECUTABLE once the upstream fix is released
-# https://github.com/PCSX2/pcsx2/issues/1933
-cmake .. \
-  -DCMAKE_BUILD_TYPE='Release' \
-  -DwxWidgets_CONFIG_EXECUTABLE='/usr/bin/wx-config32' \
-  -DCMAKE_TOOLCHAIN_FILE='cmake/linux-compiler-i386-multilib.cmake' \
-  -DCMAKE_INSTALL_PREFIX='/usr' \
-  -DCMAKE_LIBRARY_PATH='/usr/lib32' \
-  -DPLUGIN_DIR='/usr/lib32/pcsx2' \
-  -DGAMEINDEX_DIR='/usr/share/pcsx2' \
-  -DDISABLE_ADVANCE_SIMD='TRUE' \
-  -DEXTRA_PLUGINS='TRUE' \
-  -DREBUILD_SHADER='TRUE' \
-  -DGLSL_API='TRUE' \
-  -DPACKAGE_MODE='TRUE' \
-  -DXDG_STD='TRUE'
-  fi
-
-  make
-}
-
-package() {
-  cd pcsx2-${pkgver}/build
-
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: pcsx2/repos/multilib-x86_64/PKGBUILD (from rev 277583, 
pcsx2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-31 14:02:32 UTC (rev 277584)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: josephgbr 
+# Contributor: vEX 
+
+pkgname=pcsx2
+pkgver=1.4.0
+pkgrel=8
+pkgdesc='A Sony PlayStation 2 emulator'
+arch=('x86_64')
+url='http://www.pcsx2.net'
+license=('GPL2' 'GPL3' 'LGPL2.1' 'LGPL3')
+depends=('lib32-glew' 'lib32-libaio' 'lib32-libcanberra' 'lib32-libjpeg-turbo'
+ 'lib32-libpulse' 'lib32-nvidia-cg-toolkit' 'lib32-portaudio'
+ 'lib32-sdl2' 'lib32-soundtouch' 'lib32-wxgtk2')
+makedepends=('cmake' 'gcc-multilib' 'png++')
+source=("pcsx2-${pkgver}.tar.gz::https://github.com/PCSX2/pcsx2/archive/v${pkgver}.tar.gz;
+'pcsx2-gcc6.patch')
+sha256sums=('2c8a986e2b6514d7018f6cfd39c4f2a72229b9b4ab06ca6b1d3466dfd9c33005'
+'d78c63808a609a249ec7e8330eeabee306a55ee08d2c9ce9c383b46b334bf7d0')
+
+prepare() {
+  cd pcsx2-${pkgver}
+
+  patch -Np1 -i ../pcsx2-gcc6.patch
+}
+
+build() {
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build && cd build
+
+  # TODO: Drop wxWidgets_CONFIG_EXECUTABLE once the upstream fix is released
+  # https://github.com/PCSX2/pcsx2/issues/1933
+  cmake ../pcsx2-${pkgver} \
+-DCMAKE_BUILD_TYPE='Release' \
+-DwxWidgets_CONFIG_EXECUTABLE='/usr/bin/wx-config32' \
+-DCMAKE_TOOLCHAIN_FILE='cmake/linux-compiler-i386-multilib.cmake' \
+

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

2017-12-31 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 31, 2017 @ 14:02:16
  Author: alucryd
Revision: 277583

FS#53163: pcsx2 1.4.0-8

Modified:
  pcsx2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 13:45:44 UTC (rev 277582)
+++ PKGBUILD2017-12-31 14:02:16 UTC (rev 277583)
@@ -5,20 +5,15 @@
 
 pkgname=pcsx2
 pkgver=1.4.0
-pkgrel=7
+pkgrel=8
 pkgdesc='A Sony PlayStation 2 emulator'
 arch=('x86_64')
 url='http://www.pcsx2.net'
 license=('GPL2' 'GPL3' 'LGPL2.1' 'LGPL3')
-depends_i686=('glew' 'libaio' 'libcanberra' 'libjpeg-turbo' 'nvidia-cg-toolkit'
-  'portaudio' 'sdl2' 'soundtouch' 'wxgtk2')
-depends_x86_64=('lib32-glew' 'lib32-libaio' 'lib32-libcanberra'
-'lib32-libjpeg-turbo' 'lib32-nvidia-cg-toolkit'
-'lib32-portaudio' 'lib32-sdl2' 'lib32-soundtouch'
-'lib32-wxgtk')
-makedepends=('cmake' 'png++')
-makedepends_x86_64=('gcc-multilib')
-options=('!emptydirs')
+depends=('lib32-glew' 'lib32-libaio' 'lib32-libcanberra' 'lib32-libjpeg-turbo'
+ 'lib32-libpulse' 'lib32-nvidia-cg-toolkit' 'lib32-portaudio'
+ 'lib32-sdl2' 'lib32-soundtouch' 'lib32-wxgtk2')
+makedepends=('cmake' 'gcc-multilib' 'png++')
 
source=("pcsx2-${pkgver}.tar.gz::https://github.com/PCSX2/pcsx2/archive/v${pkgver}.tar.gz;
 'pcsx2-gcc6.patch')
 sha256sums=('2c8a986e2b6514d7018f6cfd39c4f2a72229b9b4ab06ca6b1d3466dfd9c33005'
@@ -27,54 +22,37 @@
 prepare() {
   cd pcsx2-${pkgver}
 
-  patch -p1 -i ../pcsx2-gcc6.patch
+  patch -Np1 -i ../pcsx2-gcc6.patch
 }
 
 build() {
-  cd pcsx2-${pkgver}
-
   if [[ -d build ]]; then
 rm -rf build
   fi
   mkdir build && cd build
 
-  if [[ $CARCH == i686 ]]; then
-cmake .. \
-  -DCMAKE_BUILD_TYPE='Release' \
-  -DCMAKE_INSTALL_PREFIX='/usr' \
-  -DCMAKE_LIBRARY_PATH='/usr/lib' \
-  -DPLUGIN_DIR='/usr/lib/pcsx2' \
-  -DGAMEINDEX_DIR='/usr/share/pcsx2' \
-  -DDISABLE_ADVANCE_SIMD='TRUE' \
-  -DEXTRA_PLUGINS='TRUE' \
-  -DREBUILD_SHADER='TRUE' \
-  -DGLSL_API='TRUE' \
-  -DPACKAGE_MODE='TRUE' \
-  -DXDG_STD='TRUE'
-  elif [[ $CARCH == x86_64 ]]; then
-# TODO: Drop wxWidgets_CONFIG_EXECUTABLE once the upstream fix is released
-# https://github.com/PCSX2/pcsx2/issues/1933
-cmake .. \
-  -DCMAKE_BUILD_TYPE='Release' \
-  -DwxWidgets_CONFIG_EXECUTABLE='/usr/bin/wx-config32' \
-  -DCMAKE_TOOLCHAIN_FILE='cmake/linux-compiler-i386-multilib.cmake' \
-  -DCMAKE_INSTALL_PREFIX='/usr' \
-  -DCMAKE_LIBRARY_PATH='/usr/lib32' \
-  -DPLUGIN_DIR='/usr/lib32/pcsx2' \
-  -DGAMEINDEX_DIR='/usr/share/pcsx2' \
-  -DDISABLE_ADVANCE_SIMD='TRUE' \
-  -DEXTRA_PLUGINS='TRUE' \
-  -DREBUILD_SHADER='TRUE' \
-  -DGLSL_API='TRUE' \
-  -DPACKAGE_MODE='TRUE' \
-  -DXDG_STD='TRUE'
-  fi
+  # TODO: Drop wxWidgets_CONFIG_EXECUTABLE once the upstream fix is released
+  # https://github.com/PCSX2/pcsx2/issues/1933
+  cmake ../pcsx2-${pkgver} \
+-DCMAKE_BUILD_TYPE='Release' \
+-DwxWidgets_CONFIG_EXECUTABLE='/usr/bin/wx-config32' \
+-DCMAKE_TOOLCHAIN_FILE='cmake/linux-compiler-i386-multilib.cmake' \
+-DCMAKE_INSTALL_PREFIX='/usr' \
+-DCMAKE_LIBRARY_PATH='/usr/lib32' \
+-DPLUGIN_DIR='/usr/lib32/pcsx2' \
+-DGAMEINDEX_DIR='/usr/share/pcsx2' \
+-DDISABLE_ADVANCE_SIMD='TRUE' \
+-DEXTRA_PLUGINS='TRUE' \
+-DREBUILD_SHADER='TRUE' \
+-DGLSL_API='TRUE' \
+-DPACKAGE_MODE='TRUE' \
+-DXDG_STD='TRUE'
 
   make
 }
 
 package() {
-  cd pcsx2-${pkgver}/build
+  cd build
 
   make DESTDIR="${pkgdir}" install
 }


[arch-commits] Commit in lib32-wxgtk2/repos/multilib-x86_64 (4 files)

2017-12-31 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 31, 2017 @ 13:45:44
  Author: alucryd
Revision: 277582

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-wxgtk2/repos/multilib-x86_64/PKGBUILD
(from rev 277581, lib32-wxgtk2/trunk/PKGBUILD)
  lib32-wxgtk2/repos/multilib-x86_64/make-abicheck-non-fatal.patch
(from rev 277581, lib32-wxgtk2/trunk/make-abicheck-non-fatal.patch)
Deleted:
  lib32-wxgtk2/repos/multilib-x86_64/PKGBUILD
  lib32-wxgtk2/repos/multilib-x86_64/make-abicheck-non-fatal.patch

---+
 PKGBUILD  |  134 
 make-abicheck-non-fatal.patch |   32 -
 2 files changed, 83 insertions(+), 83 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-31 13:38:30 UTC (rev 277581)
+++ PKGBUILD2017-12-31 13:45:44 UTC (rev 277582)
@@ -1,67 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Eric Bélanger 
-
-pkgname=lib32-wxgtk2
-pkgver=3.0.3.1
-pkgrel=1
-pkgdesc='GTK+ implementation of wxWidgets API for GUI'
-arch=('x86_64')
-url='http://wxwidgets.org'
-license=('custom:wxWindows')
-depends=('lib32-gtk2' 'lib32-libsm' 'wxgtk2')
-makedepends=('gcc-multilib' 'lib32-glu')
-conflicts=('lib32-wxgtk')
-provides=('lib32-wxgtk')
-replaces=('lib32-wxgtk')
-source=("https://github.com/wxWidgets/wxWidgets/releases/download/v${pkgver}/wxWidgets-${pkgver}.tar.bz2;
-'make-abicheck-non-fatal.patch')
-sha256sums=('3164ad6bc5f61c48d2185b39065ddbe44283eb834a5f62beb13f1d0923e366e4'
-'d4c2d070a06eb63f0a018c8cf687589e5ffdec601225b4d16a268ffe390fb58b')
-
-prepare() {
-  cd wxWidgets-${pkgver}
-
-  patch -Np1 -i ../make-abicheck-non-fatal.patch
-}
-
-build() {
-  cd wxWidgets-${pkgver}
-
-  export CC='gcc -m32'
-  export CXX='g++ -m32'
-  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-  export CFLAGS="-I/usr/include/libtiff32 $CFLAGS"
-  export CXXFLAGS="-I/usr/include/libtiff32 $CXXFLAGS"
-
-  ./configure \
---prefix='/usr' \
---libdir='/usr/lib32' \
---enable-graphics_ctx \
---enable-unicode \
---disable-mediactrl \
---disable-precomp-headers \
---disable-webview \
---with-gtk='2' \
---with-lib{jpeg,png,tiff,xpm}='sys' \
---with-opengl \
---with-regex='builtin' \
---without-libnotify
-  make
-  make -C locale allmo
-}
-
-package() {
-  cd wxWidgets-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/{bin/{wx-config,wxrc},include,share}
-  mv "${pkgdir}"/usr/bin/wxrc{,32}-3.0
-  ln -s /usr/bin/wxrc32-3.0 "${pkgdir}"/usr/bin/wxrc32
-  ln -s /usr/lib32/wx/config/gtk2-unicode-3.0 "${pkgdir}"/usr/bin/wx-config32
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses
-  ln -s wxgtk2 "${pkgdir}"/usr/share/licenses/lib32-wxgtk2
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-wxgtk2/repos/multilib-x86_64/PKGBUILD (from rev 277581, 
lib32-wxgtk2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-31 13:45:44 UTC (rev 277582)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Eric Bélanger 
+
+pkgname=lib32-wxgtk2
+pkgver=3.0.3.1
+pkgrel=1
+pkgdesc='GTK+ implementation of wxWidgets API for GUI'
+arch=('x86_64')
+url='http://wxwidgets.org'
+license=('custom:wxWindows')
+depends=('lib32-gtk2' 'lib32-libsm' 'wxgtk2')
+makedepends=('gcc-multilib' 'lib32-glu')
+conflicts=('lib32-wxgtk')
+provides=('lib32-wxgtk')
+replaces=('lib32-wxgtk')
+source=("https://github.com/wxWidgets/wxWidgets/releases/download/v${pkgver}/wxWidgets-${pkgver}.tar.bz2;
+'make-abicheck-non-fatal.patch')
+sha256sums=('3164ad6bc5f61c48d2185b39065ddbe44283eb834a5f62beb13f1d0923e366e4'
+'d4c2d070a06eb63f0a018c8cf687589e5ffdec601225b4d16a268ffe390fb58b')
+
+prepare() {
+  cd wxWidgets-${pkgver}
+
+  patch -Np1 -i ../make-abicheck-non-fatal.patch
+}
+
+build() {
+  cd wxWidgets-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+  export CFLAGS="-I/usr/include/libtiff32 $CFLAGS"
+  export CXXFLAGS="-I/usr/include/libtiff32 $CXXFLAGS"
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--enable-graphics_ctx \
+--enable-unicode \
+--disable-mediactrl \
+--disable-precomp-headers \
+--disable-webview \
+--with-gtk='2' \
+--with-lib{jpeg,png,tiff,xpm}='sys' \
+--with-opengl \
+--with-regex='builtin' \
+--without-libnotify
+  make
+  make -C locale allmo
+}
+
+package() {
+  cd wxWidgets-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{bin/{wx-config,wxrc},include,share}
+  mv "${pkgdir}"/usr/bin/wxrc{,32}-3.0
+  ln -s /usr/bin/wxrc32-3.0 "${pkgdir}"/usr/bin/wxrc32
+  ln -s /usr/lib32/wx/config/gtk2-unicode-3.0 "${pkgdir}"/usr/bin/wx-config32
+
+  install -dm 755 

[arch-commits] Commit in lib32-wxgtk2 (4 files)

2017-12-31 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 31, 2017 @ 13:38:30
  Author: alucryd
Revision: 277581

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-wxgtk2/repos/
  lib32-wxgtk2/repos/multilib-x86_64/
  lib32-wxgtk2/repos/multilib-x86_64/PKGBUILD
(from rev 277580, lib32-wxgtk2/trunk/PKGBUILD)
  lib32-wxgtk2/repos/multilib-x86_64/make-abicheck-non-fatal.patch
(from rev 277580, lib32-wxgtk2/trunk/make-abicheck-non-fatal.patch)

---+
 PKGBUILD  |   67 
 make-abicheck-non-fatal.patch |   16 +
 2 files changed, 83 insertions(+)

Copied: lib32-wxgtk2/repos/multilib-x86_64/PKGBUILD (from rev 277580, 
lib32-wxgtk2/trunk/PKGBUILD)
===
--- repos/multilib-x86_64/PKGBUILD  (rev 0)
+++ repos/multilib-x86_64/PKGBUILD  2017-12-31 13:38:30 UTC (rev 277581)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Eric Bélanger 
+
+pkgname=lib32-wxgtk2
+pkgver=3.0.3.1
+pkgrel=1
+pkgdesc='GTK+ implementation of wxWidgets API for GUI'
+arch=('x86_64')
+url='http://wxwidgets.org'
+license=('custom:wxWindows')
+depends=('lib32-gtk2' 'lib32-libsm' 'wxgtk2')
+makedepends=('gcc-multilib' 'lib32-glu')
+conflicts=('lib32-wxgtk')
+provides=('lib32-wxgtk')
+replaces=('lib32-wxgtk')
+source=("https://github.com/wxWidgets/wxWidgets/releases/download/v${pkgver}/wxWidgets-${pkgver}.tar.bz2;
+'make-abicheck-non-fatal.patch')
+sha256sums=('3164ad6bc5f61c48d2185b39065ddbe44283eb834a5f62beb13f1d0923e366e4'
+'d4c2d070a06eb63f0a018c8cf687589e5ffdec601225b4d16a268ffe390fb58b')
+
+prepare() {
+  cd wxWidgets-${pkgver}
+
+  patch -Np1 -i ../make-abicheck-non-fatal.patch
+}
+
+build() {
+  cd wxWidgets-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+  export CFLAGS="-I/usr/include/libtiff32 $CFLAGS"
+  export CXXFLAGS="-I/usr/include/libtiff32 $CXXFLAGS"
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--enable-graphics_ctx \
+--enable-unicode \
+--disable-mediactrl \
+--disable-precomp-headers \
+--disable-webview \
+--with-gtk='2' \
+--with-lib{jpeg,png,tiff,xpm}='sys' \
+--with-opengl \
+--with-regex='builtin' \
+--without-libnotify
+  make
+  make -C locale allmo
+}
+
+package() {
+  cd wxWidgets-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{bin/{wx-config,wxrc},include,share}
+  mv "${pkgdir}"/usr/bin/wxrc{,32}-3.0
+  ln -s /usr/bin/wxrc32-3.0 "${pkgdir}"/usr/bin/wxrc32
+  ln -s /usr/lib32/wx/config/gtk2-unicode-3.0 "${pkgdir}"/usr/bin/wx-config32
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses
+  ln -s wxgtk2 "${pkgdir}"/usr/share/licenses/lib32-wxgtk2
+}
+
+# vim: ts=2 sw=2 et:

Copied: lib32-wxgtk2/repos/multilib-x86_64/make-abicheck-non-fatal.patch (from 
rev 277580, lib32-wxgtk2/trunk/make-abicheck-non-fatal.patch)
===
--- repos/multilib-x86_64/make-abicheck-non-fatal.patch 
(rev 0)
+++ repos/multilib-x86_64/make-abicheck-non-fatal.patch 2017-12-31 13:38:30 UTC 
(rev 277581)
@@ -0,0 +1,16 @@
+diff -up wxGTK-2.8.12/src/common/appbase.cpp.abicheck 
wxGTK-2.8.12/src/common/appbase.cpp
+--- wxGTK-2.8.12/src/common/appbase.cpp.abicheck  2015-03-12 
17:15:18.0 +0100
 wxGTK-2.8.12/src/common/appbase.cpp 2015-03-12 17:15:57.0 +0100
+@@ -424,10 +424,7 @@ bool wxAppConsole::CheckBuildOptions(con
+ msg.Printf(_T("Mismatch between the program and library build 
versions detected.\nThe library used %s,\nand %s used %s."),
+lib.c_str(), progName.c_str(), prog.c_str());
+ 
+-wxLogFatalError(msg.c_str());
+-
+-// normally wxLogFatalError doesn't return
+-return false;
++wxLogWarning(msg.c_str());
+ }
+ #undef wxCMP
+ 
+


[arch-commits] Commit in (5 files)

2017-12-31 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 31, 2017 @ 13:38:12
  Author: alucryd
Revision: 277580

Replace lib32-wxgtk with lib32-wxgtk2

Added:
  lib32-wxgtk2/
  lib32-wxgtk2/trunk/
  lib32-wxgtk2/trunk/PKGBUILD
  lib32-wxgtk2/trunk/make-abicheck-non-fatal.patch
Deleted:
  lib32-wxgtk/

---+
 PKGBUILD  |   67 
 make-abicheck-non-fatal.patch |   16 +
 2 files changed, 83 insertions(+)

Added: lib32-wxgtk2/trunk/PKGBUILD
===
--- lib32-wxgtk2/trunk/PKGBUILD (rev 0)
+++ lib32-wxgtk2/trunk/PKGBUILD 2017-12-31 13:38:12 UTC (rev 277580)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Eric Bélanger 
+
+pkgname=lib32-wxgtk2
+pkgver=3.0.3.1
+pkgrel=1
+pkgdesc='GTK+ implementation of wxWidgets API for GUI'
+arch=('x86_64')
+url='http://wxwidgets.org'
+license=('custom:wxWindows')
+depends=('lib32-gtk2' 'lib32-libsm' 'wxgtk2')
+makedepends=('gcc-multilib' 'lib32-glu')
+conflicts=('lib32-wxgtk')
+provides=('lib32-wxgtk')
+replaces=('lib32-wxgtk')
+source=("https://github.com/wxWidgets/wxWidgets/releases/download/v${pkgver}/wxWidgets-${pkgver}.tar.bz2;
+'make-abicheck-non-fatal.patch')
+sha256sums=('3164ad6bc5f61c48d2185b39065ddbe44283eb834a5f62beb13f1d0923e366e4'
+'d4c2d070a06eb63f0a018c8cf687589e5ffdec601225b4d16a268ffe390fb58b')
+
+prepare() {
+  cd wxWidgets-${pkgver}
+
+  patch -Np1 -i ../make-abicheck-non-fatal.patch
+}
+
+build() {
+  cd wxWidgets-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+  export CFLAGS="-I/usr/include/libtiff32 $CFLAGS"
+  export CXXFLAGS="-I/usr/include/libtiff32 $CXXFLAGS"
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--enable-graphics_ctx \
+--enable-unicode \
+--disable-mediactrl \
+--disable-precomp-headers \
+--disable-webview \
+--with-gtk='2' \
+--with-lib{jpeg,png,tiff,xpm}='sys' \
+--with-opengl \
+--with-regex='builtin' \
+--without-libnotify
+  make
+  make -C locale allmo
+}
+
+package() {
+  cd wxWidgets-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{bin/{wx-config,wxrc},include,share}
+  mv "${pkgdir}"/usr/bin/wxrc{,32}-3.0
+  ln -s /usr/bin/wxrc32-3.0 "${pkgdir}"/usr/bin/wxrc32
+  ln -s /usr/lib32/wx/config/gtk2-unicode-3.0 "${pkgdir}"/usr/bin/wx-config32
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses
+  ln -s wxgtk2 "${pkgdir}"/usr/share/licenses/lib32-wxgtk2
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: lib32-wxgtk2/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: lib32-wxgtk2/trunk/make-abicheck-non-fatal.patch
===
--- lib32-wxgtk2/trunk/make-abicheck-non-fatal.patch
(rev 0)
+++ lib32-wxgtk2/trunk/make-abicheck-non-fatal.patch2017-12-31 13:38:12 UTC 
(rev 277580)
@@ -0,0 +1,16 @@
+diff -up wxGTK-2.8.12/src/common/appbase.cpp.abicheck 
wxGTK-2.8.12/src/common/appbase.cpp
+--- wxGTK-2.8.12/src/common/appbase.cpp.abicheck  2015-03-12 
17:15:18.0 +0100
 wxGTK-2.8.12/src/common/appbase.cpp 2015-03-12 17:15:57.0 +0100
+@@ -424,10 +424,7 @@ bool wxAppConsole::CheckBuildOptions(con
+ msg.Printf(_T("Mismatch between the program and library build 
versions detected.\nThe library used %s,\nand %s used %s."),
+lib.c_str(), progName.c_str(), prog.c_str());
+ 
+-wxLogFatalError(msg.c_str());
+-
+-// normally wxLogFatalError doesn't return
+-return false;
++wxLogWarning(msg.c_str());
+ }
+ #undef wxCMP
+ 
+


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 13:26:57
  Author: felixonmars
Revision: 277578

upgpkg: mongodb-tools 3.6.1-1

Modified:
  mongodb-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 13:10:05 UTC (rev 277577)
+++ PKGBUILD2017-12-31 13:26:57 UTC (rev 277578)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=mongodb-tools
-pkgver=3.6.0
+pkgver=3.6.1
 pkgrel=1
 pkgdesc="The MongoDB tools provide import, export, and diagnostic 
capabilities."
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('go-pie')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/mongodb/mongo-tools/archive/r$pkgver.tar.gz;
 "disable-sslv3.patch")
-sha512sums=('88f4e18d260b9f675f216c1dd3be736507516f03d3faf057f79b408d9a939d5aa29e2a9b8eb3e543615260f87e53bafaffaa1a2e464f7cfd83480a0b9685a9ab'
+sha512sums=('15a073e92281b515d16c778ef3f540939dfaeaeb92afb303899ea3a7bbecd2782efa0ba05b9ed271660e9000c6108c05a28e2dec826880867c625d06ac65a0be'
 
'674af43ebf9e73f1eae4f81c160cec4c4ea657b7e38f97929a0845d8981f9af904eca79e2144e6150774799a58074cee5b67e4385d082630c471e438981d9ea5')
 
 prepare() {


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 13:27:21
  Author: felixonmars
Revision: 277579

archrelease: copy trunk to community-x86_64

Added:
  mongodb-tools/repos/community-x86_64/PKGBUILD
(from rev 277578, mongodb-tools/trunk/PKGBUILD)
  mongodb-tools/repos/community-x86_64/disable-sslv3.patch
(from rev 277578, mongodb-tools/trunk/disable-sslv3.patch)
Deleted:
  mongodb-tools/repos/community-x86_64/PKGBUILD
  mongodb-tools/repos/community-x86_64/disable-sslv3.patch

-+
 PKGBUILD|   76 +-
 disable-sslv3.patch |   26 -
 2 files changed, 51 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-31 13:26:57 UTC (rev 277578)
+++ PKGBUILD2017-12-31 13:27:21 UTC (rev 277579)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=mongodb-tools
-pkgver=3.6.0
-pkgrel=1
-pkgdesc="The MongoDB tools provide import, export, and diagnostic 
capabilities."
-arch=('x86_64')
-url="https://github.com/mongodb/mongo-tools;
-license=('Apache')
-depends=('libsasl' 'libpcap' 'openssl-1.0')
-makedepends=('go-pie')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/mongodb/mongo-tools/archive/r$pkgver.tar.gz;
-"disable-sslv3.patch")
-sha512sums=('88f4e18d260b9f675f216c1dd3be736507516f03d3faf057f79b408d9a939d5aa29e2a9b8eb3e543615260f87e53bafaffaa1a2e464f7cfd83480a0b9685a9ab'
-
'674af43ebf9e73f1eae4f81c160cec4c4ea657b7e38f97929a0845d8981f9af904eca79e2144e6150774799a58074cee5b67e4385d082630c471e438981d9ea5')
-
-prepare() {
-  cd mongo-tools-r$pkgver
-  . ./set_gopath.sh
-  mkdir bin
-
-  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
-}
-
-build() {
-  cd mongo-tools-r$pkgver
-  for i in bsondump mongostat mongofiles mongoexport mongoimport mongorestore 
mongodump mongotop mongoreplay; do
-go build -o bin/$i -tags "ssl sasl" $i/main/$i.go
-  done
-}
-
-package() {
-  cd mongo-tools-r$pkgver
-  for i in bsondump mongostat mongofiles mongoexport mongoimport mongorestore 
mongodump mongotop mongoreplay; do
-install -Dm755 bin/$i "$pkgdir/usr/bin/$i"
-  done
-}

Copied: mongodb-tools/repos/community-x86_64/PKGBUILD (from rev 277578, 
mongodb-tools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-31 13:27:21 UTC (rev 277579)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=mongodb-tools
+pkgver=3.6.1
+pkgrel=1
+pkgdesc="The MongoDB tools provide import, export, and diagnostic 
capabilities."
+arch=('x86_64')
+url="https://github.com/mongodb/mongo-tools;
+license=('Apache')
+depends=('libsasl' 'libpcap' 'openssl-1.0')
+makedepends=('go-pie')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/mongodb/mongo-tools/archive/r$pkgver.tar.gz;
+"disable-sslv3.patch")
+sha512sums=('15a073e92281b515d16c778ef3f540939dfaeaeb92afb303899ea3a7bbecd2782efa0ba05b9ed271660e9000c6108c05a28e2dec826880867c625d06ac65a0be'
+
'674af43ebf9e73f1eae4f81c160cec4c4ea657b7e38f97929a0845d8981f9af904eca79e2144e6150774799a58074cee5b67e4385d082630c471e438981d9ea5')
+
+prepare() {
+  cd mongo-tools-r$pkgver
+  . ./set_gopath.sh
+  mkdir bin
+
+  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
+}
+
+build() {
+  cd mongo-tools-r$pkgver
+  for i in bsondump mongostat mongofiles mongoexport mongoimport mongorestore 
mongodump mongotop mongoreplay; do
+go build -o bin/$i -tags "ssl sasl" $i/main/$i.go
+  done
+}
+
+package() {
+  cd mongo-tools-r$pkgver
+  for i in bsondump mongostat mongofiles mongoexport mongoimport mongorestore 
mongodump mongotop mongoreplay; do
+install -Dm755 bin/$i "$pkgdir/usr/bin/$i"
+  done
+}

Deleted: disable-sslv3.patch
===
--- disable-sslv3.patch 2017-12-31 13:26:57 UTC (rev 277578)
+++ disable-sslv3.patch 2017-12-31 13:27:21 UTC (rev 277579)
@@ -1,13 +0,0 @@
-diff --git i/vendor/src/github.com/spacemonkeygo/openssl/ctx.go 
w/vendor/src/github.com/spacemonkeygo/openssl/ctx.go
-index 22d6dd1..25b0eec 100644
 i/vendor/src/github.com/spacemonkeygo/openssl/ctx.go
-+++ w/vendor/src/github.com/spacemonkeygo/openssl/ctx.go
-@@ -141,7 +141,7 @@ func NewCtxWithVersion(version SSLVersion) (*Ctx, error) {
-   var method *C.SSL_METHOD
-   switch version {
-   case SSLv3:
--  method = C.SSLv3_method()
-+  method = C.SSLv23_method()
-   case TLSv1:
-   method = C.TLSv1_method()
-   case TLSv1_1:

Copied: mongodb-tools/repos/community-x86_64/disable-sslv3.patch (from rev 
277578, mongodb-tools/trunk/disable-sslv3.patch)
===
--- disable-sslv3.patch (rev 0)
+++ disable-sslv3.patch 2017-12-31 13:27:21 UTC (rev 

[arch-commits] Commit in vbam/repos/community-x86_64 (3 files)

2017-12-31 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 31, 2017 @ 13:10:05
  Author: alucryd
Revision: 277577

archrelease: copy trunk to community-x86_64

Added:
  vbam/repos/community-x86_64/PKGBUILD
(from rev 277576, vbam/trunk/PKGBUILD)
Deleted:
  vbam/repos/community-x86_64/PKGBUILD
  vbam/repos/community-x86_64/vbam-fixes.patch

--+
 PKGBUILD |  166 ++---
 vbam-fixes.patch |   56 -
 2 files changed, 72 insertions(+), 150 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-31 13:09:54 UTC (rev 277576)
+++ PKGBUILD2017-12-31 13:10:05 UTC (rev 277577)
@@ -1,94 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgbase=vbam
-pkgname=('vbam-sdl' 'vbam-gtk' 'vbam-wx')
-pkgver=2.0.0b2
-pkgrel=3
-pkgdesc='Nintendo GameBoy Advance emulator'
-arch=('i686' 'x86_64')
-url='http://vba-m.com'
-license=('GPL2')
-depends=('sdl2' 'sfml' 'zip')
-makedepends=('cmake' 'desktop-file-utils' 'freetype2' 'git' 'glew' 'gtkglextmm'
- 'imagemagick' 'libjpeg' 'libpng' 'libsndfile' 'libxrandr'
- 'openal' 'subversion' 'wxgtk3')
-makedepends_i686=('nasm')
-options=('!emptydirs')
-_commit='1eb768578bc0c4fa17396f573a4b37a652f12acd'
-source=("vbam::git+https://github.com/visualboyadvance-m/visualboyadvance-m.git#commit=${_commit};
-'vbam-fixes.patch')
-sha256sums=('SKIP'
-'be860c010e1185c1fa3938f57fd824b9e8e8430a00f851ff21a033de7bce5cf8')
-
-prepare() {
-  cd vbam
-
-  if [[ -d build ]]; then
-rm -rf build
-  fi
-  mkdir build
-
-  patch -Np1 -i ../vbam-fixes.patch
-}
-
-build() {
-  cd vbam/build
-
-  _cmakeargs="-DCMAKE_BUILD_TYPE='Release' \
-  -DCMAKE_INSTALL_PREFIX='/usr' \
-  -DCMAKE_SKIP_RPATH='TRUE' \
-  -DENABLE_GTK='TRUE' \
-  -DENABLE_WX='TRUE' \
-  -DENABLE_FFMPEG='FALSE' \
-  -DENABLE_LINK='TRUE' \
-  -DwxWidgets_CONFIG_EXECUTABLE=/usr/bin/wx-config-gtk3"
-
-  if [[ $CARCH == i686 ]]; then
-_cmakeargs="${_cmakeargs} \
--DENABLE_ASM_CORE='TRUE' \
--DENABLE_ASM_SCALERS='TRUE'"
-  fi
-
-  CXXFLAGS+=' -std=c++11 -fpermissive'
-
-  cmake .. ${_cmakeargs}
-  make
-}
-
-package_vbam-sdl() {
-replaces=('vbam-cli')
-backup=('etc/vbam.cfg')
-
-  cd vbam/build
-
-  make DESTDIR="${pkgdir}" install
-  mv "${pkgdir}"/{usr/etc,}
-  rm -rf 
"${pkgdir}"/usr/{bin/{g,wx}vbam,share/{applications,icons,locale,man/man1/{g,wx}vbam.1,vbam}}
-}
-
-package_vbam-gtk() {
-depends+=('gtkglextmm')
-conflicts=('vbam-wx')
-
-  cd vbam/build
-
-  make DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/{etc,usr/{bin/vbam,etc,share/man/man1/vbam.1}}
-  find "${pkgdir}" -type f -regex .*wxvbam.* -exec rm {} +
-}
-
-package_vbam-wx() {
-depends+=('wxgtk3')
-conflicts=('vbam-gtk')
-
-  cd vbam/build
-
-  make DESTDIR="${pkgdir}" install
-  install -m 755 visualboyadvance-m "${pkgdir}"/usr/bin/
-  rm -rf "${pkgdir}"/{etc,usr/{bin/vbam,etc,share/man/man1/vbam.1}}
-  find "${pkgdir}" -type f -regex .*gvbam.* -exec rm {} +
-}
-
-# vim: ts=2 sw=2 et:

Copied: vbam/repos/community-x86_64/PKGBUILD (from rev 277576, 
vbam/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-31 13:10:05 UTC (rev 277577)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgbase=vbam
+pkgname=('vbam-sdl' 'vbam-wx')
+pkgver=2.0.1
+pkgrel=1
+pkgdesc='Nintendo GameBoy Advance emulator'
+arch=('x86_64')
+url='http://vba-m.com'
+license=('GPL2')
+depends=('gcc-libs' 'glibc' 'libgl' 'libpng' 'sdl2' 'sfml' 'zlib')
+makedepends=('cmake' 'ffmpeg' 'wxgtk3' 'zip')
+source=("vbam-${pkgver}.tar.gz::https://github.com/visualboyadvance-m/visualboyadvance-m/archive/v${pkgver}.tar.gz;)
+sha256sums=('0204787317311cf6dd08e28f2dff4f52cdb97356dd851b96a9054abe4281143e')
+
+prepare() {
+  for p in sdl wx; do
+if [[ -d build-$p ]]; then
+  rm -rf build-$p
+fi
+mkdir build-$p
+  done
+}
+
+build() {
+  cd build-sdl
+
+  cmake ../visualboyadvance-m-${pkgver} \
+-DCMAKE_BUILD_TYPE='Release' \
+-DCMAKE_INSTALL_PREFIX='/usr' \
+-DCMAKE_SKIP_RPATH='TRUE' \
+-DENABLE_SDL='TRUE' \
+-DENABLE_WX='FALSE' \
+-DENABLE_LINK='TRUE'
+  make
+
+  cd ../build-wx
+
+  cmake ../visualboyadvance-m-${pkgver} \
+-DCMAKE_BUILD_TYPE='Release' \
+-DCMAKE_INSTALL_PREFIX='/usr' \
+-DCMAKE_SKIP_RPATH='TRUE' \
+-DENABLE_SDL='FALSE' \
+-DENABLE_WX='TRUE' \
+-DENABLE_FFMPEG='TRUE' \
+-DENABLE_LINK='TRUE' \
+-DwxWidgets_CONFIG_EXECUTABLE='/usr/bin/wx-config-gtk3'
+  make
+}
+
+package_vbam-sdl() {
+backup=('etc/vbam.cfg')
+conflicts=('vbam-wx')
+
+  cd build-sdl
+
+  make DESTDIR="${pkgdir}" 

[arch-commits] Commit in vbam/trunk (PKGBUILD vbam-fixes.patch)

2017-12-31 Thread Maxime Gauduin via arch-commits
Date: Sunday, December 31, 2017 @ 13:09:54
  Author: alucryd
Revision: 277576

upgpkg: vbam 2.0.1-1

Modified:
  vbam/trunk/PKGBUILD   (contents, properties)
Deleted:
  vbam/trunk/vbam-fixes.patch

--+
 PKGBUILD |   96 -
 vbam-fixes.patch |   56 --
 2 files changed, 37 insertions(+), 115 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 12:31:52 UTC (rev 277575)
+++ PKGBUILD2017-12-31 13:09:54 UTC (rev 277576)
@@ -3,92 +3,70 @@
 # Contributor: Bartłomiej Piotrowski 
 
 pkgbase=vbam
-pkgname=('vbam-sdl' 'vbam-gtk' 'vbam-wx')
-pkgver=2.0.0b2
-pkgrel=3
+pkgname=('vbam-sdl' 'vbam-wx')
+pkgver=2.0.1
+pkgrel=1
 pkgdesc='Nintendo GameBoy Advance emulator'
 arch=('x86_64')
 url='http://vba-m.com'
 license=('GPL2')
-depends=('sdl2' 'sfml' 'zip')
-makedepends=('cmake' 'desktop-file-utils' 'freetype2' 'git' 'glew' 'gtkglextmm'
- 'imagemagick' 'libjpeg' 'libpng' 'libsndfile' 'libxrandr'
- 'openal' 'subversion' 'wxgtk3')
-makedepends_i686=('nasm')
-options=('!emptydirs')
-_commit='1eb768578bc0c4fa17396f573a4b37a652f12acd'
-source=("vbam::git+https://github.com/visualboyadvance-m/visualboyadvance-m.git#commit=${_commit};
-'vbam-fixes.patch')
-sha256sums=('SKIP'
-'be860c010e1185c1fa3938f57fd824b9e8e8430a00f851ff21a033de7bce5cf8')
+depends=('gcc-libs' 'glibc' 'libgl' 'libpng' 'sdl2' 'sfml' 'zlib')
+makedepends=('cmake' 'ffmpeg' 'wxgtk3' 'zip')
+source=("vbam-${pkgver}.tar.gz::https://github.com/visualboyadvance-m/visualboyadvance-m/archive/v${pkgver}.tar.gz;)
+sha256sums=('0204787317311cf6dd08e28f2dff4f52cdb97356dd851b96a9054abe4281143e')
 
 prepare() {
-  cd vbam
-
-  if [[ -d build ]]; then
-rm -rf build
-  fi
-  mkdir build
-
-  patch -Np1 -i ../vbam-fixes.patch
+  for p in sdl wx; do
+if [[ -d build-$p ]]; then
+  rm -rf build-$p
+fi
+mkdir build-$p
+  done
 }
 
 build() {
-  cd vbam/build
+  cd build-sdl
 
-  _cmakeargs="-DCMAKE_BUILD_TYPE='Release' \
-  -DCMAKE_INSTALL_PREFIX='/usr' \
-  -DCMAKE_SKIP_RPATH='TRUE' \
-  -DENABLE_GTK='TRUE' \
-  -DENABLE_WX='TRUE' \
-  -DENABLE_FFMPEG='FALSE' \
-  -DENABLE_LINK='TRUE' \
-  -DwxWidgets_CONFIG_EXECUTABLE=/usr/bin/wx-config-gtk3"
+  cmake ../visualboyadvance-m-${pkgver} \
+-DCMAKE_BUILD_TYPE='Release' \
+-DCMAKE_INSTALL_PREFIX='/usr' \
+-DCMAKE_SKIP_RPATH='TRUE' \
+-DENABLE_SDL='TRUE' \
+-DENABLE_WX='FALSE' \
+-DENABLE_LINK='TRUE'
+  make
 
-  if [[ $CARCH == i686 ]]; then
-_cmakeargs="${_cmakeargs} \
--DENABLE_ASM_CORE='TRUE' \
--DENABLE_ASM_SCALERS='TRUE'"
-  fi
+  cd ../build-wx
 
-  CXXFLAGS+=' -std=c++11 -fpermissive'
-
-  cmake .. ${_cmakeargs}
+  cmake ../visualboyadvance-m-${pkgver} \
+-DCMAKE_BUILD_TYPE='Release' \
+-DCMAKE_INSTALL_PREFIX='/usr' \
+-DCMAKE_SKIP_RPATH='TRUE' \
+-DENABLE_SDL='FALSE' \
+-DENABLE_WX='TRUE' \
+-DENABLE_FFMPEG='TRUE' \
+-DENABLE_LINK='TRUE' \
+-DwxWidgets_CONFIG_EXECUTABLE='/usr/bin/wx-config-gtk3'
   make
 }
 
 package_vbam-sdl() {
-replaces=('vbam-cli')
 backup=('etc/vbam.cfg')
-
-  cd vbam/build
-
-  make DESTDIR="${pkgdir}" install
-  mv "${pkgdir}"/{usr/etc,}
-  rm -rf 
"${pkgdir}"/usr/{bin/{g,wx}vbam,share/{applications,icons,locale,man/man1/{g,wx}vbam.1,vbam}}
-}
-
-package_vbam-gtk() {
-depends+=('gtkglextmm')
 conflicts=('vbam-wx')
 
-  cd vbam/build
+  cd build-sdl
 
   make DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/{etc,usr/{bin/vbam,etc,share/man/man1/vbam.1}}
-  find "${pkgdir}" -type f -regex .*wxvbam.* -exec rm {} +
 }
 
 package_vbam-wx() {
-depends+=('wxgtk3')
-conflicts=('vbam-gtk')
+depends+=('glib2' 'gtk3' 'openal' 'wxgtk3' 'zip'
+  'libavcodec.so' 'libavformat.so' 'libavutil.so' 'libswscale.so')
+conflicts=('vbam-sdl')
 
-  cd vbam/build
+  cd build-wx
 
   make DESTDIR="${pkgdir}" install
-  install -m 755 visualboyadvance-m "${pkgdir}"/usr/bin/
-  rm -rf "${pkgdir}"/{etc,usr/{bin/vbam,etc,share/man/man1/vbam.1}}
-  find "${pkgdir}" -type f -regex .*gvbam.* -exec rm {} +
 }
 
 # vim: ts=2 sw=2 et:


Property changes on: vbam/trunk/PKGBUILD
___
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: vbam-fixes.patch
===
--- vbam-fixes.patch2017-12-31 12:31:52 UTC (rev 277575)
+++ vbam-fixes.patch2017-12-31 13:09:54 UTC (rev 277576)
@@ -1,56 +0,0 @@
-diff -rupN vbam.orig/src/gtk/CMakeLists.txt vbam/src/gtk/CMakeLists.txt
 vbam.orig/src/gtk/CMakeLists.txt   2016-10-23 19:14:22.423451961 +0200
-+++ vbam/src/gtk/CMakeLists.txt2016-10-23 19:14:33.346550202 +0200
-@@ -47,7 +47,7 @@ 

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

2017-12-31 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, December 31, 2017 @ 12:21:27
  Author: svenstaro
Revision: 277564

archrelease: copy trunk to community-x86_64

Added:
  python-pytorch/repos/community-x86_64/PKGBUILD
(from rev 277563, python-pytorch/trunk/PKGBUILD)
Deleted:
  python-pytorch/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  258 ++---
 1 file changed, 130 insertions(+), 128 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-31 12:21:07 UTC (rev 277563)
+++ PKGBUILD2017-12-31 12:21:27 UTC (rev 277564)
@@ -1,128 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Stephen Zhang 
-
-pkgbase="python-pytorch"
-pkgname=("python-pytorch" "python2-pytorch" "python-pytorch-cuda" 
"python2-pytorch-cuda")
-_pkgname="pytorch"
-pkgver=0.3.0
-pkgrel=3
-pkgdesc="Tensors and Dynamic neural networks in Python with strong GPU 
acceleration"
-arch=('x86_64')
-url="http://pytorch.org;
-license=('BSD')
-makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools'
- 'python-yaml' 'python2-yaml' 'python-numpy' 'python2-numpy'
- 'gcc6' 'cmake' 'cuda' 'cudnn' 'git')
-source=("${_pkgname}-${pkgver}::git://github.com/pytorch/pytorch.git#tag=v${pkgver}"
-"git://github.com/facebookincubator/gloo"
-"git://github.com/pybind/pybind11"
-"git://github.com/nanopb/nanopb")
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-  cd "${_pkgname}-${pkgver}"
-
-  git submodule init
-  git config submodule."torch/lib/gloo".url ${srcdir}/gloo
-  git config submodule."torch/lib/pybind11".url ${srcdir}/pybind11
-  git config submodule."torch/lib/nanopb".url ${srcdir}/nanopb
-  git submodule update
-
-  cd ..
-
-  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-py2"
-  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-py3"
-  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-py2-cuda"
-  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-py3-cuda"
-}
-
-build() {
-  msg2 "Building Python 2 without cuda"
-  cd "$srcdir/${_pkgname}-${pkgver}-py2"
-  # Uncomment and modify the following line to enable Intel MKL and magma 
support
-  
#CMAKE_PREFIX_PATH=/opt/intel/mkl/include:/opt/intel/mkl/lib/intel64:/opt/magma 
\
-  CFLAGS="${CFLAGS/-fno-plt/}" \
-  CXXFLAGS="${CFLAGS/-fno-plt/}" \
-  NO_CUDA=1 \
-  WITH_CUDA=0 \
-  WITH_CUDNN=0 \
-  python2 setup.py build
-
-  msg2 "Building Python 3 without cuda"
-  cd "$srcdir/${_pkgname}-${pkgver}-py3"
-  # Uncomment and modify the following line to enable Intel MKL and magma 
support
-  
#CMAKE_PREFIX_PATH=/opt/intel/mkl/include:/opt/intel/mkl/lib/intel64:/opt/magma 
\
-  CFLAGS="${CFLAGS/-fno-plt/}" \
-  CXXFLAGS="${CFLAGS/-fno-plt/}" \
-  NO_CUDA=1 \
-  WITH_CUDA=0 \
-  WITH_CUDNN=0 \
-  python setup.py build
-
-  msg2 "Building Python 2 with cuda"
-  cd "$srcdir/${_pkgname}-${pkgver}-py2-cuda"
-  # Uncomment and modify the following line to enable Intel MKL and magma 
support
-  
#CMAKE_PREFIX_PATH=/opt/intel/mkl/include:/opt/intel/mkl/lib/intel64:/opt/magma 
\
-  CC=gcc-6 \
-  CXX=g++-6 \
-  CFLAGS="${CFLAGS/-fno-plt/}" \
-  CXXFLAGS="${CFLAGS/-fno-plt/}" \
-  WITH_CUDA=1 \
-  CUDA_HOME=/opt/cuda \
-  WITH_CUDNN=1 \
-  CUDNN_LIB_DIR=/opt/cuda/lib64 \
-  CUDNN_INCLUDE_DIR=/opt/cuda/include \
-  TORCH_NVCC_FLAGS="-D__CUDA_NO_HALF_OPERATORS__" \
-  python2 setup.py build
-
-  msg2 "Building Python 3 with cuda"
-  cd "$srcdir/${_pkgname}-${pkgver}-py3-cuda"
-  # Uncomment and modify the following line to enable Intel MKL and magma 
support
-  
#CMAKE_PREFIX_PATH=/opt/intel/mkl/include:/opt/intel/mkl/lib/intel64:/opt/magma 
\
-  CC=gcc-6 \
-  CXX=g++-6 \
-  CFLAGS="${CFLAGS/-fno-plt/}" \
-  CXXFLAGS="${CFLAGS/-fno-plt/}" \
-  WITH_CUDA=1 \
-  CUDA_HOME=/opt/cuda \
-  WITH_CUDNN=1 \
-  CUDNN_LIB_DIR=/opt/cuda/lib64 \
-  CUDNN_INCLUDE_DIR=/opt/cuda/include \
-  TORCH_NVCC_FLAGS="-D__CUDA_NO_HALF_OPERATORS__" \
-  python setup.py build
-}
-
-package_python2-pytorch() {
-  depends+=('python2' 'python2-yaml' 'python2-numpy')
-  cd "$srcdir/${_pkgname}-${pkgver}-py2"
-  python2 setup.py install --root="$pkgdir"/ --optimize=1 --skip-build
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
-}
-
-package_python-pytorch() {
-  depends+=('python' 'python-yaml' 'python-numpy')
-  cd "$srcdir/${_pkgname}-${pkgver}-py3"
-  python setup.py install --root="$pkgdir"/ --optimize=1 --skip-build
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
-}
-
-package_python2-pytorch-cuda() {
-  depends+=('python2' 'python2-yaml' 'python2-numpy' 'cuda' 'cudnn')
-  conflicts=('python2-pytorch')
-  cd "$srcdir/${_pkgname}-${pkgver}-py2-cuda"
-  python2 setup.py install --root="$pkgdir"/ --optimize=1 --skip-build
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
-}
-

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

2017-12-31 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, December 31, 2017 @ 12:21:07
  Author: svenstaro
Revision: 277563

upgpkg: python-pytorch 0.3.0-4

Add provides

Modified:
  python-pytorch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 12:17:13 UTC (rev 277562)
+++ PKGBUILD2017-12-31 12:21:07 UTC (rev 277563)
@@ -5,7 +5,7 @@
 pkgname=("python-pytorch" "python2-pytorch" "python-pytorch-cuda" 
"python2-pytorch-cuda")
 _pkgname="pytorch"
 pkgver=0.3.0
-pkgrel=3
+pkgrel=4
 pkgdesc="Tensors and Dynamic neural networks in Python with strong GPU 
acceleration"
 arch=('x86_64')
 url="http://pytorch.org;
@@ -111,6 +111,7 @@
 
 package_python2-pytorch-cuda() {
   depends+=('python2' 'python2-yaml' 'python2-numpy' 'cuda' 'cudnn')
+  provides=('python2-pytorch')
   conflicts=('python2-pytorch')
   cd "$srcdir/${_pkgname}-${pkgver}-py2-cuda"
   python2 setup.py install --root="$pkgdir"/ --optimize=1 --skip-build
@@ -119,6 +120,7 @@
 
 package_python-pytorch-cuda() {
   depends+=('python' 'python-yaml' 'python-numpy' 'cuda' 'cudnn')
+  provides=('python-pytorch')
   conflicts=('python-pytorch')
   cd "$srcdir/${_pkgname}-${pkgver}-py3-cuda"
   python setup.py install --root="$pkgdir"/ --optimize=1 --skip-build


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 12:17:13
  Author: felixonmars
Revision: 277562

archrelease: copy trunk to community-staging-x86_64

Added:
  idris/repos/community-staging-x86_64/
  idris/repos/community-staging-x86_64/PKGBUILD
(from rev 277561, idris/trunk/PKGBUILD)

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

Copied: idris/repos/community-staging-x86_64/PKGBUILD (from rev 277561, 
idris/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-31 12:17:13 UTC (rev 277562)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=idris
+pkgver=1.1.1
+pkgrel=21
+pkgdesc="Functional Programming Language with Dependent Types"
+url="http://www.idris-lang.org/;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-annotated-wl-pprint" 
"haskell-ansi-terminal"
+ "haskell-ansi-wl-pprint" "haskell-async" "haskell-base64-bytestring" 
"haskell-blaze-html"
+ "haskell-blaze-markup" "haskell-cheapskate" "haskell-code-page" 
"haskell-fingertree"
+ "haskell-fsnotify" "haskell-ieee754" "haskell-mtl" "haskell-libffi" 
"haskell-network"
+ "haskell-optparse-applicative" "haskell-parsers" "haskell-regex-tdfa" 
"haskell-safe"
+ "haskell-split" "haskell-terminal-size" "haskell-text" 
"haskell-transformers-compat"
+ "haskell-trifecta" "haskell-uniplate" "haskell-unordered-containers" 
"haskell-utf8-string"
+ "haskell-vector" "haskell-vector-binary-instances" 
"haskell-zip-archive")
+makedepends=('ghc')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/idris-lang/Idris-dev/archive/v$pkgver.tar.gz;)
+sha512sums=('5768705f0ae22053214e62e79720d6d70e4bda55a8ddff45302c7b4f6c484999102100ee8146a7ec3abd823e028a7a3fecb82d67be49a9401219ef26cf7aa946')
+
+prepare() {
+cd Idris-dev-$pkgver
+
+sed -i '1ioverride IDRIS := env LD_PRELOAD=$(shell ls 
../../dist/build/libHSidris-*-ghc*.so) $(IDRIS)' \
+libs/*/Makefile
+
+sed -i 's/, ansi-terminal < 0.7/, ansi-terminal/' idris.cabal
+}
+
+build() {
+cd "$srcdir"/Idris-dev-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fFFI -fGMP -frelease -f-freestanding -f-CI -f-execonly
+LC_CTYPE=en_US.UTF-8 runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "$srcdir"/Idris-dev-$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 idris/trunk (PKGBUILD)

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 12:16:42
  Author: felixonmars
Revision: 277561

upgpkg: idris 1.1.1-21

rebuild with parsers,0.12.8

Modified:
  idris/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 12:01:23 UTC (rev 277560)
+++ PKGBUILD2017-12-31 12:16:42 UTC (rev 277561)
@@ -4,7 +4,7 @@
 
 pkgname=idris
 pkgver=1.1.1
-pkgrel=20
+pkgrel=21
 pkgdesc="Functional Programming Language with Dependent Types"
 url="http://www.idris-lang.org/;
 license=("custom:BSD3")


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 12:01:23
  Author: felixonmars
Revision: 277560

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-trifecta/repos/community-staging-x86_64/PKGBUILD (from rev 
277559, haskell-trifecta/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-31 12:01:23 UTC (rev 277560)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=trifecta
+pkgname=haskell-trifecta
+pkgver=1.7.1.1
+pkgrel=18
+pkgdesc="A modern parser combinator library with convenient diagnostics"
+url="https://github.com/ekmett/trifecta/;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-ansi-terminal" "haskell-ansi-wl-pprint" 
"haskell-blaze-builder"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-charset" 
"haskell-comonad"
+ "haskell-fingertree" "haskell-hashable" "haskell-lens" "haskell-mtl" 
"haskell-parsers"
+ "haskell-profunctors" "haskell-reducers" "haskell-semigroups" 
"haskell-unordered-containers"
+ "haskell-utf8-string")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('5da4e04be3f4f02220aa730b830a50b9a5df243815d6e00051beb7274af3bc78e50cf70747e3e1f448b2966d1c3051ab589e7d99a0432620390c6193d034a602')
+
+prepare() {
+sed -i 's/ansi-terminal>= 0.6 && < 0.7,/ansi-terminal
>= 0.6,/' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 12:00:51
  Author: felixonmars
Revision: 277559

upgpkg: haskell-trifecta 1.7.1.1-18

rebuild with parsers,0.12.8

Modified:
  haskell-trifecta/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 11:59:48 UTC (rev 277558)
+++ PKGBUILD2017-12-31 12:00:51 UTC (rev 277559)
@@ -5,7 +5,7 @@
 _hkgname=trifecta
 pkgname=haskell-trifecta
 pkgver=1.7.1.1
-pkgrel=17
+pkgrel=18
 pkgdesc="A modern parser combinator library with convenient diagnostics"
 url="https://github.com/ekmett/trifecta/;
 license=("custom:BSD3")


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 11:59:48
  Author: felixonmars
Revision: 277558

archrelease: copy trunk to community-staging-x86_64

Added:
  postgrest/repos/community-staging-x86_64/
  postgrest/repos/community-staging-x86_64/PKGBUILD
(from rev 277557, postgrest/trunk/PKGBUILD)

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

Copied: postgrest/repos/community-staging-x86_64/PKGBUILD (from rev 277557, 
postgrest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-31 11:59:48 UTC (rev 277558)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=postgrest
+pkgver=0.4.3.0
+pkgrel=23
+pkgdesc="REST API for any Postgres database"
+url="https://github.com/begriffs/postgrest;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hasql' 'haskell-hasql-pool' 'haskell-protolude' 
'haskell-text'
+ 'haskell-warp' 'haskell-base64-bytestring' 'haskell-retry' 
'haskell-aeson'
+ 'haskell-ansi-wl-pprint' 'haskell-case-insensitive' 'haskell-cassava'
+ 'haskell-configurator-ng' 'haskell-contravariant' 'haskell-either'
+ 'haskell-hasql-transaction' 'haskell-heredoc' 'haskell-http' 
'haskell-http-types'
+ 'haskell-insert-ordered-containers' 
'haskell-interpolatedstring-perl6' 'haskell-jose0.5'
+ 'haskell-lens' 'haskell-lens-aeson' 'haskell-network-uri' 
'haskell-optparse-applicative'
+ 'haskell-parsec' 'haskell-ranged-sets' 'haskell-regex-tdfa' 
'haskell-safe'
+ 'haskell-scientific' 'haskell-swagger2' 
'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-wai' 'haskell-wai-cors' 'haskell-wai-extra' 
'haskell-wai-middleware-static'
+ 'haskell-cookie')
+makedepends=('ghc' 'haskell-aeson-qq' 'haskell-async' 'haskell-hspec' 
'haskell-hspec-wai'
+ 'haskell-hspec-wai-json' 'haskell-hjsonschema' 
'haskell-hjsonpointer')
+checkdepends=('pifpaf' 'postgresql' 'procps-ng')
+source=("$pkgname-$pkgver.tar.bz2::https://github.com/begriffs/postgrest/archive/v$pkgver.tar.gz;)
+sha512sums=('e07d7e3aa0a830c5e8be8c2ed31236e0b12b97b4a5eaa1a3034bffc395cf7722150700b66e278faba24995435c85cb0eb846c40479ce8224ffe82c25d658')
+
+prepare() {
+sed -i 's/==/>=/' $pkgname-$pkgver/$pkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${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 \
+-f-CI
+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
+
+eval $(pifpaf run postgresql --host 127.0.0.1 --port 5432)
+createdb postgrest_test
+
+# TODO: it shouldn't take this long to finish
+# POSTGREST_TEST_CONNECTION=$(test/create_test_db 
"postgres://$USER@localhost" postgrest_test) runhaskell Setup test
+
+# Disabled: uses stack
+# test/io-tests.sh
+
+pifpaf_stop
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 11:59:27
  Author: felixonmars
Revision: 277557

upgpkg: postgrest 0.4.3.0-23

rebuild with parsers,0.12.8

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 11:56:08 UTC (rev 277556)
+++ PKGBUILD2017-12-31 11:59:27 UTC (rev 277557)
@@ -4,7 +4,7 @@
 
 pkgname=postgrest
 pkgver=0.4.3.0
-pkgrel=22
+pkgrel=23
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest;
 license=("MIT")


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 11:56:08
  Author: felixonmars
Revision: 277556

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hasql-transaction/repos/community-staging-x86_64/
  haskell-hasql-transaction/repos/community-staging-x86_64/PKGBUILD
(from rev 277555, haskell-hasql-transaction/trunk/PKGBUILD)

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

Copied: haskell-hasql-transaction/repos/community-staging-x86_64/PKGBUILD (from 
rev 277555, haskell-hasql-transaction/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-31 11:56:08 UTC (rev 277556)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=hasql-transaction
+pkgname=haskell-hasql-transaction
+pkgver=0.5.2
+pkgrel=6
+pkgdesc="A composable abstraction over the retryable transactions for Hasql"
+url="https://github.com/nikita-volkov/hasql-transaction;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-prelude' 'haskell-bytestring-tree-builder'
+ 'haskell-contravariant' 'haskell-contravariant-extras' 
'haskell-hasql' 'haskell-mtl')
+makedepends=('ghc' 'haskell-async' 'haskell-rebase')
+checkdepends=('postgresql' 'pifpaf')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('be3478b6c62894b517d91b7cbd515ca4fdc750a0dde087bba73ca7e3426e733ca444937136765e526130ce74d112154d444a379f5e5771ec596c404ca19737e2')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+
+eval $(pifpaf run postgresql --host 127.0.0.1 --port 5432)
+createuser -s postgres
+runhaskell Setup test
+pifpaf_stop
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 11:55:47
  Author: felixonmars
Revision: 277555

upgpkg: haskell-hasql-transaction 0.5.2-6

rebuild with parsers,0.12.8

Modified:
  haskell-hasql-transaction/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 11:54:53 UTC (rev 277554)
+++ PKGBUILD2017-12-31 11:55:47 UTC (rev 277555)
@@ -4,7 +4,7 @@
 _hkgname=hasql-transaction
 pkgname=haskell-hasql-transaction
 pkgver=0.5.2
-pkgrel=5
+pkgrel=6
 pkgdesc="A composable abstraction over the retryable transactions for Hasql"
 url="https://github.com/nikita-volkov/hasql-transaction;
 license=('MIT')


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 11:54:33
  Author: felixonmars
Revision: 277553

upgpkg: haskell-hasql-pool 0.4.3-6

rebuild with parsers,0.12.8

Modified:
  haskell-hasql-pool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 11:53:47 UTC (rev 277552)
+++ PKGBUILD2017-12-31 11:54:33 UTC (rev 277553)
@@ -5,7 +5,7 @@
 _hkgname=hasql-pool
 pkgname=haskell-hasql-pool
 pkgver=0.4.3
-pkgrel=5
+pkgrel=6
 pkgdesc="A pool of connections for Hasql"
 url="https://github.com/nikita-volkov/hasql-pool;
 license=('MIT')


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 11:54:53
  Author: felixonmars
Revision: 277554

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hasql-pool/repos/community-staging-x86_64/PKGBUILD (from rev 
277553, haskell-hasql-pool/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-31 11:54:53 UTC (rev 277554)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=hasql-pool
+pkgname=haskell-hasql-pool
+pkgver=0.4.3
+pkgrel=6
+pkgdesc="A pool of connections for Hasql"
+url="https://github.com/nikita-volkov/hasql-pool;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-prelude' 'haskell-hasql' 
'haskell-resource-pool')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('533e4e39379fb4c5a668b81e704d768abe333c2fb4f7951d117e4415b0cbaa2895d87edda9be93c3bb635a7c4bbe0a3682857c0b04c08ec5821e0889d213351c')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 11:53:25
  Author: felixonmars
Revision: 277551

upgpkg: haskell-hasql 1.1.1-6

rebuild with parsers,0.12.8

Modified:
  haskell-hasql/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 11:51:42 UTC (rev 277550)
+++ PKGBUILD2017-12-31 11:53:25 UTC (rev 277551)
@@ -5,7 +5,7 @@
 _hkgname=hasql
 pkgname=haskell-hasql
 pkgver=1.1.1
-pkgrel=5
+pkgrel=6
 pkgdesc="An efficient PostgreSQL driver and a flexible mapping API"
 url="https://github.com/nikita-volkov/hasql;
 license=('MIT')


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 11:53:47
  Author: felixonmars
Revision: 277552

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hasql/repos/community-staging-x86_64/PKGBUILD (from rev 277551, 
haskell-hasql/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-31 11:53:47 UTC (rev 277552)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=hasql
+pkgname=haskell-hasql
+pkgver=1.1.1
+pkgrel=6
+pkgdesc="An efficient PostgreSQL driver and a flexible mapping API"
+url="https://github.com/nikita-volkov/hasql;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base-prelude' 
'haskell-bytestring-strict-builder'
+ 'haskell-contravariant' 'haskell-contravariant-extras' 
'haskell-data-default-class'
+ 'haskell-dlist' 'haskell-hashable' 'haskell-hashtables' 
'haskell-loch-th'
+ 'haskell-mtl' 'haskell-placeholders' 'haskell-postgresql-binary' 
'haskell-postgresql-libpq'
+ 'haskell-profunctors' 'haskell-semigroups' 'haskell-text' 
'haskell-vector')
+makedepends=('ghc' 'haskell-bug' 'haskell-tasty' 'haskell-tasty-quickcheck' 
'haskell-tasty-hunit'
+ 'haskell-quickcheck-instances' 'haskell-quickcheck' 
'haskell-rerebase')
+checkdepends=('postgresql' 'pifpaf')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('f72097118dbecd87c31394be882aa81a591d5e6d429bbee974cc4d6acaf1a86b9cb1c623666f3ffcc4f258992a3522d1780fbcc5a2edaded18c106bbe1fd28be')
+
+prepare() {
+sed -i 's/tasty-hunit >= 0.9 && < 0.10,/tasty-hunit >= 0.9,/' 
$_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+
+eval $(pifpaf run postgresql --host 127.0.0.1 --port 5432)
+createuser -s postgres
+runhaskell Setup test
+pifpaf_stop
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 11:51:22
  Author: felixonmars
Revision: 277549

upgpkg: haskell-postgresql-binary 0.12.1-39

rebuild with parsers,0.12.8

Modified:
  haskell-postgresql-binary/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 11:50:18 UTC (rev 277548)
+++ PKGBUILD2017-12-31 11:51:22 UTC (rev 277549)
@@ -5,7 +5,7 @@
 _hkgname=postgresql-binary
 pkgname=haskell-postgresql-binary
 pkgver=0.12.1
-pkgrel=38
+pkgrel=39
 pkgdesc="Encoders and decoders for the PostgreSQL's binary format"
 url="https://github.com/nikita-volkov/postgresql-binary;
 license=("MIT")


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 11:51:42
  Author: felixonmars
Revision: 277550

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-postgresql-binary/repos/community-staging-x86_64/
  haskell-postgresql-binary/repos/community-staging-x86_64/PKGBUILD
(from rev 277549, haskell-postgresql-binary/trunk/PKGBUILD)

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

Copied: haskell-postgresql-binary/repos/community-staging-x86_64/PKGBUILD (from 
rev 277549, haskell-postgresql-binary/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-31 11:51:42 UTC (rev 277550)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=postgresql-binary
+pkgname=haskell-postgresql-binary
+pkgver=0.12.1
+pkgrel=39
+pkgdesc="Encoders and decoders for the PostgreSQL's binary format"
+url="https://github.com/nikita-volkov/postgresql-binary;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-base-prelude" 
"haskell-binary-parser"
+ "haskell-bytestring-strict-builder" "haskell-loch-th" 
"haskell-network-ip"
+ "haskell-placeholders" "haskell-scientific" "haskell-text" 
"haskell-unordered-containers"
+ "haskell-uuid" "haskell-vector")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('b4af6c71593f130da0ff6c462682fb570a4bd8108809eeb7a8cca45e2e340fd815dd3a94d72293a60f2072ed16f68bcb25a33009e742eca1383b934c4700f306')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 11:50:18
  Author: felixonmars
Revision: 277548

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-network-ip/repos/community-staging-x86_64/
  haskell-network-ip/repos/community-staging-x86_64/PKGBUILD
(from rev 277547, haskell-network-ip/trunk/PKGBUILD)

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

Copied: haskell-network-ip/repos/community-staging-x86_64/PKGBUILD (from rev 
277547, haskell-network-ip/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-31 11:50:18 UTC (rev 277548)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=network-ip
+pkgname=haskell-network-ip
+pkgver=0.3.0.2
+pkgrel=11
+pkgdesc="Internet Protocol data structures"
+url="https://github.com/mvv/network-ip;
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default-class' 'haskell-data-dword' 
'haskell-data-endian'
+ 'haskell-data-serializer' 'haskell-data-textual' 'haskell-hashable' 
'haskell-parsers'
+ 'haskell-text-printer' 'haskell-type-hint')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('de18967efdf4b42e1db16f28e5cf396b37207d5e37c9d01275dc4ab3fd8dd56f791f8af9943f53b588caed81963b785429582702fe4ce647ae7d76f8a1fa0092')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 11:49:57
  Author: felixonmars
Revision: 277547

upgpkg: haskell-network-ip 0.3.0.2-11

rebuild with parsers,0.12.8

Modified:
  haskell-network-ip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 11:49:00 UTC (rev 277546)
+++ PKGBUILD2017-12-31 11:49:57 UTC (rev 277547)
@@ -4,7 +4,7 @@
 _hkgname=network-ip
 pkgname=haskell-network-ip
 pkgver=0.3.0.2
-pkgrel=10
+pkgrel=11
 pkgdesc="Internet Protocol data structures"
 url="https://github.com/mvv/network-ip;
 license=('custom:BSD3')


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 11:48:30
  Author: felixonmars
Revision: 277545

upgpkg: haskell-data-textual 0.3.0.2-27

rebuild with parsers,0.12.8

Modified:
  haskell-data-textual/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 11:46:53 UTC (rev 277544)
+++ PKGBUILD2017-12-31 11:48:30 UTC (rev 277545)
@@ -4,7 +4,7 @@
 _hkgname=data-textual
 pkgname=haskell-data-textual
 pkgver=0.3.0.2
-pkgrel=26
+pkgrel=27
 pkgdesc="Human-friendly textual representations."
 url="https://github.com/mvv/data-textual;
 license=('custom:BSD3')


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 11:49:00
  Author: felixonmars
Revision: 277546

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-data-textual/repos/community-staging-x86_64/
  haskell-data-textual/repos/community-staging-x86_64/PKGBUILD
(from rev 277545, haskell-data-textual/trunk/PKGBUILD)

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

Copied: haskell-data-textual/repos/community-staging-x86_64/PKGBUILD (from rev 
277545, haskell-data-textual/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-31 11:49:00 UTC (rev 277546)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=data-textual
+pkgname=haskell-data-textual
+pkgver=0.3.0.2
+pkgrel=27
+pkgdesc="Human-friendly textual representations."
+url="https://github.com/mvv/data-textual;
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-parsers' 'haskell-text' 'haskell-text-latin1' 
'haskell-text-printer')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('2a3bda491f27b1a279d833182bb3c3dfe76921321a9bb4746d53eda3fbab24976a28267d5d84762ac21d61be8b6ae24beeb8861160e51b412afb5180848be9ed')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 11:46:32
  Author: felixonmars
Revision: 277543

upgpkg: haskell-data-serializer 0.3.2-3

rebuild with parsers,0.12.8

Modified:
  haskell-data-serializer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 11:45:31 UTC (rev 277542)
+++ PKGBUILD2017-12-31 11:46:32 UTC (rev 277543)
@@ -4,7 +4,7 @@
 _hkgname=data-serializer
 pkgname=haskell-data-serializer
 pkgver=0.3.2
-pkgrel=2
+pkgrel=3
 pkgdesc="Common API for serialization libraries"
 url="https://github.com/mvv/data-serializer;
 license=('custom:BSD3')


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 11:46:53
  Author: felixonmars
Revision: 277544

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-data-serializer/repos/community-staging-x86_64/
  haskell-data-serializer/repos/community-staging-x86_64/PKGBUILD
(from rev 277543, haskell-data-serializer/trunk/PKGBUILD)

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

Copied: haskell-data-serializer/repos/community-staging-x86_64/PKGBUILD (from 
rev 277543, haskell-data-serializer/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-31 11:46:53 UTC (rev 277544)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=data-serializer
+pkgname=haskell-data-serializer
+pkgver=0.3.2
+pkgrel=3
+pkgdesc="Common API for serialization libraries"
+url="https://github.com/mvv/data-serializer;
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-cereal' 'haskell-data-endian' 'haskell-parsers' 
'haskell-semigroups'
+ 'haskell-split')
+makedepends=('ghc' 'haskell-tasty' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('ecb8ae4a85845fbc0f2674b1ae9c9bd1f6a7db7fc49b30a4609e701f19e72740216da427076241fe7c7491a950c2428be6b1bde0ea74662c8bd70766ef9d92e5')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 11:45:31
  Author: felixonmars
Revision: 277542

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-parsers/repos/community-staging-x86_64/PKGBUILD (from rev 
277541, haskell-parsers/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-31 11:45:31 UTC (rev 277542)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=parsers
+pkgname=haskell-parsers
+pkgver=0.12.8
+pkgrel=1
+pkgdesc="Parsing combinators"
+url="https://github.com/ekmett/parsers/;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base-orphans' 
'haskell-charset' 'haskell-mtl'
+ 'haskell-parsec' 'haskell-scientific' 'haskell-semigroups' 
'haskell-text'
+ 'haskell-unordered-containers')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-quickcheck-instances')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('e38e2df58dad939c4402c3db5c33f656f71f3528d1b04223d0f19b340fa187c94145b19fc5a642fbfdc402b2d71fe3eaebc46d865b51a541a8b70cdad4d585e8')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 11:45:10
  Author: felixonmars
Revision: 277541

upgpkg: haskell-parsers 0.12.8-1

rebuild with parsers,0.12.8

Modified:
  haskell-parsers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 11:41:18 UTC (rev 277540)
+++ PKGBUILD2017-12-31 11:45:10 UTC (rev 277541)
@@ -4,24 +4,24 @@
 
 _hkgname=parsers
 pkgname=haskell-parsers
-pkgver=0.12.7
-pkgrel=5
+pkgver=0.12.8
+pkgrel=1
 pkgdesc="Parsing combinators"
 url="https://github.com/ekmett/parsers/;
 license=("custom:BSD3")
 arch=('x86_64')
-depends=('ghc-libs' "haskell-attoparsec" "haskell-base-orphans" 
"haskell-charset" "haskell-mtl"
- "haskell-parsec" "haskell-scientific" "haskell-semigroups" 
"haskell-text"
- "haskell-unordered-containers")
-makedepends=('ghc')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base-orphans' 
'haskell-charset' 'haskell-mtl'
+ 'haskell-parsec' 'haskell-scientific' 'haskell-semigroups' 
'haskell-text'
+ 'haskell-unordered-containers')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-quickcheck-instances')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('ce89f1ebcf0b74b213f533e720ea889f28f06a0f2ad3d6a6c91a587196366d459c33303dd5cfd844f43c7a0eb3b75fae4a41d315d53dde2895418e14bffa4a9c')
+sha512sums=('e38e2df58dad939c4402c3db5c33f656f71f3528d1b04223d0f19b340fa187c94145b19fc5a642fbfdc402b2d71fe3eaebc46d865b51a541a8b70cdad4d585e8')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"
 
 runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--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
@@ -30,6 +30,11 @@
 sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
 }
 
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
 package() {
 cd "${srcdir}/${_hkgname}-${pkgver}"
 


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 11:41:18
  Author: felixonmars
Revision: 277540

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-31 11:40:50 UTC (rev 277539)
+++ PKGBUILD2017-12-31 11:41:18 UTC (rev 277540)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-# Contributor: Limao Luo 
-
-pkgbase=python-jsonpatch
-pkgname=(python-jsonpatch python2-jsonpatch)
-pkgver=1.20
-pkgrel=1
-pkgdesc="An implementation of the JSON Patch format"
-arch=("any")
-url="https://github.com/stefankoegl/python-json-patch;
-license=("BSD")
-makedepends=("python-setuptools" "python2-setuptools" "python-jsonpointer" 
"python2-jsonpointer"
- "python-pypandoc" "python2-pypandoc")
-checkdepends=('python-coverage' 'python2-coverage')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/stefankoegl/python-json-patch/archive/v$pkgver.tar.gz;)
-sha512sums=('7b4222115bcffbd4928a8b10f00432ec2861e4b09e3f39bff8169ca036f2894d6f1fb94d96b049b5271f0aa5474f49ee67168caf0fe62260cf939290e6b87437')
-
-prepare(){
-  cp -a python-json-patch-$pkgver{,-py2}
-  find python-json-patch-$pkgver-py2 -name \*.py -exec sed -i '1s/python$/&2/' 
{} +
-}
-
-build() {
-  cd "$srcdir"/python-json-patch-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/python-json-patch-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/python-json-patch-$pkgver
-  coverage run --source=jsonpatch tests.py
-
-  cd "$srcdir"/python-json-patch-$pkgver-py2
-  coverage2 run --source=jsonpatch tests.py
-}
-
-package_python-jsonpatch() {
-  depends=("python-jsonpointer")
-
-  cd "$srcdir"/python-json-patch-$pkgver
-
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-  python setup.py install --prefix=/usr --root="$pkgdir"
-}
-package_python2-jsonpatch() {
-  depends=("python2-jsonpointer")
-
-  cd "$srcdir"/python-json-patch-$pkgver-py2
-
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-  python2 setup.py install --prefix=/usr --root="$pkgdir"
-  for _bin in "$pkgdir"/usr/bin/*; do
-mv "$_bin"{,2}
-  done
-}

Copied: python-jsonpatch/repos/community-any/PKGBUILD (from rev 277539, 
python-jsonpatch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-31 11:41:18 UTC (rev 277540)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+# Contributor: Limao Luo 
+
+pkgbase=python-jsonpatch
+pkgname=(python-jsonpatch python2-jsonpatch)
+pkgver=1.21
+pkgrel=1
+pkgdesc="An implementation of the JSON Patch format"
+arch=("any")
+url="https://github.com/stefankoegl/python-json-patch;
+license=("BSD")
+makedepends=("python-setuptools" "python2-setuptools" "python-jsonpointer" 
"python2-jsonpointer"
+ "python-pypandoc" "python2-pypandoc")
+checkdepends=('python-coverage' 'python2-coverage')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/stefankoegl/python-json-patch/archive/v$pkgver.tar.gz;)
+sha512sums=('c650c75bdc322ccd4d89b18ab85b3d417f4a3e7f200c0ffe585495ca15f88dea9cbaf5fb2d47ab0b328189cd85ff9d58b718151817ec01536808fbd328cd1409')
+
+prepare(){
+  cp -a python-json-patch-$pkgver{,-py2}
+  find python-json-patch-$pkgver-py2 -name \*.py -exec sed -i '1s/python$/&2/' 
{} +
+}
+
+build() {
+  cd "$srcdir"/python-json-patch-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/python-json-patch-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-json-patch-$pkgver
+  coverage run --source=jsonpatch tests.py
+
+  cd "$srcdir"/python-json-patch-$pkgver-py2
+  coverage2 run --source=jsonpatch tests.py
+}
+
+package_python-jsonpatch() {
+  depends=("python-jsonpointer")
+
+  cd "$srcdir"/python-json-patch-$pkgver
+
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+  python setup.py install --prefix=/usr --root="$pkgdir"
+}
+package_python2-jsonpatch() {
+  depends=("python2-jsonpointer")
+
+  cd "$srcdir"/python-json-patch-$pkgver-py2
+
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+  python2 setup.py install --prefix=/usr --root="$pkgdir"
+  for _bin in "$pkgdir"/usr/bin/*; do
+mv "$_bin"{,2}
+  done
+}


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 11:40:50
  Author: felixonmars
Revision: 277539

upgpkg: python-jsonpatch 1.21-1

Modified:
  python-jsonpatch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 11:39:34 UTC (rev 277538)
+++ PKGBUILD2017-12-31 11:40:50 UTC (rev 277539)
@@ -5,7 +5,7 @@
 
 pkgbase=python-jsonpatch
 pkgname=(python-jsonpatch python2-jsonpatch)
-pkgver=1.20
+pkgver=1.21
 pkgrel=1
 pkgdesc="An implementation of the JSON Patch format"
 arch=("any")
@@ -15,7 +15,7 @@
  "python-pypandoc" "python2-pypandoc")
 checkdepends=('python-coverage' 'python2-coverage')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/stefankoegl/python-json-patch/archive/v$pkgver.tar.gz;)
-sha512sums=('7b4222115bcffbd4928a8b10f00432ec2861e4b09e3f39bff8169ca036f2894d6f1fb94d96b049b5271f0aa5474f49ee67168caf0fe62260cf939290e6b87437')
+sha512sums=('c650c75bdc322ccd4d89b18ab85b3d417f4a3e7f200c0ffe585495ca15f88dea9cbaf5fb2d47ab0b328189cd85ff9d58b718151817ec01536808fbd328cd1409')
 
 prepare(){
   cp -a python-json-patch-$pkgver{,-py2}


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 11:17:12
  Author: felixonmars
Revision: 277533

upgpkg: stack 1.6.3-7

rebuild with mono-traversable,1.0.7.0

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 10:54:12 UTC (rev 277532)
+++ PKGBUILD2017-12-31 11:17:12 UTC (rev 277533)
@@ -4,7 +4,7 @@
 
 pkgname=stack
 pkgver=1.6.3
-pkgrel=6
+pkgrel=7
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("custom:BSD3")


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 11:17:34
  Author: felixonmars
Revision: 277534

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 277533, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-31 11:17:34 UTC (rev 277534)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=1.6.3
+pkgrel=7
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-bindings-uname'
+ 'haskell-blaze-builder' 'haskell-clock' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-cryptonite-conduit' 'haskell-echo' 
'haskell-exceptions'
+ 'haskell-extra' 'haskell-fast-logger' 'haskell-file-embed' 
'haskell-filelock'
+ 'haskell-fsnotify' 'haskell-generic-deriving' 'haskell-gitrev' 
'haskell-hackage-security'
+ 'haskell-hashable' 'haskell-hastache' 'haskell-hpack' 
'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-microlens' 'haskell-microlens-mtl' 'haskell-mintty' 
'haskell-monad-logger'
+ 'haskell-mono-traversable' 'haskell-mtl' '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-pid1' 'haskell-primitive' 
'haskell-project-template'
+ 'haskell-regex-applicative-text' 'haskell-resourcet' 'haskell-retry' 
'haskell-semigroups'
+ 'haskell-split' 'haskell-stm' 'haskell-store' 'haskell-store-core'
+ 'haskell-streaming-commons' 'haskell-tar' 'haskell-temporary' 
'haskell-text'
+ 'haskell-text-metrics' 'haskell-th-reify-many' 'haskell-tls' 
'haskell-unicode-transforms'
+ 'haskell-unix-compat' 'haskell-unliftio' 
'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-yaml' 'haskell-zip-archive' 'haskell-zlib')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-hspec' 'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("$pkgname-$pkgver.tar.gz::https://github.com/commercialhaskell/stack/archive/v$pkgver.tar.gz;)
+sha512sums=('28cb4d65fdcfdb999ef9ef853629b1590cde3fdd736c768c1e41350dec3a8dd3dae8519acef17eca6665c50f46fb3958cc2b9347a10b627842c47c0b9b0cd175')
+
+prepare() {
+  cd $pkgname-$pkgver
+  hpack
+}
+
+build() {
+  cd "${srcdir}/${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 \
+  -f-disable-git-info -fintegration-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-$pkgver
+  cabal update
+  LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" 
runhaskell Setup test || warning "Expected 4 failures on Arch currently"
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup copy --destdir="${pkgdir}"
+  install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+  LD_PRELOAD=$(ls "$pkgdir"/usr/lib/libHSstack-*-ghc*.so) 
"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+  install -Dm644 stack_completion_script 
"${pkgdir}/usr/share/bash-completion/completions/stack"
+}

Copied: 

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

2017-12-31 Thread Lukas Fleischer via arch-commits
Date: Sunday, December 31, 2017 @ 10:54:12
  Author: lfleischer
Revision: 277532

archrelease: copy trunk to community-x86_64

Added:
  tig/repos/community-x86_64/PKGBUILD
(from rev 277531, tig/trunk/PKGBUILD)
Deleted:
  tig/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-31 10:54:07 UTC (rev 277531)
+++ PKGBUILD2017-12-31 10:54:12 UTC (rev 277532)
@@ -1,32 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Loui Chang 
-# Contributor: Geoffroy Carrier 
-# Contributor: Nathan Jones 
-
-pkgname=tig
-pkgver=2.3.0
-pkgrel=1
-pkgdesc='Text-mode interface for Git.'
-depends=('git' 'ncurses')
-makedepends=('asciidoc' 'xmlto')
-url='http://jonas.nitro.dk/tig/'
-license=('GPL')
-arch=('i686' 'x86_64')
-backup=('etc/tigrc')
-source=("https://github.com/jonas/$pkgname/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz;)
-md5sums=('4244423e7cbffce2d7ab44ef34086eee')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install install-doc-man
-
-  install -Dm0644 contrib/tig-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/tig"
-}

Copied: tig/repos/community-x86_64/PKGBUILD (from rev 277531, 
tig/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-31 10:54:12 UTC (rev 277532)
@@ -0,0 +1,32 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Loui Chang 
+# Contributor: Geoffroy Carrier 
+# Contributor: Nathan Jones 
+
+pkgname=tig
+pkgver=2.3.2
+pkgrel=1
+pkgdesc='Text-mode interface for Git.'
+depends=('git' 'ncurses')
+makedepends=('asciidoc' 'xmlto')
+url='http://jonas.nitro.dk/tig/'
+license=('GPL')
+arch=('x86_64')
+backup=('etc/tigrc')
+source=("https://github.com/jonas/$pkgname/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz;)
+md5sums=('9a9c335258d768ec10c7f1f2de4aca26')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install install-doc-man
+
+  install -Dm0644 contrib/tig-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/tig"
+}


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

2017-12-31 Thread Lukas Fleischer via arch-commits
Date: Sunday, December 31, 2017 @ 10:54:07
  Author: lfleischer
Revision: 277531

upgpkg: tig 2.3.2-1

Upstream update.

Modified:
  tig/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 10:53:14 UTC (rev 277530)
+++ PKGBUILD2017-12-31 10:54:07 UTC (rev 277531)
@@ -4,7 +4,7 @@
 # Contributor: Nathan Jones 
 
 pkgname=tig
-pkgver=2.3.0
+pkgver=2.3.2
 pkgrel=1
 pkgdesc='Text-mode interface for Git.'
 depends=('git' 'ncurses')
@@ -14,7 +14,7 @@
 arch=('x86_64')
 backup=('etc/tigrc')
 
source=("https://github.com/jonas/$pkgname/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz;)
-md5sums=('4244423e7cbffce2d7ab44ef34086eee')
+md5sums=('9a9c335258d768ec10c7f1f2de4aca26')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2017-12-31 Thread Lukas Fleischer via arch-commits
Date: Sunday, December 31, 2017 @ 10:53:14
  Author: lfleischer
Revision: 277530

archrelease: copy trunk to community-x86_64

Added:
  optipng/repos/community-x86_64/PKGBUILD
(from rev 277529, optipng/trunk/PKGBUILD)
Deleted:
  optipng/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-31 10:53:07 UTC (rev 277529)
+++ PKGBUILD2017-12-31 10:53:14 UTC (rev 277530)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer 
-# Contributor: Stefan Husmann 
-# Contributor: Aaron Schaefer 
-
-pkgname=optipng
-pkgver=0.7.6
-pkgrel=2
-pkgdesc='Compresses PNG files to a smaller size, without losing any 
information.'
-arch=('i686' 'x86_64')
-url='http://optipng.sourceforge.net/'
-license=('ZLIB')
-depends=('glibc' 'libpng' 'zlib')
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('568e0738358450eca69ecf578d48f26c')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure --prefix=/usr --mandir=/usr/share/man --with-system-libs
-  make
-}
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make prefix="$pkgdir/usr" mandir="$pkgdir/usr/share/man" install
-
-  # install license
-  install -Dm0644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE" 
-}

Copied: optipng/repos/community-x86_64/PKGBUILD (from rev 277529, 
optipng/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-31 10:53:14 UTC (rev 277530)
@@ -0,0 +1,29 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Stefan Husmann 
+# Contributor: Aaron Schaefer 
+
+pkgname=optipng
+pkgver=0.7.7
+pkgrel=1
+pkgdesc='Compresses PNG files to a smaller size, without losing any 
information.'
+arch=('x86_64')
+url='http://optipng.sourceforge.net/'
+license=('ZLIB')
+depends=('glibc' 'libpng' 'zlib')
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('211101965baf42fd24a2aa990b7e842e')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure --prefix=/usr --mandir=/usr/share/man --with-system-libs
+  make
+}
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make prefix="$pkgdir/usr" mandir="$pkgdir/usr/share/man" install
+
+  # install license
+  install -Dm0644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE" 
+}


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

2017-12-31 Thread Lukas Fleischer via arch-commits
Date: Sunday, December 31, 2017 @ 10:53:07
  Author: lfleischer
Revision: 277529

upgpkg: optipng 0.7.7-1

Upstream update.

Modified:
  optipng/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 10:40:58 UTC (rev 277528)
+++ PKGBUILD2017-12-31 10:53:07 UTC (rev 277529)
@@ -1,11 +1,10 @@
-# $Id$
 # Maintainer: Lukas Fleischer 
 # Contributor: Stefan Husmann 
 # Contributor: Aaron Schaefer 
 
 pkgname=optipng
-pkgver=0.7.6
-pkgrel=2
+pkgver=0.7.7
+pkgrel=1
 pkgdesc='Compresses PNG files to a smaller size, without losing any 
information.'
 arch=('x86_64')
 url='http://optipng.sourceforge.net/'
@@ -12,7 +11,7 @@
 license=('ZLIB')
 depends=('glibc' 'libpng' 'zlib')
 
source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('568e0738358450eca69ecf578d48f26c')
+md5sums=('211101965baf42fd24a2aa990b7e842e')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2017-12-31 Thread Lukas Fleischer via arch-commits
Date: Sunday, December 31, 2017 @ 10:40:50
  Author: lfleischer
Revision: 277527

upgpkg: borg 1.1.4-1

Upstream update.

Modified:
  borg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 10:00:17 UTC (rev 277526)
+++ PKGBUILD2017-12-31 10:40:50 UTC (rev 277527)
@@ -3,7 +3,7 @@
 
 pkgname=borg
 _pkgname=borgbackup
-pkgver=1.1.3
+pkgver=1.1.4
 pkgrel=1
 pkgdesc='Deduplicating backup program with compression and authenticated 
encryption'
 url='https://borgbackup.github.io/'
@@ -18,7 +18,7 @@
 replaces=('borgbackup')
 
source=("https://github.com/$_pkgname/$pkgname/releases/download/$pkgver/$_pkgname-$pkgver.tar.gz;
 borg.coveragerc)
-sha256sums=('cc2a329956dc42e7e461d2f506a28e398c4cc6dc53a67cc2c8a17dcacc4276e7'
+sha256sums=('22a4a53840886180e87de5636356f29e491209365861007c31d7f18220c72cb2'
 '183814ae70fce7bbcf04dbbf3866eaf76867896a4327f8a3b553e095d1ff360f')
 
 build() {


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

2017-12-31 Thread Lukas Fleischer via arch-commits
Date: Sunday, December 31, 2017 @ 10:40:58
  Author: lfleischer
Revision: 277528

archrelease: copy trunk to community-x86_64

Added:
  borg/repos/community-x86_64/PKGBUILD
(from rev 277527, borg/trunk/PKGBUILD)
  borg/repos/community-x86_64/borg.coveragerc
(from rev 277527, borg/trunk/borg.coveragerc)
Deleted:
  borg/repos/community-x86_64/PKGBUILD
  borg/repos/community-x86_64/borg.coveragerc

-+
 PKGBUILD|   98 +++---
 borg.coveragerc |   46 -
 2 files changed, 72 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-31 10:40:50 UTC (rev 277527)
+++ PKGBUILD2017-12-31 10:40:58 UTC (rev 277528)
@@ -1,49 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Vlad M. 
-
-pkgname=borg
-_pkgname=borgbackup
-pkgver=1.1.3
-pkgrel=1
-pkgdesc='Deduplicating backup program with compression and authenticated 
encryption'
-url='https://borgbackup.github.io/'
-license=('BSD')
-arch=('x86_64')
-depends=('acl' 'lz4' 'openssl' 'python-msgpack' 'python-setuptools' 'xz')
-optdepends=('openssh: repositories on remote hosts'
-'python-llfuse: mounting backups as a FUSE file system')
-makedepends=('cython' 'python-sphinx' 'python-guzzle-sphinx-theme')
-checkdepends=('python-pytest' 'python-pytest-cov' 'python-pytest-benchmark' 
'python-mock')
-provides=('borgbackup')
-replaces=('borgbackup')
-source=("https://github.com/$_pkgname/$pkgname/releases/download/$pkgver/$_pkgname-$pkgver.tar.gz;
-borg.coveragerc)
-sha256sums=('cc2a329956dc42e7e461d2f506a28e398c4cc6dc53a67cc2c8a17dcacc4276e7'
-'183814ae70fce7bbcf04dbbf3866eaf76867896a4327f8a3b553e095d1ff360f')
-
-build() {
-  cd "$srcdir/$_pkgname-$pkgver"
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir/$_pkgname-$pkgver/build/lib.linux-$CARCH-3.6/"
-  LANG=en_US.UTF-8 PYTHONPATH="$PWD:$PYTHONPATH" py.test --cov=borg \
---cov-config="$srcdir/borg.coveragerc" --benchmark-skip --pyargs 
borg.testsuite -v \
--k 'not test_non_ascii_acl'
-}
-
-package() {
-  cd "$srcdir/$_pkgname-$pkgver"
-
-  python setup.py -q install --root="$pkgdir" --optimize=1
-
-  install -Dm644 scripts/shell_completions/bash/borg \
-"$pkgdir/usr/share/bash-completion/completions/borg"
-  install -Dm644 scripts/shell_completions/fish/borg.fish \
-"$pkgdir/usr/share/fish/completions/borg.fish"
-  install -Dm644 scripts/shell_completions/zsh/_borg 
"$pkgdir/usr/share/zsh/site-functions/_borg"
-
-  install -Dm644 -t "$pkgdir/usr/share/man/man1/" "docs/man/"*.1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: borg/repos/community-x86_64/PKGBUILD (from rev 277527, 
borg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-31 10:40:58 UTC (rev 277528)
@@ -0,0 +1,49 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Vlad M. 
+
+pkgname=borg
+_pkgname=borgbackup
+pkgver=1.1.4
+pkgrel=1
+pkgdesc='Deduplicating backup program with compression and authenticated 
encryption'
+url='https://borgbackup.github.io/'
+license=('BSD')
+arch=('x86_64')
+depends=('acl' 'lz4' 'openssl' 'python-msgpack' 'python-setuptools' 'xz')
+optdepends=('openssh: repositories on remote hosts'
+'python-llfuse: mounting backups as a FUSE file system')
+makedepends=('cython' 'python-sphinx' 'python-guzzle-sphinx-theme')
+checkdepends=('python-pytest' 'python-pytest-cov' 'python-pytest-benchmark' 
'python-mock')
+provides=('borgbackup')
+replaces=('borgbackup')
+source=("https://github.com/$_pkgname/$pkgname/releases/download/$pkgver/$_pkgname-$pkgver.tar.gz;
+borg.coveragerc)
+sha256sums=('22a4a53840886180e87de5636356f29e491209365861007c31d7f18220c72cb2'
+'183814ae70fce7bbcf04dbbf3866eaf76867896a4327f8a3b553e095d1ff360f')
+
+build() {
+  cd "$srcdir/$_pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir/$_pkgname-$pkgver/build/lib.linux-$CARCH-3.6/"
+  LANG=en_US.UTF-8 PYTHONPATH="$PWD:$PYTHONPATH" py.test --cov=borg \
+--cov-config="$srcdir/borg.coveragerc" --benchmark-skip --pyargs 
borg.testsuite -v \
+-k 'not test_non_ascii_acl'
+}
+
+package() {
+  cd "$srcdir/$_pkgname-$pkgver"
+
+  python setup.py -q install --root="$pkgdir" --optimize=1
+
+  install -Dm644 scripts/shell_completions/bash/borg \
+"$pkgdir/usr/share/bash-completion/completions/borg"
+  install -Dm644 scripts/shell_completions/fish/borg.fish \
+"$pkgdir/usr/share/fish/completions/borg.fish"
+  install -Dm644 scripts/shell_completions/zsh/_borg 
"$pkgdir/usr/share/zsh/site-functions/_borg"
+
+  install -Dm644 -t "$pkgdir/usr/share/man/man1/" "docs/man/"*.1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2017-12-31 Thread Pierre Schmitz via arch-commits
Date: Sunday, December 31, 2017 @ 10:00:17
  Author: pierre
Revision: 277526

archrelease: copy trunk to community-x86_64

Added:
  xdebug/repos/community-x86_64/PKGBUILD
(from rev 277525, xdebug/trunk/PKGBUILD)
  xdebug/repos/community-x86_64/xdebug.ini
(from rev 277525, xdebug/trunk/xdebug.ini)
Deleted:
  xdebug/repos/community-x86_64/PKGBUILD
  xdebug/repos/community-x86_64/xdebug.ini

+
 PKGBUILD   |   78 +--
 xdebug.ini |   10 +++
 2 files changed, 44 insertions(+), 44 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-31 09:59:55 UTC (rev 277525)
+++ PKGBUILD2017-12-31 10:00:17 UTC (rev 277526)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jonathan Wiersma 
-# Contributor: Jonathan Wiersma 
-# Contributor: sracker 
-
-pkgname=xdebug
-pkgver=2.6.0alpha1
-pkgrel=1
-pkgdesc="PHP debugging extension"
-arch=('x86_64')
-url="http://www.xdebug.org;
-license=('GPL')
-depends=('php')
-backup=('etc/php/conf.d/xdebug.ini')
-source=("https://www.xdebug.org/files/$pkgname-${pkgver,,}.tgz;
-   'xdebug.ini')
-sha256sums=('145f3a41e746e59872d73caf368399f68d4ee8379e449ebd1a62bdaf1927841f'
-'7c66883dc2ade69069ef84e30188b25630748aa9c8b0dd123727c00505421205')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  phpize
-  ./configure --prefix=/usr --enable-xdebug
-  make
-
-  cd "$srcdir"/$pkgname-$pkgver/debugclient
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver/debugclient
-  make DESTDIR="$pkgdir" install
-
-  cd "$srcdir"/$pkgname-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-  install -D -m 644 "$srcdir"/xdebug.ini "$pkgdir"/etc/php/conf.d/xdebug.ini
-}

Copied: xdebug/repos/community-x86_64/PKGBUILD (from rev 277525, 
xdebug/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-31 10:00:17 UTC (rev 277526)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jonathan Wiersma 
+# Contributor: Jonathan Wiersma 
+# Contributor: sracker 
+
+pkgname=xdebug
+pkgver=2.6.0beta1
+pkgrel=1
+pkgdesc="PHP debugging extension"
+arch=('x86_64')
+url="http://www.xdebug.org;
+license=('GPL')
+depends=('php')
+backup=('etc/php/conf.d/xdebug.ini')
+source=("https://www.xdebug.org/files/$pkgname-${pkgver,,}.tgz;
+   'xdebug.ini')
+sha256sums=('49de661e1e18cbbd739fc9fb7a014a36f97a84d2c4a89417c358dd258340527d'
+'7c66883dc2ade69069ef84e30188b25630748aa9c8b0dd123727c00505421205')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  phpize
+  ./configure --prefix=/usr --enable-xdebug
+  make
+
+  cd "$srcdir"/$pkgname-$pkgver/debugclient
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver/debugclient
+  make DESTDIR="$pkgdir" install
+
+  cd "$srcdir"/$pkgname-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+  install -D -m 644 "$srcdir"/xdebug.ini "$pkgdir"/etc/php/conf.d/xdebug.ini
+}

Deleted: xdebug.ini
===
--- xdebug.ini  2017-12-31 09:59:55 UTC (rev 277525)
+++ xdebug.ini  2017-12-31 10:00:17 UTC (rev 277526)
@@ -1,5 +0,0 @@
-;zend_extension=xdebug.so
-;xdebug.remote_enable=on
-;xdebug.remote_host=127.0.0.1
-;xdebug.remote_port=9000
-;xdebug.remote_handler=dbgp

Copied: xdebug/repos/community-x86_64/xdebug.ini (from rev 277525, 
xdebug/trunk/xdebug.ini)
===
--- xdebug.ini  (rev 0)
+++ xdebug.ini  2017-12-31 10:00:17 UTC (rev 277526)
@@ -0,0 +1,5 @@
+;zend_extension=xdebug.so
+;xdebug.remote_enable=on
+;xdebug.remote_host=127.0.0.1
+;xdebug.remote_port=9000
+;xdebug.remote_handler=dbgp


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

2017-12-31 Thread Pierre Schmitz via arch-commits
Date: Sunday, December 31, 2017 @ 09:59:55
  Author: pierre
Revision: 277525

upgpkg: xdebug 2.6.0beta1-1

Modified:
  xdebug/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 09:38:01 UTC (rev 277524)
+++ PKGBUILD2017-12-31 09:59:55 UTC (rev 277525)
@@ -5,7 +5,7 @@
 # Contributor: sracker 
 
 pkgname=xdebug
-pkgver=2.6.0alpha1
+pkgver=2.6.0beta1
 pkgrel=1
 pkgdesc="PHP debugging extension"
 arch=('x86_64')
@@ -15,7 +15,7 @@
 backup=('etc/php/conf.d/xdebug.ini')
 source=("https://www.xdebug.org/files/$pkgname-${pkgver,,}.tgz;
'xdebug.ini')
-sha256sums=('145f3a41e746e59872d73caf368399f68d4ee8379e449ebd1a62bdaf1927841f'
+sha256sums=('49de661e1e18cbbd739fc9fb7a014a36f97a84d2c4a89417c358dd258340527d'
 '7c66883dc2ade69069ef84e30188b25630748aa9c8b0dd123727c00505421205')
 
 build() {


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

2017-12-31 Thread Felix Yan via arch-commits
Date: Sunday, December 31, 2017 @ 09:37:38
  Author: felixonmars
Revision: 277523

upgpkg: haskell-store 0.4.3.2-25

rebuild with mono-traversable,1.0.7.0

Modified:
  haskell-store/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 09:35:49 UTC (rev 277522)
+++ PKGBUILD2017-12-31 09:37:38 UTC (rev 277523)
@@ -4,7 +4,7 @@
 _hkgname=store
 pkgname=haskell-store
 pkgver=0.4.3.2
-pkgrel=24
+pkgrel=25
 pkgdesc="Fast binary serialization"
 url="https://github.com/fpco/store;
 license=('custom:BSD3')


  1   2   >