[arch-commits] Commit in nextcloud-app-bookmarks/trunk (PKGBUILD)

2019-02-25 Thread Sergej Pupykin via arch-commits
Date: Monday, February 25, 2019 @ 08:24:19
  Author: spupykin
Revision: 435657

upgpkg: nextcloud-app-bookmarks 1:0.16.2-1

Modified:
  nextcloud-app-bookmarks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 07:58:52 UTC (rev 435656)
+++ PKGBUILD2019-02-25 08:24:19 UTC (rev 435657)
@@ -2,7 +2,7 @@
 
 pkgname=nextcloud-app-bookmarks
 epoch=1
-pkgver=0.16.1
+pkgver=0.16.2
 pkgrel=1
 pkgdesc="Bookmarks app for nextcloud"
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=()
 options=('!strip')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/bookmarks/releases/download/v$pkgver/bookmarks-$pkgver.tar.gz";)
-sha256sums=('a01d11a8a6782019d992eecaaaf06e948b0d1299ca6e7e4d15eb3cc217efdece')
+sha256sums=('843af65f6297187954081d8b6ddbcdead2742f050d3ca89cc6b497e96338133e')
 
 package() {
   install -d "$pkgdir"/usr/share/webapps/nextcloud/apps


[arch-commits] Commit in nextcloud-app-bookmarks/repos/community-any (2 files)

2019-02-25 Thread Sergej Pupykin via arch-commits
Date: Monday, February 25, 2019 @ 08:24:33
  Author: spupykin
Revision: 435658

archrelease: copy trunk to community-any

Added:
  nextcloud-app-bookmarks/repos/community-any/PKGBUILD
(from rev 435657, nextcloud-app-bookmarks/trunk/PKGBUILD)
Deleted:
  nextcloud-app-bookmarks/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-25 08:24:19 UTC (rev 435657)
+++ PKGBUILD2019-02-25 08:24:33 UTC (rev 435658)
@@ -1,20 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=nextcloud-app-bookmarks
-epoch=1
-pkgver=0.16.1
-pkgrel=1
-pkgdesc="Bookmarks app for nextcloud"
-arch=('any')
-url="http://nextcloud.com";
-license=('GPL')
-depends=('nextcloud')
-makedepends=()
-options=('!strip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/bookmarks/releases/download/v$pkgver/bookmarks-$pkgver.tar.gz";)
-sha256sums=('a01d11a8a6782019d992eecaaaf06e948b0d1299ca6e7e4d15eb3cc217efdece')
-
-package() {
-  install -d "$pkgdir"/usr/share/webapps/nextcloud/apps
-  cp -a "$srcdir"/bookmarks 
"$pkgdir"/usr/share/webapps/nextcloud/apps/bookmarks
-}

Copied: nextcloud-app-bookmarks/repos/community-any/PKGBUILD (from rev 435657, 
nextcloud-app-bookmarks/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-25 08:24:33 UTC (rev 435658)
@@ -0,0 +1,20 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=nextcloud-app-bookmarks
+epoch=1
+pkgver=0.16.2
+pkgrel=1
+pkgdesc="Bookmarks app for nextcloud"
+arch=('any')
+url="http://nextcloud.com";
+license=('GPL')
+depends=('nextcloud')
+makedepends=()
+options=('!strip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/bookmarks/releases/download/v$pkgver/bookmarks-$pkgver.tar.gz";)
+sha256sums=('843af65f6297187954081d8b6ddbcdead2742f050d3ca89cc6b497e96338133e')
+
+package() {
+  install -d "$pkgdir"/usr/share/webapps/nextcloud/apps
+  cp -a "$srcdir"/bookmarks 
"$pkgdir"/usr/share/webapps/nextcloud/apps/bookmarks
+}


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

2019-02-25 Thread Sergej Pupykin via arch-commits
Date: Monday, February 25, 2019 @ 08:33:39
  Author: spupykin
Revision: 435659

fix luasocket-debug

Modified:
  luasocket/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 08:24:33 UTC (rev 435658)
+++ PKGBUILD2019-02-25 08:33:39 UTC (rev 435659)
@@ -10,6 +10,7 @@
 arch=('x86_64')
 url='https://github.com/diegonehab/luasocket'
 license=('MIT')
+#options=('debug')
 makedepends=('lua' 'lua51' 'lua52' 'git')
 source=("git+https://github.com/diegonehab/luasocket.git#commit=${_commit}";)
 md5sums=('SKIP')
@@ -20,7 +21,7 @@
 
   msg2 'Building with lua 5.3'
   cd "$srcdir"/luasocket
-  make LUAV=5.3 linux
+  MYCFLAGS=$CFLAGS MYLDFLAGS=$LDFLAGS make LUAV=5.3 linux
 
   msg2 'Building with lua 5.1'
   cd "$srcdir"/luasocket-51
@@ -31,7 +32,7 @@
 -e 's|include "lauxlib.h|include "lua5.1/lauxlib.h|g' \
 {} \;
   sed -i 's|usocket.$(O)|usocket.$(O) compat.$(O)|' makefile
-  make LUAV=5.1 linux
+  MYCFLAGS=$CFLAGS MYLDFLAGS=$LDFLAGS make LUAV=5.1 linux
 
   msg2 'Building with lua 5.2'
   cd "$srcdir"/luasocket-52
@@ -41,7 +42,7 @@
 -e 's|include "luaconf.h|include "lua5.2/luaconf.h|g' \
 -e 's|include "lauxlib.h|include "lua5.2/lauxlib.h|g' \
 {} \;
-  make LUAV=5.2 linux
+  MYCFLAGS=$CFLAGS MYLDFLAGS=$LDFLAGS make LUAV=5.2 linux
 }
 
 package_lua-socket() {


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

2019-02-25 Thread Ike Devolder via arch-commits
Date: Monday, February 25, 2019 @ 08:38:18
  Author: idevolder
Revision: 435660

upgpkg: dpf-plugins 1.1-3

rebuild for projectm 3.x

Modified:
  dpf-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 08:33:39 UTC (rev 435659)
+++ PKGBUILD2019-02-25 08:38:18 UTC (rev 435660)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 pkgname=dpf-plugins
 pkgver=1.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Collection of DPF-based plugins"
 arch=('x86_64')
 url="https://github.com/DISTRHO/DPF-Plugins";


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

2019-02-25 Thread Ike Devolder via arch-commits
Date: Monday, February 25, 2019 @ 08:38:36
  Author: idevolder
Revision: 435661

archrelease: copy trunk to community-testing-x86_64

Added:
  dpf-plugins/repos/community-testing-x86_64/
  dpf-plugins/repos/community-testing-x86_64/PKGBUILD
(from rev 435660, dpf-plugins/trunk/PKGBUILD)

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

Copied: dpf-plugins/repos/community-testing-x86_64/PKGBUILD (from rev 435660, 
dpf-plugins/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-02-25 08:38:36 UTC (rev 435661)
@@ -0,0 +1,47 @@
+# Maintainer: David Runge 
+pkgname=dpf-plugins
+pkgver=1.1
+pkgrel=3
+pkgdesc="Collection of DPF-based plugins"
+arch=('x86_64')
+url="https://github.com/DISTRHO/DPF-Plugins";
+license=('custom:ISC' 'GPL2' 'GPL3' 'LGPL3' 'MIT')
+groups=('ladspa-plugins' 'lv2-plugins' 'pro-audio' 'vst-plugins')
+depends=('liblo' 'projectm')
+makedepends=('lv2')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/DISTRHO/${pkgname}/archive/v${pkgver}.tar.gz";)
+sha512sums=('b624693ed5d20018352506f159c15188f32a6c2d2fd3996055efa2606ccbb02a8a8116713efe6480c2686bb8e1d318c40c4c5217d101c0d897a90d623845feee')
+
+prepare() {
+  mv -v "DPF-Plugins-${pkgver}" "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  make BUILD_VST=true \
+   BUILD_DSSI=true \
+   BUILD_LV2=true \
+   BUILD_JACK=true
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" \
+   PREFIX=/usr \
+   install
+  # docs
+  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}/"
+  # licenses
+  install -vDm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -vDm 644 dpf/LICENSE \
+"${pkgdir}/usr/share/licenses/${pkgname}/dpf/LICENSE"
+  install -vDm 644 plugins/Kars/LICENSE \
+"${pkgdir}/usr/share/licenses/${pkgname}/Kars/LICENSE"
+  install -vDm 644 plugins/AmplitudeImposer/LICENSE \
+"${pkgdir}/usr/share/licenses/${pkgname}/AmplitudeImposer/LICENSE"
+  install -vDm 644 plugins/CycleShifter/LICENSE \
+"${pkgdir}/usr/share/licenses/${pkgname}/CycleShifter/LICENSE"
+  install -vDm 644 plugins/SoulForce/LICENSE \
+"${pkgdir}/usr/share/licenses/${pkgname}/SoulForce/LICENSE"
+}


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

2019-02-25 Thread Levente Polyak via arch-commits
Date: Monday, February 25, 2019 @ 08:41:44
  Author: anthraxx
Revision: 346787

upgpkg: linux-hardened 4.20.12.a-1

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

---+
 PKGBUILD  |   10 +-
 config.x86_64 |2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 00:15:08 UTC (rev 346786)
+++ PKGBUILD2019-02-25 08:41:44 UTC (rev 346787)
@@ -4,8 +4,8 @@
 # Contributor: Thomas Baechler 
 
 pkgbase=linux-hardened
-_pkgver=4.20.11
-_hardenedver=b
+_pkgver=4.20.12
+_hardenedver=a
 _srcname=linux-${_pkgver}
 pkgver=${_pkgver}.${_hardenedver}
 pkgrel=1
@@ -23,11 +23,11 @@
 linux.preset   # standard config files for mkinitcpio ramdisk
 )
 replaces=('linux-grsec')
-sha256sums=('dcd95c41f45c8ee90e249887f4aa8657b9a4c5d0fcef69ba17e75b5304d7411f'
+sha256sums=('1cf544308195250805e0731c716691bea4c1ed29e03e6f9ae5be6dc16785a504'
 'SKIP'
-'690ec64e669933e1b02036ded2ef069733c426d18f998f1c9b908a9f0220903a'
+'5506a0d9997dd9e3c8d19f51793954c0b03c4bceb9e4f103c28959a84fb482cc'
 'SKIP'
-'ab6551cf1cc64057704e1a772414225b0733b1d4ebbd4bb28c012a83c6b299c8'
+'aa21cfae6ebe152175ebfc174af4bf46ba250a1c514e2c8fc585818584135ef3'
 'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21'
 'c043f3033bb781e2688794a59f6d1f7ed49ef9b13eb77ff9a425df33a244a636'
 'ad6344badc91ad0630caacde83f7f9b97276f80d26a20619a87952be65492c65')

Modified: config.x86_64
===
--- config.x86_64   2019-02-25 00:15:08 UTC (rev 346786)
+++ config.x86_64   2019-02-25 08:41:44 UTC (rev 346787)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 4.20.11 Kernel Configuration
+# Linux/x86 4.20.12 Kernel Configuration
 #
 
 #


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

2019-02-25 Thread Levente Polyak via arch-commits
Date: Monday, February 25, 2019 @ 08:41:55
  Author: anthraxx
Revision: 346788

archrelease: copy trunk to extra-x86_64

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

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

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


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

2019-02-25 Thread Ike Devolder via arch-commits
Date: Monday, February 25, 2019 @ 08:54:35
  Author: idevolder
Revision: 435662

upgpkg: qmmp 1.3.1-1

Modified:
  qmmp/trunk/PKGBUILD
  qmmp/trunk/qmmp.changelog

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 08:38:36 UTC (rev 435661)
+++ PKGBUILD2019-02-25 08:54:35 UTC (rev 435662)
@@ -1,7 +1,7 @@
 # Maintainer: Jaroslav Lichtblau 
 
 pkgname=qmmp
-pkgver=1.3.0
+pkgver=1.3.1
 pkgrel=1
 pkgdesc="Qt5 based audio-player"
 arch=('x86_64')
@@ -30,7 +30,7 @@
 'ffmpeg' 'libsamplerate' 'wavpack')
 changelog=$pkgname.changelog
 source=(http://qmmp.ylsoftware.com/files/$pkgname-$pkgver.tar.bz2)
-sha256sums=('4da9884b598ac7157a353178eb022f3d56017df3096b3c367b9ae8e8b5dd2cfe')
+sha256sums=('1cd2dd430a12e987720d30832e9ead8220ce9fcc9b871d45bed0e4bbe25fbeb6')
 
 build() {
   cd "${srcdir}"/$pkgname-$pkgver

Modified: qmmp.changelog
===
--- qmmp.changelog  2019-02-25 08:38:36 UTC (rev 435661)
+++ qmmp.changelog  2019-02-25 08:54:35 UTC (rev 435662)
@@ -1,3 +1,6 @@
+2019-02-25 Ike Devolder 
+   * qmmp 1.3.1-1 triggered by rebuild for projectm 3.x
+
 2019-02-12 Jaroslav Lichtblau 
* qmmp 1.3.0-1
 


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

2019-02-25 Thread Ike Devolder via arch-commits
Date: Monday, February 25, 2019 @ 08:54:51
  Author: idevolder
Revision: 435663

archrelease: copy trunk to community-testing-x86_64

Added:
  qmmp/repos/community-testing-x86_64/
  qmmp/repos/community-testing-x86_64/PKGBUILD
(from rev 435662, qmmp/trunk/PKGBUILD)
  qmmp/repos/community-testing-x86_64/qmmp.changelog
(from rev 435662, qmmp/trunk/qmmp.changelog)

+
 PKGBUILD   |   48 ++
 qmmp.changelog |  262 +++
 2 files changed, 310 insertions(+)

Copied: qmmp/repos/community-testing-x86_64/PKGBUILD (from rev 435662, 
qmmp/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-02-25 08:54:51 UTC (rev 435663)
@@ -0,0 +1,48 @@
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=qmmp
+pkgver=1.3.1
+pkgrel=1
+pkgdesc="Qt5 based audio-player"
+arch=('x86_64')
+url="http://qmmp.ylsoftware.com/";
+license=('GPL')
+depends=('alsa-lib' 'curl' 'desktop-file-utils' 'hicolor-icon-theme' 'libmad'
+ 'libvorbis' 'libogg' 'libxkbcommon-x11' 'taglib' 'xdg-utils' 
'qt5-x11extras')
+makedepends=('cmake' 'flac' 'jack' 'libmpcdec' 'pulseaudio' 'ffmpeg' 
'libcdio-paranoia'
+ 'libcddb' 'libmms' 'libsamplerate' 'libmodplug' 'libsndfile' 
'wavpack'
+ 'projectm' 'mesa' 'faad2' 'libgme' 'libsidplayfp' 'opusfile' 
'wildmidi' 'qt5-tools')
+optdepends=('flac: native FLAC support'
+'jack: JACK sound output'
+'libmpcdec: Musepack support'
+'pulseaudio: PulseAudio output'
+'libcdio-paranoia: Compact Disc input and control support'
+'libcddb: CDDB server support'
+'libmms: MMS stream protocol support'
+'libmodplug: MOD playing library'
+'libsndfile: sampled sound support'
+'projectm: visual efects'
+'faad2: ADTS AAC support'
+'libgme: support for chiptunes from various platforms'
+'libsidplayfp: C64 music support'
+'opusfile: Opus support'
+'wildmidi: MIDI support'
+'ffmpeg' 'libsamplerate' 'wavpack')
+changelog=$pkgname.changelog
+source=(http://qmmp.ylsoftware.com/files/$pkgname-$pkgver.tar.bz2)
+sha256sums=('1cd2dd430a12e987720d30832e9ead8220ce9fcc9b871d45bed0e4bbe25fbeb6')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  cmake . -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_INSTALL_LIBDIR=lib \
+  -DUSE_HAL:BOOL=FALSE
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}

Copied: qmmp/repos/community-testing-x86_64/qmmp.changelog (from rev 435662, 
qmmp/trunk/qmmp.changelog)
===
--- community-testing-x86_64/qmmp.changelog (rev 0)
+++ community-testing-x86_64/qmmp.changelog 2019-02-25 08:54:51 UTC (rev 
435663)
@@ -0,0 +1,262 @@
+2019-02-25 Ike Devolder 
+   * qmmp 1.3.1-1 triggered by rebuild for projectm 3.x
+
+2019-02-12 Jaroslav Lichtblau 
+   * qmmp 1.3.0-1
+
+2019-01-10 Jaroslav Lichtblau 
+   * qmmp 1.2.6-1
+
+2018-12-25 Jaroslav Lichtblau 
+   * qmmp 1.2.5-1
+
+2018-09-29 Jaroslav Lichtblau 
+   * qmmp 1.2.4-1
+
+2018-07-29 Jaroslav Lichtblau 
+   * qmmp 1.2.3-1
+
+2018-06-14 Jaroslav Lichtblau 
+   * qmmp 1.2.2-1
+
+2017-11-26 Jaroslav Lichtblau 
+   * qmmp 1.2.0-1
+
+2017-11-05 Jaroslav Lichtblau 
+   * qmmp 1.1.12-1
+
+2017-08-16 Jaroslav Lichtblau 
+   * qmmp 1.1.10-1
+
+2017-06-04 Jaroslav Lichtblau 
+   * qmmp 1.1.9-1
+
+2017-03-24 Jaroslav Lichtblau 
+   * qmmp 1.1.8-1
+
+2017-02-06 Jaroslav Lichtblau 
+   * qmmp 1.1.7-1
+
+2017-01-12 Jaroslav Lichtblau 
+   * qmmp 1.1.6-1
+
+2016-11-09 Jaroslav Lichtblau 
+   * qmmp 1.1.5-1
+
+2016-10-04 Jaroslav Lichtblau 
+   * qmmp 1.1.4-1
+
+2016-08-26 Jaroslav Lichtblau 
+   * qmmp 1.1.3-1
+
+2016-07-25 Jaroslav Lichtblau 
+   * qmmp 1.1.2-1
+
+2016-07-05 Jaroslav Lichtblau 
+   * qmmp 1.1.1-2 ffmpeg 3.1 rebuild
+
+2016-07-05 Jaroslav Lichtblau 
+   * qmmp 1.1.1-1
+
+2016-07-03 Jaroslav Lichtblau 
+   * qmmp 1.1.0-2 ffmpeg 3.1 rebuild
+
+2016-06-21 Jaroslav Lichtblau 
+   * qmmp 1.1.0-1
+
+2016-06-01 Jaroslav Lichtblau 
+   * qmmp 1.0.10-1
+
+2016-05-02 Jaroslav Lichtblau 
+   * qmmp 1.0.9-1
+
+2016-04-30 Jaroslav Lichtblau 
+   * qmmp 1.0.7-2 pacman hooks rebuild
+
+2016-04-06 Jaroslav Lichtblau 
+   * qmmp 1.0.7-1
+
+2016-02-16 Jaroslav Lichtblau 
+   * qmmp 1.0.6-2 ffmpeg 3.0 rebuild
+
+2016-01-27 Jaroslav Lichtblau 
+   * qmmp 1.0.6-1
+
+2016-01-02 Jaroslav Lichtblau 
+   * qmmp 1.0.5-1
+
+2015-12-21 Jaroslav Lichtblau 
+   * qmmp 1.0.4-1
+
+2015-12-19 Jaroslav Lichtblau 
+   * qmmp 1.0.3-1
+
+2015-11-14 Jaroslav Lichtblau 
+   * qmmp 1.0.2-1
+
+2015-10-21 Jaro

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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 09:30:24
  Author: felixonmars
Revision: 435664

upgpkg: python-hypothesis 4.7.4-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 08:54:51 UTC (rev 435663)
+++ PKGBUILD2019-02-25 09:30:24 UTC (rev 435664)
@@ -2,7 +2,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=4.7.3
+pkgver=4.7.4
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -17,7 +17,7 @@
   'python2-dpcontracts' 'python-pytest-xdist' 
'python2-pytest-xdist'
   'python-lark-parser' 'python2-lark-parser')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz";)
-sha512sums=('7e29436485f32f2a0775e0e00873e3bfe8d9e96212c9c6aaad2a79572838f34368f93fb8f4c18862fab0b485c7cdfd04c2cb6fd670bbf5421c4ffddd2705cb97')
+sha512sums=('a5ffd1fb56b5458ee1a0d3c8206ef696ba8cd69bb6c4974819dc983dd3c3e65657ad57af3b37b15a9065b63afec3a78ce22f8bab9b0fff36f83c75f13a50bb91')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 09:31:00
  Author: felixonmars
Revision: 435665

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-25 09:30:24 UTC (rev 435664)
+++ PKGBUILD2019-02-25 09:31:00 UTC (rev 435665)
@@ -1,80 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-hypothesis
-pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=4.7.3
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org";
-makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
- 'python-coverage' 'python2-coverage' 'python2-enum34')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
-  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
-  'python-flaky' 'python2-flaky' 'python-django' 'python2-django' 
'python-mock'
-  'python2-mock' 'python-pandas' 'python2-pandas' 
'python-dpcontracts'
-  'python2-dpcontracts' 'python-pytest-xdist' 
'python2-pytest-xdist'
-  'python-lark-parser' 'python2-lark-parser')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz";)
-sha512sums=('7e29436485f32f2a0775e0e00873e3bfe8d9e96212c9c6aaad2a79572838f34368f93fb8f4c18862fab0b485c7cdfd04c2cb6fd670bbf5421c4ffddd2705cb97')
-
-prepare() {
-  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
-
-  cp -a hypothesis-$pkgver{,-py2}
-
-  rm -r hypothesis-$pkgver/hypothesis-python/tests/py2
-  rm -r hypothesis-$pkgver-py2/hypothesis-python/tests/py3
-
-  export LC_CTYPE=en_US.UTF-8
-}
-
-build() {
-  cd "$srcdir"/hypothesis-$pkgver/hypothesis-python
-  python setup.py build
-
-  cd "$srcdir"/hypothesis-$pkgver-py2/hypothesis-python
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/hypothesis-$pkgver/hypothesis-python
-  mv tests/django ../
-  python setup.py pytest
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m tests.django.manage test 
tests.django
-
-  cd "$srcdir"/hypothesis-$pkgver-py2/hypothesis-python
-  mv tests/django ../
-  # https://github.com/python/typing/issues/612
-  python2 setup.py pytest || warning "Tests failed"
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m tests.django.manage test 
tests.django
-}
-
-package_python-hypothesis() {
-  depends=('python-attrs' 'python-coverage')
-  optdepends=('python-pytz: for datetime and django module'
-  'python-faker: for fakefactory and django module'
-  'python-django: for django module'
-  'python-numpy: for numpy module'
-  'python-pytest: for pytest module'
-  'python-lark-parser: for lark module')
-
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-hypothesis() {
-  depends=('python2-attrs' 'python2-coverage' 'python2-enum34')
-  optdepends=('python2-pytz: for datetime and django module'
-  'python2-faker: for fakefactory and django module'
-  'python2-django: for django module'
-  'python2-numpy: for numpy module'
-  'python2-pytest: for pytest module'
-  'python2-lark-parser: for lark module')
-
-  cd hypothesis-$pkgver-py2/hypothesis-python
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 435664, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-25 09:31:00 UTC (rev 435665)
@@ -0,0 +1,80 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=4.7.4
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org";
+makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
+ 'python-coverage' 'python2-coverage' 'python2-enum34')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
+  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
+  'python-flaky' 'python2-flaky' 'python-django' 'python2-django' 
'python-mock'
+  'python2-mock' 'python-pandas' 'python2-pandas' 
'python-dpcontracts'
+

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

2019-02-25 Thread Chih-Hsuan Yen via arch-commits
Date: Monday, February 25, 2019 @ 09:35:47
  Author: yan12125
Revision: 435667

archrelease: copy trunk to community-testing-x86_64

Added:
  deepin-qt5integration/repos/community-testing-x86_64/
  deepin-qt5integration/repos/community-testing-x86_64/PKGBUILD
(from rev 435666, deepin-qt5integration/trunk/PKGBUILD)

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

Copied: deepin-qt5integration/repos/community-testing-x86_64/PKGBUILD (from rev 
435666, deepin-qt5integration/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-02-25 09:35:47 UTC (rev 435667)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-qt5integration
+pkgver=0.3.7.2
+pkgrel=3
+pkgdesc='Qt platform theme integration plugins for DDE'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/qt5integration";
+license=('GPL3')
+depends=('dtkwidget' 'libqtxdg' 'qt5-styleplugins' 'deepin-qt5dxcb-plugin')
+makedepends=('xcb-util-renderutil' 'deepin-file-manager')
+replaces=('qt5dxcb-plugin')
+conflicts=('qt5dxcb-plugin')
+groups=('deepin')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/qt5integration/archive/$pkgver.tar.gz";)
+sha512sums=('29fa3ae3fb999e8acd91201f4a2a9fe497a2a0630f0ee49aa1e60d8c0dd9e9ebf3028f7785fe09232571804f7ebe4a6da660e3fc0a4646c618e94d12e9bc9b9d')
+
+prepare() {
+  cd qt5integration-$pkgver
+  sed -i 's|qt5xdgiconloader/2.0.0|qt5xdgiconloader/3.2.0|' 
platformthemeplugin/main.cpp
+}
+
+build() {
+  cd qt5integration-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd qt5integration-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}


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

2019-02-25 Thread Chih-Hsuan Yen via arch-commits
Date: Monday, February 25, 2019 @ 09:35:15
  Author: yan12125
Revision: 435666

Rebuild against libqtxdg 3.3.1

Modified:
  deepin-qt5integration/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 09:31:00 UTC (rev 435665)
+++ PKGBUILD2019-02-25 09:35:15 UTC (rev 435666)
@@ -2,7 +2,7 @@
 
 pkgname=deepin-qt5integration
 pkgver=0.3.7.2
-pkgrel=2
+pkgrel=3
 pkgdesc='Qt platform theme integration plugins for DDE'
 arch=('x86_64')
 url="https://github.com/linuxdeepin/qt5integration";


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

2019-02-25 Thread Antonio Rojas via arch-commits
Date: Monday, February 25, 2019 @ 10:27:54
  Author: arojas
Revision: 346789

Update to 0.8.7

Modified:
  libssh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 08:41:55 UTC (rev 346788)
+++ PKGBUILD2019-02-25 10:27:54 UTC (rev 346789)
@@ -6,7 +6,7 @@
 
 pkgbase=libssh
 pkgname=(libssh libssh-docs)
-pkgver=0.8.6
+pkgver=0.8.7
 pkgrel=1
 pkgdesc="Library for accessing ssh client services through C libraries"
 url="https://www.libssh.org/";
@@ -15,7 +15,7 @@
 depends=(zlib openssl)
 makedepends=(cmake cmocka doxygen python)
 
source=(https://www.libssh.org/files/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.asc})
-sha256sums=('1046b95632a07fc00b1ea70ee683072d0c8a23f544f4535440b727812002fd01'
+sha256sums=('43304ca22f0ba0b654e14b574a39816bc70212fdea5858a6637cc26cade3d592'
 'SKIP')
 validpgpkeys=('8DFF53E18F2ABC8D8F3C92237EE0FC4DCC014E3D') # Andreas Schneider 

 


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

2019-02-25 Thread Antonio Rojas via arch-commits
Date: Monday, February 25, 2019 @ 10:28:25
  Author: arojas
Revision: 346790

archrelease: copy trunk to extra-x86_64

Added:
  libssh/repos/extra-x86_64/PKGBUILD
(from rev 346789, libssh/trunk/PKGBUILD)
Deleted:
  libssh/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-25 10:27:54 UTC (rev 346789)
+++ PKGBUILD2019-02-25 10:28:25 UTC (rev 346790)
@@ -1,59 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Tom Gundersen 
-# Contributor: Andrea Scarpino 
-# Contributor: ice-man 
-# Contributor: sergeantspoon 
-
-pkgbase=libssh
-pkgname=(libssh libssh-docs)
-pkgver=0.8.6
-pkgrel=1
-pkgdesc="Library for accessing ssh client services through C libraries"
-url="http://www.libssh.org/";
-license=(LGPL)
-arch=(x86_64)
-depends=(zlib openssl)
-makedepends=(cmake cmocka doxygen python)
-source=(https://www.libssh.org/files/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.asc})
-sha256sums=('1046b95632a07fc00b1ea70ee683072d0c8a23f544f4535440b727812002fd01'
-'SKIP')
-validpgpkeys=('8DFF53E18F2ABC8D8F3C92237EE0FC4DCC014E3D') # Andreas Schneider 

-
-prepare() {
-  # disable the test. It is confused by our clean container setup.
-  # 'extra-x86-build' uses user 'nobody' that has a record in /etc/passwd file
-  # but $HOME envvar is set to '/build'. The test expects that $HOME 
corresponds to passwd file.
-  sed 's/cmocka_unit_test(torture_path_expand_tilde_unix),//' -i 
libssh-${pkgver}/tests/unittests/torture_misc.c
-
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_GSSAPI=OFF \
--DUNIT_TESTING=ON
-  make
-  make docs
-}
-
-check() {
-  cd build
-  make test
-}
-
-package_libssh() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}
-
-package_libssh-docs() {
-  pkgdesc="Documentation for libssh"
-  depends=()
-
-  mkdir -p "$pkgdir"/usr/share/doc/libssh
-  cp -r build/doc/html "$pkgdir"/usr/share/doc/libssh
-#  cp -r build/doc/man "$pkgdir"/usr/share
-#  rm "$pkgdir"/usr/share/man/man3/{bug,deprecated}.*
-}

Copied: libssh/repos/extra-x86_64/PKGBUILD (from rev 346789, 
libssh/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-25 10:28:25 UTC (rev 346790)
@@ -0,0 +1,59 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Tom Gundersen 
+# Contributor: Andrea Scarpino 
+# Contributor: ice-man 
+# Contributor: sergeantspoon 
+
+pkgbase=libssh
+pkgname=(libssh libssh-docs)
+pkgver=0.8.7
+pkgrel=1
+pkgdesc="Library for accessing ssh client services through C libraries"
+url="https://www.libssh.org/";
+license=(LGPL)
+arch=(x86_64)
+depends=(zlib openssl)
+makedepends=(cmake cmocka doxygen python)
+source=(https://www.libssh.org/files/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.asc})
+sha256sums=('43304ca22f0ba0b654e14b574a39816bc70212fdea5858a6637cc26cade3d592'
+'SKIP')
+validpgpkeys=('8DFF53E18F2ABC8D8F3C92237EE0FC4DCC014E3D') # Andreas Schneider 

+
+prepare() {
+  # disable the test. It is confused by our clean container setup.
+  # 'extra-x86-build' uses user 'nobody' that has a record in /etc/passwd file
+  # but $HOME envvar is set to '/build'. The test expects that $HOME 
corresponds to passwd file.
+  sed 's/cmocka_unit_test(torture_path_expand_tilde_unix),//' -i 
libssh-${pkgver}/tests/unittests/torture_misc.c
+
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_GSSAPI=OFF \
+-DUNIT_TESTING=ON
+  make
+  make docs
+}
+
+check() {
+  cd build
+  make test
+}
+
+package_libssh() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+
+package_libssh-docs() {
+  pkgdesc="Documentation for libssh"
+  depends=()
+
+  mkdir -p "$pkgdir"/usr/share/doc/libssh
+  cp -r build/doc/html "$pkgdir"/usr/share/doc/libssh
+#  cp -r build/doc/man "$pkgdir"/usr/share
+#  rm "$pkgdir"/usr/share/man/man3/{bug,deprecated}.*
+}


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

2019-02-25 Thread Alexander Rødseth via arch-commits
Date: Monday, February 25, 2019 @ 10:36:24
  Author: arodseth
Revision: 435669

archrelease: copy trunk to community-x86_64

Added:
  gmpc/repos/community-x86_64/PKGBUILD
(from rev 435668, gmpc/trunk/PKGBUILD)
Deleted:
  gmpc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-25 10:36:16 UTC (rev 435668)
+++ PKGBUILD2019-02-25 10:36:24 UTC (rev 435669)
@@ -1,33 +0,0 @@
-# Maintainer: Alexander F Rødseth 
-# Contributor: Andrea Scarpino 
-# Contributor: Tobias Kieslich 
-
-pkgname=gmpc
-pkgver=11.8.16
-pkgrel=5
-pkgdesc='MPD client'
-arch=('x86_64')
-url='http://gmpclient.org/home'
-license=('GPL')
-depends=('gtk2' 'libmpd' 'libsoup' 'sqlite' 'xdg-utils')
-makedepends=('gob2' 'intltool' 'vala')
-source=("http://download.sarine.nl/Programs/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.gz";)
-sha256sums=('a69414f35396846733632ca9619921d7acda537ffd6d49bd84b444945cb76b2c')
-
-prepare() {
-  sed -i 's/GNOME;AudioVideo;/GTK;AudioVideo;Player;/' \
-"$pkgname-$pkgver/data/gmpc.desktop.in"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure --prefix=/usr --disable-unique
-  make CFLAGS+='-lm'
-}
-
-package() {
-  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gmpc/repos/community-x86_64/PKGBUILD (from rev 435668, 
gmpc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-25 10:36:24 UTC (rev 435669)
@@ -0,0 +1,33 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Andrea Scarpino 
+# Contributor: Tobias Kieslich 
+
+pkgname=gmpc
+pkgver=11.8.16
+pkgrel=6
+pkgdesc='MPD client'
+arch=(x86_64)
+url='https://gmpclient.org/home'
+license=(GPL)
+depends=(gtk2 libmpd libsoup sqlite xdg-utils)
+makedepends=(gob2 intltool vala)
+source=("http://download.sarine.nl/Programs/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.gz";)
+sha256sums=('a69414f35396846733632ca9619921d7acda537ffd6d49bd84b444945cb76b2c')
+
+prepare() {
+  sed -i 's/GNOME;AudioVideo;/GTK;AudioVideo;Player;/' \
+"$pkgname-$pkgver/data/gmpc.desktop.in"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr --disable-unique
+  make CFLAGS+='-lm'
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+}
+
+# vim: ts=2 sw=2 et:


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

2019-02-25 Thread Alexander Rødseth via arch-commits
Date: Monday, February 25, 2019 @ 10:36:16
  Author: arodseth
Revision: 435668

upgpkg: gmpc 11.8.16-6

Modified:
  gmpc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 09:35:47 UTC (rev 435667)
+++ PKGBUILD2019-02-25 10:36:16 UTC (rev 435668)
@@ -1,16 +1,16 @@
-# Maintainer: Alexander F Rødseth 
+# Maintainer: Alexander F. Rødseth 
 # Contributor: Andrea Scarpino 
 # Contributor: Tobias Kieslich 
 
 pkgname=gmpc
 pkgver=11.8.16
-pkgrel=5
+pkgrel=6
 pkgdesc='MPD client'
-arch=('x86_64')
-url='http://gmpclient.org/home'
-license=('GPL')
-depends=('gtk2' 'libmpd' 'libsoup' 'sqlite' 'xdg-utils')
-makedepends=('gob2' 'intltool' 'vala')
+arch=(x86_64)
+url='https://gmpclient.org/home'
+license=(GPL)
+depends=(gtk2 libmpd libsoup sqlite xdg-utils)
+makedepends=(gob2 intltool vala)
 
source=("http://download.sarine.nl/Programs/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.gz";)
 sha256sums=('a69414f35396846733632ca9619921d7acda537ffd6d49bd84b444945cb76b2c')
 
@@ -30,4 +30,4 @@
   make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
 }
 
-# vim:set ts=2 sw=2 et:
+# vim: ts=2 sw=2 et:


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 10:45:09
  Author: felixonmars
Revision: 435671

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-patience/repos/community-staging-x86_64/PKGBUILD (from rev 
435670, haskell-patience/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-25 10:45:09 UTC (rev 435671)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=patience
+pkgname=haskell-patience
+pkgver=0.2.1.1
+pkgrel=1
+pkgdesc="Patience diff and longest increasing subsequence"
+url="https://hackage.haskell.org/package/${_hkgname}";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('a28a03464c888b71734441f570d7db8fbf0c12c876f2dbf406c8726593b42950625c7f77484c097f409816647c397aa650538c2295d38e7d94146da2b81063ae')
+
+build() {
+cd $_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 $_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-patience/trunk (PKGBUILD)

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 10:44:52
  Author: felixonmars
Revision: 435670

upgpkg: haskell-patience 0.2.1.1-1

rebuild with patience 0.2.1.1

Modified:
  haskell-patience/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 10:36:24 UTC (rev 435669)
+++ PKGBUILD2019-02-25 10:44:52 UTC (rev 435670)
@@ -3,7 +3,7 @@
 
 _hkgname=patience
 pkgname=haskell-patience
-pkgver=0.2.1.0
+pkgver=0.2.1.1
 pkgrel=1
 pkgdesc="Patience diff and longest increasing subsequence"
 url="https://hackage.haskell.org/package/${_hkgname}";
@@ -12,7 +12,7 @@
 depends=('ghc-libs')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
-sha512sums=('a6c9459facaa593afe020ffbd7dfe9cc8e3bb6281c8a654bed87bb4557972323b3ff237b90e4b632ae6fc6db7239b8477584ad960288b627685eb290335dbc96')
+sha512sums=('a28a03464c888b71734441f570d7db8fbf0c12c876f2dbf406c8726593b42950625c7f77484c097f409816647c397aa650538c2295d38e7d94146da2b81063ae')
 
 build() {
 cd $_hkgname-$pkgver


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 10:46:00
  Author: felixonmars
Revision: 435672

upgpkg: haskell-chell 0.5-2

rebuild with patience 0.2.1.1

Modified:
  haskell-chell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 10:45:09 UTC (rev 435671)
+++ PKGBUILD2019-02-25 10:46:00 UTC (rev 435672)
@@ -3,7 +3,7 @@
 _hkgname=chell
 pkgname=haskell-chell
 pkgver=0.5
-pkgrel=1
+pkgrel=2
 pkgdesc="A simple and intuitive library for automated testing"
 url="https://github.com/typeclasses/chell";
 license=('MIT')


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 10:46:15
  Author: felixonmars
Revision: 435673

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-chell/repos/community-staging-x86_64/PKGBUILD (from rev 435672, 
haskell-chell/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-25 10:46:15 UTC (rev 435673)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+
+_hkgname=chell
+pkgname=haskell-chell
+pkgver=0.5
+pkgrel=2
+pkgdesc="A simple and intuitive library for automated testing"
+url="https://github.com/typeclasses/chell";
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-options' 
'haskell-patience' 'haskell-random')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('386e8da002b34f0c6aecfd43a2150539dfd70ee6a64e284ff659d6efb9bd900b68d65b0815b087289b2784a9db418ae7d1cfaf6f57ca44399c79887ed9faa364')
+
+build() {
+cd $_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 \
+-fcolor-output
+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 $_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.txt" 
"${pkgdir}/usr/share/licenses/${pkgname}/license.txt"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/license.txt"
+}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 10:46:47
  Author: felixonmars
Revision: 435674

upgpkg: haskell-chell-quickcheck 0.2.5.2-2

rebuild with patience 0.2.1.1

Modified:
  haskell-chell-quickcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 10:46:15 UTC (rev 435673)
+++ PKGBUILD2019-02-25 10:46:47 UTC (rev 435674)
@@ -3,7 +3,7 @@
 _hkgname=chell-quickcheck
 pkgname=haskell-chell-quickcheck
 pkgver=0.2.5.2
-pkgrel=1
+pkgrel=2
 pkgdesc="QuickCheck support for the Chell testing library"
 url="https://github.com/typeclasses/chell";
 license=('MIT')


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

2019-02-25 Thread Alexander Rødseth via arch-commits
Date: Monday, February 25, 2019 @ 10:47:11
  Author: arodseth
Revision: 435676

upgpkg: libantlr3c 3.5.2-3

Modified:
  libantlr3c/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 10:47:03 UTC (rev 435675)
+++ PKGBUILD2019-02-25 10:47:11 UTC (rev 435676)
@@ -1,4 +1,4 @@
-# Maintainer: Alexander F Rødseth 
+# Maintainer: Alexander F. Rødseth 
 # Contributor: Sergej Pupykin 
 # Contributor: Mathieu Clabaut 
 # Contributor: Artyom Smirnov 
@@ -7,12 +7,12 @@
 
 pkgname=libantlr3c
 pkgver=3.5.2
-pkgrel=2
-pkgdesc='C runtime for the ANTLR parsing library'
-url='http://www.antlr.org/'
-arch=('x86_64')
-license=('BSD')
-makedepends=('git')
+pkgrel=3
+pkgdesc='ANother Tool for Language Recognition'
+url='https://www.antlr3.org'
+arch=(x86_64)
+license=(BSD)
+makedepends=(git)
 source=("git+https://github.com/antlr/antlr3.git#tag=$pkgver";)
 md5sums=('SKIP')
 


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 10:47:03
  Author: felixonmars
Revision: 435675

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-chell-quickcheck/repos/community-staging-x86_64/
  haskell-chell-quickcheck/repos/community-staging-x86_64/PKGBUILD
(from rev 435674, haskell-chell-quickcheck/trunk/PKGBUILD)

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

Copied: haskell-chell-quickcheck/repos/community-staging-x86_64/PKGBUILD (from 
rev 435674, haskell-chell-quickcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-25 10:47:03 UTC (rev 435675)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+
+_hkgname=chell-quickcheck
+pkgname=haskell-chell-quickcheck
+pkgver=0.2.5.2
+pkgrel=2
+pkgdesc="QuickCheck support for the Chell testing library"
+url="https://github.com/typeclasses/chell";
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-chell' 'haskell-quickcheck' 'haskell-random')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('d17b8aeb19adc08debdfccaeceabb480fcbf82ba47c5e805f326f26be8c3266b741c52ab1ab13042b13aaa865ae355812ff067f3a46ff8186cef232143fa8efa')
+
+build() {
+cd $_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 $_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.txt" 
"${pkgdir}/usr/share/licenses/${pkgname}/license.txt"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/license.txt"
+}


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

2019-02-25 Thread Alexander Rødseth via arch-commits
Date: Monday, February 25, 2019 @ 10:47:18
  Author: arodseth
Revision: 435677

archrelease: copy trunk to community-x86_64

Added:
  libantlr3c/repos/community-x86_64/PKGBUILD
(from rev 435676, libantlr3c/trunk/PKGBUILD)
Deleted:
  libantlr3c/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-25 10:47:11 UTC (rev 435676)
+++ PKGBUILD2019-02-25 10:47:18 UTC (rev 435677)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Sergej Pupykin 
-# Contributor: Mathieu Clabaut 
-# Contributor: Artyom Smirnov 
-# Contributor: Alexis Robert 
-# Contributor: Daniel Nagy 
-
-pkgname=libantlr3c
-pkgver=3.5.2
-pkgrel=2
-pkgdesc='C runtime for the ANTLR parsing library'
-url='http://www.antlr.org/'
-arch=('x86_64')
-license=('BSD')
-makedepends=('git')
-source=("git+https://github.com/antlr/antlr3.git#tag=$pkgver";)
-md5sums=('SKIP')
-
-prepare() {
-  cd antlr3/runtime/C
-  cat < antlr3config.h.in
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-EOF
-  aclocal
-  libtoolize
-  automake --add-missing
-  autoconf
-}
-
-build() {
-  cd antlr3/runtime/C
-
-  ./configure --prefix=/usr --enable-64bit --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd antlr3/runtime/C
-
-  DESTDIR="$pkgdir" make install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-# getver: antlr3.org
-# vim: ts=2 sw=2 et:

Copied: libantlr3c/repos/community-x86_64/PKGBUILD (from rev 435676, 
libantlr3c/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-25 10:47:18 UTC (rev 435677)
@@ -0,0 +1,52 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Sergej Pupykin 
+# Contributor: Mathieu Clabaut 
+# Contributor: Artyom Smirnov 
+# Contributor: Alexis Robert 
+# Contributor: Daniel Nagy 
+
+pkgname=libantlr3c
+pkgver=3.5.2
+pkgrel=3
+pkgdesc='ANother Tool for Language Recognition'
+url='https://www.antlr3.org'
+arch=(x86_64)
+license=(BSD)
+makedepends=(git)
+source=("git+https://github.com/antlr/antlr3.git#tag=$pkgver";)
+md5sums=('SKIP')
+
+prepare() {
+  cd antlr3/runtime/C
+  cat < antlr3config.h.in
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+EOF
+  aclocal
+  libtoolize
+  automake --add-missing
+  autoconf
+}
+
+build() {
+  cd antlr3/runtime/C
+
+  ./configure --prefix=/usr --enable-64bit --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd antlr3/runtime/C
+
+  DESTDIR="$pkgdir" make install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+# getver: antlr3.org
+# vim: ts=2 sw=2 et:


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 10:49:29
  Author: felixonmars
Revision: 435678

upgpkg: haskell-snap-server 1.1.1.1-3

rebuild with patience 0.2.1.1

Modified:
  haskell-snap-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 10:47:18 UTC (rev 435677)
+++ PKGBUILD2019-02-25 10:49:29 UTC (rev 435678)
@@ -3,7 +3,7 @@
 _hkgname=snap-server
 pkgname=haskell-snap-server
 pkgver=1.1.1.1
-pkgrel=2
+pkgrel=3
 pkgdesc="A web server for the Snap Framework"
 url="https://github.com/snapframework/snap-server";
 license=('BSD')


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 10:49:45
  Author: felixonmars
Revision: 435679

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-snap-server/repos/community-staging-x86_64/
  haskell-snap-server/repos/community-staging-x86_64/PKGBUILD
(from rev 435678, haskell-snap-server/trunk/PKGBUILD)

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

Copied: haskell-snap-server/repos/community-staging-x86_64/PKGBUILD (from rev 
435678, haskell-snap-server/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-25 10:49:45 UTC (rev 435679)
@@ -0,0 +1,60 @@
+# Maintainer: Felix Yan 
+
+_hkgname=snap-server
+pkgname=haskell-snap-server
+pkgver=1.1.1.1
+pkgrel=3
+pkgdesc="A web server for the Snap Framework"
+url="https://github.com/snapframework/snap-server";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-blaze-builder' 
'haskell-case-insensitive'
+ 'haskell-clock' 'haskell-io-streams' 'haskell-io-streams-haproxy' 
'haskell-lifted-base'
+ 'haskell-network' 'haskell-old-locale' 'haskell-snap-core' 
'haskell-unix-compat'
+ 'haskell-vector')
+makedepends=('ghc')
+checkdepends=('haskell-base16-bytestring' 'haskell-monad-control' 
'haskell-random'
+  'haskell-threads' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-http-streams'
+  'haskell-http-common' 'haskell-parallel' 'haskell-test-framework'
+  'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('ed39f3ab22880b4651173c5942b10d17d8b3ecf734bd3e3c1724e8fe90303a41fb69543bf4e4868416bf596db34584c17065d960d07f0247364aca8a6f20bab1')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e '/bytestring-builder/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--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 $_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-system-filepath/trunk (PKGBUILD)

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 10:50:27
  Author: felixonmars
Revision: 435680

upgpkg: haskell-system-filepath 0.4.14-17

rebuild with patience 0.2.1.1

Modified:
  haskell-system-filepath/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 10:49:45 UTC (rev 435679)
+++ PKGBUILD2019-02-25 10:50:27 UTC (rev 435680)
@@ -4,7 +4,7 @@
 _hkgname=system-filepath
 pkgname=haskell-system-filepath
 pkgver=0.4.14
-pkgrel=16
+pkgrel=17
 pkgdesc="High-level, byte-based file and directory path manipulations"
 url="https://hackage.haskell.org/package/${_hkgname}";
 license=("BSD")


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 10:50:43
  Author: felixonmars
Revision: 435681

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-system-filepath/repos/community-staging-x86_64/
  haskell-system-filepath/repos/community-staging-x86_64/PKGBUILD
(from rev 435680, haskell-system-filepath/trunk/PKGBUILD)

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

Copied: haskell-system-filepath/repos/community-staging-x86_64/PKGBUILD (from 
rev 435680, haskell-system-filepath/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-25 10:50:43 UTC (rev 435681)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=system-filepath
+pkgname=haskell-system-filepath
+pkgver=0.4.14
+pkgrel=17
+pkgdesc="High-level, byte-based file and directory path manipulations"
+url="https://hackage.haskell.org/package/${_hkgname}";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-chell' 'haskell-chell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('d858b077516ecb76e27d032fd123aad154afea87fab93f148aa8a0007587c1fb04d87217cf0b51a80e9a81ab20357dcc5e345899e1c2b6513900da1e6768')
+
+build() {
+cd $_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 $_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.txt" 
"${pkgdir}/usr/share/licenses/${pkgname}/license.txt"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/license.txt"
+}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 10:51:31
  Author: felixonmars
Revision: 435683

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-system-fileio/repos/community-staging-x86_64/
  haskell-system-fileio/repos/community-staging-x86_64/PKGBUILD
(from rev 435682, haskell-system-fileio/trunk/PKGBUILD)

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

Copied: haskell-system-fileio/repos/community-staging-x86_64/PKGBUILD (from rev 
435682, haskell-system-fileio/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-25 10:51:31 UTC (rev 435683)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=system-fileio
+pkgname=haskell-system-fileio
+pkgver=0.3.16.4
+pkgrel=12
+pkgdesc="Consistent filesystem interaction across GHC versions"
+url="https://github.com/fpco/haskell-filesystem";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-system-filepath")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('68530cd11b25aa8a05967d3f51091ea57a5be138b672bd5373918163281c55a91b60dea03bdd22bcd4ba1d6bb26e2ed14660ce55bbdaf2737d2dd2b7e608d698')
+
+build() {
+cd $_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 $_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.txt" 
"${pkgdir}/usr/share/licenses/${pkgname}/license.txt"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/license.txt"
+}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 10:51:16
  Author: felixonmars
Revision: 435682

upgpkg: haskell-system-fileio 0.3.16.4-12

rebuild with patience 0.2.1.1

Modified:
  haskell-system-fileio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 10:50:43 UTC (rev 435681)
+++ PKGBUILD2019-02-25 10:51:16 UTC (rev 435682)
@@ -4,7 +4,7 @@
 _hkgname=system-fileio
 pkgname=haskell-system-fileio
 pkgver=0.3.16.4
-pkgrel=11
+pkgrel=12
 pkgdesc="Consistent filesystem interaction across GHC versions"
 url="https://github.com/fpco/haskell-filesystem";
 license=("MIT")


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 10:52:23
  Author: felixonmars
Revision: 435684

upgpkg: haskell-http-streams 0.8.6.1-96

rebuild with patience 0.2.1.1

Modified:
  haskell-http-streams/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 10:51:31 UTC (rev 435683)
+++ PKGBUILD2019-02-25 10:52:23 UTC (rev 435684)
@@ -3,7 +3,7 @@
 _hkgname=http-streams
 pkgname=haskell-http-streams
 pkgver=0.8.6.1
-pkgrel=95
+pkgrel=96
 pkgdesc="An HTTP client using io-streams"
 url="https://github.com/afcowie/http-streams";
 license=('BSD')


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 10:52:39
  Author: felixonmars
Revision: 435685

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-http-streams/repos/community-staging-x86_64/
  haskell-http-streams/repos/community-staging-x86_64/PKGBUILD
(from rev 435684, haskell-http-streams/trunk/PKGBUILD)

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

Copied: haskell-http-streams/repos/community-staging-x86_64/PKGBUILD (from rev 
435684, haskell-http-streams/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-25 10:52:39 UTC (rev 435685)
@@ -0,0 +1,59 @@
+# Maintainer: Felix Yan 
+
+_hkgname=http-streams
+pkgname=haskell-http-streams
+pkgver=0.8.6.1
+pkgrel=96
+pkgdesc="An HTTP client using io-streams"
+url="https://github.com/afcowie/http-streams";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-blaze-builder'
+ 'haskell-case-insensitive' 'haskell-io-streams' 'haskell-hsopenssl'
+ 'haskell-openssl-streams' 'haskell-unordered-containers' 
'haskell-aeson'
+ 'haskell-http-common' 'haskell-network' 'haskell-network-uri')
+makedepends=('ghc')
+checkdepends=('haskell-hunit' 'haskell-aeson-pretty' 'haskell-hspec'
+ 'haskell-hspec-expectations' 'haskell-snap-core' 
'haskell-snap-server'
+ 'haskell-system-fileio' 'haskell-system-filepath')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('76f6aa750974cdca834dfa7de79ebf22faa1cd0a40426d4df19f24b0699ce2d86a0b1f512846da4daf52f210607ed823690bab3fd1bb7ebe117f705a92d4a3b4')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/<.*1.1/<2/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--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 $_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 "LICENCE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENCE"
+}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 10:54:10
  Author: felixonmars
Revision: 435686

upgpkg: haskell-shelly 1.8.1-41

rebuild with patience 0.2.1.1

Modified:
  haskell-shelly/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 10:52:39 UTC (rev 435685)
+++ PKGBUILD2019-02-25 10:54:10 UTC (rev 435686)
@@ -4,7 +4,7 @@
 _hkgname=shelly
 pkgname=haskell-shelly
 pkgver=1.8.1
-pkgrel=40
+pkgrel=41
 pkgdesc="Shell-like (systems) programming in Haskell"
 url="https://github.com/yesodweb/Shelly.hs";
 license=("BSD")


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 10:54:26
  Author: felixonmars
Revision: 435687

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-shelly/repos/community-staging-x86_64/PKGBUILD (from rev 
435686, haskell-shelly/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-25 10:54:26 UTC (rev 435687)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=shelly
+pkgname=haskell-shelly
+pkgver=1.8.1
+pkgrel=41
+pkgdesc="Shell-like (systems) programming in Haskell"
+url="https://github.com/yesodweb/Shelly.hs";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-unix-compat' 'haskell-system-filepath'
+ 'haskell-system-fileio' 'haskell-monad-control' 'haskell-lifted-base'
+ 'haskell-lifted-async' 'haskell-exceptions' 
'haskell-enclosed-exceptions'
+ 'haskell-async' 'haskell-transformers-base')
+makedepends=('ghc' 'haskell-hunit' 'haskell-hspec' 'haskell-hspec-contrib')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('75a6939ed0c395950738d569d2452b55acc373ead0361e97651218ec464816fffa1af5808b7af4d2ea7cd4339c028a4a1bee02f0bfd88fecb73a6888c083d651')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-lifted -f-build-examples
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 10:56:09
  Author: felixonmars
Revision: 435688

upgpkg: c2hs 0.28.6-16

rebuild with patience 0.2.1.1

Modified:
  c2hs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 10:54:26 UTC (rev 435687)
+++ PKGBUILD2019-02-25 10:56:09 UTC (rev 435688)
@@ -3,7 +3,7 @@
 
 pkgname=c2hs
 pkgver=0.28.6
-pkgrel=15
+pkgrel=16
 pkgdesc="C->Haskell FFI tool that gives some cross-language type safety"
 url="https://github.com/haskell/c2hs";
 license=("GPL2")


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 10:56:25
  Author: felixonmars
Revision: 435689

archrelease: copy trunk to community-staging-x86_64

Added:
  c2hs/repos/community-staging-x86_64/
  c2hs/repos/community-staging-x86_64/PKGBUILD
(from rev 435688, c2hs/trunk/PKGBUILD)

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

Copied: c2hs/repos/community-staging-x86_64/PKGBUILD (from rev 435688, 
c2hs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-25 10:56:25 UTC (rev 435689)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=c2hs
+pkgver=0.28.6
+pkgrel=16
+pkgdesc="C->Haskell FFI tool that gives some cross-language type safety"
+url="https://github.com/haskell/c2hs";
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-dlist" "haskell-language-c")
+makedepends=('ghc' 'haskell-test-framework' 'haskell-test-framework-hunit' 
'haskell-hunit'
+ 'haskell-shelly')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('848693ddf787244cc0f100f533030889a1efcef283f06ef609574d9cd0005679fab373172a949408ce6d4b9c97d15a56b0ec11fe39b466ad3f84aa527d2ab1c9')
+
+prepare() {
+sed -i 's/cmd "ghc"/cmd "ghc" "-dynamic"/' c2hs-$pkgver/tests/test-*.hs
+sed -i 's/HC=ghc/HC="ghc -dynamic"/' c2hs-$pkgver/tests/system/Makefile
+sed -i 's/"ghc", \["-/"ghc", ["-dynamic", "-/' c2hs-$pkgver/tests/test-*.hs
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-executable-dynamic --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" 
--enable-tests \
+-f-regression -fbase3
+runhaskell Setup build
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:06:13
  Author: felixonmars
Revision: 435691

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:05:58
  Author: felixonmars
Revision: 435690

upgpkg: darcs 2.14.2-16

rebuild with patience 0.2.1.1

Modified:
  darcs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 10:56:25 UTC (rev 435689)
+++ PKGBUILD2019-02-25 11:05:58 UTC (rev 435690)
@@ -3,7 +3,7 @@
 
 pkgname=darcs
 pkgver=2.14.2
-pkgrel=15
+pkgrel=16
 pkgdesc="A distributed, interactive, smart revision control system"
 url="http://darcs.net";
 license=("GPL2")


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:06:53
  Author: felixonmars
Revision: 435692

upgpkg: haskell-fsnotify 0.3.0.1-31

rebuild with patience 0.2.1.1

Modified:
  haskell-fsnotify/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 11:06:13 UTC (rev 435691)
+++ PKGBUILD2019-02-25 11:06:53 UTC (rev 435692)
@@ -4,7 +4,7 @@
 _hkgname=fsnotify
 pkgname=haskell-fsnotify
 pkgver=0.3.0.1
-pkgrel=30
+pkgrel=31
 pkgdesc="Cross platform library for file change notification."
 url="https://github.com/haskell-fswatch/hfsnotify";
 license=("BSD")


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:07:09
  Author: felixonmars
Revision: 435693

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-fsnotify/repos/community-staging-x86_64/PKGBUILD (from rev 
435692, haskell-fsnotify/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-25 11:07:09 UTC (rev 435693)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=fsnotify
+pkgname=haskell-fsnotify
+pkgver=0.3.0.1
+pkgrel=31
+pkgdesc="Cross platform library for file change notification."
+url="https://github.com/haskell-fswatch/hfsnotify";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-async" "haskell-hinotify" 'haskell-shelly'
+ "haskell-unix-compat")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('d5c96a54c1b4788e1d50f259d11d4e2d6eb7224552b50cb359a1f4cdcc2a9b7270f9b5ccdfe9738a163b54ab7ab5a0114de9cabc56660a7324cdfc4b16179e1a')
+
+build() {
+cd $_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 $_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-gnuidn/trunk (PKGBUILD)

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:07:42
  Author: felixonmars
Revision: 435694

upgpkg: haskell-gnuidn 0.2.2-91

rebuild with patience 0.2.1.1

Modified:
  haskell-gnuidn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 11:07:09 UTC (rev 435693)
+++ PKGBUILD2019-02-25 11:07:42 UTC (rev 435694)
@@ -4,7 +4,7 @@
 _hkgname=gnuidn
 pkgname=haskell-gnuidn
 pkgver=0.2.2
-pkgrel=90
+pkgrel=91
 pkgdesc="Bindings for GNU IDN"
 url="https://john-millikin.com/software/haskell-gnuidn/";
 license=("GPL3")


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:07:58
  Author: felixonmars
Revision: 435695

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-gnuidn/repos/community-staging-x86_64/PKGBUILD (from rev 
435694, haskell-gnuidn/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-25 11:07:58 UTC (rev 435695)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=gnuidn
+pkgname=haskell-gnuidn
+pkgver=0.2.2
+pkgrel=91
+pkgdesc="Bindings for GNU IDN"
+url="https://john-millikin.com/software/haskell-gnuidn/";
+license=("GPL3")
+arch=('x86_64')
+depends=('ghc-libs' "libidn")
+makedepends=('c2hs' 'ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('4ac894ba4cc4fb9fd90ccea55fda342cd0dadc863a091d31287b19117ec1e545a23b7fb69db02bbb8ee9eb84856acb51f3ab0d7778f4ca3da290dfcbc7ef27ac')
+
+build() {
+cd $_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 $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/license.txt"
+}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:10:01
  Author: felixonmars
Revision: 435697

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
435696, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-25 11:10:01 UTC (rev 435697)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.12.5.1
+pkgrel=14
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptohash'
+ 'haskell-data-default' 'haskell-file-embed' 'haskell-fsnotify' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-lrucache' 'haskell-network-uri'
+ 'haskell-optparse-applicative' 'pandoc' 'pandoc-citeproc' 
'haskell-random'
+ 'haskell-regex-tdfa' 'haskell-resourcet' 'haskell-scientific' 
'haskell-tagsoup'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-wai' 'haskell-wai-app-static' 'haskell-warp' 'haskell-yaml')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('bc8cc9944229c691fbec6b7e6ea52e8a65bd8cc2093d42bd577e30ded1767370b439d8dc694e9842b300f7c884f851cac6a2a9de2817a961c779b83fb0ee1718')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir="$pkgname" 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver -fusepandoc
+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
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || warning 
"https://github.com/jaspervdj/hakyll/issues/682";
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:09:42
  Author: felixonmars
Revision: 435696

upgpkg: haskell-hakyll 4.12.5.1-14

rebuild with patience 0.2.1.1

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 11:07:58 UTC (rev 435695)
+++ PKGBUILD2019-02-25 11:09:42 UTC (rev 435696)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.12.5.1
-pkgrel=13
+pkgrel=14
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll";
 license=("BSD")


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:10:43
  Author: felixonmars
Revision: 435698

upgpkg: haskell-network-protocol-xmpp 0.4.8-105

rebuild with patience 0.2.1.1

Modified:
  haskell-network-protocol-xmpp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 11:10:01 UTC (rev 435697)
+++ PKGBUILD2019-02-25 11:10:43 UTC (rev 435698)
@@ -4,7 +4,7 @@
 _hkgname=network-protocol-xmpp
 pkgname=haskell-network-protocol-xmpp
 pkgver=0.4.8
-pkgrel=104
+pkgrel=105
 pkgdesc="Client library for the XMPP protocol."
 url="https://john-millikin.com/software/haskell-xmpp/";
 license=("GPL3")


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:10:58
  Author: felixonmars
Revision: 435699

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-network-protocol-xmpp/repos/community-staging-x86_64/
  haskell-network-protocol-xmpp/repos/community-staging-x86_64/PKGBUILD
(from rev 435698, haskell-network-protocol-xmpp/trunk/PKGBUILD)

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

Copied: haskell-network-protocol-xmpp/repos/community-staging-x86_64/PKGBUILD 
(from rev 435698, haskell-network-protocol-xmpp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-25 11:10:58 UTC (rev 435699)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=network-protocol-xmpp
+pkgname=haskell-network-protocol-xmpp
+pkgver=0.4.8
+pkgrel=105
+pkgdesc="Client library for the XMPP protocol."
+url="https://john-millikin.com/software/haskell-xmpp/";
+license=("GPL3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-gnuidn" "haskell-gnutls" "haskell-gsasl" 
"haskell-libxml-sax"
+ "haskell-monads-tf" "haskell-network" "haskell-xml-types")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('029cbb1a0ea6691fd886b326eee7a24e8300bbece1f0c0f564b43b0e344f4107ca980d97342271cab0b9c1333fc445ac10f7dfae41dd2b6e6ea995bfb810311e')
+
+build() {
+cd $_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 $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/license.txt"
+}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:12:12
  Author: felixonmars
Revision: 435700

upgpkg: haskell-turtle 1.5.13-10

rebuild with patience 0.2.1.1

Modified:
  haskell-turtle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 11:10:58 UTC (rev 435699)
+++ PKGBUILD2019-02-25 11:12:12 UTC (rev 435700)
@@ -4,7 +4,7 @@
 _hkgname=turtle
 pkgname=haskell-turtle
 pkgver=1.5.13
-pkgrel=9
+pkgrel=10
 pkgdesc="Shell programming, Haskell-style"
 url="https://github.com/Gabriel439/Haskell-Turtle-Library";
 license=('BSD')


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:12:28
  Author: felixonmars
Revision: 435701

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-turtle/repos/community-staging-x86_64/PKGBUILD (from rev 
435700, haskell-turtle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-25 11:12:28 UTC (rev 435701)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=turtle
+pkgname=haskell-turtle
+pkgver=1.5.13
+pkgrel=10
+pkgdesc="Shell programming, Haskell-style"
+url="https://github.com/Gabriel439/Haskell-Turtle-Library";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-wl-pprint' 'haskell-async' 'haskell-clock' 
'haskell-exceptions'
+ 'haskell-foldl' 'haskell-hostname' 'haskell-managed' 
'haskell-optparse-applicative'
+ 'haskell-optional-args' 'haskell-system-fileio' 
'haskell-system-filepath'
+ 'haskell-temporary' 'haskell-unix-compat')
+makedepends=('ghc' 'haskell-doctest')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('7ff0568dd12193e2131a29eaf4f4f95fa2fa573af51694d2e01dec29ede09fd2231ee2944588d27f37fe0728dc89edffcbfc3d39c50becde2d585eaf4ed7d2d4')
+
+prepare() {
+sed -i 's/]/, "-dynamic"]/' $_hkgname-$pkgver/test/Main.hs
+sed -i '/semigroups/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:14:30
  Author: felixonmars
Revision: 435702

upgpkg: haskell-wreq 0.5.3.2-13

rebuild with patience 0.2.1.1

Modified:
  haskell-wreq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 11:12:28 UTC (rev 435701)
+++ PKGBUILD2019-02-25 11:14:30 UTC (rev 435702)
@@ -3,7 +3,7 @@
 _hkgname=wreq
 pkgname=haskell-wreq
 pkgver=0.5.3.2
-pkgrel=12
+pkgrel=13
 pkgdesc="An easy-to-use HTTP client library."
 url="https://github.com/bos/wreq";
 license=('BSD')


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:14:47
  Author: felixonmars
Revision: 435703

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-wreq/repos/community-staging-x86_64/PKGBUILD (from rev 435702, 
haskell-wreq/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-25 11:14:47 UTC (rev 435703)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=wreq
+pkgname=haskell-wreq
+pkgver=0.5.3.2
+pkgrel=13
+pkgdesc="An easy-to-use HTTP client library."
+url="https://github.com/bos/wreq";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-authenticate-oauth'
+ 'haskell-base16-bytestring' 'haskell-case-insensitive' 
'haskell-cryptonite'
+ 'haskell-exceptions' 'haskell-hashable' 'haskell-http-client' 
'haskell-http-client-tls'
+ 'haskell-http-types' 'haskell-lens' 'haskell-lens-aeson' 
'haskell-memory'
+ 'haskell-mime-types' 'haskell-psqueues' 'haskell-time-locale-compat'
+ 'haskell-unordered-containers' 'haskell-aeson-pretty' 
'haskell-base64-bytestring'
+ 'haskell-snap-core' 'haskell-snap-server' 'haskell-unix-compat' 
'haskell-uuid')
+makedepends=('ghc' 'haskell-cabal-doctest' 'haskell-doctest' 'haskell-hunit' 
'haskell-quickcheck'
+ 'haskell-network-info' 'haskell-temporary' 
'haskell-test-framework'
+ 'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2' 'haskell-vector')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('5a2c62b973758cb8ce2bf20504e328090896fa25e7ee1f77b472d7cf5156e08b6d85bf4341ff45e44db1724070fcf3c0f21037fa0a79211a1767024328f7c779')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fdoctest -f-aws -fhttpbin -f-developer
+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 || warning "Tests failed"
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE.md" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.md"
+}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:15:58
  Author: felixonmars
Revision: 435704

upgpkg: haskell-mustache 2.3.0-155

rebuild with patience 0.2.1.1

Modified:
  haskell-mustache/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 11:14:47 UTC (rev 435703)
+++ PKGBUILD2019-02-25 11:15:58 UTC (rev 435704)
@@ -3,7 +3,7 @@
 _hkgname=mustache
 pkgname=haskell-mustache
 pkgver=2.3.0
-pkgrel=154
+pkgrel=155
 pkgdesc="A mustache template parser library."
 url="https://github.com/JustusAdam/mustache";
 license=('BSD')


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:16:14
  Author: felixonmars
Revision: 435705

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-mustache/repos/community-staging-x86_64/PKGBUILD (from rev 
435704, haskell-mustache/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-25 11:16:14 UTC (rev 435705)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+
+_hkgname=mustache
+pkgname=haskell-mustache
+pkgver=2.3.0
+pkgrel=155
+pkgdesc="A mustache template parser library."
+url="https://github.com/JustusAdam/mustache";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-either' 
'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-scientific' 'haskell-th-lift' 'haskell-cmdargs' 
'haskell-yaml')
+makedepends=('ghc' 'haskell-hspec' 'haskell-base-unicode-symbols' 
'haskell-wreq' 'haskell-zlib'
+ 'haskell-tar' 'haskell-lens' 'haskell-temporary')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('bdefb406a44bb3648ca7129128767be04c780d967757385770111a0da8f91ff7165213038e8abc7799b28b66eb7d2f47383346837fad7e6327dad7aa714971f6')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:17:11
  Author: felixonmars
Revision: 435706

upgpkg: hledger-ui 1.13.1-6

rebuild with patience 0.2.1.1

Modified:
  hledger-ui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 11:16:14 UTC (rev 435705)
+++ PKGBUILD2019-02-25 11:17:11 UTC (rev 435706)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-ui
 pkgver=1.13.1
-pkgrel=5
+pkgrel=6
 pkgdesc="Curses-style user interface for the hledger accounting tool"
 url="http://hledger.org";
 license=("GPL")


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:17:27
  Author: felixonmars
Revision: 435707

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger-ui/repos/community-staging-x86_64/
  hledger-ui/repos/community-staging-x86_64/PKGBUILD
(from rev 435706, hledger-ui/trunk/PKGBUILD)

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

Copied: hledger-ui/repos/community-staging-x86_64/PKGBUILD (from rev 435706, 
hledger-ui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-25 11:17:27 UTC (rev 435707)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-ui
+pkgver=1.13.1
+pkgrel=6
+pkgdesc="Curses-style user interface for the hledger accounting tool"
+url="http://hledger.org";
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-ansi-terminal' 
'haskell-async'
+ 'haskell-base-compat-batteries' 'haskell-cmdargs' 
'haskell-data-default' 'haskell-fsnotify'
+ 'haskell-microlens' 'haskell-microlens-platform' 'haskell-megaparsec' 
'haskell-pretty-show'
+ 'haskell-safe' 'haskell-split' 'haskell-text-zipper' 'haskell-vector' 
'haskell-brick'
+ 'haskell-vty')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('44f4c762747fc898d7fd817908153098d0fb217e9217440101d131fe2c5f24c3e080a128bb2321dba87b36739fbcc4ef9d571289537f5d737b8c7e19baa65a15')
+
+prepare() {
+# It does nothing
+sed -e '/mtl-compat/d' \
+-i ${pkgname}-${pkgver}/${pkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+-fthreaded
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:21:07
  Author: felixonmars
Revision: 435708

upgpkg: deepin-terminal 3.2.1.1-1

Modified:
  deepin-terminal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 11:17:27 UTC (rev 435707)
+++ PKGBUILD2019-02-25 11:21:07 UTC (rev 435708)
@@ -3,7 +3,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-terminal
-pkgver=3.2.1
+pkgver=3.2.1.1
 pkgrel=1
 pkgdesc='Default terminal emulation application for Deepin'
 arch=('x86_64')
@@ -15,7 +15,7 @@
 'zssh: for Remote Management support')
 groups=('deepin-extra')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-terminal/archive/$pkgver.tar.gz";)
-sha512sums=('75beb9e4b1a0eb26a4943f8d100362bc6c0d14cc1a3a2426c6407350e0c8e52c9f8e14f36642d98d8cef637bee057a71d6c62e38e9f3541c6a9f561370a82860')
+sha512sums=('8068c1aa7f84f8b34fad0fe0dd16c8d0bc74ae718b8a54f1ecbed11cd827317b18e70f232dd36461aa481aef37b2bbf300dd9713b17772748ed5f081b3f6b55e')
 
 prepare() {
   mkdir -p build


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:21:40
  Author: felixonmars
Revision: 435709

archrelease: copy trunk to community-x86_64

Added:
  deepin-terminal/repos/community-x86_64/PKGBUILD
(from rev 435708, deepin-terminal/trunk/PKGBUILD)
  deepin-terminal/repos/community-x86_64/remove-vendor.patch
(from rev 435708, deepin-terminal/trunk/remove-vendor.patch)
Deleted:
  deepin-terminal/repos/community-x86_64/PKGBUILD
  deepin-terminal/repos/community-x86_64/remove-vendor.patch

-+
 PKGBUILD|   78 
 remove-vendor.patch |  158 +-
 2 files changed, 118 insertions(+), 118 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-25 11:21:07 UTC (rev 435708)
+++ PKGBUILD2019-02-25 11:21:40 UTC (rev 435709)
@@ -1,39 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-terminal
-pkgver=3.2.1
-pkgrel=1
-pkgdesc='Default terminal emulation application for Deepin'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/deepin-terminal";
-license=('GPL3')
-depends=('vte3' 'libsecret' 'libgee' 'libwnck3' 'expect' 
'deepin-shortcut-viewer' 'deepin-menu')
-makedepends=('vala' 'cmake')
-optdepends=('deepin-manual: view the help manual'
-'zssh: for Remote Management support')
-groups=('deepin-extra')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-terminal/archive/$pkgver.tar.gz";)
-sha512sums=('75beb9e4b1a0eb26a4943f8d100362bc6c0d14cc1a3a2426c6407350e0c8e52c9f8e14f36642d98d8cef637bee057a71d6c62e38e9f3541c6a9f561370a82860')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DTEST_BUILD=OFF \
--DUSE_VENDOR_LIB=OFF \
--DVERSION=$pkgver \
-../deepin-terminal-$pkgver
-  make
-}
-
-package() {
-  make -C build DESTDIR="$pkgdir" install
-  ln -s deepin-terminal "$pkgdir"/usr/bin/x-terminal-emulator
-}

Copied: deepin-terminal/repos/community-x86_64/PKGBUILD (from rev 435708, 
deepin-terminal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-25 11:21:40 UTC (rev 435709)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-terminal
+pkgver=3.2.1.1
+pkgrel=1
+pkgdesc='Default terminal emulation application for Deepin'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-terminal";
+license=('GPL3')
+depends=('vte3' 'libsecret' 'libgee' 'libwnck3' 'expect' 
'deepin-shortcut-viewer' 'deepin-menu')
+makedepends=('vala' 'cmake')
+optdepends=('deepin-manual: view the help manual'
+'zssh: for Remote Management support')
+groups=('deepin-extra')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-terminal/archive/$pkgver.tar.gz";)
+sha512sums=('8068c1aa7f84f8b34fad0fe0dd16c8d0bc74ae718b8a54f1ecbed11cd827317b18e70f232dd36461aa481aef37b2bbf300dd9713b17772748ed5f081b3f6b55e')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DTEST_BUILD=OFF \
+-DUSE_VENDOR_LIB=OFF \
+-DVERSION=$pkgver \
+../deepin-terminal-$pkgver
+  make
+}
+
+package() {
+  make -C build DESTDIR="$pkgdir" install
+  ln -s deepin-terminal "$pkgdir"/usr/bin/x-terminal-emulator
+}

Deleted: remove-vendor.patch
===
--- remove-vendor.patch 2019-02-25 11:21:07 UTC (rev 435708)
+++ remove-vendor.patch 2019-02-25 11:21:40 UTC (rev 435709)
@@ -1,79 +0,0 @@
-From: Yanhao Mo 
-Date: Wed, 16 May 2018 13:16:20 +0800
-Subject: use system libs
-

- CMakeLists.txt | 25 +
- 1 file changed, 5 insertions(+), 20 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 9d57aca..47f83d7 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -24,6 +24,7 @@ pkg_check_modules(RSVG REQUIRED librsvg-2.0)
- pkg_check_modules(WNCK REQUIRED libwnck-3.0)
- pkg_check_modules(FONTCONFIG REQUIRED fontconfig)
- pkg_check_modules(GLIB REQUIRED glib-2.0)
-+pkg_check_modules(VTE REQUIRED vte-2.91)
- 
- OPTION(TEST_BUILD "Build with native testing" ON)
- 
-@@ -44,22 +45,6 @@ execute_process(
- )
- endif()
- 
--ExternalProject_Add(Vte-0.29
--  SOURCE_DIR ${CMAKE_SOURCE_DIR}/3rdparty/vte-0.50.1
--  CONFIGURE_COMMAND ./configure --enable-static
--  BUILD_COMMAND make
--  INSTALL_COMMAND ""
--  BUILD_IN_SOURCE 1
--  )
--
--ExternalProject_Add(zssh-1.5c
--  SOURCE_DIR ${CMAKE_SOURCE_DIR}/3rdparty/zssh-1.5c
--  CONFIGURE_COMMAND ./configure
--  BUILD_COMMAND make
--  INSTALL_COMMAND ""
--  BUILD_IN_SOURCE 1
--  )
--
- set(CFLAGS
-   ${GIO_CFLAGS}
-   ${GTK3_CFLAGS} ${GTK3_CFLAGS_OTHER}
-@@ -79,7 +64,7 @@ set(INCLU

[arch-commits] Commit in golang-deepin-lib/repos/community-any (PKGBUILD PKGBUILD)

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:23:14
  Author: felixonmars
Revision: 435711

archrelease: copy trunk to community-any

Added:
  golang-deepin-lib/repos/community-any/PKGBUILD
(from rev 435710, golang-deepin-lib/trunk/PKGBUILD)
Deleted:
  golang-deepin-lib/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-25 11:22:57 UTC (rev 435710)
+++ PKGBUILD2019-02-25 11:23:14 UTC (rev 435711)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=golang-deepin-lib
-pkgver=1.9.0
-_commit=22913e13bc9a61441e087df2642b297207190394
-pkgrel=1
-pkgdesc='A library containing many useful go routines for things such as glib, 
gettext, archive, graphic,etc.'
-arch=('any')
-url="https://github.com/linuxdeepin/go-lib";
-license=('GPL3')
-depends=('go-pie' 'libpulse' 'gdk-pixbuf2' 'mobile-broadband-provider-info' 
'libx11')
-replaces=('deepin-go-lib')
-conflicts=('deepin-go-lib')
-provides=('deepin-go-lib')
-source=("$pkgname-$_commit.tar.gz::https://github.com/linuxdeepin/go-lib/archive/$_commit.tar.gz";)
-sha512sums=('78453f036bd1e5654ca6fa6b1622943469bc2f238c800531d5c103b992a95887a8feaba74f6a770810ac93470bc848e09a7851fd532eb00448cebf0f6a38f829')
-
-check() {
-  export GOPATH="$srcdir/build:/usr/share/gocode"
-  mkdir -p "$srcdir"/build/src/pkg.deepin.io
-  cp -a "$srcdir"/go-lib-$_commit "$srcdir"/build/src/pkg.deepin.io/lib
-  cd "$srcdir"/build/src/pkg.deepin.io/lib
-  # TODO
-  # go test -v $(go list ./... | grep -v vendor)
-}
-
-package() {
-  mkdir -p "$pkgdir"/usr/share/gocode/src/pkg.deepin.io
-  cp -a "$srcdir"/go-lib-$_commit 
"$pkgdir"/usr/share/gocode/src/pkg.deepin.io/lib
-
-  rm -r "$pkgdir"/usr/share/gocode/src/pkg.deepin.io/lib/debian
-}

Copied: golang-deepin-lib/repos/community-any/PKGBUILD (from rev 435710, 
golang-deepin-lib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-25 11:23:14 UTC (rev 435711)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+
+pkgname=golang-deepin-lib
+pkgver=1.9.1
+pkgrel=1
+pkgdesc='A library containing many useful go routines for things such as glib, 
gettext, archive, graphic,etc.'
+arch=('any')
+url="https://github.com/linuxdeepin/go-lib";
+license=('GPL3')
+depends=('go-pie' 'libpulse' 'gdk-pixbuf2' 'mobile-broadband-provider-info' 
'libx11')
+replaces=('deepin-go-lib')
+conflicts=('deepin-go-lib')
+provides=('deepin-go-lib')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/go-lib/archive/$pkgver.tar.gz";)
+sha512sums=('0e28fbd95d0bbe23cc4199434bdb281d5864607c142f7a828e5eaef2055017bf96af8a48726ecbd54955ac4990004f6456315d0db989409f655c44e3dd8c6969')
+
+check() {
+  export GOPATH="$srcdir/build:/usr/share/gocode"
+  mkdir -p "$srcdir"/build/src/pkg.deepin.io
+  cp -a "$srcdir"/go-lib-$pkgver "$srcdir"/build/src/pkg.deepin.io/lib
+  cd "$srcdir"/build/src/pkg.deepin.io/lib
+  # TODO
+  # go test -v $(go list ./...)
+}
+
+package() {
+  mkdir -p "$pkgdir"/usr/share/gocode/src/pkg.deepin.io
+  cp -a "$srcdir"/go-lib-$pkgver 
"$pkgdir"/usr/share/gocode/src/pkg.deepin.io/lib
+
+  rm -r "$pkgdir"/usr/share/gocode/src/pkg.deepin.io/lib/debian
+}


[arch-commits] Commit in golang-deepin-lib/trunk (PKGBUILD)

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:22:57
  Author: felixonmars
Revision: 435710

upgpkg: golang-deepin-lib 1.9.1-1

Modified:
  golang-deepin-lib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 11:21:40 UTC (rev 435709)
+++ PKGBUILD2019-02-25 11:22:57 UTC (rev 435710)
@@ -1,8 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=golang-deepin-lib
-pkgver=1.9.0
-_commit=22913e13bc9a61441e087df2642b297207190394
+pkgver=1.9.1
 pkgrel=1
 pkgdesc='A library containing many useful go routines for things such as glib, 
gettext, archive, graphic,etc.'
 arch=('any')
@@ -12,13 +11,13 @@
 replaces=('deepin-go-lib')
 conflicts=('deepin-go-lib')
 provides=('deepin-go-lib')
-source=("$pkgname-$_commit.tar.gz::https://github.com/linuxdeepin/go-lib/archive/$_commit.tar.gz";)
-sha512sums=('78453f036bd1e5654ca6fa6b1622943469bc2f238c800531d5c103b992a95887a8feaba74f6a770810ac93470bc848e09a7851fd532eb00448cebf0f6a38f829')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/go-lib/archive/$pkgver.tar.gz";)
+sha512sums=('0e28fbd95d0bbe23cc4199434bdb281d5864607c142f7a828e5eaef2055017bf96af8a48726ecbd54955ac4990004f6456315d0db989409f655c44e3dd8c6969')
 
 check() {
   export GOPATH="$srcdir/build:/usr/share/gocode"
   mkdir -p "$srcdir"/build/src/pkg.deepin.io
-  cp -a "$srcdir"/go-lib-$_commit "$srcdir"/build/src/pkg.deepin.io/lib
+  cp -a "$srcdir"/go-lib-$pkgver "$srcdir"/build/src/pkg.deepin.io/lib
   cd "$srcdir"/build/src/pkg.deepin.io/lib
   # TODO
   # go test -v $(go list ./...)
@@ -26,7 +25,7 @@
 
 package() {
   mkdir -p "$pkgdir"/usr/share/gocode/src/pkg.deepin.io
-  cp -a "$srcdir"/go-lib-$_commit 
"$pkgdir"/usr/share/gocode/src/pkg.deepin.io/lib
+  cp -a "$srcdir"/go-lib-$pkgver 
"$pkgdir"/usr/share/gocode/src/pkg.deepin.io/lib
 
   rm -r "$pkgdir"/usr/share/gocode/src/pkg.deepin.io/lib/debian
 }


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:24:04
  Author: felixonmars
Revision: 435712

upgpkg: deepin-screenshot 4.1.8-1

Modified:
  deepin-screenshot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 11:23:14 UTC (rev 435711)
+++ PKGBUILD2019-02-25 11:24:04 UTC (rev 435712)
@@ -3,7 +3,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-screenshot
-pkgver=4.1.7
+pkgver=4.1.8
 pkgrel=1
 pkgdesc="Easy-to-use screenshot tool for linuxdeepin desktop environment"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'qt5-tools')
 groups=('deepin-extra')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-screenshot/archive/$pkgver.tar.gz";)
-sha512sums=('a945d8fe8871c4d759f5109cd262202362c1d5ad764af2481e64315f7cc036d8b67c7a461f4a5b5a7522c01e6b38027d2b1b60f7a27352e54defb1c9c8a92735')
+sha512sums=('7b64f0270b96a150251e20668dd52642554a1343b5b5362119488cb40ded786de1f7b95e5a21154186a7e619b17d8dfec95252c77f19ac344985a35df36329bc')
 
 build() {
   cd deepin-screenshot-$pkgver


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:24:21
  Author: felixonmars
Revision: 435713

archrelease: copy trunk to community-x86_64

Added:
  deepin-screenshot/repos/community-x86_64/PKGBUILD
(from rev 435712, deepin-screenshot/trunk/PKGBUILD)
Deleted:
  deepin-screenshot/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-25 11:24:04 UTC (rev 435712)
+++ PKGBUILD2019-02-25 11:24:21 UTC (rev 435713)
@@ -1,27 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-screenshot
-pkgver=4.1.7
-pkgrel=1
-pkgdesc="Easy-to-use screenshot tool for linuxdeepin desktop environment"
-arch=('x86_64')
-url="https://github.com/linuxdeepin/deepin-screenshot";
-license=('GPL3')
-depends=('deepin-qt5integration' 'dtkwm' 'deepin-turbo')
-makedepends=('cmake' 'qt5-tools')
-groups=('deepin-extra')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-screenshot/archive/$pkgver.tar.gz";)
-sha512sums=('a945d8fe8871c4d759f5109cd262202362c1d5ad764af2481e64315f7cc036d8b67c7a461f4a5b5a7522c01e6b38027d2b1b60f7a27352e54defb1c9c8a92735')
-
-build() {
-  cd deepin-screenshot-$pkgver
-  cmake . -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd deepin-screenshot-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: deepin-screenshot/repos/community-x86_64/PKGBUILD (from rev 435712, 
deepin-screenshot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-25 11:24:21 UTC (rev 435713)
@@ -0,0 +1,27 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-screenshot
+pkgver=4.1.8
+pkgrel=1
+pkgdesc="Easy-to-use screenshot tool for linuxdeepin desktop environment"
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-screenshot";
+license=('GPL3')
+depends=('deepin-qt5integration' 'dtkwm' 'deepin-turbo')
+makedepends=('cmake' 'qt5-tools')
+groups=('deepin-extra')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-screenshot/archive/$pkgver.tar.gz";)
+sha512sums=('7b64f0270b96a150251e20668dd52642554a1343b5b5362119488cb40ded786de1f7b95e5a21154186a7e619b17d8dfec95252c77f19ac344985a35df36329bc')
+
+build() {
+  cd deepin-screenshot-$pkgver
+  cmake . -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd deepin-screenshot-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:24:28
  Author: felixonmars
Revision: 435714

upgpkg: python-pluggy 0.9.0-1

Modified:
  python-pluggy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 11:24:21 UTC (rev 435713)
+++ PKGBUILD2019-02-25 11:24:28 UTC (rev 435714)
@@ -2,7 +2,7 @@
 
 pkgbase=python-pluggy
 pkgname=(python-pluggy python2-pluggy)
-pkgver=0.8.1
+pkgver=0.9.0
 pkgrel=1
 pkgdesc="Plugin and hook calling mechanisms for python"
 arch=('any')
@@ -11,7 +11,7 @@
 makedepends=('python-setuptools-scm' 'python2-setuptools-scm')
 checkdepends=('python-pytest-runner' 'python2-pytest-runner')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pluggy/archive/$pkgver.tar.gz";)
-sha512sums=('582ed10983f77aa21851998cd8808d14e026bb5e0fba129fbe8bc19000a864af66bb229cf1c3199833c5b5f6739276643f10ee5636922602f60f965715474b98')
+sha512sums=('e4adcd4de9758476a43c338baf7d13b0a1380739d7c6cc593537a3ec63a6491250adf0f33183e323f50695d9d0191a7d3378b1d36df44f9355625624ef1c4551')
 
 prepare() {
   cp -a pluggy-$pkgver{,-py2}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:24:45
  Author: felixonmars
Revision: 435715

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-25 11:24:28 UTC (rev 435714)
+++ PKGBUILD2019-02-25 11:24:45 UTC (rev 435715)
@@ -1,54 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-pluggy
-pkgname=(python-pluggy python2-pluggy)
-pkgver=0.8.1
-pkgrel=1
-pkgdesc="Plugin and hook calling mechanisms for python"
-arch=('any')
-url="https://www.pluggypayments.com/docs/python";
-license=('MIT')
-makedepends=('python-setuptools-scm' 'python2-setuptools-scm')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pluggy/archive/$pkgver.tar.gz";)
-sha512sums=('582ed10983f77aa21851998cd8808d14e026bb5e0fba129fbe8bc19000a864af66bb229cf1c3199833c5b5f6739276643f10ee5636922602f60f965715474b98')
-
-prepare() {
-  cp -a pluggy-$pkgver{,-py2}
-
-  export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-}
-
-build() {
-  cd "$srcdir"/pluggy-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/pluggy-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/pluggy-$pkgver
-  python setup.py pytest
-
-  cd "$srcdir"/pluggy-$pkgver-py2
-  python2 setup.py pytest
-}
-
-package_python-pluggy() {
-  depends=('python')
-
-  cd pluggy-$pkgver
-  python setup.py install -O1 --root "$pkgdir"
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-pluggy() {
-  depends=('python2')
-
-  cd pluggy-$pkgver-py2
-  python2 setup.py install -O1 --root "$pkgdir"
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-pluggy/repos/community-any/PKGBUILD (from rev 435714, 
python-pluggy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-25 11:24:45 UTC (rev 435715)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-pluggy
+pkgname=(python-pluggy python2-pluggy)
+pkgver=0.9.0
+pkgrel=1
+pkgdesc="Plugin and hook calling mechanisms for python"
+arch=('any')
+url="https://www.pluggypayments.com/docs/python";
+license=('MIT')
+makedepends=('python-setuptools-scm' 'python2-setuptools-scm')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pluggy/archive/$pkgver.tar.gz";)
+sha512sums=('e4adcd4de9758476a43c338baf7d13b0a1380739d7c6cc593537a3ec63a6491250adf0f33183e323f50695d9d0191a7d3378b1d36df44f9355625624ef1c4551')
+
+prepare() {
+  cp -a pluggy-$pkgver{,-py2}
+
+  export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+}
+
+build() {
+  cd "$srcdir"/pluggy-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/pluggy-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/pluggy-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/pluggy-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-pluggy() {
+  depends=('python')
+
+  cd pluggy-$pkgver
+  python setup.py install -O1 --root "$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pluggy() {
+  depends=('python2')
+
+  cd pluggy-$pkgver-py2
+  python2 setup.py install -O1 --root "$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:26:16
  Author: felixonmars
Revision: 435716

upgpkg: python-jmespath 0.9.4-1

Modified:
  python-jmespath/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 11:24:45 UTC (rev 435715)
+++ PKGBUILD2019-02-25 11:26:16 UTC (rev 435716)
@@ -5,8 +5,8 @@
 
 pkgbase=python-jmespath
 pkgname=(python-jmespath python2-jmespath)
-pkgver=0.9.3
-pkgrel=2
+pkgver=0.9.4
+pkgrel=1
 pkgdesc='A query language for JSON'
 arch=('any')
 url="https://github.com/jmespath/jmespath";
@@ -14,7 +14,7 @@
 makedepends=('python-setuptools' 'python2-setuptools')
 checkdepends=('python-nose' 'python2-nose' 'python-py' 'python2-py')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/jmespath/jmespath.py/archive/$pkgver.tar.gz";)
-sha512sums=('3ca646337e96d3defef45d89f48dbbaa2739a6a18a926b6cf37222bf6db8e6838d0a183fbfb5d4e31be02f9e0de495024b1dba8a69cec995a5285209486c870f')
+sha512sums=('38b8d27dbd13d5ab056e115f4e8048fd54d649955dfcb2c296fe14dc684cd729351618c06c5b9a4b4d27798cfec6c2b7b340f498e961475e6fb3c9640b4e51ae')
 
 prepare() {
   cp -a jmespath.py-$pkgver{,-py2}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:26:31
  Author: felixonmars
Revision: 435717

archrelease: copy trunk to community-testing-any

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

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

Copied: python-jmespath/repos/community-testing-any/PKGBUILD (from rev 435716, 
python-jmespath/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2019-02-25 11:26:31 UTC (rev 435717)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Chris Fordham  aka 
flaccid
+# Package Source: 
https://github.com/flaccid/archlinux-packages/blob/master/python-jmespath/PKGBUILD
+
+pkgbase=python-jmespath
+pkgname=(python-jmespath python2-jmespath)
+pkgver=0.9.4
+pkgrel=1
+pkgdesc='A query language for JSON'
+arch=('any')
+url="https://github.com/jmespath/jmespath";
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-nose' 'python2-nose' 'python-py' 'python2-py')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/jmespath/jmespath.py/archive/$pkgver.tar.gz";)
+sha512sums=('38b8d27dbd13d5ab056e115f4e8048fd54d649955dfcb2c296fe14dc684cd729351618c06c5b9a4b4d27798cfec6c2b7b340f498e961475e6fb3c9640b4e51ae')
+
+prepare() {
+  cp -a jmespath.py-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/jmespath.py-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/jmespath.py-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/jmespath.py-$pkgver
+  LC_CTYPE=en_US.utf8 nosetests3
+
+  cd "$srcdir"/jmespath.py-$pkgver-py2
+  LC_CTYPE=en_US.utf8 nosetests2
+}
+
+package_python-jmespath() {
+  depends=('python')
+
+  cd jmespath.py-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-jmespath() {
+  depends=('python2')
+
+  cd jmespath.py-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  mv "$pkgdir"/usr/bin/jp{,2}.py
+}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:27:24
  Author: felixonmars
Revision: 435719

archrelease: copy trunk to community-x86_64

Added:
  deepin-movie/repos/community-x86_64/PKGBUILD
(from rev 435718, deepin-movie/trunk/PKGBUILD)
Deleted:
  deepin-movie/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-25 11:27:07 UTC (rev 435718)
+++ PKGBUILD2019-02-25 11:27:24 UTC (rev 435719)
@@ -1,26 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=deepin-movie
-epoch=1
-pkgver=3.2.19
-pkgrel=1
-pkgdesc='Movie player based on QtAV'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/deepin-movie-reborn";
-license=('GPL3')
-depends=('deepin-qt5integration' 'mpv' 'ffmpegthumbnailer')
-makedepends=('cmake' 'qt5-tools')
-groups=('deepin-extra')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-movie-reborn/archive/$pkgver.tar.gz";)
-sha512sums=('09116e7026b672d01589014bc0ec1e61f98916b571908f585880370a18558ca3462377639362ab653bf2e5e2a6fab5756d07572edcdda878e601f608dcf3ed45')
-
-build() {
-  cd deepin-movie-reborn-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib 
-DCMAKE_BUILD_TYPE=Release .
-  make
-}
-
-package() {
-  cd deepin-movie-reborn-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: deepin-movie/repos/community-x86_64/PKGBUILD (from rev 435718, 
deepin-movie/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-25 11:27:24 UTC (rev 435719)
@@ -0,0 +1,26 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-movie
+epoch=1
+pkgver=3.2.20
+pkgrel=1
+pkgdesc='Movie player based on QtAV'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-movie-reborn";
+license=('GPL3')
+depends=('deepin-qt5integration' 'mpv' 'ffmpegthumbnailer')
+makedepends=('cmake' 'qt5-tools')
+groups=('deepin-extra')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-movie-reborn/archive/$pkgver.tar.gz";)
+sha512sums=('e178668a53a2261ab18b85d9eafc535560d967fe098d8c1bd8080b389cfde27b1bab4b480fb6ef7f69ce7595845680e45ec65c174fee90ae36d2e3f8427ce940')
+
+build() {
+  cd deepin-movie-reborn-$pkgver
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib 
-DCMAKE_BUILD_TYPE=Release .
+  make
+}
+
+package() {
+  cd deepin-movie-reborn-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:27:07
  Author: felixonmars
Revision: 435718

upgpkg: deepin-movie 1:3.2.20-1

Modified:
  deepin-movie/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 11:26:31 UTC (rev 435717)
+++ PKGBUILD2019-02-25 11:27:07 UTC (rev 435718)
@@ -2,7 +2,7 @@
 
 pkgname=deepin-movie
 epoch=1
-pkgver=3.2.19
+pkgver=3.2.20
 pkgrel=1
 pkgdesc='Movie player based on QtAV'
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('cmake' 'qt5-tools')
 groups=('deepin-extra')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-movie-reborn/archive/$pkgver.tar.gz";)
-sha512sums=('09116e7026b672d01589014bc0ec1e61f98916b571908f585880370a18558ca3462377639362ab653bf2e5e2a6fab5756d07572edcdda878e601f608dcf3ed45')
+sha512sums=('e178668a53a2261ab18b85d9eafc535560d967fe098d8c1bd8080b389cfde27b1bab4b480fb6ef7f69ce7595845680e45ec65c174fee90ae36d2e3f8427ce940')
 
 build() {
   cd deepin-movie-reborn-$pkgver


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:29:31
  Author: felixonmars
Revision: 435720

upgpkg: python-prance 0.14.1-1

Modified:
  python-prance/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 11:27:24 UTC (rev 435719)
+++ PKGBUILD2019-02-25 11:29:31 UTC (rev 435720)
@@ -3,7 +3,7 @@
 
 pkgbase=python-prance
 pkgname=(python-prance python2-prance)
-pkgver=0.14.0
+pkgver=0.14.1
 _openapi_commit=fbe62006211838a8bb7bf2433a1d15f1a5838a03
 pkgrel=1
 pkgdesc="Resolving Swagger/OpenAPI 2.0 and 3.0 Parser"
@@ -17,7 +17,7 @@
 checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-cov' 'python2-pytest-cov')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/jfinkhaeuser/prance/archive/v$pkgver.tar.gz";
 
"OpenAPI-Specification-$_openapi_commit.tar.gz::https://github.com/OAI/OpenAPI-Specification/archive/$_openapi_commit.tar.gz";)
-sha512sums=('a9ff1e5f4a2de491c242542eb2abeeb4e58bbba9c58292cca3ac98e619f864b425beefe79290f371f79e33248cf76613f0abf0f691201628986f6074ad5e7c98'
+sha512sums=('7ea82b1283ba63b6af48f7bb0de90a0a1e484b95e87e085d954a5f96af122bb38e76c6268992696c2a4798f7c876db145e5e1b7f74f2c1913fcd30aa2d56'
 
'd7957f1cdaa681b4c163e6e0b35ed6b808f469c3fdbba86a5e7221bb3c0c980415dca145e7f57bcebed75624562e89a893841d17c9e0ff82df4f0ff65ffaa2ae')
 
 prepare() {


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:29:48
  Author: felixonmars
Revision: 435721

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-25 11:29:31 UTC (rev 435720)
+++ PKGBUILD2019-02-25 11:29:48 UTC (rev 435721)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-prance
-pkgname=(python-prance python2-prance)
-pkgver=0.14.0
-_openapi_commit=fbe62006211838a8bb7bf2433a1d15f1a5838a03
-pkgrel=1
-pkgdesc="Resolving Swagger/OpenAPI 2.0 and 3.0 Parser"
-url="https://github.com/jfinkhaeuser/prance";
-license=('custom:MITNFA')
-arch=('any')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-chardet' 
'python2-chardet' 'python-yaml'
- 'python2-yaml' 'python-flex' 'python2-flex' 'python-click' 
'python2-click'
- 'python-requests' 'python2-requests' 'python-six' 'python2-six'
- 'python-semver' 'python2-semver')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-cov' 'python2-pytest-cov')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/jfinkhaeuser/prance/archive/v$pkgver.tar.gz";
-
"OpenAPI-Specification-$_openapi_commit.tar.gz::https://github.com/OAI/OpenAPI-Specification/archive/$_openapi_commit.tar.gz";)
-sha512sums=('a9ff1e5f4a2de491c242542eb2abeeb4e58bbba9c58292cca3ac98e619f864b425beefe79290f371f79e33248cf76613f0abf0f691201628986f6074ad5e7c98'
-
'd7957f1cdaa681b4c163e6e0b35ed6b808f469c3fdbba86a5e7221bb3c0c980415dca145e7f57bcebed75624562e89a893841d17c9e0ff82df4f0ff65ffaa2ae')
-
-prepare() {
-  rmdir prance-$pkgver/tests/OpenAPI-Specification
-  ln -s "$srcdir"/OpenAPI-Specification-$_openapi_commit 
prance-$pkgver/tests/OpenAPI-Specification
-
-  cp -a prance-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/prance-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/prance-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/prance-$pkgver
-  pytest
-
-  cd "$srcdir"/prance-$pkgver-py2
-  pytest2
-}
-
-package_python-prance() {
-  depends=('python-chardet' 'python-yaml' 'python-flex' 'python-click' 
'python-requests'
-   'python-six' 'python-semver')
-
-  cd prance-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-}
-
-package_python2-prance() {
-  depends=('python2-chardet' 'python2-yaml' 'python2-flex' 'python2-click' 
'python2-requests'
-   'python2-six' 'python2-semver')
-
-  cd prance-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-
-  mv "$pkgdir"/usr/bin/prance{,2}
-}

Copied: python-prance/repos/community-any/PKGBUILD (from rev 435720, 
python-prance/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-25 11:29:48 UTC (rev 435721)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-prance
+pkgname=(python-prance python2-prance)
+pkgver=0.14.1
+_openapi_commit=fbe62006211838a8bb7bf2433a1d15f1a5838a03
+pkgrel=1
+pkgdesc="Resolving Swagger/OpenAPI 2.0 and 3.0 Parser"
+url="https://github.com/jfinkhaeuser/prance";
+license=('custom:MITNFA')
+arch=('any')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-chardet' 
'python2-chardet' 'python-yaml'
+ 'python2-yaml' 'python-flex' 'python2-flex' 'python-click' 
'python2-click'
+ 'python-requests' 'python2-requests' 'python-six' 'python2-six'
+ 'python-semver' 'python2-semver')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-cov' 'python2-pytest-cov')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/jfinkhaeuser/prance/archive/v$pkgver.tar.gz";
+
"OpenAPI-Specification-$_openapi_commit.tar.gz::https://github.com/OAI/OpenAPI-Specification/archive/$_openapi_commit.tar.gz";)
+sha512sums=('7ea82b1283ba63b6af48f7bb0de90a0a1e484b95e87e085d954a5f96af122bb38e76c6268992696c2a4798f7c876db145e5e1b7f74f2c1913fcd30aa2d56'
+
'd7957f1cdaa681b4c163e6e0b35ed6b808f469c3fdbba86a5e7221bb3c0c980415dca145e7f57bcebed75624562e89a893841d17c9e0ff82df4f0ff65ffaa2ae')
+
+prepare() {
+  rmdir prance-$pkgver/tests/OpenAPI-Specification
+  ln -s "$srcdir"/OpenAPI-Specification-$_openapi_commit 
prance-$pkgver/tests/OpenAPI-Specification
+
+  cp -a prance-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/prance-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/prance-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir

[arch-commits] Commit in deepin-qt-dbus-factory/trunk (PKGBUILD)

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:32:39
  Author: felixonmars
Revision: 435722

upgpkg: deepin-qt-dbus-factory 1.0.9.20190220-1

Modified:
  deepin-qt-dbus-factory/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 11:29:48 UTC (rev 435721)
+++ PKGBUILD2019-02-25 11:32:39 UTC (rev 435722)
@@ -3,7 +3,8 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-qt-dbus-factory
-pkgver=1.0.9
+pkgver=1.0.9.20190220
+_commit=29dfd28173a51e3a97f6dfb6865a0a043f28aa79
 pkgrel=1
 pkgdesc='A repository stores auto-generated Qt5 dbus code'
 arch=('x86_64')
@@ -11,16 +12,16 @@
 license=('GPL3')
 depends=('qt5-base')
 makedepends=('python')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-qt-dbus-factory/archive/$pkgver.tar.gz";)
-sha512sums=('26b5a0123424f79538a11988f52c77ed5e7e542d506926b5b97f99036708b295d4fba47a0172c3f8452cf18e678974eac3ed72685a8f990e5303b22c8f8e2ccc')
+source=("$pkgname-$_commit.tar.gz::https://github.com/linuxdeepin/dde-qt-dbus-factory/archive/$_commit.tar.gz";)
+sha512sums=('535e6edf4f95fc295f30fa31a523c3634bb4ad5d45e4f512fe2398db6f92f3844dab7e1f047f66e9d5a9fd5b54bf44416cea9564dc0c9e36738c257374593dac')
 
 build() {
-  cd dde-qt-dbus-factory-$pkgver
+  cd dde-qt-dbus-factory-$_commit
   qmake-qt5 PREFIX=/usr
   make
 }
 
 package() {
-  cd dde-qt-dbus-factory-$pkgver
+  cd dde-qt-dbus-factory-$_commit
   make INSTALL_ROOT="$pkgdir" install
 }


[arch-commits] Commit in deepin-qt-dbus-factory/repos/community-x86_64 (2 files)

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:32:58
  Author: felixonmars
Revision: 435724

archrelease: copy trunk to community-x86_64

Added:
  deepin-qt-dbus-factory/repos/community-x86_64/PKGBUILD
(from rev 435723, deepin-qt-dbus-factory/trunk/PKGBUILD)
Deleted:
  deepin-qt-dbus-factory/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-25 11:32:43 UTC (rev 435723)
+++ PKGBUILD2019-02-25 11:32:58 UTC (rev 435724)
@@ -1,26 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-qt-dbus-factory
-pkgver=1.0.9
-pkgrel=1
-pkgdesc='A repository stores auto-generated Qt5 dbus code'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/dde-qt-dbus-factory";
-license=('GPL3')
-depends=('qt5-base')
-makedepends=('python')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-qt-dbus-factory/archive/$pkgver.tar.gz";)
-sha512sums=('26b5a0123424f79538a11988f52c77ed5e7e542d506926b5b97f99036708b295d4fba47a0172c3f8452cf18e678974eac3ed72685a8f990e5303b22c8f8e2ccc')
-
-build() {
-  cd dde-qt-dbus-factory-$pkgver
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-qt-dbus-factory-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-qt-dbus-factory/repos/community-x86_64/PKGBUILD (from rev 
435723, deepin-qt-dbus-factory/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-25 11:32:58 UTC (rev 435724)
@@ -0,0 +1,27 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-qt-dbus-factory
+pkgver=1.0.9.20190220
+_commit=29dfd28173a51e3a97f6dfb6865a0a043f28aa79
+pkgrel=1
+pkgdesc='A repository stores auto-generated Qt5 dbus code'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/dde-qt-dbus-factory";
+license=('GPL3')
+depends=('qt5-base')
+makedepends=('python')
+source=("$pkgname-$_commit.tar.gz::https://github.com/linuxdeepin/dde-qt-dbus-factory/archive/$_commit.tar.gz";)
+sha512sums=('535e6edf4f95fc295f30fa31a523c3634bb4ad5d45e4f512fe2398db6f92f3844dab7e1f047f66e9d5a9fd5b54bf44416cea9564dc0c9e36738c257374593dac')
+
+build() {
+  cd dde-qt-dbus-factory-$_commit
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-qt-dbus-factory-$_commit
+  make INSTALL_ROOT="$pkgdir" install
+}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:33:02
  Author: felixonmars
Revision: 435725

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: idris/repos/community-staging-x86_64/PKGBUILD (from rev 435723, 
idris/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-25 11:33:02 UTC (rev 435725)
@@ -0,0 +1,61 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=idris
+pkgver=1.3.1
+pkgrel=41
+pkgdesc="Functional Programming Language with Dependent Types"
+url="http://www.idris-lang.org/";
+license=("BSD")
+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-libffi' 
'haskell-megaparsec6'
+ 'haskell-network' 'haskell-optparse-applicative' 'haskell-regex-tdfa' 
'haskell-safe'
+ 'haskell-split' 'haskell-terminal-size' 'haskell-uniplate' 
'haskell-unordered-containers'
+ 'haskell-utf8-string' 'haskell-vector' 
'haskell-vector-binary-instances'
+ 'haskell-zip-archive')
+makedepends=('ghc' 'haskell-tagged' 'haskell-tasty' 'haskell-tasty-golden' 
'haskell-tasty-rerun'
+ 'nodejs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/idris-lang/Idris-dev/archive/v$pkgver.tar.gz";)
+sha512sums=('555c7fdfad7e4f69b1aa4f6237cf4432831cd74e33342bd802ff3bc763118178b742b386035f8c071820b5e2bc71c5372c4acb356835155677046d360b722746')
+
+prepare() {
+cd Idris-dev-$pkgver
+
+sed -i '1ioverride IDRIS := env LD_PRELOAD=$(shell ls 
../../dist/build/libHSidris-*-ghc*.so) $(IDRIS)' \
+libs/*/Makefile
+sed -i -e 's/< *1.4/<2/' -e 's/< *0.6/<1/' -e 's/< *0.2/<1/' -e 's/< 
*0.4/<1/' -e 's/< *2.8/<4/' idris.cabal
+sed -i '1i{-# language NoMonadFailDesugaring #-}' 
src/Idris/Core/CaseTree.hs src/Idris/Parser/Stack.hs src/Idris/Elab/Term.hs
+}
+
+build() {
+cd Idris-dev-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fFFI -fGMP -f-release -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
+}
+
+check() {
+cd Idris-dev-$pkgver
+# TODO: figure out the tests
+PATH="$PWD/dist/build:$PATH" LD_LIBRARY_PATH="$PWD/dist/build" runhaskell 
Setup test || warning "Tests failed"
+}
+
+package() {
+cd 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)

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:32:43
  Author: felixonmars
Revision: 435723

upgpkg: idris 1.3.1-41

rebuild with patience 0.2.1.1

Modified:
  idris/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 11:32:39 UTC (rev 435722)
+++ PKGBUILD2019-02-25 11:32:43 UTC (rev 435723)
@@ -3,7 +3,7 @@
 
 pkgname=idris
 pkgver=1.3.1
-pkgrel=40
+pkgrel=41
 pkgdesc="Functional Programming Language with Dependent Types"
 url="http://www.idris-lang.org/";
 license=("BSD")


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:35:12
  Author: felixonmars
Revision: 435727

archrelease: copy trunk to community-x86_64

Added:
  deepin-music/repos/community-x86_64/PKGBUILD
(from rev 435726, deepin-music/trunk/PKGBUILD)
Deleted:
  deepin-music/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-25 11:34:54 UTC (rev 435726)
+++ PKGBUILD2019-02-25 11:35:12 UTC (rev 435727)
@@ -1,27 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-music
-pkgver=3.1.14
-pkgrel=1
-pkgdesc='Awesome music player with brilliant and tweakful UI Deepin-UI based.'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/deepin-music";
-license=('GPL3')
-depends=('deepin-qt5integration' 'ffmpeg' 'taglib' 'libcue' 'qt5-svg' 
'gst-plugins-bad')
-makedepends=('python' 'qt5-tools')
-groups=('deepin-extra')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-music/archive/$pkgver.tar.gz";)
-sha512sums=('d1118440dbedc344b2b3506ea90deee1aa923be0bba5018aa19142618ce34e6e0173993413854f4d21a959aa9b682439c5a4d3570f572661c8b500deefe8')
-
-build() {
-  cd deepin-music-$pkgver
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd deepin-music-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-music/repos/community-x86_64/PKGBUILD (from rev 435726, 
deepin-music/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-25 11:35:12 UTC (rev 435727)
@@ -0,0 +1,27 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-music
+pkgver=3.1.15
+pkgrel=1
+pkgdesc='Awesome music player with brilliant and tweakful UI Deepin-UI based.'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-music";
+license=('GPL3')
+depends=('deepin-qt5integration' 'ffmpeg' 'taglib' 'libcue' 'qt5-svg' 
'gst-plugins-bad')
+makedepends=('python' 'qt5-tools')
+groups=('deepin-extra')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-music/archive/$pkgver.tar.gz";)
+sha512sums=('4af1ad0fbfad817ef18a036b2941f85266c3d799547b4628f5c0783a366adcf7bcff7cbba960342f7a78c1464bddbf1c2f10abdf3296ada36a8631e2f8162312')
+
+build() {
+  cd deepin-music-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd deepin-music-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:34:54
  Author: felixonmars
Revision: 435726

upgpkg: deepin-music 3.1.15-1

Modified:
  deepin-music/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 11:33:02 UTC (rev 435725)
+++ PKGBUILD2019-02-25 11:34:54 UTC (rev 435726)
@@ -3,7 +3,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-music
-pkgver=3.1.14
+pkgver=3.1.15
 pkgrel=1
 pkgdesc='Awesome music player with brilliant and tweakful UI Deepin-UI based.'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 makedepends=('python' 'qt5-tools')
 groups=('deepin-extra')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-music/archive/$pkgver.tar.gz";)
-sha512sums=('d1118440dbedc344b2b3506ea90deee1aa923be0bba5018aa19142618ce34e6e0173993413854f4d21a959aa9b682439c5a4d3570f572661c8b500deefe8')
+sha512sums=('4af1ad0fbfad817ef18a036b2941f85266c3d799547b4628f5c0783a366adcf7bcff7cbba960342f7a78c1464bddbf1c2f10abdf3296ada36a8631e2f8162312')
 
 build() {
   cd deepin-music-$pkgver


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:37:22
  Author: felixonmars
Revision: 435730

upgpkg: deepin-dock 4.9.0-1

Modified:
  deepin-dock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 11:37:12 UTC (rev 435729)
+++ PKGBUILD2019-02-25 11:37:22 UTC (rev 435730)
@@ -3,8 +3,8 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-dock
-pkgver=4.8.9
-pkgrel=2
+pkgver=4.9.0
+pkgrel=1
 pkgdesc='Deepin desktop-environment - dock module'
 arch=('x86_64')
 url="https://github.com/linuxdeepin/dde-dock";
@@ -16,7 +16,7 @@
 replaces=('dde-dock')
 groups=('deepin')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-dock/archive/$pkgver.tar.gz";)
-sha512sums=('c95c7a4d310d7974a13a56a9ead577fb95f42eb99a3169e782048fa4d78d881501e892e7feee3eda35f28da48a2b4fa5b206bfafeb5dad0108933aa024e5f26b')
+sha512sums=('ceb21c31cc59761b4536ed7d2ad2cf3c018142ba8d4c3aa405170cf6a6cf52bb19d9a824bf60d91fe28ebb0a5ea99533c11a684e55c987760f13962b91890b43')
 
 build() {
   cd dde-dock-$pkgver


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:37:12
  Author: felixonmars
Revision: 435729

archrelease: copy trunk to community-x86_64

Added:
  startdde/repos/community-x86_64/PKGBUILD
(from rev 435728, startdde/trunk/PKGBUILD)
Deleted:
  startdde/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-25 11:36:55 UTC (rev 435728)
+++ PKGBUILD2019-02-25 11:37:12 UTC (rev 435729)
@@ -1,45 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=startdde
-pkgver=3.12.0
-pkgrel=1
-pkgdesc="starter of deepin desktop environment"
-arch=('x86_64')
-url="https://github.com/linuxdeepin/startdde";
-license=('GPL3')
-depends=('deepin-daemon' 'deepin-wm' 'deepin-metacity' 'libgnome-keyring')
-makedepends=('cmake' 'coffeescript' 'deepin-go-dbus-factory' 
'deepin-gir-generator' 'deepin-go-lib'
- 'deepin-api' 'go-pie' 'python2' 'git' 'jq' 'deepin-dbus-factory'
- 'golang-github-burntsushi-xgb')
-replaces=('deepin-wm-switcher')
-groups=('deepin')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/startdde/archive/$pkgver.tar.gz";)
-sha512sums=('453abbf5430892f4b8d439441cf5af0519c2230b0189fbf95198f713c7c36f416ff1e4c9547c551329ec68bc68beeb6c365762161f69eba07a276e37ad3999fe')
-
-prepare() {
-  export GOPATH="$srcdir/build:/usr/share/gocode"
-  go get github.com/BurntSushi/xgbutil github.com/howeyc/fsnotify \
- github.com/cryptix/wav golang.org/x/net/context 
github.com/linuxdeepin/go-x11-client
-
-  sed -i 's/sbin/bin/' startdde-$pkgver/Makefile
-}
-
-build() {
-  cd startdde-$pkgver
-  make
-}
-
-package() {
-  cd startdde-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  # Fix env file permission
-  chmod +x "$pkgdir"/etc/X11/Xsession.d/*
-
-  # Don't rely on deepin-session's location
-  install -dm755 "$pkgdir"/etc/X11/xinit/xinitrc.d
-  mv "$pkgdir"/etc/X11/Xsession.d/* "$pkgdir"/etc/X11/xinit/xinitrc.d/
-  rmdir "$pkgdir"/etc/X11/Xsession.d
-}

Copied: startdde/repos/community-x86_64/PKGBUILD (from rev 435728, 
startdde/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-25 11:37:12 UTC (rev 435729)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=startdde
+pkgver=3.12.1
+pkgrel=1
+pkgdesc="starter of deepin desktop environment"
+arch=('x86_64')
+url="https://github.com/linuxdeepin/startdde";
+license=('GPL3')
+depends=('deepin-daemon' 'deepin-wm' 'deepin-metacity' 'libgnome-keyring')
+makedepends=('cmake' 'coffeescript' 'deepin-go-dbus-factory' 
'deepin-gir-generator' 'deepin-go-lib'
+ 'deepin-api' 'go-pie' 'python2' 'git' 'jq' 'deepin-dbus-factory'
+ 'golang-golang-x-net' 'golang-github-linuxdeepin-go-x11-client')
+replaces=('deepin-wm-switcher')
+groups=('deepin')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/startdde/archive/$pkgver.tar.gz";)
+sha512sums=('724d6b8769a46bc3995a9a359e2140dafbc95cbff6603bfcee980a6d6434fd6156b28b12eb850ce7e9601efda3541e25b619486f65a7b8f7828f2a837163f9eb')
+
+prepare() {
+  export GOPATH="$srcdir/build:/usr/share/gocode"
+  go get github.com/howeyc/fsnotify github.com/cryptix/wav
+
+  sed -i 's/sbin/bin/' startdde-$pkgver/Makefile
+}
+
+build() {
+  cd startdde-$pkgver
+  make
+}
+
+package() {
+  cd startdde-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  # Fix env file permission
+  chmod +x "$pkgdir"/etc/X11/Xsession.d/*
+
+  # Don't rely on deepin-session's location
+  install -dm755 "$pkgdir"/etc/X11/xinit/xinitrc.d
+  mv "$pkgdir"/etc/X11/Xsession.d/* "$pkgdir"/etc/X11/xinit/xinitrc.d/
+  rmdir "$pkgdir"/etc/X11/Xsession.d
+}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:37:40
  Author: felixonmars
Revision: 435731

archrelease: copy trunk to community-x86_64

Added:
  deepin-dock/repos/community-x86_64/PKGBUILD
(from rev 435730, deepin-dock/trunk/PKGBUILD)
Deleted:
  deepin-dock/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-25 11:37:22 UTC (rev 435730)
+++ PKGBUILD2019-02-25 11:37:40 UTC (rev 435731)
@@ -1,30 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-dock
-pkgver=4.8.9
-pkgrel=2
-pkgdesc='Deepin desktop-environment - dock module'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/dde-dock";
-license=('GPL3')
-depends=('qt5-svg' 'deepin-menu' 'deepin-daemon' 'deepin-launcher' 
'deepin-qt5integration'
- 'deepin-qt-dbus-factory' 'deepin-network-utils' 'libdbusmenu-qt5')
-makedepends=('cmake' 'qt5-tools')
-conflicts=('dde-dock')
-replaces=('dde-dock')
-groups=('deepin')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-dock/archive/$pkgver.tar.gz";)
-sha512sums=('c95c7a4d310d7974a13a56a9ead577fb95f42eb99a3169e782048fa4d78d881501e892e7feee3eda35f28da48a2b4fa5b206bfafeb5dad0108933aa024e5f26b')
-
-build() {
-  cd dde-dock-$pkgver
-  cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib 
-DDOCK_TRAY_USE_NATIVE_POPUP=YES
-  make
-}
-
-package() {
-  cd dde-dock-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: deepin-dock/repos/community-x86_64/PKGBUILD (from rev 435730, 
deepin-dock/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-25 11:37:40 UTC (rev 435731)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-dock
+pkgver=4.9.0
+pkgrel=1
+pkgdesc='Deepin desktop-environment - dock module'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/dde-dock";
+license=('GPL3')
+depends=('qt5-svg' 'deepin-menu' 'deepin-daemon' 'deepin-launcher' 
'deepin-qt5integration'
+ 'deepin-qt-dbus-factory' 'deepin-network-utils' 'libdbusmenu-qt5')
+makedepends=('cmake' 'qt5-tools')
+conflicts=('dde-dock')
+replaces=('dde-dock')
+groups=('deepin')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-dock/archive/$pkgver.tar.gz";)
+sha512sums=('ceb21c31cc59761b4536ed7d2ad2cf3c018142ba8d4c3aa405170cf6a6cf52bb19d9a824bf60d91fe28ebb0a5ea99533c11a684e55c987760f13962b91890b43')
+
+build() {
+  cd dde-dock-$pkgver
+  cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib 
-DDOCK_TRAY_USE_NATIVE_POPUP=YES
+  make
+}
+
+package() {
+  cd dde-dock-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:36:55
  Author: felixonmars
Revision: 435728

upgpkg: startdde 3.12.1-1

Modified:
  startdde/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 11:35:12 UTC (rev 435727)
+++ PKGBUILD2019-02-25 11:36:55 UTC (rev 435728)
@@ -3,7 +3,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=startdde
-pkgver=3.12.0
+pkgver=3.12.1
 pkgrel=1
 pkgdesc="starter of deepin desktop environment"
 arch=('x86_64')
@@ -12,16 +12,15 @@
 depends=('deepin-daemon' 'deepin-wm' 'deepin-metacity' 'libgnome-keyring')
 makedepends=('cmake' 'coffeescript' 'deepin-go-dbus-factory' 
'deepin-gir-generator' 'deepin-go-lib'
  'deepin-api' 'go-pie' 'python2' 'git' 'jq' 'deepin-dbus-factory'
- 'golang-github-burntsushi-xgb')
+ 'golang-golang-x-net' 'golang-github-linuxdeepin-go-x11-client')
 replaces=('deepin-wm-switcher')
 groups=('deepin')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/startdde/archive/$pkgver.tar.gz";)
-sha512sums=('453abbf5430892f4b8d439441cf5af0519c2230b0189fbf95198f713c7c36f416ff1e4c9547c551329ec68bc68beeb6c365762161f69eba07a276e37ad3999fe')
+sha512sums=('724d6b8769a46bc3995a9a359e2140dafbc95cbff6603bfcee980a6d6434fd6156b28b12eb850ce7e9601efda3541e25b619486f65a7b8f7828f2a837163f9eb')
 
 prepare() {
   export GOPATH="$srcdir/build:/usr/share/gocode"
-  go get github.com/BurntSushi/xgbutil github.com/howeyc/fsnotify \
- github.com/cryptix/wav golang.org/x/net/context 
github.com/linuxdeepin/go-x11-client
+  go get github.com/howeyc/fsnotify github.com/cryptix/wav
 
   sed -i 's/sbin/bin/' startdde-$pkgver/Makefile
 }


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:41:18
  Author: felixonmars
Revision: 435733

archrelease: copy trunk to community-staging-x86_64

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

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

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

Copied: stack/repos/community-staging-x86_64/stack.install (from rev 435732, 
stack/trunk/stack.install)
===
--- community-staging-x86_64/stack.install  (rev 0)
+++ community-staging-x86_64/stack.install  2019-02-25 11:41:18 UTC (rev 
435733)
@@ -0,0 +1,4 @@
+

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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:41:02
  Author: felixonmars
Revision: 435732

upgpkg: stack 1.9.3-71

rebuild with patience 0.2.1.1

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 11:37:40 UTC (rev 435731)
+++ PKGBUILD2019-02-25 11:41:02 UTC (rev 435732)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=1.9.3
-pkgrel=70
+pkgrel=71
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack";
 license=("BSD")


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:45:07
  Author: felixonmars
Revision: 435735

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-25 11:44:48 UTC (rev 435734)
+++ PKGBUILD2019-02-25 11:45:07 UTC (rev 435735)
@@ -1,80 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-hypothesis
-pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=4.7.4
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org";
-makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
- 'python-coverage' 'python2-coverage' 'python2-enum34')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
-  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
-  'python-flaky' 'python2-flaky' 'python-django' 'python2-django' 
'python-mock'
-  'python2-mock' 'python-pandas' 'python2-pandas' 
'python-dpcontracts'
-  'python2-dpcontracts' 'python-pytest-xdist' 
'python2-pytest-xdist'
-  'python-lark-parser' 'python2-lark-parser')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz";)
-sha512sums=('a5ffd1fb56b5458ee1a0d3c8206ef696ba8cd69bb6c4974819dc983dd3c3e65657ad57af3b37b15a9065b63afec3a78ce22f8bab9b0fff36f83c75f13a50bb91')
-
-prepare() {
-  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
-
-  cp -a hypothesis-$pkgver{,-py2}
-
-  rm -r hypothesis-$pkgver/hypothesis-python/tests/py2
-  rm -r hypothesis-$pkgver-py2/hypothesis-python/tests/py3
-
-  export LC_CTYPE=en_US.UTF-8
-}
-
-build() {
-  cd "$srcdir"/hypothesis-$pkgver/hypothesis-python
-  python setup.py build
-
-  cd "$srcdir"/hypothesis-$pkgver-py2/hypothesis-python
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/hypothesis-$pkgver/hypothesis-python
-  mv tests/django ../
-  python setup.py pytest
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m tests.django.manage test 
tests.django
-
-  cd "$srcdir"/hypothesis-$pkgver-py2/hypothesis-python
-  mv tests/django ../
-  # https://github.com/python/typing/issues/612
-  python2 setup.py pytest || warning "Tests failed"
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m tests.django.manage test 
tests.django
-}
-
-package_python-hypothesis() {
-  depends=('python-attrs' 'python-coverage')
-  optdepends=('python-pytz: for datetime and django module'
-  'python-faker: for fakefactory and django module'
-  'python-django: for django module'
-  'python-numpy: for numpy module'
-  'python-pytest: for pytest module'
-  'python-lark-parser: for lark module')
-
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-hypothesis() {
-  depends=('python2-attrs' 'python2-coverage' 'python2-enum34')
-  optdepends=('python2-pytz: for datetime and django module'
-  'python2-faker: for fakefactory and django module'
-  'python2-django: for django module'
-  'python2-numpy: for numpy module'
-  'python2-pytest: for pytest module'
-  'python2-lark-parser: for lark module')
-
-  cd hypothesis-$pkgver-py2/hypothesis-python
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 435734, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-25 11:45:07 UTC (rev 435735)
@@ -0,0 +1,80 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=4.7.5
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org";
+makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
+ 'python-coverage' 'python2-coverage' 'python2-enum34')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
+  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
+  'python-flaky' 'python2-flaky' 'python-django' 'python2-django' 
'python-mock'
+  'python2-mock' 'python-pandas' 'python2-pandas' 
'python-dpcontracts'
+

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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 11:44:48
  Author: felixonmars
Revision: 435734

upgpkg: python-hypothesis 4.7.5-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 11:41:18 UTC (rev 435733)
+++ PKGBUILD2019-02-25 11:44:48 UTC (rev 435734)
@@ -2,7 +2,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=4.7.4
+pkgver=4.7.5
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -17,7 +17,7 @@
   'python2-dpcontracts' 'python-pytest-xdist' 
'python2-pytest-xdist'
   'python-lark-parser' 'python2-lark-parser')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz";)
-sha512sums=('a5ffd1fb56b5458ee1a0d3c8206ef696ba8cd69bb6c4974819dc983dd3c3e65657ad57af3b37b15a9065b63afec3a78ce22f8bab9b0fff36f83c75f13a50bb91')
+sha512sums=('30540e926a32667aa0f520969bae82f1c8cf28698bd6d806d3f9e64898b65688449188379ab84e20961247ac72f91b382c0ae823be6ae90d3804bd3256bc7246')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver


[arch-commits] Commit in deepin-file-manager/trunk (PKGBUILD)

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 12:04:01
  Author: felixonmars
Revision: 435756

upgpkg: deepin-file-manager 1:4.7.7-1

Modified:
  deepin-file-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 11:58:50 UTC (rev 435755)
+++ PKGBUILD2019-02-25 12:04:01 UTC (rev 435756)
@@ -3,8 +3,8 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-file-manager
-pkgver=4.7.6
-pkgrel=2
+pkgver=4.7.7
+pkgrel=1
 epoch=1
 pkgdesc='Deepin File Manager'
 arch=('x86_64')
@@ -22,7 +22,7 @@
 conflicts=('deepin-desktop')
 replaces=('deepin-desktop')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-file-manager/archive/$pkgver.tar.gz";)
-sha512sums=('aa25c7d3d505845b7d7d00463a620f4bd691671d472e61835672cbed4c1d6d00d395e3224f9e8604691a59607a80eaeddeed2a4e817914883c0da30af4f553f2')
+sha512sums=('9e281edf21a7c2babe3f0562a54d4be7379dfb49559eb4f3129743c5823b3fcb7e0740425f5a866b5787867285f27eb6b6f4bc38788e802abcbbb6905989b987')
 
 prepare() {
   cd dde-file-manager-$pkgver


[arch-commits] Commit in deepin-file-manager/repos/community-x86_64 (4 files)

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 12:04:18
  Author: felixonmars
Revision: 435757

archrelease: copy trunk to community-x86_64

Added:
  deepin-file-manager/repos/community-x86_64/PKGBUILD
(from rev 435756, deepin-file-manager/trunk/PKGBUILD)
  deepin-file-manager/repos/community-x86_64/fix-plugin-link.patch
(from rev 435756, deepin-file-manager/trunk/fix-plugin-link.patch)
Deleted:
  deepin-file-manager/repos/community-x86_64/PKGBUILD
  deepin-file-manager/repos/community-x86_64/fix-plugin-link.patch

---+
 PKGBUILD  |   82 
 fix-plugin-link.patch |   26 +++
 2 files changed, 54 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-25 12:04:01 UTC (rev 435756)
+++ PKGBUILD2019-02-25 12:04:18 UTC (rev 435757)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-file-manager
-pkgver=4.7.6
-pkgrel=2
-epoch=1
-pkgdesc='Deepin File Manager'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/dde-file-manager";
-license=('GPL3')
-depends=('deepin-qt5integration' 'gtk2' 'gsettings-qt' 'libsecret' 'qt5-svg' 
'file' 'avfs'
- 'polkit-qt5' 'deepin-shortcut-viewer' 'poppler' 'ffmpegthumbnailer' 
'xdg-user-dirs'
- 'file-roller' 'deepin-qt-dbus-factory' 'treefrog-framework' 
'deepin-terminal'
- 'gst-plugins-good' 'mpv' 'deepin-anything' 'deepin-movie' 'jemalloc' 
'kcodecs'
- 'deepin-screensaver')
-makedepends=('qt5-tools' 'deepin-dock' 'deepin-gettext-tools')
-optdepends=('deepin-manual: view the help manual')
-groups=('deepin')
-provides=('deepin-desktop')
-conflicts=('deepin-desktop')
-replaces=('deepin-desktop')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-file-manager/archive/$pkgver.tar.gz";)
-sha512sums=('aa25c7d3d505845b7d7d00463a620f4bd691671d472e61835672cbed4c1d6d00d395e3224f9e8604691a59607a80eaeddeed2a4e817914883c0da30af4f553f2')
-
-prepare() {
-  cd dde-file-manager-$pkgver
-  sed -i 's|systembusconf.path = /etc/dbus-1/system.d|systembusconf.path = 
/usr/share/dbus-1/system.d|' dde-file-manager-daemon/dde-file-manager-daemon.pro
-}
-
-build() {
-  cd dde-file-manager-$pkgver
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-file-manager-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-file-manager/repos/community-x86_64/PKGBUILD (from rev 435756, 
deepin-file-manager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-25 12:04:18 UTC (rev 435757)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-file-manager
+pkgver=4.7.7
+pkgrel=1
+epoch=1
+pkgdesc='Deepin File Manager'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/dde-file-manager";
+license=('GPL3')
+depends=('deepin-qt5integration' 'gtk2' 'gsettings-qt' 'libsecret' 'qt5-svg' 
'file' 'avfs'
+ 'polkit-qt5' 'deepin-shortcut-viewer' 'poppler' 'ffmpegthumbnailer' 
'xdg-user-dirs'
+ 'file-roller' 'deepin-qt-dbus-factory' 'treefrog-framework' 
'deepin-terminal'
+ 'gst-plugins-good' 'mpv' 'deepin-anything' 'deepin-movie' 'jemalloc' 
'kcodecs'
+ 'deepin-screensaver')
+makedepends=('qt5-tools' 'deepin-dock' 'deepin-gettext-tools')
+optdepends=('deepin-manual: view the help manual')
+groups=('deepin')
+provides=('deepin-desktop')
+conflicts=('deepin-desktop')
+replaces=('deepin-desktop')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-file-manager/archive/$pkgver.tar.gz";)
+sha512sums=('9e281edf21a7c2babe3f0562a54d4be7379dfb49559eb4f3129743c5823b3fcb7e0740425f5a866b5787867285f27eb6b6f4bc38788e802abcbbb6905989b987')
+
+prepare() {
+  cd dde-file-manager-$pkgver
+  sed -i 's|systembusconf.path = /etc/dbus-1/system.d|systembusconf.path = 
/usr/share/dbus-1/system.d|' dde-file-manager-daemon/dde-file-manager-daemon.pro
+}
+
+build() {
+  cd dde-file-manager-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-file-manager-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}

Deleted: fix-plugin-link.patch
===
--- fix-plugin-link.patch   2019-02-25 12:04:01 UTC (rev 435756)
+++ fix-plugin-link.patch   2019-02-25 12:04:18 UTC (rev 435757)
@@ -1,13 +0,0 @@
-diff --git a/dde-dock-plugins/disk-mount/disk-mount.pro 
b/dde-dock-plugins/disk-mount/disk-mount.pro
-index c5d336e8..c9575b15 100644
 a/dde-dock-plugins/disk-mount/disk-mount.pro
-+++ b/dde-dock-plugins/disk-mount/disk-mount.pro
-@@ -15,7 +15,7 @@ DISTFILES   += disk-mount.json
- 
- DEFINES += QT_MESSAGELOGCONTEXT DFM_NO_FILE_WATCHER
- 
--#unix: LIBS += -L$$OUT_PWD/../../dde-file-manager-lib -ldde-file-manager
-+LIBS += -L$$OUT_PWD/../../dde-file-ma

[arch-commits] Commit in deepin-session-ui/repos/community-x86_64 (PKGBUILD PKGBUILD)

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 12:09:34
  Author: felixonmars
Revision: 435759

archrelease: copy trunk to community-x86_64

Added:
  deepin-session-ui/repos/community-x86_64/PKGBUILD
(from rev 435758, deepin-session-ui/trunk/PKGBUILD)
Deleted:
  deepin-session-ui/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-25 12:09:16 UTC (rev 435758)
+++ PKGBUILD2019-02-25 12:09:34 UTC (rev 435759)
@@ -1,37 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-session-ui
-pkgver=4.8.10
-pkgrel=1
-pkgdesc='Deepin desktop-environment - Session UI module'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/dde-session-ui";
-license=('GPL3')
-groups=('deepin')
-depends=('gsettings-qt' 'deepin-qt5integration' 'liblightdm-qt5' 'qt5-svg' 
'deepin-daemon'
- 'xorg-server' 'deepin-control-center' 'startdde' 'xorg-xrandr' 
'deepin-qt-dbus-factory'
- 'qt5-tools')
-makedepends=('deepin-gettext-tools')
-provides=('lightdm-deepin-greeter' 'deepin-notifications')
-conflicts=('dde-workspace' 'dde-session-ui' 'deepin-notifications')
-replaces=('dde-workspace' 'dde-session-ui' 'deepin-notifications')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-session-ui/archive/$pkgver.tar.gz";)
-sha512sums=('bda1bb603007cd25d1e407750a046494fcb9c57cc4e2c835b03d76ee8b1073e7916d8bf26a7c68b53cfd9574184d49d977adbf254c8034301112108413bcb964')
-
-prepare() {
-  cd dde-session-ui-$pkgver
-  sed -i 
's|/usr/share/backgrounds/default_background.jpg|/usr/share/backgrounds/deepin/desktop.jpg|'
 widgets/*.cpp boxframe/*.cpp
-}
-
-build() {
-  cd dde-session-ui-$pkgver
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-session-ui-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-session-ui/repos/community-x86_64/PKGBUILD (from rev 435758, 
deepin-session-ui/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-25 12:09:34 UTC (rev 435759)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-session-ui
+pkgver=4.8.11
+pkgrel=1
+pkgdesc='Deepin desktop-environment - Session UI module'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/dde-session-ui";
+license=('GPL3')
+groups=('deepin')
+depends=('gsettings-qt' 'deepin-qt5integration' 'liblightdm-qt5' 'qt5-svg' 
'deepin-daemon'
+ 'xorg-server' 'deepin-control-center' 'startdde' 'xorg-xrandr' 
'deepin-qt-dbus-factory'
+ 'qt5-tools')
+makedepends=('deepin-gettext-tools')
+provides=('lightdm-deepin-greeter' 'deepin-notifications')
+conflicts=('dde-workspace' 'dde-session-ui' 'deepin-notifications')
+replaces=('dde-workspace' 'dde-session-ui' 'deepin-notifications')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-session-ui/archive/$pkgver.tar.gz";)
+sha512sums=('017998b06dbb0cffaf30dca7484c62cbdd1536acde5c616836a05d46e2159dfea5b16d6069910d3d3feb91f5af58e2041b62a490aafeb6f5b521feabff65c029')
+
+prepare() {
+  cd dde-session-ui-$pkgver
+  sed -i 
's|/usr/share/backgrounds/default_background.jpg|/usr/share/backgrounds/deepin/desktop.jpg|'
 widgets/*.cpp boxframe/*.cpp
+}
+
+build() {
+  cd dde-session-ui-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-session-ui-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}


[arch-commits] Commit in deepin-session-ui/trunk (PKGBUILD)

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 12:09:16
  Author: felixonmars
Revision: 435758

upgpkg: deepin-session-ui 4.8.11-1

Modified:
  deepin-session-ui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 12:04:18 UTC (rev 435757)
+++ PKGBUILD2019-02-25 12:09:16 UTC (rev 435758)
@@ -3,7 +3,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-session-ui
-pkgver=4.8.10
+pkgver=4.8.11
 pkgrel=1
 pkgdesc='Deepin desktop-environment - Session UI module'
 arch=('x86_64')
@@ -18,7 +18,7 @@
 conflicts=('dde-workspace' 'dde-session-ui' 'deepin-notifications')
 replaces=('dde-workspace' 'dde-session-ui' 'deepin-notifications')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-session-ui/archive/$pkgver.tar.gz";)
-sha512sums=('bda1bb603007cd25d1e407750a046494fcb9c57cc4e2c835b03d76ee8b1073e7916d8bf26a7c68b53cfd9574184d49d977adbf254c8034301112108413bcb964')
+sha512sums=('017998b06dbb0cffaf30dca7484c62cbdd1536acde5c616836a05d46e2159dfea5b16d6069910d3d3feb91f5af58e2041b62a490aafeb6f5b521feabff65c029')
 
 prepare() {
   cd dde-session-ui-$pkgver


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 12:21:05
  Author: felixonmars
Revision: 435760

upgpkg: python-hypothesis 4.7.6-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 12:09:34 UTC (rev 435759)
+++ PKGBUILD2019-02-25 12:21:05 UTC (rev 435760)
@@ -2,7 +2,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=4.7.5
+pkgver=4.7.6
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -17,7 +17,7 @@
   'python2-dpcontracts' 'python-pytest-xdist' 
'python2-pytest-xdist'
   'python-lark-parser' 'python2-lark-parser')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz";)
-sha512sums=('30540e926a32667aa0f520969bae82f1c8cf28698bd6d806d3f9e64898b65688449188379ab84e20961247ac72f91b382c0ae823be6ae90d3804bd3256bc7246')
+sha512sums=('ea60c5f2608a467fd7cf7f2bdff757caf25b0801441147ccb44804be0340d5c8232167def64bf85fceb124f7da18535c46c265342407dafeb8dc1e2a57ae8af9')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 12:21:22
  Author: felixonmars
Revision: 435761

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-25 12:21:05 UTC (rev 435760)
+++ PKGBUILD2019-02-25 12:21:22 UTC (rev 435761)
@@ -1,80 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-hypothesis
-pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=4.7.5
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org";
-makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
- 'python-coverage' 'python2-coverage' 'python2-enum34')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
-  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
-  'python-flaky' 'python2-flaky' 'python-django' 'python2-django' 
'python-mock'
-  'python2-mock' 'python-pandas' 'python2-pandas' 
'python-dpcontracts'
-  'python2-dpcontracts' 'python-pytest-xdist' 
'python2-pytest-xdist'
-  'python-lark-parser' 'python2-lark-parser')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz";)
-sha512sums=('30540e926a32667aa0f520969bae82f1c8cf28698bd6d806d3f9e64898b65688449188379ab84e20961247ac72f91b382c0ae823be6ae90d3804bd3256bc7246')
-
-prepare() {
-  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
-
-  cp -a hypothesis-$pkgver{,-py2}
-
-  rm -r hypothesis-$pkgver/hypothesis-python/tests/py2
-  rm -r hypothesis-$pkgver-py2/hypothesis-python/tests/py3
-
-  export LC_CTYPE=en_US.UTF-8
-}
-
-build() {
-  cd "$srcdir"/hypothesis-$pkgver/hypothesis-python
-  python setup.py build
-
-  cd "$srcdir"/hypothesis-$pkgver-py2/hypothesis-python
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/hypothesis-$pkgver/hypothesis-python
-  mv tests/django ../
-  python setup.py pytest
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m tests.django.manage test 
tests.django
-
-  cd "$srcdir"/hypothesis-$pkgver-py2/hypothesis-python
-  mv tests/django ../
-  # https://github.com/python/typing/issues/612
-  python2 setup.py pytest || warning "Tests failed"
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m tests.django.manage test 
tests.django
-}
-
-package_python-hypothesis() {
-  depends=('python-attrs' 'python-coverage')
-  optdepends=('python-pytz: for datetime and django module'
-  'python-faker: for fakefactory and django module'
-  'python-django: for django module'
-  'python-numpy: for numpy module'
-  'python-pytest: for pytest module'
-  'python-lark-parser: for lark module')
-
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-hypothesis() {
-  depends=('python2-attrs' 'python2-coverage' 'python2-enum34')
-  optdepends=('python2-pytz: for datetime and django module'
-  'python2-faker: for fakefactory and django module'
-  'python2-django: for django module'
-  'python2-numpy: for numpy module'
-  'python2-pytest: for pytest module'
-  'python2-lark-parser: for lark module')
-
-  cd hypothesis-$pkgver-py2/hypothesis-python
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 435760, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-25 12:21:22 UTC (rev 435761)
@@ -0,0 +1,80 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=4.7.6
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org";
+makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
+ 'python-coverage' 'python2-coverage' 'python2-enum34')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
+  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
+  'python-flaky' 'python2-flaky' 'python-django' 'python2-django' 
'python-mock'
+  'python2-mock' 'python-pandas' 'python2-pandas' 
'python-dpcontracts'
+

[arch-commits] Commit in deepin-qt-dbus-factory/trunk (PKGBUILD)

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 12:41:49
  Author: felixonmars
Revision: 435762

upgpkg: deepin-qt-dbus-factory 1.1.0-1

Modified:
  deepin-qt-dbus-factory/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 12:21:22 UTC (rev 435761)
+++ PKGBUILD2019-02-25 12:41:49 UTC (rev 435762)
@@ -3,8 +3,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-qt-dbus-factory
-pkgver=1.0.9.20190220
-_commit=29dfd28173a51e3a97f6dfb6865a0a043f28aa79
+pkgver=1.1.0
 pkgrel=1
 pkgdesc='A repository stores auto-generated Qt5 dbus code'
 arch=('x86_64')
@@ -12,16 +11,16 @@
 license=('GPL3')
 depends=('qt5-base')
 makedepends=('python')
-source=("$pkgname-$_commit.tar.gz::https://github.com/linuxdeepin/dde-qt-dbus-factory/archive/$_commit.tar.gz";)
-sha512sums=('535e6edf4f95fc295f30fa31a523c3634bb4ad5d45e4f512fe2398db6f92f3844dab7e1f047f66e9d5a9fd5b54bf44416cea9564dc0c9e36738c257374593dac')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-qt-dbus-factory/archive/$pkgver.tar.gz";)
+sha512sums=('f82c230917d00ad42ca14eca42106dbd3168c6157f19a30f3cf1c723bddbd897fc4dc5c1a235a2e4c362b040239fb4565b0c6ce8324bac45ead825f861de1608')
 
 build() {
-  cd dde-qt-dbus-factory-$_commit
+  cd dde-qt-dbus-factory-$pkgver
   qmake-qt5 PREFIX=/usr
   make
 }
 
 package() {
-  cd dde-qt-dbus-factory-$_commit
+  cd dde-qt-dbus-factory-$pkgver
   make INSTALL_ROOT="$pkgdir" install
 }


[arch-commits] Commit in deepin-qt-dbus-factory/repos/community-x86_64 (2 files)

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 12:42:57
  Author: felixonmars
Revision: 435763

archrelease: copy trunk to community-x86_64

Added:
  deepin-qt-dbus-factory/repos/community-x86_64/PKGBUILD
(from rev 435762, deepin-qt-dbus-factory/trunk/PKGBUILD)
Deleted:
  deepin-qt-dbus-factory/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-25 12:41:49 UTC (rev 435762)
+++ PKGBUILD2019-02-25 12:42:57 UTC (rev 435763)
@@ -1,27 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-qt-dbus-factory
-pkgver=1.0.9.20190220
-_commit=29dfd28173a51e3a97f6dfb6865a0a043f28aa79
-pkgrel=1
-pkgdesc='A repository stores auto-generated Qt5 dbus code'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/dde-qt-dbus-factory";
-license=('GPL3')
-depends=('qt5-base')
-makedepends=('python')
-source=("$pkgname-$_commit.tar.gz::https://github.com/linuxdeepin/dde-qt-dbus-factory/archive/$_commit.tar.gz";)
-sha512sums=('535e6edf4f95fc295f30fa31a523c3634bb4ad5d45e4f512fe2398db6f92f3844dab7e1f047f66e9d5a9fd5b54bf44416cea9564dc0c9e36738c257374593dac')
-
-build() {
-  cd dde-qt-dbus-factory-$_commit
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-qt-dbus-factory-$_commit
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-qt-dbus-factory/repos/community-x86_64/PKGBUILD (from rev 
435762, deepin-qt-dbus-factory/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-25 12:42:57 UTC (rev 435763)
@@ -0,0 +1,26 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-qt-dbus-factory
+pkgver=1.1.0
+pkgrel=1
+pkgdesc='A repository stores auto-generated Qt5 dbus code'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/dde-qt-dbus-factory";
+license=('GPL3')
+depends=('qt5-base')
+makedepends=('python')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-qt-dbus-factory/archive/$pkgver.tar.gz";)
+sha512sums=('f82c230917d00ad42ca14eca42106dbd3168c6157f19a30f3cf1c723bddbd897fc4dc5c1a235a2e4c362b040239fb4565b0c6ce8324bac45ead825f861de1608')
+
+build() {
+  cd dde-qt-dbus-factory-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-qt-dbus-factory-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 12:44:34
  Author: felixonmars
Revision: 435764

upgpkg: deepin-control-center 4.9.4-1

Modified:
  deepin-control-center/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 12:42:57 UTC (rev 435763)
+++ PKGBUILD2019-02-25 12:44:34 UTC (rev 435764)
@@ -3,8 +3,8 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-control-center
-pkgver=4.9.2.1
-pkgrel=2
+pkgver=4.9.4
+pkgrel=1
 pkgdesc='New control center for linux deepin'
 arch=('x86_64')
 url="https://github.com/linuxdeepin/dde-control-center";
@@ -12,7 +12,7 @@
 depends=('desktop-file-utils' 'dtkwidget' 'deepin-account-faces' 'deepin-api' 
'geoip'
  'geoip-database' 'geoip-database-extra' 'deepin-daemon' 'startdde' 
'networkmanager-qt'
  'deepin-qt-dbus-factory' 'deepin-qt5integration' 
'deepin-network-utils')
-makedepends=('deepin-dock' 'qt5-tools')
+makedepends=('deepin-dock' 'cmake')
 optdepends=('redshift: automatic color temperature support'
 'networkmanager-openconnect: for OpenConnect support'
 'networkmanager-openvpn: for OpenVPN support'
@@ -25,15 +25,20 @@
 replaces=('dde-control-center' 'dde-dock-applets')
 groups=('deepin')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-control-center/archive/$pkgver.tar.gz";)
-sha512sums=('ee57c8217d3c4adac299780783634f116d82472286605040c5edcad9e55a83d3c4b44ce2e037666005da8db0a20d98bbd7ecb68d60b4ca38109d85f2ab76c72c')
+sha512sums=('421817d5a39e8c8ee747e1ab029367b3acb64f1f81acd6708cf0045ef547fceb9575ef779d56ca9fc58ed03d92c6615b6b10f205e76650f57f5b367a2369b844')
 
+prepare() {
+  mkdir -p build
+}
+
 build() {
-  cd dde-control-center-$pkgver
-  qmake-qt5 QMAKE_CFLAGS_ISYSTEM= PREFIX=/usr DISABLE_SYS_UPDATE=YES
+  cd build
+  cmake -DDISABLE_SYS_UPDATE=YES -DCMAKE_INSTALL_PREFIX=/usr \
+../dde-control-center-$pkgver
   make
 }
 
 package() {
-  cd dde-control-center-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
+  cd build
+  make DESTDIR="$pkgdir" install
 }


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

2019-02-25 Thread Alexander Rødseth via arch-commits
Date: Monday, February 25, 2019 @ 12:45:09
  Author: arodseth
Revision: 435765

upgpkg: libhubbub 0.3.5-2

Modified:
  libhubbub/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 12:44:34 UTC (rev 435764)
+++ PKGBUILD2019-02-25 12:45:09 UTC (rev 435765)
@@ -4,18 +4,18 @@
 
 pkgname=libhubbub
 pkgver=0.3.5
-pkgrel=1
+pkgrel=2
 pkgdesc='HTML5 compliant parsing library'
-arch=('x86_64')
-url='http://www.netsurf-browser.org/projects/hubbub/' # no https available
-license=('MIT')
+arch=(x86_64)
+url='https://www.netsurf-browser.org/projects/hubbub/'
+license=(MIT)
 depends=('libparserutils>=0.2.4')
 makedepends=('netsurf-buildsystem>=1.7')
-source=("http://download.netsurf-browser.org/libs/releases/$pkgname-$pkgver-src.tar.gz";)
 # no https available
+source=("https://download.netsurf-browser.org/libs/releases/$pkgname-$pkgver-src.tar.gz";)
 # no https available
 sha256sums=('aa82e36be124e582e307929eee81a42ffaf4355b2986934917271d65d20cd88f')
 
 build() {
-  make -C "$pkgname-$pkgver" \
+  make -C $pkgname-$pkgver \
 INCLUDEDIR=include \
 LIBDIR=lib \
 PREFIX=/usr \
@@ -23,7 +23,7 @@
 }
 
 package() {
-  make -C "$pkgname-$pkgver" \
+  make -C $pkgname-$pkgver \
 INCLUDEDIR=include \
 LIBDIR=lib \
 PREFIX=/usr \
@@ -31,7 +31,7 @@
 COMPONENT_TYPE='lib-shared' \
 install
 
-  install -Dm644 "$pkgname-$pkgver/COPYING" \
+  install -Dm644 $pkgname-$pkgver/COPYING \
 "$pkgdir/usr/share/licenses/$pkgname/COPYING"
 }
 


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

2019-02-25 Thread Alexander Rødseth via arch-commits
Date: Monday, February 25, 2019 @ 12:46:05
  Author: arodseth
Revision: 435766

archrelease: copy trunk to community-x86_64

Added:
  libhubbub/repos/community-x86_64/PKGBUILD
(from rev 435765, libhubbub/trunk/PKGBUILD)
Deleted:
  libhubbub/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-25 12:45:09 UTC (rev 435765)
+++ PKGBUILD2019-02-25 12:46:05 UTC (rev 435766)
@@ -1,38 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Daniel J Griffiths 
-# Contributor: Paulo Matias 
-
-pkgname=libhubbub
-pkgver=0.3.5
-pkgrel=1
-pkgdesc='HTML5 compliant parsing library'
-arch=('x86_64')
-url='http://www.netsurf-browser.org/projects/hubbub/' # no https available
-license=('MIT')
-depends=('libparserutils>=0.2.4')
-makedepends=('netsurf-buildsystem>=1.7')
-source=("http://download.netsurf-browser.org/libs/releases/$pkgname-$pkgver-src.tar.gz";)
 # no https available
-sha256sums=('aa82e36be124e582e307929eee81a42ffaf4355b2986934917271d65d20cd88f')
-
-build() {
-  make -C "$pkgname-$pkgver" \
-INCLUDEDIR=include \
-LIBDIR=lib \
-PREFIX=/usr \
-COMPONENT_TYPE='lib-shared'
-}
-
-package() {
-  make -C "$pkgname-$pkgver" \
-INCLUDEDIR=include \
-LIBDIR=lib \
-PREFIX=/usr \
-DESTDIR="$pkgdir" \
-COMPONENT_TYPE='lib-shared' \
-install
-
-  install -Dm644 "$pkgname-$pkgver/COPYING" \
-"$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-# vim: ts=2 sw=2 et:

Copied: libhubbub/repos/community-x86_64/PKGBUILD (from rev 435765, 
libhubbub/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-25 12:46:05 UTC (rev 435766)
@@ -0,0 +1,38 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Daniel J Griffiths 
+# Contributor: Paulo Matias 
+
+pkgname=libhubbub
+pkgver=0.3.5
+pkgrel=2
+pkgdesc='HTML5 compliant parsing library'
+arch=(x86_64)
+url='https://www.netsurf-browser.org/projects/hubbub/'
+license=(MIT)
+depends=('libparserutils>=0.2.4')
+makedepends=('netsurf-buildsystem>=1.7')
+source=("https://download.netsurf-browser.org/libs/releases/$pkgname-$pkgver-src.tar.gz";)
 # no https available
+sha256sums=('aa82e36be124e582e307929eee81a42ffaf4355b2986934917271d65d20cd88f')
+
+build() {
+  make -C $pkgname-$pkgver \
+INCLUDEDIR=include \
+LIBDIR=lib \
+PREFIX=/usr \
+COMPONENT_TYPE='lib-shared'
+}
+
+package() {
+  make -C $pkgname-$pkgver \
+INCLUDEDIR=include \
+LIBDIR=lib \
+PREFIX=/usr \
+DESTDIR="$pkgdir" \
+COMPONENT_TYPE='lib-shared' \
+install
+
+  install -Dm644 $pkgname-$pkgver/COPYING \
+"$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+# vim: ts=2 sw=2 et:


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 12:46:26
  Author: felixonmars
Revision: 435769

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-http-types/repos/community-staging-x86_64/
  haskell-http-types/repos/community-staging-x86_64/PKGBUILD
(from rev 435768, haskell-http-types/trunk/PKGBUILD)

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

Copied: haskell-http-types/repos/community-staging-x86_64/PKGBUILD (from rev 
435768, haskell-http-types/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-25 12:46:26 UTC (rev 435769)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+
+_hkgname=http-types
+pkgname=haskell-http-types
+pkgver=0.12.3
+pkgrel=1
+pkgdesc="Generic HTTP types for Haskell (for both client and server code)."
+url="https://hackage.haskell.org/package/${_hkgname}";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-case-insensitive')
+makedepends=('ghc' 'haskell-doctest' 'haskell-hspec' 'haskell-quickcheck'
+ 'haskell-quickcheck-instances')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('fdaf95cfd29ed47445af4ad6349fcbbf4dcd8341f3963da453f8be5eccae4757904d3c4e7a8719ab576a7e7857aaa035ecfc1aa8f99f4ec6fce950c7ccc76597')
+
+build() {
+cd $_hkgname-$pkgver
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
-fnetwork-uri
+runhaskell Setup build
+runhaskell Setup register   --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 12:46:08
  Author: felixonmars
Revision: 435767

upgpkg: haskell-http-types 0.12.3-1

rebuild with http-types 0.12.3

Modified:
  haskell-http-types/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 12:46:05 UTC (rev 435766)
+++ PKGBUILD2019-02-25 12:46:08 UTC (rev 435767)
@@ -3,8 +3,8 @@
 
 _hkgname=http-types
 pkgname=haskell-http-types
-pkgver=0.12.2
-pkgrel=14
+pkgver=0.12.3
+pkgrel=1
 pkgdesc="Generic HTTP types for Haskell (for both client and server code)."
 url="https://hackage.haskell.org/package/${_hkgname}";
 license=('BSD')
@@ -13,7 +13,7 @@
 makedepends=('ghc' 'haskell-doctest' 'haskell-hspec' 'haskell-quickcheck'
  'haskell-quickcheck-instances')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('aa77f93a989f89a32de335fb95cbbf7df126005f7daaed002811c60f6669f6ab0c10fdf1dfb747f00d07102ed31e23dbb1c590a47b7366f24967e038e7da8859')
+sha512sums=('fdaf95cfd29ed47445af4ad6349fcbbf4dcd8341f3963da453f8be5eccae4757904d3c4e7a8719ab576a7e7857aaa035ecfc1aa8f99f4ec6fce950c7ccc76597')
 
 build() {
 cd $_hkgname-$pkgver


[arch-commits] Commit in deepin-control-center/repos/community-x86_64 (2 files)

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 12:46:10
  Author: felixonmars
Revision: 435768

archrelease: copy trunk to community-x86_64

Added:
  deepin-control-center/repos/community-x86_64/PKGBUILD
(from rev 435765, deepin-control-center/trunk/PKGBUILD)
Deleted:
  deepin-control-center/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-25 12:46:08 UTC (rev 435767)
+++ PKGBUILD2019-02-25 12:46:10 UTC (rev 435768)
@@ -1,39 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-control-center
-pkgver=4.9.2.1
-pkgrel=2
-pkgdesc='New control center for linux deepin'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/dde-control-center";
-license=('GPL3')
-depends=('desktop-file-utils' 'dtkwidget' 'deepin-account-faces' 'deepin-api' 
'geoip'
- 'geoip-database' 'geoip-database-extra' 'deepin-daemon' 'startdde' 
'networkmanager-qt'
- 'deepin-qt-dbus-factory' 'deepin-qt5integration' 
'deepin-network-utils')
-makedepends=('deepin-dock' 'qt5-tools')
-optdepends=('redshift: automatic color temperature support'
-'networkmanager-openconnect: for OpenConnect support'
-'networkmanager-openvpn: for OpenVPN support'
-'networkmanager-pptp: for PPTP support'
-'networkmanager-strongswan: for StrongSwan support'
-'networkmanager-vpnc: for VPNC support'
-'network-manager-sstp: for SSTP support')
-# Not packaged: network-manager-l2tp
-conflicts=('dde-control-center' 'dde-dock-applets')
-replaces=('dde-control-center' 'dde-dock-applets')
-groups=('deepin')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-control-center/archive/$pkgver.tar.gz";)
-sha512sums=('ee57c8217d3c4adac299780783634f116d82472286605040c5edcad9e55a83d3c4b44ce2e037666005da8db0a20d98bbd7ecb68d60b4ca38109d85f2ab76c72c')
-
-build() {
-  cd dde-control-center-$pkgver
-  qmake-qt5 QMAKE_CFLAGS_ISYSTEM= PREFIX=/usr DISABLE_SYS_UPDATE=YES
-  make
-}
-
-package() {
-  cd dde-control-center-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-control-center/repos/community-x86_64/PKGBUILD (from rev 435765, 
deepin-control-center/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-25 12:46:10 UTC (rev 435768)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-control-center
+pkgver=4.9.4
+pkgrel=1
+pkgdesc='New control center for linux deepin'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/dde-control-center";
+license=('GPL3')
+depends=('desktop-file-utils' 'dtkwidget' 'deepin-account-faces' 'deepin-api' 
'geoip'
+ 'geoip-database' 'geoip-database-extra' 'deepin-daemon' 'startdde' 
'networkmanager-qt'
+ 'deepin-qt-dbus-factory' 'deepin-qt5integration' 
'deepin-network-utils')
+makedepends=('deepin-dock' 'cmake')
+optdepends=('redshift: automatic color temperature support'
+'networkmanager-openconnect: for OpenConnect support'
+'networkmanager-openvpn: for OpenVPN support'
+'networkmanager-pptp: for PPTP support'
+'networkmanager-strongswan: for StrongSwan support'
+'networkmanager-vpnc: for VPNC support'
+'network-manager-sstp: for SSTP support')
+# Not packaged: network-manager-l2tp
+conflicts=('dde-control-center' 'dde-dock-applets')
+replaces=('dde-control-center' 'dde-dock-applets')
+groups=('deepin')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-control-center/archive/$pkgver.tar.gz";)
+sha512sums=('421817d5a39e8c8ee747e1ab029367b3acb64f1f81acd6708cf0045ef547fceb9575ef779d56ca9fc58ed03d92c6615b6b10f205e76650f57f5b367a2369b844')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake -DDISABLE_SYS_UPDATE=YES -DCMAKE_INSTALL_PREFIX=/usr \
+../dde-control-center-$pkgver
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 12:47:20
  Author: felixonmars
Revision: 435770

upgpkg: haskell-hjsonpointer 1.5.0-14

rebuild with http-types 0.12.3

Modified:
  haskell-hjsonpointer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 12:46:26 UTC (rev 435769)
+++ PKGBUILD2019-02-25 12:47:20 UTC (rev 435770)
@@ -4,7 +4,7 @@
 _hkgname=hjsonpointer
 pkgname=haskell-hjsonpointer
 pkgver=1.5.0
-pkgrel=13
+pkgrel=14
 pkgdesc="JSON Pointer library"
 url="https://github.com/haskell-foundation/foundation";
 license=("MIT")


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 12:47:37
  Author: felixonmars
Revision: 435771

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hjsonpointer/repos/community-staging-x86_64/PKGBUILD (from rev 
435770, haskell-hjsonpointer/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-25 12:47:37 UTC (rev 435771)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hjsonpointer
+pkgname=haskell-hjsonpointer
+pkgver=1.5.0
+pkgrel=14
+pkgdesc="JSON Pointer library"
+url="https://github.com/haskell-foundation/foundation";
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-hashable' 
'haskell-unordered-containers'
+ 'haskell-vector')
+makedepends=('ghc' 'haskell-hspec' 'haskell-http-types' 'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('dd47b98884982d06892c82f76385650ab76ae4ade31ef9ead1e1dcdb4f0d24d9c2268023cc0f232e7febd7ea5f7058b2561922b8e99a04eb8afd9e96935d7336')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "MIT-LICENSE.txt" 
"${pkgdir}/usr/share/licenses/${pkgname}/MIT-LICENSE.txt"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/MIT-LICENSE.txt"
+}


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

2019-02-25 Thread Felix Yan via arch-commits
Date: Monday, February 25, 2019 @ 12:48:49
  Author: felixonmars
Revision: 435772

upgpkg: haskell-http-api-data 0.4-3

rebuild with http-types 0.12.3

Modified:
  haskell-http-api-data/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-25 12:47:37 UTC (rev 435771)
+++ PKGBUILD2019-02-25 12:48:49 UTC (rev 435772)
@@ -4,7 +4,7 @@
 _hkgname=http-api-data
 pkgname=haskell-http-api-data
 pkgver=0.4
-pkgrel=2
+pkgrel=3
 pkgdesc="Converting to/from HTTP API data like URL pieces, headers and query 
parameters."
 url="https://github.com/fizruk/http-api-data";
 license=("BSD")


  1   2   3   4   >