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

2020-02-16 Thread Laurent Carlier via arch-commits
Date: Monday, February 17, 2020 @ 07:54:59
  Author: lcarlier
Revision: 573866

archrelease: copy trunk to community-x86_64

Added:
  kphotoalbum/repos/community-x86_64/PKGBUILD
(from rev 573865, kphotoalbum/trunk/PKGBUILD)
Deleted:
  kphotoalbum/repos/community-x86_64/PKGBUILD
  kphotoalbum/repos/community-x86_64/kphotoalbum-qt-5.10.patch

---+
 PKGBUILD  |   88 +---
 kphotoalbum-qt-5.10.patch |   45 --
 2 files changed, 43 insertions(+), 90 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-17 07:54:54 UTC (rev 573865)
+++ PKGBUILD2020-02-17 07:54:59 UTC (rev 573866)
@@ -1,45 +0,0 @@
-# Maintainer: Laurent Carlier 
-# Contributor: Andrea Scarpino 
-# Contributor: Gilles CHAUVIN 
-# Contributor: Jonathan Schaeffer 
-# Contributor: chfoxli 
-
-pkgname=kphotoalbum
-pkgver=5.5
-pkgrel=2
-pkgdesc="KDE Photo Album, picture collection manager"
-url="https://www.kphotoalbum.org/;
-arch=('x86_64')
-license=('GPL')
-depends=('libkipi' 'libkdcraw' 'libkgeomap' 'exiv2')
-makedepends=('extra-cmake-modules' 'plasma-framework' 'phonon-qt5' 'kdoctools' 
'kparts' 'libkexiv2')
-optdepends=()
-source=("https://download.kde.org/stable/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.sig}
-
kphotoalbum-qt-5.11.patch::"https://github.com/KDE/kphotoalbum/commit/47f4c00a.patch;)
-sha256sums=('b5c343fbf5cb754b56f107a3326bb11eecb4ad13718a43659d0c27d5fab26df6'
-'SKIP'
-'78fd0e12826c9fa8c36f3be5bf8a7048ed1382be1a813d985bc65eba9b52ba66')
-validpgpkeys=('8A53F0CB9F752E6F4F72FEC6F8DECD0DDF0F74A8') # Tobias Leupold 

-
-prepare() {
-  mkdir -p build
-
-#  cd $pkgname-$pkgver
-#  patch -p1 -i ../kphotoalbum-qt-5.11.patch # Fix build with Qt 5.11
-}
-
-build() {
-  cd build
-
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: kphotoalbum/repos/community-x86_64/PKGBUILD (from rev 573865, 
kphotoalbum/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-17 07:54:59 UTC (rev 573866)
@@ -0,0 +1,43 @@
+# Maintainer: Laurent Carlier 
+# Contributor: Andrea Scarpino 
+# Contributor: Gilles CHAUVIN 
+# Contributor: Jonathan Schaeffer 
+# Contributor: chfoxli 
+
+pkgname=kphotoalbum
+pkgver=5.6.1
+pkgrel=1
+pkgdesc="KDE Photo Album, picture collection manager"
+url="https://www.kphotoalbum.org/;
+arch=('x86_64')
+license=('GPL')
+depends=('libkipi' 'libkdcraw' 'libkgeomap' 'exiv2')
+makedepends=('extra-cmake-modules' 'plasma-framework' 'phonon-qt5' 'kdoctools' 
'kparts' 'libkexiv2')
+optdepends=()
+source=("https://download.kde.org/stable/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.sig})
+sha256sums=('3214a45d32156c06b6ff37ea1ddf7a443e635aa285c283a02326154f2c468304'
+'SKIP')
+validpgpkeys=('8A53F0CB9F752E6F4F72FEC6F8DECD0DDF0F74A8') # Tobias Leupold 

+
+prepare() {
+  mkdir -p build
+
+#  cd $pkgname-$pkgver
+#  patch -p1 -i ../kphotoalbum-qt-5.11.patch # Fix build with Qt 5.11
+}
+
+build() {
+  cd build
+
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: kphotoalbum-qt-5.10.patch
===
--- kphotoalbum-qt-5.10.patch   2020-02-17 07:54:54 UTC (rev 573865)
+++ kphotoalbum-qt-5.10.patch   2020-02-17 07:54:59 UTC (rev 573866)
@@ -1,45 +0,0 @@
-From 211f74bec0101d56714787b3a722e7f324ce2ae2 Mon Sep 17 00:00:00 2001
-From: Sylvain Stanchina 
-Date: Mon, 1 Jan 2018 21:57:32 +0100
-Subject: Fix crash with prepared SQL queries on Qt 5.10.
-
-Some explanations: The issue is related to SQL queries containing
-placeholders ("?"). In Exif.Database.cpp, some queries are built using
-the statement "QSqlQuery query( _queryString, m_db );" (or equivalent).
-However, according to QT5.10 documentation, the queries are immediately
-executed when constructed like that. If they contain one or more
-placeholders "?", they are thus executed before their arguments have
-been bound (by calls of bindValue()). In such cases, the application
-crashes.

- Exif/Database.cpp | 10 ++
- 1 file changed, 6 insertions(+), 4 deletions(-)
-
-diff --git a/Exif/Database.cpp b/Exif/Database.cpp
-index 1cc14c3..10747d2 100644
 a/Exif/Database.cpp
-+++ b/Exif/Database.cpp
-@@ -226,7 +226,8 @@ void Exif::Database::remove( const DB::FileName& fileName )
- if ( !isUsable() )
- return;
- 
--QSqlQuery query( QString::fromLatin1( "DELETE FROM exif WHERE fileName=?" 
), m_db );
-+QSqlQuery query( m_db);
-+

[arch-commits] Commit in kphotoalbum/trunk (PKGBUILD kphotoalbum-qt-5.10.patch)

2020-02-16 Thread Laurent Carlier via arch-commits
Date: Monday, February 17, 2020 @ 07:54:54
  Author: lcarlier
Revision: 573865

upgpkg: kphotoalbum 5.6.1-1: upstream update 5.6.1

Modified:
  kphotoalbum/trunk/PKGBUILD
Deleted:
  kphotoalbum/trunk/kphotoalbum-qt-5.10.patch

---+
 PKGBUILD  |   12 ---
 kphotoalbum-qt-5.10.patch |   45 
 2 files changed, 5 insertions(+), 52 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 07:38:09 UTC (rev 573864)
+++ PKGBUILD2020-02-17 07:54:54 UTC (rev 573865)
@@ -5,8 +5,8 @@
 # Contributor: chfoxli 
 
 pkgname=kphotoalbum
-pkgver=5.5
-pkgrel=2
+pkgver=5.6.1
+pkgrel=1
 pkgdesc="KDE Photo Album, picture collection manager"
 url="https://www.kphotoalbum.org/;
 arch=('x86_64')
@@ -14,11 +14,9 @@
 depends=('libkipi' 'libkdcraw' 'libkgeomap' 'exiv2')
 makedepends=('extra-cmake-modules' 'plasma-framework' 'phonon-qt5' 'kdoctools' 
'kparts' 'libkexiv2')
 optdepends=()
-source=("https://download.kde.org/stable/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.sig}
-
kphotoalbum-qt-5.11.patch::"https://github.com/KDE/kphotoalbum/commit/47f4c00a.patch;)
-sha256sums=('b5c343fbf5cb754b56f107a3326bb11eecb4ad13718a43659d0c27d5fab26df6'
-'SKIP'
-'78fd0e12826c9fa8c36f3be5bf8a7048ed1382be1a813d985bc65eba9b52ba66')
+source=("https://download.kde.org/stable/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.sig})
+sha256sums=('3214a45d32156c06b6ff37ea1ddf7a443e635aa285c283a02326154f2c468304'
+'SKIP')
 validpgpkeys=('8A53F0CB9F752E6F4F72FEC6F8DECD0DDF0F74A8') # Tobias Leupold 

 
 prepare() {

Deleted: kphotoalbum-qt-5.10.patch
===
--- kphotoalbum-qt-5.10.patch   2020-02-17 07:38:09 UTC (rev 573864)
+++ kphotoalbum-qt-5.10.patch   2020-02-17 07:54:54 UTC (rev 573865)
@@ -1,45 +0,0 @@
-From 211f74bec0101d56714787b3a722e7f324ce2ae2 Mon Sep 17 00:00:00 2001
-From: Sylvain Stanchina 
-Date: Mon, 1 Jan 2018 21:57:32 +0100
-Subject: Fix crash with prepared SQL queries on Qt 5.10.
-
-Some explanations: The issue is related to SQL queries containing
-placeholders ("?"). In Exif.Database.cpp, some queries are built using
-the statement "QSqlQuery query( _queryString, m_db );" (or equivalent).
-However, according to QT5.10 documentation, the queries are immediately
-executed when constructed like that. If they contain one or more
-placeholders "?", they are thus executed before their arguments have
-been bound (by calls of bindValue()). In such cases, the application
-crashes.

- Exif/Database.cpp | 10 ++
- 1 file changed, 6 insertions(+), 4 deletions(-)
-
-diff --git a/Exif/Database.cpp b/Exif/Database.cpp
-index 1cc14c3..10747d2 100644
 a/Exif/Database.cpp
-+++ b/Exif/Database.cpp
-@@ -226,7 +226,8 @@ void Exif::Database::remove( const DB::FileName& fileName )
- if ( !isUsable() )
- return;
- 
--QSqlQuery query( QString::fromLatin1( "DELETE FROM exif WHERE fileName=?" 
), m_db );
-+QSqlQuery query( m_db);
-+query.prepare( QString::fromLatin1( "DELETE FROM exif WHERE fileName=?" 
));
- query.bindValue( 0, fileName.absolute() );
- if ( !query.exec() )
- showError( query );
-@@ -248,8 +251,8 @@ bool Exif::Database::insert(const DB::FileName& filename, 
Exiv2::ExifData data )
- }
- _queryString = QString::fromLatin1( "INSERT OR REPLACE into exif 
values (?, %1) " ).arg( formalList.join( QString::fromLatin1( ", " ) ) );
- }
--
--QSqlQuery query( _queryString, m_db );
-+QSqlQuery query(m_db);
-+query.prepare( _queryString );
- query.bindValue(  0, filename.absolute() );
- int i = 1;
- for( const DatabaseElement *e : elements() )
--- 
-cgit v0.11.2
-


[arch-commits] Commit in tomcat9 (7 files)

2020-02-16 Thread Maxime Gauduin via arch-commits
Date: Monday, February 17, 2020 @ 07:52:30
  Author: alucryd
Revision: 375730

archrelease: copy trunk to extra-any

Added:
  tomcat9/repos/
  tomcat9/repos/extra-any/
  tomcat9/repos/extra-any/PKGBUILD
(from rev 375729, tomcat9/trunk/PKGBUILD)
  tomcat9/repos/extra-any/tomcat9.install
(from rev 375729, tomcat9/trunk/tomcat9.install)
  tomcat9/repos/extra-any/tomcat9.service
(from rev 375729, tomcat9/trunk/tomcat9.service)
  tomcat9/repos/extra-any/tomcat9.sysusers
(from rev 375729, tomcat9/trunk/tomcat9.sysusers)
  tomcat9/repos/extra-any/tomcat9.tmpfiles
(from rev 375729, tomcat9/trunk/tomcat9.tmpfiles)

--+
 PKGBUILD |   91 +
 tomcat9.install  |   16 +
 tomcat9.service  |   35 
 tomcat9.sysusers |1 
 tomcat9.tmpfiles |5 ++
 5 files changed, 148 insertions(+)

Copied: tomcat9/repos/extra-any/PKGBUILD (from rev 375729, 
tomcat9/trunk/PKGBUILD)
===
--- repos/extra-any/PKGBUILD(rev 0)
+++ repos/extra-any/PKGBUILD2020-02-17 07:52:30 UTC (rev 375730)
@@ -0,0 +1,91 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Olli 
+
+pkgname=tomcat9
+pkgver=9.0.31
+pkgrel=1
+pkgdesc='Open source implementation of the Java Servlet 4.0 and JavaServer 
Pages 2.3 technologies'
+arch=(any)
+url=https://tomcat.apache.org/
+license=(APACHE)
+depends=(
+  'java-runtime>=8'
+  java-jsvc
+  java-commons-daemon
+  eclipse-ecj
+)
+optdepends=('tomcat-native: to allow optimal performance in production 
environments')
+backup=(
+  etc/tomcat9/catalina.policy
+  etc/tomcat9/catalina.properties
+  etc/tomcat9/context.xml
+  etc/tomcat9/logging.properties
+  etc/tomcat9/server.xml
+  etc/tomcat9/tomcat-users.xml
+  etc/tomcat9/web.xml
+)
+install=tomcat9.install
+source=(
+  
https://archive.apache.org/dist/tomcat/tomcat-9/v${pkgver}/bin/apache-tomcat-${pkgver}.tar.gz{,.asc}
+  tomcat9.service
+  tomcat9.sysusers
+  tomcat9.tmpfiles
+)
+validpgpkeys=(
+  A9C5DF4D22E8D9875A5110C01C5A2F6059E7 # Mark E D Thomas
+  713DA88BE50911535FE716F5208B0AB1D63011C7 # Violeta Georgieva Georgieva
+)
+sha256sums=('1b111d890f8c0b3f3eb7f8f8f557a8e163ef6b06bca3e262ba1062808467cb43'
+'SKIP'
+'df2199080b3e4061eb8d454045428d7d340e527972c497309f69392ab2e3186f'
+'63d8a28af96e6c7232595e7eab3bb7930f0eebcd89a5b1e3bc17b80cb2580db5'
+'5cf1be7e6975c909d9935b2226a5aec4f783de154d910d3b65860286a3ce2a7b')
+_gid_log=19
+_gid_tomcat=58
+_uid_tomcat=58
+
+package() {
+  cd apache-tomcat-${pkgver}
+
+  # Tomcat general files
+  install -dm 755 "${pkgdir}"/usr/share/{,java/}tomcat9
+  cp -dr --no-preserve=ownership bin "${pkgdir}"/usr/share/tomcat9
+  # commons-daemon and tomcat-natives are packaged on their own
+  rm 
"${pkgdir}"/usr/share/tomcat9/bin/{*.bat,commons-daemon*,tomcat-native.tar.gz}
+  ln -s /usr/share/java/commons-daemon.jar 
"${pkgdir}"/usr/share/tomcat9/bin/commons-daemon.jar
+
+  install -m 644 lib/* "${pkgdir}"/usr/share/java/tomcat9
+  # eclipse-ecj is packaged on its own
+  rm "${pkgdir}"/usr/share/java/tomcat9/ecj-*.jar
+  ln -s ../eclipse-ecj.jar "${pkgdir}"/usr/share/java/tomcat9/ecj.jar
+
+  ln -s /usr/share/java/tomcat9 "${pkgdir}"/usr/share/tomcat9/lib
+
+  # We log through systemd but this would still be required for stock Tomcat 
logging
+  install -dm 775 -o ${_uid_tomcat} -g ${_gid_log} "${pkgdir}"/var/log/tomcat9
+  ln -s /var/log/tomcat9 "${pkgdir}"/usr/share/tomcat9/logs
+  touch "${pkgdir}"/var/log/tomcat9/catalina.{out,err}
+  chgrp ${_gid_log} "${pkgdir}"/var/log/tomcat9/catalina.{out,err}
+
+  install -dm 775 "${pkgdir}"/etc/tomcat9
+  install -m 640 -g ${_gid_tomcat} conf/* "${pkgdir}"/etc/tomcat9
+  install -dm 775 -g ${_gid_tomcat} "${pkgdir}"/etc/tomcat9/Catalina
+  ln -s /etc/tomcat9 "${pkgdir}"/usr/share/tomcat9/conf
+
+  install -dm 775 "${pkgdir}"/var/lib/tomcat9
+  cp -r webapps "${pkgdir}"/var/lib/tomcat9
+  chown -R ${_uid_tomcat}:${_gid_tomcat} "${pkgdir}"/var/lib/tomcat9
+  chmod 775 "${pkgdir}"/var/lib/tomcat9/webapps
+  ln -s /var/lib/tomcat9/webapps "${pkgdir}"/usr/share/tomcat9/webapps
+
+  install -dm 1777 "${pkgdir}"/var/tmp
+  install -dm 775 -o ${_uid_tomcat} -g ${_gid_tomcat} 
"${pkgdir}"/var/tmp/tomcat9/{temp,work}
+  ln -s /var/tmp/tomcat9/temp "${pkgdir}"/usr/share/tomcat9/temp
+  ln -s /var/tmp/tomcat9/work "${pkgdir}"/usr/share/tomcat9/work
+
+  install -Dm 644 ../tomcat9.service 
"${pkgdir}"/usr/lib/systemd/system/tomcat9.service
+  install -Dm 644 ../tomcat9.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/tomcat9.conf
+  install -Dm 644 ../tomcat9.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/tomcat9.conf
+}
+
+# vim: ts=2 sw=2 et:

Copied: tomcat9/repos/extra-any/tomcat9.install (from rev 375729, 
tomcat9/trunk/tomcat9.install)
===
--- repos/extra-any/tomcat9.install  

[arch-commits] Commit in (9 files)

2020-02-16 Thread Maxime Gauduin via arch-commits
Date: Monday, February 17, 2020 @ 07:51:50
  Author: alucryd
Revision: 375729

add tomcat9

Added:
  tomcat9/
  tomcat9/trunk/
  tomcat9/trunk/PKGBUILD
  tomcat9/trunk/tomcat9.install
  tomcat9/trunk/tomcat9.service
  tomcat9/trunk/tomcat9.sysusers
  tomcat9/trunk/tomcat9.tmpfiles
Modified:
  tomcat7/trunk/PKGBUILD
  tomcat8/trunk/PKGBUILD

+
 tomcat7/trunk/PKGBUILD |8 +--
 tomcat8/trunk/PKGBUILD |1 
 tomcat9/trunk/PKGBUILD |   91 +++
 tomcat9/trunk/tomcat9.install  |   16 ++
 tomcat9/trunk/tomcat9.service  |   35 +++
 tomcat9/trunk/tomcat9.sysusers |1 
 tomcat9/trunk/tomcat9.tmpfiles |5 ++
 7 files changed, 152 insertions(+), 5 deletions(-)

Modified: tomcat7/trunk/PKGBUILD
===
--- tomcat7/trunk/PKGBUILD  2020-02-17 07:39:21 UTC (rev 375728)
+++ tomcat7/trunk/PKGBUILD  2020-02-17 07:51:50 UTC (rev 375729)
@@ -53,7 +53,7 @@
 
   # Tomcat general files
   install -dm 755 "${pkgdir}"/usr/share/{,java/}tomcat7
-  cp -r bin "${pkgdir}"/usr/share/tomcat7
+  cp -dr --no-preserve=ownership bin "${pkgdir}"/usr/share/tomcat7
   # commons-daemon and tomcat-natives are packaged on their own
   rm 
"${pkgdir}"/usr/share/tomcat7/bin/{*.bat,commons-daemon*,tomcat-native.tar.gz}
   ln -s /usr/share/java/commons-daemon.jar 
"${pkgdir}"/usr/share/tomcat7/bin/commons-daemon.jar
@@ -71,9 +71,9 @@
   touch "${pkgdir}"/var/log/tomcat7/catalina.{out,err}
   chgrp ${_gid_log} "${pkgdir}"/var/log/tomcat7/catalina.{out,err}
 
-  install -dm775 "${pkgdir}"/etc/tomcat7
-  install -g ${_gid_tomcat} -m 640 conf/* "${pkgdir}"/etc/tomcat7
-  install -d -g ${_gid_tomcat} -m 775 "${pkgdir}"/etc/tomcat7/Catalina
+  install -dm 775 "${pkgdir}"/etc/tomcat7
+  install -m 640 -g ${_gid_tomcat} conf/* "${pkgdir}"/etc/tomcat7
+  install -dm 775 -g ${_gid_tomcat} "${pkgdir}"/etc/tomcat7/Catalina
   ln -s /etc/tomcat7 "${pkgdir}"/usr/share/tomcat7/conf
 
   install -dm 775 "${pkgdir}"/var/lib/tomcat7

Modified: tomcat8/trunk/PKGBUILD
===
--- tomcat8/trunk/PKGBUILD  2020-02-17 07:39:21 UTC (rev 375728)
+++ tomcat8/trunk/PKGBUILD  2020-02-17 07:51:50 UTC (rev 375729)
@@ -35,7 +35,6 @@
   A9C5DF4D22E8D9875A5110C01C5A2F6059E7 # Mark E D Thomas
   713DA88BE50911535FE716F5208B0AB1D63011C7 # Violeta Georgieva Georgieva
 )
-
 sha256sums=(
   836ecd816605e281636cae78c5b494ccaeb168c24f8266a72e9e704b2204affe
   SKIP

Added: tomcat9/trunk/PKGBUILD
===
--- tomcat9/trunk/PKGBUILD  (rev 0)
+++ tomcat9/trunk/PKGBUILD  2020-02-17 07:51:50 UTC (rev 375729)
@@ -0,0 +1,91 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Olli 
+
+pkgname=tomcat9
+pkgver=9.0.31
+pkgrel=1
+pkgdesc='Open source implementation of the Java Servlet 4.0 and JavaServer 
Pages 2.3 technologies'
+arch=(any)
+url=https://tomcat.apache.org/
+license=(APACHE)
+depends=(
+  'java-runtime>=8'
+  java-jsvc
+  java-commons-daemon
+  eclipse-ecj
+)
+optdepends=('tomcat-native: to allow optimal performance in production 
environments')
+backup=(
+  etc/tomcat9/catalina.policy
+  etc/tomcat9/catalina.properties
+  etc/tomcat9/context.xml
+  etc/tomcat9/logging.properties
+  etc/tomcat9/server.xml
+  etc/tomcat9/tomcat-users.xml
+  etc/tomcat9/web.xml
+)
+install=tomcat9.install
+source=(
+  
https://archive.apache.org/dist/tomcat/tomcat-9/v${pkgver}/bin/apache-tomcat-${pkgver}.tar.gz{,.asc}
+  tomcat9.service
+  tomcat9.sysusers
+  tomcat9.tmpfiles
+)
+validpgpkeys=(
+  A9C5DF4D22E8D9875A5110C01C5A2F6059E7 # Mark E D Thomas
+  713DA88BE50911535FE716F5208B0AB1D63011C7 # Violeta Georgieva Georgieva
+)
+sha256sums=('1b111d890f8c0b3f3eb7f8f8f557a8e163ef6b06bca3e262ba1062808467cb43'
+'SKIP'
+'df2199080b3e4061eb8d454045428d7d340e527972c497309f69392ab2e3186f'
+'63d8a28af96e6c7232595e7eab3bb7930f0eebcd89a5b1e3bc17b80cb2580db5'
+'5cf1be7e6975c909d9935b2226a5aec4f783de154d910d3b65860286a3ce2a7b')
+_gid_log=19
+_gid_tomcat=58
+_uid_tomcat=58
+
+package() {
+  cd apache-tomcat-${pkgver}
+
+  # Tomcat general files
+  install -dm 755 "${pkgdir}"/usr/share/{,java/}tomcat9
+  cp -dr --no-preserve=ownership bin "${pkgdir}"/usr/share/tomcat9
+  # commons-daemon and tomcat-natives are packaged on their own
+  rm 
"${pkgdir}"/usr/share/tomcat9/bin/{*.bat,commons-daemon*,tomcat-native.tar.gz}
+  ln -s /usr/share/java/commons-daemon.jar 
"${pkgdir}"/usr/share/tomcat9/bin/commons-daemon.jar
+
+  install -m 644 lib/* "${pkgdir}"/usr/share/java/tomcat9
+  # eclipse-ecj is packaged on its own
+  rm "${pkgdir}"/usr/share/java/tomcat9/ecj-*.jar
+  ln -s ../eclipse-ecj.jar "${pkgdir}"/usr/share/java/tomcat9/ecj.jar
+
+  ln -s /usr/share/java/tomcat9 "${pkgdir}"/usr/share/tomcat9/lib
+
+  # We log through systemd 

[arch-commits] Commit in tomcat8/repos/extra-any (10 files)

2020-02-16 Thread Maxime Gauduin via arch-commits
Date: Monday, February 17, 2020 @ 07:39:21
  Author: alucryd
Revision: 375728

archrelease: copy trunk to extra-any

Added:
  tomcat8/repos/extra-any/PKGBUILD
(from rev 375727, tomcat8/trunk/PKGBUILD)
  tomcat8/repos/extra-any/tomcat8.install
(from rev 375727, tomcat8/trunk/tomcat8.install)
  tomcat8/repos/extra-any/tomcat8.service
(from rev 375727, tomcat8/trunk/tomcat8.service)
  tomcat8/repos/extra-any/tomcat8.sysusers
(from rev 375727, tomcat8/trunk/tomcat8.sysusers)
  tomcat8/repos/extra-any/tomcat8.tmpfiles
(from rev 375727, tomcat8/trunk/tomcat8.tmpfiles)
Deleted:
  tomcat8/repos/extra-any/PKGBUILD
  tomcat8/repos/extra-any/tomcat8.install
  tomcat8/repos/extra-any/tomcat8.service
  tomcat8/repos/extra-any/tomcat8.sysusers
  tomcat8/repos/extra-any/tomcat8.tmpfiles

--+
 PKGBUILD |  182 +++--
 tomcat8.install  |   32 -
 tomcat8.service  |   70 ++--
 tomcat8.sysusers |2 
 tomcat8.tmpfiles |   10 +-
 5 files changed, 152 insertions(+), 144 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-17 07:39:12 UTC (rev 375727)
+++ PKGBUILD2020-02-17 07:39:21 UTC (rev 375728)
@@ -1,87 +0,0 @@
-# Maintainer: Guillaume Alaux 
-# Maintainer: Maxime Gauduin 
-
-pkgname=tomcat8
-pkgver=8.5.50
-pkgrel=1
-pkgdesc='Open source implementation of the Java Servlet 3.1 and JavaServer 
Pages 2.3 technologies'
-arch=(any)
-url=https://tomcat.apache.org/
-license=(APACHE)
-depends=(
-  'java-runtime>=7'
-  java-jsvc
-  java-commons-daemon
-  eclipse-ecj
-)
-optdepends=('tomcat-native: to allow optimal performance in production 
environments')
-backup=(
-  etc/tomcat8/catalina.policy
-  etc/tomcat8/catalina.properties
-  etc/tomcat8/context.xml
-  etc/tomcat8/logging.properties
-  etc/tomcat8/server.xml
-  etc/tomcat8/tomcat-users.xml
-  etc/tomcat8/web.xml
-)
-install=tomcat8.install
-source=(
-  
https://archive.apache.org/dist/tomcat/tomcat-8/v${pkgver}/bin/apache-tomcat-${pkgver}.tar.gz
-  tomcat8.service
-  tomcat8.sysusers
-  tomcat8.tmpfiles
-)
-sha256sums=('ea762293e889f85d40f5ec14ac4474e133a379522d623f4ba5993da6260bf06e'
-'01ba022e06d6afa71f6f7d774e48c042c63eca9e06f0c95c92cf8d5a3828a8b2'
-'02e7a1edb82ed117629189806d40c2c7b70ec994ecbafc11cb7dc7eec35af216'
-'0dc1fdb537d3488756755f3fb713a9638597d4c68596f6f94f2707e8363cf5e2')
-
-_gid_log=19
-_gid_tomcat=57
-_uid_tomcat=57
-
-package() {
-  cd apache-tomcat-${pkgver}
-
-  # Tomcat general files
-  install -dm 755 "${pkgdir}"/usr/share/{,java/}tomcat8
-  cp -dr --no-preserve=ownership bin "${pkgdir}"/usr/share/tomcat8
-  # commons-daemon and tomcat-natives are packaged on their own
-  rm 
"${pkgdir}"/usr/share/tomcat8/bin/{*.bat,commons-daemon*,tomcat-native.tar.gz}
-  ln -s /usr/share/java/commons-daemon.jar 
"${pkgdir}"/usr/share/tomcat8/bin/commons-daemon.jar
-
-  install -m 644 lib/* "${pkgdir}"/usr/share/java/tomcat8
-  # eclipse-ecj is packaged on its own
-  rm "${pkgdir}"/usr/share/java/tomcat8/ecj-*.jar
-  ln -s ../eclipse-ecj.jar "${pkgdir}"/usr/share/java/tomcat8/ecj.jar
-
-  ln -s /usr/share/java/tomcat8 "${pkgdir}"/usr/share/tomcat8/lib
-
-  # We log through systemd but this would still be required for stock Tomcat 
logging
-  install -dm 775 -o ${_uid_tomcat} -g ${_gid_log} "${pkgdir}"/var/log/tomcat8
-  ln -s /var/log/tomcat8 "${pkgdir}"/usr/share/tomcat8/logs
-  touch "${pkgdir}"/var/log/tomcat8/catalina.{out,err}
-  chgrp ${_gid_log} "${pkgdir}"/var/log/tomcat8/catalina.{out,err}
-
-  install -dm 775 "${pkgdir}"/etc/tomcat8
-  install -m 640 -g ${_gid_tomcat} conf/* "${pkgdir}"/etc/tomcat8
-  install -dm 775 -g ${_gid_tomcat} "${pkgdir}"/etc/tomcat8/Catalina
-  ln -s /etc/tomcat8 "${pkgdir}"/usr/share/tomcat8/conf
-
-  install -dm 775 "${pkgdir}"/var/lib/tomcat8
-  cp -r webapps "${pkgdir}"/var/lib/tomcat8
-  chown -R ${_uid_tomcat}:${_gid_tomcat} "${pkgdir}"/var/lib/tomcat8
-  chmod 775 "${pkgdir}"/var/lib/tomcat8/webapps
-  ln -s /var/lib/tomcat8/webapps "${pkgdir}"/usr/share/tomcat8/webapps
-
-  install -dm1777 "${pkgdir}"/var/tmp
-  install -dm775 -o ${_uid_tomcat} -g ${_gid_tomcat} 
"${pkgdir}"/var/tmp/tomcat8/{temp,work}
-  ln -s /var/tmp/tomcat8/temp "${pkgdir}"/usr/share/tomcat8/temp
-  ln -s /var/tmp/tomcat8/work "${pkgdir}"/usr/share/tomcat8/work
-
-  install -Dm 644 ../tomcat8.service -t "${pkgdir}"/usr/lib/systemd/system/
-  install -Dm 644 ../tomcat8.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/tomcat8.conf
-  install -Dm 644 ../tomcat8.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/tomcat8.conf
-}
-
-# vim: ts=2 sw=2 et:

Copied: tomcat8/repos/extra-any/PKGBUILD (from rev 375727, 
tomcat8/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-17 07:39:21 UTC (rev 375728)
@@ -0,0 +1,95 @@
+# Maintainer: Maxime Gauduin 
+# 

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

2020-02-16 Thread Maxime Gauduin via arch-commits
Date: Monday, February 17, 2020 @ 07:39:12
  Author: alucryd
Revision: 375727

upgpkg: tomcat8 8.5.51-1

Modified:
  tomcat8/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 07:32:15 UTC (rev 375726)
+++ PKGBUILD2020-02-17 07:39:12 UTC (rev 375727)
@@ -1,8 +1,8 @@
-# Maintainer: Guillaume Alaux 
 # Maintainer: Maxime Gauduin 
+# Contributor: Guillaume Alaux 
 
 pkgname=tomcat8
-pkgver=8.5.50
+pkgver=8.5.51
 pkgrel=1
 pkgdesc='Open source implementation of the Java Servlet 3.1 and JavaServer 
Pages 2.3 technologies'
 arch=(any)
@@ -26,16 +26,24 @@
 )
 install=tomcat8.install
 source=(
-  
https://archive.apache.org/dist/tomcat/tomcat-8/v${pkgver}/bin/apache-tomcat-${pkgver}.tar.gz
+  
https://archive.apache.org/dist/tomcat/tomcat-8/v${pkgver}/bin/apache-tomcat-${pkgver}.tar.gz{,.asc}
   tomcat8.service
   tomcat8.sysusers
   tomcat8.tmpfiles
 )
-sha256sums=('ea762293e889f85d40f5ec14ac4474e133a379522d623f4ba5993da6260bf06e'
-'01ba022e06d6afa71f6f7d774e48c042c63eca9e06f0c95c92cf8d5a3828a8b2'
-'02e7a1edb82ed117629189806d40c2c7b70ec994ecbafc11cb7dc7eec35af216'
-'0dc1fdb537d3488756755f3fb713a9638597d4c68596f6f94f2707e8363cf5e2')
+validpgpkeys=(
+  A9C5DF4D22E8D9875A5110C01C5A2F6059E7 # Mark E D Thomas
+  713DA88BE50911535FE716F5208B0AB1D63011C7 # Violeta Georgieva Georgieva
+)
 
+sha256sums=(
+  836ecd816605e281636cae78c5b494ccaeb168c24f8266a72e9e704b2204affe
+  SKIP
+  01ba022e06d6afa71f6f7d774e48c042c63eca9e06f0c95c92cf8d5a3828a8b2
+  02e7a1edb82ed117629189806d40c2c7b70ec994ecbafc11cb7dc7eec35af216
+  0dc1fdb537d3488756755f3fb713a9638597d4c68596f6f94f2707e8363cf5e2
+)
+
 _gid_log=19
 _gid_tomcat=57
 _uid_tomcat=57
@@ -74,12 +82,12 @@
   chmod 775 "${pkgdir}"/var/lib/tomcat8/webapps
   ln -s /var/lib/tomcat8/webapps "${pkgdir}"/usr/share/tomcat8/webapps
 
-  install -dm1777 "${pkgdir}"/var/tmp
-  install -dm775 -o ${_uid_tomcat} -g ${_gid_tomcat} 
"${pkgdir}"/var/tmp/tomcat8/{temp,work}
+  install -dm 1777 "${pkgdir}"/var/tmp
+  install -dm 775 -o ${_uid_tomcat} -g ${_gid_tomcat} 
"${pkgdir}"/var/tmp/tomcat8/{temp,work}
   ln -s /var/tmp/tomcat8/temp "${pkgdir}"/usr/share/tomcat8/temp
   ln -s /var/tmp/tomcat8/work "${pkgdir}"/usr/share/tomcat8/work
 
-  install -Dm 644 ../tomcat8.service -t "${pkgdir}"/usr/lib/systemd/system/
+  install -Dm 644 ../tomcat8.service 
"${pkgdir}"/usr/lib/systemd/system/tomcat8.service
   install -Dm 644 ../tomcat8.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/tomcat8.conf
   install -Dm 644 ../tomcat8.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/tomcat8.conf
 }


[arch-commits] Commit in nextcloud-client/trunk (Nextcloud.conf PKGBUILD)

2020-02-16 Thread Chih-Hsuan Yen via arch-commits
Date: Monday, February 17, 2020 @ 07:37:43
  Author: yan12125
Revision: 573863

upgpkg: nextcloud-client 2.6.3-2; disables built-in updater

Ref: https://github.com/nextcloud/desktop/issues/1594.

Added:
  nextcloud-client/trunk/Nextcloud.conf
Modified:
  nextcloud-client/trunk/PKGBUILD

+
 Nextcloud.conf |2 ++
 PKGBUILD   |   14 ++
 2 files changed, 12 insertions(+), 4 deletions(-)

Added: Nextcloud.conf
===
--- Nextcloud.conf  (rev 0)
+++ Nextcloud.conf  2020-02-17 07:37:43 UTC (rev 573863)
@@ -0,0 +1,2 @@
+[General]
+skipUpdateCheck=true

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 07:10:01 UTC (rev 573862)
+++ PKGBUILD2020-02-17 07:37:43 UTC (rev 573863)
@@ -5,7 +5,7 @@
 pkgname=nextcloud-client
 pkgver=2.6.3
 _commit=5880c4954e0e8fcaed9df59f1134958be3f60c06
-pkgrel=1
+pkgrel=2
 pkgdesc='Nextcloud desktop client'
 arch=(x86_64)
 url='https://nextcloud.com/'
@@ -22,7 +22,8 @@
 
issue1458-workaround.patch::https://github.com/yan12125/desktop/commit/7da680ef7843a52c3136916744f50d4a003bb8b5.patch
 
issue1458-2.patch::https://github.com/yan12125/desktop/commit/2b313368325dac5b8d0e69394cfcc4faaa745f75.patch
 $pkgname-fix-build.diff
-$pkgname-FS64630.diff)
+$pkgname-FS64630.diff
+Nextcloud.conf)
 validpgpkeys=(
   A26B951528EA1BA1678C7AE5D406C75CEE1A36D6  # one of keys controlled by 
github.com/camilasan
   42E775EAA3E47F9E0D5CDB0E00819E3BF4177B28  # controlled by github.com/misch7
@@ -31,8 +32,10 @@
 '07cd68f54c004175b4a09cce25830a357d0ebaafaf4e4cabfb8b0d4deeded2f3'
 '157c87a789219a3442ca5947c48dcd1ef3898612ff32070bf8842a42bfbe857a'
 '8b257a0554ceb54a7ed320dbfa3becb97d6845338e28a8aa0a4f6239f3141645'
-'6dea4453f220b63b993722cb155d567959600af261403870f5e34d35144a4fa7')
-backup=('etc/Nextcloud/sync-exclude.lst')
+'6dea4453f220b63b993722cb155d567959600af261403870f5e34d35144a4fa7'
+'5f51e41ef01d4e5b88a4735531105b84b4fb5317adc2a2996117c03fe5a44fc7')
+backup=('etc/Nextcloud/sync-exclude.lst'
+'etc/Nextcloud/Nextcloud.conf')
 
 prepare() {
   # tmpdir for check()
@@ -84,4 +87,7 @@
   cd $pkgname/build
 
   make DESTDIR="$pkgdir" install
+
+  # Disables built-in update checker
+  install -Dm644 "$srcdir/Nextcloud.conf" -t "$pkgdir"/etc/Nextcloud
 }


[arch-commits] Commit in nextcloud-client/repos/community-testing-x86_64 (7 files)

2020-02-16 Thread Chih-Hsuan Yen via arch-commits
Date: Monday, February 17, 2020 @ 07:38:09
  Author: yan12125
Revision: 573864

archrelease: copy trunk to community-testing-x86_64

Added:
  nextcloud-client/repos/community-testing-x86_64/Nextcloud.conf
(from rev 573863, nextcloud-client/trunk/Nextcloud.conf)
  nextcloud-client/repos/community-testing-x86_64/PKGBUILD
(from rev 573863, nextcloud-client/trunk/PKGBUILD)
  nextcloud-client/repos/community-testing-x86_64/nextcloud-client-FS64630.diff
(from rev 573863, nextcloud-client/trunk/nextcloud-client-FS64630.diff)
  
nextcloud-client/repos/community-testing-x86_64/nextcloud-client-fix-build.diff
(from rev 573863, nextcloud-client/trunk/nextcloud-client-fix-build.diff)
Deleted:
  nextcloud-client/repos/community-testing-x86_64/PKGBUILD
  nextcloud-client/repos/community-testing-x86_64/nextcloud-client-FS64630.diff
  
nextcloud-client/repos/community-testing-x86_64/nextcloud-client-fix-build.diff

-+
 Nextcloud.conf  |2 
 PKGBUILD|  180 +++---
 nextcloud-client-FS64630.diff   |   24 ++---
 nextcloud-client-fix-build.diff |   26 ++---
 4 files changed, 120 insertions(+), 112 deletions(-)

Copied: nextcloud-client/repos/community-testing-x86_64/Nextcloud.conf (from 
rev 573863, nextcloud-client/trunk/Nextcloud.conf)
===
--- Nextcloud.conf  (rev 0)
+++ Nextcloud.conf  2020-02-17 07:38:09 UTC (rev 573864)
@@ -0,0 +1,2 @@
+[General]
+skipUpdateCheck=true

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-17 07:37:43 UTC (rev 573863)
+++ PKGBUILD2020-02-17 07:38:09 UTC (rev 573864)
@@ -1,87 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-# Contributor: Tyler Dence 
-# Contributor: Konstantin Shalygin 
-
-pkgname=nextcloud-client
-pkgver=2.6.3
-_commit=5880c4954e0e8fcaed9df59f1134958be3f60c06
-pkgrel=1
-pkgdesc='Nextcloud desktop client'
-arch=(x86_64)
-url='https://nextcloud.com/'
-license=(GPL)
-depends=(openssl sqlite qtkeychain qt5-svg qt5-webengine xdg-utils 
libcloudproviders)
-makedepends=(doxygen extra-cmake-modules kio python-sphinx qt5-tools git 
cmocka)
-optdepends=(
-  'kio: integration with Dolphin'
-  'nemo-python: integration with Nemo'
-  'python-nautilus: integration with Nautilus'
-  'python2-caja: integration with Caja'
-)
-source=("$pkgname::git+https://github.com/nextcloud/desktop.git?signed#commit=$_commit;
-
issue1458-workaround.patch::https://github.com/yan12125/desktop/commit/7da680ef7843a52c3136916744f50d4a003bb8b5.patch
-
issue1458-2.patch::https://github.com/yan12125/desktop/commit/2b313368325dac5b8d0e69394cfcc4faaa745f75.patch
-$pkgname-fix-build.diff
-$pkgname-FS64630.diff)
-validpgpkeys=(
-  A26B951528EA1BA1678C7AE5D406C75CEE1A36D6  # one of keys controlled by 
github.com/camilasan
-  42E775EAA3E47F9E0D5CDB0E00819E3BF4177B28  # controlled by github.com/misch7
-)
-sha256sums=('SKIP'
-'07cd68f54c004175b4a09cce25830a357d0ebaafaf4e4cabfb8b0d4deeded2f3'
-'157c87a789219a3442ca5947c48dcd1ef3898612ff32070bf8842a42bfbe857a'
-'8b257a0554ceb54a7ed320dbfa3becb97d6845338e28a8aa0a4f6239f3141645'
-'6dea4453f220b63b993722cb155d567959600af261403870f5e34d35144a4fa7')
-backup=('etc/Nextcloud/sync-exclude.lst')
-
-prepare() {
-  # tmpdir for check()
-  mkdir tmpdir $pkgname/build
-
-  # Use system GNUInstallDirs.cmake so that we can benefit from
-  # https://gitlab.kitware.com/cmake/cmake/merge_requests/3735
-  rm -v $pkgname/cmake/modules/GNUInstallDirs.cmake
-
-  cd $pkgname
-  patch -Np1 -i ../issue1458-workaround.patch
-  patch -Np1 -i ../issue1458-2.patch
-
-  # https://github.com/nextcloud/desktop/pull/719
-  # "Rename owncloud tests to nextcloud" - actually breaks building of tests
-  patch -Np1 -i ../$pkgname-fix-build.diff
-
-  # https://bugs.archlinux.org/task/64630
-  patch -Np1 -i ../$pkgname-FS64630.diff
-}
-
-build() {
-  cd $pkgname/build
-
-  # bundled breakpad in libcrashreporter-qt submodule is too old and does not 
build with glibc >= 2.26
-  # Upstream fix: 
https://github.com/google/breakpad/commit/bddcc58860f522a0d4cbaa7e9d04058caee0db9d
-  cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DNO_SHIBBOLETH=1 \
--DWITH_CRASHREPORTER=OFF \
--DUNIT_TESTING=ON \
-..
-
-  make
-  # TODO: fix installation of PDF and HTML documents
-  # WIP at https://github.com/yan12125/desktop/tree/doc-install-path
-  make doc-man
-}
-
-check() {
-  cd $pkgname/build
-
-  # Tests fail if $TMPDIR is too small; specify an alternative for machines
-  # with a small /tmp partition.
-  TMPDIR="$srcdir/tmpdir" make test ARGS="-V"
-}
-
-package() {
-  cd $pkgname/build
-
-  make DESTDIR="$pkgdir" install
-}

Copied: nextcloud-client/repos/community-testing-x86_64/PKGBUILD (from rev 
573863, nextcloud-client/trunk/PKGBUILD)

[arch-commits] Commit in tomcat7/repos/extra-any (10 files)

2020-02-16 Thread Maxime Gauduin via arch-commits
Date: Monday, February 17, 2020 @ 07:32:15
  Author: alucryd
Revision: 375726

archrelease: copy trunk to extra-any

Added:
  tomcat7/repos/extra-any/PKGBUILD
(from rev 375725, tomcat7/trunk/PKGBUILD)
  tomcat7/repos/extra-any/tomcat7.install
(from rev 375725, tomcat7/trunk/tomcat7.install)
  tomcat7/repos/extra-any/tomcat7.service
(from rev 375725, tomcat7/trunk/tomcat7.service)
  tomcat7/repos/extra-any/tomcat7.sysusers
(from rev 375725, tomcat7/trunk/tomcat7.sysusers)
  tomcat7/repos/extra-any/tomcat7.tmpfiles
(from rev 375725, tomcat7/trunk/tomcat7.tmpfiles)
Deleted:
  tomcat7/repos/extra-any/PKGBUILD
  tomcat7/repos/extra-any/systemd_sysusers.d_tomcat7.conf
  tomcat7/repos/extra-any/systemd_tmpfiles.d_tomcat7.conf
  tomcat7/repos/extra-any/systemd_tomcat7.service
  tomcat7/repos/extra-any/tomcat7.install

-+
 PKGBUILD|  176 --
 systemd_sysusers.d_tomcat7.conf |1 
 systemd_tmpfiles.d_tomcat7.conf |5 -
 systemd_tomcat7.service |   35 ---
 tomcat7.install |   32 +++---
 tomcat7.service |   35 +++
 tomcat7.sysusers|1 
 tomcat7.tmpfiles|5 +
 8 files changed, 152 insertions(+), 138 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-17 07:32:07 UTC (rev 375725)
+++ PKGBUILD2020-02-17 07:32:15 UTC (rev 375726)
@@ -1,81 +0,0 @@
-# Maintainer: Guillaume ALAUX 
-pkgname=tomcat7
-pkgver=7.0.85
-pkgrel=1
-pkgdesc='Open source implementation of the Java Servlet 3.0 and JavaServer 
Pages 2.2 technologies'
-arch=('any')
-url='http://tomcat.apache.org/'
-license=('APACHE')
-depends=('java-runtime>=6' 'java-jsvc' 'java-commons-daemon' 'eclipse-ecj')
-optdepends=('tomcat-native: to allow optimal performance in production 
environments')
-backup=(etc/${pkgname}/catalina.policy
-etc/${pkgname}/catalina.properties
-etc/${pkgname}/context.xml
-etc/${pkgname}/logging.properties
-etc/${pkgname}/server.xml
-etc/${pkgname}/tomcat-users.xml
-etc/${pkgname}/web.xml)
-install=${pkgname}.install
-source=(http://archive.apache.org/dist/tomcat/tomcat-7/v${pkgver}/bin/apache-tomcat-${pkgver}.tar.gz{,.asc}
-systemd_${pkgname}.service
-systemd_sysusers.d_${pkgname}.conf
-systemd_tmpfiles.d_${pkgname}.conf)
-validpgpkeys=('DCFD35E0BF8CA7344752DE8B6FB21E8933C60243'  # Mark E D Thomas
-  '713DA88BE50911535FE716F5208B0AB1D63011C7') # Violeta Georgieva 
Georgieva
-
-sha512sums=('ed4f9d85fafe21570af7e01e712ebfb878066f9fab99d344935e20cf1f18c3389e103d33feb6937b5382408f3d356dbd8e7668bc82d299841bc099a1f8f7'
-'SKIP'
-
'99b27236151847c59f5f50d5a0e5d0bf829c7311d921d456b69188aee610453640162740acc0889f0ca0025181f48a963cd9eeca974fa18694f86fd2a328547f'
-
'3e64dd5904df35cf7d3c32a6ccab1669eff95d738127fafd60c7c75bf5e7dfd6123f696dbe706efaf1ac18e6d8a311ce3c1a50f3c7fdc33d82da44d20c20109e'
-
'bf8a105c9aef6d52bd0a20909fcb21ccf953048eb5c72037ebe69ca47bea364f67eff9dc8d701313c0293fc81d74644726cd214bb8604c005e8fec162efcbb01')
-
-_gid_log=19
-_gid_tomcat=71
-_uid_tomcat=71
-
-package() {
-  cd "${srcdir}/apache-tomcat-${pkgver}"
-
-  # Tomcat general files
-  install -dm755 "${pkgdir}"/usr/share/{,java/}${pkgname}
-  cp -r bin "${pkgdir}"/usr/share/${pkgname}
-  # commons-daemon and tomcat-natives are packaged on their own
-  rm 
"${pkgdir}"/usr/share/${pkgname}/bin/{*.bat,commons-daemon*,tomcat-native.tar.gz}
-  ln -s /usr/share/java/commons-daemon.jar 
"${pkgdir}"/usr/share/${pkgname}/bin/commons-daemon.jar
-
-  install -m644 lib/* "${pkgdir}"/usr/share/java/${pkgname}
-  # eclipse-ecj is packaged on its own
-  rm "${pkgdir}"/usr/share/java/${pkgname}/ecj-*.jar
-  ln -s ../eclipse-ecj.jar "${pkgdir}"/usr/share/java/${pkgname}/ecj.jar
-
-  ln -s /usr/share/java/${pkgname} "${pkgdir}"/usr/share/${pkgname}/lib
-
-  # We log through systemd but this would still be required for stock Tomcat 
logging
-  install -dm775 -o ${_uid_tomcat} -g ${_gid_log} 
"${pkgdir}"/var/log/${pkgname}
-  ln -s /var/log/${pkgname} "${pkgdir}"/usr/share/${pkgname}/logs
-  touch "${pkgdir}"/var/log/${pkgname}/catalina.{out,err}
-  chgrp ${_gid_log} "${pkgdir}"/var/log/${pkgname}/catalina.{out,err}
-
-  install -dm775 "${pkgdir}"/etc/${pkgname}
-  install -g ${_gid_tomcat} -m640 conf/* "${pkgdir}"/etc/${pkgname}
-  install -d -g ${_gid_tomcat} -m775 "${pkgdir}"/etc/${pkgname}/Catalina
-  ln -s /etc/${pkgname} "${pkgdir}"/usr/share/${pkgname}/conf
-
-  install -dm775 "${pkgdir}"/var/lib/${pkgname}
-  cp -r webapps "${pkgdir}"/var/lib/${pkgname}
-  chown -R ${_uid_tomcat}:${_gid_tomcat} "${pkgdir}"/var/lib/${pkgname}
-  chmod 775 "${pkgdir}"/var/lib/${pkgname}/webapps
-  ln -s /var/lib/${pkgname}/webapps "${pkgdir}"/usr/share/${pkgname}/webapps
-
-  install -dm1777 

[arch-commits] Commit in tomcat7/trunk (7 files)

2020-02-16 Thread Maxime Gauduin via arch-commits
Date: Monday, February 17, 2020 @ 07:32:07
  Author: alucryd
Revision: 375725

upgpkg: tomcat7 7.0.100-1

Added:
  tomcat7/trunk/tomcat7.service
  tomcat7/trunk/tomcat7.sysusers
  tomcat7/trunk/tomcat7.tmpfiles
Modified:
  tomcat7/trunk/PKGBUILD
Deleted:
  tomcat7/trunk/systemd_sysusers.d_tomcat7.conf
  tomcat7/trunk/systemd_tmpfiles.d_tomcat7.conf
  tomcat7/trunk/systemd_tomcat7.service

-+
 PKGBUILD|  128 +-
 systemd_sysusers.d_tomcat7.conf |1 
 systemd_tmpfiles.d_tomcat7.conf |5 -
 systemd_tomcat7.service |   35 --
 tomcat7.service |   35 ++
 tomcat7.sysusers|1 
 tomcat7.tmpfiles|5 +
 7 files changed, 112 insertions(+), 98 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 01:27:05 UTC (rev 375724)
+++ PKGBUILD2020-02-17 07:32:07 UTC (rev 375725)
@@ -1,33 +1,48 @@
-# Maintainer: Guillaume ALAUX 
+# Maintainer: Maxime Gauduin 
+# Contributor: Guillaume Alaux 
+
 pkgname=tomcat7
-pkgver=7.0.85
+pkgver=7.0.100
 pkgrel=1
 pkgdesc='Open source implementation of the Java Servlet 3.0 and JavaServer 
Pages 2.2 technologies'
-arch=('any')
-url='https://tomcat.apache.org/'
-license=('APACHE')
-depends=('java-runtime>=6' 'java-jsvc' 'java-commons-daemon' 'eclipse-ecj')
+arch=(any)
+url=https://tomcat.apache.org/
+license=(APACHE)
+depends=(
+  'java-runtime>=6'
+  java-jsvc
+  java-commons-daemon
+  eclipse-ecj
+)
 optdepends=('tomcat-native: to allow optimal performance in production 
environments')
-backup=(etc/${pkgname}/catalina.policy
-etc/${pkgname}/catalina.properties
-etc/${pkgname}/context.xml
-etc/${pkgname}/logging.properties
-etc/${pkgname}/server.xml
-etc/${pkgname}/tomcat-users.xml
-etc/${pkgname}/web.xml)
-install=${pkgname}.install
-source=(https://archive.apache.org/dist/tomcat/tomcat-7/v${pkgver}/bin/apache-tomcat-${pkgver}.tar.gz{,.asc}
-systemd_${pkgname}.service
-systemd_sysusers.d_${pkgname}.conf
-systemd_tmpfiles.d_${pkgname}.conf)
-validpgpkeys=('DCFD35E0BF8CA7344752DE8B6FB21E8933C60243'  # Mark E D Thomas
-  '713DA88BE50911535FE716F5208B0AB1D63011C7') # Violeta Georgieva 
Georgieva
+backup=(
+  etc/tomcat7/catalina.policy
+  etc/tomcat7/catalina.properties
+  etc/tomcat7/context.xml
+  etc/tomcat7/logging.properties
+  etc/tomcat7/server.xml
+  etc/tomcat7/tomcat-users.xml
+  etc/tomcat7/web.xml
+)
+install=tomcat7.install
+source=(
+  
https://archive.apache.org/dist/tomcat/tomcat-7/v${pkgver}/bin/apache-tomcat-${pkgver}.tar.gz{,.asc}
+  tomcat7.service
+  tomcat7.sysusers
+  tomcat7.tmpfiles
+)
+validpgpkeys=(
+  DCFD35E0BF8CA7344752DE8B6FB21E8933C60243 # Mark E D Thomas
+  713DA88BE50911535FE716F5208B0AB1D63011C7 # Violeta Georgieva Georgieva
+)
 
-sha512sums=('ed4f9d85fafe21570af7e01e712ebfb878066f9fab99d344935e20cf1f18c3389e103d33feb6937b5382408f3d356dbd8e7668bc82d299841bc099a1f8f7'
-'SKIP'
-
'99b27236151847c59f5f50d5a0e5d0bf829c7311d921d456b69188aee610453640162740acc0889f0ca0025181f48a963cd9eeca974fa18694f86fd2a328547f'
-
'3e64dd5904df35cf7d3c32a6ccab1669eff95d738127fafd60c7c75bf5e7dfd6123f696dbe706efaf1ac18e6d8a311ce3c1a50f3c7fdc33d82da44d20c20109e'
-
'bf8a105c9aef6d52bd0a20909fcb21ccf953048eb5c72037ebe69ca47bea364f67eff9dc8d701313c0293fc81d74644726cd214bb8604c005e8fec162efcbb01')
+sha256sums=(
+  3b8057cb9fd50ace772a0f92b247029fc848ed611d5cff9cb6ab832ffbb65272
+  SKIP
+  51f599e519095ec146f5eba1a0d471117070f5b3089715bc9e392d537deb38ce
+  4c0e12c45b406d2e8f0081de3d60dbf34c31f4da36296cedce6af5d6e03c8708
+  bc8ce84b3b2c938f55980cbe9bc1c2a5f371e23b34cf11c1b56d2c49836761d6
+)
 
 _gid_log=19
 _gid_tomcat=71
@@ -34,48 +49,47 @@
 _uid_tomcat=71
 
 package() {
-  cd "${srcdir}/apache-tomcat-${pkgver}"
+  cd apache-tomcat-${pkgver}
 
   # Tomcat general files
-  install -dm755 "${pkgdir}"/usr/share/{,java/}${pkgname}
-  cp -r bin "${pkgdir}"/usr/share/${pkgname}
+  install -dm 755 "${pkgdir}"/usr/share/{,java/}tomcat7
+  cp -r bin "${pkgdir}"/usr/share/tomcat7
   # commons-daemon and tomcat-natives are packaged on their own
-  rm 
"${pkgdir}"/usr/share/${pkgname}/bin/{*.bat,commons-daemon*,tomcat-native.tar.gz}
-  ln -s /usr/share/java/commons-daemon.jar 
"${pkgdir}"/usr/share/${pkgname}/bin/commons-daemon.jar
+  rm 
"${pkgdir}"/usr/share/tomcat7/bin/{*.bat,commons-daemon*,tomcat-native.tar.gz}
+  ln -s /usr/share/java/commons-daemon.jar 
"${pkgdir}"/usr/share/tomcat7/bin/commons-daemon.jar
 
-  install -m644 lib/* "${pkgdir}"/usr/share/java/${pkgname}
+  install -m 644 lib/* "${pkgdir}"/usr/share/java/tomcat7
   # eclipse-ecj is packaged on its own
-  rm "${pkgdir}"/usr/share/java/${pkgname}/ecj-*.jar
-  ln -s ../eclipse-ecj.jar "${pkgdir}"/usr/share/java/${pkgname}/ecj.jar
+  rm 

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

2020-02-16 Thread Maxime Gauduin via arch-commits
Date: Monday, February 17, 2020 @ 07:09:53
  Author: alucryd
Revision: 573861

upgpkg: home-assistant 0.105.4-1

Modified:
  home-assistant/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 07:09:12 UTC (rev 573860)
+++ PKGBUILD2020-02-17 07:09:53 UTC (rev 573861)
@@ -6,7 +6,7 @@
 
 pkgname=home-assistant
 pkgdesc='Open source home automation that puts local control and privacy first'
-pkgver=0.105.3
+pkgver=0.105.4
 pkgrel=1
 arch=(any)
 url=https://home-assistant.io/
@@ -44,7 +44,7 @@
   'python-lxml: Meteo France integration'
 )
 source=(
-  
git+https://github.com/home-assistant/home-assistant.git#tag=fb6fb42f85e24ac1c16358b901423d1b9a791766
+  
git+https://github.com/home-assistant/home-assistant.git#tag=68d2a1107edfa7a7831fc9bf521f86b1158c0ac1
   home-assistant.service
   home-assistant.sysusers
   home-assistant.tmpfiles


[arch-commits] Commit in home-assistant/repos/community-any (8 files)

2020-02-16 Thread Maxime Gauduin via arch-commits
Date: Monday, February 17, 2020 @ 07:10:01
  Author: alucryd
Revision: 573862

archrelease: copy trunk to community-any

Added:
  home-assistant/repos/community-any/PKGBUILD
(from rev 573861, home-assistant/trunk/PKGBUILD)
  home-assistant/repos/community-any/home-assistant.service
(from rev 573861, home-assistant/trunk/home-assistant.service)
  home-assistant/repos/community-any/home-assistant.sysusers
(from rev 573861, home-assistant/trunk/home-assistant.sysusers)
  home-assistant/repos/community-any/home-assistant.tmpfiles
(from rev 573861, home-assistant/trunk/home-assistant.tmpfiles)
Deleted:
  home-assistant/repos/community-any/PKGBUILD
  home-assistant/repos/community-any/home-assistant.service
  home-assistant/repos/community-any/home-assistant.sysusers
  home-assistant/repos/community-any/home-assistant.tmpfiles

-+
 PKGBUILD|  176 +++---
 home-assistant.service  |   28 +++
 home-assistant.sysusers |2 
 home-assistant.tmpfiles |2 
 4 files changed, 104 insertions(+), 104 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-17 07:09:53 UTC (rev 573861)
+++ PKGBUILD2020-02-17 07:10:01 UTC (rev 573862)
@@ -1,88 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Ethan Skinner 
-# Contributor: Grégoire Seux 
-# Contributor: Dean Galvin 
-# Contributor: NicoHood 
-
-pkgname=home-assistant
-pkgdesc='Open source home automation that puts local control and privacy first'
-pkgver=0.105.3
-pkgrel=1
-arch=(any)
-url=https://home-assistant.io/
-license=(APACHE)
-depends=(
-  gcc
-  python-aiohttp
-  python-aiohttp-cors
-  python-astral
-  python-async-timeout
-  python-attrs
-  python-bcrypt
-  python-certifi
-  python-cryptography
-  python-importlib-metadata
-  python-jinja
-  python-pyjwt
-  python-pip
-  python-pytz
-  python-requests
-  python-ruamel-yaml
-  python-slugify
-  python-sqlalchemy
-  python-voluptuous
-  python-voluptuous-serialize
-  python-yaml
-)
-makedepends=(
-  git
-  python-setuptools
-)
-optdepends=(
-  'net-tools: Nmap host discovery'
-  'openzwave: Z-Wave integration'
-  'python-lxml: Meteo France integration'
-)
-source=(
-  
git+https://github.com/home-assistant/home-assistant.git#tag=fb6fb42f85e24ac1c16358b901423d1b9a791766
-  home-assistant.service
-  home-assistant.sysusers
-  home-assistant.tmpfiles
-)
-sha256sums=(
-  SKIP
-  2a87a3b529a1eeddfae0c02c415bed13586b002b9580226bdc749a27bbe83af5
-  319c7790d3cdb076bf527b1d478edbc99e00b22fbf4a884b395e46460114ee41
-  f9e43edb276e0fbbbc2273b836ef1da0ac43347b5c3e4c63774e7f7ecdf25660
-)
-
-pkgver() {
-  cd home-assistant
-
-  git describe --tags
-}
-
-prepare() {
-  cd home-assistant
-
-  # lift hard dep constraints, we'll deal with breaking changes ourselves
-  sed 's/==/>=/g' -i setup.py
-}
-
-build() {
-  cd home-assistant
-
-  python setup.py build
-}
-
-package() {
-  cd home-assistant
-
-  python setup.py install --root="${pkgdir}" --prefix=/usr --optimize=1 
--skip-build
-
-  install -Dm 644 ../home-assistant.service -t 
"${pkgdir}"/usr/lib/systemd/system/
-  install -Dm 644 ../home-assistant.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/home-assistant.conf
-  install -Dm 644 ../home-assistant.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/home-assistant.conf
-}
-
-# vim: ts=2 sw=2 et:

Copied: home-assistant/repos/community-any/PKGBUILD (from rev 573861, 
home-assistant/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-17 07:10:01 UTC (rev 573862)
@@ -0,0 +1,88 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Ethan Skinner 
+# Contributor: Grégoire Seux 
+# Contributor: Dean Galvin 
+# Contributor: NicoHood 
+
+pkgname=home-assistant
+pkgdesc='Open source home automation that puts local control and privacy first'
+pkgver=0.105.4
+pkgrel=1
+arch=(any)
+url=https://home-assistant.io/
+license=(APACHE)
+depends=(
+  gcc
+  python-aiohttp
+  python-aiohttp-cors
+  python-astral
+  python-async-timeout
+  python-attrs
+  python-bcrypt
+  python-certifi
+  python-cryptography
+  python-importlib-metadata
+  python-jinja
+  python-pyjwt
+  python-pip
+  python-pytz
+  python-requests
+  python-ruamel-yaml
+  python-slugify
+  python-sqlalchemy
+  python-voluptuous
+  python-voluptuous-serialize
+  python-yaml
+)
+makedepends=(
+  git
+  python-setuptools
+)
+optdepends=(
+  'net-tools: Nmap host discovery'
+  'openzwave: Z-Wave integration'
+  'python-lxml: Meteo France integration'
+)
+source=(
+  
git+https://github.com/home-assistant/home-assistant.git#tag=68d2a1107edfa7a7831fc9bf521f86b1158c0ac1
+  home-assistant.service
+  home-assistant.sysusers
+  home-assistant.tmpfiles
+)
+sha256sums=(
+  SKIP
+  2a87a3b529a1eeddfae0c02c415bed13586b002b9580226bdc749a27bbe83af5
+  319c7790d3cdb076bf527b1d478edbc99e00b22fbf4a884b395e46460114ee41
+  

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

2020-02-16 Thread Maxime Gauduin via arch-commits
Date: Monday, February 17, 2020 @ 07:09:12
  Author: alucryd
Revision: 573860

archrelease: copy trunk to community-any

Added:
  lollypop/repos/community-any/PKGBUILD
(from rev 573859, lollypop/trunk/PKGBUILD)
Deleted:
  lollypop/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-17 07:09:07 UTC (rev 573859)
+++ PKGBUILD2020-02-17 07:09:12 UTC (rev 573860)
@@ -1,60 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: kirek 
-# Contributor: Cédric Bellegarde 
-
-pkgname=lollypop
-pkgver=1.2.21
-pkgrel=1
-pkgdesc='Music player for GNOME'
-arch=(any)
-url=https://gitlab.gnome.org/World/lollypop
-license=(GPL)
-depends=(
-  appstream-glib
-  gst-plugins-base-libs
-  gtk3
-  python-beautifulsoup4
-  python-cairo
-  python-gobject
-  python-pillow
-  totem-plparser
-)
-makedepends=(
-  git
-  gobject-introspection
-  intltool
-  itstool
-  meson
-)
-optdepends=(
-  'easytag: Modify tags'
-  'gst-libav: FFmpeg plugin for GStreamer'
-  'gst-plugins-bad: "Bad" plugin libraries'
-  'gst-plugins-base: "Base" plugin libraries'
-  'gst-plugins-good: "Good" plugin libraries'
-  'gst-plugins-ugly: "Ugly" plugin libraries'
-  'kid3-qt: Store covers in tags'
-  'libsecret: Last.FM support'
-  'python-pylast: Last.FM support'
-  'youtube-dl: Youtube support'
-)
-source=(git+https://gitlab.gnome.org/World/lollypop.git#tag=85b3fd61b30af0d97d71904e909417a712f2bfab)
-sha256sums=(SKIP)
-
-pkgver() {
-  cd lollypop
-
-  git describe --tags
-}
-
-build() {
-  arch-meson lollypop build \
---libexecdir=lib/lollypop
-  ninja -C build
-}
-
-package() {
-  DESTDIR="${pkgdir}" ninja -C build install
-}
-
-# vim: ts=2 sw=2 et:

Copied: lollypop/repos/community-any/PKGBUILD (from rev 573859, 
lollypop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-17 07:09:12 UTC (rev 573860)
@@ -0,0 +1,60 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: kirek 
+# Contributor: Cédric Bellegarde 
+
+pkgname=lollypop
+pkgver=1.2.22
+pkgrel=1
+pkgdesc='Music player for GNOME'
+arch=(any)
+url=https://gitlab.gnome.org/World/lollypop
+license=(GPL)
+depends=(
+  appstream-glib
+  gst-plugins-base-libs
+  gtk3
+  python-beautifulsoup4
+  python-cairo
+  python-gobject
+  python-pillow
+  totem-plparser
+)
+makedepends=(
+  git
+  gobject-introspection
+  intltool
+  itstool
+  meson
+)
+optdepends=(
+  'easytag: Modify tags'
+  'gst-libav: FFmpeg plugin for GStreamer'
+  'gst-plugins-bad: "Bad" plugin libraries'
+  'gst-plugins-base: "Base" plugin libraries'
+  'gst-plugins-good: "Good" plugin libraries'
+  'gst-plugins-ugly: "Ugly" plugin libraries'
+  'kid3-qt: Store covers in tags'
+  'libsecret: Last.FM support'
+  'python-pylast: Last.FM support'
+  'youtube-dl: Youtube support'
+)
+source=(git+https://gitlab.gnome.org/World/lollypop.git#tag=976ac12e724aea8c2d7aa83e4da2a795269ce814)
+sha256sums=(SKIP)
+
+pkgver() {
+  cd lollypop
+
+  git describe --tags
+}
+
+build() {
+  arch-meson lollypop build \
+--libexecdir=lib/lollypop
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+}
+
+# vim: ts=2 sw=2 et:


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

2020-02-16 Thread Maxime Gauduin via arch-commits
Date: Monday, February 17, 2020 @ 07:09:07
  Author: alucryd
Revision: 573859

upgpkg: lollypop 1.2.22-1

Modified:
  lollypop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 07:07:58 UTC (rev 573858)
+++ PKGBUILD2020-02-17 07:09:07 UTC (rev 573859)
@@ -3,7 +3,7 @@
 # Contributor: Cédric Bellegarde 
 
 pkgname=lollypop
-pkgver=1.2.21
+pkgver=1.2.22
 pkgrel=1
 pkgdesc='Music player for GNOME'
 arch=(any)
@@ -38,7 +38,7 @@
   'python-pylast: Last.FM support'
   'youtube-dl: Youtube support'
 )
-source=(git+https://gitlab.gnome.org/World/lollypop.git#tag=85b3fd61b30af0d97d71904e909417a712f2bfab)
+source=(git+https://gitlab.gnome.org/World/lollypop.git#tag=976ac12e724aea8c2d7aa83e4da2a795269ce814)
 sha256sums=(SKIP)
 
 pkgver() {


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

2020-02-16 Thread Maxime Gauduin via arch-commits
Date: Monday, February 17, 2020 @ 07:07:58
  Author: alucryd
Revision: 573858

archrelease: copy trunk to community-x86_64

Added:
  pantheon-files/repos/community-x86_64/PKGBUILD
(from rev 573857, pantheon-files/trunk/PKGBUILD)
Deleted:
  pantheon-files/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-17 06:04:46 UTC (rev 573857)
+++ PKGBUILD2020-02-17 07:07:58 UTC (rev 573858)
@@ -1,57 +0,0 @@
-# Maintainer: Maxime Gauduin 
-
-pkgname=pantheon-files
-pkgver=4.4.0
-pkgrel=1
-pkgdesc='The Pantheon File Browser'
-arch=(x86_64)
-url=https://github.com/elementary/files
-license=(GPL3)
-groups=(pantheon)
-depends=(
-  atk
-  cairo
-  gdk-pixbuf2
-  glib2
-  gtk3
-  libcanberra
-  libcloudproviders
-  libgee
-  libgit2-glib
-  libgranite.so
-  libnotify
-  pango
-  sqlite
-  zeitgeist
-)
-makedepends=(
-  git
-  gnome-common
-  meson
-  vala
-)
-optdepends=(
-  'contractor: Various context menu entries'
-  'gvfs: Cleaner devices section'
-  'tumbler: Thumbnails generation'
-)
-source=(pantheon-files::git+https://github.com/elementary/files.git#tag=4f8d8256a2174e5f24bb248102a70f0bb6cabd28)
-sha256sums=(SKIP)
-
-pkgver() {
-  cd pantheon-files
-
-  git describe --tags
-}
-
-build() {
-  arch-meson pantheon-files build \
--D with-unity=false
-  ninja -C build
-}
-
-package() {
-  DESTDIR="${pkgdir}" ninja -C build install
-}
-
-# vim: ts=2 sw=2 et:

Copied: pantheon-files/repos/community-x86_64/PKGBUILD (from rev 573857, 
pantheon-files/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-17 07:07:58 UTC (rev 573858)
@@ -0,0 +1,57 @@
+# Maintainer: Maxime Gauduin 
+
+pkgname=pantheon-files
+pkgver=4.4.0
+pkgrel=1
+pkgdesc='The Pantheon File Browser'
+arch=(x86_64)
+url=https://github.com/elementary/files
+license=(GPL3)
+groups=(pantheon)
+depends=(
+  atk
+  cairo
+  gdk-pixbuf2
+  glib2
+  gtk3
+  libcanberra
+  libcloudproviders
+  libgee
+  libgit2-glib
+  libgranite.so
+  libnotify
+  pango
+  sqlite
+  zeitgeist
+)
+makedepends=(
+  git
+  gnome-common
+  meson
+  vala
+)
+optdepends=(
+  'contractor: Various context menu entries'
+  'gvfs: Cleaner devices section'
+  'tumbler: Thumbnails generation'
+)
+source=(pantheon-files::git+https://github.com/elementary/files.git#tag=4f8d8256a2174e5f24bb248102a70f0bb6cabd28)
+sha256sums=(SKIP)
+
+pkgver() {
+  cd pantheon-files
+
+  git describe --tags
+}
+
+build() {
+  arch-meson pantheon-files build \
+-D with-unity=false
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+}
+
+# vim: ts=2 sw=2 et:


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

2020-02-16 Thread Chih-Hsuan Yen via arch-commits
Date: Monday, February 17, 2020 @ 06:04:46
  Author: yan12125
Revision: 573857

archrelease: copy trunk to community-testing-x86_64

Added:
  nextcloud-client/repos/community-testing-x86_64/
  nextcloud-client/repos/community-testing-x86_64/PKGBUILD
(from rev 573856, nextcloud-client/trunk/PKGBUILD)
  nextcloud-client/repos/community-testing-x86_64/nextcloud-client-FS64630.diff
(from rev 573856, nextcloud-client/trunk/nextcloud-client-FS64630.diff)
  
nextcloud-client/repos/community-testing-x86_64/nextcloud-client-fix-build.diff
(from rev 573856, nextcloud-client/trunk/nextcloud-client-fix-build.diff)

-+
 PKGBUILD|   87 ++
 nextcloud-client-FS64630.diff   |   12 +
 nextcloud-client-fix-build.diff |   13 +
 3 files changed, 112 insertions(+)

Copied: nextcloud-client/repos/community-testing-x86_64/PKGBUILD (from rev 
573856, nextcloud-client/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-02-17 06:04:46 UTC (rev 573857)
@@ -0,0 +1,87 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: Tyler Dence 
+# Contributor: Konstantin Shalygin 
+
+pkgname=nextcloud-client
+pkgver=2.6.3
+_commit=5880c4954e0e8fcaed9df59f1134958be3f60c06
+pkgrel=1
+pkgdesc='Nextcloud desktop client'
+arch=(x86_64)
+url='https://nextcloud.com/'
+license=(GPL)
+depends=(openssl sqlite qtkeychain qt5-svg qt5-webengine xdg-utils 
libcloudproviders)
+makedepends=(doxygen extra-cmake-modules kio python-sphinx qt5-tools git 
cmocka)
+optdepends=(
+  'kio: integration with Dolphin'
+  'nemo-python: integration with Nemo'
+  'python-nautilus: integration with Nautilus'
+  'python2-caja: integration with Caja'
+)
+source=("$pkgname::git+https://github.com/nextcloud/desktop.git?signed#commit=$_commit;
+
issue1458-workaround.patch::https://github.com/yan12125/desktop/commit/7da680ef7843a52c3136916744f50d4a003bb8b5.patch
+
issue1458-2.patch::https://github.com/yan12125/desktop/commit/2b313368325dac5b8d0e69394cfcc4faaa745f75.patch
+$pkgname-fix-build.diff
+$pkgname-FS64630.diff)
+validpgpkeys=(
+  A26B951528EA1BA1678C7AE5D406C75CEE1A36D6  # one of keys controlled by 
github.com/camilasan
+  42E775EAA3E47F9E0D5CDB0E00819E3BF4177B28  # controlled by github.com/misch7
+)
+sha256sums=('SKIP'
+'07cd68f54c004175b4a09cce25830a357d0ebaafaf4e4cabfb8b0d4deeded2f3'
+'157c87a789219a3442ca5947c48dcd1ef3898612ff32070bf8842a42bfbe857a'
+'8b257a0554ceb54a7ed320dbfa3becb97d6845338e28a8aa0a4f6239f3141645'
+'6dea4453f220b63b993722cb155d567959600af261403870f5e34d35144a4fa7')
+backup=('etc/Nextcloud/sync-exclude.lst')
+
+prepare() {
+  # tmpdir for check()
+  mkdir tmpdir $pkgname/build
+
+  # Use system GNUInstallDirs.cmake so that we can benefit from
+  # https://gitlab.kitware.com/cmake/cmake/merge_requests/3735
+  rm -v $pkgname/cmake/modules/GNUInstallDirs.cmake
+
+  cd $pkgname
+  patch -Np1 -i ../issue1458-workaround.patch
+  patch -Np1 -i ../issue1458-2.patch
+
+  # https://github.com/nextcloud/desktop/pull/719
+  # "Rename owncloud tests to nextcloud" - actually breaks building of tests
+  patch -Np1 -i ../$pkgname-fix-build.diff
+
+  # https://bugs.archlinux.org/task/64630
+  patch -Np1 -i ../$pkgname-FS64630.diff
+}
+
+build() {
+  cd $pkgname/build
+
+  # bundled breakpad in libcrashreporter-qt submodule is too old and does not 
build with glibc >= 2.26
+  # Upstream fix: 
https://github.com/google/breakpad/commit/bddcc58860f522a0d4cbaa7e9d04058caee0db9d
+  cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DNO_SHIBBOLETH=1 \
+-DWITH_CRASHREPORTER=OFF \
+-DUNIT_TESTING=ON \
+..
+
+  make
+  # TODO: fix installation of PDF and HTML documents
+  # WIP at https://github.com/yan12125/desktop/tree/doc-install-path
+  make doc-man
+}
+
+check() {
+  cd $pkgname/build
+
+  # Tests fail if $TMPDIR is too small; specify an alternative for machines
+  # with a small /tmp partition.
+  TMPDIR="$srcdir/tmpdir" make test ARGS="-V"
+}
+
+package() {
+  cd $pkgname/build
+
+  make DESTDIR="$pkgdir" install
+}

Copied: 
nextcloud-client/repos/community-testing-x86_64/nextcloud-client-FS64630.diff 
(from rev 573856, nextcloud-client/trunk/nextcloud-client-FS64630.diff)
===
--- community-testing-x86_64/nextcloud-client-FS64630.diff  
(rev 0)
+++ community-testing-x86_64/nextcloud-client-FS64630.diff  2020-02-17 
06:04:46 UTC (rev 573857)
@@ -0,0 +1,12 @@
+diff --git a/src/gui/generalsettings.cpp b/src/gui/generalsettings.cpp
+index 62381d36d..c69592c82 100644
+--- a/src/gui/generalsettings.cpp
 b/src/gui/generalsettings.cpp
+@@ -91,6 +91,7 @@ GeneralSettings::GeneralSettings(QWidget *parent)
+ #else
+ if 

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

2020-02-16 Thread Chih-Hsuan Yen via arch-commits
Date: Monday, February 17, 2020 @ 06:04:24
  Author: yan12125
Revision: 573856

upgpkg: nextcloud-client 2.6.3-1

Modified:
  nextcloud-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 02:25:48 UTC (rev 573855)
+++ PKGBUILD2020-02-17 06:04:24 UTC (rev 573856)
@@ -3,8 +3,8 @@
 # Contributor: Konstantin Shalygin 
 
 pkgname=nextcloud-client
-pkgver=2.6.2
-_commit=1d745535f7a95ff2265d6b6b47121200338fce83
+pkgver=2.6.3
+_commit=5880c4954e0e8fcaed9df59f1134958be3f60c06
 pkgrel=1
 pkgdesc='Nextcloud desktop client'
 arch=(x86_64)


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

2020-02-16 Thread Eli Schwartz via arch-commits
Date: Monday, February 17, 2020 @ 02:25:48
  Author: eschwartz
Revision: 573855

archrelease: copy trunk to community-any

Added:
  firefox-noscript/repos/community-any/PKGBUILD
(from rev 573854, firefox-noscript/trunk/PKGBUILD)
Deleted:
  firefox-noscript/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-17 02:25:33 UTC (rev 573854)
+++ PKGBUILD2020-02-17 02:25:48 UTC (rev 573855)
@@ -1,25 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Eschwartz 
-# Maintainer: Daniel M. Capella 
-
-pkgname=firefox-noscript
-pkgver=11.0.12
-pkgrel=1
-_file=3481707
-pkgdesc="Extension for firefox which disables javascript"
-arch=('any')
-url="https://noscript.net/;
-license=('GPL2')
-groups=('firefox-addons')
-depends=('firefox')
-makedepends=('unzip')
-source=("noscript-${pkgver}.xpi::https://addons.mozilla.org/firefox/downloads/file/${_file}/;)
-noextract=("noscript-${pkgver}.xpi")
-sha256sums=('1beb01e5089fd91ee5fc525b1175a5ba310d38c218d78b8aad48b824fa749670')
-b2sums=('c9a97bcdbe770b2f238e7810411f00f1de742c9b701495a3da3899b846776750bdbbe1f9560e97679bb49c30c8cab280f5df866a71c7a437c1b5da2896140c8a')
-
-package() {
-  _extension_id="{73a6fe31-595d-460b-a920-fcc0f8843232}"
-  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
-  install -Dm644 noscript-${pkgver}.xpi "${_extension_dest}.xpi"
-}

Copied: firefox-noscript/repos/community-any/PKGBUILD (from rev 573854, 
firefox-noscript/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-17 02:25:48 UTC (rev 573855)
@@ -0,0 +1,25 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Eschwartz 
+# Maintainer: Daniel M. Capella 
+
+pkgname=firefox-noscript
+pkgver=11.0.13
+pkgrel=1
+_file=3495605
+pkgdesc="Extension for firefox which disables javascript"
+arch=('any')
+url="https://noscript.net/;
+license=('GPL2')
+groups=('firefox-addons')
+depends=('firefox')
+makedepends=('unzip')
+source=("noscript-${pkgver}.xpi::https://addons.mozilla.org/firefox/downloads/file/${_file}/;)
+noextract=("noscript-${pkgver}.xpi")
+sha256sums=('ced718d9d9e719547db392ad85d24a7ad5c6b54cc0f93f9c57f2fcb44bb4de56')
+b2sums=('4113485ecbf953c91cdedba29ab015bbccd4676726ad2acd6a0450356b5e2852d800af6e231341a3fb85d68778085ee81a3bb9dba6d470c90d9a6a392b8b0409')
+
+package() {
+  _extension_id="{73a6fe31-595d-460b-a920-fcc0f8843232}"
+  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
+  install -Dm644 noscript-${pkgver}.xpi "${_extension_dest}.xpi"
+}


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

2020-02-16 Thread Eli Schwartz via arch-commits
Date: Monday, February 17, 2020 @ 02:25:33
  Author: eschwartz
Revision: 573854

upgpkg: firefox-noscript 11.0.13-1: upstream release

Modified:
  firefox-noscript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 01:22:03 UTC (rev 573853)
+++ PKGBUILD2020-02-17 02:25:33 UTC (rev 573854)
@@ -3,9 +3,9 @@
 # Maintainer: Daniel M. Capella 
 
 pkgname=firefox-noscript
-pkgver=11.0.12
+pkgver=11.0.13
 pkgrel=1
-_file=3481707
+_file=3495605
 pkgdesc="Extension for firefox which disables javascript"
 arch=('any')
 url="https://noscript.net/;
@@ -15,8 +15,8 @@
 makedepends=('unzip')
 
source=("noscript-${pkgver}.xpi::https://addons.mozilla.org/firefox/downloads/file/${_file}/;)
 noextract=("noscript-${pkgver}.xpi")
-sha256sums=('1beb01e5089fd91ee5fc525b1175a5ba310d38c218d78b8aad48b824fa749670')
-b2sums=('c9a97bcdbe770b2f238e7810411f00f1de742c9b701495a3da3899b846776750bdbbe1f9560e97679bb49c30c8cab280f5df866a71c7a437c1b5da2896140c8a')
+sha256sums=('ced718d9d9e719547db392ad85d24a7ad5c6b54cc0f93f9c57f2fcb44bb4de56')
+b2sums=('4113485ecbf953c91cdedba29ab015bbccd4676726ad2acd6a0450356b5e2852d800af6e231341a3fb85d68778085ee81a3bb9dba6d470c90d9a6a392b8b0409')
 
 package() {
   _extension_id="{73a6fe31-595d-460b-a920-fcc0f8843232}"


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

2020-02-16 Thread Gaëtan Bisson via arch-commits
Date: Monday, February 17, 2020 @ 01:21:52
  Author: bisson
Revision: 375722

better fix

Modified:
  openssh/trunk/PKGBUILD
  openssh/trunk/install

--+
 PKGBUILD |2 +-
 install  |   20 
 2 files changed, 13 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 01:13:30 UTC (rev 375721)
+++ PKGBUILD2020-02-17 01:21:52 UTC (rev 375722)
@@ -4,7 +4,7 @@
 
 pkgname=openssh
 pkgver=8.2p1
-pkgrel=2
+pkgrel=3
 pkgdesc='Premier connectivity tool for remote login with the SSH protocol'
 url='https://www.openssh.com/portable.html'
 license=('custom:BSD')

Modified: install
===
--- install 2020-02-17 01:13:30 UTC (rev 375721)
+++ install 2020-02-17 01:21:52 UTC (rev 375722)
@@ -1,12 +1,4 @@
 pre_upgrade() {
-   if (( $(vercmp $2 8.2p1-2) < 0 )); then
-   cat < Your current SSH daemon may be unable to accept new connections.
-==> To fix this, please restart it right now using:
-==> systemctl restart sshd
-EOF
-   fi
-
# Remove socket activation. See: https://bugs.archlinux.org/task/62248
if (( $(vercmp $2 8.0p1-3) < 0 )); then
if systemctl is-enabled -q sshd.socket; then
@@ -26,3 +18,15 @@
fi
fi
 }
+
+post_upgrade() {
+   if (( $(vercmp $2 8.2p1-3) < 0 )); then
+   if systemctl is-active sshd.service >/dev/null; then
+   cat < After this upgrade, your existing SSH daemon may be unable to accept
+==> new connections. To fix this, your SSH daemon will now be restarted.
+EOF
+   systemctl restart sshd.service
+   fi
+   fi
+}


[arch-commits] Commit in openssh/repos (17 files)

2020-02-16 Thread Gaëtan Bisson via arch-commits
Date: Monday, February 17, 2020 @ 01:27:05
  Author: bisson
Revision: 375724

db-move: moved openssh from [testing] to [core] (x86_64)

Added:
  openssh/repos/core-x86_64/PKGBUILD
(from rev 375723, openssh/repos/testing-x86_64/PKGBUILD)
  openssh/repos/core-x86_64/PKGBUILD.snap
(from rev 375723, openssh/repos/testing-x86_64/PKGBUILD.snap)
  openssh/repos/core-x86_64/glibc-2.31.patch
(from rev 375723, openssh/repos/testing-x86_64/glibc-2.31.patch)
  openssh/repos/core-x86_64/install
(from rev 375723, openssh/repos/testing-x86_64/install)
  openssh/repos/core-x86_64/sshd.conf
(from rev 375723, openssh/repos/testing-x86_64/sshd.conf)
  openssh/repos/core-x86_64/sshd.pam
(from rev 375723, openssh/repos/testing-x86_64/sshd.pam)
  openssh/repos/core-x86_64/sshd.service
(from rev 375723, openssh/repos/testing-x86_64/sshd.service)
  openssh/repos/core-x86_64/sshdgenkeys.service
(from rev 375723, openssh/repos/testing-x86_64/sshdgenkeys.service)
Deleted:
  openssh/repos/core-x86_64/PKGBUILD
  openssh/repos/core-x86_64/PKGBUILD.snap
  openssh/repos/core-x86_64/glibc-2.31.patch
  openssh/repos/core-x86_64/install
  openssh/repos/core-x86_64/sshd.conf
  openssh/repos/core-x86_64/sshd.pam
  openssh/repos/core-x86_64/sshd.service
  openssh/repos/core-x86_64/sshdgenkeys.service
  openssh/repos/testing-x86_64/

-+
 /PKGBUILD   |  101 
 /PKGBUILD.snap  |  105 ++
 /glibc-2.31.patch   |  100 
 /install|   32 +++
 /sshd.conf  |1 
 /sshd.pam   |6 ++
 /sshd.service   |   14 +
 /sshdgenkeys.service|   15 +
 core-x86_64/PKGBUILD|  102 
 core-x86_64/PKGBUILD.snap   |  105 --
 core-x86_64/glibc-2.31.patch|  100 
 core-x86_64/install |   20 ---
 core-x86_64/sshd.conf   |1 
 core-x86_64/sshd.pam|6 --
 core-x86_64/sshd.service|   14 -
 core-x86_64/sshdgenkeys.service |   15 -
 16 files changed, 374 insertions(+), 363 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2020-02-17 01:22:33 UTC (rev 375723)
+++ core-x86_64/PKGBUILD2020-02-17 01:27:05 UTC (rev 375724)
@@ -1,102 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Aaron Griffin 
-# Contributor: judd 
-
-pkgname=openssh
-pkgver=8.2p1
-pkgrel=1
-pkgdesc='Premier connectivity tool for remote login with the SSH protocol'
-url='https://www.openssh.com/portable.html'
-license=('custom:BSD')
-arch=('x86_64')
-makedepends=('linux-headers' 'git')
-depends=('krb5' 'openssl' 'libedit' 'ldns')
-optdepends=('xorg-xauth: X11 forwarding'
-'x11-ssh-askpass: input passphrase in X')
-validpgpkeys=('59C2118ED206D927E667EBE3D3E5F56B6D920D30')
-#source=("https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz"{,.asc}
-source=("git://anongit.mindrot.org/openssh.git?signed#tag=V_8_2_P1"
-'sshdgenkeys.service'
-'sshd.service'
-'sshd.conf'
-'sshd.pam'
-'glibc-2.31.patch')
-sha256sums=('SKIP'
-'4031577db6416fcbaacf8a26a024ecd3939e5c10fe6a86ee3f0eea5093d533b7'
-'e40f8b7c8e5e2ecf3084b3511a6c36d5b5c9f9e61f2bb13e3726c71dc7d4fbc7'
-'4effac1186cc62617f44385415103021f72f674f8b8e26447fc1139c670090f6'
-'64576021515c0a98b0aaf0a0ae02e0f5ebe8ee525b1e647ab68f369f81ecd846'
-'25b4a4d9e2d9d3289ef30636a30e85fa1c71dd930d5efd712cca1a01a5019f93')
-
-backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
-
-install=install
-
-prepare() {
-#  cd "${srcdir}/${pkgname}-${pkgver}"
-   cd "${srcdir}/${pkgname}"
-   patch -p1 -i ../glibc-2.31.patch
-   autoreconf
-}
-
-build() {
-#  cd "${srcdir}/${pkgname}-${pkgver}"
-   cd "${srcdir}/${pkgname}"
-
-   ./configure \
-   --prefix=/usr \
-   --sbindir=/usr/bin \
-   --libexecdir=/usr/lib/ssh \
-   --sysconfdir=/etc/ssh \
-   --disable-strip \
-   --with-ldns \
-   --with-libedit \
-   --with-ssl-engine \
-   --with-pam \
-   --with-privsep-user=nobody \
-   --with-kerberos5=/usr \
-   --with-xauth=/usr/bin/xauth \
-   --with-md5-passwords \
-   --with-pid-dir=/run \
-   --with-default-path='/usr/local/sbin:/usr/local/bin:/usr/bin' \
-
-   make
-}
-
-check() {
-#  cd "${srcdir}/${pkgname}-${pkgver}"
-   cd "${srcdir}/${pkgname}"
-
-   # Tests require openssh to be already installed 

[arch-commits] Commit in openssh/repos/testing-x86_64 (16 files)

2020-02-16 Thread Gaëtan Bisson via arch-commits
Date: Monday, February 17, 2020 @ 01:22:33
  Author: bisson
Revision: 375723

archrelease: copy trunk to testing-x86_64

Added:
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 375722, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/PKGBUILD.snap
(from rev 375722, openssh/trunk/PKGBUILD.snap)
  openssh/repos/testing-x86_64/glibc-2.31.patch
(from rev 375722, openssh/trunk/glibc-2.31.patch)
  openssh/repos/testing-x86_64/install
(from rev 375722, openssh/trunk/install)
  openssh/repos/testing-x86_64/sshd.conf
(from rev 375722, openssh/trunk/sshd.conf)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 375722, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 375722, openssh/trunk/sshd.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 375722, openssh/trunk/sshdgenkeys.service)
Deleted:
  openssh/repos/testing-x86_64/PKGBUILD
  openssh/repos/testing-x86_64/PKGBUILD.snap
  openssh/repos/testing-x86_64/glibc-2.31.patch
  openssh/repos/testing-x86_64/install
  openssh/repos/testing-x86_64/sshd.conf
  openssh/repos/testing-x86_64/sshd.pam
  openssh/repos/testing-x86_64/sshd.service
  openssh/repos/testing-x86_64/sshdgenkeys.service

-+
 PKGBUILD|  202 
 PKGBUILD.snap   |  210 +-
 glibc-2.31.patch|  200 +++
 install |   60 +++---
 sshd.conf   |2 
 sshd.pam|   12 +-
 sshd.service|   28 +++---
 sshdgenkeys.service |   30 +++
 8 files changed, 374 insertions(+), 370 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-17 01:21:52 UTC (rev 375722)
+++ PKGBUILD2020-02-17 01:22:33 UTC (rev 375723)
@@ -1,101 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Aaron Griffin 
-# Contributor: judd 
-
-pkgname=openssh
-pkgver=8.2p1
-pkgrel=2
-pkgdesc='Premier connectivity tool for remote login with the SSH protocol'
-url='https://www.openssh.com/portable.html'
-license=('custom:BSD')
-arch=('x86_64')
-makedepends=('linux-headers' 'git' 'libfido2')
-depends=('krb5' 'openssl' 'libedit' 'ldns')
-optdepends=('xorg-xauth: X11 forwarding'
-'x11-ssh-askpass: input passphrase in X'
-'libfido2: FIDO/U2F support')
-validpgpkeys=('59C2118ED206D927E667EBE3D3E5F56B6D920D30')
-#source=("git://anongit.mindrot.org/openssh.git?signed#tag=V_8_2_P1"
-source=("https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz"{,.asc}
-'sshdgenkeys.service'
-'sshd.service'
-'sshd.conf'
-'sshd.pam'
-'glibc-2.31.patch')
-sha256sums=('43925151e6cf6cee1450190c0e9af4dc36b41c12737619edff8bcebdff64e671'
-'SKIP'
-'4031577db6416fcbaacf8a26a024ecd3939e5c10fe6a86ee3f0eea5093d533b7'
-'e40f8b7c8e5e2ecf3084b3511a6c36d5b5c9f9e61f2bb13e3726c71dc7d4fbc7'
-'4effac1186cc62617f44385415103021f72f674f8b8e26447fc1139c670090f6'
-'64576021515c0a98b0aaf0a0ae02e0f5ebe8ee525b1e647ab68f369f81ecd846'
-'25b4a4d9e2d9d3289ef30636a30e85fa1c71dd930d5efd712cca1a01a5019f93')
-
-backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
-
-install=install
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   patch -p1 -i ../glibc-2.31.patch
-   autoreconf
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   ./configure \
-   --prefix=/usr \
-   --sbindir=/usr/bin \
-   --libexecdir=/usr/lib/ssh \
-   --sysconfdir=/etc/ssh \
-   --disable-strip \
-   --with-ldns \
-   --with-libedit \
-   --with-security-key-builtin \
-   --with-ssl-engine \
-   --with-pam \
-   --with-privsep-user=nobody \
-   --with-kerberos5=/usr \
-   --with-xauth=/usr/bin/xauth \
-   --with-md5-passwords \
-   --with-pid-dir=/run \
-   --with-default-path='/usr/local/sbin:/usr/local/bin:/usr/bin' \
-
-   make
-}
-
-check() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   # Tests require openssh to be already installed system-wide,
-   # also connectivity tests will fail under makechrootpkg since
-# it runs as nobody which has /bin/false as login shell.
-
-   if [[ -e /usr/bin/scp && ! -e /.arch-chroot ]]; then
-   make tests
-   fi
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   make DESTDIR="${pkgdir}" install
-
-   ln -sf ssh.1.gz "${pkgdir}"/usr/share/man/man1/slogin.1.gz
-   install -Dm644 LICENCE "${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
-
-   install -Dm644 ../sshdgenkeys.service 
"${pkgdir}"/usr/lib/systemd/system/sshdgenkeys.service
-   

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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 01:22:03
  Author: felixonmars
Revision: 573853

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-network-uri/repos/community-staging-x86_64/PKGBUILD (from rev 
573852, haskell-network-uri/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 01:22:03 UTC (rev 573853)
@@ -0,0 +1,49 @@
+# Maintainer: Jelle van der Waa 
+
+_hkgname=network-uri
+pkgname=haskell-network-uri
+pkgver=2.6.2.0
+pkgrel=5
+pkgdesc="A library for client-side HTTP"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'sh')
+makedepends=('ghc' 'haskell-criterion' 'haskell-hunit' 'haskell-test-framework'
+ 'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('66c67eac386da617f866ad0684a7262d009f67be0ccd0c4f20ca2de38219e00b11de1fef4c3769957b1412dd42b949cc01a8edc40564a31d3735c12696d648b1')
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 01:21:49
  Author: felixonmars
Revision: 573852

upgpkg: haskell-network-uri 2.6.2.0-5: rebuild with profunctors 5.5.2

Modified:
  haskell-network-uri/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 01:20:19 UTC (rev 573851)
+++ PKGBUILD2020-02-17 01:21:49 UTC (rev 573852)
@@ -3,7 +3,7 @@
 _hkgname=network-uri
 pkgname=haskell-network-uri
 pkgver=2.6.2.0
-pkgrel=4
+pkgrel=5
 pkgdesc="A library for client-side HTTP"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=('BSD')


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 01:20:04
  Author: felixonmars
Revision: 573850

upgpkg: haskell-http-client 0.6.4-49: rebuild with profunctors 5.5.2

Modified:
  haskell-http-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 01:19:00 UTC (rev 573849)
+++ PKGBUILD2020-02-17 01:20:04 UTC (rev 573850)
@@ -4,7 +4,7 @@
 _hkgname=http-client
 pkgname=haskell-http-client
 pkgver=0.6.4
-pkgrel=48
+pkgrel=49
 pkgdesc="An HTTP client engine"
 url="https://github.com/snoyberg/http-client;
 license=("MIT")


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 01:20:19
  Author: felixonmars
Revision: 573851

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-http-client/repos/community-staging-x86_64/PKGBUILD (from rev 
573850, haskell-http-client/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 01:20:19 UTC (rev 573851)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-client
+pkgname=haskell-http-client
+pkgver=0.6.4
+pkgrel=49
+pkgdesc="An HTTP client engine"
+url="https://github.com/snoyberg/http-client;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-builder' 'haskell-case-insensitive' 
'haskell-cookie'
+ 'haskell-exceptions' 'haskell-http-types' 'haskell-memory' 
'haskell-mime-types'
+ 'haskell-network' 'haskell-network-uri' 'haskell-random' 
'haskell-streaming-commons'
+)
+makedepends=('ghc' 'haskell-async' 'haskell-hspec' 'haskell-monad-control' 
'haskell-zlib')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('0b7a16ca1932fa3a20d3f44f65a482277486af1319cf9ed3e138e0b9cc838816ee12aa677821a19e8c51f8bf675676233d8a648b3bf2c3c13f3c70a9348be90a')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
-fnetwork-uri
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 01:18:44
  Author: felixonmars
Revision: 573848

upgpkg: haskell-warp 3.3.8-13: rebuild with profunctors 5.5.2

Modified:
  haskell-warp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 01:17:22 UTC (rev 573847)
+++ PKGBUILD2020-02-17 01:18:44 UTC (rev 573848)
@@ -4,7 +4,7 @@
 _hkgname=warp
 pkgname=haskell-warp
 pkgver=3.3.8
-pkgrel=12
+pkgrel=13
 pkgdesc="A fast, light-weight web server for WAI applications."
 url="https://github.com/yesodweb/wai;
 license=("MIT")


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 01:19:00
  Author: felixonmars
Revision: 573849

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-warp/repos/community-staging-x86_64/PKGBUILD (from rev 573848, 
haskell-warp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 01:19:00 UTC (rev 573849)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp
+pkgname=haskell-warp
+pkgver=3.3.8
+pkgrel=13
+pkgdesc="A fast, light-weight web server for WAI applications."
+url="https://github.com/yesodweb/wai;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-auto-update' 
'haskell-bsb-http-chunked'
+ 'haskell-case-insensitive' 'haskell-hashable' 'haskell-http-date' 
'haskell-http-types'
+ 'haskell-http2' 'haskell-iproute' 'haskell-network' 
'haskell-simple-sendfile'
+ 'haskell-streaming-commons' 'haskell-time-manager' 
'haskell-unix-compat' 'haskell-vault'
+ 'haskell-wai' 'haskell-word8' 'haskell-x509')
+makedepends=('ghc' 'haskell-doctest' 'haskell-http-client' 'haskell-hspec' 
'haskell-hunit'
+ 'haskell-lifted-base' 'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('4fe064a55f0f753ee121f6f7c4bd16d378e77805d38d3b37e278b8da569fa9af567b7fc09e3bd44a5b03fb8ae88d671f13af0d8cfdf18717f01d210bbd6c7489')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-warp-debug -fallow-sendfilefd -f-network-bytestring
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 01:17:08
  Author: felixonmars
Revision: 573846

upgpkg: haskell-wai-conduit 3.0.0.4-176: rebuild with profunctors 5.5.2

Modified:
  haskell-wai-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 01:16:34 UTC (rev 573845)
+++ PKGBUILD2020-02-17 01:17:08 UTC (rev 573846)
@@ -4,7 +4,7 @@
 _hkgname=wai-conduit
 pkgname=haskell-wai-conduit
 pkgver=3.0.0.4
-pkgrel=175
+pkgrel=176
 pkgdesc="Conduit wrappers for WAI"
 url="https://github.com/yesodweb/wai;
 license=("MIT")


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 01:17:22
  Author: felixonmars
Revision: 573847

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wai-conduit/repos/community-staging-x86_64/
  haskell-wai-conduit/repos/community-staging-x86_64/PKGBUILD
(from rev 573846, haskell-wai-conduit/trunk/PKGBUILD)

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

Copied: haskell-wai-conduit/repos/community-staging-x86_64/PKGBUILD (from rev 
573846, haskell-wai-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 01:17:22 UTC (rev 573847)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-conduit
+pkgname=haskell-wai-conduit
+pkgver=3.0.0.4
+pkgrel=176
+pkgdesc="Conduit wrappers for WAI"
+url="https://github.com/yesodweb/wai;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-conduit' 'haskell-http-types' 'haskell-wai')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('49f1a2b53912a899b4cf427a72ab7c34994fd86810e5345233de34a611c71b970ff09e8fa33c93803950c2991a7c22c9b0b6d277fc9aca64bb599af60415ae70')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 01:16:19
  Author: felixonmars
Revision: 573844

upgpkg: haskell-classy-prelude 1.5.0-17: rebuild with profunctors 5.5.2

Modified:
  haskell-classy-prelude/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 01:14:51 UTC (rev 573843)
+++ PKGBUILD2020-02-17 01:16:19 UTC (rev 573844)
@@ -3,7 +3,7 @@
 _hkgname=classy-prelude
 pkgname=haskell-classy-prelude
 pkgver=1.5.0
-pkgrel=16
+pkgrel=17
 pkgdesc='A typeclass-based Prelude'
 arch=(x86_64)
 url="https://hackage.haskell.org/package/$_hkgname;


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 01:16:34
  Author: felixonmars
Revision: 573845

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-classy-prelude/repos/community-staging-x86_64/
  haskell-classy-prelude/repos/community-staging-x86_64/PKGBUILD
(from rev 573844, haskell-classy-prelude/trunk/PKGBUILD)

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

Copied: haskell-classy-prelude/repos/community-staging-x86_64/PKGBUILD (from 
rev 573844, haskell-classy-prelude/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 01:16:34 UTC (rev 573845)
@@ -0,0 +1,48 @@
+# Maintainer: Jelle van der Waa 
+
+_hkgname=classy-prelude
+pkgname=haskell-classy-prelude
+pkgver=1.5.0
+pkgrel=17
+pkgdesc='A typeclass-based Prelude'
+arch=(x86_64)
+url="https://hackage.haskell.org/package/$_hkgname;
+license=(MIT)
+depends=(ghc-libs haskell-async haskell-chunked-data haskell-dlist
+ haskell-hashable haskell-mono-traversable haskell-mtl 
haskell-primitive
+ haskell-unliftio haskell-stm-chans haskell-semigroups
+ haskell-unordered-containers haskell-vector-instances
+ haskell-say haskell-mutable-containers haskell-basic-prelude
+ haskell-mono-traversable-instances)
+checkdepends=(haskell-hspec)
+makedepends=(ghc)
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('eb8afb8a8988d0b251f6b3c2046f3ad943201d35379bfcd21f024afa67031c1b43677f43b22a0dd88e5e586a669bf5cb0b7348e13f40bbef624d09a3c6c62dfd')
+
+build() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+  --prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+  --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test
+}
+
+package() {
+  cd $_hkgname-$pkgver
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in haskell-mono-traversable-instances/repos (2 files)

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 01:14:51
  Author: felixonmars
Revision: 573843

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-mono-traversable-instances/repos/community-staging-x86_64/
  haskell-mono-traversable-instances/repos/community-staging-x86_64/PKGBUILD
(from rev 573842, haskell-mono-traversable-instances/trunk/PKGBUILD)

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

Copied: 
haskell-mono-traversable-instances/repos/community-staging-x86_64/PKGBUILD 
(from rev 573842, haskell-mono-traversable-instances/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 01:14:51 UTC (rev 573843)
@@ -0,0 +1,48 @@
+# Maintainer: Jelle van der Waa 
+
+_hkgname=mono-traversable-instances
+pkgname=haskell-mono-traversable-instances
+pkgver=0.1.0.0
+pkgrel=17
+pkgdesc='Extra typeclass instances for mono-traversable'
+arch=(x86_64)
+url="https://hackage.haskell.org/package/$_hkgname;
+license=(MIT)
+depends=(ghc-libs haskell-dlist haskell-comonad haskell-mono-traversable
+ haskell-semigroupoids haskell-vector-instances 
haskell-dlist-instances)
+makedepends=(ghc)
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('53eeb28d68769cc995a2abf4219e6ccbe211d53f190112bb3c6792a3591ccb6334691ec491d92563489d64c7f39df81b02c0a36178daff135fce8b8475f43d0b')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+  --prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+  --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test
+}
+
+package() {
+  cd $_hkgname-$pkgver
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in openssh/repos (9 files)

2020-02-16 Thread Gaëtan Bisson via arch-commits
Date: Monday, February 17, 2020 @ 01:13:30
  Author: bisson
Revision: 375721

archrelease: copy trunk to testing-x86_64

Added:
  openssh/repos/testing-x86_64/
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 375720, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/PKGBUILD.snap
(from rev 375720, openssh/trunk/PKGBUILD.snap)
  openssh/repos/testing-x86_64/glibc-2.31.patch
(from rev 375720, openssh/trunk/glibc-2.31.patch)
  openssh/repos/testing-x86_64/install
(from rev 375720, openssh/trunk/install)
  openssh/repos/testing-x86_64/sshd.conf
(from rev 375720, openssh/trunk/sshd.conf)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 375720, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 375720, openssh/trunk/sshd.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 375720, openssh/trunk/sshdgenkeys.service)

-+
 PKGBUILD|  101 
 PKGBUILD.snap   |  105 ++
 glibc-2.31.patch|  100 +++
 install |   28 +
 sshd.conf   |1 
 sshd.pam|6 ++
 sshd.service|   14 ++
 sshdgenkeys.service |   15 +++
 8 files changed, 370 insertions(+)

Copied: openssh/repos/testing-x86_64/PKGBUILD (from rev 375720, 
openssh/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-02-17 01:13:30 UTC (rev 375721)
@@ -0,0 +1,101 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Aaron Griffin 
+# Contributor: judd 
+
+pkgname=openssh
+pkgver=8.2p1
+pkgrel=2
+pkgdesc='Premier connectivity tool for remote login with the SSH protocol'
+url='https://www.openssh.com/portable.html'
+license=('custom:BSD')
+arch=('x86_64')
+makedepends=('linux-headers' 'git' 'libfido2')
+depends=('krb5' 'openssl' 'libedit' 'ldns')
+optdepends=('xorg-xauth: X11 forwarding'
+'x11-ssh-askpass: input passphrase in X'
+'libfido2: FIDO/U2F support')
+validpgpkeys=('59C2118ED206D927E667EBE3D3E5F56B6D920D30')
+#source=("git://anongit.mindrot.org/openssh.git?signed#tag=V_8_2_P1"
+source=("https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz"{,.asc}
+'sshdgenkeys.service'
+'sshd.service'
+'sshd.conf'
+'sshd.pam'
+'glibc-2.31.patch')
+sha256sums=('43925151e6cf6cee1450190c0e9af4dc36b41c12737619edff8bcebdff64e671'
+'SKIP'
+'4031577db6416fcbaacf8a26a024ecd3939e5c10fe6a86ee3f0eea5093d533b7'
+'e40f8b7c8e5e2ecf3084b3511a6c36d5b5c9f9e61f2bb13e3726c71dc7d4fbc7'
+'4effac1186cc62617f44385415103021f72f674f8b8e26447fc1139c670090f6'
+'64576021515c0a98b0aaf0a0ae02e0f5ebe8ee525b1e647ab68f369f81ecd846'
+'25b4a4d9e2d9d3289ef30636a30e85fa1c71dd930d5efd712cca1a01a5019f93')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
+
+install=install
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p1 -i ../glibc-2.31.patch
+   autoreconf
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/ssh \
+   --sysconfdir=/etc/ssh \
+   --disable-strip \
+   --with-ldns \
+   --with-libedit \
+   --with-security-key-builtin \
+   --with-ssl-engine \
+   --with-pam \
+   --with-privsep-user=nobody \
+   --with-kerberos5=/usr \
+   --with-xauth=/usr/bin/xauth \
+   --with-md5-passwords \
+   --with-pid-dir=/run \
+   --with-default-path='/usr/local/sbin:/usr/local/bin:/usr/bin' \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   # Tests require openssh to be already installed system-wide,
+   # also connectivity tests will fail under makechrootpkg since
+# it runs as nobody which has /bin/false as login shell.
+
+   if [[ -e /usr/bin/scp && ! -e /.arch-chroot ]]; then
+   make tests
+   fi
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make DESTDIR="${pkgdir}" install
+
+   ln -sf ssh.1.gz "${pkgdir}"/usr/share/man/man1/slogin.1.gz
+   install -Dm644 LICENCE "${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
+
+   install -Dm644 ../sshdgenkeys.service 
"${pkgdir}"/usr/lib/systemd/system/sshdgenkeys.service
+   install -Dm644 ../sshd.service 
"${pkgdir}"/usr/lib/systemd/system/sshd.service
+   install -Dm644 ../sshd.conf "${pkgdir}"/usr/lib/tmpfiles.d/sshd.conf
+   install -Dm644 ../sshd.pam "${pkgdir}"/etc/pam.d/sshd
+
+   install -Dm755 

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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 01:13:52
  Author: felixonmars
Revision: 573841

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-vector-instances/repos/community-staging-x86_64/
  haskell-vector-instances/repos/community-staging-x86_64/PKGBUILD
(from rev 573840, haskell-vector-instances/trunk/PKGBUILD)

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

Copied: haskell-vector-instances/repos/community-staging-x86_64/PKGBUILD (from 
rev 573840, haskell-vector-instances/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 01:13:52 UTC (rev 573841)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vector-instances
+pkgname=haskell-vector-instances
+pkgver=3.4
+pkgrel=165
+pkgdesc="Orphan Instances for \'Data.Vector\'"
+url="https://github.com/ekmett/vector-instances;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-comonad" "haskell-hashable" "haskell-keys" 
"haskell-pointed"
+ "haskell-semigroupoids" "haskell-vector")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('67ffd6b941909bda1b6f26c8c7579fc495267425461f15f20bbaecf22b67d3dbf4ee88eb2ac76232f47917c26558eb325fedfe8ffc97368bbe1ad90fb427a7b1')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fhashable
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 01:13:35
  Author: felixonmars
Revision: 573840

upgpkg: haskell-vector-instances 3.4-165: rebuild with profunctors 5.5.2

Modified:
  haskell-vector-instances/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 01:12:53 UTC (rev 573839)
+++ PKGBUILD2020-02-17 01:13:35 UTC (rev 573840)
@@ -4,7 +4,7 @@
 _hkgname=vector-instances
 pkgname=haskell-vector-instances
 pkgver=3.4
-pkgrel=164
+pkgrel=165
 pkgdesc="Orphan Instances for \'Data.Vector\'"
 url="https://github.com/ekmett/vector-instances;
 license=("BSD")


[arch-commits] Commit in haskell-mono-traversable-instances/trunk (PKGBUILD)

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 01:14:33
  Author: felixonmars
Revision: 573842

upgpkg: haskell-mono-traversable-instances 0.1.0.0-17: rebuild with profunctors 
5.5.2

Modified:
  haskell-mono-traversable-instances/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 01:13:52 UTC (rev 573841)
+++ PKGBUILD2020-02-17 01:14:33 UTC (rev 573842)
@@ -3,7 +3,7 @@
 _hkgname=mono-traversable-instances
 pkgname=haskell-mono-traversable-instances
 pkgver=0.1.0.0
-pkgrel=16
+pkgrel=17
 pkgdesc='Extra typeclass instances for mono-traversable'
 arch=(x86_64)
 url="https://hackage.haskell.org/package/$_hkgname;


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 01:12:53
  Author: felixonmars
Revision: 573839

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-clash-prelude/repos/community-staging-x86_64/
  haskell-clash-prelude/repos/community-staging-x86_64/PKGBUILD
(from rev 573838, haskell-clash-prelude/trunk/PKGBUILD)

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

Copied: haskell-clash-prelude/repos/community-staging-x86_64/PKGBUILD (from rev 
573838, haskell-clash-prelude/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 01:12:53 UTC (rev 573839)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=clash-prelude
+pkgname=haskell-clash-prelude
+pkgver=1.0.1
+pkgrel=19
+pkgdesc="CAES Language for Synchronous Hardware - Prelude library"
+url="https://github.com/clash-lang/clash-prelude;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-bifunctors' 'haskell-constraints' 
'haskell-data-binary-ieee754'
+ 'haskell-data-default-class' 'haskell-ghc-typelits-extra' 
'haskell-ghc-typelits-knownnat'
+ 'haskell-ghc-typelits-natnormalise' 'haskell-half' 'haskell-hashable' 
'haskell-lens'
+ 'haskell-quickcheck' 'haskell-reflection' 'haskell-singletons' 
'haskell-th-lift'
+ 'haskell-th-orphans' 'haskell-type-errors' 'haskell-vector')
+makedepends=('ghc' 'haskell-doctest' 'haskell-hint' 'haskell-tasty' 
'haskell-tasty-hunit')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('9edf5775b114e00d62e4a9330494ff367d60c8162c68e0a1b7a92867dbb0310336bf684ceb560f6681742a734086ad728cea8e452a97217d4fc4e830d8dcfc92')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/0.16.1/0.16.0/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+# TODO
+runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-02-16 Thread Gaëtan Bisson via arch-commits
Date: Monday, February 17, 2020 @ 01:12:45
  Author: bisson
Revision: 375720

enable builtin u2f, add announcement for compat break

Modified:
  openssh/trunk/PKGBUILD
  openssh/trunk/install

--+
 PKGBUILD |   27 +--
 install  |8 
 2 files changed, 21 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 01:01:27 UTC (rev 375719)
+++ PKGBUILD2020-02-17 01:12:45 UTC (rev 375720)
@@ -4,24 +4,26 @@
 
 pkgname=openssh
 pkgver=8.2p1
-pkgrel=1
+pkgrel=2
 pkgdesc='Premier connectivity tool for remote login with the SSH protocol'
 url='https://www.openssh.com/portable.html'
 license=('custom:BSD')
 arch=('x86_64')
-makedepends=('linux-headers' 'git')
+makedepends=('linux-headers' 'git' 'libfido2')
 depends=('krb5' 'openssl' 'libedit' 'ldns')
 optdepends=('xorg-xauth: X11 forwarding'
-'x11-ssh-askpass: input passphrase in X')
+'x11-ssh-askpass: input passphrase in X'
+'libfido2: FIDO/U2F support')
 validpgpkeys=('59C2118ED206D927E667EBE3D3E5F56B6D920D30')
-#source=("https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz"{,.asc}
-source=("git://anongit.mindrot.org/openssh.git?signed#tag=V_8_2_P1"
+#source=("git://anongit.mindrot.org/openssh.git?signed#tag=V_8_2_P1"
+source=("https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz"{,.asc}
 'sshdgenkeys.service'
 'sshd.service'
 'sshd.conf'
 'sshd.pam'
 'glibc-2.31.patch')
-sha256sums=('SKIP'
+sha256sums=('43925151e6cf6cee1450190c0e9af4dc36b41c12737619edff8bcebdff64e671'
+'SKIP'
 '4031577db6416fcbaacf8a26a024ecd3939e5c10fe6a86ee3f0eea5093d533b7'
 'e40f8b7c8e5e2ecf3084b3511a6c36d5b5c9f9e61f2bb13e3726c71dc7d4fbc7'
 '4effac1186cc62617f44385415103021f72f674f8b8e26447fc1139c670090f6'
@@ -33,15 +35,13 @@
 install=install
 
 prepare() {
-#  cd "${srcdir}/${pkgname}-${pkgver}"
-   cd "${srcdir}/${pkgname}"
+   cd "${srcdir}/${pkgname}-${pkgver}"
patch -p1 -i ../glibc-2.31.patch
autoreconf
 }
 
 build() {
-#  cd "${srcdir}/${pkgname}-${pkgver}"
-   cd "${srcdir}/${pkgname}"
+   cd "${srcdir}/${pkgname}-${pkgver}"
 
./configure \
--prefix=/usr \
@@ -51,6 +51,7 @@
--disable-strip \
--with-ldns \
--with-libedit \
+   --with-security-key-builtin \
--with-ssl-engine \
--with-pam \
--with-privsep-user=nobody \
@@ -64,8 +65,7 @@
 }
 
 check() {
-#  cd "${srcdir}/${pkgname}-${pkgver}"
-   cd "${srcdir}/${pkgname}"
+   cd "${srcdir}/${pkgname}-${pkgver}"
 
# Tests require openssh to be already installed system-wide,
# also connectivity tests will fail under makechrootpkg since
@@ -77,8 +77,7 @@
 }
 
 package() {
-#  cd "${srcdir}/${pkgname}-${pkgver}"
-   cd "${srcdir}/${pkgname}"
+   cd "${srcdir}/${pkgname}-${pkgver}"
 
make DESTDIR="${pkgdir}" install
 

Modified: install
===
--- install 2020-02-17 01:01:27 UTC (rev 375719)
+++ install 2020-02-17 01:12:45 UTC (rev 375720)
@@ -1,4 +1,12 @@
 pre_upgrade() {
+   if (( $(vercmp $2 8.2p1-2) < 0 )); then
+   cat < Your current SSH daemon may be unable to accept new connections.
+==> To fix this, please restart it right now using:
+==> systemctl restart sshd
+EOF
+   fi
+
# Remove socket activation. See: https://bugs.archlinux.org/task/62248
if (( $(vercmp $2 8.0p1-3) < 0 )); then
if systemctl is-enabled -q sshd.socket; then


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 01:12:37
  Author: felixonmars
Revision: 573838

upgpkg: haskell-clash-prelude 1.0.1-19: rebuild with profunctors 5.5.2

Modified:
  haskell-clash-prelude/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 01:05:35 UTC (rev 573837)
+++ PKGBUILD2020-02-17 01:12:37 UTC (rev 573838)
@@ -3,7 +3,7 @@
 _hkgname=clash-prelude
 pkgname=haskell-clash-prelude
 pkgver=1.0.1
-pkgrel=18
+pkgrel=19
 pkgdesc="CAES Language for Synchronous Hardware - Prelude library"
 url="https://github.com/clash-lang/clash-prelude;
 license=('BSD')


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 01:05:20
  Author: felixonmars
Revision: 573836

upgpkg: haskell-singletons 2.6-17: rebuild with profunctors 5.5.2

Modified:
  haskell-singletons/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 01:00:33 UTC (rev 573835)
+++ PKGBUILD2020-02-17 01:05:20 UTC (rev 573836)
@@ -3,7 +3,7 @@
 _hkgname=singletons
 pkgname=haskell-singletons
 pkgver=2.6
-pkgrel=16
+pkgrel=17
 pkgdesc="A framework for generating singleton types"
 url="https://github.com/goldfirere/singletons;
 license=('BSD')


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 01:05:35
  Author: felixonmars
Revision: 573837

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-singletons/repos/community-staging-x86_64/PKGBUILD (from rev 
573836, haskell-singletons/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 01:05:35 UTC (rev 573837)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=singletons
+pkgname=haskell-singletons
+pkgver=2.6
+pkgrel=17
+pkgdesc="A framework for generating singleton types"
+url="https://github.com/goldfirere/singletons;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-th-desugar' 'haskell-syb')
+makedepends=('ghc' 'haskell-tasty' 'haskell-tasty-golden' 'haskell-turtle')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('6019bcd5e60718055d7a1369902c27b27a3b58c86049eaac4411bd347670f6e9835cfb680ea2126b6b4614688cb1e9ea9025dc590a9df83e1e654bb115db600d')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-02-16 Thread Jan Steffens via arch-commits
Date: Monday, February 17, 2020 @ 01:01:16
  Author: heftig
Revision: 375718

6.9.10.93-1

Modified:
  imagemagick6/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:57:01 UTC (rev 375717)
+++ PKGBUILD2020-02-17 01:01:16 UTC (rev 375718)
@@ -2,7 +2,7 @@
 
 pkgbase=imagemagick6
 pkgname=(libmagick6)
-pkgver=6.9.10.91
+pkgver=6.9.10.93
 pkgrel=1
 pkgdesc="An image viewing/manipulation program (version 6)"
 url="https://legacy.imagemagick.org/;
@@ -16,7 +16,7 @@
 _tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
 source=(https://www.imagemagick.org/download/$_tarname.tar.xz{,.asc}
 arch-fonts.diff)
-sha256sums=('43bb582c0343bc6de90d888e414f57af206d01d2b94ada7d358e9a032960aa86'
+sha256sums=('f3775a3a59bb6f8435516381cdd6ce506ff95ab1edc37a17b1248308f7776a92'
 'SKIP'
 'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
 validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae


[arch-commits] Commit in imagemagick6/repos/extra-x86_64 (4 files)

2020-02-16 Thread Jan Steffens via arch-commits
Date: Monday, February 17, 2020 @ 01:01:27
  Author: heftig
Revision: 375719

archrelease: copy trunk to extra-x86_64

Added:
  imagemagick6/repos/extra-x86_64/PKGBUILD
(from rev 375718, imagemagick6/trunk/PKGBUILD)
  imagemagick6/repos/extra-x86_64/arch-fonts.diff
(from rev 375718, imagemagick6/trunk/arch-fonts.diff)
Deleted:
  imagemagick6/repos/extra-x86_64/PKGBUILD
  imagemagick6/repos/extra-x86_64/arch-fonts.diff

-+
 PKGBUILD|  216 +++---
 arch-fonts.diff |  214 ++---
 2 files changed, 215 insertions(+), 215 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-17 01:01:16 UTC (rev 375718)
+++ PKGBUILD2020-02-17 01:01:27 UTC (rev 375719)
@@ -1,108 +0,0 @@
-# Maintainer: Eric Bélanger 
-
-pkgbase=imagemagick6
-pkgname=(libmagick6)
-pkgver=6.9.10.91
-pkgrel=1
-pkgdesc="An image viewing/manipulation program (version 6)"
-url="https://legacy.imagemagick.org/;
-arch=(x86_64)
-license=(custom)
-depends=(libltdl lcms2 fontconfig libxext liblqr libraqm libpng)
-makedepends=(ghostscript openexr libwmf librsvg libxml2 openjpeg2 libraw 
opencl-headers libwebp
- chrpath ocl-icd glu ghostpcl ghostxps libheif jbigkit)
-checkdepends=(gsfonts ttf-dejavu)
-_relname=ImageMagick-${pkgver%%.*}
-_tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
-source=(https://www.imagemagick.org/download/$_tarname.tar.xz{,.asc}
-arch-fonts.diff)
-sha256sums=('43bb582c0343bc6de90d888e414f57af206d01d2b94ada7d358e9a032960aa86'
-'SKIP'
-'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
-validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae
-
-prepare() {
-  mkdir -p binpkg/usr/lib/pkgconfig {binpkg,docpkg}/usr/share
-
-  cd $_tarname
-
-  # Fix up typemaps to match our packages, where possible
-  patch -Np1 -i ../arch-fonts.diff
-
-  # Don't run auto(re)conf; assumes use of git
-}
-
-build() {
-  cd $_tarname
-  ./configure \
-PKG_CONFIG="/usr/bin/env PKG_CONFIG_PATH=/usr/lib/$pkgbase/pkgconfig 
pkg-config" \
---prefix=/usr \
---sysconfdir=/etc \
---with-dejavu-font-dir=/usr/share/fonts/TTF \
---with-gs-font-dir=/usr/share/fonts/gsfonts \
-PSDelegate=/usr/bin/gs \
-XPSDelegate=/usr/bin/gxps \
-PCLDelegate=/usr/bin/gpcl6 \
---enable-hdri \
---enable-opencl \
---without-gslib \
---with-lqr \
---with-modules \
---with-openexr \
---with-openjp2 \
---with-perl \
---with-perl-options=INSTALLDIRS=vendor \
---with-rsvg \
---with-webp \
---with-wmf \
---with-xml \
---without-autotrace \
---without-djvu \
---without-dps \
---without-fftw \
---without-fpx \
---without-gcc-arch \
---without-gvc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() (
-  cd $_tarname
-  ulimit -n 4096
-  make check || :
-)
-
-package_libmagick6() {
-  pkgdesc="${pkgdesc/)/; library)}"
-  optdepends=('ghostscript: PS/PDF support'
-  'libheif: HEIF support'
-  'libraw: DNG support'
-  'librsvg: SVG support'
-  'libwebp: WEBP support'
-  'libwmf: WMF support'
-  'libxml2: Magick Scripting Language'
-  'ocl-icd: OpenCL support'
-  'openexr: OpenEXR support'
-  'openjpeg2: JPEG2000 support'
-  'pango: Text rendering')
-  
backup=(etc/$_relname/{coder,colors,delegates,log,magic,mime,policy,quantization-table,thresholds,type,type-{dejavu,ghostscript}}.xml)
-  options=('!docs' '!emptydirs' libtool)
-
-  cd $_tarname
-  make DESTDIR="$pkgdir" install pkgconfigdir="/usr/lib/$pkgbase/pkgconfig"
-
-  rm "$pkgdir"/etc/$_relname/type-{apple,urw-base35,windows}.xml
-  rm "$pkgdir"/usr/lib/*.la
-
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-
-# Drop tools
-  cd ../binpkg
-  mv "$pkgdir/usr/bin" usr/
-  mv "$pkgdir/usr/lib/perl5" usr/lib/
-  mv "$pkgdir/usr/share/man" usr/share/
-
-# Harden security policy https://bugs.archlinux.org/task/62785
-  sed -e '/<\/policymap>/i \ \ ' -i "$pkgdir"/etc/ImageMagick-6/policy.xml
-}

Copied: imagemagick6/repos/extra-x86_64/PKGBUILD (from rev 375718, 
imagemagick6/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-17 01:01:27 UTC (rev 375719)
@@ -0,0 +1,108 @@
+# Maintainer: Eric Bélanger 
+
+pkgbase=imagemagick6
+pkgname=(libmagick6)
+pkgver=6.9.10.93
+pkgrel=1
+pkgdesc="An image viewing/manipulation program (version 6)"
+url="https://legacy.imagemagick.org/;
+arch=(x86_64)
+license=(custom)
+depends=(libltdl lcms2 fontconfig libxext liblqr libraqm libpng)
+makedepends=(ghostscript openexr libwmf librsvg libxml2 openjpeg2 libraw 
opencl-headers libwebp
+ chrpath 

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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 01:00:33
  Author: felixonmars
Revision: 573835

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 01:00:15
  Author: felixonmars
Revision: 573834

upgpkg: haskell-turtle 1.5.16-15: rebuild with profunctors 5.5.2

Modified:
  haskell-turtle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:59:01 UTC (rev 573833)
+++ PKGBUILD2020-02-17 01:00:15 UTC (rev 573834)
@@ -4,7 +4,7 @@
 _hkgname=turtle
 pkgname=haskell-turtle
 pkgver=1.5.16
-pkgrel=14
+pkgrel=15
 pkgdesc="Shell programming, Haskell-style"
 url="https://github.com/Gabriel439/Haskell-Turtle-Library;
 license=('BSD')


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:59:01
  Author: felixonmars
Revision: 573833

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-haddock-library/repos/community-staging-x86_64/
  haskell-haddock-library/repos/community-staging-x86_64/PKGBUILD
(from rev 573832, haskell-haddock-library/trunk/PKGBUILD)

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

Copied: haskell-haddock-library/repos/community-staging-x86_64/PKGBUILD (from 
rev 573832, haskell-haddock-library/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 00:59:01 UTC (rev 573833)
@@ -0,0 +1,43 @@
+# Maintainer: Sergej Pupykin 
+
+_hkgname=haddock-library
+pkgname=haskell-haddock-library
+pkgver=1.8.0
+pkgrel=22
+pkgdesc="A documentation-generation tool for Haskell libraries"
+url="https://www.haskell.org/haddock/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-base-compat' 'haskell-hspec' 
'haskell-hspec-discover'
+ 'haskell-quickcheck' 'haskell-optparse-applicative' 
'haskell-tree-diff')
+source=("https://hackage.haskell.org/packages/archive/haddock-library/${pkgver}/haddock-library-${pkgver}.tar.gz;)
+sha512sums=('f84672b67dd4b18402efb8b40eb0e2cb912ecf894cfdedf61b0ada87392e63609cf1101d4fc793686cc4af354665661bf4dc902313bb466efee683a7c64bbe2b')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:58:46
  Author: felixonmars
Revision: 573832

upgpkg: haskell-haddock-library 1.8.0-22: rebuild with profunctors 5.5.2

Modified:
  haskell-haddock-library/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:57:35 UTC (rev 573831)
+++ PKGBUILD2020-02-17 00:58:46 UTC (rev 573832)
@@ -3,7 +3,7 @@
 _hkgname=haddock-library
 pkgname=haskell-haddock-library
 pkgver=1.8.0
-pkgrel=21
+pkgrel=22
 pkgdesc="A documentation-generation tool for Haskell libraries"
 url="https://www.haskell.org/haddock/;
 license=("BSD")


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:57:35
  Author: felixonmars
Revision: 573831

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-tree-diff/repos/community-staging-x86_64/
  haskell-tree-diff/repos/community-staging-x86_64/PKGBUILD
(from rev 573830, haskell-tree-diff/trunk/PKGBUILD)

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

Copied: haskell-tree-diff/repos/community-staging-x86_64/PKGBUILD (from rev 
573830, haskell-tree-diff/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 00:57:35 UTC (rev 573831)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=tree-diff
+pkgname=haskell-tree-diff
+pkgver=0.1
+pkgrel=54
+pkgdesc="Diffing of (expression) trees"
+url="https://github.com/phadej/tree-diff;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-base-compat' 'haskell-hashable' 'haskell-parsers' 
'haskell-quickcheck'
+ 'haskell-scientific' 'haskell-tagged' 'haskell-unordered-containers' 
'haskell-uuid-types'
+ 'haskell-vector')
+makedepends=('ghc' 'haskell-trifecta' 'haskell-tasty' 'haskell-tasty-golden'
+ 'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('a4ee703e4b6a18055c7749020863a9571af4620dbb7ea05903693c752e10e3ffa4fee8da0dacc0e4bbf92173e34c9070251881597ca1cd9f7c8ed365e840563c')
+
+prepare() {
+cd $_hkgname-$pkgver
+echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+sed -i -e 's/\^>=.*//' -e 's/&&.*//' -e '/bytestring-builder/d' 
$_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in linux-zen/trunk (config)

2020-02-16 Thread Jan Steffens via arch-commits
Date: Monday, February 17, 2020 @ 00:56:36
  Author: heftig
Revision: 375716

FS#65518: Enable SND_SOC_INTEL_SKYLAKE

Modified:
  linux-zen/trunk/config

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

Modified: config
===
--- config  2020-02-17 00:55:11 UTC (rev 375715)
+++ config  2020-02-17 00:56:36 UTC (rev 375716)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.5.1-zen1 Kernel Configuration
+# Linux/x86 5.5.4-zen1 Kernel Configuration
 #
 
 #
@@ -21,8 +21,8 @@
 #
 # General setup
 #
+# CONFIG_SCHED_MUQSS is not set
 CONFIG_ZEN_INTERACTIVE=y
-# CONFIG_SCHED_MUQSS is not set
 CONFIG_INIT_ENV_ARG_LIMIT=32
 # CONFIG_COMPILE_TEST is not set
 CONFIG_LOCALVERSION=""
@@ -6893,7 +6893,7 @@
 CONFIG_SND_SST_ATOM_HIFI2_PLATFORM=m
 CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI=m
 CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_ACPI=m
-# CONFIG_SND_SOC_INTEL_SKYLAKE is not set
+CONFIG_SND_SOC_INTEL_SKYLAKE=m
 CONFIG_SND_SOC_INTEL_SKL=m
 CONFIG_SND_SOC_INTEL_APL=m
 CONFIG_SND_SOC_INTEL_KBL=m


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:57:20
  Author: felixonmars
Revision: 573830

upgpkg: haskell-tree-diff 0.1-54: rebuild with profunctors 5.5.2

Modified:
  haskell-tree-diff/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:56:20 UTC (rev 573829)
+++ PKGBUILD2020-02-17 00:57:20 UTC (rev 573830)
@@ -3,7 +3,7 @@
 _hkgname=tree-diff
 pkgname=haskell-tree-diff
 pkgver=0.1
-pkgrel=53
+pkgrel=54
 pkgdesc="Diffing of (expression) trees"
 url="https://github.com/phadej/tree-diff;
 license=('BSD')


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:56:03
  Author: felixonmars
Revision: 573828

upgpkg: haskell-trifecta 2.1-15: rebuild with profunctors 5.5.2

Modified:
  haskell-trifecta/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:54:55 UTC (rev 573827)
+++ PKGBUILD2020-02-17 00:56:03 UTC (rev 573828)
@@ -4,7 +4,7 @@
 _hkgname=trifecta
 pkgname=haskell-trifecta
 pkgver=2.1
-pkgrel=14
+pkgrel=15
 pkgdesc="A modern parser combinator library with convenient diagnostics"
 url="https://github.com/ekmett/trifecta/;
 license=("BSD")


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:56:20
  Author: felixonmars
Revision: 573829

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-trifecta/repos/community-staging-x86_64/PKGBUILD (from rev 
573828, haskell-trifecta/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 00:56:20 UTC (rev 573829)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=trifecta
+pkgname=haskell-trifecta
+pkgver=2.1
+pkgrel=15
+pkgdesc="A modern parser combinator library with convenient diagnostics"
+url="https://github.com/ekmett/trifecta/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-ansi-terminal" "haskell-blaze-builder" 
"haskell-blaze-html"
+ "haskell-blaze-markup" "haskell-charset" "haskell-comonad" 
"haskell-fingertree"
+ "haskell-hashable" "haskell-lens" "haskell-parsers" 
'haskell-prettyprinter'
+ 'haskell-prettyprinter-ansi-terminal' "haskell-profunctors" 
"haskell-reducers"
+ "haskell-unordered-containers" "haskell-utf8-string")
+makedepends=('ghc' 'haskell-cabal-doctest' 'haskell-doctest' 
'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('0929ee4a3d9a53c211b13a711814b4b6ea488ad40f373befdc7e8a479b2a95c4e97a19381873af54d377ff2af49782677fa2ea892ea69522c242e245debd3a25')
+
+prepare() {
+sed -i -e '/semigroups/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-02-16 Thread Jan Steffens via arch-commits
Date: Monday, February 17, 2020 @ 00:57:01
  Author: heftig
Revision: 375717

sha256sums

Modified:
  linux-zen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:56:36 UTC (rev 375716)
+++ PKGBUILD2020-02-17 00:57:01 UTC (rev 375717)
@@ -25,7 +25,7 @@
   '8218F88849AAC522E94CF470A5E9288C4FA415FA'  # Jan Alexander Steffens (heftig)
 )
 sha256sums=('SKIP'
-'7a607333e6ec115cb3d1330bc9f9eaf01305fb9907b324e0c85b1458c0612286')
+'6d37347ff115a6edf9d9d2b14fbb5ae62664da1a693670a67198dc4cacf93df4')
 
 export KBUILD_BUILD_HOST=archlinux
 export KBUILD_BUILD_USER=$pkgbase


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

2020-02-16 Thread Jan Steffens via arch-commits
Date: Monday, February 17, 2020 @ 00:55:11
  Author: heftig
Revision: 375715

FS#65518: Enable SND_SOC_INTEL_SKYLAKE

Modified:
  linux/trunk/PKGBUILD
  linux/trunk/config

--+
 PKGBUILD |2 +-
 config   |4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-16 23:22:02 UTC (rev 375714)
+++ PKGBUILD2020-02-17 00:55:11 UTC (rev 375715)
@@ -25,7 +25,7 @@
   '8218F88849AAC522E94CF470A5E9288C4FA415FA'  # Jan Alexander Steffens (heftig)
 )
 sha256sums=('SKIP'
-'f40b1d707ee1199275a7ad0e456e67e39fba7bd41e9a3921af26e7fd1bf08a27')
+'d8ec5445fe03cd5e0cb95a8bcbdf4887a1649825b0a68b8ffd62dabe300ecb8f')
 
 export KBUILD_BUILD_HOST=archlinux
 export KBUILD_BUILD_USER=$pkgbase

Modified: config
===
--- config  2020-02-16 23:22:02 UTC (rev 375714)
+++ config  2020-02-17 00:55:11 UTC (rev 375715)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.5.1-arch1 Kernel Configuration
+# Linux/x86 5.5.4-arch1 Kernel Configuration
 #
 
 #
@@ -6858,7 +6858,7 @@
 CONFIG_SND_SST_ATOM_HIFI2_PLATFORM=m
 CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI=m
 CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_ACPI=m
-# CONFIG_SND_SOC_INTEL_SKYLAKE is not set
+CONFIG_SND_SOC_INTEL_SKYLAKE=m
 CONFIG_SND_SOC_INTEL_SKL=m
 CONFIG_SND_SOC_INTEL_APL=m
 CONFIG_SND_SOC_INTEL_KBL=m


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:54:37
  Author: felixonmars
Revision: 573826

upgpkg: haskell-hasql-transaction 0.7.2-52: rebuild with profunctors 5.5.2

Modified:
  haskell-hasql-transaction/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:53:36 UTC (rev 573825)
+++ PKGBUILD2020-02-17 00:54:37 UTC (rev 573826)
@@ -3,7 +3,7 @@
 _hkgname=hasql-transaction
 pkgname=haskell-hasql-transaction
 pkgver=0.7.2
-pkgrel=51
+pkgrel=52
 pkgdesc="A composable abstraction over the retryable transactions for Hasql"
 url="https://github.com/nikita-volkov/hasql-transaction;
 license=('MIT')


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:54:55
  Author: felixonmars
Revision: 573827

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hasql-transaction/repos/community-staging-x86_64/PKGBUILD (from 
rev 573826, haskell-hasql-transaction/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 00:54:55 UTC (rev 573827)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hasql-transaction
+pkgname=haskell-hasql-transaction
+pkgver=0.7.2
+pkgrel=52
+pkgdesc="A composable abstraction over the retryable transactions for Hasql"
+url="https://github.com/nikita-volkov/hasql-transaction;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-bytestring-tree-builder' 'haskell-contravariant'
+ 'haskell-contravariant-extras' 'haskell-hasql')
+makedepends=('ghc' 'haskell-async' 'haskell-rebase')
+checkdepends=('postgresql' 'pifpaf')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('630c03f362ad641ad07bfad543eff58f81acf7cb25c3dc050b51ea6939964ac0cf5e5d8748312733863cc500817fc7eb1915119cf164ef418abb73dd3e7cbd73')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/5432/9824/' conflicts-test/Main.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+
+eval $(pifpaf run postgresql --host 127.0.0.1)
+createuser -s postgres
+runhaskell Setup test
+pifpaf_stop
+}
+
+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-hasql-pool/repos (2 files)

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:53:36
  Author: felixonmars
Revision: 573825

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hasql-pool/repos/community-staging-x86_64/PKGBUILD (from rev 
573824, haskell-hasql-pool/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 00:53:36 UTC (rev 573825)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=hasql-pool
+pkgname=haskell-hasql-pool
+pkgver=0.5.1
+pkgrel=56
+pkgdesc="A pool of connections for Hasql"
+url="https://github.com/nikita-volkov/hasql-pool;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-prelude' 'haskell-hasql' 
'haskell-resource-pool')
+makedepends=('ghc' 'haskell-hspec')
+checkdepends=('pifpaf' 'postgresql')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('09f25a26f2317a0cdfa578ddb0ab23f6077c3e2849da2d4ecb72f2e1c63a57693b566269a2a01b5fb2bca8a3c85871ee6c24be715e9c9b810001447cee1c4a3e')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/5432/9824/' test/Main.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --disable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+
+eval $(pifpaf run postgresql --host 127.0.0.1)
+createuser -s postgres
+#runhaskell Setup test
+pifpaf_stop
+}
+
+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-hasql/trunk (PKGBUILD)

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:52:14
  Author: felixonmars
Revision: 573822

upgpkg: haskell-hasql 1.4.0.1-23: rebuild with profunctors 5.5.2

Modified:
  haskell-hasql/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:50:56 UTC (rev 573821)
+++ PKGBUILD2020-02-17 00:52:14 UTC (rev 573822)
@@ -4,7 +4,7 @@
 _hkgname=hasql
 pkgname=haskell-hasql
 pkgver=1.4.0.1
-pkgrel=22
+pkgrel=23
 pkgdesc="An efficient PostgreSQL driver and a flexible mapping API"
 url="https://github.com/nikita-volkov/hasql;
 license=('MIT')


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:52:30
  Author: felixonmars
Revision: 573823

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hasql/repos/community-staging-x86_64/PKGBUILD (from rev 573822, 
haskell-hasql/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 00:52:30 UTC (rev 573823)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=hasql
+pkgname=haskell-hasql
+pkgver=1.4.0.1
+pkgrel=23
+pkgdesc="An efficient PostgreSQL driver and a flexible mapping API"
+url="https://github.com/nikita-volkov/hasql;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base-prelude' 
'haskell-bytestring-strict-builder'
+ 'haskell-contravariant' 'haskell-contravariant-extras' 
'haskell-dlist' 'haskell-hashable'
+ 'haskell-hashtables' 'haskell-loch-th' 'haskell-placeholders' 
'haskell-postgresql-binary'
+ 'haskell-postgresql-libpq' 'haskell-profunctors' 
'haskell-text-builder' 'haskell-vector')
+makedepends=('ghc' 'haskell-bug' 'haskell-tasty' 'haskell-tasty-quickcheck' 
'haskell-tasty-hunit'
+ 'haskell-quickcheck-instances' 'haskell-quickcheck' 
'haskell-rebase' 'haskell-rerebase')
+checkdepends=('postgresql' 'pifpaf')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('14610775eae82558b2f5bd3a686f65ad8c8b9409be4d235a9e734a4581f3ad5cbabe79ad496f912e5257a49f07abaaad7585c5e85048adde6f176da72d9dc5e6')
+
+prepare() {
+cd $_hkgname-$pkgver
+# Do not use default postgres port
+sed -i 's/5432/9824/' tasty/Main/*.hs threads-test/*.hs profiling/*.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+
+eval $(pifpaf run postgresql --host 127.0.0.1)
+createuser -s postgres
+runhaskell Setup test
+pifpaf_stop
+}
+
+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-hasql-pool/trunk (PKGBUILD)

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:53:22
  Author: felixonmars
Revision: 573824

upgpkg: haskell-hasql-pool 0.5.1-56: rebuild with profunctors 5.5.2

Modified:
  haskell-hasql-pool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:52:30 UTC (rev 573823)
+++ PKGBUILD2020-02-17 00:53:22 UTC (rev 573824)
@@ -4,7 +4,7 @@
 _hkgname=hasql-pool
 pkgname=haskell-hasql-pool
 pkgver=0.5.1
-pkgrel=55
+pkgrel=56
 pkgdesc="A pool of connections for Hasql"
 url="https://github.com/nikita-volkov/hasql-pool;
 license=('MIT')


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:50:40
  Author: felixonmars
Revision: 573820

upgpkg: haskell-text-builder 0.6.6.1-16: rebuild with profunctors 5.5.2

Modified:
  haskell-text-builder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:49:52 UTC (rev 573819)
+++ PKGBUILD2020-02-17 00:50:40 UTC (rev 573820)
@@ -3,7 +3,7 @@
 _hkgname=text-builder
 pkgname=haskell-text-builder
 pkgver=0.6.6.1
-pkgrel=15
+pkgrel=16
 pkgdesc="An efficient strict text builder"
 url="https://github.com/nikita-volkov/text-builder;
 license=('MIT')


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:50:56
  Author: felixonmars
Revision: 573821

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-text-builder/repos/community-staging-x86_64/
  haskell-text-builder/repos/community-staging-x86_64/PKGBUILD
(from rev 573820, haskell-text-builder/trunk/PKGBUILD)

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

Copied: haskell-text-builder/repos/community-staging-x86_64/PKGBUILD (from rev 
573820, haskell-text-builder/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 00:50:56 UTC (rev 573821)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=text-builder
+pkgname=haskell-text-builder
+pkgver=0.6.6.1
+pkgrel=16
+pkgdesc="An efficient strict text builder"
+url="https://github.com/nikita-volkov/text-builder;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-prelude' 'haskell-deferred-folds')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-quickcheck-instances' 
'haskell-rerebase'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('c98381114426ca93b4f4bf6899265a0c62ee683080acf3896e6f6592cefc4a2df00460908755a55be8b33af7840ccd378e48c52f4379f8dd4bc3411928c5c067')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:49:52
  Author: felixonmars
Revision: 573819

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-tar-conduit/repos/community-staging-x86_64/
  haskell-tar-conduit/repos/community-staging-x86_64/PKGBUILD
(from rev 573818, haskell-tar-conduit/trunk/PKGBUILD)

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

Copied: haskell-tar-conduit/repos/community-staging-x86_64/PKGBUILD (from rev 
573818, haskell-tar-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 00:49:52 UTC (rev 573819)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+
+_hkgname=tar-conduit
+pkgname=haskell-tar-conduit
+pkgver=0.3.2
+pkgrel=51
+pkgdesc="Extract and create tar files using conduit for streaming"
+url="https://github.com/snoyberg/tar-conduit;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-conduit' 'haskell-safe-exceptions')
+makedepends=('ghc' 'haskell-conduit-extra' 'haskell-hspec' 
'haskell-quickcheck' 'haskell-weigh')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('18efa362953641092ee5b4f65b32a3337af077608487e02421cf6427209592654b3b2d15f9b21835f4596434b65aa9a1f80b9f3408050c09b57f6be5cd2c73f7')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/conduit-combinators/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:48:02
  Author: felixonmars
Revision: 573816

upgpkg: haskell-swagger2 2.4-3: rebuild with profunctors 5.5.2

Modified:
  haskell-swagger2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:46:34 UTC (rev 573815)
+++ PKGBUILD2020-02-17 00:48:02 UTC (rev 573816)
@@ -4,7 +4,7 @@
 _hkgname=swagger2
 pkgname=haskell-swagger2
 pkgver=2.4
-pkgrel=2
+pkgrel=3
 pkgdesc="Swagger 2.0 data model"
 url="https://github.com/GetShopTV/swagger2;
 license=("BSD")


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:49:35
  Author: felixonmars
Revision: 573818

upgpkg: haskell-tar-conduit 0.3.2-51: rebuild with profunctors 5.5.2

Modified:
  haskell-tar-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:48:26 UTC (rev 573817)
+++ PKGBUILD2020-02-17 00:49:35 UTC (rev 573818)
@@ -3,7 +3,7 @@
 _hkgname=tar-conduit
 pkgname=haskell-tar-conduit
 pkgver=0.3.2
-pkgrel=50
+pkgrel=51
 pkgdesc="Extract and create tar files using conduit for streaming"
 url="https://github.com/snoyberg/tar-conduit;
 license=('MIT')


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:48:26
  Author: felixonmars
Revision: 573817

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-swagger2/repos/community-staging-x86_64/
  haskell-swagger2/repos/community-staging-x86_64/PKGBUILD
(from rev 573816, haskell-swagger2/trunk/PKGBUILD)
  haskell-swagger2/repos/community-staging-x86_64/generics-sop-0.5.patch
(from rev 573816, haskell-swagger2/trunk/generics-sop-0.5.patch)

+
 PKGBUILD   |   54 +++
 generics-sop-0.5.patch |   59 +++
 2 files changed, 113 insertions(+)

Copied: haskell-swagger2/repos/community-staging-x86_64/PKGBUILD (from rev 
573816, haskell-swagger2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 00:48:26 UTC (rev 573817)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=swagger2
+pkgname=haskell-swagger2
+pkgver=2.4
+pkgrel=3
+pkgdesc="Swagger 2.0 data model"
+url="https://github.com/GetShopTV/swagger2;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-base-compat-batteries' 
'haskell-cookie'
+ 'haskell-hashable' 'haskell-generics-sop' 'haskell-http-media'
+ 'haskell-insert-ordered-containers' 'haskell-lens' 'haskell-network' 
'haskell-quickcheck'
+ 'haskell-scientific' 'haskell-transformers-compat' 
'haskell-unordered-containers'
+ 'haskell-vector' 'haskell-uuid-types')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit' 
'haskell-quickcheck-instances'
+ 'haskell-hspec-discover' 'haskell-doctest' 
'haskell-cabal-doctest' 'haskell-glob'
+ 'haskell-utf8-string')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('49608aa6d7e52629dc6e0ca811ad1847117bc5ee9af144e49ea8b5c2f23126c058aa749b70aa5f5f7205eeb382b8e5637974a716ca3f752e7eb66753fa22d42e')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e 's/< *0/<1/' -e 's/< *2/<3/' -e 's/< *4/<5/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-swagger2/repos/community-staging-x86_64/generics-sop-0.5.patch 
(from rev 573816, haskell-swagger2/trunk/generics-sop-0.5.patch)
===
--- community-staging-x86_64/generics-sop-0.5.patch 
(rev 0)
+++ community-staging-x86_64/generics-sop-0.5.patch 2020-02-17 00:48:26 UTC 
(rev 573817)
@@ -0,0 +1,59 @@
+commit 96420ab204b6079eef1331faecf80fa73476c206
+Author: Felix Yan 
+Date:   Fri May 17 03:19:47 2019 +0800
+
+Fix compatibility with generics-sop 0.5
+
+diff --git a/src/Data/Swagger/Internal/AesonUtils.hs 
b/src/Data/Swagger/Internal/AesonUtils.hs
+index c1280f0..c785e76 100644
+--- a/src/Data/Swagger/Internal/AesonUtils.hs
 b/src/Data/Swagger/Internal/AesonUtils.hs
+@@ -144,7 +144,11 @@ sopSwaggerGenericToJSON'
+ -> DatatypeInfo '[xs]
+ -> POP Maybe '[xs]
+ -> [Pair]
++#if MIN_VERSION_generics_sop(0,5,0)
++sopSwaggerGenericToJSON' opts (SOP (Z fields)) (ADT _ _ (Record _ fieldsInfo 
:* Nil) _) (POP (defs :* Nil)) =
++#else
+ sopSwaggerGenericToJSON' opts (SOP (Z fields)) (ADT _ _ (Record _ fieldsInfo 
:* Nil)) (POP (defs :* Nil)) =
++#endif
+ sopSwaggerGenericToJSON'' opts fields fieldsInfo defs
+ sopSwaggerGenericToJSON' _ _ _ _ = error "sopSwaggerGenericToJSON: 
unsupported type"
+ 
+@@ -220,7 +224,11 @@ sopSwaggerGenericParseJSON'
+ -> DatatypeInfo '[xs]
+ -> POP Maybe '[xs]
+ -> Parser (SOP I '[xs])
++#if MIN_VERSION_generics_sop(0,5,0)
++sopSwaggerGenericParseJSON' opts obj (ADT _ _ (Record _ fieldsInfo :* Nil) _) 
(POP (defs :* Nil)) =
++#else
+ sopSwaggerGenericParseJSON' opts obj (ADT _ _ (Record _ fieldsInfo :* Nil)) 
(POP 

[arch-commits] Commit in wine-staging/repos/multilib-x86_64 (8 files)

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:46:34
  Author: felixonmars
Revision: 573815

archrelease: copy trunk to multilib-x86_64

Added:
  wine-staging/repos/multilib-x86_64/30-win32-aliases.conf
(from rev 573814, wine-staging/trunk/30-win32-aliases.conf)
  wine-staging/repos/multilib-x86_64/PKGBUILD
(from rev 573814, wine-staging/trunk/PKGBUILD)
  wine-staging/repos/multilib-x86_64/wine-binfmt.conf
(from rev 573814, wine-staging/trunk/wine-binfmt.conf)
  wine-staging/repos/multilib-x86_64/wine.install
(from rev 573814, wine-staging/trunk/wine.install)
Deleted:
  wine-staging/repos/multilib-x86_64/30-win32-aliases.conf
  wine-staging/repos/multilib-x86_64/PKGBUILD
  wine-staging/repos/multilib-x86_64/wine-binfmt.conf
  wine-staging/repos/multilib-x86_64/wine.install

--+
 PKGBUILD |  382 ++---
 wine-binfmt.conf |4 
 wine.install |   14 -
 3 files changed, 200 insertions(+), 200 deletions(-)

Deleted: 30-win32-aliases.conf
===
(Binary files differ)

Copied: wine-staging/repos/multilib-x86_64/30-win32-aliases.conf (from rev 
573814, wine-staging/trunk/30-win32-aliases.conf)
===
(Binary files differ)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-17 00:46:08 UTC (rev 573814)
+++ PKGBUILD2020-02-17 00:46:34 UTC (rev 573815)
@@ -1,191 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine-staging
-pkgver=5.1
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=(https://dl.winehq.org/wine/source/5.x/wine-$_pkgbasever.tar.xz{,.sign}
-
"wine-staging-v$_pkgbasever.tar.gz::https://github.com/wine-staging/wine-staging/archive/v$_pkgbasever.tar.gz;
-30-win32-aliases.conf
-wine-binfmt.conf)
-sha512sums=('b842b533884f15a8fb71373258671d74aee997d9ed9ee0fb36f945cd2006b494f6cc6c91a8ca47e0ea5b0b39b108f2c4f155918823a7ddf3cd44b4e26ede9171'
-'SKIP'
-
'ebb9bf0a0a3c7f108fff8b32ca79124d1da410fbfb320ad3298f3d92fabeb9ca81de6a4fefac344948a70c49771ffa3f0dc30de2ee6d6f61d158ed87a206a14e'
-
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb'
-
'bdde7ae015d8a98ba55e84b86dc05aca1d4f8de85be7e4bd6187054bfe4ac83b5a20538945b63fb073caab78022141e9545685e4e3698c97ff173cf30859e285')
-validpgpkeys=(5AC1A08B03BD7A313E0A955AF5E6E9EEB9461DD7
-  DA23579A74D4AD9AF9D3F945CEFAC8EAAF17519D)
-
-pkgdesc="A compatibility layer for running Windows programs - Staging branch"
-url="https://www.wine-staging.com;
-arch=(x86_64)
-options=(staticlibs)
-license=(LGPL)
-
-depends=(
-  attr lib32-attr
-  fontconfig   lib32-fontconfig
-  lcms2lib32-lcms2
-  libxml2  lib32-libxml2
-  libxcursor   lib32-libxcursor
-  libxrandrlib32-libxrandr
-  libxdamage   lib32-libxdamage
-  libxilib32-libxi
-  gettext  lib32-gettext
-  freetype2lib32-freetype2
-  glu  lib32-glu
-  libsmlib32-libsm
-  gcc-libs lib32-gcc-libs
-  libpcap  lib32-libpcap
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex
-  'gcc>=4.5.0-2'
-  gifliblib32-giflib
-  libpnglib32-libpng
-  gnutlslib32-gnutls
-  libxinerama   lib32-libxinerama
-  libxcomposite lib32-libxcomposite
-  libxmulib32-libxmu
-  libxxf86vmlib32-libxxf86vm
-  libldap   lib32-libldap
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  alsa-lib  lib32-alsa-lib
-  libxcomposite lib32-libxcomposite
-  mesa  lib32-mesa
-  mesa-libgllib32-mesa-libgl
-  opencl-icd-loader lib32-opencl-icd-loader
-  libxslt   lib32-libxslt
-  libpulse  lib32-libpulse
-  libva lib32-libva
-  gtk3  lib32-gtk3
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  vulkan-icd-loader lib32-vulkan-icd-loader
-  sdl2  lib32-sdl2
-  vkd3d lib32-vkd3d
-  libcups   lib32-libcups
-  sane
-  libgphoto2
-  gsm
-  ffmpeg
-  samba
-  opencl-headers
-)
-
-optdepends=(
-  gifliblib32-giflib
-  libpnglib32-libpng
-  libldap   lib32-libldap
-  gnutlslib32-gnutls
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-plugins  lib32-alsa-plugins
-  alsa-lib 

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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:46:08
  Author: felixonmars
Revision: 573814

upgpkg: wine-staging 5.2-1

Modified:
  wine-staging/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:44:31 UTC (rev 573813)
+++ PKGBUILD2020-02-17 00:46:08 UTC (rev 573814)
@@ -5,7 +5,7 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=wine-staging
-pkgver=5.1
+pkgver=5.2
 pkgrel=1
 
 _pkgbasever=${pkgver/rc/-rc}
@@ -14,9 +14,9 @@
 
"wine-staging-v$_pkgbasever.tar.gz::https://github.com/wine-staging/wine-staging/archive/v$_pkgbasever.tar.gz;
 30-win32-aliases.conf
 wine-binfmt.conf)
-sha512sums=('b842b533884f15a8fb71373258671d74aee997d9ed9ee0fb36f945cd2006b494f6cc6c91a8ca47e0ea5b0b39b108f2c4f155918823a7ddf3cd44b4e26ede9171'
+sha512sums=('57fa66885c3b5f43e51324e24b8524f663ad67ff15b464ac7d58096d5921f523a59ef5f1dc1ea7aa65fa10d64b7cd832f421c1b773c72bc312d8544a61c33f8f'
 'SKIP'
-
'ebb9bf0a0a3c7f108fff8b32ca79124d1da410fbfb320ad3298f3d92fabeb9ca81de6a4fefac344948a70c49771ffa3f0dc30de2ee6d6f61d158ed87a206a14e'
+
'dd2066db1eb4d424579bdf8d25f476eae0b86a6bea7b1f7ff2a21d7bf0209b4ef00d9c0ed29a7cab50c5dea4684acb5d342ebf02554b16fd0938a03e607f6270'
 
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb'
 
'bdde7ae015d8a98ba55e84b86dc05aca1d4f8de85be7e4bd6187054bfe4ac83b5a20538945b63fb073caab78022141e9545685e4e3698c97ff173cf30859e285')
 validpgpkeys=(5AC1A08B03BD7A313E0A955AF5E6E9EEB9461DD7


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:44:15
  Author: felixonmars
Revision: 573812

upgpkg: haskell-store 0.7.2-7: rebuild with profunctors 5.5.2

Modified:
  haskell-store/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:42:10 UTC (rev 573811)
+++ PKGBUILD2020-02-17 00:44:15 UTC (rev 573812)
@@ -3,7 +3,7 @@
 _hkgname=store
 pkgname=haskell-store
 pkgver=0.7.2
-pkgrel=6
+pkgrel=7
 pkgdesc="Fast binary serialization"
 url="https://github.com/fpco/store;
 license=('BSD')


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:44:31
  Author: felixonmars
Revision: 573813

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-store/repos/community-staging-x86_64/PKGBUILD (from rev 573812, 
haskell-store/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 00:44:31 UTC (rev 573813)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+
+_hkgname=store
+pkgname=haskell-store
+pkgver=0.7.2
+pkgrel=7
+pkgdesc="Fast binary serialization"
+url="https://github.com/fpco/store;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-base-orphans' 
'haskell-base64-bytestring'
+ 'haskell-contravariant' 'haskell-cryptohash' 'haskell-free'
+ 'haskell-hashable' 'haskell-hspec' 'haskell-hspec-smallcheck' 
'haskell-lifted-base'
+ 'haskell-monad-control' 'haskell-mono-traversable' 'haskell-network' 
'haskell-primitive'
+ 'haskell-resourcet' 'haskell-safe' 'haskell-smallcheck'
+ 'haskell-store-core' 'haskell-syb' 'haskell-th-lift' 
'haskell-th-lift-instances'
+ 'haskell-th-orphans' 'haskell-th-reify-many' 'haskell-th-utilities'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-void')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('7b412179bdee4b6b57c5805d76fe4e7baeafcf8af33010e150a5b963f9289603848f4974399e81d435b537c4c61741cde5641ad90d3246ea80595e7f6d8f73a8')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e '/semigroups/d' -e '/fail/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-comparison-bench -f-small-bench
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_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-simple-sendfile/trunk (PKGBUILD)

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:41:52
  Author: felixonmars
Revision: 573810

upgpkg: haskell-simple-sendfile 0.2.30-33: rebuild with profunctors 5.5.2

Modified:
  haskell-simple-sendfile/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:41:45 UTC (rev 573809)
+++ PKGBUILD2020-02-17 00:41:52 UTC (rev 573810)
@@ -4,7 +4,7 @@
 _hkgname=simple-sendfile
 pkgname=haskell-simple-sendfile
 pkgver=0.2.30
-pkgrel=32
+pkgrel=33
 pkgdesc="Cross platform library for the sendfile system call"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("BSD")


[arch-commits] Commit in wine/repos/multilib-x86_64 (8 files)

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:41:45
  Author: felixonmars
Revision: 573809

archrelease: copy trunk to multilib-x86_64

Added:
  wine/repos/multilib-x86_64/30-win32-aliases.conf
(from rev 573808, wine/trunk/30-win32-aliases.conf)
  wine/repos/multilib-x86_64/PKGBUILD
(from rev 573808, wine/trunk/PKGBUILD)
  wine/repos/multilib-x86_64/wine-binfmt.conf
(from rev 573808, wine/trunk/wine-binfmt.conf)
  wine/repos/multilib-x86_64/wine.install
(from rev 573808, wine/trunk/wine.install)
Deleted:
  wine/repos/multilib-x86_64/30-win32-aliases.conf
  wine/repos/multilib-x86_64/PKGBUILD
  wine/repos/multilib-x86_64/wine-binfmt.conf
  wine/repos/multilib-x86_64/wine.install

---+
 30-win32-aliases.conf |   40 ++---
 PKGBUILD  |  352 
 wine-binfmt.conf  |4 
 wine.install  |   14 -
 4 files changed, 205 insertions(+), 205 deletions(-)

Deleted: 30-win32-aliases.conf
===
--- 30-win32-aliases.conf   2020-02-17 00:41:18 UTC (rev 573808)
+++ 30-win32-aliases.conf   2020-02-17 00:41:45 UTC (rev 573809)
@@ -1,20 +0,0 @@
-
-
-
-  
-MS Shell Dlg
-Microsoft Sans Serif
-sans-serif
-  
-  
-MS Shell Dlg 2
-Tahoma
-sans-serif
-  
-
-  
-MS Sans Serif
-Microsoft Sans Serif
-sans-serif
-  
-

Copied: wine/repos/multilib-x86_64/30-win32-aliases.conf (from rev 573808, 
wine/trunk/30-win32-aliases.conf)
===
--- 30-win32-aliases.conf   (rev 0)
+++ 30-win32-aliases.conf   2020-02-17 00:41:45 UTC (rev 573809)
@@ -0,0 +1,20 @@
+
+
+
+  
+MS Shell Dlg
+Microsoft Sans Serif
+sans-serif
+  
+  
+MS Shell Dlg 2
+Tahoma
+sans-serif
+  
+
+  
+MS Sans Serif
+Microsoft Sans Serif
+sans-serif
+  
+

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-17 00:41:18 UTC (rev 573808)
+++ PKGBUILD2020-02-17 00:41:45 UTC (rev 573809)
@@ -1,176 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine
-pkgver=5.1
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=(https://dl.winehq.org/wine/source/5.x/$pkgname-$_pkgbasever.tar.xz{,.sign}
-30-win32-aliases.conf
-wine-binfmt.conf)
-sha512sums=('b842b533884f15a8fb71373258671d74aee997d9ed9ee0fb36f945cd2006b494f6cc6c91a8ca47e0ea5b0b39b108f2c4f155918823a7ddf3cd44b4e26ede9171'
-'SKIP'
-
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb'
-
'bdde7ae015d8a98ba55e84b86dc05aca1d4f8de85be7e4bd6187054bfe4ac83b5a20538945b63fb073caab78022141e9545685e4e3698c97ff173cf30859e285')
-validpgpkeys=(5AC1A08B03BD7A313E0A955AF5E6E9EEB9461DD7
-  DA23579A74D4AD9AF9D3F945CEFAC8EAAF17519D)
-
-pkgdesc="A compatibility layer for running Windows programs"
-url="http://www.winehq.com;
-arch=(x86_64)
-options=(staticlibs)
-license=(LGPL)
-depends=(
-  fontconfig  lib32-fontconfig
-  lcms2   lib32-lcms2
-  libxml2 lib32-libxml2
-  libxcursor  lib32-libxcursor
-  libxrandr   lib32-libxrandr
-  libxdamage  lib32-libxdamage
-  libxi   lib32-libxi
-  gettext lib32-gettext
-  freetype2   lib32-freetype2
-  glu lib32-glu
-  libsm   lib32-libsm
-  gcc-libslib32-gcc-libs
-  libpcap lib32-libpcap
-  faudio  lib32-faudio
-  desktop-file-utils
-)
-makedepends=(autoconf ncurses bison perl fontforge flex
-  'gcc>=4.5.0-2'
-  gifliblib32-giflib
-  libpnglib32-libpng
-  gnutlslib32-gnutls
-  libxinerama   lib32-libxinerama
-  libxcomposite lib32-libxcomposite
-  libxmulib32-libxmu
-  libxxf86vmlib32-libxxf86vm
-  libldap   lib32-libldap
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-lib  lib32-alsa-lib
-  libxcomposite lib32-libxcomposite
-  mesa  lib32-mesa
-  mesa-libgllib32-mesa-libgl
-  opencl-icd-loader lib32-opencl-icd-loader
-  libxslt   lib32-libxslt
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  vulkan-icd-loader lib32-vulkan-icd-loader
-  vkd3d lib32-vkd3d
-  sdl2  lib32-sdl2
-  libcups   lib32-libcups
-  libgphoto2
-  sane
-  gsm
-  vulkan-headers
-  samba
-  opencl-headers
-)
-optdepends=(
-  gifliblib32-giflib
-  libpnglib32-libpng
-  libldap   lib32-libldap
-  gnutlslib32-gnutls
-  mpg123  

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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:42:10
  Author: felixonmars
Revision: 573811

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-simple-sendfile/repos/community-staging-x86_64/
  haskell-simple-sendfile/repos/community-staging-x86_64/PKGBUILD
(from rev 573810, haskell-simple-sendfile/trunk/PKGBUILD)

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

Copied: haskell-simple-sendfile/repos/community-staging-x86_64/PKGBUILD (from 
rev 573810, haskell-simple-sendfile/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 00:42:10 UTC (rev 573811)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=simple-sendfile
+pkgname=haskell-simple-sendfile
+pkgver=0.2.30
+pkgrel=33
+pkgdesc="Cross platform library for the sendfile system call"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-network')
+makedepends=('ghc' 'haskell-hunit' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-resourcet'
+ 'haskell-hspec')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('ae624939d54bf5ed8aa2c0727a29696730ba6b1d520f28bdc5b42a8e4c4bc03980821639fb8e16702a360dbd0396aea8a997055d22812bef3d22ffaaac53f759')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fallow-bsd
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:41:12
  Author: felixonmars
Revision: 573807

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:40:58
  Author: felixonmars
Revision: 573806

upgpkg: haskell-sandi 0.5-80: rebuild with profunctors 5.5.2

Modified:
  haskell-sandi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:40:13 UTC (rev 573805)
+++ PKGBUILD2020-02-17 00:40:58 UTC (rev 573806)
@@ -4,7 +4,7 @@
 _hkgname=sandi
 pkgname=haskell-sandi
 pkgver=0.5
-pkgrel=79
+pkgrel=80
 pkgdesc="Data encoding library"
 url="https://hackage.haskell.org/package/sandi;
 license=("BSD")


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:41:18
  Author: felixonmars
Revision: 573808

upgpkg: wine 5.2-1

Modified:
  wine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:41:12 UTC (rev 573807)
+++ PKGBUILD2020-02-17 00:41:18 UTC (rev 573808)
@@ -4,7 +4,7 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=wine
-pkgver=5.1
+pkgver=5.2
 pkgrel=1
 
 _pkgbasever=${pkgver/rc/-rc}
@@ -12,7 +12,7 @@
 
source=(https://dl.winehq.org/wine/source/5.x/$pkgname-$_pkgbasever.tar.xz{,.sign}
 30-win32-aliases.conf
 wine-binfmt.conf)
-sha512sums=('b842b533884f15a8fb71373258671d74aee997d9ed9ee0fb36f945cd2006b494f6cc6c91a8ca47e0ea5b0b39b108f2c4f155918823a7ddf3cd44b4e26ede9171'
+sha512sums=('57fa66885c3b5f43e51324e24b8524f663ad67ff15b464ac7d58096d5921f523a59ef5f1dc1ea7aa65fa10d64b7cd832f421c1b773c72bc312d8544a61c33f8f'
 'SKIP'
 
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb'
 
'bdde7ae015d8a98ba55e84b86dc05aca1d4f8de85be7e4bd6187054bfe4ac83b5a20538945b63fb073caab78022141e9545685e4e3698c97ff173cf30859e285')


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:39:21
  Author: felixonmars
Revision: 573803

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-safecopy/repos/community-staging-x86_64/PKGBUILD (from rev 
573802, haskell-safecopy/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 00:39:21 UTC (rev 573803)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+
+_hkgname=safecopy
+pkgname=haskell-safecopy
+pkgver=0.10.2
+pkgrel=14
+pkgdesc="Binary serialization with version control."
+url="http://acid-state.seize.it/safecopy;
+license=('custom:PublicDomain')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-cereal' 'haskell-generic-data' 'haskell-old-time' 
'haskell-vector')
+makedepends=('ghc' 'haskell-hunit' 'haskell-lens' 'haskell-lens-action' 
'haskell-quickcheck'
+ 'haskell-quickcheck-instances' 'haskell-tasty' 
'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('d92754d96372a2f617cca551b1b4979ce971e3cf87292dd7255fd7c1c31f8ca6c55c948524e683da92183a2ecb60dbe8c1928f711a16d82f85dd830e805061aa')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+}


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:40:13
  Author: felixonmars
Revision: 573805

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-ixset-typed/repos/community-staging-x86_64/
  haskell-ixset-typed/repos/community-staging-x86_64/PKGBUILD
(from rev 573804, haskell-ixset-typed/trunk/PKGBUILD)

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

Copied: haskell-ixset-typed/repos/community-staging-x86_64/PKGBUILD (from rev 
573804, haskell-ixset-typed/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 00:40:13 UTC (rev 573805)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+
+_hkgname=ixset-typed
+pkgname=haskell-ixset-typed
+pkgver=0.4.0.1
+pkgrel=54
+pkgdesc="Efficient relational queries on Haskell sets"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-safecopy' 'haskell-syb')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz
+ghc-8.8.patch::https://github.com/well-typed/ixset-typed/pull/13.patch)
+sha512sums=('48ed1cc65b7bc3522eab71727f3e11052c29cbb1eef4f7c043fd6c3fc43547909390cb36f823e109a15a136242f3e780f66f76ede29c2a7bc39f9bdf6c51ecd6'
+
'a4eb22e9abcf6b9c5b0d82d1826d861910e19c504af8e3e1ec0ab94b8c259df851ff56dcf8a41539e2df1fa9e97cf272df65e1bca354966e55484b3043a65818')
+
+prepare() {
+cd $_hkgname-$pkgver
+# Ignore change in .travis.yml
+patch -p1 -i ../ghc-8.8.patch || :
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "COPYING" 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING"
+}


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:39:58
  Author: felixonmars
Revision: 573804

upgpkg: haskell-ixset-typed 0.4.0.1-54: rebuild with profunctors 5.5.2

Modified:
  haskell-ixset-typed/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:39:21 UTC (rev 573803)
+++ PKGBUILD2020-02-17 00:39:58 UTC (rev 573804)
@@ -3,7 +3,7 @@
 _hkgname=ixset-typed
 pkgname=haskell-ixset-typed
 pkgver=0.4.0.1
-pkgrel=53
+pkgrel=54
 pkgdesc="Efficient relational queries on Haskell sets"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=('BSD')


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:39:07
  Author: felixonmars
Revision: 573802

upgpkg: haskell-safecopy 0.10.2-14: rebuild with profunctors 5.5.2

Modified:
  haskell-safecopy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:38:01 UTC (rev 573801)
+++ PKGBUILD2020-02-17 00:39:07 UTC (rev 573802)
@@ -3,7 +3,7 @@
 _hkgname=safecopy
 pkgname=haskell-safecopy
 pkgver=0.10.2
-pkgrel=13
+pkgrel=14
 pkgdesc="Binary serialization with version control."
 url="http://acid-state.seize.it/safecopy;
 license=('custom:PublicDomain')


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:38:01
  Author: felixonmars
Revision: 573801

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-rio-orphans/repos/community-staging-x86_64/
  haskell-rio-orphans/repos/community-staging-x86_64/PKGBUILD
(from rev 573800, haskell-rio-orphans/trunk/PKGBUILD)

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

Copied: haskell-rio-orphans/repos/community-staging-x86_64/PKGBUILD (from rev 
573800, haskell-rio-orphans/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 00:38:01 UTC (rev 573801)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=rio-orphans
+pkgname=haskell-rio-orphans
+pkgver=0.1.1.0
+pkgrel=68
+pkgdesc="Orphan instances for the RIO type in the rio package"
+url="https://github.com/commercialhaskell/rio;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-exceptions' 'haskell-fast-logger' 
'haskell-monad-control'
+ 'haskell-monad-logger' 'haskell-resourcet' 'haskell-rio' 
'haskell-transformers-base')
+makedepends=('ghc' 'haskell-hspec')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('2e415ebcc7341cf1c913de54de3218ac487e310c9556d1e1bdb349f4e7b9d041ea729c21e2bfdbcded9a214c84f483e32839a4fec87b2af9b986db5aaa18b42a')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:37:46
  Author: felixonmars
Revision: 573800

upgpkg: haskell-rio-orphans 0.1.1.0-68: rebuild with profunctors 5.5.2

Modified:
  haskell-rio-orphans/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:37:34 UTC (rev 573799)
+++ PKGBUILD2020-02-17 00:37:46 UTC (rev 573800)
@@ -3,7 +3,7 @@
 _hkgname=rio-orphans
 pkgname=haskell-rio-orphans
 pkgver=0.1.1.0
-pkgrel=67
+pkgrel=68
 pkgdesc="Orphan instances for the RIO type in the rio package"
 url="https://github.com/commercialhaskell/rio;
 license=('MIT')


[arch-commits] Commit in firefox-adblock-plus/trunk (PKGBUILD)

2020-02-16 Thread Eli Schwartz via arch-commits
Date: Monday, February 17, 2020 @ 00:37:17
  Author: eschwartz
Revision: 573798

upgpkg: firefox-adblock-plus 3.8-1: upstream release

Modified:
  firefox-adblock-plus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:36:45 UTC (rev 573797)
+++ PKGBUILD2020-02-17 00:37:17 UTC (rev 573798)
@@ -2,9 +2,9 @@
 # Maintainer: Eli Schwartz 
 
 pkgname=firefox-adblock-plus
-pkgver=3.7
+pkgver=3.8
 pkgrel=1
-_file=3429671
+_file=3504291
 pkgdesc="Extension for firefox which block ads and banners"
 arch=('any')
 url="https://adblockplus.org/;
@@ -13,7 +13,7 @@
 # https://addons.mozilla.org/en-US/firefox/addon/adblock-plus/versions/
 
source=("https://addons.mozilla.org/firefox/downloads/file/${_file}/adblock-plus-${pkgver}.xpi;)
 noextract=("adblock-plus-$pkgver.xpi")
-sha256sums=('05fb79b13702277b7c5ab778ba572fc3a7d38c0eb6d0b24dd3f2a39f4bb78519')
+sha256sums=('1cc19ff4564fd944e896b4297bb7c214ac23978685a1851865913e78de409cdf')
 
 package() {
   depends=("firefox")


[arch-commits] Commit in firefox-adblock-plus/repos/community-any (PKGBUILD PKGBUILD)

2020-02-16 Thread Eli Schwartz via arch-commits
Date: Monday, February 17, 2020 @ 00:37:34
  Author: eschwartz
Revision: 573799

archrelease: copy trunk to community-any

Added:
  firefox-adblock-plus/repos/community-any/PKGBUILD
(from rev 573798, firefox-adblock-plus/trunk/PKGBUILD)
Deleted:
  firefox-adblock-plus/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-17 00:37:17 UTC (rev 573798)
+++ PKGBUILD2020-02-17 00:37:34 UTC (rev 573799)
@@ -1,24 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Eli Schwartz 
-
-pkgname=firefox-adblock-plus
-pkgver=3.7
-pkgrel=1
-_file=3429671
-pkgdesc="Extension for firefox which block ads and banners"
-arch=('any')
-url="https://adblockplus.org/;
-license=('GPL3')
-groups=('firefox-addons')
-# https://addons.mozilla.org/en-US/firefox/addon/adblock-plus/versions/
-source=("https://addons.mozilla.org/firefox/downloads/file/${_file}/adblock-plus-${pkgver}.xpi;)
-noextract=("adblock-plus-$pkgver.xpi")
-sha256sums=('05fb79b13702277b7c5ab778ba572fc3a7d38c0eb6d0b24dd3f2a39f4bb78519')
-
-package() {
-  depends=("firefox")
-
-  _extension_id="{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}"
-  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
-  install -Dm644 "${srcdir}"/adblock-plus-${pkgver}.xpi 
"${_extension_dest}.xpi"
-}

Copied: firefox-adblock-plus/repos/community-any/PKGBUILD (from rev 573798, 
firefox-adblock-plus/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-17 00:37:34 UTC (rev 573799)
@@ -0,0 +1,24 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Eli Schwartz 
+
+pkgname=firefox-adblock-plus
+pkgver=3.8
+pkgrel=1
+_file=3504291
+pkgdesc="Extension for firefox which block ads and banners"
+arch=('any')
+url="https://adblockplus.org/;
+license=('GPL3')
+groups=('firefox-addons')
+# https://addons.mozilla.org/en-US/firefox/addon/adblock-plus/versions/
+source=("https://addons.mozilla.org/firefox/downloads/file/${_file}/adblock-plus-${pkgver}.xpi;)
+noextract=("adblock-plus-$pkgver.xpi")
+sha256sums=('1cc19ff4564fd944e896b4297bb7c214ac23978685a1851865913e78de409cdf')
+
+package() {
+  depends=("firefox")
+
+  _extension_id="{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}"
+  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
+  install -Dm644 "${srcdir}"/adblock-plus-${pkgver}.xpi 
"${_extension_dest}.xpi"
+}


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:36:45
  Author: felixonmars
Revision: 573797

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-postgresql-binary/repos/community-staging-x86_64/PKGBUILD (from 
rev 573796, haskell-postgresql-binary/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 00:36:45 UTC (rev 573797)
@@ -0,0 +1,59 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=postgresql-binary
+pkgname=haskell-postgresql-binary
+pkgver=0.12.2
+pkgrel=14
+pkgdesc="Encoders and decoders for the PostgreSQL's binary format"
+url="https://github.com/nikita-volkov/postgresql-binary;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-base-prelude' 
'haskell-binary-parser'
+ 'haskell-bytestring-strict-builder' 'haskell-loch-th' 
'haskell-network-ip'
+ 'haskell-placeholders' 'haskell-scientific' 
'haskell-unordered-containers'
+ 'haskell-uuid' 'haskell-vector')
+makedepends=('ghc' 'haskell-postgresql-libpq' 'haskell-tasty' 
'haskell-tasty-quickcheck'
+ 'haskell-tasty-hunit' 'haskell-quickcheck' 
'haskell-quickcheck-instances'
+ 'haskell-json-ast' 'haskell-conversion' 
'haskell-conversion-bytestring'
+ 'haskell-conversion-text' 'haskell-rerebase' 'pifpaf' 
'postgresql')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('f4876c89d8b19ea7e39d6e6dfe41c972de3aa072b7f6550bb8b650f6aedccd24526f8385cca770c11f8212d02c00ec07eedfa64f92c1250c90102d7743637c8b')
+
+prepare() {
+cd $_hkgname-$pkgver
+# Do not use default postgres port
+sed -i 's/5432/9824/' tasty/Main/DB.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+
+eval $(pifpaf run postgresql --host 127.0.0.1)
+createuser -s postgres
+runhaskell Setup test
+pifpaf_stop
+}
+
+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-postgresql-binary/trunk (PKGBUILD)

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:36:31
  Author: felixonmars
Revision: 573796

upgpkg: haskell-postgresql-binary 0.12.2-14: rebuild with profunctors 5.5.2

Modified:
  haskell-postgresql-binary/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:34:43 UTC (rev 573795)
+++ PKGBUILD2020-02-17 00:36:31 UTC (rev 573796)
@@ -4,7 +4,7 @@
 _hkgname=postgresql-binary
 pkgname=haskell-postgresql-binary
 pkgver=0.12.2
-pkgrel=13
+pkgrel=14
 pkgdesc="Encoders and decoders for the PostgreSQL's binary format"
 url="https://github.com/nikita-volkov/postgresql-binary;
 license=("MIT")


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:34:43
  Author: felixonmars
Revision: 573795

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-deferred-folds/repos/community-staging-x86_64/
  haskell-deferred-folds/repos/community-staging-x86_64/PKGBUILD
(from rev 573794, haskell-deferred-folds/trunk/PKGBUILD)

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

Copied: haskell-deferred-folds/repos/community-staging-x86_64/PKGBUILD (from 
rev 573794, haskell-deferred-folds/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 00:34:43 UTC (rev 573795)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+
+_hkgname=deferred-folds
+pkgname=haskell-deferred-folds
+pkgver=0.9.10.1
+pkgrel=55
+pkgdesc="Abstractions over deferred folds"
+url="https://github.com/metrix-ai/deferred-folds;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-foldl' 'haskell-hashable' 'haskell-primitive'
+ 'haskell-unordered-containers' 'haskell-vector')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-quickcheck-instances' 
'haskell-rerebase'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('920f26c8c1c02642d490220a19c1671d4060149dc1a48bb6a16f6be682342f355835ae55724fc680478d348c8be8347a0eec14666824c0f1651de1f07c23e4ca')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:34:28
  Author: felixonmars
Revision: 573794

upgpkg: haskell-deferred-folds 0.9.10.1-55: rebuild with profunctors 5.5.2

Modified:
  haskell-deferred-folds/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:32:55 UTC (rev 573793)
+++ PKGBUILD2020-02-17 00:34:28 UTC (rev 573794)
@@ -3,7 +3,7 @@
 _hkgname=deferred-folds
 pkgname=haskell-deferred-folds
 pkgver=0.9.10.1
-pkgrel=54
+pkgrel=55
 pkgdesc="Abstractions over deferred folds"
 url="https://github.com/metrix-ai/deferred-folds;
 license=('MIT')


[arch-commits] Commit in haskell-bytestring-strict-builder/repos (2 files)

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:32:55
  Author: felixonmars
Revision: 573793

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-bytestring-strict-builder/repos/community-staging-x86_64/
  haskell-bytestring-strict-builder/repos/community-staging-x86_64/PKGBUILD
(from rev 573792, haskell-bytestring-strict-builder/trunk/PKGBUILD)

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

Copied: 
haskell-bytestring-strict-builder/repos/community-staging-x86_64/PKGBUILD (from 
rev 573792, haskell-bytestring-strict-builder/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 00:32:55 UTC (rev 573793)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+
+_hkgname=bytestring-strict-builder
+pkgname=haskell-bytestring-strict-builder
+pkgver=0.4.5.3
+pkgrel=48
+pkgdesc="An efficient strict bytestring builder"
+url="https://github.com/nikita-volkov/bytestring-strict-builder;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-prelude')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 
'haskell-tasty-quickcheck'
+ 'haskell-tasty-hunit' 'haskell-quickcheck-instances' 
'haskell-rerebase')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('3527960d2c6db8acfb9273130d169558f769826c9f7c68dfd04c22d1172700dd42eef6c81dae8e8ee1ba93ca471ef7a3572da4d155eeaa9f44b065412537fda8')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -e '/semigroups/d' -i $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in haskell-bytestring-strict-builder/trunk (PKGBUILD)

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:32:37
  Author: felixonmars
Revision: 573792

upgpkg: haskell-bytestring-strict-builder 0.4.5.3-48: rebuild with profunctors 
5.5.2

Modified:
  haskell-bytestring-strict-builder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:31:53 UTC (rev 573791)
+++ PKGBUILD2020-02-17 00:32:37 UTC (rev 573792)
@@ -3,7 +3,7 @@
 _hkgname=bytestring-strict-builder
 pkgname=haskell-bytestring-strict-builder
 pkgver=0.4.5.3
-pkgrel=47
+pkgrel=48
 pkgdesc="An efficient strict bytestring builder"
 url="https://github.com/nikita-volkov/bytestring-strict-builder;
 license=('MIT')


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:31:38
  Author: felixonmars
Revision: 573790

upgpkg: haskell-rerebase 1.4.1-26: rebuild with profunctors 5.5.2

Modified:
  haskell-rerebase/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:30:50 UTC (rev 573789)
+++ PKGBUILD2020-02-17 00:31:38 UTC (rev 573790)
@@ -4,7 +4,7 @@
 _hkgname=rerebase
 pkgname=haskell-rerebase
 pkgver=1.4.1
-pkgrel=25
+pkgrel=26
 pkgdesc='Reexports from "base" with a bunch of other standard libraries'
 url="https://github.com/nikita-volkov/rerebase;
 license=("MIT")


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:31:53
  Author: felixonmars
Revision: 573791

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-rerebase/repos/community-staging-x86_64/PKGBUILD (from rev 
573790, haskell-rerebase/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 00:31:53 UTC (rev 573791)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=rerebase
+pkgname=haskell-rerebase
+pkgver=1.4.1
+pkgrel=26
+pkgdesc='Reexports from "base" with a bunch of other standard libraries'
+url="https://github.com/nikita-volkov/rerebase;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-rebase')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('102e88858f46d57a59c830a32f6bbd1644b5c36b7addf591b296ae5f1b7bc0d225d6ba6996d518dc0e67858b10863fcd561cdec0294fd798cb71cd3b8dd34c32')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/==1/>=1/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:30:50
  Author: felixonmars
Revision: 573789

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-rebase/repos/community-staging-x86_64/PKGBUILD (from rev 
573788, haskell-rebase/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 00:30:50 UTC (rev 573789)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=rebase
+pkgname=haskell-rebase
+pkgver=1.4.1
+pkgrel=26
+pkgdesc='A more progressive alternative to the "base" package'
+url="https://github.com/nikita-volkov/rebase;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-prelude' 'haskell-bifunctors' 
'haskell-contravariant'
+ 'haskell-contravariant-extras' 'haskell-comonad' 'haskell-dlist' 
'haskell-either'
+ 'haskell-hashable' 'haskell-profunctors' 'haskell-scientific' 
'haskell-selective'
+ 'haskell-semigroupoids' 'haskell-unordered-containers' 'haskell-uuid' 
'haskell-vector'
+ 'haskell-void')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('70bb6513e6ea6a1cd3adf077fe454cf4f1a3b220224fc76e3d63050f17c22cc2d218efa8803f269a3605cb0b95e7ea11b3e8b55ec80cd7fb2db4dbf330739a18')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -e '/fail/d' -e '/semigroups/d' -i $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:30:35
  Author: felixonmars
Revision: 573788

upgpkg: haskell-rebase 1.4.1-26: rebuild with profunctors 5.5.2

Modified:
  haskell-rebase/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:29:49 UTC (rev 573787)
+++ PKGBUILD2020-02-17 00:30:35 UTC (rev 573788)
@@ -4,7 +4,7 @@
 _hkgname=rebase
 pkgname=haskell-rebase
 pkgver=1.4.1
-pkgrel=25
+pkgrel=26
 pkgdesc='A more progressive alternative to the "base" package'
 url="https://github.com/nikita-volkov/rebase;
 license=("MIT")


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:29:49
  Author: felixonmars
Revision: 573787

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-project-template/repos/community-staging-x86_64/
  haskell-project-template/repos/community-staging-x86_64/PKGBUILD
(from rev 573786, haskell-project-template/trunk/PKGBUILD)

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

Copied: haskell-project-template/repos/community-staging-x86_64/PKGBUILD (from 
rev 573786, haskell-project-template/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 00:29:49 UTC (rev 573787)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=project-template
+pkgname=haskell-project-template
+pkgver=0.2.0.1
+pkgrel=204
+pkgdesc="Specify Haskell project templates and generate files"
+url="https://github.com/fpco/haskell-ide;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base64-bytestring' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-resourcet')
+makedepends=('ghc' 'haskell-hspec' 'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('bc5824086ba8dfaff4ff64c5115d37ea5e496d7692f1120b11c2a878e522119d362c7d119ccf7b9cc064c58f9ce6382b5e24a69cdac5ac5d683c4d616e2c66ea')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:29:34
  Author: felixonmars
Revision: 573786

upgpkg: haskell-project-template 0.2.0.1-204: rebuild with profunctors 5.5.2

Modified:
  haskell-project-template/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:28:55 UTC (rev 573785)
+++ PKGBUILD2020-02-17 00:29:34 UTC (rev 573786)
@@ -4,7 +4,7 @@
 _hkgname=project-template
 pkgname=haskell-project-template
 pkgver=0.2.0.1
-pkgrel=203
+pkgrel=204
 pkgdesc="Specify Haskell project templates and generate files"
 url="https://github.com/fpco/haskell-ide;
 license=("BSD")


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:28:55
  Author: felixonmars
Revision: 573785

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-pointed/repos/community-staging-x86_64/PKGBUILD (from rev 
573784, haskell-pointed/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 00:28:55 UTC (rev 573785)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pointed
+pkgname=haskell-pointed
+pkgver=5.0.1
+pkgrel=131
+pkgdesc="Pointed and copointed data"
+url="https://github.com/ekmett/pointed/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-comonad' 'haskell-data-default-class' 
'haskell-hashable'
+ 'haskell-kan-extensions' 'haskell-semigroupoids' 'haskell-tagged'
+ 'haskell-transformers-compat' 'haskell-unordered-containers')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('65958628c983a2c2866b1a1a615c7a7f2f516068c667ce9b93f4214b863632b40eba4915d49e07388c52ced8868bb308b24e7b38a6f50563c68954696748c99b')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e '/semigroups/d' -e 's/< *0.6/<1/' -e 's/< *2.5/<3/' 
$_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcomonad -fcontainers -fkan-extensions -fsemigroupoids 
-fsemigroups \
+-fstm -ftagged -ftransformers -funordered-containers
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:28:39
  Author: felixonmars
Revision: 573784

upgpkg: haskell-pointed 5.0.1-131: rebuild with profunctors 5.5.2

Modified:
  haskell-pointed/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-17 00:28:00 UTC (rev 573783)
+++ PKGBUILD2020-02-17 00:28:39 UTC (rev 573784)
@@ -4,7 +4,7 @@
 _hkgname=pointed
 pkgname=haskell-pointed
 pkgver=5.0.1
-pkgrel=130
+pkgrel=131
 pkgdesc="Pointed and copointed data"
 url="https://github.com/ekmett/pointed/;
 license=("BSD")


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

2020-02-16 Thread Felix Yan via arch-commits
Date: Monday, February 17, 2020 @ 00:28:00
  Author: felixonmars
Revision: 573783

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-persistent-qq/repos/community-staging-x86_64/
  haskell-persistent-qq/repos/community-staging-x86_64/PKGBUILD
(from rev 573782, haskell-persistent-qq/trunk/PKGBUILD)

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

Copied: haskell-persistent-qq/repos/community-staging-x86_64/PKGBUILD (from rev 
573782, haskell-persistent-qq/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-02-17 00:28:00 UTC (rev 573783)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+
+_hkgname=persistent-qq
+pkgname=haskell-persistent-qq
+pkgver=2.9.1.1
+pkgrel=16
+pkgdesc="Provides a quasi-quoter for raw SQL for persistent"
+url="https://github.com/yesod-web/persistent;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-src-meta' 'haskell-persistent')
+makedepends=('ghc' 'haskell-aeson' 'haskell-fast-logger' 'haskell-hspec' 
'haskell-hunit'
+ 'haskell-monad-logger' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
+ 'haskell-resourcet' 'haskell-unliftio')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('3fbdaefe6b5304ca8076b7dae3eab0ac08d624da1e595fcb29e24c2dfae1af376855b67802f0badb5f0b812c9dcda7cbc6e0b6cd26da618b6fe378866a39cd5f')
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


  1   2   3   4   5   6   7   8   9   10   >