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

2017-12-20 Thread Antonio Rojas via arch-commits
Date: Thursday, December 21, 2017 @ 07:54:27
  Author: arojas
Revision: 313465

Fix source

Modified:
  terminology/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-21 00:45:06 UTC (rev 313464)
+++ PKGBUILD2017-12-21 07:54:27 UTC (rev 313465)
@@ -10,8 +10,8 @@
 url="https://www.enlightenment.org/about-terminology;
 license=('BSD')
 depends=('efl')
-source=("http://download.enlightenment.org/rel/apps/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('db6ba37e28140bf224da34990d9f54560d1327aa')
+source=("http://download.enlightenment.org/rel/apps/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('d59ebee38e63cc7d3013ab98eed252eafe6d98af')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"


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

2017-12-20 Thread Felix Yan via arch-commits
Date: Thursday, December 21, 2017 @ 01:41:39
  Author: felixonmars
Revision: 275129

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-21 01:41:19 UTC (rev 275128)
+++ PKGBUILD2017-12-21 01:41:39 UTC (rev 275129)
@@ -1,78 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-hypothesis
-pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.43.1
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
- 'python-coverage' 'python2-coverage' 'python2-enum34')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
-  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
-  'python-flaky' 'python2-flaky' 'python-pytest-benchmark' 
'python2-pytest-benchmark'
-  'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
-  'python-mock' 'python2-mock' 'python-pandas' 'python2-pandas')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)
-sha512sums=('348d1b996b9600eac488b9e5b6a69aff2186429dca94e27dbe7b662954c32219fcb8ea4ee0701b43c9ea8c5dd1e2ca88d835bf5fe01b2cc84fe0dcf97c3913cc')
-
-prepare() {
-  # Make tests faster
-  sed -i 's/ -n 2$/ -n 16/' hypothesis-python-$pkgver/tox.ini
-
-  cp -a hypothesis-python-$pkgver{,-py2}
-
-  rm -r hypothesis-python-$pkgver/tests/py2
-  rm -r hypothesis-python-$pkgver-py2/tests/py3
-
-  export LC_CTYPE=en_US.UTF-8
-}
-
-build() {
-  cd "$srcdir"/hypothesis-python-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/hypothesis-python-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/hypothesis-python-$pkgver
-  mv tests/django ../
-  python setup.py pytest
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m tests.django.manage test 
tests.django
-
-  cd "$srcdir"/hypothesis-python-$pkgver-py2
-  mv tests/django ../
-  python2 setup.py pytest
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m tests.django.manage test 
tests.django
-}
-
-package_python-hypothesis() {
-  depends=('python-attrs' 'python-coverage')
-  optdepends=('python-pytz: for datetime and django module'
-  'python-faker: for fakefactory and django module'
-  'python-django: for django module'
-  'python-numpy: for numpy module'
-  'python-pytest: for pytest module')
-
-  cd hypothesis-python-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-hypothesis() {
-  depends=('python2-attrs' 'python2-coverage' 'python2-enum34')
-  optdepends=('python2-pytz: for datetime and django module'
-  'python2-faker: for fakefactory and django module'
-  'python2-django: for django module'
-  'python2-numpy: for numpy module'
-  'python2-pytest: for pytest module')
-
-  cd hypothesis-python-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 275128, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-21 01:41:39 UTC (rev 275129)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=3.44.2
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
+ 'python-coverage' 'python2-coverage' 'python2-enum34')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
+  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
+  'python-flaky' 'python2-flaky' 'python-pytest-benchmark' 
'python2-pytest-benchmark'
+  'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
+  'python-mock' 'python2-mock' 'python-pandas' 'python2-pandas')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)

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

2017-12-20 Thread Felix Yan via arch-commits
Date: Thursday, December 21, 2017 @ 01:41:19
  Author: felixonmars
Revision: 275128

upgpkg: python-hypothesis 3.44.2-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-21 00:28:07 UTC (rev 275127)
+++ PKGBUILD2017-12-21 01:41:19 UTC (rev 275128)
@@ -3,7 +3,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.43.1
+pkgver=3.44.2
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -17,7 +17,7 @@
   'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
   'python-mock' 'python2-mock' 'python-pandas' 'python2-pandas')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis-python/archive/$pkgver.tar.gz;)
-sha512sums=('348d1b996b9600eac488b9e5b6a69aff2186429dca94e27dbe7b662954c32219fcb8ea4ee0701b43c9ea8c5dd1e2ca88d835bf5fe01b2cc84fe0dcf97c3913cc')
+sha512sums=('5692fdc1eec82a454978258859a0d7d1f945a8b50eb312bfa5d65d2390d2816682199f7de4a5ff0f30df453d23d0935c48e12329a7edc3dd502273efe05a44df')
 
 prepare() {
   # Make tests faster


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

2017-12-20 Thread Evangelos Foutras via arch-commits
Date: Thursday, December 21, 2017 @ 00:45:06
  Author: foutrelis
Revision: 313464

archrelease: copy trunk to testing-x86_64

Added:
  llvm/repos/testing-x86_64/
  llvm/repos/testing-x86_64/0001-GCC-compatibility-Ignore-the-fno-plt-flag.patch
(from rev 313463, 
llvm/trunk/0001-GCC-compatibility-Ignore-the-fno-plt-flag.patch)
  llvm/repos/testing-x86_64/0002-Enable-SSP-and-PIE-by-default.patch
(from rev 313463, llvm/trunk/0002-Enable-SSP-and-PIE-by-default.patch)
  llvm/repos/testing-x86_64/PKGBUILD
(from rev 313463, llvm/trunk/PKGBUILD)
  llvm/repos/testing-x86_64/disable-llvm-symbolizer-test.patch
(from rev 313463, llvm/trunk/disable-llvm-symbolizer-test.patch)
  llvm/repos/testing-x86_64/llvm-config.h
(from rev 313463, llvm/trunk/llvm-config.h)

--+
 0001-GCC-compatibility-Ignore-the-fno-plt-flag.patch |   37 ++
 0002-Enable-SSP-and-PIE-by-default.patch |  268 +
 PKGBUILD |  267 
 disable-llvm-symbolizer-test.patch   |   26 +
 llvm-config.h|9 
 5 files changed, 607 insertions(+)

Copied: 
llvm/repos/testing-x86_64/0001-GCC-compatibility-Ignore-the-fno-plt-flag.patch 
(from rev 313463, 
llvm/trunk/0001-GCC-compatibility-Ignore-the-fno-plt-flag.patch)
===
--- testing-x86_64/0001-GCC-compatibility-Ignore-the-fno-plt-flag.patch 
(rev 0)
+++ testing-x86_64/0001-GCC-compatibility-Ignore-the-fno-plt-flag.patch 
2017-12-21 00:45:06 UTC (rev 313464)
@@ -0,0 +1,37 @@
+From fedcf1d9691bf669d8cd771a032e851d8247aff9 Mon Sep 17 00:00:00 2001
+From: Evangelos Foutras 
+Date: Thu, 6 Jul 2017 18:53:05 +0300
+Subject: [PATCH 1/2] GCC compatibility: Ignore the -fno-plt flag
+
+---
+ include/clang/Driver/Options.td | 1 +
+ test/Driver/clang_f_opts.c  | 1 +
+ 2 files changed, 2 insertions(+)
+
+diff --git a/include/clang/Driver/Options.td b/include/clang/Driver/Options.td
+index 05dc9d7eb3..c93e6cc08c 100644
+--- a/include/clang/Driver/Options.td
 b/include/clang/Driver/Options.td
+@@ -2505,6 +2505,7 @@ defm ivopts : BooleanFFlag<"ivopts">, 
Group, 
Group;
+ defm peel_loops : BooleanFFlag<"peel-loops">, 
Group;
+ defm permissive : BooleanFFlag<"permissive">, Group;
++defm plt : BooleanFFlag<"plt">, Group;
+ defm prefetch_loop_arrays : BooleanFFlag<"prefetch-loop-arrays">, 
Group;
+ defm printf : BooleanFFlag<"printf">, Group;
+ defm profile : BooleanFFlag<"profile">, Group;
+diff --git a/test/Driver/clang_f_opts.c b/test/Driver/clang_f_opts.c
+index c17cec6eba..d9480c915e 100644
+--- a/test/Driver/clang_f_opts.c
 b/test/Driver/clang_f_opts.c
+@@ -277,6 +277,7 @@
+ // RUN: -fno-caller-saves -fcaller-saves  
\
+ // RUN: -fno-reorder-blocks -freorder-blocks  
\
+ // RUN: -fno-schedule-insns2 -fschedule-insns2
\
++// RUN: -fno-plt -fplt
\
+ // RUN: -fno-stack-check  
\
+ // RUN: -fno-check-new -fcheck-new
\
+ // RUN: -ffriend-injection
\
+-- 
+2.14.1
+

Copied: llvm/repos/testing-x86_64/0002-Enable-SSP-and-PIE-by-default.patch 
(from rev 313463, llvm/trunk/0002-Enable-SSP-and-PIE-by-default.patch)
===
--- testing-x86_64/0002-Enable-SSP-and-PIE-by-default.patch 
(rev 0)
+++ testing-x86_64/0002-Enable-SSP-and-PIE-by-default.patch 2017-12-21 
00:45:06 UTC (rev 313464)
@@ -0,0 +1,268 @@
+From 60fa751da239e592b31bde2533342dac64359e7f Mon Sep 17 00:00:00 2001
+From: Evangelos Foutras 
+Date: Thu, 6 Jul 2017 18:15:43 +0300
+Subject: [PATCH 2/2] Enable SSP and PIE by default
+
+This is a minimal set of changes needed to make clang use SSP and PIE by
+default on Arch Linux. Tests that were easy to adjust have been changed
+accordingly; only test/Driver/linux-ld.c has been marked as "expected
+failure" due to the number of changes it would require (mostly replacing
+crtbegin.o with crtbeginS.o).
+
+Doing so is needed in order to align clang with the new default GCC
+behavior in Arch which generates PIE executables by default and also
+defaults to -fstack-protector-strong. It is not meant to be a long term
+solution, but a simple temporary fix.
+
+Hopefully these changes will be obsoleted by the introduction upstream
+of a compile-time option (https://bugs.llvm.org/show_bug.cgi?id=13410)
+---
+ lib/Driver/ToolChains/Gnu.cpp   |  1 +
+ lib/Driver/ToolChains/Linux.cpp | 14 +-
+ lib/Driver/ToolChains/Linux.h   |  1 +
+ test/Driver/cross-linux.c   | 16 

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

2017-12-20 Thread Evangelos Foutras via arch-commits
Date: Thursday, December 21, 2017 @ 00:44:53
  Author: foutrelis
Revision: 313463

upgpkg: llvm 5.0.1-1

New upstream release.

Modified:
  llvm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-21 00:09:18 UTC (rev 313462)
+++ PKGBUILD2017-12-21 00:44:53 UTC (rev 313463)
@@ -10,7 +10,7 @@
 # Contributor: Gerardo Exequiel Pozzi 
 
 pkgname=('llvm' 'llvm-libs' 'llvm-ocaml' 'lld' 'lldb' 'clang' 
'clang-tools-extra')
-pkgver=5.0.0
+pkgver=5.0.1
 pkgrel=1
 _ocaml_ver=4.05.0
 arch=('x86_64')
@@ -31,17 +31,17 @@
 0002-Enable-SSP-and-PIE-by-default.patch
 disable-llvm-symbolizer-test.patch
 llvm-config.h)
-sha256sums=('e35dcbae6084adcf4abb32514127c5eabd7d63b733852ccdb31e06f1373136da'
+sha256sums=('5fa7489fc0225b11821cab0362f5813a05f2bcf2533e8a4ea9c9c860168807b0'
 'SKIP'
-'019f23c2192df793ac746595e94a403908749f8e0c484b403476d2611dd20970'
+'135f6c9b0cd2da1aff2250e065946258eb699777888df39ca5a5b4fe5e23d0ff'
 'SKIP'
-'87d078b959c4a6e5ff9fd137c2f477cadb1245f93812512996f73986a6d973c6'
+'9aada1f9d673226846c3399d13fab6bba4bfd38bcfe8def5ee7b0ec24f8cd225'
 'SKIP'
-'d5ad5266462134a482b381f1f8115b6cad3473741b3bb7d1acc7f69fd0f0c0b3'
+'4edd1417f457a9b3f0eb88082530490edf3cf6a7335cdce8ecbc5d3e16a895da'
 'SKIP'
-'399a7920a5278d42c46a7bf7e4191820ec2301457a7d0d4fcc9a4ac05dd53897'
+'d5b36c0005824f07ab093616bdff247f3da817cae2c51371e1d1473af717d895'
 'SKIP'
-'c0a0ca32105e9881d86b7ca886220147e686edc97fdb9f3657c6659dc6568b7d'
+'b7c1c9e67975ca219089a3a6a9c77c2d102cead2dc38264f2524aa3326da376a'
 'SKIP'
 'a1ba7fb859ac157c4b4342435cd656e29b1e1d9bddcb8ae0158a91c0a8ba6203'
 '186f2d10b013395f2dd6e1fd3baf4961a2e40c403f115517c9b253682934f50f'
@@ -67,9 +67,6 @@
   # Enable SSP and PIE by default
   patch -Np1 -d tools/clang 
<../0001-GCC-compatibility-Ignore-the-fno-plt-flag.patch
   patch -Np1 -d tools/clang <../0002-Enable-SSP-and-PIE-by-default.patch
-
-  # https://bugs.llvm.org/show_bug.cgi?id=34123
-  sed -i '/LLVMSupport/d' tools/clang/tools/extra/clangd/tool/CMakeLists.txt
 }
 
 build() {


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

2017-12-20 Thread Andrew Crerar via arch-commits
Date: Thursday, December 21, 2017 @ 00:28:07
  Author: andrewsc
Revision: 275127

archrelease: copy trunk to community-any

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

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

Copied: firefox-developer-edition-i18n/repos/community-any/PKGBUILD (from rev 
275126, firefox-developer-edition-i18n/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-12-21 00:28:07 UTC (rev 275127)
@@ -0,0 +1,228 @@
+# Maintainer: Andrew Crerar 
+
+pkgbase=firefox-developer-edition-i18n
+pkgver=58.0b12
+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"'
+  'as "Assamese"'
+  'ast"Asturian"'
+  'az "Azerbaijani"'
+  'be "Belarusian"'
+  'bg "Bulgarian"'
+  'bn-BD  "Bengali (Bangladesh)"'
+  'bn-IN  "Bengali (India)"'
+  'br "Breton"'
+  'bs "Bosnian"'
+  'ca "Catalan"'
+  'cak"Maya Kaqchikel"'
+  'cs "Czech"'
+  'cy "Welsh"'
+  'da "Danish"'
+  'de "German"'
+  'dsb"Lower Sorbian"'
+  'el "Greek"'
+  'en-GB  "English (British)"'
+  'en-US  "English (US)"'
+  'en-ZA  "English (South African)"'
+  '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"'
+  '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"'
+  'mai"Maithili"'
+  'mk "Macedonian"'
+  'ml "Malayalam"'
+  'mr "Marathi"'
+  'ms "Malay"'
+  'my "Burmese"'
+  'nb-NO  "Norwegian (Bokmål)"'
+  'nl "Dutch"'
+  'nn-NO  "Norwegian (Nynorsk)"'
+  'or "Oriya"'
+  '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://ftp.mozilla.org/pub/firefox/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...@firefox.mozilla.org.xpi"
+}
+
+sha512sums=('b8f0f0b796e3d9f169be80e0704a40af061250ebf005a965fe7aa2b0b8e8dd605c389c4f44659562c3da9cea0ca31abbddb1943e7665656cb47c42624227cacc'
+
'46db28f8154d507612b7c26d2af13f1921ce54c32c308d5c64b79e250a868004c02275d3be9f07520f0353462550678b1defab5eeea710d7409ab4b64bdac22e'
+
'5cb31c05cd9de873cc7b6d043a2a23bc3a24ba2056cf9f296ec2b1e2f8e01350475a9b3d25389b61dfed3d4a310b45c0d720f6dc28c92d22d184c411f0ab26c4'
+
'df83bf8898d6ad6a60f4094fe6c03053b8e52fbed73f6ed8a3bed4318feca40ff6d83058a91cf0061bc1eb6e0bcdf0ab566fbf09283874ce0c7d6a91135140a4'
+
'52ae415bdb63985104bd52582019e240b8b3820eceb025ac1781cea432a4a117639cbf62fc7d43179088d071d6eed7a886ec45ed0857ef490f6ec74c528d30d9'
+

[arch-commits] Commit in (4 files)

2017-12-20 Thread Andrew Crerar via arch-commits
Date: Thursday, December 21, 2017 @ 00:23:42
  Author: andrewsc
Revision: 275126

Adding firefox-developer-edition-i18n lang packs to repo

Added:
  firefox-developer-edition-i18n/
  firefox-developer-edition-i18n/repos/
  firefox-developer-edition-i18n/trunk/
  firefox-developer-edition-i18n/trunk/PKGBUILD

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

Added: firefox-developer-edition-i18n/trunk/PKGBUILD
===
--- firefox-developer-edition-i18n/trunk/PKGBUILD   
(rev 0)
+++ firefox-developer-edition-i18n/trunk/PKGBUILD   2017-12-21 00:23:42 UTC 
(rev 275126)
@@ -0,0 +1,228 @@
+# Maintainer: Andrew Crerar 
+
+pkgbase=firefox-developer-edition-i18n
+pkgver=58.0b12
+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"'
+  'as "Assamese"'
+  'ast"Asturian"'
+  'az "Azerbaijani"'
+  'be "Belarusian"'
+  'bg "Bulgarian"'
+  'bn-BD  "Bengali (Bangladesh)"'
+  'bn-IN  "Bengali (India)"'
+  'br "Breton"'
+  'bs "Bosnian"'
+  'ca "Catalan"'
+  'cak"Maya Kaqchikel"'
+  'cs "Czech"'
+  'cy "Welsh"'
+  'da "Danish"'
+  'de "German"'
+  'dsb"Lower Sorbian"'
+  'el "Greek"'
+  'en-GB  "English (British)"'
+  'en-US  "English (US)"'
+  'en-ZA  "English (South African)"'
+  '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"'
+  '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"'
+  'mai"Maithili"'
+  'mk "Macedonian"'
+  'ml "Malayalam"'
+  'mr "Marathi"'
+  'ms "Malay"'
+  'my "Burmese"'
+  'nb-NO  "Norwegian (Bokmål)"'
+  'nl "Dutch"'
+  'nn-NO  "Norwegian (Nynorsk)"'
+  'or "Oriya"'
+  '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://ftp.mozilla.org/pub/firefox/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...@firefox.mozilla.org.xpi"
+}
+
+sha512sums=('b8f0f0b796e3d9f169be80e0704a40af061250ebf005a965fe7aa2b0b8e8dd605c389c4f44659562c3da9cea0ca31abbddb1943e7665656cb47c42624227cacc'
+
'46db28f8154d507612b7c26d2af13f1921ce54c32c308d5c64b79e250a868004c02275d3be9f07520f0353462550678b1defab5eeea710d7409ab4b64bdac22e'
+
'5cb31c05cd9de873cc7b6d043a2a23bc3a24ba2056cf9f296ec2b1e2f8e01350475a9b3d25389b61dfed3d4a310b45c0d720f6dc28c92d22d184c411f0ab26c4'
+
'df83bf8898d6ad6a60f4094fe6c03053b8e52fbed73f6ed8a3bed4318feca40ff6d83058a91cf0061bc1eb6e0bcdf0ab566fbf09283874ce0c7d6a91135140a4'
+
'52ae415bdb63985104bd52582019e240b8b3820eceb025ac1781cea432a4a117639cbf62fc7d43179088d071d6eed7a886ec45ed0857ef490f6ec74c528d30d9'
+
'e60130283e5b8da08553f42fb5406d7921e89b2aada32d609b29e45782363c9c7ba10b7dbc1ff36053a1a9482d72e759a40ebec174e08d4a9eafb522fb04c320'
+

[arch-commits] Commit in chromium/repos/extra-x86_64 (14 files)

2017-12-20 Thread Evangelos Foutras via arch-commits
Date: Thursday, December 21, 2017 @ 00:09:18
  Author: foutrelis
Revision: 313462

archrelease: copy trunk to extra-x86_64

Added:
  chromium/repos/extra-x86_64/PKGBUILD
(from rev 313461, chromium/trunk/PKGBUILD)
  chromium/repos/extra-x86_64/chromium-clang-r1.patch
(from rev 313461, chromium/trunk/chromium-clang-r1.patch)
  chromium/repos/extra-x86_64/chromium-exclude_unwind_tables.patch
(from rev 313461, chromium/trunk/chromium-exclude_unwind_tables.patch)
  chromium/repos/extra-x86_64/chromium-omnibox-unescape-fragment.patch
(from rev 313461, chromium/trunk/chromium-omnibox-unescape-fragment.patch)
  chromium/repos/extra-x86_64/chromium-webrtc-r0.patch
(from rev 313461, chromium/trunk/chromium-webrtc-r0.patch)
  chromium/repos/extra-x86_64/chromium-widevine.patch
(from rev 313461, chromium/trunk/chromium-widevine.patch)
  chromium/repos/extra-x86_64/chromium.install
(from rev 313461, chromium/trunk/chromium.install)
Deleted:
  chromium/repos/extra-x86_64/PKGBUILD
  chromium/repos/extra-x86_64/chromium-clang-r1.patch
  chromium/repos/extra-x86_64/chromium-exclude_unwind_tables.patch
  chromium/repos/extra-x86_64/chromium-webrtc-r0.patch
  chromium/repos/extra-x86_64/chromium-widevine.patch
  chromium/repos/extra-x86_64/chromium.desktop
  chromium/repos/extra-x86_64/chromium.install

--+
 PKGBUILD |  487 ++---
 chromium-clang-r1.patch  |   42 +-
 chromium-exclude_unwind_tables.patch |   88 ++---
 chromium-omnibox-unescape-fragment.patch |  437 ++
 chromium-webrtc-r0.patch |   68 ++--
 chromium-widevine.patch  |   20 -
 chromium.desktop |  112 --
 chromium.install |   32 -
 8 files changed, 812 insertions(+), 474 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-21 00:08:54 UTC (rev 313461)
+++ PKGBUILD2017-12-21 00:09:18 UTC (rev 313462)
@@ -1,237 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Pierre Schmitz 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Daniel J Griffiths 
-
-pkgname=chromium
-pkgver=63.0.3239.108
-pkgrel=1
-_launcher_ver=5
-pkgdesc="A web browser built for speed, simplicity, and security"
-arch=('x86_64')
-url="https://www.chromium.org/Home;
-license=('BSD')
-depends=('gtk3' 'nss' 'alsa-lib' 'xdg-utils' 'libxss' 'libcups' 'libgcrypt'
- 'ttf-font' 'systemd' 'dbus' 'libpulse' 'pciutils' 'json-glib'
- 'desktop-file-utils' 'hicolor-icon-theme')
-makedepends=('python2' 'gperf' 'yasm' 'mesa' 'ninja' 'nodejs' 'git' 'clang'
- 'lld')
-optdepends=('pepper-flash: support for Flash content'
-'kdialog: needed for file dialogs in KDE'
-'gnome-keyring: for storing passwords in GNOME keyring'
-'kwallet: for storing passwords in KWallet')
-install=chromium.install
-source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.xz
-
chromium-launcher-$_launcher_ver.tar.gz::https://github.com/foutrelis/chromium-launcher/archive/v$_launcher_ver.tar.gz
-
chromium-$pkgver.txt::https://chromium.googlesource.com/chromium/src.git/+/$pkgver?format=TEXT
-chromium.desktop
-chromium-exclude_unwind_tables.patch
-chromium-clang-r1.patch
-chromium-webrtc-r0.patch
-chromium-widevine.patch)
-sha256sums=('47d80798194da78bdd519b7ce012425b13cf89d6eb287e22a34342a245c31a2b'
-'4dc3428f2c927955d9ae117f2fb24d098cc6dd67adb760ac9c82b522ec8b0587'
-'6da2cc8e4ae13547763f946c331b2f819fbb8af01681b8b90564a95f8a423e58'
-'028a748a5c275de9b8f776f97909f999a8583a4b77fd1cd600b4fc5c0c3e91e9'
-'e53dc6f259acd39df13874f8a0f440528fae764b859dd71447991a5b1fac7c9c'
-'ab5368a3e3a67fa63b33fefc6788ad5b4a79089ef4db1011a14c3bee9fdf70c6'
-'bcb2f4588cf5dcf75cde855c7431e94fdcc34bdd68b876a90f65ab9938594562'
-'d6fdcb922e5a7fbe15759d39ccc8ea4225821c44d98054ce0f23f9d1f00c9808')
-
-# Possible replacements are listed in build/linux/unbundle/replace_gn_files.py
-# Keys are the names in the above script; values are the dependencies in Arch
-declare -rgA _system_libs=(
-  #[ffmpeg]=ffmpeg  # https://crbug.com/731766
-  [flac]=flac
-  #[freetype]=freetype2 # https://crbug.com/pdfium/733
-  #[harfbuzz-ng]=harfbuzz-icu   # https://crbug.com/768938
-  #[icu]=icu# https://crbug.com/772655
-  [libdrm]=
-  [libjpeg]=libjpeg
-  #[libpng]=libpng  # https://crbug.com/752403#c10
-  #[libvpx]=libvpx  # https://bugs.gentoo.org/611394
-  [libwebp]=libwebp
-  [libxml]=libxml2
-  [libxslt]=libxslt
-  [opus]=opus
-  [re2]=re2
-  

[arch-commits] Commit in chromium/trunk (3 files)

2017-12-20 Thread Evangelos Foutras via arch-commits
Date: Thursday, December 21, 2017 @ 00:08:54
  Author: foutrelis
Revision: 313461

upgpkg: chromium 63.0.3239.108-2

- Use system freetype and harfbuzz
- Unescape fragment for display in Omnibox

Added:
  chromium/trunk/chromium-omnibox-unescape-fragment.patch
Modified:
  chromium/trunk/PKGBUILD
Deleted:
  chromium/trunk/chromium.desktop

--+
 PKGBUILD |   45 +-
 chromium-omnibox-unescape-fragment.patch |  437 +
 chromium.desktop |  112 ---
 3 files changed, 466 insertions(+), 128 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 23:58:20 UTC (rev 313460)
+++ PKGBUILD2017-12-21 00:08:54 UTC (rev 313461)
@@ -6,7 +6,7 @@
 
 pkgname=chromium
 pkgver=63.0.3239.108
-pkgrel=1
+pkgrel=2
 _launcher_ver=5
 pkgdesc="A web browser built for speed, simplicity, and security"
 arch=('x86_64')
@@ -25,32 +25,32 @@
 
source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.xz
 
chromium-launcher-$_launcher_ver.tar.gz::https://github.com/foutrelis/chromium-launcher/archive/v$_launcher_ver.tar.gz
 
chromium-$pkgver.txt::https://chromium.googlesource.com/chromium/src.git/+/$pkgver?format=TEXT
-chromium.desktop
-chromium-exclude_unwind_tables.patch
+chromium-omnibox-unescape-fragment.patch
 chromium-clang-r1.patch
 chromium-webrtc-r0.patch
+chromium-exclude_unwind_tables.patch
 chromium-widevine.patch)
 sha256sums=('47d80798194da78bdd519b7ce012425b13cf89d6eb287e22a34342a245c31a2b'
 '4dc3428f2c927955d9ae117f2fb24d098cc6dd67adb760ac9c82b522ec8b0587'
 '6da2cc8e4ae13547763f946c331b2f819fbb8af01681b8b90564a95f8a423e58'
-'028a748a5c275de9b8f776f97909f999a8583a4b77fd1cd600b4fc5c0c3e91e9'
-'e53dc6f259acd39df13874f8a0f440528fae764b859dd71447991a5b1fac7c9c'
+'814eb2cecb10cb697e24036b08aac41e88d0e38971741f9e946200764e2401ae'
 'ab5368a3e3a67fa63b33fefc6788ad5b4a79089ef4db1011a14c3bee9fdf70c6'
 'bcb2f4588cf5dcf75cde855c7431e94fdcc34bdd68b876a90f65ab9938594562'
+'e53dc6f259acd39df13874f8a0f440528fae764b859dd71447991a5b1fac7c9c'
 'd6fdcb922e5a7fbe15759d39ccc8ea4225821c44d98054ce0f23f9d1f00c9808')
 
 # Possible replacements are listed in build/linux/unbundle/replace_gn_files.py
 # Keys are the names in the above script; values are the dependencies in Arch
-declare -rgA _system_libs=(
-  #[ffmpeg]=ffmpeg  # https://crbug.com/731766
+readonly -A _system_libs=(
+  #[ffmpeg]=ffmpeg# https://crbug.com/731766
   [flac]=flac
-  #[freetype]=freetype2 # https://crbug.com/pdfium/733
-  #[harfbuzz-ng]=harfbuzz-icu   # https://crbug.com/768938
-  #[icu]=icu# https://crbug.com/772655
+  #[freetype]=freetype2   # Using 'use_system_freetype=true' until M65
+  #[harfbuzz-ng]=harfbuzz # Using 'use_system_harfbuzz=true' until M65
+  #[icu]=icu  # https://crbug.com/772655 + need M64 for ICU 60
   [libdrm]=
   [libjpeg]=libjpeg
-  #[libpng]=libpng  # https://crbug.com/752403#c10
-  #[libvpx]=libvpx  # https://bugs.gentoo.org/611394
+  #[libpng]=libpng# https://crbug.com/752403#c10
+  #[libvpx]=libvpx# https://bugs.gentoo.org/611394
   [libwebp]=libwebp
   [libxml]=libxml2
   [libxslt]=libxslt
@@ -60,7 +60,13 @@
   [yasm]=
   [zlib]=minizip
 )
-depends+=(${_system_libs[@]})
+readonly _unwanted_bundled_libs=(
+  ${!_system_libs[@]}
+  ${_system_libs[libjpeg]+libjpeg_turbo}
+  freetype
+  harfbuzz-ng
+)
+depends+=(${_system_libs[@]} freetype2 harfbuzz)
 
 # Google API keys (see https://www.chromium.org/developers/how-tos/api-keys)
 # Note: These are for Arch Linux use ONLY. For your own distribution, please
@@ -90,6 +96,9 @@
   # https://chromium-review.googlesource.com/c/chromium/src/+/712575
   patch -Np1 -i ../chromium-exclude_unwind_tables.patch
 
+  # https://crbug.com/789163
+  patch -Np1 -i ../chromium-omnibox-unescape-fragment.patch
+
   # Fixes from Gentoo
   patch -Np1 -i ../chromium-clang-r1.patch
   patch -Np1 -i ../chromium-webrtc-r0.patch
@@ -116,12 +125,14 @@
   # *should* do what the remove_bundled_libraries.py script does, with the
   # added benefit of not having to list all the remaining libraries
   local _lib
-  for _lib in ${!_system_libs[@]} ${_system_libs[libjpeg]+libjpeg_turbo}; do
+  for _lib in ${_unwanted_bundled_libs[@]}; do
 find -type f -path "*third_party/$_lib/*" \
   \! -path "*third_party/$_lib/chromium/*" \
   \! -path "*third_party/$_lib/google/*" \
-  \! -path "*base/third_party/icu/*" \
-  \! -regex '.*\.\(gn\|gni\|isolate\|py\)' \
+  \! -path './base/third_party/icu/*' \
+  \! -path './third_party/freetype/src/src/psnames/pstables.h' \
+  \! -path 

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

2017-12-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, December 20, 2017 @ 23:34:42
  Author: arojas
Revision: 275119

archrelease: copy trunk to community-x86_64

Added:
  nemo-extensions/repos/community-x86_64/PKGBUILD
(from rev 275118, nemo-extensions/trunk/PKGBUILD)
  nemo-extensions/repos/community-x86_64/nemo-seahorse-gnupg.patch
(from rev 275118, nemo-extensions/trunk/nemo-seahorse-gnupg.patch)
Deleted:
  nemo-extensions/repos/community-x86_64/PKGBUILD
  nemo-extensions/repos/community-x86_64/nemo-seahorse-gnupg.patch

---+
 PKGBUILD  |  409 ++--
 nemo-seahorse-gnupg.patch |   26 +-
 2 files changed, 220 insertions(+), 215 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-20 23:34:13 UTC (rev 275118)
+++ PKGBUILD2017-12-20 23:34:42 UTC (rev 275119)
@@ -1,202 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira 
-
-pkgbase=nemo-extensions
-pkgname=('nemo-fileroller'
- 'nemo-image-converter'
-'nemo-preview'
-'nemo-python'
-'nemo-seahorse'
-'nemo-share'
-'nemo-terminal')
-   #'nemo-media-columns'
-   #'nemo-pastebin'
-   #'nemo-compare'
-   #'nemo-rabbitvcs'
-pkgver=3.6.0
-pkgrel=1
-pkgdesc="Various extensions for Nemo"
-arch=('i686' 'x86_64')
-license=('GPL2')
-url="https://github.com/linuxmint/nemo-extensions;
-depends=(nemo file-roller cjs clutter-gtk clutter-gst gst-plugins-good 
imagemagick libmusicbrainz5
- evince gtksourceview3 webkit2gtk python2-gobject seahorse-nautilus 
samba)
-makedepends=(gnome-common gtk-doc intltool gobject-introspection 
libgnome-keyring xreader) # python2-distutils-extra
-options=('!emptydirs')
-source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/linuxmint/nemo-extensions/archive/${pkgver}.tar.gz;
-nemo-seahorse-gnupg.patch)
-sha256sums=('593aaf206ef50a8185e1f71c9018ce6a8b4bcb82b4684494e069f9045ba11fd1'
-'ba6ae77a7d6727088e49aae2dc2c89c77c44f1ea19ee48956481d673d97caa36')
-
-prepare() {
-  cd ${pkgbase}-${pkgver}
-
-  # Python2 fix
-  find -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
-
-  # Fix path for nemo-python
-  sed -i 's|libdirsuffix="/i386-linux-gnu/"|libdirsuffix=""|' 
nemo-python/m4/python.m4
-
-  # Support GnuPG 2.2
-  patch -p1 -i ../nemo-seahorse-gnupg.patch
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-
-  _configure_pkgs="nemo-fileroller nemo-seahorse nemo-share"
-  for dir in ${_configure_pkgs}
-  do
-pushd ${dir}
-autoreconf -fi
-./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/${dir} \
---disable-schemas-compile
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
"$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/  
func_append compile_command " -Wl,-O1,--as-needed"\n  func_append 
finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
-make
-popd
-  done
-
-  _autogen_pkgs="nemo-image-converter nemo-preview nemo-python"
-  for dir in ${_autogen_pkgs}
-  do
-pushd ${dir}
-./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/${dir} \
- --disable-schemas-compile PYTHON=python2
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
"$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/  
func_append compile_command " -Wl,-O1,--as-needed"\n  func_append 
finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
-make
-popd
-  done
-
-# # nemo-pastebin
-# cd nemo-pastebin
-# python2 ./setup.py build --build-base ${srcdir}/build/ || return 1
-# cd ..
-
-   # nemo-media-columns
-   # Nothing to do here
-   # Required python2-pypdf from AUR
-
-   # nemo-compare
-   # cd nemo-compare
-
-# nemo-rabbitvcs
-# Nothing to do here
-
-}
-
-package_nemo-fileroller(){
-  pkgdesc="File archiver extension for Nemo"
-  depends=(nemo file-roller)
-
-  cd ${pkgbase}-${pkgver}/nemo-fileroller
-  make DESTDIR="${pkgdir}" install
-}
-
-package_nemo-image-converter(){
-  pkgdesc="Nemo extension to rotate/resize image files"
-  depends=(nemo imagemagick)
-
-  cd ${pkgbase}-${pkgver}/nemo-image-converter
-  make DESTDIR="${pkgdir}" install
-}
-
-package_nemo-preview(){
-  pkgdesc="GtkClutter and Javascript-based quick previewer for Nemo"
-  depends=(nemo cjs clutter-gtk clutter-gst libmusicbrainz5 evince 
gtksourceview3 xreader)
-
-  cd ${pkgbase}-${pkgver}/nemo-preview
-  make DESTDIR="${pkgdir}" install
-}
-
-package_nemo-python() {
-  pkgdesc="Python2 binding for Nemo components"
-  depends=(nemo python2-gobject)
-
-  cd ${pkgbase}-${pkgver}/nemo-python
-  make DESTDIR="${pkgdir}" install
-}
-
-package_nemo-seahorse(){
-  pkgdesc="PGP encryption and signing extension for Nemo"
-  depends=(nemo seahorse-nautilus)
-
-  cd 

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

2017-12-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, December 20, 2017 @ 23:34:13
  Author: arojas
Revision: 275118

Fix xreader dependency versioning (FS#56798)

Modified:
  nemo-extensions/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 23:10:19 UTC (rev 275117)
+++ PKGBUILD2017-12-20 23:34:13 UTC (rev 275118)
@@ -14,7 +14,7 @@
#'nemo-compare'
#'nemo-rabbitvcs'
 pkgver=3.6.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Various extensions for Nemo"
 arch=('x86_64')
 license=('GPL2')
@@ -24,9 +24,11 @@
 makedepends=(gnome-common gtk-doc intltool gobject-introspection 
libgnome-keyring xreader) # python2-distutils-extra
 options=('!emptydirs')
 
source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/linuxmint/nemo-extensions/archive/${pkgver}.tar.gz;
-nemo-seahorse-gnupg.patch)
+nemo-seahorse-gnupg.patch
+
nemo-preview-xreader-version.patch::"https://github.com/linuxmint/nemo-extensions/commit/52767dc7.patch;)
 sha256sums=('593aaf206ef50a8185e1f71c9018ce6a8b4bcb82b4684494e069f9045ba11fd1'
-'ba6ae77a7d6727088e49aae2dc2c89c77c44f1ea19ee48956481d673d97caa36')
+'ba6ae77a7d6727088e49aae2dc2c89c77c44f1ea19ee48956481d673d97caa36'
+'5ecc476b2f84ab98ad0214c99c3a9e7366ab1fd2ef647953fe135601e5bdb9ce')
 
 prepare() {
   cd ${pkgbase}-${pkgver}
@@ -39,6 +41,9 @@
 
   # Support GnuPG 2.2
   patch -p1 -i ../nemo-seahorse-gnupg.patch
+
+  # Fix xreader dependency versioning
+  patch -p1 -i ../nemo-preview-xreader-version.patch
 }
 
 build() {


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

2017-12-20 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, December 20, 2017 @ 23:15:58
  Author: bisson
Revision: 313456

archrelease: copy trunk to extra-x86_64

Added:
  libjpeg-turbo/repos/extra-x86_64/PKGBUILD
(from rev 313455, libjpeg-turbo/trunk/PKGBUILD)
Deleted:
  libjpeg-turbo/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-20 23:14:45 UTC (rev 313455)
+++ PKGBUILD2017-12-20 23:15:58 UTC (rev 313456)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Allan McRae 
-# Contributor: Simone Sclavi 'Ito' 
-
-pkgname=libjpeg-turbo
-pkgver=1.5.2
-pkgrel=2
-pkgdesc='JPEG image codec with accelerated baseline compression and 
decompression'
-url='https://libjpeg-turbo.org/'
-arch=('x86_64')
-license=('custom')
-makedepends=('nasm' 'jdk8-openjdk')
-validpgpkeys=('7D6293CC6378786E1B5C496885C7044E033FDE16')
-source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig})
-sha256sums=('9098943b270388727ae61de82adec73cf9f0dbb240b3bc8b172595ebf405b528'
-'SKIP')
-
-provides=('libjpeg=8.1.2' 'turbojpeg')
-conflicts=('libjpeg' 'turbojpeg')
-replaces=('libjpeg' 'turbojpeg')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   sed 's/Szathmáry/Szathmary/g' -i java/org/libjpegturbo/turbojpeg/*.java
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   export JNI_CFLAGS='-I/usr/lib/jvm/default/include 
-I/usr/lib/jvm/default/include/linux'
-   ./configure \
-   --prefix=/usr \
-   --mandir=/usr/share/man \
-   --with-jpeg8 \
-   --with-java \
-   --with-build-date="$(date --utc 
--date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y%m%d)" \
-
-   make
-}
-
-check() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make test
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make \
-   DESTDIR="${pkgdir}" \
-   docdir="/usr/share/doc/${pkgname}" \
-   exampledir="/usr/share/doc/${pkgname}" \
-   install
-
-   install -Dm 644 jpegint.h "${pkgdir}/usr/include" # required by other 
software
-   install -d "${pkgdir}/usr/share/licenses/libjpeg-turbo"
-   ln -s ../../doc/libjpeg-turbo/LICENSE.md 
"${pkgdir}"/usr/share/licenses/libjpeg-turbo
-   install -Dm 644 ChangeLog.md -t"${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: libjpeg-turbo/repos/extra-x86_64/PKGBUILD (from rev 313455, 
libjpeg-turbo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-20 23:15:58 UTC (rev 313456)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Allan McRae 
+# Contributor: Simone Sclavi 'Ito' 
+
+pkgname=libjpeg-turbo
+pkgver=1.5.3
+pkgrel=1
+pkgdesc='JPEG image codec with accelerated baseline compression and 
decompression'
+url='https://libjpeg-turbo.org/'
+arch=('x86_64')
+license=('custom')
+makedepends=('nasm' 'jdk8-openjdk')
+validpgpkeys=('7D6293CC6378786E1B5C496885C7044E033FDE16')
+source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig})
+sha256sums=('b24890e2bb46e12e72a79f7e965f409f4e16466d00e1dd15d93d73ee6b592523'
+'SKIP')
+
+provides=('libjpeg=8.1.2' 'turbojpeg')
+conflicts=('libjpeg' 'turbojpeg')
+replaces=('libjpeg' 'turbojpeg')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed 's/Szathmáry/Szathmary/g' -i java/org/libjpegturbo/turbojpeg/*.java
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   # make the build reproducible
+   _build=$(date --utc --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y%m%d)
+
+   export JNI_CFLAGS='-I/usr/lib/jvm/default/include 
-I/usr/lib/jvm/default/include/linux'
+   ./configure \
+   --prefix=/usr \
+   --mandir=/usr/share/man \
+   --with-jpeg8 \
+   --with-java \
+   --with-build-date=$_build \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make test
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make \
+   DESTDIR="${pkgdir}" \
+   docdir="/usr/share/doc/${pkgname}" \
+   exampledir="/usr/share/doc/${pkgname}" \
+   install
+
+   install -d "${pkgdir}/usr/share/licenses/${pkgname}"
+   ln -s ../../doc/libjpeg-turbo/LICENSE.md 
"${pkgdir}/usr/share/licenses/${pkgname}"
+   install -m 644 jpegint.h "${pkgdir}/usr/include" # required by other 
software
+}


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

2017-12-20 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, December 20, 2017 @ 23:14:45
  Author: bisson
Revision: 313455

upstream update

Modified:
  libjpeg-turbo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 23:00:43 UTC (rev 313454)
+++ PKGBUILD2017-12-20 23:14:45 UTC (rev 313455)
@@ -4,8 +4,8 @@
 # Contributor: Simone Sclavi 'Ito' 
 
 pkgname=libjpeg-turbo
-pkgver=1.5.2
-pkgrel=2
+pkgver=1.5.3
+pkgrel=1
 pkgdesc='JPEG image codec with accelerated baseline compression and 
decompression'
 url='https://libjpeg-turbo.org/'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 makedepends=('nasm' 'jdk8-openjdk')
 validpgpkeys=('7D6293CC6378786E1B5C496885C7044E033FDE16')
 
source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig})
-sha256sums=('9098943b270388727ae61de82adec73cf9f0dbb240b3bc8b172595ebf405b528'
+sha256sums=('b24890e2bb46e12e72a79f7e965f409f4e16466d00e1dd15d93d73ee6b592523'
 'SKIP')
 
 provides=('libjpeg=8.1.2' 'turbojpeg')


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

2017-12-20 Thread Christian Hesse via arch-commits
Date: Wednesday, December 20, 2017 @ 23:10:19
  Author: eworm
Revision: 275117

archrelease: copy trunk to community-x86_64

Added:
  oath-toolkit/repos/community-x86_64/PKGBUILD
(from rev 275116, oath-toolkit/trunk/PKGBUILD)
Deleted:
  oath-toolkit/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-20 23:10:14 UTC (rev 275116)
+++ PKGBUILD2017-12-20 23:10:19 UTC (rev 275117)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: Sébastien Luttringer
-# Contributor: L42y <423...@gmail.com>
-
-pkgname=oath-toolkit
-pkgver=2.6.2
-pkgrel=1
-pkgdesc='OATH one-time password toolkit'
-arch=('i686' 'x86_64')
-url='http://www.nongnu.org/oath-toolkit/'
-license=('GPL3')
-depends=('glibc' 'pam' 'xmlsec')
-validpgpkeys=('9AA9BDB11BB1B99A21285A330664A76954265E8C') # Simon Josefsson
-source=("http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig})
-sha256sums=('b03446fa4b549af5ebe4d35d7aba51163442d255660558cd861ebce536824aa0'
-'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  # Install basic docs too
-  install -D -m 644 pam_oath/README "$pkgdir/usr/share/doc/$pkgname/PAM_README"
-  install -D -m 644 README "$pkgdir/usr/share/doc/$pkgname/README"
-}
-

Copied: oath-toolkit/repos/community-x86_64/PKGBUILD (from rev 275116, 
oath-toolkit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-20 23:10:19 UTC (rev 275117)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Sébastien Luttringer
+# Contributor: L42y <423...@gmail.com>
+
+pkgname=oath-toolkit
+pkgver=2.6.2
+pkgrel=2
+pkgdesc='OATH one-time password toolkit'
+arch=('x86_64')
+url='http://www.nongnu.org/oath-toolkit/'
+license=('GPL3')
+depends=('glibc' 'pam' 'xmlsec')
+validpgpkeys=('9AA9BDB11BB1B99A21285A330664A76954265E8C') # Simon Josefsson
+source=("http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig}
+
'oath-toolkit-update-gnulib.patch::https://gitlab.com/oath-toolkit/oath-toolkit/commit/2fffce2a471f74a585939c84cce16ef3015e5d3d.diff')
+sha256sums=('b03446fa4b549af5ebe4d35d7aba51163442d255660558cd861ebce536824aa0'
+'SKIP'
+'e3ca2ca2cc7e579ac5474bdaff1c77b0b567d4dffd73bf5bf4681a6c0319542c')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  patch -Np1 < "${srcdir}"/oath-toolkit-update-gnulib.patch
+  
+  autoreconf -fi
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  # Install basic docs too
+  install -D -m 0644 pam_oath/README 
"$pkgdir/usr/share/doc/$pkgname/PAM_README"
+  install -D -m 0644 README "$pkgdir/usr/share/doc/$pkgname/README"
+}
+


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

2017-12-20 Thread Christian Hesse via arch-commits
Date: Wednesday, December 20, 2017 @ 23:10:14
  Author: eworm
Revision: 275116

upgpkg: oath-toolkit 2.6.2-2

rebuild old packages

Modified:
  oath-toolkit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:45:51 UTC (rev 275115)
+++ PKGBUILD2017-12-20 23:10:14 UTC (rev 275116)
@@ -5,7 +5,7 @@
 
 pkgname=oath-toolkit
 pkgver=2.6.2
-pkgrel=1
+pkgrel=2
 pkgdesc='OATH one-time password toolkit'
 arch=('x86_64')
 url='http://www.nongnu.org/oath-toolkit/'
@@ -12,12 +12,23 @@
 license=('GPL3')
 depends=('glibc' 'pam' 'xmlsec')
 validpgpkeys=('9AA9BDB11BB1B99A21285A330664A76954265E8C') # Simon Josefsson
-source=("http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig})
+source=("http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig}
+
'oath-toolkit-update-gnulib.patch::https://gitlab.com/oath-toolkit/oath-toolkit/commit/2fffce2a471f74a585939c84cce16ef3015e5d3d.diff')
 sha256sums=('b03446fa4b549af5ebe4d35d7aba51163442d255660558cd861ebce536824aa0'
-'SKIP')
+'SKIP'
+'e3ca2ca2cc7e579ac5474bdaff1c77b0b567d4dffd73bf5bf4681a6c0319542c')
 
+prepare() {
+  cd $pkgname-$pkgver
+
+  patch -Np1 < "${srcdir}"/oath-toolkit-update-gnulib.patch
+  
+  autoreconf -fi
+}
+
 build() {
   cd $pkgname-$pkgver
+
   ./configure --prefix=/usr
   make
 }
@@ -24,14 +35,17 @@
 
 check() {
   cd $pkgname-$pkgver
+
   make check
 }
 
 package() {
   cd $pkgname-$pkgver
+
   make DESTDIR="$pkgdir" install
+
   # Install basic docs too
-  install -D -m 644 pam_oath/README "$pkgdir/usr/share/doc/$pkgname/PAM_README"
-  install -D -m 644 README "$pkgdir/usr/share/doc/$pkgname/README"
+  install -D -m 0644 pam_oath/README 
"$pkgdir/usr/share/doc/$pkgname/PAM_README"
+  install -D -m 0644 README "$pkgdir/usr/share/doc/$pkgname/README"
 }
 


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

2017-12-20 Thread Christian Hesse via arch-commits
Date: Wednesday, December 20, 2017 @ 23:00:37
  Author: eworm
Revision: 313453

upgpkg: fcgi 2.4.0-13

rebuild old packages

Modified:
  fcgi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:57:32 UTC (rev 313452)
+++ PKGBUILD2017-12-20 23:00:37 UTC (rev 313453)
@@ -5,7 +5,7 @@
 
 pkgname=fcgi
 pkgver=2.4.0
-pkgrel=12
+pkgrel=13
 depends=('gcc-libs')
 pkgdesc="FASTCgi (fcgi) is a language independent, high performant extension 
to CGI"
 arch=('x86_64')
@@ -13,16 +13,19 @@
 options=('!makeflags')
 url="http://www.fastcgi.com;
 
source=("https://sources.archlinux.org/other/packages/fcgi/${pkgname}-${pkgver}.tar.gz;
-'fcgi-2.4.0-configure.in.patch' 'fcgi-2.4.0-Makefile.am-CPPFLAGS.patch'
-'fcgi-2.4.0-gcc44_fixes.patch' 'fcgi-2.4.0-poll.patch')
-md5sums=('d15060a813b91383a9f3c66faf84867e'
- '7e901968aa90168b6cdfc8323ca59868'
- '8c07165aed574b853326ae25fe9af291'
- '2e72c834db21da6af3f77dd2b36727a2'
- '02900e5f2400ed2982db1e02c4a17aa8')
+'fcgi-2.4.0-configure.in.patch'
+'fcgi-2.4.0-Makefile.am-CPPFLAGS.patch'
+'fcgi-2.4.0-gcc44_fixes.patch'
+'fcgi-2.4.0-poll.patch')
+sha256sums=('66fc45c6b36a21bf2fbbb68e90f780cc21a9da1fffbae75e76d2b4402d3f05b9'
+'1b22bf50d37a0086870f3259c04df05f92bfa74795212283a24baba62d617dc8'
+'df132dec038246ce9526f311c5d00ec103427111722c476f78069d7f1386529f'
+'c31eb921a662b53401a88caafbadb16b02ae809d25d0b6d8b1ac96d20803e9d5'
+'7fc1e0af1c71d7b86d1a90595fbadedbb01db0731b9e91b17fb5437680bb4e96')
 
 prepare() {
   cd "${srcdir}/${pkgname}-${pkgver}"
+
   # Patches by Fedora:
   # http://pkgs.fedoraproject.org/cgit/fcgi.git/tree/
   patch -p1 -i "${srcdir}/fcgi-2.4.0-configure.in.patch"
@@ -39,6 +42,7 @@
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
+
   ./configure --prefix=/usr
   make
 }
@@ -45,6 +49,7 @@
 
 package() {
   cd "${srcdir}/${pkgname}-${pkgver}"
+
   make DESTDIR="${pkgdir}" install
   install -Dm644 LICENSE.TERMS 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }


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

2017-12-20 Thread Christian Hesse via arch-commits
Date: Wednesday, December 20, 2017 @ 23:00:43
  Author: eworm
Revision: 313454

archrelease: copy trunk to testing-x86_64

Added:
  fcgi/repos/testing-x86_64/
  fcgi/repos/testing-x86_64/PKGBUILD
(from rev 313453, fcgi/trunk/PKGBUILD)
  fcgi/repos/testing-x86_64/fcgi-2.4.0-Makefile.am-CPPFLAGS.patch
(from rev 313453, fcgi/trunk/fcgi-2.4.0-Makefile.am-CPPFLAGS.patch)
  fcgi/repos/testing-x86_64/fcgi-2.4.0-configure.in.patch
(from rev 313453, fcgi/trunk/fcgi-2.4.0-configure.in.patch)
  fcgi/repos/testing-x86_64/fcgi-2.4.0-gcc44_fixes.patch
(from rev 313453, fcgi/trunk/fcgi-2.4.0-gcc44_fixes.patch)
  fcgi/repos/testing-x86_64/fcgi-2.4.0-poll.patch
(from rev 313453, fcgi/trunk/fcgi-2.4.0-poll.patch)

---+
 PKGBUILD  |   55 
 fcgi-2.4.0-Makefile.am-CPPFLAGS.patch |   36 +
 fcgi-2.4.0-configure.in.patch |   19 +++
 fcgi-2.4.0-gcc44_fixes.patch  |   11 
 fcgi-2.4.0-poll.patch |   86 
 5 files changed, 207 insertions(+)

Copied: fcgi/repos/testing-x86_64/PKGBUILD (from rev 313453, 
fcgi/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-20 23:00:43 UTC (rev 313454)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: tobias 
+# Modified by: eliott 
+# Original by Benjamin Andresen, klapmuetz [at] gmail [dot] com
+
+pkgname=fcgi
+pkgver=2.4.0
+pkgrel=13
+depends=('gcc-libs')
+pkgdesc="FASTCgi (fcgi) is a language independent, high performant extension 
to CGI"
+arch=('x86_64')
+license=('custom')
+options=('!makeflags')
+url="http://www.fastcgi.com;
+source=("https://sources.archlinux.org/other/packages/fcgi/${pkgname}-${pkgver}.tar.gz;
+'fcgi-2.4.0-configure.in.patch'
+'fcgi-2.4.0-Makefile.am-CPPFLAGS.patch'
+'fcgi-2.4.0-gcc44_fixes.patch'
+'fcgi-2.4.0-poll.patch')
+sha256sums=('66fc45c6b36a21bf2fbbb68e90f780cc21a9da1fffbae75e76d2b4402d3f05b9'
+'1b22bf50d37a0086870f3259c04df05f92bfa74795212283a24baba62d617dc8'
+'df132dec038246ce9526f311c5d00ec103427111722c476f78069d7f1386529f'
+'c31eb921a662b53401a88caafbadb16b02ae809d25d0b6d8b1ac96d20803e9d5'
+'7fc1e0af1c71d7b86d1a90595fbadedbb01db0731b9e91b17fb5437680bb4e96')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # Patches by Fedora:
+  # http://pkgs.fedoraproject.org/cgit/fcgi.git/tree/
+  patch -p1 -i "${srcdir}/fcgi-2.4.0-configure.in.patch"
+  patch -p1 -i "${srcdir}/fcgi-2.4.0-Makefile.am-CPPFLAGS.patch"
+  patch -p1 -i "${srcdir}/fcgi-2.4.0-gcc44_fixes.patch"
+  patch -p1 -i "${srcdir}/fcgi-2.4.0-poll.patch"
+
+  libtoolize --automake --copy --force
+  aclocal
+  autoheader
+  automake --add-missing --force-missing --copy
+  autoconf
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 LICENSE.TERMS 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: fcgi/repos/testing-x86_64/fcgi-2.4.0-Makefile.am-CPPFLAGS.patch (from 
rev 313453, fcgi/trunk/fcgi-2.4.0-Makefile.am-CPPFLAGS.patch)
===
--- testing-x86_64/fcgi-2.4.0-Makefile.am-CPPFLAGS.patch
(rev 0)
+++ testing-x86_64/fcgi-2.4.0-Makefile.am-CPPFLAGS.patch2017-12-20 
23:00:43 UTC (rev 313454)
@@ -0,0 +1,36 @@
+diff -ru fcgi-2.4.0-orig/cgi-fcgi/Makefile.am fcgi-2.4.0/cgi-fcgi/Makefile.am
+--- fcgi-2.4.0-orig/cgi-fcgi/Makefile.am   2007-03-05 18:09:31.0 
+0100
 fcgi-2.4.0/cgi-fcgi/Makefile.am2007-03-05 19:38:14.0 +0100
+@@ -2,7 +2,7 @@
+ bin_PROGRAMS = cgi-fcgi
+ 
+ INCLUDEDIR  = ../include
+-CPPFLAGS= @CPPFLAGS@ -I$(top_srcdir)/include
++AM_CPPFLAGS= @CPPFLAGS@ -I$(top_srcdir)/include
+ 
+ INCLUDE_FILES   = $(INCLUDEDIR)/fastcgi.h  \
+ $(INCLUDEDIR)/fcgiapp.h  \
+diff -ru fcgi-2.4.0-orig/examples/Makefile.am fcgi-2.4.0/examples/Makefile.am
+--- fcgi-2.4.0-orig/examples/Makefile.am   2007-03-05 18:09:31.0 
+0100
 fcgi-2.4.0/examples/Makefile.am2007-03-05 19:38:34.0 +0100
+@@ -11,7 +11,7 @@
+ EXTRA_PROGRAMS = threaded echo-cpp
+ 
+ INCLUDEDIR  = ../include
+-CPPFLAGS= @CPPFLAGS@ -I$(top_srcdir)/include
++AM_CPPFLAGS= @CPPFLAGS@ -I$(top_srcdir)/include
+ 
+ INCLUDE_FILES   = $(INCLUDEDIR)/fastcgi.h\
+   $(INCLUDEDIR)/fcgiapp.h\
+diff -ru fcgi-2.4.0-orig/libfcgi/Makefile.am fcgi-2.4.0/libfcgi/Makefile.am
+--- fcgi-2.4.0-orig/libfcgi/Makefile.am2007-03-05 18:09:31.0 
+0100
 fcgi-2.4.0/libfcgi/Makefile.am 2007-03-05 19:38:03.0 +0100
+@@ -1,7 +1,7 @@
+ # $Id: 

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

2017-12-20 Thread Christian Hesse via arch-commits
Date: Wednesday, December 20, 2017 @ 22:57:26
  Author: eworm
Revision: 313451

upgpkg: iw 4.9-2

rebuild old packages

Modified:
  iw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:46:37 UTC (rev 313450)
+++ PKGBUILD2017-12-20 22:57:26 UTC (rev 313451)
@@ -3,7 +3,7 @@
 
 pkgname=iw
 pkgver=4.9
-pkgrel=1
+pkgrel=2
 pkgdesc="nl80211 based CLI configuration utility for wireless devices"
 arch=("x86_64")
 url="http://wireless.kernel.org/en/users/Documentation/iw;
@@ -10,10 +10,10 @@
 license=("GPL")
 depends=("libnl")
 makedepends=("linux-api-headers")
+validpgpkeys=('C0EBC440F6DA091C884D8532E0F373F37BF9099A') # Johannes Berg
 
source=(https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.{xz,sign})
 sha256sums=('324cc805fad52cba2c16b9ab569906889fb645cc962aac4cfda1db85d2de97ce'
 'SKIP')
-validpgpkeys=('C0EBC440F6DA091C884D8532E0F373F37BF9099A') # Johannes Berg
 
 build() {
   cd "$srcdir"/$pkgname-$pkgver


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

2017-12-20 Thread Christian Hesse via arch-commits
Date: Wednesday, December 20, 2017 @ 22:57:32
  Author: eworm
Revision: 313452

archrelease: copy trunk to testing-x86_64

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

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

Copied: iw/repos/testing-x86_64/PKGBUILD (from rev 313451, iw/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-20 22:57:32 UTC (rev 313452)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Thomas Bächler 
+
+pkgname=iw
+pkgver=4.9
+pkgrel=2
+pkgdesc="nl80211 based CLI configuration utility for wireless devices"
+arch=("x86_64")
+url="http://wireless.kernel.org/en/users/Documentation/iw;
+license=("GPL")
+depends=("libnl")
+makedepends=("linux-api-headers")
+validpgpkeys=('C0EBC440F6DA091C884D8532E0F373F37BF9099A') # Johannes Berg
+source=(https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.{xz,sign})
+sha256sums=('324cc805fad52cba2c16b9ab569906889fb645cc962aac4cfda1db85d2de97ce'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  make DESTDIR="$pkgdir" SBINDIR="/usr/bin" install
+}


[arch-commits] Commit in nvidia-340xx/repos (4 files)

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 22:46:37
  Author: heftig
Revision: 313450

archrelease: copy trunk to staging-x86_64

Added:
  nvidia-340xx/repos/staging-x86_64/
  nvidia-340xx/repos/staging-x86_64/PKGBUILD
(from rev 313449, nvidia-340xx/trunk/PKGBUILD)
  nvidia-340xx/repos/staging-x86_64/kernel-4.11.patch
(from rev 313449, nvidia-340xx/trunk/kernel-4.11.patch)
  nvidia-340xx/repos/staging-x86_64/kernel-4.14.patch
(from rev 313449, nvidia-340xx/trunk/kernel-4.14.patch)

---+
 PKGBUILD  |   73 
 kernel-4.11.patch |   38 +++
 kernel-4.14.patch |   29 
 3 files changed, 140 insertions(+)

Copied: nvidia-340xx/repos/staging-x86_64/PKGBUILD (from rev 313449, 
nvidia-340xx/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-12-20 22:46:37 UTC (rev 313450)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia-340xx
+pkgname=(nvidia-340xx nvidia-340xx-dkms)
+pkgver=340.104
+_extramodules=extramodules-4.14-ARCH
+pkgrel=16
+pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-340xx-utils=${pkgver}" 'linux' 'linux-headers>=4.14' 
'linux-headers<4.15')
+conflicts=('nvidia')
+license=('custom')
+options=('!strip')
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;
+'kernel-4.11.patch' 'kernel-4.14.patch')
+sha512sums=('e962494561728af5a911354bfb3560e414464f7858f30f9654eac5ca56175bc8498d1eee93a18248c63e9eee7d84807ef924fe9f53239644d7085b0f3502bf8c'
+
'c25d90499e1deb26129a67dd7e953be8c1e31c5770e2b8b64d03af54cf1afec1a52636e74900f8ac468692207ab8a3765a12edd581142c4d2cfd2d6e66ac7ac2'
+
'ccaa40e085d985ec4280003e36dd06e60958ed1408867379fd21a68a18d48aa4be311bf9ad1e804f7a7245c90be98e919d2ec30f45d290f1cdb19c866bdb8a8d')
+
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+# patches here
+
+patch -Np0 < "${srcdir}/kernel-4.11.patch"
+patch -Np1 < "${srcdir}/kernel-4.14.patch"
+
+cp -a kernel kernel-dkms
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+
+cd uvm
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia-340xx() {
+pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
+depends=('linux>=4.14' 'linux<4.15' "nvidia-340xx-utils=${pkgver}" 'libgl')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/{nvidia,uvm/nvidia-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+  install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+}
+
+package_nvidia-340xx-dkms() {
+pkgdesc="NVIDIA driver sources for linux, 340xx legacy branch"
+depends=('dkms' "nvidia-340xx-utils=$pkgver" 'libgl')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+conflicts+=('nvidia-340xx')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+cat "${pkgdir}"/usr/src/nvidia-${pkgver}/uvm/dkms.conf.fragment >> 
"${pkgdir}"/usr/src/nvidia-${pkgver}/dkms.conf
+
+echo "blacklist nouveau" |
+  install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+}

Copied: nvidia-340xx/repos/staging-x86_64/kernel-4.11.patch (from rev 313449, 
nvidia-340xx/trunk/kernel-4.11.patch)
===
--- staging-x86_64/kernel-4.11.patch(rev 0)
+++ staging-x86_64/kernel-4.11.patch2017-12-20 22:46:37 UTC (rev 313450)
@@ -0,0 +1,38 @@
+--- kernel/uvm/nvidia_uvm_lite.c   2017-09-27 13:50:46.334075042 +0200
 kernel/uvm/nvidia_uvm_lite.c   2017-09-27 13:56:06.358041280 +0200
+@@ -818,7 +818,11 @@
+ }
+ 
+ #if defined(NV_VM_OPERATIONS_STRUCT_HAS_FAULT)
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+ int _fault(struct vm_area_struct *vma, struct vm_fault *vmf)
++#else 
++int _fault(struct vm_fault *vmf)  
++#endif
+ {
+ #if defined(NV_VM_FAULT_HAS_ADDRESS)
+ unsigned long vaddr = vmf->address;
+@@ -828,7 +832,11 @@
+ struct page *page = NULL;
+ int retval;
+ 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+ retval = _fault_common(vma, vaddr, , vmf->flags);
++#else
++retval = _fault_common(NULL, vaddr, , vmf->flags);
++#endif
+ 
+ vmf->page 

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

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 22:46:11
  Author: heftig
Revision: 313449

archrelease: copy trunk to staging-x86_64

Added:
  nvidia/repos/staging-x86_64/
  nvidia/repos/staging-x86_64/PKGBUILD
(from rev 313448, nvidia/trunk/PKGBUILD)
  nvidia/repos/staging-x86_64/fix-abi.patch
(from rev 313448, nvidia/trunk/fix-abi.patch)

---+
 PKGBUILD  |   77 
 fix-abi.patch |   12 
 2 files changed, 89 insertions(+)

Copied: nvidia/repos/staging-x86_64/PKGBUILD (from rev 313448, 
nvidia/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-12-20 22:46:11 UTC (rev 313449)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia
+pkgname=(nvidia nvidia-dkms)
+pkgver=387.34
+_extramodules=extramodules-4.14-ARCH
+pkgrel=14
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 
'linux-headers>=4.14' 'linux-headers<4.15')
+license=('custom')
+options=('!strip')
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
+sha256sums=('d540908e76aeecb1f4a2812acf5ad37346934a6b7c8043c8b3ce230a48ceb440')
+
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+cp -a kernel kernel-dkms
+cd kernel-dkms
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[2]="nvidia-modeset"\
+DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[3]="nvidia-drm"\
+DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
+
+# Gift for linux-rt guys
+sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia() {
+pkgdesc="NVIDIA drivers for linux"
+depends=('linux>=4.14' 'linux<4.15' "nvidia-utils=${pkgver}" 'libgl')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+  install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+}
+
+package_nvidia-dkms() {
+pkgdesc="NVIDIA driver sources for linux"
+depends=('dkms' "nvidia-utils=$pkgver" 'libgl')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+conflicts+=('nvidia')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+
+echo "blacklist nouveau" |
+  install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+}

Copied: nvidia/repos/staging-x86_64/fix-abi.patch (from rev 313448, 
nvidia/trunk/fix-abi.patch)
===
--- staging-x86_64/fix-abi.patch(rev 0)
+++ staging-x86_64/fix-abi.patch2017-12-20 22:46:11 UTC (rev 313449)
@@ -0,0 +1,12 @@
+diff -u -r kernel/nvidia-drm/nvidia-drm-fence.c 
kernel-patched/nvidia-drm/nvidia-drm-fence.c
+--- kernel/nvidia-drm/nvidia-drm-fence.c   2016-08-09 01:43:19.0 
+0200
 kernel-patched/nvidia-drm/nvidia-drm-fence.c   2016-08-25 
14:31:34.419655564 +0200
+@@ -325,7 +325,7 @@
+ struct nvidia_drm_gem_object *nv_gem;
+ };
+ 
+-static void nvidia_drm_gem_prime_soft_fence_event
++static void NVKMS_KAPI_CALL nvidia_drm_gem_prime_soft_fence_event
+ (
+ void *dataPtr,
+ NvU32 dataU32


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

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 22:45:51
  Author: heftig
Revision: 275115

archrelease: copy trunk to community-staging-x86_64

Added:
  acpi_call/repos/community-staging-x86_64/
  acpi_call/repos/community-staging-x86_64/PKGBUILD
(from rev 275114, acpi_call/trunk/PKGBUILD)
  acpi_call/repos/community-staging-x86_64/dkms.conf
(from rev 275114, acpi_call/trunk/dkms.conf)

---+
 PKGBUILD  |   62 
 dkms.conf |9 
 2 files changed, 71 insertions(+)

Copied: acpi_call/repos/community-staging-x86_64/PKGBUILD (from rev 275114, 
acpi_call/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-20 22:45:51 UTC (rev 275115)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgbase=acpi_call
+pkgname=(acpi_call acpi_call-dkms)
+pkgver=1.1.0
+pkgrel=89
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+url='https://github.com/mkottman/acpi_call'
+arch=('x86_64')
+license=('GPL')
+depends=('linux>=4.14' 'linux<4.15')
+makedepends=('linux-headers>=4.14' 'linux-headers<4.15')
+_extramodules=extramodules-4.14-ARCH
+source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;
+dkms.conf)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0'
+'32e6ea6523b13132c6c7838bba7fbf3d040ba2d35a892c2c356245612720df8a')
+
+prepare() {
+  cd $pkgbase-$pkgver
+
+  # Fix build with Linux >= 3.17
+  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
+
+  # Fix build with Linux >= 4.12
+  sed -i 's|asm/uaccess.h|linux/uaccess.h|' acpi_call.c
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KVERSION="$(cat /usr/lib/modules/$_extramodules/version)"
+}
+
+package_acpi_call() {
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 acpi_call.ko
+  find "$pkgdir" -name '*.ko' -exec gzip -n {} +
+
+  echo acpi_call | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/acpi_call.conf"
+
+  mkdir -p "$pkgdir/usr/share/acpi_call"
+  cp -t "$pkgdir/usr/share/acpi_call" -dr --no-preserve=ownership examples 
support
+}
+
+package_acpi_call-dkms() {
+  depends=(dkms)
+  provides=("acpi_call=$pkgver-$pkgrel")
+  conflicts=(acpi_call)
+
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/src/$pkgbase-$pkgver" -m644 Makefile acpi_call.c 
../dkms.conf
+
+  echo acpi_call | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/acpi_call.conf"
+
+  mkdir -p "$pkgdir/usr/share/acpi_call"
+  cp -t "$pkgdir/usr/share/acpi_call" -dr --no-preserve=ownership examples 
support
+}
+
+# vim:set ts=2 sw=2 et:

Copied: acpi_call/repos/community-staging-x86_64/dkms.conf (from rev 275114, 
acpi_call/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2017-12-20 22:45:51 UTC (rev 275115)
@@ -0,0 +1,9 @@
+PACKAGE_NAME="acpi_call"
+PACKAGE_VERSION="#MODULE_VERSION#"
+AUTOINSTALL="yes"
+
+MAKE[0]="make KVERSION=$kernelver"
+CLEAN="make clean"
+
+BUILT_MODULE_NAME[0]="acpi_call"
+DEST_MODULE_LOCATION[0]="/kernel/drivers/acpi"


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

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 22:45:31
  Author: heftig
Revision: 275114

archrelease: copy trunk to community-staging-x86_64

Added:
  vhba-module/repos/community-staging-x86_64/
  vhba-module/repos/community-staging-x86_64/60-vhba.rules
(from rev 275113, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-staging-x86_64/PKGBUILD
(from rev 275113, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-staging-x86_64/dkms.conf
(from rev 275113, vhba-module/trunk/dkms.conf)

---+
 60-vhba.rules |1 +
 PKGBUILD  |   52 
 dkms.conf |9 +
 3 files changed, 62 insertions(+)

Copied: vhba-module/repos/community-staging-x86_64/60-vhba.rules (from rev 
275113, vhba-module/trunk/60-vhba.rules)
===
--- community-staging-x86_64/60-vhba.rules  (rev 0)
+++ community-staging-x86_64/60-vhba.rules  2017-12-20 22:45:31 UTC (rev 
275114)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Copied: vhba-module/repos/community-staging-x86_64/PKGBUILD (from rev 275113, 
vhba-module/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-20 22:45:31 UTC (rev 275114)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20170610
+pkgrel=30
+pkgdesc="Kernel module that emulates SCSI devices"
+url="http://cdemu.sourceforge.net/;
+arch=(x86_64)
+license=(GPL)
+depends=('linux>=4.14' 'linux<4.15')
+makedepends=('linux-headers>=4.14' 'linux-headers<4.15')
+_extramodules=extramodules-4.14-ARCH
+source=("https://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.bz2;
+60-vhba.rules dkms.conf)
+sha256sums=('7970c93f989d9c4f2629371bf5ee7a76f95e4c12342c3320ddc528d0df02d9ec'
+'3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b'
+'8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7')
+
+prepare() {
+  cd $pkgbase-$pkgver
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KERNELRELEASE="$(cat /usr/lib/modules/$_extramodules/version)"
+}
+
+package_vhba-module() {
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 vhba.ko
+  install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules
+  echo 'g cdemu - -' | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/sysusers.d/cdemu.conf"
+
+  find "$pkgdir" -name '*.ko' -exec gzip -n {} +
+}
+
+package_vhba-module-dkms() {
+  depends=(dkms)
+  provides=("vhba-module=$pkgver-$pkgrel")
+  conflicts=(vhba-module)
+
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/src/$pkgbase-$pkgver" -m644 Makefile vhba.c 
../dkms.conf
+  install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules
+  echo 'g cdemu - -' | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/sysusers.d/cdemu.conf"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: vhba-module/repos/community-staging-x86_64/dkms.conf (from rev 275113, 
vhba-module/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2017-12-20 22:45:31 UTC (rev 275114)
@@ -0,0 +1,9 @@
+PACKAGE_NAME="vhba-module"
+PACKAGE_VERSION="#MODULE_VERSION#"
+AUTOINSTALL="yes"
+
+MAKE[0]="make KERNELRELEASE=$kernelver"
+CLEAN="make clean"
+
+BUILT_MODULE_NAME[0]="vhba"
+DEST_MODULE_LOCATION[0]="/kernel/drivers/scsi"


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

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 22:45:06
  Author: heftig
Revision: 275113

archrelease: copy trunk to community-staging-x86_64

Added:
  r8168/repos/community-staging-x86_64/
  r8168/repos/community-staging-x86_64/PKGBUILD
(from rev 275112, r8168/trunk/PKGBUILD)
  r8168/repos/community-staging-x86_64/linux-4.11.patch
(from rev 275112, r8168/trunk/linux-4.11.patch)

--+
 PKGBUILD |   42 ++
 linux-4.11.patch |   14 ++
 2 files changed, 56 insertions(+)

Copied: r8168/repos/community-staging-x86_64/PKGBUILD (from rev 275112, 
r8168/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-20 22:45:06 UTC (rev 275113)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.045.08
+pkgrel=17
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('x86_64')
+depends=('glibc' 'linux')
+makedepends=('linux-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('18161cb72fc872a9aed194514f7b8fb8b255b6fa6ed3d2dd459700eaad575f31')
+
+build() {
+   _kernver=$(pacman -Q linux | sed -r 's#.* ([0-9]+\.[0-9]+).*#\1#')
+   KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-$_kernver-ARCH/version)
+   msg2 "Kernel = $KERNEL_VERSION"
+
+   cd "$pkgname-$pkgver"
+   # avoid using the Makefile directly -- it doesn't understand
+   # any kernel but the current.
+   make -C /usr/lib/modules/$KERNEL_VERSION/build \
+   SUBDIRS="$srcdir/$pkgname-$pkgver/src" \
+   EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN" \
+   modules
+}
+
+package() {
+   _kernver=$(pacman -Q linux | sed -r 's#.* ([0-9]+\.[0-9]+).*#\1#')
+   depends=("linux>=$_kernver" "linux<${_kernver/.*}.$(expr ${_kernver/*.} 
+ 1)")
+
+   cd "$pkgname-$pkgver"
+   install -Dt "$pkgdir/usr/lib/modules/extramodules-$_kernver-ARCH" -m644 
src/r8168.ko
+   find "$pkgdir" -name '*.ko' -exec gzip -n {} +
+
+   echo "blacklist r8169" | \
+   install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modprobe.d/r8168.conf"
+}

Copied: r8168/repos/community-staging-x86_64/linux-4.11.patch (from rev 275112, 
r8168/trunk/linux-4.11.patch)
===
--- community-staging-x86_64/linux-4.11.patch   (rev 0)
+++ community-staging-x86_64/linux-4.11.patch   2017-12-20 22:45:06 UTC (rev 
275113)
@@ -0,0 +1,14 @@
+diff --git a/src/r8168_n.c b/src/r8168_n.c
+index 3c5a7e7..e2026bb 100755
+--- a/src/r8168_n.c
 b/src/r8168_n.c
+@@ -25732,7 +25732,9 @@ process_pkt:
+ if (rtl8168_rx_vlan_skb(tp, desc, skb) < 0)
+ rtl8168_rx_skb(tp, skb);
+ 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+ dev->last_rx = jiffies;
++#endif
+ RTLDEV->stats.rx_bytes += pkt_size;
+ RTLDEV->stats.rx_packets++;
+ }


[arch-commits] Commit in nvidia-304xx/repos (4 files)

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 22:44:43
  Author: heftig
Revision: 313448

archrelease: copy trunk to staging-x86_64

Added:
  nvidia-304xx/repos/staging-x86_64/
  nvidia-304xx/repos/staging-x86_64/PKGBUILD
(from rev 313447, nvidia-304xx/trunk/PKGBUILD)
  nvidia-304xx/repos/staging-x86_64/disable-mtrr.patch
(from rev 313447, nvidia-304xx/trunk/disable-mtrr.patch)
  nvidia-304xx/repos/staging-x86_64/kernel-4.14.patch
(from rev 313447, nvidia-304xx/trunk/kernel-4.14.patch)

+
 PKGBUILD   |   71 +++
 disable-mtrr.patch |   24 +
 kernel-4.14.patch  |   29 
 3 files changed, 124 insertions(+)

Copied: nvidia-304xx/repos/staging-x86_64/PKGBUILD (from rev 313447, 
nvidia-304xx/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-12-20 22:44:43 UTC (rev 313448)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia-304xx
+pkgname=(nvidia-304xx nvidia-304xx-dkms)
+pkgver=304.137
+_extramodules=extramodules-4.14-ARCH
+pkgrel=17
+pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-304xx-utils=${pkgver}" 'linux' 'linux-headers>=4.14' 
'linux-headers<4.15')
+conflicts=('nvidia')
+license=('custom')
+options=('!strip')
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;
+'disable-mtrr.patch' 'kernel-4.14.patch')
+sha512sums=('4ab648647e4f3e2c352b2eab6454c264fe4728d8eb1264fafee2a4ab1a4ce59516abcf8490044d31e35309ea951e564cc217e13f7139a48bbf650a4238c5b87c'
+
'54e8825e523f11706890e09e476498f3a30f75ce4e350ff2ff8a1e1c3af574d9ccfb8903543766b6863d94cdfbf46e68cd3d33380867dd976cafc8dd2dd78774'
+
'ccaa40e085d985ec4280003e36dd06e60958ed1408867379fd21a68a18d48aa4be311bf9ad1e804f7a7245c90be98e919d2ec30f45d290f1cdb19c866bdb8a8d')
+
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+# patches here
+
+patch -Np1 --no-backup-if-mismatch < "${srcdir}/kernel-4.14.patch"
+
+# FS#47092
+#patch -d kernel -Np1 --no-backup-if-mismatch < 
"${srcdir}/disable-mtrr.patch"
+
+cp -a kernel kernel-dkms
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia-304xx() {
+pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
+depends=('linux>=4.14' 'linux<4.15' "nvidia-304xx-utils=${pkgver}" 'libgl')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/nvidia.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+  install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+}
+
+package_nvidia-304xx-dkms() {
+pkgdesc="NVIDIA driver sources for linux, 304xx legacy branch"
+depends=('dkms' "nvidia-304xx-utils=$pkgver" 'libgl')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+conflicts+=('nvidia-304xx')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+
+echo "blacklist nouveau" |
+  install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+}

Copied: nvidia-304xx/repos/staging-x86_64/disable-mtrr.patch (from rev 313447, 
nvidia-304xx/trunk/disable-mtrr.patch)
===
--- staging-x86_64/disable-mtrr.patch   (rev 0)
+++ staging-x86_64/disable-mtrr.patch   2017-12-20 22:44:43 UTC (rev 313448)
@@ -0,0 +1,24 @@
+Author: Luca Boccassi 
+Description: Disable MTRR on kernel >= 4.3
+ From kernel 4.3 and newer (commit 2baa891e42d84) mtrr_add and mtrr_del are no
+ longer exported. The Nvidia kernel shim still uses it as of 304.131, causing
+ the module to error out when loading. Disable MTRR if running on 4.3 or 
greater
+ until upstream fixes it.
+--- a/nv-linux.h
 b/nv-linux.h
+@@ -256,6 +256,15 @@
+ #include 
+ #endif
+ 
++/*
++ * As of version 304.131, os-agp.c and os-mtrr.c still use deprecated
++ * kernel APIs for mtrr which are no longer exported since 4.3, causing
++ * the module to error out when loaded.
++ */
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,3,0)
++#undef CONFIG_MTRR
++#endif
++
+ #if !defined(NV_VMWARE) && defined(CONFIG_MTRR)
+ #include 
+ #endif

Copied: nvidia-304xx/repos/staging-x86_64/kernel-4.14.patch (from rev 313447, 

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

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 22:44:21
  Author: heftig
Revision: 275112

archrelease: copy trunk to community-staging-x86_64

Added:
  bbswitch/repos/community-staging-x86_64/
  bbswitch/repos/community-staging-x86_64/PKGBUILD
(from rev 275111, bbswitch/trunk/PKGBUILD)

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

Copied: bbswitch/repos/community-staging-x86_64/PKGBUILD (from rev 275111, 
bbswitch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-20 22:44:21 UTC (rev 275112)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+pkgrel=95
+pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
+arch=('x86_64')
+url="http://github.com/Bumblebee-Project/bbswitch;
+license=('GPL')
+depends=('linux>=4.14' 'linux<4.15')
+makedepends=('linux-headers>=4.14' 'linux-headers<4.15')
+_extramodules=extramodules-4.14-ARCH
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
+md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+  make KDIR=/lib/modules/${_kernver}/build
+}
+
+package_bbswitch() {
+  cd ${pkgbase}-${pkgver}
+  install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 bbswitch.ko
+  find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+}
+
+package_bbswitch-dkms() {
+  depends=('dkms')
+  conflicts=('bbswitch')
+  provides=('bbswitch')
+
+  cd ${pkgbase}-${pkgver}
+  install -Dt "${pkgdir}/usr/src/${pkgbase}-${pkgver}" -m644 Makefile 
bbswitch.c dkms/dkms.conf
+}


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

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 22:43:58
  Author: heftig
Revision: 275111

archrelease: copy trunk to community-staging-x86_64

Added:
  virtualbox-modules-arch/repos/community-staging-x86_64/
  virtualbox-modules-arch/repos/community-staging-x86_64/PKGBUILD
(from rev 275110, virtualbox-modules-arch/trunk/PKGBUILD)

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

Copied: virtualbox-modules-arch/repos/community-staging-x86_64/PKGBUILD (from 
rev 275110, virtualbox-modules-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-20 22:43:58 UTC (rev 275111)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgbase=virtualbox-modules-arch
+pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
+pkgver=5.2.4
+pkgrel=3
+_linux_major=4
+_linux_minor=14
+arch=('x86_64')
+url='http://virtualbox.org'
+license=('GPL')
+makedepends=("linux>=${_linux_major}.${_linux_minor}"
+ "linux<${_linux_major}.$((_linux_minor+1))"
+ "linux-headers>=${_linux_major}.${_linux_minor}"
+ "linux-headers<${_linux_major}.$((_linux_minor+1))"
+ "virtualbox-host-dkms>=$pkgver"
+ "virtualbox-guest-dkms>=$pkgver")
+
+_extramodules=extramodules-${_linux_major}.${_linux_minor}-ARCH
+
+package_virtualbox-host-modules-arch(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Virtualbox host kernel modules for Arch Kernel'
+  depends=("linux>=${_linux_major}.${_linux_minor}"
+   "linux<${_linux_major}.$((_linux_minor+1))")
+  replaces=('virtualbox-modules' 'virtualbox-host-modules')
+  conflicts=('virtualbox-modules' 'virtualbox-host-modules'
+'virtualbox-host-dkms')
+  provides=('VIRTUALBOX-HOST-MODULES')
+
+  cd "/var/lib/dkms/vboxhost/${pkgver}_OSE/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+
+  # systemd module loading
+  printf "vboxdrv\nvboxpci\nvboxnetadp\nvboxnetflt\n" |
+install -Dm644 /dev/stdin "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}
+
+package_virtualbox-guest-modules-arch(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Virtualbox guest kernel modules for Arch Kernel'
+  license=('GPL')
+  depends=("linux>=${_linux_major}.${_linux_minor}"
+   "linux<${_linux_major}.$((_linux_minor+1))")
+  replaces=('virtualbox-archlinux-modules' 'virtualbox-guest-modules')
+  conflicts=('virtualbox-archlinux-modules' 'virtualbox-guest-modules'
+ 'virtualbox-guest-dkms')
+  provides=('VIRTUALBOX-GUEST-MODULES')
+
+  cd "/var/lib/dkms/vboxguest/${pkgver}_OSE/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+
+  # systemd module loading
+  printf "vboxguest\nvboxsf\nvboxvideo\n" |
+install -Dm644 /dev/stdin "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 22:43:35
  Author: heftig
Revision: 275110

archrelease: copy trunk to community-staging-x86_64

Added:
  tp_smapi/repos/community-staging-x86_64/
  tp_smapi/repos/community-staging-x86_64/PKGBUILD
(from rev 275109, tp_smapi/trunk/PKGBUILD)

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

Copied: tp_smapi/repos/community-staging-x86_64/PKGBUILD (from rev 275109, 
tp_smapi/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-20 22:43:35 UTC (rev 275110)
@@ -0,0 +1,44 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi
+_pkgname=tp-smapi
+pkgver=0.42
+_extradir=/usr/lib/modules/extramodules-4.14-ARCH
+pkgrel=44
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux>=4.14' 'linux<4.15')
+makedepends=('linux-headers>=4.14' 'linux-headers<4.15')
+source=("$pkgname-$_pkgname-$pkgver.tar.gz::https://github.com/evgeni/$pkgname/archive/$_pkgname/$pkgver.tar.gz;)
+md5sums=('6a51d3aa459ad7a6ebfbb8c29527b3ee')
+
+build() {
+  cd $pkgname-$_pkgname-$pkgver
+
+  # https://bugs.archlinux.org/task/54975 (kernel has no 
_GLOBAL_OFFSET_TABLE_):
+  # Clear EXTRA_CFLAGS since it defaults to injecting CFLAGS and -fno-plt 
breaks the modules
+
+  make HDAPS=1 KVER="$(<$_extradir/version)" EXTRA_CFLAGS=
+}
+
+package() {
+  cd $pkgname-$_pkgname-$pkgver
+
+  # install kernel modules
+  find . -name "*.ko" -exec install -Dt "$pkgdir$_extradir" {} +
+
+  # compress kernel modules
+  find "$pkgdir" -name "*.ko" -exec gzip -n -9 {} +
+
+  # load module on startup
+  echo tp_smapi | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}


[arch-commits] Commit in nvidia-340xx/trunk (PKGBUILD)

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 22:39:13
  Author: heftig
Revision: 313447

340.104-16: kernel 4.14.8

Modified:
  nvidia-340xx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:39:05 UTC (rev 313446)
+++ PKGBUILD2017-12-20 22:39:13 UTC (rev 313447)
@@ -6,7 +6,7 @@
 pkgname=(nvidia-340xx nvidia-340xx-dkms)
 pkgver=340.104
 _extramodules=extramodules-4.14-ARCH
-pkgrel=15
+pkgrel=16
 pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
 arch=('x86_64')
 url="http://www.nvidia.com/;


[arch-commits] Commit in nvidia-304xx/trunk (PKGBUILD)

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 22:39:05
  Author: heftig
Revision: 313446

304.137-17: kernel 4.14.8

Modified:
  nvidia-304xx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:38:54 UTC (rev 313445)
+++ PKGBUILD2017-12-20 22:39:05 UTC (rev 313446)
@@ -6,7 +6,7 @@
 pkgname=(nvidia-304xx nvidia-304xx-dkms)
 pkgver=304.137
 _extramodules=extramodules-4.14-ARCH
-pkgrel=16
+pkgrel=17
 pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 22:38:54
  Author: heftig
Revision: 313445

387.34-14: kernel 4.14.8

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:31:08 UTC (rev 313444)
+++ PKGBUILD2017-12-20 22:38:54 UTC (rev 313445)
@@ -7,7 +7,7 @@
 pkgname=(nvidia nvidia-dkms)
 pkgver=387.34
 _extramodules=extramodules-4.14-ARCH
-pkgrel=13
+pkgrel=14
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 22:38:18
  Author: heftig
Revision: 275108

20170610-30: kernel 4.14.8

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:37:00 UTC (rev 275107)
+++ PKGBUILD2017-12-20 22:38:18 UTC (rev 275108)
@@ -6,7 +6,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20170610
-pkgrel=29
+pkgrel=30
 pkgdesc="Kernel module that emulates SCSI devices"
 url="http://cdemu.sourceforge.net/;
 arch=(x86_64)


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

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 22:38:27
  Author: heftig
Revision: 275109

5.2.4-3: kernel 4.14.8

Modified:
  virtualbox-modules-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:38:18 UTC (rev 275108)
+++ PKGBUILD2017-12-20 22:38:27 UTC (rev 275109)
@@ -5,7 +5,7 @@
 pkgbase=virtualbox-modules-arch
 pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
 pkgver=5.2.4
-pkgrel=2
+pkgrel=3
 _linux_major=4
 _linux_minor=14
 arch=('x86_64')


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

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 22:37:00
  Author: heftig
Revision: 275107

0.42-44: kernel 4.14.8

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:36:53 UTC (rev 275106)
+++ PKGBUILD2017-12-20 22:37:00 UTC (rev 275107)
@@ -11,7 +11,7 @@
 _pkgname=tp-smapi
 pkgver=0.42
 _extradir=/usr/lib/modules/extramodules-4.14-ARCH
-pkgrel=43
+pkgrel=44
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 22:36:53
  Author: heftig
Revision: 275106

8.045.08-17: kernel 4.14.8

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:36:43 UTC (rev 275105)
+++ PKGBUILD2017-12-20 22:36:53 UTC (rev 275106)
@@ -5,7 +5,7 @@
 
 pkgname=r8168
 pkgver=8.045.08
-pkgrel=16
+pkgrel=17
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")


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

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 22:36:35
  Author: heftig
Revision: 275104

1.1.0-89: kernel 4.14.8

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:34:28 UTC (rev 275103)
+++ PKGBUILD2017-12-20 22:36:35 UTC (rev 275104)
@@ -6,7 +6,7 @@
 pkgbase=acpi_call
 pkgname=(acpi_call acpi_call-dkms)
 pkgver=1.1.0
-pkgrel=88
+pkgrel=89
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 url='https://github.com/mkottman/acpi_call'
 arch=('x86_64')


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

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 22:36:43
  Author: heftig
Revision: 275105

0.8-95: kernel 4.14.8

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:36:35 UTC (rev 275104)
+++ PKGBUILD2017-12-20 22:36:43 UTC (rev 275105)
@@ -6,7 +6,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=94
+pkgrel=95
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch;


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

2017-12-20 Thread Christian Hesse via arch-commits
Date: Wednesday, December 20, 2017 @ 22:34:23
  Author: eworm
Revision: 275102

upgpkg: packagekit-qt5 0.9.6-2

rebuild old packages

Modified:
  packagekit-qt5/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:28:53 UTC (rev 275101)
+++ PKGBUILD2017-12-20 22:34:23 UTC (rev 275102)
@@ -4,7 +4,7 @@
 
 pkgname=packagekit-qt5
 pkgver=0.9.6
-pkgrel=1
+pkgrel=2
 pkgdesc='Qt5 bindings for PackageKit'
 arch=('x86_64')
 url='http://www.packagekit.org/'


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

2017-12-20 Thread Christian Hesse via arch-commits
Date: Wednesday, December 20, 2017 @ 22:34:28
  Author: eworm
Revision: 275103

archrelease: copy trunk to community-x86_64

Added:
  packagekit-qt5/repos/community-x86_64/PKGBUILD
(from rev 275102, packagekit-qt5/trunk/PKGBUILD)
Deleted:
  packagekit-qt5/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-20 22:34:23 UTC (rev 275102)
+++ PKGBUILD2017-12-20 22:34:28 UTC (rev 275103)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: Antonio Rojas 
-
-pkgname=packagekit-qt5
-pkgver=0.9.6
-pkgrel=1
-pkgdesc='Qt5 bindings for PackageKit'
-arch=('i686' 'x86_64')
-url='http://www.packagekit.org/'
-license=('LGPL')
-depends=('packagekit' 'qt5-base')
-makedepends=('cmake')
-validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17'   # Richard 
Hughes 
-   'D33A3F0CA16B0ACC51A60738494C8A5FBF4DECEB') # Matthias 
Klumpp 
-source=("http://www.freedesktop.org/software/PackageKit/releases/PackageKit-Qt-${pkgver}.tar.xz"{,.asc})
-sha256sums=('0f4f504b2053472f9299c7ca42e33bcc85b8a8754223d2dc1912b533ec1ca680'
-'SKIP')
-
-build() {
-   mkdir -p "${srcdir}/PackageKit-Qt-${pkgver}/build"
-   cd "${srcdir}/PackageKit-Qt-${pkgver}/build"
-
-   cmake .. \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_LIBDIR=lib
-   make
-}
-
-package() {
-   cd "${srcdir}/PackageKit-Qt-${pkgver}/build"
-
-   make DESTDIR="${pkgdir}" install
-}

Copied: packagekit-qt5/repos/community-x86_64/PKGBUILD (from rev 275102, 
packagekit-qt5/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-20 22:34:28 UTC (rev 275103)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Antonio Rojas 
+
+pkgname=packagekit-qt5
+pkgver=0.9.6
+pkgrel=2
+pkgdesc='Qt5 bindings for PackageKit'
+arch=('x86_64')
+url='http://www.packagekit.org/'
+license=('LGPL')
+depends=('packagekit' 'qt5-base')
+makedepends=('cmake')
+validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17'   # Richard 
Hughes 
+   'D33A3F0CA16B0ACC51A60738494C8A5FBF4DECEB') # Matthias 
Klumpp 
+source=("https://www.freedesktop.org/software/PackageKit/releases/PackageKit-Qt-${pkgver}.tar.xz"{,.asc})
+sha256sums=('0f4f504b2053472f9299c7ca42e33bcc85b8a8754223d2dc1912b533ec1ca680'
+'SKIP')
+
+build() {
+   mkdir -p "${srcdir}/PackageKit-Qt-${pkgver}/build"
+   cd "${srcdir}/PackageKit-Qt-${pkgver}/build"
+
+   cmake .. \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_LIBDIR=lib
+   make
+}
+
+package() {
+   cd "${srcdir}/PackageKit-Qt-${pkgver}/build"
+
+   make DESTDIR="${pkgdir}" install
+}


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

2017-12-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, December 20, 2017 @ 22:31:08
  Author: arojas
Revision: 313444

archrelease: copy trunk to extra-x86_64

Added:
  xsnow/repos/extra-x86_64/LICENSE
(from rev 313443, xsnow/trunk/LICENSE)
  xsnow/repos/extra-x86_64/PKGBUILD
(from rev 313443, xsnow/trunk/PKGBUILD)
Deleted:
  xsnow/repos/extra-x86_64/LICENSE
  xsnow/repos/extra-x86_64/PKGBUILD

--+
 LICENSE  |   18 +-
 PKGBUILD |   58 +-
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2017-12-20 22:30:39 UTC (rev 313443)
+++ LICENSE 2017-12-20 22:31:08 UTC (rev 313444)
@@ -1,9 +0,0 @@
- Copyright
- -
- Xsnow is available freely and you may give it to other people as is, 
- but I retain all rights. Therefore it does not classify as 'Public 
- Domain' software. It *is* allowed to package Xsnow for Unix/Linux
- distributions, CD-Roms etc, and to make the necessary changes to
- makefiles etc. to facilitate this. 
-
-�Copyright 1984, 1988, 1990, 1993-1995, 2000-2001 by Rick Jansen, all rights 
reserved.

Copied: xsnow/repos/extra-x86_64/LICENSE (from rev 313443, xsnow/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2017-12-20 22:31:08 UTC (rev 313444)
@@ -0,0 +1,9 @@
+ Copyright
+ -
+ Xsnow is available freely and you may give it to other people as is, 
+ but I retain all rights. Therefore it does not classify as 'Public 
+ Domain' software. It *is* allowed to package Xsnow for Unix/Linux
+ distributions, CD-Roms etc, and to make the necessary changes to
+ makefiles etc. to facilitate this. 
+
+�Copyright 1984, 1988, 1990, 1993-1995, 2000-2001 by Rick Jansen, all rights 
reserved.

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-20 22:30:39 UTC (rev 313443)
+++ PKGBUILD2017-12-20 22:31:08 UTC (rev 313444)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=xsnow
-pkgver=1.42
-pkgrel=6
-pkgdesc="Display snow, Santa and his reindeers on the root window"
-arch=('i686' 'x86_64')
-url="http://dropmix.xs4all.nl/rick/Xsnow/;
-license=('custom')
-depends=('libxpm')
-makedepends=('imake')
-source=(http://dropmix.xs4all.nl/rick/Xsnow/${pkgname}-${pkgver}.tar.gz 
LICENSE)
-sha1sums=('d63987560dac9c6341e50d270089e40d17031ce3'
-  'c93e236bed35a2d5dc23202c1c615d4e146fba49')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  xmkmf
-  make depend
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install install.man
-  chmod 644 "${pkgdir}/usr/share/man/man1/xsnow.1x"
-  install -D -m644 "${srcdir}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: xsnow/repos/extra-x86_64/PKGBUILD (from rev 313443, 
xsnow/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-20 22:31:08 UTC (rev 313444)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=xsnow
+pkgver=1.42
+pkgrel=7
+pkgdesc="Display snow, Santa and his reindeers on the root window"
+arch=('x86_64')
+url="https://janswaal.home.xs4all.nl/Xsnow/;
+license=('custom')
+depends=('libxpm')
+makedepends=('imake')
+source=(https://janswaal.home.xs4all.nl/Xsnow/xsnow-$pkgver.tar.gz LICENSE)
+sha1sums=('d63987560dac9c6341e50d270089e40d17031ce3'
+  'c93e236bed35a2d5dc23202c1c615d4e146fba49')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  xmkmf
+  make depend
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install install.man
+  chmod 644 "${pkgdir}/usr/share/man/man1/xsnow.1x"
+  install -D -m644 "${srcdir}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2017-12-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, December 20, 2017 @ 22:30:39
  Author: arojas
Revision: 313443

Fix sources, rebuild old package

Modified:
  xsnow/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:27:55 UTC (rev 313442)
+++ PKGBUILD2017-12-20 22:30:39 UTC (rev 313443)
@@ -3,14 +3,14 @@
 
 pkgname=xsnow
 pkgver=1.42
-pkgrel=6
+pkgrel=7
 pkgdesc="Display snow, Santa and his reindeers on the root window"
 arch=('x86_64')
-url="http://dropmix.xs4all.nl/rick/Xsnow/;
+url="https://janswaal.home.xs4all.nl/Xsnow/;
 license=('custom')
 depends=('libxpm')
 makedepends=('imake')
-source=(http://dropmix.xs4all.nl/rick/Xsnow/${pkgname}-${pkgver}.tar.gz 
LICENSE)
+source=(https://janswaal.home.xs4all.nl/Xsnow/xsnow-$pkgver.tar.gz LICENSE)
 sha1sums=('d63987560dac9c6341e50d270089e40d17031ce3'
   'c93e236bed35a2d5dc23202c1c615d4e146fba49')
 


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

2017-12-20 Thread Christian Hesse via arch-commits
Date: Wednesday, December 20, 2017 @ 22:28:53
  Author: eworm
Revision: 275101

archrelease: copy trunk to community-x86_64

Added:
  at/repos/community-x86_64/PKGBUILD
(from rev 275100, at/trunk/PKGBUILD)
Deleted:
  at/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-20 22:28:47 UTC (rev 275100)
+++ PKGBUILD2017-12-20 22:28:53 UTC (rev 275101)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Nathan Baum 
-# Contributor: Judd Vinet 
-# Contributor: Todd Musall 
-
-pkgname=at
-pkgver=3.1.20
-pkgrel=3
-pkgdesc='AT and batch delayed command scheduling utility and daemon'
-arch=('x86_64' 'i686')
-url='http://blog.calhariz.com/tag/at'
-license=('GPL')
-depends=('pam' 'flex')
-makedepends=('smtp-forwarder' 'git')
-backup=('etc/at.deny' 'var/spool/atd/.SEQ')
-options=('!makeflags')
-source=("http://blog.calhariz.com/public/sft/$pkgname/${pkgname}_${pkgver}.orig.tar.gz;)
-sha256sums=('0871923cab73050b98ace020664eb2ddc1e669e4166b5abb64d864d02fcefab9')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---with-jobdir=/var/spool/atd \
---with-atspool=/var/spool/atd \
---with-systemdsystemunitdir=/usr/lib/systemd/system
-
-  CFLAGS="$CFLAGS -w" make
-}
-
-package() {
-  make -C "$pkgname-$pkgver" IROOT="$pkgdir" docdir=/usr/share/doc install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: at/repos/community-x86_64/PKGBUILD (from rev 275100, at/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-20 22:28:53 UTC (rev 275101)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Nathan Baum 
+# Contributor: Judd Vinet 
+# Contributor: Todd Musall 
+
+pkgname=at
+pkgver=3.1.20
+pkgrel=4
+pkgdesc='AT and batch delayed command scheduling utility and daemon'
+arch=('x86_64')
+url='http://blog.calhariz.com/tag/at'
+license=('GPL')
+depends=('pam' 'flex')
+makedepends=('smtp-forwarder' 'git')
+backup=('etc/at.deny' 'var/spool/atd/.SEQ')
+options=('!makeflags')
+source=("http://blog.calhariz.com/public/sft/$pkgname/${pkgname}_${pkgver}.orig.tar.gz;)
+sha256sums=('0871923cab73050b98ace020664eb2ddc1e669e4166b5abb64d864d02fcefab9')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--with-jobdir=/var/spool/atd \
+--with-atspool=/var/spool/atd \
+--with-systemdsystemunitdir=/usr/lib/systemd/system
+
+  CFLAGS="$CFLAGS -w" make
+}
+
+package() {
+  make -C "$pkgname-$pkgver" IROOT="$pkgdir" docdir=/usr/share/doc install
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-12-20 Thread Christian Hesse via arch-commits
Date: Wednesday, December 20, 2017 @ 22:28:47
  Author: eworm
Revision: 275100

upgpkg: at 3.1.20-4

rebuild old packages

Modified:
  at/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:27:39 UTC (rev 275099)
+++ PKGBUILD2017-12-20 22:28:47 UTC (rev 275100)
@@ -6,7 +6,7 @@
 
 pkgname=at
 pkgver=3.1.20
-pkgrel=3
+pkgrel=4
 pkgdesc='AT and batch delayed command scheduling utility and daemon'
 arch=('x86_64')
 url='http://blog.calhariz.com/tag/at'


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

2017-12-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, December 20, 2017 @ 22:27:55
  Author: arojas
Revision: 313442

archrelease: copy trunk to extra-x86_64

Added:
  live-media/repos/extra-x86_64/PKGBUILD
(from rev 313441, live-media/trunk/PKGBUILD)
Deleted:
  live-media/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-20 22:27:22 UTC (rev 313441)
+++ PKGBUILD2017-12-20 22:27:55 UTC (rev 313442)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Gilles CHAUVIN 
-
-pkgname=live-media
-pkgver=2017.06.04
-pkgrel=1
-pkgdesc="A set of C++ libraries for multimedia streaming"
-arch=('i686' 'x86_64')
-license=('LGPL')
-url="http://live555.com/liveMedia;
-depends=('gcc-libs')
-options=('staticlibs')
-source=("http://live555.com/liveMedia/public/live.${pkgver}.tar.gz;)
-md5sums=('a36bb3cb9d7b6908ecb6efd48090be4f')
-
-build() {
-  cd ${srcdir}/live
-
-  sed \
-  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
-  -i config.linux
-  ./genMakefiles linux
-  make
-}
-
-package() {
-  cd ${srcdir}/live
-
-  for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
-install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
-install -m644 ${dir}/*.a "${pkgdir}/usr/lib"
-install -m644 ${dir}/include/*.h* "${pkgdir}/usr/include/${dir}"
-  done
-
-  for testprog in `find testProgs -type f -perm 755`; do
-install ${testprog} "${pkgdir}/usr/bin"
-  done
-}

Copied: live-media/repos/extra-x86_64/PKGBUILD (from rev 313441, 
live-media/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-20 22:27:55 UTC (rev 313442)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer:
+# Contributor: Giovanni Scafora 
+# Contributor: Gilles CHAUVIN 
+
+pkgname=live-media
+pkgver=2017.10.28
+pkgrel=1
+pkgdesc="A set of C++ libraries for multimedia streaming"
+arch=('x86_64')
+license=('LGPL')
+url="http://live555.com/liveMedia;
+depends=('gcc-libs')
+options=('staticlibs')
+source=("http://live555.com/liveMedia/public/live.${pkgver}.tar.gz;)
+sha256sums=('d8eaec9ded34321aa655d3c9007217dd447218c54cb48c97827e58ecd5edb338')
+
+prepare() {
+  cd live
+  sed -e '/xlocale.h/d' -i liveMedia/include/Locale.hh # fix build with glibc 
2.26
+}
+
+build() {
+  cd live
+
+  sed \
+  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
+  -i config.linux
+  ./genMakefiles linux
+  make
+}
+
+package() {
+  cd live
+
+  for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
+install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
+install -m644 ${dir}/*.a "${pkgdir}/usr/lib"
+install -m644 ${dir}/include/*.h* "${pkgdir}/usr/include/${dir}"
+  done
+
+  for testprog in `find testProgs -type f -perm 755`; do
+install ${testprog} "${pkgdir}/usr/bin"
+  done
+}


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

2017-12-20 Thread Christian Hesse via arch-commits
Date: Wednesday, December 20, 2017 @ 22:27:39
  Author: eworm
Revision: 275099

archrelease: copy trunk to community-x86_64

Added:
  gengetopt/repos/community-x86_64/PKGBUILD
(from rev 275098, gengetopt/trunk/PKGBUILD)
Deleted:
  gengetopt/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-20 22:27:30 UTC (rev 275098)
+++ PKGBUILD2017-12-20 22:27:39 UTC (rev 275099)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: andreas_baumann 
-# Contributor: zhuqin 
-
-pkgname=gengetopt
-pkgver=2.22.6
-pkgrel=6
-pkgdesc='A tool to write command line option parsing code for C programs'
-arch=('i686' 'x86_64')
-url='http://www.gnu.org/software/gengetopt/gengetopt.html'
-license=('GPL')
-options=('!docs' '!makeflags')
-validpgpkeys=('D459FCC2041AC8FEF297D53EB4AA8C689E629EAC')
-source=(ftp://ftp.gnu.org/gnu/gengetopt/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('30b05a88604d71ef2a42a2ef26cd26df242b41f5b011ad03083143a31d9b01f7'
-'SKIP')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   make DESTDIR=${pkgdir} install
-}
-

Copied: gengetopt/repos/community-x86_64/PKGBUILD (from rev 275098, 
gengetopt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-20 22:27:39 UTC (rev 275099)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: andreas_baumann 
+# Contributor: zhuqin 
+
+pkgname=gengetopt
+pkgver=2.22.6
+pkgrel=7
+pkgdesc='A tool to write command line option parsing code for C programs'
+arch=('x86_64')
+url='http://www.gnu.org/software/gengetopt/gengetopt.html'
+license=('GPL')
+options=('!docs' '!makeflags')
+validpgpkeys=('D459FCC2041AC8FEF297D53EB4AA8C689E629EAC')
+source=(ftp://ftp.gnu.org/gnu/gengetopt/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('30b05a88604d71ef2a42a2ef26cd26df242b41f5b011ad03083143a31d9b01f7'
+'SKIP')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   make DESTDIR=${pkgdir} install
+}
+


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

2017-12-20 Thread Christian Hesse via arch-commits
Date: Wednesday, December 20, 2017 @ 22:27:30
  Author: eworm
Revision: 275098

upgpkg: gengetopt 2.22.6-7

rebuild old packages

Modified:
  gengetopt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:25:44 UTC (rev 275097)
+++ PKGBUILD2017-12-20 22:27:30 UTC (rev 275098)
@@ -5,7 +5,7 @@
 
 pkgname=gengetopt
 pkgver=2.22.6
-pkgrel=6
+pkgrel=7
 pkgdesc='A tool to write command line option parsing code for C programs'
 arch=('x86_64')
 url='http://www.gnu.org/software/gengetopt/gengetopt.html'


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

2017-12-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, December 20, 2017 @ 22:27:22
  Author: arojas
Revision: 313441

Update to 2017.10.28

Modified:
  live-media/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:21:13 UTC (rev 313440)
+++ PKGBUILD2017-12-20 22:27:22 UTC (rev 313441)
@@ -1,9 +1,10 @@
 # $Id$
-# Maintainer: Giovanni Scafora 
+# Maintainer:
+# Contributor: Giovanni Scafora 
 # Contributor: Gilles CHAUVIN 
 
 pkgname=live-media
-pkgver=2017.06.04
+pkgver=2017.10.28
 pkgrel=1
 pkgdesc="A set of C++ libraries for multimedia streaming"
 arch=('x86_64')
@@ -12,10 +13,15 @@
 depends=('gcc-libs')
 options=('staticlibs')
 source=("http://live555.com/liveMedia/public/live.${pkgver}.tar.gz;)
-md5sums=('a36bb3cb9d7b6908ecb6efd48090be4f')
+sha256sums=('d8eaec9ded34321aa655d3c9007217dd447218c54cb48c97827e58ecd5edb338')
 
+prepare() {
+  cd live
+  sed -e '/xlocale.h/d' -i liveMedia/include/Locale.hh # fix build with glibc 
2.26
+}
+
 build() {
-  cd ${srcdir}/live
+  cd live
 
   sed \
   -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
@@ -25,7 +31,7 @@
 }
 
 package() {
-  cd ${srcdir}/live
+  cd live
 
   for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
 install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}


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

2017-12-20 Thread Christian Hesse via arch-commits
Date: Wednesday, December 20, 2017 @ 22:25:44
  Author: eworm
Revision: 275097

archrelease: copy trunk to community-x86_64

Added:
  ctemplate/repos/community-x86_64/PKGBUILD
(from rev 275096, ctemplate/trunk/PKGBUILD)
Deleted:
  ctemplate/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-20 22:25:36 UTC (rev 275096)
+++ PKGBUILD2017-12-20 22:25:44 UTC (rev 275097)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: Marcel Korpel 
-# Contributor: Ivan Sichmann Freitas 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Jeff Mickey 
-
-pkgname=ctemplate
-pkgver=2.3
-pkgrel=4
-pkgdesc='A library implementing a simple but powerful template language for 
C++'
-arch=('i686' 'x86_64')
-url='https://github.com/olafvdspek/ctemplate'
-license=('BSD')
-makedepends=('subversion' 'python2')
-depends=('gcc-libs' 'perl')
-source=("https://github.com/OlafvdSpek/${pkgname}/archive/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('99e5cb6d3f8407d5b1ffef96b1d59ce3981cda3492814e5ef820684ebb782556')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
-
-   # use python2
-   sed -i '1s/python/&2/' \
-   src/htmlparser/fsm_config.py \
-   src/htmlparser/generate_fsm.py
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
-
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
-
-   make DESTDIR="${pkgdir}" install
-   install -D -m0644 COPYING 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: ctemplate/repos/community-x86_64/PKGBUILD (from rev 275096, 
ctemplate/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-20 22:25:44 UTC (rev 275097)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Marcel Korpel 
+# Contributor: Ivan Sichmann Freitas 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Jeff Mickey 
+
+pkgname=ctemplate
+pkgver=2.3
+pkgrel=5
+pkgdesc='A library implementing a simple but powerful template language for 
C++'
+arch=('x86_64')
+url='https://github.com/olafvdspek/ctemplate'
+license=('BSD')
+makedepends=('python2')
+depends=('gcc-libs' 'perl')
+source=("https://github.com/OlafvdSpek/${pkgname}/archive/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('99e5cb6d3f8407d5b1ffef96b1d59ce3981cda3492814e5ef820684ebb782556')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
+
+   # use python2
+   sed -i '1s/python/&2/' \
+   src/htmlparser/fsm_config.py \
+   src/htmlparser/generate_fsm.py
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
+
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
+
+   make DESTDIR="${pkgdir}" install
+   install -D -m0644 COPYING 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2017-12-20 Thread Christian Hesse via arch-commits
Date: Wednesday, December 20, 2017 @ 22:25:36
  Author: eworm
Revision: 275096

upgpkg: ctemplate 2.3-5

rebuild old packages

Modified:
  ctemplate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:23:11 UTC (rev 275095)
+++ PKGBUILD2017-12-20 22:25:36 UTC (rev 275096)
@@ -7,7 +7,7 @@
 
 pkgname=ctemplate
 pkgver=2.3
-pkgrel=4
+pkgrel=5
 pkgdesc='A library implementing a simple but powerful template language for 
C++'
 arch=('x86_64')
 url='https://github.com/olafvdspek/ctemplate'


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

2017-12-20 Thread Christian Hesse via arch-commits
Date: Wednesday, December 20, 2017 @ 22:23:11
  Author: eworm
Revision: 275095

archrelease: copy trunk to community-any

Added:
  xcursor-comix/repos/community-any/PKGBUILD
(from rev 275094, xcursor-comix/trunk/PKGBUILD)
Deleted:
  xcursor-comix/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-20 22:23:05 UTC (rev 275094)
+++ PKGBUILD2017-12-20 22:23:11 UTC (rev 275095)
@@ -1,21 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: Dariusz Górecki 
-# Contributor: Juan Diego Tascon
-
-pkgname=xcursor-comix
-pkgver=0.9.0
-pkgrel=1
-pkgdesc="Comix X Cursor Theme"
-url="http://www.kde-look.org/content/show.php/ComixCursors?content=32627;
-depends=('libxcursor')
-license=('GPL')
-arch=(any)
-source=("http://www.limitland.de/downloads/comixcursors/ComixCursors-${pkgver}.tar.bz2;)
-sha256sums=('91e9d7363743450efe173fdf3b01464b8706b161b47dff09ff78a6d161bc2648')
-
-package() {
-   mkdir -p ${pkgdir}/usr/share/icons
-   cp -R ${srcdir}/ComixCursors-[A-Z]* ${pkgdir}/usr/share/icons/
-}
-

Copied: xcursor-comix/repos/community-any/PKGBUILD (from rev 275094, 
xcursor-comix/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-20 22:23:11 UTC (rev 275095)
@@ -0,0 +1,21 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Dariusz Górecki 
+# Contributor: Juan Diego Tascon
+
+pkgname=xcursor-comix
+pkgver=0.9.0
+pkgrel=2
+pkgdesc="Comix X Cursor Theme"
+url="http://www.kde-look.org/content/show.php/ComixCursors?content=32627;
+depends=('libxcursor')
+license=('GPL')
+arch=(any)
+source=("http://www.limitland.de/downloads/comixcursors/ComixCursors-${pkgver}.tar.bz2;)
+sha256sums=('91e9d7363743450efe173fdf3b01464b8706b161b47dff09ff78a6d161bc2648')
+
+package() {
+   mkdir -p ${pkgdir}/usr/share/icons
+   cp -R ${srcdir}/ComixCursors-[A-Z]* ${pkgdir}/usr/share/icons/
+}
+


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

2017-12-20 Thread Christian Hesse via arch-commits
Date: Wednesday, December 20, 2017 @ 22:23:05
  Author: eworm
Revision: 275094

upgpkg: xcursor-comix 0.9.0-2

rebuild old packages

Modified:
  xcursor-comix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:18:13 UTC (rev 275093)
+++ PKGBUILD2017-12-20 22:23:05 UTC (rev 275094)
@@ -5,7 +5,7 @@
 
 pkgname=xcursor-comix
 pkgver=0.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Comix X Cursor Theme"
 url="http://www.kde-look.org/content/show.php/ComixCursors?content=32627;
 depends=('libxcursor')


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

2017-12-20 Thread Christian Hesse via arch-commits
Date: Wednesday, December 20, 2017 @ 22:21:13
  Author: eworm
Revision: 313440

archrelease: copy trunk to testing-x86_64

Added:
  gpart/repos/testing-x86_64/
  gpart/repos/testing-x86_64/PKGBUILD
(from rev 313439, gpart/trunk/PKGBUILD)

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

Copied: gpart/repos/testing-x86_64/PKGBUILD (from rev 313439, 
gpart/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-20 22:21:13 UTC (rev 313440)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: dale 
+# Contributor: Tom Newsom 
+
+pkgname=gpart
+pkgver=0.3
+pkgrel=2
+pkgdesc="Partition table rescue/guessing tool"
+arch=('x86_64')
+url="https://github.com/baruch/gpart;
+license=('GPL')
+depends=('glibc')
+source=("https://github.com/baruch/${pkgname}/archive/${pkgver}.tar.gz;)
+sha256sums=('ec56d12ec9ffdb9877c12692ea6e51620b1ae44473d3d253b27fc31ed9ebb4dd')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./autogen.sh
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make prefix=${pkgdir}/usr sbindir=${pkgdir}/usr/bin install
+}


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

2017-12-20 Thread Christian Hesse via arch-commits
Date: Wednesday, December 20, 2017 @ 22:21:07
  Author: eworm
Revision: 313439

upgpkg: gpart 0.3-2

rebuild old packages

Modified:
  gpart/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:14:00 UTC (rev 313438)
+++ PKGBUILD2017-12-20 22:21:07 UTC (rev 313439)
@@ -5,7 +5,7 @@
 
 pkgname=gpart
 pkgver=0.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Partition table rescue/guessing tool"
 arch=('x86_64')
 url="https://github.com/baruch/gpart;
@@ -12,7 +12,7 @@
 license=('GPL')
 depends=('glibc')
 source=("https://github.com/baruch/${pkgname}/archive/${pkgver}.tar.gz;)
-md5sums=('2d709068b5123198b3eb337f9d4686a8')
+sha256sums=('ec56d12ec9ffdb9877c12692ea6e51620b1ae44473d3d253b27fc31ed9ebb4dd')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"


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

2017-12-20 Thread Christian Hesse via arch-commits
Date: Wednesday, December 20, 2017 @ 22:18:13
  Author: eworm
Revision: 275093

sha256 checksums

Modified:
  gtkimageview/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:17:32 UTC (rev 275092)
+++ PKGBUILD2017-12-20 22:18:13 UTC (rev 275093)
@@ -13,7 +13,7 @@
 depends=('gtk2')
 makedepends=('pkg-config' 'python')
 
source=("https://sources.archlinux.org/other/packages/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('501367b3f50e69a12208dc9c6ad00b18')
+sha256sums=('4c681d38d127ee3950a29bce9aa7aa8a2abe3b4d915f7a0c88e526999c1a46f2')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"


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

2017-12-20 Thread Christian Hesse via arch-commits
Date: Wednesday, December 20, 2017 @ 22:17:25
  Author: eworm
Revision: 275091

upgpkg: hidapi 0.8.0rc1-3

rebuild old packages

Modified:
  hidapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:16:11 UTC (rev 275090)
+++ PKGBUILD2017-12-20 22:17:25 UTC (rev 275091)
@@ -7,7 +7,7 @@
 pkgname=hidapi
 pkgver=0.8.0rc1
 _hidapiver=0.8.0-rc1
-pkgrel=2
+pkgrel=3
 pkgdesc="Simple library for communicating with USB and Bluetooth HID devices"
 arch=(x86_64)
 url="http://www.signal11.us/oss/hidapi/;
@@ -15,7 +15,7 @@
 depends=('libusb')
 conflicts=('hidapi-git')
 
source=("https://github.com/signal11/hidapi/archive/hidapi-${_hidapiver}.tar.gz;)
-md5sums=('069f9dd746edc37b6b6d0e3656f47199')
+sha256sums=('3c147200bf48a04c1e927cd81589c5ddceff61e6dac137a605f6ac9793f4af61')
 
 build() {
   cd "${srcdir}/hidapi-hidapi-${_hidapiver}"


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

2017-12-20 Thread Christian Hesse via arch-commits
Date: Wednesday, December 20, 2017 @ 22:17:32
  Author: eworm
Revision: 275092

archrelease: copy trunk to community-x86_64

Added:
  hidapi/repos/community-x86_64/PKGBUILD
(from rev 275091, hidapi/trunk/PKGBUILD)
Deleted:
  hidapi/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-20 22:17:25 UTC (rev 275091)
+++ PKGBUILD2017-12-20 22:17:32 UTC (rev 275092)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Niels Martignène 
-# Contributor: Nicolas Avrutin 
-# Contributor: Emmanuel Gil Peyrot 
-
-pkgname=hidapi
-pkgver=0.8.0rc1
-_hidapiver=0.8.0-rc1
-pkgrel=2
-pkgdesc="Simple library for communicating with USB and Bluetooth HID devices"
-arch=(i686 x86_64)
-url="http://www.signal11.us/oss/hidapi/;
-license=('GPL3' 'BSD' 'custom')
-depends=('libusb')
-conflicts=('hidapi-git')
-source=("https://github.com/signal11/hidapi/archive/hidapi-${_hidapiver}.tar.gz;)
-md5sums=('069f9dd746edc37b6b6d0e3656f47199')
-
-build() {
-  cd "${srcdir}/hidapi-hidapi-${_hidapiver}"
-
-  ./bootstrap
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/hidapi-hidapi-${_hidapiver}"
-
-  make DESTDIR="${pkgdir}/" install
-
-  mkdir -p "${pkgdir}/usr/share/licenses/${pkgname}"
-  rm -f "${pkgdir}/usr/share/doc/hidapi/"LICENSE*
-  install -m644 LICENSE.txt LICENSE-bsd.txt LICENSE-orig.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: hidapi/repos/community-x86_64/PKGBUILD (from rev 275091, 
hidapi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-20 22:17:32 UTC (rev 275092)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Niels Martignène 
+# Contributor: Nicolas Avrutin 
+# Contributor: Emmanuel Gil Peyrot 
+
+pkgname=hidapi
+pkgver=0.8.0rc1
+_hidapiver=0.8.0-rc1
+pkgrel=3
+pkgdesc="Simple library for communicating with USB and Bluetooth HID devices"
+arch=(x86_64)
+url="http://www.signal11.us/oss/hidapi/;
+license=('GPL3' 'BSD' 'custom')
+depends=('libusb')
+conflicts=('hidapi-git')
+source=("https://github.com/signal11/hidapi/archive/hidapi-${_hidapiver}.tar.gz;)
+sha256sums=('3c147200bf48a04c1e927cd81589c5ddceff61e6dac137a605f6ac9793f4af61')
+
+build() {
+  cd "${srcdir}/hidapi-hidapi-${_hidapiver}"
+
+  ./bootstrap
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/hidapi-hidapi-${_hidapiver}"
+
+  make DESTDIR="${pkgdir}/" install
+
+  mkdir -p "${pkgdir}/usr/share/licenses/${pkgname}"
+  rm -f "${pkgdir}/usr/share/doc/hidapi/"LICENSE*
+  install -m644 LICENSE.txt LICENSE-bsd.txt LICENSE-orig.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2017-12-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, December 20, 2017 @ 22:16:11
  Author: arojas
Revision: 275090

archrelease: copy trunk to community-any

Added:
  tdlib/repos/community-any/PKGBUILD
(from rev 275089, tdlib/trunk/PKGBUILD)
Deleted:
  tdlib/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-20 22:15:46 UTC (rev 275089)
+++ PKGBUILD2017-12-20 22:16:11 UTC (rev 275090)
@@ -1,23 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=tdlib
-pkgver=0.5.0
-pkgrel=1
-pkgdesc="Algorithms for computing tree decompositions of graphs"
-arch=(any)
-url="http://www.tdi.informatik.uni-frankfurt.de/~lukas/tdlib.html;
-license=(GPL2)
-depends=()
-source=("http://www.tdi.informatik.uni-frankfurt.de/~lukas/data/$pkgname-$pkgver.tar.gz;)
-md5sums=('771fd79bd3d98959820a87285a34d9b6')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make install DESTDIR="$pkgdir"
-}

Copied: tdlib/repos/community-any/PKGBUILD (from rev 275089, 
tdlib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-20 22:16:11 UTC (rev 275090)
@@ -0,0 +1,23 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=tdlib
+pkgver=0.5.0
+pkgrel=2
+pkgdesc="Algorithms for computing tree decompositions of graphs"
+arch=(any)
+url="http://www.tdi.informatik.uni-frankfurt.de/~lukas/tdlib.html;
+license=(GPL2)
+depends=()
+source=("https://sources.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.gz;)
+sha256sums=('4cddaf2397f3ff291b0aa93b6c529edeae6af8d7337e5c9f28758042950b6264')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make install DESTDIR="$pkgdir"
+}


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

2017-12-20 Thread Christian Hesse via arch-commits
Date: Wednesday, December 20, 2017 @ 22:15:22
  Author: eworm
Revision: 275088

archrelease: copy trunk to community-x86_64

Added:
  gtkimageview/repos/community-x86_64/PKGBUILD
(from rev 275087, gtkimageview/trunk/PKGBUILD)
Deleted:
  gtkimageview/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-20 22:15:10 UTC (rev 275087)
+++ PKGBUILD2017-12-20 22:15:22 UTC (rev 275088)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Jan Blazek 
-# Contributor: Jose Valecillos 
-
-pkgname=gtkimageview
-pkgver=1.6.4
-pkgrel=4
-pkgdesc="Simple image viewer widget for GTK2"
-arch=('i686' 'x86_64')
-url="https://github.com/GNOME/gtkimageview;
-license=('LGPL2.1')
-depends=('gtk2')
-makedepends=('pkg-config')
-source=("https://sources.archlinux.org/other/packages/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('501367b3f50e69a12208dc9c6ad00b18')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr \
-  --disable-static
-
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-
-  rm -rf "${pkgdir}/usr/share"
-}

Copied: gtkimageview/repos/community-x86_64/PKGBUILD (from rev 275087, 
gtkimageview/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-20 22:15:22 UTC (rev 275088)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Jan Blazek 
+# Contributor: Jose Valecillos 
+
+pkgname=gtkimageview
+pkgver=1.6.4
+pkgrel=5
+pkgdesc="Simple image viewer widget for GTK2"
+arch=('x86_64')
+url="https://github.com/GNOME/gtkimageview;
+license=('LGPL2.1')
+depends=('gtk2')
+makedepends=('pkg-config' 'python')
+source=("https://sources.archlinux.org/other/packages/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('501367b3f50e69a12208dc9c6ad00b18')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure \
+--prefix=/usr \
+--disable-static
+  sed -i 's/-Werror//' $(find -name Makefile)
+
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  rm -rf "${pkgdir}/usr/share"
+}


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

2017-12-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, December 20, 2017 @ 22:15:46
  Author: arojas
Revision: 275089

Host sources in al.org, rebuild

Modified:
  tdlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:15:22 UTC (rev 275088)
+++ PKGBUILD2017-12-20 22:15:46 UTC (rev 275089)
@@ -3,14 +3,14 @@
 
 pkgname=tdlib
 pkgver=0.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Algorithms for computing tree decompositions of graphs"
 arch=(any)
 url="http://www.tdi.informatik.uni-frankfurt.de/~lukas/tdlib.html;
 license=(GPL2)
 depends=()
-source=("http://www.tdi.informatik.uni-frankfurt.de/~lukas/data/$pkgname-$pkgver.tar.gz;)
-md5sums=('771fd79bd3d98959820a87285a34d9b6')
+source=("https://sources.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.gz;)
+sha256sums=('4cddaf2397f3ff291b0aa93b6c529edeae6af8d7337e5c9f28758042950b6264')
 
 build() {
   cd $pkgname-$pkgver


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

2017-12-20 Thread Christian Hesse via arch-commits
Date: Wednesday, December 20, 2017 @ 22:15:10
  Author: eworm
Revision: 275087

upgpkg: gtkimageview 1.6.4-5

rebuild old packages

Modified:
  gtkimageview/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:07:42 UTC (rev 275086)
+++ PKGBUILD2017-12-20 22:15:10 UTC (rev 275087)
@@ -5,13 +5,13 @@
 
 pkgname=gtkimageview
 pkgver=1.6.4
-pkgrel=4
+pkgrel=5
 pkgdesc="Simple image viewer widget for GTK2"
 arch=('x86_64')
 url="https://github.com/GNOME/gtkimageview;
 license=('LGPL2.1')
 depends=('gtk2')
-makedepends=('pkg-config')
+makedepends=('pkg-config' 'python')
 
source=("https://sources.archlinux.org/other/packages/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
 md5sums=('501367b3f50e69a12208dc9c6ad00b18')
 
@@ -18,8 +18,10 @@
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
 
-  ./configure --prefix=/usr \
-  --disable-static
+  ./configure \
+--prefix=/usr \
+--disable-static
+  sed -i 's/-Werror//' $(find -name Makefile)
 
   make
 }


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

2017-12-20 Thread Evangelos Foutras via arch-commits
Date: Wednesday, December 20, 2017 @ 22:13:50
  Author: foutrelis
Revision: 313436

upgpkg: openmp 5.0.1-1

New upstream release.

Modified:
  openmp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:13:13 UTC (rev 313435)
+++ PKGBUILD2017-12-20 22:13:50 UTC (rev 313436)
@@ -2,7 +2,7 @@
 # Maintainer: Evangelos Foutras 
 
 pkgname=openmp
-pkgver=5.0.0
+pkgver=5.0.1
 pkgrel=1
 pkgdesc="LLVM OpenMP Runtime Library"
 arch=('x86_64')
@@ -10,8 +10,8 @@
 license=('custom:University of Illinois/NCSA Open Source License')
 depends=('glibc')
 makedepends=('cmake')
-source=(http://llvm.org/releases/$pkgver/$pkgname-$pkgver.src.tar.xz{,.sig})
-sha256sums=('c0ef081b05e0725a04e8711d9ecea2e90d6c3fbb1622845336d3d095d0a3f7c5'
+source=(https://releases.llvm.org/$pkgver/$pkgname-$pkgver.src.tar.xz{,.sig})
+sha256sums=('adb635cdd2f9f828351b1e13d892480c657fb12500e69c70e007bddf0fca2653'
 'SKIP')
 validpgpkeys=('B6C8F98282B944E3B0D5C2530FC3042E345AD05D'
   '11E521D646982372EB577A1F8F0871F202119294')


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

2017-12-20 Thread Evangelos Foutras via arch-commits
Date: Wednesday, December 20, 2017 @ 22:14:00
  Author: foutrelis
Revision: 313438

archrelease: copy trunk to extra-x86_64

Added:
  openmp/repos/extra-x86_64/PKGBUILD
(from rev 313436, openmp/trunk/PKGBUILD)
Deleted:
  openmp/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-20 22:13:54 UTC (rev 313437)
+++ PKGBUILD2017-12-20 22:14:00 UTC (rev 313438)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-
-pkgname=openmp
-pkgver=5.0.0
-pkgrel=1
-pkgdesc="LLVM OpenMP Runtime Library"
-arch=('i686' 'x86_64')
-url="http://openmp.llvm.org/;
-license=('custom:University of Illinois/NCSA Open Source License')
-depends=('glibc')
-makedepends=('cmake')
-source=(http://llvm.org/releases/$pkgver/$pkgname-$pkgver.src.tar.xz{,.sig})
-sha256sums=('c0ef081b05e0725a04e8711d9ecea2e90d6c3fbb1622845336d3d095d0a3f7c5'
-'SKIP')
-validpgpkeys=('B6C8F98282B944E3B0D5C2530FC3042E345AD05D'
-  '11E521D646982372EB577A1F8F0871F202119294')
-
-prepare() {
-   cd "$pkgname-$pkgver.src"
-   mkdir build
-}
-
-build() {
-   cd "$pkgname-$pkgver.src/build"
-
-  cmake \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
-..
-   make
-}
-
-package() {
-  cd "$pkgname-$pkgver.src"
-
-  make -C build DESTDIR="$pkgdir" install
-
-  # libgomp.so is also provided by gcc-libs; remove it to fix the conflict
-  rm "$pkgdir/usr/lib/libgomp.so"
-
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: openmp/repos/extra-x86_64/PKGBUILD (from rev 313436, 
openmp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-20 22:14:00 UTC (rev 313438)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+
+pkgname=openmp
+pkgver=5.0.1
+pkgrel=1
+pkgdesc="LLVM OpenMP Runtime Library"
+arch=('x86_64')
+url="http://openmp.llvm.org/;
+license=('custom:University of Illinois/NCSA Open Source License')
+depends=('glibc')
+makedepends=('cmake')
+source=(https://releases.llvm.org/$pkgver/$pkgname-$pkgver.src.tar.xz{,.sig})
+sha256sums=('adb635cdd2f9f828351b1e13d892480c657fb12500e69c70e007bddf0fca2653'
+'SKIP')
+validpgpkeys=('B6C8F98282B944E3B0D5C2530FC3042E345AD05D'
+  '11E521D646982372EB577A1F8F0871F202119294')
+
+prepare() {
+   cd "$pkgname-$pkgver.src"
+   mkdir build
+}
+
+build() {
+   cd "$pkgname-$pkgver.src/build"
+
+  cmake \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+..
+   make
+}
+
+package() {
+  cd "$pkgname-$pkgver.src"
+
+  make -C build DESTDIR="$pkgdir" install
+
+  # libgomp.so is also provided by gcc-libs; remove it to fix the conflict
+  rm "$pkgdir/usr/lib/libgomp.so"
+
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in linux/repos (10 files)

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 22:13:54
  Author: heftig
Revision: 313437

archrelease: copy trunk to staging-x86_64

Added:
  linux/repos/staging-x86_64/
  
linux/repos/staging-x86_64/0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch
(from rev 313435, 
linux/trunk/0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch)
  
linux/repos/staging-x86_64/0001-e1000e-Fix-e1000_check_for_copper_link_ich8lan-retur.patch
(from rev 313435, 
linux/trunk/0001-e1000e-Fix-e1000_check_for_copper_link_ich8lan-retur.patch)
  
linux/repos/staging-x86_64/0002-dccp-CVE-2017-8824-use-after-free-in-DCCP-code.patch
(from rev 313435, 
linux/trunk/0002-dccp-CVE-2017-8824-use-after-free-in-DCCP-code.patch)
  linux/repos/staging-x86_64/60-linux.hook
(from rev 313435, linux/trunk/60-linux.hook)
  linux/repos/staging-x86_64/90-linux.hook
(from rev 313435, linux/trunk/90-linux.hook)
  linux/repos/staging-x86_64/PKGBUILD
(from rev 313435, linux/trunk/PKGBUILD)
  linux/repos/staging-x86_64/config
(from rev 313435, linux/trunk/config)
  linux/repos/staging-x86_64/linux.install
(from rev 313435, linux/trunk/linux.install)
  linux/repos/staging-x86_64/linux.preset
(from rev 313435, linux/trunk/linux.preset)

-+
 0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch |  102 
 0001-e1000e-Fix-e1000_check_for_copper_link_ich8lan-retur.patch |   73 
 0002-dccp-CVE-2017-8824-use-after-free-in-DCCP-code.patch   |   57 
 60-linux.hook   |   12 
 90-linux.hook   |   11 
 PKGBUILD|  246 
 config  | 8498 
++
 linux.install   |   10 
 linux.preset|   14 
 9 files changed, 9023 insertions(+)

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


[arch-commits] Commit in linux-zen/repos (7 files)

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 22:13:13
  Author: heftig
Revision: 313435

archrelease: copy trunk to testing-x86_64

Added:
  linux-zen/repos/testing-x86_64/
  linux-zen/repos/testing-x86_64/60-linux.hook
(from rev 313434, linux-zen/trunk/60-linux.hook)
  linux-zen/repos/testing-x86_64/90-linux.hook
(from rev 313434, linux-zen/trunk/90-linux.hook)
  linux-zen/repos/testing-x86_64/PKGBUILD
(from rev 313434, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/testing-x86_64/config
(from rev 313434, linux-zen/trunk/config)
  linux-zen/repos/testing-x86_64/linux.install
(from rev 313434, linux-zen/trunk/linux.install)
  linux-zen/repos/testing-x86_64/linux.preset
(from rev 313434, linux-zen/trunk/linux.preset)

---+
 60-linux.hook |   12 
 90-linux.hook |   11 
 PKGBUILD  |  241 +
 config| 8536 
 linux.install |   10 
 linux.preset  |   14 
 6 files changed, 8824 insertions(+)

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


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

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 22:12:33
  Author: heftig
Revision: 313434

archrelease: copy trunk to extra-x86_64

Added:
  eclipse/repos/extra-x86_64/PKGBUILD
(from rev 313433, eclipse/trunk/PKGBUILD)
  eclipse/repos/extra-x86_64/commonify
(from rev 313433, eclipse/trunk/commonify)
Deleted:
  eclipse/repos/extra-x86_64/PKGBUILD
  eclipse/repos/extra-x86_64/commonify
  eclipse/repos/extra-x86_64/eclipse.desktop
  eclipse/repos/extra-x86_64/eclipse.sh

-+
 PKGBUILD|  196 ++---
 commonify   |  282 ++
 eclipse.desktop |9 -
 eclipse.sh  |3 
 4 files changed, 253 insertions(+), 237 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-20 21:50:29 UTC (rev 313433)
+++ PKGBUILD2017-12-20 22:12:33 UTC (rev 313434)
@@ -1,100 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-# Contributor: Paul Mattal 
-# Contributor: Andrew Wright 
-# Contributor: Andreas W. Hauser 
-# Contributor: Marco Crosio 
-
-pkgbase=eclipse
-pkgname=(eclipse-{common,java,jee,cpp,php,javascript})
-pkgver=4.7.1.a
-pkgrel=1
-_release=oxygen-1a
-pkgdesc="Highly extensible IDE"
-license=(EPL)
-arch=(i686 x86_64)
-url="https://eclipse.org;
-makedepends=(python3)
-options=(!emptydirs)
-source=(commonify eclipse.sh eclipse.desktop)
-source_i686=()
-source_x86_64=()
-noextract=()
-
-for _pkg in ${pkgname[@]}; do
-  [[ $_pkg == 'eclipse-common' ]] && continue
-  
source_i686+=(http://ftp-stud.fht-esslingen.de/pub/Mirrors/eclipse/technology/epp/downloads/release/${_release/-//}/$_pkg-$_release-linux-gtk.tar.gz)
-  
source_x86_64+=(http://ftp-stud.fht-esslingen.de/pub/Mirrors/eclipse/technology/epp/downloads/release/${_release/-//}/$_pkg-$_release-linux-gtk-x86_64.tar.gz)
-  noextract+=($_pkg-$_release-linux-gtk{,-x86_64}.tar.gz)
-  eval "package_$_pkg() { _package $_pkg; }"
-done
-
-sha256sums=('9e5573f7b951774be3f98c69f9d391ddafbe8a3a727ce81c08dfd67d42cee503'
-'04e789fb695d5f95d09ddb994ae30397b39aee35f11997465dd91d129c41b2ed'
-'57559c2548ae463089acb3c2825ebc002ed83067ddc953b23d36a7b5a02deaf3')
-sha256sums_i686=('9ffb8980f1f5e68ee6779c9f02376040ace2dec76d8be6407e0d2c77c1c3100b'
- 
'9752f15435a417c03bb75313ee94a4dc3b35adcdd300af055a6f7aa9311225a5'
- 
'eb8462e778034dd4c8e5fcb538d271300730fd7584fe7c2c5e2d53541ee453c8'
- 
'ac6d167124aaad5fb8629802ce5e7acfa57848fc5c7854d068ecd9cd19719ca8'
- 
'65a536d0ce3b41a0c8471167085757eee49b4ebeb04b68929af6475ac465aa5b')
-sha256sums_x86_64=('f1b8205abec2dc9cc769941fbde96bb83007050841d7f094dcb3cb07b1696446'
-   
'7c6bf1640c2ed9db3717cf2c65cecd5f18c3736b46151caa09cd28397516f08b'
-   
'a155afe0b305a1206efb463123f68f48be3900e694f4c7fffa0643e1424511cf'
-   
'6b90524ec4f075ed382f14c598c817df1764f31bebbf4b1ba9bdd4056033eaf3'
-   
'af546dd94f7376dced761970ab0a0f31508fc0ec06e51282a02f5df96748918c')
-
-prepare() {
-  mkdir eclipse-common
-
-  for _pkg in ${pkgname[@]}; do
-[[ $_pkg == 'eclipse-common' ]] && continue
-
-if [[ $CARCH == x86_64 ]]; then
-  bsdtar -xf "$_pkg-$_release-linux-gtk-x86_64.tar.gz"
-else
-  bsdtar -xf "$_pkg-$_release-linux-gtk.tar.gz"
-fi
-
-mv eclipse $_pkg
-  done
-}
-
-build() {
-  ./commonify --identical ${pkgname[@]}
-
-  mkdir -p eclipse-common/dropins
-  touch eclipse-common/dropins/.keep
-}
-
-package_eclipse-common() {
-  pkgdesc+=" (common files)"
-  depends=("java-environment>=8" webkit2gtk unzip)
-
-  install -d "$pkgdir/usr/lib"
-  cp -a eclipse-common "$pkgdir/usr/lib/eclipse"
-
-  install -D eclipse.sh "$pkgdir/usr/bin/eclipse"
-  install -Dm644 eclipse.desktop 
"$pkgdir/usr/share/applications/eclipse.desktop"
-
-  for _i in 16 32 48 256; do
-install -Dm644 
eclipse-common/plugins/org.eclipse.platform_*/eclipse${_i}.png \
-  "$pkgdir/usr/share/icons/hicolor/${_i}x${_i}/apps/eclipse.png"
-  done
-}
-
-_package() {
-  _variant=${1#eclipse-}
-  pkgdesc+=" (${_variant^^} variant)"
-  depends=(eclipse-common)
-  provides=("eclipse=$pkgver-$pkgrel")
-  conflicts=(eclipse)
-
-  case $_variant in
-java) replaces=(eclipse) ;;
-cpp)  replaces=(eclipse-cdt) ;;
-  esac
-
-  install -d "$pkgdir/usr/lib"
-  cp -a $1 "$pkgdir/usr/lib/eclipse"
-}

Copied: eclipse/repos/extra-x86_64/PKGBUILD (from rev 313433, 
eclipse/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-20 22:12:33 UTC (rev 313434)
@@ -0,0 +1,96 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 

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

2017-12-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, December 20, 2017 @ 22:07:42
  Author: arojas
Revision: 275086

archrelease: copy trunk to community-x86_64

Added:
  rankwidth/repos/community-x86_64/PKGBUILD
(from rev 275085, rankwidth/trunk/PKGBUILD)
Deleted:
  rankwidth/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-20 22:07:13 UTC (rev 275085)
+++ PKGBUILD2017-12-20 22:07:42 UTC (rev 275086)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=rankwidth
-pkgver=0.7
-pkgrel=1
-pkgdesc="A program that calculates rank-width and rank-decompositions"
-arch=(i686 x86_64)
-url="http://pholia.tdi.informatik.uni-frankfurt.de/~philipp/software/rw.shtml;
-license=(GPL2)
-depends=(igraph)
-makedepends=()
-source=("http://pholia.tdi.informatik.uni-frankfurt.de/~philipp/software/rw-$pkgver.tar.gz;)
-md5sums=('58695835a1b5aaa3935143feabc8619a')
-
-build() {
-  cd rw-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd rw-$pkgver
-  make install DESTDIR="$pkgdir"
-}
-

Copied: rankwidth/repos/community-x86_64/PKGBUILD (from rev 275085, 
rankwidth/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-20 22:07:42 UTC (rev 275086)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=rankwidth
+pkgver=0.7
+pkgrel=2
+pkgdesc="A program that calculates rank-width and rank-decompositions"
+arch=(x86_64)
+url="http://pholia.tdi.informatik.uni-frankfurt.de/~philipp/software/rw.shtml;
+license=(GPL2)
+depends=(igraph)
+makedepends=()
+source=("http://mirrors.mit.edu/sage/spkg/upstream/rw/rw-$pkgver.tar.gz;)
+sha256sums=('e049966e5c4f446b639d4b0c40d3ceddd57a79a8890c10dce90614d105d962e7')
+
+build() {
+  cd rw-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd rw-$pkgver
+  make install DESTDIR="$pkgdir"
+}
+


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

2017-12-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, December 20, 2017 @ 22:07:13
  Author: arojas
Revision: 275085

Use sagemath sources, rebuild old package

Modified:
  rankwidth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:01:53 UTC (rev 275084)
+++ PKGBUILD2017-12-20 22:07:13 UTC (rev 275085)
@@ -3,7 +3,7 @@
 
 pkgname=rankwidth
 pkgver=0.7
-pkgrel=1
+pkgrel=2
 pkgdesc="A program that calculates rank-width and rank-decompositions"
 arch=(x86_64)
 url="http://pholia.tdi.informatik.uni-frankfurt.de/~philipp/software/rw.shtml;
@@ -10,8 +10,8 @@
 license=(GPL2)
 depends=(igraph)
 makedepends=()
-source=("http://pholia.tdi.informatik.uni-frankfurt.de/~philipp/software/rw-$pkgver.tar.gz;)
-md5sums=('58695835a1b5aaa3935143feabc8619a')
+source=("http://mirrors.mit.edu/sage/spkg/upstream/rw/rw-$pkgver.tar.gz;)
+sha256sums=('e049966e5c4f446b639d4b0c40d3ceddd57a79a8890c10dce90614d105d962e7')
 
 build() {
   cd rw-$pkgver


[arch-commits] Commit in parallel-netcdf-openmpi/repos (2 files)

2017-12-20 Thread Bruno Pagani via arch-commits
Date: Wednesday, December 20, 2017 @ 22:01:53
  Author: archange
Revision: 275084

archrelease: copy trunk to community-staging-x86_64

Added:
  parallel-netcdf-openmpi/repos/community-staging-x86_64/
  parallel-netcdf-openmpi/repos/community-staging-x86_64/PKGBUILD
(from rev 275083, parallel-netcdf-openmpi/trunk/PKGBUILD)

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

Copied: parallel-netcdf-openmpi/repos/community-staging-x86_64/PKGBUILD (from 
rev 275083, parallel-netcdf-openmpi/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-20 22:01:53 UTC (rev 275084)
@@ -0,0 +1,41 @@
+# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
+
+_pkg=parallel-netcdf
+_mpi=openmpi
+pkgname=${_pkg}-${_mpi}
+pkgver=1.9.0
+pkgrel=1
+pkgdesc="A Parallel I/O Library for NetCDF File Access"
+arch=('x86_64')
+url="https://trac.mcs.anl.gov/projects/parallel-netcdf;
+license=('custom')
+depends=('openmpi')
+makedepends=('gcc-fortran')
+checkdepends=('inetutils')
+provides=('parallel-netcdf')
+conflicts=('parallel-netcdf')
+replaces=('parallel-netcdf')
+options=('!makeflags')
+source=("http://cucis.ece.northwestern.edu/projects/PnetCDF/Release/${_pkg}-${pkgver}.tar.gz;)
+sha1sums=('0978ae5cdaba925e73ced2b550fc02a132b2c5ed')
+
+build() {
+cd ${_pkg}-${pkgver}
+
+export CPPFLAGS="${CPPFLAGS} -fPIC"
+./configure --prefix=/usr #--enable-shared
+make
+}
+
+check() {
+cd ${_pkg}-${pkgver}
+make check
+make ptest
+}
+
+package() {
+cd ${_pkg}-${pkgver}
+make DESTDIR="${pkgdir}" install
+
+install -Dm644 COPYRIGHT -t "${pkgdir}"/usr/share/licenses/${_pkg}
+}


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

2017-12-20 Thread Bruno Pagani via arch-commits
Date: Wednesday, December 20, 2017 @ 22:01:32
  Author: archange
Revision: 275083

upgpkg: parallel-netcdf-openmpi 1.9.0-1

Upstream release + OpenMPI 3.0 rebuild.

Building shared library is failing, so stay static for now.

Modified:
  parallel-netcdf-openmpi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 22:00:50 UTC (rev 275082)
+++ PKGBUILD2017-12-20 22:01:32 UTC (rev 275083)
@@ -3,8 +3,8 @@
 _pkg=parallel-netcdf
 _mpi=openmpi
 pkgname=${_pkg}-${_mpi}
-pkgver=1.8.1
-pkgrel=4
+pkgver=1.9.0
+pkgrel=1
 pkgdesc="A Parallel I/O Library for NetCDF File Access"
 arch=('x86_64')
 url="https://trac.mcs.anl.gov/projects/parallel-netcdf;
@@ -17,24 +17,20 @@
 replaces=('parallel-netcdf')
 options=('!makeflags')
 
source=("http://cucis.ece.northwestern.edu/projects/PnetCDF/Release/${_pkg}-${pkgver}.tar.gz;)
-sha1sums=('2a8179158731f3fa24c9b183b4b1442e8853d229')
+sha1sums=('0978ae5cdaba925e73ced2b550fc02a132b2c5ed')
 
 build() {
 cd ${_pkg}-${pkgver}
 
 export CPPFLAGS="${CPPFLAGS} -fPIC"
-./configure --prefix=/usr
+./configure --prefix=/usr #--enable-shared
 make
 }
 
 check() {
 cd ${_pkg}-${pkgver}
-# Tests failing with i686: https://github.com/open-mpi/ompi/issues/3195
-if [ ${CARCH} = 'x86_64' ]; then
-make check
-make ptest
-fi
-# Tests crashing (but no failure) with x86_64: 
https://github.com/open-mpi/ompi/issues/3695
+make check
+make ptest
 }
 
 package() {


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

2017-12-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, December 20, 2017 @ 22:00:50
  Author: arojas
Revision: 275082

archrelease: copy trunk to community-x86_64

Added:
  igraph/repos/community-x86_64/PKGBUILD
(from rev 275081, igraph/trunk/PKGBUILD)
Deleted:
  igraph/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-20 22:00:19 UTC (rev 275081)
+++ PKGBUILD2017-12-20 22:00:50 UTC (rev 275082)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Fazlul Shahriar 
-# Contributor: Denis Zawada 
-
-pkgname=igraph
-pkgver=0.7.1
-pkgrel=5
-pkgdesc="A library for creating and manipulating (un)directed graphs."
-arch=(i686 x86_64)
-url="http://igraph.org/c/;
-license=(GPL2)
-depends=(glpk arpack)
-source=("http://igraph.org/nightly/get/c/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('4f6e7c16b45fce8ed423516a9786e4e8')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --with-external-blas --with-external-lapack 
--with-external-arpack --with-external-glpk --disable-tls
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-

Copied: igraph/repos/community-x86_64/PKGBUILD (from rev 275081, 
igraph/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-20 22:00:50 UTC (rev 275082)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Fazlul Shahriar 
+# Contributor: Denis Zawada 
+
+pkgname=igraph
+pkgver=0.7.1
+pkgrel=6
+pkgdesc="A library for creating and manipulating (un)directed graphs."
+arch=(x86_64)
+url="http://igraph.org/c/;
+license=(GPL2)
+depends=(glpk arpack libxml2)
+source=("http://igraph.org/nightly/get/c/$pkgname-$pkgver.tar.gz;)
+sha256sums=('d978030e27369bf698f3816ab70aa9141e9baf81c56cc4f55efbe5489b46b0df')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --with-external-blas --with-external-lapack 
--with-external-arpack --with-external-glpk --disable-tls
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+


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

2017-12-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, December 20, 2017 @ 22:00:19
  Author: arojas
Revision: 275081

Add missing libxml2 dependency

Modified:
  igraph/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 21:51:43 UTC (rev 275080)
+++ PKGBUILD2017-12-20 22:00:19 UTC (rev 275081)
@@ -5,14 +5,14 @@
 
 pkgname=igraph
 pkgver=0.7.1
-pkgrel=5
+pkgrel=6
 pkgdesc="A library for creating and manipulating (un)directed graphs."
 arch=(x86_64)
 url="http://igraph.org/c/;
 license=(GPL2)
-depends=(glpk arpack)
-source=("http://igraph.org/nightly/get/c/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('4f6e7c16b45fce8ed423516a9786e4e8')
+depends=(glpk arpack libxml2)
+source=("http://igraph.org/nightly/get/c/$pkgname-$pkgver.tar.gz;)
+sha256sums=('d978030e27369bf698f3816ab70aa9141e9baf81c56cc4f55efbe5489b46b0df')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in libreoffice-fresh-i18n/repos (2 files)

2017-12-20 Thread Andreas Radke via arch-commits
Date: Wednesday, December 20, 2017 @ 21:50:29
  Author: andyrtr
Revision: 313433

archrelease: copy trunk to testing-any

Added:
  libreoffice-fresh-i18n/repos/testing-any/
  libreoffice-fresh-i18n/repos/testing-any/PKGBUILD
(from rev 313432, libreoffice-fresh-i18n/trunk/PKGBUILD)

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

Copied: libreoffice-fresh-i18n/repos/testing-any/PKGBUILD (from rev 313432, 
libreoffice-fresh-i18n/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2017-12-20 21:50:29 UTC (rev 313433)
@@ -0,0 +1,537 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgbase=libreoffice-fresh-i18n
+
+pkgver=5.4.4
+pkgrel=1
+_rcver=${pkgver}.2
+#_oodlver=${pkgver}.0.beta1
+_oodlver=${pkgver}
+
+arch=('any')
+url="http://www.documentfoundation.org;
+license=('LGPL')
+
+#https://download.documentfoundation.org/mirrors/all.html
+_url="https://download.documentfoundation.org/libreoffice/stable;
+#_url="https://download.documentfoundation.org/libreoffice/testing;
+#_url="https://dev-builds.libreoffice.org/pre-releases;
+#_url="https://www.libreoffice.org/download/pre-releases;
+
+#_url+="/${pkgver}-rc2/rpm/x86"
+_url+="/${pkgver}/rpm/x86"
+#_url+="/rpm/x86"
+
+_languages=(
+  'af"Afrikaans"   0'
+  'am"Amharic" 1'
+  'ar"Arabic"  1'
+  'as"Assamese (India)"0'
+  'ast   "Asturianu"   1'
+  'be"Belarusian"  0'
+  'bg"Bulgarian"   1'
+  'bn"Bengali" 1'
+  'bn-IN "Bengali (India)" 1'
+  'bo"Tibetan" 1'
+  'br"Breton"  0'
+  'brx   "Bodo"0'
+  'bs"Bosnian" 1'
+  'ca"Catalan" 1'
+  'ca-valencia   "Catalan (Valencia)"  1'
+  'cs"Czech"   1'
+  'cy"Welsh"   0'
+  'da"Danish"  1'
+  'de"German"  1'
+  'dgo   "Dogri"   0'
+  'dz"Dzongkha"1'
+  'el"Greek"   1'
+  'en-GB "English (GB)"1'
+  'en-ZA "English (ZA)"1'
+  'eo"Esperanto"   1'
+  'es"Spanish" 1'
+  'et"Estonian"1'
+  'eu"Basque"  1'
+  'fa"Persian" 0'
+  'fi"Finnish" 1'
+  'fr"French"  1'
+  'ga"Irish"   0'
+  'gd"Gaelic (Scottish)"   0'
+  'gl"Galician"1'
+  'gu"Gujarati"1'
+  'he"Hebrew"  1'
+  'hi"Hindi"   1'
+  'hr"Croatian"1'
+  'hu"Hungarian"   1'
+  'id"Indonesian"  1'
+  'is"Icelandic"   1'
+  'it"Italian" 1'
+  'ja"Japanese"1'
+  'ka"Georgian"1'
+  'kk"Kazakh"  0'
+  'km"Khmer (Cambodia)"1'
+  'kmr-Latn  "Kurdish" 0'
+  'kn"Kannada" 0'
+  'ko"Korean"  1'
+  'kok   "Konkani" 0'
+  'ks"Kashmiri"0'
+  'lb"Luxembourgish"   0'
+  'lo"Lao" 1'
+  'lt"Lithuanian"  1'
+  'lv"Latvian" 1'
+  'mai   "Maithili"0'
+  'mk"Macedonian"  1'
+  'ml"Malayalam"   0'
+  'mn"Mongolian"   0'
+  'mni   "Manipuri"0'
+  'mr"Marathi" 0'
+  'my"Burmese" 0'
+  'nb"Norwegian Bokmal"1'
+  'ne"Nepali"  1'
+  'nl"Dutch"   1'
+  'nn"Norwegian Nynorsk"   1'
+  'nr"Ndebele (South)" 0'
+  'nso   "Northern Sotho"  0'
+  'oc"Occitan" 0'
+  'om"Oromo"   1'
+  'or"Oriya"   0'
+  'pa-IN "Punjabi (India)" 0'
+  'pl"Polish"  1'
+  'pt"Portuguese"  1'
+  'pt-BR 

[arch-commits] Commit in libreoffice-fresh-i18n/trunk (PKGBUILD)

2017-12-20 Thread Andreas Radke via arch-commits
Date: Wednesday, December 20, 2017 @ 21:49:08
  Author: andyrtr
Revision: 313432

upgpkg: libreoffice-fresh-i18n 5.4.4-1

upstream update 5.4.4

Modified:
  libreoffice-fresh-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  348 ++---
 1 file changed, 174 insertions(+), 174 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 21:48:50 UTC (rev 313431)
+++ PKGBUILD2017-12-20 21:49:08 UTC (rev 313432)
@@ -4,7 +4,7 @@
 
 pkgbase=libreoffice-fresh-i18n
 
-pkgver=5.4.3
+pkgver=5.4.4
 pkgrel=1
 _rcver=${pkgver}.2
 #_oodlver=${pkgver}.0.beta1
@@ -136,351 +136,351 @@
   'zu"Zulu"0'
 )
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # "LibreOffice Build 
Team (CODE SIGNING KEY) "
-sha256sums=('f2e80367daba4746ca39dd497b03e41735e74512952265791bff78f095d7470d'
+sha256sums=('09e51449834fc7f5c3d31575aadac0014b4e28ae4a8d9c0869d6d95252303450'
 'SKIP'
-'14f6781ad52424464ec203616a887561ec7881b2e13fd161a545535f11383dff'
+'1cb1efdc7243c1fb92265cab765e7f3d8e442963e77d366ef8c14ea04bc989c4'
 'SKIP'
-'89abda37c5251fa55ed3395e3df6cbafc454d193894b4e8d450070ad37bca9f8'
+'b18bd550390de11b750b96b10cf1706349e36bf6d14ec2ceda63e247218f0bbb'
 'SKIP'
-'c15dc24a99166f7c0c983719300e7c065a10bf610f409dbc2719f2f2976bae80'
+'fcabe0124122d11e9b26756cefaee26a4864d858b2d26d486318d13f7ba2ab45'
 'SKIP'
-'53368f49f55c3bee2d99b2fa69c9ca4e9e4e1684814fac1c70bf21a88472fe9a'
+'cfb7b3260afd5b567034145fc56602f2814798a02c0ba5936f6fe2e9c2a3560a'
 'SKIP'
-'20d9663f2ece60e3248276ea477ce27f90cbb51ec84b5236562d974ab1a8a407'
+'3b85c6f3396f8d7aed8166afa09ffdc28ae215739a1918bf646af612bc547d5f'
 'SKIP'
-'45ad7754aed71c7a50d687dedf3d45e18164e0c4f88b01f7712b9eb45d67b2fb'
+'8cdc406704659953b26f31245b9155ab01550e16c8cff99cb659f427290be2bf'
 'SKIP'
-'9a47eec00247058d93282e4ef0f781bed7ea3173ae84a0f89efe108db899b11a'
+'de10bff120368bb90b84abdb75fbb10312fdf3e507636760faf0a69fb1d84df0'
 'SKIP'
-'699717e75d2604016c4d29107a410bf0307227ba326e0a0a4d7edc35a14a14ff'
+'244c05c58e1cc77535ed63d2ee2a497ec3b066573b5481d8e8a9eae1198ddff1'
 'SKIP'
-'b169a7c66b86ad348eea12576d6fc606597cea2f5cec2223eae42375e1912cc4'
+'99faa6667d8027e0edfe20a06e8166935b4581d19a732936d298a01f331a1efe'
 'SKIP'
-'0a689bffddd62f42472adba805634e14affa0508e46b81d648e4eb4f5a08551c'
+'c9fcc0be418326340f68a74263edc40a21ddfcf508cba9a5e80f8a1ec729311c'
 'SKIP'
-'e4f80baeedc8a6e210662a56416020893d1ad2650e5a1fcccaa6764cd9b3b247'
+'819e4b8df07dd06529d0ac394b1b493bc610d7f86a23374109884c7dc52fafab'
 'SKIP'
-'0a866aad729651715c82729ae72e66c9442538ec5e972652484b2dbab469f44a'
+'2cc8c3553b213a4725703bc66579d8cd48c07dbea6de1900183cbb4517c0a2bd'
 'SKIP'
-'791b40841f5fbcd0adf28c3f580172151f7471bdba70f47172e4721c3d4cb92a'
+'6a2896085d8751d0ca181a43e1bd6ba9599b7af17bb0ba954a74a2f24dd7bf82'
 'SKIP'
-'f6e5e98106c7f2133acc20b5dcef61c21ef6363b3adfa41b5a2ffccb79dd3827'
+'3e0334b1f29b021d59d6c16c8e9484c837e66084cf9a5f63123efa37d5e3052c'
 'SKIP'
-'40ec503997ca0471ed415e58282916a6aa731034f2c5904a97c65d7fda7c463a'
+'3d9415731120758899e9adf8fe65c20a217347852f75054253f2f2073559bc00'
 'SKIP'
-'c14571017cb2abef60ea847cf76c567f04639d4ea1f0e5dac3d8f53db0bd59fb'
+'512d3ce52c00c4d658a65823e5d0daa2fb11fbb58b2e48568027d9b90c39739d'
 'SKIP'
-'f5788abad67b112f532599c6812eda9727dd97bb71cd96c6ded873d171c62baf'
+'3aeb7fcd603d069b1ac5a417bb668cadcfdb8748999df314dec49f1cc9920fa3'
 'SKIP'
-'eaba3b27b39c014bb14330d3649c959e4ffb11edb2bf004f3708c25262b4db5c'
+'db9385de9d81d667c0f3b58c18030531038d1bd26ba891dacff0e38d2192b58c'
 'SKIP'
-'43a9f0660ffc0206fed03b99056743a21e7c93d54f8693372c231bd43d5dd23e'
+'78105c4d886ddd1f8c531af4fff1f648497a4e4dcbafa85101a1a2a93930d031'
 'SKIP'
-'0cf1319d1549669546d8bc31a0df909f0b97158e9cf1a3c9515d31af4e3f67f6'
+'c21632d2500cf6f5b7546f8731fc9be7df6f2afcefa233420f566badf5394ccd'
 'SKIP'
-'ac58115088b38dcaed36bc6c64f79fffcefcdc8b58bdd516f061ec2b9780fc11'
+'1b7409ea843c2781098eb73c639618f5ad92c844e7ee609a6aba6db81b64e337'
 'SKIP'
-'0f5ba121c5631a3ac21cb663977c630cd18d2d7413f5fc44702c3f49004458fa'
+

[arch-commits] Commit in libreoffice-fresh/repos (5 files)

2017-12-20 Thread Andreas Radke via arch-commits
Date: Wednesday, December 20, 2017 @ 21:48:50
  Author: andyrtr
Revision: 313431

archrelease: copy trunk to testing-x86_64

Added:
  libreoffice-fresh/repos/testing-x86_64/
  libreoffice-fresh/repos/testing-x86_64/PKGBUILD
(from rev 313430, libreoffice-fresh/trunk/PKGBUILD)
  libreoffice-fresh/repos/testing-x86_64/libreoffice-fresh.csh
(from rev 313430, libreoffice-fresh/trunk/libreoffice-fresh.csh)
  libreoffice-fresh/repos/testing-x86_64/libreoffice-fresh.sh
(from rev 313430, libreoffice-fresh/trunk/libreoffice-fresh.sh)
  
libreoffice-fresh/repos/testing-x86_64/make-pyuno-work-with-system-wide-module-install.diff
(from rev 313430, 
libreoffice-fresh/trunk/make-pyuno-work-with-system-wide-module-install.diff)

--+
 PKGBUILD |  341 +
 libreoffice-fresh.csh|6 
 libreoffice-fresh.sh |6 
 make-pyuno-work-with-system-wide-module-install.diff |   18 
 4 files changed, 371 insertions(+)

Copied: libreoffice-fresh/repos/testing-x86_64/PKGBUILD (from rev 313430, 
libreoffice-fresh/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-20 21:48:50 UTC (rev 313431)
@@ -0,0 +1,341 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Maintainer: Bartłomiej Piotrowski 
+
+# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
+# Note: These are for Arch Linux use ONLY. For your own distribution, please
+# get your own set of keys. Feel free to contact foutre...@archlinux.org for
+# more information.
+_google_default_client_id=413772536636.apps.googleusercontent.com
+_google_default_client_secret=0ZChLK6AxeA3Isu96MkwqDR4
+
+pkgbase=libreoffice-fresh
+pkgname=('libreoffice-fresh-sdk' 'libreoffice-fresh')
+_LOver=5.4.4.2
+pkgver=5.4.4
+pkgrel=1
+arch=('x86_64')
+license=('LGPL3')
+url="http://www.libreoffice.org/;
+makedepends=('curl>=7.20.0' 'hunspell>=1.2.8' 'python>=3.6' 'libwpd>=0.9.2' 
'libwps'
+   'neon>=0.28.6' 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 'dbus-glib'
+   'libxslt' 'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 'graphite' 'icu' 
+   'lcms2' 'poppler>=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 'libcdr'
+   'libmspub' 'harfbuzz-icu' 'glew' 'nss' 'hicolor-icon-theme'
+   'desktop-file-utils' 'shared-mime-info' 'gtk2' 'gst-plugins-base-libs'
+   'glu' 'sane' 'perl-archive-zip' 'zip' 'unzip' 'unixodbc' 'apache-ant'
+   'gperf' 'kdelibs' 'gtk3' 'cppunit' 'beanshell' 'clucene' 
+   'junit' 'libmythes' 'libwpg'  'java-environment' 'postgresql-libs' 
'libgl'
+   'bluez-libs' 'gdb' 'doxygen'  'libatomic_ops' 'mdds' 'glew'
+   'apr' 'serf' 'ttf-liberation' 'ttf-dejavu' 'glm' 'libxinerama' 
'libpagemaker'
+   'libabw' 'libmwaw' 'libe-book' 'coin-or-mp' 'liblangtag' 'liborcus' 
+   'libexttextcat' 'libcmis' 'gobject-introspection' #'libfbclient'
+   'libtommath' 'libzmf' 'gpgme' 'xmlsec' 'rxvt-unicode'
+   'libfreehand' 'libstaroffice'
+   # 'libepubgen'  'libqxp' 
+   )
+
+_mirror="https://download.documentfoundation.org/libreoffice/src/${pkgver};
+#_mirror="https://dev-builds.libreoffice.org/pre-releases/src;
+_additional_source_url="http://dev-www.libreoffice.org/src;
+_additional_source_url2="http://dev-www.libreoffice.org/extern;
+source=(${_mirror}/libreoffice{,-help,-translations}-${_LOver}.tar.xz{,.asc}
+   ${_additional_source_url}/boost_1_63_0.tar.bz2
+   
${_additional_source_url}/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
+   
${_additional_source_url}/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip # 
keep old bundled version, new system version ftbs
+   
${_additional_source_url}/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
+   
${_additional_source_url}/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz
+   ${_additional_source_url}/language-subtag-registry-2015-08-04.tar.bz2
+   
${_additional_source_url}/4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2
+   ${_additional_source_url}/OpenCOLLADA-master-6509aa13af.tar.bz2
+   
${_additional_source_url}/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip
+   ${_additional_source_url}/libgltf/libgltf-0.1.0.tar.gz
+   
${_additional_source_url}/1901302aaff1c1633ef81862663d2917-icu4c-58_1-src.tgz
+   ${_additional_source_url}/Firebird-3.0.0.32483-0.tar.bz2
+   ${_additional_source_url}/pdfium-3064.tar.bz2
+   
${_additional_source_url2}/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar
  # for test suite
+   
${_additional_source_url2}/a084cd548b586552cb7d3ee51f1af969-odfvalidator-1.1.8-incubating-SNAPSHOT-jar-with-dependencies.jar
  # for test suite
+   

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

2017-12-20 Thread Andreas Radke via arch-commits
Date: Wednesday, December 20, 2017 @ 21:48:30
  Author: andyrtr
Revision: 313430

upgpkg: libreoffice-fresh 5.4.4-1

upstream update 5.4.4

Modified:
  libreoffice-fresh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 21:37:10 UTC (rev 313429)
+++ PKGBUILD2017-12-20 21:48:30 UTC (rev 313430)
@@ -11,9 +11,9 @@
 
 pkgbase=libreoffice-fresh
 pkgname=('libreoffice-fresh-sdk' 'libreoffice-fresh')
-_LOver=5.4.3.2
-pkgver=5.4.3
-pkgrel=4
+_LOver=5.4.4.2
+pkgver=5.4.4
+pkgrel=1
 arch=('x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
@@ -77,11 +77,11 @@
1901302aaff1c1633ef81862663d2917-icu4c-58_1-src.tgz
185d60944ea767075d27247c3162b3bc-unowinreg.dll)
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
-sha256sums=('d59526dc6adf96c53cd7ed3c0235d9a876cbd1af07ab653456395ea94479d931'
+sha256sums=('6826751b4cd7076e0c7adfe6eee025cde7253c502ba51ab7072aec6070557e03'
 'SKIP'
-'85dd76aabc205e8b30f9622bc5300156df6debf4ac0364eb732ced92932d30e4'
+'280495861fc789868db62c4b19ef361eede9299a93003e0efd58499dcf862509'
 'SKIP'
-'7249cc6f87f7d2448e2c23356c2ae260a9aeaaa88ca75fa8ac66b42a3626fd2d'
+'2be3a5867f720f7298aad3d67b5d11bab2253af5be970a30ca4c7b2d8de902c5'
 'SKIP'
 'beae2529f759f6b3bf3f4969a19c2e9d6f0c503edcb2de4a61d1428519fcb3b0'
 '64585ac36a81291a58269ec5347e7e3e2e8596dbacb9221015c208191333c6e1'


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

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 21:37:05
  Author: heftig
Revision: 313428

4.14.8-1

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 21:05:01 UTC (rev 313427)
+++ PKGBUILD2017-12-20 21:37:05 UTC (rev 313428)
@@ -5,7 +5,7 @@
 pkgbase=linux   # Build stock -ARCH kernel
 #pkgbase=linux-custom   # Build kernel with a different name
 _srcname=linux-4.14
-pkgver=4.14.7
+pkgver=4.14.8
 pkgrel=1
 arch=('x86_64')
 url="https://www.kernel.org/;
@@ -31,7 +31,7 @@
 )
 sha256sums=('f81d59477e90a130857ce18dc02f4fbe5725854911db1e7ba770c7cd350f96a7'
 'SKIP'
-'5c286695439b4a1a2c7a112cf41aae0441b03ef41dfe83a0d61161c16dc265f5'
+'42eaed731b716244514b765c199e8f675d79287d7630e5c2911053ad52a1fa0a'
 'SKIP'
 '3d139e6cfc42a0bb52a6c49a2bb94ff523dc728b8d548178dbc0a90726eb4151'
 'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21'


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

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 21:37:10
  Author: heftig
Revision: 313429

4.14.8-1

Modified:
  linux-zen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 21:37:05 UTC (rev 313428)
+++ PKGBUILD2017-12-20 21:37:10 UTC (rev 313429)
@@ -6,8 +6,8 @@
 pkgbase=linux-zen   # Build -zen kernel
 #pkgbase=linux-custom   # Build kernel with a different name
 _srcname=linux-4.14
-_zenpatch=zen-4.14.7-7d1aea1343a1e06076276fd1717a70091f270dbf.diff
-pkgver=4.14.7
+_zenpatch=zen-4.14.8-1a3f4eedebb2201209a8730fcc2c60763511fa11.diff
+pkgver=4.14.8
 pkgrel=1
 arch=('x86_64')
 url="https://github.com/zen-kernel/zen-kernel;
@@ -33,9 +33,9 @@
 )
 sha256sums=('f81d59477e90a130857ce18dc02f4fbe5725854911db1e7ba770c7cd350f96a7'
 'SKIP'
-'5c286695439b4a1a2c7a112cf41aae0441b03ef41dfe83a0d61161c16dc265f5'
+'42eaed731b716244514b765c199e8f675d79287d7630e5c2911053ad52a1fa0a'
 'SKIP'
-'3c064716f45209e878d906e0a351d7aecfc5e04e6a3f9c1922116c31d2b28bb5'
+'8899318140aaffccfd65fb1bf48286028cc6e482e5ed19510b7ded09d5e735fe'
 'SKIP'
 '27bb76a8e29467c5473a44317a8cc64f605ab0fdab17fdd754e7538f082ff6eb'
 'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21'


[arch-commits] Commit in eclipse/trunk (PKGBUILD commonify eclipse.desktop eclipse.sh)

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 21:05:01
  Author: heftig
Revision: 313427

4.7.2-1

Modified:
  eclipse/trunk/PKGBUILD
  eclipse/trunk/commonify
Deleted:
  eclipse/trunk/eclipse.desktop
  eclipse/trunk/eclipse.sh

-+
 PKGBUILD|   70 +
 commonify   |  102 +++---
 eclipse.desktop |9 
 eclipse.sh  |3 -
 4 files changed, 100 insertions(+), 84 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 20:54:35 UTC (rev 313426)
+++ PKGBUILD2017-12-20 21:05:01 UTC (rev 313427)
@@ -8,9 +8,9 @@
 
 pkgbase=eclipse
 pkgname=(eclipse-{common,java,jee,cpp,php,javascript})
-pkgver=4.7.1.a
+pkgver=4.7.2
 pkgrel=1
-_release=oxygen-1a
+_release=oxygen-2
 pkgdesc="Highly extensible IDE"
 license=(EPL)
 arch=(x86_64)
@@ -17,54 +17,35 @@
 url="https://eclipse.org;
 makedepends=(python3)
 options=(!emptydirs)
-source=(commonify eclipse.sh eclipse.desktop)
-source_i686=()
-source_x86_64=()
+source=(commonify)
 noextract=()
 
 for _pkg in ${pkgname[@]}; do
   [[ $_pkg == 'eclipse-common' ]] && continue
-  
source_i686+=(http://ftp-stud.fht-esslingen.de/pub/Mirrors/eclipse/technology/epp/downloads/release/${_release/-//}/$_pkg-$_release-linux-gtk.tar.gz)
-  
source_x86_64+=(http://ftp-stud.fht-esslingen.de/pub/Mirrors/eclipse/technology/epp/downloads/release/${_release/-//}/$_pkg-$_release-linux-gtk-x86_64.tar.gz)
-  noextract+=($_pkg-$_release-linux-gtk{,-x86_64}.tar.gz)
+  
source+=(http://ftp-stud.fht-esslingen.de/pub/Mirrors/eclipse/technology/epp/downloads/release/${_release/-//}/$_pkg-$_release-linux-gtk-x86_64.tar.gz)
+  noextract+=($_pkg-$_release-linux-gtk-x86_64.tar.gz)
   eval "package_$_pkg() { _package $_pkg; }"
 done
 
-sha256sums=('9e5573f7b951774be3f98c69f9d391ddafbe8a3a727ce81c08dfd67d42cee503'
-'04e789fb695d5f95d09ddb994ae30397b39aee35f11997465dd91d129c41b2ed'
-'57559c2548ae463089acb3c2825ebc002ed83067ddc953b23d36a7b5a02deaf3')
-sha256sums_i686=('9ffb8980f1f5e68ee6779c9f02376040ace2dec76d8be6407e0d2c77c1c3100b'
- 
'9752f15435a417c03bb75313ee94a4dc3b35adcdd300af055a6f7aa9311225a5'
- 
'eb8462e778034dd4c8e5fcb538d271300730fd7584fe7c2c5e2d53541ee453c8'
- 
'ac6d167124aaad5fb8629802ce5e7acfa57848fc5c7854d068ecd9cd19719ca8'
- 
'65a536d0ce3b41a0c8471167085757eee49b4ebeb04b68929af6475ac465aa5b')
-sha256sums_x86_64=('f1b8205abec2dc9cc769941fbde96bb83007050841d7f094dcb3cb07b1696446'
-   
'7c6bf1640c2ed9db3717cf2c65cecd5f18c3736b46151caa09cd28397516f08b'
-   
'a155afe0b305a1206efb463123f68f48be3900e694f4c7fffa0643e1424511cf'
-   
'6b90524ec4f075ed382f14c598c817df1764f31bebbf4b1ba9bdd4056033eaf3'
-   
'af546dd94f7376dced761970ab0a0f31508fc0ec06e51282a02f5df96748918c')
+sha256sums=('da1eaf6239cb0c2b5009cd8c261e96e7b17a7536b12fe60fcb1e903f5e67dbdc'
+'96cea8ab8ce6873d254054766f34a0b4cbdbe70c43d30148c49ee2d7917cc32f'
+'e35f2bc01e6e3db89e29840bd8c4cd105aec583a0177917e8455a16ff39aeb62'
+'30e1b431c5e5ca82a72fe3f35e1b311af75671b04d0bd3120b848673325dec10'
+'5e8c0da6b2438db8b4df546a3e1ebfa03bb6ee065b9323bfa99467782bbaf3f4'
+'9a099b141421d09ae50ca469d162b3e2a41134a8bd7985fd4d28f284ba29757e')
 
 prepare() {
-  mkdir eclipse-common
-
   for _pkg in ${pkgname[@]}; do
-[[ $_pkg == 'eclipse-common' ]] && continue
-
-if [[ $CARCH == x86_64 ]]; then
-  bsdtar -xf "$_pkg-$_release-linux-gtk-x86_64.tar.gz"
-else
-  bsdtar -xf "$_pkg-$_release-linux-gtk.tar.gz"
-fi
-
-mv eclipse $_pkg
+mkdir $_pkg
+[[ $_pkg == eclipse-common ]] && continue
+bsdtar -xf "$_pkg-$_release-linux-gtk-x86_64.tar.gz" -C $_pkg 
--strip-components 1
   done
 }
 
 build() {
+  mkdir eclipse-common/dropins
+  touch eclipse-common/dropins/.keep
   ./commonify --identical ${pkgname[@]}
-
-  mkdir -p eclipse-common/dropins
-  touch eclipse-common/dropins/.keep
 }
 
 package_eclipse-common() {
@@ -74,9 +55,24 @@
   install -d "$pkgdir/usr/lib"
   cp -a eclipse-common "$pkgdir/usr/lib/eclipse"
 
-  install -D eclipse.sh "$pkgdir/usr/bin/eclipse"
-  install -Dm644 eclipse.desktop 
"$pkgdir/usr/share/applications/eclipse.desktop"
+  install -D /dev/stdin "$pkgdir/usr/bin/eclipse" <

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

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 20:54:35
  Author: heftig
Revision: 313426

archrelease: copy trunk to extra-x86_64

Added:
  harfbuzz/repos/extra-x86_64/PKGBUILD
(from rev 313425, harfbuzz/trunk/PKGBUILD)
Deleted:
  harfbuzz/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-20 20:53:53 UTC (rev 313425)
+++ PKGBUILD2017-12-20 20:54:35 UTC (rev 313426)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgbase=(harfbuzz)
-pkgname=(harfbuzz harfbuzz-icu)
-pkgver=1.7.3
-pkgrel=1
-pkgdesc="OpenType text shaping engine"
-url="http://www.freedesktop.org/wiki/Software/HarfBuzz;
-arch=(x86_64)
-license=(MIT)
-makedepends=(glib2 freetype2 graphite cairo icu gobject-introspection gtk-doc 
ragel git
- python)
-_commit=b5bbb791d32467b91caf6f1bf7ccee7cb2ca8c52  # tags/1.7.3^0
-source=("git+https://anongit.freedesktop.org/git/harfbuzz#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgbase
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgbase
-  ./configure \
---prefix=/usr \
---with-cairo \
---with-freetype \
---with-glib \
---with-gobject \
---with-graphite2 \
---with-icu \
---enable-gtk-doc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd $pkgbase
-  make check
-}
-
-package_harfbuzz() {
-  depends=(glib2 freetype2 graphite)
-  optdepends=('cairo: hb-view program')
-
-  cd $pkgbase
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/harfbuzz/COPYING"
-
-# Split harfbuzz-icu
-  mkdir -p ../hb-icu/usr/{include/harfbuzz,lib/pkgconfig}; cd ../hb-icu
-  mv "$pkgdir"/usr/lib/libharfbuzz-icu* ./usr/lib
-  mv "$pkgdir"/usr/lib/pkgconfig/harfbuzz-icu.pc ./usr/lib/pkgconfig
-  mv "$pkgdir"/usr/include/harfbuzz/hb-icu.h ./usr/include/harfbuzz
-}
-
-package_harfbuzz-icu() {
-  pkgdesc="$pkgdesc (ICU integration)"
-  depends=(harfbuzz icu)
-
-  mv hb-icu/* "$pkgdir"
-
-  install -Dm644 $pkgbase/COPYING 
"$pkgdir/usr/share/licenses/harfbuzz-icu/COPYING"
-}

Copied: harfbuzz/repos/extra-x86_64/PKGBUILD (from rev 313425, 
harfbuzz/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-20 20:54:35 UTC (rev 313426)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=(harfbuzz)
+pkgname=(harfbuzz harfbuzz-icu)
+pkgver=1.7.4
+pkgrel=1
+pkgdesc="OpenType text shaping engine"
+url="http://www.freedesktop.org/wiki/Software/HarfBuzz;
+arch=(x86_64)
+license=(MIT)
+makedepends=(glib2 freetype2 graphite cairo icu gobject-introspection gtk-doc 
ragel git
+ python)
+_commit=007a2a4317227b8fb4c764c590203c85fc3da5fd  # tags/1.7.4^0
+source=("git+https://anongit.freedesktop.org/git/harfbuzz#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgbase
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgbase
+  ./configure \
+--prefix=/usr \
+--with-cairo \
+--with-freetype \
+--with-glib \
+--with-gobject \
+--with-graphite2 \
+--with-icu \
+--enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd $pkgbase
+  make check
+}
+
+package_harfbuzz() {
+  depends=(glib2 freetype2 graphite)
+  optdepends=('cairo: hb-view program')
+
+  cd $pkgbase
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/harfbuzz/COPYING"
+
+# Split harfbuzz-icu
+  mkdir -p ../hb-icu/usr/{include/harfbuzz,lib/pkgconfig}; cd ../hb-icu
+  mv "$pkgdir"/usr/lib/libharfbuzz-icu* ./usr/lib
+  mv "$pkgdir"/usr/lib/pkgconfig/harfbuzz-icu.pc ./usr/lib/pkgconfig
+  mv "$pkgdir"/usr/include/harfbuzz/hb-icu.h ./usr/include/harfbuzz
+}
+
+package_harfbuzz-icu() {
+  pkgdesc="$pkgdesc (ICU integration)"
+  depends=(harfbuzz icu)
+
+  mv hb-icu/* "$pkgdir"
+
+  install -Dm644 $pkgbase/COPYING 
"$pkgdir/usr/share/licenses/harfbuzz-icu/COPYING"
+}


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

2017-12-20 Thread Jan Steffens via arch-commits
Date: Wednesday, December 20, 2017 @ 20:53:53
  Author: heftig
Revision: 313425

1.7.4-1

Modified:
  harfbuzz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 20:26:43 UTC (rev 313424)
+++ PKGBUILD2017-12-20 20:53:53 UTC (rev 313425)
@@ -3,7 +3,7 @@
 
 pkgbase=(harfbuzz)
 pkgname=(harfbuzz harfbuzz-icu)
-pkgver=1.7.3
+pkgver=1.7.4
 pkgrel=1
 pkgdesc="OpenType text shaping engine"
 url="http://www.freedesktop.org/wiki/Software/HarfBuzz;
@@ -11,7 +11,7 @@
 license=(MIT)
 makedepends=(glib2 freetype2 graphite cairo icu gobject-introspection gtk-doc 
ragel git
  python)
-_commit=b5bbb791d32467b91caf6f1bf7ccee7cb2ca8c52  # tags/1.7.3^0
+_commit=007a2a4317227b8fb4c764c590203c85fc3da5fd  # tags/1.7.4^0
 source=("git+https://anongit.freedesktop.org/git/harfbuzz#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2017-12-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, December 20, 2017 @ 20:45:20
  Author: arojas
Revision: 275077

Rebuild old package, use gitlab sources

Modified:
  mcqd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 20:41:03 UTC (rev 275076)
+++ PKGBUILD2017-12-20 20:45:20 UTC (rev 275077)
@@ -2,24 +2,24 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=mcqd
-pkgver=1.0
-pkgrel=3
+pkgver=1.0.0
+pkgrel=1
 pkgdesc="Maximum Clique Algorithm for finding a maximum clique in an 
undirected graph"
-arch=('x86_64')
+arch=(x86_64)
 url="http://www.sicmm.org/~konc/maxclique/;
-license=('GPL3')
-depends=('gcc-libs')
-source=("http://www.sicmm.org/~konc/maxclique/mcqd.zip;)
-md5sums=('356d9f3312bc5f15fb9d893990011c6e')
+license=(GPL3)
+depends=(gcc-libs)
+source=("https://gitlab.com/janezkonc/mcqd/repository/v$pkgver/archive.tar.gz;)
+sha256sums=('292931d9c302099d4f00e8cac1af9197f1fb8807cdef922fede525a6e8a49184')
 
 build() {
-  cd $pkgname
+  cd $pkgname-v$pkgver-*
 
   g++ -O3 mcqd.cpp -o mcqd
 }
 
 package() {
-  cd $pkgname
+  cd $pkgname-v$pkgver-*
 
   install -Dm755 mcqd "$pkgdir"/usr/bin/mcqd
   install -Dm644 mcqd.h "$pkgdir"/usr/include/mcqd.h


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

2017-12-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, December 20, 2017 @ 20:45:44
  Author: arojas
Revision: 275078

archrelease: copy trunk to community-x86_64

Added:
  mcqd/repos/community-x86_64/PKGBUILD
(from rev 275077, mcqd/trunk/PKGBUILD)
Deleted:
  mcqd/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-20 20:45:20 UTC (rev 275077)
+++ PKGBUILD2017-12-20 20:45:44 UTC (rev 275078)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=mcqd
-pkgver=1.0
-pkgrel=3
-pkgdesc="Maximum Clique Algorithm for finding a maximum clique in an 
undirected graph"
-arch=('i686' 'x86_64')
-url="http://www.sicmm.org/~konc/maxclique/;
-license=('GPL3')
-depends=('gcc-libs')
-source=("http://www.sicmm.org/~konc/maxclique/mcqd.zip;)
-md5sums=('356d9f3312bc5f15fb9d893990011c6e')
-
-build() {
-  cd $pkgname
-
-  g++ -O3 mcqd.cpp -o mcqd
-}
-
-package() {
-  cd $pkgname
-
-  install -Dm755 mcqd "$pkgdir"/usr/bin/mcqd
-  install -Dm644 mcqd.h "$pkgdir"/usr/include/mcqd.h
-  install -D COPYING "$pkgdir"/usr/share/licenses/mcqd/COPYING
-}
-

Copied: mcqd/repos/community-x86_64/PKGBUILD (from rev 275077, 
mcqd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-20 20:45:44 UTC (rev 275078)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=mcqd
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="Maximum Clique Algorithm for finding a maximum clique in an 
undirected graph"
+arch=(x86_64)
+url="http://www.sicmm.org/~konc/maxclique/;
+license=(GPL3)
+depends=(gcc-libs)
+source=("https://gitlab.com/janezkonc/mcqd/repository/v$pkgver/archive.tar.gz;)
+sha256sums=('292931d9c302099d4f00e8cac1af9197f1fb8807cdef922fede525a6e8a49184')
+
+build() {
+  cd $pkgname-v$pkgver-*
+
+  g++ -O3 mcqd.cpp -o mcqd
+}
+
+package() {
+  cd $pkgname-v$pkgver-*
+
+  install -Dm755 mcqd "$pkgdir"/usr/bin/mcqd
+  install -Dm644 mcqd.h "$pkgdir"/usr/include/mcqd.h
+  install -D COPYING "$pkgdir"/usr/share/licenses/mcqd/COPYING
+}
+


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

2017-12-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, December 20, 2017 @ 20:41:03
  Author: arojas
Revision: 275076

archrelease: copy trunk to community-x86_64

Added:
  benzene/repos/community-x86_64/PKGBUILD
(from rev 275075, benzene/trunk/PKGBUILD)
Deleted:
  benzene/repos/community-x86_64/Makefile.patch
  benzene/repos/community-x86_64/PKGBUILD

+
 Makefile.patch |   20 ---
 PKGBUILD   |   57 +++
 2 files changed, 24 insertions(+), 53 deletions(-)

Deleted: Makefile.patch
===
--- Makefile.patch  2017-12-20 20:40:15 UTC (rev 275075)
+++ Makefile.patch  2017-12-20 20:41:03 UTC (rev 275076)
@@ -1,20 +0,0 @@
 grinvin-1.2.2/nonjava/Makefile.incl.tmpl.orig  2015-01-22 
21:46:11.188829593 +0100
-+++ grinvin-1.2.2/nonjava/Makefile.incl.tmpl   2015-01-22 21:46:29.078893693 
+0100
-@@ -37,14 +37,14 @@
- 
- # Which distributions to build on which OS
- 
--#TARGETS=for-linux-on-linux
--TARGETS=for-linux-on-linux for-win32-on-linux
-+TARGETS=for-linux-on-linux
-+#TARGETS=for-linux-on-linux for-win32-on-linux
- #TARGETS=for-osx-on-osx for-linux-on-osx for-win32-on-osx
- 
- # Locations of the executables
- 
- # typical linux situation:
--WIN-GCC=/usr/bin/i586-mingw32msvc-gcc
-+#WIN-GCC=/usr/bin/i586-mingw32msvc-gcc
- 
- # typical osx situation
- #LIN-GCC=/usr/local/i386-linux-4.1.1/bin/i386-linux-gcc

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-20 20:40:15 UTC (rev 275075)
+++ PKGBUILD2017-12-20 20:41:03 UTC (rev 275076)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=benzene
-pkgver=1.2.2
-pkgrel=1
-pkgdesc="A program for the efficient generation of all nonisomorphic fusenes 
and benzenoids with a given number of faces"
-arch=('i686' 'x86_64')
-url="http://www.grinvin.org/;
-license=('GPL2')
-depends=('glibc')
-source=("http://downloads.grinvin.org/modules/grinvin-dist/grinvin-$pkgver-src.tar.gz;
 'Makefile.patch')
-md5sums=('61ccb62cc741068adaa6c2d8cc8fa8ae'
- '2fecb6542ba4e7fc04a6afa232d6a5e8')
-
-prepare() {
-  patch -p0 -i "$srcdir"/Makefile.patch
-}
-
-build() {
-  cd grinvin-$pkgver/nonjava
-
-  mv Makefile.incl.tmpl Makefile.incl
-  make
-}
-
-package() {
-  cd grinvin-$pkgver/build/linux
-
-  mkdir -p "$pkgdir"/usr/bin
-  cp $pkgname "$pkgdir"/usr/bin/
-}
-

Copied: benzene/repos/community-x86_64/PKGBUILD (from rev 275075, 
benzene/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-20 20:41:03 UTC (rev 275076)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=benzene
+pkgver=20130630
+pkgrel=1
+pkgdesc="A program for the efficient generation of all nonisomorphic fusenes 
and benzenoids with a given number of faces"
+arch=(x86_64)
+url="http://www.grinvin.org/;
+license=(GPL2)
+depends=(glibc)
+source=("http://mirrors.mit.edu/sage/spkg/upstream/benzene/$pkgname-$pkgver.tar.bz2;)
+sha256sums=('63e8662672a007f5b2a727df0ab0e38825c65229fd1060fbf5b5d87b3301e9c6')
+
+build() {
+  cd src
+  make
+}
+
+package() {
+  mkdir -p "$pkgdir"/usr/bin
+  cp src/$pkgname "$pkgdir"/usr/bin/
+}
+


[arch-commits] Commit in benzene/trunk (Makefile.patch PKGBUILD)

2017-12-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, December 20, 2017 @ 20:40:15
  Author: arojas
Revision: 275075

Use sagemath sources

Modified:
  benzene/trunk/PKGBUILD
Deleted:
  benzene/trunk/Makefile.patch

+
 Makefile.patch |   20 
 PKGBUILD   |   25 -
 2 files changed, 8 insertions(+), 37 deletions(-)

Deleted: Makefile.patch
===
--- Makefile.patch  2017-12-20 20:29:45 UTC (rev 275074)
+++ Makefile.patch  2017-12-20 20:40:15 UTC (rev 275075)
@@ -1,20 +0,0 @@
 grinvin-1.2.2/nonjava/Makefile.incl.tmpl.orig  2015-01-22 
21:46:11.188829593 +0100
-+++ grinvin-1.2.2/nonjava/Makefile.incl.tmpl   2015-01-22 21:46:29.078893693 
+0100
-@@ -37,14 +37,14 @@
- 
- # Which distributions to build on which OS
- 
--#TARGETS=for-linux-on-linux
--TARGETS=for-linux-on-linux for-win32-on-linux
-+TARGETS=for-linux-on-linux
-+#TARGETS=for-linux-on-linux for-win32-on-linux
- #TARGETS=for-osx-on-osx for-linux-on-osx for-win32-on-osx
- 
- # Locations of the executables
- 
- # typical linux situation:
--WIN-GCC=/usr/bin/i586-mingw32msvc-gcc
-+#WIN-GCC=/usr/bin/i586-mingw32msvc-gcc
- 
- # typical osx situation
- #LIN-GCC=/usr/local/i386-linux-4.1.1/bin/i386-linux-gcc

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 20:29:45 UTC (rev 275074)
+++ PKGBUILD2017-12-20 20:40:15 UTC (rev 275075)
@@ -2,32 +2,23 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=benzene
-pkgver=1.2.2
+pkgver=20130630
 pkgrel=1
 pkgdesc="A program for the efficient generation of all nonisomorphic fusenes 
and benzenoids with a given number of faces"
-arch=('x86_64')
+arch=(x86_64)
 url="http://www.grinvin.org/;
-license=('GPL2')
-depends=('glibc')
-source=("http://downloads.grinvin.org/modules/grinvin-dist/grinvin-$pkgver-src.tar.gz;
 'Makefile.patch')
-md5sums=('61ccb62cc741068adaa6c2d8cc8fa8ae'
- '2fecb6542ba4e7fc04a6afa232d6a5e8')
+license=(GPL2)
+depends=(glibc)
+source=("http://mirrors.mit.edu/sage/spkg/upstream/benzene/$pkgname-$pkgver.tar.bz2;)
+sha256sums=('63e8662672a007f5b2a727df0ab0e38825c65229fd1060fbf5b5d87b3301e9c6')
 
-prepare() {
-  patch -p0 -i "$srcdir"/Makefile.patch
-}
-
 build() {
-  cd grinvin-$pkgver/nonjava
-
-  mv Makefile.incl.tmpl Makefile.incl
+  cd src
   make
 }
 
 package() {
-  cd grinvin-$pkgver/build/linux
-
   mkdir -p "$pkgdir"/usr/bin
-  cp $pkgname "$pkgdir"/usr/bin/
+  cp src/$pkgname "$pkgdir"/usr/bin/
 }
 


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

2017-12-20 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, December 20, 2017 @ 20:29:11
  Author: bisson
Revision: 275073

upstream update

Modified:
  sthttpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 20:28:30 UTC (rev 275072)
+++ PKGBUILD2017-12-20 20:29:11 UTC (rev 275073)
@@ -4,23 +4,22 @@
 # Contributor: Stewart Starbuck 
 
 pkgname=sthttpd
-pkgver=2.27.0
-pkgrel=3
+pkgver=2.27.1
+pkgrel=1
 pkgdesc='Supported fork of the thttpd web server'
-url='http://opensource.dyc.edu/sthttpd'
+url='https://github.com/blueness/sthttpd'
 license=('custom:BSD')
 arch=('x86_64')
 backup=('etc/thttpd.conf')
 validpgpkeys=('1FEDFAD9D82C52A53BABDC799384FA6EF52D4BBA')
-# opensource.dyc.edu does not resolve as of 2017-03-01
-source=("http://opensource.dyc.edu/pub/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.asc}
+source=("https://github.com/blueness/sthttpd/archive/v2.27.1.tar.gz;
 'discreet.patch'
 'service'
 'config')
-sha1sums=('27ea739c4e3c7922979c4357a80fe6d141da4356' 'SKIP'
-  'ae0143fce29cf7eb84ebbee9640b9a2c977b5093'
-  '73bd76de0e89a9cc31e5605659837d83b3c8dfde'
-  '8d4bf91b5f469bcc390c144460e3b155692d64d5')
+sha256sums=('a1ee2806432eaf5b5dd267a0523701f9f1fa00fefd499d5bec42165a41e05846'
+'be953777f2b5b860f1c5a8c96d8478535fe517d76bd4b76597d743a96c2659cf'
+'6fea42a6876e2a44eff4f76ed64befabe400e5c844b11b782b1507299e5eb986'
+'1f42c7625422944bd035731d264a711f50b47f4e4f58b6c67693f09fabb76350')
 
 conflicts=('thttpd')
 provides=('thttpd')
@@ -28,8 +27,8 @@
 
 prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
-   aclocal && automake --add-missing
patch -p1 -i ../discreet.patch
+   ./autogen.sh
 }
 
 build() {
@@ -51,7 +50,7 @@
 
install -Dm644 ../config "${pkgdir}"/etc/thttpd.conf
install -Dm644 ../service 
"${pkgdir}"/usr/lib/systemd/system/thttpd.service
-   install -Dm644 README "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+   install -Dm644 README.md 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 
# Avoid conflicts with Apache
mv "${pkgdir}"/usr/bin/htpasswd{,-thttpd}


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

2017-12-20 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, December 20, 2017 @ 20:29:45
  Author: bisson
Revision: 275074

archrelease: copy trunk to community-x86_64

Added:
  sthttpd/repos/community-x86_64/PKGBUILD
(from rev 275073, sthttpd/trunk/PKGBUILD)
  sthttpd/repos/community-x86_64/config
(from rev 275073, sthttpd/trunk/config)
  sthttpd/repos/community-x86_64/discreet.patch
(from rev 275073, sthttpd/trunk/discreet.patch)
  sthttpd/repos/community-x86_64/service
(from rev 275073, sthttpd/trunk/service)
Deleted:
  sthttpd/repos/community-x86_64/PKGBUILD
  sthttpd/repos/community-x86_64/config
  sthttpd/repos/community-x86_64/discreet.patch
  sthttpd/repos/community-x86_64/service

+
 PKGBUILD   |  116 +++
 config |   11 ++---
 discreet.patch |   68 
 service|   20 -
 4 files changed, 108 insertions(+), 107 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-20 20:29:11 UTC (rev 275073)
+++ PKGBUILD2017-12-20 20:29:45 UTC (rev 275074)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Damir Perisa 
-# Contributor: Stewart Starbuck 
-
-pkgname=sthttpd
-pkgver=2.27.0
-pkgrel=3
-pkgdesc='Supported fork of the thttpd web server'
-url='http://opensource.dyc.edu/sthttpd'
-license=('custom:BSD')
-arch=('i686' 'x86_64')
-backup=('etc/thttpd.conf')
-validpgpkeys=('1FEDFAD9D82C52A53BABDC799384FA6EF52D4BBA')
-source=("http://opensource.dyc.edu/pub/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.asc}
-'discreet.patch'
-'service'
-'config')
-sha1sums=('27ea739c4e3c7922979c4357a80fe6d141da4356' 'SKIP'
-  'ae0143fce29cf7eb84ebbee9640b9a2c977b5093'
-  '73bd76de0e89a9cc31e5605659837d83b3c8dfde'
-  '4e2d1f714a68fadc2ae8fd6ba6b826c4785a77fd')
-
-conflicts=('thttpd')
-provides=('thttpd')
-replaces=('thttpd')
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   aclocal && automake --add-missing
-   patch -p1 -i ../discreet.patch
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   export WEBDIR=/srv/http
-   export WEBGROUP=http
-   ./configure \
-   --prefix=/usr \
-   --sbindir=/usr/bin \
-   --mandir=/usr/share/man \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   rm -fr "${pkgdir}"/srv
-
-   install -Dm644 ../config "${pkgdir}"/etc/thttpd.conf
-   install -Dm644 ../service 
"${pkgdir}"/usr/lib/systemd/system/thttpd.service
-   install -Dm644 README "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-   # Avoid conflicts with Apache
-   mv "${pkgdir}"/usr/bin/htpasswd{,-thttpd}
-   mv "${pkgdir}"/usr/share/man/man1/htpasswd{,-thttpd}.1
-}

Copied: sthttpd/repos/community-x86_64/PKGBUILD (from rev 275073, 
sthttpd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-20 20:29:45 UTC (rev 275074)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Damir Perisa 
+# Contributor: Stewart Starbuck 
+
+pkgname=sthttpd
+pkgver=2.27.1
+pkgrel=1
+pkgdesc='Supported fork of the thttpd web server'
+url='https://github.com/blueness/sthttpd'
+license=('custom:BSD')
+arch=('x86_64')
+backup=('etc/thttpd.conf')
+validpgpkeys=('1FEDFAD9D82C52A53BABDC799384FA6EF52D4BBA')
+source=("https://github.com/blueness/sthttpd/archive/v2.27.1.tar.gz;
+'discreet.patch'
+'service'
+'config')
+sha256sums=('a1ee2806432eaf5b5dd267a0523701f9f1fa00fefd499d5bec42165a41e05846'
+'be953777f2b5b860f1c5a8c96d8478535fe517d76bd4b76597d743a96c2659cf'
+'6fea42a6876e2a44eff4f76ed64befabe400e5c844b11b782b1507299e5eb986'
+'1f42c7625422944bd035731d264a711f50b47f4e4f58b6c67693f09fabb76350')
+
+conflicts=('thttpd')
+provides=('thttpd')
+replaces=('thttpd')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p1 -i ../discreet.patch
+   ./autogen.sh
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export WEBDIR=/srv/http
+   export WEBGROUP=http
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --mandir=/usr/share/man \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   rm -fr "${pkgdir}"/srv
+
+   install -Dm644 ../config "${pkgdir}"/etc/thttpd.conf
+   install -Dm644 ../service 
"${pkgdir}"/usr/lib/systemd/system/thttpd.service
+   install -Dm644 README.md 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+   # Avoid 

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

2017-12-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, December 20, 2017 @ 20:28:30
  Author: arojas
Revision: 275072

Fix source

Modified:
  cddlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 20:04:18 UTC (rev 275071)
+++ PKGBUILD2017-12-20 20:28:30 UTC (rev 275072)
@@ -6,14 +6,14 @@
 pkgver=094h
 pkgrel=2
 pkgdesc="C library implementing Doudble Description Method for convex 
polyhedra"
-arch=('x86_64')
-url="http://www.ifor.math.ethz.ch/~fukuda/cdd_home/cdd.html;
-license=('GPL')
-depends=('gmp')
-source=("ftp://ftp.ifor.math.ethz.ch/pub/fukuda/cdd/$pkgname-$pkgver.tar.gz; 
'cdd_both_reps.c' 'cdd_both_reps.patch')
-md5sums=('1467d270860bbcb26d3ebae424690e7c'
- 'c80ebe354f615144de14c826cadc3bf6'
- '84c7d505ffd46524ffc8ab2de1c5713d')
+arch=(x86_64)
+url="https://www.inf.ethz.ch/personal/fukudak/cdd_home/;
+license=(GPL)
+depends=(gmp)
+source=("ftp://ftp.math.ethz.ch/users/fukudak/cdd/cddlib-$pkgver.tar.gz; 
cdd_both_reps.c cdd_both_reps.patch)
+sha256sums=('fe6d04d494683cd451be5f6fe785e147f24e8ce3ef7387f048e739ceb4565ab5'
+'f7cba3957d5d8198d07de5b64f40936da9914bc0a8040eca7ef01d66cd2d2377'
+'ec750d791829f3124787e2d4a376ff8316e179600505fee5513ca0e3320535d2')
 
 prepare() {
   cd $pkgname-$pkgver


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

2017-12-20 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, December 20, 2017 @ 20:26:43
  Author: bisson
Revision: 313424

archrelease: copy trunk to extra-x86_64

Added:
  graphviz/repos/extra-x86_64/PKGBUILD
(from rev 313423, graphviz/trunk/PKGBUILD)
  graphviz/repos/extra-x86_64/ghostscript918.patch
(from rev 313423, graphviz/trunk/ghostscript918.patch)
  graphviz/repos/extra-x86_64/install
(from rev 313423, graphviz/trunk/install)
Deleted:
  graphviz/repos/extra-x86_64/PKGBUILD
  graphviz/repos/extra-x86_64/ghostscript918.patch
  graphviz/repos/extra-x86_64/install

--+
 PKGBUILD |  114 -
 ghostscript918.patch |   36 +++
 install  |   24 +-
 3 files changed, 87 insertions(+), 87 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-20 20:26:07 UTC (rev 313423)
+++ PKGBUILD2017-12-20 20:26:43 UTC (rev 313424)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: kevin 
-# Contributor: John Proctor 
-
-pkgname=graphviz
-pkgver=2.40.1
-pkgrel=9
-pkgdesc='Graph visualization software'
-url='http://www.graphviz.org/'
-license=('CPL')
-arch=('i686' 'x86_64')
-depends=('libltdl' 'gd' 'librsvg' 'libxaw' 'ghostscript' 'pango' 'gts' 
'gsfonts')
-makedepends=('swig' 'mono' 'guile' 'lua' 'ocaml' 'perl' 'python2' 'r' 'tk' 
'qt4' 'gtk2')
-optdepends=('mono: sharp bindings'
-'guile: guile bindings'
-'lua: lua bindings'
-'ocaml: ocaml bindings'
-'perl: perl bindings'
-'python2: python bindings'
-'r: r bindings'
-'tcl: tcl bindings'
-'qt4: gvedit'
-'gtk2: gtk output plugin'
-'xterm: vimdot')
-
-# http://www.graphviz.org/Download_source.php
-source=("${url}/pub/${pkgname}/stable/SOURCES/${pkgname}-${pkgver}.tar.gz"
-'ghostscript918.patch')
-sha256sums=('ca5218fade0204d59947126c38439f432853543b0818d9d728c589dfe7f3a421'
-'0083d126e27f2223ec4226fc1d71c9c84106968a0fdf65de838aee1e4882bfdb')
-
-install=install
-
-prepare() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   patch -p1 -i ../ghostscript918.patch
-}
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   export PYTHON=python2
-   export LIBPOSTFIX=/
-
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-
-   # Deduplicates TCL libraries
-   cd "${pkgdir}/usr/lib/tcl8.6"
-   rm -fr graphviz
-   ln -s ../graphviz/tcl graphviz
-}

Copied: graphviz/repos/extra-x86_64/PKGBUILD (from rev 313423, 
graphviz/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-20 20:26:43 UTC (rev 313424)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: kevin 
+# Contributor: John Proctor 
+
+pkgname=graphviz
+pkgver=2.40.1
+pkgrel=10
+pkgdesc='Graph visualization software'
+url='http://www.graphviz.org/'
+license=('CPL')
+arch=('x86_64')
+depends=('libltdl' 'gd' 'librsvg' 'libxaw' 'ghostscript' 'pango' 'gts' 
'gsfonts')
+makedepends=('swig' 'mono' 'guile' 'lua' 'ocaml' 'perl' 'python2' 'r' 'tk' 
'qt4' 'gtk2')
+optdepends=('mono: sharp bindings'
+'guile: guile bindings'
+'lua: lua bindings'
+'ocaml: ocaml bindings'
+'perl: perl bindings'
+'python2: python bindings'
+'r: r bindings'
+'tcl: tcl bindings'
+'qt4: gvedit'
+'gtk2: gtk output plugin'
+'xterm: vimdot')
+
+# http://www.graphviz.org/Download_source.php
+source=("https://graphviz.gitlab.io/pub/graphviz/stable/SOURCES/graphviz.tar.gz;
+'ghostscript918.patch')
+sha256sums=('ca5218fade0204d59947126c38439f432853543b0818d9d728c589dfe7f3a421'
+'0083d126e27f2223ec4226fc1d71c9c84106968a0fdf65de838aee1e4882bfdb')
+
+install=install
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p1 -i ../ghostscript918.patch
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export PYTHON=python2
+   export LIBPOSTFIX=/
+
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+
+   # Deduplicates TCL libraries
+   cd "${pkgdir}/usr/lib/tcl8.6"
+   rm -fr graphviz
+   ln -s ../graphviz/tcl graphviz
+}

Deleted: ghostscript918.patch
===
--- ghostscript918.patch2017-12-20 20:26:07 UTC (rev 313423)
+++ ghostscript918.patch2017-12-20 20:26:43 UTC (rev 313424)
@@ -1,18 +0,0 @@
-diff -uprb 

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

2017-12-20 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, December 20, 2017 @ 20:26:07
  Author: bisson
Revision: 313423

free rebuild

Modified:
  graphviz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 20:22:45 UTC (rev 313422)
+++ PKGBUILD2017-12-20 20:26:07 UTC (rev 313423)
@@ -5,7 +5,7 @@
 
 pkgname=graphviz
 pkgver=2.40.1
-pkgrel=9
+pkgrel=10
 pkgdesc='Graph visualization software'
 url='http://www.graphviz.org/'
 license=('CPL')
@@ -27,7 +27,7 @@
 # http://www.graphviz.org/Download_source.php
 
source=("https://graphviz.gitlab.io/pub/graphviz/stable/SOURCES/graphviz.tar.gz;
 'ghostscript918.patch')
-sha256sums=('64ba7ea413a00900234a1b5e630b9e538ced024784a34673b306b034aa06bf57'
+sha256sums=('ca5218fade0204d59947126c38439f432853543b0818d9d728c589dfe7f3a421'
 '0083d126e27f2223ec4226fc1d71c9c84106968a0fdf65de838aee1e4882bfdb')
 
 install=install


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

2017-12-20 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, December 20, 2017 @ 20:22:45
  Author: bisson
Revision: 313422

archrelease: copy trunk to testing-x86_64

Added:
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 313421, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 313421, gnupg/trunk/install)

--+
 PKGBUILD |   67 +
 install  |   41 +
 2 files changed, 108 insertions(+)

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 313421, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-12-20 20:22:45 UTC (rev 313422)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.2.4
+pkgrel=1
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='http://www.gnupg.org/'
+license=('GPL')
+arch=('x86_64')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon')
+makedepends=('libldap' 'libusb-compat')
+checkdepends=('openssh')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha256sums=('401a3e64780fdfa6d7670de0880aa5c9d589b3db7a7098979d7606cec546f2ec'
+'SKIP')
+
+install=install
+
+conflicts=('dirmngr' 'gnupg2')
+provides=('dirmngr' "gnupg2=${pkgver}")
+replaces=('dirmngr' 'gnupg2')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg "${pkgdir}"/usr/bin/gpg2
+   ln -s gpgv "${pkgdir}"/usr/bin/gpgv2
+
+   cd doc/examples/systemd-user
+   for i in *.*; do
+   install -Dm644 "$i" "${pkgdir}/usr/lib/systemd/user/$i"
+   done
+}

Copied: gnupg/repos/testing-x86_64/install (from rev 313421, 
gnupg/trunk/install)
===
--- testing-x86_64/install  (rev 0)
+++ testing-x86_64/install  2017-12-20 20:22:45 UTC (rev 313422)
@@ -0,0 +1,41 @@
+_global_units() {
+   _units=(dirmngr.socket gpg-agent.socket 
gpg-agent-{browser,extra,ssh}.socket)
+   _dir=/etc/systemd/user/sockets.target.wants
+
+   case $1 in
+   enable)
+   mkdir -p $_dir
+   for _u in "${_units[@]}"; do
+   ln -sf /usr/lib/systemd/user/$_u $_dir/$_u
+   done
+   ;;
+   disable)
+   for _u in "${_units[@]}"; do
+   rm -f $_dir/$_u
+   done
+   rmdir -p --ignore-fail-on-non-empty $_dir
+   ;;
+   esac
+}
+
+post_install() {
+   # See FS#42798 and FS#47371
+   dirmngr /dev/null
+
+   # Let systemd supervise daemons by default
+   _global_units enable
+}
+
+post_upgrade() {
+   if (( $(vercmp $2 2.1.13-1) < 0 )); then
+   echo "==> Please kill running gpg-agent and dirmngr processes 
before using this release."
+   fi
+
+   if (( $(vercmp $2 2.1.21-3) < 0 )); then
+   _global_units enable
+   fi
+}
+
+pre_remove() {
+   _global_units disable
+}


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

2017-12-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, December 20, 2017 @ 20:17:47
  Author: arojas
Revision: 313421

archrelease: copy trunk to extra-x86_64

Added:
  kqtquickcharts/repos/extra-x86_64/PKGBUILD
(from rev 313420, kqtquickcharts/trunk/PKGBUILD)
Deleted:
  kqtquickcharts/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-20 20:16:41 UTC (rev 313420)
+++ PKGBUILD2017-12-20 20:17:47 UTC (rev 313421)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=kqtquickcharts
-pkgver=17.12.0
-pkgrel=1
-pkgdesc="A QtQuick plugin to render beautiful and interactive charts"
-url="https://edu.kde.org/;
-arch=(x86_64)
-license=(GPL LGPL FDL)
-depends=(qt5-declarative)
-makedepends=(extra-cmake-modules)
-source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('cf69acee4ebc7a747f48b9aaf09459e266205c6caddc47c2c37af7682d326e0b'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

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

Copied: kqtquickcharts/repos/extra-x86_64/PKGBUILD (from rev 313420, 
kqtquickcharts/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-20 20:17:47 UTC (rev 313421)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kqtquickcharts
+pkgver=17.12.0
+pkgrel=2
+pkgdesc="A QtQuick plugin to render beautiful and interactive charts"
+url="https://edu.kde.org/;
+arch=(x86_64)
+license=(GPL LGPL FDL)
+depends=(qt5-declarative)
+makedepends=(extra-cmake-modules)
+source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
+
kqtquickcharts-types.patch::"https://cgit.kde.org/kqtquickcharts.git/patch/?id=4e90e87e;)
+sha256sums=('cf69acee4ebc7a747f48b9aaf09459e266205c6caddc47c2c37af7682d326e0b'
+'SKIP'
+'00b36841d891537fd3b0d6ab6e33719f0806de8cb15109f2a04243074bc13d2d')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../kqtquickcharts-types.patch # Fix ktouch not loading with Qt 
5.10
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2017-12-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, December 20, 2017 @ 20:16:41
  Author: arojas
Revision: 313420

Fix ktouch not loading with Qt 5.10 (FS#56794)

Modified:
  kqtquickcharts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 20:16:35 UTC (rev 313419)
+++ PKGBUILD2017-12-20 20:16:41 UTC (rev 313420)
@@ -5,7 +5,7 @@
 
 pkgname=kqtquickcharts
 pkgver=17.12.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A QtQuick plugin to render beautiful and interactive charts"
 url="https://edu.kde.org/;
 arch=(x86_64)
@@ -12,14 +12,19 @@
 license=(GPL LGPL FDL)
 depends=(qt5-declarative)
 makedepends=(extra-cmake-modules)
-source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
+
kqtquickcharts-types.patch::"https://cgit.kde.org/kqtquickcharts.git/patch/?id=4e90e87e;)
 sha256sums=('cf69acee4ebc7a747f48b9aaf09459e266205c6caddc47c2c37af7682d326e0b'
-'SKIP')
+'SKIP'
+'00b36841d891537fd3b0d6ab6e33719f0806de8cb15109f2a04243074bc13d2d')
 validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

   F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

 
 prepare() {
   mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../kqtquickcharts-types.patch # Fix ktouch not loading with Qt 
5.10
 }
 
 build() {


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

2017-12-20 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, December 20, 2017 @ 20:16:35
  Author: bisson
Revision: 313419

update source url - not versionned, yay!

Modified:
  graphviz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 20:13:44 UTC (rev 313418)
+++ PKGBUILD2017-12-20 20:16:35 UTC (rev 313419)
@@ -25,9 +25,9 @@
 'xterm: vimdot')
 
 # http://www.graphviz.org/Download_source.php
-source=("${url}/pub/${pkgname}/stable/SOURCES/${pkgname}-${pkgver}.tar.gz"
+source=("https://graphviz.gitlab.io/pub/graphviz/stable/SOURCES/graphviz.tar.gz;
 'ghostscript918.patch')
-sha256sums=('ca5218fade0204d59947126c38439f432853543b0818d9d728c589dfe7f3a421'
+sha256sums=('64ba7ea413a00900234a1b5e630b9e538ced024784a34673b306b034aa06bf57'
 '0083d126e27f2223ec4226fc1d71c9c84106968a0fdf65de838aee1e4882bfdb')
 
 install=install


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

2017-12-20 Thread Gaëtan Bisson via arch-commits
Date: Wednesday, December 20, 2017 @ 20:13:44
  Author: bisson
Revision: 313418

upstream update

Modified:
  gnupg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 19:17:39 UTC (rev 313417)
+++ PKGBUILD2017-12-20 20:13:44 UTC (rev 313418)
@@ -5,7 +5,7 @@
 # Contributor: Judd Vinet 
 
 pkgname=gnupg
-pkgver=2.2.3
+pkgver=2.2.4
 pkgrel=1
 pkgdesc='Complete and free implementation of the OpenPGP standard'
 url='http://www.gnupg.org/'
@@ -22,7 +22,7 @@
   '031EC2536E580D8EA286A9F22071B08A33BD3F06'
   'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9')
 
source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
-sha256sums=('cbd37105d139f7aa74f92b6f65d136658682094b0e308666b820ae4b984084b4'
+sha256sums=('401a3e64780fdfa6d7670de0880aa5c9d589b3db7a7098979d7606cec546f2ec'
 'SKIP')
 
 install=install


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

2017-12-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, December 20, 2017 @ 20:04:18
  Author: arojas
Revision: 275071

archrelease: copy trunk to community-staging-x86_64

Added:
  gap/repos/community-staging-x86_64/
  gap/repos/community-staging-x86_64/PKGBUILD
(from rev 275070, gap/trunk/PKGBUILD)
  gap/repos/community-staging-x86_64/gap-no-packages-by-default.patch
(from rev 275070, gap/trunk/gap-no-packages-by-default.patch)
  gap/repos/community-staging-x86_64/gap-polymake-3.1.patch
(from rev 275070, gap/trunk/gap-polymake-3.1.patch)

--+
 PKGBUILD |  119 +
 gap-no-packages-by-default.patch |   13 +
 gap-polymake-3.1.patch   |  247 +
 3 files changed, 379 insertions(+)

Copied: gap/repos/community-staging-x86_64/PKGBUILD (from rev 275070, 
gap/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-12-20 20:04:18 UTC (rev 275071)
@@ -0,0 +1,119 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor:  TDY 
+# Contributor: Rémy Oudompheng 
+
+pkgbase=gap
+pkgname=(gap gap-data gap-doc gap-packages)
+pkgver=4.8.9
+_gapver=4r8p9_2017_12_18-23_44
+pkgrel=2
+pkgdesc="Groups, Algorithms, Programming: a system for computational discrete 
algebra"
+arch=(x86_64)
+url="https://www.gap-system.org/;
+license=(GPL)
+source=("https://www.gap-system.org/pub/gap/gap48/tar.gz/gap$_gapver.tar.gz; 
gap-no-packages-by-default.patch
+gap-polymake-3.1.patch)
+sha256sums=('944230a7c0c04c981ed67768854ab293e1536fe7b76c979f24cf00526bedaba2'
+'e8f19968d998172b7c289d0499b8b8a05bc31119a1ce073181d3842ece6fe3a2'
+'6d8d57a9947575a3f95e682172040618be3d6a144424496229ae4ec50c0ab4e9')
+makedepends=(libxaw openmpi givaro mpfi normaliz polymake boost c-xsc) # fplll
+
+prepare() {
+  cd gap4r8
+
+# Use system normaliz
+  sed -e '/build-normaliz.sh/d' -i bin/BuildPackages.sh
+# Fix build of guava package
+  sed -e "s|MAKE=make|MAKE='make -j1'|" -i bin/BuildPackages.sh
+  sed -e '/cd leon make/d' -i pkg/guava-*/src/Makefile
+  sed -e '/AM_INIT_AUTOMAKE/d' -i pkg/guava-*/src/leon/configure.ac
+# Don't load any packages by default
+  patch -p1 -i ../gap-no-packages-by-default.patch
+# Fix build of PolymakeInterface with polymake 3.1
+  patch -p1 -i ../gap-polymake-3.1.patch
+# Fix https://bugs.archlinux.org/task/55174
+  sed -e '/xgap/d' -i pkg/sonata/PackageInfo.g
+# Disable fplll in float package, doesn't support 5.2
+  pushd pkg/float-*
+sed -e '/FPLLL/d' -i configure.ac
+sed -e '39,44d' -i src/Makefile.am
+./autogen.sh
+  popd
+# Disable anupq package, it's i686 only
+  rm -r pkg/anupq-*
+}
+
+build() {
+  cd gap4r8
+  CC=mpicc ./configure --prefix=/usr --with-gmp=system
+  make
+
+  cd pkg
+  export CXXFLAGS+=' -I/usr/include/cxsc' # Fix build of float package
+  sh ../bin/BuildPackages.sh
+# These packages fail to build:
+# linboxing (doesn't support givaro 4)
+# semigroups
+
+  cd ../etc
+  sh install-tools.sh
+}
+
+package_gap() {
+  depends=(gmp openmpi)
+  optdepends=('gap-packages: extra packages' 'gap-data: additional databases' 
'gap-doc: documentation')
+  replaces=(gap-math)
+  conflicts=(gap-math)
+  cd gap4r8
+  
+  mkdir -p "$pkgdir"/usr/lib/gap
+  cp -r bin etc grp lib CITATION "$pkgdir"/usr/lib/gap
+  
+  mkdir -p "$pkgdir"/usr/lib/gap/pkg
+  cp -r pkg/GAPDoc-* "$pkgdir"/usr/lib/gap/pkg
+
+  mkdir -p "$pkgdir"/usr/bin
+  install -m755 "$pkgdir"/usr/lib/gap/bin/gap.sh "$pkgdir"/usr/bin/gap
+
+# fix location
+  sed -e 's|/build/gap/src/gap4r8|/usr/lib/gap|' -i "$pkgdir"/usr/bin/gap -i 
"$pkgdir"/usr/lib/gap/bin/*/sysinfo.gap  
+
+# remove unneeded stuff
+  rm "$pkgdir"/usr/lib/gap/bin/*/*.o
+  rm "$pkgdir"/usr/lib/gap/bin/gap.sh
+  find "$pkgdir"/usr/lib/gap/bin/ -maxdepth 1 -type f -exec rm {} \;
+  rm -r "$pkgdir"/usr/lib/gap/bin/*/{config*,extern,gac,Makefile}
+}
+
+package_gap-data() {
+  depends=(gap)
+  pkgdesc="Additional databases for GAP"
+  cd gap4r8
+
+  mkdir -p "$pkgdir"/usr/lib/gap
+  cp -r prim small trans "$pkgdir"/usr/lib/gap
+}
+
+package_gap-doc() {
+  depends=(gap)
+  pkgdesc="Documentation for GAP"
+  cd gap4r8
+
+  mkdir -p "$pkgdir"/usr/lib/gap
+  cp -r doc "$pkgdir"/usr/lib/gap
+}
+
+package_gap-packages() {
+  depends=(gap)
+  optdepends=('normaliz: Normaliz interface package' 'polymake: Polymake 
interface package' 'libxaw: xgap package'
+  'c-xsc: float package' 'mpfi: float package' 'libmpc: float 
package') # 'fplll: float package'
+  pkgdesc="Extra packages for GAP"
+  cd gap4r8
+
+  mkdir -p "$pkgdir"/usr/lib/gap
+  cp -r pkg "$pkgdir"/usr/lib/gap
+
+# GAPDoc is in main package
+  rm -r "$pkgdir"/usr/lib/gap/pkg/GAPDoc-*
+}

Copied: gap/repos/community-staging-x86_64/gap-no-packages-by-default.patch 
(from rev 275070, 

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

2017-12-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, December 20, 2017 @ 20:03:50
  Author: arojas
Revision: 275070

openmpi 3.0 rebuild

Modified:
  gap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 19:55:28 UTC (rev 275069)
+++ PKGBUILD2017-12-20 20:03:50 UTC (rev 275070)
@@ -7,7 +7,7 @@
 pkgname=(gap gap-data gap-doc gap-packages)
 pkgver=4.8.9
 _gapver=4r8p9_2017_12_18-23_44
-pkgrel=1
+pkgrel=2
 pkgdesc="Groups, Algorithms, Programming: a system for computational discrete 
algebra"
 arch=(x86_64)
 url="https://www.gap-system.org/;


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

2017-12-20 Thread Morten Linderud via arch-commits
Date: Wednesday, December 20, 2017 @ 19:55:28
  Author: foxboron
Revision: 275069

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-20 19:55:13 UTC (rev 275068)
+++ PKGBUILD2017-12-20 19:55:28 UTC (rev 275069)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jeff Mickey 
-# Contributor: Pappa < jcberg @ gmail . com >
-
-pkgname=('python-xlib' 'python2-xlib')
-pkgbase=python-xlib
-pkgver=0.20
-pkgrel=1
-pkgdesc="A fully functional X client library for Python programs"
-url="https://github.com/python-xlib/python-xlib;
-arch=('any')
-license=('GPL')
-makedepends=('python2-setuptools' 'python-setuptools')
-source=("https://github.com/python-xlib/python-xlib/releases/download/$pkgver/python-xlib-$pkgver.tar.bz2;)
-sha256sums=('6c61c6424d7861fe50279e5ff574481f4a9a0ea9c79eb0191aa5f5b3d4471c30')
-
-package_python2-xlib() {
-  depends=('python2' 'python2-six')
-
-  cd "$srcdir"/python-xlib-$pkgver
-  python2 setup.py install --root="$pkgdir"
-}
-
-package_python-xlib() {
-  depends=('python' 'python-six')
-
-  cd "$srcdir"/python-xlib-$pkgver
-  python setup.py install --root="$pkgdir"
-}

Copied: python-xlib/repos/community-any/PKGBUILD (from rev 275068, 
python-xlib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-20 19:55:28 UTC (rev 275069)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Morten Linderud 
+# Contributor: Sergej Pupykin 
+# Contributor: Jeff Mickey 
+# Contributor: Pappa 
+
+pkgbase=python-xlib
+pkgname=('python-xlib' 'python2-xlib')
+pkgver=0.21
+pkgrel=1
+pkgdesc="A fully functional X client library for Python programs"
+url="https://github.com/python-xlib/python-xlib;
+arch=('any')
+license=('LGPL')
+makedepends=('python2' 'python2-setuptools'
+ 'python' 'python-setuptools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/python-xlib/python-xlib/archive/$pkgver.tar.gz;)
+sha256sums=('14bc4eb406f5dc071410520751ddd239fb19499bafeefb31abc9be367ec47741')
+
+prepare() {
+  cp -a python-xlib-$pkgver{,-py2}
+}
+
+build(){
+  cd "$srcdir/python-xlib-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/python-xlib-$pkgver-py2"
+  python2 setup.py build
+}
+
+package_python2-xlib() {
+  depends=('python2' 'python2-six')
+
+  cd "python-xlib-$pkgver-py2"
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+package_python-xlib() {
+  depends=('python' 'python-six')
+
+  cd "python-xlib-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}


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

2017-12-20 Thread Morten Linderud via arch-commits
Date: Wednesday, December 20, 2017 @ 19:55:13
  Author: foxboron
Revision: 275068

upgpkg: python-xlib 0.21-1

Added propper pkgbuild, fixed license and bumped pkgver

Modified:
  python-xlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 19:37:11 UTC (rev 275067)
+++ PKGBUILD2017-12-20 19:55:13 UTC (rev 275068)
@@ -1,30 +1,44 @@
 # $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jeff Mickey 
-# Contributor: Pappa < jcberg @ gmail . com >
+# Maintainer: Morten Linderud 
+# Contributor: Sergej Pupykin 
+# Contributor: Jeff Mickey 
+# Contributor: Pappa 
 
+pkgbase=python-xlib
 pkgname=('python-xlib' 'python2-xlib')
-pkgbase=python-xlib
-pkgver=0.20
+pkgver=0.21
 pkgrel=1
 pkgdesc="A fully functional X client library for Python programs"
 url="https://github.com/python-xlib/python-xlib;
 arch=('any')
-license=('GPL')
-makedepends=('python2-setuptools' 'python-setuptools')
-source=("https://github.com/python-xlib/python-xlib/releases/download/$pkgver/python-xlib-$pkgver.tar.bz2;)
-sha256sums=('6c61c6424d7861fe50279e5ff574481f4a9a0ea9c79eb0191aa5f5b3d4471c30')
+license=('LGPL')
+makedepends=('python2' 'python2-setuptools'
+ 'python' 'python-setuptools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/python-xlib/python-xlib/archive/$pkgver.tar.gz;)
+sha256sums=('14bc4eb406f5dc071410520751ddd239fb19499bafeefb31abc9be367ec47741')
 
+prepare() {
+  cp -a python-xlib-$pkgver{,-py2}
+}
+
+build(){
+  cd "$srcdir/python-xlib-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/python-xlib-$pkgver-py2"
+  python2 setup.py build
+}
+
 package_python2-xlib() {
   depends=('python2' 'python2-six')
 
-  cd "$srcdir"/python-xlib-$pkgver
-  python2 setup.py install --root="$pkgdir"
+  cd "python-xlib-$pkgver-py2"
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
 }
 
 package_python-xlib() {
   depends=('python' 'python-six')
 
-  cd "$srcdir"/python-xlib-$pkgver
-  python setup.py install --root="$pkgdir"
+  cd "python-xlib-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
 }


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

2017-12-20 Thread Morten Linderud via arch-commits
Date: Wednesday, December 20, 2017 @ 19:37:11
  Author: foxboron
Revision: 275067

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-20 19:35:58 UTC (rev 275066)
+++ PKGBUILD2017-12-20 19:37:11 UTC (rev 275067)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor : Rohan Dhruva (rohandhruva at gmail dot com)
-
-pkgname=python-docs
-pkgver=3.6.3
-pkgrel=1
-pkgdesc="Set of HTML documentation for python"
-arch=('any')
-url="http://docs.python.org/py3k/;
-license=('GPL')
-depends=()
-options=('docs')
-source=(https://docs.python.org/3/archives/python-$pkgver-docs-html.tar.bz2)
-sha256sums=('a07a3c8d36fbe107ae3c172ae665dca9c8d9fbbbd7dc4618859a9bab4042bebb')
-
-package() {
-  mkdir -p "$pkgdir"/usr/share/doc/python/html
-  cp -rf "$srcdir"/python-$pkgver-docs-html/* 
"$pkgdir"/usr/share/doc/python/html/
-  find "$pkgdir"/usr/share/doc/python/html/ -type f -exec chmod 0644 {} \;
-  find "$pkgdir"/usr/share/doc/python/html/ -type d -exec chmod 0755 {} \;
-  install -dm0755 "$pkgdir"/etc/profile.d
-  echo "export PYTHONDOCS=/usr/share/doc/python/html/library" 
>"$pkgdir"/etc/profile.d/$pkgname.sh
-  echo "setenv PYTHONDOCS /usr/share/doc/python/html/library" 
>"$pkgdir"/etc/profile.d/$pkgname.csh
-}

Copied: python-docs/repos/community-any/PKGBUILD (from rev 275066, 
python-docs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-20 19:37:11 UTC (rev 275067)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Morten Linderud 
+# Contributor: Sergej Pupykin 
+# Contributor : Rohan Dhruva (rohandhruva at gmail dot com)
+
+pkgname=python-docs
+pkgver=3.6.4
+pkgrel=1
+pkgdesc="Set of HTML documentation for python"
+arch=('any')
+url="http://docs.python.org/py3k/;
+license=('GPL')
+options=('docs')
+source=(https://docs.python.org/3/archives/python-$pkgver-docs-html.tar.bz2)
+sha256sums=('c0ad3e364ff0ff0cb1a904e96f3d8e59b71effbb1e5d1b3ddc0561365f87b417')
+
+package() {
+  mkdir -p "$pkgdir"/usr/share/doc/python/html
+  cp -rf "$srcdir"/python-$pkgver-docs-html/* 
"$pkgdir"/usr/share/doc/python/html/
+  find "$pkgdir"/usr/share/doc/python/html/ -type f -exec chmod 0644 {} \;
+  find "$pkgdir"/usr/share/doc/python/html/ -type d -exec chmod 0755 {} \;
+  install -dm0755 "$pkgdir"/etc/profile.d
+  echo "export PYTHONDOCS=/usr/share/doc/python/html/library" 
>"$pkgdir"/etc/profile.d/$pkgname.sh
+  echo "setenv PYTHONDOCS /usr/share/doc/python/html/library" 
>"$pkgdir"/etc/profile.d/$pkgname.csh
+}


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

2017-12-20 Thread Morten Linderud via arch-commits
Date: Wednesday, December 20, 2017 @ 19:35:58
  Author: foxboron
Revision: 275066

upgpkg: python-docs 3.6.4-1

Updated python docs

Modified:
  python-docs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-20 19:17:41 UTC (rev 275065)
+++ PKGBUILD2017-12-20 19:35:58 UTC (rev 275066)
@@ -1,18 +1,18 @@
 # $Id$
-# Maintainer: Sergej Pupykin 
+# Maintainer: Morten Linderud 
+# Contributor: Sergej Pupykin 
 # Contributor : Rohan Dhruva (rohandhruva at gmail dot com)
 
 pkgname=python-docs
-pkgver=3.6.3
+pkgver=3.6.4
 pkgrel=1
 pkgdesc="Set of HTML documentation for python"
 arch=('any')
 url="http://docs.python.org/py3k/;
 license=('GPL')
-depends=()
 options=('docs')
 source=(https://docs.python.org/3/archives/python-$pkgver-docs-html.tar.bz2)
-sha256sums=('a07a3c8d36fbe107ae3c172ae665dca9c8d9fbbbd7dc4618859a9bab4042bebb')
+sha256sums=('c0ad3e364ff0ff0cb1a904e96f3d8e59b71effbb1e5d1b3ddc0561365f87b417')
 
 package() {
   mkdir -p "$pkgdir"/usr/share/doc/python/html


  1   2   >