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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Saturday, February 2, 2019 @ 04:44:06
  Author: arojas
Revision: 345061

archrelease: copy trunk to testing-x86_64

Added:
  qt5-webkit/repos/testing-x86_64/
  qt5-webkit/repos/testing-x86_64/PKGBUILD
(from rev 345060, qt5-webkit/trunk/PKGBUILD)
  qt5-webkit/repos/testing-x86_64/qt5-webkit-gcc7.patch
(from rev 345060, qt5-webkit/trunk/qt5-webkit-gcc7.patch)
  qt5-webkit/repos/testing-x86_64/qt5-webkit-null-pointer-dereference.patch
(from rev 345060, 
qt5-webkit/trunk/qt5-webkit-null-pointer-dereference.patch)

---+
 PKGBUILD  |   70 
 qt5-webkit-gcc7.patch |   34 +
 qt5-webkit-null-pointer-dereference.patch |   17 ++
 3 files changed, 121 insertions(+)

Copied: qt5-webkit/repos/testing-x86_64/PKGBUILD (from rev 345060, 
qt5-webkit/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-02-02 04:44:06 UTC (rev 345061)
@@ -0,0 +1,70 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-webkit
+_qtver=5.212.0-alpha2
+pkgver=${_qtver/-/}
+pkgrel=23
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Classes for a WebKit2 based implementation and a new QML API'
+depends=(qt5-location qt5-sensors qt5-webchannel libwebp libxslt libxcomposite 
gst-plugins-base hyphen)
+makedepends=(cmake ruby gperf python2 qt5-doc qt5-tools)
+optdepends=('gst-plugins-good: Webm codec support')
+conflicts=(qt5-webkit-ng)
+replaces=(qt5-webkit-ng)
+_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"
+source=("https://github.com/annulen/webkit/releases/download/qtwebkit-$_qtver/qtwebkit-$_qtver.tar.xz;
+qt5-webkit-gcc7.patch
+qt5-webkit-null-pointer-dereference.patch
+
qt5-webkit-trojita-1.patch::"https://github.com/annulen/webkit/commit/6faf1121.patch;
+
qt5-webkit-trojita-2.patch::"https://github.com/annulen/webkit/commit/76420459.patch;
+
qt5-webkit-cmake3.10.patch::"https://github.com/annulen/webkit/commit/f51554bf.patch;)
+sha256sums=('f8f901de567e11fc5659402b6b827eac75505ff9c5072d8e919aa306003f8f8a'
+'f108833562d766d4c086026f9202b2ebc8c19e97fddedce952afed78df3c0720'
+'510e1f78c2bcd76909703a097dbc1d5c9c6ce4cd94883c26138f09cc10121f43'
+'bd22bd7842d5ad1cb1f5a4b6acb2674509732274d5f9dc51943144dff76996ae'
+'b42b70fd2a4a36b0ff48fc4e0dc386b3dda373e6fec18f3be9f5e2d3b04e0aa3'
+'b4e6c85fcb062e7cc141b0e34977bcc4f9c8677c773fc4b310151b85f51e7189')
+
+prepare() {
+  mkdir -p build
+
+# Fix crashes with GCC7 https://bugs.webkit.org/show_bug.cgi?id=173407
+  cd qtwebkit-$_qtver
+  patch -p1 -i ../qt5-webkit-gcc7.patch
+# Fix layout issues in trojita https://github.com/annulen/webkit/issues/511
+  patch -p1 -i ../qt5-webkit-trojita-1.patch
+  patch -p1 -i ../qt5-webkit-trojita-2.patch
+# Fix null point dereference (Fedora) 
https://github.com/annulen/webkit/issues/573
+  patch -p1 -i ../qt5-webkit-null-pointer-dereference.patch
+# Fix build with cmake 3.10
+  patch -p1 -i ../qt5-webkit-cmake3.10.patch
+}
+
+build() {
+  cd build
+
+  cmake ../qtwebkit-$_qtver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DPORT=Qt \
+-DENABLE_TOOLS=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+
+# Fix pkgconfig files
+  sed -e 's|qt/Qt5WebKit|qt/QtWebKit|' -i 
"$pkgdir"/usr/lib/pkgconfig/Qt5WebKit.pc
+  sed -e 's|qt/Qt5WebKitWidgets|qt/QtWebKitWidgets|' -i 
"$pkgdir"/usr/lib/pkgconfig/Qt5WebKitWidgets.pc
+  sed -e '/Name/a Description: Qt WebKit module' -i 
"$pkgdir"/usr/lib/pkgconfig/Qt5WebKit.pc
+  sed -e '/Name/a Description: Qt WebKitWidgets module' -i 
"$pkgdir"/usr/lib/pkgconfig/Qt5WebKitWidgets.pc
+}

Copied: qt5-webkit/repos/testing-x86_64/qt5-webkit-gcc7.patch (from rev 345060, 
qt5-webkit/trunk/qt5-webkit-gcc7.patch)
===
--- testing-x86_64/qt5-webkit-gcc7.patch(rev 0)
+++ testing-x86_64/qt5-webkit-gcc7.patch2019-02-02 04:44:06 UTC (rev 
345061)
@@ -0,0 +1,34 @@
+diff -u -r webkitgtk-2.16.5/Source/WTF/wtf/text/StringImpl.h 
webkitgtk-2.16.5-gcc7/Source/WTF/wtf/text/StringImpl.h
+--- webkitgtk-2.16.5/Source/WTF/wtf/text/StringImpl.h  2017-02-20 
17:20:15.0 +0100
 webkitgtk-2.16.5-gcc7/Source/WTF/wtf/text/StringImpl.h 2017-06-27 
13:13:57.801527350 +0200
+@@ -581,29 +581,7 @@
+ // FIXME: Does this really belong in StringImpl?
+ template  static void copyChars(T* destination, const T* 
source, unsigned numCharacters)
+ {
+-if (numCharacters == 1) {
+-

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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Saturday, February 2, 2019 @ 04:43:31
  Author: arojas
Revision: 345060

Qt 5.12.1 rebuild

Modified:
  qt5-webkit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 23:26:28 UTC (rev 345059)
+++ PKGBUILD2019-02-02 04:43:31 UTC (rev 345060)
@@ -5,7 +5,7 @@
 pkgname=qt5-webkit
 _qtver=5.212.0-alpha2
 pkgver=${_qtver/-/}
-pkgrel=22
+pkgrel=23
 arch=(x86_64)
 url='https://www.qt.io'
 license=(GPL3 LGPL3 FDL custom)


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

2019-02-01 Thread Anatol Pomozov via arch-commits
Date: Saturday, February 2, 2019 @ 03:49:59
  Author: anatolik
Revision: 429148

archrelease: copy trunk to community-x86_64

Added:
  crystal/repos/community-x86_64/PKGBUILD
(from rev 429147, crystal/trunk/PKGBUILD)
Deleted:
  crystal/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-02 03:49:30 UTC (rev 429147)
+++ PKGBUILD2019-02-02 03:49:59 UTC (rev 429148)
@@ -1,71 +0,0 @@
-# Maintainer: Anatol Pomozov 
-# Contributor: Jonne Haß 
-
-pkgname=crystal
-pkgver=0.27.0
-pkgrel=1
-pkgdesc='The Crystal Programming Language'
-arch=(x86_64)
-url='http://crystal-lang.org'
-license=(Apache)
-depends=(gc libatomic_ops pcre libevent llvm6-libs)
-makedepends=(libxml2 llvm6 crystal) # to compile version N we need crystal 
compiler of N-1 version
-checkdepends=(libyaml libxml2 gmp inetutils git)
-optdepends=('shards: crystal language package manager'
-'libyaml: For YAML support'
-'gmp: For BigInt support'
-'libxml2: For XML support')
-source=(crystal-$pkgver.tar.gz::https://github.com/crystal-lang/crystal/archive/$pkgver.tar.gz)
-sha256sums=('43c8ac1b5c59ccea3cd58c9bd2a7af07a56f96cf1eff1e54d93f648b5340e83a')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i 's|Please install shards: https://github.com/ysbaddaden/shards|Please 
install shards: pacman -S shards|' src/compiler/crystal/command.cr
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  make release=1 \
-   FLAGS="--release --no-debug" \
-   CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
-   CRYSTAL_CONFIG_VERSION="$pkgver" \
-   CRYSTAL_CONFIG_PATH="lib:/usr/lib/crystal" \
-   CRYSTAL_CACHE_DIR="/tmp/crystal"
-  make docs CRYSTAL_CACHE_DIR="/tmp/crystal"
-}
-
-check() {
-  cd $pkgname-$pkgver
-  return # tests require too much RAM, disable it temporary
-
-  make spec CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
-CRYSTAL_CONFIG_VERSION="$pkgver" \
-CRYSTAL_CACHE_DIR="/tmp/crystal" \
-PATH=".build:$PATH"
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  # /usr/bin/crystalcompiled executable
-  # /usr/lib/crystal/   compiler src & core libs
-  # /usr/share/doc/crystal/api  api docs
-  # /usr/share/doc/crystal/samples/ samples
-
-  install -Dm755 ".build/crystal" "$pkgdir/usr/bin/crystal"
-
-  install -dm755 "$pkgdir/usr/lib" "$pkgdir/usr/share/man/man1"
-  cp -r src "$pkgdir/usr/lib/crystal"
-
-  install -dm755 "$pkgdir/usr/share/doc/crystal"
-  cp -r docs "$pkgdir/usr/share/doc/crystal/api"
-  cp -r samples "$pkgdir/usr/share/doc/crystal/"
-
-  install -Dm644 man/crystal.1 "$pkgdir/usr/share/man/man1/"
-
-  install -Dm644 etc/completion.bash 
"$pkgdir/usr/share/bash-completion/completions/crystal"
-  install -Dm644 etc/completion.zsh 
"$pkgdir/usr/share/zsh/site-functions/_crystal"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: crystal/repos/community-x86_64/PKGBUILD (from rev 429147, 
crystal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-02 03:49:59 UTC (rev 429148)
@@ -0,0 +1,71 @@
+# Maintainer: Anatol Pomozov 
+# Contributor: Jonne Haß 
+
+pkgname=crystal
+pkgver=0.27.1
+pkgrel=1
+pkgdesc='The Crystal Programming Language'
+arch=(x86_64)
+url='http://crystal-lang.org'
+license=(Apache)
+depends=(gc libatomic_ops pcre libevent llvm6-libs)
+makedepends=(libxml2 llvm6 crystal) # to compile version N we need crystal 
compiler of N-1 version
+checkdepends=(libyaml libxml2 gmp inetutils git)
+optdepends=('shards: crystal language package manager'
+'libyaml: For YAML support'
+'gmp: For BigInt support'
+'libxml2: For XML support')
+source=(crystal-$pkgver.tar.gz::https://github.com/crystal-lang/crystal/archive/$pkgver.tar.gz)
+sha256sums=('c67274c149e797ca232d2ece50e906e7e3c9c66d6277ce7fa35819c022a82c1b')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's|Please install shards: https://github.com/ysbaddaden/shards|Please 
install shards: pacman -S shards|' src/compiler/crystal/command.cr
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  make release=1 \
+   FLAGS="--release --no-debug" \
+   CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
+   CRYSTAL_CONFIG_VERSION="$pkgver" \
+   CRYSTAL_CONFIG_PATH="lib:/usr/lib/crystal" \
+   CRYSTAL_CACHE_DIR="/tmp/crystal"
+  make docs CRYSTAL_CACHE_DIR="/tmp/crystal"
+}
+
+check() {
+  cd $pkgname-$pkgver
+  return # tests require too much RAM, disable it temporary
+
+  make spec CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
+CRYSTAL_CONFIG_VERSION="$pkgver" \
+CRYSTAL_CACHE_DIR="/tmp/crystal" \
+PATH=".build:$PATH"
+}
+
+package() {
+  cd 

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

2019-02-01 Thread Anatol Pomozov via arch-commits
Date: Saturday, February 2, 2019 @ 03:49:30
  Author: anatolik
Revision: 429147

upgpkg: crystal 0.27.1-1

Modified:
  crystal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-02 00:33:14 UTC (rev 429146)
+++ PKGBUILD2019-02-02 03:49:30 UTC (rev 429147)
@@ -2,7 +2,7 @@
 # Contributor: Jonne Haß 
 
 pkgname=crystal
-pkgver=0.27.0
+pkgver=0.27.1
 pkgrel=1
 pkgdesc='The Crystal Programming Language'
 arch=(x86_64)
@@ -16,7 +16,7 @@
 'gmp: For BigInt support'
 'libxml2: For XML support')
 
source=(crystal-$pkgver.tar.gz::https://github.com/crystal-lang/crystal/archive/$pkgver.tar.gz)
-sha256sums=('43c8ac1b5c59ccea3cd58c9bd2a7af07a56f96cf1eff1e54d93f648b5340e83a')
+sha256sums=('c67274c149e797ca232d2ece50e906e7e3c9c66d6277ce7fa35819c022a82c1b')
 
 prepare() {
   cd $pkgname-$pkgver


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

2019-02-01 Thread Daniel M. Capella via arch-commits
Date: Saturday, February 2, 2019 @ 00:33:14
  Author: polyzen
Revision: 429146

Fix checksum

Modified:
  proselint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 23:29:32 UTC (rev 429145)
+++ PKGBUILD2019-02-02 00:33:14 UTC (rev 429146)
@@ -14,7 +14,7 @@
 conflicts=('python-proselint')
 replaces=('python-proselint')
 
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha512sums=('706c51c7b4546b9a0b448df42e1dc756a29c7f06b0118254c2171c183048c52b029f9d581a43fb284f54f6f999376ca5bd0ff742b241475d16604b57098be169')
+sha512sums=('76200d75a4adfaf4adcb07e2109707ca3cec322170a070d50b80267125d854cb46fb097f9fe7ce3a584aed8afc35b47749842a36b0d3e19286e1709bbf3d94b5')
 
 build() {
   cd $pkgname-$pkgver


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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 23:29:32
  Author: arojas
Revision: 429145

archrelease: copy trunk to community-staging-x86_64

Added:
  skrooge/repos/community-staging-x86_64/
  skrooge/repos/community-staging-x86_64/PKGBUILD
(from rev 429144, skrooge/trunk/PKGBUILD)
  skrooge/repos/community-staging-x86_64/skrooge.changelog
(from rev 429144, skrooge/trunk/skrooge.changelog)
  skrooge/repos/community-staging-x86_64/skrooge.install
(from rev 429144, skrooge/trunk/skrooge.install)

---+
 PKGBUILD  |   47 ++
 skrooge.changelog |  134 
 skrooge.install   |   11 
 3 files changed, 192 insertions(+)

Copied: skrooge/repos/community-staging-x86_64/PKGBUILD (from rev 429144, 
skrooge/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-01 23:29:32 UTC (rev 429145)
@@ -0,0 +1,47 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Ray Rashif 
+# Contributor: Andrea Scarpino 
+# Contributor: neuromante 
+
+pkgname=skrooge
+pkgver=2.17.0
+pkgrel=3
+pkgdesc="A personal finances manager for KDE"
+arch=('x86_64')
+url="https://skrooge.org/;
+license=('GPL')
+depends=('qt5-base' 'qca' 'qt5-script' 'qt5-webkit' 'libofx'
+ 'grantlee' 'kross' 'knewstuff' 'krunner' 'knotifyconfig'
+ 'sqlcipher' 'python' 'hicolor-icon-theme')
+makedepends=('cmake' 'kdoctools' 'extra-cmake-modules' 'qt5-tools' 'patch')
+options=('!emptydirs')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(https://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz{,.sig}
+
sqlcipher4-fix.patch::https://cgit.kde.org/skrooge.git/patch/?id=b370575abe8d80b90e4552f1c027c9b58947a9f1)
+validpgpkeys=('103DC6D087B3A4A2ED975D7EF0C8CED3382A5C4D') #Stephane MANKOWSKI 
(Perso) 
+sha256sums=('19f2d7939b0333a95a129d110c11514f07a06f39b1ec08b42b5f43b6145b036d'
+'SKIP'
+'398806991fb099f8bbd72860f35a11b9ea88c8c5e3f6c6137c3f027087f584a5')
+
+prepare() {
+  cd "${srcdir}"/$pkgname-$pkgver
+  patch -Np1 -i "${srcdir}"/sqlcipher4-fix.patch
+}
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+#   export
+  cmake . -DCMAKE_BUILD_TYPE=Release \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DKDE_INSTALL_LIBDIR=/usr/lib \
+  -DSKG_DESIGNER=OFF
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}

Copied: skrooge/repos/community-staging-x86_64/skrooge.changelog (from rev 
429144, skrooge/trunk/skrooge.changelog)
===
--- community-staging-x86_64/skrooge.changelog  (rev 0)
+++ community-staging-x86_64/skrooge.changelog  2019-02-01 23:29:32 UTC (rev 
429145)
@@ -0,0 +1,134 @@
+2018-12-20 Jaroslav Lichtblau 
+   * skrooge 2.17.0-2 FS#60989 fix
+
+2018-12-17 Jaroslav Lichtblau 
+   * skrooge 2.17.0-1
+
+2018-12-10 Jaroslav Lichtblau 
+   * skrooge 2.16.2-3 FS#60989 fix - did not work
+
+2018-11-05 Jaroslav Lichtblau 
+   * skrooge 2.16.2-1
+
+2018-09-02 Jaroslav Lichtblau 
+   * skrooge 2.15.0-1
+
+2018-06-25 Jaroslav Lichtblau 
+   * skrooge 2.14.0-1
+
+2018-05-12 Jaroslav Lichtblau 
+   * skrooge 2.13.0-1
+
+2018-03-15 Jaroslav Lichtblau 
+   * skrooge 2.12.0-1
+
+2018-02-04 Jaroslav Lichtblau 
+   * skrooge 2.11.0-1
+
+2017-11-09 Jaroslav Lichtblau 
+   * skrooge 2.10.5-1
+
+2017-11-05 Jaroslav Lichtblau 
+   * skrooge 2.10.3-1
+
+2017-10-11 Jaroslav Lichtblau 
+   * skrooge 2.9.0-1
+
+2017-07-11 Jaroslav Lichtblau 
+   * skrooge 2.8.1-5 FS#54540 fix
+
+2017-07-10 Jaroslav Lichtblau 
+   * skrooge 2.8.1-4 clean qt5-tools dependency
+
+2017-05-29 Jaroslav Lichtblau 
+   * skrooge 2.8.1-1
+
+2017-05-11 Jaroslav Lichtblau 
+   * skrooge 2.8.0-1
+
+2017-01-23 Jaroslav Lichtblau 
+   * skrooge 2.7.0-2 Qt 5.8 rebuild
+
+2017-01-23 Jaroslav Lichtblau 
+   * skrooge 2.7.0-1
+
+2016-12-29 Jaroslav Lichtblau 
+   * skrooge 2.6.0-1
+
+2016-10-02 Jaroslav Lichtblau 
+   * skrooge 2.5.0-1
+
+2016-07-04 Jaroslav Lichtblau 
+   * skrooge 2.4.0-3 FS#49880 fix
+
+2016-05-11 Jaroslav Lichtblau 
+   * skrooge 2.4.0-1
+
+2016-05-01 Jaroslav Lichtblau 
+   * skrooge 2.3.0-3 pacman hooks rebuild
+
+2016-02-22 Jaroslav Lichtblau 
+   * skrooge 2.3.0-1
+
+2015-11-30 Jaroslav Lichtblau 
+   * skrooge 2.2.0-1
+
+2015-09-14 Jaroslav Lichtblau 
+   * skrooge 2.1.1-1
+
+2015-08-29 Jaroslav Lichtblau 
+   * skrooge 2.1.0-1
+
+2015-06-27 Jaroslav Lichtblau 
+   * skrooge 2.0.0-1 - kf5 version
+
+2015-06-08 Jaroslav Lichtblau 
+   * skrooge 1.12.5-1
+
+2015-05-15 Jaroslav Lichtblau 
+   * skrooge 1.12.0-1
+
+2015-04-18 Jaroslav Lichtblau 
+   * skrooge 1.11.0-1
+
+2014-10-30 Jaroslav Lichtblau 
+   * skrooge 

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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 23:29:00
  Author: arojas
Revision: 429143

archrelease: copy trunk to community-staging-x86_64

Added:
  libqtxdg/repos/community-staging-x86_64/
  libqtxdg/repos/community-staging-x86_64/PKGBUILD
(from rev 429142, libqtxdg/trunk/PKGBUILD)
  libqtxdg/repos/community-staging-x86_64/rebuild.list
(from rev 429142, libqtxdg/trunk/rebuild.list)

--+
 PKGBUILD |   36 
 rebuild.list |1 +
 2 files changed, 37 insertions(+)

Copied: libqtxdg/repos/community-staging-x86_64/PKGBUILD (from rev 429142, 
libqtxdg/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-01 23:29:00 UTC (rev 429143)
@@ -0,0 +1,36 @@
+# Maintainer: Jerome Leclanche 
+
+pkgname=libqtxdg
+pkgver=3.3.0
+pkgrel=2
+pkgdesc="Library providing freedesktop.org XDG specs implementations for Qt."
+arch=("x86_64")
+url="http://lxqt.org;
+license=("GPL2")
+depends=("libsm" "libxkbcommon-x11" "qt5-base" "qt5-svg")
+makedepends=("cmake")
+source=(
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
+)
+sha256sums=('14202ba8539adcac13ec1b9a74e61a1965b49c61a7a8e35c8a2924c902371287'
+'SKIP')
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

+)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR="$pkgdir" install
+}

Copied: libqtxdg/repos/community-staging-x86_64/rebuild.list (from rev 429142, 
libqtxdg/trunk/rebuild.list)
===
--- community-staging-x86_64/rebuild.list   (rev 0)
+++ community-staging-x86_64/rebuild.list   2019-02-01 23:29:00 UTC (rev 
429143)
@@ -0,0 +1 @@
+deepin-qt5integration


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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 23:29:14
  Author: arojas
Revision: 429144

archrelease: copy trunk to community-staging-x86_64

Added:
  qt5-styleplugins/repos/community-staging-x86_64/
  qt5-styleplugins/repos/community-staging-x86_64/PKGBUILD
(from rev 429143, qt5-styleplugins/trunk/PKGBUILD)
  qt5-styleplugins/repos/community-staging-x86_64/install.sh
(from rev 429143, qt5-styleplugins/trunk/install.sh)

+
 PKGBUILD   |   29 +
 install.sh |   20 
 2 files changed, 49 insertions(+)

Copied: qt5-styleplugins/repos/community-staging-x86_64/PKGBUILD (from rev 
429143, qt5-styleplugins/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-01 23:29:14 UTC (rev 429144)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan 
+# shellcheck disable=SC2034,SC2154,SC2164
+
+pkgname=('qt5-styleplugins')
+pkgver=5.0.0.20170311
+_commit=335dbece103e2cbf6c7cf819ab6672c2956b17b3
+pkgdesc='Additional style plugins for Qt5'
+pkgrel=10
+arch=('x86_64')
+url="https://code.qt.io/cgit/qt/qtstyleplugins;
+license=('LGPL')
+depends=('qt5-base' 'gtk2')
+source=("$pkgname-$_commit.tar.gz::https://github.com/qt/qtstyleplugins/archive/$_commit.tar.gz;)
+sha512sums=('e8c2d0e9c6b0a47cab04ffd2e9384606638905b63a7c1580f9b629bbcc84ebff19743363ffee3dbd31c3de1dcda684211ad3052932b5aa0081e529afd9cbb14d')
+install='install.sh'
+
+build() {
+  cd qtstyleplugins-$_commit
+  qmake PREFIX='/usr' \
+LIBDIR='/usr/lib' \
+QMAKE_CFLAGS_RELEASE="$CFLAGS" \
+QMAKE_CXXFLAGS_RELEASE="$CXXFLAGS"
+  make
+}
+
+package() {
+  cd qtstyleplugins-$_commit
+  make INSTALL_ROOT="$pkgdir" install
+}

Copied: qt5-styleplugins/repos/community-staging-x86_64/install.sh (from rev 
429143, qt5-styleplugins/trunk/install.sh)
===
--- community-staging-x86_64/install.sh (rev 0)
+++ community-staging-x86_64/install.sh 2019-02-01 23:29:14 UTC (rev 429144)
@@ -0,0 +1,20 @@
+_5_0_0_2_changes() {
+echo ':: Upstream added a gtk2 platform theme'
+# shellcheck disable=SC2016
+echo '   unexport `QT_STYLE_OVERRIDE`'
+# shellcheck disable=SC2016
+echo '   export `QT_QPA_PLATFORMTHEME=gtk2`'
+}
+
+post_upgrade() {
+local versions=(
+'5.0.0-2'
+)
+local version
+for version in "${versions[@]}"; do
+if [[ "$( vercmp "${version}" "${2}" )" -eq 1 ]]; then
+# shellcheck disable=SC2091
+"$( printf '_%s_changes' "${version}" | perl -p -e 's/\.|-/_/g' )"
+fi
+done
+}


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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 23:28:46
  Author: arojas
Revision: 429142

archrelease: copy trunk to community-staging-x86_64

Added:
  googlemaps/repos/community-staging-x86_64/
  googlemaps/repos/community-staging-x86_64/PKGBUILD
(from rev 429141, googlemaps/trunk/PKGBUILD)

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

Copied: googlemaps/repos/community-staging-x86_64/PKGBUILD (from rev 429141, 
googlemaps/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-01 23:28:46 UTC (rev 429142)
@@ -0,0 +1,29 @@
+# Maintainer: Gaetan Bisson 
+
+pkgname=googlemaps
+pkgver=20180602
+_commit=54a357f9590d9cf011bf1713589f66bad65e00eb
+pkgrel=3
+pkgdesc='Google Maps plugin for QtLocation'
+url='https://github.com/vladest/googlemaps'
+license=('MIT')
+arch=('x86_64')
+makedepends=('git' 'qt5-tools')
+depends=('qt5-location')
+validpgpkeys=('5DE3E0509C47EA3CF04A42D34AEE18F83AFDEB23')
+source=("git+https://github.com/vladest/googlemaps#commit=${_commit}?signed;)
+sha256sums=('SKIP')
+
+build() {
+   cd "${srcdir}/${pkgname}"
+   install -d build
+   cd build
+   qmake ../googlemaps.pro
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}"
+   cd build
+   make INSTALL_ROOT="${pkgdir}" install
+}


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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 23:28:24
  Author: arojas
Revision: 429141

archrelease: copy trunk to community-staging-x86_64

Added:
  fcitx-qt5/repos/community-staging-x86_64/
  fcitx-qt5/repos/community-staging-x86_64/PKGBUILD
(from rev 429140, fcitx-qt5/trunk/PKGBUILD)

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

Copied: fcitx-qt5/repos/community-staging-x86_64/PKGBUILD (from rev 429140, 
fcitx-qt5/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-01 23:28:24 UTC (rev 429141)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan 
+
+pkgname=fcitx-qt5
+pkgver=1.2.3
+pkgrel=5
+pkgdesc="Qt5 IM Module for Fcitx"
+arch=('x86_64')
+url="https://github.com/fcitx/fcitx-qt5;
+license=('GPL')
+groups=('fcitx-im')
+depends=('fcitx' 'libxkbcommon' 'qt5-base')
+makedepends=('extra-cmake-modules')
+source=("https://download.fcitx-im.org/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+sha512sums=('e3e9a76419caca4eeebf3c149a72ee939a25f463d03dd8461caf44cace310278b08e83d460112f240cd54ed05dba3c5e9732198f0c3d0b9d81c3a444c33ab8d3'
+'SKIP')
+validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

+
+build() {
+  cd $pkgname-$pkgver
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release 
-DCMAKE_INSTALL_LIBDIR=lib .
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make install DESTDIR="$pkgdir"
+}


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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 23:28:11
  Author: arojas
Revision: 429140

archrelease: copy trunk to community-staging-x86_64

Added:
  dtkwm/repos/community-staging-x86_64/
  dtkwm/repos/community-staging-x86_64/PKGBUILD
(from rev 429139, dtkwm/trunk/PKGBUILD)

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

Copied: dtkwm/repos/community-staging-x86_64/PKGBUILD (from rev 429139, 
dtkwm/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-01 23:28:11 UTC (rev 429140)
@@ -0,0 +1,26 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=dtkwm
+pkgver=2.0.9
+pkgrel=4
+pkgdesc='Deepin Tool Kit Wm'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/dtkwm;
+license=('GPL3')
+depends=('dtkcore' 'qt5-x11extras')
+makedepends=('qt5-tools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dtkwm/archive/$pkgver.tar.gz;)
+sha512sums=('eda75c51c22cee1d834b73669152f1840e22d7fd827cac29f41eebe1fbab18364de0cba22b1c80e26ee028b612385299345d8ccb55b9076399f8e42cbc05c2d6')
+
+build() {
+  cd dtkwm-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dtkwm-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}


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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 23:26:51
  Author: arojas
Revision: 429136

archrelease: copy trunk to community-staging-x86_64

Added:
  dtkwidget/repos/community-staging-x86_64/
  dtkwidget/repos/community-staging-x86_64/PKGBUILD
(from rev 429135, dtkwidget/trunk/PKGBUILD)

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

Copied: dtkwidget/repos/community-staging-x86_64/PKGBUILD (from rev 429135, 
dtkwidget/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-01 23:26:51 UTC (rev 429136)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=dtkwidget
+pkgver=2.0.9.16
+pkgrel=2
+pkgdesc='Deepin graphical user interface library'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/dtkwidget;
+license=('GPL3')
+depends=('deepin-qt-dbus-factory' 'dtkcore' 'librsvg' 'qt5-multimedia' 
'qt5-svg' 'qt5-x11extras'
+ 'startup-notification')
+makedepends=('qt5-tools')
+replaces=('deepin-tool-kit')
+conflicts=('deepin-tool-kit<0.3.4')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dtkwidget/archive/$pkgver.tar.gz;)
+sha512sums=('f6df189004004ff8eb25a318c97e85431c06a9f2f33e32cfb675af2c7bdf324a12c5ea9539aad358752b6f9d52a36f83a37ebe7d152e08d0928c069f5c956dbc')
+
+build() {
+  cd dtkwidget-$pkgver
+  LDFLAGS=${LDFLAGS/,-z,now/}
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dtkwidget-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}


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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 23:27:07
  Author: arojas
Revision: 429137

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: deepin-dock/repos/community-staging-x86_64/PKGBUILD (from rev 429136, 
deepin-dock/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-01 23:27:07 UTC (rev 429137)
@@ -0,0 +1,30 @@
+# 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
+}


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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 23:27:53
  Author: arojas
Revision: 429139

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: deepin-qt5integration/repos/community-staging-x86_64/PKGBUILD (from rev 
429138, deepin-qt5integration/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-01 23:27:53 UTC (rev 429139)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-qt5integration
+pkgver=0.3.7.2
+pkgrel=2
+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-qt-dbus-factory/repos (2 files)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 23:27:31
  Author: arojas
Revision: 429138

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: deepin-qt-dbus-factory/repos/community-staging-x86_64/PKGBUILD (from 
rev 429137, deepin-qt-dbus-factory/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-01 23:27:31 UTC (rev 429138)
@@ -0,0 +1,26 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-qt-dbus-factory
+pkgver=1.0.8
+pkgrel=2
+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=('cc824e9491308545345c7f7c85f54c1a5b3d25bd3409f95c0613344ba583013e828a78d0fbcfc6d9930750df0e621bf5b3e8c0ed636445abd7365577f4259c8e')
+
+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 akonadi/repos (3 files)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 23:26:28
  Author: arojas
Revision: 345059

archrelease: copy trunk to staging-x86_64

Added:
  akonadi/repos/kde-unstable-x86_64/
  akonadi/repos/staging-x86_64/
  akonadi/repos/staging-x86_64/PKGBUILD
(from rev 345058, akonadi/trunk/PKGBUILD)

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

Copied: akonadi/repos/staging-x86_64/PKGBUILD (from rev 345058, 
akonadi/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 23:26:28 UTC (rev 345059)
@@ -0,0 +1,41 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=akonadi
+pkgver=18.12.1
+pkgrel=2
+pkgdesc="PIM layer, which provides an asynchronous API to access all kind of 
PIM data"
+arch=(x86_64)
+url='https://kontact.kde.org'
+license=(LGPL)
+depends=(kio kitemmodels mariadb hicolor-icon-theme)
+makedepends=(extra-cmake-modules postgresql qt5-tools boost kdesignerplugin)
+optdepends=('postgresql: PostgreSQL backend')
+conflicts=(akonadi-client)
+provides=(akonadi-client)
+replaces=(akonadi-client)
+source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('9d25e849ac81f552fe0d6232f43901803fa25905d023fd1a7f1451c7220f3290'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 23:25:07
  Author: arojas
Revision: 345058

Qt 5.12.1 rebuild

Modified:
  akonadi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 22:41:18 UTC (rev 345057)
+++ PKGBUILD2019-02-01 23:25:07 UTC (rev 345058)
@@ -5,7 +5,7 @@
 
 pkgname=akonadi
 pkgver=18.12.1
-pkgrel=1
+pkgrel=2
 pkgdesc="PIM layer, which provides an asynchronous API to access all kind of 
PIM data"
 arch=(x86_64)
 url='https://kontact.kde.org'


[arch-commits] Commit in (10 files)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 23:24:56
  Author: arojas
Revision: 429135

Qt 5.12.1 rebuild

Modified:
  deepin-dock/trunk/PKGBUILD
  deepin-qt-dbus-factory/trunk/PKGBUILD
  deepin-qt5integration/trunk/PKGBUILD
  dtkwidget/trunk/PKGBUILD
  dtkwm/trunk/PKGBUILD
  fcitx-qt5/trunk/PKGBUILD
  googlemaps/trunk/PKGBUILD
  libqtxdg/trunk/PKGBUILD
  qt5-styleplugins/trunk/PKGBUILD
  skrooge/trunk/PKGBUILD

---+
 deepin-dock/trunk/PKGBUILD|2 +-
 deepin-qt-dbus-factory/trunk/PKGBUILD |2 +-
 deepin-qt5integration/trunk/PKGBUILD  |2 +-
 dtkwidget/trunk/PKGBUILD  |2 +-
 dtkwm/trunk/PKGBUILD  |2 +-
 fcitx-qt5/trunk/PKGBUILD  |2 +-
 googlemaps/trunk/PKGBUILD |2 +-
 libqtxdg/trunk/PKGBUILD   |2 +-
 qt5-styleplugins/trunk/PKGBUILD   |2 +-
 skrooge/trunk/PKGBUILD|2 +-
 10 files changed, 10 insertions(+), 10 deletions(-)

Modified: deepin-dock/trunk/PKGBUILD
===
--- deepin-dock/trunk/PKGBUILD  2019-02-01 22:06:30 UTC (rev 429134)
+++ deepin-dock/trunk/PKGBUILD  2019-02-01 23:24:56 UTC (rev 429135)
@@ -4,7 +4,7 @@
 
 pkgname=deepin-dock
 pkgver=4.8.9
-pkgrel=1
+pkgrel=2
 pkgdesc='Deepin desktop-environment - dock module'
 arch=('x86_64')
 url="https://github.com/linuxdeepin/dde-dock;

Modified: deepin-qt-dbus-factory/trunk/PKGBUILD
===
--- deepin-qt-dbus-factory/trunk/PKGBUILD   2019-02-01 22:06:30 UTC (rev 
429134)
+++ deepin-qt-dbus-factory/trunk/PKGBUILD   2019-02-01 23:24:56 UTC (rev 
429135)
@@ -4,7 +4,7 @@
 
 pkgname=deepin-qt-dbus-factory
 pkgver=1.0.8
-pkgrel=1
+pkgrel=2
 pkgdesc='A repository stores auto-generated Qt5 dbus code'
 arch=('x86_64')
 url="https://github.com/linuxdeepin/dde-qt-dbus-factory;

Modified: deepin-qt5integration/trunk/PKGBUILD
===
--- deepin-qt5integration/trunk/PKGBUILD2019-02-01 22:06:30 UTC (rev 
429134)
+++ deepin-qt5integration/trunk/PKGBUILD2019-02-01 23:24:56 UTC (rev 
429135)
@@ -2,7 +2,7 @@
 
 pkgname=deepin-qt5integration
 pkgver=0.3.7.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Qt platform theme integration plugins for DDE'
 arch=('x86_64')
 url="https://github.com/linuxdeepin/qt5integration;

Modified: dtkwidget/trunk/PKGBUILD
===
--- dtkwidget/trunk/PKGBUILD2019-02-01 22:06:30 UTC (rev 429134)
+++ dtkwidget/trunk/PKGBUILD2019-02-01 23:24:56 UTC (rev 429135)
@@ -4,7 +4,7 @@
 
 pkgname=dtkwidget
 pkgver=2.0.9.16
-pkgrel=1
+pkgrel=2
 pkgdesc='Deepin graphical user interface library'
 arch=('x86_64')
 url="https://github.com/linuxdeepin/dtkwidget;

Modified: dtkwm/trunk/PKGBUILD
===
--- dtkwm/trunk/PKGBUILD2019-02-01 22:06:30 UTC (rev 429134)
+++ dtkwm/trunk/PKGBUILD2019-02-01 23:24:56 UTC (rev 429135)
@@ -4,7 +4,7 @@
 
 pkgname=dtkwm
 pkgver=2.0.9
-pkgrel=3
+pkgrel=4
 pkgdesc='Deepin Tool Kit Wm'
 arch=('x86_64')
 url="https://github.com/linuxdeepin/dtkwm;

Modified: fcitx-qt5/trunk/PKGBUILD
===
--- fcitx-qt5/trunk/PKGBUILD2019-02-01 22:06:30 UTC (rev 429134)
+++ fcitx-qt5/trunk/PKGBUILD2019-02-01 23:24:56 UTC (rev 429135)
@@ -2,7 +2,7 @@
 
 pkgname=fcitx-qt5
 pkgver=1.2.3
-pkgrel=4
+pkgrel=5
 pkgdesc="Qt5 IM Module for Fcitx"
 arch=('x86_64')
 url="https://github.com/fcitx/fcitx-qt5;

Modified: googlemaps/trunk/PKGBUILD
===
--- googlemaps/trunk/PKGBUILD   2019-02-01 22:06:30 UTC (rev 429134)
+++ googlemaps/trunk/PKGBUILD   2019-02-01 23:24:56 UTC (rev 429135)
@@ -3,7 +3,7 @@
 pkgname=googlemaps
 pkgver=20180602
 _commit=54a357f9590d9cf011bf1713589f66bad65e00eb
-pkgrel=2
+pkgrel=3
 pkgdesc='Google Maps plugin for QtLocation'
 url='https://github.com/vladest/googlemaps'
 license=('MIT')

Modified: libqtxdg/trunk/PKGBUILD
===
--- libqtxdg/trunk/PKGBUILD 2019-02-01 22:06:30 UTC (rev 429134)
+++ libqtxdg/trunk/PKGBUILD 2019-02-01 23:24:56 UTC (rev 429135)
@@ -2,7 +2,7 @@
 
 pkgname=libqtxdg
 pkgver=3.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Library providing freedesktop.org XDG specs implementations for Qt."
 arch=("x86_64")
 url="http://lxqt.org;

Modified: qt5-styleplugins/trunk/PKGBUILD
===
--- qt5-styleplugins/trunk/PKGBUILD 2019-02-01 22:06:30 UTC (rev 429134)
+++ qt5-styleplugins/trunk/PKGBUILD 2019-02-01 23:24:56 UTC (rev 429135)
@@ -5,7 +5,7 @@
 pkgver=5.0.0.20170311
 _commit=335dbece103e2cbf6c7cf819ab6672c2956b17b3
 pkgdesc='Additional style plugins for Qt5'
-pkgrel=9
+pkgrel=10
 

[arch-commits] Commit in qt5-x11extras/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:41:03
  Author: arojas
Revision: 345056

archrelease: copy trunk to staging-x86_64

Added:
  qt5-x11extras/repos/staging-x86_64/
  qt5-x11extras/repos/staging-x86_64/PKGBUILD
(from rev 345055, qt5-x11extras/trunk/PKGBUILD)

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

Copied: qt5-x11extras/repos/staging-x86_64/PKGBUILD (from rev 345055, 
qt5-x11extras/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:41:03 UTC (rev 345056)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-x11extras
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides platform-specific APIs for X11'
+depends=('qt5-base')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('08fb1c40e1562d43087368a5efa39569fa1ad52b72d2360f9fc1fe18b00da366')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:41:18
  Author: arojas
Revision: 345057

archrelease: copy trunk to staging-x86_64

Added:
  qt5-xmlpatterns/repos/staging-x86_64/
  qt5-xmlpatterns/repos/staging-x86_64/PKGBUILD
(from rev 345056, qt5-xmlpatterns/trunk/PKGBUILD)

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

Copied: qt5-xmlpatterns/repos/staging-x86_64/PKGBUILD (from rev 345056, 
qt5-xmlpatterns/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:41:18 UTC (rev 345057)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-xmlpatterns
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Support for XPath, XQuery, XSLT and XML schema validation'
+depends=('qt5-base')
+makedepends=('qt5-declarative')
+optdepends=('qt5-declarative: QML bindings')
+conflicts=('qtchooser')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('76988ca9a7a184b9013b8a5864dad150e4603890c7eb7aecad4baad071802ecb')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:40:41
  Author: arojas
Revision: 345054

archrelease: copy trunk to staging-x86_64

Added:
  qt5-webglplugin/repos/staging-x86_64/
  qt5-webglplugin/repos/staging-x86_64/PKGBUILD
(from rev 345053, qt5-webglplugin/trunk/PKGBUILD)

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

Copied: qt5-webglplugin/repos/staging-x86_64/PKGBUILD (from rev 345053, 
qt5-webglplugin/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:40:41 UTC (rev 345054)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=qt5-webglplugin
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='QPA plugin for running an application via a browser using streamed 
WebGL commands'
+depends=(qt5-websockets qt5-declarative)
+groups=(qt qt5)
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('7ca4f9b6fb8f893fff50b586a4dfb9d6519c33dfaaab6747b462c143ed32a0de')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-webview/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:40:52
  Author: arojas
Revision: 345055

archrelease: copy trunk to staging-x86_64

Added:
  qt5-webview/repos/staging-x86_64/
  qt5-webview/repos/staging-x86_64/PKGBUILD
(from rev 345054, qt5-webview/trunk/PKGBUILD)

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

Copied: qt5-webview/repos/staging-x86_64/PKGBUILD (from rev 345054, 
qt5-webview/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:40:52 UTC (rev 345055)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=qt5-webview
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides a way to display web content in a QML application'
+depends=('qt5-webengine')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('092624ba45913f6c90f7311c96bb5c3e97f2c2b427d834d3669434f97234bc97')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:40:19
  Author: arojas
Revision: 345052

archrelease: copy trunk to staging-x86_64

Added:
  qt5-virtualkeyboard/repos/staging-x86_64/
  qt5-virtualkeyboard/repos/staging-x86_64/PKGBUILD
(from rev 345051, qt5-virtualkeyboard/trunk/PKGBUILD)

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

Copied: qt5-virtualkeyboard/repos/staging-x86_64/PKGBUILD (from rev 345051, 
qt5-virtualkeyboard/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:40:19 UTC (rev 345052)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=qt5-virtualkeyboard
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3')
+pkgdesc='Virtual keyboard framework'
+depends=('qt5-declarative' 'qt5-svg' 'hunspell')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('a9e3ed4786d603314144c7ad29a9fdeb6e5c3f2ea5a27f6545cc9777244cd683')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn} CONFIG+="lang-all handwriting"
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+}


[arch-commits] Commit in qt5-wayland/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:40:31
  Author: arojas
Revision: 345053

archrelease: copy trunk to staging-x86_64

Added:
  qt5-wayland/repos/staging-x86_64/
  qt5-wayland/repos/staging-x86_64/PKGBUILD
(from rev 345052, qt5-wayland/trunk/PKGBUILD)

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

Copied: qt5-wayland/repos/staging-x86_64/PKGBUILD (from rev 345052, 
qt5-wayland/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:40:31 UTC (rev 345053)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-wayland
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides APIs for Wayland'
+depends=('qt5-declarative' 'libxcomposite' 'wayland') # namcap note: wayland 
is needed for nvidia-libgl users
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('88f0507628b3697b0d59349d27b5e60a313a3138927722d6cf981089fff02553')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-serialbus/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:39:47
  Author: arojas
Revision: 345049

archrelease: copy trunk to staging-x86_64

Added:
  qt5-serialbus/repos/staging-x86_64/
  qt5-serialbus/repos/staging-x86_64/PKGBUILD
(from rev 345048, qt5-serialbus/trunk/PKGBUILD)

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

Copied: qt5-serialbus/repos/staging-x86_64/PKGBUILD (from rev 345048, 
qt5-serialbus/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:39:47 UTC (rev 345049)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-serialbus
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Qt module for general purpose serial bus access'
+depends=('qt5-serialport')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('97f0c690c77b0e19a8c90e376ecc94d59b21adb20a90179700d1c514a4c50d74')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-svg/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:40:08
  Author: arojas
Revision: 345051

archrelease: copy trunk to staging-x86_64

Added:
  qt5-svg/repos/staging-x86_64/
  qt5-svg/repos/staging-x86_64/PKGBUILD
(from rev 345050, qt5-svg/trunk/PKGBUILD)

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

Copied: qt5-svg/repos/staging-x86_64/PKGBUILD (from rev 345050, 
qt5-svg/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:40:08 UTC (rev 345051)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-svg
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Classes for displaying the contents of SVG files'
+depends=('qt5-base')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('5bc1f744d32c06f5aa4eff33759568106a995ce21fa1326a247dfa5f783f63c8')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-speech/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:39:58
  Author: arojas
Revision: 345050

archrelease: copy trunk to staging-x86_64

Added:
  qt5-speech/repos/staging-x86_64/
  qt5-speech/repos/staging-x86_64/PKGBUILD
(from rev 345049, qt5-speech/trunk/PKGBUILD)

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

Copied: qt5-speech/repos/staging-x86_64/PKGBUILD (from rev 345049, 
qt5-speech/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:39:58 UTC (rev 345050)
@@ -0,0 +1,41 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=qt5-speech
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Qt module to make text to speech and speech recognition easy'
+depends=(qt5-multimedia)
+makedepends=(flite speech-dispatcher)
+optdepends=('flite: flite TTS backend' 'speech-dispatcher: speech-dispatcher 
TTS backend')
+groups=(qt qt5)
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('147524ba6f97c76784beb315ee939614b7a3b4eb1a6417cc0beea662cf0d9121')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-script/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:39:25
  Author: arojas
Revision: 345047

archrelease: copy trunk to staging-x86_64

Added:
  qt5-script/repos/staging-x86_64/
  qt5-script/repos/staging-x86_64/PKGBUILD
(from rev 345046, qt5-script/trunk/PKGBUILD)

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

Copied: qt5-script/repos/staging-x86_64/PKGBUILD (from rev 345046, 
qt5-script/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:39:25 UTC (rev 345047)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-script
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Classes for making Qt applications scriptable. Provided for Qt 4.x 
compatibility'
+depends=('qt5-base')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('e5c158fb85799404d20d1ec5dd33a25d5f5736807e1008ce626f666a52c80624')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-scxml/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:39:35
  Author: arojas
Revision: 345048

archrelease: copy trunk to staging-x86_64

Added:
  qt5-scxml/repos/staging-x86_64/
  qt5-scxml/repos/staging-x86_64/PKGBUILD
(from rev 345047, qt5-scxml/trunk/PKGBUILD)

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

Copied: qt5-scxml/repos/staging-x86_64/PKGBUILD (from rev 345047, 
qt5-scxml/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:39:35 UTC (rev 345048)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=qt5-scxml
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Static and runtime integration of SCXML models into Qt code'
+depends=('qt5-declarative')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('59a2aa1000fe03b0a3eff6fddd21f782e305408fcdd7af1f564a382331cb20b7')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:39:14
  Author: arojas
Revision: 345046

archrelease: copy trunk to staging-x86_64

Added:
  qt5-remoteobjects/repos/staging-x86_64/
  qt5-remoteobjects/repos/staging-x86_64/PKGBUILD
(from rev 345045, qt5-remoteobjects/trunk/PKGBUILD)

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

Copied: qt5-remoteobjects/repos/staging-x86_64/PKGBUILD (from rev 345045, 
qt5-remoteobjects/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:39:14 UTC (rev 345046)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=qt5-remoteobjects
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Inter-process communication (IPC) module developed for Qt'
+depends=(qt5-base)
+makedepends=(qt5-declarative)
+optdepends=('qt5-declarative: QML bindings')
+groups=(qt qt5)
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('f18cfde8d060d76f5f56ffb701a27f6e0c39b5abdae3dbac933dbb41d191f740')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:39:02
  Author: arojas
Revision: 345045

archrelease: copy trunk to staging-x86_64

Added:
  qt5-quickcontrols2/repos/staging-x86_64/
  qt5-quickcontrols2/repos/staging-x86_64/PKGBUILD
(from rev 345044, qt5-quickcontrols2/trunk/PKGBUILD)

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

Copied: qt5-quickcontrols2/repos/staging-x86_64/PKGBUILD (from rev 345044, 
qt5-quickcontrols2/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:39:02 UTC (rev 345045)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-quickcontrols2
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Next generation user interface controls based on Qt Quick'
+depends=('qt5-declarative')
+optdepends=('qt5-graphicaleffects: for the Material style')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('caa47b6d771b11c65d595fdd0f0942c3d78cda2884d318e3b1da8ec67155a8e7')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:38:52
  Author: arojas
Revision: 345044

archrelease: copy trunk to staging-x86_64

Added:
  qt5-quickcontrols/repos/staging-x86_64/
  qt5-quickcontrols/repos/staging-x86_64/PKGBUILD
(from rev 345043, qt5-quickcontrols/trunk/PKGBUILD)

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

Copied: qt5-quickcontrols/repos/staging-x86_64/PKGBUILD (from rev 345043, 
qt5-quickcontrols/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:38:52 UTC (rev 345044)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-quickcontrols
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Reusable Qt Quick based UI controls to create classic desktop-style 
user interfaces'
+depends=('qt5-declarative')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('15164b00921352b5145a4fc3be0015b8521138a0cb1ecfb9811f39fd35ecd62c')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:38:41
  Author: arojas
Revision: 345043

archrelease: copy trunk to staging-x86_64

Added:
  qt5-networkauth/repos/staging-x86_64/
  qt5-networkauth/repos/staging-x86_64/PKGBUILD
(from rev 345042, qt5-networkauth/trunk/PKGBUILD)

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

Copied: qt5-networkauth/repos/staging-x86_64/PKGBUILD (from rev 345042, 
qt5-networkauth/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:38:41 UTC (rev 345043)
@@ -0,0 +1,39 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=qt5-networkauth
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Network authentication module'
+depends=(qt5-base)
+groups=(qt qt5)
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('090fbb6be35b2f2edf7cc4cb32f0f9c27a9a66defa06f6d23e1397836e31d44c')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-multimedia/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:38:30
  Author: arojas
Revision: 345042

archrelease: copy trunk to staging-x86_64

Added:
  qt5-multimedia/repos/staging-x86_64/
  qt5-multimedia/repos/staging-x86_64/PKGBUILD
(from rev 345041, qt5-multimedia/trunk/PKGBUILD)

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

Copied: qt5-multimedia/repos/staging-x86_64/PKGBUILD (from rev 345041, 
qt5-multimedia/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:38:30 UTC (rev 345042)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-multimedia
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Classes for audio, video, radio and camera functionality'
+depends=('qt5-base' 'gst-plugins-base' 'libpulse' 'openal')
+makedepends=('qt5-declarative' 'gst-plugins-bad')
+optdepends=('qt5-declarative: QML bindings' 'gst-plugins-good: camera support, 
additional plugins'
+'gst-plugins-bad: camera support, additional plugins' 
'gst-plugins-ugly: additional plugins'
+'gst-libav: ffmpeg plugin')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('9c5ba11225f57d3a8124f109514443e290a9eb94e063a5b1f78e63edfb5f0b18')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-gamepad/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:37:58
  Author: arojas
Revision: 345039

archrelease: copy trunk to staging-x86_64

Added:
  qt5-gamepad/repos/staging-x86_64/
  qt5-gamepad/repos/staging-x86_64/PKGBUILD
(from rev 345038, qt5-gamepad/trunk/PKGBUILD)

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

Copied: qt5-gamepad/repos/staging-x86_64/PKGBUILD (from rev 345038, 
qt5-gamepad/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:37:58 UTC (rev 345039)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=qt5-gamepad
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Adds support for getting events from gamepad devices'
+depends=('qt5-base' 'sdl2')
+makedepends=('qt5-declarative')
+optdepends=('qt5-declarative: QML bindings')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('717c11f8fba4e23c0096fcf3161d43223956038e866fcd7a18d2255755415d62')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-examples/repos (staging-any staging-any/PKGBUILD)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:37:34
  Author: arojas
Revision: 345038

archrelease: copy trunk to staging-any

Added:
  qt5-examples/repos/staging-any/
  qt5-examples/repos/staging-any/PKGBUILD
(from rev 345037, qt5-examples/trunk/PKGBUILD)

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

Copied: qt5-examples/repos/staging-any/PKGBUILD (from rev 345037, 
qt5-examples/trunk/PKGBUILD)
===
--- staging-any/PKGBUILD(rev 0)
+++ staging-any/PKGBUILD2019-02-01 22:37:34 UTC (rev 345038)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Michael Hansen 
+
+pkgname=qt5-examples
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('any')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Examples and demos from qt5 documentation'
+depends=('qt5-doc')
+groups=('qt' 'qt5')
+_pkgfqn="qt-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/single/${_pkgfqn}.tar.xz;)
+sha256sums=('caffbd625c7bc10ff8c5c7a27dbc7d84fa4de146975c0e1ffe904b514ccd6da4')
+
+package() {
+  _base="$pkgdir"/usr/share/doc/qt/examples
+
+  # The various example dirs have conflicting .pro files, but
+  # QtCreator requires them to be in the same top-level directory.
+  # Matching the Qt5 installer, only the qtbase project is kept.
+  mkdir -p $_base
+  cp ${_pkgfqn}/qtbase/examples/examples.pro $_base
+
+  _fdirs=$(find "${_pkgfqn}" -maxdepth 2 -type d -name examples)
+  for _dir in $_fdirs; do
+  _mod=$(basename ${_dir%/examples})
+
+  if [ -e "$_dir/README" ]; then
+cp $_dir/README $_dir/README.$_mod
+  fi
+
+# mkdir $_base/$_mod
+  cp -rn $_dir/* $_base
+  done
+}


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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:38:20
  Author: arojas
Revision: 345041

archrelease: copy trunk to staging-x86_64

Added:
  qt5-imageformats/repos/staging-x86_64/
  qt5-imageformats/repos/staging-x86_64/PKGBUILD
(from rev 345040, qt5-imageformats/trunk/PKGBUILD)

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

Copied: qt5-imageformats/repos/staging-x86_64/PKGBUILD (from rev 345040, 
qt5-imageformats/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:38:20 UTC (rev 345041)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-imageformats
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Plugins for additional image formats: TIFF, MNG, TGA, WBMP'
+depends=('qt5-base' 'jasper' 'libmng' 'libwebp')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('0425f35dbcc83cd5840e2d3a73ed4c57c426af9d6ac7b9fe3a40d23560653421')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:38:09
  Author: arojas
Revision: 345040

archrelease: copy trunk to staging-x86_64

Added:
  qt5-graphicaleffects/repos/staging-x86_64/
  qt5-graphicaleffects/repos/staging-x86_64/PKGBUILD
(from rev 345039, qt5-graphicaleffects/trunk/PKGBUILD)

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

Copied: qt5-graphicaleffects/repos/staging-x86_64/PKGBUILD (from rev 345039, 
qt5-graphicaleffects/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:38:09 UTC (rev 345040)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-graphicaleffects
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Graphical effects for use with Qt Quick 2'
+depends=('qt5-declarative')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('2e63abf6b02b86461b73b317eba00b6721601a9469c22da28e3f4ea1d5df68d7')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-datavis3d/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:36:42
  Author: arojas
Revision: 345036

archrelease: copy trunk to staging-x86_64

Added:
  qt5-datavis3d/repos/staging-x86_64/
  qt5-datavis3d/repos/staging-x86_64/PKGBUILD
(from rev 345035, qt5-datavis3d/trunk/PKGBUILD)

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

Copied: qt5-datavis3d/repos/staging-x86_64/PKGBUILD (from rev 345035, 
qt5-datavis3d/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:36:42 UTC (rev 345036)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=qt5-datavis3d
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3')
+pkgdesc='Qt Data Visualization module'
+depends=('qt5-base')
+makedepends=('qt5-declarative')
+optdepends=('qt5-declarative: QML bindings')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('8ebb94459e5eb5b978dcdac1d2d6503a7763d790ce74b03f78388beb480436a0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+}


[arch-commits] Commit in qt5-doc/repos (staging-any staging-any/PKGBUILD)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:36:59
  Author: arojas
Revision: 345037

archrelease: copy trunk to staging-any

Added:
  qt5-doc/repos/staging-any/
  qt5-doc/repos/staging-any/PKGBUILD
(from rev 345036, qt5-doc/trunk/PKGBUILD)

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

Copied: qt5-doc/repos/staging-any/PKGBUILD (from rev 345036, 
qt5-doc/trunk/PKGBUILD)
===
--- staging-any/PKGBUILD(rev 0)
+++ staging-any/PKGBUILD2019-02-01 22:36:59 UTC (rev 345037)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Michael Hansen 
+
+pkgname=qt5-doc
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('any')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='A cross-platform application and UI framework (Documentation)'
+depends=('qt5-base')
+makedepends=('qt5-tools' 'python2' 'pciutils' 'libxtst' 'libxcursor' 
'libxrandr' 'libxss' 'libxcomposite'
+ 'gperf' 'nss' 'clang')
+groups=('qt' 'qt5')
+_pkgfqn="qt-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/single/${_pkgfqn}.tar.xz;)
+sha256sums=('caffbd625c7bc10ff8c5c7a27dbc7d84fa4de146975c0e1ffe904b514ccd6da4')
+
+prepare() {
+  cd ${_pkgfqn}
+
+  ln -s /usr/bin qttools/
+  ln -s /usr/bin/{rcc,uic,moc} qtbase/bin/
+
+  # Hack to force using python2
+  cd "$srcdir"
+  mkdir -p bin
+  ln -s /usr/bin/python2 bin/python
+}
+
+build() {
+  cd ${_pkgfqn}
+
+  export PATH="$srcdir/bin:$PATH"
+  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource \
+-prefix /usr \
+-docdir /usr/share/doc/qt \
+-headerdir /usr/include/qt \
+-archdatadir /usr/lib/qt \
+-datadir /usr/share/qt \
+-sysconfdir /etc/xdg \
+-examplesdir /usr/share/doc/qt/examples
+  make docs
+}
+
+package() {
+  cd ${_pkgfqn}
+  make INSTALL_ROOT="$pkgdir" install_docs
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+
+# Fix conflicts with qt5-examples
+  rm -r "$pkgdir"/usr/share/doc/qt/examples
+}


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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:36:31
  Author: arojas
Revision: 345035

archrelease: copy trunk to staging-x86_64

Added:
  qt5-connectivity/repos/staging-x86_64/
  qt5-connectivity/repos/staging-x86_64/PKGBUILD
(from rev 345034, qt5-connectivity/trunk/PKGBUILD)

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

Copied: qt5-connectivity/repos/staging-x86_64/PKGBUILD (from rev 345034, 
qt5-connectivity/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:36:31 UTC (rev 345035)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-connectivity
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides access to Bluetooth hardware'
+depends=('qt5-base' 'bluez-libs')
+makedepends=('qt5-declarative')
+optdepends=('qt5-declarative: QML bindings')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('0edd0bd784a71809540dc23d24a842bd88dee2cdb5394b69c9e704f7e1ac8d6c')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-charts/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:36:20
  Author: arojas
Revision: 345034

archrelease: copy trunk to staging-x86_64

Added:
  qt5-charts/repos/staging-x86_64/
  qt5-charts/repos/staging-x86_64/PKGBUILD
(from rev 345033, qt5-charts/trunk/PKGBUILD)

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

Copied: qt5-charts/repos/staging-x86_64/PKGBUILD (from rev 345033, 
qt5-charts/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:36:20 UTC (rev 345034)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=qt5-charts
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3')
+pkgdesc='Provides a set of easy to use chart components'
+depends=('qt5-base')
+makedepends=('qt5-declarative')
+optdepends=('qt5-declarative: QML bindings')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('142eb2b87a0bc2220a9f12e56bf390b846968c201d135b1a2a2338545692fdc0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+}


[arch-commits] Commit in qt5-webchannel/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:35:24
  Author: arojas
Revision: 345029

archrelease: copy trunk to staging-x86_64

Added:
  qt5-webchannel/repos/staging-x86_64/
  qt5-webchannel/repos/staging-x86_64/PKGBUILD
(from rev 345028, qt5-webchannel/trunk/PKGBUILD)

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

Copied: qt5-webchannel/repos/staging-x86_64/PKGBUILD (from rev 345028, 
qt5-webchannel/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:35:24 UTC (rev 345029)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-webchannel
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides access to QObject or QML objects from HTML clients for 
seamless integration of Qt applications with HTML/JavaScript clients'
+depends=('qt5-declarative')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('40c3e74347c67a9864d0d54f14120555860e4ce529746407325b3cd6e9aeb5bf')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-3d/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:35:59
  Author: arojas
Revision: 345032

archrelease: copy trunk to staging-x86_64

Added:
  qt5-3d/repos/staging-x86_64/
  qt5-3d/repos/staging-x86_64/PKGBUILD
(from rev 345031, qt5-3d/trunk/PKGBUILD)

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

Copied: qt5-3d/repos/staging-x86_64/PKGBUILD (from rev 345031, 
qt5-3d/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:35:59 UTC (rev 345032)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-3d
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='C++ and QML APIs for easy inclusion of 3D graphics'
+depends=('qt5-declarative' 'assimp')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('ce51ed3fe403672db2c874cbaa60f3a139ec817abd1270dc5e4255d35fd64bf1')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:35:34
  Author: arojas
Revision: 345030

archrelease: copy trunk to staging-x86_64

Added:
  qt5-webengine/repos/staging-x86_64/
  qt5-webengine/repos/staging-x86_64/PKGBUILD
(from rev 345029, qt5-webengine/trunk/PKGBUILD)
  qt5-webengine/repos/staging-x86_64/qtwebengine-harmony.patch
(from rev 345029, qt5-webengine/trunk/qtwebengine-harmony.patch)

---+
 PKGBUILD  |   57 
 qtwebengine-harmony.patch |   77 
 2 files changed, 134 insertions(+)

Copied: qt5-webengine/repos/staging-x86_64/PKGBUILD (from rev 345029, 
qt5-webengine/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:35:34 UTC (rev 345030)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-webengine
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('LGPL3' 'LGPL2.1' 'BSD')
+pkgdesc='Provides support for web applications using the Chromium browser 
project'
+depends=('qt5-webchannel' 'qt5-location' 'libxcomposite' 'libxrandr' 
'pciutils' 'libxss' 
+ 'libevent' 'snappy' 'nss' 'libxslt' 'minizip' 'ffmpeg' 're2' 'libvpx')
+makedepends=('python2' 'git' 'gperf' 'jsoncpp' 'ninja' 'qt5-tools' 'poppler')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;
+ qtwebengine-harmony.patch)
+sha256sums=('43e91e06bc4a60ef0f91d15ae06425cf9c6b4f7dafe960259a5b013c687c3bd0'
+'feca54ab09ac0fc9d0626770a6b899a6ac5a12173c7d0c1005bc3964ec83e7b3')
+
+prepare() {
+  mkdir -p build
+
+  # Hack to force using python2
+  mkdir -p bin
+  ln -s /usr/bin/python2 bin/python
+
+  cd ${_pkgfqn}
+
+  # FreeType 2.8.1
+  patch -Np1 -i ../qtwebengine-harmony.patch
+}
+
+build() {
+  cd build
+
+  export PATH="$srcdir/bin:$PATH"
+  qmake ../${_pkgfqn} -- \
+-proprietary-codecs \
+-system-ffmpeg \
+-webp \
+-spellchecker \
+-webengine-icu
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -Dm644 "$srcdir"/${_pkgfqn}/src/3rdparty/chromium/LICENSE 
"$pkgdir"/usr/share/licenses/${pkgname}/LICENSE.chromium
+}

Copied: qt5-webengine/repos/staging-x86_64/qtwebengine-harmony.patch (from rev 
345029, qt5-webengine/trunk/qtwebengine-harmony.patch)
===
--- staging-x86_64/qtwebengine-harmony.patch(rev 0)
+++ staging-x86_64/qtwebengine-harmony.patch2019-02-01 22:35:34 UTC (rev 
345030)
@@ -0,0 +1,77 @@
+--- 
qtwebengine-opensource-src-5.9.1/src/3rdparty/chromium/third_party/skia/src/ports/SkFontHost_FreeType.cpp.orig
 2017-10-10 17:42:06.956950985 +0200
 
qtwebengine-opensource-src-5.9.1/src/3rdparty/chromium/third_party/skia/src/ports/SkFontHost_FreeType.cpp
  2017-10-10 17:46:05.824187787 +0200
+@@ -99,8 +99,6 @@
+ FreeTypeLibrary()
+ : fGetVarDesignCoordinates(nullptr)
+ , fLibrary(nullptr)
+-, fIsLCDSupported(false)
+-, fLCDExtra(0)
+ {
+ if (FT_New_Library(, )) {
+ return;
+@@ -147,12 +145,7 @@
+ }
+ #endif
+ 
+-// Setup LCD filtering. This reduces color fringes for LCD smoothed 
glyphs.
+-// The default has changed over time, so this doesn't mean the same 
thing to all users.
+-if (FT_Library_SetLcdFilter(fLibrary, FT_LCD_FILTER_DEFAULT) == 0) {
+-fIsLCDSupported = true;
+-fLCDExtra = 2; //Using a filter adds one full pixel to each side.
+-}
++FT_Library_SetLcdFilter(fLibrary, FT_LCD_FILTER_DEFAULT);
+ }
+ ~FreeTypeLibrary() {
+ if (fLibrary) {
+@@ -161,8 +153,6 @@
+ }
+ 
+ FT_Library library() { return fLibrary; }
+-bool isLCDSupported() { return fIsLCDSupported; }
+-int lcdExtra() { return fLCDExtra; }
+ 
+ // FT_Get_{MM,Var}_{Blend,Design}_Coordinates were added in FreeType 
2.7.1.
+ // Prior to this there was no way to get the coordinates out of the 
FT_Face.
+@@ -173,8 +163,6 @@
+ 
+ private:
+ FT_Library fLibrary;
+-bool fIsLCDSupported;
+-int fLCDExtra;
+ 
+ // FT_Library_SetLcdFilterWeights was introduced in FreeType 2.4.0.
+ // The following platforms provide FreeType of at least 2.4.0.
+@@ -704,17 +692,6 @@
+ rec->fTextSize = SkIntToScalar(1 << 14);
+ }
+ 
+-if (isLCD(*rec)) {
+-// TODO: re-work so that FreeType is set-up and selected by the 
SkFontMgr.
+-SkAutoMutexAcquire ama(gFTMutex);
+-

[arch-commits] Commit in qt5-canvas3d/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:36:10
  Author: arojas
Revision: 345033

archrelease: copy trunk to staging-x86_64

Added:
  qt5-canvas3d/repos/staging-x86_64/
  qt5-canvas3d/repos/staging-x86_64/PKGBUILD
(from rev 345032, qt5-canvas3d/trunk/PKGBUILD)

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

Copied: qt5-canvas3d/repos/staging-x86_64/PKGBUILD (from rev 345032, 
qt5-canvas3d/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:36:10 UTC (rev 345033)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-canvas3d
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='A JavaScript 3D rendering API for Qt Quick'
+depends=('qt5-declarative')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('c7c940a06062b1e5078fd697e1da0cdaeaa315b6fcea81de15308a9d3f8ac254')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-websockets/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:35:48
  Author: arojas
Revision: 345031

archrelease: copy trunk to staging-x86_64

Added:
  qt5-websockets/repos/staging-x86_64/
  qt5-websockets/repos/staging-x86_64/PKGBUILD
(from rev 345030, qt5-websockets/trunk/PKGBUILD)

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

Copied: qt5-websockets/repos/staging-x86_64/PKGBUILD (from rev 345030, 
qt5-websockets/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:35:48 UTC (rev 345031)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-websockets
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides WebSocket communication compliant with RFC 6455'
+depends=('qt5-base')
+makedepends=('qt5-declarative')
+optdepends=('qt5-declarative: QML bindings')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('2fd0627916d817599c5f855a97156113ed3625b90b350603be6f668762abfc79')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-translations/repos (staging-any staging-any/PKGBUILD)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:35:13
  Author: arojas
Revision: 345028

archrelease: copy trunk to staging-any

Added:
  qt5-translations/repos/staging-any/
  qt5-translations/repos/staging-any/PKGBUILD
(from rev 345027, qt5-translations/trunk/PKGBUILD)

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

Copied: qt5-translations/repos/staging-any/PKGBUILD (from rev 345027, 
qt5-translations/trunk/PKGBUILD)
===
--- staging-any/PKGBUILD(rev 0)
+++ staging-any/PKGBUILD2019-02-01 22:35:13 UTC (rev 345028)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-translations
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('any')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='A cross-platform application and UI framework (Translations)'
+depends=('qt5-base')
+makedepends=('qt5-tools')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('7443d70d8572321e810c52fbdd09e61510e07e17437f1910f0b800cca6a7')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:35:01
  Author: arojas
Revision: 345027

archrelease: copy trunk to staging-x86_64

Added:
  qt5-tools/repos/staging-x86_64/
  qt5-tools/repos/staging-x86_64/PKGBUILD
(from rev 345026, qt5-tools/trunk/PKGBUILD)
  qt5-tools/repos/staging-x86_64/assistant.desktop
(from rev 345026, qt5-tools/trunk/assistant.desktop)
  qt5-tools/repos/staging-x86_64/designer.desktop
(from rev 345026, qt5-tools/trunk/designer.desktop)
  qt5-tools/repos/staging-x86_64/linguist.desktop
(from rev 345026, qt5-tools/trunk/linguist.desktop)
  qt5-tools/repos/staging-x86_64/qdbusviewer.desktop
(from rev 345026, qt5-tools/trunk/qdbusviewer.desktop)

-+
 PKGBUILD|   74 ++
 assistant.desktop   |8 +
 designer.desktop|   10 ++
 linguist.desktop|9 ++
 qdbusviewer.desktop |9 ++
 5 files changed, 110 insertions(+)

Copied: qt5-tools/repos/staging-x86_64/PKGBUILD (from rev 345026, 
qt5-tools/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:35:01 UTC (rev 345027)
@@ -0,0 +1,74 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-tools
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='A cross-platform application and UI framework (Development Tools, 
QtHelp)'
+depends=('qt5-base' 'hicolor-icon-theme')
+makedepends=('qt5-declarative' 'vulkan-headers' 'clang' 'qt5-webkit')
+optdepends=('clang: for qdoc' 'qt5-webkit: for Qt Assistant')
+groups=('qt' 'qt5')
+conflicts=('qtchooser')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;
+{assistant,designer,linguist,qdbusviewer}.desktop)
+sha256sums=('ab1da4fbd84a9d3873e4ed212a0ae614c6059b8e7dca2f0a599a6f7e61f6cbf3'
+'8092d6d846e39632107b14726fa112862d800e929ef10f05f2a284dbda9b53c4'
+'366e18ba400068df40d26a3c944d6bd4925bf22c32f171b837a3f4e387eff019'
+'db1ad1d27ce73820b8d50291618b6f817292f15f55107274064b9ae99201069a'
+'cd94367e35f99ab85277aa95985bbde292a9cc82db2c04c4efdaed5799aa16db')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="${pkgdir}" install
+
+  cd ../${_pkgfqn}
+  # install missing icons and desktop files
+  for icon in src/linguist/linguist/images/icons/linguist-*-32.png ; do
+size=$(echo $(basename ${icon}) | cut -d- -f2)
+install -p -D -m644 ${icon} \
+  "${pkgdir}/usr/share/icons/hicolor/${size}x${size}/apps/linguist.png"
+  done
+
+  install -D -m644 src/assistant/assistant/images/assistant.png \
+"${pkgdir}/usr/share/icons/hicolor/32x32/apps/assistant.png"
+  install -D -m644 src/assistant/assistant/images/assistant-128.png \
+"${pkgdir}/usr/share/icons/hicolor/128x128/apps/assistant.png"
+  install -D -m644 src/designer/src/designer/images/designer.png \
+"${pkgdir}/usr/share/icons/hicolor/128x128/apps/QtProject-designer.png"
+  install -D -m644 src/qdbus/qdbusviewer/images/qdbusviewer.png \
+"${pkgdir}/usr/share/icons/hicolor/32x32/apps/qdbusviewer.png"
+  install -D -m644 src/qdbus/qdbusviewer/images/qdbusviewer-128.png \
+"${pkgdir}/usr/share/icons/hicolor/128x128/apps/qdbusviewer.png"
+  install -d "${pkgdir}/usr/share/applications"
+  install -m644 "${srcdir}"/{linguist,designer,assistant,qdbusviewer}.desktop \
+"${pkgdir}/usr/share/applications/"
+
+  # Symlinks for backwards compatibility
+  for b in "${pkgdir}"/usr/bin/*; do
+ln -s $(basename $b) "${pkgdir}"/usr/bin/$(basename $b)-qt5
+  done
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "${pkgdir}/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}

Copied: qt5-tools/repos/staging-x86_64/assistant.desktop (from rev 345026, 
qt5-tools/trunk/assistant.desktop)
===
--- staging-x86_64/assistant.desktop(rev 0)
+++ staging-x86_64/assistant.desktop2019-02-01 22:35:01 UTC (rev 345027)
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Name=Qt Assistant
+Comment=Shows Qt documentation and examples
+Exec=assistant
+Icon=assistant
+Terminal=false
+Type=Application
+Categories=Qt;Development;Documentation;

Copied: qt5-tools/repos/staging-x86_64/designer.desktop (from rev 345026, 
qt5-tools/trunk/designer.desktop)
===
--- staging-x86_64/designer.desktop (rev 0)
+++ 

[arch-commits] Commit in qt5-serialport/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:34:48
  Author: arojas
Revision: 345026

archrelease: copy trunk to staging-x86_64

Added:
  qt5-serialport/repos/staging-x86_64/
  qt5-serialport/repos/staging-x86_64/PKGBUILD
(from rev 345025, qt5-serialport/trunk/PKGBUILD)

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

Copied: qt5-serialport/repos/staging-x86_64/PKGBUILD (from rev 345025, 
qt5-serialport/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:34:48 UTC (rev 345026)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-serialport
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides access to hardware and virtual serial ports'
+depends=('qt5-base')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('243b2502283c45f5163d68c3f23c787d46eb0e3ba58f3d9a0560dc7968a6ce19')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-location/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:34:26
  Author: arojas
Revision: 345024

archrelease: copy trunk to staging-x86_64

Added:
  qt5-location/repos/staging-x86_64/
  qt5-location/repos/staging-x86_64/PKGBUILD
(from rev 345023, qt5-location/trunk/PKGBUILD)

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

Copied: qt5-location/repos/staging-x86_64/PKGBUILD (from rev 345023, 
qt5-location/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:34:26 UTC (rev 345024)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-location
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides access to position, satellite and area monitoring classes'
+depends=('qt5-declarative')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('8b922373e6eefd1b0e2a993dbf3d0b3f3df777bc720d40cad3ccb46e1936bc50')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-sensors/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:34:37
  Author: arojas
Revision: 345025

archrelease: copy trunk to staging-x86_64

Added:
  qt5-sensors/repos/staging-x86_64/
  qt5-sensors/repos/staging-x86_64/PKGBUILD
(from rev 345024, qt5-sensors/trunk/PKGBUILD)

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

Copied: qt5-sensors/repos/staging-x86_64/PKGBUILD (from rev 345024, 
qt5-sensors/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:34:37 UTC (rev 345025)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-sensors
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides access to sensor hardware and motion gesture recognition'
+depends=('qt5-base')
+makedepends=('qt5-declarative')
+optdepends=('qt5-declarative: QML bindings')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('ebc8b4bcfacf10c3bea3f400da7bf3fc7f44f90fa9eb0320c3b87f17307a63e4')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:34:15
  Author: arojas
Revision: 345023

archrelease: copy trunk to staging-x86_64

Added:
  qt5-declarative/repos/staging-x86_64/
  qt5-declarative/repos/staging-x86_64/PKGBUILD
(from rev 345022, qt5-declarative/trunk/PKGBUILD)

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

Copied: qt5-declarative/repos/staging-x86_64/PKGBUILD (from rev 345022, 
qt5-declarative/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:34:15 UTC (rev 345023)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-declarative
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Classes for QML and JavaScript languages'
+depends=('qt5-base')
+makedepends=('python')
+groups=('qt' 'qt5')
+conflicts=('qtchooser')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('a384a734d94f28a98aa74e076d50fa6b9724af83526feb6c371945545d8cb409')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Symlinks for backwards compatibility
+  for b in "$pkgdir"/usr/bin/*; do
+ln -s $(basename $b) "$pkgdir"/usr/bin/$(basename $b)-qt5
+  done
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-base/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:34:04
  Author: arojas
Revision: 345022

archrelease: copy trunk to staging-x86_64

Added:
  qt5-base/repos/staging-x86_64/
  qt5-base/repos/staging-x86_64/PKGBUILD
(from rev 345021, qt5-base/trunk/PKGBUILD)

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

Copied: qt5-base/repos/staging-x86_64/PKGBUILD (from rev 345021, 
qt5-base/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-02-01 22:34:04 UTC (rev 345022)
@@ -0,0 +1,108 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgbase=qt5-base
+pkgname=(qt5-base qt5-xcb-private-headers)
+_qtver=5.12.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='A cross-platform application and UI framework'
+depends=('libjpeg-turbo' 'xcb-util-keysyms' 'xcb-util-renderutil' 'libgl' 
'fontconfig' 'xdg-utils'
+ 'shared-mime-info' 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 
'xcb-util-image' 'mesa'
+ 'tslib' 'libinput' 'libxkbcommon-x11' 'libproxy' 'libcups' 
'double-conversion')
+makedepends=('libfbclient' 'mariadb-libs' 'sqlite' 'unixodbc' 
'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
+ 'gtk3' 'libpulse' 'cups' 'freetds' 'vulkan-headers')
+optdepends=('qt5-svg: to use SVG icon themes'
+'qt5-translations: for some native UI translations'
+'postgresql-libs: PostgreSQL driver'
+'mariadb-libs: MariaDB driver'
+'unixodbc: ODBC driver'
+'libfbclient: Firebird/iBase driver'
+'freetds: MS SQL driver'
+'gtk3: GTK platform plugin')
+conflicts=('qtchooser')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgbase/5-/}-everywhere-src-${_qtver}"
+source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;
+
qt-delayed-highlight.patch::https://code.qt.io/cgit/qt/qtbase.git/patch/?id=f8f0f3ee
+
qtbug-69310.patch::"https://code.qt.io/cgit/qt/qtbase.git/patch/?id=fcba9fa8;)
+sha256sums=('533078ce02678988576e224cb3844979907950cf83e0fda3364bc1d5701c9049'
+'0080b1e208090c729018db1ac224e5940d06a38b9c28c918a892b01f84a82cf9'
+'2186ce7b8d6310ebc005da9b00dcc88388df3e8b83bff37230fa1bb9253c4970')
+
+prepare() {
+  cd ${_pkgfqn}
+
+  # Build qmake using Arch {C,LD}FLAGS
+  # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
+  sed -i -e "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}|" \
+mkspecs/common/gcc-base.conf
+  sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" \
+mkspecs/common/g++-unix.conf
+
+  patch -p1 -i ../qt-delayed-highlight.patch # 
https://codereview.qt-project.org/#/c/249881/
+  patch -p1 -i ../qtbug-69310.patch # 
https://bugreports.qt.io/browse/QTBUG-69310
+}
+
+build() {
+  cd ${_pkgfqn}
+
+  ./configure -confirm-license -opensource -v \
+-prefix /usr \
+-docdir /usr/share/doc/qt \
+-headerdir /usr/include/qt \
+-archdatadir /usr/lib/qt \
+-datadir /usr/share/qt \
+-sysconfdir /etc/xdg \
+-examplesdir /usr/share/doc/qt/examples \
+-plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
+-system-sqlite \
+-openssl-linked \
+-nomake examples \
+-no-rpath \
+-optimized-qmake \
+-dbus-linked \
+-system-harfbuzz \
+-journald \
+-no-use-gold-linker \
+-reduce-relocations
+  make
+}
+
+package_qt5-base() {
+  pkgdesc='A cross-platform application and UI framework'
+
+  cd ${_pkgfqn}
+  make INSTALL_ROOT="${pkgdir}" install
+
+  install -Dm644 LICENSE* -t "$pkgdir"/usr/share/licenses/$pkgbase
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "${pkgdir}/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  # Fix wrong qmake path in pri file
+  sed -i "s|${srcdir}/${_pkgfqn}|/usr|" \
+"${pkgdir}"/usr/lib/qt/mkspecs/modules/qt_lib_bootstrap_private.pri
+
+  # Symlinks for backwards compatibility
+  for b in "${pkgdir}"/usr/bin/*; do
+ln -s $(basename $b) "${pkgdir}"/usr/bin/$(basename $b)-qt5
+  done
+}
+
+package_qt5-xcb-private-headers() {
+  pkgdesc='Private headers for Qt5 Xcb'
+
+  depends=("qt5-base=$pkgver")
+  optdepends=()
+  groups=()
+  conflicts=()
+
+  cd ${_pkgfqn}
+  install -d -m755 "$pkgdir"/usr/include/qtxcb-private
+  cp -r src/plugins/platforms/xcb/*.h "$pkgdir"/usr/include/qtxcb-private/
+}


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

2019-02-01 Thread Christian Hesse via arch-commits
Date: Friday, February 1, 2019 @ 22:29:53
  Author: eworm
Revision: 345021

archrelease: copy trunk to testing-x86_64

Added:
  iw/repos/testing-x86_64/
  iw/repos/testing-x86_64/PKGBUILD
(from rev 345020, iw/trunk/PKGBUILD)

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

Copied: iw/repos/testing-x86_64/PKGBUILD (from rev 345020, iw/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-02-01 22:29:53 UTC (rev 345021)
@@ -0,0 +1,25 @@
+# Maintainer: Thomas Bächler 
+
+pkgname=iw
+pkgver=5.0
+pkgrel=1
+pkgdesc='nl80211 based CLI configuration utility for wireless devices'
+arch=('x86_64')
+url='https://wireless.kernel.org/en/users/Documentation/iw'
+license=('GPL')
+depends=('libnl')
+makedepends=('linux-api-headers')
+validpgpkeys=('C0EBC440F6DA091C884D8532E0F373F37BF9099A') # Johannes Berg
+source=("https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar."{xz,sign})
+sha256sums=('c7176c29cd42e9ee8be6d4c69e7589ad39f68ee2cf2b937a1d8ff9389c6eaff9'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  make DESTDIR="$pkgdir" SBINDIR="/usr/bin" install
+}


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

2019-02-01 Thread Christian Hesse via arch-commits
Date: Friday, February 1, 2019 @ 22:29:35
  Author: eworm
Revision: 345020

upgpkg: iw 5.0-1

new upstream release

Modified:
  iw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 22:28:54 UTC (rev 345019)
+++ PKGBUILD2019-02-01 22:29:35 UTC (rev 345020)
@@ -1,7 +1,7 @@
 # Maintainer: Thomas Bächler 
 
 pkgname=iw
-pkgver=4.14
+pkgver=5.0
 pkgrel=1
 pkgdesc='nl80211 based CLI configuration utility for wireless devices'
 arch=('x86_64')
@@ -11,7 +11,7 @@
 makedepends=('linux-api-headers')
 validpgpkeys=('C0EBC440F6DA091C884D8532E0F373F37BF9099A') # Johannes Berg
 
source=("https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar."{xz,sign})
-sha256sums=('f01671c0074bfdec082a884057edba1b9efd35c89eda554638496f03b769ad89'
+sha256sums=('c7176c29cd42e9ee8be6d4c69e7589ad39f68ee2cf2b937a1d8ff9389c6eaff9'
 'SKIP')
 
 build() {


[arch-commits] Commit in (36 files)

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:28:54
  Author: arojas
Revision: 345019

Qt 5.12.1

Modified:
  qt5-3d/trunk/PKGBUILD
  qt5-base/trunk/PKGBUILD
  qt5-canvas3d/trunk/PKGBUILD
  qt5-charts/trunk/PKGBUILD
  qt5-connectivity/trunk/PKGBUILD
  qt5-datavis3d/trunk/PKGBUILD
  qt5-declarative/trunk/PKGBUILD
  qt5-doc/trunk/PKGBUILD
  qt5-examples/trunk/PKGBUILD
  qt5-gamepad/trunk/PKGBUILD
  qt5-graphicaleffects/trunk/PKGBUILD
  qt5-imageformats/trunk/PKGBUILD
  qt5-location/trunk/PKGBUILD
  qt5-multimedia/trunk/PKGBUILD
  qt5-networkauth/trunk/PKGBUILD
  qt5-quickcontrols/trunk/PKGBUILD
  qt5-quickcontrols2/trunk/PKGBUILD
  qt5-remoteobjects/trunk/PKGBUILD
  qt5-script/trunk/PKGBUILD
  qt5-scxml/trunk/PKGBUILD
  qt5-sensors/trunk/PKGBUILD
  qt5-serialbus/trunk/PKGBUILD
  qt5-serialport/trunk/PKGBUILD
  qt5-speech/trunk/PKGBUILD
  qt5-svg/trunk/PKGBUILD
  qt5-tools/trunk/PKGBUILD
  qt5-translations/trunk/PKGBUILD
  qt5-virtualkeyboard/trunk/PKGBUILD
  qt5-wayland/trunk/PKGBUILD
  qt5-webchannel/trunk/PKGBUILD
  qt5-webengine/trunk/PKGBUILD
  qt5-webglplugin/trunk/PKGBUILD
  qt5-websockets/trunk/PKGBUILD
  qt5-webview/trunk/PKGBUILD
  qt5-x11extras/trunk/PKGBUILD
  qt5-xmlpatterns/trunk/PKGBUILD

-+
 qt5-3d/trunk/PKGBUILD   |4 ++--
 qt5-base/trunk/PKGBUILD |   15 +--
 qt5-canvas3d/trunk/PKGBUILD |4 ++--
 qt5-charts/trunk/PKGBUILD   |4 ++--
 qt5-connectivity/trunk/PKGBUILD |4 ++--
 qt5-datavis3d/trunk/PKGBUILD|4 ++--
 qt5-declarative/trunk/PKGBUILD  |4 ++--
 qt5-doc/trunk/PKGBUILD  |6 +++---
 qt5-examples/trunk/PKGBUILD |4 ++--
 qt5-gamepad/trunk/PKGBUILD  |4 ++--
 qt5-graphicaleffects/trunk/PKGBUILD |4 ++--
 qt5-imageformats/trunk/PKGBUILD |4 ++--
 qt5-location/trunk/PKGBUILD |4 ++--
 qt5-multimedia/trunk/PKGBUILD   |4 ++--
 qt5-networkauth/trunk/PKGBUILD  |4 ++--
 qt5-quickcontrols/trunk/PKGBUILD|4 ++--
 qt5-quickcontrols2/trunk/PKGBUILD   |4 ++--
 qt5-remoteobjects/trunk/PKGBUILD|4 ++--
 qt5-script/trunk/PKGBUILD   |4 ++--
 qt5-scxml/trunk/PKGBUILD|4 ++--
 qt5-sensors/trunk/PKGBUILD  |4 ++--
 qt5-serialbus/trunk/PKGBUILD|4 ++--
 qt5-serialport/trunk/PKGBUILD   |4 ++--
 qt5-speech/trunk/PKGBUILD   |4 ++--
 qt5-svg/trunk/PKGBUILD  |4 ++--
 qt5-tools/trunk/PKGBUILD|6 +++---
 qt5-translations/trunk/PKGBUILD |4 ++--
 qt5-virtualkeyboard/trunk/PKGBUILD  |4 ++--
 qt5-wayland/trunk/PKGBUILD  |6 +++---
 qt5-webchannel/trunk/PKGBUILD   |4 ++--
 qt5-webengine/trunk/PKGBUILD|   16 
 qt5-webglplugin/trunk/PKGBUILD  |4 ++--
 qt5-websockets/trunk/PKGBUILD   |4 ++--
 qt5-webview/trunk/PKGBUILD  |4 ++--
 qt5-x11extras/trunk/PKGBUILD|4 ++--
 qt5-xmlpatterns/trunk/PKGBUILD  |4 ++--
 36 files changed, 84 insertions(+), 89 deletions(-)

Modified: qt5-3d/trunk/PKGBUILD
===
--- qt5-3d/trunk/PKGBUILD   2019-02-01 22:06:12 UTC (rev 345018)
+++ qt5-3d/trunk/PKGBUILD   2019-02-01 22:28:54 UTC (rev 345019)
@@ -2,7 +2,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=qt5-3d
-_qtver=5.12.0
+_qtver=5.12.1
 pkgver=${_qtver/-/}
 pkgrel=1
 arch=('x86_64')
@@ -13,7 +13,7 @@
 groups=('qt' 'qt5')
 _pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
 
source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
-sha256sums=('a12adc9c14ffa18ff5c4951efb41914d4840a0c2a88486eb8d39a4833e4631da')
+sha256sums=('ce51ed3fe403672db2c874cbaa60f3a139ec817abd1270dc5e4255d35fd64bf1')
 
 prepare() {
   mkdir -p build

Modified: qt5-base/trunk/PKGBUILD
===
--- qt5-base/trunk/PKGBUILD 2019-02-01 22:06:12 UTC (rev 345018)
+++ qt5-base/trunk/PKGBUILD 2019-02-01 22:28:54 UTC (rev 345019)
@@ -3,9 +3,9 @@
 
 pkgbase=qt5-base
 pkgname=(qt5-base qt5-xcb-private-headers)
-_qtver=5.12.0
+_qtver=5.12.1
 pkgver=${_qtver/-/}
-pkgrel=3
+pkgrel=1
 arch=('x86_64')
 url='https://www.qt.io'
 license=('GPL3' 'LGPL3' 'FDL' 'custom')
@@ -27,9 +27,11 @@
 groups=('qt' 'qt5')
 _pkgfqn="${pkgbase/5-/}-everywhere-src-${_qtver}"
 
source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;
-
qtbug-72844.patch::"https://code.qt.io/cgit/qt/qtbase.git/patch/?id=52e0d9e2;)
-sha256sums=('5e03221d780e121aabd734896aab8f331e5d8c9d9b54f1eb04907d0818eaeecb'
-'afdea0787e1d8d4c2e7139770761aba4fe8268f50b7f5d715bdd850cc7017996')
+
qt-delayed-highlight.patch::https://code.qt.io/cgit/qt/qtbase.git/patch/?id=f8f0f3ee
+
qtbug-69310.patch::"https://code.qt.io/cgit/qt/qtbase.git/patch/?id=fcba9fa8;)

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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:06:30
  Author: arojas
Revision: 429134

archrelease: copy trunk to community-x86_64

Added:
  cython/repos/community-x86_64/PKGBUILD
(from rev 429133, cython/trunk/PKGBUILD)
Deleted:
  cython/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-01 22:06:08 UTC (rev 429133)
+++ PKGBUILD2019-02-01 22:06:30 UTC (rev 429134)
@@ -1,51 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Sergej Pupykin 
-# Contributor: Igor Scabini 
-
-pkgname=(cython cython2)
-pkgbase=cython
-pkgver=0.29.3
-pkgrel=1
-pkgdesc="C-Extensions for Python"
-arch=(x86_64)
-url="http://cython.org;
-license=(APACHE)
-makedepends=(python-setuptools python2-setuptools)
-source=($pkgbase-$pkgver.tar.gz::"https://github.com/cython/cython/archive/$pkgver.tar.gz;)
-sha256sums=('4a33fd40c28e67413817f814adadfe2047a66ac3dcc81ff81651a54a03d6cbd0')
-
-prepare() {
-  cp -r cython-$pkgver cython2-$pkgver
-  find cython2-$pkgver -name '*.py' | xargs sed -e 's|/usr/bin/env 
python|/usr/bin/env python2|' -e 's|/usr/bin/python|/usr/bin/python2|' -i
-}
-
-build() {
-  cd cython-$pkgver
-  python setup.py build
-
-  cd ../cython2-$pkgver
-  python2 setup.py build
-}
-
-package_cython() {
-  depends=(python-setuptools)
-
-  cd cython-$pkgver
-  python setup.py install --root="$pkgdir" --skip-build
-
-  for f in cygdb cython cythonize; do
-mv "$pkgdir"/usr/bin/$f "$pkgdir"/usr/bin/${f}3
-ln -s ${f}3 "$pkgdir"/usr/bin/$f
-  done
-}
-
-package_cython2() {
-  depends=(python2-setuptools)
-
-  cd cython2-$pkgver
-  python2 setup.py install --root="$pkgdir" --skip-build
-
-  for f in cygdb cython cythonize; do
-mv "$pkgdir"/usr/bin/$f "$pkgdir"/usr/bin/${f}2
-  done
-}

Copied: cython/repos/community-x86_64/PKGBUILD (from rev 429133, 
cython/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-01 22:06:30 UTC (rev 429134)
@@ -0,0 +1,51 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Sergej Pupykin 
+# Contributor: Igor Scabini 
+
+pkgname=(cython cython2)
+pkgbase=cython
+pkgver=0.29.4
+pkgrel=1
+pkgdesc="C-Extensions for Python"
+arch=(x86_64)
+url="https://cython.org;
+license=(APACHE)
+makedepends=(python-setuptools python2-setuptools)
+source=($pkgbase-$pkgver.tar.gz::"https://github.com/cython/cython/archive/$pkgver.tar.gz;)
+sha256sums=('b43348a394d7e121688f096bd32be3a88aa4746655586a7dcd38c30947dd0b20')
+
+prepare() {
+  cp -r cython-$pkgver cython2-$pkgver
+  find cython2-$pkgver -name '*.py' | xargs sed -e 's|/usr/bin/env 
python|/usr/bin/env python2|' -e 's|/usr/bin/python|/usr/bin/python2|' -i
+}
+
+build() {
+  cd cython-$pkgver
+  python setup.py build
+
+  cd ../cython2-$pkgver
+  python2 setup.py build
+}
+
+package_cython() {
+  depends=(python-setuptools)
+
+  cd cython-$pkgver
+  python setup.py install --root="$pkgdir" --skip-build
+
+  for f in cygdb cython cythonize; do
+mv "$pkgdir"/usr/bin/$f "$pkgdir"/usr/bin/${f}3
+ln -s ${f}3 "$pkgdir"/usr/bin/$f
+  done
+}
+
+package_cython2() {
+  depends=(python2-setuptools)
+
+  cd cython2-$pkgver
+  python2 setup.py install --root="$pkgdir" --skip-build
+
+  for f in cygdb cython cythonize; do
+mv "$pkgdir"/usr/bin/$f "$pkgdir"/usr/bin/${f}2
+  done
+}


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

2019-02-01 Thread Gaëtan Bisson via arch-commits
Date: Friday, February 1, 2019 @ 22:06:12
  Author: bisson
Revision: 345018

archrelease: copy trunk to extra-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-01 22:05:38 UTC (rev 345017)
+++ PKGBUILD2019-02-01 22:06:12 UTC (rev 345018)
@@ -1,45 +0,0 @@
-# Contributor: tobias [tobias [at] archlinux.org]
-# Maintainer: Gaetan Bisson 
-
-pkgname=mutt
-pkgver=1.11.2
-pkgrel=2
-pkgdesc='Small but very powerful text-based mail client'
-url='http://www.mutt.org/'
-license=('GPL')
-backup=('etc/Muttrc')
-arch=('x86_64')
-optdepends=('smtp-forwarder: to send mail')
-depends=('gpgme' 'ncurses' 'openssl' 'libsasl' 'gdbm' 'libidn2' 'mime-types' 
'krb5')
-validpgpkeys=('8975A9B33AA37910385C5308ADEF768480316BDA')
-source=("http://ftp.mutt.org/pub/mutt/${pkgname}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('da5cd4c39f228914d3933d8cf3a017c8271fdd9b9d81c6e4fc42ad22e1a28723'
-'SKIP')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --enable-gpgme \
-   --enable-pop \
-   --enable-imap \
-   --enable-smtp \
-   --enable-hcache \
-   --enable-sidebar \
-   --with-curses=/usr \
-   --with-gss=/usr \
-   --with-ssl=/usr \
-   --with-sasl \
-   --with-idn2 \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-
-   rm "${pkgdir}"/etc/mime.types{,.dist}
-   install -Dm644 contrib/gpg.rc "${pkgdir}"/etc/Muttrc.gpg.dist
-}

Copied: mutt/repos/extra-x86_64/PKGBUILD (from rev 345017, mutt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-01 22:06:12 UTC (rev 345018)
@@ -0,0 +1,45 @@
+# Contributor: tobias [tobias [at] archlinux.org]
+# Maintainer: Gaetan Bisson 
+
+pkgname=mutt
+pkgver=1.11.3
+pkgrel=1
+pkgdesc='Small but very powerful text-based mail client'
+url='http://www.mutt.org/'
+license=('GPL')
+backup=('etc/Muttrc')
+arch=('x86_64')
+optdepends=('smtp-forwarder: to send mail')
+depends=('gpgme' 'ncurses' 'openssl' 'libsasl' 'gdbm' 'libidn2' 'mime-types' 
'krb5')
+validpgpkeys=('8975A9B33AA37910385C5308ADEF768480316BDA')
+source=("http://ftp.mutt.org/pub/mutt/${pkgname}-${pkgver}.tar.gz"{,.asc})
+sha256sums=('a542f4c02faecd171b4215ddbd368910faee4a634cca7aea5337586118ab1941'
+'SKIP')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --enable-gpgme \
+   --enable-pop \
+   --enable-imap \
+   --enable-smtp \
+   --enable-hcache \
+   --enable-sidebar \
+   --with-curses=/usr \
+   --with-gss=/usr \
+   --with-ssl=/usr \
+   --with-sasl \
+   --with-idn2 \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+
+   rm "${pkgdir}"/etc/mime.types{,.dist}
+   install -Dm644 contrib/gpg.rc "${pkgdir}"/etc/Muttrc.gpg.dist
+}


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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 22:06:08
  Author: arojas
Revision: 429133

Update to 0.29.4

Modified:
  cython/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 21:57:52 UTC (rev 429132)
+++ PKGBUILD2019-02-01 22:06:08 UTC (rev 429133)
@@ -4,7 +4,7 @@
 
 pkgname=(cython cython2)
 pkgbase=cython
-pkgver=0.29.3
+pkgver=0.29.4
 pkgrel=1
 pkgdesc="C-Extensions for Python"
 arch=(x86_64)
@@ -12,7 +12,7 @@
 license=(APACHE)
 makedepends=(python-setuptools python2-setuptools)
 
source=($pkgbase-$pkgver.tar.gz::"https://github.com/cython/cython/archive/$pkgver.tar.gz;)
-sha256sums=('4a33fd40c28e67413817f814adadfe2047a66ac3dcc81ff81651a54a03d6cbd0')
+sha256sums=('b43348a394d7e121688f096bd32be3a88aa4746655586a7dcd38c30947dd0b20')
 
 prepare() {
   cp -r cython-$pkgver cython2-$pkgver


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

2019-02-01 Thread Gaëtan Bisson via arch-commits
Date: Friday, February 1, 2019 @ 22:05:38
  Author: bisson
Revision: 345017

upstream update

Modified:
  mutt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 19:38:13 UTC (rev 345016)
+++ PKGBUILD2019-02-01 22:05:38 UTC (rev 345017)
@@ -2,8 +2,8 @@
 # Maintainer: Gaetan Bisson 
 
 pkgname=mutt
-pkgver=1.11.2
-pkgrel=2
+pkgver=1.11.3
+pkgrel=1
 pkgdesc='Small but very powerful text-based mail client'
 url='http://www.mutt.org/'
 license=('GPL')
@@ -13,7 +13,7 @@
 depends=('gpgme' 'ncurses' 'openssl' 'libsasl' 'gdbm' 'libidn2' 'mime-types' 
'krb5')
 validpgpkeys=('8975A9B33AA37910385C5308ADEF768480316BDA')
 source=("http://ftp.mutt.org/pub/mutt/${pkgname}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('da5cd4c39f228914d3933d8cf3a017c8271fdd9b9d81c6e4fc42ad22e1a28723'
+sha256sums=('a542f4c02faecd171b4215ddbd368910faee4a634cca7aea5337586118ab1941'
 'SKIP')
 
 build() {


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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 21:57:28
  Author: arojas
Revision: 429131

Update to 1.1.2

Modified:
  sage-notebook/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 20:31:47 UTC (rev 429130)
+++ PKGBUILD2019-02-01 21:57:28 UTC (rev 429131)
@@ -2,7 +2,7 @@
 # Maintainer: Evgeniy Alekseev 
 
 pkgname=sage-notebook
-pkgver=1.1.1
+pkgver=1.1.2
 pkgrel=1
 pkgdesc='Browser-based notebook interface for SageMath'
 arch=(any)
@@ -12,7 +12,7 @@
 optdepends=('python2-pyopenssl: to use the notebook in secure mode')
 makedepends=(gendesk python2-sphinx)
 
source=($pkgname-$pkgver::"https://github.com/sagemath/sagenb/archive/$pkgver.tar.gz;
 sage.service)
-sha256sums=('a6740bc2b2b331a6adbb865be2bf76c6bf6ef1630fc16be1879bcc16530fe00c'
+sha256sums=('2c55438fb9a3ef88994ed385e2e9d88b11283853705fec11235a4f51a34aa04c'
 '2cf8668fa77a96fe562dafd50cab41aad03f53ee8b91587b1b45ecd193c1517a')
 
 prepare() {


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

2019-02-01 Thread Antonio Rojas via arch-commits
Date: Friday, February 1, 2019 @ 21:57:52
  Author: arojas
Revision: 429132

archrelease: copy trunk to community-any

Added:
  sage-notebook/repos/community-any/PKGBUILD
(from rev 429131, sage-notebook/trunk/PKGBUILD)
  sage-notebook/repos/community-any/sage.service
(from rev 429131, sage-notebook/trunk/sage.service)
Deleted:
  sage-notebook/repos/community-any/PKGBUILD
  sage-notebook/repos/community-any/sage.service

--+
 PKGBUILD |  130 -
 sage.service |   16 +++
 2 files changed, 73 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-01 21:57:28 UTC (rev 429131)
+++ PKGBUILD2019-02-01 21:57:52 UTC (rev 429132)
@@ -1,65 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Evgeniy Alekseev 
-
-pkgname=sage-notebook
-pkgver=1.1.1
-pkgrel=1
-pkgdesc='Browser-based notebook interface for SageMath'
-arch=(any)
-url='http://www.sagemath.org'
-license=(GPL3)
-depends=(sagemath python2-twisted python2-flask-oldsessions 
python2-flask-openid python2-flask-autoindex python2-flask-babel mathjax jsmol)
-optdepends=('python2-pyopenssl: to use the notebook in secure mode')
-makedepends=(gendesk python2-sphinx)
-source=($pkgname-$pkgver::"https://github.com/sagemath/sagenb/archive/$pkgver.tar.gz;
 sage.service)
-sha256sums=('a6740bc2b2b331a6adbb865be2bf76c6bf6ef1630fc16be1879bcc16530fe00c'
-'2cf8668fa77a96fe562dafd50cab41aad03f53ee8b91587b1b45ecd193c1517a')
-
-prepare() {
-# create *.desktop file
-  gendesk -f -n \
-  --pkgname="sage-notebook" \
-  --pkgdesc="SageMath notebook" \
-  --name="SageMath" \
-  --exec="/usr/bin/sage -notebook=sagenb" \
-  --terminal=true \
-  --categories="Education;Science;Math"
-
-  cd sagenb-$pkgver
-# Use python2
-  find -name '*.py' | xargs sed -e 's|#! /usr/bin/python|#! /usr/bin/python2|' 
-e 's|#!/usr/bin/python|#!/usr/bin/python2|' \
--e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' -i
-  sed -e 's|python %s|python2 %s|' -i sagenb/notebook/run_notebook.py
-  sed -e "s|python='python'|python='python2'|" -i sagenb/interfaces/expect.py 
-}
-
-build() {
-  cd sagenb-$pkgver
-  python2 setup.py build
-  
-  cd doc
-  make SPHINXBUILD=sphinx-build2 html
-}
-
-package() {
-  cd sagenb-$pkgver
-
-  python2 setup.py install --root "$pkgdir" --optimize=1
-
-  install -D -m644 COPYING "$pkgdir"/usr/share/licenses/${pkgname}/COPYING
-
-  ln -s /usr/share/mathjax 
"$pkgdir"/usr/lib/python2.7/site-packages/sagenb/data/mathjax
-
-# install a systemd user unit
-  install -Dm644 "${srcdir}/sage.service" 
"$pkgdir/usr/lib/systemd/user/sage.service"
-# install *.desktop and icon files
-  install -Dm644 "${srcdir}/sage-notebook.desktop" 
"$pkgdir/usr/share/applications/sage-notebook.desktop"
-  install -Dm644 
"$pkgdir/usr/lib/python2.7/site-packages/sagenb/data/sage/images/icon48x48.png" 
\
- "$pkgdir/usr/share/pixmaps/sage-notebook.png"
-# remove sage3d
-  rm -r "$pkgdir"/usr/bin
-
-# install docs
-  mkdir -p "$pkgdir"/usr/share/doc/sagenb
-  cp -r doc/build/html "$pkgdir"/usr/share/doc/sagenb
-}

Copied: sage-notebook/repos/community-any/PKGBUILD (from rev 429131, 
sage-notebook/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-01 21:57:52 UTC (rev 429132)
@@ -0,0 +1,65 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Evgeniy Alekseev 
+
+pkgname=sage-notebook
+pkgver=1.1.2
+pkgrel=1
+pkgdesc='Browser-based notebook interface for SageMath'
+arch=(any)
+url='http://www.sagemath.org'
+license=(GPL3)
+depends=(sagemath python2-twisted python2-flask-oldsessions 
python2-flask-openid python2-flask-autoindex python2-flask-babel mathjax jsmol)
+optdepends=('python2-pyopenssl: to use the notebook in secure mode')
+makedepends=(gendesk python2-sphinx)
+source=($pkgname-$pkgver::"https://github.com/sagemath/sagenb/archive/$pkgver.tar.gz;
 sage.service)
+sha256sums=('2c55438fb9a3ef88994ed385e2e9d88b11283853705fec11235a4f51a34aa04c'
+'2cf8668fa77a96fe562dafd50cab41aad03f53ee8b91587b1b45ecd193c1517a')
+
+prepare() {
+# create *.desktop file
+  gendesk -f -n \
+  --pkgname="sage-notebook" \
+  --pkgdesc="SageMath notebook" \
+  --name="SageMath" \
+  --exec="/usr/bin/sage -notebook=sagenb" \
+  --terminal=true \
+  --categories="Education;Science;Math"
+
+  cd sagenb-$pkgver
+# Use python2
+  find -name '*.py' | xargs sed -e 's|#! /usr/bin/python|#! /usr/bin/python2|' 
-e 's|#!/usr/bin/python|#!/usr/bin/python2|' \
+-e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' -i
+  sed -e 's|python %s|python2 %s|' -i sagenb/notebook/run_notebook.py
+  sed -e "s|python='python'|python='python2'|" -i sagenb/interfaces/expect.py 
+}
+
+build() {
+  cd sagenb-$pkgver
+  python2 setup.py build
+  

[arch-commits] Commit in open-vm-tools/repos/community-x86_64 (6 files)

2019-02-01 Thread Christian Hesse via arch-commits
Date: Friday, February 1, 2019 @ 20:31:47
  Author: eworm
Revision: 429130

archrelease: copy trunk to community-x86_64

Added:
  open-vm-tools/repos/community-x86_64/PKGBUILD
(from rev 429129, open-vm-tools/trunk/PKGBUILD)
  open-vm-tools/repos/community-x86_64/vmtoolsd.service
(from rev 429129, open-vm-tools/trunk/vmtoolsd.service)
  open-vm-tools/repos/community-x86_64/vmware-vmblock-fuse.service
(from rev 429129, open-vm-tools/trunk/vmware-vmblock-fuse.service)
Deleted:
  open-vm-tools/repos/community-x86_64/PKGBUILD
  open-vm-tools/repos/community-x86_64/vmtoolsd.service
  open-vm-tools/repos/community-x86_64/vmware-vmblock-fuse.service

-+
 PKGBUILD|  114 +-
 vmtoolsd.service|   18 +++---
 vmware-vmblock-fuse.service |   24 
 3 files changed, 78 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-01 20:31:42 UTC (rev 429129)
+++ PKGBUILD2019-02-01 20:31:47 UTC (rev 429130)
@@ -1,57 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Krzysztof Raczkowski 
-
-pkgname=open-vm-tools
-epoch=6
-pkgver=10.3.0
-pkgrel=3
-pkgdesc='The Open Virtual Machine Tools (open-vm-tools) are the open source 
implementation of VMware Tools'
-arch=('x86_64')
-url='https://github.com/vmware/open-vm-tools'
-license=('LGPL')
-depends=('libdnet' 'icu' 'procps-ng' 'uriparser' 'libsigc++' 'libxss'
- 'iproute2' 'fuse2' 'lsb-release' 'libmspack')
-makedepends=('chrpath' 'doxygen' 'gtkmm3' 'libxtst' 'python' 'rpcsvc-proto')
-optdepends=('gtkmm3: DnD/CP plugin'
-'libxtst: DnD/CP, resolution set plugins'
-'netctl: suspend-resume network state'
-'networkmanager: suspend-resume network state')
-backup=('etc/xdg/autostart/vmware-user.desktop')
-options=('docs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/vmware/open-vm-tools/archive/stable-${pkgver/_/-}.tar.gz;
-'vmtoolsd.service'
-'vmware-vmblock-fuse.service')
-sha256sums=('b3d0b5fd272a8dc35cab1ddd732f9d436f72682925212a6cdeccdab283e2f5ec'
-'5a9403f78356873258521644068f2c9639b994d5954e5ad953934136822b2689'
-'99e3cc1da20a751049144cc02dec77174a55109b5b5960e1facd78709da7724f')
-
-build() {
-  cd "$srcdir/$pkgname-"*"/open-vm-tools"
-
-  autoreconf -vi
-  sh ./configure --prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc \
---with-udev-rules-dir=/usr/lib/udev/rules.d \
---without-xmlsecurity \
---without-kernel-modules
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-"*"/open-vm-tools"
-
-  make install DESTDIR="$pkgdir"
-  chmod 7755 "$pkgdir"/usr/bin/vmware-user-suid-wrapper
-
-  # install vmware-xdg-detect-de
-  install -D -m 0755 scripts/common/vmware-xdg-detect-de 
"$pkgdir"/usr/bin/vmware-xdg-detect-de
-
-  # We don't want a symlink in /sbin
-  rm "$pkgdir"/sbin/mount.vmhgfs
-  rmdir "$pkgdir"/sbin
-
-  # install systemd files
-  install -Dm644 "$srcdir"/vmtoolsd.service 
"$pkgdir"/usr/lib/systemd/system/vmtoolsd.service
-  install -Dm644 "$srcdir"/vmware-vmblock-fuse.service 
"$pkgdir"/usr/lib/systemd/system/vmware-vmblock-fuse.service
-}

Copied: open-vm-tools/repos/community-x86_64/PKGBUILD (from rev 429129, 
open-vm-tools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-01 20:31:47 UTC (rev 429130)
@@ -0,0 +1,57 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Krzysztof Raczkowski 
+
+pkgname=open-vm-tools
+epoch=6
+pkgver=10.3.5
+pkgrel=1
+pkgdesc='The Open Virtual Machine Tools (open-vm-tools) are the open source 
implementation of VMware Tools'
+arch=('x86_64')
+url='https://github.com/vmware/open-vm-tools'
+license=('LGPL')
+depends=('libdnet' 'icu' 'procps-ng' 'uriparser' 'libsigc++' 'libxss'
+ 'iproute2' 'fuse2' 'lsb-release' 'libmspack')
+makedepends=('chrpath' 'doxygen' 'gtkmm3' 'libxtst' 'python' 'rpcsvc-proto')
+optdepends=('gtkmm3: DnD/CP plugin'
+'libxtst: DnD/CP, resolution set plugins'
+'netctl: suspend-resume network state'
+'networkmanager: suspend-resume network state')
+backup=('etc/xdg/autostart/vmware-user.desktop')
+options=('docs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/vmware/open-vm-tools/archive/stable-${pkgver/_/-}.tar.gz;
+'vmtoolsd.service'
+'vmware-vmblock-fuse.service')
+sha256sums=('c0ecd281d6113ca700b1ab0a10559db72e80d8fc03264d53ebfdc400578ab1b6'
+'5a9403f78356873258521644068f2c9639b994d5954e5ad953934136822b2689'
+'99e3cc1da20a751049144cc02dec77174a55109b5b5960e1facd78709da7724f')
+
+build() {
+  cd "$srcdir/$pkgname-"*"/open-vm-tools"
+
+  autoreconf -vi
+  sh ./configure --prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--with-udev-rules-dir=/usr/lib/udev/rules.d \
+

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

2019-02-01 Thread Christian Hesse via arch-commits
Date: Friday, February 1, 2019 @ 20:31:42
  Author: eworm
Revision: 429129

upgpkg: open-vm-tools 6:10.3.5-1

new upstream release

Modified:
  open-vm-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 20:14:03 UTC (rev 429128)
+++ PKGBUILD2019-02-01 20:31:42 UTC (rev 429129)
@@ -3,8 +3,8 @@
 
 pkgname=open-vm-tools
 epoch=6
-pkgver=10.3.0
-pkgrel=3
+pkgver=10.3.5
+pkgrel=1
 pkgdesc='The Open Virtual Machine Tools (open-vm-tools) are the open source 
implementation of VMware Tools'
 arch=('x86_64')
 url='https://github.com/vmware/open-vm-tools'
@@ -21,7 +21,7 @@
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/vmware/open-vm-tools/archive/stable-${pkgver/_/-}.tar.gz;
 'vmtoolsd.service'
 'vmware-vmblock-fuse.service')
-sha256sums=('b3d0b5fd272a8dc35cab1ddd732f9d436f72682925212a6cdeccdab283e2f5ec'
+sha256sums=('c0ecd281d6113ca700b1ab0a10559db72e80d8fc03264d53ebfdc400578ab1b6'
 '5a9403f78356873258521644068f2c9639b994d5954e5ad953934136822b2689'
 '99e3cc1da20a751049144cc02dec77174a55109b5b5960e1facd78709da7724f')
 


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

2019-02-01 Thread Felix Yan via arch-commits
Date: Friday, February 1, 2019 @ 20:14:03
  Author: felixonmars
Revision: 429128

update vim file installation path (FS#61599)

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 20:07:49 UTC (rev 429127)
+++ PKGBUILD2019-02-01 20:14:03 UTC (rev 429128)
@@ -42,7 +42,7 @@
 cd "${srcdir}/${pkgname}-${pkgver}"
 runhaskell Setup copy --destdir="${pkgdir}"
 
-install -Dm644 etc/filetype.vim 
"$pkgdir"/usr/share/vim/vimfiles/filetype.vim
+install -Dm644 etc/filetype.vim 
"$pkgdir"/usr/share/vim/vimfiles/ftdetect/tamarin.vim
 install -Dm644 etc/spthy.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/spthy.vim
 install -Dm644 etc/sapic.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/sapic.vim
 


[arch-commits] Commit in acme.sh/repos/community-any (PKGBUILD PKGBUILD)

2019-02-01 Thread Felix Yan via arch-commits
Date: Friday, February 1, 2019 @ 20:07:49
  Author: felixonmars
Revision: 429127

archrelease: copy trunk to community-any

Added:
  acme.sh/repos/community-any/PKGBUILD
(from rev 429126, acme.sh/trunk/PKGBUILD)
Deleted:
  acme.sh/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-01 20:07:32 UTC (rev 429126)
+++ PKGBUILD2019-02-01 20:07:49 UTC (rev 429127)
@@ -1,27 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Gavin Lloyd 
-
-pkgname=acme.sh
-pkgver=2.7.9
-pkgrel=1
-pkgdesc='An ACME Shell script, an acme client alternative to certbot'
-arch=('any')
-url='https://github.com/Neilpang/acme.sh'
-license=('GPL3')
-depends=('bash')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/Neilpang/acme.sh/archive/$pkgver.tar.gz;)
-sha256sums=('25f8eef1a53584e3ebc653e1ae7763362ca97c40bb476ab7fee01aa50fa3a101')
-
-package() {
-  cd $pkgname-$pkgver
-
-  install -dm755 "$pkgdir"/usr/share/acme.sh/deploy
-  install -dm755 "$pkgdir"/usr/share/acme.sh/dnsapi
-  install -dm755 "$pkgdir"/usr/bin
-
-  install -m755 acme.sh "$pkgdir"/usr/share/acme.sh/
-  install -m755 deploy/*.sh "$pkgdir"/usr/share/acme.sh/deploy/
-  install -m755 dnsapi/*.sh "$pkgdir"/usr/share/acme.sh/dnsapi/
-
-  ln -s /usr/share/acme.sh/acme.sh "$pkgdir"/usr/bin/acme.sh
-}

Copied: acme.sh/repos/community-any/PKGBUILD (from rev 429126, 
acme.sh/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-01 20:07:49 UTC (rev 429127)
@@ -0,0 +1,27 @@
+# Maintainer: Felix Yan 
+# Contributor: Gavin Lloyd 
+
+pkgname=acme.sh
+pkgver=2.8.0
+pkgrel=1
+pkgdesc='An ACME Shell script, an acme client alternative to certbot'
+arch=('any')
+url='https://github.com/Neilpang/acme.sh'
+license=('GPL3')
+depends=('bash')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Neilpang/acme.sh/archive/$pkgver.tar.gz;)
+sha256sums=('51d20c71e513e9fde0114de9ba3ada4e392e395981fb8d598b0ea610e183f009')
+
+package() {
+  cd $pkgname-$pkgver
+
+  install -dm755 "$pkgdir"/usr/share/acme.sh/deploy
+  install -dm755 "$pkgdir"/usr/share/acme.sh/dnsapi
+  install -dm755 "$pkgdir"/usr/bin
+
+  install -m755 acme.sh "$pkgdir"/usr/share/acme.sh/
+  install -m755 deploy/*.sh "$pkgdir"/usr/share/acme.sh/deploy/
+  install -m755 dnsapi/*.sh "$pkgdir"/usr/share/acme.sh/dnsapi/
+
+  ln -s /usr/share/acme.sh/acme.sh "$pkgdir"/usr/bin/acme.sh
+}


[arch-commits] Commit in acme.sh/trunk (PKGBUILD)

2019-02-01 Thread Felix Yan via arch-commits
Date: Friday, February 1, 2019 @ 20:07:32
  Author: felixonmars
Revision: 429126

upgpkg: acme.sh 2.8.0-1

Modified:
  acme.sh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 20:06:34 UTC (rev 429125)
+++ PKGBUILD2019-02-01 20:07:32 UTC (rev 429126)
@@ -2,7 +2,7 @@
 # Contributor: Gavin Lloyd 
 
 pkgname=acme.sh
-pkgver=2.7.9
+pkgver=2.8.0
 pkgrel=1
 pkgdesc='An ACME Shell script, an acme client alternative to certbot'
 arch=('any')
@@ -10,7 +10,7 @@
 license=('GPL3')
 depends=('bash')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/Neilpang/acme.sh/archive/$pkgver.tar.gz;)
-sha256sums=('25f8eef1a53584e3ebc653e1ae7763362ca97c40bb476ab7fee01aa50fa3a101')
+sha256sums=('51d20c71e513e9fde0114de9ba3ada4e392e395981fb8d598b0ea610e183f009')
 
 package() {
   cd $pkgname-$pkgver


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

2019-02-01 Thread Alexander Rødseth via arch-commits
Date: Friday, February 1, 2019 @ 20:06:23
  Author: arodseth
Revision: 429124

upgpkg: opam 2.0.3-1

Modified:
  opam/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 18:52:45 UTC (rev 429123)
+++ PKGBUILD2019-02-01 20:06:23 UTC (rev 429124)
@@ -2,27 +2,26 @@
 # Contributor: Vincent B. 
 
 pkgname=opam
-pkgver=2.0.1
-pkgrel=2
+pkgver=2.0.3
+pkgrel=1
 pkgdesc='OCaml package manager'
-arch=('x86_64')
+arch=(x86_64)
 url='https://opam.ocaml.org/'
-license=('GPL')
-depends=('bubblewrap' 'ocaml-compiler-libs' 'unzip')
+license=(GPL)
+depends=(bubblewrap ocaml-compiler-libs unzip)
 optdepends=('darcs: For downloading packages with darcs'
 'git: For downloading packages with git'
 'mercurial: For downloading packages with mercurial'
 'rsync: For downloading packages with rsync')
 
source=("https://github.com/ocaml/opam/releases/download/$pkgver/opam-full-$pkgver.tar.gz;)
-sha256sums=('81f7f1b661a0c1e04642fe02d0bea5524b32aa2cbed0ecf9b18d7145324ed97c')
+sha256sums=('0589da4da184584a5445d59385009536534f60bc0e27772245b2f49e5fa8f0e2')
 
 build() {
   cd "opam-full-$pkgver"
   ./configure --prefix=/usr
-  make \
+  make lib-ext all -j1 \
 OCAMLC='ocamlc -unsafe-string' \
-OCAMLOPT='ocamlopt -unsafe-string' \
-lib-ext all -j1
+OCAMLOPT='ocamlopt -unsafe-string'
 }
 
 package() {


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

2019-02-01 Thread Alexander Rødseth via arch-commits
Date: Friday, February 1, 2019 @ 20:06:34
  Author: arodseth
Revision: 429125

archrelease: copy trunk to community-x86_64

Added:
  opam/repos/community-x86_64/PKGBUILD
(from rev 429124, opam/trunk/PKGBUILD)
Deleted:
  opam/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-01 20:06:23 UTC (rev 429124)
+++ PKGBUILD2019-02-01 20:06:34 UTC (rev 429125)
@@ -1,37 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Vincent B. 
-
-pkgname=opam
-pkgver=2.0.1
-pkgrel=2
-pkgdesc='OCaml package manager'
-arch=('x86_64')
-url='https://opam.ocaml.org/'
-license=('GPL')
-depends=('bubblewrap' 'ocaml-compiler-libs' 'unzip')
-optdepends=('darcs: For downloading packages with darcs'
-'git: For downloading packages with git'
-'mercurial: For downloading packages with mercurial'
-'rsync: For downloading packages with rsync')
-source=("https://github.com/ocaml/opam/releases/download/$pkgver/opam-full-$pkgver.tar.gz;)
-sha256sums=('81f7f1b661a0c1e04642fe02d0bea5524b32aa2cbed0ecf9b18d7145324ed97c')
-
-build() {
-  cd "opam-full-$pkgver"
-  ./configure --prefix=/usr
-  make \
-OCAMLC='ocamlc -unsafe-string' \
-OCAMLOPT='ocamlopt -unsafe-string' \
-lib-ext all -j1
-}
-
-package() {
-  make -C "opam-full-$pkgver" DESTDIR="$pkgdir" install
-
-  install -d "$pkgdir/usr/share/doc"
-  mv "$pkgdir/usr/doc/opam-installer" "$pkgdir/usr/share/doc/opam"
-  rmdir "$pkgdir/usr/doc"
-}
-
-# getver: opam.ocaml.org
-# vim: ts=2 sw=2 et:

Copied: opam/repos/community-x86_64/PKGBUILD (from rev 429124, 
opam/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-01 20:06:34 UTC (rev 429125)
@@ -0,0 +1,36 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Vincent B. 
+
+pkgname=opam
+pkgver=2.0.3
+pkgrel=1
+pkgdesc='OCaml package manager'
+arch=(x86_64)
+url='https://opam.ocaml.org/'
+license=(GPL)
+depends=(bubblewrap ocaml-compiler-libs unzip)
+optdepends=('darcs: For downloading packages with darcs'
+'git: For downloading packages with git'
+'mercurial: For downloading packages with mercurial'
+'rsync: For downloading packages with rsync')
+source=("https://github.com/ocaml/opam/releases/download/$pkgver/opam-full-$pkgver.tar.gz;)
+sha256sums=('0589da4da184584a5445d59385009536534f60bc0e27772245b2f49e5fa8f0e2')
+
+build() {
+  cd "opam-full-$pkgver"
+  ./configure --prefix=/usr
+  make lib-ext all -j1 \
+OCAMLC='ocamlc -unsafe-string' \
+OCAMLOPT='ocamlopt -unsafe-string'
+}
+
+package() {
+  make -C "opam-full-$pkgver" DESTDIR="$pkgdir" install
+
+  install -d "$pkgdir/usr/share/doc"
+  mv "$pkgdir/usr/doc/opam-installer" "$pkgdir/usr/share/doc/opam"
+  rmdir "$pkgdir/usr/doc"
+}
+
+# getver: opam.ocaml.org
+# vim: ts=2 sw=2 et:


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

2019-02-01 Thread Felix Yan via arch-commits
Date: Friday, February 1, 2019 @ 19:38:13
  Author: felixonmars
Revision: 345016

archrelease: copy trunk to testing-x86_64

Added:
  libgda/repos/testing-x86_64/
  libgda/repos/testing-x86_64/PKGBUILD
(from rev 345015, libgda/trunk/PKGBUILD)
  libgda/repos/testing-x86_64/fix-crash.diff
(from rev 345015, libgda/trunk/fix-crash.diff)

+
 PKGBUILD   |  103 +++
 fix-crash.diff |   21 +++
 2 files changed, 124 insertions(+)

Copied: libgda/repos/testing-x86_64/PKGBUILD (from rev 345015, 
libgda/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-02-01 19:38:13 UTC (rev 345016)
@@ -0,0 +1,103 @@
+# Contributor: tobias 
+# Contributor: Tobias Kieslich 
+
+pkgname=(libgda libgda-{firebird,jdbc,mysql,postgres})
+pkgver=5.2.8+7+ga5355eb42
+pkgrel=3
+pkgdesc="Database access library"
+url="http://www.gnome-db.org/;
+arch=(x86_64)
+license=(GPL)
+depends=(gtksourceview3 libxslt python2 libsecret graphviz goocanvas iso-codes 
libgee openssl)
+makedepends=(glade mariadb-libs postgresql-libs libfbclient jdk8-openjdk 
intltool
+ gobject-introspection gtk-doc vala itstool gnome-common git)
+_commit=a5355eb42addc49a4dd63a8cc7d0367a09a5e60b  # LIBGDA_5.2
+source=("git+https://gitlab.gnome.org/GNOME/libgda.git#commit=$_commit;
+fix-crash.diff)
+sha256sums=('SKIP'
+'7eab1c7f5c11a87ce7a3e47c5c9058595f14c0b601daa6e0a32d797b708d97ba')
+
+_apiver=5.0
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^LIBGDA_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  mkdir providers
+
+  cd $pkgname
+  patch -Np1 -i ../fix-crash.diff
+  find -name '*.py' -exec sed -i '1s/python$/&2/' {} +
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static \
+  --with-bdb=/usr --with-bdb-libdir-name=lib \
+  --enable-json --enable-system-sqlite --enable-binreloc \
+  --enable-vala --enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package_libgda() {
+  optdepends=('libgda-firebird: provider for Firebird'
+  'libgda-jdbc: provider for JDBC'
+  'libgda-mysql: provider for MySQL'
+  'libgda-postgres: provider for PostgreSQL')
+  options+=(emptydirs)
+
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+
+  mkdir -p providers
+  local provider
+  for provider in firebird jdbc mysql postgres; do
+mv "$pkgdir"/usr/lib/libgda-$_apiver/providers/libgda-$provider[-.]*so \
+   "$pkgdir"/usr/lib/pkgconfig/libgda-$provider-$_apiver.pc \
+   "$pkgdir"/usr/share/libgda-$_apiver/${provider}_specs_*.xml \
+   "$srcdir/providers"
+  done
+
+  mv "$pkgdir"/usr/lib/libgda-$_apiver/providers/gdaprovider-${_apiver}.jar \
+ "$pkgdir"/usr/bin/gda-list-jdbc-providers-${_apiver} \
+ "$srcdir/providers"
+}
+
+_packageprovider() {
+  install -d "$pkgdir"/usr/lib/{pkgconfig,libgda-$_apiver/providers} \
+ "$pkgdir"/usr/share/libgda-$_apiver
+  mv providers/libgda-${1}[-.]*so "$pkgdir/usr/lib/libgda-$_apiver/providers"
+  mv providers/libgda-${1}-$_apiver.pc "$pkgdir/usr/lib/pkgconfig"
+  mv providers/${1}_specs_*.xml "$pkgdir/usr/share/libgda-$_apiver"
+}
+
+package_libgda-firebird() {
+  pkgdesc="libgda provider for Firebird"
+  depends=(libgda libfbclient)
+  _packageprovider firebird
+}
+
+package_libgda-jdbc() {
+  pkgdesc="libgda provider for JDBC"
+  depends=(libgda java-environment)
+  _packageprovider jdbc
+  install -d "$pkgdir/usr/bin"
+  mv providers/gda-list-jdbc-providers-$_apiver "$pkgdir/usr/bin"
+  mv providers/gdaprovider-$_apiver.jar 
"$pkgdir/usr/lib/libgda-$_apiver/providers"
+}
+
+package_libgda-mysql() {
+  pkgdesc="libgda provider for MySQL"
+  depends=(libgda mariadb-libs)
+  _packageprovider mysql
+}
+
+package_libgda-postgres() {
+  pkgdesc="libgda provider for PostgreSQL"
+  depends=(libgda postgresql-libs)
+  _packageprovider postgres
+}

Copied: libgda/repos/testing-x86_64/fix-crash.diff (from rev 345015, 
libgda/trunk/fix-crash.diff)
===
--- testing-x86_64/fix-crash.diff   (rev 0)
+++ testing-x86_64/fix-crash.diff   2019-02-01 19:38:13 UTC (rev 345016)
@@ -0,0 +1,21 @@
+diff --git i/libgda-ui/data-entries/plugins/libmain.c 
w/libgda-ui/data-entries/plugins/libmain.c
+index a30c2db2c3258111..1356488c8b0940f9 100644
+--- i/libgda-ui/data-entries/plugins/libmain.c
 w/libgda-ui/data-entries/plugins/libmain.c
+@@ -39,15 +39,7 @@
+ #endif
+ 
+ #ifdef HAVE_GTKSOURCEVIEW
+-  #ifdef GTK_DISABLE_SINGLE_INCLUDES
+-#undef GTK_DISABLE_SINGLE_INCLUDES
+-  #endif
+-
+-  #include 
+-  #include 
+-  #include 
+-  #include 
+-  #include 
++#include 
+ #endif
+ 
+ static GdauiDataEntry *plugin_entry_filesel_create_func 

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

2019-02-01 Thread Felix Yan via arch-commits
Date: Friday, February 1, 2019 @ 19:37:58
  Author: felixonmars
Revision: 345015

upgpkg: libgda 5.2.8+7+ga5355eb42-3

rebuild with libfbclient 3 (disabled libfbembed plugin)

Modified:
  libgda/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 19:10:13 UTC (rev 345014)
+++ PKGBUILD2019-02-01 19:37:58 UTC (rev 345015)
@@ -3,7 +3,7 @@
 
 pkgname=(libgda libgda-{firebird,jdbc,mysql,postgres})
 pkgver=5.2.8+7+ga5355eb42
-pkgrel=2
+pkgrel=3
 pkgdesc="Database access library"
 url="http://www.gnome-db.org/;
 arch=(x86_64)


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

2019-02-01 Thread Felix Yan via arch-commits
Date: Friday, February 1, 2019 @ 19:09:42
  Author: felixonmars
Revision: 345013

upgpkg: libfbclient 3.0.4.33054-1

Modified:
  libfbclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 17:52:04 UTC (rev 345012)
+++ PKGBUILD2019-02-01 19:09:42 UTC (rev 345013)
@@ -1,53 +1,46 @@
-# Maintainer: Carlier Laurent 
+# Maintainer: Felix Yan 
+# Contributor: Carlier Laurent 
 # Contributor: Douglas Soares de Andrade 
 
 pkgname=libfbclient
-pkgver=2.5.8.27089
-pkgrel=3
+pkgver=3.0.4.33054
+pkgrel=1
 pkgdesc="Client library for Firebird"
 arch=('x86_64')
 url="http://www.firebirdsql.org/;
 license=('custom')
-depends=('gcc-libs' 'icu')
-options=('!makeflags')
-source=(https://github.com/FirebirdSQL/firebird/releases/download/R2_5_8/Firebird-$pkgver-0.tar.bz2
+depends=('gcc-libs' 'libtommath')
+source=(https://github.com/FirebirdSQL/firebird/releases/download/R3_0_4/Firebird-$pkgver-0.tar.bz2
 LICENSE)
-md5sums=('38862a3da39cf91f4f2366fb510f18a6'
- '0d61798861e159c85dbdf0f30fe2f2ce')
+sha512sums=('a346ebd53aeccf0b33eac5d35c3c3356624c1fbd0ad897173b3f68d940143062b28460a2822df807e8e8a1ea8792ebf98ed33e5b3ae273d86e6e36295a7fc8ad'
+
'1e4c24f60d2cdc1a89b52b45f778ed264ae14428a940b0509ca5c50182aed6149b7a6a546e7d08b0f264bafde81a210abe20db204c20db596f5fc2ec205ac37e')
 
-prepare() {
-  cd $srcdir/Firebird-$pkgver-0
-
-  # libio.h is not installed by glibc >= 2.28
-  sed -i '/libio\.h/d' src/jrd/perf.h
-}
-
 build() {
-  cd $srcdir/Firebird-$pkgver-0
+  cd Firebird-$pkgver-0
 
-  ./configure --prefix=/usr --with-system-icu --without-fbudf \
+  ./configure --prefix=/usr --without-fbudf \
 --without-fbsbin --without-fbconf --without-fbdoc --without-fbsample \
 --without-fbsample-db --without-fbintl --without-fbmisc --without-fbhelp \
 --without-fbsecure-db --with-fbmsg=/usr/share/firebird --without-fblog \
 --without-fbglock --without-fbplugins
 
-  CXXFLAGS+=' -fno-lifetime-dse' make
+  make
 }
 
 package() {
-  cd $srcdir/Firebird-$pkgver-0
+  cd Firebird-$pkgver-0
 
-  mkdir -p $pkgdir/usr/{bin,share/{firebird,licenses/$pkgname}}
+  mkdir -p "$pkgdir"/usr/{bin,share/{firebird,licenses/$pkgname}}
 
-  cp -R gen/firebird/{lib,include} $pkgdir/usr
-  rm -f $pkgdir/usr/lib/libedit.a
+  cp -R gen/Release/firebird/{lib,include} "$pkgdir"/usr
+  rm -f "$pkgdir"/usr/lib/libedit.a
 
-  install -m644 gen/firebird/*.msg $pkgdir/usr/share/firebird
-  install -m755 gen/firebird/bin/fb_config $pkgdir/usr/bin
-  install -m644 ${srcdir}/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  install -m644 gen/Release/firebird/*.msg "$pkgdir"/usr/share/firebird
+  install -m755 gen/Release/firebird/bin/fb_config "$pkgdir"/usr/bin
+  install -m644 "$srcdir"/LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 
   # Add libgds support FS#30062 FS#30282
-  cd $pkgdir/usr/lib
+  cd "$pkgdir"/usr/lib
   ln -s libfbclient.so libgds.so.0
   ln -s libfbclient.so libgds.so
 }


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

2019-02-01 Thread Felix Yan via arch-commits
Date: Friday, February 1, 2019 @ 19:10:13
  Author: felixonmars
Revision: 345014

archrelease: copy trunk to testing-x86_64

Added:
  libfbclient/repos/testing-x86_64/
  libfbclient/repos/testing-x86_64/LICENSE
(from rev 345013, libfbclient/trunk/LICENSE)
  libfbclient/repos/testing-x86_64/PKGBUILD
(from rev 345013, libfbclient/trunk/PKGBUILD)

--+
 LICENSE  |   44 
 PKGBUILD |   46 ++
 2 files changed, 90 insertions(+)

Copied: libfbclient/repos/testing-x86_64/LICENSE (from rev 345013, 
libfbclient/trunk/LICENSE)
===
--- testing-x86_64/LICENSE  (rev 0)
+++ testing-x86_64/LICENSE  2019-02-01 19:10:13 UTC (rev 345014)
@@ -0,0 +1,44 @@
+
+LICENSES
+
+
+The applicable and approved licenses for the source files
+of the Firebird RDBMS project are:
+
+  1) InterBase Public License (IPL), version 1.0
+ http://bdn.borland.com/article/0,1410,30198,00.html
+
+  2) Initial Developer's Public License (IDPL), version 1.0
+ http://www.ibphoenix.com/main.nfs?a=ibphoenix=ibp_idpl
+
+The IPL is copyright of Borland Corp., the other licenses are copyright
+by the source code authors and contributors.
+
+
+USAGE RULES
+---
+
+1) The source code which was released under the IPL must keep this license.
+   All modifications / adaptations of this code are still subjects of the IPL.
+
+2) The files that are derived from the IPL covered code, must also keep
+   this license. It means that if any new file contains some code covered by
+   the IPL, then this file should be released under the IPL too.
+
+3) The new files developed by the members of the Firebird project should
+   be released under the IDPL.
+
+4) The new files contributed by people who are not members of the Firebird
+   project should follow the rule #3. If an author (initial developer) doesn't
+   specify the license to be used, the person who applies the contributed code
+   to the CVS tree (a committer) becomes responsible for the license assigned
+   to the contributed code.
+
+5) Every non-binary file that exists in the CVS tree, should have a header
+   section which describes the license this code is released under. If a file
+   contains no header, it means that this code is freeware and nobody owns the
+   appropriate copyrights.
+
+
+You may find the exhibits for the approved licenses in /doc/license directory
+of the CVS tree.

Copied: libfbclient/repos/testing-x86_64/PKGBUILD (from rev 345013, 
libfbclient/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-02-01 19:10:13 UTC (rev 345014)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Carlier Laurent 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=libfbclient
+pkgver=3.0.4.33054
+pkgrel=1
+pkgdesc="Client library for Firebird"
+arch=('x86_64')
+url="http://www.firebirdsql.org/;
+license=('custom')
+depends=('gcc-libs' 'libtommath')
+source=(https://github.com/FirebirdSQL/firebird/releases/download/R3_0_4/Firebird-$pkgver-0.tar.bz2
+LICENSE)
+sha512sums=('a346ebd53aeccf0b33eac5d35c3c3356624c1fbd0ad897173b3f68d940143062b28460a2822df807e8e8a1ea8792ebf98ed33e5b3ae273d86e6e36295a7fc8ad'
+
'1e4c24f60d2cdc1a89b52b45f778ed264ae14428a940b0509ca5c50182aed6149b7a6a546e7d08b0f264bafde81a210abe20db204c20db596f5fc2ec205ac37e')
+
+build() {
+  cd Firebird-$pkgver-0
+
+  ./configure --prefix=/usr --without-fbudf \
+--without-fbsbin --without-fbconf --without-fbdoc --without-fbsample \
+--without-fbsample-db --without-fbintl --without-fbmisc --without-fbhelp \
+--without-fbsecure-db --with-fbmsg=/usr/share/firebird --without-fblog \
+--without-fbglock --without-fbplugins
+
+  make
+}
+
+package() {
+  cd Firebird-$pkgver-0
+
+  mkdir -p "$pkgdir"/usr/{bin,share/{firebird,licenses/$pkgname}}
+
+  cp -R gen/Release/firebird/{lib,include} "$pkgdir"/usr
+  rm -f "$pkgdir"/usr/lib/libedit.a
+
+  install -m644 gen/Release/firebird/*.msg "$pkgdir"/usr/share/firebird
+  install -m755 gen/Release/firebird/bin/fb_config "$pkgdir"/usr/bin
+  install -m644 "$srcdir"/LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  # Add libgds support FS#30062 FS#30282
+  cd "$pkgdir"/usr/lib
+  ln -s libfbclient.so libgds.so.0
+  ln -s libfbclient.so libgds.so
+}


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

2019-02-01 Thread Christian Hesse via arch-commits
Date: Friday, February 1, 2019 @ 18:52:45
  Author: eworm
Revision: 429123

archrelease: copy trunk to community-x86_64

Added:
  
mysql-workbench/repos/community-x86_64/0001-mysql-workbench-no-check-for-updates.patch
(from rev 429122, 
mysql-workbench/trunk/0001-mysql-workbench-no-check-for-updates.patch)
  
mysql-workbench/repos/community-x86_64/0002-disable-unsupported-operating-system-warning.patch
(from rev 429122, 
mysql-workbench/trunk/0002-disable-unsupported-operating-system-warning.patch)
  mysql-workbench/repos/community-x86_64/PKGBUILD
(from rev 429122, mysql-workbench/trunk/PKGBUILD)
  mysql-workbench/repos/community-x86_64/arch_linux_profile.xml
(from rev 429122, mysql-workbench/trunk/arch_linux_profile.xml)
Deleted:
  
mysql-workbench/repos/community-x86_64/0001-mysql-workbench-no-check-for-updates.patch
  
mysql-workbench/repos/community-x86_64/0002-disable-unsupported-operating-system-warning.patch
  mysql-workbench/repos/community-x86_64/PKGBUILD
  mysql-workbench/repos/community-x86_64/arch_linux_profile.xml

-+
 0001-mysql-workbench-no-check-for-updates.patch |   60 +-
 0002-disable-unsupported-operating-system-warning.patch |   52 +-
 PKGBUILD|  334 +++---
 3 files changed, 223 insertions(+), 223 deletions(-)

Deleted: 0001-mysql-workbench-no-check-for-updates.patch
===
--- 0001-mysql-workbench-no-check-for-updates.patch 2019-02-01 18:52:36 UTC 
(rev 429122)
+++ 0001-mysql-workbench-no-check-for-updates.patch 2019-02-01 18:52:45 UTC 
(rev 429123)
@@ -1,30 +0,0 @@
-From d15e588be02e44b1317bf90ff7be1714267281c8 Mon Sep 17 00:00:00 2001
-From: Christian Hesse 
-Date: Mon, 23 Jul 2018 11:03:19 +0200
-Subject: [PATCH 1/4] mysql-workbench-no-check-for-updates
-
-Signed-off-by: Christian Hesse 

- res/wbdata/main_menu.xml | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/res/wbdata/main_menu.xml b/res/wbdata/main_menu.xml
-index bfa63ef..957f809 100644
 a/res/wbdata/main_menu.xml
-+++ b/res/wbdata/main_menu.xml
-@@ -2277,6 +2277,7 @@
- builtin:show_log_file
- action
- 
-+
- 
- separator
- windows,linux

Copied: 
mysql-workbench/repos/community-x86_64/0001-mysql-workbench-no-check-for-updates.patch
 (from rev 429122, 
mysql-workbench/trunk/0001-mysql-workbench-no-check-for-updates.patch)
===
--- 0001-mysql-workbench-no-check-for-updates.patch 
(rev 0)
+++ 0001-mysql-workbench-no-check-for-updates.patch 2019-02-01 18:52:45 UTC 
(rev 429123)
@@ -0,0 +1,30 @@
+From d15e588be02e44b1317bf90ff7be1714267281c8 Mon Sep 17 00:00:00 2001
+From: Christian Hesse 
+Date: Mon, 23 Jul 2018 11:03:19 +0200
+Subject: [PATCH 1/4] mysql-workbench-no-check-for-updates
+
+Signed-off-by: Christian Hesse 
+---
+ res/wbdata/main_menu.xml | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/res/wbdata/main_menu.xml b/res/wbdata/main_menu.xml
+index bfa63ef..957f809 100644
+--- a/res/wbdata/main_menu.xml
 b/res/wbdata/main_menu.xml
+@@ -2277,6 +2277,7 @@
+ builtin:show_log_file
+ action
+ 
++
+ 
+ separator
+ windows,linux

Deleted: 0002-disable-unsupported-operating-system-warning.patch
===
--- 0002-disable-unsupported-operating-system-warning.patch 2019-02-01 
18:52:36 UTC (rev 429122)
+++ 0002-disable-unsupported-operating-system-warning.patch 2019-02-01 
18:52:45 UTC (rev 429123)
@@ -1,26 +0,0 @@
-From 98a9974f550dfb5c8f66213774e4ef95848127e1 Mon Sep 17 00:00:00 2001
-From: Christian Hesse 
-Date: Mon, 23 Jul 2018 11:04:55 +0200
-Subject: [PATCH 2/4] disable-unsupported-operating-system-warning
-
-Signed-off-by: Christian Hesse 

- backend/wbprivate/workbench/wb_context.cpp | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/backend/wbprivate/workbench/wb_context.cpp 
b/backend/wbprivate/workbench/wb_context.cpp
-index e80501a..a4047b1 100644
 a/backend/wbprivate/workbench/wb_context.cpp
-+++ b/backend/wbprivate/workbench/wb_context.cpp
-@@ -1011,9 +1011,11 @@ void WBContext::init_finish_(WBOptions *options) {
- 
-   _frontendCallbacks->show_status_text(_("Ready."));
- 
-+#if 0
-   // Avoid our runtime tests to lock up when a modal warning dialog is 
displayed.
-   if (options->open_at_startup_type != "run-script")
- warnIfRunningOnUnsupportedOS();
-+#endif
- 
-   try {
- // execute action requested from command line

Copied: 
mysql-workbench/repos/community-x86_64/0002-disable-unsupported-operating-system-warning.patch
 (from rev 429122, 

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

2019-02-01 Thread Christian Hesse via arch-commits
Date: Friday, February 1, 2019 @ 18:52:36
  Author: eworm
Revision: 429122

upgpkg: mysql-workbench 8.0.15-2

update bundled mysql-connector-c++ & gdal

Modified:
  mysql-workbench/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 18:01:17 UTC (rev 429121)
+++ PKGBUILD2019-02-01 18:52:36 UTC (rev 429122)
@@ -6,10 +6,10 @@
 
 pkgname=mysql-workbench
 pkgver=8.0.15
-pkgrel=1
+pkgrel=2
 _mysql_version=${pkgver}
-_connector_version=8.0.14
-_gdal_version=2.3.2
+_connector_version=${pkgver}
+_gdal_version=2.4.0
 _boost_version=1.68.0
 pkgdesc='A cross-platform, visual database design tool developed by MySQL'
 arch=('x86_64')
@@ -35,9 +35,9 @@
 'SKIP'
 'bb1bca2dc2f23ee9dd395cc4db93b64561d4ac20b53be5d1dae563f7be64825e'
 'SKIP'
-'54d26f5d0a7162c4574b6fc9abd4543b03af46dfeff27e5bc2ea175c59593533'
+'b7e49cbee7d0e89ece7b2460ca7199dc4368be1b8411251050047232eb527b81'
 'SKIP'
-'3f6d78fe8807d1d6afb7bed27394f19467840a82bc36d65e66316fa0aa9d32a4'
+'c3791dcc6d37e59f6efa86e2df2a55a4485237b0a48e330ae08949f0cdf00f27'
 '7f6130bc3cf65f56a61ce9d5ea704fa10b462be126ad053e80e553d6d8b7'
 'cdf687f23bc6e8d52dbee9fa02b23d755e80f88476f0fc2e7c4c71cdfed3792f'
 '2d0f6dcf38f22e49ef7ab9de0230484f1ffac41b7ac40feaf5ef4538ae2f7a18'


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

2019-02-01 Thread Felix Yan via arch-commits
Date: Friday, February 1, 2019 @ 18:01:17
  Author: felixonmars
Revision: 429121

archrelease: copy trunk to community-any

Added:
  dns-lexicon/repos/community-any/PKGBUILD
(from rev 429120, dns-lexicon/trunk/PKGBUILD)
Deleted:
  dns-lexicon/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-01 18:00:40 UTC (rev 429120)
+++ PKGBUILD2019-02-01 18:01:17 UTC (rev 429121)
@@ -1,43 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=dns-lexicon
-pkgver=3.1.1
-pkgrel=1
-pkgdesc="Manipulate DNS records on various DNS providers in a 
standardized/agnostic way"
-arch=('any')
-url="https://github.com/AnalogJ/lexicon;
-license=('MIT')
-depends=('python-future' 'python-tldextract' 'python-cryptography' 
'python-yaml' 'python-setuptools'
- # requests[security] Expanded:
- 'python-requests' 'python-pyopenssl' 'python-idna')
-optdepends=('python-softlayer: for SoftLayer support'
-'python-boto3: for Route53 support'
-'python-pynamecheap: for Namecheap support'
-'python-zeep: for Subreg support'
-'python-xmltodict: for Plesk support'
-'python-beautifulsoup4: for Henet support'
-'python-localzone: for localzone support')
-checkdepends=('python-pytest-runner' 'python-vcrpy' 'python-softlayer' 
'python-boto3' 'python-mock'
-  'python-pynamecheap' 'python-zeep' 'python-xmltodict' 
'python-beautifulsoup4'
-  'python-localzone' 'bind-tools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/AnalogJ/lexicon/archive/v$pkgver.tar.gz;)
-sha512sums=('47f193fe6f72a95664edef3455bc50bbd09bc8fce8679b5283296de97fca03246c351eb51e74743542ef6855473f89e26a08a969832fe99e45806df388702fb2')
-
-build() {
-  cd lexicon-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd lexicon-$pkgver
-  python setup.py pytest --addopts '--ignore 
lexicon/tests/providers/test_transip.py'
-}
-
-package() {
-  cd lexicon-$pkgver
-  python setup.py install -O1 --prefix=/usr --root="$pkgdir"
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dns-lexicon/repos/community-any/PKGBUILD (from rev 429120, 
dns-lexicon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-01 18:01:17 UTC (rev 429121)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+pkgname=dns-lexicon
+pkgver=3.1.2
+pkgrel=1
+pkgdesc="Manipulate DNS records on various DNS providers in a 
standardized/agnostic way"
+arch=('any')
+url="https://github.com/AnalogJ/lexicon;
+license=('MIT')
+depends=('python-future' 'python-tldextract' 'python-cryptography' 
'python-yaml' 'python-setuptools'
+ # requests[security] Expanded:
+ 'python-requests' 'python-pyopenssl' 'python-idna')
+optdepends=('python-softlayer: for SoftLayer support'
+'python-boto3: for Route53 support'
+'python-pynamecheap: for Namecheap support'
+'python-zeep: for Subreg support'
+'python-xmltodict: for Plesk support'
+'python-beautifulsoup4: for Henet support'
+'python-localzone: for localzone support')
+checkdepends=('python-pytest-runner' 'python-vcrpy' 'python-softlayer' 
'python-boto3' 'python-mock'
+  'python-pynamecheap' 'python-zeep' 'python-xmltodict' 
'python-beautifulsoup4'
+  'python-localzone' 'bind-tools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/AnalogJ/lexicon/archive/v$pkgver.tar.gz;)
+sha512sums=('c99661466c17b219d6ece33ae15af5e63701cfc893cfab1e88f257219648b575ed666ca0b30576d26c5105682d4ea203b4af78f37afb1ef48038c8ba18efa299')
+
+build() {
+  cd lexicon-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd lexicon-$pkgver
+  python setup.py pytest --addopts '--ignore 
lexicon/tests/providers/test_transip.py'
+}
+
+package() {
+  cd lexicon-$pkgver
+  python setup.py install -O1 --prefix=/usr --root="$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-02-01 Thread Felix Yan via arch-commits
Date: Friday, February 1, 2019 @ 18:00:40
  Author: felixonmars
Revision: 429120

upgpkg: dns-lexicon 3.1.2-1

Modified:
  dns-lexicon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 17:12:53 UTC (rev 429119)
+++ PKGBUILD2019-02-01 18:00:40 UTC (rev 429120)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=dns-lexicon
-pkgver=3.1.1
+pkgver=3.1.2
 pkgrel=1
 pkgdesc="Manipulate DNS records on various DNS providers in a 
standardized/agnostic way"
 arch=('any')
@@ -21,7 +21,7 @@
   'python-pynamecheap' 'python-zeep' 'python-xmltodict' 
'python-beautifulsoup4'
   'python-localzone' 'bind-tools')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/AnalogJ/lexicon/archive/v$pkgver.tar.gz;)
-sha512sums=('47f193fe6f72a95664edef3455bc50bbd09bc8fce8679b5283296de97fca03246c351eb51e74743542ef6855473f89e26a08a969832fe99e45806df388702fb2')
+sha512sums=('c99661466c17b219d6ece33ae15af5e63701cfc893cfab1e88f257219648b575ed666ca0b30576d26c5105682d4ea203b4af78f37afb1ef48038c8ba18efa299')
 
 build() {
   cd lexicon-$pkgver


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

2019-02-01 Thread Jerome Leclanche via arch-commits
Date: Friday, February 1, 2019 @ 17:12:53
  Author: jleclanche
Revision: 429119

upgpkg: xonsh 0.8.9-1

Upstream release 0.8.9

Modified:
  xonsh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 17:02:20 UTC (rev 429118)
+++ PKGBUILD2019-02-01 17:12:53 UTC (rev 429119)
@@ -1,7 +1,7 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=xonsh
-pkgver=0.8.8
+pkgver=0.8.9
 pkgrel=1
 pkgdesc="Python-powered, cross-platform, Unix-gazing shell"
 url="http://xon.sh/;
@@ -12,7 +12,7 @@
 makedepends=("python-setuptools")
 
source=("$pkgname-$pkgver.zip::https://github.com/xonsh/xonsh/archive/$pkgver.zip;)
 install=xonsh.install
-sha256sums=("f1a066a0ed30e71a1aecfd91936c3f0abbc30543578a2653b8406815a46e05e3")
+sha256sums=("7073cbba6ba21b8fabbb70388058b8ce23cdb6fda0a19b9209798221e5e50bb7")
 
 package() {
cd "$srcdir/$pkgname-$pkgver"


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

2019-02-01 Thread Maxime Gauduin via arch-commits
Date: Friday, February 1, 2019 @ 17:02:10
  Author: alucryd
Revision: 429117

upgpkg: capnet-assist 2.2.3-1

Modified:
  capnet-assist/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 16:51:50 UTC (rev 429116)
+++ PKGBUILD2019-02-01 17:02:10 UTC (rev 429117)
@@ -1,7 +1,7 @@
 # Maintainer: Maxime Gauduin 
 
 pkgname=capnet-assist
-pkgver=2.2.2
+pkgver=2.2.3
 pkgrel=1
 pkgdesc='Captive Portal Assistant'
 arch=(x86_64)


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

2019-02-01 Thread Maxime Gauduin via arch-commits
Date: Friday, February 1, 2019 @ 17:02:20
  Author: alucryd
Revision: 429118

archrelease: copy trunk to community-x86_64

Added:
  capnet-assist/repos/community-x86_64/PKGBUILD
(from rev 429117, capnet-assist/trunk/PKGBUILD)
Deleted:
  capnet-assist/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-01 17:02:10 UTC (rev 429117)
+++ PKGBUILD2019-02-01 17:02:20 UTC (rev 429118)
@@ -1,39 +0,0 @@
-# Maintainer: Maxime Gauduin 
-
-pkgname=capnet-assist
-pkgver=2.2.2
-pkgrel=1
-pkgdesc='Captive Portal Assistant'
-arch=(x86_64)
-url=https://launchpad.net/capnet-assist
-license=(GPL3)
-groups=(pantheon)
-depends=(
-  gcr
-  glib2
-  gtk3
-  libsoup
-  networkmanager
-  webkit2gtk
-  libgranite.so
-)
-makedepends=(
-  git
-  intltool
-  meson
-  vala
-)
-source=(git+https://github.com/elementary/capnet-assist.git#tag=${pkgver})
-sha256sums=('SKIP')
-
-build() {
-  arch-meson capnet-assist build \
--D b_pie=false
-  ninja -C build
-}
-
-package() {
-  DESTDIR="${pkgdir}" meson install -C build
-}
-
-# vim: ts=2 sw=2 et:

Copied: capnet-assist/repos/community-x86_64/PKGBUILD (from rev 429117, 
capnet-assist/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-01 17:02:20 UTC (rev 429118)
@@ -0,0 +1,39 @@
+# Maintainer: Maxime Gauduin 
+
+pkgname=capnet-assist
+pkgver=2.2.3
+pkgrel=1
+pkgdesc='Captive Portal Assistant'
+arch=(x86_64)
+url=https://launchpad.net/capnet-assist
+license=(GPL3)
+groups=(pantheon)
+depends=(
+  gcr
+  glib2
+  gtk3
+  libsoup
+  networkmanager
+  webkit2gtk
+  libgranite.so
+)
+makedepends=(
+  git
+  intltool
+  meson
+  vala
+)
+source=(git+https://github.com/elementary/capnet-assist.git#tag=${pkgver})
+sha256sums=('SKIP')
+
+build() {
+  arch-meson capnet-assist build \
+-D b_pie=false
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" meson install -C build
+}
+
+# vim: ts=2 sw=2 et:


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

2019-02-01 Thread Bruno Pagani via arch-commits
Date: Friday, February 1, 2019 @ 16:51:50
  Author: archange
Revision: 429116

archrelease: copy trunk to community-x86_64

Added:
  libva-utils/repos/community-x86_64/PKGBUILD
(from rev 429115, libva-utils/trunk/PKGBUILD)
Deleted:
  libva-utils/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-01 16:51:31 UTC (rev 429115)
+++ PKGBUILD2019-02-01 16:51:50 UTC (rev 429116)
@@ -1,29 +0,0 @@
-# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
-# Contributor: Sean V Kelley 
-
-pkgname=libva-utils
-pkgver=2.3.0
-pkgrel=1
-pkgdesc="Intel VA-API Media Applications and Scripts for libva"
-arch=('x86_64')
-url="https://github.com/01org/libva-utils;
-license=('custom')
-depends=('libva')
-makedepends=('mesa')
-source=(${pkgname}-${pkgver}.tar.gz::"${url}/archive/${pkgver}.tar.gz")
-sha256sums=('f338497b867bbc9bf008e4892eaebda08955785dc7eb2005855bba5f1a20b037')
-
-build() {
-cd ${pkgname}-${pkgver}
-./autogen.sh \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var
-make
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="$pkgdir" install
-install -Dm644 COPYING "$pkgdir"/usr/share/licenses/${pkgname}/COPYING
-}

Copied: libva-utils/repos/community-x86_64/PKGBUILD (from rev 429115, 
libva-utils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-01 16:51:50 UTC (rev 429116)
@@ -0,0 +1,29 @@
+# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
+# Contributor: Sean V Kelley 
+
+pkgname=libva-utils
+pkgver=2.4.0
+pkgrel=1
+pkgdesc="Intel VA-API Media Applications and Scripts for libva"
+arch=('x86_64')
+url="https://github.com/intel/libva-utils;
+license=('custom')
+depends=('libva')
+makedepends=('mesa')
+source=(${pkgname}-${pkgver}.tar.gz::"${url}/archive/${pkgver}.tar.gz")
+sha256sums=('13d15bf464e5a452f5243a6ca5988d3841c8017b75d73254acc0e4d6740c')
+
+build() {
+cd ${pkgname}-${pkgver}
+./autogen.sh \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var
+make
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+make DESTDIR="$pkgdir" install
+install -Dm644 COPYING "$pkgdir"/usr/share/licenses/${pkgname}/COPYING
+}


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

2019-02-01 Thread Bruno Pagani via arch-commits
Date: Friday, February 1, 2019 @ 16:51:31
  Author: archange
Revision: 429115

upgpkg: libva-utils 2.4.0-1

Modified:
  libva-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 16:18:55 UTC (rev 429114)
+++ PKGBUILD2019-02-01 16:51:31 UTC (rev 429115)
@@ -2,7 +2,7 @@
 # Contributor: Sean V Kelley 
 
 pkgname=libva-utils
-pkgver=2.3.0
+pkgver=2.4.0
 pkgrel=1
 pkgdesc="Intel VA-API Media Applications and Scripts for libva"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('libva')
 makedepends=('mesa')
 source=(${pkgname}-${pkgver}.tar.gz::"${url}/archive/${pkgver}.tar.gz")
-sha256sums=('f338497b867bbc9bf008e4892eaebda08955785dc7eb2005855bba5f1a20b037')
+sha256sums=('13d15bf464e5a452f5243a6ca5988d3841c8017b75d73254acc0e4d6740c')
 
 build() {
 cd ${pkgname}-${pkgver}


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

2019-02-01 Thread Maxime Gauduin via arch-commits
Date: Friday, February 1, 2019 @ 16:18:55
  Author: alucryd
Revision: 429114

archrelease: copy trunk to community-x86_64

Added:
  switchboard/repos/
  switchboard/repos/community-x86_64/
  switchboard/repos/community-x86_64/PKGBUILD
(from rev 429113, switchboard/trunk/PKGBUILD)

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

Copied: switchboard/repos/community-x86_64/PKGBUILD (from rev 429113, 
switchboard/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2019-02-01 16:18:55 UTC (rev 429114)
@@ -0,0 +1,57 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Ner0 
+# Contributor: dserban 
+
+pkgname=switchboard
+pkgver=2.3.6
+pkgrel=1
+pkgdesc='The Pantheon Control Center'
+arch=(x86_64)
+url=https://github.com/elementary/switchboard
+license=(GPL3)
+groups=(pantheon)
+depends=(
+  clutter-gtk
+  gdk-pixbuf2
+  glib2
+  gtk3
+  libgee
+  libgranite.so
+  wayland
+)
+makedepends=(
+  git
+  meson
+  intltool
+  vala
+)
+optdepends=(
+  'switchboard-plug-about: About plug'
+  'switchboard-plug-applications: Applications plug'
+  'switchboard-plug-datetime: Date & Time plug'
+  'switchboard-plug-desktop: Desktop plug'
+  'switchboard-plug-display: Display plug'
+  'switchboard-plug-elementary-tweaks: Elementary Tweaks plug'
+  'switchboard-plug-keyboard: Keyboard plug'
+  'switchboard-plug-locale: Locale plug'
+  'switchboard-plug-network: Network plug'
+  'switchboard-plug-notifications: Notifications plug'
+  'switchboard-plug-power: Power plug'
+  'switchboard-plug-security-privacy: Security & Privacy plug'
+)
+provides=(libswitchboard-2.0.so)
+source=(git+https://github.com/elementary/switchboard.git#tag=${pkgver})
+sha256sums=(SKIP)
+
+build() {
+  arch-meson switchboard build \
+-D b_pie=false \
+-D libunity=false
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" meson install -C build
+}
+
+# vim: ts=2 sw=2 et:


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

2019-02-01 Thread Maxime Gauduin via arch-commits
Date: Friday, February 1, 2019 @ 16:18:30
  Author: alucryd
Revision: 429113

add switchboard

Added:
  switchboard/
  switchboard/trunk/
  switchboard/trunk/PKGBUILD

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

Added: switchboard/trunk/PKGBUILD
===
--- switchboard/trunk/PKGBUILD  (rev 0)
+++ switchboard/trunk/PKGBUILD  2019-02-01 16:18:30 UTC (rev 429113)
@@ -0,0 +1,57 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Ner0 
+# Contributor: dserban 
+
+pkgname=switchboard
+pkgver=2.3.6
+pkgrel=1
+pkgdesc='The Pantheon Control Center'
+arch=(x86_64)
+url=https://github.com/elementary/switchboard
+license=(GPL3)
+groups=(pantheon)
+depends=(
+  clutter-gtk
+  gdk-pixbuf2
+  glib2
+  gtk3
+  libgee
+  libgranite.so
+  wayland
+)
+makedepends=(
+  git
+  meson
+  intltool
+  vala
+)
+optdepends=(
+  'switchboard-plug-about: About plug'
+  'switchboard-plug-applications: Applications plug'
+  'switchboard-plug-datetime: Date & Time plug'
+  'switchboard-plug-desktop: Desktop plug'
+  'switchboard-plug-display: Display plug'
+  'switchboard-plug-elementary-tweaks: Elementary Tweaks plug'
+  'switchboard-plug-keyboard: Keyboard plug'
+  'switchboard-plug-locale: Locale plug'
+  'switchboard-plug-network: Network plug'
+  'switchboard-plug-notifications: Notifications plug'
+  'switchboard-plug-power: Power plug'
+  'switchboard-plug-security-privacy: Security & Privacy plug'
+)
+provides=(libswitchboard-2.0.so)
+source=(git+https://github.com/elementary/switchboard.git#tag=${pkgver})
+sha256sums=(SKIP)
+
+build() {
+  arch-meson switchboard build \
+-D b_pie=false \
+-D libunity=false
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" meson install -C build
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in python-anytree/repos/extra-any (PKGBUILD PKGBUILD)

2019-02-01 Thread Jan Steffens via arch-commits
Date: Friday, February 1, 2019 @ 15:59:56
  Author: heftig
Revision: 345011

archrelease: copy trunk to extra-any

Added:
  python-anytree/repos/extra-any/PKGBUILD
(from rev 345010, python-anytree/trunk/PKGBUILD)
Deleted:
  python-anytree/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-01 15:58:59 UTC (rev 345010)
+++ PKGBUILD2019-02-01 15:59:56 UTC (rev 345011)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgbase=python-anytree
-pkgname=(python-anytree python2-anytree)
-pkgver=2.4.3
-pkgrel=2
-pkgdesc="Powerful and Lightweight Python Tree Data Structure"
-url="https://anytree.readthedocs.io/;
-arch=(any)
-license=(Apache)
-makedepends=(python{,2}-{six,setuptools} git)
-_commit=bf6c5134a5257a05b2ed38b91b9f7846add08065  # tags/2.4.3
-source=("$pkgbase::git+https://github.com/c0fec0de/anytree#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  cp -a $pkgbase python2
-  cp -a $pkgbase python3
-}
-
-build() {
-  cd python3
-  python3 setup.py build
-
-  cd ../python2
-  python2 setup.py build
-}
-
-package_python-anytree() {
-  depends=(python-six)
-
-  cd python3
-  python3 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-package_python2-anytree() {
-  depends=(python2-six)
-
-  cd python2
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-anytree/repos/extra-any/PKGBUILD (from rev 345010, 
python-anytree/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-01 15:59:56 UTC (rev 345011)
@@ -0,0 +1,46 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgbase=python-anytree
+pkgname=(python-anytree python2-anytree)
+pkgver=2.5.0
+pkgrel=1
+pkgdesc="Powerful and Lightweight Python Tree Data Structure"
+url="https://anytree.readthedocs.io/;
+arch=(any)
+license=(Apache)
+makedepends=(python{,2}-{six,setuptools} git)
+_commit=caeb5886f8e582c92e3000acf00c1066fae669d0  # tags/2.5.0
+source=("$pkgbase::git+https://github.com/c0fec0de/anytree#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  cp -a $pkgbase python2
+  cp -a $pkgbase python3
+}
+
+build() {
+  cd python3
+  python3 setup.py build
+
+  cd ../python2
+  python2 setup.py build
+}
+
+package_python-anytree() {
+  depends=(python-six)
+
+  cd python3
+  python3 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+package_python2-anytree() {
+  depends=(python2-six)
+
+  cd python2
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}


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

2019-02-01 Thread Jan Steffens via arch-commits
Date: Friday, February 1, 2019 @ 15:58:59
  Author: heftig
Revision: 345010

2.5.0-1

Modified:
  python-anytree/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 14:14:33 UTC (rev 345009)
+++ PKGBUILD2019-02-01 15:58:59 UTC (rev 345010)
@@ -2,14 +2,14 @@
 
 pkgbase=python-anytree
 pkgname=(python-anytree python2-anytree)
-pkgver=2.4.3
-pkgrel=2
+pkgver=2.5.0
+pkgrel=1
 pkgdesc="Powerful and Lightweight Python Tree Data Structure"
 url="https://anytree.readthedocs.io/;
 arch=(any)
 license=(Apache)
 makedepends=(python{,2}-{six,setuptools} git)
-_commit=bf6c5134a5257a05b2ed38b91b9f7846add08065  # tags/2.4.3
+_commit=caeb5886f8e582c92e3000acf00c1066fae669d0  # tags/2.5.0
 source=("$pkgbase::git+https://github.com/c0fec0de/anytree#commit=$_commit;)
 sha256sums=('SKIP')
 


[arch-commits] Commit in telegram-desktop/repos/community-x86_64 (16 files)

2019-02-01 Thread Jiachen Yang via arch-commits
Date: Friday, February 1, 2019 @ 14:24:00
  Author: farseerfc
Revision: 429112

archrelease: copy trunk to community-x86_64

Added:
  telegram-desktop/repos/community-x86_64/CMakeLists.inj
(from rev 429111, telegram-desktop/trunk/CMakeLists.inj)
  telegram-desktop/repos/community-x86_64/PKGBUILD
(from rev 429111, telegram-desktop/trunk/PKGBUILD)
  telegram-desktop/repos/community-x86_64/Use-system-wide-font.patch
(from rev 429111, telegram-desktop/trunk/Use-system-wide-font.patch)
  telegram-desktop/repos/community-x86_64/demibold.patch
(from rev 429111, telegram-desktop/trunk/demibold.patch)
  telegram-desktop/repos/community-x86_64/libtgvoip.patch
(from rev 429111, telegram-desktop/trunk/libtgvoip.patch)
  telegram-desktop/repos/community-x86_64/no-gtk2.patch
(from rev 429111, telegram-desktop/trunk/no-gtk2.patch)
  telegram-desktop/repos/community-x86_64/tdesktop.patch
(from rev 429111, telegram-desktop/trunk/tdesktop.patch)
  telegram-desktop/repos/community-x86_64/tg.protocol
(from rev 429111, telegram-desktop/trunk/tg.protocol)
Deleted:
  telegram-desktop/repos/community-x86_64/CMakeLists.inj
  telegram-desktop/repos/community-x86_64/PKGBUILD
  telegram-desktop/repos/community-x86_64/Use-system-wide-font.patch
  telegram-desktop/repos/community-x86_64/demibold.patch
  telegram-desktop/repos/community-x86_64/libtgvoip.patch
  telegram-desktop/repos/community-x86_64/no-gtk2.patch
  telegram-desktop/repos/community-x86_64/tdesktop.patch
  telegram-desktop/repos/community-x86_64/tg.protocol

+
 CMakeLists.inj |   36 -
 PKGBUILD   |  226 
 Use-system-wide-font.patch |   68 +-
 demibold.patch |   54 +-
 libtgvoip.patch|   36 -
 no-gtk2.patch  |   58 +-
 tdesktop.patch | 1091 +--
 tg.protocol|   22 
 8 files changed, 789 insertions(+), 802 deletions(-)

Deleted: CMakeLists.inj
===
--- CMakeLists.inj  2019-02-01 14:22:39 UTC (rev 429111)
+++ CMakeLists.inj  2019-02-01 14:24:00 UTC (rev 429112)
@@ -1,18 +0,0 @@
-# The text will be put into the appropriate CMakeLists by the PKGBUILD
-
-# Avoid rpath compiler parameter
-set_target_properties(Telegram PROPERTIES SKIP_BUILD_RPATH TRUE)
-
-# This makes up for patch of gyp utility, supporting precompiled headers. If
-# Telegram/Patches/gyp.diff file will be changed in future, please check these
-# lines.
-include(../../Telegram/gyp/PrecompiledHeader.cmake)
-add_precompiled_header(Telegram ../../Telegram/SourceFiles/stdafx.h)
-add_precompiled_header(lib_base ../../Telegram/SourceFiles/base/base_pch.h)
-add_precompiled_header(lib_export 
../../Telegram/SourceFiles/export/export_pch.h)
-add_precompiled_header(lib_storage 
../../Telegram/SourceFiles/storage/storage_pch.h)
-
-# You can discover new PCHs using this link:
-# 
https://github.com/telegramdesktop/tdesktop/search?q=pch_header_q=pch_header
-
-# vim: ft=cmake

Copied: telegram-desktop/repos/community-x86_64/CMakeLists.inj (from rev 
429111, telegram-desktop/trunk/CMakeLists.inj)
===
--- CMakeLists.inj  (rev 0)
+++ CMakeLists.inj  2019-02-01 14:24:00 UTC (rev 429112)
@@ -0,0 +1,18 @@
+# The text will be put into the appropriate CMakeLists by the PKGBUILD
+
+# Avoid rpath compiler parameter
+set_target_properties(Telegram PROPERTIES SKIP_BUILD_RPATH TRUE)
+
+# This makes up for patch of gyp utility, supporting precompiled headers. If
+# Telegram/Patches/gyp.diff file will be changed in future, please check these
+# lines.
+include(../../Telegram/gyp/PrecompiledHeader.cmake)
+add_precompiled_header(Telegram ../../Telegram/SourceFiles/stdafx.h)
+add_precompiled_header(lib_base ../../Telegram/SourceFiles/base/base_pch.h)
+add_precompiled_header(lib_export 
../../Telegram/SourceFiles/export/export_pch.h)
+add_precompiled_header(lib_storage 
../../Telegram/SourceFiles/storage/storage_pch.h)
+
+# You can discover new PCHs using this link:
+# 
https://github.com/telegramdesktop/tdesktop/search?q=pch_header_q=pch_header
+
+# vim: ft=cmake

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-01 14:22:39 UTC (rev 429111)
+++ PKGBUILD2019-02-01 14:24:00 UTC (rev 429112)
@@ -1,113 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: hexchain 
-
-# Thanks Nicholas Guriev  for the patches!
-# https://github.com/mymedia2/tdesktop
-
-pkgname=telegram-desktop
-pkgver=1.5.9
-pkgrel=1
-pkgdesc='Official Telegram Desktop client'
-arch=('x86_64')
-url="https://desktop.telegram.org/;
-license=('GPL3')
-depends=('ffmpeg' 'hicolor-icon-theme' 'minizip' 'openal' 'qt5-base' 
'qt5-imageformats' 'openssl')
-makedepends=('cmake' 'git' 'gyp' 'range-v3' 'python' 'libappindicator-gtk3')
-optdepends=('libnotify: 

[arch-commits] Commit in telegram-desktop/trunk (PKGBUILD tdesktop.patch)

2019-02-01 Thread Jiachen Yang via arch-commits
Date: Friday, February 1, 2019 @ 14:22:39
  Author: farseerfc
Revision: 429111

upgpkg: telegram-desktop 1.5.10-1

telegram-desktop 1.5.10

Modified:
  telegram-desktop/trunk/PKGBUILD
  telegram-desktop/trunk/tdesktop.patch

+
 PKGBUILD   |4 ++--
 tdesktop.patch |   13 -
 2 files changed, 2 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 14:03:40 UTC (rev 429110)
+++ PKGBUILD2019-02-01 14:22:39 UTC (rev 429111)
@@ -5,7 +5,7 @@
 # https://github.com/mymedia2/tdesktop
 
 pkgname=telegram-desktop
-pkgver=1.5.9
+pkgver=1.5.10
 pkgrel=1
 pkgdesc='Official Telegram Desktop client'
 arch=('x86_64')
@@ -40,7 +40,7 @@
 'SKIP'
 
'b87414ceaae19185a8a5749cea1f6d9f3fc3c69b8dd729e3db8790cde00b987c3c827cd30baf0eac579d1884e34aa2f37bb90778c3c0bc9ca211d75a82891b9d'
 
'b20674f61ff6378749d1f59a6a0da194d33ccc786bd783f6ed62027924a3a8a8d27c9763bf376480432d6536896b0c7eeb8c495c5b8cefff7cf5fe84da50947e'
-
'e941d71b582e8dee58391dac08ff0eaceafcb0c2eb0ce7c3057d09efcd3791a66d5db8154cf239fdfa5db488dc5d15216488dfa34b1ec3f6831eeb6aa4ab859c'
+
'0784a00b7dcf12d1662cd2fdc410b4e578fd80a6c6329edfc0090442e112eb9fd8a392e9f7bcbb2780d9403448898c53cd5d4d38025c40c4fbe1a8aabfd10b84'
 
'a8f1708616a598fea3cb94e3b63b02a7b13b55abd129a5dc02ad502529f4ebe7a673b6a350b669290fd26135358d21e2e10bf4a11d88f58f0685b7c4ab515bc5'
 
'd60694dc701aa985b0e82a12c9732b945082470441c687b33167a94f94efcf253baf43bb7280ec160ba338485ee5c62de138e4804cae05f27cc5cf4298166d39'
 
'6d0bac5aa4c4992b5400a9a9318f7a4e92d5eab961917cf0b05cdd251ab66a77c52ec8fbef246e8019606a7624d7b5420b87f8153e071e9724c7d2f5c94e47c0'

Modified: tdesktop.patch
===
--- tdesktop.patch  2019-02-01 14:03:40 UTC (rev 429110)
+++ tdesktop.patch  2019-02-01 14:22:39 UTC (rev 429111)
@@ -39,19 +39,6 @@
auto result = executeApplication();
  
DEBUG_LOG(("Telegram finished, result: %1").arg(result));
-diff --git a/Telegram/SourceFiles/platform/linux/linux_libs.h 
b/Telegram/SourceFiles/platform/linux/linux_libs.h
-index 6f93d69cd..df185d5a2 100644
 a/Telegram/SourceFiles/platform/linux/linux_libs.h
-+++ b/Telegram/SourceFiles/platform/linux/linux_libs.h
-@@ -17,7 +17,7 @@ extern "C" {
- } // extern "C"
- 
- #ifndef TDESKTOP_DISABLE_UNITY_INTEGRATION
--#include 
-+typedef void UnityLauncherEntry;
- #endif // !TDESKTOP_DISABLE_UNITY_INTEGRATION
- #endif // !TDESKTOP_DISABLE_GTK_INTEGRATION
- 
 diff --git a/Telegram/SourceFiles/qt_functions.cpp 
b/Telegram/SourceFiles/qt_functions.cpp
 new file mode 100644
 index 0..4a722b8d7


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

2019-02-01 Thread Sergej Pupykin via arch-commits
Date: Friday, February 1, 2019 @ 14:03:40
  Author: spupykin
Revision: 429110

archrelease: copy trunk to community-x86_64

Added:
  remmina/repos/community-x86_64/PKGBUILD
(from rev 429109, remmina/trunk/PKGBUILD)
  remmina/repos/community-x86_64/fix-freerdp-name.patch
(from rev 429109, remmina/trunk/fix-freerdp-name.patch)
Deleted:
  remmina/repos/community-x86_64/PKGBUILD
  remmina/repos/community-x86_64/fix-freerdp-name.patch

+
 PKGBUILD   |   86 +++
 fix-freerdp-name.patch |   40 ++---
 2 files changed, 63 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-01 14:03:22 UTC (rev 429109)
+++ PKGBUILD2019-02-01 14:03:40 UTC (rev 429110)
@@ -1,43 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=remmina
-epoch=1
-pkgver=1.3.1
-pkgrel=1
-pkgdesc="remote desktop client written in GTK+"
-arch=(x86_64)
-url="https://www.remmina.org/;
-license=('GPL')
-depends=('avahi' 'libgcrypt' 'libssh' 'vte3')
-makedepends=('cmake' 'freerdp' 'libvncserver' 'spice-gtk' 'spice-protocol' 
'telepathy-glib')
-optdepends=('freerdp: RDP plugin'
-'libsecret: Secret plugin'
-'libvncserver: VNC plugin'
-'libxkbfile: NX plugin'
-'nxproxy: NX plugin'
-'spice-gtk: Spice plugin'
-'telepathy-glib: Telepathy plugin'
-'xorg-server-xephyr: XDMCP plugin')
-replaces=('remmina-plugins')
-provides=('remmina-plugins')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/FreeRDP/Remmina/archive/v${pkgver/rc/-rc}.tar.gz;)
-sha256sums=('a879f58ec19c284006f78c21a04a5d9611b88030ab3bece3649bbaabc1ac02f4')
-
-prepare() {
-  cd Remmina-${pkgver/rc/-rc}
-  sed -e 's|ssh_threads|ssh|' -i cmake/FindLIBSSH.cmake # Fix build with 
libssh 0.8
-}
-
-build() {
-  cd "$srcdir"/Remmina-${pkgver/rc/-rc}/
-  cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=/usr/lib \
--DWITH_APPINDICATOR=OFF .
-  make
-}
-
-package() {
-  cd "$srcdir"/Remmina-${pkgver/rc/-rc}/
-  make DESTDIR="$pkgdir" install
-}

Copied: remmina/repos/community-x86_64/PKGBUILD (from rev 429109, 
remmina/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-01 14:03:40 UTC (rev 429110)
@@ -0,0 +1,43 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=remmina
+epoch=1
+pkgver=1.3.2
+pkgrel=1
+pkgdesc="remote desktop client written in GTK+"
+arch=(x86_64)
+url="https://www.remmina.org/;
+license=('GPL')
+depends=('avahi' 'libgcrypt' 'libssh' 'vte3')
+makedepends=('cmake' 'freerdp' 'libvncserver' 'spice-gtk' 'spice-protocol' 
'telepathy-glib')
+optdepends=('freerdp: RDP plugin'
+'libsecret: Secret plugin'
+'libvncserver: VNC plugin'
+'libxkbfile: NX plugin'
+'nxproxy: NX plugin'
+'spice-gtk: Spice plugin'
+'telepathy-glib: Telepathy plugin'
+'xorg-server-xephyr: XDMCP plugin')
+replaces=('remmina-plugins')
+provides=('remmina-plugins')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/FreeRDP/Remmina/archive/v${pkgver/rc/-rc}.tar.gz;)
+sha256sums=('244aa9f2af455b230c61775e947937f1b345ced2c7882e72fe63e603d7cd4b95')
+
+prepare() {
+  cd Remmina-${pkgver/rc/-rc}
+  sed -e 's|ssh_threads|ssh|' -i cmake/FindLIBSSH.cmake # Fix build with 
libssh 0.8
+}
+
+build() {
+  cd "$srcdir"/Remmina-${pkgver/rc/-rc}/
+  cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib \
+-DWITH_APPINDICATOR=OFF .
+  make
+}
+
+package() {
+  cd "$srcdir"/Remmina-${pkgver/rc/-rc}/
+  make DESTDIR="$pkgdir" install
+}

Deleted: fix-freerdp-name.patch
===
--- fix-freerdp-name.patch  2019-02-01 14:03:22 UTC (rev 429109)
+++ fix-freerdp-name.patch  2019-02-01 14:03:40 UTC (rev 429110)
@@ -1,20 +0,0 @@
-diff -wbBur Remmina-1.2.0-rcgit.17/cmake/FindFREERDP.cmake 
Remmina-1.2.0-rcgit.17.my/cmake/FindFREERDP.cmake
 Remmina-1.2.0-rcgit.17/cmake/FindFREERDP.cmake 2016-12-22 
11:59:08.0 +0300
-+++ Remmina-1.2.0-rcgit.17.my/cmake/FindFREERDP.cmake  2017-02-01 
18:28:39.771764112 +0300
-@@ -30,13 +30,13 @@
- find_path(WINPR_INCLUDE_DIR NAMES winpr/winpr.h
-   HINTS ${PC_FREERDP_INCLUDEDIR} ${PC_FREERDP_INCLUDE_DIRS} 
${CMAKE_PREFIX_PATH}/include/winpr2/)
- 
--find_library(FREERDP_LIBRARY NAMES freerdp
-+find_library(FREERDP_LIBRARY NAMES freerdp2
-   HINTS ${PC_FREERDP_LIBDIR} ${PC_FREERDP_LIBRARY_DIRS})
- 
--find_library(FREERDP_CLIENT_LIBRARY NAMES freerdp-client
-+find_library(FREERDP_CLIENT_LIBRARY NAMES freerdp-client2
-   HINTS ${PC_FREERDP_LIBDIR} ${PC_FREERDP_LIBRARY_DIRS})
- 
--find_library(FREERDP_WINPR_LIBRARY NAMES winpr
-+find_library(FREERDP_WINPR_LIBRARY NAMES winpr2
-   HINTS ${PC_FREERDP_LIBDIR} 

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

2019-02-01 Thread Sergej Pupykin via arch-commits
Date: Friday, February 1, 2019 @ 14:03:22
  Author: spupykin
Revision: 429109

upgpkg: remmina 1:1.3.2-1

Modified:
  remmina/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 13:27:03 UTC (rev 429108)
+++ PKGBUILD2019-02-01 14:03:22 UTC (rev 429109)
@@ -2,7 +2,7 @@
 
 pkgname=remmina
 epoch=1
-pkgver=1.3.1
+pkgver=1.3.2
 pkgrel=1
 pkgdesc="remote desktop client written in GTK+"
 arch=(x86_64)
@@ -21,7 +21,7 @@
 replaces=('remmina-plugins')
 provides=('remmina-plugins')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/FreeRDP/Remmina/archive/v${pkgver/rc/-rc}.tar.gz;)
-sha256sums=('a879f58ec19c284006f78c21a04a5d9611b88030ab3bece3649bbaabc1ac02f4')
+sha256sums=('244aa9f2af455b230c61775e947937f1b345ced2c7882e72fe63e603d7cd4b95')
 
 prepare() {
   cd Remmina-${pkgver/rc/-rc}


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

2019-02-01 Thread Felix Yan via arch-commits
Date: Friday, February 1, 2019 @ 13:09:14
  Author: felixonmars
Revision: 429102

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2019-02-01 Thread Felix Yan via arch-commits
Date: Friday, February 1, 2019 @ 13:08:55
  Author: felixonmars
Revision: 429101

upgpkg: shellcheck 0.6.0-33

rebuild with texmath 0.11.2

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 13:07:16 UTC (rev 429100)
+++ PKGBUILD2019-02-01 13:08:55 UTC (rev 429101)
@@ -4,7 +4,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.6.0
-pkgrel=32
+pkgrel=33
 pkgdesc="Shell script analysis tool"
 url="http://www.shellcheck.net;
 license=("GPL")


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

2019-02-01 Thread Christian Hesse via arch-commits
Date: Friday, February 1, 2019 @ 13:07:16
  Author: eworm
Revision: 429100

archrelease: copy trunk to community-x86_64

Added:
  
mysql-workbench/repos/community-x86_64/0001-mysql-workbench-no-check-for-updates.patch
(from rev 429099, 
mysql-workbench/trunk/0001-mysql-workbench-no-check-for-updates.patch)
  
mysql-workbench/repos/community-x86_64/0002-disable-unsupported-operating-system-warning.patch
(from rev 429099, 
mysql-workbench/trunk/0002-disable-unsupported-operating-system-warning.patch)
  mysql-workbench/repos/community-x86_64/PKGBUILD
(from rev 429099, mysql-workbench/trunk/PKGBUILD)
  mysql-workbench/repos/community-x86_64/arch_linux_profile.xml
(from rev 429099, mysql-workbench/trunk/arch_linux_profile.xml)
Deleted:
  
mysql-workbench/repos/community-x86_64/0001-mysql-workbench-no-check-for-updates.patch
  
mysql-workbench/repos/community-x86_64/0002-disable-unsupported-operating-system-warning.patch
  mysql-workbench/repos/community-x86_64/PKGBUILD
  mysql-workbench/repos/community-x86_64/arch_linux_profile.xml

-+
 0001-mysql-workbench-no-check-for-updates.patch |   60 +-
 0002-disable-unsupported-operating-system-warning.patch |   52 +-
 PKGBUILD|  334 +++---
 3 files changed, 223 insertions(+), 223 deletions(-)

Deleted: 0001-mysql-workbench-no-check-for-updates.patch
===
--- 0001-mysql-workbench-no-check-for-updates.patch 2019-02-01 13:07:05 UTC 
(rev 429099)
+++ 0001-mysql-workbench-no-check-for-updates.patch 2019-02-01 13:07:16 UTC 
(rev 429100)
@@ -1,30 +0,0 @@
-From d15e588be02e44b1317bf90ff7be1714267281c8 Mon Sep 17 00:00:00 2001
-From: Christian Hesse 
-Date: Mon, 23 Jul 2018 11:03:19 +0200
-Subject: [PATCH 1/4] mysql-workbench-no-check-for-updates
-
-Signed-off-by: Christian Hesse 

- res/wbdata/main_menu.xml | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/res/wbdata/main_menu.xml b/res/wbdata/main_menu.xml
-index bfa63ef..957f809 100644
 a/res/wbdata/main_menu.xml
-+++ b/res/wbdata/main_menu.xml
-@@ -2277,6 +2277,7 @@
- builtin:show_log_file
- action
- 
-+
- 
- separator
- windows,linux

Copied: 
mysql-workbench/repos/community-x86_64/0001-mysql-workbench-no-check-for-updates.patch
 (from rev 429099, 
mysql-workbench/trunk/0001-mysql-workbench-no-check-for-updates.patch)
===
--- 0001-mysql-workbench-no-check-for-updates.patch 
(rev 0)
+++ 0001-mysql-workbench-no-check-for-updates.patch 2019-02-01 13:07:16 UTC 
(rev 429100)
@@ -0,0 +1,30 @@
+From d15e588be02e44b1317bf90ff7be1714267281c8 Mon Sep 17 00:00:00 2001
+From: Christian Hesse 
+Date: Mon, 23 Jul 2018 11:03:19 +0200
+Subject: [PATCH 1/4] mysql-workbench-no-check-for-updates
+
+Signed-off-by: Christian Hesse 
+---
+ res/wbdata/main_menu.xml | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/res/wbdata/main_menu.xml b/res/wbdata/main_menu.xml
+index bfa63ef..957f809 100644
+--- a/res/wbdata/main_menu.xml
 b/res/wbdata/main_menu.xml
+@@ -2277,6 +2277,7 @@
+ builtin:show_log_file
+ action
+ 
++
+ 
+ separator
+ windows,linux

Deleted: 0002-disable-unsupported-operating-system-warning.patch
===
--- 0002-disable-unsupported-operating-system-warning.patch 2019-02-01 
13:07:05 UTC (rev 429099)
+++ 0002-disable-unsupported-operating-system-warning.patch 2019-02-01 
13:07:16 UTC (rev 429100)
@@ -1,26 +0,0 @@
-From 98a9974f550dfb5c8f66213774e4ef95848127e1 Mon Sep 17 00:00:00 2001
-From: Christian Hesse 
-Date: Mon, 23 Jul 2018 11:04:55 +0200
-Subject: [PATCH 2/4] disable-unsupported-operating-system-warning
-
-Signed-off-by: Christian Hesse 

- backend/wbprivate/workbench/wb_context.cpp | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/backend/wbprivate/workbench/wb_context.cpp 
b/backend/wbprivate/workbench/wb_context.cpp
-index e80501a..a4047b1 100644
 a/backend/wbprivate/workbench/wb_context.cpp
-+++ b/backend/wbprivate/workbench/wb_context.cpp
-@@ -1011,9 +1011,11 @@ void WBContext::init_finish_(WBOptions *options) {
- 
-   _frontendCallbacks->show_status_text(_("Ready."));
- 
-+#if 0
-   // Avoid our runtime tests to lock up when a modal warning dialog is 
displayed.
-   if (options->open_at_startup_type != "run-script")
- warnIfRunningOnUnsupportedOS();
-+#endif
- 
-   try {
- // execute action requested from command line

Copied: 
mysql-workbench/repos/community-x86_64/0002-disable-unsupported-operating-system-warning.patch
 (from rev 429099, 

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

2019-02-01 Thread Christian Hesse via arch-commits
Date: Friday, February 1, 2019 @ 13:07:05
  Author: eworm
Revision: 429099

upgpkg: mysql-workbench 8.0.15-1

new upstream release

Modified:
  mysql-workbench/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 13:05:46 UTC (rev 429098)
+++ PKGBUILD2019-02-01 13:07:05 UTC (rev 429099)
@@ -5,9 +5,9 @@
 # Contributor: Ionut Biru 
 
 pkgname=mysql-workbench
-pkgver=8.0.14
+pkgver=8.0.15
 pkgrel=1
-_mysql_version=8.0.14
+_mysql_version=${pkgver}
 _connector_version=8.0.14
 _gdal_version=2.3.2
 _boost_version=1.68.0
@@ -31,9 +31,9 @@
'0001-mysql-workbench-no-check-for-updates.patch'
'0002-disable-unsupported-operating-system-warning.patch'
'arch_linux_profile.xml')
-sha256sums=('e6489a84f952f01c4bebd569da41a607df85edb4093bc3b20310859e5b09e657'
+sha256sums=('a61fb363c34e4e11cacafb368f7121c4f59a1bbaaa0a6978ec4579adbe1a4931'
 'SKIP'
-'bc53f4c914fb39650289700d144529121d71f38399d2d24a0f5c76e5a8abd204'
+'bb1bca2dc2f23ee9dd395cc4db93b64561d4ac20b53be5d1dae563f7be64825e'
 'SKIP'
 '54d26f5d0a7162c4574b6fc9abd4543b03af46dfeff27e5bc2ea175c59593533'
 'SKIP'


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

2019-02-01 Thread Felix Yan via arch-commits
Date: Friday, February 1, 2019 @ 13:05:46
  Author: felixonmars
Revision: 429098

archrelease: copy trunk to community-staging-x86_64

Added:
  pandoc-crossref/repos/community-staging-x86_64/
  pandoc-crossref/repos/community-staging-x86_64/PKGBUILD
(from rev 429097, pandoc-crossref/trunk/PKGBUILD)

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

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
429097, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-01 13:05:46 UTC (rev 429098)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.3.4.0
+pkgrel=36
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgname};
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default' 'haskell-data-accessor' 
'haskell-data-accessor-template'
+ 'haskell-data-accessor-transformers' 'haskell-gitrev' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'pandoc' 'haskell-pandoc-types' 
'haskell-roman-numerals'
+ 'haskell-syb' 'haskell-utility-ht')
+makedepends=('ghc' 'haskell-hspec')
+conflicts=('haskell-pandoc-crossref')
+replaces=('haskell-pandoc-crossref')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lierdakil/pandoc-crossref/archive/v$pkgver.tar.gz;)
+sha512sums=('d3a666880f0cad0ef7c1e784f2d52f9bb8bfde9e6be6de04c8f094e2a87e99a740f97951c5ffd74b2a1b001e8a977bc9dd3e28be84c3442d3447beadd879e82c')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i 's/< *2.5/<3/' $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 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+   -f-enable_flaky_tests
+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"
+}


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

2019-02-01 Thread Felix Yan via arch-commits
Date: Friday, February 1, 2019 @ 13:05:26
  Author: felixonmars
Revision: 429097

upgpkg: pandoc-crossref 0.3.4.0-36

rebuild with texmath 0.11.2

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 13:03:18 UTC (rev 429096)
+++ PKGBUILD2019-02-01 13:05:26 UTC (rev 429097)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.4.0
-pkgrel=35
+pkgrel=36
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname};
 license=("GPL2")


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

2019-02-01 Thread Felix Yan via arch-commits
Date: Friday, February 1, 2019 @ 13:03:18
  Author: felixonmars
Revision: 429096

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 429095, haskell-hakyll/trunk/PKGBUILD)

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
429095, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-01 13:03:18 UTC (rev 429096)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.12.5.0
+pkgrel=5
+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=('89153b0f68c745e82a17400037ccf32e2a462fe710746d3665c72f202dade7b7308b7d79e508c6fb89dada1a03058738a634c1609d15474b7342883457658d00')
+
+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-01 Thread Felix Yan via arch-commits
Date: Friday, February 1, 2019 @ 13:02:57
  Author: felixonmars
Revision: 429095

upgpkg: haskell-hakyll 4.12.5.0-5

rebuild with texmath 0.11.2

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 13:00:22 UTC (rev 429094)
+++ PKGBUILD2019-02-01 13:02:57 UTC (rev 429095)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.12.5.0
-pkgrel=4
+pkgrel=5
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("BSD")


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

2019-02-01 Thread Felix Yan via arch-commits
Date: Friday, February 1, 2019 @ 13:00:01
  Author: felixonmars
Revision: 429093

upgpkg: pandoc-citeproc 0.15.0.1-34

rebuild with texmath 0.11.2

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-01 12:55:35 UTC (rev 429092)
+++ PKGBUILD2019-02-01 13:00:01 UTC (rev 429093)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.15.0.1
-pkgrel=33
+pkgrel=34
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname;
 license=("BSD")


  1   2   >