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

2017-03-07 Thread Kyle Keen
Date: Wednesday, March 8, 2017 @ 03:29:00
  Author: kkeen
Revision: 215274

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-08 03:28:29 UTC (rev 215273)
+++ PKGBUILD2017-03-08 03:29:00 UTC (rev 215274)
@@ -1,21 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-
-pkgname=python-entrypoints
-pkgver=0.2.2
-pkgrel=2
-pkgdesc="https://pypi.python.org/pypi/entrypoints";
-arch=('any')
-url="https://github.com/takluyver/entrypoints";
-license=('MIT')
-depends=('python')
-source=("https://github.com/takluyver/entrypoints/archive/$pkgver.tar.gz";)
-md5sums=('7dae980f7c6affd777dc60a51c8d0b0b')
-
-package() {
-  cd "$srcdir/entrypoints-$pkgver"
-  # no setup/makefile provided
-  install -Dm644 entrypoints.py 
"$pkgdir/usr/lib/python3.6/site-packages/entrypoints.py"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-

Copied: python-entrypoints/repos/community-any/PKGBUILD (from rev 215273, 
python-entrypoints/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-08 03:29:00 UTC (rev 215274)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Kyle Keen 
+
+pkgname=python-entrypoints
+_name=entrypoints
+pkgver=0.2.2
+pkgrel=3
+pkgdesc="https://pypi.python.org/pypi/entrypoints";
+arch=('any')
+url="https://github.com/takluyver/entrypoints";
+license=('MIT')
+depends=('python')
+#makedepends=('python-pip')
+# both sources because the WHL doesn't come with a license
+source=("$pkgname-$pkgver.tgz::https://github.com/takluyver/entrypoints/archive/$pkgver.tar.gz";
+
"https://files.pythonhosted.org/packages/py2.py3/e/$_name/$_name-$pkgver-py2.py3-none-any.whl";)
+md5sums=('7dae980f7c6affd777dc60a51c8d0b0b'
+ '73bd7ce92c19b25dc5a20aff41be996a')
+
+package() {
+  cd "$srcdir"
+  # pip actually doesn't do much and is remarkably slow
+  #pip install --compile --no-deps --ignore-installed --root="$pkgdir" *.whl
+  install -Dm644 entrypoints.py 
"$pkgdir/usr/lib/python3.6/site-packages/entrypoints.py"
+  _dist="entrypoints-$pkgver.dist-info"
+  cd $_dist
+  for _i in ./*; do
+install -Dm644 $_i "$pkgdir/usr/lib/python3.6/site-packages/$_dist/$_i"
+  done
+
+  cd "$srcdir/entrypoints-$pkgver"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+


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

2017-03-07 Thread Kyle Keen
Date: Wednesday, March 8, 2017 @ 03:28:29
  Author: kkeen
Revision: 215273

upgpkg: python-entrypoints 0.2.2-3  FS#52477

Modified:
  python-entrypoints/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 00:36:08 UTC (rev 215272)
+++ PKGBUILD2017-03-08 03:28:29 UTC (rev 215273)
@@ -2,20 +2,33 @@
 # Maintainer: Kyle Keen 
 
 pkgname=python-entrypoints
+_name=entrypoints
 pkgver=0.2.2
-pkgrel=2
+pkgrel=3
 pkgdesc="https://pypi.python.org/pypi/entrypoints";
 arch=('any')
 url="https://github.com/takluyver/entrypoints";
 license=('MIT')
 depends=('python')
-source=("https://github.com/takluyver/entrypoints/archive/$pkgver.tar.gz";)
-md5sums=('7dae980f7c6affd777dc60a51c8d0b0b')
+#makedepends=('python-pip')
+# both sources because the WHL doesn't come with a license
+source=("$pkgname-$pkgver.tgz::https://github.com/takluyver/entrypoints/archive/$pkgver.tar.gz";
+
"https://files.pythonhosted.org/packages/py2.py3/e/$_name/$_name-$pkgver-py2.py3-none-any.whl";)
+md5sums=('7dae980f7c6affd777dc60a51c8d0b0b'
+ '73bd7ce92c19b25dc5a20aff41be996a')
 
 package() {
+  cd "$srcdir"
+  # pip actually doesn't do much and is remarkably slow
+  #pip install --compile --no-deps --ignore-installed --root="$pkgdir" *.whl
+  install -Dm644 entrypoints.py 
"$pkgdir/usr/lib/python3.6/site-packages/entrypoints.py"
+  _dist="entrypoints-$pkgver.dist-info"
+  cd $_dist
+  for _i in ./*; do
+install -Dm644 $_i "$pkgdir/usr/lib/python3.6/site-packages/$_dist/$_i"
+  done
+
   cd "$srcdir/entrypoints-$pkgver"
-  # no setup/makefile provided
-  install -Dm644 entrypoints.py 
"$pkgdir/usr/lib/python3.6/site-packages/entrypoints.py"
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
 


[arch-commits] Commit in thunderbird/repos (28 files)

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 22:32:49
  Author: heftig
Revision: 290114

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  thunderbird/repos/extra-i686/PKGBUILD
(from rev 290113, thunderbird/trunk/PKGBUILD)
  thunderbird/repos/extra-i686/firefox-gcc-6.0.patch
(from rev 290113, thunderbird/trunk/firefox-gcc-6.0.patch)
  thunderbird/repos/extra-i686/fix-wifi-scanner.diff
(from rev 290113, thunderbird/trunk/fix-wifi-scanner.diff)
  thunderbird/repos/extra-i686/mozilla-1228540-1.patch
(from rev 290113, thunderbird/trunk/mozilla-1228540-1.patch)
  thunderbird/repos/extra-i686/mozilla-1228540.patch
(from rev 290113, thunderbird/trunk/mozilla-1228540.patch)
  thunderbird/repos/extra-i686/thunderbird-install-dir.patch
(from rev 290113, thunderbird/trunk/thunderbird-install-dir.patch)
  thunderbird/repos/extra-i686/thunderbird.desktop
(from rev 290113, thunderbird/trunk/thunderbird.desktop)
  thunderbird/repos/extra-x86_64/PKGBUILD
(from rev 290113, thunderbird/trunk/PKGBUILD)
  thunderbird/repos/extra-x86_64/firefox-gcc-6.0.patch
(from rev 290113, thunderbird/trunk/firefox-gcc-6.0.patch)
  thunderbird/repos/extra-x86_64/fix-wifi-scanner.diff
(from rev 290113, thunderbird/trunk/fix-wifi-scanner.diff)
  thunderbird/repos/extra-x86_64/mozilla-1228540-1.patch
(from rev 290113, thunderbird/trunk/mozilla-1228540-1.patch)
  thunderbird/repos/extra-x86_64/mozilla-1228540.patch
(from rev 290113, thunderbird/trunk/mozilla-1228540.patch)
  thunderbird/repos/extra-x86_64/thunderbird-install-dir.patch
(from rev 290113, thunderbird/trunk/thunderbird-install-dir.patch)
  thunderbird/repos/extra-x86_64/thunderbird.desktop
(from rev 290113, thunderbird/trunk/thunderbird.desktop)
Deleted:
  thunderbird/repos/extra-i686/PKGBUILD
  thunderbird/repos/extra-i686/firefox-gcc-6.0.patch
  thunderbird/repos/extra-i686/fix-wifi-scanner.diff
  thunderbird/repos/extra-i686/mozilla-1228540-1.patch
  thunderbird/repos/extra-i686/mozilla-1228540.patch
  thunderbird/repos/extra-i686/thunderbird-install-dir.patch
  thunderbird/repos/extra-i686/thunderbird.desktop
  thunderbird/repos/extra-x86_64/PKGBUILD
  thunderbird/repos/extra-x86_64/firefox-gcc-6.0.patch
  thunderbird/repos/extra-x86_64/fix-wifi-scanner.diff
  thunderbird/repos/extra-x86_64/mozilla-1228540-1.patch
  thunderbird/repos/extra-x86_64/mozilla-1228540.patch
  thunderbird/repos/extra-x86_64/thunderbird-install-dir.patch
  thunderbird/repos/extra-x86_64/thunderbird.desktop

+
 /PKGBUILD  |  318 
 /firefox-gcc-6.0.patch |   52 
 /fix-wifi-scanner.diff |   32 
 /mozilla-1228540-1.patch   |  168 
 /mozilla-1228540.patch |12064 +++
 /thunderbird-install-dir.patch |   24 
 /thunderbird.desktop   |  346 
 extra-i686/PKGBUILD|  159 
 extra-i686/firefox-gcc-6.0.patch   |   26 
 extra-i686/fix-wifi-scanner.diff   |   16 
 extra-i686/mozilla-1228540-1.patch |   84 
 extra-i686/mozilla-1228540.patch   | 6032 -
 extra-i686/thunderbird-install-dir.patch   |   12 
 extra-i686/thunderbird.desktop |  173 
 extra-x86_64/PKGBUILD  |  159 
 extra-x86_64/firefox-gcc-6.0.patch |   26 
 extra-x86_64/fix-wifi-scanner.diff |   16 
 extra-x86_64/mozilla-1228540-1.patch   |   84 
 extra-x86_64/mozilla-1228540.patch | 6032 -
 extra-x86_64/thunderbird-install-dir.patch |   12 
 extra-x86_64/thunderbird.desktop   |  173 
 21 files changed, 13004 insertions(+), 13004 deletions(-)

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


[arch-commits] Commit in thunderbird-i18n/repos/extra-any (PKGBUILD PKGBUILD)

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 22:32:01
  Author: heftig
Revision: 290113

archrelease: copy trunk to extra-any

Added:
  thunderbird-i18n/repos/extra-any/PKGBUILD
(from rev 290112, thunderbird-i18n/trunk/PKGBUILD)
Deleted:
  thunderbird-i18n/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  314 ++---
 1 file changed, 157 insertions(+), 157 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-07 22:28:38 UTC (rev 290112)
+++ PKGBUILD2017-03-07 22:32:01 UTC (rev 290113)
@@ -1,157 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Andrea Scarpino 
-# Contributor: Thomas Baechler 
-
-pkgbase=thunderbird-i18n
-pkgver=45.7.0
-pkgrel=1
-pkgdesc="Language pack for Thunderbird"
-arch=('any')
-url="http://www.mozilla.com/";
-license=('MPL' 'GPL')
-
-_languages=(
-  'ar "Arabic"'
-  'ast"Asturian"'
-  'be "Belarusian"'
-  'bg "Bulgarian"'
-  'bn-BD  "Bengali (Bangladesh)"'
-  'br "Breton"'
-  'ca "Catalan"'
-  'cs "Czech"'
-  'cy "Welsh"'
-  'da "Danish"'
-  'de "German"'
-  'dsb"Lower Sorbian"'
-  'el "Greek"'
-  'en-GB  "English (British)"'
-  'en-US  "English (US)"'
-  'es-AR  "Spanish (Argentina)"'
-  'es-ES  "Spanish (Spain)"'
-  'et "Estonian"'
-  'eu "Basque"'
-  'fi "Finnish"'
-  'fr "French"'
-  'fy-NL  "Frisian"'
-  'ga-IE  "Irish"'
-  'gd "Gaelic (Scotland)"'
-  'gl "Galician"'
-  'he "Hebrew"'
-  'hr "Croatian"'
-  'hsb"Upper Sorbian"'
-  'hu "Hungarian"'
-  'hy-AM  "Armenian"'
-  'id "Indonesian"'
-  'is "Icelandic"'
-  'it "Italian"'
-  'ja "Japanese"'
-  'ko "Korean"'
-  'lt "Lithuanian"'
-  'nb-NO  "Norwegian (Bokmål)"'
-  'nl "Dutch"'
-  'nn-NO  "Norwegian (Nynorsk)"'
-  '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"'
-  'sq "Albanian"'
-  'sr "Serbian"'
-  'sv-SE  "Swedish"'
-  'ta-LK  "Tamil (Sri Lanka)"'
-  'tr "Turkish"'
-  'uk "Ukrainian"'
-  'vi "Vietnamese"'
-  'zh-CN  "Chinese (Simplified)"'
-  'zh-TW  "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/linux-i686/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=thunderbird-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  source+=("thunderbird-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 Thunderbird"
-  depends=("thunderbird>=$pkgver")
-  install -Dm644 thunderbird-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/thunderbird/extensions/langpack-$1...@thunderbird.mozilla.org.xpi"
-}
-
-md5sums=('3fdf85feb4bca7bb12f927a1436afcff'
- '55054e85d23b9bd1fb0261b1a89351fb'
- '62a8b38ee982d16f016c051913d5469f'
- 'caa1e840c2139241a8fb65db3a91e7ff'
- '47d6398d9f8a236bf554ac1bdd6c3150'
- '304c9dc540f467f3032227ccb4c1e40b'
- '9bc7a572f4b1a6de19f4504e2080f2ac'
- 'b881f2e0db64cd69ee63c1fd1305f321'
- 'af0d6e7f154317e312003b2c8ff946cb'
- '65e9807376c5fd02682c595732717bf6'
- 'fac0b59e30af3b068fe383afae6b4b39'
- '526b6c15097448b0e9d3ca345dcbf93b'
- '70ab3570aacf28a16ce553cf3bc31e16'
- '8149c7aa238a492a75d47f69e3577d79'
- '077344c39f9f10cc9981026c8c26f1d3'
- '5d77d893d7e6d17c899e560374b58ec7'
- '7c2703914aaf9f6a2ae66d270af0ec74'
- '4e8e79cdf0ad54d923aa1b15acd4cec6'
- 'd2389833946ea992b444b0d5aaa6f62a'
- 'bf5f1fe80baf3b853aeca2bf2a93fc7d'
- '26bd37849a523a6824a26203b7544f91'
- 'f3579e3e09bed6e47af843cc8d55ad8f'
- 'a391b07f0f5edbc52e4324a1680928d9'
- '52131dc5ea296f7b7f8e4d746826d8c2'
- '21035610a015c344e4d4dc2b83ca3979'
- 'c1c3ae0e720a5766c660832109484e9f'
- '7f0dcb2147cd1d29f3750bfb51927caf'
- '007b8f03884ad3c317bc8bfdb0168d9a'
- '24dca34e1b953b4d2561cadb8893d38c'
- '6fef8a6cdc12cded4cc2415fd1824daa'
- '8045fe35144d8438c8ac5e0a2db72338'
- 'eccf54d9e8a9c63647ea58d2fdc1dc08'
- 'ae0178a9b97e184ebcbf0556801a093e'
- 'f003155484ac1f23ded5e8c760fc'
- '3df0e91003cdb6266495ea273985'
- '9e53d51c15d226e73c83f13df64144cf'
- '945e293c73c5656fc148b13f46e6569b'
- '37a60524dbc2c6b9f44c2cc64dcb81e9'
- '75dd75480a6e403632d2fa6faa162df6'
- '3920996418b758665d1cf70fe26950ad'
- 'd42ff16b70103847dd878fcf1636adf2'
- '131d7754fb5ba2da21fb9b09659e3007'
- '4f9f2fc987743d25553bffc0233a7cc8'
-  

[arch-commits] Commit in thunderbird/trunk (PKGBUILD thunderbird.desktop)

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 22:28:38
  Author: heftig
Revision: 290112

45.8.0-1

Modified:
  thunderbird/trunk/PKGBUILD
  thunderbird/trunk/thunderbird.desktop

-+
 PKGBUILD|8 
 thunderbird.desktop |6 +++---
 2 files changed, 7 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 22:04:06 UTC (rev 290111)
+++ PKGBUILD2017-03-07 22:28:38 UTC (rev 290112)
@@ -6,8 +6,8 @@
 # Contributor: Anders Bostrom 
 
 pkgname=thunderbird
-pkgver=45.7.1
-pkgrel=3
+pkgver=45.8.0
+pkgrel=1
 pkgdesc="Standalone mail and news reader from mozilla.org"
 arch=(i686 x86_64)
 license=(MPL GPL LGPL)
@@ -21,8 +21,8 @@
 thunderbird.desktop
 thunderbird-install-dir.patch fix-wifi-scanner.diff
 firefox-gcc-6.0.patch mozilla-1228540.patch mozilla-1228540-1.patch)
-sha256sums=('5fc7a39c6a1baacfa37d6a52c9384f70c171dd0bb581576d370bdb29c84b9ffb'
-'3fba13d88aeb003ab0811ef739463858172ce0662a1c7d62835df3d83ddbb8fb'
+sha256sums=('743cbf4856ad460a791f6b17bff175053fccec2af1edd8e8295ac6fda2634c28'
+'e44c55501f650a4e80b9c353b81f33e07ca65808db831eff6ca616aded233827'
 '24599eab8862476744fe1619a9a53a5b8cdcab30b3fc5767512f31d3529bd05d'
 '9765bca5d63fb5525bbd0520b7ab1d27cabaed697e2fc7791400abc3fa4f13b8'
 '4d1e1ddabc9e975ed39f49e134559a29e01cd49439e358233f1ede43bf5a52bf'

Modified: thunderbird.desktop
===
--- thunderbird.desktop 2017-03-07 22:04:06 UTC (rev 290111)
+++ thunderbird.desktop 2017-03-07 22:28:38 UTC (rev 290112)
@@ -55,7 +55,7 @@
 GenericName[vi]=Phần mềm khách quản lý thư điện tử
 GenericName[zh_CN]=邮件新闻客户端
 GenericName[zh_TW]=郵件用戶端
-Exec=thunderbird %u
+Exec=/usr/lib/thunderbird/thunderbird %u
 Terminal=false
 Type=Application
 Icon=thunderbird
@@ -116,7 +116,7 @@
 Name[vi]=Viết thư mới
 Name[zh_CN]=编写新消息
 Name[zh_TW]=寫一封新訊息
-Exec=thunderbird -compose
+Exec=/usr/lib/thunderbird/thunderbird -compose
 
 [Desktop Action OpenAddressBook]
 Name=Open address book
@@ -170,4 +170,4 @@
 Name[vi]=Mở sổ địa chỉ
 Name[zh_CN]=打开通讯录
 Name[zh_TW]=開啟通訊錄
-Exec=thunderbird -addressbook
+Exec=/usr/lib/thunderbird/thunderbird -addressbook


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

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 22:04:06
  Author: heftig
Revision: 290111

45.8.0-1

Modified:
  thunderbird-i18n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 21:50:53 UTC (rev 290110)
+++ PKGBUILD2017-03-07 22:04:06 UTC (rev 290111)
@@ -4,7 +4,7 @@
 # Contributor: Thomas Baechler 
 
 pkgbase=thunderbird-i18n
-pkgver=45.7.0
+pkgver=45.8.0
 pkgrel=1
 pkgdesc="Language pack for Thunderbird"
 arch=('any')
@@ -97,61 +97,61 @@
 
"$pkgdir/usr/lib/thunderbird/extensions/langpack-$1...@thunderbird.mozilla.org.xpi"
 }
 
-md5sums=('3fdf85feb4bca7bb12f927a1436afcff'
- '55054e85d23b9bd1fb0261b1a89351fb'
- '62a8b38ee982d16f016c051913d5469f'
- 'caa1e840c2139241a8fb65db3a91e7ff'
- '47d6398d9f8a236bf554ac1bdd6c3150'
- '304c9dc540f467f3032227ccb4c1e40b'
- '9bc7a572f4b1a6de19f4504e2080f2ac'
- 'b881f2e0db64cd69ee63c1fd1305f321'
- 'af0d6e7f154317e312003b2c8ff946cb'
- '65e9807376c5fd02682c595732717bf6'
- 'fac0b59e30af3b068fe383afae6b4b39'
- '526b6c15097448b0e9d3ca345dcbf93b'
- '70ab3570aacf28a16ce553cf3bc31e16'
- '8149c7aa238a492a75d47f69e3577d79'
- '077344c39f9f10cc9981026c8c26f1d3'
- '5d77d893d7e6d17c899e560374b58ec7'
- '7c2703914aaf9f6a2ae66d270af0ec74'
- '4e8e79cdf0ad54d923aa1b15acd4cec6'
- 'd2389833946ea992b444b0d5aaa6f62a'
- 'bf5f1fe80baf3b853aeca2bf2a93fc7d'
- '26bd37849a523a6824a26203b7544f91'
- 'f3579e3e09bed6e47af843cc8d55ad8f'
- 'a391b07f0f5edbc52e4324a1680928d9'
- '52131dc5ea296f7b7f8e4d746826d8c2'
- '21035610a015c344e4d4dc2b83ca3979'
- 'c1c3ae0e720a5766c660832109484e9f'
- '7f0dcb2147cd1d29f3750bfb51927caf'
- '007b8f03884ad3c317bc8bfdb0168d9a'
- '24dca34e1b953b4d2561cadb8893d38c'
- '6fef8a6cdc12cded4cc2415fd1824daa'
- '8045fe35144d8438c8ac5e0a2db72338'
- 'eccf54d9e8a9c63647ea58d2fdc1dc08'
- 'ae0178a9b97e184ebcbf0556801a093e'
- 'f003155484ac1f23ded5e8c760fc'
- '3df0e91003cdb6266495ea273985'
- '9e53d51c15d226e73c83f13df64144cf'
- '945e293c73c5656fc148b13f46e6569b'
- '37a60524dbc2c6b9f44c2cc64dcb81e9'
- '75dd75480a6e403632d2fa6faa162df6'
- '3920996418b758665d1cf70fe26950ad'
- 'd42ff16b70103847dd878fcf1636adf2'
- '131d7754fb5ba2da21fb9b09659e3007'
- '4f9f2fc987743d25553bffc0233a7cc8'
- '8f3ce5dfacee36ca81f79db38af84a72'
- '5c4fd9b38a3901fe8cff3aadc8cd018f'
- '31493ca5e88f11baac3a1012e2cd977b'
- 'd8b40097bd6f7b7029012189413797f9'
- 'a0290d62964088918a855c289a842e69'
- 'c266289d6139cd1c4b5e1df1d4db09d3'
- 'e81b43b891fbcc5c2aa211205dd39f6f'
- '49f6d50166e037d986849367eff61130'
- '7110a2437a55824a8889341198a13cdc'
- '89a16fed84db2543e0abe477b8f6694d'
- '6a1fe06ccc552340edbb961f7e5af4af'
- 'cc83f7820bb97ff113984d31e15f9d83'
- '93cb94080f9b410fba510ffacf34e5ac'
- '1dd0cf6063059a81981bb7fd778cfbea'
- '4ced4bb189d8b347948b7864e8825825')
+sha256sums=('4b8787643041672aad90d1297eacad510ec88d04461d19680d38e004add14f21'
+'0ead56ad0cd11503a60d5f75cd181c0c85eb7ccbc42fa69c76d3cd64f29a0cd9'
+'2836d2485234e541fe2d227af8f8c477173051d6bd6a9db5bab6c64a74fefd04'
+'b0cb9a7684809eb71e3d79ffab9b6422c97a4dcf4cb8cbff14a403c79a425980'
+'2c34a6f9a28605551953d40ec868ed42eb605d85ea6012bb868adc2251f18158'
+'058d05618dd1c83dd854203e043c328ec1f6937f5b85f9ff50245f7e428b3c01'
+'89e8c63dfeeb9a8a68f28278302143c2f1b71193bfefacbbbcdf70cb47357046'
+'50e02729a1a4740a3964b085572b8d17c551cf71438d24e8d1845073d5048ad2'
+'46f2549f8568db23e734fb95bc3836335e104867b1467086058f062f2471552f'
+'b7fdb27246d5bd78d3ffccd83bdf437fe791f820ca5ba38cad19f5286c7380c8'
+'41814028f2aad3d30ab245935095d5f7c2ffc97f79d731eed9977f1cf03b0018'
+'161dde3ccedcbcb879ea77fc3b43bd16b331c0317f513d8479158b0f48349a63'
+'1daf788364a9d738fb2a8324814076d8a058cff96884ccb0a24cb440fdb9f42e'
+'cf1fce9ed3442c4eb2e669968757077f79c68499ad12bebedae86259c8b83153'
+'3dcc363eaefa81dfa9d0aea4a03798339ed3e12ceea8d56cbd766c756f9cbf29'
+'20a757a4ee8f349e5578a0da2daa94b0ecd4c5b06315aa928ed429d9bab03d89'
+'2f4872efacab2e2ffa9c561f882eb6f6e323f02a7e3606efda0d0aef7af38516'
+'44a8c625290a5a306c9d1946c1084a307b83595dec6cc75cfe809428f490fca7'
+'a5d9f300bb05cf0c3e5eddff963ee790a28ba7706530697eb7464f202434923a'
+'5c0ea0d794d4fc35d1281f5ab14d6725d8c42180b242da9d65005bfd036467db'
+'b0cc458c6e5605cdd

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

2017-03-07 Thread Antonio Rojas
Date: Tuesday, March 7, 2017 @ 22:01:14
  Author: arojas
Revision: 215271

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  luasec/repos/community-staging-i686/
  luasec/repos/community-staging-i686/PKGBUILD
(from rev 215270, luasec/trunk/PKGBUILD)
  luasec/repos/community-staging-i686/luasec-openssl-1.1.patch
(from rev 215270, luasec/trunk/luasec-openssl-1.1.patch)
  luasec/repos/community-staging-x86_64/
  luasec/repos/community-staging-x86_64/PKGBUILD
(from rev 215270, luasec/trunk/PKGBUILD)
  luasec/repos/community-staging-x86_64/luasec-openssl-1.1.patch
(from rev 215270, luasec/trunk/luasec-openssl-1.1.patch)

---+
 community-staging-i686/PKGBUILD   |   87 +
 community-staging-i686/luasec-openssl-1.1.patch   |  129 
 community-staging-x86_64/PKGBUILD |   87 +
 community-staging-x86_64/luasec-openssl-1.1.patch |  129 
 4 files changed, 432 insertions(+)

Copied: luasec/repos/community-staging-i686/PKGBUILD (from rev 215270, 
luasec/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-07 22:01:14 UTC (rev 215271)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Dwayne Bent 
+# Contributor: Paul-Sebastian Manole 
+
+pkgbase=luasec
+pkgname=(lua-sec lua51-sec lua52-sec)
+epoch=2
+pkgver=0.6
+pkgrel=2
+pkgdesc='Lua bindings for OpenSSL library to provide TLS/SSL communication.'
+arch=('i686' 'x86_64')
+url='https://github.com/brunoos/luasec/wiki'
+license=('MIT')
+makedepends=('openssl' 'lua' 'lua-socket' 'lua51' 'lua51-socket' 'lua52' 
'lua52-socket')
+options=('!buildflags')
+source=("https://github.com/brunoos/luasec/archive/luasec-$pkgver.tar.gz";
+luasec-openssl-1.1.patch)
+md5sums=('14e1aef6d2aae96bbf98afc6b6634af2'
+ '729e64adcab9b4bd9f3d68521706ef0f')
+
+prepare() {
+  # openssl 1.1 compatibility
+  cd luasec-luasec-$pkgver
+  patch -p1 -i ../luasec-openssl-1.1.patch
+  cd ..
+
+  cp -a luasec-luasec-$pkgver luasec-luasec-$pkgver-51
+  cp -a luasec-luasec-$pkgver luasec-luasec-$pkgver-52
+}
+
+build() {
+  msg2 'Building with lua 5.3'
+  cd "$srcdir"/luasec-luasec-$pkgver
+  make linux DEFS="-DWITH_LUASOCKET -DOPENSSL_NO_SSL3"
+
+  msg2 'Building with lua 5.1'
+  cd "$srcdir"/luasec-luasec-$pkgver-51
+  find . -type f -name \*.[ch] -exec sed -i \
+-e 's|include .lua.h.|include "lua5.1/lua.h"|g' \
+-e 's|include .lualib.h.|include "lua5.1/lualib.h"|g' \
+-e 's|include .luaconf.h.|include "lua5.1/luaconf.h"|g' \
+-e 's|include .lauxlib.h.|include "lua5.1/lauxlib.h"|g' \
+{} \;
+  make linux DEFS="-DWITH_LUASOCKET -DOPENSSL_NO_SSL3"
+
+  msg2 'Building with lua 5.2'
+  cd "$srcdir"/luasec-luasec-$pkgver-52
+  find . -type f -name \*.[ch] -exec sed -i \
+-e 's|include .lua.h.|include "lua5.2/lua.h"|g' \
+-e 's|include .lualib.h.|include "lua5.2/lualib.h"|g' \
+-e 's|include .luaconf.h.|include "lua5.2/luaconf.h"|g' \
+-e 's|include .lauxlib.h.|include "lua5.2/lauxlib.h"|g' \
+{} \;
+  make linux DEFS="-DWITH_LUASOCKET -DOPENSSL_NO_SSL3"
+}
+
+package_lua-sec() {
+  depends=('openssl' 'lua' 'lua-socket')
+
+  install -dm755 "$pkgdir/usr/lib/lua/5.3"
+  cd luasec-luasec-$pkgver
+  make LUACPATH="$pkgdir/usr/lib/lua/5.3" LUAPATH="$pkgdir/usr/share/lua/5.3" 
install
+  install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua51-sec() {
+  depends=('openssl' 'lua51' 'lua51-socket')
+  conflicts=('luasec')
+  replaces=('luasec')
+
+  install -dm755 "$pkgdir/usr/lib/lua/5.1"
+  cd luasec-luasec-$pkgver-51
+  make LUACPATH="$pkgdir/usr/lib/lua/5.1" LUAPATH="$pkgdir/usr/share/lua/5.1" 
install
+  install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua52-sec() {
+  depends=('openssl' 'lua52' 'lua52-socket')
+
+  install -dm755 "$pkgdir/usr/lib/lua/5.2"
+  cd luasec-luasec-$pkgver-52
+  make LUACPATH="$pkgdir/usr/lib/lua/5.2" LUAPATH="$pkgdir/usr/share/lua/5.2" 
install
+  install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: luasec/repos/community-staging-i686/luasec-openssl-1.1.patch (from rev 
215270, luasec/trunk/luasec-openssl-1.1.patch)
===
--- community-staging-i686/luasec-openssl-1.1.patch 
(rev 0)
+++ community-staging-i686/luasec-openssl-1.1.patch 2017-03-07 22:01:14 UTC 
(rev 215271)
@@ -0,0 +1,129 @@
+From: Bruno Silvestre 
+Date: Wed, 14 Sep 2016 17:47:09 -0300
+Subject: Compatibility with OpenSSL 1.1.0
+
+Defining macros X509_up_ref() and SSL_is_server to use the same
+API of OpenSSL 1.1.0.
+---
+ src/context.c |  4 
+ src/ssl.c | 15 +++
+ 2 fil

[arch-commits] Commit in luasec/trunk (PKGBUILD luasec-openssl-1.1.patch)

2017-03-07 Thread Antonio Rojas
Date: Tuesday, March 7, 2017 @ 22:00:51
  Author: arojas
Revision: 215270

openssl 1.1 rebuild

Added:
  luasec/trunk/luasec-openssl-1.1.patch
Modified:
  luasec/trunk/PKGBUILD

--+
 PKGBUILD |   13 +++-
 luasec-openssl-1.1.patch |  129 +
 2 files changed, 139 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 21:52:12 UTC (rev 215269)
+++ PKGBUILD2017-03-07 22:00:51 UTC (rev 215270)
@@ -7,7 +7,7 @@
 pkgname=(lua-sec lua51-sec lua52-sec)
 epoch=2
 pkgver=0.6
-pkgrel=1
+pkgrel=2
 pkgdesc='Lua bindings for OpenSSL library to provide TLS/SSL communication.'
 arch=('i686' 'x86_64')
 url='https://github.com/brunoos/luasec/wiki'
@@ -14,10 +14,17 @@
 license=('MIT')
 makedepends=('openssl' 'lua' 'lua-socket' 'lua51' 'lua51-socket' 'lua52' 
'lua52-socket')
 options=('!buildflags')
-source=("https://github.com/brunoos/luasec/archive/luasec-$pkgver.tar.gz";)
-md5sums=('14e1aef6d2aae96bbf98afc6b6634af2')
+source=("https://github.com/brunoos/luasec/archive/luasec-$pkgver.tar.gz";
+luasec-openssl-1.1.patch)
+md5sums=('14e1aef6d2aae96bbf98afc6b6634af2'
+ '729e64adcab9b4bd9f3d68521706ef0f')
 
 prepare() {
+  # openssl 1.1 compatibility
+  cd luasec-luasec-$pkgver
+  patch -p1 -i ../luasec-openssl-1.1.patch
+  cd ..
+
   cp -a luasec-luasec-$pkgver luasec-luasec-$pkgver-51
   cp -a luasec-luasec-$pkgver luasec-luasec-$pkgver-52
 }

Added: luasec-openssl-1.1.patch
===
--- luasec-openssl-1.1.patch(rev 0)
+++ luasec-openssl-1.1.patch2017-03-07 22:00:51 UTC (rev 215270)
@@ -0,0 +1,129 @@
+From: Bruno Silvestre 
+Date: Wed, 14 Sep 2016 17:47:09 -0300
+Subject: Compatibility with OpenSSL 1.1.0
+
+Defining macros X509_up_ref() and SSL_is_server to use the same
+API of OpenSSL 1.1.0.
+---
+ src/context.c |  4 
+ src/ssl.c | 15 +++
+ 2 files changed, 11 insertions(+), 8 deletions(-)
+
+diff --git a/src/context.c b/src/context.c
+index 22f43b7..4187314 100644
+--- a/src/context.c
 b/src/context.c
+@@ -35,10 +35,6 @@ typedef const SSL_METHOD LSEC_SSL_METHOD;
+ typedef   SSL_METHOD LSEC_SSL_METHOD;
+ #endif
+ 
+-#if OPENSSL_VERSION_NUMBER>=0x1010L && !defined(LIBRESSL_VERSION_NUMBER)
+-#define SSLv23_method() TLS_method()
+-#endif
+-
+ /*-- Compat - Lua 5.1 
*/
+ 
+ #if (LUA_VERSION_NUM == 501)
+diff --git a/src/ssl.c b/src/ssl.c
+index 84c609d..d7b7243 100644
+--- a/src/ssl.c
 b/src/ssl.c
+@@ -31,6 +31,13 @@
+ #include "context.h"
+ #include "ssl.h"
+ 
++
++#if defined(LIBRESSL_VERSION_NUMBER) || OPENSSL_VERSION_NUMBER<0x1010L
++#define SSL_is_server(s) (s->server)
++#define X509_up_ref(c)   CRYPTO_add(&c->references, 1, CRYPTO_LOCK_X509)
++#endif
++
++
+ /**
+  * Underline socket error.
+  */
+@@ -460,7 +467,7 @@ static int meth_getpeercertificate(lua_State *L)
+   /* In a server-context, the stack doesn't contain the peer cert,
+* so adjust accordingly.
+*/
+-  if (ssl->ssl->server)
++  if (SSL_is_server(ssl->ssl))
+ --n;
+   certs = SSL_get_peer_cert_chain(ssl->ssl);
+   if (n >= sk_X509_num(certs)) {
+@@ -470,7 +477,7 @@ static int meth_getpeercertificate(lua_State *L)
+   cert = sk_X509_value(certs, n);
+   /* Increment the reference counting of the object. */
+   /* See SSL_get_peer_certificate() source code. */
+-  CRYPTO_add(&cert->references, 1, CRYPTO_LOCK_X509);
++  X509_up_ref(cert);
+   lsec_pushx509(L, cert);
+   return 1;
+ }
+@@ -492,7 +499,7 @@ static int meth_getpeerchain(lua_State *L)
+ return 2;
+   }
+   lua_newtable(L);
+-  if (ssl->ssl->server) {
++  if (SSL_is_server(ssl->ssl)) {
+ lsec_pushx509(L, SSL_get_peer_certificate(ssl->ssl));
+ lua_rawseti(L, -2, idx++);
+   }
+@@ -502,7 +509,7 @@ static int meth_getpeerchain(lua_State *L)
+ cert = sk_X509_value(certs, i);
+ /* Increment the reference counting of the object. */
+ /* See SSL_get_peer_certificate() source code. */
+-CRYPTO_add(&cert->references, 1, CRYPTO_LOCK_X509);
++X509_up_ref(cert);
+ lsec_pushx509(L, cert);
+ lua_rawseti(L, -2, idx++);
+   }
+From: Bruno Silvestre 
+Date: Tue, 13 Sep 2016 13:30:44 -0300
+Subject: Use EVP_PKEY_base_id() to recover the key's type
+
+---
+ src/x509.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/x509.c b/src/x509.c
+index 207d682..0042fc4 100644
+--- a/src/x509.c
 b/src/x509.c
+@@ -415,7 +415,7 @@ static int meth_pubkey(lua_State* L)
+ bytes = BIO_get_mem_data(bio, &data);
+ if (bytes > 0) {
+   lua_pushlstring(L, data, bytes);
+-  switch(EVP_PKEY_type(pkey->type)) {
++  switch(EVP_PKEY_base_id(pkey)) {
+ case EVP_PKEY_RSA:
+   lua_pushstring(L, "RSA");
+   break;
+From: Bruno Silvestre 
+Date: 

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

2017-03-07 Thread Antonio Rojas
Date: Tuesday, March 7, 2017 @ 21:52:12
  Author: arojas
Revision: 215269

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  libtorrent/repos/community-staging-i686/
  libtorrent/repos/community-staging-i686/PKGBUILD
(from rev 215268, libtorrent/trunk/PKGBUILD)
  libtorrent/repos/community-staging-x86_64/
  libtorrent/repos/community-staging-x86_64/PKGBUILD
(from rev 215268, libtorrent/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   44 
 community-staging-x86_64/PKGBUILD |   44 
 2 files changed, 88 insertions(+)

Copied: libtorrent/repos/community-staging-i686/PKGBUILD (from rev 215268, 
libtorrent/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-07 21:52:12 UTC (rev 215269)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Daenyth 
+# Contributor: Jeff Mickey 
+# Contributor: sh__
+
+pkgname=libtorrent
+pkgver=0.13.6
+pkgrel=3
+pkgdesc='BitTorrent library with a focus on high performance and good code'
+url='http://rakshasa.github.io/rtorrent/'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('openssl')
+#source=("http://libtorrent.rakshasa.no/downloads/${pkgname}-${pkgver}.tar.gz";)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/rakshasa/${pkgname}/archive/${pkgver}.tar.gz";
+
libtorrent-openssl-1.1.patch::"https://github.com/rakshasa/libtorrent/commit/4607bbf7.patch";)
+sha256sums=('bf963ac6e73e194a2cd87ebdf809988b5b3d6244bb7cd43d7d0c4852fc501524'
+'82f639c1e7cf3299c2a44a705e69286abd33a75c70d2da0594d41d5a08cd8c1a')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/AM_PATH_CPPUNIT/d' -i configure.ac
+# fix build against openssl 1.1
+patch -p1 -i ../libtorrent-openssl-1.1.patch
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./autogen.sh
+
+   export CXXFLAGS="${CXXFLAGS} -fno-strict-aliasing"
+   ./configure \
+   --prefix=/usr \
+   --disable-debug \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}

Copied: libtorrent/repos/community-staging-x86_64/PKGBUILD (from rev 215268, 
libtorrent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-07 21:52:12 UTC (rev 215269)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Daenyth 
+# Contributor: Jeff Mickey 
+# Contributor: sh__
+
+pkgname=libtorrent
+pkgver=0.13.6
+pkgrel=3
+pkgdesc='BitTorrent library with a focus on high performance and good code'
+url='http://rakshasa.github.io/rtorrent/'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('openssl')
+#source=("http://libtorrent.rakshasa.no/downloads/${pkgname}-${pkgver}.tar.gz";)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/rakshasa/${pkgname}/archive/${pkgver}.tar.gz";
+
libtorrent-openssl-1.1.patch::"https://github.com/rakshasa/libtorrent/commit/4607bbf7.patch";)
+sha256sums=('bf963ac6e73e194a2cd87ebdf809988b5b3d6244bb7cd43d7d0c4852fc501524'
+'82f639c1e7cf3299c2a44a705e69286abd33a75c70d2da0594d41d5a08cd8c1a')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/AM_PATH_CPPUNIT/d' -i configure.ac
+# fix build against openssl 1.1
+patch -p1 -i ../libtorrent-openssl-1.1.patch
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./autogen.sh
+
+   export CXXFLAGS="${CXXFLAGS} -fno-strict-aliasing"
+   ./configure \
+   --prefix=/usr \
+   --disable-debug \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}


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

2017-03-07 Thread Antonio Rojas
Date: Tuesday, March 7, 2017 @ 21:51:47
  Author: arojas
Revision: 215268

openssl 1.1 rebuild

Modified:
  libtorrent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 21:43:32 UTC (rev 215267)
+++ PKGBUILD2017-03-07 21:51:47 UTC (rev 215268)
@@ -7,7 +7,7 @@
 
 pkgname=libtorrent
 pkgver=0.13.6
-pkgrel=2
+pkgrel=3
 pkgdesc='BitTorrent library with a focus on high performance and good code'
 url='http://rakshasa.github.io/rtorrent/'
 arch=('i686' 'x86_64')
@@ -14,12 +14,16 @@
 license=('GPL')
 depends=('openssl')
 #source=("http://libtorrent.rakshasa.no/downloads/${pkgname}-${pkgver}.tar.gz";)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/rakshasa/${pkgname}/archive/${pkgver}.tar.gz";)
-sha256sums=('bf963ac6e73e194a2cd87ebdf809988b5b3d6244bb7cd43d7d0c4852fc501524')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/rakshasa/${pkgname}/archive/${pkgver}.tar.gz";
+
libtorrent-openssl-1.1.patch::"https://github.com/rakshasa/libtorrent/commit/4607bbf7.patch";)
+sha256sums=('bf963ac6e73e194a2cd87ebdf809988b5b3d6244bb7cd43d7d0c4852fc501524'
+'82f639c1e7cf3299c2a44a705e69286abd33a75c70d2da0594d41d5a08cd8c1a')
 
 prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
sed '/AM_PATH_CPPUNIT/d' -i configure.ac
+# fix build against openssl 1.1
+patch -p1 -i ../libtorrent-openssl-1.1.patch
 }
 
 build() {


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

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 21:50:53
  Author: heftig
Revision: 290110

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  libgphoto2/repos/extra-i686/PKGBUILD
(from rev 290109, libgphoto2/trunk/PKGBUILD)
  libgphoto2/repos/extra-x86_64/PKGBUILD
(from rev 290109, libgphoto2/trunk/PKGBUILD)
Deleted:
  libgphoto2/repos/extra-i686/PKGBUILD
  libgphoto2/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  122 
 extra-i686/PKGBUILD   |   62 
 extra-x86_64/PKGBUILD |   62 
 3 files changed, 122 insertions(+), 124 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-03-07 21:49:30 UTC (rev 290109)
+++ extra-i686/PKGBUILD 2017-03-07 21:50:53 UTC (rev 290110)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Tom Gundersen 
-# Contributor: Eduardo Romero 
-# Contributor: Damir Perisa 
-
-pkgname=libgphoto2
-pkgver=2.5.11
-pkgrel=1
-pkgdesc="The core library of gphoto2, designed to allow access to digital 
camera by external programs."
-arch=(i686 x86_64)
-url="http://www.gphoto.org/";
-license=(LGPL)
-depends=(libexif libjpeg gd libltdl libusb libxml2)
-makedepends=(autoconf-archive git)
-_commit=00113c93678cd42d3ac768abc152a07b1c650a53  # 
tags/libgphoto2-2_5_11-release^0
-source=("git+https://github.com/gphoto/libgphoto2#commit=$_commit";)
-sha256sums=('SKIP')
-validpgpkeys=('7C4AFD61D8AAE7570796A5172209D6902F969C95') # Marcus Meissner 
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^libgphoto2-//;s/-release//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  autoreconf -fvi
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --disable-rpath
-
-  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
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="${pkgdir}" install
-
-  # Remove unused udev helper
-  rm -rf "${pkgdir}/usr/lib/udev"
-
-  install -m755 -d "${pkgdir}/usr/lib/udev/hwdb.d"
-  install -m755 -d "${pkgdir}/usr/lib/udev/rules.d"
-
-  LD_LIBRARY_PATH="${pkgdir}/usr/lib${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH" \
-  CAMLIBS="${pkgdir}/usr/lib/libgphoto2/${pkgver}" \
-  "${pkgdir}/usr/lib/libgphoto2/print-camera-list" hwdb > \
-  "${pkgdir}/usr/lib/udev/hwdb.d/20-gphoto.hwdb"
-
-  LD_LIBRARY_PATH="${pkgdir}/usr/lib${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH" \
-  CAMLIBS="${pkgdir}/usr/lib/libgphoto2/${pkgver}" \
-  "${pkgdir}/usr/lib/libgphoto2/print-camera-list" udev-rules version 201 
> \
-  "${pkgdir}/usr/lib/udev/rules.d/40-gphoto.rules"
-
-  # Remove recursive symlink
-  rm -fv "${pkgdir}/usr/include/gphoto2/gphoto2"
-}

Copied: libgphoto2/repos/extra-i686/PKGBUILD (from rev 290109, 
libgphoto2/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-03-07 21:50:53 UTC (rev 290110)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Tom Gundersen 
+# Contributor: Eduardo Romero 
+# Contributor: Damir Perisa 
+
+pkgname=libgphoto2
+pkgver=2.5.12
+pkgrel=1
+pkgdesc="The core library of gphoto2, designed to allow access to digital 
camera by external programs."
+arch=(i686 x86_64)
+url="http://www.gphoto.org/";
+license=(LGPL)
+depends=(libexif libjpeg gd libltdl libusb libxml2)
+makedepends=(autoconf-archive git)
+_commit=1719ba76c7ad5b934f113fcd6e433999fe99b92e  # 
tags/libgphoto2-2_5_12-release
+source=("git+https://github.com/gphoto/libgphoto2#commit=$_commit";)
+sha256sums=('SKIP')
+validpgpkeys=('7C4AFD61D8AAE7570796A5172209D6902F969C95') # Marcus Meissner
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^libgphoto2-//;s/-release//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  autoreconf -fvi
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --disable-rpath
+
+  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
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+
+  # Remove unused udev helper
+  rm -r "$pkgdir/usr/lib/udev"
+
+  # Remove recursive symlink
+  rm "$pkgdir/usr/include/gphoto2/gphoto2"
+
+  (
+cd "$pkgdir/usr/lib/libgphoto2"
+
+export 
LD_LIBRARY_PATH="$pkgdir/usr/lib${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH"
+export CAMLIBS="$PWD/$pkgver"
+
+./print-camera-list hwdb \
+  | install -Dm644 /dev/stdin "$pkgdir/usr/lib/udev/hwdb.d/20-gphoto.hwdb"
+./print-camera-list 

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

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 21:49:30
  Author: heftig
Revision: 290109

2.5.12-1

Modified:
  libgphoto2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 21:11:38 UTC (rev 290108)
+++ PKGBUILD2017-03-07 21:49:30 UTC (rev 290109)
@@ -5,7 +5,7 @@
 # Contributor: Damir Perisa 
 
 pkgname=libgphoto2
-pkgver=2.5.11
+pkgver=2.5.12
 pkgrel=1
 pkgdesc="The core library of gphoto2, designed to allow access to digital 
camera by external programs."
 arch=(i686 x86_64)
@@ -13,10 +13,10 @@
 license=(LGPL)
 depends=(libexif libjpeg gd libltdl libusb libxml2)
 makedepends=(autoconf-archive git)
-_commit=00113c93678cd42d3ac768abc152a07b1c650a53  # 
tags/libgphoto2-2_5_11-release^0
+_commit=1719ba76c7ad5b934f113fcd6e433999fe99b92e  # 
tags/libgphoto2-2_5_12-release
 source=("git+https://github.com/gphoto/libgphoto2#commit=$_commit";)
 sha256sums=('SKIP')
-validpgpkeys=('7C4AFD61D8AAE7570796A5172209D6902F969C95') # Marcus Meissner 
+validpgpkeys=('7C4AFD61D8AAE7570796A5172209D6902F969C95') # Marcus Meissner
 
 pkgver() {
   cd $pkgname
@@ -39,24 +39,23 @@
 
 package() {
   cd $pkgname
-  make DESTDIR="${pkgdir}" install
+  make DESTDIR="$pkgdir" install
 
   # Remove unused udev helper
-  rm -rf "${pkgdir}/usr/lib/udev"
+  rm -r "$pkgdir/usr/lib/udev"
 
-  install -m755 -d "${pkgdir}/usr/lib/udev/hwdb.d"
-  install -m755 -d "${pkgdir}/usr/lib/udev/rules.d"
+  # Remove recursive symlink
+  rm "$pkgdir/usr/include/gphoto2/gphoto2"
 
-  LD_LIBRARY_PATH="${pkgdir}/usr/lib${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH" \
-  CAMLIBS="${pkgdir}/usr/lib/libgphoto2/${pkgver}" \
-  "${pkgdir}/usr/lib/libgphoto2/print-camera-list" hwdb > \
-  "${pkgdir}/usr/lib/udev/hwdb.d/20-gphoto.hwdb"
+  (
+cd "$pkgdir/usr/lib/libgphoto2"
 
-  LD_LIBRARY_PATH="${pkgdir}/usr/lib${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH" \
-  CAMLIBS="${pkgdir}/usr/lib/libgphoto2/${pkgver}" \
-  "${pkgdir}/usr/lib/libgphoto2/print-camera-list" udev-rules version 201 
> \
-  "${pkgdir}/usr/lib/udev/rules.d/40-gphoto.rules"
+export 
LD_LIBRARY_PATH="$pkgdir/usr/lib${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH"
+export CAMLIBS="$PWD/$pkgver"
 
-  # Remove recursive symlink
-  rm -fv "${pkgdir}/usr/include/gphoto2/gphoto2"
+./print-camera-list hwdb \
+  | install -Dm644 /dev/stdin "$pkgdir/usr/lib/udev/hwdb.d/20-gphoto.hwdb"
+./print-camera-list udev-rules version 201 \
+  | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/udev/rules.d/40-gphoto.rules"
+  )
 }


[arch-commits] Commit in lib32-flac/repos/multilib-x86_64 (4 files)

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 21:43:32
  Author: heftig
Revision: 215267

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-flac/repos/multilib-x86_64/PKGBUILD
(from rev 215266, lib32-flac/trunk/PKGBUILD)
  lib32-flac/repos/multilib-x86_64/flac-1.2.1-gcc-4.3-includes.patch
(from rev 215266, lib32-flac/trunk/flac-1.2.1-gcc-4.3-includes.patch)
Deleted:
  lib32-flac/repos/multilib-x86_64/PKGBUILD
  lib32-flac/repos/multilib-x86_64/flac-1.2.1-gcc-4.3-includes.patch

---+
 PKGBUILD  |   71 +---
 flac-1.2.1-gcc-4.3-includes.patch |   22 +--
 2 files changed, 46 insertions(+), 47 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-07 21:43:08 UTC (rev 215266)
+++ PKGBUILD2017-03-07 21:43:32 UTC (rev 215267)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jan "heftig" Steffens 
-
-_pkgbasename=flac
-pkgname=lib32-$_pkgbasename
-pkgver=1.3.1
-pkgrel=2
-pkgdesc="Free Lossless Audio Codec (32-bit)"
-arch=('x86_64')
-url="http://flac.sourceforge.net/";
-license=('custom:Xiph' 'LGPL' 'GPL' 'FDL')
-depends=('lib32-libogg' 'lib32-gcc-libs' $_pkgbasename)
-makedepends=('nasm' gcc-multilib)
-options=('!libtool' '!makeflags')
-source=(http://downloads.xiph.org/releases/flac/${_pkgbasename}-${pkgver}.tar.xz)
-sha1sums=('38e17439d11be26207e4af0ff50973815694b26f')
-
-build() {
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-
-  cd "${_pkgbasename}-${pkgver}"
-  ./configure --prefix=/usr --mandir=/usr/share/man --enable-shared \
-  --disable-rpath --libdir=/usr/lib32
-  make
-}
-
-package() {
-  cd "${_pkgbasename}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  rm -rf "${pkgdir}"/usr/{include,share,bin}
-  mkdir -p "$pkgdir/usr/share/licenses"
-  ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: lib32-flac/repos/multilib-x86_64/PKGBUILD (from rev 215266, 
lib32-flac/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-07 21:43:32 UTC (rev 215267)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+_pkgbasename=flac
+pkgname=lib32-$_pkgbasename
+pkgver=1.3.2
+pkgrel=1
+pkgdesc="Free Lossless Audio Codec (32-bit)"
+arch=('x86_64')
+url="http://flac.sourceforge.net/";
+license=('BSD' 'GPL')
+depends=('lib32-libogg' 'lib32-gcc-libs' $_pkgbasename)
+makedepends=('nasm' gcc-multilib)
+options=('!makeflags')
+source=(http://downloads.xiph.org/releases/flac/${_pkgbasename}-${pkgver}.tar.xz)
+sha1sums=('2bdbb56b128a780a5d998e230f2f4f6eb98f33ee')
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  cd "${_pkgbasename}-${pkgver}"
+  ./configure --prefix=/usr --disable-sse --libdir=/usr/lib32
+  make
+}
+
+package() {
+  cd "${_pkgbasename}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  rm -rf "${pkgdir}"/usr/{include,share,bin}
+  mkdir -p "$pkgdir/usr/share/licenses"
+  ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
+}

Deleted: flac-1.2.1-gcc-4.3-includes.patch
===
--- flac-1.2.1-gcc-4.3-includes.patch   2017-03-07 21:43:08 UTC (rev 215266)
+++ flac-1.2.1-gcc-4.3-includes.patch   2017-03-07 21:43:32 UTC (rev 215267)
@@ -1,11 +0,0 @@
-diff -Naur flac-1.2.1-orig/examples/cpp/encode/file/main.cpp 
flac-1.2.1/examples/cpp/encode/file/main.cpp
 flac-1.2.1-orig/examples/cpp/encode/file/main.cpp  2007-09-13 
09:58:03.0 -0600
-+++ flac-1.2.1/examples/cpp/encode/file/main.cpp   2007-11-18 
12:59:45.0 -0600
-@@ -30,6 +30,7 @@
- 
- #include 
- #include 
-+#include 
- #include "FLAC++/metadata.h"
- #include "FLAC++/encoder.h"
- 

Copied: lib32-flac/repos/multilib-x86_64/flac-1.2.1-gcc-4.3-includes.patch 
(from rev 215266, lib32-flac/trunk/flac-1.2.1-gcc-4.3-includes.patch)
===
--- flac-1.2.1-gcc-4.3-includes.patch   (rev 0)
+++ flac-1.2.1-gcc-4.3-includes.patch   2017-03-07 21:43:32 UTC (rev 215267)
@@ -0,0 +1,11 @@
+diff -Naur flac-1.2.1-orig/examples/cpp/encode/file/main.cpp 
flac-1.2.1/examples/cpp/encode/file/main.cpp
+--- flac-1.2.1-orig/examples/cpp/encode/file/main.cpp  2007-09-13 
09:58:03.0 -0600
 flac-1.2.1/examples/cpp/encode/file/main.cpp   2007-11-18 
12:59:45.0 -0600
+@@ -30,6 +30,7 @@
+ 
+ #include 
+ #include 
++#include 
+ #include "FLAC++/metadata.h"
+ #include "FLAC++/encoder.h"
+ 


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

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 21:43:08
  Author: heftig
Revision: 215266

1.3.2-1

Modified:
  lib32-flac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 21:42:22 UTC (rev 215265)
+++ PKGBUILD2017-03-07 21:43:08 UTC (rev 215266)
@@ -1,19 +1,19 @@
 # $Id$
-# Maintainer: Jan "heftig" Steffens 
+# Maintainer: Jan Alexander Steffens (heftig) 
 
 _pkgbasename=flac
 pkgname=lib32-$_pkgbasename
-pkgver=1.3.1
-pkgrel=2
+pkgver=1.3.2
+pkgrel=1
 pkgdesc="Free Lossless Audio Codec (32-bit)"
 arch=('x86_64')
 url="http://flac.sourceforge.net/";
-license=('custom:Xiph' 'LGPL' 'GPL' 'FDL')
+license=('BSD' 'GPL')
 depends=('lib32-libogg' 'lib32-gcc-libs' $_pkgbasename)
 makedepends=('nasm' gcc-multilib)
-options=('!libtool' '!makeflags')
+options=('!makeflags')
 
source=(http://downloads.xiph.org/releases/flac/${_pkgbasename}-${pkgver}.tar.xz)
-sha1sums=('38e17439d11be26207e4af0ff50973815694b26f')
+sha1sums=('2bdbb56b128a780a5d998e230f2f4f6eb98f33ee')
 
 build() {
   export CC="gcc -m32"
@@ -21,8 +21,7 @@
   export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
 
   cd "${_pkgbasename}-${pkgver}"
-  ./configure --prefix=/usr --mandir=/usr/share/man --enable-shared \
-  --disable-rpath --libdir=/usr/lib32
+  ./configure --prefix=/usr --disable-sse --libdir=/usr/lib32
   make
 }
 


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

2017-03-07 Thread Antonio Rojas
Date: Tuesday, March 7, 2017 @ 21:42:22
  Author: arojas
Revision: 215265

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  libshairport/repos/community-staging-i686/
  libshairport/repos/community-staging-i686/PKGBUILD
(from rev 215264, libshairport/trunk/PKGBUILD)
  libshairport/repos/community-staging-x86_64/
  libshairport/repos/community-staging-x86_64/PKGBUILD
(from rev 215264, libshairport/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   32 
 community-staging-x86_64/PKGBUILD |   32 
 2 files changed, 64 insertions(+)

Copied: libshairport/repos/community-staging-i686/PKGBUILD (from rev 215264, 
libshairport/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-07 21:42:22 UTC (rev 215265)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: BlackIkeEagle 
+
+pkgname=libshairport
+_developer='amejia1'
+_version=1.2.1.20121215
+_commithash='16395d8'
+pkgver=${_version}
+pkgrel=5
+pkgdesc="emulates an AirPort Express"
+arch=('i686' 'x86_64')
+url='https://github.com/amejia1/libshairport'
+license=('GPL')
+depends=('openssl' 'libao')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/amejia1/libshairport/tarball/$_commithash";)
+sha256sums=('98b73313d0a8f2abcb32e11f4fd4b422777a495cd62dbe881d5061b91959d1d5')
+
+_srcfolder=$_developer-$pkgname-$_commithash
+
+build() {
+  mv "$_srcfolder" "$pkgname-$pkgver"
+
+  cd "$pkgname-$pkgver"
+  autoreconf -vif
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Copied: libshairport/repos/community-staging-x86_64/PKGBUILD (from rev 215264, 
libshairport/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-07 21:42:22 UTC (rev 215265)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: BlackIkeEagle 
+
+pkgname=libshairport
+_developer='amejia1'
+_version=1.2.1.20121215
+_commithash='16395d8'
+pkgver=${_version}
+pkgrel=5
+pkgdesc="emulates an AirPort Express"
+arch=('i686' 'x86_64')
+url='https://github.com/amejia1/libshairport'
+license=('GPL')
+depends=('openssl' 'libao')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/amejia1/libshairport/tarball/$_commithash";)
+sha256sums=('98b73313d0a8f2abcb32e11f4fd4b422777a495cd62dbe881d5061b91959d1d5')
+
+_srcfolder=$_developer-$pkgname-$_commithash
+
+build() {
+  mv "$_srcfolder" "$pkgname-$pkgver"
+
+  cd "$pkgname-$pkgver"
+  autoreconf -vif
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}


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

2017-03-07 Thread Antonio Rojas
Date: Tuesday, March 7, 2017 @ 21:41:54
  Author: arojas
Revision: 215264

openssl 1.1 rebuild

Modified:
  libshairport/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 20:36:15 UTC (rev 215263)
+++ PKGBUILD2017-03-07 21:41:54 UTC (rev 215264)
@@ -6,7 +6,7 @@
 _version=1.2.1.20121215
 _commithash='16395d8'
 pkgver=${_version}
-pkgrel=4
+pkgrel=5
 pkgdesc="emulates an AirPort Express"
 arch=('i686' 'x86_64')
 url='https://github.com/amejia1/libshairport'


[arch-commits] Commit in ca-certificates/repos (5 files)

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 21:11:38
  Author: heftig
Revision: 290108

archrelease: copy trunk to testing-any

Added:
  ca-certificates/repos/testing-any/
  ca-certificates/repos/testing-any/PKGBUILD
(from rev 290107, ca-certificates/trunk/PKGBUILD)
  ca-certificates/repos/testing-any/update-ca-trust
(from rev 290107, ca-certificates/trunk/update-ca-trust)
  ca-certificates/repos/testing-any/update-ca-trust.8.txt
(from rev 290107, ca-certificates/trunk/update-ca-trust.8.txt)
  ca-certificates/repos/testing-any/update-ca-trust.hook
(from rev 290107, ca-certificates/trunk/update-ca-trust.hook)

---+
 PKGBUILD  |   54 +
 update-ca-trust   |   31 +
 update-ca-trust.8.txt |  265 
 update-ca-trust.hook  |   11 +
 4 files changed, 361 insertions(+)

Copied: ca-certificates/repos/testing-any/PKGBUILD (from rev 290107, 
ca-certificates/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2017-03-07 21:11:38 UTC (rev 290108)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Pierre Schmitz 
+
+pkgbase=ca-certificates
+pkgname=(ca-certificates-utils ca-certificates)
+pkgver=20170307
+pkgrel=1
+pkgdesc="Common CA certificates"
+url="http://pkgs.fedoraproject.org/cgit/rpms/ca-certificates.git";
+arch=(any)
+license=(GPL2)
+makedepends=(asciidoc p11-kit)
+source=(update-ca-trust update-ca-trust.8.txt update-ca-trust.hook)
+sha256sums=('857096d0cd82e0cb58622f8e427cec5eaa2d4e3ae32a3bb60c7292ceeabf9668'
+'38c10446738c1e99bc95e42fe844a9e95ea106795059fa769f3b4ba82b395929'
+'15eb04e757b7c61c8ee1540fd697771b8ae8e31f92cfb39c260b423101e21af8')
+
+build() {
+   asciidoc.py -v -d manpage -b docbook update-ca-trust.8.txt
+   xsltproc --nonet -o update-ca-trust.8 
/etc/asciidoc/docbook-xsl/manpage.xsl update-ca-trust.8.xml
+}
+
+package_ca-certificates-utils() {
+   pkgdesc+=" (utilities)"
+   depends=('bash' 'coreutils' 'findutils' 'p11-kit>=0.23.1')
+   provides=(ca-certificates ca-certificates-java)
+   conflicts=(ca-certificates-java)
+   replaces=(ca-certificates-java)
+
+   install -D update-ca-trust "$pkgdir/usr/bin/update-ca-trust"
+   install -Dm644 update-ca-trust.8 
"$pkgdir/usr/share/man/man8/update-ca-trust.8"
+   install -Dm644 update-ca-trust.hook 
"$pkgdir/usr/share/libalpm/hooks/update-ca-trust.hook"
+
+   # Trust source directories
+   install -d 
"$pkgdir"/{etc,usr/share}/$pkgbase/trust-source/{anchors,blacklist}
+
+   # Directories used by update-ca-trust (aka "trust extract-compat")
+   install -d "$pkgdir"/etc/{ssl/certs/java,$pkgbase/extracted}
+
+   # Compatibility link for OpenSSL using /etc/ssl as CAdir
+   # Used in preference to the individual links in /etc/ssl/certs
+   ln -sr "$pkgdir/etc/$pkgbase/extracted/tls-ca-bundle.pem" 
"$pkgdir/etc/ssl/cert.pem"
+
+   # Compatiblity link for legacy bundle
+   ln -sr "$pkgdir/etc/$pkgbase/extracted/tls-ca-bundle.pem" 
"$pkgdir/etc/ssl/certs/ca-certificates.crt"
+}
+
+package_ca-certificates() {
+   pkgdesc+=" (default providers)"
+   depends=(ca-certificates-{mozilla,cacert})
+}
+
+# vim:set noet ts=8 sw=8 sts=0:

Copied: ca-certificates/repos/testing-any/update-ca-trust (from rev 290107, 
ca-certificates/trunk/update-ca-trust)
===
--- testing-any/update-ca-trust (rev 0)
+++ testing-any/update-ca-trust 2017-03-07 21:11:38 UTC (rev 290108)
@@ -0,0 +1,31 @@
+#!/bin/bash
+
+# At this time, while this script is trivial, we ignore any parameters given.
+# However, for backwards compatibility reasons, future versions of this script 
must
+# support the syntax "update-ca-trust extract" trigger the generation of output
+# files in $DEST.
+
+DEST=/etc/ca-certificates/extracted
+
+extract() {
+  trust extract --overwrite "$@"
+}
+
+# The directory-format extractors remove all files in the target directory, 
but not directories or files therein
+extract --format=pem-directory-hash   --filter=ca-anchors 
--purpose=server-auth  $DEST/cadir
+extract --comment --format=pem-bundle --filter=ca-anchors 
--purpose=server-auth  $DEST/tls-ca-bundle.pem
+extract --comment --format=pem-bundle --filter=ca-anchors --purpose=email  
  $DEST/email-ca-bundle.pem
+extract --comment --format=pem-bundle --filter=ca-anchors 
--purpose=code-signing $DEST/objsign-ca-bundle.pem
+extract --comment --format=openssl-bundle --filter=certificates 
$DEST/ca-bundle.trust.crt
+
+# We don't 

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

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 21:11:06
  Author: heftig
Revision: 290107

20170307-1

Modified:
  ca-certificates/trunk/PKGBUILD
  ca-certificates/trunk/update-ca-trust
Deleted:
  ca-certificates/trunk/ca-certificates-utils.install

---+
 PKGBUILD  |   30 --
 ca-certificates-utils.install |   14 --
 update-ca-trust   |   20 
 3 files changed, 28 insertions(+), 36 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 21:05:26 UTC (rev 290106)
+++ PKGBUILD2017-03-07 21:11:06 UTC (rev 290107)
@@ -4,15 +4,15 @@
 
 pkgbase=ca-certificates
 pkgname=(ca-certificates-utils ca-certificates)
-pkgver=20160507
+pkgver=20170307
 pkgrel=1
-pkgdesc='Common CA certificates'
-arch=('any')
-url='http://pkgs.fedoraproject.org/cgit/ca-certificates.git'
-license=('GPL2')
-makedepends=('asciidoc' 'p11-kit')
+pkgdesc="Common CA certificates"
+url="http://pkgs.fedoraproject.org/cgit/rpms/ca-certificates.git";
+arch=(any)
+license=(GPL2)
+makedepends=(asciidoc p11-kit)
 source=(update-ca-trust update-ca-trust.8.txt update-ca-trust.hook)
-sha256sums=('746d2cce8ec107fa3b7aaa246d69a7e238c3d2ac5cd82c5aeed996fe9cb0a874'
+sha256sums=('857096d0cd82e0cb58622f8e427cec5eaa2d4e3ae32a3bb60c7292ceeabf9668'
 '38c10446738c1e99bc95e42fe844a9e95ea106795059fa769f3b4ba82b395929'
 '15eb04e757b7c61c8ee1540fd697771b8ae8e31f92cfb39c260b423101e21af8')
 
@@ -24,24 +24,26 @@
 package_ca-certificates-utils() {
pkgdesc+=" (utilities)"
depends=('bash' 'coreutils' 'findutils' 'p11-kit>=0.23.1')
-   install=ca-certificates-utils.install
provides=(ca-certificates ca-certificates-java)
conflicts=(ca-certificates-java)
replaces=(ca-certificates-java)
 
-   install -D update-ca-trust "${pkgdir}/usr/bin/update-ca-trust"
-   install -Dm644 update-ca-trust.8 
"${pkgdir}/usr/share/man/man8/update-ca-trust.8"
-   install -Dm644 update-ca-trust.hook 
"${pkgdir}/usr/share/libalpm/hooks/update-ca-trust.hook"
+   install -D update-ca-trust "$pkgdir/usr/bin/update-ca-trust"
+   install -Dm644 update-ca-trust.8 
"$pkgdir/usr/share/man/man8/update-ca-trust.8"
+   install -Dm644 update-ca-trust.hook 
"$pkgdir/usr/share/libalpm/hooks/update-ca-trust.hook"
 
# Trust source directories
-   install -d 
"${pkgdir}"/{etc,usr/share}/${pkgbase}/trust-source/{anchors,blacklist}
+   install -d 
"$pkgdir"/{etc,usr/share}/$pkgbase/trust-source/{anchors,blacklist}
 
# Directories used by update-ca-trust (aka "trust extract-compat")
-   install -d "${pkgdir}"/etc/{ssl/certs/java,${pkgbase}/extracted}
+   install -d "$pkgdir"/etc/{ssl/certs/java,$pkgbase/extracted}
 
# Compatibility link for OpenSSL using /etc/ssl as CAdir
# Used in preference to the individual links in /etc/ssl/certs
-   ln -s ../${pkgbase}/extracted/tls-ca-bundle.pem 
"${pkgdir}/etc/ssl/cert.pem"
+   ln -sr "$pkgdir/etc/$pkgbase/extracted/tls-ca-bundle.pem" 
"$pkgdir/etc/ssl/cert.pem"
+
+   # Compatiblity link for legacy bundle
+   ln -sr "$pkgdir/etc/$pkgbase/extracted/tls-ca-bundle.pem" 
"$pkgdir/etc/ssl/certs/ca-certificates.crt"
 }
 
 package_ca-certificates() {

Deleted: ca-certificates-utils.install
===
--- ca-certificates-utils.install   2017-03-07 21:05:26 UTC (rev 290106)
+++ ca-certificates-utils.install   2017-03-07 21:11:06 UTC (rev 290107)
@@ -1,14 +0,0 @@
-export LC_ALL=C
-
-post_install() {
-   # This should be a normally packaged file, but that would
-   # require user intervention at upgrade
-   ln -srf etc/ca-certificates/extracted/tls-ca-bundle.pem \
-   etc/ssl/certs/ca-certificates.crt
-}
-
-pre_remove() {
-   rm -f etc/ssl/certs/{ca-certificates.crt,java/cacerts}
-}
-
-# vim:set noet ts=8 sw=8 sts=0:

Modified: update-ca-trust
===
--- update-ca-trust 2017-03-07 21:05:26 UTC (rev 290106)
+++ update-ca-trust 2017-03-07 21:11:06 UTC (rev 290107)
@@ -1,18 +1,22 @@
 #!/bin/bash
 
 # At this time, while this script is trivial, we ignore any parameters given.
-# However, for backwards compatibility reasons, future versions of this script 
must 
-# support the syntax "update-ca-trust extract" trigger the generation of 
output 
+# However, for backwards compatibility reasons, future versions of this script 
must
+# support the syntax "update-ca-t

[arch-commits] Commit in nss/repos (24 files)

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 21:05:26
  Author: heftig
Revision: 290106

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  nss/repos/testing-i686/PKGBUILD
(from rev 290105, nss/trunk/PKGBUILD)
  nss/repos/testing-i686/bundle.sh
(from rev 290105, nss/trunk/bundle.sh)
  nss/repos/testing-i686/certdata2pem.py
(from rev 290105, nss/trunk/certdata2pem.py)
  nss/repos/testing-i686/nss-config.in
(from rev 290105, nss/trunk/nss-config.in)
  nss/repos/testing-i686/nss-config.xml
(from rev 290105, nss/trunk/nss-config.xml)
  nss/repos/testing-i686/nss.pc.in
(from rev 290105, nss/trunk/nss.pc.in)
  nss/repos/testing-x86_64/PKGBUILD
(from rev 290105, nss/trunk/PKGBUILD)
  nss/repos/testing-x86_64/bundle.sh
(from rev 290105, nss/trunk/bundle.sh)
  nss/repos/testing-x86_64/certdata2pem.py
(from rev 290105, nss/trunk/certdata2pem.py)
  nss/repos/testing-x86_64/nss-config.in
(from rev 290105, nss/trunk/nss-config.in)
  nss/repos/testing-x86_64/nss-config.xml
(from rev 290105, nss/trunk/nss-config.xml)
  nss/repos/testing-x86_64/nss.pc.in
(from rev 290105, nss/trunk/nss.pc.in)
Deleted:
  nss/repos/testing-i686/PKGBUILD
  nss/repos/testing-i686/bundle.sh
  nss/repos/testing-i686/certdata2pem.py
  nss/repos/testing-i686/nss-config.in
  nss/repos/testing-i686/nss-config.xml
  nss/repos/testing-i686/nss.pc.in
  nss/repos/testing-x86_64/PKGBUILD
  nss/repos/testing-x86_64/bundle.sh
  nss/repos/testing-x86_64/certdata2pem.py
  nss/repos/testing-x86_64/nss-config.in
  nss/repos/testing-x86_64/nss-config.xml
  nss/repos/testing-x86_64/nss.pc.in

+
 /PKGBUILD  |  240 
 /bundle.sh |   44 ++
 /certdata2pem.py   |  756 +++
 /nss-config.in |  290 ++
 /nss-config.xml|  264 +
 /nss.pc.in |   22 +
 testing-i686/PKGBUILD  |  122 --
 testing-i686/bundle.sh |   54 --
 testing-i686/certdata2pem.py   |  200 --
 testing-i686/nss-config.in |  145 ---
 testing-i686/nss-config.xml|  132 --
 testing-i686/nss.pc.in |   11 
 testing-x86_64/PKGBUILD|  122 --
 testing-x86_64/bundle.sh   |   54 --
 testing-x86_64/certdata2pem.py |  200 --
 testing-x86_64/nss-config.in   |  145 ---
 testing-x86_64/nss-config.xml  |  132 --
 testing-x86_64/nss.pc.in   |   11 
 18 files changed, 1616 insertions(+), 1328 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2017-03-07 21:02:52 UTC (rev 290105)
+++ testing-i686/PKGBUILD   2017-03-07 21:05:26 UTC (rev 290106)
@@ -1,122 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgbase=nss
-pkgname=(nss ca-certificates-mozilla)
-pkgver=3.29.3
-pkgrel=1
-pkgdesc="Network Security Services"
-url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS";
-arch=(i686 x86_64)
-license=('MPL' 'GPL')
-_nsprver=4.12
-depends=("nspr>=${_nsprver}" 'sqlite' 'zlib' 'sh' 'p11-kit')
-makedepends=('perl' 'python2' 'xmlto' 'docbook-xsl')
-options=('!strip' '!makeflags' 'staticlibs')
-source=("https://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_${pkgver//./_}_RTM/src/${pkgbase}-${pkgver}.tar.gz";
-certdata2pem.py bundle.sh nss.pc.in nss-config.in nss-config.xml)
-sha256sums=('35ddcc31251ef829994efeee925011aa1414e32be7e388236970255aa3c8e1eb'
-'2a2ff9131c21fa3b23ad7c7a2f069eabc783e56c6eb05419ac5f365f48dea0fc'
-'045f520403f715a4cc7f3607b4e2c9bcc88fee5bce58d462fddaa2fdb0e4c180'
-'f2208c4f70373ff9b60f53d733f8071d4e390c384b776dfc04bf26c306882faf'
-'e44ac5095b4d88f24ec7b2e6a9f1581560bd3ad41a3d198596d67ef22f67adb9'
-'98ace873c63e8e870286bce3ed53249aa2655cc1f53e7049061476e650ab06f1')
-
-prepare() {
-  mkdir certs
-
-  echo -n "$(date +"%e %B %Y")" >date.xml
-  echo -n "$pkgver" >version.xml
-
-  cd nss-$pkgver
-
-  # Respect LDFLAGS
-  sed -e 's/\$(MKSHLIB) -o/\$(MKSHLIB) \$(LDFLAGS) -o/' \
-  -i nss/coreconf/rules.mk
-
-  ln -sr nss/lib/ckfw/builtins/certdata.txt ../certs/
-  ln -sr nss/lib/ckfw/builtins/nssckbi.h ../certs/
-}
-
-
-build() {
-  xmlto man nss-config.xml
-
-  cd certs
-  python2 ../certdata2pem.py
-
-  cd ..
-  sh bundle.sh
-
-  cd nss-$pkgver/nss
-  export BUILD_OPT=1
-  export NSS_USE_SYSTEM_SQLITE=1
-  export NSS_ALLOW_SSLKEYLOGFILE=1
-  export NSS_ENABLE_ECC=1
-  export NSPR_INCLUDE_DIR="`nspr-config --includedir`"
-  export NSPR_LIB_DIR="`nspr-config --libdir`"
-  export XCFLAGS="${CFLAGS}"
-
-  [[ $CARCH == x86_64 ]] && export USE_64=1
-
-  make -C coreconf
-  make -C lib/dbm
-  make
-  make clean_docs build_docs
-}
-
-package_nss() {
-  cd nss-$pkgver
-
-  install -d "$pkgdir"/usr/{bin,include/nss,lib/pkgconfig,share/man/man1}
-
-  NSS_VMAJOR=$(grep '#define.*NSS_VMAJOR' nss/lib/ns

[arch-commits] Commit in nss/trunk (PKGBUILD bundle.sh certdata2pem.py)

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 21:02:52
  Author: heftig
Revision: 290105

3.29.3-2: Update using current ca-certificates code

Modified:
  nss/trunk/PKGBUILD
  nss/trunk/bundle.sh
  nss/trunk/certdata2pem.py

-+
 PKGBUILD|   12 +--
 bundle.sh   |   42 +--
 certdata2pem.py |  198 +++---
 3 files changed, 198 insertions(+), 54 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 20:23:57 UTC (rev 290104)
+++ PKGBUILD2017-03-07 21:02:52 UTC (rev 290105)
@@ -4,7 +4,7 @@
 pkgbase=nss
 pkgname=(nss ca-certificates-mozilla)
 pkgver=3.29.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Network Security Services"
 url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS";
 arch=(i686 x86_64)
@@ -16,8 +16,8 @@
 
source=("https://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_${pkgver//./_}_RTM/src/${pkgbase}-${pkgver}.tar.gz";
 certdata2pem.py bundle.sh nss.pc.in nss-config.in nss-config.xml)
 sha256sums=('35ddcc31251ef829994efeee925011aa1414e32be7e388236970255aa3c8e1eb'
-'2a2ff9131c21fa3b23ad7c7a2f069eabc783e56c6eb05419ac5f365f48dea0fc'
-'045f520403f715a4cc7f3607b4e2c9bcc88fee5bce58d462fddaa2fdb0e4c180'
+'512b12a2f13129be62c008b4df0153f527dd7d71c2c5183de99dfa2a1c49dd8a'
+'3bfadf722da6773bdabdd25bdf78158648043d1b7e57615574f189a88ca865dd'
 'f2208c4f70373ff9b60f53d733f8071d4e390c384b776dfc04bf26c306882faf'
 'e44ac5095b4d88f24ec7b2e6a9f1581560bd3ad41a3d198596d67ef22f67adb9'
 '98ace873c63e8e870286bce3ed53249aa2655cc1f53e7049061476e650ab06f1')
@@ -115,8 +115,6 @@
   pkgdesc="Mozilla's set of trusted CA certificates"
   depends=(ca-certificates-utils)
 
-  local _certdir="$pkgdir/usr/share/ca-certificates/trust-source"
-  install -Dm644 ca-bundle.trust.crt "$_certdir/mozilla.trust.crt"
-  install -Dm644 ca-bundle.neutral-trust.crt 
"$_certdir/mozilla.neutral-trust.crt"
-  install -Dm644 ca-bundle.supplement.p11-kit 
"$_certdir/mozilla.supplement.p11-kit"
+  install -Dm644 ca-bundle.trust.p11-kit \
+"$pkgdir/usr/share/ca-certificates/trust-source/mozilla.trust.p11-kit"
 }

Modified: bundle.sh
===
--- bundle.sh   2017-03-07 20:23:57 UTC (rev 290104)
+++ bundle.sh   2017-03-07 21:02:52 UTC (rev 290105)
@@ -5,11 +5,8 @@
   cat < ca-bundle.trust.crt
-for f in certs/*.crt; do 
-  echo "processing $f"
-  tbits=`sed -n '/^# openssl-trust/{s/^.*=//;p;}' $f`
-  distbits=`sed -n '/^# openssl-distrust/{s/^.*=//;p;}' $f`
-  alias=`sed -n '/^# alias=/{s/^.*=//;p;q;}' $f | sed "s/'//g" | sed 's/"//g'`
-  targs=""
-  if [ -n "$tbits" ]; then
-for t in $tbits; do
-   targs="${targs} -addtrust $t"
-done
-  fi
-  if [ -n "$distbits" ]; then
-for t in $distbits; do
-   targs="${targs} -addreject $t"
-done
-  fi
-  if [ -n "$targs" ]; then
-echo "trust flags $targs for $f" >> info.trust
-openssl x509 -text -in "$f" -trustout $targs -setalias "$alias" >> 
ca-bundle.trust.crt
-  else
-echo "no trust flags for $f" >> info.notrust
-# p11-kit-trust defines empty trust lists as "rejected for all purposes".
-# That's why we use the simple file format
-#   (BEGIN CERTIFICATE, no trust information)
-# because p11-kit-trust will treat it as a certificate with neutral trust.
-# This means we cannot use the -setalias feature for neutral trust certs.
-openssl x509 -text -in "$f" >> ca-bundle.neutral-trust.crt
-  fi
-done
+) > ca-bundle.trust.p11-kit
 
-for p in certs/*.p11-kit; do 
-  cat "$p" >> ca-bundle.supplement.p11-kit
+for p in certs/*.tmp-p11-kit; do 
+  cat "$p" >> ca-bundle.trust.p11-kit
 done

Modified: certdata2pem.py
===
--- certdata2pem.py 2017-03-07 20:23:57 UTC (rev 290104)
+++ certdata2pem.py 2017-03-07 21:02:52 UTC (rev 290105)
@@ -27,6 +27,7 @@
 import sys
 import textwrap
 import urllib
+import subprocess
 
 objects = []
 
@@ -113,6 +114,17 @@
 serial = printable_serial(obj)
 return label + ":" + serial
 
+def write_cert_ext_to_file(f, oid, value, public_key):
+f.write("[p11-kit-object-v1]\n")
+f.write("label: ");
+f.write(tobj['CKA_LABEL'])
+f.write("\n")
+f.write("class: x-certificate-extension\n");
+f.write("object-id: " + oid + "\n")
+f.write("value: \"" + value + "\"\n")
+f.write("modifiable: false\n");
+f.write(public_key)
+
 trust_types = {
   "CKA_TRUST_DIGITAL_SIGNATURE": "digital-signature",
   "CKA_TRUST_NON_REPUDIATION": "non-repudiation",
@@ -132,6 +144,18 @@
   "CKA_TRUST_STEP_UP_APPROVED": "step-up-approved",
 }
 
+legacy_trust_types = {
+  "LEGACY_CKA_TRUST_SERVER_AUTH": "server-auth",
+  "LEGACY_CKA_TRUST_CODE_SIGNING": "code-signing",
+  "LEGACY_CKA_TRUST_EMAIL_PROTECTION": "email-protection",
+}
+
+legacy_to_real_trust

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

2017-03-07 Thread Jaroslav Lichtblau
Date: Tuesday, March 7, 2017 @ 20:36:15
  Author: jlichtblau
Revision: 215263

archrelease: copy trunk to community-i686, community-x86_64

Added:
  manaplus/repos/community-i686/PKGBUILD
(from rev 215262, manaplus/trunk/PKGBUILD)
  manaplus/repos/community-x86_64/PKGBUILD
(from rev 215262, manaplus/trunk/PKGBUILD)
Deleted:
  manaplus/repos/community-i686/PKGBUILD
  manaplus/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   64 
 community-i686/PKGBUILD   |   32 --
 community-x86_64/PKGBUILD |   32 --
 3 files changed, 64 insertions(+), 64 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-07 20:34:39 UTC (rev 215262)
+++ community-i686/PKGBUILD 2017-03-07 20:36:15 UTC (rev 215263)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Bjorn Lindeijer 
-# Contributor: Mateusz Herych 
-# Contributor: Jesse McClure 
-
-pkgname=manaplus
-pkgver=1.7.1.21
-pkgrel=1
-pkgdesc="Free OpenSource 2D MMORPG client for Evol Online, The mana world and 
similar servers"
-arch=('i686' 'x86_64')
-url="https://manaplus.org/";
-license=('GPL')
-depends=('glu' 'libxml2' 'physfs' 'sdl_image' 'sdl_mixer' 'sdl_net' 'sdl_ttf' 
'sdl_gfx' 'curl')
-makedepends=('mesa')
-replaces=('tmw')
-source=($pkgname-$pkgver.tar.gz::https://github.com/ManaPlus/ManaPlus/archive/v$pkgver.tar.gz)
-sha256sums=('caffee956708e16ccaa931feca4967970e888db9d065648e27435afa59e83360')
-
-build() {
-  cd ManaPlus-$pkgver
-
-  autoreconf -i
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ManaPlus-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: manaplus/repos/community-i686/PKGBUILD (from rev 215262, 
manaplus/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-07 20:36:15 UTC (rev 215263)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Bjorn Lindeijer 
+# Contributor: Mateusz Herych 
+# Contributor: Jesse McClure 
+
+pkgname=manaplus
+pkgver=1.7.3.4
+pkgrel=1
+pkgdesc="Free OpenSource 2D MMORPG client for Evol Online, The mana world and 
similar servers"
+arch=('i686' 'x86_64')
+url="https://manaplus.org/";
+license=('GPL')
+depends=('glu' 'libxml2' 'physfs' 'sdl_image' 'sdl_mixer' 'sdl_net' 'sdl_ttf' 
'sdl_gfx' 'curl')
+makedepends=('mesa')
+replaces=('tmw')
+source=($pkgname-$pkgver.tar.gz::https://github.com/ManaPlus/ManaPlus/archive/v$pkgver.tar.gz)
+sha256sums=('484c2d98d0def6170094bc358a5bb17570becf1198b42044563a0f9900637935')
+
+build() {
+  cd ManaPlus-$pkgver
+
+  autoreconf -i
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ManaPlus-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-03-07 20:34:39 UTC (rev 215262)
+++ community-x86_64/PKGBUILD   2017-03-07 20:36:15 UTC (rev 215263)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Bjorn Lindeijer 
-# Contributor: Mateusz Herych 
-# Contributor: Jesse McClure 
-
-pkgname=manaplus
-pkgver=1.7.1.21
-pkgrel=1
-pkgdesc="Free OpenSource 2D MMORPG client for Evol Online, The mana world and 
similar servers"
-arch=('i686' 'x86_64')
-url="https://manaplus.org/";
-license=('GPL')
-depends=('glu' 'libxml2' 'physfs' 'sdl_image' 'sdl_mixer' 'sdl_net' 'sdl_ttf' 
'sdl_gfx' 'curl')
-makedepends=('mesa')
-replaces=('tmw')
-source=($pkgname-$pkgver.tar.gz::https://github.com/ManaPlus/ManaPlus/archive/v$pkgver.tar.gz)
-sha256sums=('caffee956708e16ccaa931feca4967970e888db9d065648e27435afa59e83360')
-
-build() {
-  cd ManaPlus-$pkgver
-
-  autoreconf -i
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ManaPlus-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: manaplus/repos/community-x86_64/PKGBUILD (from rev 215262, 
manaplus/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-07 20:36:15 UTC (rev 215263)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Bjorn Lindeijer 
+# Contributor: Mateusz Herych 
+# Contributor: Jesse McClure 
+
+pkgname=manaplus
+pkgver=1.7.3.4
+pkgrel=1
+pkgdesc="Free OpenSource 2D MMORPG client for Evol Online, The mana world and 
similar servers"
+arch=('i686' 'x86_64')
+url="https://manaplus.org/";
+license=('GPL')
+depends=('glu' 'libxml2' 'physfs' 'sdl_image' 'sdl_mixer' 'sdl_net' 'sdl_ttf' 
'sdl_gfx' 'curl')
+makedepends=('mesa')
+replaces=('tmw')
+source=($pkgname-$pkgver.tar.gz::https://github.com/ManaPlus/ManaPlus/archive/v$pkgver.tar.gz)
+sha256sums=('484c2d98d0def6170094bc358a5bb17570b

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

2017-03-07 Thread Jaroslav Lichtblau
Date: Tuesday, March 7, 2017 @ 20:34:39
  Author: jlichtblau
Revision: 215262

upgpkg: manaplus 1.7.3.4-1 - new upstream release

Modified:
  manaplus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 20:20:56 UTC (rev 215261)
+++ PKGBUILD2017-03-07 20:34:39 UTC (rev 215262)
@@ -5,7 +5,7 @@
 # Contributor: Jesse McClure 
 
 pkgname=manaplus
-pkgver=1.7.1.21
+pkgver=1.7.3.4
 pkgrel=1
 pkgdesc="Free OpenSource 2D MMORPG client for Evol Online, The mana world and 
similar servers"
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 makedepends=('mesa')
 replaces=('tmw')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/ManaPlus/ManaPlus/archive/v$pkgver.tar.gz)
-sha256sums=('caffee956708e16ccaa931feca4967970e888db9d065648e27435afa59e83360')
+sha256sums=('484c2d98d0def6170094bc358a5bb17570becf1198b42044563a0f9900637935')
 
 build() {
   cd ManaPlus-$pkgver


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

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 20:23:57
  Author: heftig
Revision: 290104

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  p11-kit/repos/testing-i686/
  p11-kit/repos/testing-i686/PKGBUILD
(from rev 290103, p11-kit/trunk/PKGBUILD)
  p11-kit/repos/testing-i686/libnssckbi-compat.patch
(from rev 290103, p11-kit/trunk/libnssckbi-compat.patch)
  p11-kit/repos/testing-x86_64/
  p11-kit/repos/testing-x86_64/PKGBUILD
(from rev 290103, p11-kit/trunk/PKGBUILD)
  p11-kit/repos/testing-x86_64/libnssckbi-compat.patch
(from rev 290103, p11-kit/trunk/libnssckbi-compat.patch)

+
 testing-i686/PKGBUILD  |   63 +++
 testing-i686/libnssckbi-compat.patch   |   57 
 testing-x86_64/PKGBUILD|   63 +++
 testing-x86_64/libnssckbi-compat.patch |   57 
 4 files changed, 240 insertions(+)

Copied: p11-kit/repos/testing-i686/PKGBUILD (from rev 290103, 
p11-kit/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-03-07 20:23:57 UTC (rev 290104)
@@ -0,0 +1,63 @@
+# $Id$
+# Contributor: Ionut Biru 
+
+pkgname=p11-kit
+pkgver=0.23.5
+pkgrel=1
+pkgdesc="Provides a way to load and enumerate PKCS#11 modules"
+arch=(i686 x86_64)
+url="https://p11-glue.freedesktop.org";
+license=(BSD)
+depends=(glibc libtasn1 libffi)
+makedepends=(gtk-doc git)
+_commit=817a1c67c407850ab1756fdacb1c38e4bded5509  # tags/0.23.5^0
+source=("git+https://github.com/p11-glue/p11-kit#commit=$_commit";
+libnssckbi-compat.patch)
+sha256sums=('SKIP'
+'8f763cdbc6c0ca6c5a7898f9fd6f3018b7ac5b1aca36f67c6c813343c2962962')
+validpgpkeys=('C0F67099B808FB063E2C81117BFB1108D92765AF')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  # Build and install an additional library (libnssckbi-p11-kit.so) which
+  # is a copy of p11-kit-trust.so but uses the same label for root certs as
+  # libnssckbi.so ("Builtin Object Token" instead of "Default Trust")
+  # https://bugs.freedesktop.org/show_bug.cgi?id=66161
+  patch -Np1 -i ../libnssckbi-compat.patch
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/usr/lib \
+--enable-doc \
+--with-module-path=/usr/lib/pkcs11 \
+
--with-trust-paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source
+  make
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  ln -srf "$pkgdir/usr/bin/update-ca-trust" 
"$pkgdir/usr/lib/p11-kit/trust-extract-compat"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: p11-kit/repos/testing-i686/libnssckbi-compat.patch (from rev 290103, 
p11-kit/trunk/libnssckbi-compat.patch)
===
--- testing-i686/libnssckbi-compat.patch(rev 0)
+++ testing-i686/libnssckbi-compat.patch2017-03-07 20:23:57 UTC (rev 
290104)
@@ -0,0 +1,57 @@
+diff -upr p11-kit-0.23.1.orig/trust/Makefile.am 
p11-kit-0.23.1/trust/Makefile.am
+--- p11-kit-0.23.1.orig/trust/Makefile.am  2014-11-12 12:58:50.0 
+0200
 p11-kit-0.23.1/trust/Makefile.am   2015-03-30 16:43:35.275993032 +0300
+@@ -61,6 +61,20 @@ p11_kit_trust_la_LDFLAGS = \
+ 
+ p11_kit_trust_la_SOURCES = $(TRUST_SRCS)
+ 
++libnssckbi_compatdir = $(libdir)
++libnssckbi_compat_LTLIBRARIES = \
++  libnssckbi-p11-kit.la
++
++libnssckbi_p11_kit_la_CFLAGS = \
++  -DLIBNSSCKBI_COMPAT \
++  $(p11_kit_trust_la_CFLAGS)
++
++libnssckbi_p11_kit_la_LIBADD = $(p11_kit_trust_la_LIBADD)
++
++libnssckbi_p11_kit_la_LDFLAGS = $(p11_kit_trust_la_LDFLAGS)
++
++libnssckbi_p11_kit_la_SOURCES = $(p11_kit_trust_la_SOURCES)
++
+ libtrust_testable_la_LDFLAGS = \
+   -no-undefined
+ 
+diff -upr p11-kit-0.23.1.orig/trust/module.c p11-kit-0.23.1/trust/module.c
+--- p11-kit-0.23.1.orig/trust/module.c 2014-12-16 12:24:01.0 +0200
 p11-kit-0.23.1/trust/module.c  2015-03-30 16:48:41.370360130 +0300
+@@ -196,7 +196,11 @@ create_tokens_inlock (p11_array *tokens,
+   const char *label;
+   } labels[] = {
+   { "~/", "User Trust" },
++#ifdef LIBNSSCKBI_COMPAT
++  { DATA_DIR, "Builtin Object Token" },
++#else
+   { DATA_DIR, "Default Trust" },
++#endif
+   { SYSCONFDIR, "System Trust" },
+   { NULL },
+   };
+@@ -521,9 +525,15 @@ sys_C_GetSlotInfo (CK_SLOT_ID id,
+   info->flags = CKF_TOKEN_PRESENT;
+   strncpy ((char*)info->manufacturerID, MANUFACTURER_ID, 32);
+ 
+-  /* If too long, co

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

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 20:23:22
  Author: heftig
Revision: 290103

0.23.5-1

Modified:
  p11-kit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 17:18:14 UTC (rev 290102)
+++ PKGBUILD2017-03-07 20:23:22 UTC (rev 290103)
@@ -1,24 +1,29 @@
 # $Id$
-# Maintainer: Ionut Biru 
+# Contributor: Ionut Biru 
 
 pkgname=p11-kit
-pkgver=0.23.2
+pkgver=0.23.5
 pkgrel=1
-pkgdesc="Library to work with PKCS#11 modules"
+pkgdesc="Provides a way to load and enumerate PKCS#11 modules"
 arch=(i686 x86_64)
-url="http://p11-glue.freedesktop.org";
-license=('BSD')
-depends=('glibc' 'libtasn1' 'libffi')
-makedepends=('gtk-doc')
-source=($url/releases/$pkgname-$pkgver.tar.gz{,.sig}
+url="https://p11-glue.freedesktop.org";
+license=(BSD)
+depends=(glibc libtasn1 libffi)
+makedepends=(gtk-doc git)
+_commit=817a1c67c407850ab1756fdacb1c38e4bded5509  # tags/0.23.5^0
+source=("git+https://github.com/p11-glue/p11-kit#commit=$_commit";
 libnssckbi-compat.patch)
-sha256sums=('ba726ea8303c97467a33fca50ee79b7b35212964be808ecf9b145e9042fdfaf0'
-'SKIP'
+sha256sums=('SKIP'
 '8f763cdbc6c0ca6c5a7898f9fd6f3018b7ac5b1aca36f67c6c813343c2962962')
 validpgpkeys=('C0F67099B808FB063E2C81117BFB1108D92765AF')
 
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
 prepare() {
-  cd $pkgname-$pkgver
+  cd $pkgname
 
   # Build and install an additional library (libnssckbi-p11-kit.so) which
   # is a copy of p11-kit-trust.so but uses the same label for root certs as
@@ -26,15 +31,16 @@
   # https://bugs.freedesktop.org/show_bug.cgi?id=66161
   patch -Np1 -i ../libnssckbi-compat.patch
 
-  autoreconf -vi
+  NOCONFIGURE=1 ./autogen.sh
 }
 
 build() {
-  cd $pkgname-$pkgver
+  cd $pkgname
 
-  ./configure \
---prefix=/usr \
+  ./configure --prefix=/usr \
 --sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/usr/lib \
 --enable-doc \
 --with-module-path=/usr/lib/pkcs11 \
 
--with-trust-paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source
@@ -42,14 +48,14 @@
 }
 
 check() {
-  cd $pkgname-$pkgver
+  cd $pkgname
   make check
 }
 
 package() {
-  cd  $pkgname-$pkgver
+  cd $pkgname
   make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 
   ln -srf "$pkgdir/usr/bin/update-ca-trust" 
"$pkgdir/usr/lib/p11-kit/trust-extract-compat"
 }


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

2017-03-07 Thread Jaroslav Lichtblau
Date: Tuesday, March 7, 2017 @ 20:20:56
  Author: jlichtblau
Revision: 215261

archrelease: copy trunk to community-any

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

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

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

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


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

2017-03-07 Thread Jaroslav Lichtblau
Date: Tuesday, March 7, 2017 @ 20:20:36
  Author: jlichtblau
Revision: 215260

upgpkg: youtube-dl 2017.03.07-1 - new upstream release

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 19:24:09 UTC (rev 215259)
+++ PKGBUILD2017-03-07 20:20:36 UTC (rev 215260)
@@ -3,7 +3,7 @@
 # Maintainer: Jaroslav Lichtblau 
 
 pkgname=youtube-dl
-pkgver=2017.03.06
+pkgver=2017.03.07
 pkgrel=1
 pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
 arch=('any')
@@ -14,7 +14,7 @@
 'rtmpdump: for rtmp streams support'
 'atomicparsley: for embedding thumbnails into m4a files')
 
source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('7b9a2b785828eab266b80b01ada07ac40e34253797f31b980fdc62174ae00b0a'
+sha256sums=('db4a9f91b23375da53b29859e0c9475c9e1ba24d2a51a26b0cedab376afa4ca5'
 'SKIP')
 validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
   'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M. 


[arch-commits] Commit in syncthing/repos (20 files)

2017-03-07 Thread Jaroslav Lichtblau
Date: Tuesday, March 7, 2017 @ 19:24:09
  Author: jlichtblau
Revision: 215259

archrelease: copy trunk to community-i686, community-x86_64

Added:
  syncthing/repos/community-i686/PKGBUILD
(from rev 215258, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-i686/syncthing-relaysrv.service
(from rev 215258, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-i686/syncthing-relaysrv.sysusers
(from rev 215258, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-i686/syncthing-relaysrv.tmpfiles
(from rev 215258, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-i686/syncthing.install
(from rev 215258, syncthing/trunk/syncthing.install)
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 215258, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 215258, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 215258, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 215258, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 215258, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-i686/PKGBUILD
  syncthing/repos/community-i686/syncthing-relaysrv.service
  syncthing/repos/community-i686/syncthing-relaysrv.sysusers
  syncthing/repos/community-i686/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-i686/syncthing.install
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

--+
 /PKGBUILD|  188 +
 /syncthing-relaysrv.service  |   34 
 /syncthing-relaysrv.sysusers |4 
 /syncthing-relaysrv.tmpfiles |2 
 /syncthing.install   |   18 ++
 community-i686/PKGBUILD  |   94 
 community-i686/syncthing-relaysrv.service|   17 --
 community-i686/syncthing-relaysrv.sysusers   |2 
 community-i686/syncthing-relaysrv.tmpfiles   |1 
 community-i686/syncthing.install |9 -
 community-x86_64/PKGBUILD|   94 
 community-x86_64/syncthing-relaysrv.service  |   17 --
 community-x86_64/syncthing-relaysrv.sysusers |2 
 community-x86_64/syncthing-relaysrv.tmpfiles |1 
 community-x86_64/syncthing.install   |9 -
 15 files changed, 246 insertions(+), 246 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-07 19:23:47 UTC (rev 215258)
+++ community-i686/PKGBUILD 2017-03-07 19:24:09 UTC (rev 215259)
@@ -1,94 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=0.14.23
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://syncthing.net/";
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('78be407b4f9f166aab30e002b741f80f60c5e6a12c7167ce12322bf36501fd82'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-  go run build.go -no-upgrade -version v${pkgver} build strelaysrv
-}
-
-check() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  if [ "${CARCH}" == "x86_64" ] ; then
-go run build.go -no-upgrade test
-  fi
-}
-
-package_syncthing() {
-  pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-  install=$pkgname.install
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm64

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

2017-03-07 Thread Jaroslav Lichtblau
Date: Tuesday, March 7, 2017 @ 19:23:47
  Author: jlichtblau
Revision: 215258

upgpkg: syncthing 0.14.24-1 - new upstream release

Modified:
  syncthing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 17:55:27 UTC (rev 215257)
+++ PKGBUILD2017-03-07 19:23:47 UTC (rev 215258)
@@ -6,7 +6,7 @@
 # Contributor: korjjj 
 
 pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=0.14.23
+pkgver=0.14.24
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://syncthing.net/";
@@ -19,7 +19,7 @@
 syncthing-relaysrv.tmpfiles
 syncthing-relaysrv.service)
 validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('78be407b4f9f166aab30e002b741f80f60c5e6a12c7167ce12322bf36501fd82'
+sha256sums=('1f2a1d11df3b63b3574d1d1f91a624d3b32795c0fd961649194942fb032b1c59'
 'SKIP'
 '6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
 'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'


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

2017-03-07 Thread Nicola Squartini
Date: Tuesday, March 7, 2017 @ 17:55:27
  Author: tensor5
Revision: 215257

archrelease: copy trunk to community-i686, community-x86_64

Added:
  parity/repos/community-i686/PKGBUILD
(from rev 215256, parity/trunk/PKGBUILD)
  parity/repos/community-x86_64/PKGBUILD
(from rev 215256, parity/trunk/PKGBUILD)
Deleted:
  parity/repos/community-i686/PKGBUILD
  parity/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   56 
 community-i686/PKGBUILD   |   28 --
 community-x86_64/PKGBUILD |   28 --
 3 files changed, 56 insertions(+), 56 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-07 17:55:03 UTC (rev 215256)
+++ community-i686/PKGBUILD 2017-03-07 17:55:27 UTC (rev 215257)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=parity
-pkgver=1.5.6
-_commit=dc8bc8d8dd5af2abe70624efe4ef3e054e65f5eb
-pkgrel=1
-pkgdesc='Fast, light, robust Ethereum implementation'
-arch=('i686' 'x86_64')
-url='https://ethcore.io/parity.html'
-license=('GPL3')
-depends=('openssl')
-makedepends=('cargo' 'git')
-source=("git+https://github.com/ethcore/parity.git#commit=${_commit}";)
-sha256sums=('SKIP')
-
-build() {
-cd ${pkgname}
-
-cargo build --release
-}
-
-package() {
-cd ${pkgname}
-
-install -Dm755 -t "${pkgdir}"/usr/bin target/release/parity
-install -Dm644 -t "${pkgdir}"/usr/lib/systemd/system scripts/parity.service
-}

Copied: parity/repos/community-i686/PKGBUILD (from rev 215256, 
parity/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-07 17:55:27 UTC (rev 215257)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Nicola Squartini 
+
+pkgname=parity
+pkgver=1.5.7
+_commit=5baccf6f65825425c178e0d6bc963706a380e437
+pkgrel=1
+pkgdesc='Fast, light, robust Ethereum implementation'
+arch=('i686' 'x86_64')
+url='https://ethcore.io/parity.html'
+license=('GPL3')
+depends=('openssl')
+makedepends=('cargo' 'git')
+source=("git+https://github.com/ethcore/parity.git#commit=${_commit}";)
+sha256sums=('SKIP')
+
+build() {
+cd ${pkgname}
+
+cargo build --release
+}
+
+package() {
+cd ${pkgname}
+
+install -Dm755 -t "${pkgdir}"/usr/bin target/release/parity
+install -Dm644 -t "${pkgdir}"/usr/lib/systemd/system scripts/parity.service
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-03-07 17:55:03 UTC (rev 215256)
+++ community-x86_64/PKGBUILD   2017-03-07 17:55:27 UTC (rev 215257)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=parity
-pkgver=1.5.6
-_commit=dc8bc8d8dd5af2abe70624efe4ef3e054e65f5eb
-pkgrel=1
-pkgdesc='Fast, light, robust Ethereum implementation'
-arch=('i686' 'x86_64')
-url='https://ethcore.io/parity.html'
-license=('GPL3')
-depends=('openssl')
-makedepends=('cargo' 'git')
-source=("git+https://github.com/ethcore/parity.git#commit=${_commit}";)
-sha256sums=('SKIP')
-
-build() {
-cd ${pkgname}
-
-cargo build --release
-}
-
-package() {
-cd ${pkgname}
-
-install -Dm755 -t "${pkgdir}"/usr/bin target/release/parity
-install -Dm644 -t "${pkgdir}"/usr/lib/systemd/system scripts/parity.service
-}

Copied: parity/repos/community-x86_64/PKGBUILD (from rev 215256, 
parity/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-07 17:55:27 UTC (rev 215257)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Nicola Squartini 
+
+pkgname=parity
+pkgver=1.5.7
+_commit=5baccf6f65825425c178e0d6bc963706a380e437
+pkgrel=1
+pkgdesc='Fast, light, robust Ethereum implementation'
+arch=('i686' 'x86_64')
+url='https://ethcore.io/parity.html'
+license=('GPL3')
+depends=('openssl')
+makedepends=('cargo' 'git')
+source=("git+https://github.com/ethcore/parity.git#commit=${_commit}";)
+sha256sums=('SKIP')
+
+build() {
+cd ${pkgname}
+
+cargo build --release
+}
+
+package() {
+cd ${pkgname}
+
+install -Dm755 -t "${pkgdir}"/usr/bin target/release/parity
+install -Dm644 -t "${pkgdir}"/usr/lib/systemd/system scripts/parity.service
+}


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

2017-03-07 Thread Nicola Squartini
Date: Tuesday, March 7, 2017 @ 17:55:03
  Author: tensor5
Revision: 215256

upgpkg: parity 1.5.7-1

Modified:
  parity/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 17:40:06 UTC (rev 215255)
+++ PKGBUILD2017-03-07 17:55:03 UTC (rev 215256)
@@ -2,8 +2,8 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=parity
-pkgver=1.5.6
-_commit=dc8bc8d8dd5af2abe70624efe4ef3e054e65f5eb
+pkgver=1.5.7
+_commit=5baccf6f65825425c178e0d6bc963706a380e437
 pkgrel=1
 pkgdesc='Fast, light, robust Ethereum implementation'
 arch=('i686' 'x86_64')


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

2017-03-07 Thread Jelle van der Waa
Date: Tuesday, March 7, 2017 @ 17:39:51
  Author: jelle
Revision: 215254

upgpkg: python-flask-talisman 0.3.1-1

Modified:
  python-flask-talisman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 17:07:54 UTC (rev 215253)
+++ PKGBUILD2017-03-07 17:39:51 UTC (rev 215254)
@@ -3,7 +3,7 @@
 _pyname=flask-talisman
 pkgbase=python-flask-talisman
 pkgname=('python-flask-talisman' 'python2-flask-talisman')
-pkgver=0.3.0
+pkgver=0.3.1
 pkgrel=1
 pkgdesc='HTTP security headers for Flask'
 url='https://github.com/GoogleCloudPlatform/flask-talisman'
@@ -12,7 +12,7 @@
 makedepends=('python-setuptools' 'python2-setuptools' 'python-flask' 
'python2-flask')
 checkdepends=('python-nose' 'python2-nose')
 
source=("${pkgname}-${pkgver}.tar.gz"::https://github.com/GoogleCloudPlatform/flask-talisman/archive/v${pkgver}.tar.gz)
-md5sums=('92b7fcfda242d92d4c5a2d1c33320c05')
+md5sums=('71855e5d3c5e47e69706dadfdae79468')
 
 package_python-flask-talisman() {
   depends=('python-flask' 'python-six')


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

2017-03-07 Thread Jelle van der Waa
Date: Tuesday, March 7, 2017 @ 17:40:06
  Author: jelle
Revision: 215255

archrelease: copy trunk to community-any

Added:
  python-flask-talisman/repos/community-any/PKGBUILD
(from rev 215254, python-flask-talisman/trunk/PKGBUILD)
Deleted:
  python-flask-talisman/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-07 17:39:51 UTC (rev 215254)
+++ PKGBUILD2017-03-07 17:40:06 UTC (rev 215255)
@@ -1,40 +0,0 @@
-# Maintainer: Jelle van der Waa 
-
-_pyname=flask-talisman
-pkgbase=python-flask-talisman
-pkgname=('python-flask-talisman' 'python2-flask-talisman')
-pkgver=0.3.0
-pkgrel=1
-pkgdesc='HTTP security headers for Flask'
-url='https://github.com/GoogleCloudPlatform/flask-talisman'
-arch=('any')
-license=('APACHE')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-flask' 
'python2-flask')
-checkdepends=('python-nose' 'python2-nose')
-source=("${pkgname}-${pkgver}.tar.gz"::https://github.com/GoogleCloudPlatform/flask-talisman/archive/v${pkgver}.tar.gz)
-md5sums=('92b7fcfda242d92d4c5a2d1c33320c05')
-
-package_python-flask-talisman() {
-  depends=('python-flask' 'python-six')
-  cd ${_pyname}-${pkgver}
-
-  python setup.py install --root="${pkgdir}" -O1
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-package_python2-flask-talisman() {
-  depends=('python2-flask' 'python2-six')
-  cd ${_pyname}-${pkgver}
-
-  python2 setup.py install --root="${pkgdir}" -O1
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-check() {
-  cd ${_pyname}-${pkgver}
-
-  nosetests flask_talisman
-  nosetests2 flask_talisman
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-flask-talisman/repos/community-any/PKGBUILD (from rev 215254, 
python-flask-talisman/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-07 17:40:06 UTC (rev 215255)
@@ -0,0 +1,40 @@
+# Maintainer: Jelle van der Waa 
+
+_pyname=flask-talisman
+pkgbase=python-flask-talisman
+pkgname=('python-flask-talisman' 'python2-flask-talisman')
+pkgver=0.3.1
+pkgrel=1
+pkgdesc='HTTP security headers for Flask'
+url='https://github.com/GoogleCloudPlatform/flask-talisman'
+arch=('any')
+license=('APACHE')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-flask' 
'python2-flask')
+checkdepends=('python-nose' 'python2-nose')
+source=("${pkgname}-${pkgver}.tar.gz"::https://github.com/GoogleCloudPlatform/flask-talisman/archive/v${pkgver}.tar.gz)
+md5sums=('71855e5d3c5e47e69706dadfdae79468')
+
+package_python-flask-talisman() {
+  depends=('python-flask' 'python-six')
+  cd ${_pyname}-${pkgver}
+
+  python setup.py install --root="${pkgdir}" -O1
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+package_python2-flask-talisman() {
+  depends=('python2-flask' 'python2-six')
+  cd ${_pyname}-${pkgver}
+
+  python2 setup.py install --root="${pkgdir}" -O1
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+check() {
+  cd ${_pyname}-${pkgver}
+
+  nosetests flask_talisman
+  nosetests2 flask_talisman
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in iana-etc/repos (5 files)

2017-03-07 Thread Gaëtan Bisson
Date: Tuesday, March 7, 2017 @ 17:18:14
  Author: bisson
Revision: 290102

db-move: moved iana-etc from [testing] to [core] (any)

Added:
  iana-etc/repos/core-any/LICENSE
(from rev 290101, iana-etc/repos/testing-any/LICENSE)
  iana-etc/repos/core-any/PKGBUILD
(from rev 290101, iana-etc/repos/testing-any/PKGBUILD)
Deleted:
  iana-etc/repos/core-any/LICENSE
  iana-etc/repos/core-any/PKGBUILD
  iana-etc/repos/testing-any/

---+
 /LICENSE  |1 
 /PKGBUILD |   62 
 core-any/LICENSE  |1 
 core-any/PKGBUILD |   62 
 4 files changed, 63 insertions(+), 63 deletions(-)

Deleted: core-any/LICENSE
===
--- core-any/LICENSE2017-03-07 15:33:56 UTC (rev 290101)
+++ core-any/LICENSE2017-03-07 17:18:14 UTC (rev 290102)
@@ -1 +0,0 @@
-The contents of this package are inelligible for copyright protection.

Copied: iana-etc/repos/core-any/LICENSE (from rev 290101, 
iana-etc/repos/testing-any/LICENSE)
===
--- core-any/LICENSE(rev 0)
+++ core-any/LICENSE2017-03-07 17:18:14 UTC (rev 290102)
@@ -0,0 +1 @@
+The contents of this package are inelligible for copyright protection.

Deleted: core-any/PKGBUILD
===
--- core-any/PKGBUILD   2017-03-07 15:33:56 UTC (rev 290101)
+++ core-any/PKGBUILD   2017-03-07 17:18:14 UTC (rev 290102)
@@ -1,62 +0,0 @@
-# $Id$
-# Contributor: Thomas Bächler 
-# Maintainer: Gaetan Bisson 
-
-pkgname=iana-etc
-pkgver=20161101
-pkgrel=1
-pkgdesc='/etc/protocols and /etc/services provided by IANA'
-url='http://www.iana.org/protocols'
-arch=('any')
-license=('custom:none')
-backup=('etc/'{protocols,services})
-source=('https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xml'
-
'https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xml'
-'LICENSE')
-sha1sums=('ce42b8fbf310be48a0fbd94625db8ca1a480'
-  'bc8e9ba9e25cdcb83d63e90f34f92b5b74a6336a'
-  'ef54e7a2182f1ab7c1d2d4c9e1ab2bcc5ec65b66')
-
-pkgver() {
-   cd "${srcdir}"
-   awk -F"[<>]" '/updated/{print$3;nextfile}' * |
-   sort -n | tail -n 1 | tr -d -
-}
-
-package() {
-   cd "${srcdir}"
-   install -d "${pkgdir}/etc"
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/iana-etc/LICENSE"
-   install -Dm644 protocol-numbers.xml 
"${pkgdir}/usr/share/iana-etc/protocol-numbers.iana"
-   install -Dm644 service-names-port-numbers.xml 
"${pkgdir}/usr/share/iana-etc/port-numbers.iana"
-
-   gawk '
-BEGIN {
-   print "# Full data: /usr/share/iana-etc/protocol-numbers.iana\n"
-   FS="[<>]"
-}
-
-{
-   if (/ "${pkgdir}/etc/protocols"
-
-   gawk '
-BEGIN {
-   print "# Full data: /usr/share/iana-etc/port-numbers.iana\n"
-   FS="[<>]"
-}
-
-{
-   if (/ "${pkgdir}/etc/services"
-
-}

Copied: iana-etc/repos/core-any/PKGBUILD (from rev 290101, 
iana-etc/repos/testing-any/PKGBUILD)
===
--- core-any/PKGBUILD   (rev 0)
+++ core-any/PKGBUILD   2017-03-07 17:18:14 UTC (rev 290102)
@@ -0,0 +1,62 @@
+# $Id$
+# Contributor: Thomas Bächler 
+# Maintainer: Gaetan Bisson 
+
+pkgname=iana-etc
+pkgver=20170224
+pkgrel=1
+pkgdesc='/etc/protocols and /etc/services provided by IANA'
+url='http://www.iana.org/protocols'
+arch=('any')
+license=('custom:none')
+backup=('etc/'{protocols,services})
+source=('https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xml'
+
'https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xml'
+'LICENSE')
+sha256sums=('f23c42340b8d0014db1b90d9057694c86f3cc51fff36967511cf35787a872d36'
+'f7a7fd69b66b936cdcba4416066cba8d8e88b6261ba43c2c2fab8cc3c6876825'
+'dd37e92942d5a4024f1c77df49d61ca77fc6284691814903a741785df61f78cb')
+
+pkgver() {
+   cd "${srcdir}"
+   awk -F"[<>]" '/updated/{print$3;nextfile}' * |
+   sort -n | tail -n 1 | tr -d -
+}
+
+package() {
+   cd "${srcdir}"
+   install -d "${pkgdir}/etc"
+   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/iana-etc/LICENSE"
+   install -Dm644 protocol-numbers.xml 
"${pkgdir}/usr/share/iana-etc/protocol-numbers.iana"
+   install -Dm644 service-names-port-numbers.xml 
"${pkgdir}/usr/share/iana-etc/port-numbers.iana"
+
+   gawk '
+BEGIN {
+   print "# Full data: /usr/share/iana-etc/protocol-numbers.iana\n"
+   FS="[<>]"
+}
+
+{
+   if (/ "${pkgdir}/etc/protocols"
+
+   gawk '
+BEGIN {
+   print "# Full data: /usr/share/iana-etc/port-numbers.iana\n"
+   FS="[<>]"
+}
+
+{
+   if (/ "${pkgdir}/etc/services"
+
+}


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

2017-03-07 Thread Sven-Hendrik Haase
Date: Tuesday, March 7, 2017 @ 17:07:44
  Author: svenstaro
Revision: 215252

upgpkg: tiled 0.18.2-1

upstream release 0.18.2

Modified:
  tiled/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 15:32:03 UTC (rev 215251)
+++ PKGBUILD2017-03-07 17:07:44 UTC (rev 215252)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Collaborator: Jonathan Fine (were.Vire AT gmail DOT com)
 pkgname=tiled
-pkgver=0.18.1
+pkgver=0.18.2
 pkgrel=1
 pkgdesc='A general purpose tile map editor, built to be flexible and easy to 
use'
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('mesa' 'qt5-tools' 'python2')
 optdepends=('python2: Python plugin')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/bjorn/tiled/archive/v${pkgver}.tar.gz)
-md5sums=('43ddbf0eaf5a168a742064ecc1d0c89d')
+md5sums=('950dd9d160a53ba2ef105a6f6930fb8e')
 
 build() {
   cd $srcdir/$pkgname-$pkgver


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

2017-03-07 Thread Sven-Hendrik Haase
Date: Tuesday, March 7, 2017 @ 17:07:54
  Author: svenstaro
Revision: 215253

archrelease: copy trunk to community-i686, community-x86_64

Added:
  tiled/repos/community-i686/PKGBUILD
(from rev 215252, tiled/trunk/PKGBUILD)
  tiled/repos/community-x86_64/PKGBUILD
(from rev 215252, tiled/trunk/PKGBUILD)
Deleted:
  tiled/repos/community-i686/PKGBUILD
  tiled/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   54 
 community-i686/PKGBUILD   |   27 --
 community-x86_64/PKGBUILD |   27 --
 3 files changed, 54 insertions(+), 54 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-07 17:07:44 UTC (rev 215252)
+++ community-i686/PKGBUILD 2017-03-07 17:07:54 UTC (rev 215253)
@@ -1,27 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Collaborator: Jonathan Fine (were.Vire AT gmail DOT com)
-pkgname=tiled
-pkgver=0.18.1
-pkgrel=1
-pkgdesc='A general purpose tile map editor, built to be flexible and easy to 
use'
-arch=('i686' 'x86_64')
-url='http://mapeditor.org'
-license=('GPL')
-replaces=('tiled-qt')
-depends=('qt5-base' 'libgl' 'gtk-update-icon-cache' 'shared-mime-info' 
'desktop-file-utils' 'libxkbcommon-x11')
-makedepends=('mesa' 'qt5-tools' 'python2')
-optdepends=('python2: Python plugin')
-source=($pkgname-$pkgver.tar.gz::https://github.com/bjorn/tiled/archive/v${pkgver}.tar.gz)
-md5sums=('43ddbf0eaf5a168a742064ecc1d0c89d')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  qmake -r INSTALL_HEADERS=yes RPATH=no PREFIX=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make install INSTALL_ROOT=$pkgdir
-}

Copied: tiled/repos/community-i686/PKGBUILD (from rev 215252, 
tiled/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-07 17:07:54 UTC (rev 215253)
@@ -0,0 +1,27 @@
+# Maintainer: Sven-Hendrik Haase 
+# Collaborator: Jonathan Fine (were.Vire AT gmail DOT com)
+pkgname=tiled
+pkgver=0.18.2
+pkgrel=1
+pkgdesc='A general purpose tile map editor, built to be flexible and easy to 
use'
+arch=('i686' 'x86_64')
+url='http://mapeditor.org'
+license=('GPL')
+replaces=('tiled-qt')
+depends=('qt5-base' 'libgl' 'gtk-update-icon-cache' 'shared-mime-info' 
'desktop-file-utils' 'libxkbcommon-x11')
+makedepends=('mesa' 'qt5-tools' 'python2')
+optdepends=('python2: Python plugin')
+source=($pkgname-$pkgver.tar.gz::https://github.com/bjorn/tiled/archive/v${pkgver}.tar.gz)
+md5sums=('950dd9d160a53ba2ef105a6f6930fb8e')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  qmake -r INSTALL_HEADERS=yes RPATH=no PREFIX=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make install INSTALL_ROOT=$pkgdir
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-03-07 17:07:44 UTC (rev 215252)
+++ community-x86_64/PKGBUILD   2017-03-07 17:07:54 UTC (rev 215253)
@@ -1,27 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Collaborator: Jonathan Fine (were.Vire AT gmail DOT com)
-pkgname=tiled
-pkgver=0.18.1
-pkgrel=1
-pkgdesc='A general purpose tile map editor, built to be flexible and easy to 
use'
-arch=('i686' 'x86_64')
-url='http://mapeditor.org'
-license=('GPL')
-replaces=('tiled-qt')
-depends=('qt5-base' 'libgl' 'gtk-update-icon-cache' 'shared-mime-info' 
'desktop-file-utils' 'libxkbcommon-x11')
-makedepends=('mesa' 'qt5-tools' 'python2')
-optdepends=('python2: Python plugin')
-source=($pkgname-$pkgver.tar.gz::https://github.com/bjorn/tiled/archive/v${pkgver}.tar.gz)
-md5sums=('43ddbf0eaf5a168a742064ecc1d0c89d')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  qmake -r INSTALL_HEADERS=yes RPATH=no PREFIX=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make install INSTALL_ROOT=$pkgdir
-}

Copied: tiled/repos/community-x86_64/PKGBUILD (from rev 215252, 
tiled/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-07 17:07:54 UTC (rev 215253)
@@ -0,0 +1,27 @@
+# Maintainer: Sven-Hendrik Haase 
+# Collaborator: Jonathan Fine (were.Vire AT gmail DOT com)
+pkgname=tiled
+pkgver=0.18.2
+pkgrel=1
+pkgdesc='A general purpose tile map editor, built to be flexible and easy to 
use'
+arch=('i686' 'x86_64')
+url='http://mapeditor.org'
+license=('GPL')
+replaces=('tiled-qt')
+depends=('qt5-base' 'libgl' 'gtk-update-icon-cache' 'shared-mime-info' 
'desktop-file-utils' 'libxkbcommon-x11')
+makedepends=('mesa' 'qt5-tools' 'python2')
+optdepends=('python2: Python plugin')
+source=($pkgname-$pkgver.tar.gz::https://github.com/bjorn/tiled/archive/v${pkgver}.tar.gz)
+md5sums=('950dd9d160a53ba2ef105a6f6930fb8e')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  

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

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 15:33:56
  Author: heftig
Revision: 290101

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  gnome-photos/repos/extra-i686/PKGBUILD
(from rev 290100, gnome-photos/trunk/PKGBUILD)
  gnome-photos/repos/extra-x86_64/PKGBUILD
(from rev 290100, gnome-photos/trunk/PKGBUILD)
Deleted:
  gnome-photos/repos/extra-i686/PKGBUILD
  gnome-photos/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  104 
 extra-i686/PKGBUILD   |   52 
 extra-x86_64/PKGBUILD |   52 
 3 files changed, 104 insertions(+), 104 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-03-07 15:33:18 UTC (rev 290100)
+++ extra-i686/PKGBUILD 2017-03-07 15:33:56 UTC (rev 290101)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-photos
-pkgver=3.22.4
-pkgrel=1
-pkgdesc="Access, organize, and share your photos on GNOME"
-arch=(i686 x86_64)
-url="https://wiki.gnome.org/Apps/Photos";
-license=(GPL)
-depends=(exempi gtk3 libexif librsvg babl gegl gnome-desktop 
gnome-online-accounts lcms2 tracker
- grilo gfbgraph libgdata gnome-online-miners dleyna-server 
dleyna-renderer libgexiv2 libraw)
-makedepends=(intltool itstool python yelp-tools autoconf-archive git)
-groups=(gnome-extra)
-_commit=2fe74bddafcad2a9612fd5089dc0b71dcb6112bc  # tags/3.22.4^0
-source=("git+https://git.gnome.org/browse/gnome-photos#commit=$_commit";
-"git+https://git.gnome.org/browse/libgd";)
-sha256sums=('SKIP'
-'SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-
-  git submodule init
-  git config --local submodule.libgd.url "$srcdir/libgd"
-  git submodule update
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib/$pkgname --enable-compile-warnings=minimum
-  make
-}
-
-check() {
-  cd $pkgname
-  # disabled: needs dogtail which we don't have
-  #make check
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-photos/repos/extra-i686/PKGBUILD (from rev 290100, 
gnome-photos/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-03-07 15:33:56 UTC (rev 290101)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-photos
+pkgver=3.22.5
+pkgrel=1
+pkgdesc="Access, organize, and share your photos on GNOME"
+arch=(i686 x86_64)
+url="https://wiki.gnome.org/Apps/Photos";
+license=(GPL)
+depends=(exempi gtk3 libexif librsvg babl gegl gnome-desktop 
gnome-online-accounts lcms2 tracker
+ grilo gfbgraph libgdata gnome-online-miners dleyna-server 
dleyna-renderer libgexiv2 libraw)
+makedepends=(intltool itstool python yelp-tools autoconf-archive git)
+groups=(gnome-extra)
+_commit=de919345da39fcd160504d29a89fa1786bc9ce81  # tags/3.22.5^0
+source=("git+https://git.gnome.org/browse/gnome-photos#commit=$_commit";
+"git+https://git.gnome.org/browse/libgd";)
+sha256sums=('SKIP'
+'SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git config --local submodule.libgd.url "$srcdir/libgd"
+  git submodule update
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib/$pkgname --enable-compile-warnings=minimum
+  make
+}
+
+check() {
+  cd $pkgname
+  # disabled: needs dogtail which we don't have
+  #make check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-03-07 15:33:18 UTC (rev 290100)
+++ extra-x86_64/PKGBUILD   2017-03-07 15:33:56 UTC (rev 290101)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-photos
-pkgver=3.22.4
-pkgrel=1
-pkgdesc="Access, organize, and share your photos on GNOME"
-arch=(i686 x86_64)
-url="https://wiki.gnome.org/Apps/Photos";
-license=(GPL)
-depends=(exempi gtk3 libexif librsvg babl gegl gnome-desktop 
gnome-online-accounts lcms2 tracker
- grilo gfbgraph libgdata gnome-online-miners dleyna-server 
dleyna-renderer libgexiv2 libraw)
-makedepends=(intltool itstool python yelp-tools autoconf-archive git)
-groups=(gnome-extra)
-_commit=2fe74bddafcad2a9612fd5089dc0b71dcb6112bc  # tags/3.22.4^0
-source=("git+https://git.gnome.org/browse/gnome-photos#commit=$_commit";
-"git+https://git.gnome.org/browse/libgd";)
-sha256sums=('SKIP'
-'SKIP')
-
-pkgver() {
-  cd $pkgname
-  git desc

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

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 15:33:18
  Author: heftig
Revision: 290100

3.22.5-1

Modified:
  gnome-photos/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 15:32:56 UTC (rev 290099)
+++ PKGBUILD2017-03-07 15:33:18 UTC (rev 290100)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-photos
-pkgver=3.22.4
+pkgver=3.22.5
 pkgrel=1
 pkgdesc="Access, organize, and share your photos on GNOME"
 arch=(i686 x86_64)
@@ -12,7 +12,7 @@
  grilo gfbgraph libgdata gnome-online-miners dleyna-server 
dleyna-renderer libgexiv2 libraw)
 makedepends=(intltool itstool python yelp-tools autoconf-archive git)
 groups=(gnome-extra)
-_commit=2fe74bddafcad2a9612fd5089dc0b71dcb6112bc  # tags/3.22.4^0
+_commit=de919345da39fcd160504d29a89fa1786bc9ce81  # tags/3.22.5^0
 source=("git+https://git.gnome.org/browse/gnome-photos#commit=$_commit";
 "git+https://git.gnome.org/browse/libgd";)
 sha256sums=('SKIP'


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

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 15:32:56
  Author: heftig
Revision: 290099

meson maintainer

Modified:
  meson/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 15:31:34 UTC (rev 290098)
+++ PKGBUILD2017-03-07 15:32:56 UTC (rev 290099)
@@ -1,4 +1,5 @@
 # $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
 # Maintainer: Levente Polyak 
 # Contributor: Anatol Pomozov 
 


[arch-commits] Commit in (meson)

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 15:32:03
  Author: heftig
Revision: 215251

community2extra: Moving meson from community to extra

Deleted:
  meson/


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

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 15:31:34
  Author: heftig
Revision: 290098

archrelease: copy trunk to extra-any

Added:
  meson/repos/extra-any/
  meson/repos/extra-any/PKGBUILD
(from rev 290097, meson/trunk/PKGBUILD)

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

Copied: meson/repos/extra-any/PKGBUILD (from rev 290097, meson/trunk/PKGBUILD)
===
--- extra-any/PKGBUILD  (rev 0)
+++ extra-any/PKGBUILD  2017-03-07 15:31:34 UTC (rev 290098)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Levente Polyak 
+# Contributor: Anatol Pomozov 
+
+pkgname=meson
+pkgver=0.39.0
+pkgrel=1
+pkgdesc='High productivity build system'
+url='http://mesonbuild.com/'
+arch=('any')
+license=('Apache')
+depends=('python' 'ninja')
+makedepends=('python-setuptools')
+checkdepends=('gcc-objc' 'vala' 'rust' 'gcc-fortran' 'mono' 'boost' 'qt5-base' 
'git' 'gnustep-base'
+  'cython' 'gtkmm3' 'gtest' 'gmock' 'protobuf' 'wxgtk' 
'python-gobject' 'gobject-introspection'
+  'itstool' 'gtk3')
+source=(https://github.com/mesonbuild/meson/releases/download/${pkgver}/meson-${pkgver}.tar.gz{,.asc})
+sha512sums=('d6282e3d6d8824dce58589dc0da7c957dfd0ea23c81cce7108f3d23b796f62fb9f976fd0963ec34bdaf645a906a10626e27e93bc6d732c60ab8a306a4e8337c0'
+'SKIP')
+validpgpkeys=('95181F4EED14FDF4E41B518D3BF4693BFEEB9428') # Jussi Pakkanen 

+
+check() {
+  cd ${pkgname}-${pkgver}
+  MESON_PRINT_TEST_OUTPUT=1 LC_CTYPE=en_US.UTF-8 ./run_tests.py
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python setup.py install --root="${pkgdir}" -O1
+  install -Dm 644 syntax-highlighting/vim/ftdetect/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/ftdetect"
+  install -Dm 644 syntax-highlighting/vim/indent/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/indent"
+  install -Dm 644 syntax-highlighting/vim/syntax/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/syntax"
+}
+
+# vim: ts=2 sw=2 et:


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

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 15:31:17
  Author: heftig
Revision: 290097

community2extra: Moving meson from community to extra

Added:
  meson/
  meson/repos/
  meson/trunk/
  meson/trunk/PKGBUILD

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

Added: meson/trunk/PKGBUILD
===
--- meson/trunk/PKGBUILD(rev 0)
+++ meson/trunk/PKGBUILD2017-03-07 15:31:17 UTC (rev 290097)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Levente Polyak 
+# Contributor: Anatol Pomozov 
+
+pkgname=meson
+pkgver=0.39.0
+pkgrel=1
+pkgdesc='High productivity build system'
+url='http://mesonbuild.com/'
+arch=('any')
+license=('Apache')
+depends=('python' 'ninja')
+makedepends=('python-setuptools')
+checkdepends=('gcc-objc' 'vala' 'rust' 'gcc-fortran' 'mono' 'boost' 'qt5-base' 
'git' 'gnustep-base'
+  'cython' 'gtkmm3' 'gtest' 'gmock' 'protobuf' 'wxgtk' 
'python-gobject' 'gobject-introspection'
+  'itstool' 'gtk3')
+source=(https://github.com/mesonbuild/meson/releases/download/${pkgver}/meson-${pkgver}.tar.gz{,.asc})
+sha512sums=('d6282e3d6d8824dce58589dc0da7c957dfd0ea23c81cce7108f3d23b796f62fb9f976fd0963ec34bdaf645a906a10626e27e93bc6d732c60ab8a306a4e8337c0'
+'SKIP')
+validpgpkeys=('95181F4EED14FDF4E41B518D3BF4693BFEEB9428') # Jussi Pakkanen 

+
+check() {
+  cd ${pkgname}-${pkgver}
+  MESON_PRINT_TEST_OUTPUT=1 LC_CTYPE=en_US.UTF-8 ./run_tests.py
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python setup.py install --root="${pkgdir}" -O1
+  install -Dm 644 syntax-highlighting/vim/ftdetect/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/ftdetect"
+  install -Dm 644 syntax-highlighting/vim/indent/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/indent"
+  install -Dm 644 syntax-highlighting/vim/syntax/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/syntax"
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: meson/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 15:30:00
  Author: heftig
Revision: 290096

archrelease: copy trunk to extra-any

Added:
  deluge/repos/extra-any/PKGBUILD
(from rev 290095, deluge/trunk/PKGBUILD)
  deluge/repos/extra-any/deluge-web.service
(from rev 290095, deluge/trunk/deluge-web.service)
  deluge/repos/extra-any/deluge.install
(from rev 290095, deluge/trunk/deluge.install)
  deluge/repos/extra-any/deluged.service
(from rev 290095, deluge/trunk/deluged.service)
  deluge/repos/extra-any/untag-build.patch
(from rev 290095, deluge/trunk/untag-build.patch)
Deleted:
  deluge/repos/extra-any/PKGBUILD
  deluge/repos/extra-any/deluge-web.service
  deluge/repos/extra-any/deluge.install
  deluge/repos/extra-any/deluged.service
  deluge/repos/extra-any/untag-build.patch

+
 PKGBUILD   |  114 +--
 deluge-web.service |   20 
 deluge.install |   14 +++---
 deluged.service|   22 -
 untag-build.patch  |   20 
 5 files changed, 95 insertions(+), 95 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-07 15:28:44 UTC (rev 290095)
+++ PKGBUILD2017-03-07 15:30:00 UTC (rev 290096)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-# Contributor: Hugo Doria 
-
-pkgname=deluge
-pkgver=1.3.13+11+g48cedf635
-pkgrel=1
-pkgdesc="A BitTorrent client with multiple user interfaces in a client/server 
model"
-arch=(any)
-url="http://deluge-torrent.org/";
-license=(GPL3)
-depends=(python2-xdg libtorrent-rasterbar python2-twisted python2-pyopenssl
- python2-chardet python2-setuptools)
-makedepends=(intltool pygtk librsvg python2-mako git)
-optdepends=('python2-notify: libnotify notifications'
-'pygtk: needed for gtk ui'
-'librsvg: needed for gtk ui'
-'python2-mako: needed for web ui')
-install=deluge.install
-_commit=48cedf635feb01b81d927e7e84d13067931381d7  # 1.3-stable
-source=("git://git.deluge-torrent.org/deluge.git#commit=$_commit"
-untag-build.patch
-deluged.service deluge-web.service)
-sha256sums=('SKIP'
-'fbd17f13765f5560bab01a81a42aff0f2f757a4a6fa29379ae31d95b9721e4f2'
-'58a451bb6cf4fe6ff78a4fb71d51c5910340a2de032ff435c3c7365015ab538f'
-'c3f2d6ad5bc9de5ffd9973d92badbe04a9ecf12c0c575e13d505a96add03275a')
-
-prepare() {
-  cd $pkgname
-  patch -Np1 -i ../untag-build.patch
-  sed -i '1s/python$/&2/' \
-deluge/ui/Win32IconImagePlugin.py \
-deluge/ui/web/gen_gettext.py
-}
-
-pkgver() {
-  cd $pkgname
-  git describe | sed 's/^deluge-//;s/-/+/g'
-}
-
-build() {
-  cd $pkgname
-  python2 setup.py build
-}
-
-package() {
-  cd $pkgname
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
-  install -Dm644 ../deluged.service 
"$pkgdir/usr/lib/systemd/system/deluged.service"
-  install -Dm644 ../deluge-web.service 
"$pkgdir/usr/lib/systemd/system/deluge-web.service"
-
-  install -d "$pkgdir/srv"
-  install -d -m 775 -o 125 -g 125 "$pkgdir/srv/deluge"
-}

Copied: deluge/repos/extra-any/PKGBUILD (from rev 290095, deluge/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-07 15:30:00 UTC (rev 290096)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+# Contributor: Hugo Doria 
+
+pkgname=deluge
+pkgver=1.3.14
+pkgrel=1
+pkgdesc="A BitTorrent client with multiple user interfaces in a client/server 
model"
+arch=(any)
+url="http://deluge-torrent.org/";
+license=(GPL3)
+depends=(python2-xdg libtorrent-rasterbar python2-twisted python2-pyopenssl
+ python2-chardet python2-setuptools)
+makedepends=(intltool pygtk librsvg python2-mako git)
+optdepends=('python2-notify: libnotify notifications'
+'pygtk: needed for gtk ui'
+'librsvg: needed for gtk ui'
+'python2-mako: needed for web ui')
+install=deluge.install
+_commit=9bec5142c72a386a3cb40d3b3169b1ad68a1d969  # tags/deluge-1.3.14^0
+source=("git://git.deluge-torrent.org/deluge.git#commit=$_commit"
+untag-build.patch
+deluged.service deluge-web.service)
+sha256sums=('SKIP'
+'fbd17f13765f5560bab01a81a42aff0f2f757a4a6fa29379ae31d95b9721e4f2'
+'58a451bb6cf4fe6ff78a4fb71d51c5910340a2de032ff435c3c7365015ab538f'
+'c3f2d6ad5bc9de5ffd9973d92badbe04a9ecf12c0c575e13d505a96add03275a')
+
+prepare() {
+  cd $pkgname
+  patch -Np1 -i ../untag-build.patch
+  sed -i '1s/python$/&2/' \
+deluge/ui/Win32IconImagePlugin.py \
+deluge/ui/web/gen_gettext.py
+}
+
+pkgver() {
+  cd $pkgname
+  git describe | sed 's/^deluge-//;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+  python2 setup.py build
+}
+
+package() {
+  cd $pkgname
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+

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

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 15:29:40
  Author: heftig
Revision: 215249

archrelease: copy trunk to community-any

Added:
  meson/repos/community-any/PKGBUILD
(from rev 215248, meson/trunk/PKGBUILD)
Deleted:
  meson/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-07 15:28:41 UTC (rev 215248)
+++ PKGBUILD2017-03-07 15:29:40 UTC (rev 215249)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Levente Polyak 
-# Contributor: Anatol Pomozov 
-
-pkgname=meson
-pkgver=0.38.1
-pkgrel=1
-pkgdesc='High productivity build system'
-url='http://mesonbuild.com/'
-arch=('any')
-license=('Apache')
-depends=('python' 'ninja')
-makedepends=('python-setuptools')
-checkdepends=('gcc-objc' 'vala' 'rust' 'gcc-fortran' 'mono' 'boost' 'qt5-base' 
'git' 'gnustep-base'
-  'cython' 'gtkmm3' 'gtest' 'gmock' 'protobuf' 'wxgtk' 
'python-gobject' 'gobject-introspection'
-  'itstool' 'gtk3')
-source=(https://github.com/mesonbuild/meson/releases/download/${pkgver}/meson-${pkgver}.tar.gz{,.asc})
-sha512sums=('7a2c477561528a1d4920a3a8c0fc55c3562004a3bb2cf6f211eb0491eecdca3a3cdf5df3b2b358e35bdc1805c50159cf1181b24811a0948e332737997090a006'
-'SKIP')
-validpgpkeys=('95181F4EED14FDF4E41B518D3BF4693BFEEB9428') # Jussi Pakkanen 

-
-check() {
-  cd ${pkgname}-${pkgver}
-  MESON_PRINT_TEST_OUTPUT=1 LC_CTYPE=en_US.UTF-8 ./run_tests.py
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python setup.py install --root="${pkgdir}" -O1
-  install -Dm 644 syntax-highlighting/vim/ftdetect/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/ftdetect"
-  install -Dm 644 syntax-highlighting/vim/indent/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/indent"
-  install -Dm 644 syntax-highlighting/vim/syntax/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/syntax"
-}
-
-# vim: ts=2 sw=2 et:

Copied: meson/repos/community-any/PKGBUILD (from rev 215248, 
meson/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-07 15:29:40 UTC (rev 215249)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Levente Polyak 
+# Contributor: Anatol Pomozov 
+
+pkgname=meson
+pkgver=0.39.0
+pkgrel=1
+pkgdesc='High productivity build system'
+url='http://mesonbuild.com/'
+arch=('any')
+license=('Apache')
+depends=('python' 'ninja')
+makedepends=('python-setuptools')
+checkdepends=('gcc-objc' 'vala' 'rust' 'gcc-fortran' 'mono' 'boost' 'qt5-base' 
'git' 'gnustep-base'
+  'cython' 'gtkmm3' 'gtest' 'gmock' 'protobuf' 'wxgtk' 
'python-gobject' 'gobject-introspection'
+  'itstool' 'gtk3')
+source=(https://github.com/mesonbuild/meson/releases/download/${pkgver}/meson-${pkgver}.tar.gz{,.asc})
+sha512sums=('d6282e3d6d8824dce58589dc0da7c957dfd0ea23c81cce7108f3d23b796f62fb9f976fd0963ec34bdaf645a906a10626e27e93bc6d732c60ab8a306a4e8337c0'
+'SKIP')
+validpgpkeys=('95181F4EED14FDF4E41B518D3BF4693BFEEB9428') # Jussi Pakkanen 

+
+check() {
+  cd ${pkgname}-${pkgver}
+  MESON_PRINT_TEST_OUTPUT=1 LC_CTYPE=en_US.UTF-8 ./run_tests.py
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python setup.py install --root="${pkgdir}" -O1
+  install -Dm 644 syntax-highlighting/vim/ftdetect/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/ftdetect"
+  install -Dm 644 syntax-highlighting/vim/indent/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/indent"
+  install -Dm 644 syntax-highlighting/vim/syntax/meson.vim -t 
"${pkgdir}/usr/share/vim/vimfiles/syntax"
+}
+
+# vim: ts=2 sw=2 et:


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

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 15:28:41
  Author: heftig
Revision: 215248

0.39.0-1

Modified:
  meson/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 15:26:05 UTC (rev 215247)
+++ PKGBUILD2017-03-07 15:28:41 UTC (rev 215248)
@@ -3,7 +3,7 @@
 # Contributor: Anatol Pomozov 
 
 pkgname=meson
-pkgver=0.38.1
+pkgver=0.39.0
 pkgrel=1
 pkgdesc='High productivity build system'
 url='http://mesonbuild.com/'
@@ -15,7 +15,7 @@
   'cython' 'gtkmm3' 'gtest' 'gmock' 'protobuf' 'wxgtk' 
'python-gobject' 'gobject-introspection'
   'itstool' 'gtk3')
 
source=(https://github.com/mesonbuild/meson/releases/download/${pkgver}/meson-${pkgver}.tar.gz{,.asc})
-sha512sums=('7a2c477561528a1d4920a3a8c0fc55c3562004a3bb2cf6f211eb0491eecdca3a3cdf5df3b2b358e35bdc1805c50159cf1181b24811a0948e332737997090a006'
+sha512sums=('d6282e3d6d8824dce58589dc0da7c957dfd0ea23c81cce7108f3d23b796f62fb9f976fd0963ec34bdaf645a906a10626e27e93bc6d732c60ab8a306a4e8337c0'
 'SKIP')
 validpgpkeys=('95181F4EED14FDF4E41B518D3BF4693BFEEB9428') # Jussi Pakkanen 

 


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

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 15:28:44
  Author: heftig
Revision: 290095

1.3.14-1

Modified:
  deluge/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 15:24:02 UTC (rev 290094)
+++ PKGBUILD2017-03-07 15:28:44 UTC (rev 290095)
@@ -4,7 +4,7 @@
 # Contributor: Hugo Doria 
 
 pkgname=deluge
-pkgver=1.3.13+11+g48cedf635
+pkgver=1.3.14
 pkgrel=1
 pkgdesc="A BitTorrent client with multiple user interfaces in a client/server 
model"
 arch=(any)
@@ -18,7 +18,7 @@
 'librsvg: needed for gtk ui'
 'python2-mako: needed for web ui')
 install=deluge.install
-_commit=48cedf635feb01b81d927e7e84d13067931381d7  # 1.3-stable
+_commit=9bec5142c72a386a3cb40d3b3169b1ad68a1d969  # tags/deluge-1.3.14^0
 source=("git://git.deluge-torrent.org/deluge.git#commit=$_commit"
 untag-build.patch
 deluged.service deluge-web.service)


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

2017-03-07 Thread Sergej Pupykin
Date: Tuesday, March 7, 2017 @ 15:25:44
  Author: spupykin
Revision: 215246

upgpkg: darkhttpd 1.12-3

upd

Modified:
  darkhttpd/trunk/PKGBUILD
  darkhttpd/trunk/darkhttpd.service
  darkhttpd/trunk/darkhttpd@.service

+
 PKGBUILD   |6 +++---
 darkhttpd.service  |1 +
 darkhttpd@.service |1 +
 3 files changed, 5 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 14:45:08 UTC (rev 215245)
+++ PKGBUILD2017-03-07 15:25:44 UTC (rev 215246)
@@ -3,7 +3,7 @@
 
 pkgname=darkhttpd
 pkgver=1.12
-pkgrel=2
+pkgrel=3
 pkgdesc="A small and secure static webserver"
 arch=('i686' 'x86_64')
 url="http://dmr.ath.cx/net/darkhttpd/";
@@ -14,8 +14,8 @@
 'darkhttpd.service'
 'darkhttpd@.service')
 sha256sums=('a50417b622b32b5f421b3132cb94ebeff04f02c5fb87fba2e31147d23de50505'
-'0839e355e84911f764077d3d6f7163ba51d39f5bfccd12b22b22d536ac4bf166'
-'50eedeebc14b0cf1f2885bdeabe2a55206996d026637ed6656513254d545027f')
+'c8168205f933f5d38b1b790db40f9173670b9cfc85b84dcad397ddf326cb791c'
+'f17058480ffc1df0a3ada78c2e574d084d57e49c1e43cdf1a95bbd2d57dcf26e')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"

Modified: darkhttpd.service
===
--- darkhttpd.service   2017-03-07 14:45:08 UTC (rev 215245)
+++ darkhttpd.service   2017-03-07 15:25:44 UTC (rev 215246)
@@ -1,5 +1,6 @@
 [Unit]
 Description=Darkhttpd Webserver
+After=network.target
 
 [Service]
 Type=simple

Modified: darkhttpd@.service
===
--- darkhttpd@.service  2017-03-07 14:45:08 UTC (rev 215245)
+++ darkhttpd@.service  2017-03-07 15:25:44 UTC (rev 215246)
@@ -1,5 +1,6 @@
 [Unit]
 Description=Darkhttpd Webserver
+After=network.target
 
 [Service]
 Type=simple


[arch-commits] Commit in darkhttpd/repos (12 files)

2017-03-07 Thread Sergej Pupykin
Date: Tuesday, March 7, 2017 @ 15:26:05
  Author: spupykin
Revision: 215247

archrelease: copy trunk to community-i686, community-x86_64

Added:
  darkhttpd/repos/community-i686/PKGBUILD
(from rev 215246, darkhttpd/trunk/PKGBUILD)
  darkhttpd/repos/community-i686/darkhttpd.service
(from rev 215246, darkhttpd/trunk/darkhttpd.service)
  darkhttpd/repos/community-i686/darkhttpd@.service
(from rev 215246, darkhttpd/trunk/darkhttpd@.service)
  darkhttpd/repos/community-x86_64/PKGBUILD
(from rev 215246, darkhttpd/trunk/PKGBUILD)
  darkhttpd/repos/community-x86_64/darkhttpd.service
(from rev 215246, darkhttpd/trunk/darkhttpd.service)
  darkhttpd/repos/community-x86_64/darkhttpd@.service
(from rev 215246, darkhttpd/trunk/darkhttpd@.service)
Deleted:
  darkhttpd/repos/community-i686/PKGBUILD
  darkhttpd/repos/community-i686/darkhttpd.service
  darkhttpd/repos/community-i686/darkhttpd@.service
  darkhttpd/repos/community-x86_64/PKGBUILD
  darkhttpd/repos/community-x86_64/darkhttpd.service
  darkhttpd/repos/community-x86_64/darkhttpd@.service

-+
 /PKGBUILD   |   80 ++
 /darkhttpd.service  |   20 
 /darkhttpd@.service |   20 
 community-i686/PKGBUILD |   40 -
 community-i686/darkhttpd.service|9 ---
 community-i686/darkhttpd@.service   |9 ---
 community-x86_64/PKGBUILD   |   40 -
 community-x86_64/darkhttpd.service  |9 ---
 community-x86_64/darkhttpd@.service |9 ---
 9 files changed, 120 insertions(+), 116 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-07 15:25:44 UTC (rev 215246)
+++ community-i686/PKGBUILD 2017-03-07 15:26:05 UTC (rev 215247)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=darkhttpd
-pkgver=1.12
-pkgrel=2
-pkgdesc="A small and secure static webserver"
-arch=('i686' 'x86_64')
-url="http://dmr.ath.cx/net/darkhttpd/";
-license=('BSD')
-depends=()
-backup=('etc/conf.d/mimetypes')
-source=("$url/$pkgname-$pkgver.tar.bz2"
-'darkhttpd.service'
-'darkhttpd@.service')
-sha256sums=('a50417b622b32b5f421b3132cb94ebeff04f02c5fb87fba2e31147d23de50505'
-'0839e355e84911f764077d3d6f7163ba51d39f5bfccd12b22b22d536ac4bf166'
-'50eedeebc14b0cf1f2885bdeabe2a55206996d026637ed6656513254d545027f')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  # install darkhttpd
-  install -Dm755 "$srcdir/$pkgname-$pkgver/darkhttpd" 
"$pkgdir/usr/bin/darkhttpd"
-
-  # install systemd files
-  install -Dm644 "$srcdir/darkhttpd.service" 
"$pkgdir/usr/lib/systemd/system/darkhttpd.service"
-  install -Dm644 "$srcdir/darkhttpd@.service" 
"$pkgdir/usr/lib/systemd/system/darkhttpd@.service"
-  install -dm0755 "$pkgdir"/etc/conf.d/
-  touch "$pkgdir"/etc/conf.d/mimetypes
-
-  # install license
-  install -d "$pkgdir/usr/share/licenses/$pkgname"
-  head -n 18 darkhttpd.c > "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: darkhttpd/repos/community-i686/PKGBUILD (from rev 215246, 
darkhttpd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-07 15:26:05 UTC (rev 215247)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=darkhttpd
+pkgver=1.12
+pkgrel=3
+pkgdesc="A small and secure static webserver"
+arch=('i686' 'x86_64')
+url="http://dmr.ath.cx/net/darkhttpd/";
+license=('BSD')
+depends=()
+backup=('etc/conf.d/mimetypes')
+source=("$url/$pkgname-$pkgver.tar.bz2"
+'darkhttpd.service'
+'darkhttpd@.service')
+sha256sums=('a50417b622b32b5f421b3132cb94ebeff04f02c5fb87fba2e31147d23de50505'
+'c8168205f933f5d38b1b790db40f9173670b9cfc85b84dcad397ddf326cb791c'
+'f17058480ffc1df0a3ada78c2e574d084d57e49c1e43cdf1a95bbd2d57dcf26e')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # install darkhttpd
+  install -Dm755 "$srcdir/$pkgname-$pkgver/darkhttpd" 
"$pkgdir/usr/bin/darkhttpd"
+
+  # install systemd files
+  install -Dm644 "$srcdir/darkhttpd.service" 
"$pkgdir/usr/lib/systemd/system/darkhttpd.service"
+  install -Dm644 "$srcdir/darkhttpd@.service" 
"$pkgdir/usr/lib/systemd/system/darkhttpd@.service"
+  install -dm0755 "$pkgdir"/etc/conf.d/
+  touch "$pkgdir"/etc/conf.d/mimetypes
+
+  # install license
+  install -d "$pkgdir/usr/share/licenses/$pkgname"
+  head -n 18 darkhttpd.c > "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: community-i686/darkhttpd.service
===
--- community-i686/darkhttpd.service2017-03-07 15:25:44 UTC (rev 215246)
+++ community-i686/darkht

[arch-commits] Commit in firefox/repos (24 files)

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 15:24:02
  Author: heftig
Revision: 290094

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  firefox/repos/extra-i686/PKGBUILD
(from rev 290093, firefox/trunk/PKGBUILD)
  firefox/repos/extra-i686/firefox-install-dir.patch
(from rev 290093, firefox/trunk/firefox-install-dir.patch)
  firefox/repos/extra-i686/firefox-symbolic.svg
(from rev 290093, firefox/trunk/firefox-symbolic.svg)
  firefox/repos/extra-i686/firefox.desktop
(from rev 290093, firefox/trunk/firefox.desktop)
  firefox/repos/extra-i686/fix-wifi-scanner.diff
(from rev 290093, firefox/trunk/fix-wifi-scanner.diff)
  firefox/repos/extra-i686/rust-i686.patch
(from rev 290093, firefox/trunk/rust-i686.patch)
  firefox/repos/extra-x86_64/PKGBUILD
(from rev 290093, firefox/trunk/PKGBUILD)
  firefox/repos/extra-x86_64/firefox-install-dir.patch
(from rev 290093, firefox/trunk/firefox-install-dir.patch)
  firefox/repos/extra-x86_64/firefox-symbolic.svg
(from rev 290093, firefox/trunk/firefox-symbolic.svg)
  firefox/repos/extra-x86_64/firefox.desktop
(from rev 290093, firefox/trunk/firefox.desktop)
  firefox/repos/extra-x86_64/fix-wifi-scanner.diff
(from rev 290093, firefox/trunk/fix-wifi-scanner.diff)
  firefox/repos/extra-x86_64/rust-i686.patch
(from rev 290093, firefox/trunk/rust-i686.patch)
Deleted:
  firefox/repos/extra-i686/PKGBUILD
  firefox/repos/extra-i686/firefox-install-dir.patch
  firefox/repos/extra-i686/firefox-symbolic.svg
  firefox/repos/extra-i686/firefox.desktop
  firefox/repos/extra-i686/fix-wifi-scanner.diff
  firefox/repos/extra-i686/rust-i686.patch
  firefox/repos/extra-x86_64/PKGBUILD
  firefox/repos/extra-x86_64/firefox-install-dir.patch
  firefox/repos/extra-x86_64/firefox-symbolic.svg
  firefox/repos/extra-x86_64/firefox.desktop
  firefox/repos/extra-x86_64/fix-wifi-scanner.diff
  firefox/repos/extra-x86_64/rust-i686.patch

+
 /PKGBUILD  |  356 +
 /firefox-install-dir.patch |   24 +
 /firefox-symbolic.svg  |   60 +++
 /firefox.desktop   |  620 +++
 /fix-wifi-scanner.diff |   32 +
 /rust-i686.patch   |   32 +
 extra-i686/PKGBUILD|  177 
 extra-i686/firefox-install-dir.patch   |   12 
 extra-i686/firefox-symbolic.svg|   30 -
 extra-i686/firefox.desktop |  310 ---
 extra-i686/fix-wifi-scanner.diff   |   16 
 extra-i686/rust-i686.patch |   16 
 extra-x86_64/PKGBUILD  |  177 
 extra-x86_64/firefox-install-dir.patch |   12 
 extra-x86_64/firefox-symbolic.svg  |   30 -
 extra-x86_64/firefox.desktop   |  310 ---
 extra-x86_64/fix-wifi-scanner.diff |   16 
 extra-x86_64/rust-i686.patch   |   16 
 18 files changed, 1124 insertions(+), 1122 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-03-07 15:19:34 UTC (rev 290093)
+++ extra-i686/PKGBUILD 2017-03-07 15:24:02 UTC (rev 290094)
@@ -1,177 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-# Contributor: Jakub Schmidtke 
-
-pkgname=firefox
-pkgver=52.0
-pkgrel=1
-pkgdesc="Standalone web browser from mozilla.org"
-arch=(i686 x86_64)
-license=(MPL GPL LGPL)
-url="https://www.mozilla.org/firefox/";
-depends=(gtk3 gtk2 mozilla-common libxt startup-notification mime-types 
dbus-glib alsa-lib ffmpeg
- libvpx libevent nss hunspell sqlite ttf-font icu)
-makedepends=(unzip zip diffutils python2 yasm mesa imake gconf libpulse 
inetutils xorg-server-xvfb
- autoconf2.13 cargo)
-optdepends=('networkmanager: Location detection via available WiFi networks'
-'libnotify: Notification integration'
-'upower: Battery API'
-'speech-dispatcher: Text-to-Speech')
-options=(!emptydirs !makeflags)
-source=(https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.xz
-firefox.desktop firefox-symbolic.svg
-firefox-install-dir.patch rust-i686.patch fix-wifi-scanner.diff)
-sha256sums=('494ec86875ea60043658e402b664ccd5af4709acc3a478de8729f7cbac9ea3c1'
-'ada313750e6fb14558b37c764409a17c1672a351a46c73b350aa1fe4ea9220ef'
-'a2474b32b9b2d7e0fb53a4c89715507ad1c194bef77713d798fa39d507def9e9'
-'d86e41d87363656ee62e12543e2f5181aadcff448e406ef3218e91865ae775cd'
-'f61ea706ce6905f568b9bdafd1b044b58f20737426f0aa5019ddb9b64031a269'
-'9765bca5d63fb5525bbd0520b7ab1d27cabaed697e2fc7791400abc3fa4f13b8')
-validpgpkeys=('2B90598A745E992F315E22C58AB132963A06537A')
-
-# 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

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

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 15:19:34
  Author: heftig
Revision: 290093

52.0-2

Modified:
  firefox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 11:50:24 UTC (rev 290092)
+++ PKGBUILD2017-03-07 15:19:34 UTC (rev 290093)
@@ -5,7 +5,7 @@
 
 pkgname=firefox
 pkgver=52.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Standalone web browser from mozilla.org"
 arch=(i686 x86_64)
 license=(MPL GPL LGPL)
@@ -94,6 +94,7 @@
 
 # Features
 ac_add_options --enable-startup-notification
+ac_add_options --enable-alsa
 ac_add_options --disable-crashreporter
 ac_add_options --disable-updater
 


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

2017-03-07 Thread Timothy Redaelli
Date: Tuesday, March 7, 2017 @ 14:45:08
  Author: tredaelli
Revision: 215245

archrelease: copy trunk to community-i686, community-x86_64

Added:
  pax-utils/repos/community-i686/PKGBUILD
(from rev 215244, pax-utils/trunk/PKGBUILD)
  pax-utils/repos/community-x86_64/PKGBUILD
(from rev 215244, pax-utils/trunk/PKGBUILD)
Deleted:
  pax-utils/repos/community-i686/PKGBUILD
  pax-utils/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   68 
 community-i686/PKGBUILD   |   34 --
 community-x86_64/PKGBUILD |   34 --
 3 files changed, 68 insertions(+), 68 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-07 14:44:53 UTC (rev 215244)
+++ community-i686/PKGBUILD 2017-03-07 14:45:08 UTC (rev 215245)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: sh0 
-# Contributor: Maxwel 
-
-pkgname=pax-utils
-pkgver=1.2.2
-pkgrel=1
-pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties'
-url='http://hardened.gentoo.org/pax-utils.xml'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('bash' 'libcap' 'libseccomp' 'python-pyelftools')
-source=("http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz";)
-sha256sums=('7f4a7f8db6b4743adde7582fa48992ad01776796fcde030683732f56221337d9')
-
-_make() {
-  make USE_CAP='yes' USE_PYTHON='yes' USE_SECCOMP='yes' "$@"
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  _make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  LD_LIBRARY_PATH="/usr/lib" _make check
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  _make DESTDIR="${pkgdir}" install
-}

Copied: pax-utils/repos/community-i686/PKGBUILD (from rev 215244, 
pax-utils/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-07 14:45:08 UTC (rev 215245)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: sh0 
+# Contributor: Maxwel 
+
+pkgname=pax-utils
+pkgver=1.2.2
+pkgrel=2
+pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties'
+url='http://hardened.gentoo.org/pax-utils.xml'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('bash' 'libcap' 'python-pyelftools')
+source=("http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz";)
+sha256sums=('7f4a7f8db6b4743adde7582fa48992ad01776796fcde030683732f56221337d9')
+
+_make() {
+  make USE_CAP='yes' USE_PYTHON='yes' "$@"
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  _make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  LD_LIBRARY_PATH="/usr/lib" _make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  _make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-03-07 14:44:53 UTC (rev 215244)
+++ community-x86_64/PKGBUILD   2017-03-07 14:45:08 UTC (rev 215245)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: sh0 
-# Contributor: Maxwel 
-
-pkgname=pax-utils
-pkgver=1.2.2
-pkgrel=1
-pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties'
-url='http://hardened.gentoo.org/pax-utils.xml'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('bash' 'libcap' 'libseccomp' 'python-pyelftools')
-source=("http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz";)
-sha256sums=('7f4a7f8db6b4743adde7582fa48992ad01776796fcde030683732f56221337d9')
-
-_make() {
-  make USE_CAP='yes' USE_PYTHON='yes' USE_SECCOMP='yes' "$@"
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  _make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  LD_LIBRARY_PATH="/usr/lib" _make check
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  _make DESTDIR="${pkgdir}" install
-}

Copied: pax-utils/repos/community-x86_64/PKGBUILD (from rev 215244, 
pax-utils/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-07 14:45:08 UTC (rev 215245)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: sh0 
+# Contributor: Maxwel 
+
+pkgname=pax-utils
+pkgver=1.2.2
+pkgrel=2
+pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties'
+url='http://hardened.gentoo.org/pax-utils.xml'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('bash' 'libcap' 'python-pyelftools')
+source=("http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz";)
+sha256sums=('7f4a7f8db6b4743adde7582fa48992ad01776796fcde030683732f56221337d9')
+
+_make() {

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

2017-03-07 Thread Timothy Redaelli
Date: Tuesday, March 7, 2017 @ 14:44:53
  Author: tredaelli
Revision: 215244

upgpkg: pax-utils 1.2.2-2

Disable seccomp for FS#53175

Modified:
  pax-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 12:20:20 UTC (rev 215243)
+++ PKGBUILD2017-03-07 14:44:53 UTC (rev 215244)
@@ -5,17 +5,17 @@
 
 pkgname=pax-utils
 pkgver=1.2.2
-pkgrel=1
+pkgrel=2
 pkgdesc='ELF related utils for ELF 32/64 binaries that can check files for 
security relevant properties'
 url='http://hardened.gentoo.org/pax-utils.xml'
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('bash' 'libcap' 'libseccomp' 'python-pyelftools')
+depends=('bash' 'libcap' 'python-pyelftools')
 source=("http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz";)
 sha256sums=('7f4a7f8db6b4743adde7582fa48992ad01776796fcde030683732f56221337d9')
 
 _make() {
-  make USE_CAP='yes' USE_PYTHON='yes' USE_SECCOMP='yes' "$@"
+  make USE_CAP='yes' USE_PYTHON='yes' "$@"
 }
 
 build() {


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

2017-03-07 Thread Nicola Squartini
Date: Tuesday, March 7, 2017 @ 12:20:20
  Author: tensor5
Revision: 215243

archrelease: copy trunk to community-i686, community-x86_64

Added:
  parity/repos/community-i686/PKGBUILD
(from rev 215242, parity/trunk/PKGBUILD)
  parity/repos/community-x86_64/PKGBUILD
(from rev 215242, parity/trunk/PKGBUILD)
Deleted:
  parity/repos/community-i686/PKGBUILD
  parity/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   56 
 community-i686/PKGBUILD   |   27 -
 community-x86_64/PKGBUILD |   27 -
 3 files changed, 56 insertions(+), 54 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-07 12:19:57 UTC (rev 215242)
+++ community-i686/PKGBUILD 2017-03-07 12:20:20 UTC (rev 215243)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=parity
-pkgver=1.5.4
-pkgrel=1
-pkgdesc='Fast, light, robust Ethereum implementation'
-arch=('i686' 'x86_64')
-url='https://ethcore.io/parity.html'
-license=('GPL3')
-depends=('openssl')
-makedepends=('cargo')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ethcore/parity/archive/v${pkgver}.tar.gz";)
-sha256sums=('72dd703becdcb3993c890d20b4829f584271597bc5ec38d93501915cb0dae497')
-
-build() {
-cd ${pkgname}-${pkgver}
-
-cargo build --release
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-
-install -Dm755 -t "${pkgdir}"/usr/bin target/release/parity
-install -Dm644 -t "${pkgdir}"/usr/lib/systemd/system scripts/parity.service
-}

Copied: parity/repos/community-i686/PKGBUILD (from rev 215242, 
parity/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-07 12:20:20 UTC (rev 215243)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Nicola Squartini 
+
+pkgname=parity
+pkgver=1.5.6
+_commit=dc8bc8d8dd5af2abe70624efe4ef3e054e65f5eb
+pkgrel=1
+pkgdesc='Fast, light, robust Ethereum implementation'
+arch=('i686' 'x86_64')
+url='https://ethcore.io/parity.html'
+license=('GPL3')
+depends=('openssl')
+makedepends=('cargo' 'git')
+source=("git+https://github.com/ethcore/parity.git#commit=${_commit}";)
+sha256sums=('SKIP')
+
+build() {
+cd ${pkgname}
+
+cargo build --release
+}
+
+package() {
+cd ${pkgname}
+
+install -Dm755 -t "${pkgdir}"/usr/bin target/release/parity
+install -Dm644 -t "${pkgdir}"/usr/lib/systemd/system scripts/parity.service
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-03-07 12:19:57 UTC (rev 215242)
+++ community-x86_64/PKGBUILD   2017-03-07 12:20:20 UTC (rev 215243)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=parity
-pkgver=1.5.4
-pkgrel=1
-pkgdesc='Fast, light, robust Ethereum implementation'
-arch=('i686' 'x86_64')
-url='https://ethcore.io/parity.html'
-license=('GPL3')
-depends=('openssl')
-makedepends=('cargo')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ethcore/parity/archive/v${pkgver}.tar.gz";)
-sha256sums=('72dd703becdcb3993c890d20b4829f584271597bc5ec38d93501915cb0dae497')
-
-build() {
-cd ${pkgname}-${pkgver}
-
-cargo build --release
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-
-install -Dm755 -t "${pkgdir}"/usr/bin target/release/parity
-install -Dm644 -t "${pkgdir}"/usr/lib/systemd/system scripts/parity.service
-}

Copied: parity/repos/community-x86_64/PKGBUILD (from rev 215242, 
parity/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-07 12:20:20 UTC (rev 215243)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Nicola Squartini 
+
+pkgname=parity
+pkgver=1.5.6
+_commit=dc8bc8d8dd5af2abe70624efe4ef3e054e65f5eb
+pkgrel=1
+pkgdesc='Fast, light, robust Ethereum implementation'
+arch=('i686' 'x86_64')
+url='https://ethcore.io/parity.html'
+license=('GPL3')
+depends=('openssl')
+makedepends=('cargo' 'git')
+source=("git+https://github.com/ethcore/parity.git#commit=${_commit}";)
+sha256sums=('SKIP')
+
+build() {
+cd ${pkgname}
+
+cargo build --release
+}
+
+package() {
+cd ${pkgname}
+
+install -Dm755 -t "${pkgdir}"/usr/bin target/release/parity
+install -Dm644 -t "${pkgdir}"/usr/lib/systemd/system scripts/parity.service
+}


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

2017-03-07 Thread Nicola Squartini
Date: Tuesday, March 7, 2017 @ 12:19:57
  Author: tensor5
Revision: 215242

upgpkg: parity 1.5.6-1

Modified:
  parity/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 10:32:16 UTC (rev 215241)
+++ PKGBUILD2017-03-07 12:19:57 UTC (rev 215242)
@@ -2,7 +2,8 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=parity
-pkgver=1.5.4
+pkgver=1.5.6
+_commit=dc8bc8d8dd5af2abe70624efe4ef3e054e65f5eb
 pkgrel=1
 pkgdesc='Fast, light, robust Ethereum implementation'
 arch=('i686' 'x86_64')
@@ -9,18 +10,18 @@
 url='https://ethcore.io/parity.html'
 license=('GPL3')
 depends=('openssl')
-makedepends=('cargo')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ethcore/parity/archive/v${pkgver}.tar.gz";)
-sha256sums=('72dd703becdcb3993c890d20b4829f584271597bc5ec38d93501915cb0dae497')
+makedepends=('cargo' 'git')
+source=("git+https://github.com/ethcore/parity.git#commit=${_commit}";)
+sha256sums=('SKIP')
 
 build() {
-cd ${pkgname}-${pkgver}
+cd ${pkgname}
 
 cargo build --release
 }
 
 package() {
-cd ${pkgname}-${pkgver}
+cd ${pkgname}
 
 install -Dm755 -t "${pkgdir}"/usr/bin target/release/parity
 install -Dm644 -t "${pkgdir}"/usr/lib/systemd/system scripts/parity.service


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

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 11:50:24
  Author: heftig
Revision: 290092

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  vala/repos/extra-i686/PKGBUILD
(from rev 290091, vala/trunk/PKGBUILD)
  vala/repos/extra-x86_64/PKGBUILD
(from rev 290091, vala/trunk/PKGBUILD)
Deleted:
  vala/repos/extra-i686/PKGBUILD
  vala/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   90 
 extra-i686/PKGBUILD   |   45 
 extra-x86_64/PKGBUILD |   45 
 3 files changed, 90 insertions(+), 90 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-03-07 11:49:56 UTC (rev 290091)
+++ extra-i686/PKGBUILD 2017-03-07 11:50:24 UTC (rev 290092)
@@ -1,45 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor : Ionut Biru 
-# Contributor: Timm Preetz 
-
-pkgname=vala
-pkgver=0.34.5
-pkgrel=1
-pkgdesc='Compiler for the GObject type system'
-url='https://wiki.gnome.org/Projects/Vala'
-arch=('i686' 'x86_64')
-license=('LGPL')
-depends=('glib2')
-makedepends=('libxslt' 'git' 'vala')
-checkdepends=('dbus' 'libx11' 'gobject-introspection')
-_commit=0543f63bc86a6cd4064097ce6d6a8482df4f3243  # tags/0.34.5^0
-source=("git+https://git.gnome.org/browse/vala#commit=${_commit}";)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd ${pkgname}
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd ${pkgname}
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd ${pkgname}
-  ./configure --prefix=/usr --enable-vapigen
-  make
-}
-
-check() {
-  cd ${pkgname}
-  make check
-}
-
-package() {
-  cd ${pkgname}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: vala/repos/extra-i686/PKGBUILD (from rev 290091, vala/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-03-07 11:50:24 UTC (rev 290092)
@@ -0,0 +1,45 @@
+# Maintainer: Levente Polyak 
+# Contributor : Ionut Biru 
+# Contributor: Timm Preetz 
+
+pkgname=vala
+pkgver=0.34.6
+pkgrel=1
+pkgdesc='Compiler for the GObject type system'
+url='https://wiki.gnome.org/Projects/Vala'
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('glib2')
+makedepends=('libxslt' 'git' 'vala')
+checkdepends=('dbus' 'libx11' 'gobject-introspection')
+_commit=b5c353a01c764d400099a64d3516a289a5bd289e  # tags/0.34.6^0
+source=("git+https://git.gnome.org/browse/vala#commit=${_commit}";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd ${pkgname}
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd ${pkgname}
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd ${pkgname}
+  ./configure --prefix=/usr --enable-vapigen
+  make
+}
+
+check() {
+  cd ${pkgname}
+  make check
+}
+
+package() {
+  cd ${pkgname}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-03-07 11:49:56 UTC (rev 290091)
+++ extra-x86_64/PKGBUILD   2017-03-07 11:50:24 UTC (rev 290092)
@@ -1,45 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor : Ionut Biru 
-# Contributor: Timm Preetz 
-
-pkgname=vala
-pkgver=0.34.5
-pkgrel=1
-pkgdesc='Compiler for the GObject type system'
-url='https://wiki.gnome.org/Projects/Vala'
-arch=('i686' 'x86_64')
-license=('LGPL')
-depends=('glib2')
-makedepends=('libxslt' 'git' 'vala')
-checkdepends=('dbus' 'libx11' 'gobject-introspection')
-_commit=0543f63bc86a6cd4064097ce6d6a8482df4f3243  # tags/0.34.5^0
-source=("git+https://git.gnome.org/browse/vala#commit=${_commit}";)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd ${pkgname}
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd ${pkgname}
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd ${pkgname}
-  ./configure --prefix=/usr --enable-vapigen
-  make
-}
-
-check() {
-  cd ${pkgname}
-  make check
-}
-
-package() {
-  cd ${pkgname}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: vala/repos/extra-x86_64/PKGBUILD (from rev 290091, vala/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-03-07 11:50:24 UTC (rev 290092)
@@ -0,0 +1,45 @@
+# Maintainer: Levente Polyak 
+# Contributor : Ionut Biru 
+# Contributor: Timm Preetz 
+
+pkgname=vala
+pkgver=0.34.6
+pkgrel=1
+pkgdesc='Compiler for the GObject type system'
+url='https://wiki.gnome.org/Projects/Vala'
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('glib2')
+makedepends=('libxslt' 'git' 'vala')
+checkdepends=('dbus' 'libx11' 'gobject-introspection')
+_commit=b5c353a01c764d400099a64d3516a289a5bd289e  # tags/0.34.6^0
+source=("git+https://git.gnome.org/browse/vala#commit=${_commit}";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd ${pkgname}
+  git describe --tags

[arch-commits] Commit in firefox-i18n/repos/extra-any (PKGBUILD PKGBUILD)

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 11:49:56
  Author: heftig
Revision: 290091

archrelease: copy trunk to extra-any

Added:
  firefox-i18n/repos/extra-any/PKGBUILD
(from rev 290090, firefox-i18n/trunk/PKGBUILD)
Deleted:
  firefox-i18n/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  444 ++---
 1 file changed, 222 insertions(+), 222 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-07 11:46:03 UTC (rev 290090)
+++ PKGBUILD2017-03-07 11:49:56 UTC (rev 290091)
@@ -1,222 +0,0 @@
-# $Id$
-# Maintainer: Thomas Baechler 
-# Contributor: Jaroslaw Swierczynski 
-# Contributor: Michal Hybner 
-# Contributor: Andrea Scarpino 
-
-pkgbase=firefox-i18n
-pkgver=51.0.1
-pkgrel=1
-pkgdesc="Language pack for Firefox"
-arch=('any')
-url="http://www.mozilla.com/";
-license=('MPL' 'GPL')
-
-_languages=(
-  'ach"Acholi"'
-  'af "Afrikaans"'
-  'an "Aragonese"'
-  'ar "Arabic"'
-  'as "Assamese"'
-  'ast"Asturian"'
-  'az "Azerbaijani"'
-  '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"'
-  'kk "Kazakh"'
-  'km "Khmer"'
-  'kn "Kannada"'
-  'ko "Korean"'
-  'lij"Ligurian"'
-  'lt "Lithuanian"'
-  'lv "Latvian"'
-  'mai"Maithili"'
-  'mk "Macedonian"'
-  'ml "Malayalam"'
-  'mr "Marathi"'
-  'ms "Malay"'
-  '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"'
-  'uz "Uzbek"'
-  'vi "Vietnamese"'
-  'xh "Xhosa"'
-  'zh-CN  "Chinese (Simplified)"'
-  'zh-TW  "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/linux-i686/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=firefox-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  source+=("firefox-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"
-  depends=("firefox>=$pkgver")
-  install -Dm644 firefox-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
-}
-
-sha256sums=('2d0f554d524dfbd552f513a59eca728f87f2dc63871ea05d45e50dc62f98d0f4'
-'1bea00a4beb2c08eeff01386f119954d166cfe108e6b9053ff84923071cc70c1'
-'4f05a2800d1eb7c65d7f4fc731c90a798e55a414e425938ed9f2a4aab2574bb8'
-'ba9f424d03b292b7428c37104c9f367d1cfeb4c1cb70f01a3a3468ab8261a5a5'
-'525a14db543a0f80840e399d579ffbd8703f0b7ef75d4e3fc6c2ad7ce783d1f9'
-'4465abc44e515d39ead8cc7e072b225d5bec080e370129d5861eece6b348b2a9'
-'86beaf681270b0465b3a06d381866ed951f80d5d78f98217cb7e859f8dbb2705'
-'c4824b49257cff76ed34b0cb1a0f6747dc24b500f40d464b8696a5cc18f6ff0d'
-'9284871e91d84b39567b803ca75eb89d77d2a9dd0a3b25960ace88d5f13947ff'
-'642e8676e25ae1cd933f77be1d1ec30e80e8561be8856b8cd92e78866cd49870'
-'09b4cb3d86fcd3e3f6eb1a38b366c9fe6412deeb67d01479f43a87543e137af1'
-'4022af94e170fc94d80250389b2e7b61a4a0f046b70ba2d3d51efb842b9e4834'
-'26e5c545322ccfe6b923445daba906ed66671387a899c96c902e5bcc705c0ca3'
-'eefd2ad9de4bc79b046166df371abe5b5cbcedf2162ffb700ac650c8bd257400'
-'be37d732ad896c548523efcd097f45a8d16b3a0f1f1d086d0ed07c772e29

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

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 11:46:03
  Author: heftig
Revision: 290090

52.0-1

Modified:
  firefox-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  182 ++---
 1 file changed, 91 insertions(+), 91 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 11:22:18 UTC (rev 290089)
+++ PKGBUILD2017-03-07 11:46:03 UTC (rev 290090)
@@ -5,7 +5,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgbase=firefox-i18n
-pkgver=51.0.1
+pkgver=52.0
 pkgrel=1
 pkgdesc="Language pack for Firefox"
 arch=('any')
@@ -130,93 +130,93 @@
 
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
 }
 
-sha256sums=('2d0f554d524dfbd552f513a59eca728f87f2dc63871ea05d45e50dc62f98d0f4'
-'1bea00a4beb2c08eeff01386f119954d166cfe108e6b9053ff84923071cc70c1'
-'4f05a2800d1eb7c65d7f4fc731c90a798e55a414e425938ed9f2a4aab2574bb8'
-'ba9f424d03b292b7428c37104c9f367d1cfeb4c1cb70f01a3a3468ab8261a5a5'
-'525a14db543a0f80840e399d579ffbd8703f0b7ef75d4e3fc6c2ad7ce783d1f9'
-'4465abc44e515d39ead8cc7e072b225d5bec080e370129d5861eece6b348b2a9'
-'86beaf681270b0465b3a06d381866ed951f80d5d78f98217cb7e859f8dbb2705'
-'c4824b49257cff76ed34b0cb1a0f6747dc24b500f40d464b8696a5cc18f6ff0d'
-'9284871e91d84b39567b803ca75eb89d77d2a9dd0a3b25960ace88d5f13947ff'
-'642e8676e25ae1cd933f77be1d1ec30e80e8561be8856b8cd92e78866cd49870'
-'09b4cb3d86fcd3e3f6eb1a38b366c9fe6412deeb67d01479f43a87543e137af1'
-'4022af94e170fc94d80250389b2e7b61a4a0f046b70ba2d3d51efb842b9e4834'
-'26e5c545322ccfe6b923445daba906ed66671387a899c96c902e5bcc705c0ca3'
-'eefd2ad9de4bc79b046166df371abe5b5cbcedf2162ffb700ac650c8bd257400'
-'be37d732ad896c548523efcd097f45a8d16b3a0f1f1d086d0ed07c772e2969cb'
-'3e38992a09904b134d53c3bc27924ce7a10273ef47c0e8773960ac6937577fd3'
-'d8c21c45cac8ef9ecf891ae400151a2a8b65e0b1828049dc4094dc43269ad687'
-'c10becdcbedda89442a7e2783e2622ae154e467d7b3a6573dce0a8d156f39605'
-'51f535695c5cf6a5ac8672b4bc56b62e1fd8d8f85c4142da7db5e61d2b951222'
-'af4998b5514bf808c86bb0aa9e11a342e43c785e7d408c202a99ccc89cabc483'
-'91004f483701c7a830cf08edde0e2afabff57238f6b90d0391c8ec0e113e3f6e'
-'11eb16fe5c971ca539d378bbb3a40322c26758495c97acdfc4f626326a465b18'
-'37d7ae2f16415195c65d50bb1baa527fd9636aab1d3e105fd6a435af0fa38070'
-'0be96d097d93caedf404cc719c5938ea6f7937d57094a5018c4890fa13fbe2c1'
-'5c366f99807bf1c419f7bf78db6da27c2ec472c8e739849ce410d26ab0a34c3d'
-'62c0b31c29ed61620c80125b8e65281b1ad09e453189d05b53a196a202df0092'
-'a03558ac33f3d28b9ed7a1a131f982bab4f1b7bae1bb1305d80670ef5387e520'
-'c07d399f058d3f02bb7b69ebe10f4ffbb44247d3559328359c1d87895f15d28d'
-'fb31e7547ce748abf8181604a35db93885719dd6fddc8fde7b7e56d8b83a35fc'
-'9ed3f4aab20cd9e3d7efd53394efb7a5d097d05e659a8af3d37422fbea5c6f7f'
-'8f0c4430424e1e3f20f35f012d690860aeb68379b77309db93d30ff4d1e2ed6d'
-'8075823f986dd63c624566c32524154791c2e8288562dad20e873e968537002c'
-'54f70d1122cc3a391dc41e180cae223c8d1bad3f788b6722f552b968e7c4ae2a'
-'e5feac2a5aba883defdd74a07c5644d61b262df822d5168f79a451f76696e5d5'
-'6b381e3bcb6b989605f4f5d94dd0d22aecfcee65b415a61be6cb32edd953a525'
-'30ad7e4fb9d8c8b4b3445ffc1ed744f2b9d5dd03bc5909d4e69685ff4b8cc89e'
-'fcc9251174c1b1cee14277e7fcfa0abdeaa993e9c2fcb46c9ca9bebb64a2bb04'
-'537bd4735417db61f2198cebb27ed55d813f4c1bb2fc7046978a51218eff6647'
-'bc356b73e51d63255afb1bcafa880bf44ecf40a7be494edc1c1aff2c55c479a9'
-'a9c15003d2c1252631be89ac1b3c722ea330b7e898934a73464371e3d91295e1'
-'9c429782701846b294751ea0f0786370ae7870cedff75a6f08a618301eb0f9ff'
-'9978df7459b5d46592bf135acbe3577900b395e67914e4b00a08dacebaf4da7d'
-'d674d2355f82cd552d7944a3128331305524ec3fa3a9ea089cad014848bbb1aa'
-'e26772b5472bd981bad41408dcf9ea18d6e43fdfb26eed411395b1d24c300b81'
-'e664b47e69ad12bf1a2284e1ae0ec5dbad5c79551df2eb4c9954455d1232cf1c'
-'74903ef5dc36292073e05552df15a5fd17dbab09520bdd3102f77bbdf65eb220'
-'5e240651a6f0d0ecb7ceaf099872c0996da5b7e6dee8293184ae0a200a72caae'
-'aed5cb9a82cf11fe4520a1889bc3ed587aa9976e3e62ac63060db7042ac1ee29'
-'d3c7f1bee0fc3d12d77af3282685250e26761f260998fe68ebb2540f6b07f950'
-'02ad8db63da2a4dcf50a15f4d32496fffdccfad53509553c97f256454f31d589'
-'bb9e27875466a9c3bc86b51ac5e2676156a7b22c689826c1ae460712b20d1eba'
-'e6fc90fc9656a8f9f440e657e63f1e6977391d4a1410f82d9fff58cc536b0e4a'
-'244ee834654706623bbd3e014c2445223eecbd0ada0e24cb0d424417cab93769'
-'d2

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

2017-03-07 Thread Jan Steffens
Date: Tuesday, March 7, 2017 @ 11:22:18
  Author: heftig
Revision: 290089

0.34.6-1

Modified:
  vala/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 10:49:10 UTC (rev 290088)
+++ PKGBUILD2017-03-07 11:22:18 UTC (rev 290089)
@@ -3,7 +3,7 @@
 # Contributor: Timm Preetz 
 
 pkgname=vala
-pkgver=0.34.5
+pkgver=0.34.6
 pkgrel=1
 pkgdesc='Compiler for the GObject type system'
 url='https://wiki.gnome.org/Projects/Vala'
@@ -12,7 +12,7 @@
 depends=('glib2')
 makedepends=('libxslt' 'git' 'vala')
 checkdepends=('dbus' 'libx11' 'gobject-introspection')
-_commit=0543f63bc86a6cd4064097ce6d6a8482df4f3243  # tags/0.34.5^0
+_commit=b5c353a01c764d400099a64d3516a289a5bd289e  # tags/0.34.6^0
 source=("git+https://git.gnome.org/browse/vala#commit=${_commit}";)
 sha256sums=('SKIP')
 


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

2017-03-07 Thread Ronald van Haren
Date: Tuesday, March 7, 2017 @ 10:49:10
  Author: ronald
Revision: 290088

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  terminology/repos/extra-i686/PKGBUILD
(from rev 290087, terminology/trunk/PKGBUILD)
  terminology/repos/extra-x86_64/PKGBUILD
(from rev 290087, terminology/trunk/PKGBUILD)
Deleted:
  terminology/repos/extra-i686/PKGBUILD
  terminology/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   70 
 extra-i686/PKGBUILD   |   36 
 extra-x86_64/PKGBUILD |   36 
 3 files changed, 70 insertions(+), 72 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-03-07 10:49:00 UTC (rev 290087)
+++ extra-i686/PKGBUILD 2017-03-07 10:49:10 UTC (rev 290088)
@@ -1,36 +0,0 @@
-# Maintainer: Ronald van Haren 
-# Contributor: Doug Newgard 
-# Contributor: Paul Ezvan 
-
-pkgname=terminology
-pkgver=0.9.1
-pkgrel=3
-pkgdesc="EFL based terminal emulator"
-arch=('i686' 'x86_64')
-url="https://www.enlightenment.org/about-terminology";
-license=('BSD')
-depends=('efl')
-optdepends=('emotion_generic_players: video support')
-source=("http://download.enlightenment.org/rel/apps/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-sha1sums=('5b3dd4f0ce8c8a2384c8019843664cfb71f0bc37')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  export CFLAGS="${CFLAGS} -fvisibility=hidden"
-  
-  ./configure \
---prefix=/usr
-
-  make
-}
-
-package(){
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-
-  # install license files
-  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/COPYING" \
-"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: terminology/repos/extra-i686/PKGBUILD (from rev 290087, 
terminology/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-03-07 10:49:10 UTC (rev 290088)
@@ -0,0 +1,35 @@
+# Maintainer: Ronald van Haren 
+# Contributor: Doug Newgard 
+# Contributor: Paul Ezvan 
+
+pkgname=terminology
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="EFL based terminal emulator"
+arch=('i686' 'x86_64')
+url="https://www.enlightenment.org/about-terminology";
+license=('BSD')
+depends=('efl')
+source=("http://download.enlightenment.org/rel/apps/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+sha1sums=('8621d9b88995b7f0e71437438853f8c4c473bc98')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  export CFLAGS="${CFLAGS} -fvisibility=hidden"
+  
+  ./configure \
+--prefix=/usr
+
+  make
+}
+
+package(){
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  # install license files
+  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/COPYING" \
+"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-03-07 10:49:00 UTC (rev 290087)
+++ extra-x86_64/PKGBUILD   2017-03-07 10:49:10 UTC (rev 290088)
@@ -1,36 +0,0 @@
-# Maintainer: Ronald van Haren 
-# Contributor: Doug Newgard 
-# Contributor: Paul Ezvan 
-
-pkgname=terminology
-pkgver=0.9.1
-pkgrel=3
-pkgdesc="EFL based terminal emulator"
-arch=('i686' 'x86_64')
-url="https://www.enlightenment.org/about-terminology";
-license=('BSD')
-depends=('efl')
-optdepends=('emotion_generic_players: video support')
-source=("http://download.enlightenment.org/rel/apps/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-sha1sums=('5b3dd4f0ce8c8a2384c8019843664cfb71f0bc37')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  export CFLAGS="${CFLAGS} -fvisibility=hidden"
-  
-  ./configure \
---prefix=/usr
-
-  make
-}
-
-package(){
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-
-  # install license files
-  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/COPYING" \
-"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: terminology/repos/extra-x86_64/PKGBUILD (from rev 290087, 
terminology/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-03-07 10:49:10 UTC (rev 290088)
@@ -0,0 +1,35 @@
+# Maintainer: Ronald van Haren 
+# Contributor: Doug Newgard 
+# Contributor: Paul Ezvan 
+
+pkgname=terminology
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="EFL based terminal emulator"
+arch=('i686' 'x86_64')
+url="https://www.enlightenment.org/about-terminology";
+license=('BSD')
+depends=('efl')
+source=("http://download.enlightenment.org/rel/apps/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+sha1sums=('8621d9b88995b7f0e71437438853f8c4c473bc98')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  export CFLAGS="${CFLAGS} -fvisibility=hidden"
+  
+  ./configure \
+--prefix=/usr
+
+ 

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

2017-03-07 Thread Ronald van Haren
Date: Tuesday, March 7, 2017 @ 10:49:00
  Author: ronald
Revision: 290087

upgpkg: terminology 1.0.0-1

update enlightenment and libs

Modified:
  terminology/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 10:48:57 UTC (rev 290086)
+++ PKGBUILD2017-03-07 10:49:00 UTC (rev 290087)
@@ -3,16 +3,15 @@
 # Contributor: Paul Ezvan 
 
 pkgname=terminology
-pkgver=0.9.1
-pkgrel=3
+pkgver=1.0.0
+pkgrel=1
 pkgdesc="EFL based terminal emulator"
 arch=('i686' 'x86_64')
 url="https://www.enlightenment.org/about-terminology";
 license=('BSD')
 depends=('efl')
-optdepends=('emotion_generic_players: video support')
 
source=("http://download.enlightenment.org/rel/apps/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-sha1sums=('5b3dd4f0ce8c8a2384c8019843664cfb71f0bc37')
+sha1sums=('8621d9b88995b7f0e71437438853f8c4c473bc98')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"


[arch-commits] Commit in efl/repos (12 files)

2017-03-07 Thread Ronald van Haren
Date: Tuesday, March 7, 2017 @ 10:48:42
  Author: ronald
Revision: 290085

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  efl/repos/extra-i686/PKGBUILD
(from rev 290084, efl/trunk/PKGBUILD)
  efl/repos/extra-i686/efl-1.10.0-giflib-5.1.0.patch
(from rev 290084, efl/trunk/efl-1.10.0-giflib-5.1.0.patch)
  efl/repos/extra-i686/eina_doxygen.patch
(from rev 290084, efl/trunk/eina_doxygen.patch)
  efl/repos/extra-x86_64/PKGBUILD
(from rev 290084, efl/trunk/PKGBUILD)
  efl/repos/extra-x86_64/efl-1.10.0-giflib-5.1.0.patch
(from rev 290084, efl/trunk/efl-1.10.0-giflib-5.1.0.patch)
  efl/repos/extra-x86_64/eina_doxygen.patch
(from rev 290084, efl/trunk/eina_doxygen.patch)
Deleted:
  efl/repos/extra-i686/PKGBUILD
  efl/repos/extra-i686/efl-1.10.0-giflib-5.1.0.patch
  efl/repos/extra-i686/eina_doxygen.patch
  efl/repos/extra-x86_64/PKGBUILD
  efl/repos/extra-x86_64/efl-1.10.0-giflib-5.1.0.patch
  efl/repos/extra-x86_64/eina_doxygen.patch

+
 /PKGBUILD  |  142 +++
 /efl-1.10.0-giflib-5.1.0.patch |   78 ++
 /eina_doxygen.patch|   20 +++
 extra-i686/PKGBUILD|   72 -
 extra-i686/efl-1.10.0-giflib-5.1.0.patch   |   39 ---
 extra-i686/eina_doxygen.patch  |   10 -
 extra-x86_64/PKGBUILD  |   72 -
 extra-x86_64/efl-1.10.0-giflib-5.1.0.patch |   39 ---
 extra-x86_64/eina_doxygen.patch|   10 -
 9 files changed, 240 insertions(+), 242 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-03-07 10:48:21 UTC (rev 290084)
+++ extra-i686/PKGBUILD 2017-03-07 10:48:42 UTC (rev 290085)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: Enlightenment Developers 
-
-pkgbase=efl
-pkgname=('efl' 'efl-docs')
-pkgver=1.18.2
-pkgrel=3
-pkgdesc="Enlightenment Foundation Libraries"
-arch=('i686' 'x86_64')
-url="http://www.enlightenment.org";
-license=('BSD' 'LGPL2.1' 'GPL2' 'custom')
-depends=('bullet' 'libjpeg-turbo' 'gst-plugins-base'
- 'luajit' 'curl' 'fribidi' 'libpulse' 'libxcomposite'
- 'libxinerama' 'libxrandr' 'libxss' 'libinput'
- 'libxcursor' 'libxp' 'libwebp' 'shared-mime-info'
- 'libxkbcommon' 'wayland' 'lz4' 'openjpeg' 'avahi'
- 'libspectre' 'libraw' 'librsvg')
-optdepends=('python2: einabench-cmp' 'libreoffice: thumbnailing for 
DOC/PPT/XLS files')
-makedepends=('doxygen' 'python' 'texlive-core' 'ghostscript' 'imagemagick')
-options=('!emptydirs')
-source=(http://download.enlightenment.org/rel/libs/${pkgname}/$pkgname-$pkgver.tar.xz
-   'eina_doxygen.patch')
-sha1sums=('d39bba5676f64cec3d0e4eba952de4217bca7333'
-  'ef2b961e793c711685623a149ab55b1bec9a3676')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  sed -i 's/env python$/&2/' src/scripts/eina/eina-bench-cmp
-
-  # fix docs building
-  patch -Np0 -i ${srcdir}/eina_doxygen.patch
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  export CFLAGS="$CFLAGS -fvisibility=hidden"
-
-  ./configure --prefix=/usr \
-  --disable-static --disable-tslib --enable-fb \
-  --enable-xinput22 --enable-multisense --enable-systemd \
-  --enable-image-loader-webp --enable-harfbuzz --enable-wayland \
-  --enable-liblz4 --enable-drm --enable-elput --enable-egl --with-opengl=es
-
-  make
-  make -j1 doc || return 0  # don't fail on the docs
-}
-
-package_efl(){
-  replaces=('elementary' 'evas_generic_loaders' 'emotion_generic_players')
-
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make -j1 DESTDIR=${pkgdir} install
-
-  # install non-standard license files
-  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/licenses/COPYING.BSD" \
-"${pkgdir}/usr/share/licenses/${pkgname}/COPYING.BSD"
-  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/licenses/COPYING.SMALL" \
-"${pkgdir}/usr/share/licenses/${pkgname}/COPYING.SMALL"
-}
-
-package_efl-docs() {
-  pkgdesc="Documentation for the Enlightenment Foundation Libraries"
-  depends=()
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  install -d "${pkgdir}/usr/share/doc/${pkgbase}"
-  cp -a doc/html "${pkgdir}/usr/share/doc/${pkgbase}/html"
-  cp -a doc/latex "${pkgdir}/usr/share/doc/${pkgbase}/latex"
-}
-

Copied: efl/repos/extra-i686/PKGBUILD (from rev 290084, efl/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-03-07 10:48:42 UTC (rev 290085)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Enlightenment Developers 
+
+pkgbase=efl
+pkgname=('efl' 'efl-docs')
+pkgver=1.18.4
+pkgrel=1
+pkgdesc="Enlightenment Foundation Libraries"
+arch=('i686' 'x86_64')
+url="http://www.enlightenment.org";
+license=('BSD' 'LGPL2.1' 'GPL2' 'custom')
+depends=('bullet' 'libjpeg-tur

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

2017-03-07 Thread Ronald van Haren
Date: Tuesday, March 7, 2017 @ 10:48:57
  Author: ronald
Revision: 290086

upgpkg: enlightenment 0.21.6-1

update enlightenment and libs

Modified:
  enlightenment/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 10:48:42 UTC (rev 290085)
+++ PKGBUILD2017-03-07 10:48:57 UTC (rev 290086)
@@ -2,7 +2,7 @@
 # Contributor: Enlightenment Developers 
>
 
 pkgname=enlightenment
-pkgver=0.21.3
+pkgver=0.21.6
 pkgrel=1
 pkgdesc="Enlightenment window manager"
 arch=('i686' 'x86_64')
@@ -19,7 +19,7 @@
 backup=('etc/enlightenment/sysactions.conf'
 'etc/xdg/menus/e-applications.menu')
 
source=("http://download.enlightenment.org/rel/apps/${pkgname}/$pkgname-$pkgver.tar.gz";)
-sha1sums=('ed437fffbd60d73ae1a0af04917f8124e074e9a0')
+sha1sums=('4f96dbdf31f0e60e796dc2d3e74b7a05210d93f6')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"


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

2017-03-07 Thread Ronald van Haren
Date: Tuesday, March 7, 2017 @ 10:48:21
  Author: ronald
Revision: 290084

upgpkg: efl 1.18.4-1

update enlightenment and libs

Modified:
  efl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 07:31:54 UTC (rev 290083)
+++ PKGBUILD2017-03-07 10:48:21 UTC (rev 290084)
@@ -4,8 +4,8 @@
 
 pkgbase=efl
 pkgname=('efl' 'efl-docs')
-pkgver=1.18.2
-pkgrel=3
+pkgver=1.18.4
+pkgrel=1
 pkgdesc="Enlightenment Foundation Libraries"
 arch=('i686' 'x86_64')
 url="http://www.enlightenment.org";
@@ -20,10 +20,9 @@
 makedepends=('doxygen' 'python' 'texlive-core' 'ghostscript' 'imagemagick')
 options=('!emptydirs')
 
source=(http://download.enlightenment.org/rel/libs/${pkgname}/$pkgname-$pkgver.tar.xz
-   'eina_doxygen.patch')
-sha1sums=('d39bba5676f64cec3d0e4eba952de4217bca7333'
+   'eina_doxygen.patch')
+sha1sums=('34e7d9ea62da5a539289a0e76af7403b278e5c59'
   'ef2b961e793c711685623a149ab55b1bec9a3676')
-
 prepare() {
   cd "${srcdir}/${pkgname}-${pkgver}"
   sed -i 's/env python$/&2/' src/scripts/eina/eina-bench-cmp


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

2017-03-07 Thread Alexander Rødseth
Date: Tuesday, March 7, 2017 @ 10:32:16
  Author: arodseth
Revision: 215241

archrelease: copy trunk to community-staging-x86_64, community-staging-i686

Added:
  erlang/repos/community-staging-i686/
  erlang/repos/community-staging-i686/PKGBUILD
(from rev 215240, erlang/trunk/PKGBUILD)
  erlang/repos/community-staging-i686/epmd.conf
(from rev 215240, erlang/trunk/epmd.conf)
  erlang/repos/community-staging-i686/epmd.service
(from rev 215240, erlang/trunk/epmd.service)
  erlang/repos/community-staging-i686/epmd.socket
(from rev 215240, erlang/trunk/epmd.socket)
  erlang/repos/community-staging-x86_64/
  erlang/repos/community-staging-x86_64/PKGBUILD
(from rev 215240, erlang/trunk/PKGBUILD)
  erlang/repos/community-staging-x86_64/epmd.conf
(from rev 215240, erlang/trunk/epmd.conf)
  erlang/repos/community-staging-x86_64/epmd.service
(from rev 215240, erlang/trunk/epmd.service)
  erlang/repos/community-staging-x86_64/epmd.socket
(from rev 215240, erlang/trunk/epmd.socket)

---+
 community-staging-i686/PKGBUILD   |   95 
 community-staging-i686/epmd.conf  |3 +
 community-staging-i686/epmd.service   |   11 +++
 community-staging-i686/epmd.socket|9 +++
 community-staging-x86_64/PKGBUILD |   95 
 community-staging-x86_64/epmd.conf|3 +
 community-staging-x86_64/epmd.service |   11 +++
 community-staging-x86_64/epmd.socket  |9 +++
 8 files changed, 236 insertions(+)

Copied: erlang/repos/community-staging-i686/PKGBUILD (from rev 215240, 
erlang/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-07 10:32:16 UTC (rev 215241)
@@ -0,0 +1,95 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Lukas Fleischer 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Sarah Hay 
+# Contributor: Tom Burdick 
+# Contributor: Ricardo Catalinas Jiménez 
+
+pkgbase=erlang
+pkgname=('erlang' 'erlang-unixodbc')
+pkgver=19.2.3
+pkgrel=3
+arch=('x86_64' 'i686')
+url='http://www.erlang.org/'
+license=('Apache')
+makedepends=('perl' 'mesa' 'lksctp-tools' 'unixodbc' 'wxgtk' 'glu' 'git'
+ 'libxslt' 'fop' 'java-environment')
+options=('staticlibs')
+source=("git+https://github.com/erlang/otp.git#tag=OTP-$pkgver";
+"http://www.erlang.org/download/otp_doc_man_${pkgver%.*}.tar.gz";
+'epmd.service'
+'epmd.socket'
+'epmd.conf')
+sha256sums=('SKIP'
+'8a76ff3bb40a6d6a1552fa5a4204c8a3c7d99d2ea6f12684f02d038b23ad25cb'
+'b121ec9053fb37abca5f910a81c526f93ec30fe13b574a12209223b346886a9e'
+'998a759e4cea4527f9d9b241bf9f32527d7378d63ea40afa38443c6c3ceaea34'
+'78ce5e67b21758c767d727e56b20502f75dc4385ff9b6c6db312d8e8506f2df2')
+
+prepare() {
+  cd otp
+
+  ./otp_build setup
+}
+
+build() {
+  cd otp
+
+  ./configure --prefix=/usr --enable-smp-support --with-odbc 
--enable-builtin-zlib
+  make
+}
+
+package_erlang() {
+  pkgdesc='General-purpose concurrent functional programming language 
developed by Ericsson'
+  depends=('ncurses' 'glu' 'wxgtk' 'openssl')
+  optdepends=('erlang-unixodbc: database support'
+  'java-environment: for Java support'
+  'lksctp-tools: for SCTP support')
+  provides=('erlang-nox')
+  conflicts=('erlang-nox')
+
+  make -C otp DESTDIR="$pkgdir" install
+
+  # Documentation
+  install -d "$pkgdir/usr/share/doc/erlang"
+  install -m0644 "$srcdir/otp/README.md" \
+"$srcdir"/COPYRIGHT \
+"$pkgdir/usr/share/doc/erlang"
+
+  # Compressed man pages
+  for page in "$srcdir/man/man?/*"; do gzip $page; done
+  cp -r "$srcdir/man" "$pkgdir/usr/lib/erlang/"
+
+  # License
+  install -Dm0644 "$srcdir/otp/LICENSE.txt" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+
+  # Move over files that will be packaged as erlang-unixodbc
+  mkdir "$srcdir/unixodbc"
+  mv "$pkgdir/usr/lib/erlang/lib/odbc"* "$srcdir/unixodbc/"
+  mv "$pkgdir/usr/lib/erlang/man/man3/odbc.3.gz" "$srcdir"
+
+  # epmd service, socket and conf
+  cd "$srcdir"
+  install -Dm644 epmd.service "$pkgdir/usr/lib/systemd/system/epmd.service"
+  install -Dm644 epmd.socket "$pkgdir/usr/lib/systemd/system/epmd.socket"
+  install -Dm644 epmd.conf "$pkgdir/etc/conf.d/epmd"
+}
+
+package_erlang-unixodbc() {
+  pkgdesc='Unixodbc support for Erlang'
+  depends=('unixodbc' 'erlang-nox')
+
+  # Get the files that should be packaged as erlang-unixodbc
+  mkdir -p "$pkgdir/usr/lib/erlang/"{lib,man/man3}
+  mv "$srcdir/unixodbc/"* "$pkgdir/usr/lib/erlang/lib/"
+  mv "$srcdir/odbc.3.gz" "$pkgdir/usr/lib/erlang/man/man3/"
+
+  # License
+  install -Dm0644 "$srcdir/otp/LICENSE.txt" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENCE.txt"
+}
+
+# getver: raw.githubusercontent.com/erlang/otp/maint/OTP_VERSION
+# vim:set ts=2 sw=2 et:

Copied: er

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

2017-03-07 Thread Alexander Rødseth
Date: Tuesday, March 7, 2017 @ 10:30:44
  Author: arodseth
Revision: 215240

upgpkg: erlang 19.2.3-3

Modified:
  erlang/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 09:52:34 UTC (rev 215239)
+++ PKGBUILD2017-03-07 10:30:44 UTC (rev 215240)
@@ -9,7 +9,7 @@
 pkgbase=erlang
 pkgname=('erlang' 'erlang-unixodbc')
 pkgver=19.2.3
-pkgrel=2
+pkgrel=3
 arch=('x86_64' 'i686')
 url='http://www.erlang.org/'
 license=('Apache')


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

2017-03-07 Thread Jonathan Steel
Date: Tuesday, March 7, 2017 @ 09:52:27
  Author: jsteel
Revision: 215238

upgpkg: aws-cli 1.11.57-1

Modified:
  aws-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 09:52:16 UTC (rev 215237)
+++ PKGBUILD2017-03-07 09:52:27 UTC (rev 215238)
@@ -3,7 +3,7 @@
 # Contributor: Alper KANAT 
 
 pkgname=aws-cli
-pkgver=1.11.56
+pkgver=1.11.57
 pkgrel=1
 pkgdesc='Universal Command Line Interface for Amazon Web Services'
 arch=('any')
@@ -14,7 +14,7 @@
  'python-s3transfer' 'python-yaml')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('a9da743c5a91dcee4767ccc0cad3191f')
+md5sums=('a7ffd5e32bce7e8aa6e382b48e8e4cb3')
 
 build() {
   cd $pkgname-$pkgver


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

2017-03-07 Thread Jonathan Steel
Date: Tuesday, March 7, 2017 @ 09:52:34
  Author: jsteel
Revision: 215239

archrelease: copy trunk to community-any

Added:
  aws-cli/repos/community-any/PKGBUILD
(from rev 215238, aws-cli/trunk/PKGBUILD)
Deleted:
  aws-cli/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-07 09:52:27 UTC (rev 215238)
+++ PKGBUILD2017-03-07 09:52:34 UTC (rev 215239)
@@ -1,34 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Alper KANAT 
-
-pkgname=aws-cli
-pkgver=1.11.56
-pkgrel=1
-pkgdesc='Universal Command Line Interface for Amazon Web Services'
-arch=('any')
-url="https://github.com/aws/aws-cli";
-license=('Apache')
-depends=('python-botocore' 'python-dateutil' 'python-jmespath'
- 'python-colorama' 'python-docutils' 'python-rsa'
- 'python-s3transfer' 'python-yaml')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('a9da743c5a91dcee4767ccc0cad3191f')
-
-build() {
-  cd $pkgname-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
-
-  rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer}
-}

Copied: aws-cli/repos/community-any/PKGBUILD (from rev 215238, 
aws-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-07 09:52:34 UTC (rev 215239)
@@ -0,0 +1,34 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Alper KANAT 
+
+pkgname=aws-cli
+pkgver=1.11.57
+pkgrel=1
+pkgdesc='Universal Command Line Interface for Amazon Web Services'
+arch=('any')
+url="https://github.com/aws/aws-cli";
+license=('Apache')
+depends=('python-botocore' 'python-dateutil' 'python-jmespath'
+ 'python-colorama' 'python-docutils' 'python-rsa'
+ 'python-s3transfer' 'python-yaml')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('a7ffd5e32bce7e8aa6e382b48e8e4cb3')
+
+build() {
+  cd $pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
+
+  rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer}
+}


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

2017-03-07 Thread Jonathan Steel
Date: Tuesday, March 7, 2017 @ 09:52:07
  Author: jsteel
Revision: 215236

upgpkg: python-botocore 1.5.20-1

Modified:
  python-botocore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 09:41:35 UTC (rev 215235)
+++ PKGBUILD2017-03-07 09:52:07 UTC (rev 215236)
@@ -4,7 +4,7 @@
 # Contributor: Chris Fordham
 
 pkgname=python-botocore
-pkgver=1.5.19
+pkgver=1.5.20
 pkgrel=1
 pkgdesc='A low-level interface to a growing number of Amazon Web Services'
 arch=('any')
@@ -13,7 +13,7 @@
 depends=('python-dateutil' 'python-jmespath' 'python-docutils')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('d94b16c114f793ac3e1a87f378a406ee')
+md5sums=('3a4f057f96e5b0925ae31f0c0f0777a7')
 
 build() {
   cd botocore-$pkgver


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

2017-03-07 Thread Jonathan Steel
Date: Tuesday, March 7, 2017 @ 09:52:16
  Author: jsteel
Revision: 215237

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-07 09:52:07 UTC (rev 215236)
+++ PKGBUILD2017-03-07 09:52:16 UTC (rev 215237)
@@ -1,30 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Ainola
-# Contributor: Chris Fordham
-
-pkgname=python-botocore
-pkgver=1.5.19
-pkgrel=1
-pkgdesc='A low-level interface to a growing number of Amazon Web Services'
-arch=('any')
-url="https://github.com/boto/botocore";
-license=('Apache')
-depends=('python-dateutil' 'python-jmespath' 'python-docutils')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('d94b16c114f793ac3e1a87f378a406ee')
-
-build() {
-  cd botocore-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd botocore-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-botocore/repos/community-any/PKGBUILD (from rev 215236, 
python-botocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-07 09:52:16 UTC (rev 215237)
@@ -0,0 +1,30 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Ainola
+# Contributor: Chris Fordham
+
+pkgname=python-botocore
+pkgver=1.5.20
+pkgrel=1
+pkgdesc='A low-level interface to a growing number of Amazon Web Services'
+arch=('any')
+url="https://github.com/boto/botocore";
+license=('Apache')
+depends=('python-dateutil' 'python-jmespath' 'python-docutils')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('3a4f057f96e5b0925ae31f0c0f0777a7')
+
+build() {
+  cd botocore-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd botocore-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2017-03-07 Thread Jonathan Steel
Date: Tuesday, March 7, 2017 @ 09:41:35
  Author: jsteel
Revision: 215235

archrelease: copy trunk to community-i686, community-x86_64

Added:
  obs-studio/repos/community-i686/PKGBUILD
(from rev 215234, obs-studio/trunk/PKGBUILD)
  obs-studio/repos/community-x86_64/PKGBUILD
(from rev 215234, obs-studio/trunk/PKGBUILD)
Deleted:
  obs-studio/repos/community-i686/PKGBUILD
  obs-studio/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   68 
 community-i686/PKGBUILD   |   34 --
 community-x86_64/PKGBUILD |   34 --
 3 files changed, 68 insertions(+), 68 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-07 09:41:20 UTC (rev 215234)
+++ community-i686/PKGBUILD 2017-03-07 09:41:35 UTC (rev 215235)
@@ -1,34 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Benjamin Klettbach 
-
-pkgname=obs-studio
-pkgver=17.0.1
-pkgrel=1
-pkgdesc="Free, open source software for live streaming and recording"
-arch=('i686' 'x86_64')
-url="https://obsproject.com";
-license=('GPL2')
-depends=('ffmpeg' 'jansson' 'libxinerama' 'libxkbcommon-x11'
- 'qt5-x11extras' 'curl' 'jack' 'gtk-update-icon-cache')
-makedepends=('cmake' 'libfdk-aac' 'libxcomposite' 'x264')
-optdepends=('libfdk-aac: FDK AAC codec support'
-'libxcomposite: XComposite capture support')
-source=($pkgname-$pkgver.tar.gz::https://github.com/jp9000/obs-studio/archive/$pkgver.tar.gz)
-md5sums=('05d176fda7dfaa471c912cfcbafcc86d')
-
-build() {
-  cd $pkgname-$pkgver
-
-  mkdir -p build; cd build
-
-  cmake -DCMAKE_INSTALL_PREFIX="/usr" \
--DOBS_VERSION_OVERRIDE="$pkgver-$pkgrel" ..
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver/build
-
-  make install DESTDIR="$pkgdir"
-}

Copied: obs-studio/repos/community-i686/PKGBUILD (from rev 215234, 
obs-studio/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-07 09:41:35 UTC (rev 215235)
@@ -0,0 +1,34 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Benjamin Klettbach 
+
+pkgname=obs-studio
+pkgver=18.0.1
+pkgrel=1
+pkgdesc="Free, open source software for live streaming and recording"
+arch=('i686' 'x86_64')
+url="https://obsproject.com";
+license=('GPL2')
+depends=('ffmpeg' 'jansson' 'libxinerama' 'libxkbcommon-x11'
+ 'qt5-x11extras' 'curl' 'jack' 'gtk-update-icon-cache')
+makedepends=('cmake' 'libfdk-aac' 'libxcomposite' 'x264')
+optdepends=('libfdk-aac: FDK AAC codec support'
+'libxcomposite: XComposite capture support')
+source=($pkgname-$pkgver.tar.gz::https://github.com/jp9000/obs-studio/archive/$pkgver.tar.gz)
+md5sums=('5ba48b93cfc95955f4fcc7a391da84fe')
+
+build() {
+  cd $pkgname-$pkgver
+
+  mkdir -p build; cd build
+
+  cmake -DCMAKE_INSTALL_PREFIX="/usr" \
+-DOBS_VERSION_OVERRIDE="$pkgver-$pkgrel" ..
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver/build
+
+  make install DESTDIR="$pkgdir"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-03-07 09:41:20 UTC (rev 215234)
+++ community-x86_64/PKGBUILD   2017-03-07 09:41:35 UTC (rev 215235)
@@ -1,34 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Benjamin Klettbach 
-
-pkgname=obs-studio
-pkgver=17.0.1
-pkgrel=1
-pkgdesc="Free, open source software for live streaming and recording"
-arch=('i686' 'x86_64')
-url="https://obsproject.com";
-license=('GPL2')
-depends=('ffmpeg' 'jansson' 'libxinerama' 'libxkbcommon-x11'
- 'qt5-x11extras' 'curl' 'jack' 'gtk-update-icon-cache')
-makedepends=('cmake' 'libfdk-aac' 'libxcomposite' 'x264')
-optdepends=('libfdk-aac: FDK AAC codec support'
-'libxcomposite: XComposite capture support')
-source=($pkgname-$pkgver.tar.gz::https://github.com/jp9000/obs-studio/archive/$pkgver.tar.gz)
-md5sums=('05d176fda7dfaa471c912cfcbafcc86d')
-
-build() {
-  cd $pkgname-$pkgver
-
-  mkdir -p build; cd build
-
-  cmake -DCMAKE_INSTALL_PREFIX="/usr" \
--DOBS_VERSION_OVERRIDE="$pkgver-$pkgrel" ..
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver/build
-
-  make install DESTDIR="$pkgdir"
-}

Copied: obs-studio/repos/community-x86_64/PKGBUILD (from rev 215234, 
obs-studio/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-07 09:41:35 UTC (rev 215235)
@@ -0,0 +1,34 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Benjamin Klettbach 
+
+pkgname=obs-studio
+pkgver=18.0.1
+pkgrel=1
+pkgdesc="Free, open source software for live streaming and recording"
+arch=('i686' 'x86_64')
+url="https://obsproject.com";
+license=('GPL2')
+depends=('ffmpeg' 'jansson' 'libxinerama' 'libxkbco

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

2017-03-07 Thread Jonathan Steel
Date: Tuesday, March 7, 2017 @ 09:41:20
  Author: jsteel
Revision: 215234

upgpkg: obs-studio 18.0.1-1

Modified:
  obs-studio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 09:21:17 UTC (rev 215233)
+++ PKGBUILD2017-03-07 09:41:20 UTC (rev 215234)
@@ -2,7 +2,7 @@
 # Contributor: Benjamin Klettbach 
 
 pkgname=obs-studio
-pkgver=17.0.1
+pkgver=18.0.1
 pkgrel=1
 pkgdesc="Free, open source software for live streaming and recording"
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 optdepends=('libfdk-aac: FDK AAC codec support'
 'libxcomposite: XComposite capture support')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/jp9000/obs-studio/archive/$pkgver.tar.gz)
-md5sums=('05d176fda7dfaa471c912cfcbafcc86d')
+md5sums=('5ba48b93cfc95955f4fcc7a391da84fe')
 
 build() {
   cd $pkgname-$pkgver


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

2017-03-07 Thread Pierre Neidhardt
Date: Tuesday, March 7, 2017 @ 09:21:01
  Author: ambrevar
Revision: 215232

upgpkg: fzf 0.16.6-1

Modified:
  fzf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 09:12:06 UTC (rev 215231)
+++ PKGBUILD2017-03-07 09:21:01 UTC (rev 215232)
@@ -5,7 +5,7 @@
 # Contributor: jebaum 
 
 pkgname=fzf
-pkgver=0.16.5
+pkgver=0.16.6
 pkgrel=1
 pkgdesc="Command-line fuzzy finder"
 arch=("i686" "x86_64")
@@ -18,7 +18,7 @@
"zsh: zsh keybindings")
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/junegunn/fzf/archive/$pkgver.tar.gz";
"git+https://github.com/junegunn/$pkgname.wiki";)
-sha256sums=('7add1b5290af779fc1c6a3e306d696fb0e833d4efb5b60d94f9c424ac1b6f9fe'
+sha256sums=('6be4f32decc2e50b24a4b120a1e2217b437a2eaa77063435b0eb3268fc3f6573'
 'SKIP')
 
 build() {


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

2017-03-07 Thread Pierre Neidhardt
Date: Tuesday, March 7, 2017 @ 09:21:17
  Author: ambrevar
Revision: 215233

archrelease: copy trunk to community-i686, community-x86_64

Added:
  fzf/repos/community-i686/PKGBUILD
(from rev 215232, fzf/trunk/PKGBUILD)
  fzf/repos/community-x86_64/PKGBUILD
(from rev 215232, fzf/trunk/PKGBUILD)
Deleted:
  fzf/repos/community-i686/PKGBUILD
  fzf/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  116 
 community-i686/PKGBUILD   |   58 --
 community-x86_64/PKGBUILD |   58 --
 3 files changed, 116 insertions(+), 116 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-07 09:21:01 UTC (rev 215232)
+++ community-i686/PKGBUILD 2017-03-07 09:21:17 UTC (rev 215233)
@@ -1,58 +0,0 @@
-# Maintainer: Pierre Neidhardt 
-# Contributor: Hermann Zahnweh (eigengrau)
-# Contributor: Andy Weidenbaum 
-# Contributor: foalsrock 
-# Contributor: jebaum 
-
-pkgname=fzf
-pkgver=0.16.5
-pkgrel=1
-pkgdesc="Command-line fuzzy finder"
-arch=("i686" "x86_64")
-url="https://github.com/junegunn/fzf";
-license=("MIT")
-makedepends=("git" "go")
-optdepends=("fish: fish keybindings"
-   "tmux: fzf-tmux script for launching fzf in a tmux pane"
-   "vim: plugin"
-   "zsh: zsh keybindings")
-source=("$pkgname-$pkgver.tar.gz::https://github.com/junegunn/fzf/archive/$pkgver.tar.gz";
-   "git+https://github.com/junegunn/$pkgname.wiki";)
-sha256sums=('7add1b5290af779fc1c6a3e306d696fb0e833d4efb5b60d94f9c424ac1b6f9fe'
-'SKIP')
-
-build() {
-   cd "$srcdir/$pkgname-$pkgver"
-
-   msg2 'Building...'
-   GOPATH="$srcdir" TMPDIR=/tmp go get -u github.com/junegunn/fzf/...
-}
-
-package() {
-   cd "$srcdir/$pkgname-$pkgver"
-
-   ## Doc
-   install -dm755 "$pkgdir/usr/share/doc/fzf/wiki"
-   install -m644 "$srcdir/fzf.wiki"/* "$pkgdir/usr/share/doc/fzf/wiki"
-   install -m644 README.md install uninstall "$pkgdir/usr/share/doc/fzf"
-
-   ## Man page
-   install -Dm644 "man/man1/fzf.1" "$pkgdir/usr/share/man/man1/fzf.1"
-
-   ## License
-   install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/fzf/LICENSE"
-
-   ## Binaries
-   install -dm755 "$pkgdir/usr/bin"
-   install -m755 "$srcdir/bin/fzf" "bin/fzf-tmux" "$pkgdir/usr/bin/"
-
-   ## Completion and keybindings
-   install -dm755 "$pkgdir/usr/share/fzf"
-   install -m644 shell/*.bash shell/*.zsh "$pkgdir/usr/share/fzf"
-
-   ## Fish keybindings
-   install -Dm644 "shell/key-bindings.fish" 
"$pkgdir/usr/share/fish/functions/fzf_key_bindings.fish"
-
-   ## Vim plugin
-   install -Dm644 plugin/fzf.vim 
"$pkgdir"/usr/share/vim/vimfiles/plugin/fzf.vim
-}

Copied: fzf/repos/community-i686/PKGBUILD (from rev 215232, fzf/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-07 09:21:17 UTC (rev 215233)
@@ -0,0 +1,58 @@
+# Maintainer: Pierre Neidhardt 
+# Contributor: Hermann Zahnweh (eigengrau)
+# Contributor: Andy Weidenbaum 
+# Contributor: foalsrock 
+# Contributor: jebaum 
+
+pkgname=fzf
+pkgver=0.16.6
+pkgrel=1
+pkgdesc="Command-line fuzzy finder"
+arch=("i686" "x86_64")
+url="https://github.com/junegunn/fzf";
+license=("MIT")
+makedepends=("git" "go")
+optdepends=("fish: fish keybindings"
+   "tmux: fzf-tmux script for launching fzf in a tmux pane"
+   "vim: plugin"
+   "zsh: zsh keybindings")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/junegunn/fzf/archive/$pkgver.tar.gz";
+   "git+https://github.com/junegunn/$pkgname.wiki";)
+sha256sums=('6be4f32decc2e50b24a4b120a1e2217b437a2eaa77063435b0eb3268fc3f6573'
+'SKIP')
+
+build() {
+   cd "$srcdir/$pkgname-$pkgver"
+
+   msg2 'Building...'
+   GOPATH="$srcdir" TMPDIR=/tmp go get -u github.com/junegunn/fzf/...
+}
+
+package() {
+   cd "$srcdir/$pkgname-$pkgver"
+
+   ## Doc
+   install -dm755 "$pkgdir/usr/share/doc/fzf/wiki"
+   install -m644 "$srcdir/fzf.wiki"/* "$pkgdir/usr/share/doc/fzf/wiki"
+   install -m644 README.md install uninstall "$pkgdir/usr/share/doc/fzf"
+
+   ## Man page
+   install -Dm644 "man/man1/fzf.1" "$pkgdir/usr/share/man/man1/fzf.1"
+
+   ## License
+   install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/fzf/LICENSE"
+
+   ## Binaries
+   install -dm755 "$pkgdir/usr/bin"
+   install -m755 "$srcdir/bin/fzf" "bin/fzf-tmux" "$pkgdir/usr/bin/"
+
+   ## Completion and keybindings
+   install -dm755 "$pkgdir/usr/share/fzf"
+   install -m644 shell/*.bash shell/*.zsh "$pkgdir/usr/share/fzf"
+
+   ## Fish keybindings
+   install -Dm644 "shell/key-bindings.fish" 
"$pkgdir/usr/share/fish/functions/fzf_key_bindings.fish"
+
+   ## Vim plugin
+   

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

2017-03-07 Thread Pierre Neidhardt
Date: Tuesday, March 7, 2017 @ 09:11:50
  Author: ambrevar
Revision: 215230

upgpkg: udiskie 1.6.2-1

Modified:
  udiskie/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 09:00:33 UTC (rev 215229)
+++ PKGBUILD2017-03-07 09:11:50 UTC (rev 215230)
@@ -4,7 +4,7 @@
 # Contributor: Byron Clark 
 
 pkgname=udiskie
-pkgver=1.6.1
+pkgver=1.6.2
 pkgrel=1
 pkgdesc="Removable disk automounter using udisks"
 arch=("any")
@@ -14,7 +14,7 @@
 makedepends=("asciidoc")
 options=(!emptydirs)
 
source=("$pkgname-$pkgver.tar.gz::https://codeload.github.com/coldfix/$pkgname/tar.gz/$pkgver";)
-md5sums=('c0d8133a2e524e4f060cd8986291080b')
+md5sums=('a7eee273b1fd97a5c9510852d6344bf1')
 
 package() {
cd "$srcdir/$pkgname-$pkgver"


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

2017-03-07 Thread Pierre Neidhardt
Date: Tuesday, March 7, 2017 @ 09:12:06
  Author: ambrevar
Revision: 215231

archrelease: copy trunk to community-any

Added:
  udiskie/repos/community-any/PKGBUILD
(from rev 215230, udiskie/trunk/PKGBUILD)
Deleted:
  udiskie/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-07 09:11:50 UTC (rev 215230)
+++ PKGBUILD2017-03-07 09:12:06 UTC (rev 215231)
@@ -1,30 +0,0 @@
-# $Id: PKGBUILD 73684 2012-07-14 05:00:28Z dwallace $
-# Maintainer: Pierre Neidhardt 
-# Contributor: Daniel Wallace 
-# Contributor: Byron Clark 
-
-pkgname=udiskie
-pkgver=1.6.1
-pkgrel=1
-pkgdesc="Removable disk automounter using udisks"
-arch=("any")
-url="https://pypi.python.org/pypi/udiskie";
-license=("MIT")
-depends=("udisks2" "python-gobject" "python-setuptools" "python-yaml" 
"python-docopt" "gtk3" "libnotify" "python-keyutils")
-makedepends=("asciidoc")
-options=(!emptydirs)
-source=("$pkgname-$pkgver.tar.gz::https://codeload.github.com/coldfix/$pkgname/tar.gz/$pkgver";)
-md5sums=('c0d8133a2e524e4f060cd8986291080b')
-
-package() {
-   cd "$srcdir/$pkgname-$pkgver"
-   export LC_ALL=en_US.utf8
-
-   python setup.py install --root="$pkgdir" --optimize=1
-
-   make -C doc
-   install -m 0644 -D "doc/$pkgname.8" 
"$pkgdir/usr/share/man/man8/$pkgname.8"
-   install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-   install -dm755 "$pkgdir/usr/share/zsh/site-functions"
-   install -m644 completions/* "$pkgdir/usr/share/zsh/site-functions"
-}

Copied: udiskie/repos/community-any/PKGBUILD (from rev 215230, 
udiskie/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-07 09:12:06 UTC (rev 215231)
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 73684 2012-07-14 05:00:28Z dwallace $
+# Maintainer: Pierre Neidhardt 
+# Contributor: Daniel Wallace 
+# Contributor: Byron Clark 
+
+pkgname=udiskie
+pkgver=1.6.2
+pkgrel=1
+pkgdesc="Removable disk automounter using udisks"
+arch=("any")
+url="https://pypi.python.org/pypi/udiskie";
+license=("MIT")
+depends=("udisks2" "python-gobject" "python-setuptools" "python-yaml" 
"python-docopt" "gtk3" "libnotify" "python-keyutils")
+makedepends=("asciidoc")
+options=(!emptydirs)
+source=("$pkgname-$pkgver.tar.gz::https://codeload.github.com/coldfix/$pkgname/tar.gz/$pkgver";)
+md5sums=('a7eee273b1fd97a5c9510852d6344bf1')
+
+package() {
+   cd "$srcdir/$pkgname-$pkgver"
+   export LC_ALL=en_US.utf8
+
+   python setup.py install --root="$pkgdir" --optimize=1
+
+   make -C doc
+   install -m 0644 -D "doc/$pkgname.8" 
"$pkgdir/usr/share/man/man8/$pkgname.8"
+   install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+   install -dm755 "$pkgdir/usr/share/zsh/site-functions"
+   install -m644 completions/* "$pkgdir/usr/share/zsh/site-functions"
+}


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

2017-03-07 Thread Sergej Pupykin
Date: Tuesday, March 7, 2017 @ 09:00:14
  Author: spupykin
Revision: 215228

upgpkg: darkhttpd 1.12-2

upd

Added:
  darkhttpd/trunk/darkhttpd@.service
Modified:
  darkhttpd/trunk/PKGBUILD
  darkhttpd/trunk/darkhttpd.service

+
 PKGBUILD   |   11 ++-
 darkhttpd.service  |2 +-
 darkhttpd@.service |9 +
 3 files changed, 16 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 08:32:47 UTC (rev 215227)
+++ PKGBUILD2017-03-07 09:00:14 UTC (rev 215228)
@@ -3,7 +3,7 @@
 
 pkgname=darkhttpd
 pkgver=1.12
-pkgrel=1
+pkgrel=2
 pkgdesc="A small and secure static webserver"
 arch=('i686' 'x86_64')
 url="http://dmr.ath.cx/net/darkhttpd/";
@@ -11,11 +11,11 @@
 depends=()
 backup=('etc/conf.d/mimetypes')
 source=("$url/$pkgname-$pkgver.tar.bz2"
-'darkhttpd.service')
-sha256sums=('afad244add43c53010b36ada6ccdf1a854885cb37d6aeff103ad0aa4aed96c51'
-'40f037a74bf8d28e779dcf7c0d447bcc74a629ffe6abb470e193f047567aed11')
+'darkhttpd.service'
+'darkhttpd@.service')
 sha256sums=('a50417b622b32b5f421b3132cb94ebeff04f02c5fb87fba2e31147d23de50505'
-'40f037a74bf8d28e779dcf7c0d447bcc74a629ffe6abb470e193f047567aed11')
+'0839e355e84911f764077d3d6f7163ba51d39f5bfccd12b22b22d536ac4bf166'
+'50eedeebc14b0cf1f2885bdeabe2a55206996d026637ed6656513254d545027f')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"
@@ -30,6 +30,7 @@
 
   # install systemd files
   install -Dm644 "$srcdir/darkhttpd.service" 
"$pkgdir/usr/lib/systemd/system/darkhttpd.service"
+  install -Dm644 "$srcdir/darkhttpd@.service" 
"$pkgdir/usr/lib/systemd/system/darkhttpd@.service"
   install -dm0755 "$pkgdir"/etc/conf.d/
   touch "$pkgdir"/etc/conf.d/mimetypes
 

Modified: darkhttpd.service
===
--- darkhttpd.service   2017-03-07 08:32:47 UTC (rev 215227)
+++ darkhttpd.service   2017-03-07 09:00:14 UTC (rev 215228)
@@ -3,7 +3,7 @@
 
 [Service]
 Type=simple
-ExecStart=/usr/bin/darkhttpd /srv/http --uid nobody --gid nobody --chroot 
--mimetypes /etc/conf.d/mimetypes
+ExecStart=/usr/bin/darkhttpd /srv/http --uid http --gid http --chroot 
--no-listing --mimetypes /etc/conf.d/mimetypes
 
 [Install]
 WantedBy=multi-user.target

Added: darkhttpd@.service
===
--- darkhttpd@.service  (rev 0)
+++ darkhttpd@.service  2017-03-07 09:00:14 UTC (rev 215228)
@@ -0,0 +1,9 @@
+[Unit]
+Description=Darkhttpd Webserver
+
+[Service]
+Type=simple
+ExecStart=/usr/bin/darkhttpd /srv/http --uid http --gid http --chroot 
--no-listing --mimetypes /etc/conf.d/mimetypes --addr %i
+
+[Install]
+WantedBy=multi-user.target


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

2017-03-07 Thread Sergej Pupykin
Date: Tuesday, March 7, 2017 @ 09:00:33
  Author: spupykin
Revision: 215229

archrelease: copy trunk to community-i686, community-x86_64

Added:
  darkhttpd/repos/community-i686/PKGBUILD
(from rev 215228, darkhttpd/trunk/PKGBUILD)
  darkhttpd/repos/community-i686/darkhttpd.service
(from rev 215228, darkhttpd/trunk/darkhttpd.service)
  darkhttpd/repos/community-i686/darkhttpd@.service
(from rev 215228, darkhttpd/trunk/darkhttpd@.service)
  darkhttpd/repos/community-x86_64/PKGBUILD
(from rev 215228, darkhttpd/trunk/PKGBUILD)
  darkhttpd/repos/community-x86_64/darkhttpd.service
(from rev 215228, darkhttpd/trunk/darkhttpd.service)
  darkhttpd/repos/community-x86_64/darkhttpd@.service
(from rev 215228, darkhttpd/trunk/darkhttpd@.service)
Deleted:
  darkhttpd/repos/community-i686/PKGBUILD
  darkhttpd/repos/community-i686/darkhttpd.service
  darkhttpd/repos/community-x86_64/PKGBUILD
  darkhttpd/repos/community-x86_64/darkhttpd.service

-+
 /PKGBUILD   |   80 ++
 /darkhttpd.service  |   18 +++
 community-i686/PKGBUILD |   39 
 community-i686/darkhttpd.service|9 ---
 community-i686/darkhttpd@.service   |9 +++
 community-x86_64/PKGBUILD   |   39 
 community-x86_64/darkhttpd.service  |9 ---
 community-x86_64/darkhttpd@.service |9 +++
 8 files changed, 116 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-07 09:00:14 UTC (rev 215228)
+++ community-i686/PKGBUILD 2017-03-07 09:00:33 UTC (rev 215229)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=darkhttpd
-pkgver=1.12
-pkgrel=1
-pkgdesc="A small and secure static webserver"
-arch=('i686' 'x86_64')
-url="http://dmr.ath.cx/net/darkhttpd/";
-license=('BSD')
-depends=()
-backup=('etc/conf.d/mimetypes')
-source=("$url/$pkgname-$pkgver.tar.bz2"
-'darkhttpd.service')
-sha256sums=('afad244add43c53010b36ada6ccdf1a854885cb37d6aeff103ad0aa4aed96c51'
-'40f037a74bf8d28e779dcf7c0d447bcc74a629ffe6abb470e193f047567aed11')
-sha256sums=('a50417b622b32b5f421b3132cb94ebeff04f02c5fb87fba2e31147d23de50505'
-'40f037a74bf8d28e779dcf7c0d447bcc74a629ffe6abb470e193f047567aed11')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  # install darkhttpd
-  install -Dm755 "$srcdir/$pkgname-$pkgver/darkhttpd" 
"$pkgdir/usr/bin/darkhttpd"
-
-  # install systemd files
-  install -Dm644 "$srcdir/darkhttpd.service" 
"$pkgdir/usr/lib/systemd/system/darkhttpd.service"
-  install -dm0755 $pkgdir/etc/conf.d/
-  touch $pkgdir/etc/conf.d/mimetypes
-
-  # install license
-  install -d "$pkgdir/usr/share/licenses/$pkgname"
-  head -n 18 darkhttpd.c > "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: darkhttpd/repos/community-i686/PKGBUILD (from rev 215228, 
darkhttpd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-07 09:00:33 UTC (rev 215229)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=darkhttpd
+pkgver=1.12
+pkgrel=2
+pkgdesc="A small and secure static webserver"
+arch=('i686' 'x86_64')
+url="http://dmr.ath.cx/net/darkhttpd/";
+license=('BSD')
+depends=()
+backup=('etc/conf.d/mimetypes')
+source=("$url/$pkgname-$pkgver.tar.bz2"
+'darkhttpd.service'
+'darkhttpd@.service')
+sha256sums=('a50417b622b32b5f421b3132cb94ebeff04f02c5fb87fba2e31147d23de50505'
+'0839e355e84911f764077d3d6f7163ba51d39f5bfccd12b22b22d536ac4bf166'
+'50eedeebc14b0cf1f2885bdeabe2a55206996d026637ed6656513254d545027f')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # install darkhttpd
+  install -Dm755 "$srcdir/$pkgname-$pkgver/darkhttpd" 
"$pkgdir/usr/bin/darkhttpd"
+
+  # install systemd files
+  install -Dm644 "$srcdir/darkhttpd.service" 
"$pkgdir/usr/lib/systemd/system/darkhttpd.service"
+  install -Dm644 "$srcdir/darkhttpd@.service" 
"$pkgdir/usr/lib/systemd/system/darkhttpd@.service"
+  install -dm0755 "$pkgdir"/etc/conf.d/
+  touch "$pkgdir"/etc/conf.d/mimetypes
+
+  # install license
+  install -d "$pkgdir/usr/share/licenses/$pkgname"
+  head -n 18 darkhttpd.c > "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: community-i686/darkhttpd.service
===
--- community-i686/darkhttpd.service2017-03-07 09:00:14 UTC (rev 215228)
+++ community-i686/darkhttpd.service2017-03-07 09:00:33 UTC (rev 215229)
@@ -1,9 +0,0 @@
-[Unit]
-Description=Darkhttpd Webserver
-
-[Service]
-Type=simple
-ExecStart=/usr/bin/darkhttpd /srv/http --uid nobody --gid nobody --chroot 
--mim

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

2017-03-07 Thread Antonio Rojas
Date: Tuesday, March 7, 2017 @ 08:32:47
  Author: arojas
Revision: 215227

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  thrift/repos/community-staging-i686/
  thrift/repos/community-staging-i686/PKGBUILD
(from rev 215226, thrift/trunk/PKGBUILD)
  thrift/repos/community-staging-x86_64/
  thrift/repos/community-staging-x86_64/PKGBUILD
(from rev 215226, thrift/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   68 
 community-staging-x86_64/PKGBUILD |   68 
 2 files changed, 136 insertions(+)

Copied: thrift/repos/community-staging-i686/PKGBUILD (from rev 215226, 
thrift/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-07 08:32:47 UTC (rev 215227)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+# Contributor: Byron Clark 
+
+# This package contains only thrift compiler and C/C++ libraries
+# for all the language binding one should use corresponding language-specific 
package manager:
+# CPAN for perl, gem for ruby, pip for python etc... Or better to create arch 
packages that install
+# the binding from the language specific managers python2-thrift, perl-thrift, 
ruby-thrift, ...
+
+pkgname=thrift
+pkgver=0.10.0
+pkgrel=2
+pkgdesc='Scalable cross-language services framework for IPC/RPC'
+arch=(i686 x86_64)
+url='http://thrift.apache.org/'
+license=(APACHE)
+depends=(gcc-libs openssl)
+makedepends=(qt4 qt5-base boost libevent emacs-nox)
+optdepends=(
+  'qt4: TQTcpServer (Qt4) support'
+  'qt5-base: TQTcpServer (Qt5) support'
+)
+source=(thrift-$pkgver.zip::https://github.com/apache/thrift/archive/$pkgver.zip)
+sha1sums=('461cad8da7e73dab11c036760ce76c39b65cd59a')
+
+build() {
+  cd thrift-$pkgver
+
+  ./bootstrap.sh
+  ./configure --prefix=/usr \
+  --with-cpp \
+  --with-c_glib \
+ --with-qt4 \
+  --with-qt5 \
+  --with-libevent \
+  --with-csharp \
+  --without-haskell \
+  --without-php \
+  --without-ruby \
+  --without-python \
+  --without-erlang \
+  --without-perl \
+  --without-java \
+  --without-c_sharp \
+  --without-d \
+  --without-php \
+  --without-go \
+  --without-lua \
+  --without-nodejs
+  
+  make
+
+  emacs -Q --batch -f batch-byte-compile contrib/thrift.el
+}
+
+check() {
+  cd thrift-$pkgver
+#  make check
+}
+
+package() {
+  cd thrift-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  install -m0644 -D contrib/thrift.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/thrift.vim
+  install -m0644 -D contrib/thrift.el 
"$pkgdir"/usr/share/emacs/site-lisp/thrift.el
+  install -m0644 -D contrib/thrift.elc 
"$pkgdir"/usr/share/emacs/site-lisp/thrift.elc
+}

Copied: thrift/repos/community-staging-x86_64/PKGBUILD (from rev 215226, 
thrift/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-07 08:32:47 UTC (rev 215227)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+# Contributor: Byron Clark 
+
+# This package contains only thrift compiler and C/C++ libraries
+# for all the language binding one should use corresponding language-specific 
package manager:
+# CPAN for perl, gem for ruby, pip for python etc... Or better to create arch 
packages that install
+# the binding from the language specific managers python2-thrift, perl-thrift, 
ruby-thrift, ...
+
+pkgname=thrift
+pkgver=0.10.0
+pkgrel=2
+pkgdesc='Scalable cross-language services framework for IPC/RPC'
+arch=(i686 x86_64)
+url='http://thrift.apache.org/'
+license=(APACHE)
+depends=(gcc-libs openssl)
+makedepends=(qt4 qt5-base boost libevent emacs-nox)
+optdepends=(
+  'qt4: TQTcpServer (Qt4) support'
+  'qt5-base: TQTcpServer (Qt5) support'
+)
+source=(thrift-$pkgver.zip::https://github.com/apache/thrift/archive/$pkgver.zip)
+sha1sums=('461cad8da7e73dab11c036760ce76c39b65cd59a')
+
+build() {
+  cd thrift-$pkgver
+
+  ./bootstrap.sh
+  ./configure --prefix=/usr \
+  --with-cpp \
+  --with-c_glib \
+ --with-qt4 \
+  --with-qt5 \
+  --with-libevent \
+  --with-csharp \
+  --without-haskell \
+  --without-php \
+  --without-ruby \
+  --without-python \
+  --without-erlang \
+  --without-perl \
+  --without-java \
+  --without-c_sharp \
+  --without-d \
+  --without-php \
+  --without-go \
+  --without-lua \
+ 

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

2017-03-07 Thread Antonio Rojas
Date: Tuesday, March 7, 2017 @ 08:32:22
  Author: arojas
Revision: 215226

openssl 1.1 rebuild

Modified:
  thrift/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 08:12:24 UTC (rev 215225)
+++ PKGBUILD2017-03-07 08:32:22 UTC (rev 215226)
@@ -9,7 +9,7 @@
 
 pkgname=thrift
 pkgver=0.10.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Scalable cross-language services framework for IPC/RPC'
 arch=(i686 x86_64)
 url='http://thrift.apache.org/'


[arch-commits] Commit in phoronix-test-suite/trunk (PKGBUILD)

2017-03-07 Thread Sergej Pupykin
Date: Tuesday, March 7, 2017 @ 08:12:12
  Author: spupykin
Revision: 215224

upgpkg: phoronix-test-suite 7.0.0-1

upd

Modified:
  phoronix-test-suite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 08:09:22 UTC (rev 215223)
+++ PKGBUILD2017-03-07 08:12:12 UTC (rev 215224)
@@ -3,7 +3,7 @@
 # Contributor: Andreas Schönfelder 
 
 pkgname=phoronix-test-suite
-pkgver=6.8.0
+pkgver=7.0.0
 pkgrel=1
 pkgdesc="The most comprehensive testing and benchmarking platform available 
for Linux"
 arch=('any')
@@ -14,7 +14,7 @@
'php-gd')
 install=${pkgname}.install
 
source=(http://www.phoronix.net/downloads/phoronix-test-suite/releases/phoronix-test-suite-$pkgver.tar.gz)
-sha256sums=('fe741336dbf251fc210367b20713b554b3fd4edf15cf1f5950ff8bcbb3b09aec')
+sha256sums=('ccd3d0b5e79e9cf150d277d402254de66ecf7a993ad78e0b385960c6c29e4824')
 
 package() {
   cd "$srcdir"/phoronix-test-suite


[arch-commits] Commit in phoronix-test-suite/repos/community-any (4 files)

2017-03-07 Thread Sergej Pupykin
Date: Tuesday, March 7, 2017 @ 08:12:24
  Author: spupykin
Revision: 215225

archrelease: copy trunk to community-any

Added:
  phoronix-test-suite/repos/community-any/PKGBUILD
(from rev 215224, phoronix-test-suite/trunk/PKGBUILD)
  phoronix-test-suite/repos/community-any/phoronix-test-suite.install
(from rev 215224, phoronix-test-suite/trunk/phoronix-test-suite.install)
Deleted:
  phoronix-test-suite/repos/community-any/PKGBUILD
  phoronix-test-suite/repos/community-any/phoronix-test-suite.install

-+
 PKGBUILD|   54 +-
 phoronix-test-suite.install |   22 -
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-07 08:12:12 UTC (rev 215224)
+++ PKGBUILD2017-03-07 08:12:24 UTC (rev 215225)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Andreas Schönfelder 
-
-pkgname=phoronix-test-suite
-pkgver=6.8.0
-pkgrel=1
-pkgdesc="The most comprehensive testing and benchmarking platform available 
for Linux"
-arch=('any')
-license=('GPL3')
-url="http://www.phoronix-test-suite.com/";
-depends=('php')
-optdepends=('php-gtk'
-   'php-gd')
-install=${pkgname}.install
-source=(http://www.phoronix.net/downloads/phoronix-test-suite/releases/phoronix-test-suite-$pkgver.tar.gz)
-sha256sums=('fe741336dbf251fc210367b20713b554b3fd4edf15cf1f5950ff8bcbb3b09aec')
-
-package() {
-  cd "$srcdir"/phoronix-test-suite
-  sed -i "s#--noconfirm#--noconfirm --asdeps#" 
pts-core/external-test-dependencies/scripts/install-arch-packages.sh
-  install -dm755 "$pkgdir"/usr/share/phoronix-test-suite
-  sed -e "s/^export PTS_DIR=.*/export 
PTS_DIR=\/usr\/share\/phoronix-test-suite/g" -i phoronix-test-suite
-  install -Dm755 phoronix-test-suite "$pkgdir"/usr/bin/phoronix-test-suite
-  rm -f "$pkgdir"/usr/share/phoronix-test-suite/pts/etc/scripts/package-build-*
-  cp -r pts-core/ "$pkgdir"/usr/share/phoronix-test-suite/
-}

Copied: phoronix-test-suite/repos/community-any/PKGBUILD (from rev 215224, 
phoronix-test-suite/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-07 08:12:24 UTC (rev 215225)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Andreas Schönfelder 
+
+pkgname=phoronix-test-suite
+pkgver=7.0.0
+pkgrel=1
+pkgdesc="The most comprehensive testing and benchmarking platform available 
for Linux"
+arch=('any')
+license=('GPL3')
+url="http://www.phoronix-test-suite.com/";
+depends=('php')
+optdepends=('php-gtk'
+   'php-gd')
+install=${pkgname}.install
+source=(http://www.phoronix.net/downloads/phoronix-test-suite/releases/phoronix-test-suite-$pkgver.tar.gz)
+sha256sums=('ccd3d0b5e79e9cf150d277d402254de66ecf7a993ad78e0b385960c6c29e4824')
+
+package() {
+  cd "$srcdir"/phoronix-test-suite
+  sed -i "s#--noconfirm#--noconfirm --asdeps#" 
pts-core/external-test-dependencies/scripts/install-arch-packages.sh
+  install -dm755 "$pkgdir"/usr/share/phoronix-test-suite
+  sed -e "s/^export PTS_DIR=.*/export 
PTS_DIR=\/usr\/share\/phoronix-test-suite/g" -i phoronix-test-suite
+  install -Dm755 phoronix-test-suite "$pkgdir"/usr/bin/phoronix-test-suite
+  rm -f "$pkgdir"/usr/share/phoronix-test-suite/pts/etc/scripts/package-build-*
+  cp -r pts-core/ "$pkgdir"/usr/share/phoronix-test-suite/
+}

Deleted: phoronix-test-suite.install
===
--- phoronix-test-suite.install 2017-03-07 08:12:12 UTC (rev 215224)
+++ phoronix-test-suite.install 2017-03-07 08:12:24 UTC (rev 215225)
@@ -1,11 +0,0 @@
-post_install() {
-  echo ">>>"
-  echo ">>> To complete the installation you should edit /etc/php/php.ini."
-  echo ">>> - Enable zip.so, sockets.so"
-  echo ">>>"
-  echo ">>> EXAMPLE:"
-  echo ">>> extension=zip.so"
-  echo ">>> extension=sockets.so"
-  echo ">>>"
-  echo ">>> To enable the GUI make sure you install php-gtk from aur"
-}

Copied: phoronix-test-suite/repos/community-any/phoronix-test-suite.install 
(from rev 215224, phoronix-test-suite/trunk/phoronix-test-suite.install)
===
--- phoronix-test-suite.install (rev 0)
+++ phoronix-test-suite.install 2017-03-07 08:12:24 UTC (rev 215225)
@@ -0,0 +1,11 @@
+post_install() {
+  echo ">>>"
+  echo ">>> To complete the installation you should edit /etc/php/php.ini."
+  echo ">>> - Enable zip.so, sockets.so"
+  echo ">>>"
+  echo ">>> EXAMPLE:"
+  echo ">>> extension=zip.so"
+  echo ">>> extension=sockets.so"
+  echo ">>>"
+  echo ">>> To enable the GUI make sure you install php-gtk from aur"
+}


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

2017-03-07 Thread Antonio Rojas
Date: Tuesday, March 7, 2017 @ 08:09:22
  Author: arojas
Revision: 215223

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  tcpflow/repos/community-staging-i686/
  tcpflow/repos/community-staging-i686/PKGBUILD
(from rev 215222, tcpflow/trunk/PKGBUILD)
  tcpflow/repos/community-staging-i686/tcpflow-openssl-1.1.patch
(from rev 215222, tcpflow/trunk/tcpflow-openssl-1.1.patch)
  tcpflow/repos/community-staging-x86_64/
  tcpflow/repos/community-staging-x86_64/PKGBUILD
(from rev 215222, tcpflow/trunk/PKGBUILD)
  tcpflow/repos/community-staging-x86_64/tcpflow-openssl-1.1.patch
(from rev 215222, tcpflow/trunk/tcpflow-openssl-1.1.patch)

+
 community-staging-i686/PKGBUILD|   50 ++
 community-staging-i686/tcpflow-openssl-1.1.patch   |   67 +++
 community-staging-x86_64/PKGBUILD  |   50 ++
 community-staging-x86_64/tcpflow-openssl-1.1.patch |   67 +++
 4 files changed, 234 insertions(+)

Copied: tcpflow/repos/community-staging-i686/PKGBUILD (from rev 215222, 
tcpflow/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-07 08:09:22 UTC (rev 215223)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Chris Brannon 
+# Contributor: Jeff Mickey 
+
+pkgname=tcpflow
+pkgver=1.4.5
+pkgrel=3
+pkgdesc="Captures data transmitted as part of TCP connections then stores the 
data conveniently"
+arch=('i686' 'x86_64')
+url="https://github.com/simsong/tcpflow";
+license=('GPL')
+depends=('libpcap' 'cairo' 'openssl' 'sqlite')
+makedepends=('git' 'boost')
+source=("git+https://github.com/simsong/$pkgname.git#tag=$pkgname-$pkgver";
+'git+https://github.com/simsong/be13_api.git'
+'git+https://github.com/simsong/dfxml.git'
+'git+https://github.com/joyent/http-parser.git'
+tcpflow-openssl-1.1.patch)
+md5sums=('SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'bd2f6fd8df59a0e93fde5fcb8098398a')
+
+prepare() {
+  cd $pkgname
+  git submodule init
+  git config submodule."src/be13_api".url "$srcdir/be13_api"
+  git config submodule."src/dfxml".url "$srcdir/dfxml"
+  git config submodule."src/http-parser".url "$srcdir/http-parser"
+  git submodule update
+
+ # Fix build with openssl 1.1
+  patch -p1 -i ../tcpflow-openssl-1.1.patch
+  autoreconf -vi
+}
+
+build() {
+  cd $pkgname
+  sh bootstrap.sh
+  ./configure --prefix=/usr --mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}
+

Copied: tcpflow/repos/community-staging-i686/tcpflow-openssl-1.1.patch (from 
rev 215222, tcpflow/trunk/tcpflow-openssl-1.1.patch)
===
--- community-staging-i686/tcpflow-openssl-1.1.patch
(rev 0)
+++ community-staging-i686/tcpflow-openssl-1.1.patch2017-03-07 08:09:22 UTC 
(rev 215223)
@@ -0,0 +1,67 @@
+--- tcpflow/configure.ac.orig  2017-03-07 07:59:04.852848391 +
 tcpflow/configure.ac   2017-03-07 07:59:22.136158400 +
+@@ -214,7 +214,7 @@
+ AC_CHECK_LIB([dl],[dlopen])   dnl apparently OpenSSL now 
needs -ldl on some Linux
+ AC_CHECK_LIB([crypto],[EVP_get_digestbyname]) # if crypto is available, get it
+ AC_CHECK_LIB([md],[MD5])# if libmd is available, get 
it 
+-AC_CHECK_LIB([ssl],[SSL_library_init],,
++AC_CHECK_LIB([ssl],[SSL_CTX_new],,
+  AC_MSG_ERROR([OpenSSL developer library 'libssl-dev' or 'openssl-devel' 
not installed]))
+ AC_CHECK_FUNCS([MD5_Init EVP_get_digestbyname])
+ 
+--- tcpflow.orig/src/dfxml/src/hash_t.h
 tcpflow/src/dfxml/src/hash_t.h
+@@ -189,7 +189,7 @@ inline std::string digest_name
+ 
+ template 
+ class hash_generator__ {  /* generates the hash */
+-EVP_MD_CTX mdctx;  /* the context for computing the value */
++EVP_MD_CTX* mdctx; /* the context for computing the value */
+ bool initialized;/* has the context been initialized? */
+ bool finalized;
+ /* Static function to determine if something is zero */
+@@ -202,21 +202,21 @@ class hash_generator__ { /* 
generates
+ public:
+ int64_t hashed_bytes;
+ /* This function takes advantage of the fact that different hash 
functions produce residues with different sizes */
+-
hash_generator__():mdctx(),initialized(false),finalized(false),hashed_bytes(0){ 
}
++
hash_generator__():mdctx(NULL),initialized(false),finalized(false),hashed_bytes(0){
 }
+ ~hash_generator__(){
+   release();
+ }
+ void release(){   /* free allocated memory */
+   if(initialized){
+-  EVP_MD_CTX_cleanup(&mdctx);
++  EVP_MD_CTX_destroy(mdctx);
+   initi

[arch-commits] Commit in tcpflow/trunk (PKGBUILD tcpflow-openssl-1.1.patch)

2017-03-07 Thread Antonio Rojas
Date: Tuesday, March 7, 2017 @ 08:08:56
  Author: arojas
Revision: 215222

openssl 1.1 rebuild

Added:
  tcpflow/trunk/tcpflow-openssl-1.1.patch
Modified:
  tcpflow/trunk/PKGBUILD

---+
 PKGBUILD  |   14 ++---
 tcpflow-openssl-1.1.patch |   67 
 2 files changed, 77 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-07 07:28:17 UTC (rev 215221)
+++ PKGBUILD2017-03-07 08:08:56 UTC (rev 215222)
@@ -5,21 +5,23 @@
 
 pkgname=tcpflow
 pkgver=1.4.5
-pkgrel=2
+pkgrel=3
 pkgdesc="Captures data transmitted as part of TCP connections then stores the 
data conveniently"
 arch=('i686' 'x86_64')
 url="https://github.com/simsong/tcpflow";
 license=('GPL')
-depends=('libpcap' 'cairo')
+depends=('libpcap' 'cairo' 'openssl' 'sqlite')
 makedepends=('git' 'boost')
 source=("git+https://github.com/simsong/$pkgname.git#tag=$pkgname-$pkgver";
 'git+https://github.com/simsong/be13_api.git'
 'git+https://github.com/simsong/dfxml.git'
-'git+https://github.com/joyent/http-parser.git')
+'git+https://github.com/joyent/http-parser.git'
+tcpflow-openssl-1.1.patch)
 md5sums=('SKIP'
  'SKIP'
  'SKIP'
- 'SKIP')
+ 'SKIP'
+ 'bd2f6fd8df59a0e93fde5fcb8098398a')
 
 prepare() {
   cd $pkgname
@@ -28,6 +30,10 @@
   git config submodule."src/dfxml".url "$srcdir/dfxml"
   git config submodule."src/http-parser".url "$srcdir/http-parser"
   git submodule update
+
+ # Fix build with openssl 1.1
+  patch -p1 -i ../tcpflow-openssl-1.1.patch
+  autoreconf -vi
 }
 
 build() {

Added: tcpflow-openssl-1.1.patch
===
--- tcpflow-openssl-1.1.patch   (rev 0)
+++ tcpflow-openssl-1.1.patch   2017-03-07 08:08:56 UTC (rev 215222)
@@ -0,0 +1,67 @@
+--- tcpflow/configure.ac.orig  2017-03-07 07:59:04.852848391 +
 tcpflow/configure.ac   2017-03-07 07:59:22.136158400 +
+@@ -214,7 +214,7 @@
+ AC_CHECK_LIB([dl],[dlopen])   dnl apparently OpenSSL now 
needs -ldl on some Linux
+ AC_CHECK_LIB([crypto],[EVP_get_digestbyname]) # if crypto is available, get it
+ AC_CHECK_LIB([md],[MD5])# if libmd is available, get 
it 
+-AC_CHECK_LIB([ssl],[SSL_library_init],,
++AC_CHECK_LIB([ssl],[SSL_CTX_new],,
+  AC_MSG_ERROR([OpenSSL developer library 'libssl-dev' or 'openssl-devel' 
not installed]))
+ AC_CHECK_FUNCS([MD5_Init EVP_get_digestbyname])
+ 
+--- tcpflow.orig/src/dfxml/src/hash_t.h
 tcpflow/src/dfxml/src/hash_t.h
+@@ -189,7 +189,7 @@ inline std::string digest_name
+ 
+ template 
+ class hash_generator__ {  /* generates the hash */
+-EVP_MD_CTX mdctx;  /* the context for computing the value */
++EVP_MD_CTX* mdctx; /* the context for computing the value */
+ bool initialized;/* has the context been initialized? */
+ bool finalized;
+ /* Static function to determine if something is zero */
+@@ -202,21 +202,21 @@ class hash_generator__ { /* 
generates
+ public:
+ int64_t hashed_bytes;
+ /* This function takes advantage of the fact that different hash 
functions produce residues with different sizes */
+-
hash_generator__():mdctx(),initialized(false),finalized(false),hashed_bytes(0){ 
}
++
hash_generator__():mdctx(NULL),initialized(false),finalized(false),hashed_bytes(0){
 }
+ ~hash_generator__(){
+   release();
+ }
+ void release(){   /* free allocated memory */
+   if(initialized){
+-  EVP_MD_CTX_cleanup(&mdctx);
++  EVP_MD_CTX_destroy(mdctx);
+   initialized = false;
+   hashed_bytes = 0;
+   }
+ }
+ void init(){
+   if(initialized==false){
+-  EVP_MD_CTX_init(&mdctx);
+-  EVP_DigestInit_ex(&mdctx, md(), NULL);
++  mdctx = EVP_MD_CTX_create();
++  EVP_DigestInit_ex(mdctx, md(), NULL);
+   initialized = true;
+   finalized = false;
+   hashed_bytes = 0;
+@@ -228,7 +228,7 @@ public:
+   std::cerr << "hashgen_t::update called after finalized\n";
+   exit(1);
+   }
+-  EVP_DigestUpdate(&mdctx,buf,bufsize);
++  EVP_DigestUpdate(mdctx,buf,bufsize);
+   hashed_bytes += bufsize;
+ }
+ hash__ final() {
+@@ -242,7 +242,7 @@ public:
+   }
+   hash__ val;
+   unsigned int len = sizeof(val.digest);
+-  EVP_DigestFinal(&mdctx,val.digest,&len);
++  EVP_DigestFinal(mdctx,val.digest,&len);
+   finalized = true;
+   return val;
+ }
+