[arch-commits] Commit in qt5-base/repos (8 files)

2016-12-07 Thread Antonio Rojas
Date: Thursday, December 8, 2016 @ 07:49:32
  Author: arojas
Revision: 282936

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

Added:
  qt5-base/repos/testing-i686/
  qt5-base/repos/testing-i686/PKGBUILD
(from rev 282935, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/testing-i686/no-gtk-qpa-on-wayland.patch
(from rev 282935, qt5-base/trunk/no-gtk-qpa-on-wayland.patch)
  qt5-base/repos/testing-i686/rebuild.list
(from rev 282935, qt5-base/trunk/rebuild.list)
  qt5-base/repos/testing-x86_64/
  qt5-base/repos/testing-x86_64/PKGBUILD
(from rev 282935, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/testing-x86_64/no-gtk-qpa-on-wayland.patch
(from rev 282935, qt5-base/trunk/no-gtk-qpa-on-wayland.patch)
  qt5-base/repos/testing-x86_64/rebuild.list
(from rev 282935, qt5-base/trunk/rebuild.list)

+
 testing-i686/PKGBUILD  |  126 +++
 testing-i686/no-gtk-qpa-on-wayland.patch   |   13 ++
 testing-i686/rebuild.list  |9 +
 testing-x86_64/PKGBUILD|  126 +++
 testing-x86_64/no-gtk-qpa-on-wayland.patch |   13 ++
 testing-x86_64/rebuild.list|9 +
 6 files changed, 296 insertions(+)

Copied: qt5-base/repos/testing-i686/PKGBUILD (from rev 282935, 
qt5-base/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-12-08 07:49:32 UTC (rev 282936)
@@ -0,0 +1,126 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-base
+_qtver=5.7.0
+pkgver=${_qtver/-/}
+pkgrel=8
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='A cross-platform application and UI framework'
+depends=('libjpeg-turbo' 'xcb-util-keysyms' 'libgl' 'fontconfig'
+ 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 'xcb-util-image' 'icu'
+ 'tslib' 'libinput' 'libsm' 'libxkbcommon-x11' 'libproxy' 'libcups')
+makedepends=('mtdev' 'libfbclient' 'libmariadbclient' 'sqlite' 'unixodbc' 
'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
+ 'gtk3' 'libpulse' 'cups' 'freetds')
+optdepends=('qt5-svg: to use SVG icon themes'
+'postgresql-libs: PostgreSQL driver'
+'libmariadbclient: MariaDB driver'
+'unixodbc: ODBC driver'
+'libfbclient: Firebird/iBase driver'
+'freetds: MS SQL driver'
+'mtdev: evdev plugin'
+'gtk3: GTK platform plugin')
+conflicts=('qtchooser')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"
+source=("http://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz";
+
qtbug-53071.patch::"https://github.com/qtproject/qtbase/commit/e9041c7fc.patch";
+
qtbug-53071b.patch::"https://github.com/qtproject/qtbase/commit/cd25866f.patch";
+
qtbug-53237.patch::"https://github.com/qtproject/qtbase/commit/8e889378.patch";
+qtbug-49452.patch::"https://github.com/qt/qtbase/commit/6f423555.patch";
+
qtbase-memory-leak.patch::"https://github.com/qt/qtbase/commit/42283868.patch";
+
qtbug-49061.patch::"https://github.com/qt/qtbase/commit/494376f9.patch";)
+md5sums=('184f9460b40752d71b15b827260580c2'
+ '462f079cd46f869def6858903a718bf5'
+ 'da4fd787ea877516397a027412e975e1'
+ '981255fb1aea0d3c0b5c5f306fe374da'
+ '646aea77ca90031c453a65ef61db55f9'
+ '9842c327b091b360da7a4d90f5fdf4da'
+ 'c86af27562bbbe05c3defd63d00130fd')
+
+prepare() {
+  cd ${_pkgfqn}
+
+  # Build qmake using Arch {C,LD}FLAGS
+  # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
+  sed -i -e "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}|" \
+mkspecs/common/gcc-base.conf
+  sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" \
+mkspecs/common/g++-unix.conf
+
+  # Use python2 for Python 2.x
+  find . -name '*.py' -exec sed -i \
+'s|#![ ]*/usr/bin/python$|&2|;s|#![ ]*/usr/bin/env python$|&2|' {} +
+
+  # Fix libsystemd-journal detection
+  sed -e 's|libsystemd-journal|libsystemd|' -i 
config.tests/unix/journald/journald.pro -i src/corelib/global/global.pri
+
+  # Fix parsing of tzfile(5) POSIX rule zone names with bracket quotes
+  patch -p1 -i ../qtbug-53071.patch
+  patch -p1 -i ../qtbug-53071b.patch
+
+  # Fix UNSIGNED values in QMYSQL
+  patch -p1 -i ../qtbug-53237.patch
+
+  # Fix freetype engine performance 
+  patch -p1 -i ../qtbug-49452.patch
+
+  # Fix memory leak
+  patch -p1 -i ../qtbase-memory-leak.patch
+
+  # Don't unload plugins in QPluginLoader 
https://bugreports.qt.io/browse/QTBUG-49061
+  patch -p1 -i ../qtbug-49061.patch
+}
+
+build() {
+  cd ${_pkgfqn}
+
+  # FS#38796
+  [[ "${CARCH}" = "i686" ]] && SSE2="-no-sse2"
+
+  PYTHON=/usr/bin/python2 ./configure -confir

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

2016-12-07 Thread Antonio Rojas
Date: Thursday, December 8, 2016 @ 07:47:17
  Author: arojas
Revision: 282935

Fix crash on plugin unloading (FS#52026)

Modified:
  qt5-base/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-08 07:04:10 UTC (rev 282934)
+++ PKGBUILD2016-12-08 07:47:17 UTC (rev 282935)
@@ -5,7 +5,7 @@
 pkgname=qt5-base
 _qtver=5.7.0
 pkgver=${_qtver/-/}
-pkgrel=7
+pkgrel=8
 arch=('i686' 'x86_64')
 url='http://qt-project.org/'
 license=('GPL3' 'LGPL3' 'FDL' 'custom')
@@ -12,7 +12,7 @@
 pkgdesc='A cross-platform application and UI framework'
 depends=('libjpeg-turbo' 'xcb-util-keysyms' 'libgl' 'fontconfig'
  'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 'xcb-util-image' 'icu'
- 'tslib' 'libinput' 'libsm' 'libxkbcommon-x11' 'libproxy')
+ 'tslib' 'libinput' 'libsm' 'libxkbcommon-x11' 'libproxy' 'libcups')
 makedepends=('mtdev' 'libfbclient' 'libmariadbclient' 'sqlite' 'unixodbc' 
'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
  'gtk3' 'libpulse' 'cups' 'freetds')
 optdepends=('qt5-svg: to use SVG icon themes'
@@ -31,13 +31,15 @@
 
qtbug-53071b.patch::"https://github.com/qtproject/qtbase/commit/cd25866f.patch";
 
qtbug-53237.patch::"https://github.com/qtproject/qtbase/commit/8e889378.patch";
 qtbug-49452.patch::"https://github.com/qt/qtbase/commit/6f423555.patch";
-
qtbase-memory-leak.patch::"https://github.com/qt/qtbase/commit/42283868.patch";)
+
qtbase-memory-leak.patch::"https://github.com/qt/qtbase/commit/42283868.patch";
+
qtbug-49061.patch::"https://github.com/qt/qtbase/commit/494376f9.patch";)
 md5sums=('184f9460b40752d71b15b827260580c2'
  '462f079cd46f869def6858903a718bf5'
  'da4fd787ea877516397a027412e975e1'
  '981255fb1aea0d3c0b5c5f306fe374da'
  '646aea77ca90031c453a65ef61db55f9'
- '9842c327b091b360da7a4d90f5fdf4da')
+ '9842c327b091b360da7a4d90f5fdf4da'
+ 'c86af27562bbbe05c3defd63d00130fd')
 
 prepare() {
   cd ${_pkgfqn}
@@ -68,6 +70,9 @@
 
   # Fix memory leak
   patch -p1 -i ../qtbase-memory-leak.patch
+
+  # Don't unload plugins in QPluginLoader 
https://bugreports.qt.io/browse/QTBUG-49061
+  patch -p1 -i ../qtbug-49061.patch
 }
 
 build() {


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

2016-12-07 Thread Sven-Hendrik Haase
Date: Thursday, December 8, 2016 @ 04:09:07
  Author: svenstaro
Revision: 198440

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-08 04:08:39 UTC (rev 198439)
+++ community-i686/PKGBUILD 2016-12-08 04:09:07 UTC (rev 198440)
@@ -1,31 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Andrew Gallant 
-pkgname=ripgrep
-pkgver=0.3.1
-pkgrel=1
-pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
-arch=('i686' 'x86_64')
-url="https://github.com/BurntSushi/ripgrep";
-license=('MIT' 'UNLICENSE')
-depends=('gcc-libs')
-makedepends=('cargo')
-source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha256sums=('08618425de89bdcd84f17a3bbf71a2d00a787de1f196e048059c01969065154e')
-
-build() {
-  cd "$pkgname-$pkgver"
-  cargo build --release
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  install -Dm755 "target/release/rg" "$pkgdir/usr/bin/rg"
-
-  install -Dm644 "doc/rg.1" "$pkgdir/usr/share/man/man1/rg.1"
-  install -Dm644 "README.md" "$pkgdir/usr/share/doc/${pkgname}/README.md"
-
-  install -Dm644 "COPYING" "$pkgdir/usr/share/licenses/${pkgname}/COPYING"
-  install -Dm644 "LICENSE-MIT" 
"$pkgdir/usr/share/licenses/${pkgname}/LICENSE-MIT"
-  install -Dm644 "UNLICENSE" "$pkgdir/usr/share/licenses/${pkgname}/UNLICENSE"
-}

Copied: ripgrep/repos/community-i686/PKGBUILD (from rev 198439, 
ripgrep/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-08 04:09:07 UTC (rev 198440)
@@ -0,0 +1,31 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Andrew Gallant 
+pkgname=ripgrep
+pkgver=0.3.2
+pkgrel=1
+pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
+arch=('i686' 'x86_64')
+url="https://github.com/BurntSushi/ripgrep";
+license=('MIT' 'UNLICENSE')
+depends=('gcc-libs')
+makedepends=('cargo')
+source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
+sha256sums=('aea775c9ead5ee2b10b7cdebdb9387f5d6a400b96e5bfe26ccec7e44dd17')
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --release
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  install -Dm755 "target/release/rg" "$pkgdir/usr/bin/rg"
+
+  install -Dm644 "doc/rg.1" "$pkgdir/usr/share/man/man1/rg.1"
+  install -Dm644 "README.md" "$pkgdir/usr/share/doc/${pkgname}/README.md"
+
+  install -Dm644 "COPYING" "$pkgdir/usr/share/licenses/${pkgname}/COPYING"
+  install -Dm644 "LICENSE-MIT" 
"$pkgdir/usr/share/licenses/${pkgname}/LICENSE-MIT"
+  install -Dm644 "UNLICENSE" "$pkgdir/usr/share/licenses/${pkgname}/UNLICENSE"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-12-08 04:08:39 UTC (rev 198439)
+++ community-x86_64/PKGBUILD   2016-12-08 04:09:07 UTC (rev 198440)
@@ -1,31 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Andrew Gallant 
-pkgname=ripgrep
-pkgver=0.3.1
-pkgrel=1
-pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
-arch=('i686' 'x86_64')
-url="https://github.com/BurntSushi/ripgrep";
-license=('MIT' 'UNLICENSE')
-depends=('gcc-libs')
-makedepends=('cargo')
-source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha256sums=('08618425de89bdcd84f17a3bbf71a2d00a787de1f196e048059c01969065154e')
-
-build() {
-  cd "$pkgname-$pkgver"
-  cargo build --release
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  install -Dm755 "target/release/rg" "$pkgdir/usr/bin/rg"
-
-  install -Dm644 "doc/rg.1" "$pkgdir/usr/share/man/man1/rg.1"
-  install -Dm644 "README.md" "$pkgdir/usr/share/doc/${pkgname}/README.md"
-
-  install -Dm644 "COPYING" "$pkgdir/usr/share/licenses/${pkgname}/COPYING"
-  install -Dm644 "LICENSE-MIT" 
"$pkgdir/usr/share/licenses/${pkgname}/LICENSE-MIT"
-  install -Dm644 "UNLICENSE" "$pkgdir/usr/share/licenses/${pkgname}/UNLICENSE"
-}

Copied: ripgrep/repos/community-x86_64/PKGBUILD (from rev 198439, 
ripgrep/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-12-08 04:09:07 UTC (rev 198440)
@@ -0,0 +1,31 @@
+# Maintainer: Sven-Hendrik

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

2016-12-07 Thread Sven-Hendrik Haase
Date: Thursday, December 8, 2016 @ 04:08:39
  Author: svenstaro
Revision: 198439

upgpkg: ripgrep 0.3.2-1

upstream release 0.3.2

Modified:
  ripgrep/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 21:32:33 UTC (rev 198438)
+++ PKGBUILD2016-12-08 04:08:39 UTC (rev 198439)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
-pkgver=0.3.1
+pkgver=0.3.2
 pkgrel=1
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 depends=('gcc-libs')
 makedepends=('cargo')
 source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz";)
-sha256sums=('08618425de89bdcd84f17a3bbf71a2d00a787de1f196e048059c01969065154e')
+sha256sums=('aea775c9ead5ee2b10b7cdebdb9387f5d6a400b96e5bfe26ccec7e44dd17')
 
 build() {
   cd "$pkgname-$pkgver"


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

2016-12-07 Thread Sergej Pupykin
Date: Wednesday, December 7, 2016 @ 21:32:33
  Author: spupykin
Revision: 198438

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

Added:
  belle-sip/repos/community-i686/PKGBUILD
(from rev 198437, belle-sip/trunk/PKGBUILD)
  belle-sip/repos/community-x86_64/PKGBUILD
(from rev 198437, belle-sip/trunk/PKGBUILD)
Deleted:
  belle-sip/repos/community-i686/PKGBUILD
  belle-sip/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   92 
 community-i686/PKGBUILD   |   41 ---
 community-x86_64/PKGBUILD |   41 ---
 3 files changed, 92 insertions(+), 82 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-07 21:31:10 UTC (rev 198437)
+++ community-i686/PKGBUILD 2016-12-07 21:32:33 UTC (rev 198438)
@@ -1,41 +0,0 @@
-# $Id: PKGBUILD 99895 2013-10-31 02:20:19Z allan $
-# Maintainer: Sergej Pupykin 
-# Contributor: Darwin Bautista 
-
-pkgname=belle-sip
-pkgver=1.5.0
-pkgrel=1
-pkgdesc="A Voice-over-IP phone"
-arch=('i686' 'x86_64')
-url="http://www.linphone.org/index.php/eng";
-license=('GPL')
-depends=('libantlr3c' 'gcc-libs' 'mbedtls' 'bctoolbox')
-makedepends=('java-runtime')
-options=('!emptydirs')
-#source=("http://download-mirror.savannah.gnu.org/releases/linphone/belle-sip/belle-sip-$pkgver.tar.gz";
-source=("$pkgname-$pkgver.tar.gz::https://github.com/BelledonneCommunications/belle-sip/archive/$pkgver.tar.gz";
-   
"antlr.jar::https://github.com/antlr/website-antlr3/blob/gh-pages/download/antlr-3.4-complete.jar?raw=true";)
-noextract=('antlr.jar')
-md5sums=('b1587edb9c082d0cc5a1299a489a4259'
- '1b91dea1c7d480b3223f7c8a9aa0e172')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i \
--e "s#antlr_java_prefixes=.*#antlr_java_prefixes=$srcdir#" \
--e "s|-Werror||g" \
-configure.ac
-}
-
-build() {
-  cd $pkgname-$pkgver
-  [ -x ./configure ] || ./autogen.sh
-  ./configure --prefix=/usr  --libexecdir=/usr/lib/$pkgname \
---disable-tests --disable-static --enable-tls
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: belle-sip/repos/community-i686/PKGBUILD (from rev 198437, 
belle-sip/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-07 21:32:33 UTC (rev 198438)
@@ -0,0 +1,46 @@
+# $Id: PKGBUILD 99895 2013-10-31 02:20:19Z allan $
+# Maintainer: Sergej Pupykin 
+# Contributor: Darwin Bautista 
+
+pkgname=belle-sip
+pkgver=1.5.0
+pkgrel=2
+pkgdesc="A Voice-over-IP phone"
+arch=('i686' 'x86_64')
+url="http://www.linphone.org/index.php/eng";
+license=('GPL')
+depends=('libantlr3c' 'gcc-libs' 'mbedtls' 'bctoolbox')
+makedepends=('java-runtime')
+options=('!emptydirs')
+#source=("http://download-mirror.savannah.gnu.org/releases/linphone/belle-sip/belle-sip-$pkgver.tar.gz";
+source=("$pkgname-$pkgver.tar.gz::https://github.com/BelledonneCommunications/belle-sip/archive/$pkgver.tar.gz";
+   
"antlr.jar::https://github.com/antlr/website-antlr3/blob/gh-pages/download/antlr-3.4-complete.jar?raw=true";)
+noextract=('antlr.jar')
+md5sums=('b1587edb9c082d0cc5a1299a489a4259'
+ '1b91dea1c7d480b3223f7c8a9aa0e172')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i \
+-e "s#antlr_java_prefixes=.*#antlr_java_prefixes="$srcdir"#" \
+-e "s|-Werror||g" \
+configure.ac
+  sed -i \
+-e 's|bctbx_list_delete_link|bctbx_list_erase_link|g' \
+-e 's|bctbx_list_remove_link|bctbx_list_unlink|g' \
+include/belle-sip/list.h
+  sed -i 's|, super->base.peer_cname ? super->base.peer_cname : 
super->base.peer_name ||' src/transports/tls_channel.c
+}
+
+build() {
+  cd $pkgname-$pkgver
+  [ -x ./configure ] || ./autogen.sh
+  ./configure --prefix=/usr  --libexecdir=/usr/lib/$pkgname \
+--disable-tests --disable-static --enable-tls
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-12-07 21:31:10 UTC (rev 198437)
+++ community-x86_64/PKGBUILD   2016-12-07 21:32:33 UTC (rev 198438)
@@ -1,41 +0,0 @@
-# $Id: PKGBUILD 99895 2013-10-31 02:20:19Z allan $
-# Maintainer: Sergej Pupykin 
-# Contributor: Darwin Bautista 
-
-pkgname=belle-sip
-pkgver=1.5.0
-pkgrel=1
-pkgdesc="A Voice-over-IP phone"
-arch=('i686' 'x86_64')
-url="http://www.linphone.org/index.php/eng";
-license=('GPL')
-depends=('libantlr3c' 'gcc-libs' 'mbedtls' 'bctoolbox')
-makedepends=('java-runtime')
-options=('!emptydirs')
-#source=("http://download-mirror.savannah.gnu.org/releases/linphone/belle-sip/belle-sip-$pkgver.tar.gz";
-source=("$pkgname-$pkgver.tar.gz::https://github.com/BelledonneCommunications/belle-sip/archive/$pkgver.t

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

2016-12-07 Thread Sergej Pupykin
Date: Wednesday, December 7, 2016 @ 21:31:10
  Author: spupykin
Revision: 198437

upgpkg: belle-sip 1.5.0-2

upd

Modified:
  belle-sip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 21:29:19 UTC (rev 198436)
+++ PKGBUILD2016-12-07 21:31:10 UTC (rev 198437)
@@ -4,7 +4,7 @@
 
 pkgname=belle-sip
 pkgver=1.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A Voice-over-IP phone"
 arch=('i686' 'x86_64')
 url="http://www.linphone.org/index.php/eng";
@@ -25,6 +25,11 @@
 -e "s#antlr_java_prefixes=.*#antlr_java_prefixes="$srcdir"#" \
 -e "s|-Werror||g" \
 configure.ac
+  sed -i \
+-e 's|bctbx_list_delete_link|bctbx_list_erase_link|g' \
+-e 's|bctbx_list_remove_link|bctbx_list_unlink|g' \
+include/belle-sip/list.h
+  sed -i 's|, super->base.peer_cname ? super->base.peer_cname : 
super->base.peer_name ||' src/transports/tls_channel.c
 }
 
 build() {


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

2016-12-07 Thread Jelle van der Waa
Date: Wednesday, December 7, 2016 @ 21:29:19
  Author: jelle
Revision: 198436

Use https as source

Modified:
  haskell-dlist/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 21:28:55 UTC (rev 198435)
+++ PKGBUILD2016-12-07 21:29:19 UTC (rev 198436)
@@ -14,7 +14,7 @@
 arch=('i686' 'x86_64')
 depends=('ghc=8.0.1')
 options=('strip')
-source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
 sha256sums=('77397ecfb9a7cbfac15226cbe09ec156a3deb6e21c7af948bc8ab459e88641b1')
 
 build() {


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

2016-12-07 Thread Jelle van der Waa
Date: Wednesday, December 7, 2016 @ 21:28:55
  Author: jelle
Revision: 198435

Use https as source

Modified:
  haskell-extensible-exceptions/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 21:27:48 UTC (rev 198434)
+++ PKGBUILD2016-12-07 21:28:55 UTC (rev 198435)
@@ -10,7 +10,7 @@
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
 depends=('ghc=8.0.1' 'sh')
-source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
 md5sums=('fa1cadd15c1c7aa362618d41c6e17d8b')
 
 build() {


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

2016-12-07 Thread Jelle van der Waa
Date: Wednesday, December 7, 2016 @ 21:27:48
  Author: jelle
Revision: 198434

Use https as source

Modified:
  haskell-http/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 21:26:40 UTC (rev 198433)
+++ PKGBUILD2016-12-07 21:27:48 UTC (rev 198434)
@@ -11,7 +11,7 @@
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
 depends=('ghc=8.0.1' 'sh' 'haskell-network' 'haskell-parsec' 'haskell-mtl' 
'haskell-network-uri')
-source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
 md5sums=('3f2d84d59e36476ca02c882419632d7d')
 
 build() {


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

2016-12-07 Thread Jelle van der Waa
Date: Wednesday, December 7, 2016 @ 21:26:40
  Author: jelle
Revision: 198433

Use https as source

Modified:
  haskell-mtl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 21:25:50 UTC (rev 198432)
+++ PKGBUILD2016-12-07 21:26:40 UTC (rev 198433)
@@ -11,7 +11,7 @@
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
 depends=('ghc=8.0.1' 'sh')
-source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
 md5sums=('96a2f12b94ea8d7cb0aea999cd2e3802')
 
 prepare() {


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

2016-12-07 Thread Jelle van der Waa
Date: Wednesday, December 7, 2016 @ 21:25:50
  Author: jelle
Revision: 198432

Use https as source

Modified:
  haskell-network-uri/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 21:23:59 UTC (rev 198431)
+++ PKGBUILD2016-12-07 21:25:50 UTC (rev 198432)
@@ -9,7 +9,7 @@
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
 depends=('ghc=8.0.1' 'sh' 'haskell-parsec')
-source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
 md5sums=('c6ed1e8314a9b1674a3d118d9019a229')
 
 build() {


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

2016-12-07 Thread Jelle van der Waa
Date: Wednesday, December 7, 2016 @ 21:23:59
  Author: jelle
Revision: 198431

Use https as source

Modified:
  haskell-utf8-string/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 21:21:17 UTC (rev 198430)
+++ PKGBUILD2016-12-07 21:23:59 UTC (rev 198431)
@@ -12,7 +12,7 @@
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
 depends=('ghc=8.0.1' 'sh')
-source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
 md5sums=('fe24e26bd4b09731af66ef27b18b5177')
 
 prepare() {


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

2016-12-07 Thread Jelle van der Waa
Date: Wednesday, December 7, 2016 @ 21:21:17
  Author: jelle
Revision: 198430

Use https as source

Modified:
  haskell-random/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 21:18:38 UTC (rev 198429)
+++ PKGBUILD2016-12-07 21:21:17 UTC (rev 198430)
@@ -11,7 +11,7 @@
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
 depends=('ghc=8.0.1' 'sh')
-source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
 md5sums=('474f10b9389b316e4472b71d20298993')
 
 build() {


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

2016-12-07 Thread Jelle van der Waa
Date: Wednesday, December 7, 2016 @ 21:18:38
  Author: jelle
Revision: 198429

Use https as source

Modified:
  haskell-setlocale/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 21:16:37 UTC (rev 198428)
+++ PKGBUILD2016-12-07 21:18:38 UTC (rev 198429)
@@ -10,7 +10,7 @@
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
 depends=('ghc')
-source=(http://hackage.haskell.org/packages/archive/setlocale/${pkgver}/setlocale-${pkgver}.tar.gz)
+source=(https://hackage.haskell.org/packages/archive/setlocale/${pkgver}/setlocale-${pkgver}.tar.gz)
 md5sums=('348690842f5233f0e42e16bd615f777e')
 
 prepare() {


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

2016-12-07 Thread Jelle van der Waa
Date: Wednesday, December 7, 2016 @ 21:16:37
  Author: jelle
Revision: 198428

Use https as source

Modified:
  haskell-stm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 21:10:38 UTC (rev 198427)
+++ PKGBUILD2016-12-07 21:16:37 UTC (rev 198428)
@@ -13,7 +13,7 @@
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
 depends=('ghc=8.0.1' 'sh')
-source=("http://hackage.haskell.org/packages/archive/${_hkgname}/$pkgver/${_hkgname}-$pkgver.tar.gz";)
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/$pkgver/${_hkgname}-$pkgver.tar.gz";)
 md5sums=('480b37cce3d35c11fd67bf9df957ae19')
 
 build() {


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

2016-12-07 Thread Jelle van der Waa
Date: Wednesday, December 7, 2016 @ 21:10:38
  Author: jelle
Revision: 198427

Use https as source

Modified:
  haskell-word8/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 21:09:45 UTC (rev 198426)
+++ PKGBUILD2016-12-07 21:10:38 UTC (rev 198427)
@@ -11,7 +11,7 @@
 license=("custom:BSD3")
 arch=('i686' 'x86_64')
 depends=("ghc=8.0.1")
-source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
 sha256sums=('3cbae3755a078ecff46524b3f6e0018f7e796e6dac9c710fe09b433c544676dd')
 
 build() {


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

2016-12-07 Thread Jelle van der Waa
Date: Wednesday, December 7, 2016 @ 21:09:45
  Author: jelle
Revision: 198426

use https for source

Modified:
  haskell-x11/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 20:59:18 UTC (rev 198425)
+++ PKGBUILD2016-12-07 21:09:45 UTC (rev 198426)
@@ -13,7 +13,7 @@
 license=('custom:BSD3')
 depends=("ghc=8.0.1" "libx11" "libxinerama" "libxrandr" "haskell-data-default")
 conflicts=(haskell-x11-extras)
-source=(http://hackage.haskell.org/packages/archive/X11/$pkgver/X11-$pkgver.tar.gz)
+source=(https://hackage.haskell.org/packages/archive/X11/$pkgver/X11-$pkgver.tar.gz)
 md5sums=('d7c94a65ce4b140e97cce835e8682ac3')
 
 build() {


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

2016-12-07 Thread Jelle van der Waa
Date: Wednesday, December 7, 2016 @ 20:59:09
  Author: jelle
Revision: 198424

upgpkg: python-pytz 2016.10-1

Modified:
  python-pytz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 20:20:50 UTC (rev 198423)
+++ PKGBUILD2016-12-07 20:59:09 UTC (rev 198424)
@@ -4,15 +4,16 @@
 # Contributor: William Rea 
 
 pkgname=('python-pytz' 'python2-pytz')
-pkgver=2016.7
+pkgver=2016.10
 pkgrel=1
 arch=('any')
 url="http://pypi.python.org/pypi/pytz";
 license=("MIT")
 makedepends=('python' 'python2')
-source=(https://pypi.python.org/packages/62/de/3ec428a9a656c4568f8a01b93bda4aff43c3fadfa50356048a62de9ee3b7/pytz-2016.7.tar.gz)
+source=(https://pypi.python.org/packages/42/00/5c89fc6c9b305df84def61863528e899e9dccb196f8438f6cbe960758fc5/pytz-2016.10.tar.gz{,.asc})
+md5sums=('cc9f16ba436efabdcef3c4d32ae4919c'
+ 'SKIP')
 validpgpkeys=('C7ECC365AB6F255E1EB9BA1701FA998FBAC6374A')
-md5sums=('8660ba7c3c0abd23e6e4efa493b02966')
 
 build(){
 cd $srcdir


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

2016-12-07 Thread Jelle van der Waa
Date: Wednesday, December 7, 2016 @ 20:59:18
  Author: jelle
Revision: 198425

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-07 20:59:09 UTC (rev 198424)
+++ PKGBUILD2016-12-07 20:59:18 UTC (rev 198425)
@@ -1,57 +0,0 @@
-# Maintainer: Stefan Husmann 
-# Maintainer: Jelle van der Waa 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: William Rea 
-
-pkgname=('python-pytz' 'python2-pytz')
-pkgver=2016.7
-pkgrel=1
-arch=('any')
-url="http://pypi.python.org/pypi/pytz";
-license=("MIT")
-makedepends=('python' 'python2')
-source=(https://pypi.python.org/packages/62/de/3ec428a9a656c4568f8a01b93bda4aff43c3fadfa50356048a62de9ee3b7/pytz-2016.7.tar.gz)
-validpgpkeys=('C7ECC365AB6F255E1EB9BA1701FA998FBAC6374A')
-md5sums=('8660ba7c3c0abd23e6e4efa493b02966')
-
-build(){
-cd $srcdir
-cp -rf pytz-$pkgver pytz2-$pkgver
-}
-
-check(){
-cd $srcdir/pytz-$pkgver/pytz/tests
-
-python3 test_tzinfo.py
-
-python2 test_tzinfo.py
-}
-
-package_python-pytz(){
-depends=('python')
-pkgdesc="Cross platform time zone library for Python"
-
-cd $srcdir/pytz-$pkgver
-
-# Fix locale https://github.com/ipython/ipython/issues/2057
-export LC_ALL=en_US.UTF-8
-
-python3 setup.py install --root=$pkgdir/
-
-install -D LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-
-package_python2-pytz(){
-depends=('python2')
-pkgdesc="Cross platform time zone library for Python"
-
-cd $srcdir/pytz2-$pkgver
-
-# python 2 fix
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' pytz/tzfile.py
-
-python2 setup.py install --root="$pkgdir/"
-
-install -D LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-pytz/repos/community-any/PKGBUILD (from rev 198424, 
python-pytz/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-07 20:59:18 UTC (rev 198425)
@@ -0,0 +1,58 @@
+# Maintainer: Stefan Husmann 
+# Maintainer: Jelle van der Waa 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: William Rea 
+
+pkgname=('python-pytz' 'python2-pytz')
+pkgver=2016.10
+pkgrel=1
+arch=('any')
+url="http://pypi.python.org/pypi/pytz";
+license=("MIT")
+makedepends=('python' 'python2')
+source=(https://pypi.python.org/packages/42/00/5c89fc6c9b305df84def61863528e899e9dccb196f8438f6cbe960758fc5/pytz-2016.10.tar.gz{,.asc})
+md5sums=('cc9f16ba436efabdcef3c4d32ae4919c'
+ 'SKIP')
+validpgpkeys=('C7ECC365AB6F255E1EB9BA1701FA998FBAC6374A')
+
+build(){
+cd $srcdir
+cp -rf pytz-$pkgver pytz2-$pkgver
+}
+
+check(){
+cd $srcdir/pytz-$pkgver/pytz/tests
+
+python3 test_tzinfo.py
+
+python2 test_tzinfo.py
+}
+
+package_python-pytz(){
+depends=('python')
+pkgdesc="Cross platform time zone library for Python"
+
+cd $srcdir/pytz-$pkgver
+
+# Fix locale https://github.com/ipython/ipython/issues/2057
+export LC_ALL=en_US.UTF-8
+
+python3 setup.py install --root=$pkgdir/
+
+install -D LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+
+package_python2-pytz(){
+depends=('python2')
+pkgdesc="Cross platform time zone library for Python"
+
+cd $srcdir/pytz2-$pkgver
+
+# python 2 fix
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' pytz/tzfile.py
+
+python2 setup.py install --root="$pkgdir/"
+
+install -D LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in systemd/repos (52 files)

2016-12-07 Thread Dave Reisner
Date: Wednesday, December 7, 2016 @ 20:41:20
  Author: dreisner
Revision: 282933

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

Added:
  
systemd/repos/testing-i686/0001-Revert-nspawn-try-to-bind-mount-resolved-s-resolv.co.patch
(from rev 282932, 
systemd/trunk/0001-Revert-nspawn-try-to-bind-mount-resolved-s-resolv.co.patch)
  systemd/repos/testing-i686/0001-disable-RestrictAddressFamilies-on-i686.patch
(from rev 282932, 
systemd/trunk/0001-disable-RestrictAddressFamilies-on-i686.patch)
  systemd/repos/testing-i686/0001-nspawn-don-t-hide-bind-tmp-mounts.patch
(from rev 282932, 
systemd/trunk/0001-nspawn-don-t-hide-bind-tmp-mounts.patch)
  systemd/repos/testing-i686/PKGBUILD
(from rev 282932, systemd/trunk/PKGBUILD)
  systemd/repos/testing-i686/arch.conf
(from rev 282932, systemd/trunk/arch.conf)
  systemd/repos/testing-i686/initcpio-hook-udev
(from rev 282932, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-i686/initcpio-install-systemd
(from rev 282932, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-i686/initcpio-install-udev
(from rev 282932, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-i686/loader.conf
(from rev 282932, systemd/trunk/loader.conf)
  systemd/repos/testing-i686/splash-arch.bmp
(from rev 282932, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-i686/systemd-user.pam
(from rev 282932, systemd/trunk/systemd-user.pam)
  systemd/repos/testing-i686/systemd.install
(from rev 282932, systemd/trunk/systemd.install)
  systemd/repos/testing-i686/udev-hwdb.hook
(from rev 282932, systemd/trunk/udev-hwdb.hook)
  
systemd/repos/testing-x86_64/0001-Revert-nspawn-try-to-bind-mount-resolved-s-resolv.co.patch
(from rev 282932, 
systemd/trunk/0001-Revert-nspawn-try-to-bind-mount-resolved-s-resolv.co.patch)
  
systemd/repos/testing-x86_64/0001-disable-RestrictAddressFamilies-on-i686.patch
(from rev 282932, 
systemd/trunk/0001-disable-RestrictAddressFamilies-on-i686.patch)
  systemd/repos/testing-x86_64/0001-nspawn-don-t-hide-bind-tmp-mounts.patch
(from rev 282932, 
systemd/trunk/0001-nspawn-don-t-hide-bind-tmp-mounts.patch)
  systemd/repos/testing-x86_64/PKGBUILD
(from rev 282932, systemd/trunk/PKGBUILD)
  systemd/repos/testing-x86_64/arch.conf
(from rev 282932, systemd/trunk/arch.conf)
  systemd/repos/testing-x86_64/initcpio-hook-udev
(from rev 282932, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-x86_64/initcpio-install-systemd
(from rev 282932, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-x86_64/initcpio-install-udev
(from rev 282932, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-x86_64/loader.conf
(from rev 282932, systemd/trunk/loader.conf)
  systemd/repos/testing-x86_64/splash-arch.bmp
(from rev 282932, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-x86_64/systemd-user.pam
(from rev 282932, systemd/trunk/systemd-user.pam)
  systemd/repos/testing-x86_64/systemd.install
(from rev 282932, systemd/trunk/systemd.install)
  systemd/repos/testing-x86_64/udev-hwdb.hook
(from rev 282932, systemd/trunk/udev-hwdb.hook)
Deleted:
  
systemd/repos/testing-i686/0001-Revert-nspawn-try-to-bind-mount-resolved-s-resolv.co.patch
  systemd/repos/testing-i686/0001-disable-RestrictAddressFamilies-on-i686.patch
  systemd/repos/testing-i686/0001-nspawn-don-t-hide-bind-tmp-mounts.patch
  systemd/repos/testing-i686/PKGBUILD
  systemd/repos/testing-i686/arch.conf
  systemd/repos/testing-i686/initcpio-hook-udev
  systemd/repos/testing-i686/initcpio-install-systemd
  systemd/repos/testing-i686/initcpio-install-udev
  systemd/repos/testing-i686/loader.conf
  systemd/repos/testing-i686/splash-arch.bmp
  systemd/repos/testing-i686/systemd-user.pam
  systemd/repos/testing-i686/systemd.install
  systemd/repos/testing-i686/udev-hwdb.hook
  
systemd/repos/testing-x86_64/0001-Revert-nspawn-try-to-bind-mount-resolved-s-resolv.co.patch
  
systemd/repos/testing-x86_64/0001-disable-RestrictAddressFamilies-on-i686.patch
  systemd/repos/testing-x86_64/0001-nspawn-don-t-hide-bind-tmp-mounts.patch
  systemd/repos/testing-x86_64/PKGBUILD
  systemd/repos/testing-x86_64/arch.conf
  systemd/repos/testing-x86_64/initcpio-hook-udev
  systemd/repos/testing-x86_64/initcpio-install-systemd
  systemd/repos/testing-x86_64/initcpio-install-udev
  systemd/repos/testing-x86_64/loader.conf
  systemd/repos/testing-x86_64/splash-arch.bmp
  systemd/repos/testing-x86_64/systemd-user.pam
  systemd/repos/testing-x86_64/systemd.install
  systemd/repos/testing-x86_64/udev-hwdb.hook

+
 /0001-Revert-nspawn-try-to-bind-mount-resolved-s-resolv.co.patch   
|  124 ++
 /0001-disable-RestrictAddressFamilies-on-i686.patch
|   60 +
 /0001-nspawn-don-t-hide-bind-tmp-mounts.patch  
|   52 +
 /PKGBUILD

[arch-commits] Commit in systemd/trunk (PKGBUILD systemd-user.pam)

2016-12-07 Thread Dave Reisner
Date: Wednesday, December 7, 2016 @ 20:39:57
  Author: dreisner
Revision: 282932

upgpkg: systemd 232-6

- fix pam file: s/system-auth/system-login/

Modified:
  systemd/trunk/PKGBUILD
  systemd/trunk/systemd-user.pam

--+
 PKGBUILD |7 ++-
 systemd-user.pam |4 ++--
 2 files changed, 4 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 19:49:42 UTC (rev 282931)
+++ PKGBUILD2016-12-07 20:39:57 UTC (rev 282932)
@@ -4,7 +4,7 @@
 pkgbase=systemd
 pkgname=('systemd' 'libsystemd' 'systemd-sysvcompat')
 pkgver=232
-pkgrel=5
+pkgrel=6
 arch=('i686' 'x86_64')
 url="https://www.github.com/systemd/systemd";
 makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gperf' 'lz4' 'xz' 'pam' 'libelf'
@@ -31,7 +31,7 @@
 
'61032d29241b74a0f28446f8cf1be0e8ec46d0847a61dadb2a4f096e8686d5f57fe5c72bcf386003f6520bc4b5856c32d63bf3efe7eb0bc0deefc9f68159e648'
 
'c416e2121df83067376bcaacb58c05b01990f4614ad9de657d74b6da3efa441af251d13bf21e3f0f71ddcb4c9ea658b81da3d915667dc5c309c87ec32a1cb5a5'
 
'5a1d78b5170da5abe3d18fdf9f2c3a4d78f15ba7d1ee9ec2708c4c9c2e28973469bc19386f70b3cf32ffafbe4fcc4303e5ebbd6d5187a1df3314ae0965b25e75'
-
'2688e8be6943aa34b4a4e2481e23d07ab7dae53cc9426260010cf6a1e2361eff4b9a8b3652a1fca65680e1f23221026c6460e04feb1cee919b24e2bbf69be5ed'
+
'b90c99d768dc2a4f020ba854edf45ccf1b86a09d2f66e475de21fe589ff7e32c33ef4aa0876d7f1864491488fd7edb2682fc0d68e83a6d4890a0778dc2d6fe19'
 
'888ab01bc6e09beb08d7126472c34c9e1aa35ea34e62a09e900ae34c93b1de2fcc988586efd8d0dc962393974f45c77b206d59a86cf53e370f061bf9a1b1a862'
 
'89f9b2d3918c679ce4f76c2b10dc7fcb7e04f1925a5f92542f06891de2a123a91df7eb67fd4ce71506a8132f5440b3560b7bb667e1c1813944b115c1dfe35e3f'
 
'b993a42c5534582631f7b379d54f6abc37e3aaa56ecf869a6d86ff14ae5a52628f4e447b6a30751bc1c14c30cec63a5c6d0aa268362d235ed477b639cac3a219'
@@ -188,9 +188,6 @@
   # we'll create this on installation
   rmdir "$pkgdir/var/log/journal/remote"
 
-  # fix pam file
-  sed 's|system-auth|system-login|g' -i "$pkgdir/etc/pam.d/systemd-user"
-
   # ship default policy to leave services disabled
   echo 'disable *' >"$pkgdir"/usr/lib/systemd/system-preset/99-default.preset
 

Modified: systemd-user.pam
===
--- systemd-user.pam2016-12-07 19:49:42 UTC (rev 282931)
+++ systemd-user.pam2016-12-07 20:39:57 UTC (rev 282932)
@@ -1,5 +1,5 @@
 # Used by systemd --user instances.
 
-account  include system-auth
+account  include system-login
 session  required pam_loginuid.so
-session  include system-auth
+session  include system-login


[arch-commits] Commit in gnome-multi-writer (5 files)

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 20:20:50
  Author: bgyorgy
Revision: 198423

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

Added:
  gnome-multi-writer/repos/
  gnome-multi-writer/repos/community-i686/
  gnome-multi-writer/repos/community-i686/PKGBUILD
(from rev 198422, gnome-multi-writer/trunk/PKGBUILD)
  gnome-multi-writer/repos/community-x86_64/
  gnome-multi-writer/repos/community-x86_64/PKGBUILD
(from rev 198422, gnome-multi-writer/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   31 +++
 community-x86_64/PKGBUILD |   31 +++
 2 files changed, 62 insertions(+)

Copied: gnome-multi-writer/repos/community-i686/PKGBUILD (from rev 198422, 
gnome-multi-writer/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2016-12-07 20:20:50 UTC (rev 198423)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=gnome-multi-writer
+pkgver=3.22.1
+pkgrel=1
+pkgdesc="Write an ISO file to multiple USB devices at once"
+arch=('x86_64' 'i686')
+url="https://wiki.gnome.org/Apps/MultiWriter";
+license=('GPL')
+depends=('gtk3' 'libcanberra' 'libgusb' 'udisks2')
+makedepends=('appstream-glib' 'docbook2x' 'intltool')
+optdepends=('gnome-icon-theme-extras: show device icons')
+source=("https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz";)
+sha256sums=('02fe592b9c6c3b1b76dc7436f10a60673b8e89fb0f81f8e99ae943f6ba139fb6')
+
+prepare() {
+   cd $pkgname-$pkgver
+   sed -i 's/docbook2man \$?/docbook2man --sgml \$?/' man/Makefile.{am,in}
+}
+
+build() {
+   cd $pkgname-$pkgver
+   ./configure --prefix=/usr --libexecdir=/usr/lib/$pkgname
+   make
+}
+
+package() {
+   cd $pkgname-$pkgver
+   make DESTDIR="$pkgdir" install
+}

Copied: gnome-multi-writer/repos/community-x86_64/PKGBUILD (from rev 198422, 
gnome-multi-writer/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2016-12-07 20:20:50 UTC (rev 198423)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=gnome-multi-writer
+pkgver=3.22.1
+pkgrel=1
+pkgdesc="Write an ISO file to multiple USB devices at once"
+arch=('x86_64' 'i686')
+url="https://wiki.gnome.org/Apps/MultiWriter";
+license=('GPL')
+depends=('gtk3' 'libcanberra' 'libgusb' 'udisks2')
+makedepends=('appstream-glib' 'docbook2x' 'intltool')
+optdepends=('gnome-icon-theme-extras: show device icons')
+source=("https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz";)
+sha256sums=('02fe592b9c6c3b1b76dc7436f10a60673b8e89fb0f81f8e99ae943f6ba139fb6')
+
+prepare() {
+   cd $pkgname-$pkgver
+   sed -i 's/docbook2man \$?/docbook2man --sgml \$?/' man/Makefile.{am,in}
+}
+
+build() {
+   cd $pkgname-$pkgver
+   ./configure --prefix=/usr --libexecdir=/usr/lib/$pkgname
+   make
+}
+
+package() {
+   cd $pkgname-$pkgver
+   make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in (3 files)

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 20:20:31
  Author: bgyorgy
Revision: 198422

Move gnome-multi-writer from AUR with 10 votes

Added:
  gnome-multi-writer/
  gnome-multi-writer/trunk/
  gnome-multi-writer/trunk/PKGBUILD

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

Added: gnome-multi-writer/trunk/PKGBUILD
===
--- gnome-multi-writer/trunk/PKGBUILD   (rev 0)
+++ gnome-multi-writer/trunk/PKGBUILD   2016-12-07 20:20:31 UTC (rev 198422)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=gnome-multi-writer
+pkgver=3.22.1
+pkgrel=1
+pkgdesc="Write an ISO file to multiple USB devices at once"
+arch=('x86_64' 'i686')
+url="https://wiki.gnome.org/Apps/MultiWriter";
+license=('GPL')
+depends=('gtk3' 'libcanberra' 'libgusb' 'udisks2')
+makedepends=('appstream-glib' 'docbook2x' 'intltool')
+optdepends=('gnome-icon-theme-extras: show device icons')
+source=("https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz";)
+sha256sums=('02fe592b9c6c3b1b76dc7436f10a60673b8e89fb0f81f8e99ae943f6ba139fb6')
+
+prepare() {
+   cd $pkgname-$pkgver
+   sed -i 's/docbook2man \$?/docbook2man --sgml \$?/' man/Makefile.{am,in}
+}
+
+build() {
+   cd $pkgname-$pkgver
+   ./configure --prefix=/usr --libexecdir=/usr/lib/$pkgname
+   make
+}
+
+package() {
+   cd $pkgname-$pkgver
+   make DESTDIR="$pkgdir" install
+}


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


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 20:06:15
  Author: bgyorgy
Revision: 198421

archrelease: copy trunk to community-any

Added:
  lxmenu-data/repos/community-any/PKGBUILD
(from rev 198420, lxmenu-data/trunk/PKGBUILD)
Deleted:
  lxmenu-data/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-07 20:05:54 UTC (rev 198420)
+++ PKGBUILD2016-12-07 20:06:15 UTC (rev 198421)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Angel Velasquez 
-# Contributor: Juergen Hoetzel 
-
-pkgname=lxmenu-data
-pkgver=0.1.5
-pkgrel=1
-pkgdesc="Freedesktop.org desktop menus for LXDE"
-arch=('any')
-license=('GPL2')
-url="http://lxde.org/";
-source=("http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz";)
-makedepends=('intltool')
-sha256sums=('9fe3218d2ef50b91190162f4f923d6524c364849f87bcda8b4ed8eb59b80bab8')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: lxmenu-data/repos/community-any/PKGBUILD (from rev 198420, 
lxmenu-data/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-07 20:06:15 UTC (rev 198421)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Angel Velasquez 
+# Contributor: Juergen Hoetzel 
+
+pkgname=lxmenu-data
+pkgver=0.1.5
+pkgrel=1
+pkgdesc="Freedesktop.org desktop menus for LXDE"
+arch=('any')
+license=('GPL2')
+url="http://lxde.org/";
+source=("https://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz";)
+makedepends=('intltool')
+sha256sums=('9fe3218d2ef50b91190162f4f923d6524c364849f87bcda8b4ed8eb59b80bab8')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in lxmenu-data/repos (community-i686 community-x86_64)

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 20:05:54
  Author: bgyorgy
Revision: 198420

Revert mistake

Deleted:
  lxmenu-data/repos/community-i686/
  lxmenu-data/repos/community-x86_64/


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 20:03:17
  Author: bgyorgy
Revision: 198419

archrelease: copy trunk to community-any

Added:
  zeitgeist-explorer/repos/community-any/PKGBUILD
(from rev 198418, zeitgeist-explorer/trunk/PKGBUILD)
Deleted:
  zeitgeist-explorer/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-07 20:03:09 UTC (rev 198418)
+++ PKGBUILD2016-12-07 20:03:17 UTC (rev 198419)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-
-pkgname=zeitgeist-explorer
-pkgver=0.2
-pkgrel=4
-pkgdesc="Graphical interface to monitor and inspect Zeitgeist's log at a low 
level"
-arch=('any')
-url="https://launchpad.net/zeitgeist-explorer";
-license=('LGPL')
-depends=('gtk3' 'python2-gobject' 'zeitgeist')
-makedepends=('python2-distutils-extra')
-source=(https://launchpad.net/$pkgname/0.x/$pkgver/+download/$pkgname-$pkgver.tar.gz)
-md5sums=('8521b2c8ecc3f0d425e6806dcb2fde59')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i 's@^#!.*python$@#!/usr/bin/python2@' zgexplorer/*.py
-}
-
-build() {
-  cd $pkgname-$pkgver
-  python2 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  rm -r "$pkgdir/usr/data"
-}

Copied: zeitgeist-explorer/repos/community-any/PKGBUILD (from rev 198418, 
zeitgeist-explorer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-07 20:03:17 UTC (rev 198419)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=zeitgeist-explorer
+pkgver=0.2
+pkgrel=4
+pkgdesc="Graphical interface to monitor and inspect Zeitgeist's log at a low 
level"
+arch=('any')
+url="https://launchpad.net/zeitgeist-explorer";
+license=('LGPL')
+depends=('gtk3' 'python2-gobject' 'zeitgeist')
+makedepends=('python2-distutils-extra')
+source=(https://launchpad.net/$pkgname/0.x/$pkgver/+download/$pkgname-$pkgver.tar.gz{,.asc})
+validpgpkeys=('EEE420E481E68B71594F192D361CC5EBA0BA909F') # Manish Sinha
+md5sums=('8521b2c8ecc3f0d425e6806dcb2fde59'
+ 'SKIP')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's@^#!.*python$@#!/usr/bin/python2@' zgexplorer/*.py
+}
+
+build() {
+  cd $pkgname-$pkgver
+  python2 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  rm -r "$pkgdir/usr/data"
+}


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 20:03:09
  Author: bgyorgy
Revision: 198418

Use gpg signature

Modified:
  zeitgeist-explorer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 19:57:45 UTC (rev 198417)
+++ PKGBUILD2016-12-07 20:03:09 UTC (rev 198418)
@@ -10,8 +10,10 @@
 license=('LGPL')
 depends=('gtk3' 'python2-gobject' 'zeitgeist')
 makedepends=('python2-distutils-extra')
-source=(https://launchpad.net/$pkgname/0.x/$pkgver/+download/$pkgname-$pkgver.tar.gz)
-md5sums=('8521b2c8ecc3f0d425e6806dcb2fde59')
+source=(https://launchpad.net/$pkgname/0.x/$pkgver/+download/$pkgname-$pkgver.tar.gz{,.asc})
+validpgpkeys=('EEE420E481E68B71594F192D361CC5EBA0BA909F') # Manish Sinha
+md5sums=('8521b2c8ecc3f0d425e6806dcb2fde59'
+ 'SKIP')
 
 prepare() {
   cd $pkgname-$pkgver


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:57:45
  Author: bgyorgy
Revision: 198417

archrelease: copy trunk to community-any

Added:
  urlwatch/repos/community-any/PKGBUILD
(from rev 198416, urlwatch/trunk/PKGBUILD)
Deleted:
  urlwatch/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-07 19:57:34 UTC (rev 198416)
+++ PKGBUILD2016-12-07 19:57:45 UTC (rev 198417)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Skydrome 
-# Contributor: Allan McRae 
-
-pkgname=urlwatch
-pkgver=2.6
-pkgrel=1
-pkgdesc="A tool for monitoring webpages for updates"
-arch=('any')
-url="http://thp.io/2008/urlwatch/";
-license=('BSD')
-depends=('python-keyring' 'python-minidb' 'python-requests' 'python-yaml')
-source=("https://thp.io/2008/urlwatch/$pkgname-$pkgver.tar.gz";)
-sha256sums=('57a90a0a7a3f056bbf77c917621a124338de20e15ce356873b9abba72f57d6f4')
-
-build() {
-  cd $pkgname-$pkgver
-  python3 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python3 setup.py install --root="$pkgdir"
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}

Copied: urlwatch/repos/community-any/PKGBUILD (from rev 198416, 
urlwatch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-07 19:57:45 UTC (rev 198417)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Skydrome 
+# Contributor: Allan McRae 
+
+pkgname=urlwatch
+pkgver=2.6
+pkgrel=1
+pkgdesc="A tool for monitoring webpages for updates"
+arch=('any')
+url="https://thp.io/2008/urlwatch/";
+license=('BSD')
+depends=('python-keyring' 'python-minidb' 'python-requests' 'python-yaml')
+source=("https://thp.io/2008/urlwatch/$pkgname-$pkgver.tar.gz";)
+sha256sums=('57a90a0a7a3f056bbf77c917621a124338de20e15ce356873b9abba72f57d6f4')
+
+build() {
+  cd $pkgname-$pkgver
+  python3 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python3 setup.py install --root="$pkgdir"
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:56:51
  Author: bgyorgy
Revision: 198414

Use https source

Modified:
  uget/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 19:56:04 UTC (rev 198413)
+++ PKGBUILD2016-12-07 19:56:51 UTC (rev 198414)
@@ -11,7 +11,7 @@
 depends=('libnotify' 'gtk3' 'gstreamer' 'curl')
 makedepends=('intltool')
 optdepends=('aria2: alternative backend')
-source=(http://downloads.sourceforge.net/urlget/$pkgname-$pkgver.tar.gz)
+source=(https://downloads.sourceforge.net/urlget/$pkgname-$pkgver.tar.gz)
 sha256sums=('e5ccf61ed691d8921e2f1951b1cf8eb439b525868a0d0068932d4c478f632924')
 
 build() {


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:57:34
  Author: bgyorgy
Revision: 198416

Use https source

Modified:
  urlwatch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 19:57:03 UTC (rev 198415)
+++ PKGBUILD2016-12-07 19:57:34 UTC (rev 198416)
@@ -8,7 +8,7 @@
 pkgrel=1
 pkgdesc="A tool for monitoring webpages for updates"
 arch=('any')
-url="http://thp.io/2008/urlwatch/";
+url="https://thp.io/2008/urlwatch/";
 license=('BSD')
 depends=('python-keyring' 'python-minidb' 'python-requests' 'python-yaml')
 source=("https://thp.io/2008/urlwatch/$pkgname-$pkgver.tar.gz";)


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:57:03
  Author: bgyorgy
Revision: 198415

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-07 19:56:51 UTC (rev 198414)
+++ community-i686/PKGBUILD 2016-12-07 19:57:03 UTC (rev 198415)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-
-pkgname=uget
-pkgver=2.0.8
-pkgrel=1
-pkgdesc="GTK+ download manager featuring download classification and HTML 
import"
-arch=('i686' 'x86_64')
-url="http://ugetdm.com/";
-license=('LGPL')
-depends=('libnotify' 'gtk3' 'gstreamer' 'curl')
-makedepends=('intltool')
-optdepends=('aria2: alternative backend')
-source=(http://downloads.sourceforge.net/urlget/$pkgname-$pkgver.tar.gz)
-sha256sums=('e5ccf61ed691d8921e2f1951b1cf8eb439b525868a0d0068932d4c478f632924')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: uget/repos/community-i686/PKGBUILD (from rev 198414, 
uget/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-07 19:57:03 UTC (rev 198415)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=uget
+pkgver=2.0.8
+pkgrel=1
+pkgdesc="GTK+ download manager featuring download classification and HTML 
import"
+arch=('i686' 'x86_64')
+url="http://ugetdm.com/";
+license=('LGPL')
+depends=('libnotify' 'gtk3' 'gstreamer' 'curl')
+makedepends=('intltool')
+optdepends=('aria2: alternative backend')
+source=(https://downloads.sourceforge.net/urlget/$pkgname-$pkgver.tar.gz)
+sha256sums=('e5ccf61ed691d8921e2f1951b1cf8eb439b525868a0d0068932d4c478f632924')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-12-07 19:56:51 UTC (rev 198414)
+++ community-x86_64/PKGBUILD   2016-12-07 19:57:03 UTC (rev 198415)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-
-pkgname=uget
-pkgver=2.0.8
-pkgrel=1
-pkgdesc="GTK+ download manager featuring download classification and HTML 
import"
-arch=('i686' 'x86_64')
-url="http://ugetdm.com/";
-license=('LGPL')
-depends=('libnotify' 'gtk3' 'gstreamer' 'curl')
-makedepends=('intltool')
-optdepends=('aria2: alternative backend')
-source=(http://downloads.sourceforge.net/urlget/$pkgname-$pkgver.tar.gz)
-sha256sums=('e5ccf61ed691d8921e2f1951b1cf8eb439b525868a0d0068932d4c478f632924')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: uget/repos/community-x86_64/PKGBUILD (from rev 198414, 
uget/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-12-07 19:57:03 UTC (rev 198415)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=uget
+pkgver=2.0.8
+pkgrel=1
+pkgdesc="GTK+ download manager featuring download classification and HTML 
import"
+arch=('i686' 'x86_64')
+url="http://ugetdm.com/";
+license=('LGPL')
+depends=('libnotify' 'gtk3' 'gstreamer' 'curl')
+makedepends=('intltool')
+optdepends=('aria2: alternative backend')
+source=(https://downloads.sourceforge.net/urlget/$pkgname-$pkgver.tar.gz)
+sha256sums=('e5ccf61ed691d8921e2f1951b1cf8eb439b525868a0d0068932d4c478f632924')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in ttf-linux-libertine-g/repos/community-any (4 files)

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:56:04
  Author: bgyorgy
Revision: 198413

archrelease: copy trunk to community-any

Added:
  ttf-linux-libertine-g/repos/community-any/PKGBUILD
(from rev 198412, ttf-linux-libertine-g/trunk/PKGBUILD)
  ttf-linux-libertine-g/repos/community-any/ttf-linux-libertine-g.install
(from rev 198412, ttf-linux-libertine-g/trunk/ttf-linux-libertine-g.install)
Deleted:
  ttf-linux-libertine-g/repos/community-any/PKGBUILD
  ttf-linux-libertine-g/repos/community-any/ttf-linux-libertine-g.install

---+
 PKGBUILD  |   50 
 ttf-linux-libertine-g.install |   26 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-07 19:55:57 UTC (rev 198412)
+++ PKGBUILD2016-12-07 19:56:04 UTC (rev 198413)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-
-pkgname=ttf-linux-libertine-g
-_pkgname=LinLibertineG
-pkgver=20120116
-pkgrel=3
-pkgdesc="Graphite port of Linux Libertine and Linux Biolinum fonts"
-arch=('any')
-url="http://numbertext.org/linux/";
-license=('GPL' 'custom:OFL')
-depends=('fontconfig' 'xorg-mkfontdir')
-install=$pkgname.install
-md5sums=('e7a384790b13c29113e22e596ade9687')
-source=(http://www.numbertext.org/linux/${md5sums[0]}-$_pkgname-$pkgver.zip)
-
-package() {
-  cd "$srcdir/$_pkgname"
-
-  install -dm755 "$pkgdir/usr/share/fonts/TTF"
-  install -m644 *.ttf "$pkgdir/usr/share/fonts/TTF/"
-
-  install -Dm644 OFL.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 LICENCE.txt $pkgdir/usr/share/licenses/$pkgname/README
-}

Copied: ttf-linux-libertine-g/repos/community-any/PKGBUILD (from rev 198412, 
ttf-linux-libertine-g/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-07 19:56:04 UTC (rev 198413)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=ttf-linux-libertine-g
+_pkgname=LinLibertineG
+pkgver=20120116
+pkgrel=3
+pkgdesc="Graphite port of Linux Libertine and Linux Biolinum fonts"
+arch=('any')
+url="https://numbertext.org/linux/";
+license=('GPL' 'custom:OFL')
+depends=('fontconfig' 'xorg-mkfontdir')
+install=$pkgname.install
+md5sums=('e7a384790b13c29113e22e596ade9687')
+source=(https://www.numbertext.org/linux/${md5sums[0]}-$_pkgname-$pkgver.zip)
+
+package() {
+  cd "$srcdir/$_pkgname"
+
+  install -dm755 "$pkgdir/usr/share/fonts/TTF"
+  install -m644 *.ttf "$pkgdir/usr/share/fonts/TTF/"
+
+  install -Dm644 OFL.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 LICENCE.txt $pkgdir/usr/share/licenses/$pkgname/README
+}

Deleted: ttf-linux-libertine-g.install
===
--- ttf-linux-libertine-g.install   2016-12-07 19:55:57 UTC (rev 198412)
+++ ttf-linux-libertine-g.install   2016-12-07 19:56:04 UTC (rev 198413)
@@ -1,13 +0,0 @@
-post_install() {
-  fc-cache -s
-  mkfontscale usr/share/fonts/TTF
-  mkfontdir usr/share/fonts/TTF
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: ttf-linux-libertine-g/repos/community-any/ttf-linux-libertine-g.install 
(from rev 198412, ttf-linux-libertine-g/trunk/ttf-linux-libertine-g.install)
===
--- ttf-linux-libertine-g.install   (rev 0)
+++ ttf-linux-libertine-g.install   2016-12-07 19:56:04 UTC (rev 198413)
@@ -0,0 +1,13 @@
+post_install() {
+  fc-cache -s
+  mkfontscale usr/share/fonts/TTF
+  mkfontdir usr/share/fonts/TTF
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:55:57
  Author: bgyorgy
Revision: 198412

Use https source

Modified:
  ttf-linux-libertine-g/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 19:53:25 UTC (rev 198411)
+++ PKGBUILD2016-12-07 19:55:57 UTC (rev 198412)
@@ -7,12 +7,12 @@
 pkgrel=3
 pkgdesc="Graphite port of Linux Libertine and Linux Biolinum fonts"
 arch=('any')
-url="http://numbertext.org/linux/";
+url="https://numbertext.org/linux/";
 license=('GPL' 'custom:OFL')
 depends=('fontconfig' 'xorg-mkfontdir')
 install=$pkgname.install
 md5sums=('e7a384790b13c29113e22e596ade9687')
-source=(http://www.numbertext.org/linux/${md5sums[0]}-$_pkgname-$pkgver.zip)
+source=(https://www.numbertext.org/linux/${md5sums[0]}-$_pkgname-$pkgver.zip)
 
 package() {
   cd "$srcdir/$_pkgname"


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:53:25
  Author: bgyorgy
Revision: 198411

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

Added:
  systemd-ui/repos/community-i686/PKGBUILD
(from rev 198410, systemd-ui/trunk/PKGBUILD)
  systemd-ui/repos/community-x86_64/PKGBUILD
(from rev 198410, systemd-ui/trunk/PKGBUILD)
Deleted:
  systemd-ui/repos/community-i686/PKGBUILD
  systemd-ui/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-07 19:53:15 UTC (rev 198410)
+++ community-i686/PKGBUILD 2016-12-07 19:53:25 UTC (rev 198411)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Jameson Pugh 
-
-pkgname=systemd-ui
-pkgver=3
-pkgrel=2
-pkgdesc="Graphical front-end for systemd"
-arch=('i686' 'x86_64')
-url="http://www.freedesktop.org/wiki/Software/systemd";
-license=('GPL')
-depends=('gtk3' 'libgee' 'libnotify')
-makedepends=('vala' 'docbook-xsl' 'libxslt')
-source=("http://www.freedesktop.org/software/systemd/$pkgname-$pkgver.tar.xz";)
-sha256sums=('455e65000abf39bbccd937786b5f0d7c76ea631b6f28d7142f007fa141338dad')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: systemd-ui/repos/community-i686/PKGBUILD (from rev 198410, 
systemd-ui/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-07 19:53:25 UTC (rev 198411)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Jameson Pugh 
+
+pkgname=systemd-ui
+pkgver=3
+pkgrel=2
+pkgdesc="Graphical front-end for systemd"
+arch=('i686' 'x86_64')
+url="https://www.freedesktop.org/wiki/Software/systemd";
+license=('GPL')
+depends=('gtk3' 'libgee' 'libnotify')
+makedepends=('vala' 'docbook-xsl' 'libxslt')
+source=("https://www.freedesktop.org/software/systemd/$pkgname-$pkgver.tar.xz";)
+sha256sums=('455e65000abf39bbccd937786b5f0d7c76ea631b6f28d7142f007fa141338dad')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-12-07 19:53:15 UTC (rev 198410)
+++ community-x86_64/PKGBUILD   2016-12-07 19:53:25 UTC (rev 198411)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Jameson Pugh 
-
-pkgname=systemd-ui
-pkgver=3
-pkgrel=2
-pkgdesc="Graphical front-end for systemd"
-arch=('i686' 'x86_64')
-url="http://www.freedesktop.org/wiki/Software/systemd";
-license=('GPL')
-depends=('gtk3' 'libgee' 'libnotify')
-makedepends=('vala' 'docbook-xsl' 'libxslt')
-source=("http://www.freedesktop.org/software/systemd/$pkgname-$pkgver.tar.xz";)
-sha256sums=('455e65000abf39bbccd937786b5f0d7c76ea631b6f28d7142f007fa141338dad')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: systemd-ui/repos/community-x86_64/PKGBUILD (from rev 198410, 
systemd-ui/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-12-07 19:53:25 UTC (rev 198411)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Jameson Pugh 
+
+pkgname=systemd-ui
+pkgver=3
+pkgrel=2
+pkgdesc="Graphical front-end for systemd"
+arch=('i686' 'x86_64')
+url="https://www.freedesktop.org/wiki/Software/systemd";
+license=('GPL')
+depends=('gtk3' 'libgee' 'libnotify')
+makedepends=('vala' 'docbook-xsl' 'libxslt')
+source=("https://www.freedesktop.org/software/systemd/$pkgname-$pkgver.tar.xz";)
+sha256sums=('455e65000abf39bbccd937786b5f0d7c76ea631b6f28d7142f007fa141338dad')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:53:15
  Author: bgyorgy
Revision: 198410

Use https source

Modified:
  systemd-ui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 19:51:33 UTC (rev 198409)
+++ PKGBUILD2016-12-07 19:53:15 UTC (rev 198410)
@@ -7,11 +7,11 @@
 pkgrel=2
 pkgdesc="Graphical front-end for systemd"
 arch=('i686' 'x86_64')
-url="http://www.freedesktop.org/wiki/Software/systemd";
+url="https://www.freedesktop.org/wiki/Software/systemd";
 license=('GPL')
 depends=('gtk3' 'libgee' 'libnotify')
 makedepends=('vala' 'docbook-xsl' 'libxslt')
-source=("http://www.freedesktop.org/software/systemd/$pkgname-$pkgver.tar.xz";)
+source=("https://www.freedesktop.org/software/systemd/$pkgname-$pkgver.tar.xz";)
 sha256sums=('455e65000abf39bbccd937786b5f0d7c76ea631b6f28d7142f007fa141338dad')
 
 build() {


[arch-commits] Commit in spice-vdagent/repos (8 files)

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:51:33
  Author: bgyorgy
Revision: 198409

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

Added:
  spice-vdagent/repos/community-i686/PKGBUILD
(from rev 198408, spice-vdagent/trunk/PKGBUILD)
  spice-vdagent/repos/community-i686/spice-vdagent.install
(from rev 198408, spice-vdagent/trunk/spice-vdagent.install)
  spice-vdagent/repos/community-x86_64/PKGBUILD
(from rev 198408, spice-vdagent/trunk/PKGBUILD)
  spice-vdagent/repos/community-x86_64/spice-vdagent.install
(from rev 198408, spice-vdagent/trunk/spice-vdagent.install)
Deleted:
  spice-vdagent/repos/community-i686/PKGBUILD
  spice-vdagent/repos/community-i686/spice-vdagent.install
  spice-vdagent/repos/community-x86_64/PKGBUILD
  spice-vdagent/repos/community-x86_64/spice-vdagent.install

+
 /PKGBUILD  |   80 +++
 /spice-vdagent.install |   14 +
 community-i686/PKGBUILD|   40 ---
 community-i686/spice-vdagent.install   |7 --
 community-x86_64/PKGBUILD  |   40 ---
 community-x86_64/spice-vdagent.install |7 --
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-07 19:51:20 UTC (rev 198408)
+++ community-i686/PKGBUILD 2016-12-07 19:51:33 UTC (rev 198409)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: mutantmonkey 
-
-pkgname=spice-vdagent
-pkgver=0.17.0
-pkgrel=2
-pkgdesc="Spice agent for Linux guests"
-arch=('i686' 'x86_64')
-url="http://www.spice-space.org/";
-license=('GPL')
-depends=('alsa-lib' 'dbus' 'glib2' 'libpciaccess' 'libxfixes' 'libxinerama' 
'libxrandr')
-makedepends=('spice-protocol' 'systemd')
-backup=('etc/conf.d/spice-vdagentd')
-install=$pkgname.install
-source=("http://www.spice-space.org/download/releases/$pkgname-$pkgver.tar.bz2";)
-sha256sums=('f14a8bd8cdee10641aabd9ba32461a5844eab0fddb2a10c1d31386e7a9f7b33d')
-
-prepare() {
-   cd $pkgname-$pkgver
-   sed -i 's|/lib/udev/rules.d|$(libdir)/udev/rules.d|' Makefile.{am,in}
-   sed -i 's|/etc/sysconfig/spice-vdagentd|/etc/conf.d/spice-vdagentd|
-   s|/usr/sbin/spice-vdagentd|/usr/bin/spice-vdagentd|' 
data/spice-vdagentd.service
-   sed -i 's|/etc/sysconfig/spice-vdagentd|/etc/conf.d/spice-vdagentd|' 
data/spice-vdagentd.1.in
-}
-
-build() {
-   cd $pkgname-$pkgver
-   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--sbindir=/usr/bin \
-   --with-session-info=systemd --with-init-script=systemd
-   make
-}
-
-package() {
-   cd $pkgname-$pkgver
-   make DESTDIR="$pkgdir" install
-   rm -r "$pkgdir/var"
-   install -dm755 "$pkgdir/etc/conf.d/"
-   echo 'SPICE_VDAGENTD_EXTRA_ARGS=""' > 
"$pkgdir/etc/conf.d/spice-vdagentd"
-}

Copied: spice-vdagent/repos/community-i686/PKGBUILD (from rev 198408, 
spice-vdagent/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-07 19:51:33 UTC (rev 198409)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: mutantmonkey 
+
+pkgname=spice-vdagent
+pkgver=0.17.0
+pkgrel=2
+pkgdesc="Spice agent for Linux guests"
+arch=('i686' 'x86_64')
+url="https://www.spice-space.org/";
+license=('GPL')
+depends=('alsa-lib' 'dbus' 'glib2' 'libpciaccess' 'libxfixes' 'libxinerama' 
'libxrandr')
+makedepends=('spice-protocol' 'systemd')
+backup=('etc/conf.d/spice-vdagentd')
+install=$pkgname.install
+source=("https://www.spice-space.org/download/releases/$pkgname-$pkgver.tar.bz2";)
+sha256sums=('f14a8bd8cdee10641aabd9ba32461a5844eab0fddb2a10c1d31386e7a9f7b33d')
+
+prepare() {
+   cd $pkgname-$pkgver
+   sed -i 's|/lib/udev/rules.d|$(libdir)/udev/rules.d|' Makefile.{am,in}
+   sed -i 's|/etc/sysconfig/spice-vdagentd|/etc/conf.d/spice-vdagentd|
+   s|/usr/sbin/spice-vdagentd|/usr/bin/spice-vdagentd|' 
data/spice-vdagentd.service
+   sed -i 's|/etc/sysconfig/spice-vdagentd|/etc/conf.d/spice-vdagentd|' 
data/spice-vdagentd.1.in
+}
+
+build() {
+   cd $pkgname-$pkgver
+   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--sbindir=/usr/bin \
+   --with-session-info=systemd --with-init-script=systemd
+   make
+}
+
+package() {
+   cd $pkgname-$pkgver
+   make DESTDIR="$pkgdir" install
+   rm -r "$pkgdir/var"
+   install -dm755 "$pkgdir/etc/conf.d/"
+   echo 'SPICE_VDAGENTD_EXTRA_ARGS=""' > 
"$pkgdir/etc/conf.d/spice-vdagentd"
+}

Deleted: community-i686/spice-vdagent.install
===
--- community-i686/spice-vdagent.install2016-12-07 19:51:20 UTC (rev 
198408)
+++ community-

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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:51:20
  Author: bgyorgy
Revision: 198408

Use https source

Modified:
  spice-vdagent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 19:48:13 UTC (rev 198407)
+++ PKGBUILD2016-12-07 19:51:20 UTC (rev 198408)
@@ -7,13 +7,13 @@
 pkgrel=2
 pkgdesc="Spice agent for Linux guests"
 arch=('i686' 'x86_64')
-url="http://www.spice-space.org/";
+url="https://www.spice-space.org/";
 license=('GPL')
 depends=('alsa-lib' 'dbus' 'glib2' 'libpciaccess' 'libxfixes' 'libxinerama' 
'libxrandr')
 makedepends=('spice-protocol' 'systemd')
 backup=('etc/conf.d/spice-vdagentd')
 install=$pkgname.install
-source=("http://www.spice-space.org/download/releases/$pkgname-$pkgver.tar.bz2";)
+source=("https://www.spice-space.org/download/releases/$pkgname-$pkgver.tar.bz2";)
 sha256sums=('f14a8bd8cdee10641aabd9ba32461a5844eab0fddb2a10c1d31386e7a9f7b33d')
 
 prepare() {


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

2016-12-07 Thread Dave Reisner
Date: Wednesday, December 7, 2016 @ 19:49:42
  Author: dreisner
Revision: 282931

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

Added:
  systemd/repos/testing-i686/
  
systemd/repos/testing-i686/0001-Revert-nspawn-try-to-bind-mount-resolved-s-resolv.co.patch
(from rev 282930, 
systemd/trunk/0001-Revert-nspawn-try-to-bind-mount-resolved-s-resolv.co.patch)
  systemd/repos/testing-i686/0001-disable-RestrictAddressFamilies-on-i686.patch
(from rev 282930, 
systemd/trunk/0001-disable-RestrictAddressFamilies-on-i686.patch)
  systemd/repos/testing-i686/0001-nspawn-don-t-hide-bind-tmp-mounts.patch
(from rev 282930, 
systemd/trunk/0001-nspawn-don-t-hide-bind-tmp-mounts.patch)
  systemd/repos/testing-i686/PKGBUILD
(from rev 282930, systemd/trunk/PKGBUILD)
  systemd/repos/testing-i686/arch.conf
(from rev 282930, systemd/trunk/arch.conf)
  systemd/repos/testing-i686/initcpio-hook-udev
(from rev 282930, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-i686/initcpio-install-systemd
(from rev 282930, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-i686/initcpio-install-udev
(from rev 282930, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-i686/loader.conf
(from rev 282930, systemd/trunk/loader.conf)
  systemd/repos/testing-i686/splash-arch.bmp
(from rev 282930, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-i686/systemd-user.pam
(from rev 282930, systemd/trunk/systemd-user.pam)
  systemd/repos/testing-i686/systemd.install
(from rev 282930, systemd/trunk/systemd.install)
  systemd/repos/testing-i686/udev-hwdb.hook
(from rev 282930, systemd/trunk/udev-hwdb.hook)
  systemd/repos/testing-x86_64/
  
systemd/repos/testing-x86_64/0001-Revert-nspawn-try-to-bind-mount-resolved-s-resolv.co.patch
(from rev 282930, 
systemd/trunk/0001-Revert-nspawn-try-to-bind-mount-resolved-s-resolv.co.patch)
  
systemd/repos/testing-x86_64/0001-disable-RestrictAddressFamilies-on-i686.patch
(from rev 282930, 
systemd/trunk/0001-disable-RestrictAddressFamilies-on-i686.patch)
  systemd/repos/testing-x86_64/0001-nspawn-don-t-hide-bind-tmp-mounts.patch
(from rev 282930, 
systemd/trunk/0001-nspawn-don-t-hide-bind-tmp-mounts.patch)
  systemd/repos/testing-x86_64/PKGBUILD
(from rev 282930, systemd/trunk/PKGBUILD)
  systemd/repos/testing-x86_64/arch.conf
(from rev 282930, systemd/trunk/arch.conf)
  systemd/repos/testing-x86_64/initcpio-hook-udev
(from rev 282930, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-x86_64/initcpio-install-systemd
(from rev 282930, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-x86_64/initcpio-install-udev
(from rev 282930, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-x86_64/loader.conf
(from rev 282930, systemd/trunk/loader.conf)
  systemd/repos/testing-x86_64/splash-arch.bmp
(from rev 282930, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-x86_64/systemd-user.pam
(from rev 282930, systemd/trunk/systemd-user.pam)
  systemd/repos/testing-x86_64/systemd.install
(from rev 282930, systemd/trunk/systemd.install)
  systemd/repos/testing-x86_64/udev-hwdb.hook
(from rev 282930, systemd/trunk/udev-hwdb.hook)

+
 testing-i686/0001-Revert-nspawn-try-to-bind-mount-resolved-s-resolv.co.patch   
|   62 ++
 testing-i686/0001-disable-RestrictAddressFamilies-on-i686.patch
|   30 +
 testing-i686/0001-nspawn-don-t-hide-bind-tmp-mounts.patch  
|   26 +
 testing-i686/PKGBUILD  
|  243 ++
 testing-i686/arch.conf 
|7 
 testing-i686/initcpio-hook-udev
|   22 
 testing-i686/initcpio-install-systemd  
|  195 
 testing-i686/initcpio-install-udev 
|   28 +
 testing-i686/loader.conf   
|1 
 testing-i686/systemd-user.pam  
|5 
 testing-i686/systemd.install   
|   80 +++
 testing-i686/udev-hwdb.hook
|   11 
 testing-x86_64/0001-Revert-nspawn-try-to-bind-mount-resolved-s-resolv.co.patch 
|   62 ++
 testing-x86_64/0001-disable-RestrictAddressFamilies-on-i686.patch  
|   30 +
 testing-x86_64/0001-nspawn-don-t-hide-bind-tmp-mounts.patch
|   26 +
 testing-x86_64/PKGBUILD
|  243 ++
 testing-x86_64/arch.conf   
|7 
 testing-x86_64/initcpio-hook-udev  
|   22 
 testing-x86_64/initcpio-in

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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:48:13
  Author: bgyorgy
Revision: 198407

archrelease: copy trunk to community-any

Added:
  smuxi/repos/community-any/PKGBUILD
(from rev 198406, smuxi/trunk/PKGBUILD)
Deleted:
  smuxi/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-07 19:48:04 UTC (rev 198406)
+++ PKGBUILD2016-12-07 19:48:13 UTC (rev 198407)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Madek 
-# Contributor: Marcelo Cavalcante 
-# Contributor: Jens Kleikamp 
-# Contributor: Philipp Gildein 
-
-pkgbase=smuxi
-pkgname=('smuxi-server' 'smuxi')
-pkgver=1.0.5
-pkgrel=1
-pkgdesc="User-friendly and cross-platform IRC client for sophisticated users 
for GNOME/GTK+"
-arch=('any')
-url="https://smuxi.im/";
-license=('GPL')
-makedepends=('notify-sharp' 'log4net' 'nini' 'gtkspell' 'stfl' 'intltool')
-options=('!emptydirs')
-source=(https://smuxi.im/jaws/data/files/$pkgbase-$pkgver.tar.gz)
-md5sums=('af1a0c7d4a60f97063aa119531942fd1')
-
-build() {
-  cd "$srcdir/$pkgbase-$pkgver"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --enable-frontend-stfl \
-  --with-vendor-package-version="Arch Linux $pkgver-$pkgrel"
-  LANG=C make -j1
-}
-
-package_smuxi-server() {
-  pkgdesc+=" (common files and server)"
-  depends=('log4net' 'nini')
-  cd "$srcdir/$pkgbase-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  # Split frontend
-  [[ -d $srcdir/frontend ]] && rm -r "$srcdir/frontend/"
-  mkdir "$srcdir"/frontend
-  mv "$pkgdir"/usr/bin/smuxi-frontend-{gnome,stfl} \
- "$pkgdir"/usr/lib/pkgconfig/smuxi-frontend.pc \
- "$pkgdir"/usr/lib/smuxi/smuxi-frontend* \
- "$pkgdir"/usr/share/{appdata,applications,icons} \
- "$pkgdir"/usr/share/man/man1/smuxi-frontend* \
- "$srcdir/frontend/"
-}
-
-package_smuxi() {
-  pkgdesc+=" (frontend)" 
-  depends=('smuxi-server' 'notify-sharp' 'gtkspell' 'stfl')
-  cd "$srcdir/frontend"
-
-  mkdir -p "$pkgdir"/usr/{bin,lib/{pkgconfig,smuxi},share/man/man1}
-  mv smuxi-frontend-{gnome,stfl} "$pkgdir/usr/bin"
-  mv smuxi-frontend.pc "$pkgdir/usr/lib/pkgconfig"
-  mv smuxi-frontend*.1 "$pkgdir/usr/share/man/man1"
-  mv smuxi-frontend* "$pkgdir/usr/lib/smuxi"
-  mv {appdata,applications,icons} "$pkgdir/usr/share"
-}

Copied: smuxi/repos/community-any/PKGBUILD (from rev 198406, 
smuxi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-07 19:48:13 UTC (rev 198407)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Madek 
+# Contributor: Marcelo Cavalcante 
+# Contributor: Jens Kleikamp 
+# Contributor: Philipp Gildein 
+
+pkgbase=smuxi
+pkgname=('smuxi-server' 'smuxi')
+pkgver=1.0.5
+pkgrel=1
+pkgdesc="User-friendly and cross-platform IRC client for sophisticated users 
for GNOME/GTK+"
+arch=('any')
+url="https://smuxi.im/";
+license=('GPL')
+makedepends=('notify-sharp' 'log4net' 'nini' 'gtkspell' 'stfl' 'intltool')
+options=('!emptydirs')
+source=(https://smuxi.im/jaws/data/files/$pkgbase-$pkgver.tar.gz{,.asc})
+validpgpkeys=('ABE195E150A8DBE7809D3F427127E5ABEEF946C8') # Mirco Bauer
+md5sums=('af1a0c7d4a60f97063aa119531942fd1'
+ 'SKIP')
+
+build() {
+  cd "$srcdir/$pkgbase-$pkgver"
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --enable-frontend-stfl \
+  --with-vendor-package-version="Arch Linux $pkgver-$pkgrel"
+  LANG=C make -j1
+}
+
+package_smuxi-server() {
+  pkgdesc+=" (common files and server)"
+  depends=('log4net' 'nini')
+  cd "$srcdir/$pkgbase-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  # Split frontend
+  [[ -d $srcdir/frontend ]] && rm -r "$srcdir/frontend/"
+  mkdir "$srcdir"/frontend
+  mv "$pkgdir"/usr/bin/smuxi-frontend-{gnome,stfl} \
+ "$pkgdir"/usr/lib/pkgconfig/smuxi-frontend.pc \
+ "$pkgdir"/usr/lib/smuxi/smuxi-frontend* \
+ "$pkgdir"/usr/share/{appdata,applications,icons} \
+ "$pkgdir"/usr/share/man/man1/smuxi-frontend* \
+ "$srcdir/frontend/"
+}
+
+package_smuxi() {
+  pkgdesc+=" (frontend)" 
+  depends=('smuxi-server' 'notify-sharp' 'gtkspell' 'stfl')
+  cd "$srcdir/frontend"
+
+  mkdir -p "$pkgdir"/usr/{bin,lib/{pkgconfig,smuxi},share/man/man1}
+  mv smuxi-frontend-{gnome,stfl} "$pkgdir/usr/bin"
+  mv smuxi-frontend.pc "$pkgdir/usr/lib/pkgconfig"
+  mv smuxi-frontend*.1 "$pkgdir/usr/share/man/man1"
+  mv smuxi-frontend* "$pkgdir/usr/lib/smuxi"
+  mv {appdata,applications,icons} "$pkgdir/usr/share"
+}


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:48:04
  Author: bgyorgy
Revision: 198406

Use gpg signature

Modified:
  smuxi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 19:44:38 UTC (rev 198405)
+++ PKGBUILD2016-12-07 19:48:04 UTC (rev 198406)
@@ -15,8 +15,10 @@
 license=('GPL')
 makedepends=('notify-sharp' 'log4net' 'nini' 'gtkspell' 'stfl' 'intltool')
 options=('!emptydirs')
-source=(https://smuxi.im/jaws/data/files/$pkgbase-$pkgver.tar.gz)
-md5sums=('af1a0c7d4a60f97063aa119531942fd1')
+source=(https://smuxi.im/jaws/data/files/$pkgbase-$pkgver.tar.gz{,.asc})
+validpgpkeys=('ABE195E150A8DBE7809D3F427127E5ABEEF946C8') # Mirco Bauer
+md5sums=('af1a0c7d4a60f97063aa119531942fd1'
+ 'SKIP')
 
 build() {
   cd "$srcdir/$pkgbase-$pkgver"


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:44:38
  Author: bgyorgy
Revision: 198405

archrelease: copy trunk to community-any

Added:
  simutrans-pak128/repos/community-any/PKGBUILD
(from rev 198404, simutrans-pak128/trunk/PKGBUILD)
Deleted:
  simutrans-pak128/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-07 19:44:29 UTC (rev 198404)
+++ PKGBUILD2016-12-07 19:44:38 UTC (rev 198405)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: JD Steffen 
-
-pkgname=simutrans-pak128
-pkgver=2.6
-_pkgver=ST120
-pkgrel=1
-pkgdesc="High resolution graphics set for Simutrans"
-arch=('any')
-url="http://128.simutrans.com/";
-license=('Artistic2.0')
-provides=('simutrans-pak64')
-options=('!strip')
-source=(http://downloads.sourceforge.net/simutrans/pak128-$pkgver--$_pkgver.zip)
-md5sums=('841b6a68bf540fd3936ee00bf85f8df1')
-
-package() {
-  cd "$srcdir"
-
-  #data
-  mkdir -p "$pkgdir/usr/share/games/simutrans"
-  cp -r pak128 "$pkgdir/usr/share/games/simutrans"
-}

Copied: simutrans-pak128/repos/community-any/PKGBUILD (from rev 198404, 
simutrans-pak128/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-07 19:44:38 UTC (rev 198405)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: JD Steffen 
+
+pkgname=simutrans-pak128
+pkgver=2.6
+_pkgver=ST120
+pkgrel=1
+pkgdesc="High resolution graphics set for Simutrans"
+arch=('any')
+url="http://128.simutrans.com/";
+license=('Artistic2.0')
+provides=('simutrans-pak64')
+options=('!strip')
+source=(https://downloads.sourceforge.net/simutrans/pak128-$pkgver--$_pkgver.zip)
+md5sums=('841b6a68bf540fd3936ee00bf85f8df1')
+
+package() {
+  cd "$srcdir"
+
+  #data
+  mkdir -p "$pkgdir/usr/share/games/simutrans"
+  cp -r pak128 "$pkgdir/usr/share/games/simutrans"
+}


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:44:29
  Author: bgyorgy
Revision: 198404

Use https source

Modified:
  simutrans-pak128/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 19:43:50 UTC (rev 198403)
+++ PKGBUILD2016-12-07 19:44:29 UTC (rev 198404)
@@ -12,7 +12,7 @@
 license=('Artistic2.0')
 provides=('simutrans-pak64')
 options=('!strip')
-source=(http://downloads.sourceforge.net/simutrans/pak128-$pkgver--$_pkgver.zip)
+source=(https://downloads.sourceforge.net/simutrans/pak128-$pkgver--$_pkgver.zip)
 md5sums=('841b6a68bf540fd3936ee00bf85f8df1')
 
 package() {


[arch-commits] Commit in simutrans-pak64/repos/community-any (4 files)

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:43:50
  Author: bgyorgy
Revision: 198403

archrelease: copy trunk to community-any

Added:
  simutrans-pak64/repos/community-any/PKGBUILD
(from rev 198402, simutrans-pak64/trunk/PKGBUILD)
  simutrans-pak64/repos/community-any/licence.txt
(from rev 198402, simutrans-pak64/trunk/licence.txt)
Deleted:
  simutrans-pak64/repos/community-any/PKGBUILD
  simutrans-pak64/repos/community-any/licence.txt

-+
 PKGBUILD|   66 +++
 licence.txt |  240 +-
 2 files changed, 153 insertions(+), 153 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-07 19:43:40 UTC (rev 198402)
+++ PKGBUILD2016-12-07 19:43:50 UTC (rev 198403)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Anton Bazhenov 
-# Contributor: JD Steffen 
-
-pkgname=simutrans-pak64
-pkgver=120.1.2
-_pkgver=120-1-2
-pkgrel=2
-pkgdesc="Low resolution graphics set for Simutrans"
-arch=('any')
-url="http://simutrans.com/";
-license=('custom:Artistic')
-options=('!strip')
-source=(http://downloads.sourceforge.net/simutrans/simupak64-$_pkgver.zip
-licence.txt)
-md5sums=('69b814607c50c03232ab2a89968fefdb'
- '9cf3801b1349ac93b24c1515c9e5bb0a')
-
-package() {
-  cd "$srcdir"
-  chmod -R 644 simutrans
-
-  #data
-  mkdir -p "$pkgdir/usr/share/games/simutrans"
-  cp -r simutrans/pak "$pkgdir/usr/share/games/simutrans"
-
-  find "$pkgdir" -type f -exec chmod 644 {} \;
-  find "$pkgdir" -type d -exec chmod 755 {} \;
-
-  #license
-  install -Dm644 licence.txt 
"$pkgdir/usr/share/licenses/simutrans-pak64/licence.txt"
-}

Copied: simutrans-pak64/repos/community-any/PKGBUILD (from rev 198402, 
simutrans-pak64/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-07 19:43:50 UTC (rev 198403)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Anton Bazhenov 
+# Contributor: JD Steffen 
+
+pkgname=simutrans-pak64
+pkgver=120.1.2
+_pkgver=120-1-2
+pkgrel=2
+pkgdesc="Low resolution graphics set for Simutrans"
+arch=('any')
+url="http://simutrans.com/";
+license=('custom:Artistic')
+options=('!strip')
+source=(https://downloads.sourceforge.net/simutrans/simupak64-$_pkgver.zip
+licence.txt)
+md5sums=('69b814607c50c03232ab2a89968fefdb'
+ '9cf3801b1349ac93b24c1515c9e5bb0a')
+
+package() {
+  cd "$srcdir"
+  chmod -R 644 simutrans
+
+  #data
+  mkdir -p "$pkgdir/usr/share/games/simutrans"
+  cp -r simutrans/pak "$pkgdir/usr/share/games/simutrans"
+
+  find "$pkgdir" -type f -exec chmod 644 {} \;
+  find "$pkgdir" -type d -exec chmod 755 {} \;
+
+  #license
+  install -Dm644 licence.txt 
"$pkgdir/usr/share/licenses/simutrans-pak64/licence.txt"
+}

Deleted: licence.txt
===
--- licence.txt 2016-12-07 19:43:40 UTC (rev 198402)
+++ licence.txt 2016-12-07 19:43:50 UTC (rev 198403)
@@ -1,120 +0,0 @@
-This is the simutrans source code for pak64.
-(c) since 2004 The Simutrans Team
-
-Simutrans source code is provided by the current simutrans team
-(tea...@simutrans.com) as copyright holder under the artistic licence.
-
-This includes the translations from:
-http://simutranslator.simutrans-germany.com/
-
-The following files are released under GNU General Public License V3:
-  vehicles/water/abo-ships.png (by stormoog)
-  player/road-depot-crystal.png (by vilvoh)
-  and the tropical park COM_12_04 (by vilvoh)
-
--
-
-The Artistic License
-
-Preamble
-
-The intent of this document is to state the conditions under which a
-Package may be copied, such that the Copyright Holder maintains some
-semblance of artistic control over the development of the package,
-while giving the users of the package the right to use and distribute
-the Package in a more-or-less customary fashion, plus the right to make
-reasonable modifications.
-
-Definitions:
-
-* "Package" refers to the collection of files distributed by the
-  Copyright Holder, and derivatives of that collection of files
-  created through textual modification.
-* "Standard Version" refers to such a Package if it has not been
-  modified, or has been modified in accordance with the wishes
-  of the Copyright Holder.
-* "Copyright Holder" is whoever is named in the copyright or
-  copyrights for the package.
-* "You" is you, if you're thinking about copying or distributing
-  this Package.
-* "Reasonable copying fee" is whatever you can justify on the
-  basis of media cost, duplication charges, time of people involved,
-  and so on. (You will not be required to justify it to the
-  Copyright Holder, but only to the computing community at large
-  as a market that must bear the

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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:43:40
  Author: bgyorgy
Revision: 198402

Use https source

Modified:
  simutrans-pak64/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 19:43:05 UTC (rev 198401)
+++ PKGBUILD2016-12-07 19:43:40 UTC (rev 198402)
@@ -12,7 +12,7 @@
 url="http://simutrans.com/";
 license=('custom:Artistic')
 options=('!strip')
-source=(http://downloads.sourceforge.net/simutrans/simupak64-$_pkgver.zip
+source=(https://downloads.sourceforge.net/simutrans/simupak64-$_pkgver.zip
 licence.txt)
 md5sums=('69b814607c50c03232ab2a89968fefdb'
  '9cf3801b1349ac93b24c1515c9e5bb0a')


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:43:05
  Author: bgyorgy
Revision: 198401

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

Added:
  simutrans/repos/community-i686/PKGBUILD
(from rev 198400, simutrans/trunk/PKGBUILD)
  simutrans/repos/community-i686/config.patch
(from rev 198400, simutrans/trunk/config.patch)
  simutrans/repos/community-i686/no-optimise.patch
(from rev 198400, simutrans/trunk/no-optimise.patch)
  simutrans/repos/community-i686/path-for-game-data.patch
(from rev 198400, simutrans/trunk/path-for-game-data.patch)
  simutrans/repos/community-i686/settings-folder.patch
(from rev 198400, simutrans/trunk/settings-folder.patch)
  simutrans/repos/community-i686/simutrans.desktop
(from rev 198400, simutrans/trunk/simutrans.desktop)
  simutrans/repos/community-x86_64/PKGBUILD
(from rev 198400, simutrans/trunk/PKGBUILD)
  simutrans/repos/community-x86_64/config.patch
(from rev 198400, simutrans/trunk/config.patch)
  simutrans/repos/community-x86_64/no-optimise.patch
(from rev 198400, simutrans/trunk/no-optimise.patch)
  simutrans/repos/community-x86_64/path-for-game-data.patch
(from rev 198400, simutrans/trunk/path-for-game-data.patch)
  simutrans/repos/community-x86_64/settings-folder.patch
(from rev 198400, simutrans/trunk/settings-folder.patch)
  simutrans/repos/community-x86_64/simutrans.desktop
(from rev 198400, simutrans/trunk/simutrans.desktop)
Deleted:
  simutrans/repos/community-i686/PKGBUILD
  simutrans/repos/community-i686/config.patch
  simutrans/repos/community-i686/no-optimise.patch
  simutrans/repos/community-i686/path-for-game-data.patch
  simutrans/repos/community-i686/settings-folder.patch
  simutrans/repos/community-i686/simutrans.desktop
  simutrans/repos/community-x86_64/PKGBUILD
  simutrans/repos/community-x86_64/config.patch
  simutrans/repos/community-x86_64/no-optimise.patch
  simutrans/repos/community-x86_64/path-for-game-data.patch
  simutrans/repos/community-x86_64/settings-folder.patch
  simutrans/repos/community-x86_64/simutrans.desktop

---+
 /PKGBUILD |  148 
 /config.patch |   66 
 /no-optimise.patch|   84 +++
 /path-for-game-data.patch |   36 ++
 /settings-folder.patch|   24 
 /simutrans.desktop|   18 +++
 community-i686/PKGBUILD   |   74 --
 community-i686/config.patch   |   33 --
 community-i686/no-optimise.patch  |   42 ---
 community-i686/path-for-game-data.patch   |   18 ---
 community-i686/settings-folder.patch  |   12 --
 community-i686/simutrans.desktop  |9 -
 community-x86_64/PKGBUILD |   74 --
 community-x86_64/config.patch |   33 --
 community-x86_64/no-optimise.patch|   42 ---
 community-x86_64/path-for-game-data.patch |   18 ---
 community-x86_64/settings-folder.patch|   12 --
 community-x86_64/simutrans.desktop|9 -
 18 files changed, 376 insertions(+), 376 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-07 19:42:51 UTC (rev 198400)
+++ community-i686/PKGBUILD 2016-12-07 19:43:05 UTC (rev 198401)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Anton Bazhenov 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Gilles Gagniard 
-# Contributor: JD Steffen 
-
-pkgname=simutrans
-pkgver=120.1.3
-_pkgver=120-1-3
-pkgrel=1
-pkgdesc="An open source transportation simulation game"
-arch=('i686' 'x86_64')
-url="http://simutrans.com/";
-license=('custom:Artistic')
-depends=('gcc-libs' 'zlib' 'sdl_mixer' 'bzip2' 'simutrans-pak64')
-makedepends=('imagemagick' 'dos2unix')
-optdepends=('timidity++: play MIDI music')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-src-$_pkgver.zip
-http://downloads.sourceforge.net/$pkgname/simulinux-i86-$_pkgver.zip
-no-optimise.patch
-settings-folder.patch
-path-for-game-data.patch
-config.patch
-simutrans.desktop)
-md5sums=('ce22c82b01f713d6a75f24561f72910c'
- '693c44eceda2bdb30249253387b838d8'
- '4ab1d787772fc279181c1bc89dd42bf9'
- 'c87d9a9910bc371df5d50f7f1ec298bb'
- 'e716340d372af264ca05510facfe5d2c'
- 'c2f4e494168e235380373974c91a0803'
- 'f41f7a08ad517ef2b60412859eb49963')
-
-prepare() {
-  cd "$srcdir"
-
-  # Some files are distributed in DOS format
-  find . -type f -exec dos2unix -q '{}' \;
-
-  # Don't overwrite default optimization flags
-  patch -Np1 -i no-optimise.patch
-
-  # Adjust paths
-  patch -Np0 -i settings-folder.patch
-  patch -Np1 -i path-for-game-data.patch
-
-  # Configure the build process
-  cp config.template config.defaul

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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:42:51
  Author: bgyorgy
Revision: 198400

Use https source

Modified:
  simutrans/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 19:41:43 UTC (rev 198399)
+++ PKGBUILD2016-12-07 19:42:51 UTC (rev 198400)
@@ -16,8 +16,8 @@
 depends=('gcc-libs' 'zlib' 'sdl_mixer' 'bzip2' 'simutrans-pak64')
 makedepends=('imagemagick' 'dos2unix')
 optdepends=('timidity++: play MIDI music')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-src-$_pkgver.zip
-http://downloads.sourceforge.net/$pkgname/simulinux-i86-$_pkgver.zip
+source=(https://downloads.sourceforge.net/$pkgname/$pkgname-src-$_pkgver.zip
+https://downloads.sourceforge.net/$pkgname/simulinux-i86-$_pkgver.zip
 no-optimise.patch
 settings-folder.patch
 path-for-game-data.patch


[arch-commits] Commit in screenlets-pack-basic/repos/community-any (6 files)

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:41:43
  Author: bgyorgy
Revision: 198399

archrelease: copy trunk to community-any

Added:
  screenlets-pack-basic/repos/community-any/PKGBUILD
(from rev 198398, screenlets-pack-basic/trunk/PKGBUILD)
  screenlets-pack-basic/repos/community-any/drop-gnomevfs.patch
(from rev 198398, screenlets-pack-basic/trunk/drop-gnomevfs.patch)
  screenlets-pack-basic/repos/community-any/screenlets-pack-basic-pillow.patch
(from rev 198398, 
screenlets-pack-basic/trunk/screenlets-pack-basic-pillow.patch)
Deleted:
  screenlets-pack-basic/repos/community-any/PKGBUILD
  screenlets-pack-basic/repos/community-any/drop-gnomevfs.patch
  screenlets-pack-basic/repos/community-any/screenlets-pack-basic-pillow.patch

+
 PKGBUILD   |  114 +--
 drop-gnomevfs.patch|  112 +-
 screenlets-pack-basic-pillow.patch |   72 +++---
 3 files changed, 150 insertions(+), 148 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-07 19:41:34 UTC (rev 198398)
+++ PKGBUILD2016-12-07 19:41:43 UTC (rev 198399)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-
-pkgname=screenlets-pack-basic
-_pkgname=indiv-screenlets
-pkgver=0.1.6
-pkgrel=3
-pkgdesc="Desktop widgets for Screenlets"
-arch=('any')
-url="http://screenlets.org/";
-license=('GPL3')
-depends=('screenlets')
-makedepends=('dos2unix')
-optdepends=('python2-feedparser: Clear Rss Screenlet'
-'python2-pytz: Freemeteo Weather Screenlet'
-'python2-pillow: Lipik, Lyrics Screenlets'
-'python2-numpy: Lipik Screenlet')
-source=(https://launchpad.net/indiv-screenlets/trunk/$pkgver/+download/$_pkgname-$pkgver.tar.bz2
-drop-gnomevfs.patch
-screenlets-pack-basic-pillow.patch)
-md5sums=('d908308a60eecbee13a21917d36b10bc'
- '0ee366b0eafea6b646a7a5f02df2a65c'
- '4e30b2ad949e05f2a32770c95f95cd8f')
-
-build() {
-  cd "$srcdir/$_pkgname-$pkgver"
-
-  # Remove python2-gnomevfs dependency
-  # 
https://code.launchpad.net/~ballogy/indiv-screenlets/lyrics-replace-gnomevfs/+merge/104175
-  patch -Np1 -i "$srcdir/drop-gnomevfs.patch"
-
-  # Port to Pillow
-  patch -Np1 -i "$srcdir/screenlets-pack-basic-pillow.patch"
-
-  # Some files are distributed in DOS format...
-  find . -name \*.py -exec dos2unix -q '{}' \;
-
-  # Python2 fix
-  find . -name \*.py -exec sed -i 's@^#.*python$@#!/usr/bin/python2@' '{}' \;
-  sed -i 's@^#.*python$@#!/usr/bin/python2@' 
src/Lyrics/gui/{ls_widget,afv_widgets}
-  sed -i 's/python -u/python2 -u/' setup.py
-
-  # Fix desktop files
-  sed -i 's/desktop_file % (podir, packname, podir, podir)/desktop_file % 
(podir, normal_packname, podir, podir)/' setup.py
-}
-
-package() {
-  cd "$srcdir/$_pkgname-$pkgver"
-
-  python2 setup.py install --root=$pkgdir/ --optimize=1
-
-  # Remove screenlets-pack-all, because a lot of them are broken
-  rm 
"$pkgdir"/usr/lib/python2.7/site-packages/screenlets_pack_all-$pkgver-py2.7.egg-info
-  rm -r "$pkgdir"/usr/share/applications/screenlets_pack_all
-  rm -r "$pkgdir"/usr/share/screenlets/screenlets-pack-all
-}

Copied: screenlets-pack-basic/repos/community-any/PKGBUILD (from rev 198398, 
screenlets-pack-basic/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-07 19:41:43 UTC (rev 198399)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=screenlets-pack-basic
+_pkgname=indiv-screenlets
+pkgver=0.1.6
+pkgrel=3
+pkgdesc="Desktop widgets for Screenlets"
+arch=('any')
+url="https://launchpad.net/indiv-screenlets";
+license=('GPL3')
+depends=('screenlets')
+makedepends=('dos2unix')
+optdepends=('python2-feedparser: Clear Rss Screenlet'
+'python2-pytz: Freemeteo Weather Screenlet'
+'python2-pillow: Lipik, Lyrics Screenlets'
+'python2-numpy: Lipik Screenlet')
+source=(https://launchpad.net/indiv-screenlets/trunk/$pkgver/+download/$_pkgname-$pkgver.tar.bz2{,.asc}
+drop-gnomevfs.patch
+screenlets-pack-basic-pillow.patch)
+validpgpkeys=('D82D1D02396B27DC5045E356A01AFB1B15E8CCA4') # Guido Tabbernuk
+md5sums=('d908308a60eecbee13a21917d36b10bc'
+ 'SKIP'
+ '0ee366b0eafea6b646a7a5f02df2a65c'
+ '4e30b2ad949e05f2a32770c95f95cd8f')
+
+prepare() {
+  cd "$srcdir/$_pkgname-$pkgver"
+
+  # Remove python2-gnomevfs dependency
+  # 
https://code.launchpad.net/~ballogy/indiv-screenlets/lyrics-replace-gnomevfs/+merge/104175
+  patch -Np1 -i "$srcdir/drop-gnomevfs.patch"
+
+  # Port to Pillow
+  patch -Np1 -i "$srcdir/screenlets-pack-basic-pillow.patch"
+
+  # Some files are distributed in DOS format...
+  find . -name \*.py -exec dos2unix -q '{}' \;
+
+  # Python2 fix
+  find . -name \*.py -exec sed -i 's@^#.*python$@#!/usr/bin/python2@' '{

[arch-commits] Commit in screenlets-pack-basic/trunk (PKGBUILD)

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:41:34
  Author: bgyorgy
Revision: 198398

Use gpg signature

Modified:
  screenlets-pack-basic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 19:39:12 UTC (rev 198397)
+++ PKGBUILD2016-12-07 19:41:34 UTC (rev 198398)
@@ -15,10 +15,12 @@
 'python2-pytz: Freemeteo Weather Screenlet'
 'python2-pillow: Lipik, Lyrics Screenlets'
 'python2-numpy: Lipik Screenlet')
-source=(https://launchpad.net/indiv-screenlets/trunk/$pkgver/+download/$_pkgname-$pkgver.tar.bz2
+source=(https://launchpad.net/indiv-screenlets/trunk/$pkgver/+download/$_pkgname-$pkgver.tar.bz2{,.asc}
 drop-gnomevfs.patch
 screenlets-pack-basic-pillow.patch)
+validpgpkeys=('D82D1D02396B27DC5045E356A01AFB1B15E8CCA4') # Guido Tabbernuk
 md5sums=('d908308a60eecbee13a21917d36b10bc'
+ 'SKIP'
  '0ee366b0eafea6b646a7a5f02df2a65c'
  '4e30b2ad949e05f2a32770c95f95cd8f')
 


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

2016-12-07 Thread Dave Reisner
Date: Wednesday, December 7, 2016 @ 19:40:12
  Author: dreisner
Revision: 282930

upgpkg: systemd 232-5

more backports...

- avoid hiding bind mounts in nspawn (FS#52009)
- fix build system to cope with recent lz4 (FS#52065)
- make sure to initially populate the space info cache (FS#52012)
- fix nspawn error code for --help and --version (FS#52029)
- provide our own /etc/pam.d/systemd-user (FS#52039)

Added:
  systemd/trunk/0001-nspawn-don-t-hide-bind-tmp-mounts.patch
  systemd/trunk/systemd-user.pam
Modified:
  systemd/trunk/PKGBUILD

--+
 0001-nspawn-don-t-hide-bind-tmp-mounts.patch |   26 +
 PKGBUILD |   19 +++---
 systemd-user.pam |5 
 3 files changed, 47 insertions(+), 3 deletions(-)

Added: 0001-nspawn-don-t-hide-bind-tmp-mounts.patch
===
--- 0001-nspawn-don-t-hide-bind-tmp-mounts.patch
(rev 0)
+++ 0001-nspawn-don-t-hide-bind-tmp-mounts.patch2016-12-07 19:40:12 UTC 
(rev 282930)
@@ -0,0 +1,26 @@
+From 7ec42a45410cb27140292d85ebb0e4b6dcea Mon Sep 17 00:00:00 2001
+From: Dave Reisner 
+Date: Wed, 7 Dec 2016 13:45:48 -0500
+Subject: [PATCH] nspawn: don't hide --bind=/tmp/* mounts
+
+This is a v232-applicable version of upstream c9fd987279a462e.
+---
+ src/nspawn/nspawn-mount.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/nspawn/nspawn-mount.c b/src/nspawn/nspawn-mount.c
+index 115de64..2dabe2a 100644
+--- a/src/nspawn/nspawn-mount.c
 b/src/nspawn/nspawn-mount.c
+@@ -382,7 +382,7 @@ int mount_all(const char *dest,
+ { "tmpfs",   "/dev","tmpfs", 
"mode=755",  MS_NOSUID|MS_STRICTATIME,  true,  
false, false },
+ { "tmpfs",   "/dev/shm","tmpfs", 
"mode=1777", MS_NOSUID|MS_NODEV|MS_STRICTATIME, true,  
false, false },
+ { "tmpfs",   "/run","tmpfs", 
"mode=755",  MS_NOSUID|MS_NODEV|MS_STRICTATIME, true,  
false, false },
+-{ "tmpfs",   "/tmp","tmpfs", 
"mode=1777", MS_STRICTATIME,true,  
true,  false },
++{ "tmpfs",   "/tmp","tmpfs", 
"mode=1777", MS_STRICTATIME,true,  
false,  false },
+ #ifdef HAVE_SELINUX
+ { "/sys/fs/selinux", "/sys/fs/selinux", NULL, 
NULL,   MS_BIND,   false, 
false, false },  /* Bind mount first */
+ { NULL,  "/sys/fs/selinux", NULL, 
NULL,   MS_BIND|MS_RDONLY|MS_NOSUID|MS_NOEXEC|MS_NODEV|MS_REMOUNT, false, 
false, false },  /* Then, make it r/o */
+-- 
+2.10.2
+

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 18:38:11 UTC (rev 282929)
+++ PKGBUILD2016-12-07 19:40:12 UTC (rev 282930)
@@ -4,7 +4,7 @@
 pkgbase=systemd
 pkgname=('systemd' 'libsystemd' 'systemd-sysvcompat')
 pkgver=232
-pkgrel=4
+pkgrel=5
 arch=('i686' 'x86_64')
 url="https://www.github.com/systemd/systemd";
 makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gperf' 'lz4' 'xz' 'pam' 'libelf'
@@ -19,9 +19,11 @@
 'arch.conf'
 'loader.conf'
 'splash-arch.bmp'
+'systemd-user.pam'
 'udev-hwdb.hook'
 '0001-disable-RestrictAddressFamilies-on-i686.patch'
-'0001-Revert-nspawn-try-to-bind-mount-resolved-s-resolv.co.patch')
+'0001-Revert-nspawn-try-to-bind-mount-resolved-s-resolv.co.patch'
+'0001-nspawn-don-t-hide-bind-tmp-mounts.patch')
 sha512sums=('SKIP'
 
'f0d933e8c6064ed830dec54049b0a01e27be87203208f6ae982f10fb4eddc7258cb2919d594cbfb9a33e74c3510cfd682f3416ba8e804387ab87d1a217eb4b73'
 
'52af734947a768758d5eb3f18e31a1cfec6699eca6fa10e40b90c7f11991509186c0a696e3490af3eaba80064ea4cb93e041579abf05addf072d294300aa4b28'
@@ -29,9 +31,11 @@
 
'61032d29241b74a0f28446f8cf1be0e8ec46d0847a61dadb2a4f096e8686d5f57fe5c72bcf386003f6520bc4b5856c32d63bf3efe7eb0bc0deefc9f68159e648'
 
'c416e2121df83067376bcaacb58c05b01990f4614ad9de657d74b6da3efa441af251d13bf21e3f0f71ddcb4c9ea658b81da3d915667dc5c309c87ec32a1cb5a5'
 
'5a1d78b5170da5abe3d18fdf9f2c3a4d78f15ba7d1ee9ec2708c4c9c2e28973469bc19386f70b3cf32ffafbe4fcc4303e5ebbd6d5187a1df3314ae0965b25e75'
+
'2688e8be6943aa34b4a4e2481e23d07ab7dae53cc9426260010cf6a1e2361eff4b9a8b3652a1fca65680e1f23221026c6460e04feb1cee919b24e2bbf69be5ed'
 
'888ab01bc6e09beb08d7126472c34c9e1aa35ea34e62a09e900ae34c93b1de2fcc988586efd8d0dc962393974f45c77b206d59a86cf53e370f061bf9a1b1a862'
 
'89f9b2d3918c679ce4f7

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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:39:12
  Author: bgyorgy
Revision: 198397

archrelease: copy trunk to community-any

Added:
  screenlets/repos/community-any/PKGBUILD
(from rev 198396, screenlets/trunk/PKGBUILD)
Deleted:
  screenlets/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-07 19:39:04 UTC (rev 198396)
+++ PKGBUILD2016-12-07 19:39:12 UTC (rev 198397)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Roman Kyrylych 
-# Contributor: javonera 
-
-pkgname=screenlets
-pkgver=0.1.6
-pkgrel=6
-pkgdesc="Widget framework that consists of small owner-drawn applications"
-arch=('any')
-url="https://launchpad.net/screenlets";
-license=('GPL3')
-depends=('python2-beautifulsoup3' 'python2-dbus' 'python2-gconf' 
- 'python2-gnomekeyring' 'python2-rsvg' 'pywebkitgtk' 
- 'python2-wnck' 'python2-xdg')
-optdepends=('screenlets-pack-basic: Desktop widgets')
-source=(https://launchpad.net/screenlets/trunk/$pkgver/+download/$pkgname-$pkgver.tar.bz2)
-md5sums=('028ce6b6c8764190d435436d5cbaf68c')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Python2 fix
-  sed -i 's@^#!.*python$@#!/usr/bin/python2@' src/share/screenlets-manager/*.py
-  sed -i 's/python -u/python2 -u/' src/bin/* src/lib/*.py 
src/share/screenlets-manager/*.py
-}
-
-build() {
-  cd $pkgname-$pkgver
-  python2 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python2 setup.py install --root=$pkgdir --optimize=1
-}

Copied: screenlets/repos/community-any/PKGBUILD (from rev 198396, 
screenlets/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-07 19:39:12 UTC (rev 198397)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Roman Kyrylych 
+# Contributor: javonera 
+
+pkgname=screenlets
+pkgver=0.1.6
+pkgrel=6
+pkgdesc="Widget framework that consists of small owner-drawn applications"
+arch=('any')
+url="https://launchpad.net/screenlets";
+license=('GPL3')
+depends=('python2-beautifulsoup3' 'python2-dbus' 'python2-gconf' 
+ 'python2-gnomekeyring' 'python2-rsvg' 'pywebkitgtk' 
+ 'python2-wnck' 'python2-xdg')
+optdepends=('screenlets-pack-basic: Desktop widgets')
+source=(https://launchpad.net/screenlets/trunk/$pkgver/+download/$pkgname-$pkgver.tar.bz2{,.asc})
+validpgpkeys=('D82D1D02396B27DC5045E356A01AFB1B15E8CCA4') # Guido Tabbernuk
+md5sums=('028ce6b6c8764190d435436d5cbaf68c'
+ 'SKIP')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Python2 fix
+  sed -i 's@^#!.*python$@#!/usr/bin/python2@' src/share/screenlets-manager/*.py
+  sed -i 's/python -u/python2 -u/' src/bin/* src/lib/*.py 
src/share/screenlets-manager/*.py
+}
+
+build() {
+  cd $pkgname-$pkgver
+  python2 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python2 setup.py install --root=$pkgdir --optimize=1
+}


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:39:04
  Author: bgyorgy
Revision: 198396

Use gpg signature

Modified:
  screenlets/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 19:30:00 UTC (rev 198395)
+++ PKGBUILD2016-12-07 19:39:04 UTC (rev 198396)
@@ -14,8 +14,10 @@
  'python2-gnomekeyring' 'python2-rsvg' 'pywebkitgtk' 
  'python2-wnck' 'python2-xdg')
 optdepends=('screenlets-pack-basic: Desktop widgets')
-source=(https://launchpad.net/screenlets/trunk/$pkgver/+download/$pkgname-$pkgver.tar.bz2)
-md5sums=('028ce6b6c8764190d435436d5cbaf68c')
+source=(https://launchpad.net/screenlets/trunk/$pkgver/+download/$pkgname-$pkgver.tar.bz2{,.asc})
+validpgpkeys=('D82D1D02396B27DC5045E356A01AFB1B15E8CCA4') # Guido Tabbernuk
+md5sums=('028ce6b6c8764190d435436d5cbaf68c'
+ 'SKIP')
 
 prepare() {
   cd $pkgname-$pkgver


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:30:00
  Author: bgyorgy
Revision: 198395

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-07 19:29:30 UTC (rev 198394)
+++ PKGBUILD2016-12-07 19:30:00 UTC (rev 198395)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-
-pkgname=python-minidb
-_pkgname=minidb
-pkgver=2.0.1
-pkgrel=1
-pkgdesc="A simple SQLite3 store for Python objects"
-arch=('any')
-url="http://thp.io/2010/minidb/";
-license=('ISC')
-depends=('python')
-source=("http://thp.io/2010/minidb/$_pkgname-$pkgver.tar.gz";)
-md5sums=('aaa21ae05180af23730371e2fc896439')
-
-build() {
-  cd $_pkgname-$pkgver
-  python3 setup.py build
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  python3 setup.py install --root="$pkgdir"
-
-  install -dm755 "$pkgdir/usr/share/licenses/$pkgname"
-  sed -n '/# Copyright/,/OF THIS SOFTWARE./p' minidb.py > 
"$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}

Copied: python-minidb/repos/community-any/PKGBUILD (from rev 198394, 
python-minidb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-07 19:30:00 UTC (rev 198395)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=python-minidb
+_pkgname=minidb
+pkgver=2.0.1
+pkgrel=1
+pkgdesc="A simple SQLite3 store for Python objects"
+arch=('any')
+url="https://thp.io/2010/minidb/";
+license=('ISC')
+depends=('python')
+source=("https://thp.io/2010/minidb/$_pkgname-$pkgver.tar.gz";)
+md5sums=('aaa21ae05180af23730371e2fc896439')
+
+build() {
+  cd $_pkgname-$pkgver
+  python3 setup.py build
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  python3 setup.py install --root="$pkgdir"
+
+  install -dm755 "$pkgdir/usr/share/licenses/$pkgname"
+  sed -n '/# Copyright/,/OF THIS SOFTWARE./p' minidb.py > 
"$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:29:30
  Author: bgyorgy
Revision: 198394

Use https source

Modified:
  python-minidb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 19:26:24 UTC (rev 198393)
+++ PKGBUILD2016-12-07 19:29:30 UTC (rev 198394)
@@ -7,10 +7,10 @@
 pkgrel=1
 pkgdesc="A simple SQLite3 store for Python objects"
 arch=('any')
-url="http://thp.io/2010/minidb/";
+url="https://thp.io/2010/minidb/";
 license=('ISC')
 depends=('python')
-source=("http://thp.io/2010/minidb/$_pkgname-$pkgver.tar.gz";)
+source=("https://thp.io/2010/minidb/$_pkgname-$pkgver.tar.gz";)
 md5sums=('aaa21ae05180af23730371e2fc896439')
 
 build() {


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:26:14
  Author: bgyorgy
Revision: 198392

Use https source

Modified:
  python2-poppler/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 19:23:43 UTC (rev 198391)
+++ PKGBUILD2016-12-07 19:26:14 UTC (rev 198392)
@@ -11,7 +11,7 @@
 url="https://launchpad.net/poppler-python";
 license=('GPL')
 depends=('pygtk' 'poppler-glib')
-source=("http://launchpad.net/poppler-python/trunk/development/+download/$_realname-$pkgver.tar.gz";
+source=("https://launchpad.net/poppler-python/trunk/development/+download/$_realname-$pkgver.tar.gz";
 'pypoppler-0.12.1-poppler-0.16.0.patch'
 'python-poppler-0.12.1-poppler-0.39.0-changes.patch')
 md5sums=('1a89e5ed3042afc81bbd4d02e0cf640a'


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:26:24
  Author: bgyorgy
Revision: 198393

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

Added:
  python2-poppler/repos/community-i686/PKGBUILD
(from rev 198392, python2-poppler/trunk/PKGBUILD)
  python2-poppler/repos/community-i686/pypoppler-0.12.1-poppler-0.16.0.patch
(from rev 198392, 
python2-poppler/trunk/pypoppler-0.12.1-poppler-0.16.0.patch)
  
python2-poppler/repos/community-i686/python-poppler-0.12.1-poppler-0.39.0-changes.patch
(from rev 198392, 
python2-poppler/trunk/python-poppler-0.12.1-poppler-0.39.0-changes.patch)
  python2-poppler/repos/community-x86_64/PKGBUILD
(from rev 198392, python2-poppler/trunk/PKGBUILD)
  python2-poppler/repos/community-x86_64/pypoppler-0.12.1-poppler-0.16.0.patch
(from rev 198392, 
python2-poppler/trunk/pypoppler-0.12.1-poppler-0.16.0.patch)
  
python2-poppler/repos/community-x86_64/python-poppler-0.12.1-poppler-0.39.0-changes.patch
(from rev 198392, 
python2-poppler/trunk/python-poppler-0.12.1-poppler-0.39.0-changes.patch)
Deleted:
  python2-poppler/repos/community-i686/PKGBUILD
  python2-poppler/repos/community-i686/pypoppler-0.12.1-poppler-0.16.0.patch
  
python2-poppler/repos/community-i686/python-poppler-0.12.1-poppler-0.39.0-changes.patch
  python2-poppler/repos/community-x86_64/PKGBUILD
  python2-poppler/repos/community-x86_64/pypoppler-0.12.1-poppler-0.16.0.patch
  
python2-poppler/repos/community-x86_64/python-poppler-0.12.1-poppler-0.39.0-changes.patch

-+
 /PKGBUILD   |  100 
++
 /pypoppler-0.12.1-poppler-0.16.0.patch  |   22 ++
 /python-poppler-0.12.1-poppler-0.39.0-changes.patch |   38 +++
 community-i686/PKGBUILD |   50 
-
 community-i686/pypoppler-0.12.1-poppler-0.16.0.patch|   11 -
 community-i686/python-poppler-0.12.1-poppler-0.39.0-changes.patch   |   19 -
 community-x86_64/PKGBUILD   |   50 
-
 community-x86_64/pypoppler-0.12.1-poppler-0.16.0.patch  |   11 -
 community-x86_64/python-poppler-0.12.1-poppler-0.39.0-changes.patch |   19 -
 9 files changed, 160 insertions(+), 160 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-07 19:26:14 UTC (rev 198392)
+++ community-i686/PKGBUILD 2016-12-07 19:26:24 UTC (rev 198393)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Ray Rashif https://launchpad.net/poppler-python";
-license=('GPL')
-depends=('pygtk' 'poppler-glib')
-source=("http://launchpad.net/poppler-python/trunk/development/+download/$_realname-$pkgver.tar.gz";
-'pypoppler-0.12.1-poppler-0.16.0.patch'
-'python-poppler-0.12.1-poppler-0.39.0-changes.patch')
-md5sums=('1a89e5ed3042afc81bbd4d02e0cf640a'
- '683c5b67866d56adc2494120cc329dc8'
- '5f0a6f7f4b649ad61a71f800a6e0ba91')
-
-prepare() {
-  cd "$srcdir/$_realname-$pkgver"
-
-  # poppler 0.16 compat
-  patch -Np0 -i \
- "$srcdir/pypoppler-0.12.1-poppler-0.16.0.patch"
-
-  # poppler 0.18 compat
-  sed -i "/pixbuf/,/^)/d" poppler.defs
-
-  # poppler 0.39 compat
-  patch -Np0 -i \
- "$srcdir/python-poppler-0.12.1-poppler-0.39.0-changes.patch"
-}
-
-build() {
-  cd "$srcdir/$_realname-$pkgver"
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc \
-  --localstatedir=/var
-  PYTHON=python2
-  make
-}
-
-package() {
-  cd "$srcdir/$_realname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python2-poppler/repos/community-i686/PKGBUILD (from rev 198392, 
python2-poppler/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-07 19:26:24 UTC (rev 198393)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Ray Rashif https://launchpad.net/poppler-python";
+license=('GPL')
+depends=('pygtk' 'poppler-glib')
+source=("https://launchpad.net/poppler-python/trunk/development/+download/$_realname-$pkgver.tar.gz";
+'pypoppler-0.12.1-poppler-0.16.0.patch'
+'python-poppler-0.12.1-poppler-0.39.0-changes.patch')
+md5sums=('1a89e5ed3042afc81bbd4d02e0cf640a'
+ '683c5b67866d56adc2494120cc329dc8'
+ '5f0a6f7f4b649ad61a71f800a6e0ba91')
+
+prepare() {
+  cd "$srcdir/$_realname-$pkgver"
+
+  # poppler 0.16 compat
+  patch -Np0 -i \
+ "$srcdir/pypoppler-0.12.1-poppler-0.16.0.patch"
+
+  # poppler 0.18 compat
+  sed -i "/pixbuf/,/^)/d" poppler.defs
+
+  # poppler 0.39 compat
+  patch -Np0 -i \
+ "$srcdir/python-poppler-0.12.1-poppler-0.39.0-changes.patch"
+}
+
+build() {
+  cd "$srcdir/$_realname-$pkgver"
+  ./configure 

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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:23:43
  Author: bgyorgy
Revision: 198391

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

Added:
  python2-nautilus/repos/community-i686/PKGBUILD
(from rev 198390, python2-nautilus/trunk/PKGBUILD)
  python2-nautilus/repos/community-x86_64/PKGBUILD
(from rev 198390, python2-nautilus/trunk/PKGBUILD)
Deleted:
  python2-nautilus/repos/community-i686/PKGBUILD
  python2-nautilus/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-07 19:16:30 UTC (rev 198390)
+++ community-i686/PKGBUILD 2016-12-07 19:23:43 UTC (rev 198391)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Giorgio Gilestro 
-
-pkgname=python2-nautilus
-_pkgname=nautilus-python
-pkgver=1.1
-pkgrel=4
-pkgdesc="Python bindings for the Nautilus Extension API"
-arch=('i686' 'x86_64')
-url="http://projects.gnome.org/nautilus-python/";
-license=('GPL')
-depends=('nautilus' 'python2-gobject')
-replaces=('python-nautilus')
-provides=('python-nautilus')
-source=(http://ftp.gnome.org/pub/GNOME/sources/$_pkgname/$pkgver/$_pkgname-$pkgver.tar.xz)
-sha256sums=('7825e08ada8e131f829d0e7d4144dcfac9fad7bfd7c0600bf3985349c20c496b')
-
-build() {
-  cd "$srcdir/$_pkgname-$pkgver"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --disable-static \
-  PYTHON=python2
-  make
-}
-
-package() {
-  cd "$srcdir/$_pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir/" install
-}

Copied: python2-nautilus/repos/community-i686/PKGBUILD (from rev 198390, 
python2-nautilus/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-07 19:23:43 UTC (rev 198391)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Giorgio Gilestro 
+
+pkgname=python2-nautilus
+_pkgname=nautilus-python
+pkgver=1.1
+pkgrel=4
+pkgdesc="Python bindings for the Nautilus Extension API"
+arch=('i686' 'x86_64')
+url="https://wiki.gnome.org/Projects/NautilusPython";
+license=('GPL')
+depends=('nautilus' 'python2-gobject')
+replaces=('python-nautilus')
+provides=('python-nautilus')
+source=(https://download.gnome.org/sources/$_pkgname/$pkgver/$_pkgname-$pkgver.tar.xz)
+sha256sums=('7825e08ada8e131f829d0e7d4144dcfac9fad7bfd7c0600bf3985349c20c496b')
+
+build() {
+  cd "$srcdir/$_pkgname-$pkgver"
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  PYTHON=python2
+  make
+}
+
+package() {
+  cd "$srcdir/$_pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir/" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-12-07 19:16:30 UTC (rev 198390)
+++ community-x86_64/PKGBUILD   2016-12-07 19:23:43 UTC (rev 198391)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Giorgio Gilestro 
-
-pkgname=python2-nautilus
-_pkgname=nautilus-python
-pkgver=1.1
-pkgrel=4
-pkgdesc="Python bindings for the Nautilus Extension API"
-arch=('i686' 'x86_64')
-url="http://projects.gnome.org/nautilus-python/";
-license=('GPL')
-depends=('nautilus' 'python2-gobject')
-replaces=('python-nautilus')
-provides=('python-nautilus')
-source=(http://ftp.gnome.org/pub/GNOME/sources/$_pkgname/$pkgver/$_pkgname-$pkgver.tar.xz)
-sha256sums=('7825e08ada8e131f829d0e7d4144dcfac9fad7bfd7c0600bf3985349c20c496b')
-
-build() {
-  cd "$srcdir/$_pkgname-$pkgver"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --disable-static \
-  PYTHON=python2
-  make
-}
-
-package() {
-  cd "$srcdir/$_pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir/" install
-}

Copied: python2-nautilus/repos/community-x86_64/PKGBUILD (from rev 198390, 
python2-nautilus/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-12-07 19:23:43 UTC (rev 198391)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Giorgio Gilestro 
+
+pkgname=python2-nautilus
+_pkgname=nautilus-python
+pkgver=1.1
+pkgrel=4
+pkgdesc="Python bindings for the Nautilus Extension API"
+arch=('i686' 'x86_64')
+url="https://wiki.gnome.org/Projects/NautilusPython";
+license=('GPL')
+depends=('nautilus' 'python2-gobject')
+replaces=('python-nautilus')
+provides=('python-nautilus')
+source=(https://download.gnome.org/sources/$_pkgname/$pkgver/$_pkgname-$pkgver.tar.xz)
+sha256sums=('7825e08ada8e131f829d0e7d4144dcfac9fad7bfd7c0600bf39853

[arch-commits] Commit in python2-futures/repos/community-any (4 files)

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:16:30
  Author: bgyorgy
Revision: 198390

archrelease: copy trunk to community-any

Added:
  python2-futures/repos/community-any/LICENSE
(from rev 198389, python2-futures/trunk/LICENSE)
  python2-futures/repos/community-any/PKGBUILD
(from rev 198389, python2-futures/trunk/PKGBUILD)
Deleted:
  python2-futures/repos/community-any/LICENSE
  python2-futures/repos/community-any/PKGBUILD

--+
 LICENSE  |   42 +-
 PKGBUILD |   60 ++--
 2 files changed, 51 insertions(+), 51 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2016-12-07 19:16:05 UTC (rev 198389)
+++ LICENSE 2016-12-07 19:16:30 UTC (rev 198390)
@@ -1,21 +0,0 @@
-Copyright 2009 Brian Quinlan. All rights reserved.
-
-Redistribution and use in source and binary forms, with or without 
modification,
-are permitted provided that the following conditions are met:
-
-   1. Redistributions of source code must retain the above copyright notice,
-  this list of conditions and the following disclaimer.
-   2. Redistributions in binary form must reproduce the above copyright notice,
-  this list of conditions and the following disclaimer in the documentation
-  and/or other materials provided with the distribution.
-
-THIS SOFTWARE IS PROVIDED BY BRIAN QUINLAN "AS IS" AND ANY EXPRESS OR IMPLIED
-WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO 
EVENT
-HALL THE FREEBSD PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
-OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
-ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file

Copied: python2-futures/repos/community-any/LICENSE (from rev 198389, 
python2-futures/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2016-12-07 19:16:30 UTC (rev 198390)
@@ -0,0 +1,21 @@
+Copyright 2009 Brian Quinlan. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without 
modification,
+are permitted provided that the following conditions are met:
+
+   1. Redistributions of source code must retain the above copyright notice,
+  this list of conditions and the following disclaimer.
+   2. Redistributions in binary form must reproduce the above copyright notice,
+  this list of conditions and the following disclaimer in the documentation
+  and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY BRIAN QUINLAN "AS IS" AND ANY EXPRESS OR IMPLIED
+WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO 
EVENT
+HALL THE FREEBSD PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-07 19:16:05 UTC (rev 198389)
+++ PKGBUILD2016-12-07 19:16:30 UTC (rev 198390)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Allan McRae 
-
-pkgname=python2-futures
-_pkgname=futures
-pkgver=3.0.5
-pkgrel=1
-pkgdesc="Backport of the concurrent.futures package from Python 3.2"
-arch=('any')
-url="https://github.com/agronholm/pythonfutures";
-license=('BSD')
-depends=('python2')
-source=("http://pypi.python.org/packages/source/f/$_pkgname/$_pkgname-$pkgver.tar.gz";
- LICENSE)
-md5sums=('ced2c365e518242512d7a398b515ff95'
- 'dd6708d05936d3f6c4e20ed14c87b5e3')
-
-build() {
-  cd $_pkgname-$pkgver
-  python2 setup.py build
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  python2 setup.py install --root "$pkgdir" --optimize=1
-
-  install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python2-futures/repos/community-any/PKGBUILD (from rev 198389, 
python2-futures/trunk/PKGBUILD)
===
--- PKGBUILD

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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:16:05
  Author: bgyorgy
Revision: 198389

Use https source

Modified:
  python2-futures/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 19:13:37 UTC (rev 198388)
+++ PKGBUILD2016-12-07 19:16:05 UTC (rev 198389)
@@ -12,7 +12,7 @@
 url="https://github.com/agronholm/pythonfutures";
 license=('BSD')
 depends=('python2')
-source=("http://pypi.python.org/packages/source/f/$_pkgname/$_pkgname-$pkgver.tar.gz";
+source=("https://pypi.python.org/packages/source/f/$_pkgname/$_pkgname-$pkgver.tar.gz";
  LICENSE)
 md5sums=('ced2c365e518242512d7a398b515ff95'
  'dd6708d05936d3f6c4e20ed14c87b5e3')


[arch-commits] Commit in polkit-gnome/repos (8 files)

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:13:37
  Author: bgyorgy
Revision: 198388

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

Added:
  polkit-gnome/repos/community-i686/PKGBUILD
(from rev 198387, polkit-gnome/trunk/PKGBUILD)
  polkit-gnome/repos/community-i686/polkit-gnome-authentication-agent-1.desktop
(from rev 198387, 
polkit-gnome/trunk/polkit-gnome-authentication-agent-1.desktop)
  polkit-gnome/repos/community-x86_64/PKGBUILD
(from rev 198387, polkit-gnome/trunk/PKGBUILD)
  
polkit-gnome/repos/community-x86_64/polkit-gnome-authentication-agent-1.desktop
(from rev 198387, 
polkit-gnome/trunk/polkit-gnome-authentication-agent-1.desktop)
Deleted:
  polkit-gnome/repos/community-i686/PKGBUILD
  polkit-gnome/repos/community-i686/polkit-gnome-authentication-agent-1.desktop
  polkit-gnome/repos/community-x86_64/PKGBUILD
  
polkit-gnome/repos/community-x86_64/polkit-gnome-authentication-agent-1.desktop

--+
 /PKGBUILD|   64 +++
 /polkit-gnome-authentication-agent-1.desktop |  174 ++
 community-i686/PKGBUILD  |   33 -
 community-i686/polkit-gnome-authentication-agent-1.desktop   |   87 -
 community-x86_64/PKGBUILD|   33 -
 community-x86_64/polkit-gnome-authentication-agent-1.desktop |   87 -
 6 files changed, 238 insertions(+), 240 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-07 19:13:26 UTC (rev 198387)
+++ community-i686/PKGBUILD 2016-12-07 19:13:37 UTC (rev 198388)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Jan de Groot 
-# Contributor: onestep_ua 
-
-pkgname=polkit-gnome
-pkgver=0.105
-pkgrel=3
-pkgdesc="Legacy polkit authentication agent for GNOME"
-arch=('i686' 'x86_64')
-url="http://www.freedesktop.org/wiki/Software/polkit/";
-license=('LGPL')
-depends=('polkit' 'gtk3')
-makedepends=('intltool')
-source=(http://download.gnome.org/sources/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz
-polkit-gnome-authentication-agent-1.desktop)
-sha256sums=('1784494963b8bf9a00eedc6cd3a2868fb123b8a5e516e66c5eda48df17ab9369'
-'5074c723a4eab274830587d799ba781ff57f4fbe4ac99fbdc5aac5009c441ee7')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --libexecdir=/usr/lib/polkit-gnome \
-  --disable-static
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-  install -Dm644 "$srcdir/polkit-gnome-authentication-agent-1.desktop" \
-  
"$pkgdir/usr/share/applications/polkit-gnome-authentication-agent-1.desktop"
-}

Copied: polkit-gnome/repos/community-i686/PKGBUILD (from rev 198387, 
polkit-gnome/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-07 19:13:37 UTC (rev 198388)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Jan de Groot 
+# Contributor: onestep_ua 
+
+pkgname=polkit-gnome
+pkgver=0.105
+pkgrel=3
+pkgdesc="Legacy polkit authentication agent for GNOME"
+arch=('i686' 'x86_64')
+url="http://www.freedesktop.org/wiki/Software/polkit/";
+license=('LGPL')
+depends=('polkit' 'gtk3')
+makedepends=('intltool')
+source=(https://download.gnome.org/sources/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz
+polkit-gnome-authentication-agent-1.desktop)
+sha256sums=('1784494963b8bf9a00eedc6cd3a2868fb123b8a5e516e66c5eda48df17ab9369'
+'5074c723a4eab274830587d799ba781ff57f4fbe4ac99fbdc5aac5009c441ee7')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --libexecdir=/usr/lib/polkit-gnome
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir/polkit-gnome-authentication-agent-1.desktop" \
+  
"$pkgdir/usr/share/applications/polkit-gnome-authentication-agent-1.desktop"
+}

Deleted: community-i686/polkit-gnome-authentication-agent-1.desktop
===
--- community-i686/polkit-gnome-authentication-agent-1.desktop  2016-12-07 
19:13:26 UTC (rev 198387)
+++ community-i686/polkit-gnome-authentication-agent-1.desktop  2016-12-07 
19:13:37 UTC (rev 198388)
@@ -1,87 +0,0 @@
-[Desktop Entry]
-Name=PolicyKit Authentication Agent
-Name[ar]=مدير الاستيثاق PolicyKit
-Name[be]=PolicyKit - аґент аўтэнтыфікацыі
-Name[bn_IN]=PolicyKit অনুমোদনের এজেন্ট
-Name[ca]=Agent d'autenticació del PolicyKit
-Name[cs]=Ověřovací agent PolicyKit
-Name[da]=Godkendelsesprogrammet PolicyKit
-Name[de]=Legitimationsdienst von PolicyKit
-Name[el]=Πράκτορας πιστοποίησης PolicyKit
-Name[en_GB]=Polic

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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:13:26
  Author: bgyorgy
Revision: 198387

Use https source

Modified:
  polkit-gnome/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 19:10:51 UTC (rev 198386)
+++ PKGBUILD2016-12-07 19:13:26 UTC (rev 198387)
@@ -12,7 +12,7 @@
 license=('LGPL')
 depends=('polkit' 'gtk3')
 makedepends=('intltool')
-source=(http://download.gnome.org/sources/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz
+source=(https://download.gnome.org/sources/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz
 polkit-gnome-authentication-agent-1.desktop)
 sha256sums=('1784494963b8bf9a00eedc6cd3a2868fb123b8a5e516e66c5eda48df17ab9369'
 '5074c723a4eab274830587d799ba781ff57f4fbe4ac99fbdc5aac5009c441ee7')


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:10:51
  Author: bgyorgy
Revision: 198386

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

Added:
  pidgin-libnotify/repos/community-i686/PKGBUILD
(from rev 198385, pidgin-libnotify/trunk/PKGBUILD)
  pidgin-libnotify/repos/community-i686/language_fixes.patch
(from rev 198385, pidgin-libnotify/trunk/language_fixes.patch)
  
pidgin-libnotify/repos/community-i686/pidgin-libnotify-0.14-libnotify-0.7.patch
(from rev 198385, 
pidgin-libnotify/trunk/pidgin-libnotify-0.14-libnotify-0.7.patch)
  pidgin-libnotify/repos/community-i686/pidgin-libnotify-getfocus.patch
(from rev 198385, pidgin-libnotify/trunk/pidgin-libnotify-getfocus.patch)
  pidgin-libnotify/repos/community-i686/pidgin-libnotify-showbutton.patch
(from rev 198385, pidgin-libnotify/trunk/pidgin-libnotify-showbutton.patch)
  pidgin-libnotify/repos/community-x86_64/PKGBUILD
(from rev 198385, pidgin-libnotify/trunk/PKGBUILD)
  pidgin-libnotify/repos/community-x86_64/language_fixes.patch
(from rev 198385, pidgin-libnotify/trunk/language_fixes.patch)
  
pidgin-libnotify/repos/community-x86_64/pidgin-libnotify-0.14-libnotify-0.7.patch
(from rev 198385, 
pidgin-libnotify/trunk/pidgin-libnotify-0.14-libnotify-0.7.patch)
  pidgin-libnotify/repos/community-x86_64/pidgin-libnotify-getfocus.patch
(from rev 198385, pidgin-libnotify/trunk/pidgin-libnotify-getfocus.patch)
  pidgin-libnotify/repos/community-x86_64/pidgin-libnotify-showbutton.patch
(from rev 198385, pidgin-libnotify/trunk/pidgin-libnotify-showbutton.patch)
Deleted:
  pidgin-libnotify/repos/community-i686/PKGBUILD
  pidgin-libnotify/repos/community-i686/language_fixes.patch
  
pidgin-libnotify/repos/community-i686/pidgin-libnotify-0.14-libnotify-0.7.patch
  pidgin-libnotify/repos/community-i686/pidgin-libnotify-getfocus.patch
  pidgin-libnotify/repos/community-i686/pidgin-libnotify-showbutton.patch
  pidgin-libnotify/repos/community-x86_64/PKGBUILD
  pidgin-libnotify/repos/community-x86_64/language_fixes.patch
  
pidgin-libnotify/repos/community-x86_64/pidgin-libnotify-0.14-libnotify-0.7.patch
  pidgin-libnotify/repos/community-x86_64/pidgin-libnotify-getfocus.patch
  pidgin-libnotify/repos/community-x86_64/pidgin-libnotify-showbutton.patch

+
 /PKGBUILD  |   88 
 /language_fixes.patch  | 1194 +++
 /pidgin-libnotify-0.14-libnotify-0.7.patch |   36 
 /pidgin-libnotify-getfocus.patch   |  138 +
 /pidgin-libnotify-showbutton.patch |   20 
 community-i686/PKGBUILD|   44 
 community-i686/language_fixes.patch|  597 -
 community-i686/pidgin-libnotify-0.14-libnotify-0.7.patch   |   18 
 community-i686/pidgin-libnotify-getfocus.patch |   69 
 community-i686/pidgin-libnotify-showbutton.patch   |   10 
 community-x86_64/PKGBUILD  |   44 
 community-x86_64/language_fixes.patch  |  597 -
 community-x86_64/pidgin-libnotify-0.14-libnotify-0.7.patch |   18 
 community-x86_64/pidgin-libnotify-getfocus.patch   |   69 
 community-x86_64/pidgin-libnotify-showbutton.patch |   10 
 15 files changed, 1476 insertions(+), 1476 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-07 19:10:38 UTC (rev 198385)
+++ community-i686/PKGBUILD 2016-12-07 19:10:51 UTC (rev 198386)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Daenyth 
-# Contributor: Hugo Doria 
-# Contributor pidgin-libnotify: 3ED 
-
-pkgname=pidgin-libnotify
-pkgver=0.14
-pkgrel=10
-arch=('i686' 'x86_64')
-pkgdesc="Pidgin plugin that enables popups when someone logs in or messages 
you"
-url="http://gaim-libnotify.sourceforge.net/";
-license=('GPL')
-depends=('pidgin' 'libnotify')
-makedepends=('intltool')
-source=(http://downloads.sourceforge.net/gaim-libnotify/$pkgname-$pkgver.tar.gz
-language_fixes.patch
-pidgin-libnotify-0.14-libnotify-0.7.patch
-pidgin-libnotify-showbutton.patch
-pidgin-libnotify-getfocus.patch)
-md5sums=('bfb5368b69c02d429b2b17c00a6673c0'
- 'c89e3cdc5db3525e37be4687f1e17d0a'
- '05538625f14d9f2c12adae5fa6a1fa26'
- 'efe1e86aa1e0bc9f7d20efe7f34ad4a7'
- 'e624998744d1c2fb8e2c6be94b04c38a')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1 -i ../language_fixes.patch
-  patch -Np0 -i ../pidgin-libnotify-0.14-libnotify-0.7.patch
-  patch -Np0 -i ../pidgin-libnotify-showbutton.patch
-  patch -Np0 -i ../pidgin-libnotify-getfocus.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-deprecated
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:10:38
  Author: bgyorgy
Revision: 198385

Use https source

Modified:
  pidgin-libnotify/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 19:09:35 UTC (rev 198384)
+++ PKGBUILD2016-12-07 19:10:38 UTC (rev 198385)
@@ -13,7 +13,7 @@
 license=('GPL')
 depends=('pidgin' 'libnotify')
 makedepends=('intltool')
-source=(http://downloads.sourceforge.net/gaim-libnotify/$pkgname-$pkgver.tar.gz
+source=(https://downloads.sourceforge.net/gaim-libnotify/$pkgname-$pkgver.tar.gz
 language_fixes.patch
 pidgin-libnotify-0.14-libnotify-0.7.patch
 pidgin-libnotify-showbutton.patch


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:09:35
  Author: bgyorgy
Revision: 198384

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

Added:
  pcmanfm-gtk3/repos/community-i686/PKGBUILD
(from rev 198383, pcmanfm-gtk3/trunk/PKGBUILD)
  pcmanfm-gtk3/repos/community-x86_64/PKGBUILD
(from rev 198383, pcmanfm-gtk3/trunk/PKGBUILD)
Deleted:
  pcmanfm-gtk3/repos/community-i686/PKGBUILD
  pcmanfm-gtk3/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-07 19:09:27 UTC (rev 198383)
+++ community-i686/PKGBUILD 2016-12-07 19:09:35 UTC (rev 198384)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Unknown47 
-# Contributor: Angel Velasquez 
-# Contributor: Juergen Hoetzel 
-
-pkgname=pcmanfm-gtk3
-_pkgname=pcmanfm
-pkgver=1.2.4
-pkgrel=2
-pkgdesc='Extremely fast and lightweight file manager (GTK+ 3 version)'
-arch=('i686' 'x86_64')
-url='http://pcmanfm.sourceforge.net/'
-license=('GPL')
-groups=('lxde-gtk3')
-depends=('libfm-gtk3' 'lxmenu-data')
-makedepends=('intltool')
-optdepends=('gvfs: for trash support, mounting with udisks and remote 
filesystems'
-'udisks: alternative for mounting volumes'
-'xarchiver: archive management')
-conflicts=($_pkgname)
-source=(http://downloads.sourceforge.net/$_pkgname/$_pkgname-$pkgver.tar.xz)
-md5sums=('19764c2f59653724c8713e0064fa6829')
-
-build() {
-  cd $_pkgname-$pkgver
-  ./configure --sysconfdir=/etc --prefix=/usr --with-gtk=3
-  make
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: pcmanfm-gtk3/repos/community-i686/PKGBUILD (from rev 198383, 
pcmanfm-gtk3/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-07 19:09:35 UTC (rev 198384)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Unknown47 
+# Contributor: Angel Velasquez 
+# Contributor: Juergen Hoetzel 
+
+pkgname=pcmanfm-gtk3
+_pkgname=pcmanfm
+pkgver=1.2.4
+pkgrel=2
+pkgdesc='Extremely fast and lightweight file manager (GTK+ 3 version)'
+arch=('i686' 'x86_64')
+url='http://pcmanfm.sourceforge.net/'
+license=('GPL')
+groups=('lxde-gtk3')
+depends=('libfm-gtk3' 'lxmenu-data')
+makedepends=('intltool')
+optdepends=('gvfs: for trash support, mounting with udisks and remote 
filesystems'
+'udisks: alternative for mounting volumes'
+'xarchiver: archive management')
+conflicts=($_pkgname)
+source=(https://downloads.sourceforge.net/$_pkgname/$_pkgname-$pkgver.tar.xz)
+md5sums=('19764c2f59653724c8713e0064fa6829')
+
+build() {
+  cd $_pkgname-$pkgver
+  ./configure --sysconfdir=/etc --prefix=/usr --with-gtk=3
+  make
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-12-07 19:09:27 UTC (rev 198383)
+++ community-x86_64/PKGBUILD   2016-12-07 19:09:35 UTC (rev 198384)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Unknown47 
-# Contributor: Angel Velasquez 
-# Contributor: Juergen Hoetzel 
-
-pkgname=pcmanfm-gtk3
-_pkgname=pcmanfm
-pkgver=1.2.4
-pkgrel=2
-pkgdesc='Extremely fast and lightweight file manager (GTK+ 3 version)'
-arch=('i686' 'x86_64')
-url='http://pcmanfm.sourceforge.net/'
-license=('GPL')
-groups=('lxde-gtk3')
-depends=('libfm-gtk3' 'lxmenu-data')
-makedepends=('intltool')
-optdepends=('gvfs: for trash support, mounting with udisks and remote 
filesystems'
-'udisks: alternative for mounting volumes'
-'xarchiver: archive management')
-conflicts=($_pkgname)
-source=(http://downloads.sourceforge.net/$_pkgname/$_pkgname-$pkgver.tar.xz)
-md5sums=('19764c2f59653724c8713e0064fa6829')
-
-build() {
-  cd $_pkgname-$pkgver
-  ./configure --sysconfdir=/etc --prefix=/usr --with-gtk=3
-  make
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: pcmanfm-gtk3/repos/community-x86_64/PKGBUILD (from rev 198383, 
pcmanfm-gtk3/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-12-07 19:09:35 UTC (rev 198384)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Unknown47 
+# Contributor: Angel Velasquez 
+# Contribut

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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:09:27
  Author: bgyorgy
Revision: 198383

Use https source

Modified:
  pcmanfm-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 19:08:59 UTC (rev 198382)
+++ PKGBUILD2016-12-07 19:09:27 UTC (rev 198383)
@@ -20,7 +20,7 @@
 'udisks: alternative for mounting volumes'
 'xarchiver: archive management')
 conflicts=($_pkgname)
-source=(http://downloads.sourceforge.net/$_pkgname/$_pkgname-$pkgver.tar.xz)
+source=(https://downloads.sourceforge.net/$_pkgname/$_pkgname-$pkgver.tar.xz)
 md5sums=('19764c2f59653724c8713e0064fa6829')
 
 build() {


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:08:59
  Author: bgyorgy
Revision: 198382

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-07 19:08:47 UTC (rev 198381)
+++ community-i686/PKGBUILD 2016-12-07 19:08:59 UTC (rev 198382)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Unknown47 
-# Contributor: Angel Velasquez 
-# Contributor: Juergen Hoetzel 
-
-pkgname=pcmanfm
-pkgver=1.2.4
-pkgrel=2
-pkgdesc='Extremely fast and lightweight file manager'
-arch=('i686' 'x86_64')
-url='http://pcmanfm.sourceforge.net/'
-license=('GPL')
-groups=('lxde')
-depends=('libfm-gtk2' 'lxmenu-data')
-makedepends=('intltool')
-optdepends=('gvfs: for trash support, mounting with udisks and remote 
filesystems'
-'udisks: alternative for mounting volumes'
-'xarchiver: archive management')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.xz)
-md5sums=('19764c2f59653724c8713e0064fa6829')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --sysconfdir=/etc --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: pcmanfm/repos/community-i686/PKGBUILD (from rev 198381, 
pcmanfm/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-07 19:08:59 UTC (rev 198382)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Unknown47 
+# Contributor: Angel Velasquez 
+# Contributor: Juergen Hoetzel 
+
+pkgname=pcmanfm
+pkgver=1.2.4
+pkgrel=2
+pkgdesc='Extremely fast and lightweight file manager'
+arch=('i686' 'x86_64')
+url='http://pcmanfm.sourceforge.net/'
+license=('GPL')
+groups=('lxde')
+depends=('libfm-gtk2' 'lxmenu-data')
+makedepends=('intltool')
+optdepends=('gvfs: for trash support, mounting with udisks and remote 
filesystems'
+'udisks: alternative for mounting volumes'
+'xarchiver: archive management')
+source=(https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.xz)
+md5sums=('19764c2f59653724c8713e0064fa6829')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --sysconfdir=/etc --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-12-07 19:08:47 UTC (rev 198381)
+++ community-x86_64/PKGBUILD   2016-12-07 19:08:59 UTC (rev 198382)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Unknown47 
-# Contributor: Angel Velasquez 
-# Contributor: Juergen Hoetzel 
-
-pkgname=pcmanfm
-pkgver=1.2.4
-pkgrel=2
-pkgdesc='Extremely fast and lightweight file manager'
-arch=('i686' 'x86_64')
-url='http://pcmanfm.sourceforge.net/'
-license=('GPL')
-groups=('lxde')
-depends=('libfm-gtk2' 'lxmenu-data')
-makedepends=('intltool')
-optdepends=('gvfs: for trash support, mounting with udisks and remote 
filesystems'
-'udisks: alternative for mounting volumes'
-'xarchiver: archive management')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.xz)
-md5sums=('19764c2f59653724c8713e0064fa6829')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --sysconfdir=/etc --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: pcmanfm/repos/community-x86_64/PKGBUILD (from rev 198381, 
pcmanfm/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-12-07 19:08:59 UTC (rev 198382)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Unknown47 
+# Contributor: Angel Velasquez 
+# Contributor: Juergen Hoetzel 
+
+pkgname=pcmanfm
+pkgver=1.2.4
+pkgrel=2
+pkgdesc='Extremely fast and lightweight file manager'
+arch=('i686' 'x86_64')
+url='http://pcmanfm.sourceforge.net/'
+license=('GPL')
+groups=('lxde')
+depends=('libfm-gtk2' 'lxmenu-data')
+makedepends=('intltool')
+optdepends=('gvfs: for t

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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:08:47
  Author: bgyorgy
Revision: 198381

Use https source

Modified:
  pcmanfm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 19:05:56 UTC (rev 198380)
+++ PKGBUILD2016-12-07 19:08:47 UTC (rev 198381)
@@ -18,7 +18,7 @@
 optdepends=('gvfs: for trash support, mounting with udisks and remote 
filesystems'
 'udisks: alternative for mounting volumes'
 'xarchiver: archive management')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.xz)
+source=(https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.xz)
 md5sums=('19764c2f59653724c8713e0064fa6829')
 
 build() {


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:05:56
  Author: bgyorgy
Revision: 198380

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-07 19:05:42 UTC (rev 198379)
+++ community-i686/PKGBUILD 2016-12-07 19:05:56 UTC (rev 198380)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-
-pkgname=onboard
-pkgver=1.3.0
-pkgrel=3
-pkgdesc="On-screen keyboard useful on tablet PCs or for mobility impaired 
users"
-arch=('i686' 'x86_64')
-url="https://launchpad.net/onboard";
-license=('GPL')
-depends=('gtk3' 'hunspell' 'iso-codes' 'libcanberra' 'libxkbfile' 
'python-cairo' 'python-dbus' 'python-gobject')
-makedepends=('python-distutils-extra')
-optdepends=('mousetweaks: hover click with mouse')
-source=(http://launchpad.net/$pkgname/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.gz)
-md5sums=('8000df3e789512a90fcb227580fd60ff')
-
-build() {
-  cd $pkgname-$pkgver
-  python3 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python3 setup.py install --root=$pkgdir --optimize=1
-}

Copied: onboard/repos/community-i686/PKGBUILD (from rev 198379, 
onboard/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-07 19:05:56 UTC (rev 198380)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=onboard
+pkgver=1.3.0
+pkgrel=3
+pkgdesc="On-screen keyboard useful on tablet PCs or for mobility impaired 
users"
+arch=('i686' 'x86_64')
+url="https://launchpad.net/onboard";
+license=('GPL')
+depends=('gtk3' 'hunspell' 'iso-codes' 'libcanberra' 'libxkbfile' 
'python-cairo' 'python-dbus' 'python-gobject')
+makedepends=('python-distutils-extra')
+optdepends=('mousetweaks: hover click with mouse')
+source=(https://launchpad.net/$pkgname/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.gz{,.asc})
+validpgpkeys=('BCFE9B5A71A0B0F860521CF963087078B67DCFED') # Francesco Fumanti
+md5sums=('8000df3e789512a90fcb227580fd60ff'
+ 'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  python3 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python3 setup.py install --root=$pkgdir --optimize=1
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-12-07 19:05:42 UTC (rev 198379)
+++ community-x86_64/PKGBUILD   2016-12-07 19:05:56 UTC (rev 198380)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-
-pkgname=onboard
-pkgver=1.3.0
-pkgrel=3
-pkgdesc="On-screen keyboard useful on tablet PCs or for mobility impaired 
users"
-arch=('i686' 'x86_64')
-url="https://launchpad.net/onboard";
-license=('GPL')
-depends=('gtk3' 'hunspell' 'iso-codes' 'libcanberra' 'libxkbfile' 
'python-cairo' 'python-dbus' 'python-gobject')
-makedepends=('python-distutils-extra')
-optdepends=('mousetweaks: hover click with mouse')
-source=(http://launchpad.net/$pkgname/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.gz)
-md5sums=('8000df3e789512a90fcb227580fd60ff')
-
-build() {
-  cd $pkgname-$pkgver
-  python3 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python3 setup.py install --root=$pkgdir --optimize=1
-}

Copied: onboard/repos/community-x86_64/PKGBUILD (from rev 198379, 
onboard/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-12-07 19:05:56 UTC (rev 198380)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=onboard
+pkgver=1.3.0
+pkgrel=3
+pkgdesc="On-screen keyboard useful on tablet PCs or for mobility impaired 
users"
+arch=('i686' 'x86_64')
+url="https://launchpad.net/onboard";
+license=('GPL')
+depends=('gtk3' 'hunspell' 'iso-codes' 'libcanberra' 'libxkbfile' 
'python-cairo' 'python-dbus' 'python-gobject')
+makedepends=('python-distutils-extra')
+optdepends=('mousetweaks: hover click with mouse')
+source=(https://launchpad.net/$pkgname/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.gz{,.asc})
+validpgpkeys=('BCFE9B5A71A0B0F860521CF963087078B67DCFED') # Francesco Fumanti
+md5sums=('8000df3e789512a90fcb227580fd60ff'
+ 'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  python3 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python3 setup.py

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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 19:05:42
  Author: bgyorgy
Revision: 198379

Use gpg signature and https source

Modified:
  onboard/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 18:55:36 UTC (rev 198378)
+++ PKGBUILD2016-12-07 19:05:42 UTC (rev 198379)
@@ -11,8 +11,10 @@
 depends=('gtk3' 'hunspell' 'iso-codes' 'libcanberra' 'libxkbfile' 
'python-cairo' 'python-dbus' 'python-gobject')
 makedepends=('python-distutils-extra')
 optdepends=('mousetweaks: hover click with mouse')
-source=(http://launchpad.net/$pkgname/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.gz)
-md5sums=('8000df3e789512a90fcb227580fd60ff')
+source=(https://launchpad.net/$pkgname/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.gz{,.asc})
+validpgpkeys=('BCFE9B5A71A0B0F860521CF963087078B67DCFED') # Francesco Fumanti
+md5sums=('8000df3e789512a90fcb227580fd60ff'
+ 'SKIP')
 
 build() {
   cd $pkgname-$pkgver


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:55:36
  Author: bgyorgy
Revision: 198378

archrelease: copy trunk to community-any

Added:
  nini/repos/community-any/Nini.snk.txt
(from rev 198377, nini/trunk/Nini.snk.txt)
  nini/repos/community-any/PKGBUILD
(from rev 198377, nini/trunk/PKGBUILD)
  nini/repos/community-any/nini-1.1.pc
(from rev 198377, nini/trunk/nini-1.1.pc)
Deleted:
  nini/repos/community-any/Nini.snk.txt
  nini/repos/community-any/PKGBUILD
  nini/repos/community-any/nini-1.1.pc

--+
 Nini.snk.txt |   22 
 PKGBUILD |   74 -
 nini-1.1.pc  |   16 ++--
 3 files changed, 56 insertions(+), 56 deletions(-)

Deleted: Nini.snk.txt
===
--- Nini.snk.txt2016-12-07 18:55:16 UTC (rev 198377)
+++ Nini.snk.txt2016-12-07 18:55:36 UTC (rev 198378)
@@ -1,11 +0,0 @@
-BwIkAABSU0EyAAQAABEAAAD5dUyPJSoJKMTfNgmE7wfSzS9ScvgS6hEVb8ciSmRWLbefCllR
-5yXB1BWodce6X4QOhEiLBh+vDjr9Sropnq5H3Sfn2HcXcK0QSD4KWPsLFh5y8kYvrmhgMhKrlohJ
-QnkOwuB+k4Kn/EfYVMpg1RHEybGj4NztSD0FlqU/rvOTrYt1SzI6P0RAOvR/BHUfdQ18Q2DN3zsd
-+o4bIjZOPvyiLN9rEzTR5BNdK0LVOAfV4NnQx0dqIM6EeUQFyDSw1r4LW5LeB+dW+Is1uW7wBN8z
-FGaUxf0PD8rWCcR0l7q+OsHV3UH+EWBvY8MzC8UqKlylB4k6XZrcjxWwia48f9jo00rQgCwDBxO0
-qzTHpK53N7lR/o0UeTSwx8nOkv+JZkBAQRZLoEX60uzkfQzCQf26xK56zdgnJfxrQ0Dkr3fvkS8u
-dFTyVQ9ozWPVXhs9CetdbFab/y+KBUSJE43tIJpGT7y9KXhOa9dcBOvyT8thLh3FrmQB3xfOAxDc
-LYMlFylcSliCp+VI0QH8H30XecksRw4MoFpJ1VzVLFPysRurRR4rOswcXjrx11nG+TFEe7ftg3CU
-Ws2GI59MZy3CLjhaoVaKpK/zmD+zvFjiYI8kZhy59ugDBZXrqNlxJ4MAub8zHnnVBiHqZyyybofK
-nLyMzi0Ju2js1QrTuoTkVHvhYfXuZuSfH09covYr+BBX6mlCBY2qbPNYjyNYDx8VYcWCVePapO8f
-WLIUAloWCAB2mbu5oK1fINnBEpcpaeSNhno=

Copied: nini/repos/community-any/Nini.snk.txt (from rev 198377, 
nini/trunk/Nini.snk.txt)
===
--- Nini.snk.txt(rev 0)
+++ Nini.snk.txt2016-12-07 18:55:36 UTC (rev 198378)
@@ -0,0 +1,11 @@
+BwIkAABSU0EyAAQAABEAAAD5dUyPJSoJKMTfNgmE7wfSzS9ScvgS6hEVb8ciSmRWLbefCllR
+5yXB1BWodce6X4QOhEiLBh+vDjr9Sropnq5H3Sfn2HcXcK0QSD4KWPsLFh5y8kYvrmhgMhKrlohJ
+QnkOwuB+k4Kn/EfYVMpg1RHEybGj4NztSD0FlqU/rvOTrYt1SzI6P0RAOvR/BHUfdQ18Q2DN3zsd
++o4bIjZOPvyiLN9rEzTR5BNdK0LVOAfV4NnQx0dqIM6EeUQFyDSw1r4LW5LeB+dW+Is1uW7wBN8z
+FGaUxf0PD8rWCcR0l7q+OsHV3UH+EWBvY8MzC8UqKlylB4k6XZrcjxWwia48f9jo00rQgCwDBxO0
+qzTHpK53N7lR/o0UeTSwx8nOkv+JZkBAQRZLoEX60uzkfQzCQf26xK56zdgnJfxrQ0Dkr3fvkS8u
+dFTyVQ9ozWPVXhs9CetdbFab/y+KBUSJE43tIJpGT7y9KXhOa9dcBOvyT8thLh3FrmQB3xfOAxDc
+LYMlFylcSliCp+VI0QH8H30XecksRw4MoFpJ1VzVLFPysRurRR4rOswcXjrx11nG+TFEe7ftg3CU
+Ws2GI59MZy3CLjhaoVaKpK/zmD+zvFjiYI8kZhy59ugDBZXrqNlxJ4MAub8zHnnVBiHqZyyybofK
+nLyMzi0Ju2js1QrTuoTkVHvhYfXuZuSfH09covYr+BBX6mlCBY2qbPNYjyNYDx8VYcWCVePapO8f
+WLIUAloWCAB2mbu5oK1fINnBEpcpaeSNhno=

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-07 18:55:16 UTC (rev 198377)
+++ PKGBUILD2016-12-07 18:55:36 UTC (rev 198378)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: MutantMonkey 
-# Contributor: Madek 
-
-pkgname=nini
-_pkgname=Nini
-pkgver=1.1.0
-pkgrel=5
-pkgdesc="An uncommonly powerful .NET configuration library designed to help 
build highly configurable applications quickly"
-arch=('any')
-url="http://nini.sourceforge.net/";
-license=('MIT')
-depends=('mono')
-source=(http://downloads.sourceforge.net/$pkgname/$_pkgname-$pkgver.zip
-$pkgname-1.1.pc 
-$_pkgname.snk.txt)
-md5sums=('63384f75fabd401cff1500f738d452f4'
- '6e2cabea421a72247d4f1cdf1ffac9b6'
- '1cfbb58985d299127dbb5a8de59a6ce5')
-
-build() {
-  cd "$srcdir/$_pkgname"
-
-  base64 -d ../$_pkgname.snk.txt>$_pkgname.snk
-  gmcs -t:library -out:Bin/$_pkgname.dll -keyfile:$_pkgname.snk \
-   -r:System,System.Data,System.Xml \
-   Source/{AssemblyInfo,Config/*,/Ini/*,/Util/*}.cs
-}
-
-package() {
-  cd "$srcdir/$_pkgname"
-
-  gacutil -i Bin/$_pkgname.dll -package $_pkgname -root $pkgdir/usr/lib/
-  install -Dm644 $srcdir/$pkgname-1.1.pc 
$pkgdir/usr/lib/pkgconfig/$pkgname-1.1.pc
-  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE.txt
-}

Copied: nini/repos/community-any/PKGBUILD (from rev 198377, nini/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-07 18:55:36 UTC (rev 198378)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: MutantMonkey 
+# Contributor: Madek 
+
+pkgname=nini
+_pkgname=Nini
+pkgver=1.1.0
+pkgrel=5
+pkgdesc="An uncommonly powerful .NET configuration library designed to help 
build highly configurable applications quickly"
+arch=('any')
+url="http://nini.sourceforge.net/";
+license=('MIT')
+depends=('mono')
+source=(https://downloads.sourceforge.net/$pkgname/$_pkgname-$pkgver.zip
+$pkgname-1.1.pc 
+$_pkg

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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:55:16
  Author: bgyorgy
Revision: 198377

Fix build, use https source

Modified:
  nini/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 18:52:46 UTC (rev 198376)
+++ PKGBUILD2016-12-07 18:55:16 UTC (rev 198377)
@@ -12,7 +12,7 @@
 url="http://nini.sourceforge.net/";
 license=('MIT')
 depends=('mono')
-source=(http://downloads.sourceforge.net/$pkgname/$_pkgname-$pkgver.zip
+source=(https://downloads.sourceforge.net/$pkgname/$_pkgname-$pkgver.zip
 $pkgname-1.1.pc 
 $_pkgname.snk.txt)
 md5sums=('63384f75fabd401cff1500f738d452f4'
@@ -23,9 +23,9 @@
   cd "$srcdir/$_pkgname"
 
   base64 -d ../$_pkgname.snk.txt>$_pkgname.snk
-  gmcs -t:library -out:Bin/$_pkgname.dll -keyfile:$_pkgname.snk \
-   -r:System,System.Data,System.Xml \
-   Source/{AssemblyInfo,Config/*,/Ini/*,/Util/*}.cs
+  mcs -t:library -out:Bin/$_pkgname.dll -keyfile:$_pkgname.snk \
+  -r:System,System.Data,System.Xml \
+  Source/{AssemblyInfo,Config/*,/Ini/*,/Util/*}.cs
 }
 
 package() {


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:52:46
  Author: bgyorgy
Revision: 198376

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

Added:
  nautilus-share/repos/community-i686/PKGBUILD
(from rev 198375, nautilus-share/trunk/PKGBUILD)
  nautilus-share/repos/community-x86_64/PKGBUILD
(from rev 198375, nautilus-share/trunk/PKGBUILD)
Deleted:
  nautilus-share/repos/community-i686/PKGBUILD
  nautilus-share/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-07 18:49:09 UTC (rev 198375)
+++ community-i686/PKGBUILD 2016-12-07 18:52:46 UTC (rev 198376)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Nevar 
-
-pkgname=nautilus-share
-pkgver=0.7.3
-pkgrel=7
-pkgdesc='Nautilus extension to share folder using Samba'
-arch=('i686' 'x86_64')
-url="https://git.gnome.org/browse/nautilus-share";
-license=('GPL')
-depends=('nautilus' 'samba')
-makedepends=('intltool')
-source=("http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz";)
-sha256sums=('1686b1c3f9f2b4b35bcb0fc9f826f89e540d1e5fee8eb64806a8d31e3db55ad5')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: nautilus-share/repos/community-i686/PKGBUILD (from rev 198375, 
nautilus-share/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-07 18:52:46 UTC (rev 198376)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Nevar 
+
+pkgname=nautilus-share
+pkgver=0.7.3
+pkgrel=7
+pkgdesc='Nautilus extension to share folder using Samba'
+arch=('i686' 'x86_64')
+url="https://git.gnome.org/browse/nautilus-share";
+license=('GPL')
+depends=('nautilus' 'samba')
+makedepends=('intltool')
+source=("https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz";)
+sha256sums=('1686b1c3f9f2b4b35bcb0fc9f826f89e540d1e5fee8eb64806a8d31e3db55ad5')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-12-07 18:49:09 UTC (rev 198375)
+++ community-x86_64/PKGBUILD   2016-12-07 18:52:46 UTC (rev 198376)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Nevar 
-
-pkgname=nautilus-share
-pkgver=0.7.3
-pkgrel=7
-pkgdesc='Nautilus extension to share folder using Samba'
-arch=('i686' 'x86_64')
-url="https://git.gnome.org/browse/nautilus-share";
-license=('GPL')
-depends=('nautilus' 'samba')
-makedepends=('intltool')
-source=("http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz";)
-sha256sums=('1686b1c3f9f2b4b35bcb0fc9f826f89e540d1e5fee8eb64806a8d31e3db55ad5')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: nautilus-share/repos/community-x86_64/PKGBUILD (from rev 198375, 
nautilus-share/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-12-07 18:52:46 UTC (rev 198376)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Nevar 
+
+pkgname=nautilus-share
+pkgver=0.7.3
+pkgrel=7
+pkgdesc='Nautilus extension to share folder using Samba'
+arch=('i686' 'x86_64')
+url="https://git.gnome.org/browse/nautilus-share";
+license=('GPL')
+depends=('nautilus' 'samba')
+makedepends=('intltool')
+source=("https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz";)
+sha256sums=('1686b1c3f9f2b4b35bcb0fc9f826f89e540d1e5fee8eb64806a8d31e3db55ad5')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in modem-manager-gui/repos (4 files)

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:49:09
  Author: bgyorgy
Revision: 198375

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

Added:
  modem-manager-gui/repos/community-i686/PKGBUILD
(from rev 198374, modem-manager-gui/trunk/PKGBUILD)
  modem-manager-gui/repos/community-x86_64/PKGBUILD
(from rev 198374, modem-manager-gui/trunk/PKGBUILD)
Deleted:
  modem-manager-gui/repos/community-i686/PKGBUILD
  modem-manager-gui/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 2016-12-07 18:48:57 UTC (rev 198374)
+++ community-i686/PKGBUILD 2016-12-07 18:49:09 UTC (rev 198375)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Ilya Medvedev 
-
-pkgname=modem-manager-gui
-pkgver=0.0.18
-pkgrel=2
-pkgdesc="Frontend for ModemManager daemon able to control specific modem 
functions"
-arch=('i686' 'x86_64')
-url="http://linuxonly.ru/cms/page.php?7";
-license=('GPL3')
-depends=('gdbm' 'gtk3' 'gtkspell3' 'libnotify' 'modemmanager')
-makedepends=('po4a' 'itstool')
-optdepends=('networkmanager: monitor network traffic')
-options=(!emptydirs)
-source=("http://download.tuxfamily.org/gsf/source/$pkgname-$pkgver.tar.gz";)
-md5sums=('affc35ba997f8b54d5421307a3021a3d')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
- 
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: modem-manager-gui/repos/community-i686/PKGBUILD (from rev 198374, 
modem-manager-gui/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-07 18:49:09 UTC (rev 198375)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Ilya Medvedev 
+
+pkgname=modem-manager-gui
+pkgver=0.0.18
+pkgrel=2
+pkgdesc="Frontend for ModemManager daemon able to control specific modem 
functions"
+arch=('i686' 'x86_64')
+url="http://linuxonly.ru/cms/page.php?7";
+license=('GPL3')
+depends=('gdbm' 'gtk3' 'gtkspell3' 'libnotify' 'modemmanager')
+makedepends=('po4a' 'itstool')
+optdepends=('networkmanager: monitor network traffic')
+options=(!emptydirs)
+source=("https://download.tuxfamily.org/gsf/source/$pkgname-$pkgver.tar.gz";)
+md5sums=('affc35ba997f8b54d5421307a3021a3d')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+ 
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-12-07 18:48:57 UTC (rev 198374)
+++ community-x86_64/PKGBUILD   2016-12-07 18:49:09 UTC (rev 198375)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Ilya Medvedev 
-
-pkgname=modem-manager-gui
-pkgver=0.0.18
-pkgrel=2
-pkgdesc="Frontend for ModemManager daemon able to control specific modem 
functions"
-arch=('i686' 'x86_64')
-url="http://linuxonly.ru/cms/page.php?7";
-license=('GPL3')
-depends=('gdbm' 'gtk3' 'gtkspell3' 'libnotify' 'modemmanager')
-makedepends=('po4a' 'itstool')
-optdepends=('networkmanager: monitor network traffic')
-options=(!emptydirs)
-source=("http://download.tuxfamily.org/gsf/source/$pkgname-$pkgver.tar.gz";)
-md5sums=('affc35ba997f8b54d5421307a3021a3d')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
- 
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: modem-manager-gui/repos/community-x86_64/PKGBUILD (from rev 198374, 
modem-manager-gui/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-12-07 18:49:09 UTC (rev 198375)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Ilya Medvedev 
+
+pkgname=modem-manager-gui
+pkgver=0.0.18
+pkgrel=2
+pkgdesc="Frontend for ModemManager daemon able to control specific modem 
functions"
+arch=('i686' 'x86_64')
+url="http://linuxonly.ru/cms/page.php?7";
+license=('GPL3')
+depends=('gdbm' 'gtk3' 'gtkspell3' 'libnotify' 'modemmanager')
+makedepends=('po4a' 'itstool')
+optdepends=('networkmanager: monitor network traffic')
+options=(!emptydirs)
+source=("https://download.tuxfamily.org/gsf/source/$pkgname-$pkgver.tar.gz";)
+md5sums=('affc35ba997f8b54d5421307a3021a3d')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+ 
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in modem-manager-gui/trunk (PKGBUILD)

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:48:57
  Author: bgyorgy
Revision: 198374

Use https source

Modified:
  modem-manager-gui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 18:46:32 UTC (rev 198373)
+++ PKGBUILD2016-12-07 18:48:57 UTC (rev 198374)
@@ -13,7 +13,7 @@
 makedepends=('po4a' 'itstool')
 optdepends=('networkmanager: monitor network traffic')
 options=(!emptydirs)
-source=("http://download.tuxfamily.org/gsf/source/$pkgname-$pkgver.tar.gz";)
+source=("https://download.tuxfamily.org/gsf/source/$pkgname-$pkgver.tar.gz";)
 md5sums=('affc35ba997f8b54d5421307a3021a3d')
 
 build() {


[arch-commits] Commit in lxterminal/repos (8 files)

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:46:32
  Author: bgyorgy
Revision: 198373

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

Added:
  lxterminal/repos/community-i686/PKGBUILD
(from rev 198372, lxterminal/trunk/PKGBUILD)
  lxterminal/repos/community-i686/gtk3.patch
(from rev 198372, lxterminal/trunk/gtk3.patch)
  lxterminal/repos/community-x86_64/PKGBUILD
(from rev 198372, lxterminal/trunk/PKGBUILD)
  lxterminal/repos/community-x86_64/gtk3.patch
(from rev 198372, lxterminal/trunk/gtk3.patch)
Deleted:
  lxterminal/repos/community-i686/PKGBUILD
  lxterminal/repos/community-i686/gtk3.patch
  lxterminal/repos/community-x86_64/PKGBUILD
  lxterminal/repos/community-x86_64/gtk3.patch

-+
 /PKGBUILD   |  118 +
 /gtk3.patch |  922 ++
 community-i686/PKGBUILD |   59 --
 community-i686/gtk3.patch   |  461 -
 community-x86_64/PKGBUILD   |   59 --
 community-x86_64/gtk3.patch |  461 -
 6 files changed, 1040 insertions(+), 1040 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-07 18:46:21 UTC (rev 198372)
+++ community-i686/PKGBUILD 2016-12-07 18:46:32 UTC (rev 198373)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Angel Velasquez  
-# Contributor: Geoffroy Carrier 
-
-pkgbase=lxterminal
-pkgname=(lxterminal lxterminal-gtk3)
-pkgver=0.2.0
-pkgrel=3
-pkgdesc="VTE-based terminal emulator (part of LXDE)"
-arch=('i686' 'x86_64')
-license=('GPL2')
-url="http://lxde.org/";
-depends=('vte' 'vte3')
-makedepends=('intltool')
-source=(http://downloads.sourceforge.net/lxde/${pkgbase}-${pkgver}.tar.gz
-gtk3.patch)
-md5sums=('e80ad1b6e26212f3d43908c2ad87ba4d'
- '98abfec91bd55e96001f87b0e3fdbc22')
-
-prepare() {
-  cd $pkgbase-$pkgver
-  patch -Np1 -i ../gtk3.patch
-  autoreconf -fi
-}
-
-build() {
-  # GTK+ 2 version
-  [ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
-  cd gtk2
-  ./configure --sysconfdir=/etc --prefix=/usr
-  make
-
-  cd "$srcdir"
-  # GTK+ 3 version
-  [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
-  cd gtk3
-  ./configure --sysconfdir=/etc --prefix=/usr --enable-gtk3
-  make
-}
-
-package_lxterminal() {
-  groups=('lxde')
-  depends=('vte')
-
-  cd gtk2
-  make DESTDIR="$pkgdir" install
-}
-
-package_lxterminal-gtk3() {
-  groups=('lxde-gtk3')
-  pkgdesc+=' (GTK+ 3 version)'
-  depends=('vte3')
-  conflicts=('lxterminal')
-
-  cd gtk3
-  make DESTDIR="$pkgdir" install
-}

Copied: lxterminal/repos/community-i686/PKGBUILD (from rev 198372, 
lxterminal/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-07 18:46:32 UTC (rev 198373)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Angel Velasquez  
+# Contributor: Geoffroy Carrier 
+
+pkgbase=lxterminal
+pkgname=(lxterminal lxterminal-gtk3)
+pkgver=0.2.0
+pkgrel=3
+pkgdesc="VTE-based terminal emulator (part of LXDE)"
+arch=('i686' 'x86_64')
+license=('GPL2')
+url="http://lxde.org/";
+depends=('vte' 'vte3')
+makedepends=('intltool')
+source=(https://downloads.sourceforge.net/lxde/${pkgbase}-${pkgver}.tar.gz
+gtk3.patch)
+md5sums=('e80ad1b6e26212f3d43908c2ad87ba4d'
+ '98abfec91bd55e96001f87b0e3fdbc22')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  patch -Np1 -i ../gtk3.patch
+  autoreconf -fi
+}
+
+build() {
+  # GTK+ 2 version
+  [ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
+  cd gtk2
+  ./configure --sysconfdir=/etc --prefix=/usr
+  make
+
+  cd "$srcdir"
+  # GTK+ 3 version
+  [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
+  cd gtk3
+  ./configure --sysconfdir=/etc --prefix=/usr --enable-gtk3
+  make
+}
+
+package_lxterminal() {
+  groups=('lxde')
+  depends=('vte')
+
+  cd gtk2
+  make DESTDIR="$pkgdir" install
+}
+
+package_lxterminal-gtk3() {
+  groups=('lxde-gtk3')
+  pkgdesc+=' (GTK+ 3 version)'
+  depends=('vte3')
+  conflicts=('lxterminal')
+
+  cd gtk3
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-i686/gtk3.patch
===
--- community-i686/gtk3.patch   2016-12-07 18:46:21 UTC (rev 198372)
+++ community-i686/gtk3.patch   2016-12-07 18:46:32 UTC (rev 198373)
@@ -1,461 +0,0 @@
-From 164a4cf56af423d3445c15a6e7aceae46e048dd5 Mon Sep 17 00:00:00 2001
-From: FinboySlick 
-Date: Thu, 23 Jul 2015 16:05:19 -0400
-Subject: [PATCH] Support for vte>=0.38.0 -- Thanks Gyorgy Ballo
-

- configure.ac  |  4 +++-
- src/lxterminal.c  | 69 ++-
- src/preferences.c | 17 ++
- src/setting.c | 30 
- src/setting.h |  6 +
- 5 files changed, 124 insertions

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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:46:21
  Author: bgyorgy
Revision: 198372

Use https source

Modified:
  lxterminal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 18:45:56 UTC (rev 198371)
+++ PKGBUILD2016-12-07 18:46:21 UTC (rev 198372)
@@ -14,7 +14,7 @@
 url="http://lxde.org/";
 depends=('vte' 'vte3')
 makedepends=('intltool')
-source=(http://downloads.sourceforge.net/lxde/${pkgbase}-${pkgver}.tar.gz
+source=(https://downloads.sourceforge.net/lxde/${pkgbase}-${pkgver}.tar.gz
 gtk3.patch)
 md5sums=('e80ad1b6e26212f3d43908c2ad87ba4d'
  '98abfec91bd55e96001f87b0e3fdbc22')


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:45:56
  Author: bgyorgy
Revision: 198371

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-07 18:45:47 UTC (rev 198370)
+++ community-i686/PKGBUILD 2016-12-07 18:45:56 UTC (rev 198371)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Angel Velasquez 
-# Contributor: Geoffroy Carrier 
-
-pkgbase=lxtask
-pkgname=(lxtask lxtask-gtk3)
-pkgver=0.1.7
-pkgrel=1
-pkgdesc='Task manager of the LXDE Desktop'
-arch=('i686' 'x86_64')
-license=('GPL2')
-url='http://lxde.org/'
-depends=('gtk2' 'gtk3')
-makedepends=('intltool')
-source=(http://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz)
-md5sums=('eb2ad374e97c317e2f74d47b1e582303')
-
-build() {
-  # GTK+ 2 version
-  [ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
-  cd gtk2
-  ./configure --sysconfdir=/etc --prefix=/usr
-  make
-
-  cd "$srcdir"
-  # GTK+ 3 version
-  [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
-  cd gtk3
-  ./configure --sysconfdir=/etc --prefix=/usr --enable-gtk3
-  make
-}
-
-package_lxtask() {
-  groups=('lxde')
-  depends=('gtk2')
-
-  cd gtk2
-  make DESTDIR="$pkgdir" install
-}
-
-package_lxtask-gtk3() {
-  groups=('lxde-gtk3')
-  pkgdesc+=' (GTK+ 3 version)'
-  depends=('gtk3')
-  conflicts=('lxtask')
-
-  cd gtk3
-  make DESTDIR="$pkgdir" install
-}

Copied: lxtask/repos/community-i686/PKGBUILD (from rev 198370, 
lxtask/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-07 18:45:56 UTC (rev 198371)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Angel Velasquez 
+# Contributor: Geoffroy Carrier 
+
+pkgbase=lxtask
+pkgname=(lxtask lxtask-gtk3)
+pkgver=0.1.7
+pkgrel=1
+pkgdesc='Task manager of the LXDE Desktop'
+arch=('i686' 'x86_64')
+license=('GPL2')
+url='http://lxde.org/'
+depends=('gtk2' 'gtk3')
+makedepends=('intltool')
+source=(https://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz)
+md5sums=('eb2ad374e97c317e2f74d47b1e582303')
+
+build() {
+  # GTK+ 2 version
+  [ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
+  cd gtk2
+  ./configure --sysconfdir=/etc --prefix=/usr
+  make
+
+  cd "$srcdir"
+  # GTK+ 3 version
+  [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
+  cd gtk3
+  ./configure --sysconfdir=/etc --prefix=/usr --enable-gtk3
+  make
+}
+
+package_lxtask() {
+  groups=('lxde')
+  depends=('gtk2')
+
+  cd gtk2
+  make DESTDIR="$pkgdir" install
+}
+
+package_lxtask-gtk3() {
+  groups=('lxde-gtk3')
+  pkgdesc+=' (GTK+ 3 version)'
+  depends=('gtk3')
+  conflicts=('lxtask')
+
+  cd gtk3
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-12-07 18:45:47 UTC (rev 198370)
+++ community-x86_64/PKGBUILD   2016-12-07 18:45:56 UTC (rev 198371)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Angel Velasquez 
-# Contributor: Geoffroy Carrier 
-
-pkgbase=lxtask
-pkgname=(lxtask lxtask-gtk3)
-pkgver=0.1.7
-pkgrel=1
-pkgdesc='Task manager of the LXDE Desktop'
-arch=('i686' 'x86_64')
-license=('GPL2')
-url='http://lxde.org/'
-depends=('gtk2' 'gtk3')
-makedepends=('intltool')
-source=(http://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz)
-md5sums=('eb2ad374e97c317e2f74d47b1e582303')
-
-build() {
-  # GTK+ 2 version
-  [ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
-  cd gtk2
-  ./configure --sysconfdir=/etc --prefix=/usr
-  make
-
-  cd "$srcdir"
-  # GTK+ 3 version
-  [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
-  cd gtk3
-  ./configure --sysconfdir=/etc --prefix=/usr --enable-gtk3
-  make
-}
-
-package_lxtask() {
-  groups=('lxde')
-  depends=('gtk2')
-
-  cd gtk2
-  make DESTDIR="$pkgdir" install
-}
-
-package_lxtask-gtk3() {
-  groups=('lxde-gtk3')
-  pkgdesc+=' (GTK+ 3 version)'
-  depends=('gtk3')
-  conflicts=('lxtask')
-
-  cd gtk3
-  make DESTDIR="$pkgdir" install
-}

Copied: lxtask/repos/community-x86_64/PKGBUILD (from rev 198370, 
lxtask/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD  

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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:45:47
  Author: bgyorgy
Revision: 198370

Use https source

Modified:
  lxtask/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 18:45:24 UTC (rev 198369)
+++ PKGBUILD2016-12-07 18:45:47 UTC (rev 198370)
@@ -14,7 +14,7 @@
 url='http://lxde.org/'
 depends=('gtk2' 'gtk3')
 makedepends=('intltool')
-source=(http://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz)
+source=(https://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz)
 md5sums=('eb2ad374e97c317e2f74d47b1e582303')
 
 build() {


[arch-commits] Commit in lxsession/repos (16 files)

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:45:24
  Author: bgyorgy
Revision: 198369

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

Added:
  
lxsession/repos/community-i686/0001-Better-handling-the-background-of-logout-dialog.patch
(from rev 198368, 
lxsession/trunk/0001-Better-handling-the-background-of-logout-dialog.patch)
  lxsession/repos/community-i686/0001-Fix-unique-app-handling.patch
(from rev 198368, lxsession/trunk/0001-Fix-unique-app-handling.patch)
  lxsession/repos/community-i686/PKGBUILD
(from rev 198368, lxsession/trunk/PKGBUILD)
  lxsession/repos/community-i686/gtk3.patch
(from rev 198368, lxsession/trunk/gtk3.patch)
  
lxsession/repos/community-x86_64/0001-Better-handling-the-background-of-logout-dialog.patch
(from rev 198368, 
lxsession/trunk/0001-Better-handling-the-background-of-logout-dialog.patch)
  lxsession/repos/community-x86_64/0001-Fix-unique-app-handling.patch
(from rev 198368, lxsession/trunk/0001-Fix-unique-app-handling.patch)
  lxsession/repos/community-x86_64/PKGBUILD
(from rev 198368, lxsession/trunk/PKGBUILD)
  lxsession/repos/community-x86_64/gtk3.patch
(from rev 198368, lxsession/trunk/gtk3.patch)
Deleted:
  
lxsession/repos/community-i686/0001-Better-handling-the-background-of-logout-dialog.patch
  lxsession/repos/community-i686/0001-Fix-unique-app-handling.patch
  lxsession/repos/community-i686/PKGBUILD
  lxsession/repos/community-i686/gtk3.patch
  
lxsession/repos/community-x86_64/0001-Better-handling-the-background-of-logout-dialog.patch
  lxsession/repos/community-x86_64/0001-Fix-unique-app-handling.patch
  lxsession/repos/community-x86_64/PKGBUILD
  lxsession/repos/community-x86_64/gtk3.patch

-+
 /0001-Better-handling-the-background-of-logout-dialog.patch |  
 54 
 /0001-Fix-unique-app-handling.patch |  
168 +
 /PKGBUILD   |  
152 +
 /gtk3.patch | 
1034 ++
 community-i686/0001-Better-handling-the-background-of-logout-dialog.patch   |  
 27 
 community-i686/0001-Fix-unique-app-handling.patch   |  
 84 
 community-i686/PKGBUILD |  
 75 
 community-i686/gtk3.patch   |  
517 -
 community-x86_64/0001-Better-handling-the-background-of-logout-dialog.patch |  
 27 
 community-x86_64/0001-Fix-unique-app-handling.patch |  
 84 
 community-x86_64/PKGBUILD   |  
 75 
 community-x86_64/gtk3.patch |  
517 -
 12 files changed, 1408 insertions(+), 1406 deletions(-)

Deleted: 
community-i686/0001-Better-handling-the-background-of-logout-dialog.patch
===
--- community-i686/0001-Better-handling-the-background-of-logout-dialog.patch   
2016-12-07 18:45:12 UTC (rev 198368)
+++ community-i686/0001-Better-handling-the-background-of-logout-dialog.patch   
2016-12-07 18:45:24 UTC (rev 198369)
@@ -1,27 +0,0 @@
-From 8a9001bdf8a367968922ca8193af56f5e22ec885 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= 
-Date: Wed, 17 Feb 2016 15:56:26 +0100
-Subject: [PATCH] Better handling the background of logout dialog
-

- lxsession-logout/lxsession-logout.c | 4 +---
- 1 file changed, 1 insertion(+), 3 deletions(-)
-
-diff --git a/lxsession-logout/lxsession-logout.c 
b/lxsession-logout/lxsession-logout.c
-index 8141b19..698b7d2 100644
 a/lxsession-logout/lxsession-logout.c
-+++ b/lxsession-logout/lxsession-logout.c
-@@ -629,9 +629,7 @@ int main(int argc, char * argv[])
- gtk_container_add(GTK_CONTAINER(alignment), center_area);
- 
- #ifdef USE_GTK3
--GtkStyle* style = gtk_widget_get_style (window);
--GdkColor color = style->bg[GTK_STATE_NORMAL];
--gtk_widget_modify_bg(center_area, GTK_STATE_NORMAL, &color);
-+gtk_style_context_add_class (gtk_widget_get_style_context (center_area), 
GTK_STYLE_CLASS_BACKGROUND);
- #endif
- 
- GtkWidget* center_vbox = gtk_vbox_new(FALSE, 6);
--- 
-2.7.1
-

Copied: 
lxsession/repos/community-i686/0001-Better-handling-the-background-of-logout-dialog.patch
 (from rev 198368, 
lxsession/trunk/0001-Better-handling-the-background-of-logout-dialog.patch)
===
--- community-i686/0001-Better-handling-the-background-of-logout-dialog.patch   
(rev 0)
+++ community-i686/0001-Better-handling-the-background-of-logout-dialog.patch   
2016-12-07 18:45:24 UTC (rev 198369)
@@ -0,0 +1,27 @@
+From 8a9001bdf8a367968922ca8193af56f5e22ec885 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= 
+Date: Wed, 17 Feb 2016 15:5

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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:45:12
  Author: bgyorgy
Revision: 198368

Use https source

Modified:
  lxsession/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 18:43:57 UTC (rev 198367)
+++ PKGBUILD2016-12-07 18:45:12 UTC (rev 198368)
@@ -16,7 +16,7 @@
 depends=('dbus-glib' 'libunique' 'gtk3' 'polkit')
 makedepends=('intltool' 'docbook-xsl' 'vala')
 conflicts=('lxpolkit')
-source=(http://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz
+source=(https://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz
 gtk3.patch
 0001-Better-handling-the-background-of-logout-dialog.patch
 0001-Fix-unique-app-handling.patch)


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:43:57
  Author: bgyorgy
Revision: 198367

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-07 18:43:48 UTC (rev 198366)
+++ community-i686/PKGBUILD 2016-12-07 18:43:57 UTC (rev 198367)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Marcus Schulderinsky 
-
-pkgbase=lxmusic
-pkgname=(lxmusic lxmusic-gtk3)
-pkgver=0.4.7
-pkgrel=1
-pkgdesc='Lightweight XMMS2 client'
-arch=('i686' 'x86_64')
-url="http://lxde.org/";
-license=('GPL')
-depends=('gtk2' 'gtk3' 'libnotify' 'xmms2')
-makedepends=('intltool')
-source=(http://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz)
-md5sums=('1bbd57f5b34e13ef31152c9ecb31ef68')
-
-build() {
-  # GTK+ 2 version
-  [ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
-  cd gtk2
-  ./configure --prefix=/usr
-  make
-
-  cd "$srcdir"
-  # GTK+ 3 version
-  [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
-  cd gtk3
-  ./configure --prefix=/usr --enable-gtk3
-  make
-}
-
-package_lxmusic() {
-  groups=('lxde')
-  depends=('gtk2' 'libnotify' 'xmms2')
-
-  cd gtk2
-  make DESTDIR="$pkgdir" install
-}
-
-package_lxmusic-gtk3() {
-  groups=('lxde-gtk3')
-  pkgdesc+=' (GTK+ 3 version)'
-  depends=('gtk3' 'libnotify' 'xmms2')
-  conflicts=('lxmusic')
-
-  cd gtk3
-  make DESTDIR="$pkgdir" install
-}

Copied: lxmusic/repos/community-i686/PKGBUILD (from rev 198366, 
lxmusic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-07 18:43:57 UTC (rev 198367)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Marcus Schulderinsky 
+
+pkgbase=lxmusic
+pkgname=(lxmusic lxmusic-gtk3)
+pkgver=0.4.7
+pkgrel=1
+pkgdesc='Lightweight XMMS2 client'
+arch=('i686' 'x86_64')
+url="http://lxde.org/";
+license=('GPL')
+depends=('gtk2' 'gtk3' 'libnotify' 'xmms2')
+makedepends=('intltool')
+source=(https://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz)
+md5sums=('1bbd57f5b34e13ef31152c9ecb31ef68')
+
+build() {
+  # GTK+ 2 version
+  [ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
+  cd gtk2
+  ./configure --prefix=/usr
+  make
+
+  cd "$srcdir"
+  # GTK+ 3 version
+  [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
+  cd gtk3
+  ./configure --prefix=/usr --enable-gtk3
+  make
+}
+
+package_lxmusic() {
+  groups=('lxde')
+  depends=('gtk2' 'libnotify' 'xmms2')
+
+  cd gtk2
+  make DESTDIR="$pkgdir" install
+}
+
+package_lxmusic-gtk3() {
+  groups=('lxde-gtk3')
+  pkgdesc+=' (GTK+ 3 version)'
+  depends=('gtk3' 'libnotify' 'xmms2')
+  conflicts=('lxmusic')
+
+  cd gtk3
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-12-07 18:43:48 UTC (rev 198366)
+++ community-x86_64/PKGBUILD   2016-12-07 18:43:57 UTC (rev 198367)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Marcus Schulderinsky 
-
-pkgbase=lxmusic
-pkgname=(lxmusic lxmusic-gtk3)
-pkgver=0.4.7
-pkgrel=1
-pkgdesc='Lightweight XMMS2 client'
-arch=('i686' 'x86_64')
-url="http://lxde.org/";
-license=('GPL')
-depends=('gtk2' 'gtk3' 'libnotify' 'xmms2')
-makedepends=('intltool')
-source=(http://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz)
-md5sums=('1bbd57f5b34e13ef31152c9ecb31ef68')
-
-build() {
-  # GTK+ 2 version
-  [ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
-  cd gtk2
-  ./configure --prefix=/usr
-  make
-
-  cd "$srcdir"
-  # GTK+ 3 version
-  [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
-  cd gtk3
-  ./configure --prefix=/usr --enable-gtk3
-  make
-}
-
-package_lxmusic() {
-  groups=('lxde')
-  depends=('gtk2' 'libnotify' 'xmms2')
-
-  cd gtk2
-  make DESTDIR="$pkgdir" install
-}
-
-package_lxmusic-gtk3() {
-  groups=('lxde-gtk3')
-  pkgdesc+=' (GTK+ 3 version)'
-  depends=('gtk3' 'libnotify' 'xmms2')
-  conflicts=('lxmusic')
-
-  cd gtk3
-  make DESTDIR="$pkgdir" install
-}

Copied: lxmusic/repos/community-x86_64/PKGBUILD (from rev 198366, 
lxmusic/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (r

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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:43:48
  Author: bgyorgy
Revision: 198366

Use https source

Modified:
  lxmusic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 18:43:18 UTC (rev 198365)
+++ PKGBUILD2016-12-07 18:43:48 UTC (rev 198366)
@@ -13,7 +13,7 @@
 license=('GPL')
 depends=('gtk2' 'gtk3' 'libnotify' 'xmms2')
 makedepends=('intltool')
-source=(http://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz)
+source=(https://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz)
 md5sums=('1bbd57f5b34e13ef31152c9ecb31ef68')
 
 build() {


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:43:18
  Author: bgyorgy
Revision: 198365

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

Added:
  lxmenu-data/repos/community-i686/
  lxmenu-data/repos/community-i686/PKGBUILD
(from rev 198364, lxmenu-data/trunk/PKGBUILD)
  lxmenu-data/repos/community-x86_64/
  lxmenu-data/repos/community-x86_64/PKGBUILD
(from rev 198364, lxmenu-data/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   26 ++
 community-x86_64/PKGBUILD |   26 ++
 2 files changed, 52 insertions(+)

Copied: lxmenu-data/repos/community-i686/PKGBUILD (from rev 198364, 
lxmenu-data/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-07 18:43:18 UTC (rev 198365)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Angel Velasquez 
+# Contributor: Juergen Hoetzel 
+
+pkgname=lxmenu-data
+pkgver=0.1.5
+pkgrel=1
+pkgdesc="Freedesktop.org desktop menus for LXDE"
+arch=('any')
+license=('GPL2')
+url="http://lxde.org/";
+source=("https://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz";)
+makedepends=('intltool')
+sha256sums=('9fe3218d2ef50b91190162f4f923d6524c364849f87bcda8b4ed8eb59b80bab8')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Copied: lxmenu-data/repos/community-x86_64/PKGBUILD (from rev 198364, 
lxmenu-data/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-12-07 18:43:18 UTC (rev 198365)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Angel Velasquez 
+# Contributor: Juergen Hoetzel 
+
+pkgname=lxmenu-data
+pkgver=0.1.5
+pkgrel=1
+pkgdesc="Freedesktop.org desktop menus for LXDE"
+arch=('any')
+license=('GPL2')
+url="http://lxde.org/";
+source=("https://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz";)
+makedepends=('intltool')
+sha256sums=('9fe3218d2ef50b91190162f4f923d6524c364849f87bcda8b4ed8eb59b80bab8')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:43:09
  Author: bgyorgy
Revision: 198364

Use https source

Modified:
  lxmenu-data/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 18:42:36 UTC (rev 198363)
+++ PKGBUILD2016-12-07 18:43:09 UTC (rev 198364)
@@ -10,7 +10,7 @@
 arch=('any')
 license=('GPL2')
 url="http://lxde.org/";
-source=("http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz";)
+source=("https://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz";)
 makedepends=('intltool')
 sha256sums=('9fe3218d2ef50b91190162f4f923d6524c364849f87bcda8b4ed8eb59b80bab8')
 


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:42:03
  Author: bgyorgy
Revision: 198361

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-07 18:41:53 UTC (rev 198360)
+++ community-i686/PKGBUILD 2016-12-07 18:42:03 UTC (rev 198361)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Filipp "Scorp" Andjelo 
-
-pkgbase=lxinput
-pkgname=(lxinput lxinput-gtk3)
-pkgver=0.3.5
-pkgrel=1
-pkgdesc="Small program to configure keyboard and mouse for LXDE"
-arch=('i686' 'x86_64')
-url="http://lxde.org/";
-license=('GPL')
-groups=('lxde')
-depends=('gtk2' 'gtk3')
-makedepends=('intltool')
-source=(http://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz)
-sha256sums=('4e8f778a65a4afe2365b47e7899358aa4fab535343aa62c72a3cdc4cac1f6e88')
-
-build() {
-  # GTK+ 2 version
-  [ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
-  cd gtk2
-  ./configure --prefix=/usr
-  make
-
-  cd "$srcdir"
-  # GTK+ 3 version
-  [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
-  cd gtk3
-  ./configure --prefix=/usr --enable-gtk3
-  make
-}
-
-package_lxinput() {
-  groups=('lxde')
-  depends=('gtk2')
-
-  cd gtk2
-  make DESTDIR="$pkgdir" install
-}
-
-package_lxinput-gtk3() {
-  groups=('lxde-gtk3')
-  pkgdesc+=' (GTK+ 3 version)'
-  depends=('gtk3')
-  conflicts=('lxinput')
-
-  cd gtk3
-  make DESTDIR="$pkgdir" install
-}

Copied: lxinput/repos/community-i686/PKGBUILD (from rev 198360, 
lxinput/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-07 18:42:03 UTC (rev 198361)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Filipp "Scorp" Andjelo 
+
+pkgbase=lxinput
+pkgname=(lxinput lxinput-gtk3)
+pkgver=0.3.5
+pkgrel=1
+pkgdesc="Small program to configure keyboard and mouse for LXDE"
+arch=('i686' 'x86_64')
+url="http://lxde.org/";
+license=('GPL')
+groups=('lxde')
+depends=('gtk2' 'gtk3')
+makedepends=('intltool')
+source=(https://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz)
+sha256sums=('4e8f778a65a4afe2365b47e7899358aa4fab535343aa62c72a3cdc4cac1f6e88')
+
+build() {
+  # GTK+ 2 version
+  [ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
+  cd gtk2
+  ./configure --prefix=/usr
+  make
+
+  cd "$srcdir"
+  # GTK+ 3 version
+  [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
+  cd gtk3
+  ./configure --prefix=/usr --enable-gtk3
+  make
+}
+
+package_lxinput() {
+  groups=('lxde')
+  depends=('gtk2')
+
+  cd gtk2
+  make DESTDIR="$pkgdir" install
+}
+
+package_lxinput-gtk3() {
+  groups=('lxde-gtk3')
+  pkgdesc+=' (GTK+ 3 version)'
+  depends=('gtk3')
+  conflicts=('lxinput')
+
+  cd gtk3
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-12-07 18:41:53 UTC (rev 198360)
+++ community-x86_64/PKGBUILD   2016-12-07 18:42:03 UTC (rev 198361)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Filipp "Scorp" Andjelo 
-
-pkgbase=lxinput
-pkgname=(lxinput lxinput-gtk3)
-pkgver=0.3.5
-pkgrel=1
-pkgdesc="Small program to configure keyboard and mouse for LXDE"
-arch=('i686' 'x86_64')
-url="http://lxde.org/";
-license=('GPL')
-groups=('lxde')
-depends=('gtk2' 'gtk3')
-makedepends=('intltool')
-source=(http://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz)
-sha256sums=('4e8f778a65a4afe2365b47e7899358aa4fab535343aa62c72a3cdc4cac1f6e88')
-
-build() {
-  # GTK+ 2 version
-  [ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
-  cd gtk2
-  ./configure --prefix=/usr
-  make
-
-  cd "$srcdir"
-  # GTK+ 3 version
-  [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
-  cd gtk3
-  ./configure --prefix=/usr --enable-gtk3
-  make
-}
-
-package_lxinput() {
-  groups=('lxde')
-  depends=('gtk2')
-
-  cd gtk2
-  make DESTDIR="$pkgdir" install
-}
-
-package_lxinput-gtk3() {
-  groups=('lxde-gtk3')
-  pkgdesc+=' (GTK+ 3 version)'
-  depends=('gtk3')
-  conflicts=('lxinput')
-
-  cd gtk3
-  make DESTDIR="$pkgdir" install
-}

Copied: lxinput/repos/community-x86_64/PKGBUILD (from rev 198360, 
lxinput/trunk/PKGBUILD)
==

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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:42:36
  Author: bgyorgy
Revision: 198363

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-07 18:42:26 UTC (rev 198362)
+++ community-i686/PKGBUILD 2016-12-07 18:42:36 UTC (rev 198363)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor:  Bartłomiej Piotrowski 
-# Contributor: Angel 'angvp' Velasquez  
-# Contributor: Geoffroy Carrier 
-
-pkgname=lxlauncher
-pkgver=0.2.5
-pkgrel=1
-pkgdesc='Open source clone of the Asus launcher for EeePC'
-arch=('i686' 'x86_64')
-license=('GPL2')
-url='http://lxde.org/'
-groups=('lxde')
-depends=('gtk2' 'startup-notification' 'lxmenu-data' 'menu-cache')
-makedepends=('intltool')
-backup=('etc/xdg/lxlauncher/gtkrc' 'etc/xdg/lxlauncher/settings.conf')
-source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
-md5sums=('94a7a36af92f8409365b6a25b6904eeb')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --sysconfdir=/etc --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: lxlauncher/repos/community-i686/PKGBUILD (from rev 198362, 
lxlauncher/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-07 18:42:36 UTC (rev 198363)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Angel 'angvp' Velasquez  
+# Contributor: Geoffroy Carrier 
+
+pkgname=lxlauncher
+pkgver=0.2.5
+pkgrel=1
+pkgdesc='Open source clone of the Asus launcher for EeePC'
+arch=('i686' 'x86_64')
+license=('GPL2')
+url='http://lxde.org/'
+groups=('lxde')
+depends=('gtk2' 'startup-notification' 'lxmenu-data' 'menu-cache')
+makedepends=('intltool')
+backup=('etc/xdg/lxlauncher/gtkrc' 'etc/xdg/lxlauncher/settings.conf')
+source=(https://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
+md5sums=('94a7a36af92f8409365b6a25b6904eeb')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --sysconfdir=/etc --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-12-07 18:42:26 UTC (rev 198362)
+++ community-x86_64/PKGBUILD   2016-12-07 18:42:36 UTC (rev 198363)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor:  Bartłomiej Piotrowski 
-# Contributor: Angel 'angvp' Velasquez  
-# Contributor: Geoffroy Carrier 
-
-pkgname=lxlauncher
-pkgver=0.2.5
-pkgrel=1
-pkgdesc='Open source clone of the Asus launcher for EeePC'
-arch=('i686' 'x86_64')
-license=('GPL2')
-url='http://lxde.org/'
-groups=('lxde')
-depends=('gtk2' 'startup-notification' 'lxmenu-data' 'menu-cache')
-makedepends=('intltool')
-backup=('etc/xdg/lxlauncher/gtkrc' 'etc/xdg/lxlauncher/settings.conf')
-source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
-md5sums=('94a7a36af92f8409365b6a25b6904eeb')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --sysconfdir=/etc --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: lxlauncher/repos/community-x86_64/PKGBUILD (from rev 198362, 
lxlauncher/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-12-07 18:42:36 UTC (rev 198363)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Angel 'angvp' Velasquez  
+# Contributor: Geoffroy Carrier 
+
+pkgname=lxlauncher
+pkgver=0.2.5
+pkgrel=1
+pkgdesc='Open source clone of the Asus launcher for EeePC'
+arch=('i686' 'x86_64')
+license=('GPL2')
+url='http://lxde.org/'
+groups=('lxde')
+depends=('gtk2' 'startup-notification' 'lxmenu-data' 'menu-cache')
+makedepends=('intltool')
+backup=('etc/xdg/lxlauncher/gtkrc' 'etc/xdg/lxlauncher/settings.conf')
+source=(https://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
+md5sums=('94a7a36af92f8409365b6a25b6904eeb')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --sysconfdir=/etc --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgv

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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:42:26
  Author: bgyorgy
Revision: 198362

Use https source

Modified:
  lxlauncher/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 18:42:03 UTC (rev 198361)
+++ PKGBUILD2016-12-07 18:42:26 UTC (rev 198362)
@@ -15,7 +15,7 @@
 depends=('gtk2' 'startup-notification' 'lxmenu-data' 'menu-cache')
 makedepends=('intltool')
 backup=('etc/xdg/lxlauncher/gtkrc' 'etc/xdg/lxlauncher/settings.conf')
-source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
+source=(https://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
 md5sums=('94a7a36af92f8409365b6a25b6904eeb')
 
 build() {


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:41:53
  Author: bgyorgy
Revision: 198360

Use https source

Modified:
  lxinput/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 18:41:21 UTC (rev 198359)
+++ PKGBUILD2016-12-07 18:41:53 UTC (rev 198360)
@@ -14,7 +14,7 @@
 groups=('lxde')
 depends=('gtk2' 'gtk3')
 makedepends=('intltool')
-source=(http://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz)
+source=(https://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz)
 sha256sums=('4e8f778a65a4afe2365b47e7899358aa4fab535343aa62c72a3cdc4cac1f6e88')
 
 build() {


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:41:21
  Author: bgyorgy
Revision: 198359

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

Added:
  lxdm/repos/community-i686/PKGBUILD
(from rev 198358, lxdm/trunk/PKGBUILD)
  lxdm/repos/community-i686/Xsession
(from rev 198358, lxdm/trunk/Xsession)
  lxdm/repos/community-i686/default-config.patch
(from rev 198358, lxdm/trunk/default-config.patch)
  lxdm/repos/community-i686/git-fixes.patch
(from rev 198358, lxdm/trunk/git-fixes.patch)
  lxdm/repos/community-i686/lxdm.install
(from rev 198358, lxdm/trunk/lxdm.install)
  lxdm/repos/community-i686/lxdm.pam
(from rev 198358, lxdm/trunk/lxdm.pam)
  lxdm/repos/community-x86_64/PKGBUILD
(from rev 198358, lxdm/trunk/PKGBUILD)
  lxdm/repos/community-x86_64/Xsession
(from rev 198358, lxdm/trunk/Xsession)
  lxdm/repos/community-x86_64/default-config.patch
(from rev 198358, lxdm/trunk/default-config.patch)
  lxdm/repos/community-x86_64/git-fixes.patch
(from rev 198358, lxdm/trunk/git-fixes.patch)
  lxdm/repos/community-x86_64/lxdm.install
(from rev 198358, lxdm/trunk/lxdm.install)
  lxdm/repos/community-x86_64/lxdm.pam
(from rev 198358, lxdm/trunk/lxdm.pam)
Deleted:
  lxdm/repos/community-i686/PKGBUILD
  lxdm/repos/community-i686/Xsession
  lxdm/repos/community-i686/default-config.patch
  lxdm/repos/community-i686/git-fixes.patch
  lxdm/repos/community-i686/lxdm.install
  lxdm/repos/community-i686/lxdm.pam
  lxdm/repos/community-x86_64/PKGBUILD
  lxdm/repos/community-x86_64/Xsession
  lxdm/repos/community-x86_64/default-config.patch
  lxdm/repos/community-x86_64/git-fixes.patch
  lxdm/repos/community-x86_64/lxdm.install
  lxdm/repos/community-x86_64/lxdm.pam

---+
 /PKGBUILD |  168 
 /Xsession |  142 +++
 /default-config.patch |   50 +
 /git-fixes.patch  |  142 +++
 /lxdm.install |   24 
 /lxdm.pam |   14 ++
 community-i686/PKGBUILD   |   84 
 community-i686/Xsession   |   71 -
 community-i686/default-config.patch   |   25 
 community-i686/git-fixes.patch|   71 -
 community-i686/lxdm.install   |   12 --
 community-i686/lxdm.pam   |7 -
 community-x86_64/PKGBUILD |   84 
 community-x86_64/Xsession |   71 -
 community-x86_64/default-config.patch |   25 
 community-x86_64/git-fixes.patch  |   71 -
 community-x86_64/lxdm.install |   12 --
 community-x86_64/lxdm.pam |7 -
 18 files changed, 540 insertions(+), 540 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-07 18:41:08 UTC (rev 198358)
+++ community-i686/PKGBUILD 2016-12-07 18:41:21 UTC (rev 198359)
@@ -1,84 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: AndyRTR 
-# Contributor: kiefer 
-
-pkgbase=lxdm
-pkgname=(lxdm lxdm-gtk3)
-pkgver=0.5.3
-pkgrel=3
-pkgdesc='Lightweight X11 Display Manager'
-arch=('i686' 'x86_64')
-url="http://lxde.org/";
-license=('GPL')
-depends=('gtk2' 'gtk3' 'xorg-server')
-makedepends=('intltool' 'iso-codes')
-optdepends=('iso-codes: show language names in language chooser'
-'librsvg: display the default background')
-install=$pkgbase.install
-backup=('etc/lxdm/lxdm.conf' 'etc/pam.d/lxdm' 'etc/lxdm/Xsession'
-'etc/lxdm/PreLogin' 'etc/lxdm/LoginReady' 'etc/lxdm/PostLogin'
-'etc/lxdm/PostLogout' 'etc/lxdm/PreReboot' 'etc/lxdm/PreShutdown')
-source=(http://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz
-git-fixes.patch
-default-config.patch
-lxdm.pam
-Xsession)
-md5sums=('061caae432634e6db38bbdc84bc6ffa0'
- '007fc1b0ea74500ffb0817a2fa2c76e8'
- 'fb2fb99acb11b6dfdb8d5fd72605b8da'
- 'c941ef896248bc7c03901b513490425c'
- '6ff73570368501a06ee7badc8e415d0a')
-
-prepare(){
-  cd $pkgbase-$pkgver
-
-  # Apply fixes from git
-  patch -Np1 -i ../git-fixes.patch
-
-  # Adjust Arch-specific settings
-  patch -Np1 -i ../default-config.patch
-
-  # Use our custom pam and Xsession files
-  cp ../lxdm.pam pam/lxdm
-  cp ../Xsession data/Xsession
-}
-
-build() {
-  # GTK+ 2 version
-  [ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
-  cd gtk2
-  ./configure --prefix=/usr --sbindir=/usr/bin --libexecdir=/usr/lib/lxdm \
-  --sysconfdir=/etc --localstatedir=/var
-  make
-
-  cd "$srcdir"
-  # GTK+ 3 version
-  [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
-  cd gtk3
-  ./configure --prefix=/usr --sbindir=/usr/bin --libexecdir=/usr/lib/lxdm \
-  --sysconfdir=/etc --localstatedir=/var --

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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:41:08
  Author: bgyorgy
Revision: 198358

Use https source

Modified:
  lxdm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 18:40:18 UTC (rev 198357)
+++ PKGBUILD2016-12-07 18:41:08 UTC (rev 198358)
@@ -20,7 +20,7 @@
 backup=('etc/lxdm/lxdm.conf' 'etc/pam.d/lxdm' 'etc/lxdm/Xsession'
 'etc/lxdm/PreLogin' 'etc/lxdm/LoginReady' 'etc/lxdm/PostLogin'
 'etc/lxdm/PostLogout' 'etc/lxdm/PreReboot' 'etc/lxdm/PreShutdown')
-source=(http://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz
+source=(https://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz
 git-fixes.patch
 default-config.patch
 lxdm.pam


[arch-commits] Commit in lxde-icon-theme/repos/community-any (PKGBUILD PKGBUILD)

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:40:18
  Author: bgyorgy
Revision: 198357

archrelease: copy trunk to community-any

Added:
  lxde-icon-theme/repos/community-any/PKGBUILD
(from rev 198356, lxde-icon-theme/trunk/PKGBUILD)
Deleted:
  lxde-icon-theme/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-07 18:40:09 UTC (rev 198356)
+++ PKGBUILD2016-12-07 18:40:18 UTC (rev 198357)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Angel Velasquez 
-# Contributor: Juergen Hoetzel 
-
-pkgname=lxde-icon-theme
-pkgver=0.5.1
-pkgrel=3
-pkgdesc="LXDE default icon theme based on nuoveXT2"
-arch=('any')
-url="http://lxde.org";
-license=('GPL')
-groups=('lxde' 'lxde-gtk3')
-depends=('gtk-update-icon-cache')
-source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
-md5sums=('7467133275edbbcc79349379235d4411')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: lxde-icon-theme/repos/community-any/PKGBUILD (from rev 198356, 
lxde-icon-theme/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-07 18:40:18 UTC (rev 198357)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Angel Velasquez 
+# Contributor: Juergen Hoetzel 
+
+pkgname=lxde-icon-theme
+pkgver=0.5.1
+pkgrel=3
+pkgdesc="LXDE default icon theme based on nuoveXT2"
+arch=('any')
+url="http://lxde.org";
+license=('GPL')
+groups=('lxde' 'lxde-gtk3')
+depends=('gtk-update-icon-cache')
+source=(https://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
+md5sums=('7467133275edbbcc79349379235d4411')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in lxde-icon-theme/trunk (PKGBUILD)

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:40:09
  Author: bgyorgy
Revision: 198356

Use https source

Modified:
  lxde-icon-theme/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 18:39:08 UTC (rev 198355)
+++ PKGBUILD2016-12-07 18:40:09 UTC (rev 198356)
@@ -12,7 +12,7 @@
 license=('GPL')
 groups=('lxde' 'lxde-gtk3')
 depends=('gtk-update-icon-cache')
-source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
+source=(https://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
 md5sums=('7467133275edbbcc79349379235d4411')
 
 build() {


[arch-commits] Commit in lxappearance-obconf-gtk3/repos (4 files)

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:39:08
  Author: bgyorgy
Revision: 198355

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

Added:
  lxappearance-obconf-gtk3/repos/community-i686/PKGBUILD
(from rev 198354, lxappearance-obconf-gtk3/trunk/PKGBUILD)
  lxappearance-obconf-gtk3/repos/community-x86_64/PKGBUILD
(from rev 198354, lxappearance-obconf-gtk3/trunk/PKGBUILD)
Deleted:
  lxappearance-obconf-gtk3/repos/community-i686/PKGBUILD
  lxappearance-obconf-gtk3/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-07 18:38:57 UTC (rev 198354)
+++ community-i686/PKGBUILD 2016-12-07 18:39:08 UTC (rev 198355)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=lxappearance-obconf-gtk3
-_pkgname=lxappearance-obconf
-pkgver=0.2.3
-pkgrel=1
-pkgdesc='Plugin for LXAppearance to configure Openbox (GTK+ 3 version)'
-arch=('i686' 'x86_64')
-license=('GPL2')
-url='http://lxde.org/'
-groups=('lxde-gtk3')
-depends=('lxappearance-gtk3' 'openbox' 'libobrender.so')
-makedepends=('intltool')
-conflicts=($_pkgname)
-source=(http://downloads.sourceforge.net/lxde/$_pkgname-$pkgver.tar.xz)
-md5sums=('ae0076d489aa786f5d573f7ff592a4ab')
-
-prepare() {
-  cd $_pkgname-$pkgver
-
-  # Hide theme preview as it's broken with GTK+ 3
-  # https://sourceforge.net/p/lxde/bugs/768/
-  sed -i /frame1/,+19d src/obconf.glade
-}
-
-build() {
-  cd $_pkgname-$pkgver
-  ./configure --prefix=/usr --enable-gtk3
-
-  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: lxappearance-obconf-gtk3/repos/community-i686/PKGBUILD (from rev 
198354, lxappearance-obconf-gtk3/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-07 18:39:08 UTC (rev 198355)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=lxappearance-obconf-gtk3
+_pkgname=lxappearance-obconf
+pkgver=0.2.3
+pkgrel=1
+pkgdesc='Plugin for LXAppearance to configure Openbox (GTK+ 3 version)'
+arch=('i686' 'x86_64')
+license=('GPL2')
+url='http://lxde.org/'
+groups=('lxde-gtk3')
+depends=('lxappearance-gtk3' 'openbox' 'libobrender.so')
+makedepends=('intltool')
+conflicts=($_pkgname)
+source=(https://downloads.sourceforge.net/lxde/$_pkgname-$pkgver.tar.xz)
+md5sums=('ae0076d489aa786f5d573f7ff592a4ab')
+
+prepare() {
+  cd $_pkgname-$pkgver
+
+  # Hide theme preview as it's broken with GTK+ 3
+  # https://sourceforge.net/p/lxde/bugs/768/
+  sed -i /frame1/,+19d src/obconf.glade
+}
+
+build() {
+  cd $_pkgname-$pkgver
+  ./configure --prefix=/usr --enable-gtk3
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-12-07 18:38:57 UTC (rev 198354)
+++ community-x86_64/PKGBUILD   2016-12-07 18:39:08 UTC (rev 198355)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=lxappearance-obconf-gtk3
-_pkgname=lxappearance-obconf
-pkgver=0.2.3
-pkgrel=1
-pkgdesc='Plugin for LXAppearance to configure Openbox (GTK+ 3 version)'
-arch=('i686' 'x86_64')
-license=('GPL2')
-url='http://lxde.org/'
-groups=('lxde-gtk3')
-depends=('lxappearance-gtk3' 'openbox' 'libobrender.so')
-makedepends=('intltool')
-conflicts=($_pkgname)
-source=(http://downloads.sourceforge.net/lxde/$_pkgname-$pkgver.tar.xz)
-md5sums=('ae0076d489aa786f5d573f7ff592a4ab')
-
-prepare() {
-  cd $_pkgname-$pkgver
-
-  # Hide theme preview as it's broken with GTK+ 3
-  # https://sourceforge.net/p/lxde/bugs/768/
-  sed -i /frame1/,+19d src/obconf.glade
-}
-
-build() {
-  cd $_pkgname-$pkgver
-  ./configure --prefix=/usr --enable-gtk3
-
-  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: lxappearance-obconf-gtk3/repos/community-x86_64/PKGBUILD (from rev 
198354, lxappearance-obconf-gtk3/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUI

[arch-commits] Commit in lxappearance-obconf-gtk3/trunk (PKGBUILD)

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:38:57
  Author: bgyorgy
Revision: 198354

Use https source

Modified:
  lxappearance-obconf-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 18:38:11 UTC (rev 198353)
+++ PKGBUILD2016-12-07 18:38:57 UTC (rev 198354)
@@ -14,7 +14,7 @@
 depends=('lxappearance-gtk3' 'openbox' 'libobrender.so')
 makedepends=('intltool')
 conflicts=($_pkgname)
-source=(http://downloads.sourceforge.net/lxde/$_pkgname-$pkgver.tar.xz)
+source=(https://downloads.sourceforge.net/lxde/$_pkgname-$pkgver.tar.xz)
 md5sums=('ae0076d489aa786f5d573f7ff592a4ab')
 
 prepare() {


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

2016-12-07 Thread Laurent Carlier
Date: Wednesday, December 7, 2016 @ 18:38:11
  Author: lcarlier
Revision: 282929

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

Added:
  ocl-icd/repos/extra-i686/PKGBUILD
(from rev 282928, ocl-icd/trunk/PKGBUILD)
  ocl-icd/repos/extra-x86_64/PKGBUILD
(from rev 282928, ocl-icd/trunk/PKGBUILD)
Deleted:
  ocl-icd/repos/extra-i686/PKGBUILD
  ocl-icd/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   84 
 extra-i686/PKGBUILD   |   41 ---
 extra-x86_64/PKGBUILD |   41 ---
 3 files changed, 84 insertions(+), 82 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-12-07 18:37:49 UTC (rev 282928)
+++ extra-i686/PKGBUILD 2016-12-07 18:38:11 UTC (rev 282929)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky 
-
-pkgname=ocl-icd
-pkgver=2.2.9
-_pkgver=716
-pkgrel=1
-pkgdesc="OpenCL ICD Bindings"
-arch=('i686' 'x86_64')
-url="https://forge.imag.fr/projects/ocl-icd/";
-license=('BSD')
-depends=('glibc')
-makedepends=('ruby' 'mesa' 'opencl-headers>=2.1')
-checkdepends=()
-provides=('libcl' 'opencl-icd-loader')
-conflicts=('libcl')
-replaces=('libcl')
-source=(http://forge.imag.fr/frs/download.php/$_pkgver/$pkgname-$pkgver.tar.gz)
-md5sums=('7dab1a9531ea79c19a414a9ee229504e')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-# fail in i686
-#check() {
-#  cd "$srcdir/$pkgname-$pkgver"
-#  make -k check
-#}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
-
-  install -m755 -d "$pkgdir/usr/share/licenses/ocl-icd"
-  install -m644 "$srcdir/$pkgname-$pkgver/COPYING" 
"${pkgdir}/usr/share/licenses/ocl-icd/"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ocl-icd/repos/extra-i686/PKGBUILD (from rev 282928, 
ocl-icd/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-12-07 18:38:11 UTC (rev 282929)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+
+pkgname=ocl-icd
+pkgver=2.2.9
+_pkgver=716
+pkgrel=2
+pkgdesc="OpenCL ICD Bindings"
+arch=('i686' 'x86_64')
+url="https://forge.imag.fr/projects/ocl-icd/";
+license=('BSD')
+depends=('glibc')
+makedepends=('ruby' 'mesa' 'opencl-headers>=2.1')
+checkdepends=()
+provides=('opencl-icd-loader')
+conflicts=('libcl')
+replaces=('libcl')
+optdepends=('opencl-driver: packaged opencl driver')
+source=(https://forge.imag.fr/frs/download.php/$_pkgver/$pkgname-$pkgver.tar.gz)
+md5sums=('7dab1a9531ea79c19a414a9ee229504e')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+# fail in i686
+#check() {
+#  cd "$srcdir/$pkgname-$pkgver"
+#  make -k check
+#}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+
+  install -m755 -d "$pkgdir/usr/share/licenses/ocl-icd"
+  install -m644 "$srcdir/$pkgname-$pkgver/COPYING" 
"${pkgdir}/usr/share/licenses/ocl-icd/"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-12-07 18:37:49 UTC (rev 282928)
+++ extra-x86_64/PKGBUILD   2016-12-07 18:38:11 UTC (rev 282929)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky 
-
-pkgname=ocl-icd
-pkgver=2.2.9
-_pkgver=716
-pkgrel=1
-pkgdesc="OpenCL ICD Bindings"
-arch=('i686' 'x86_64')
-url="https://forge.imag.fr/projects/ocl-icd/";
-license=('BSD')
-depends=('glibc')
-makedepends=('ruby' 'mesa' 'opencl-headers>=2.1')
-checkdepends=()
-provides=('libcl' 'opencl-icd-loader')
-conflicts=('libcl')
-replaces=('libcl')
-source=(http://forge.imag.fr/frs/download.php/$_pkgver/$pkgname-$pkgver.tar.gz)
-md5sums=('7dab1a9531ea79c19a414a9ee229504e')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-# fail in i686
-#check() {
-#  cd "$srcdir/$pkgname-$pkgver"
-#  make -k check
-#}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
-
-  install -m755 -d "$pkgdir/usr/share/licenses/ocl-icd"
-  install -m644 "$srcdir/$pkgname-$pkgver/COPYING" 
"${pkgdir}/usr/share/licenses/ocl-icd/"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ocl-icd/repos/extra-x86_64/PKGBUILD (from rev 282928, 
ocl-icd/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-12-07 18:38:11 UTC (rev 282929)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+
+pkgname=ocl-icd
+pkgver=2.2.9
+_pkgver=716
+pkgrel=2
+pkgdesc="OpenCL ICD Bindings"
+arch=('i686' 'x86_64')
+url="https://forge.imag.fr/projects/ocl-icd/";
+license=('BSD')
+depends=('glibc')
+makedepends=('ruby' 'mesa' 'opencl-headers>=2.1')
+checkdepends=()
+provides=('opencl-icd-loader')
+conflicts=('libcl')
+repla

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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:38:11
  Author: bgyorgy
Revision: 198353

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

Added:
  lxappearance-obconf/repos/community-i686/PKGBUILD
(from rev 198352, lxappearance-obconf/trunk/PKGBUILD)
  lxappearance-obconf/repos/community-x86_64/PKGBUILD
(from rev 198352, lxappearance-obconf/trunk/PKGBUILD)
Deleted:
  lxappearance-obconf/repos/community-i686/PKGBUILD
  lxappearance-obconf/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-07 18:37:12 UTC (rev 198352)
+++ community-i686/PKGBUILD 2016-12-07 18:38:11 UTC (rev 198353)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=lxappearance-obconf
-pkgver=0.2.3
-pkgrel=1
-pkgdesc='Plugin for LXAppearance to configure Openbox'
-arch=('i686' 'x86_64')
-license=('GPL2')
-url='http://lxde.org/'
-groups=('lxde')
-depends=('lxappearance' 'openbox' 'libobrender.so')
-makedepends=('intltool')
-source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
-md5sums=('ae0076d489aa786f5d573f7ff592a4ab')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-
-  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: lxappearance-obconf/repos/community-i686/PKGBUILD (from rev 198352, 
lxappearance-obconf/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-07 18:38:11 UTC (rev 198353)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=lxappearance-obconf
+pkgver=0.2.3
+pkgrel=1
+pkgdesc='Plugin for LXAppearance to configure Openbox'
+arch=('i686' 'x86_64')
+license=('GPL2')
+url='http://lxde.org/'
+groups=('lxde')
+depends=('lxappearance' 'openbox' 'libobrender.so')
+makedepends=('intltool')
+source=(https://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
+md5sums=('ae0076d489aa786f5d573f7ff592a4ab')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-12-07 18:37:12 UTC (rev 198352)
+++ community-x86_64/PKGBUILD   2016-12-07 18:38:11 UTC (rev 198353)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=lxappearance-obconf
-pkgver=0.2.3
-pkgrel=1
-pkgdesc='Plugin for LXAppearance to configure Openbox'
-arch=('i686' 'x86_64')
-license=('GPL2')
-url='http://lxde.org/'
-groups=('lxde')
-depends=('lxappearance' 'openbox' 'libobrender.so')
-makedepends=('intltool')
-source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
-md5sums=('ae0076d489aa786f5d573f7ff592a4ab')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-
-  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: lxappearance-obconf/repos/community-x86_64/PKGBUILD (from rev 198352, 
lxappearance-obconf/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-12-07 18:38:11 UTC (rev 198353)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=lxappearance-obconf
+pkgver=0.2.3
+pkgrel=1
+pkgdesc='Plugin for LXAppearance to configure Openbox'
+arch=('i686' 'x86_64')
+license=('GPL2')
+url='http://lxde.org/'
+groups=('lxde')
+depends=('lxappearance' 'openbox' 'libobrender.so')
+makedepends=('intltool')
+source=(https://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
+md5sums=('ae0076d489aa786f5d573f7ff592a4ab')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2016-12-07 Thread Laurent Carlier
Date: Wednesday, December 7, 2016 @ 18:37:49
  Author: lcarlier
Revision: 282928

upgpkg: ocl-icd 2.2.9-2

now depends on the virtual opencl-driver

Modified:
  ocl-icd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 17:23:24 UTC (rev 282927)
+++ PKGBUILD2016-12-07 18:37:49 UTC (rev 282928)
@@ -4,7 +4,7 @@
 pkgname=ocl-icd
 pkgver=2.2.9
 _pkgver=716
-pkgrel=1
+pkgrel=2
 pkgdesc="OpenCL ICD Bindings"
 arch=('i686' 'x86_64')
 url="https://forge.imag.fr/projects/ocl-icd/";
@@ -12,10 +12,11 @@
 depends=('glibc')
 makedepends=('ruby' 'mesa' 'opencl-headers>=2.1')
 checkdepends=()
-provides=('libcl' 'opencl-icd-loader')
+provides=('opencl-icd-loader')
 conflicts=('libcl')
 replaces=('libcl')
-source=(http://forge.imag.fr/frs/download.php/$_pkgver/$pkgname-$pkgver.tar.gz)
+optdepends=('opencl-driver: packaged opencl driver')
+source=(https://forge.imag.fr/frs/download.php/$_pkgver/$pkgname-$pkgver.tar.gz)
 md5sums=('7dab1a9531ea79c19a414a9ee229504e')
 
 build() {


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:37:12
  Author: bgyorgy
Revision: 198352

Use https source

Modified:
  lxappearance-obconf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 18:36:47 UTC (rev 198351)
+++ PKGBUILD2016-12-07 18:37:12 UTC (rev 198352)
@@ -12,7 +12,7 @@
 groups=('lxde')
 depends=('lxappearance' 'openbox' 'libobrender.so')
 makedepends=('intltool')
-source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
+source=(https://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
 md5sums=('ae0076d489aa786f5d573f7ff592a4ab')
 
 build() {


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:36:47
  Author: bgyorgy
Revision: 198351

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-07 18:36:36 UTC (rev 198350)
+++ community-i686/PKGBUILD 2016-12-07 18:36:47 UTC (rev 198351)
@@ -1,51 +0,0 @@
-#$Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Angel Velasquez 
-# Contributor: Geoffroy Carrier 
-
-pkgbase=lxappearance
-pkgname=(lxappearance lxappearance-gtk3)
-pkgver=0.6.2
-pkgrel=1
-pkgdesc='Feature-rich GTK+ theme switcher of the LXDE Desktop'
-arch=('i686' 'x86_64')
-license=('GPL2')
-url='http://lxde.org/'
-depends=('gtk2' 'gtk3')
-makedepends=('intltool' 'dbus-glib')
-source=(http://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz)
-md5sums=('21ee79c7686a80efddaa1b7928f51e21')
-
-build() {
-  # GTK+ 2 version
-  [ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
-  cd gtk2
-  ./configure --sysconfdir=/etc --prefix=/usr --enable-dbus
-  make
-
-  cd "$srcdir"
-  # GTK+ 3 version
-  [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
-  cd gtk3
-  ./configure --sysconfdir=/etc --prefix=/usr --enable-dbus --enable-gtk3
-  make
-}
-
-package_lxappearance() {
-  groups=('lxde')
-  depends=('gtk2')
-
-  cd gtk2
-  make DESTDIR="$pkgdir" install
-}
-
-package_lxappearance-gtk3() {
-  groups=('lxde-gtk3')
-  pkgdesc+=' (GTK+ 3 version)'
-  depends=('gtk3')
-  conflicts=('lxappearance')
-
-  cd gtk3
-  make DESTDIR="$pkgdir" install
-}

Copied: lxappearance/repos/community-i686/PKGBUILD (from rev 198350, 
lxappearance/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-07 18:36:47 UTC (rev 198351)
@@ -0,0 +1,51 @@
+#$Id$
+# Maintainer: Balló György 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Angel Velasquez 
+# Contributor: Geoffroy Carrier 
+
+pkgbase=lxappearance
+pkgname=(lxappearance lxappearance-gtk3)
+pkgver=0.6.2
+pkgrel=1
+pkgdesc='Feature-rich GTK+ theme switcher of the LXDE Desktop'
+arch=('i686' 'x86_64')
+license=('GPL2')
+url='http://lxde.org/'
+depends=('gtk2' 'gtk3')
+makedepends=('intltool' 'dbus-glib')
+source=(https://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz)
+md5sums=('21ee79c7686a80efddaa1b7928f51e21')
+
+build() {
+  # GTK+ 2 version
+  [ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
+  cd gtk2
+  ./configure --sysconfdir=/etc --prefix=/usr --enable-dbus
+  make
+
+  cd "$srcdir"
+  # GTK+ 3 version
+  [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
+  cd gtk3
+  ./configure --sysconfdir=/etc --prefix=/usr --enable-dbus --enable-gtk3
+  make
+}
+
+package_lxappearance() {
+  groups=('lxde')
+  depends=('gtk2')
+
+  cd gtk2
+  make DESTDIR="$pkgdir" install
+}
+
+package_lxappearance-gtk3() {
+  groups=('lxde-gtk3')
+  pkgdesc+=' (GTK+ 3 version)'
+  depends=('gtk3')
+  conflicts=('lxappearance')
+
+  cd gtk3
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-12-07 18:36:36 UTC (rev 198350)
+++ community-x86_64/PKGBUILD   2016-12-07 18:36:47 UTC (rev 198351)
@@ -1,51 +0,0 @@
-#$Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Angel Velasquez 
-# Contributor: Geoffroy Carrier 
-
-pkgbase=lxappearance
-pkgname=(lxappearance lxappearance-gtk3)
-pkgver=0.6.2
-pkgrel=1
-pkgdesc='Feature-rich GTK+ theme switcher of the LXDE Desktop'
-arch=('i686' 'x86_64')
-license=('GPL2')
-url='http://lxde.org/'
-depends=('gtk2' 'gtk3')
-makedepends=('intltool' 'dbus-glib')
-source=(http://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz)
-md5sums=('21ee79c7686a80efddaa1b7928f51e21')
-
-build() {
-  # GTK+ 2 version
-  [ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
-  cd gtk2
-  ./configure --sysconfdir=/etc --prefix=/usr --enable-dbus
-  make
-
-  cd "$srcdir"
-  # GTK+ 3 version
-  [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
-  cd gtk3
-  ./configure --sysconfdir=/etc --prefix=/usr --enable-dbus --enable-gtk3
-  make
-}
-
-package_lxappearance() {
-  groups=('lxde')
-  depends=('gtk2')
-
-  cd gtk2
-  make DESTDIR="$pkgdir" install
-}
-
-package_lxappearance-gtk3() {
-  groups=('lxde-gtk3')
-  p

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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:36:36
  Author: bgyorgy
Revision: 198350

Use https source

Modified:
  lxappearance/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-07 18:35:07 UTC (rev 198349)
+++ PKGBUILD2016-12-07 18:36:36 UTC (rev 198350)
@@ -14,7 +14,7 @@
 url='http://lxde.org/'
 depends=('gtk2' 'gtk3')
 makedepends=('intltool' 'dbus-glib')
-source=(http://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz)
+source=(https://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz)
 md5sums=('21ee79c7686a80efddaa1b7928f51e21')
 
 build() {


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

2016-12-07 Thread Balló György
Date: Wednesday, December 7, 2016 @ 18:35:07
  Author: bgyorgy
Revision: 198349

archrelease: copy trunk to community-any

Added:
  log4net/repos/community-any/PKGBUILD
(from rev 198348, log4net/trunk/PKGBUILD)
  log4net/repos/community-any/log4net.pc
(from rev 198348, log4net/trunk/log4net.pc)
Deleted:
  log4net/repos/community-any/PKGBUILD
  log4net/repos/community-any/log4net.pc

+
 PKGBUILD   |   74 ++-
 log4net.pc |   16 ++--
 2 files changed, 46 insertions(+), 44 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-07 18:34:48 UTC (rev 198348)
+++ PKGBUILD2016-12-07 18:35:07 UTC (rev 198349)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Frane Bandov 
-# Contributor: Thijs Vermeir 
-
-pkgname=log4net
-pkgver=1.2.15
-pkgrel=1
-pkgdesc="A tool to help the programmer output log statements to a variety of 
output targets"
-arch=('any')
-url="http://logging.apache.org/log4net/";
-license=('Apache')
-depends=('mono')
-source=(http://www.apache.org/dist/logging/$pkgname/source/$pkgname-$pkgver-src.zip
-$pkgname.pc)
-md5sums=('f87a8553222a70a58cf51d9f8d6c5947'
- 'a292da72afbd6bd705e02f4ddb564fd7')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-  sed -i "s/@VERSION@/$pkgver/" "$srcdir/$pkgname.pc"
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  mkdir bin
-  dmcs -t:library -out:bin/$pkgname.dll -keyfile:$pkgname.snk -d:NET_2_0 \
-   
-r:System,System.Data,System.Xml,System.Web,System.Net,System.Configuration \
-   $(find src -name "*.cs")
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  gacutil -i bin/$pkgname.dll -package $pkgname-$pkgver -root 
"$pkgdir/usr/lib/"
-  install -Dm644 "$srcdir/$pkgname.pc" "$pkgdir/usr/lib/pkgconfig/$pkgname.pc"
-}

Copied: log4net/repos/community-any/PKGBUILD (from rev 198348, 
log4net/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-07 18:35:07 UTC (rev 198349)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Frane Bandov 
+# Contributor: Thijs Vermeir 
+
+pkgname=log4net
+pkgver=1.2.15
+pkgrel=1
+pkgdesc="A tool to help the programmer output log statements to a variety of 
output targets"
+arch=('any')
+url="http://logging.apache.org/log4net/";
+license=('Apache')
+depends=('mono')
+source=(https://www.apache.org/dist/logging/$pkgname/source/$pkgname-$pkgver-src.zip{,.asc}
+$pkgname.pc)
+validpgpkeys=('CE8075A251547BEE249BC151A2115AE15F6B8B72') # Stefan Bodewig
+md5sums=('f87a8553222a70a58cf51d9f8d6c5947'
+ 'SKIP'
+ 'a292da72afbd6bd705e02f4ddb564fd7')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+  sed -i "s/@VERSION@/$pkgver/" "$srcdir/$pkgname.pc"
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  mkdir bin
+  dmcs -t:library -out:bin/$pkgname.dll -keyfile:$pkgname.snk -d:NET_2_0 \
+   
-r:System,System.Data,System.Xml,System.Web,System.Net,System.Configuration \
+   $(find src -name "*.cs")
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  gacutil -i bin/$pkgname.dll -package $pkgname-$pkgver -root 
"$pkgdir/usr/lib/"
+  install -Dm644 "$srcdir/$pkgname.pc" "$pkgdir/usr/lib/pkgconfig/$pkgname.pc"
+}

Deleted: log4net.pc
===
--- log4net.pc  2016-12-07 18:34:48 UTC (rev 198348)
+++ log4net.pc  2016-12-07 18:35:07 UTC (rev 198349)
@@ -1,8 +0,0 @@
-prefix=/usr
-exec_prefix=${prefix}
-libdir=${exec_prefix}/lib
-
-Name: Log4net
-Description: Log4net - Logging library for C# and VB.NET
-Version: @VERSION@
-Libs: -r:${libdir}/mono/log4net-@VERSION@/log4net.dll

Copied: log4net/repos/community-any/log4net.pc (from rev 198348, 
log4net/trunk/log4net.pc)
===
--- log4net.pc  (rev 0)
+++ log4net.pc  2016-12-07 18:35:07 UTC (rev 198349)
@@ -0,0 +1,8 @@
+prefix=/usr
+exec_prefix=${prefix}
+libdir=${exec_prefix}/lib
+
+Name: Log4net
+Description: Log4net - Logging library for C# and VB.NET
+Version: @VERSION@
+Libs: -r:${libdir}/mono/log4net-@VERSION@/log4net.dll


  1   2   >