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

2019-09-27 Thread Chih-Hsuan Yen via arch-commits
Date: Saturday, September 28, 2019 @ 05:56:10
  Author: yan12125
Revision: 511956

upgpkg: nextcloud-client 2.6.0-1

* Add comments for features not implemented
* Add check()
* Minor changes

Modified:
  nextcloud-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 22:54:37 UTC (rev 511955)
+++ PKGBUILD2019-09-28 05:56:10 UTC (rev 511956)
@@ -3,15 +3,15 @@
 # Contributor: Konstantin Shalygin 
 
 pkgname=nextcloud-client
-pkgver=2.5.3
-_commit=477614b8c954836327eb136be1c035627f09760b
-pkgrel=2
+pkgver=2.6.0
+_commit=e0b32c19e4dd641f4edf74fc3fbdba3d86ca9784
+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)
-makedepends=(doxygen extra-cmake-modules kio python-sphinx qt5-tools git)
+makedepends=(doxygen extra-cmake-modules kio python-sphinx qt5-tools git 
cmocka)
 optdepends=(
   'kio: integration with Dolphin'
   'nemo-python: integration with Nemo'
@@ -19,30 +19,47 @@
   'python2-caja: integration with Caja'
 )
 
source=("$pkgname::git+https://github.com/nextcloud/desktop.git?signed#commit=$_commit";)
-# one of keys controlled by @camilasan; see 
https://api.github.com/users/camilasan/gpg_keys
-validpgpkeys=(A26B951528EA1BA1678C7AE5D406C75CEE1A36D6)
+validpgpkeys=(
+  A26B951528EA1BA1678C7AE5D406C75CEE1A36D6  # one of keys controlled by 
github.com/camilasan
+)
 sha256sums=('SKIP')
 backup=('etc/Nextcloud/sync-exclude.lst')
 
 prepare() {
-  cd $pkgname
+  # tmpdir for check()
+  mkdir tmpdir $pkgname/build
 
-  mkdir -p 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
 }
 
 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 \
--DCMAKE_INSTALL_LIBDIR=lib \
 -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
 


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

2019-09-27 Thread Chih-Hsuan Yen via arch-commits
Date: Saturday, September 28, 2019 @ 05:56:26
  Author: yan12125
Revision: 511957

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 511956, nextcloud-client/trunk/PKGBUILD)

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

Copied: nextcloud-client/repos/community-testing-x86_64/PKGBUILD (from rev 
511956, nextcloud-client/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2019-09-28 05:56:26 UTC (rev 511957)
@@ -0,0 +1,67 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: Tyler Dence 
+# Contributor: Konstantin Shalygin 
+
+pkgname=nextcloud-client
+pkgver=2.6.0
+_commit=e0b32c19e4dd641f4edf74fc3fbdba3d86ca9784
+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)
+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";)
+validpgpkeys=(
+  A26B951528EA1BA1678C7AE5D406C75CEE1A36D6  # one of keys controlled by 
github.com/camilasan
+)
+sha256sums=('SKIP')
+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
+}
+
+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
+}


[arch-commits] Commit in riot/repos/community-any (6 files)

2019-09-27 Thread Bruno Pagani via arch-commits
Date: Friday, September 27, 2019 @ 22:54:37
  Author: archange
Revision: 511955

archrelease: copy trunk to community-any

Added:
  riot/repos/community-any/PKGBUILD
(from rev 511954, riot/trunk/PKGBUILD)
  riot/repos/community-any/riot-desktop.sh
(from rev 511954, riot/trunk/riot-desktop.sh)
  riot/repos/community-any/riot.desktop
(from rev 511954, riot/trunk/riot.desktop)
Deleted:
  riot/repos/community-any/PKGBUILD
  riot/repos/community-any/riot-desktop.sh
  riot/repos/community-any/riot.desktop

-+
 PKGBUILD|  156 +++---
 riot-desktop.sh |6 +-
 riot.desktop|   18 +++---
 3 files changed, 90 insertions(+), 90 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 22:54:16 UTC (rev 511954)
+++ PKGBUILD2019-09-27 22:54:37 UTC (rev 511955)
@@ -1,78 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: Luca Weiss 
-
-pkgbase=riot
-pkgname=('riot-desktop' 'riot-web')
-pkgver=1.3.6
-pkgrel=1
-pkgdesc="A glossy Matrix collaboration client, web and desktop versions."
-arch=(any)
-url="https://riot.im";
-license=(Apache)
-makedepends=(npm git yarn)
-_url="https://github.com/vector-im/riot-web";
-source=(${pkgbase}-${pkgver}.tar.gz::"${_url}/archive/v${pkgver}.tar.gz"
-
${pkgbase}-${pkgver}.tar.gz.asc::"${_url}/releases/download/v${pkgver}/v${pkgver}-src.tar.gz.asc"
-"${pkgbase}.desktop"
-"${pkgbase}-desktop.sh")
-sha256sums=('098ec76042fbf067a36567f591d7bb2049acc2f7a3eb4f48fb09a164bcd57394'
-'SKIP'
-'043fbaa29be96f52541143e1684fd7ba33585edb215c06d1ed4e59ddc48a9fa7'
-'94807ecb4210b09672d39f39b5be6f4e8fbd58e9d674c3b7ca795a6dd9c14ff7')
-validpgpkeys=(A878CDF66CF4A9B4807CEBE574692659BDA3D940) # Riot Releases 

-
-prepare() {
-  cd ${pkgbase}-web-${pkgver}
-  sed -i 's@https://riot.im/download/desktop/update/@null@g' 
electron_app/riot.im/config.json
-}
-
-build() {
-  cd ${pkgbase}-web-${pkgver}
-  npm install --cache ../npm-cache
-  npm run build --cache ../npm-cache
-}
-
-package_riot-web() {
-  pkgdesc="A glossy Matrix collaboration client for the web."
-  provides=(vector-web)
-  replaces=(vector-web)
-  cd ${pkgbase}-web-${pkgver}
-
-  install -d "${pkgdir}"/{usr/share/webapps,etc/webapps}/${pkgbase}
-
-  cp -r webapp/* "${pkgdir}"/usr/share/webapps/${pkgbase}/
-  install -Dm644 config.sample.json -t "${pkgdir}"/etc/webapps/${pkgbase}/
-  ln -s /etc/webapps/${pkgbase}/config.json 
"${pkgdir}"/usr/share/webapps/${pkgbase}/
-  echo "${pkgver}" > "${pkgdir}"/usr/share/webapps/${pkgbase}/version
-}
-
-package_riot-desktop() {
-  pkgdesc="A glossy Matrix collaboration client for the desktop."
-  depends=(riot-web electron)
-  backup=('etc/riot/config.json')
-  cd ${pkgbase}-web-${pkgver}
-
-  cd electron_app
-  npm install --cache "${srcdir}"/npm-cache
-  cd ..
-
-  install -d 
"${pkgdir}"{/usr/lib/${pkgbase}/electron_app,/etc/webapps/${pkgbase}}
-
-  ln -s /usr/share/webapps/${pkgbase} "${pkgdir}"/usr/lib/${pkgbase}/webapp
-  ln -s /etc/${pkgbase}/config.json 
"${pkgdir}"/etc/webapps/${pkgbase}/config.json
-
-  install -Dm644 package.json -t "${pkgdir}"/usr/lib/${pkgbase}/
-  cp -r origin_migrator "${pkgdir}"/usr/lib/${pkgbase}/
-  cp -r electron_app/src "${pkgdir}"/usr/lib/${pkgbase}/electron_app/
-  cp -r electron_app/node_modules "${pkgdir}"/usr/lib/${pkgbase}/electron_app/
-  install -Dm644 electron_app/img/riot.png -t 
"${pkgdir}"/usr/lib/${pkgbase}/img
-  install -Dm644 electron_app/riot.im/config.json -t "${pkgdir}"/etc/${pkgbase}
-
-  install -Dm644 "${srcdir}"/${pkgbase}.desktop 
"${pkgdir}"/usr/share/applications/${pkgbase}.desktop
-  install -Dm755 "${srcdir}"/${pkgname}.sh "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 res/themes/riot/img/logos/riot-im-logo.svg 
"${pkgdir}"/usr/share/icons/hicolor/scalable/apps/${pkgbase}.svg
-  for i in 16 24 48 64 96 128 256 512; do
-install -Dm644 electron_app/build/icons/${i}x${i}.png 
"${pkgdir}"/usr/share/icons/hicolor/${i}x${i}/apps/${pkgbase}.png
-  done
-}

Copied: riot/repos/community-any/PKGBUILD (from rev 511954, riot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-27 22:54:37 UTC (rev 511955)
@@ -0,0 +1,78 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Luca Weiss 
+
+pkgbase=riot
+pkgname=('riot-desktop' 'riot-web')
+pkgver=1.4.0
+pkgrel=1
+pkgdesc="A glossy Matrix collaboration client, web and desktop versions."
+arch=(any)
+url="https://riot.im";
+license=(Apache)
+makedepends=(npm git yarn)
+_url="https://github.com/vector-im/riot-web";
+source=(${pkgbase}-${pkgver}.tar.gz::"${_url}/archive/v${pkgver}.tar.gz"
+
${pkgbase}-${pkgver}.tar.gz.asc::"${_url}/releases/download/v${pkgver}/v${pkgver}-src.tar.gz.asc"
+"${pkgbase}.desktop"
+"${pkgbase}-desktop.sh")
+sha256sums=('980d2f90245851d50959

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

2019-09-27 Thread Bruno Pagani via arch-commits
Date: Friday, September 27, 2019 @ 22:54:16
  Author: archange
Revision: 511954

upgpkg: riot 1.4.0-1

Modified:
  riot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 21:11:44 UTC (rev 511953)
+++ PKGBUILD2019-09-27 22:54:16 UTC (rev 511954)
@@ -3,7 +3,7 @@
 
 pkgbase=riot
 pkgname=('riot-desktop' 'riot-web')
-pkgver=1.3.6
+pkgver=1.4.0
 pkgrel=1
 pkgdesc="A glossy Matrix collaboration client, web and desktop versions."
 arch=(any)
@@ -15,7 +15,7 @@
 
${pkgbase}-${pkgver}.tar.gz.asc::"${_url}/releases/download/v${pkgver}/v${pkgver}-src.tar.gz.asc"
 "${pkgbase}.desktop"
 "${pkgbase}-desktop.sh")
-sha256sums=('098ec76042fbf067a36567f591d7bb2049acc2f7a3eb4f48fb09a164bcd57394'
+sha256sums=('980d2f90245851d5095940807ecc9278ab0d20a5e44e53dd84fb182630b23295'
 'SKIP'
 '043fbaa29be96f52541143e1684fd7ba33585edb215c06d1ed4e59ddc48a9fa7'
 '94807ecb4210b09672d39f39b5be6f4e8fbd58e9d674c3b7ca795a6dd9c14ff7')


[arch-commits] Commit in firefox-developer-edition-i18n/repos/community-any (2 files)

2019-09-27 Thread Andrew Crerar via arch-commits
Date: Friday, September 27, 2019 @ 21:11:44
  Author: andrewsc
Revision: 511953

archrelease: copy trunk to community-any

Added:
  firefox-developer-edition-i18n/repos/community-any/PKGBUILD
(from rev 511952, firefox-developer-edition-i18n/trunk/PKGBUILD)
Deleted:
  firefox-developer-edition-i18n/repos/community-any/PKGBUILD

--+
 PKGBUILD |  448 ++---
 1 file changed, 224 insertions(+), 224 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 21:11:21 UTC (rev 511952)
+++ PKGBUILD2019-09-27 21:11:44 UTC (rev 511953)
@@ -1,224 +0,0 @@
-# Maintainer: Andrew Crerar 
-
-pkgbase=firefox-developer-edition-i18n
-pkgver=70.0b9
-pkgrel=1
-pkgdesc="Language pack for Firefox Developer Edition"
-arch=('any')
-url="https://www.mozilla.com/";
-license=('MPL' 'GPL')
-
-_languages=(
-  'ach"Acholi"'
-  'af "Afrikaans"'
-  'an "Aragonese"'
-  'ar "Arabic"'
-  'ast"Asturian"'
-  'az "Azerbaijani"'
-  'be "Belarusian"'
-  'bg "Bulgarian"'
-  'bn "Bengali"'
-  'br "Breton"'
-  'bs "Bosnian"'
-  'ca "Catalan"'
-  'cak"Maya Kaqchikel"'
-  'cs "Czech"'
-  'cy "Welsh"'
-  'da "Danish"'
-  'de "German"'
-  'dsb"Lower Sorbian"'
-  'el "Greek"'
-  'en-CA  "English (Canada)"'
-  'en-GB  "English (British)"'
-  'en-US  "English (US)"'
-  'eo "Esperanto"'
-  'es-AR  "Spanish (Argentina)"'
-  'es-CL  "Spanish (Chile)"'
-  'es-ES  "Spanish (Spain)"'
-  'es-MX  "Spanish (Mexico)"'
-  'et "Estonian"'
-  'eu "Basque"'
-  'fa "Persian"'
-  'ff "Fulah"'
-  'fi "Finnish"'
-  'fr "French"'
-  'fy-NL  "Frisian"'
-  'ga-IE  "Irish"'
-  'gd "Gaelic (Scotland)"'
-  'gl "Galician"'
-  'gn "Guarani"'
-  'gu-IN  "Gujarati (India)"'
-  'he "Hebrew"'
-  'hi-IN  "Hindi (India)"'
-  'hr "Croatian"'
-  'hsb"Upper Sorbian"'
-  'hu "Hungarian"'
-  'hy-AM  "Armenian"'
-  'ia "Interlingua"'
-  'id "Indonesian"'
-  'is "Icelandic"'
-  'it "Italian"'
-  'ja "Japanese"'
-  'ka "Georgian"'
-  'kab"Kabyle"'
-  'kk "Kazakh"'
-  'km "Khmer"'
-  'kn "Kannada"'
-  'ko "Korean"'
-  'lij"Ligurian"'
-  'lt "Lithuanian"'
-  'lv "Latvian"'
-  'mk "Macedonian"'
-  'mr "Marathi"'
-  'ms "Malay"'
-  'my "Burmese"'
-  'nb-NO  "Norwegian (Bokmål)"'
-  'ne-NP  "Nepali"'
-  'nl "Dutch"'
-  'nn-NO  "Norwegian (Nynorsk)"'
-  'oc "Occitan"'
-  'pa-IN  "Punjabi (India)"'
-  'pl "Polish"'
-  'pt-BR  "Portuguese (Brazilian)"'
-  'pt-PT  "Portuguese (Portugal)"'
-  'rm "Romansh"'
-  'ro "Romanian"'
-  'ru "Russian"'
-  'si "Sinhala"'
-  'sk "Slovak"'
-  'sl "Slovenian"'
-  'son"Songhai"'
-  'sq "Albanian"'
-  'sr "Serbian"'
-  'sv-SE  "Swedish"'
-  'ta "Tamil"'
-  'te "Telugu"'
-  'th "Thai"'
-  'tr "Turkish"'
-  'uk "Ukrainian"'
-  'ur "Urdu"'
-  'uz "Uzbek"'
-  'vi "Vietnamese"'
-  'xh "Xhosa"'
-  'zh-CN  "Chinese (Simplified)"'
-  'zh-TW  "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=https://archive.mozilla.org/pub/devedition/releases/$pkgver/linux-x86_64/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=firefox-developer-edition-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  
source+=("firefox-developer-edition-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
-  eval "package_$_pkgname() {
-_package $_lang
-  }"
-done
-
-# Don't extract anything
-noextract=(${source[@]%%::*})
-
-_package() {
-  pkgdesc="$2 language pack for Firefox Developer Edition"
-  depends=("firefox-developer-edition>=$pkgver")
-  install -Dm644 firefox-developer-edition-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@devedition.mozilla.org.xpi"
-}
-
-sha512sums=('90915d957742b3ec467835ed2e9531e1a7555e82a0375d1b34de7b45db31a883c5221d6698496e9c5c756088400874b53e4eedba891b5a9dbfeea0ad4bdb7a82'
-
'4bffec8e8f272ce2a6b554023e351a72c0fdb4e98ff4cda95c082db3fc018483c4ad99cf35aba684546a92e5a8fabe2ab6e5092047a5f9d8a3a296e8bdd4d5fb'
-
'a4ad7946781fc13e01de14277956aec9c44edcd837789396dc4c04a5bd7bd74844f657bfc12daf243fd367dcb09a4e6350faf1c7a7578f74397dc18b152dd8bc'
-
'16c262a24052d0d7b131904c934cad92406a9ec1a1059167c413ae711da874528913a40ec19f5c2e84a944dbae03a5d2aa63051c1acce10eaa7dce625d5d0be6'
-
'61d88c8c4fb4e93e3fb0d5b7d07bb83c7087e3eaab6a1fec0330440ab8f17d29590a8a26fcf8858896724e8fb82b2c8c64e5ca8c2cda0f7284155b0ba8a02494'
-
'98b05b4b55275244264be311eb6188daaf28b6ac18f74c4b0d256add38de6611541656e2076cda9ed75a6852c0388ad60faa4a19c8b36a0c2f451d86834724f8'
-
'a4cb45ffb9b952322c7b0a2b47291035b5ae60c58fb4f60b91f276ecb24641fc348163c2adc42526b1066fa9d97cd67ab7fb8265c6bf6f789661e3f8bbc10816'
-
'06d86b4ea6bd0b34e8e1f

[arch-commits] Commit in firefox-developer-edition-i18n/trunk (PKGBUILD)

2019-09-27 Thread Andrew Crerar via arch-commits
Date: Friday, September 27, 2019 @ 21:11:21
  Author: andrewsc
Revision: 511952

upgpkg: firefox-developer-edition-i18n 70.0b10-1

firefox-developer-edition-i18n: Updating to 70.0b10

Modified:
  firefox-developer-edition-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  188 ++---
 1 file changed, 94 insertions(+), 94 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 20:54:18 UTC (rev 511951)
+++ PKGBUILD2019-09-27 21:11:21 UTC (rev 511952)
@@ -1,7 +1,7 @@
 # Maintainer: Andrew Crerar 
 
 pkgbase=firefox-developer-edition-i18n
-pkgver=70.0b9
+pkgver=70.0b10
 pkgrel=1
 pkgdesc="Language pack for Firefox Developer Edition"
 arch=('any')
@@ -129,96 +129,96 @@
 
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@devedition.mozilla.org.xpi"
 }
 
-sha512sums=('90915d957742b3ec467835ed2e9531e1a7555e82a0375d1b34de7b45db31a883c5221d6698496e9c5c756088400874b53e4eedba891b5a9dbfeea0ad4bdb7a82'
-
'4bffec8e8f272ce2a6b554023e351a72c0fdb4e98ff4cda95c082db3fc018483c4ad99cf35aba684546a92e5a8fabe2ab6e5092047a5f9d8a3a296e8bdd4d5fb'
-
'a4ad7946781fc13e01de14277956aec9c44edcd837789396dc4c04a5bd7bd74844f657bfc12daf243fd367dcb09a4e6350faf1c7a7578f74397dc18b152dd8bc'
-
'16c262a24052d0d7b131904c934cad92406a9ec1a1059167c413ae711da874528913a40ec19f5c2e84a944dbae03a5d2aa63051c1acce10eaa7dce625d5d0be6'
-
'61d88c8c4fb4e93e3fb0d5b7d07bb83c7087e3eaab6a1fec0330440ab8f17d29590a8a26fcf8858896724e8fb82b2c8c64e5ca8c2cda0f7284155b0ba8a02494'
-
'98b05b4b55275244264be311eb6188daaf28b6ac18f74c4b0d256add38de6611541656e2076cda9ed75a6852c0388ad60faa4a19c8b36a0c2f451d86834724f8'
-
'a4cb45ffb9b952322c7b0a2b47291035b5ae60c58fb4f60b91f276ecb24641fc348163c2adc42526b1066fa9d97cd67ab7fb8265c6bf6f789661e3f8bbc10816'
-
'06d86b4ea6bd0b34e8e1f7031c748267dbff14cab74f999cdbc14fa9adc52a9db0ecc3c3041282b2ec1471b0cbc9cbe735b1a8c119133d37e865481faf86ffc6'
-
'1b6af5c9ca52739cdec422f792e4d09e68a0e015c432053752bb6250b6c8e386e5ceec943a83103a9e7a85bb05f645bdfd20d6187d2edd4782baa190d72d4aad'
-
'041ebc2f08fb1bfb65ae50242a2456576633dbef13bc51d2261d569ca9be9c8d0786a4bc204c5e36cdab09b460bc7ff70622a78c2ed11694c6443f5502baf317'
-
'4d32017bae027c4ac833b9da1c96ed232158ebae63646abb3cbcd5b2e27ec417c0a3678432269872b43560e490e5569342f6eb148735b5909ef5e78f51aba6f4'
-
'ada5a0435bc6c2ccb2f9e648faf936b247330cc7932cb963cade613406f34c85e2b73d5b32f567f8dbe6e87421595cbee6c8e443f3e4c6fe420c8bdd42af3875'
-
'a61e840d63071a4ebbd567faf30804efefbfb65c5610f36229c75b80ccb4bd2554f46fd3205d30fdece2d143bd852c97db107ac270dba6fe6fe47817a086e241'
-
'84bc5b2651e6a63428d03ffe2a45a676b6db2d5b0930bd7fe945e0f2c9766755cdcaf396b7f5b8df9447479392bfdcc1ba37044165b37f91b6a82a9d172cbdf4'
-
'5dd278c8ff8efd88a48c57e737ea6d7c47953eb104dd18b76537a85a22fb71e83e09b4fc3362b3b6db90ac044fae50c27c73ccb3a0f84404e5b1aba2b0edfbc3'
-
'7840ed7458ff5dcd5aca3671743a1efb665bd83fbad08230d9856261c68b26b890cd8a9de68d82ca2712ff4b4a793e282e7ddb39028da807a2d2a2a5dd7942b8'
-
'8e16d963b70ed2c8f0ae74c50f01519ed9a4f4624b9b67d5b083e860cc92f61dc9731cea22bbeecaa16f8ead255b78c9ca60cd7ac3ed24d0addee7ef80b6bc77'
-
'0c0a15b4d9027d253f7c7697992d0dc0b128b506bfaf3cf1bed3a6ee655cafd9658e2fa55f730f4d3a8979584e5bdc6865fe912c29d9b36d00afa58c769cca50'
-
'6943c98466da3f6a7da6c60a2f517f84ff36daccbd373fb9aea640978b1887e86bf87be075e6ddaf84755b2937c84c36d4e8d533a2c5b65f95b43d453eb6f459'
-
'5693a70ec679108183af0cefe061179047cb9e12cdf595524046566b94e6d858b125a07942a1375cbf5019eb8cec409c8da976ce7653a7ff12eec778fe1467e5'
-
'c42e07dd6195a31a47adaa35829ff0b42bf56c0453f6bf7dd8d778d8d3e5b576927e28d4b2d6165277683534aef04f938ac0fe50474ea9d2017de2cf8e84ee1b'
-
'cfb11942cafb3914ba87ffd981e7a49140e19ea29808e5828f4def43eb199343bb77692dcebd8c7dd9488be652271df25d147b01e00e64e14e3f138ced92f9cf'
-
'dd6b1fdb4e31e9bf1e82efd717e10ff3640bd9a602669762ace67c9b8eb7be3af639b54dac0cc493572b08329a3d6c90e10f81ce997db0a1b24f65a0f87fc74f'
-
'a1130b71247e6df98fc0d89a2cf409e47d104de01186039bd4730c531f858cfed90263b3268d05b4e136b59ab59cd414e4ef2420ac0290532b6c237aa6e02c51'
-
'4f22f38dac7b533ed78561e85f1b51e4d7594b19d5d8ad86a21c09022e099ea65108ea3c02adbc535223cbdbc461c7a22bacfb4858ee3238e9f51427a6bc381a'
-
'b7349ae9a8084712df43cb9b48ba02e3cad825425223b0bf073aeea4df2a354de073718b3d7a04e032930eb79236020f095f4fd9b7aaaeaaa926f81e1cb1ef68'
-
'dfe68dfb4878164f6d50783cc0f700ae16d0e9886c5bfea6e0b42480dbff9cdd7ef79ed4e41fb226dc9072a64375d8e08dd6fa7e86958a1748ab453ec1ae17cc'
-
'9065d8aa97ae2dcb5b3c1f40acfe117d3966bd213fa683fca23d5cb96a85d2a646f82721f3c07586a16d2e02815d30994fb8de5c036852a77608c2bb9c23c731'
-
'45bdef

[arch-commits] Commit in firefox-developer-edition/repos/community-x86_64 (10 files)

2019-09-27 Thread Andrew Crerar via arch-commits
Date: Friday, September 27, 2019 @ 20:54:18
  Author: andrewsc
Revision: 511951

archrelease: copy trunk to community-x86_64

Added:
  
firefox-developer-edition/repos/community-x86_64/0001-Use-remoting-name-for-GDK-application-names.patch
(from rev 511950, 
firefox-developer-edition/trunk/0001-Use-remoting-name-for-GDK-application-names.patch)
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
(from rev 511950, firefox-developer-edition/trunk/PKGBUILD)
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
(from rev 511950, 
firefox-developer-edition/trunk/firefox-developer-edition.desktop)
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch
(from rev 511950, firefox-developer-edition/trunk/firefox-install-dir.patch)
  firefox-developer-edition/repos/community-x86_64/firefox-symbolic.svg
(from rev 511950, firefox-developer-edition/trunk/firefox-symbolic.svg)
Deleted:
  
firefox-developer-edition/repos/community-x86_64/0001-Use-remoting-name-for-GDK-application-names.patch
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch
  firefox-developer-edition/repos/community-x86_64/firefox-symbolic.svg

+
 0001-Use-remoting-name-for-GDK-application-names.patch |  112 +-
 PKGBUILD   |  434 -
 firefox-developer-edition.desktop  |  680 +++
 firefox-install-dir.patch  |   86 -
 firefox-symbolic.svg   |  128 +-
 5 files changed, 720 insertions(+), 720 deletions(-)

Deleted: 0001-Use-remoting-name-for-GDK-application-names.patch
===
--- 0001-Use-remoting-name-for-GDK-application-names.patch  2019-09-27 
20:53:41 UTC (rev 511950)
+++ 0001-Use-remoting-name-for-GDK-application-names.patch  2019-09-27 
20:54:18 UTC (rev 511951)
@@ -1,56 +0,0 @@
-From 1cab10b39cfda068100cab8c598f1ca0f50e4131 Mon Sep 17 00:00:00 2001
-Message-Id: 
<1cab10b39cfda068100cab8c598f1ca0f50e4131.1553597287.git.jan.steff...@gmail.com>
-From: "Jan Alexander Steffens (heftig)" 
-Date: Mon, 25 Mar 2019 20:30:11 +0100
-Subject: [PATCH] Use remoting name for GDK application names
-

- toolkit/xre/nsAppRunner.cpp | 6 +-
- widget/gtk/nsAppShell.cpp   | 7 +++
- 2 files changed, 4 insertions(+), 9 deletions(-)
-
-diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
-index 0b808ef215f06..28911c0ffeaec 100644
 a/toolkit/xre/nsAppRunner.cpp
-+++ b/toolkit/xre/nsAppRunner.cpp
-@@ -3728,11 +3728,7 @@ int XREMain::XRE_mainStartup(bool* aExitFlag) {
-   // consistently.
- 
-   // Set program name to the one defined in application.ini.
--  {
--nsAutoCString program(gAppData->name);
--ToLowerCase(program);
--g_set_prgname(program.get());
--  }
-+  g_set_prgname(gAppData->remotingName);
- 
-   // Initialize GTK here for splash.
- 
-diff --git a/widget/gtk/nsAppShell.cpp b/widget/gtk/nsAppShell.cpp
-index 0686ff814916b..ae4a4ea55f420 100644
 a/widget/gtk/nsAppShell.cpp
-+++ b/widget/gtk/nsAppShell.cpp
-@@ -24,6 +24,7 @@
- #  include "WakeLockListener.h"
- #endif
- #include "gfxPlatform.h"
-+#include "nsAppRunner.h"
- #include "ScreenHelperGTK.h"
- #include "HeadlessScreenHelper.h"
- #include "mozilla/widget/ScreenManager.h"
-@@ -171,10 +172,8 @@ nsresult nsAppShell::Init() {
- // option when program uses gdk_set_program_class().
- //
- // See https://bugzilla.gnome.org/show_bug.cgi?id=747634
--nsAutoString brandName;
--mozilla::widget::WidgetUtils::GetBrandShortName(brandName);
--if (!brandName.IsEmpty()) {
--  gdk_set_program_class(NS_ConvertUTF16toUTF8(brandName).get());
-+if (gAppData) {
-+  gdk_set_program_class(gAppData->remotingName);
- }
-   }
- 
--- 
-2.21.0
-

Copied: 
firefox-developer-edition/repos/community-x86_64/0001-Use-remoting-name-for-GDK-application-names.patch
 (from rev 511950, 
firefox-developer-edition/trunk/0001-Use-remoting-name-for-GDK-application-names.patch)
===
--- 0001-Use-remoting-name-for-GDK-application-names.patch  
(rev 0)
+++ 0001-Use-remoting-name-for-GDK-application-names.patch  2019-09-27 
20:54:18 UTC (rev 511951)
@@ -0,0 +1,56 @@
+From 1cab10b39cfda068100cab8c598f1ca0f50e4131 Mon Sep 17 00:00:00 2001
+Message-Id: 
<1cab10b39cfda068100cab8c598f1ca0f50e4131.1553597287.git.jan.steff...@gmail.com>
+From: "Jan Alexander Steffens (heftig)" 
+Date: Mon, 25 Mar 2019 20:30:11 +0100
+Subject: [PATCH] Use remoting name for GDK application names
+
+---
+ toolkit/xre/nsAppRunner.cpp | 6 +-
+ widget/gtk/nsAppShell.cpp   | 7 +++
+ 

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

2019-09-27 Thread Andrew Crerar via arch-commits
Date: Friday, September 27, 2019 @ 20:53:41
  Author: andrewsc
Revision: 511950

upgpkg: firefox-developer-edition 70.0b10-1

firefox-developer-edition: Updating to 70.0b10

Modified:
  firefox-developer-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 19:42:23 UTC (rev 511949)
+++ PKGBUILD2019-09-27 20:53:41 UTC (rev 511950)
@@ -2,7 +2,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=firefox-developer-edition
-pkgver=70.0b9
+pkgver=70.0b10
 pkgrel=1
 pkgdesc="Developer Edition of the popular Firefox web browser"
 arch=('x86_64')
@@ -24,7 +24,7 @@
 firefox-install-dir.patch
 0001-Use-remoting-name-for-GDK-application-names.patch
 "$pkgname".desktop firefox-symbolic.svg)
-sha512sums=('3bd5b1c1d99e94ebd41f13061f4e54d954b098e81e6f3d84628c7659b931e3cb2258957cf932aab2a5d0654607b54df8767eb5a7342f9a512ca3171b4361f85a'
+sha512sums=('462c888fa29ff69906954715583106b31bab3356889fe7efc766825b0c41eeda3dd92ba5c50c8adae39064bee8318b32024bd720f9bdca11b7aa037e5836b166'
 'SKIP'
 
'b66dbe7f262d036e5a5b895ab5b0dbb03313bca18b0823c001ef2dbaeb1a33169b57db0cf4dfd268499f28913845119902b5d62e8a6a9cc4820eb0ee2f322a1e'
 
'40c931b8abbe5880122dbcc93d457e04e9b4f2bc3e0275e9e3e35dd347fe0658f9446c89e99553203be8a8c9ab6f4ca872a7aedc514920c107b9235c04df91dc'


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

2019-09-27 Thread Christian Hesse via arch-commits
Date: Friday, September 27, 2019 @ 19:53:52
  Author: eworm
Revision: 363495

comment on service file

Modified:
  haveged/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 18:33:23 UTC (rev 363494)
+++ PKGBUILD2019-09-27 19:53:52 UTC (rev 363495)
@@ -19,8 +19,8 @@
 #'SKIP'
 '046c82811f645c0a895f599bf38894096ff655f1fac40c12a1a5f88df4e76ebb')
 
-# service file changes sent upstream:
-# https://github.com/jirka-h/haveged/pull/21
+# service file changes merged upstream, remove custom service file
+# on next update
 
 build() {
   cd $pkgname-$pkgver


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

2019-09-27 Thread Felix Yan via arch-commits
Date: Friday, September 27, 2019 @ 19:42:23
  Author: felixonmars
Revision: 511949

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 19:41:18 UTC (rev 511948)
+++ PKGBUILD2019-09-27 19:42:23 UTC (rev 511949)
@@ -1,35 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Blackleg 
-# Contributor: Nidhogg
-# Contributor: juantascon
-
-pkgname=python-peewee
-pkgver=3.11.1
-pkgrel=1
-pkgdesc="a little orm"
-url="https://pypi.python.org/pypi/peewee/";
-arch=('x86_64')
-license=('MIT')
-depends=('python' 'sqlite')
-optdepends=('python-psycopg2: for PostgreSQL database support'
-'mysql-python: for MySQL database support')
-makedepends=('python-setuptools' 'cython')
-checkdepends=('python-apsw' 'python-flask' 'python-psycopg2')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/coleifer/peewee/archive/$pkgver.tar.gz";)
-sha512sums=('8ece4956d37ace5c0bfea936b337155d7fcdf9119ab128ce8f7f19fda9003eab5f6d5c0f1ac88f4de07a5ef80a90cb25bfcc353f0e76cb6ab2756a52fe0c95a3')
-
-build() {
-  cd peewee-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd peewee-$pkgver
-  python runtests.py
-}
-
-package() {
-  cd peewee-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-peewee/repos/community-x86_64/PKGBUILD (from rev 511948, 
python-peewee/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-27 19:42:23 UTC (rev 511949)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan 
+# Contributor: Blackleg 
+# Contributor: Nidhogg
+# Contributor: juantascon
+
+pkgname=python-peewee
+pkgver=3.11.2
+pkgrel=1
+pkgdesc="a little orm"
+url="https://pypi.python.org/pypi/peewee/";
+arch=('x86_64')
+license=('MIT')
+depends=('python' 'sqlite')
+optdepends=('python-psycopg2: for PostgreSQL database support'
+'mysql-python: for MySQL database support')
+makedepends=('python-setuptools' 'cython')
+checkdepends=('python-apsw' 'python-flask' 'python-psycopg2')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/coleifer/peewee/archive/$pkgver.tar.gz";)
+sha512sums=('6bda4628ae1be9969c21bf8a858db9ff5d190df2e22e2917653580185544acf18b8dcc0e7e995da556b69658e293e9d28ebd318ac0b5c66d697f8a0029f2e620')
+
+build() {
+  cd peewee-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd peewee-$pkgver
+  python runtests.py
+}
+
+package() {
+  cd peewee-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-09-27 Thread Felix Yan via arch-commits
Date: Friday, September 27, 2019 @ 19:41:18
  Author: felixonmars
Revision: 511948

upgpkg: python-peewee 3.11.2-1

Modified:
  python-peewee/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 19:41:04 UTC (rev 511947)
+++ PKGBUILD2019-09-27 19:41:18 UTC (rev 511948)
@@ -4,7 +4,7 @@
 # Contributor: juantascon
 
 pkgname=python-peewee
-pkgver=3.11.1
+pkgver=3.11.2
 pkgrel=1
 pkgdesc="a little orm"
 url="https://pypi.python.org/pypi/peewee/";
@@ -16,7 +16,7 @@
 makedepends=('python-setuptools' 'cython')
 checkdepends=('python-apsw' 'python-flask' 'python-psycopg2')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/coleifer/peewee/archive/$pkgver.tar.gz";)
-sha512sums=('8ece4956d37ace5c0bfea936b337155d7fcdf9119ab128ce8f7f19fda9003eab5f6d5c0f1ac88f4de07a5ef80a90cb25bfcc353f0e76cb6ab2756a52fe0c95a3')
+sha512sums=('6bda4628ae1be9969c21bf8a858db9ff5d190df2e22e2917653580185544acf18b8dcc0e7e995da556b69658e293e9d28ebd318ac0b5c66d697f8a0029f2e620')
 
 build() {
   cd peewee-$pkgver


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

2019-09-27 Thread Felix Yan via arch-commits
Date: Friday, September 27, 2019 @ 19:41:04
  Author: felixonmars
Revision: 511947

archrelease: copy trunk to community-any

Added:
  python-pytest-twisted/repos/community-any/PKGBUILD
(from rev 511946, python-pytest-twisted/trunk/PKGBUILD)
Deleted:
  python-pytest-twisted/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 19:40:42 UTC (rev 511946)
+++ PKGBUILD2019-09-27 19:41:04 UTC (rev 511947)
@@ -1,54 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-pytest-twisted
-pkgname=('python-pytest-twisted' 'python2-pytest-twisted')
-pkgver=1.11
-pkgrel=1
-pkgdesc='A twisted plugin for py.test'
-arch=('any')
-license=('BSD')
-url='https://github.com/pytest-dev/pytest-twisted'
-makedepends=('python-pytest' 'python2-pytest' 'python-greenlet' 
'python2-greenlet'
- 'python-decorator' 'python2-decorator' 'python-twisted' 
'python2-twisted')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-twisted/archive/v$pkgver.tar.gz";)
-sha512sums=('486ac73f3f0a9b0a8a98895d8a846de07be987b8b6c3ad6b88650b86d3931f0c725ad64697547eae7891509b99a02a6363838f3577608c0e541411670a867336')
-
-prepare() {
-  cp -a pytest-twisted-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/pytest-twisted-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/pytest-twisted-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack entry points by installing it
-
-  cd "$srcdir"/pytest-twisted-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.7/site-packages:$PYTHONPATH" 
py.test
-
-  cd "$srcdir"/pytest-twisted-$pkgver-py2
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
py.test2
-}
-
-package_python-pytest-twisted() {
-  depends=('python-pytest' 'python-greenlet' 'python-decorator' 
'python-twisted')
-
-  cd pytest-twisted-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-pytest-twisted() {
-  depends=('python2-pytest' 'python2-greenlet' 'python2-decorator' 
'python2-twisted')
-
-  cd pytest-twisted-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pytest-twisted/repos/community-any/PKGBUILD (from rev 511946, 
python-pytest-twisted/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-27 19:41:04 UTC (rev 511947)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-pytest-twisted
+pkgname=('python-pytest-twisted' 'python2-pytest-twisted')
+pkgver=1.12
+pkgrel=1
+pkgdesc='A twisted plugin for py.test'
+arch=('any')
+license=('BSD')
+url='https://github.com/pytest-dev/pytest-twisted'
+makedepends=('python-pytest' 'python2-pytest' 'python-greenlet' 
'python2-greenlet'
+ 'python-decorator' 'python2-decorator' 'python-twisted' 
'python2-twisted')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-twisted/archive/v$pkgver.tar.gz";)
+sha512sums=('3fb5bdea9632ebd830637be8bef15432859e4689e41d2f87258dc5404734d98b76d26de494e80464f4321db6016836851daff5ff4eaf083fa7159cc8381e35bf')
+
+prepare() {
+  cp -a pytest-twisted-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pytest-twisted-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/pytest-twisted-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd "$srcdir"/pytest-twisted-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.7/site-packages:$PYTHONPATH" 
py.test
+
+  cd "$srcdir"/pytest-twisted-$pkgver-py2
+  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
py.test2
+}
+
+package_python-pytest-twisted() {
+  depends=('python-pytest' 'python-greenlet' 'python-decorator' 
'python-twisted')
+
+  cd pytest-twisted-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-pytest-twisted() {
+  depends=('python2-pytest' 'python2-greenlet' 'python2-decorator' 
'python2-twisted')
+
+  cd pytest-twisted-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-09-27 Thread Felix Yan via arch-commits
Date: Friday, September 27, 2019 @ 19:40:42
  Author: felixonmars
Revision: 511946

upgpkg: python-pytest-twisted 1.12-1

Modified:
  python-pytest-twisted/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 19:28:59 UTC (rev 511945)
+++ PKGBUILD2019-09-27 19:40:42 UTC (rev 511946)
@@ -2,7 +2,7 @@
 
 pkgbase=python-pytest-twisted
 pkgname=('python-pytest-twisted' 'python2-pytest-twisted')
-pkgver=1.11
+pkgver=1.12
 pkgrel=1
 pkgdesc='A twisted plugin for py.test'
 arch=('any')
@@ -11,7 +11,7 @@
 makedepends=('python-pytest' 'python2-pytest' 'python-greenlet' 
'python2-greenlet'
  'python-decorator' 'python2-decorator' 'python-twisted' 
'python2-twisted')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-twisted/archive/v$pkgver.tar.gz";)
-sha512sums=('486ac73f3f0a9b0a8a98895d8a846de07be987b8b6c3ad6b88650b86d3931f0c725ad64697547eae7891509b99a02a6363838f3577608c0e541411670a867336')
+sha512sums=('3fb5bdea9632ebd830637be8bef15432859e4689e41d2f87258dc5404734d98b76d26de494e80464f4321db6016836851daff5ff4eaf083fa7159cc8381e35bf')
 
 prepare() {
   cp -a pytest-twisted-$pkgver{,-py2}


[arch-commits] Commit in netcdf-fortran-openmpi/trunk (PKGBUILD)

2019-09-27 Thread Bruno Pagani via arch-commits
Date: Friday, September 27, 2019 @ 19:28:41
  Author: archange
Revision: 511944

upgpkg: netcdf-fortran-openmpi 4.5.2-1

Modified:
  netcdf-fortran-openmpi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 19:25:54 UTC (rev 511943)
+++ PKGBUILD2019-09-27 19:28:41 UTC (rev 511944)
@@ -5,7 +5,7 @@
 _pkg=netcdf-fortran
 _mpi=openmpi
 pkgname=${_pkg}-${_mpi}
-pkgver=4.5.1
+pkgver=4.5.2
 pkgrel=1
 pkgdesc="NetCDF fortran bindings with parallel support (${_mpi} version)"
 arch=(x86_64)
@@ -18,7 +18,7 @@
 conflicts=("${_pkg}")
 options=(!makeflags staticlibs)
 source=(${url}/archive/v${pkgver}/${_pkg}-${pkgver}.tar.gz)
-sha256sums=('9ed063aaa91b209d3d2f57c44d6aa01128c28643a991b99c8bbdfbd52e1dc931')
+sha256sums=('0b05c629c70d6d224a3be28699c066bfdfeae477aea211fbf034d973a8309b49')
 
 build() {
 cd ${_pkg}-${pkgver}


[arch-commits] Commit in netcdf-fortran-openmpi/repos/community-x86_64 (2 files)

2019-09-27 Thread Bruno Pagani via arch-commits
Date: Friday, September 27, 2019 @ 19:28:59
  Author: archange
Revision: 511945

archrelease: copy trunk to community-x86_64

Added:
  netcdf-fortran-openmpi/repos/community-x86_64/PKGBUILD
(from rev 511944, netcdf-fortran-openmpi/trunk/PKGBUILD)
Deleted:
  netcdf-fortran-openmpi/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 19:28:41 UTC (rev 511944)
+++ PKGBUILD2019-09-27 19:28:59 UTC (rev 511945)
@@ -1,52 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Maintainer: Ronald van Haren 
-# Contributor: damir 
-
-_pkg=netcdf-fortran
-_mpi=openmpi
-pkgname=${_pkg}-${_mpi}
-pkgver=4.5.1
-pkgrel=1
-pkgdesc="NetCDF fortran bindings with parallel support (${_mpi} version)"
-arch=(x86_64)
-url="https://github.com/Unidata/netcdf-fortran";
-license=(custom)
-depends=(gcc-libs netcdf-openmpi curl)
-makedepends=(gcc-fortran doxygen)
-checkdepends=(valgrind)
-provides=("${_pkg}")
-conflicts=("${_pkg}")
-options=(!makeflags staticlibs)
-source=(${url}/archive/v${pkgver}/${_pkg}-${pkgver}.tar.gz)
-sha256sums=('9ed063aaa91b209d3d2f57c44d6aa01128c28643a991b99c8bbdfbd52e1dc931')
-
-build() {
-cd ${_pkg}-${pkgver}
-./configure \
-CC=mpicc \
-FC=mpifort \
---prefix=/usr \
---enable-extra-tests \
---enable-extra-example-tests \
---enable-large-file-tests \
---enable-parallel-tests \
---enable-valgrind-tests
-make
-}
-
-check() {
-cd ${_pkg}-${pkgver}
-
-# This is required starting with OpenMPI 3.0 when trying to run more
-# processes than the number of available cores
-export OMPI_MCA_rmaps_base_oversubscribe=yes
-
-# https://github.com/Unidata/netcdf-fortran/issues/109
-make LIBS="-lnetcdf -lhdf5_hl -lhdf5 -lpnetcdf -lz -lcurl -ldl -lm" check 
|| warning "Tests failed"
-}
-
-package() {
-cd ${_pkg}-${pkgver}
-make DESTDIR="${pkgdir}" install
-install -Dm644 COPYRIGHT -t "${pkgdir}"/usr/share/licenses/${_pkg}/
-}

Copied: netcdf-fortran-openmpi/repos/community-x86_64/PKGBUILD (from rev 
511944, netcdf-fortran-openmpi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-27 19:28:59 UTC (rev 511945)
@@ -0,0 +1,52 @@
+# Maintainer: Bruno Pagani 
+# Maintainer: Ronald van Haren 
+# Contributor: damir 
+
+_pkg=netcdf-fortran
+_mpi=openmpi
+pkgname=${_pkg}-${_mpi}
+pkgver=4.5.2
+pkgrel=1
+pkgdesc="NetCDF fortran bindings with parallel support (${_mpi} version)"
+arch=(x86_64)
+url="https://github.com/Unidata/netcdf-fortran";
+license=(custom)
+depends=(gcc-libs netcdf-openmpi curl)
+makedepends=(gcc-fortran doxygen)
+checkdepends=(valgrind)
+provides=("${_pkg}")
+conflicts=("${_pkg}")
+options=(!makeflags staticlibs)
+source=(${url}/archive/v${pkgver}/${_pkg}-${pkgver}.tar.gz)
+sha256sums=('0b05c629c70d6d224a3be28699c066bfdfeae477aea211fbf034d973a8309b49')
+
+build() {
+cd ${_pkg}-${pkgver}
+./configure \
+CC=mpicc \
+FC=mpifort \
+--prefix=/usr \
+--enable-extra-tests \
+--enable-extra-example-tests \
+--enable-large-file-tests \
+--enable-parallel-tests \
+--enable-valgrind-tests
+make
+}
+
+check() {
+cd ${_pkg}-${pkgver}
+
+# This is required starting with OpenMPI 3.0 when trying to run more
+# processes than the number of available cores
+export OMPI_MCA_rmaps_base_oversubscribe=yes
+
+# https://github.com/Unidata/netcdf-fortran/issues/109
+make LIBS="-lnetcdf -lhdf5_hl -lhdf5 -lpnetcdf -lz -lcurl -ldl -lm" check 
|| warning "Tests failed"
+}
+
+package() {
+cd ${_pkg}-${pkgver}
+make DESTDIR="${pkgdir}" install
+install -Dm644 COPYRIGHT -t "${pkgdir}"/usr/share/licenses/${_pkg}/
+}


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

2019-09-27 Thread Felix Yan via arch-commits
Date: Friday, September 27, 2019 @ 19:25:54
  Author: felixonmars
Revision: 511943

archrelease: copy trunk to community-x86_64

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

-+
 PKGBUILD|   92 +++---
 webhook.service |   24 +++---
 2 files changed, 58 insertions(+), 58 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 19:25:26 UTC (rev 511942)
+++ PKGBUILD2019-09-27 19:25:54 UTC (rev 511943)
@@ -1,46 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=webhook
-pkgver=2.6.9
-pkgrel=2
-pkgdesc="A lightweight incoming webhook server to run shell commands"
-arch=('x86_64')
-url="https://github.com/adnanh/webhook";
-license=('MIT')
-depends=('glibc')
-makedepends=('go-pie' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/adnanh/webhook/archive/$pkgver.tar.gz";
-webhook.service
-go.uuid.patch::https://github.com/adnanh/webhook/pull/321.patch)
-sha512sums=('ccbfad6e2b9dfb77c4763a9b66e6a56f4e463b047fbedd6ffca4e61112ce3444696fae08a4e513f8778adc3d23ba9935b778ed35fdb3075bba73095f3d7cb311'
-
'4b08e6348a7e51aa4df668f1541f12e08960801d2e039b480de6ad73d26b8c325012474f83a3c8e819caafc216535c0b259aed1daf2226d545f895d0bd3d8efe'
-
'fd66e890167fd620aed3df57dceb251460ac13e67b1c64e13d7a2628720703cf08977d61a8a30bf19988cfd273c2aa221ca98448f280fc5c35343a08d145c46f')
-
-prepare() {
-  cd webhook-$pkgver
-  patch -p1 -i ../go.uuid.patch
-
-  mkdir -p .gopath/src/github.com/adnanh
-  ln -sf "$PWD" .gopath/src/github.com/adnanh/webhook
-  export GOPATH="$PWD/.gopath:/usr/share/gocode"
-
-  rm -r vendor
-
-  go get github.com/codegangsta/negroni github.com/gorilla/mux 
github.com/satori/go.uuid \
- gopkg.in/fsnotify.v1 github.com/ghodss/yaml
-}
-
-build() {
-  cd "$srcdir"/webhook-$pkgver
-  go build -o build/webhook
-}
-
-package() {
-  cd webhook-$pkgver
-
-  install -Dm755 build/webhook "$pkgdir"/usr/bin/webhook
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  install -dm755 "$pkgdir"/etc/webhook
-  install -Dm644 "$srcdir"/webhook.service 
"$pkgdir"/usr/lib/systemd/system/webhook.service
-}

Copied: webhook/repos/community-x86_64/PKGBUILD (from rev 511942, 
webhook/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-27 19:25:54 UTC (rev 511943)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+
+pkgname=webhook
+pkgver=2.6.10
+pkgrel=1
+pkgdesc="A lightweight incoming webhook server to run shell commands"
+arch=('x86_64')
+url="https://github.com/adnanh/webhook";
+license=('MIT')
+depends=('glibc')
+makedepends=('go-pie' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/adnanh/webhook/archive/$pkgver.tar.gz";
+webhook.service
+go.uuid.patch::https://github.com/adnanh/webhook/pull/321.patch)
+sha512sums=('158c71104dcfcf0b65ee6f511912523992f4b70394b4e6f9206ab3615a980662c3a821ce4f10fadcdbc1e604dd67cf7253115612af3194d1358dc6be4d5ddf0e'
+
'4b08e6348a7e51aa4df668f1541f12e08960801d2e039b480de6ad73d26b8c325012474f83a3c8e819caafc216535c0b259aed1daf2226d545f895d0bd3d8efe'
+
'fd66e890167fd620aed3df57dceb251460ac13e67b1c64e13d7a2628720703cf08977d61a8a30bf19988cfd273c2aa221ca98448f280fc5c35343a08d145c46f')
+
+prepare() {
+  cd webhook-$pkgver
+  patch -p1 -i ../go.uuid.patch
+
+  mkdir -p .gopath/src/github.com/adnanh
+  ln -sf "$PWD" .gopath/src/github.com/adnanh/webhook
+  export GOPATH="$PWD/.gopath:/usr/share/gocode"
+
+  rm -r vendor
+
+  go get github.com/codegangsta/negroni github.com/gorilla/mux 
github.com/satori/go.uuid \
+ gopkg.in/fsnotify.v1 github.com/ghodss/yaml
+}
+
+build() {
+  cd "$srcdir"/webhook-$pkgver
+  go build -o build/webhook
+}
+
+package() {
+  cd webhook-$pkgver
+
+  install -Dm755 build/webhook "$pkgdir"/usr/bin/webhook
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  install -dm755 "$pkgdir"/etc/webhook
+  install -Dm644 "$srcdir"/webhook.service 
"$pkgdir"/usr/lib/systemd/system/webhook.service
+}

Deleted: webhook.service
===
--- webhook.service 2019-09-27 19:25:26 UTC (rev 511942)
+++ webhook.service 2019-09-27 19:25:54 UTC (rev 511943)
@@ -1,12 +0,0 @@
-[Unit]
-Description=Webhook Service
-After=network.target
-Wants=network.target
-
-[Service]
-Type=simple
-ExecStart=/usr/bin/webhook -hooks /etc/webhook/hooks.json -verbose
-Restart=on-failure
-
-[Install]
-WantedBy=multi-user.target

Copied: webhook/repos/community-x86_64/webhook.service (from rev 511942, 
webhook/trun

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

2019-09-27 Thread Felix Yan via arch-commits
Date: Friday, September 27, 2019 @ 19:25:26
  Author: felixonmars
Revision: 511942

upgpkg: webhook 2.6.10-1

Modified:
  webhook/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 19:13:19 UTC (rev 511941)
+++ PKGBUILD2019-09-27 19:25:26 UTC (rev 511942)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=webhook
-pkgver=2.6.9
-pkgrel=2
+pkgver=2.6.10
+pkgrel=1
 pkgdesc="A lightweight incoming webhook server to run shell commands"
 arch=('x86_64')
 url="https://github.com/adnanh/webhook";
@@ -12,7 +12,7 @@
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/adnanh/webhook/archive/$pkgver.tar.gz";
 webhook.service
 go.uuid.patch::https://github.com/adnanh/webhook/pull/321.patch)
-sha512sums=('ccbfad6e2b9dfb77c4763a9b66e6a56f4e463b047fbedd6ffca4e61112ce3444696fae08a4e513f8778adc3d23ba9935b778ed35fdb3075bba73095f3d7cb311'
+sha512sums=('158c71104dcfcf0b65ee6f511912523992f4b70394b4e6f9206ab3615a980662c3a821ce4f10fadcdbc1e604dd67cf7253115612af3194d1358dc6be4d5ddf0e'
 
'4b08e6348a7e51aa4df668f1541f12e08960801d2e039b480de6ad73d26b8c325012474f83a3c8e819caafc216535c0b259aed1daf2226d545f895d0bd3d8efe'
 
'fd66e890167fd620aed3df57dceb251460ac13e67b1c64e13d7a2628720703cf08977d61a8a30bf19988cfd273c2aa221ca98448f280fc5c35343a08d145c46f')
 


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

2019-09-27 Thread Bruno Pagani via arch-commits
Date: Friday, September 27, 2019 @ 19:13:19
  Author: archange
Revision: 511941

archrelease: copy trunk to community-x86_64

Added:
  netcdf-fortran/repos/community-x86_64/PKGBUILD
(from rev 511940, netcdf-fortran/trunk/PKGBUILD)
Deleted:
  netcdf-fortran/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 19:12:57 UTC (rev 511940)
+++ PKGBUILD2019-09-27 19:13:19 UTC (rev 511941)
@@ -1,39 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Maintainer: Ronald van Haren 
-# Contributor: damir 
-
-pkgname=netcdf-fortran
-pkgver=4.5.1
-pkgrel=1
-pkgdesc="NetCDF fortran bindings"
-arch=(x86_64)
-url="https://github.com/Unidata/netcdf-fortran";
-license=(custom)
-depends=(gcc-libs netcdf curl)
-makedepends=(gcc-fortran doxygen)
-checkdepends=(valgrind)
-options=(!makeflags staticlibs)
-source=(${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('9ed063aaa91b209d3d2f57c44d6aa01128c28643a991b99c8bbdfbd52e1dc931')
-
-build() {
-cd ${pkgname}-${pkgver}
-./configure \
---prefix=/usr \
---enable-extra-tests \
---enable-extra-example-tests \
---enable-large-file-tests \
---enable-valgrind-tests
-make
-}
-
-check() {
-cd ${pkgname}-${pkgver}
-make check
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
-install -Dm644 COPYRIGHT -t "${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: netcdf-fortran/repos/community-x86_64/PKGBUILD (from rev 511940, 
netcdf-fortran/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-27 19:13:19 UTC (rev 511941)
@@ -0,0 +1,39 @@
+# Maintainer: Bruno Pagani 
+# Maintainer: Ronald van Haren 
+# Contributor: damir 
+
+pkgname=netcdf-fortran
+pkgver=4.5.2
+pkgrel=1
+pkgdesc="NetCDF fortran bindings"
+arch=(x86_64)
+url="https://github.com/Unidata/netcdf-fortran";
+license=(custom)
+depends=(gcc-libs netcdf curl)
+makedepends=(gcc-fortran doxygen)
+checkdepends=(valgrind)
+options=(!makeflags staticlibs)
+source=(${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('0b05c629c70d6d224a3be28699c066bfdfeae477aea211fbf034d973a8309b49')
+
+build() {
+cd ${pkgname}-${pkgver}
+./configure \
+--prefix=/usr \
+--enable-extra-tests \
+--enable-extra-example-tests \
+--enable-large-file-tests \
+--enable-valgrind-tests
+make
+}
+
+check() {
+cd ${pkgname}-${pkgver}
+make check
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+make DESTDIR="${pkgdir}" install
+install -Dm644 COPYRIGHT -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}


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

2019-09-27 Thread Bruno Pagani via arch-commits
Date: Friday, September 27, 2019 @ 19:12:57
  Author: archange
Revision: 511940

upgpkg: netcdf-fortran 4.5.2-1

Modified:
  netcdf-fortran/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 19:00:26 UTC (rev 511939)
+++ PKGBUILD2019-09-27 19:12:57 UTC (rev 511940)
@@ -3,7 +3,7 @@
 # Contributor: damir 
 
 pkgname=netcdf-fortran
-pkgver=4.5.1
+pkgver=4.5.2
 pkgrel=1
 pkgdesc="NetCDF fortran bindings"
 arch=(x86_64)
@@ -14,7 +14,7 @@
 checkdepends=(valgrind)
 options=(!makeflags staticlibs)
 source=(${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('9ed063aaa91b209d3d2f57c44d6aa01128c28643a991b99c8bbdfbd52e1dc931')
+sha256sums=('0b05c629c70d6d224a3be28699c066bfdfeae477aea211fbf034d973a8309b49')
 
 build() {
 cd ${pkgname}-${pkgver}


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

2019-09-27 Thread Bruno Pagani via arch-commits
Date: Friday, September 27, 2019 @ 19:00:26
  Author: archange
Revision: 511939

archrelease: copy trunk to community-x86_64

Added:
  knot/repos/community-x86_64/PKGBUILD
(from rev 511938, knot/trunk/PKGBUILD)
Deleted:
  knot/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 19:00:05 UTC (rev 511938)
+++ PKGBUILD2019-09-27 19:00:26 UTC (rev 511939)
@@ -1,61 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: Ondřej Surý 
-# Contributor: Julian Brost 
-# Contributor: Oleander Reis 
-# Contributor: Otto Sabart 
-
-pkgname=knot
-pkgver=2.8.3
-pkgrel=1
-pkgdesc="High-performance authoritative-only DNS server"
-arch=(x86_64)
-url="https://www.knot-dns.cz/";
-license=(GPL3)
-depends=(libedit gnutls liburcu lmdb
- libidn2 systemd libcap-ng
- fstrm protobuf-c libmaxminddb)
-backup=('etc/knot/knot.conf')
-source=("https://secure.nic.cz/files/knot-dns/${pkgname}-${pkgver}.tar.xz"{,.asc})
-sha256sums=(8a62d81e5cf3df938f469b60ed4e46d9161007c2b89fbf7ae07525fa68368bad 
SKIP)
-validpgpkeys=(742FA4E95829B6C5EAC6B85710BB7AF6FEBBD6AB) # Daniel Salzman 

-
-build() {
-cd ${pkgname}-${pkgver}
-
-./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc \
---localstatedir=/var/lib \
---libexecdir=/usr/lib/knot \
---with-rundir=/run/knot \
---with-storage=/var/lib/knot \
---enable-recvmmsg \
---enable-dnstap \
---enable-systemd \
---enable-reuseport \
---disable-silent-rules
-
-make
-}
-
-check() {
-cd ${pkgname}-${pkgver}
-make check
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-
-make DESTDIR="${pkgdir}" install
-
-# Don’t keep those empty dir, manage them with systemd-tmpfiles instead
-rmdir "${pkgdir}"/{var/{lib/{knot/,},},run/{knot/,}}
-
-rm "${pkgdir}"/etc/knot/example.com.zone
-mv "${pkgdir}"/etc/knot/{knot.sample.conf,knot.conf}
-
-install -Dm644 distro/common/knot.service -t 
"${pkgdir}"/usr/lib/systemd/system/
-install -Dm644 distro/arch/knot.tmpfiles.arch 
"${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf
-install -Dm644 distro/arch/knot.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/${pkgname}.conf
-}

Copied: knot/repos/community-x86_64/PKGBUILD (from rev 511938, 
knot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-27 19:00:26 UTC (rev 511939)
@@ -0,0 +1,61 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Ondřej Surý 
+# Contributor: Julian Brost 
+# Contributor: Oleander Reis 
+# Contributor: Otto Sabart 
+
+pkgname=knot
+pkgver=2.8.4
+pkgrel=1
+pkgdesc="High-performance authoritative-only DNS server"
+arch=(x86_64)
+url="https://www.knot-dns.cz/";
+license=(GPL3)
+depends=(libedit gnutls liburcu lmdb
+ libidn2 systemd libcap-ng
+ fstrm protobuf-c libmaxminddb)
+backup=('etc/knot/knot.conf')
+source=("https://secure.nic.cz/files/knot-dns/${pkgname}-${pkgver}.tar.xz"{,.asc})
+sha256sums=(541e7e43503765c91405c5797b3838103bb656154712e69b3f959c6ab0e700a9 
SKIP)
+validpgpkeys=(742FA4E95829B6C5EAC6B85710BB7AF6FEBBD6AB) # Daniel Salzman 

+
+build() {
+cd ${pkgname}-${pkgver}
+
+./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--localstatedir=/var/lib \
+--libexecdir=/usr/lib/knot \
+--with-rundir=/run/knot \
+--with-storage=/var/lib/knot \
+--enable-recvmmsg \
+--enable-dnstap \
+--enable-systemd \
+--enable-reuseport \
+--disable-silent-rules
+
+make
+}
+
+check() {
+cd ${pkgname}-${pkgver}
+make check
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+
+make DESTDIR="${pkgdir}" install
+
+# Don’t keep those empty dir, manage them with systemd-tmpfiles instead
+rmdir "${pkgdir}"/{var/{lib/{knot/,},},run/{knot/,}}
+
+rm "${pkgdir}"/etc/knot/example.com.zone
+mv "${pkgdir}"/etc/knot/{knot.sample.conf,knot.conf}
+
+install -Dm644 distro/common/knot.service -t 
"${pkgdir}"/usr/lib/systemd/system/
+install -Dm644 distro/arch/knot.tmpfiles.arch 
"${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf
+install -Dm644 distro/arch/knot.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/${pkgname}.conf
+}


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

2019-09-27 Thread Bruno Pagani via arch-commits
Date: Friday, September 27, 2019 @ 19:00:05
  Author: archange
Revision: 511938

upgpkg: knot 2.8.4-1

Modified:
  knot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 18:40:55 UTC (rev 511937)
+++ PKGBUILD2019-09-27 19:00:05 UTC (rev 511938)
@@ -5,7 +5,7 @@
 # Contributor: Otto Sabart 
 
 pkgname=knot
-pkgver=2.8.3
+pkgver=2.8.4
 pkgrel=1
 pkgdesc="High-performance authoritative-only DNS server"
 arch=(x86_64)
@@ -16,7 +16,7 @@
  fstrm protobuf-c libmaxminddb)
 backup=('etc/knot/knot.conf')
 
source=("https://secure.nic.cz/files/knot-dns/${pkgname}-${pkgver}.tar.xz"{,.asc})
-sha256sums=(8a62d81e5cf3df938f469b60ed4e46d9161007c2b89fbf7ae07525fa68368bad 
SKIP)
+sha256sums=(541e7e43503765c91405c5797b3838103bb656154712e69b3f959c6ab0e700a9 
SKIP)
 validpgpkeys=(742FA4E95829B6C5EAC6B85710BB7AF6FEBBD6AB) # Daniel Salzman 

 
 build() {


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

2019-09-27 Thread Bruno Pagani via arch-commits
Date: Friday, September 27, 2019 @ 18:40:55
  Author: archange
Revision: 511937

archrelease: copy trunk to community-x86_64

Added:
  displaycal/repos/community-x86_64/PKGBUILD
(from rev 511936, displaycal/trunk/PKGBUILD)
Deleted:
  displaycal/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 18:40:35 UTC (rev 511936)
+++ PKGBUILD2019-09-27 18:40:55 UTC (rev 511937)
@@ -1,31 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: Timothy Redaelli 
-# Contributor: Cedric Girard 
-# Contributor: foxbunny 
-
-_pkgname=DisplayCAL
-pkgname=displaycal
-pkgver=3.8.6.0
-pkgrel=1
-pkgdesc="Open Source Display Calibration and Characterization powered by 
Argyll CMS (Formerly known as dispcalGUI)"
-arch=(x86_64)
-url="https://displaycal.net/";
-license=(GPL3)
-depends=(argyllcms python2-wxpython3 python2-numpy python2-gobject)
-makedepends=(libx11 libxrandr libxinerama libxxf86vm python2-setuptools)
-optdepends=('gnome-color-manager: profile installation for GNOME'
-'colord-kde: profile installation for Plasma')
-source=("https://downloads.sourceforge.net/dispcalgui/${_pkgname}-${pkgver}.tar.gz";)
-sha256sums=('7be913f4a13f4461f5cdcea57395ba99ad4efaa6206e891ed1c69c78626305fb')
-
-build() {
-cd ${_pkgname}-${pkgver}
-python2 setup.py build
-}
-
-package() {
-cd ${_pkgname}-${pkgver}
-python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-# udev rules are shipped with argyllcms
-rm -r "${pkgdir}"/etc/udev/
-}

Copied: displaycal/repos/community-x86_64/PKGBUILD (from rev 511936, 
displaycal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-27 18:40:55 UTC (rev 511937)
@@ -0,0 +1,31 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Timothy Redaelli 
+# Contributor: Cedric Girard 
+# Contributor: foxbunny 
+
+_pkgname=DisplayCAL
+pkgname=displaycal
+pkgver=3.8.7.0
+pkgrel=1
+pkgdesc="Open Source Display Calibration and Characterization powered by 
Argyll CMS (Formerly known as dispcalGUI)"
+arch=(x86_64)
+url="https://displaycal.net/";
+license=(GPL3)
+depends=(argyllcms python2-wxpython3 python2-numpy python2-gobject)
+makedepends=(libx11 libxrandr libxinerama libxxf86vm python2-setuptools)
+optdepends=('gnome-color-manager: profile installation for GNOME'
+'colord-kde: profile installation for Plasma')
+source=("https://downloads.sourceforge.net/dispcalgui/${_pkgname}-${pkgver}.tar.gz";)
+sha256sums=('03b472588a7751e9c1b73cc2c112662718de1f3d74739fd97550302396a4f4a9')
+
+build() {
+cd ${_pkgname}-${pkgver}
+python2 setup.py build
+}
+
+package() {
+cd ${_pkgname}-${pkgver}
+python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+# udev rules are shipped with argyllcms
+rm -r "${pkgdir}"/etc/udev/
+}


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

2019-09-27 Thread Bruno Pagani via arch-commits
Date: Friday, September 27, 2019 @ 18:40:35
  Author: archange
Revision: 511936

upgpkg: displaycal 3.8.7.0-1

Modified:
  displaycal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 18:34:53 UTC (rev 511935)
+++ PKGBUILD2019-09-27 18:40:35 UTC (rev 511936)
@@ -5,7 +5,7 @@
 
 _pkgname=DisplayCAL
 pkgname=displaycal
-pkgver=3.8.6.0
+pkgver=3.8.7.0
 pkgrel=1
 pkgdesc="Open Source Display Calibration and Characterization powered by 
Argyll CMS (Formerly known as dispcalGUI)"
 arch=(x86_64)
@@ -16,7 +16,7 @@
 optdepends=('gnome-color-manager: profile installation for GNOME'
 'colord-kde: profile installation for Plasma')
 
source=("https://downloads.sourceforge.net/dispcalgui/${_pkgname}-${pkgver}.tar.gz";)
-sha256sums=('7be913f4a13f4461f5cdcea57395ba99ad4efaa6206e891ed1c69c78626305fb')
+sha256sums=('03b472588a7751e9c1b73cc2c112662718de1f3d74739fd97550302396a4f4a9')
 
 build() {
 cd ${_pkgname}-${pkgver}


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

2019-09-27 Thread Daniel M. Capella via arch-commits
Date: Friday, September 27, 2019 @ 18:34:32
  Author: polyzen
Revision: 511934

upgpkg: youtube-dl 2019.09.28-1

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 18:30:09 UTC (rev 511933)
+++ PKGBUILD2019-09-27 18:34:32 UTC (rev 511934)
@@ -3,7 +3,7 @@
 # Contributor: Eric Bélanger 
 
 pkgname=youtube-dl
-pkgver=2019.09.12.1
+pkgver=2019.09.28
 pkgrel=1
 pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
 arch=('any')
@@ -15,7 +15,7 @@
 'atomicparsley: for embedding thumbnails into m4a files'
 'python-pycryptodome: for hlsnative downloader')
 
source=(https://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('ce27a84e861e4d234768bf3a466d3e0f9af7c58f2aac84b940feb2ce6640fb40'
+sha256sums=('50a0dfbf6d86eb2b7b461fd3aaa4fc2bc653d8bc0c728a9ead564f6ae602335b'
 'SKIP')
 validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
   'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M.


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

2019-09-27 Thread Daniel M. Capella via arch-commits
Date: Friday, September 27, 2019 @ 18:34:53
  Author: polyzen
Revision: 511935

archrelease: copy trunk to community-any

Added:
  youtube-dl/repos/community-any/PKGBUILD
(from rev 511934, youtube-dl/trunk/PKGBUILD)
Deleted:
  youtube-dl/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 18:34:32 UTC (rev 511934)
+++ PKGBUILD2019-09-27 18:34:53 UTC (rev 511935)
@@ -1,36 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Maintainer: Daniel M. Capella 
-# Contributor: Eric Bélanger 
-
-pkgname=youtube-dl
-pkgver=2019.09.12.1
-pkgrel=1
-pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
-arch=('any')
-url="https://rg3.github.io/youtube-dl/";
-license=('custom')
-depends=('python' 'python-setuptools')
-optdepends=('ffmpeg: for video post-processing'
-'rtmpdump: for rtmp streams support'
-'atomicparsley: for embedding thumbnails into m4a files'
-'python-pycryptodome: for hlsnative downloader')
-source=(https://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('ce27a84e861e4d234768bf3a466d3e0f9af7c58f2aac84b940feb2ce6640fb40'
-'SKIP')
-validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
-  'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M.
-
-prepare() {
-  cd ${pkgname}
-  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
-  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
-}
-
-package() {
-  cd ${pkgname}
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
- "${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
-  install -Dm644 youtube-dl.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_youtube-dl"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: youtube-dl/repos/community-any/PKGBUILD (from rev 511934, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-27 18:34:53 UTC (rev 511935)
@@ -0,0 +1,36 @@
+# Maintainer: Jaroslav Lichtblau 
+# Maintainer: Daniel M. Capella 
+# Contributor: Eric Bélanger 
+
+pkgname=youtube-dl
+pkgver=2019.09.28
+pkgrel=1
+pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
+arch=('any')
+url="https://rg3.github.io/youtube-dl/";
+license=('custom')
+depends=('python' 'python-setuptools')
+optdepends=('ffmpeg: for video post-processing'
+'rtmpdump: for rtmp streams support'
+'atomicparsley: for embedding thumbnails into m4a files'
+'python-pycryptodome: for hlsnative downloader')
+source=(https://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('50a0dfbf6d86eb2b7b461fd3aaa4fc2bc653d8bc0c728a9ead564f6ae602335b'
+'SKIP')
+validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
+  'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M.
+
+prepare() {
+  cd ${pkgname}
+  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
+  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --root="${pkgdir}/" --optimize=1
+  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
+ "${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
+  install -Dm644 youtube-dl.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_youtube-dl"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


[arch-commits] Commit in perl-text-template/repos/community-any (PKGBUILD PKGBUILD)

2019-09-27 Thread Felix Yan via arch-commits
Date: Friday, September 27, 2019 @ 18:30:09
  Author: felixonmars
Revision: 511933

archrelease: copy trunk to community-any

Added:
  perl-text-template/repos/community-any/PKGBUILD
(from rev 511932, perl-text-template/trunk/PKGBUILD)
Deleted:
  perl-text-template/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 18:28:59 UTC (rev 511932)
+++ PKGBUILD2019-09-27 18:30:09 UTC (rev 511933)
@@ -1,32 +0,0 @@
-# Contributor: Sébastien Luttringer 
-
-pkgname=perl-text-template
-pkgver=1.57
-pkgrel=1
-pkgdesc='Expand template text with embedded perl'
-arch=('any')
-url='https://search.cpan.org/dist/Text-Template'
-license=('PerlArtistic' 'GPL')
-depends=('perl')
-checkdepends=('perl-test-warnings' 'perl-test-more-utf8')
-options=('!emptydirs')
-source=("https://search.cpan.org/CPAN/authors/id/M/MS/MSCHOUT/Text-Template-$pkgver.tar.gz";)
-sha512sums=('5be99605693560a3d6121f68caf40887256490fe12fae838ab939fde0cb273fff2bb5d10904095d34de63985188b5a0ae4a253b6af7ddb2ce4c5de8b7f50b762')
-
-build() {
-  cd Text-Template-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd Text-Template-$pkgver
-  make test
-}
-
-package() {
-  cd Text-Template-$pkgver
-  make install DESTDIR="$pkgdir/"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: perl-text-template/repos/community-any/PKGBUILD (from rev 511932, 
perl-text-template/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-27 18:30:09 UTC (rev 511933)
@@ -0,0 +1,32 @@
+# Contributor: Sébastien Luttringer 
+
+pkgname=perl-text-template
+pkgver=1.58
+pkgrel=1
+pkgdesc='Expand template text with embedded perl'
+arch=('any')
+url='https://search.cpan.org/dist/Text-Template'
+license=('PerlArtistic' 'GPL')
+depends=('perl')
+checkdepends=('perl-test-warnings' 'perl-test-more-utf8')
+options=('!emptydirs')
+source=("https://search.cpan.org/CPAN/authors/id/M/MS/MSCHOUT/Text-Template-$pkgver.tar.gz";)
+sha512sums=('23bf03529c7607806c16573b5c0d08ba0b87cf7eb859538d1944bc13952741a88c15588e8de173053a51640c5bdad99c5cc246a67cc05be7eff32853887fbb11')
+
+build() {
+  cd Text-Template-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd Text-Template-$pkgver
+  make test
+}
+
+package() {
+  cd Text-Template-$pkgver
+  make install DESTDIR="$pkgdir/"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in perl-text-template/trunk (PKGBUILD)

2019-09-27 Thread Felix Yan via arch-commits
Date: Friday, September 27, 2019 @ 18:28:59
  Author: felixonmars
Revision: 511932

upgpkg: perl-text-template 1.58-1

Modified:
  perl-text-template/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 18:28:23 UTC (rev 511931)
+++ PKGBUILD2019-09-27 18:28:59 UTC (rev 511932)
@@ -1,7 +1,7 @@
 # Contributor: Sébastien Luttringer 
 
 pkgname=perl-text-template
-pkgver=1.57
+pkgver=1.58
 pkgrel=1
 pkgdesc='Expand template text with embedded perl'
 arch=('any')
@@ -11,7 +11,7 @@
 checkdepends=('perl-test-warnings' 'perl-test-more-utf8')
 options=('!emptydirs')
 
source=("https://search.cpan.org/CPAN/authors/id/M/MS/MSCHOUT/Text-Template-$pkgver.tar.gz";)
-sha512sums=('5be99605693560a3d6121f68caf40887256490fe12fae838ab939fde0cb273fff2bb5d10904095d34de63985188b5a0ae4a253b6af7ddb2ce4c5de8b7f50b762')
+sha512sums=('23bf03529c7607806c16573b5c0d08ba0b87cf7eb859538d1944bc13952741a88c15588e8de173053a51640c5bdad99c5cc246a67cc05be7eff32853887fbb11')
 
 build() {
   cd Text-Template-$pkgver


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

2019-09-27 Thread Felix Yan via arch-commits
Date: Friday, September 27, 2019 @ 18:28:23
  Author: felixonmars
Revision: 511931

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 18:28:02 UTC (rev 511930)
+++ PKGBUILD2019-09-27 18:28:23 UTC (rev 511931)
@@ -1,30 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-awkward
-pkgver=0.12.10
-pkgrel=1
-pkgdesc="Manipulate jagged, chunky, and/or bitmasked arrays as easily as Numpy"
-url="https://github.com/scikit-hep/awkward-array";
-license=('BSD')
-arch=('any')
-depends=('python-numpy')
-makedepends=('python-setuptools' 'python-pytest-runner')
-checkdepends=('python-h5py')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/scikit-hep/awkward-array/archive/$pkgver.tar.gz";)
-sha512sums=('07e687dd5acf9b888cdf524c7ab1e30c93f2808e41295a2de049e2e2064815b52e0ddab685dfd53fccc3f9915cec5ee21cd28f197834d042ba2c256a51e51dd7')
-
-build() {
-  cd awkward-array-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd awkward-array-$pkgver
-  python setup.py pytest
-}
-
-package() {
-  cd awkward-array-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-awkward/repos/community-any/PKGBUILD (from rev 511930, 
python-awkward/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-27 18:28:23 UTC (rev 511931)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-awkward
+pkgver=0.12.11
+pkgrel=1
+pkgdesc="Manipulate jagged, chunky, and/or bitmasked arrays as easily as Numpy"
+url="https://github.com/scikit-hep/awkward-array";
+license=('BSD')
+arch=('any')
+depends=('python-numpy')
+makedepends=('python-setuptools' 'python-pytest-runner')
+checkdepends=('python-h5py')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/scikit-hep/awkward-array/archive/$pkgver.tar.gz";)
+sha512sums=('024ec07275d733ae361decab440d19af9476e1eafa8498163b975face7be7412defe35494b6d2cfa9992ed3be909d6e576c3649682e47db8469eec8047a550e5')
+
+build() {
+  cd awkward-array-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd awkward-array-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd awkward-array-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-09-27 Thread Felix Yan via arch-commits
Date: Friday, September 27, 2019 @ 18:28:02
  Author: felixonmars
Revision: 511930

upgpkg: python-awkward 0.12.11-1

Modified:
  python-awkward/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 17:09:54 UTC (rev 511929)
+++ PKGBUILD2019-09-27 18:28:02 UTC (rev 511930)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-awkward
-pkgver=0.12.10
+pkgver=0.12.11
 pkgrel=1
 pkgdesc="Manipulate jagged, chunky, and/or bitmasked arrays as easily as Numpy"
 url="https://github.com/scikit-hep/awkward-array";
@@ -11,7 +11,7 @@
 makedepends=('python-setuptools' 'python-pytest-runner')
 checkdepends=('python-h5py')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/scikit-hep/awkward-array/archive/$pkgver.tar.gz";)
-sha512sums=('07e687dd5acf9b888cdf524c7ab1e30c93f2808e41295a2de049e2e2064815b52e0ddab685dfd53fccc3f9915cec5ee21cd28f197834d042ba2c256a51e51dd7')
+sha512sums=('024ec07275d733ae361decab440d19af9476e1eafa8498163b975face7be7412defe35494b6d2cfa9992ed3be909d6e576c3649682e47db8469eec8047a550e5')
 
 build() {
   cd awkward-array-$pkgver


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

2019-09-27 Thread Daniel M. Capella via arch-commits
Date: Friday, September 27, 2019 @ 17:09:36
  Author: polyzen
Revision: 511928

upgpkg: firefox-ublock-origin 1.22.4-1

Modified:
  firefox-ublock-origin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 16:14:46 UTC (rev 511927)
+++ PKGBUILD2019-09-27 17:09:36 UTC (rev 511928)
@@ -1,7 +1,7 @@
 # Maintainer: Daniel M. Capella 
 
 pkgname=firefox-ublock-origin
-pkgver=1.22.2
+pkgver=1.22.4
 pkgrel=1
 pkgdesc='Efficient blocker add-on for various browsers. Fast, potent, and lean'
 arch=('any')
@@ -10,7 +10,7 @@
 groups=('firefox-addons')
 
source=("https://addons.cdn.mozilla.net/user-media/addons/607454/ublock_origin-$pkgver-an+fx.xpi";)
 noextract=("${source##*/}")
-sha256sums=('85ceffa542f0fa0ce3b1b481314098d2941413f04d464b70db7ef7c99dc81078')
+sha256sums=('b5b734095af64cf9e019eb117cc97cf7e5c7d18a2f8ea9e3fd8955158c5929d6')
 
 package() {
   install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/ublo...@raymondhill.net.xpi


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

2019-09-27 Thread Daniel M. Capella via arch-commits
Date: Friday, September 27, 2019 @ 17:09:54
  Author: polyzen
Revision: 511929

archrelease: copy trunk to community-any

Added:
  firefox-ublock-origin/repos/community-any/PKGBUILD
(from rev 511928, firefox-ublock-origin/trunk/PKGBUILD)
Deleted:
  firefox-ublock-origin/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 17:09:36 UTC (rev 511928)
+++ PKGBUILD2019-09-27 17:09:54 UTC (rev 511929)
@@ -1,19 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-pkgname=firefox-ublock-origin
-pkgver=1.22.2
-pkgrel=1
-pkgdesc='Efficient blocker add-on for various browsers. Fast, potent, and lean'
-arch=('any')
-url=https://github.com/gorhill/uBlock
-license=('GPL3')
-groups=('firefox-addons')
-source=("https://addons.cdn.mozilla.net/user-media/addons/607454/ublock_origin-$pkgver-an+fx.xpi";)
-noextract=("${source##*/}")
-sha256sums=('85ceffa542f0fa0ce3b1b481314098d2941413f04d464b70db7ef7c99dc81078')
-
-package() {
-  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/ublo...@raymondhill.net.xpi
-}
-
-# vim:set ts=2 sw=2 et:

Copied: firefox-ublock-origin/repos/community-any/PKGBUILD (from rev 511928, 
firefox-ublock-origin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-27 17:09:54 UTC (rev 511929)
@@ -0,0 +1,19 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=firefox-ublock-origin
+pkgver=1.22.4
+pkgrel=1
+pkgdesc='Efficient blocker add-on for various browsers. Fast, potent, and lean'
+arch=('any')
+url=https://github.com/gorhill/uBlock
+license=('GPL3')
+groups=('firefox-addons')
+source=("https://addons.cdn.mozilla.net/user-media/addons/607454/ublock_origin-$pkgver-an+fx.xpi";)
+noextract=("${source##*/}")
+sha256sums=('b5b734095af64cf9e019eb117cc97cf7e5c7d18a2f8ea9e3fd8955158c5929d6')
+
+package() {
+  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/ublo...@raymondhill.net.xpi
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-09-27 Thread Bruno Pagani via arch-commits
Date: Friday, September 27, 2019 @ 16:14:46
  Author: archange
Revision: 511927

archrelease: copy trunk to community-x86_64

Added:
  fractal/repos/community-x86_64/PKGBUILD
(from rev 511926, fractal/trunk/PKGBUILD)
Deleted:
  fractal/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 16:14:33 UTC (rev 511926)
+++ PKGBUILD2019-09-27 16:14:46 UTC (rev 511927)
@@ -1,26 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-pkgname=fractal
-pkgver=4.2.0
-pkgrel=1
-pkgdesc="GTK+ client for Matrix written in Rust"
-arch=(x86_64)
-url="https://wiki.gnome.org/Apps/Fractal";
-license=(GPL3)
-depends=(gtk3 gst-plugins-base-libs gst-plugins-bad gst-editing-services 
gtksourceview3 gspell libhandy)
-optdepends=('gnome-keyring: password storage (or use any other service 
implementing org.freedesktop.secrets)')
-makedepends=(meson rust)
-_md5=0dcc45d8a1f8f286238d7def68531a03
-source=("https://gitlab.gnome.org/GNOME/fractal/uploads/${_md5}/${pkgname}-${pkgver}.tar.xz";)
-sha256sums=('ca73a7b611f763fb05a12c80f6473cc69bf8e7c282a3d9a66216108f9ac40d7f')
-
-build() {
-cd ${pkgname}-${pkgver}
-arch-meson . _build
-ninja -C _build
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-DESTDIR="${pkgdir}" ninja -C _build install
-}

Copied: fractal/repos/community-x86_64/PKGBUILD (from rev 511926, 
fractal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-27 16:14:46 UTC (rev 511927)
@@ -0,0 +1,26 @@
+# Maintainer: Bruno Pagani 
+
+pkgname=fractal
+pkgver=4.2.1
+pkgrel=1
+pkgdesc="GTK+ client for Matrix written in Rust"
+arch=(x86_64)
+url="https://wiki.gnome.org/Apps/Fractal";
+license=(GPL3)
+depends=(gtk3 gst-plugins-base-libs gst-plugins-bad gst-editing-services 
gtksourceview4 gspell libhandy)
+optdepends=('gnome-keyring: password storage (or use any other service 
implementing org.freedesktop.secrets)')
+makedepends=(meson rust)
+_md5=b64b7523a811c152b2de11901cfe699e
+source=("https://gitlab.gnome.org/GNOME/fractal/uploads/${_md5}/${pkgname}-${pkgver}.tar.xz";)
+sha256sums=('57a15d5913f76016617ac4a01e5673b55dcd5abc315a656cf847b060a18b1f38')
+
+build() {
+cd ${pkgname}-${pkgver}
+arch-meson . _build
+ninja -C _build
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+DESTDIR="${pkgdir}" ninja -C _build install
+}


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

2019-09-27 Thread Bruno Pagani via arch-commits
Date: Friday, September 27, 2019 @ 16:14:33
  Author: archange
Revision: 511926

upgpkg: fractal 4.2.1-1

Modified:
  fractal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 15:30:05 UTC (rev 511925)
+++ PKGBUILD2019-09-27 16:14:33 UTC (rev 511926)
@@ -1,18 +1,18 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=fractal
-pkgver=4.2.0
+pkgver=4.2.1
 pkgrel=1
 pkgdesc="GTK+ client for Matrix written in Rust"
 arch=(x86_64)
 url="https://wiki.gnome.org/Apps/Fractal";
 license=(GPL3)
-depends=(gtk3 gst-plugins-base-libs gst-plugins-bad gst-editing-services 
gtksourceview3 gspell libhandy)
+depends=(gtk3 gst-plugins-base-libs gst-plugins-bad gst-editing-services 
gtksourceview4 gspell libhandy)
 optdepends=('gnome-keyring: password storage (or use any other service 
implementing org.freedesktop.secrets)')
 makedepends=(meson rust)
-_md5=0dcc45d8a1f8f286238d7def68531a03
+_md5=b64b7523a811c152b2de11901cfe699e
 
source=("https://gitlab.gnome.org/GNOME/fractal/uploads/${_md5}/${pkgname}-${pkgver}.tar.xz";)
-sha256sums=('ca73a7b611f763fb05a12c80f6473cc69bf8e7c282a3d9a66216108f9ac40d7f')
+sha256sums=('57a15d5913f76016617ac4a01e5673b55dcd5abc315a656cf847b060a18b1f38')
 
 build() {
 cd ${pkgname}-${pkgver}


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

2019-09-27 Thread Chih-Hsuan Yen via arch-commits
Date: Friday, September 27, 2019 @ 15:30:05
  Author: yan12125
Revision: 511925

archrelease: copy trunk to community-x86_64

Added:
  libchewing/repos/community-x86_64/PKGBUILD
(from rev 511924, libchewing/trunk/PKGBUILD)
Deleted:
  libchewing/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 15:29:48 UTC (rev 511924)
+++ PKGBUILD2019-09-27 15:30:05 UTC (rev 511925)
@@ -1,25 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: whisky 
-# Contributor: damir 
-
-pkgname=libchewing
-pkgver=0.5.1
-pkgrel=2
-pkgdesc='Intelligent Chinese phonetic input method'
-url='http://chewing.im/'
-arch=('x86_64')
-license=('GPL')
-depends=('sqlite')
-source=("https://github.com/chewing/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.bz2";)
-sha256sums=('9708c63415fa6034435c0f38100e7d30d0e1bac927f67bec6dfeb3fef016172b')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-}

Copied: libchewing/repos/community-x86_64/PKGBUILD (from rev 511924, 
libchewing/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-27 15:30:05 UTC (rev 511925)
@@ -0,0 +1,35 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: Gaetan Bisson 
+# Contributor: whisky 
+# Contributor: damir 
+
+pkgname=libchewing
+pkgver=0.5.1
+pkgrel=3
+pkgdesc='Intelligent Chinese phonetic input method'
+url='http://chewing.im/'
+arch=('x86_64')
+license=('LGPL2.1')
+depends=('sqlite')
+optdepends=(
+  'chewing-editor: view and modify libchewing user phrases database'
+)
+source=("https://github.com/chewing/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.bz2";)
+sha256sums=('9708c63415fa6034435c0f38100e7d30d0e1bac927f67bec6dfeb3fef016172b')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  # parallel testing is broken 
(https://github.com/chewing/libchewing/issues/293)
+  make -j1 check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}


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

2019-09-27 Thread Chih-Hsuan Yen via arch-commits
Date: Friday, September 27, 2019 @ 15:29:48
  Author: yan12125
Revision: 511924

upgpkg: libchewing 0.5.1-3

* Correct license; it has been LGPL 2.1 since 0.4.0 [1]
* List myself as the maintainer
* Mention chewing-editor in optdepends
* Add check()
* Style: tabs to spaces and remove unnecessary $srcdir

[1] 
https://github.com/chewing/libchewing/commit/c0414d2f1cc8869a811f49878808232b27d8bf5e

Modified:
  libchewing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 13:10:14 UTC (rev 511923)
+++ PKGBUILD2019-09-27 15:29:48 UTC (rev 511924)
@@ -1,25 +1,35 @@
-# Maintainer: Gaetan Bisson 
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: Gaetan Bisson 
 # Contributor: whisky 
 # Contributor: damir 
 
 pkgname=libchewing
 pkgver=0.5.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Intelligent Chinese phonetic input method'
 url='http://chewing.im/'
 arch=('x86_64')
-license=('GPL')
+license=('LGPL2.1')
 depends=('sqlite')
+optdepends=(
+  'chewing-editor: view and modify libchewing user phrases database'
+)
 
source=("https://github.com/chewing/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.bz2";)
 sha256sums=('9708c63415fa6034435c0f38100e7d30d0e1bac927f67bec6dfeb3fef016172b')
 
 build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure --prefix=/usr
-   make
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
 }
 
+check() {
+  cd ${pkgname}-${pkgver}
+  # parallel testing is broken 
(https://github.com/chewing/libchewing/issues/293)
+  make -j1 check
+}
+
 package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
 }


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

2019-09-27 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, September 27, 2019 @ 13:10:14
  Author: svenstaro
Revision: 511923

archrelease: copy trunk to community-x86_64

Added:
  emscripten/repos/community-x86_64/PKGBUILD
(from rev 511922, emscripten/trunk/PKGBUILD)
  emscripten/repos/community-x86_64/emscripten.install
(from rev 511922, emscripten/trunk/emscripten.install)
  emscripten/repos/community-x86_64/emscripten.sh
(from rev 511922, emscripten/trunk/emscripten.sh)
Deleted:
  emscripten/repos/community-x86_64/PKGBUILD
  emscripten/repos/community-x86_64/emscripten.install
  emscripten/repos/community-x86_64/emscripten.sh

+
 PKGBUILD   |  146 +--
 emscripten.install |   26 -
 emscripten.sh  |4 -
 3 files changed, 89 insertions(+), 87 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 13:10:05 UTC (rev 511922)
+++ PKGBUILD2019-09-27 13:10:14 UTC (rev 511923)
@@ -1,72 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: carstene1ns  - http://git.io/ctPKG
-# Contributor: Stefan Husmann 
-# Contributor: Vlad Kolotvin 
-
-pkgname=emscripten
-pkgver=1.38.43
-pkgrel=1
-pkgdesc="LLVM-based project that compiles C and C++ into highly-optimizable 
JavaScript for the web"
-arch=('x86_64')
-url="http://emscripten.org";
-license=('custom')
-depends=(nodejs python binaryen)
-makedepends=(cmake libxml2 git ninja)
-optdepends=('java-environment: for using clojure'
-'ruby: for using websockify addon'
-'cmake: for emcc --show-ports')
-install=emscripten.install
-source=(emscripten-$pkgver.tar.gz::"https://github.com/kripken/emscripten/archive/$pkgver.tar.gz";
-git+https://github.com/llvm/llvm-project.git#commit=58dbe47
-"emscripten.sh")
-sha512sums=('6155ed0f9affa4e541131c268b12c1660c5e2d42ac3f3a45094386a05aaffe13ef713e6eab85dc665739137a024581e52eaa8304837c4a91c43e34b0821ba8e4'
-'SKIP'
-
'fbe9b95b8d18e7d0c6ec5fded6f11b72fbe4ddd0391e5704b281ba79c479f3563e82423b790ddf3f0554a23d659193ca898a81fe3db509f16c30c7188b790e4d')
-
-prepare() {
-  cd "$srcdir"/emscripten-$pkgver
-
-  sed -i 's|EMSCRIPTEN_ROOT.*|EMSCRIPTEN_ROOT = "/usr/lib/emscripten"|g' 
tools/settings_template_readonly.py
-  sed -i 's|LLVM_ROOT.*|LLVM_ROOT = "/usr/lib/emscripten-llvm"|g' 
tools/settings_template_readonly.py
-
-  mkdir "$srcdir"/llvm-project/llvm/build
-}
-
-build() {
-  cd "$srcdir"/llvm-project/llvm/build
-
-  # Inspired from 
https://github.com/WebAssembly/waterfall/blob/58e343a47ea02cb6daf19eefbdf626b23c24980c/src/build.py#L790
-  cmake .. \
--GNinja \
--DPYTHON_EXECUTABLE=/usr/bin/python \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=YES \
--DLLVM_TARGETS_TO_BUILD="X86;WebAssembly" \
--DLLVM_BUILD_RUNTIME=OFF \
--DLLVM_TOOL_LTO_BUILD=ON \
--DLLVM_INSTALL_TOOLCHAIN_ONLY=ON \
--DLLVM_INCLUDE_EXAMPLES=OFF \
--DLLVM_INCLUDE_TESTS=OFF \
--DLLVM_ENABLE_PROJECTS="lld;clang" \
--DCLANG_INCLUDE_TESTS=OFF
-  ninja
-}
-
-package() {
-  # Install LLVM stuff according to 
https://github.com/emscripten-core/emscripten/blob/incoming/docs/process.md
-  install -d "$pkgdir"/usr/lib
-  cp -r "$srcdir"/llvm-project/llvm/build/bin "$pkgdir"/usr/lib/emscripten-llvm
-
-  # Install emscripten
-  cd "$srcdir"/emscripten-$pkgver
-  install -d "$pkgdir"/usr/lib/emscripten
-  cp -rup em* cmake site src system third_party tools 
"$pkgdir"/usr/lib/emscripten
-
-  # Remove clutter
-  rm "$pkgdir"/usr/lib/emscripten/*.bat
-
-  install -d "$pkgdir"/usr/share/doc
-  ln -s /usr/lib/emscripten/site/source/docs "$pkgdir"/usr/share/doc/$pkgname
-  install -Dm755 "$srcdir"/emscripten.sh "$pkgdir"/etc/profile.d/emscripten.sh
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: emscripten/repos/community-x86_64/PKGBUILD (from rev 511922, 
emscripten/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-27 13:10:14 UTC (rev 511923)
@@ -0,0 +1,74 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: carstene1ns  - http://git.io/ctPKG
+# Contributor: Stefan Husmann 
+# Contributor: Vlad Kolotvin 
+
+pkgname=emscripten
+pkgver=1.38.46
+pkgrel=1
+pkgdesc="LLVM-based project that compiles C and C++ into highly-optimizable 
JavaScript for the web"
+arch=('x86_64')
+url="http://emscripten.org";
+license=('custom')
+depends=(nodejs python binaryen)
+makedepends=(cmake libxml2 git ninja)
+optdepends=('java-environment: for using clojure'
+'ruby: for using websockify addon'
+'cmake: for emcc --show-ports')
+install=emscripten.install
+# Get commit SHAs from here:
+# 
https://github.com/emscripten-core/emscripten/blob/incoming/docs/process.md#packaging-emscripten
+source=(emscripten-$pkgver.tar.gz::"https://github.com/kripken/emscripten/archive/$pkgver.tar.gz";
+
git+

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

2019-09-27 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, September 27, 2019 @ 13:10:05
  Author: svenstaro
Revision: 511922

upgpkg: emscripten 1.38.46-1

Modified:
  emscripten/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 12:53:22 UTC (rev 511921)
+++ PKGBUILD2019-09-27 13:10:05 UTC (rev 511922)
@@ -1,10 +1,10 @@
-# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Sven-Hendrik Haase 
 # Contributor: carstene1ns  - http://git.io/ctPKG
 # Contributor: Stefan Husmann 
 # Contributor: Vlad Kolotvin 
 
 pkgname=emscripten
-pkgver=1.38.43
+pkgver=1.38.46
 pkgrel=1
 pkgdesc="LLVM-based project that compiles C and C++ into highly-optimizable 
JavaScript for the web"
 arch=('x86_64')
@@ -16,10 +16,12 @@
 'ruby: for using websockify addon'
 'cmake: for emcc --show-ports')
 install=emscripten.install
+# Get commit SHAs from here:
+# 
https://github.com/emscripten-core/emscripten/blob/incoming/docs/process.md#packaging-emscripten
 
source=(emscripten-$pkgver.tar.gz::"https://github.com/kripken/emscripten/archive/$pkgver.tar.gz";
-git+https://github.com/llvm/llvm-project.git#commit=58dbe47
+
git+https://github.com/llvm/llvm-project.git#commit=33ef687d94604aeb73bedbcf3050524465a3439f
 "emscripten.sh")
-sha512sums=('6155ed0f9affa4e541131c268b12c1660c5e2d42ac3f3a45094386a05aaffe13ef713e6eab85dc665739137a024581e52eaa8304837c4a91c43e34b0821ba8e4'
+sha512sums=('97f12b34ed840f2a9f44f20df0d97b512b8b95cabe304cc422b703c1d1e57e956aa382bcb251dba753d66d9bdf8d66a66f6a8ee3a8e919e234b5fbed7032409c'
 'SKIP'
 
'fbe9b95b8d18e7d0c6ec5fded6f11b72fbe4ddd0391e5704b281ba79c479f3563e82423b790ddf3f0554a23d659193ca898a81fe3db509f16c30c7188b790e4d')
 


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

2019-09-27 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, September 27, 2019 @ 12:53:22
  Author: svenstaro
Revision: 511921

archrelease: copy trunk to community-x86_64

Added:
  binaryen/repos/community-x86_64/PKGBUILD
(from rev 511920, binaryen/trunk/PKGBUILD)
  binaryen/repos/community-x86_64/binaryen.sh
(from rev 511920, binaryen/trunk/binaryen.sh)
Deleted:
  binaryen/repos/community-x86_64/PKGBUILD
  binaryen/repos/community-x86_64/binaryen.sh

-+
 PKGBUILD|   71 --
 binaryen.sh |   18 +++---
 2 files changed, 44 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 12:53:16 UTC (rev 511920)
+++ PKGBUILD2019-09-27 12:53:22 UTC (rev 511921)
@@ -1,36 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Dario Ostuni 
-
-pkgname=binaryen
-pkgver=87
-pkgrel=1
-pkgdesc="Compiler infrastructure and toolchain library for WebAssembly, in C++"
-arch=('x86_64')
-url="https://github.com/WebAssembly/binaryen";
-license=('MIT')
-depends=()
-makedepends=(cmake ninja python)
-source=("https://github.com/WebAssembly/binaryen/archive/version_${pkgver}.tar.gz";
-"binaryen.sh")
-sha384sums=('b19f2cec79ff6bea7b3aa929599e7d337af0656aef71a9c37af2e7618e309e8aea718ce5df141fed6ccd3aeb2347a823'
-
'fdf76d46e6ab9b915212bbca7c29e624e209de911b18ecaccc40b99a00360cd12b261f96c8655f02ec4fd28cedffbcac')
-
-prepare() {
-mkdir binaryen-version_${pkgver}/build
-}
-
-build() {
-cd binaryen-version_${pkgver}/build
-
-cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr ..
-ninja
-}
-
-package() {
-cd binaryen-version_${pkgver}/build
-DESTDIR=${pkgdir} ninja install
-mv ${pkgdir}/usr/lib64 ${pkgdir}/usr/lib
-
-install -Dm755 $srcdir/binaryen.sh $pkgdir/etc/profile.d/binaryen.sh
-install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: binaryen/repos/community-x86_64/PKGBUILD (from rev 511920, 
binaryen/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-27 12:53:22 UTC (rev 511921)
@@ -0,0 +1,35 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Dario Ostuni 
+
+pkgname=binaryen
+pkgver=89
+pkgrel=1
+pkgdesc="Compiler infrastructure and toolchain library for WebAssembly, in C++"
+arch=('x86_64')
+url="https://github.com/WebAssembly/binaryen";
+license=('MIT')
+depends=()
+makedepends=(cmake ninja python)
+source=("https://github.com/WebAssembly/binaryen/archive/version_${pkgver}.tar.gz";
+"binaryen.sh")
+sha384sums=('c984854fdff5f0c44a82f75d97850ffa7b1f14362db2335d7548e7313c38accc2beef7df981095dd7a047be2e0dcf435'
+
'fdf76d46e6ab9b915212bbca7c29e624e209de911b18ecaccc40b99a00360cd12b261f96c8655f02ec4fd28cedffbcac')
+
+prepare() {
+mkdir binaryen-version_${pkgver}/build
+}
+
+build() {
+cd binaryen-version_${pkgver}/build
+
+cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr ..
+ninja
+}
+
+package() {
+cd binaryen-version_${pkgver}/build
+DESTDIR=${pkgdir} ninja install
+
+install -Dm755 $srcdir/binaryen.sh $pkgdir/etc/profile.d/binaryen.sh
+install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: binaryen.sh
===
--- binaryen.sh 2019-09-27 12:53:16 UTC (rev 511920)
+++ binaryen.sh 2019-09-27 12:53:22 UTC (rev 511921)
@@ -1,9 +0,0 @@
-#!/bin/sh
-
-# This one is for emscripten.
-export BINARYEN="/usr"
-
-# This one is for binaryen itself.
-export BINARYEN_ROOT="/usr"
-
-# Just agree on one of these god damnit.

Copied: binaryen/repos/community-x86_64/binaryen.sh (from rev 511920, 
binaryen/trunk/binaryen.sh)
===
--- binaryen.sh (rev 0)
+++ binaryen.sh 2019-09-27 12:53:22 UTC (rev 511921)
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+# This one is for emscripten.
+export BINARYEN="/usr"
+
+# This one is for binaryen itself.
+export BINARYEN_ROOT="/usr"
+
+# Just agree on one of these god damnit.


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

2019-09-27 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, September 27, 2019 @ 12:53:16
  Author: svenstaro
Revision: 511920

upgpkg: binaryen 89-1

Modified:
  binaryen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 12:38:43 UTC (rev 511919)
+++ PKGBUILD2019-09-27 12:53:16 UTC (rev 511920)
@@ -2,7 +2,7 @@
 # Contributor: Dario Ostuni 
 
 pkgname=binaryen
-pkgver=87
+pkgver=89
 pkgrel=1
 pkgdesc="Compiler infrastructure and toolchain library for WebAssembly, in C++"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=(cmake ninja python)
 
source=("https://github.com/WebAssembly/binaryen/archive/version_${pkgver}.tar.gz";
 "binaryen.sh")
-sha384sums=('b19f2cec79ff6bea7b3aa929599e7d337af0656aef71a9c37af2e7618e309e8aea718ce5df141fed6ccd3aeb2347a823'
+sha384sums=('c984854fdff5f0c44a82f75d97850ffa7b1f14362db2335d7548e7313c38accc2beef7df981095dd7a047be2e0dcf435'
 
'fdf76d46e6ab9b915212bbca7c29e624e209de911b18ecaccc40b99a00360cd12b261f96c8655f02ec4fd28cedffbcac')
 
 prepare() {
@@ -29,7 +29,6 @@
 package() {
 cd binaryen-version_${pkgver}/build
 DESTDIR=${pkgdir} ninja install
-mv ${pkgdir}/usr/lib64 ${pkgdir}/usr/lib
 
 install -Dm755 $srcdir/binaryen.sh $pkgdir/etc/profile.d/binaryen.sh
 install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE


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

2019-09-27 Thread Maxim Baz via arch-commits
Date: Friday, September 27, 2019 @ 12:38:43
  Author: maximbaz
Revision: 511919

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 12:38:38 UTC (rev 511918)
+++ PKGBUILD2019-09-27 12:38:43 UTC (rev 511919)
@@ -1,39 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-
-_id=browserp...@maximbaz.com
-_name=browserpass-extension
-pkgname=browserpass-firefox
-pkgver=3.2.1
-pkgrel=1
-pkgdesc="Firefox extension for Browserpass, browser extension for zx2c4's pass 
(password manager)"
-arch=('any')
-url="https://github.com/browserpass/${_name}";
-license=('ISC')
-depends=('browserpass')
-source=("${pkgname}-${pkgver}.zip::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip"
-
"${pkgname}-${pkgver}.zip.asc::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip.asc"
-
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE";)
-noextract=("${pkgname}-${pkgver}.zip")
-sha256sums=('682d8cf2bf46022daf196488394c76a5d086155c342a52bd8c3a91faad68c1af'
-'SKIP'
-'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
-validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
-
-prepare() {
-mkdir -p "${pkgname}-${pkgver}"
-bsdtar -vxf "${pkgname}-${pkgver}.zip" -C "${pkgname}-${pkgver}"
-}
-
-package() {
-
_dest="${pkgdir}/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/${_id}"
-install -dm755 "${_dest}"
-cp -a "${pkgname}-${pkgver}"/* "${_dest}"
-
-# Install host json from browserpass package
-install -dm755 "${pkgdir}/usr/lib/mozilla/native-messaging-hosts/"
-ln -sf 
"/usr/lib/browserpass/hosts/firefox/com.github.browserpass.native.json" 
"${pkgdir}/usr/lib/mozilla/native-messaging-hosts/"
-
-install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
-}
-
-# vim:set ts=4 sw=4 et:

Copied: browserpass-firefox/repos/community-any/PKGBUILD (from rev 511918, 
browserpass-firefox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-27 12:38:43 UTC (rev 511919)
@@ -0,0 +1,39 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+
+_id=browserp...@maximbaz.com
+_name=browserpass-extension
+pkgname=browserpass-firefox
+pkgver=3.2.2
+pkgrel=1
+pkgdesc="Firefox extension for Browserpass, browser extension for zx2c4's pass 
(password manager)"
+arch=('any')
+url="https://github.com/browserpass/${_name}";
+license=('ISC')
+depends=('browserpass')
+source=("${pkgname}-${pkgver}.zip::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip"
+
"${pkgname}-${pkgver}.zip.asc::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip.asc"
+
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE";)
+noextract=("${pkgname}-${pkgver}.zip")
+sha256sums=('945f12f7c92ac1cb2b95c1c776f8d8cdc39c0b481a7bc18da726628e586068f6'
+'SKIP'
+'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
+validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
+
+prepare() {
+mkdir -p "${pkgname}-${pkgver}"
+bsdtar -vxf "${pkgname}-${pkgver}.zip" -C "${pkgname}-${pkgver}"
+}
+
+package() {
+
_dest="${pkgdir}/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/${_id}"
+install -dm755 "${_dest}"
+cp -a "${pkgname}-${pkgver}"/* "${_dest}"
+
+# Install host json from browserpass package
+install -dm755 "${pkgdir}/usr/lib/mozilla/native-messaging-hosts/"
+ln -sf 
"/usr/lib/browserpass/hosts/firefox/com.github.browserpass.native.json" 
"${pkgdir}/usr/lib/mozilla/native-messaging-hosts/"
+
+install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
+}
+
+# vim:set ts=4 sw=4 et:


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

2019-09-27 Thread Maxim Baz via arch-commits
Date: Friday, September 27, 2019 @ 12:38:38
  Author: maximbaz
Revision: 511918

upgpkg: browserpass-firefox 3.2.2-1

Modified:
  browserpass-firefox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 12:37:39 UTC (rev 511917)
+++ PKGBUILD2019-09-27 12:38:38 UTC (rev 511918)
@@ -3,7 +3,7 @@
 _id=browserp...@maximbaz.com
 _name=browserpass-extension
 pkgname=browserpass-firefox
-pkgver=3.2.1
+pkgver=3.2.2
 pkgrel=1
 pkgdesc="Firefox extension for Browserpass, browser extension for zx2c4's pass 
(password manager)"
 arch=('any')
@@ -14,7 +14,7 @@
 
"${pkgname}-${pkgver}.zip.asc::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip.asc"
 
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE";)
 noextract=("${pkgname}-${pkgver}.zip")
-sha256sums=('682d8cf2bf46022daf196488394c76a5d086155c342a52bd8c3a91faad68c1af'
+sha256sums=('945f12f7c92ac1cb2b95c1c776f8d8cdc39c0b481a7bc18da726628e586068f6'
 'SKIP'
 'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
 validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')


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

2019-09-27 Thread Maxim Baz via arch-commits
Date: Friday, September 27, 2019 @ 12:37:39
  Author: maximbaz
Revision: 511917

archrelease: copy trunk to community-any

Added:
  browserpass-chromium/repos/community-any/PKGBUILD
(from rev 511916, browserpass-chromium/trunk/PKGBUILD)
Deleted:
  browserpass-chromium/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 12:37:34 UTC (rev 511916)
+++ PKGBUILD2019-09-27 12:37:39 UTC (rev 511917)
@@ -1,43 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-
-_id=pjmbgaakjkbhpopmakjoedenlfdmcdgm
-_name=browserpass-extension
-pkgname=browserpass-chromium
-pkgver=3.2.1
-pkgrel=1
-pkgdesc="Chromium extension for Browserpass, browser extension for zx2c4's 
pass (password manager)"
-arch=('any')
-url="https://github.com/browserpass/${_name}";
-license=('ISC')
-depends=('browserpass')
-source=("${pkgname}-${pkgver}.crx::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx"
-
"${pkgname}-${pkgver}.crx.asc::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx.asc"
-
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE";)
-noextract=("${pkgname}-${pkgver}.crx")
-sha256sums=('fbc15a263f57d9cd4a856311a87a84ebf88938e3e29e897d014499df8bc58191'
-'SKIP'
-'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
-validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
-
-prepare() {
-# Create extension json
-cat << EOF > "${_id}".json
-{
-"external_crx": "/usr/lib/${pkgname}/${pkgname}-${pkgver}.crx",
-"external_version": "${pkgver}"
-}
-EOF
-}
-
-package() {
-install -Dm644 -t "${pkgdir}/usr/share/chromium/extensions/" "${_id}.json"
-install -Dm644 -t "${pkgdir}/usr/lib/${pkgname}/" 
"${pkgname}-${pkgver}.crx"
-
-# Install host json from browserpass package
-install -dm755 "${pkgdir}/etc/chromium/native-messaging-hosts/"
-ln -sf 
"/usr/lib/browserpass/hosts/chromium/com.github.browserpass.native.json" 
"${pkgdir}/etc/chromium/native-messaging-hosts/"
-
-install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
-}
-
-# vim:set ts=4 sw=4 et:

Copied: browserpass-chromium/repos/community-any/PKGBUILD (from rev 511916, 
browserpass-chromium/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-27 12:37:39 UTC (rev 511917)
@@ -0,0 +1,43 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+
+_id=pjmbgaakjkbhpopmakjoedenlfdmcdgm
+_name=browserpass-extension
+pkgname=browserpass-chromium
+pkgver=3.2.2
+pkgrel=1
+pkgdesc="Chromium extension for Browserpass, browser extension for zx2c4's 
pass (password manager)"
+arch=('any')
+url="https://github.com/browserpass/${_name}";
+license=('ISC')
+depends=('browserpass')
+source=("${pkgname}-${pkgver}.crx::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx"
+
"${pkgname}-${pkgver}.crx.asc::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx.asc"
+
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE";)
+noextract=("${pkgname}-${pkgver}.crx")
+sha256sums=('3f395e9e39f3220a31c46b28f62f347bb7286849b6bfe769eb96d15cd6d2bc63'
+'SKIP'
+'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
+validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
+
+prepare() {
+# Create extension json
+cat << EOF > "${_id}".json
+{
+"external_crx": "/usr/lib/${pkgname}/${pkgname}-${pkgver}.crx",
+"external_version": "${pkgver}"
+}
+EOF
+}
+
+package() {
+install -Dm644 -t "${pkgdir}/usr/share/chromium/extensions/" "${_id}.json"
+install -Dm644 -t "${pkgdir}/usr/lib/${pkgname}/" 
"${pkgname}-${pkgver}.crx"
+
+# Install host json from browserpass package
+install -dm755 "${pkgdir}/etc/chromium/native-messaging-hosts/"
+ln -sf 
"/usr/lib/browserpass/hosts/chromium/com.github.browserpass.native.json" 
"${pkgdir}/etc/chromium/native-messaging-hosts/"
+
+install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
+}
+
+# vim:set ts=4 sw=4 et:


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

2019-09-27 Thread Maxim Baz via arch-commits
Date: Friday, September 27, 2019 @ 12:37:34
  Author: maximbaz
Revision: 511916

upgpkg: browserpass-chromium 3.2.2-1

Modified:
  browserpass-chromium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 12:30:24 UTC (rev 511915)
+++ PKGBUILD2019-09-27 12:37:34 UTC (rev 511916)
@@ -3,7 +3,7 @@
 _id=pjmbgaakjkbhpopmakjoedenlfdmcdgm
 _name=browserpass-extension
 pkgname=browserpass-chromium
-pkgver=3.2.1
+pkgver=3.2.2
 pkgrel=1
 pkgdesc="Chromium extension for Browserpass, browser extension for zx2c4's 
pass (password manager)"
 arch=('any')
@@ -14,7 +14,7 @@
 
"${pkgname}-${pkgver}.crx.asc::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx.asc"
 
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE";)
 noextract=("${pkgname}-${pkgver}.crx")
-sha256sums=('fbc15a263f57d9cd4a856311a87a84ebf88938e3e29e897d014499df8bc58191'
+sha256sums=('3f395e9e39f3220a31c46b28f62f347bb7286849b6bfe769eb96d15cd6d2bc63'
 'SKIP'
 'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
 validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')


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

2019-09-27 Thread Maxime Gauduin via arch-commits
Date: Friday, September 27, 2019 @ 12:30:24
  Author: alucryd
Revision: 511915

archrelease: copy trunk to community-x86_64

Added:
  svt-av1/repos/community-x86_64/PKGBUILD
(from rev 511914, svt-av1/trunk/PKGBUILD)
Deleted:
  svt-av1/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 12:30:19 UTC (rev 511914)
+++ PKGBUILD2019-09-27 12:30:24 UTC (rev 511915)
@@ -1,53 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Thomas Schneider 
-
-pkgname=svt-av1
-pkgver=0.6.0
-pkgrel=1
-pkgdesc='Scalable Video Technology AV1 encoder'
-arch=(x86_64)
-url='https://github.com/OpenVisualCloud/SVT-AV1'
-license=(BSD)
-makedepends=(
-  cmake
-  git
-  nasm
-)
-source=(git+https://github.com/OpenVisualCloud/SVT-AV1.git#tag=2bebd2df01b28a64dcd834b40f0a5ed090143945)
-md5sums=(SKIP)
-
-pkgver() {
-  cd SVT-AV1
-
-  git describe --tags | sed 's/^v//'
-}
-
-prepare() {
-  if [[ -d build ]]; then
-rm -rf build
-  fi
-  mkdir build
-
-  sed '/CMAKE_BUILD_TYPE Release/d' -i SVT-AV1/CMakeLists.txt
-}
-
-build() {
-  cd build
-
-  export LDFLAGS="$LDFLAGS -Wl,-z,noexecstack"
-
-  cmake ../SVT-AV1 \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_SHARED_LIBS=ON \
--DNATIVE=OFF
-  make
-}
-
-package() {
-  cd build
-
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 ../SVT-AV1/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/svt-av1/
-}
-
-# vim: ts=2 sw=2 et:

Copied: svt-av1/repos/community-x86_64/PKGBUILD (from rev 511914, 
svt-av1/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-27 12:30:24 UTC (rev 511915)
@@ -0,0 +1,53 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Thomas Schneider 
+
+pkgname=svt-av1
+pkgver=0.7.0
+pkgrel=1
+pkgdesc='Scalable Video Technology AV1 encoder'
+arch=(x86_64)
+url='https://github.com/OpenVisualCloud/SVT-AV1'
+license=(BSD)
+makedepends=(
+  cmake
+  git
+  nasm
+)
+source=(git+https://github.com/OpenVisualCloud/SVT-AV1.git#tag=ea1f5ce2782b972a73c2356b1b5826a3ccc81ffc)
+md5sums=(SKIP)
+
+pkgver() {
+  cd SVT-AV1
+
+  git describe --tags | sed 's/^v//'
+}
+
+prepare() {
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build
+
+  sed '/CMAKE_BUILD_TYPE Release/d' -i SVT-AV1/CMakeLists.txt
+}
+
+build() {
+  cd build
+
+  export LDFLAGS="$LDFLAGS -Wl,-z,noexecstack"
+
+  cmake ../SVT-AV1 \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_SHARED_LIBS=ON \
+-DNATIVE=OFF
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 ../SVT-AV1/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/svt-av1/
+}
+
+# vim: ts=2 sw=2 et:


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

2019-09-27 Thread Maxime Gauduin via arch-commits
Date: Friday, September 27, 2019 @ 12:30:19
  Author: alucryd
Revision: 511914

upgpkg: svt-av1 0.7.0-1

Modified:
  svt-av1/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 12:30:02 UTC (rev 511913)
+++ PKGBUILD2019-09-27 12:30:19 UTC (rev 511914)
@@ -2,7 +2,7 @@
 # Contributor: Thomas Schneider 
 
 pkgname=svt-av1
-pkgver=0.6.0
+pkgver=0.7.0
 pkgrel=1
 pkgdesc='Scalable Video Technology AV1 encoder'
 arch=(x86_64)
@@ -13,7 +13,7 @@
   git
   nasm
 )
-source=(git+https://github.com/OpenVisualCloud/SVT-AV1.git#tag=2bebd2df01b28a64dcd834b40f0a5ed090143945)
+source=(git+https://github.com/OpenVisualCloud/SVT-AV1.git#tag=ea1f5ce2782b972a73c2356b1b5826a3ccc81ffc)
 md5sums=(SKIP)
 
 pkgver() {


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

2019-09-27 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, September 27, 2019 @ 12:30:02
  Author: svenstaro
Revision: 511913

archrelease: copy trunk to community-x86_64

Added:
  ogre/repos/community-x86_64/PKGBUILD
(from rev 511912, ogre/trunk/PKGBUILD)
  ogre/repos/community-x86_64/ogre.install
(from rev 511912, ogre/trunk/ogre.install)
Deleted:
  ogre/repos/community-x86_64/PKGBUILD
  ogre/repos/community-x86_64/ogre.install

--+
 PKGBUILD |  134 -
 ogre.install |6 +-
 2 files changed, 70 insertions(+), 70 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 12:29:54 UTC (rev 511912)
+++ PKGBUILD2019-09-27 12:30:02 UTC (rev 511913)
@@ -1,67 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgbase=ogre
-pkgname=('ogre' 'ogre-docs')
-pkgver=1.12.1
-pkgrel=1
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr'
- 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
-makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd')
-install=ogre.install
-source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz";)
-sha512sums=('0b60fb3e6fd165fc5164472a42b1f0c7cf9fa5e899bb224cb91709633b106c2c01d82f941186c498fb6d9738ba4ece616ecd246bb9fe93b90ae6d03ae0618d23')
-
-prepare() {
-  mkdir ogre-${pkgver}/build
-}
-
-build() {
-  cd ogre-${pkgver}/build
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_BUILD_DEPENDENCIES=FALSE \
--DCMAKE_BUILD_TYPE=RelWithDebInfo \
--DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
--DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
-
-  make
-  make OgreDoc
-}
-
-package_ogre() {
-  optdepends=('cppunit: unit testing'
-  'python: python bindings'
-  'ogre-docs: documentation')
-
-  cd ogre-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-
-  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
-  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  # move docs out of this package
-  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
-}
-
-package_ogre-docs() {
-  pkgdesc="Documentation for ogre"
-  depends=()
-
-  cd ogre-${pkgver}/build
-
-  # move docs into this package
-  install -dm755 ${pkgdir}/usr/share/doc
-  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
-
-  # symlink for docs
-  install -dm755 ${pkgdir}/usr/share/OGRE/
-  cd ${pkgdir}/usr/share
-  ln -s /usr/share/doc/OGRE/ OGRE/docs
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-x86_64/PKGBUILD (from rev 511912, 
ogre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-27 12:30:02 UTC (rev 511913)
@@ -0,0 +1,67 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgbase=ogre
+pkgname=('ogre' 'ogre-docs')
+pkgver=1.12.2
+pkgrel=1
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr' 'pugixml'
+ 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd')
+install=ogre.install
+source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz";)
+sha512sums=('557a9ca85f5ac5a41ff7ef06622723e04b008f3e9dc90d44b13ed05f34b5bf23cf9a1959d94d34a12dc0750eeb3b4550d62ba5102379d1b2825753b2b0a836d7')
+
+prepare() {
+  mkdir ogre-${pkgver}/build
+}
+
+build() {
+  cd ogre-${pkgver}/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_BUILD_DEPENDENCIES=FALSE \
+-DCMAKE_BUILD_TYPE=RelWithDebInfo \
+-DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
+-DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
+
+  make
+  make OgreDoc
+}
+
+package_ogre() {
+  optdepends=('cppunit: unit testing'
+  'python: python bindings'
+  'ogre-docs: documentation')
+
+  cd ogre-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+
+  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
+  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  # move docs out of this package
+  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
+}
+
+package_ogre-docs() {
+  pkgdesc="Documentation for ogre"
+  depends=()
+
+  cd ogre-${pkgver}/build
+
+  # move docs into this package
+  install -dm755 ${pkgdir}/usr/share/doc
+  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
+
+  # symlink for docs
+  install -dm755 ${pkgdir}/usr/share/OGRE/
+  cd ${pkgdir}/usr/share
+  ln -s /usr/share/doc/OGRE/ OGRE/docs
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: ogre.install
===
--- ogre.install2019-09-27 12:29:54 UTC (rev 511912)
+++ ogre.install2019-09-27 12:30

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

2019-09-27 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, September 27, 2019 @ 12:29:54
  Author: svenstaro
Revision: 511912

upgpkg: ogre 1.12.2-1

Modified:
  ogre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 11:04:01 UTC (rev 511911)
+++ PKGBUILD2019-09-27 12:29:54 UTC (rev 511912)
@@ -1,18 +1,18 @@
 # Maintainer: Sven-Hendrik Haase 
 pkgbase=ogre
 pkgname=('ogre' 'ogre-docs')
-pkgver=1.12.1
+pkgver=1.12.2
 pkgrel=1
 pkgdesc='Scene-oriented, flexible 3D engine written in C++'
 arch=('x86_64')
 url='http://www.ogre3d.org'
 license=('custom:MIT')
-depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr'
+depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr' 'pugixml'
  'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
 makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd')
 install=ogre.install
 source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz";)
-sha512sums=('0b60fb3e6fd165fc5164472a42b1f0c7cf9fa5e899bb224cb91709633b106c2c01d82f941186c498fb6d9738ba4ece616ecd246bb9fe93b90ae6d03ae0618d23')
+sha512sums=('557a9ca85f5ac5a41ff7ef06622723e04b008f3e9dc90d44b13ed05f34b5bf23cf9a1959d94d34a12dc0750eeb3b4550d62ba5102379d1b2825753b2b0a836d7')
 
 prepare() {
   mkdir ogre-${pkgver}/build


[arch-commits] Commit in 389-ds-base/trunk (PKGBUILD)

2019-09-27 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, September 27, 2019 @ 12:28:21
  Author: svenstaro
Revision: 363491

upgpkg: 389-ds-base 1.4.2.2-1

Modified:
  389-ds-base/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 12:00:48 UTC (rev 363490)
+++ PKGBUILD2019-09-27 12:28:21 UTC (rev 363491)
@@ -4,9 +4,9 @@
 # Contributor: Xiao-Long Chen 
 
 pkgname=389-ds-base
-pkgver=1.4.1.6
+pkgver=1.4.2.2
 pkgdesc="389 Directory Server (base)"
-pkgrel=7
+pkgrel=1
 arch=(x86_64)
 url="http://port389.org/";
 license=(GPL)
@@ -21,7 +21,7 @@
 source=("https://releases.pagure.org/389-ds-base/${pkgname}-${pkgver}.tar.bz2";
 389-ds-base.sysusers
 389-ds-base.tmpfiles)
-sha512sums=('0a943453cbcd8b43b4fdc58563c8802d9270d9a3cf4dcd76e3f77168d45e84b8e07d8df8ddadb09ba9294e7ba7e9304ce329bc37edeb16a9161797c902fadc1c'
+sha512sums=('410f79de429d552286100744add6c7f2a01aca08a74e87fb3bdb3a5758476d9ab129a367ec457f3bceed4ae971d5c33cd4be36252cf074f4c3450d188b6d7df6'
 
'8689b60f13517e6541e1faa62e61781654a8e4678990d14a3fe0cfe4673697cdde1c46763fdc7ef6203e4026286fa004c73b2857fd7fecff69483e6d1e8e6d68'
 
'5dff695ae866a591a711f836f2f72f2005b4afdb20760cda8711791910299e2c6ec71dff5eca9a2d9832cad8f9e9904dbbcf2d314cd9b20432bc8fd05c097868')
 


[arch-commits] Commit in 389-ds-base/repos/extra-x86_64 (6 files)

2019-09-27 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, September 27, 2019 @ 12:28:31
  Author: svenstaro
Revision: 363492

archrelease: copy trunk to extra-x86_64

Added:
  389-ds-base/repos/extra-x86_64/389-ds-base.sysusers
(from rev 363491, 389-ds-base/trunk/389-ds-base.sysusers)
  389-ds-base/repos/extra-x86_64/389-ds-base.tmpfiles
(from rev 363491, 389-ds-base/trunk/389-ds-base.tmpfiles)
  389-ds-base/repos/extra-x86_64/PKGBUILD
(from rev 363491, 389-ds-base/trunk/PKGBUILD)
Deleted:
  389-ds-base/repos/extra-x86_64/389-ds-base.sysusers
  389-ds-base/repos/extra-x86_64/389-ds-base.tmpfiles
  389-ds-base/repos/extra-x86_64/PKGBUILD

--+
 389-ds-base.sysusers |2 
 389-ds-base.tmpfiles |4 -
 PKGBUILD |  160 -
 3 files changed, 83 insertions(+), 83 deletions(-)

Deleted: 389-ds-base.sysusers
===
--- 389-ds-base.sysusers2019-09-27 12:28:21 UTC (rev 363491)
+++ 389-ds-base.sysusers2019-09-27 12:28:31 UTC (rev 363492)
@@ -1 +0,0 @@
-u dirsrv   440  "389 Directory Server" /var/lib/389-ds-base

Copied: 389-ds-base/repos/extra-x86_64/389-ds-base.sysusers (from rev 363491, 
389-ds-base/trunk/389-ds-base.sysusers)
===
--- 389-ds-base.sysusers(rev 0)
+++ 389-ds-base.sysusers2019-09-27 12:28:31 UTC (rev 363492)
@@ -0,0 +1 @@
+u dirsrv   440  "389 Directory Server" /var/lib/389-ds-base

Deleted: 389-ds-base.tmpfiles
===
--- 389-ds-base.tmpfiles2019-09-27 12:28:21 UTC (rev 363491)
+++ 389-ds-base.tmpfiles2019-09-27 12:28:31 UTC (rev 363492)
@@ -1,2 +0,0 @@
-d /var/log/dirsrv 0700 dirsrv dirsrv -
-d /var/lib/dirsrv 0700 dirsrv dirsrv -

Copied: 389-ds-base/repos/extra-x86_64/389-ds-base.tmpfiles (from rev 363491, 
389-ds-base/trunk/389-ds-base.tmpfiles)
===
--- 389-ds-base.tmpfiles(rev 0)
+++ 389-ds-base.tmpfiles2019-09-27 12:28:31 UTC (rev 363492)
@@ -0,0 +1,2 @@
+d /var/log/dirsrv 0700 dirsrv dirsrv -
+d /var/lib/dirsrv 0700 dirsrv dirsrv -

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 12:28:21 UTC (rev 363491)
+++ PKGBUILD2019-09-27 12:28:31 UTC (rev 363492)
@@ -1,80 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Javier Torres 
-# Contributor: Jameson Pugh 
-# Contributor: Xiao-Long Chen 
-
-pkgname=389-ds-base
-pkgver=1.4.1.6
-pkgdesc="389 Directory Server (base)"
-pkgrel=7
-arch=(x86_64)
-url="http://port389.org/";
-license=(GPL)
-provides=(libsvrcore.so)
-replaces=(python-lib389)
-backup=(etc/dirsrv/config/certmap.conf
-etc/dirsrv/config/ldap-agent.conf
-etc/dirsrv/config/slapd-collations.conf
-etc/dirsrv/config/template-initconfig)
-depends=(libevent nspr nss net-snmp pam openldap python-argcomplete 
python-dateutil python-ldap)
-makedepends=(cargo rsync doxygen cmocka python-setuptools 
python-argparse-manpage)
-source=("https://releases.pagure.org/389-ds-base/${pkgname}-${pkgver}.tar.bz2";
-389-ds-base.sysusers
-389-ds-base.tmpfiles)
-sha512sums=('0a943453cbcd8b43b4fdc58563c8802d9270d9a3cf4dcd76e3f77168d45e84b8e07d8df8ddadb09ba9294e7ba7e9304ce329bc37edeb16a9161797c902fadc1c'
-
'8689b60f13517e6541e1faa62e61781654a8e4678990d14a3fe0cfe4673697cdde1c46763fdc7ef6203e4026286fa004c73b2857fd7fecff69483e6d1e8e6d68'
-
'5dff695ae866a591a711f836f2f72f2005b4afdb20760cda8711791910299e2c6ec71dff5eca9a2d9832cad8f9e9904dbbcf2d314cd9b20432bc8fd05c097868')
-
-prepare() {
-  cd "${pkgbase}-${pkgver}"
-
-  autoreconf -fiv
-}
-
-build() {
-  cd "${pkgbase}-${pkgver}"
-
-  # Build 389-ds-base
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---sbindir=/usr/bin \
---localstatedir=/var \
---libexecdir=/usr/lib/${pkgbase} \
---with-tmpfiles-d=/usr/lib/tmpfiles.d \
---with-systemd \
---with-systemdsystemunitdir=/usr/lib/systemd/system \
---with-systemdsystemconfdir=/etc/systemd/system \
---with-journald \
---enable-autobind \
---enable-cmocka \
---with-openldap \
---enable-rust
-  make
-
-  # Build lib389
-  cd src/lib389
-  python setup.py build
-}
-
-check() {
-  cd "${pkgbase}-${pkgver}"
-  make check
-}
-
-package() {
-  cd "${pkgbase}-${pkgver}"
-  make -j1 DESTDIR="${pkgdir}/" install
-
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  # Upstream expects lib389 and 389-ds-base to be shipped in the same package 
more or less
-  # so that's why it's not a split package.
-  cd src/lib389
-  python setup.py install --skip-build -O1 --root=${pkgdir}
-  mv ${pkgdir}/usr/sbin/* ${pkgdir}/usr/bin/
-  rmdir ${pkgdir}/usr/sbin
-
-  install -Dm644 "${srcdir}/${pkgname}.sysuser

[arch-commits] Commit in gnome-tweaks/repos/extra-any (PKGBUILD PKGBUILD)

2019-09-27 Thread Jan Steffens via arch-commits
Date: Friday, September 27, 2019 @ 12:00:48
  Author: heftig
Revision: 363490

archrelease: copy trunk to extra-any

Added:
  gnome-tweaks/repos/extra-any/PKGBUILD
(from rev 363489, gnome-tweaks/trunk/PKGBUILD)
Deleted:
  gnome-tweaks/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 11:59:27 UTC (rev 363489)
+++ PKGBUILD2019-09-27 12:00:48 UTC (rev 363490)
@@ -1,37 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgname=gnome-tweaks
-pkgver=3.33.90+27+ge26f21d
-pkgrel=1
-pkgdesc="Graphical interface for advanced GNOME 3 settings (Tweak Tool)"
-url="https://wiki.gnome.org/Apps/Tweaks";
-arch=(any)
-license=(GPL)
-depends=(gnome-settings-daemon python-gobject libhandy)
-makedepends=(git meson)
-groups=(gnome-extra)
-provides=("gnome-tweak-tool=$pkgver")
-conflicts=(gnome-tweak-tool)
-replaces=(gnome-tweak-tool)
-_commit=e26f21d858e0b765fe1bef12540a535798b97d8b  # master
-source=("git+https://gitlab.gnome.org/GNOME/gnome-tweaks.git#commit=$_commit";)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-build() {
-  arch-meson $pkgname build
-  ninja -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: gnome-tweaks/repos/extra-any/PKGBUILD (from rev 363489, 
gnome-tweaks/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-27 12:00:48 UTC (rev 363490)
@@ -0,0 +1,37 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgname=gnome-tweaks
+pkgver=3.34.0
+pkgrel=1
+pkgdesc="Graphical interface for advanced GNOME 3 settings (Tweak Tool)"
+url="https://wiki.gnome.org/Apps/Tweaks";
+arch=(any)
+license=(GPL)
+depends=(gnome-settings-daemon python-gobject libhandy)
+makedepends=(git meson)
+groups=(gnome-extra)
+provides=("gnome-tweak-tool=$pkgver")
+conflicts=(gnome-tweak-tool)
+replaces=(gnome-tweak-tool)
+_commit=44f73bb706863aae50a52bb9514c525cdc01293d  # tags/3.34.0^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-tweaks.git#commit=$_commit";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+build() {
+  arch-meson $pkgname build
+  ninja -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}


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

2019-09-27 Thread Jan Steffens via arch-commits
Date: Friday, September 27, 2019 @ 11:59:27
  Author: heftig
Revision: 363489

3.34.0-1

Modified:
  gnome-tweaks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 01:40:43 UTC (rev 363488)
+++ PKGBUILD2019-09-27 11:59:27 UTC (rev 363489)
@@ -2,7 +2,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=gnome-tweaks
-pkgver=3.33.90+27+ge26f21d
+pkgver=3.34.0
 pkgrel=1
 pkgdesc="Graphical interface for advanced GNOME 3 settings (Tweak Tool)"
 url="https://wiki.gnome.org/Apps/Tweaks";
@@ -14,7 +14,7 @@
 provides=("gnome-tweak-tool=$pkgver")
 conflicts=(gnome-tweak-tool)
 replaces=(gnome-tweak-tool)
-_commit=e26f21d858e0b765fe1bef12540a535798b97d8b  # master
+_commit=44f73bb706863aae50a52bb9514c525cdc01293d  # tags/3.34.0^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-tweaks.git#commit=$_commit";)
 sha256sums=('SKIP')
 


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

2019-09-27 Thread Maxim Baz via arch-commits
Date: Friday, September 27, 2019 @ 11:04:01
  Author: maximbaz
Revision: 511911

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 11:03:56 UTC (rev 511910)
+++ PKGBUILD2019-09-27 11:04:01 UTC (rev 511911)
@@ -1,39 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-
-_id=browserp...@maximbaz.com
-_name=browserpass-extension
-pkgname=browserpass-firefox
-pkgver=3.2.0
-pkgrel=1
-pkgdesc="Firefox extension for Browserpass, browser extension for zx2c4's pass 
(password manager)"
-arch=('any')
-url="https://github.com/browserpass/${_name}";
-license=('ISC')
-depends=('browserpass')
-source=("${pkgname}-${pkgver}.zip::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip"
-
"${pkgname}-${pkgver}.zip.asc::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip.asc"
-
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE";)
-noextract=("${pkgname}-${pkgver}.zip")
-sha256sums=('bed74401682c7f7298eeba2b8d9896681c9bf6e6fd77c1ecd11766f935830d36'
-'SKIP'
-'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
-validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
-
-prepare() {
-mkdir -p "${pkgname}-${pkgver}"
-bsdtar -vxf "${pkgname}-${pkgver}.zip" -C "${pkgname}-${pkgver}"
-}
-
-package() {
-
_dest="${pkgdir}/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/${_id}"
-install -dm755 "${_dest}"
-cp -a "${pkgname}-${pkgver}"/* "${_dest}"
-
-# Install host json from browserpass package
-install -dm755 "${pkgdir}/usr/lib/mozilla/native-messaging-hosts/"
-ln -sf 
"/usr/lib/browserpass/hosts/firefox/com.github.browserpass.native.json" 
"${pkgdir}/usr/lib/mozilla/native-messaging-hosts/"
-
-install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
-}
-
-# vim:set ts=4 sw=4 et:

Copied: browserpass-firefox/repos/community-any/PKGBUILD (from rev 511910, 
browserpass-firefox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-27 11:04:01 UTC (rev 511911)
@@ -0,0 +1,39 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+
+_id=browserp...@maximbaz.com
+_name=browserpass-extension
+pkgname=browserpass-firefox
+pkgver=3.2.1
+pkgrel=1
+pkgdesc="Firefox extension for Browserpass, browser extension for zx2c4's pass 
(password manager)"
+arch=('any')
+url="https://github.com/browserpass/${_name}";
+license=('ISC')
+depends=('browserpass')
+source=("${pkgname}-${pkgver}.zip::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip"
+
"${pkgname}-${pkgver}.zip.asc::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip.asc"
+
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE";)
+noextract=("${pkgname}-${pkgver}.zip")
+sha256sums=('682d8cf2bf46022daf196488394c76a5d086155c342a52bd8c3a91faad68c1af'
+'SKIP'
+'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
+validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
+
+prepare() {
+mkdir -p "${pkgname}-${pkgver}"
+bsdtar -vxf "${pkgname}-${pkgver}.zip" -C "${pkgname}-${pkgver}"
+}
+
+package() {
+
_dest="${pkgdir}/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/${_id}"
+install -dm755 "${_dest}"
+cp -a "${pkgname}-${pkgver}"/* "${_dest}"
+
+# Install host json from browserpass package
+install -dm755 "${pkgdir}/usr/lib/mozilla/native-messaging-hosts/"
+ln -sf 
"/usr/lib/browserpass/hosts/firefox/com.github.browserpass.native.json" 
"${pkgdir}/usr/lib/mozilla/native-messaging-hosts/"
+
+install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
+}
+
+# vim:set ts=4 sw=4 et:


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

2019-09-27 Thread Maxim Baz via arch-commits
Date: Friday, September 27, 2019 @ 11:03:56
  Author: maximbaz
Revision: 511910

upgpkg: browserpass-firefox 3.2.1-1

Modified:
  browserpass-firefox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 11:00:17 UTC (rev 511909)
+++ PKGBUILD2019-09-27 11:03:56 UTC (rev 511910)
@@ -3,7 +3,7 @@
 _id=browserp...@maximbaz.com
 _name=browserpass-extension
 pkgname=browserpass-firefox
-pkgver=3.2.0
+pkgver=3.2.1
 pkgrel=1
 pkgdesc="Firefox extension for Browserpass, browser extension for zx2c4's pass 
(password manager)"
 arch=('any')
@@ -14,7 +14,7 @@
 
"${pkgname}-${pkgver}.zip.asc::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip.asc"
 
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE";)
 noextract=("${pkgname}-${pkgver}.zip")
-sha256sums=('bed74401682c7f7298eeba2b8d9896681c9bf6e6fd77c1ecd11766f935830d36'
+sha256sums=('682d8cf2bf46022daf196488394c76a5d086155c342a52bd8c3a91faad68c1af'
 'SKIP'
 'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
 validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')


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

2019-09-27 Thread Maxim Baz via arch-commits
Date: Friday, September 27, 2019 @ 11:00:12
  Author: maximbaz
Revision: 511908

upgpkg: browserpass-chromium 3.2.1-1

Modified:
  browserpass-chromium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-27 04:46:21 UTC (rev 511907)
+++ PKGBUILD2019-09-27 11:00:12 UTC (rev 511908)
@@ -3,7 +3,7 @@
 _id=pjmbgaakjkbhpopmakjoedenlfdmcdgm
 _name=browserpass-extension
 pkgname=browserpass-chromium
-pkgver=3.2.0
+pkgver=3.2.1
 pkgrel=1
 pkgdesc="Chromium extension for Browserpass, browser extension for zx2c4's 
pass (password manager)"
 arch=('any')
@@ -14,7 +14,7 @@
 
"${pkgname}-${pkgver}.crx.asc::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx.asc"
 
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE";)
 noextract=("${pkgname}-${pkgver}.crx")
-sha256sums=('75773e4745c9c40623991ab74e7c11c2af31befef2b4f6e32e6d216a9ae000ef'
+sha256sums=('fbc15a263f57d9cd4a856311a87a84ebf88938e3e29e897d014499df8bc58191'
 'SKIP'
 'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
 validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')


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

2019-09-27 Thread Maxim Baz via arch-commits
Date: Friday, September 27, 2019 @ 11:00:17
  Author: maximbaz
Revision: 511909

archrelease: copy trunk to community-any

Added:
  browserpass-chromium/repos/community-any/PKGBUILD
(from rev 511908, browserpass-chromium/trunk/PKGBUILD)
Deleted:
  browserpass-chromium/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-27 11:00:12 UTC (rev 511908)
+++ PKGBUILD2019-09-27 11:00:17 UTC (rev 511909)
@@ -1,43 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-
-_id=pjmbgaakjkbhpopmakjoedenlfdmcdgm
-_name=browserpass-extension
-pkgname=browserpass-chromium
-pkgver=3.2.0
-pkgrel=1
-pkgdesc="Chromium extension for Browserpass, browser extension for zx2c4's 
pass (password manager)"
-arch=('any')
-url="https://github.com/browserpass/${_name}";
-license=('ISC')
-depends=('browserpass')
-source=("${pkgname}-${pkgver}.crx::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx"
-
"${pkgname}-${pkgver}.crx.asc::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx.asc"
-
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE";)
-noextract=("${pkgname}-${pkgver}.crx")
-sha256sums=('75773e4745c9c40623991ab74e7c11c2af31befef2b4f6e32e6d216a9ae000ef'
-'SKIP'
-'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
-validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
-
-prepare() {
-# Create extension json
-cat << EOF > "${_id}".json
-{
-"external_crx": "/usr/lib/${pkgname}/${pkgname}-${pkgver}.crx",
-"external_version": "${pkgver}"
-}
-EOF
-}
-
-package() {
-install -Dm644 -t "${pkgdir}/usr/share/chromium/extensions/" "${_id}.json"
-install -Dm644 -t "${pkgdir}/usr/lib/${pkgname}/" 
"${pkgname}-${pkgver}.crx"
-
-# Install host json from browserpass package
-install -dm755 "${pkgdir}/etc/chromium/native-messaging-hosts/"
-ln -sf 
"/usr/lib/browserpass/hosts/chromium/com.github.browserpass.native.json" 
"${pkgdir}/etc/chromium/native-messaging-hosts/"
-
-install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
-}
-
-# vim:set ts=4 sw=4 et:

Copied: browserpass-chromium/repos/community-any/PKGBUILD (from rev 511908, 
browserpass-chromium/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-27 11:00:17 UTC (rev 511909)
@@ -0,0 +1,43 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+
+_id=pjmbgaakjkbhpopmakjoedenlfdmcdgm
+_name=browserpass-extension
+pkgname=browserpass-chromium
+pkgver=3.2.1
+pkgrel=1
+pkgdesc="Chromium extension for Browserpass, browser extension for zx2c4's 
pass (password manager)"
+arch=('any')
+url="https://github.com/browserpass/${_name}";
+license=('ISC')
+depends=('browserpass')
+source=("${pkgname}-${pkgver}.crx::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx"
+
"${pkgname}-${pkgver}.crx.asc::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx.asc"
+
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE";)
+noextract=("${pkgname}-${pkgver}.crx")
+sha256sums=('fbc15a263f57d9cd4a856311a87a84ebf88938e3e29e897d014499df8bc58191'
+'SKIP'
+'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
+validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
+
+prepare() {
+# Create extension json
+cat << EOF > "${_id}".json
+{
+"external_crx": "/usr/lib/${pkgname}/${pkgname}-${pkgver}.crx",
+"external_version": "${pkgver}"
+}
+EOF
+}
+
+package() {
+install -Dm644 -t "${pkgdir}/usr/share/chromium/extensions/" "${_id}.json"
+install -Dm644 -t "${pkgdir}/usr/lib/${pkgname}/" 
"${pkgname}-${pkgver}.crx"
+
+# Install host json from browserpass package
+install -dm755 "${pkgdir}/etc/chromium/native-messaging-hosts/"
+ln -sf 
"/usr/lib/browserpass/hosts/chromium/com.github.browserpass.native.json" 
"${pkgdir}/etc/chromium/native-messaging-hosts/"
+
+install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
+}
+
+# vim:set ts=4 sw=4 et: