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

2017-05-07 Thread Alexander Rødseth
Date: Sunday, May 7, 2017 @ 15:13:12
  Author: arodseth
Revision: 227258

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

Added:
  midori/repos/community-i686/PKGBUILD
(from rev 227257, midori/trunk/PKGBUILD)
  midori/repos/community-i686/midori.install
(from rev 227257, midori/trunk/midori.install)
  midori/repos/community-x86_64/PKGBUILD
(from rev 227257, midori/trunk/PKGBUILD)
  midori/repos/community-x86_64/midori.install
(from rev 227257, midori/trunk/midori.install)
Deleted:
  midori/repos/community-i686/PKGBUILD
  midori/repos/community-i686/midori.install
  midori/repos/community-x86_64/PKGBUILD
  midori/repos/community-x86_64/midori.install

-+
 /PKGBUILD   |  118 ++
 /midori.install |   10 +++
 community-i686/PKGBUILD |   48 ---
 community-i686/midori.install   |5 -
 community-x86_64/PKGBUILD   |   48 ---
 community-x86_64/midori.install |5 -
 6 files changed, 128 insertions(+), 106 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-07 15:12:51 UTC (rev 227257)
+++ community-i686/PKGBUILD 2017-05-07 15:13:12 UTC (rev 227258)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=midori
-pkgver=0.5.11
-pkgrel=5
-pkgdesc='Lightweight web browser (GTK3)'
-arch=('x86_64' 'i686')
-url='http://www.midori-browser.org/'
-license=('LGPL2.1')
-install='midori.install'
-conflicts=('midori-gtk2')
-provides=('midori')
-replaces=('midori-gtk3')
-depends=('webkit2gtk' 'libxss' 'gcr' 'zeitgeist')
-makedepends=('bzr' 'intltool' 'vala' 'cmake' 'ninja')
-optdepends=('gst-plugins-base: HTML5 OGG videos support'
-'gst-plugins-good: HTML5 H264 and WebM videos support'
-'gst-libav: HTML5 H264 videos support'
-'aria2: download utility')
-options=('!emptydirs')
-source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
-sha256sums=('96191a96be71144ae848a409fae5a1d6d52a00e583f33122081f47ead9c49c3d')
-
-build() {
-  cd "$pkgname-$pkgver"
-  mkdir -p build
-  cd build
-  # HALF_BRO_INCOM_WEBKIT2=ON sets USE_GTK3=ON
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DHALF_BRO_INCOM_WEBKIT2=ON \
--G Ninja
-  ninja
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
-}
-
-# getver: -u 2 midori-browser.org/download/source
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/PKGBUILD (from rev 227257, 
midori/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-07 15:13:12 UTC (rev 227258)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Andreas Radke 
+# Contributor: rabyte 
+# Contributor: Johannes Krampf 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=midori
+pkgver=0.5.11
+pkgrel=6
+pkgdesc='Lightweight web browser (GTK3)'
+arch=('x86_64' 'i686')
+url='http://www.midori-browser.org/'
+license=('LGPL2.1')
+install='midori.install'
+conflicts=('midori-gtk2')
+provides=('midori')
+replaces=('midori-gtk3')
+depends=('webkit2gtk' 'libxss' 'gcr' 'zeitgeist')
+makedepends=('bzr' 'intltool' 'vala' 'cmake' 'ninja')
+optdepends=('gst-plugins-base: HTML5 OGG videos support'
+'gst-plugins-good: HTML5 H264 and WebM videos support'
+'gst-libav: HTML5 H264 videos support'
+'aria2: download utility')
+options=('!emptydirs')
+source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
+sha256sums=('96191a96be71144ae848a409fae5a1d6d52a00e583f33122081f47ead9c49c3d')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # The latest release of vala is a bit stricter than the previous one
+  sed 's/protected Tally/public Tally/g' -i midori/midori-notebook.vala
+  sed 's/%d other files/%u other files/g' -i extensions/transfers.vala
+  for f in transfers adblock/widgets apps history-list notes; do
+  sed 's/.remove (iter/.remove (ref iter/g' -i "extensions/$f.vala"
+  done
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DHALF_BRO_INCOM_WEBKIT2=ON \
+-DCMAKE_C_FLAGS="$CFLAGS -w" \
+-G Ninja
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
+}
+
+# getver: -u 2 midori-browser.org/download/source
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/midori.install
===
--- community-i686/midori.install   20

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

2017-01-25 Thread Alexander Rødseth
Date: Wednesday, January 25, 2017 @ 14:29:03
  Author: arodseth
Revision: 209049

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

Added:
  midori/repos/community-i686/PKGBUILD
(from rev 209048, midori/trunk/PKGBUILD)
  midori/repos/community-i686/midori.install
(from rev 209048, midori/trunk/midori.install)
  midori/repos/community-x86_64/PKGBUILD
(from rev 209048, midori/trunk/PKGBUILD)
  midori/repos/community-x86_64/midori.install
(from rev 209048, midori/trunk/midori.install)
Deleted:
  midori/repos/community-i686/PKGBUILD
  midori/repos/community-i686/midori.install
  midori/repos/community-x86_64/PKGBUILD
  midori/repos/community-x86_64/midori.install

-+
 /PKGBUILD   |   96 ++
 /midori.install |   10 +++
 community-i686/PKGBUILD |   47 --
 community-i686/midori.install   |5 -
 community-x86_64/PKGBUILD   |   47 --
 community-x86_64/midori.install |5 -
 6 files changed, 106 insertions(+), 104 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-25 14:27:54 UTC (rev 209048)
+++ community-i686/PKGBUILD 2017-01-25 14:29:03 UTC (rev 209049)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=midori
-pkgver=0.5.11
-pkgrel=4
-pkgdesc='Lightweight web browser (GTK3)'
-arch=('x86_64' 'i686')
-url='http://www.midori-browser.org/'
-license=('LGPL2.1')
-install='midori.install'
-conflicts=('midori-gtk2')
-provides=('midori')
-replaces=('midori-gtk3')
-depends=('webkitgtk' 'libxss' 'gcr' 'zeitgeist') # webkit2gtk
-makedepends=('bzr' 'intltool' 'vala' 'cmake' 'ninja')
-optdepends=('gst-plugins-base: HTML5 OGG videos support'
-'gst-plugins-good: HTML5 H264 and WebM videos support'
-'gst-libav: HTML5 H264 videos support'
-'aria2: download utility')
-options=('!emptydirs')
-source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
-sha256sums=('96191a96be71144ae848a409fae5a1d6d52a00e583f33122081f47ead9c49c3d')
-
-build() {
-  cd "$pkgname-$pkgver"
-  mkdir -p build
-  cd build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DUSE_GTK3=1 \
--G Ninja
-  ninja
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
-}
-
-# getver: -u 2 midori-browser.org/download/source
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/PKGBUILD (from rev 209048, 
midori/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-25 14:29:03 UTC (rev 209049)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andreas Radke 
+# Contributor: rabyte 
+# Contributor: Johannes Krampf 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=midori
+pkgver=0.5.11
+pkgrel=5
+pkgdesc='Lightweight web browser (GTK3)'
+arch=('x86_64' 'i686')
+url='http://www.midori-browser.org/'
+license=('LGPL2.1')
+install='midori.install'
+conflicts=('midori-gtk2')
+provides=('midori')
+replaces=('midori-gtk3')
+depends=('webkit2gtk' 'libxss' 'gcr' 'zeitgeist')
+makedepends=('bzr' 'intltool' 'vala' 'cmake' 'ninja')
+optdepends=('gst-plugins-base: HTML5 OGG videos support'
+'gst-plugins-good: HTML5 H264 and WebM videos support'
+'gst-libav: HTML5 H264 videos support'
+'aria2: download utility')
+options=('!emptydirs')
+source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
+sha256sums=('96191a96be71144ae848a409fae5a1d6d52a00e583f33122081f47ead9c49c3d')
+
+build() {
+  cd "$pkgname-$pkgver"
+  mkdir -p build
+  cd build
+  # HALF_BRO_INCOM_WEBKIT2=ON sets USE_GTK3=ON
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DHALF_BRO_INCOM_WEBKIT2=ON \
+-G Ninja
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
+}
+
+# getver: -u 2 midori-browser.org/download/source
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/midori.install
===
--- community-i686/midori.install   2017-01-25 14:27:54 UTC (rev 209048)
+++ community-i686/midori.install   2017-01-25 14:29:03 UTC (rev 209049)
@@ -1,5 +0,0 @@
-post_install() {
-  echo 'Set GTK_CSD=1 for enabling client side decorations for Midori'
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/midori.install (from rev 209048, 
midori/trunk/midori.install)
=

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

2016-05-19 Thread Alexander Rødseth
Date: Friday, May 20, 2016 @ 00:26:22
  Author: arodseth
Revision: 175740

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

Added:
  midori/repos/community-i686/PKGBUILD
(from rev 175739, midori/trunk/PKGBUILD)
  midori/repos/community-i686/midori.install
(from rev 175739, midori/trunk/midori.install)
  midori/repos/community-x86_64/PKGBUILD
(from rev 175739, midori/trunk/PKGBUILD)
  midori/repos/community-x86_64/midori.install
(from rev 175739, midori/trunk/midori.install)
Deleted:
  midori/repos/community-i686/PKGBUILD
  midori/repos/community-i686/midori.install
  midori/repos/community-x86_64/PKGBUILD
  midori/repos/community-x86_64/midori.install

-+
 /PKGBUILD   |   94 ++
 /midori.install |   10 
 community-i686/PKGBUILD |   47 ---
 community-i686/midori.install   |   15 --
 community-x86_64/PKGBUILD   |   47 ---
 community-x86_64/midori.install |   15 --
 6 files changed, 104 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-05-19 22:26:10 UTC (rev 175739)
+++ community-i686/PKGBUILD 2016-05-19 22:26:22 UTC (rev 175740)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=midori
-pkgver=0.5.11
-pkgrel=3
-pkgdesc='Lightweight web browser (GTK3)'
-arch=('x86_64' 'i686')
-url='http://www.midori-browser.org/'
-license=('LGPL2.1')
-install='midori.install'
-conflicts=('midori-gtk2')
-provides=('midori')
-replaces=('midori-gtk3')
-depends=('webkitgtk' 'libxss' 'hicolor-icon-theme' 'desktop-file-utils' 'gcr' 
'zeitgeist') # webkit2gtk
-makedepends=('bzr' 'intltool' 'vala' 'cmake' 'ninja')
-optdepends=('gst-plugins-base: HTML5 OGG videos support'
-'gst-plugins-good: HTML5 H264 and WebM videos support'
-'gst-libav: HTML5 H264 videos support'
-'aria2: download utility')
-options=('!emptydirs')
-source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
-sha256sums=('96191a96be71144ae848a409fae5a1d6d52a00e583f33122081f47ead9c49c3d')
-
-build() {
-  cd "$pkgname-$pkgver"
-  mkdir -p build
-  cd build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DUSE_GTK3=1 \
--G Ninja
-  ninja
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
-}
-
-# getver: -u 2 midori-browser.org/download/source
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/PKGBUILD (from rev 175739, 
midori/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-05-19 22:26:22 UTC (rev 175740)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andreas Radke 
+# Contributor: rabyte 
+# Contributor: Johannes Krampf 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=midori
+pkgver=0.5.11
+pkgrel=4
+pkgdesc='Lightweight web browser (GTK3)'
+arch=('x86_64' 'i686')
+url='http://www.midori-browser.org/'
+license=('LGPL2.1')
+install='midori.install'
+conflicts=('midori-gtk2')
+provides=('midori')
+replaces=('midori-gtk3')
+depends=('webkitgtk' 'libxss' 'gcr' 'zeitgeist') # webkit2gtk
+makedepends=('bzr' 'intltool' 'vala' 'cmake' 'ninja')
+optdepends=('gst-plugins-base: HTML5 OGG videos support'
+'gst-plugins-good: HTML5 H264 and WebM videos support'
+'gst-libav: HTML5 H264 videos support'
+'aria2: download utility')
+options=('!emptydirs')
+source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
+sha256sums=('96191a96be71144ae848a409fae5a1d6d52a00e583f33122081f47ead9c49c3d')
+
+build() {
+  cd "$pkgname-$pkgver"
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DUSE_GTK3=1 \
+-G Ninja
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
+}
+
+# getver: -u 2 midori-browser.org/download/source
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/midori.install
===
--- community-i686/midori.install   2016-05-19 22:26:10 UTC (rev 175739)
+++ community-i686/midori.install   2016-05-19 22:26:22 UTC (rev 175740)
@@ -1,15 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -f -q -t usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-  echo 'Set GTK_CSD=1 to enable client side decorations for Midori'
-}
-
-post_remove() {
-  post_install $1
-}
-
-# vim:se

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

2016-02-26 Thread Balló György
Date: Saturday, February 27, 2016 @ 02:04:57
  Author: bgyorgy
Revision: 163530

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

Added:
  midori/repos/community-i686/PKGBUILD
(from rev 163529, midori/trunk/PKGBUILD)
  midori/repos/community-i686/midori.install
(from rev 163529, midori/trunk/midori.install)
  midori/repos/community-x86_64/PKGBUILD
(from rev 163529, midori/trunk/PKGBUILD)
  midori/repos/community-x86_64/midori.install
(from rev 163529, midori/trunk/midori.install)
Deleted:
  midori/repos/community-i686/PKGBUILD
  midori/repos/community-i686/midori.install
  midori/repos/community-x86_64/PKGBUILD
  midori/repos/community-x86_64/midori.install

-+
 /PKGBUILD   |   94 ++
 /midori.install |   30 
 community-i686/PKGBUILD |   47 ---
 community-i686/midori.install   |   15 --
 community-x86_64/PKGBUILD   |   47 ---
 community-x86_64/midori.install |   15 --
 6 files changed, 124 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-27 01:04:49 UTC (rev 163529)
+++ community-i686/PKGBUILD 2016-02-27 01:04:57 UTC (rev 163530)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=midori
-pkgver=0.5.11
-pkgrel=2
-pkgdesc='Lightweight web browser (GTK3)'
-arch=('x86_64' 'i686')
-url='http://www.midori-browser.org/'
-license=('LGPL2.1')
-install='midori.install'
-conflicts=('midori-gtk2')
-provides=('midori')
-replaces=('midori-gtk3')
-depends=('webkitgtk' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique3' 'gcr' 'libzeitgeist' 'zeitgeist') # webkit2gtk
-makedepends=('pkg-config' 'bzr' 'python2' 'libxml2' 'gtk3' 'intltool' 
'python2-docutils' 'libsoup' 'vala' 'librsvg' 'cmake' 'ninja' 'gcr' 
'libzeitgeist' 'zeitgeist')
-optdepends=('gst-plugins-base: HTML5 OGG videos support'
-'gst-plugins-good: HTML5 H264 and WebM videos support'
-'gst-libav: HTML5 H264 videos support'
-'aria2: download utility')
-options=('!emptydirs')
-source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
-sha256sums=('96191a96be71144ae848a409fae5a1d6d52a00e583f33122081f47ead9c49c3d')
-
-build() {
-  cd "$pkgname-$pkgver"
-  mkdir -p build
-  cd build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DUSE_GTK3=1 \
--G Ninja
-  ninja
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
-}
-
-# getver: -u 2 midori-browser.org/download/source
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/PKGBUILD (from rev 163529, 
midori/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-27 01:04:57 UTC (rev 163530)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andreas Radke 
+# Contributor: rabyte 
+# Contributor: Johannes Krampf 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=midori
+pkgver=0.5.11
+pkgrel=3
+pkgdesc='Lightweight web browser (GTK3)'
+arch=('x86_64' 'i686')
+url='http://www.midori-browser.org/'
+license=('LGPL2.1')
+install='midori.install'
+conflicts=('midori-gtk2')
+provides=('midori')
+replaces=('midori-gtk3')
+depends=('webkitgtk' 'libxss' 'hicolor-icon-theme' 'desktop-file-utils' 'gcr' 
'zeitgeist') # webkit2gtk
+makedepends=('bzr' 'intltool' 'vala' 'cmake' 'ninja')
+optdepends=('gst-plugins-base: HTML5 OGG videos support'
+'gst-plugins-good: HTML5 H264 and WebM videos support'
+'gst-libav: HTML5 H264 videos support'
+'aria2: download utility')
+options=('!emptydirs')
+source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
+sha256sums=('96191a96be71144ae848a409fae5a1d6d52a00e583f33122081f47ead9c49c3d')
+
+build() {
+  cd "$pkgname-$pkgver"
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DUSE_GTK3=1 \
+-G Ninja
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
+}
+
+# getver: -u 2 midori-browser.org/download/source
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/midori.install
===
--- community-i686/midori.install   2016-02-27 01:04:49 UTC (rev 163529)
+++ community-i686/midori.install   2016-02-27 01:04:57 UTC (rev 163530)
@@ -1,15 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-i

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

2015-11-01 Thread Alexander Rødseth
Date: Sunday, November 1, 2015 @ 19:46:11
  Author: arodseth
Revision: 145475

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

Added:
  midori/repos/community-i686/PKGBUILD
(from rev 145474, midori/trunk/PKGBUILD)
  midori/repos/community-i686/midori.install
(from rev 145474, midori/trunk/midori.install)
  midori/repos/community-x86_64/PKGBUILD
(from rev 145474, midori/trunk/PKGBUILD)
  midori/repos/community-x86_64/midori.install
(from rev 145474, midori/trunk/midori.install)
Deleted:
  midori/repos/community-i686/PKGBUILD
  midori/repos/community-i686/midori.install
  midori/repos/community-x86_64/PKGBUILD
  midori/repos/community-x86_64/midori.install

-+
 /PKGBUILD   |   94 ++
 /midori.install |   30 
 community-i686/PKGBUILD |   47 ---
 community-i686/midori.install   |   14 -
 community-x86_64/PKGBUILD   |   47 ---
 community-x86_64/midori.install |   14 -
 6 files changed, 124 insertions(+), 122 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-01 18:45:57 UTC (rev 145474)
+++ community-i686/PKGBUILD 2015-11-01 18:46:11 UTC (rev 145475)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=midori
-pkgver=0.5.11
-pkgrel=1
-pkgdesc='Lightweight web browser (GTK3)'
-arch=('x86_64' 'i686')
-url='http://www.midori-browser.org/'
-license=('LGPL2.1')
-install='midori.install'
-conflicts=('midori-gtk2')
-provides=('midori')
-replaces=('midori-gtk3')
-depends=('webkitgtk3' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique3' 'gcr' 'libzeitgeist' 'zeitgeist')
-makedepends=('pkg-config' 'bzr' 'python2' 'libxml2' 'gtk3' 'intltool' 
'python2-docutils' 'libsoup' 'vala' 'librsvg' 'cmake' 'ninja' 'gcr' 
'libzeitgeist' 'zeitgeist')
-optdepends=('gst-plugins-base: HTML5 OGG videos support'
-'gst-plugins-good: HTML5 H264 and WebM videos support'
-'gst-libav: HTML5 H264 videos support'
-'aria2: download utility')
-options=('!emptydirs')
-source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
-sha256sums=('96191a96be71144ae848a409fae5a1d6d52a00e583f33122081f47ead9c49c3d')
-
-build() {
-  cd "$pkgname-$pkgver"
-  mkdir -p build
-  cd build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DUSE_GTK3=1 \
--G Ninja
-  ninja
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
-}
-
-# getver: -u 2 midori-browser.org/download/source
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/PKGBUILD (from rev 145474, 
midori/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-01 18:46:11 UTC (rev 145475)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andreas Radke 
+# Contributor: rabyte 
+# Contributor: Johannes Krampf 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=midori
+pkgver=0.5.11
+pkgrel=2
+pkgdesc='Lightweight web browser (GTK3)'
+arch=('x86_64' 'i686')
+url='http://www.midori-browser.org/'
+license=('LGPL2.1')
+install='midori.install'
+conflicts=('midori-gtk2')
+provides=('midori')
+replaces=('midori-gtk3')
+depends=('webkitgtk' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique3' 'gcr' 'libzeitgeist' 'zeitgeist') # webkit2gtk
+makedepends=('pkg-config' 'bzr' 'python2' 'libxml2' 'gtk3' 'intltool' 
'python2-docutils' 'libsoup' 'vala' 'librsvg' 'cmake' 'ninja' 'gcr' 
'libzeitgeist' 'zeitgeist')
+optdepends=('gst-plugins-base: HTML5 OGG videos support'
+'gst-plugins-good: HTML5 H264 and WebM videos support'
+'gst-libav: HTML5 H264 videos support'
+'aria2: download utility')
+options=('!emptydirs')
+source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
+sha256sums=('96191a96be71144ae848a409fae5a1d6d52a00e583f33122081f47ead9c49c3d')
+
+build() {
+  cd "$pkgname-$pkgver"
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DUSE_GTK3=1 \
+-G Ninja
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
+}
+
+# getver: -u 2 midori-browser.org/download/source
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/midori.install
===
--- community-i686/midori.install   2015-11-01 18:45:57 UTC (rev 145474)
+++ community-i686/

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

2015-09-06 Thread Alexander Rødseth
Date: Monday, September 7, 2015 @ 00:20:02
  Author: arodseth
Revision: 139407

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

Added:
  midori/repos/community-i686/PKGBUILD
(from rev 139406, midori/trunk/PKGBUILD)
  midori/repos/community-i686/midori.install
(from rev 139406, midori/trunk/midori.install)
  midori/repos/community-x86_64/PKGBUILD
(from rev 139406, midori/trunk/PKGBUILD)
  midori/repos/community-x86_64/midori.install
(from rev 139406, midori/trunk/midori.install)
Deleted:
  midori/repos/community-i686/PKGBUILD
  midori/repos/community-i686/midori.install
  midori/repos/community-x86_64/PKGBUILD
  midori/repos/community-x86_64/midori.install

-+
 /PKGBUILD   |   94 ++
 /midori.install |   28 +++
 community-i686/PKGBUILD |   46 --
 community-i686/midori.install   |   14 -
 community-x86_64/PKGBUILD   |   46 --
 community-x86_64/midori.install |   14 -
 6 files changed, 122 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-06 22:19:51 UTC (rev 139406)
+++ community-i686/PKGBUILD 2015-09-06 22:20:02 UTC (rev 139407)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=midori
-pkgver=0.5.11
-pkgrel=1
-pkgdesc='Lightweight web browser (GTK3)'
-arch=('x86_64' 'i686')
-url='http://www.midori-browser.org/'
-license=('LGPL2.1')
-install='midori.install'
-conflicts=('midori-gtk2')
-provides=('midori-gtk2')
-depends=('webkitgtk3' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique3' 'gcr' 'libzeitgeist' 'zeitgeist')
-makedepends=('pkg-config' 'bzr' 'python2' 'libxml2' 'gtk3' 'intltool' 
'python2-docutils' 'libsoup' 'vala' 'librsvg' 'cmake' 'ninja' 'gcr' 
'libzeitgeist' 'zeitgeist')
-optdepends=('gst-plugins-base: HTML5 OGG videos support'
-'gst-plugins-good: HTML5 H264 and WebM videos support'
-'gst-libav: HTML5 H264 videos support'
-'aria2: download utility')
-options=('!emptydirs')
-source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
-sha256sums=('96191a96be71144ae848a409fae5a1d6d52a00e583f33122081f47ead9c49c3d')
-
-build() {
-  cd "$pkgname-$pkgver"
-  mkdir -p build
-  cd build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DUSE_GTK3=1 \
--G Ninja
-  ninja
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
-}
-
-# getver: -u 2 midori-browser.org/download/source
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/PKGBUILD (from rev 139406, 
midori/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-06 22:20:02 UTC (rev 139407)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andreas Radke 
+# Contributor: rabyte 
+# Contributor: Johannes Krampf 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=midori
+pkgver=0.5.11
+pkgrel=1
+pkgdesc='Lightweight web browser (GTK3)'
+arch=('x86_64' 'i686')
+url='http://www.midori-browser.org/'
+license=('LGPL2.1')
+install='midori.install'
+conflicts=('midori-gtk2')
+provides=('midori')
+replaces=('midori-gtk3')
+depends=('webkitgtk3' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique3' 'gcr' 'libzeitgeist' 'zeitgeist')
+makedepends=('pkg-config' 'bzr' 'python2' 'libxml2' 'gtk3' 'intltool' 
'python2-docutils' 'libsoup' 'vala' 'librsvg' 'cmake' 'ninja' 'gcr' 
'libzeitgeist' 'zeitgeist')
+optdepends=('gst-plugins-base: HTML5 OGG videos support'
+'gst-plugins-good: HTML5 H264 and WebM videos support'
+'gst-libav: HTML5 H264 videos support'
+'aria2: download utility')
+options=('!emptydirs')
+source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
+sha256sums=('96191a96be71144ae848a409fae5a1d6d52a00e583f33122081f47ead9c49c3d')
+
+build() {
+  cd "$pkgname-$pkgver"
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DUSE_GTK3=1 \
+-G Ninja
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
+}
+
+# getver: -u 2 midori-browser.org/download/source
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/midori.install
===
--- community-i686/midori.install   2015-09-06 22:19:51 UTC (rev 139406)
+++ community-i686/midori.install   2015-09-06 22:

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

2015-09-06 Thread Alexander Rødseth
Date: Sunday, September 6, 2015 @ 23:54:05
  Author: arodseth
Revision: 139388

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

Added:
  midori/repos/community-i686/PKGBUILD
(from rev 139387, midori/trunk/PKGBUILD)
  midori/repos/community-i686/midori.install
(from rev 139387, midori/trunk/midori.install)
  midori/repos/community-x86_64/PKGBUILD
(from rev 139387, midori/trunk/PKGBUILD)
  midori/repos/community-x86_64/midori.install
(from rev 139387, midori/trunk/midori.install)
Deleted:
  midori/repos/community-i686/PKGBUILD
  midori/repos/community-i686/midori.install
  midori/repos/community-x86_64/PKGBUILD
  midori/repos/community-x86_64/midori.install

-+
 /PKGBUILD   |   92 ++
 /midori.install |   28 +++
 community-i686/PKGBUILD |   38 ---
 community-i686/midori.install   |   14 -
 community-x86_64/PKGBUILD   |   38 ---
 community-x86_64/midori.install |   14 -
 6 files changed, 120 insertions(+), 104 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-06 21:53:52 UTC (rev 139387)
+++ community-i686/PKGBUILD 2015-09-06 21:54:05 UTC (rev 139388)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andrew Gregory 
-
-pkgname=midori
-pkgver=0.5.11
-pkgrel=1
-pkgdesc='Lightweight web browser (GTK2)'
-arch=('x86_64' 'i686')
-url='http://www.midori-browser.org/'
-license=('LGPL2.1')
-install='midori.install'
-depends=('webkitgtk2' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique' 'gcr' 'libzeitgeist' 'zeitgeist')
-makedepends=('bzr' 'python2' 'intltool' 'vala' 'librsvg' 'cmake' 'ninja' 'gcr' 
'libzeitgeist' 'zeitgeist')
-optdepends=('aria2: download utility')
-options=('!emptydirs')
-source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
-sha256sums=('96191a96be71144ae848a409fae5a1d6d52a00e583f33122081f47ead9c49c3d')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  mkdir -p build
-  cd build
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib -G Ninja
-  ninja
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
-}
-
-# getver: -u 2 midori-browser.org/download/source
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/PKGBUILD (from rev 139387, 
midori/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-06 21:54:05 UTC (rev 139388)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andreas Radke 
+# Contributor: rabyte 
+# Contributor: Johannes Krampf 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=midori
+pkgver=0.5.11
+pkgrel=1
+pkgdesc='Lightweight web browser (GTK3)'
+arch=('x86_64' 'i686')
+url='http://www.midori-browser.org/'
+license=('LGPL2.1')
+install='midori.install'
+conflicts=('midori-gtk2')
+provides=('midori-gtk2')
+depends=('webkitgtk3' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique3' 'gcr' 'libzeitgeist' 'zeitgeist')
+makedepends=('pkg-config' 'bzr' 'python2' 'libxml2' 'gtk3' 'intltool' 
'python2-docutils' 'libsoup' 'vala' 'librsvg' 'cmake' 'ninja' 'gcr' 
'libzeitgeist' 'zeitgeist')
+optdepends=('gst-plugins-base: HTML5 OGG videos support'
+'gst-plugins-good: HTML5 H264 and WebM videos support'
+'gst-libav: HTML5 H264 videos support'
+'aria2: download utility')
+options=('!emptydirs')
+source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
+sha256sums=('96191a96be71144ae848a409fae5a1d6d52a00e583f33122081f47ead9c49c3d')
+
+build() {
+  cd "$pkgname-$pkgver"
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DUSE_GTK3=1 \
+-G Ninja
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
+}
+
+# getver: -u 2 midori-browser.org/download/source
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/midori.install
===
--- community-i686/midori.install   2015-09-06 21:53:52 UTC (rev 139387)
+++ community-i686/midori.install   2015-09-06 21:54:05 UTC (rev 139388)
@@ -1,14 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -f -q -t usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/midori.install (from rev 139387, 
midori/trunk/midori.install)
==

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

2015-09-06 Thread Alexander Rødseth
Date: Sunday, September 6, 2015 @ 23:13:44
  Author: arodseth
Revision: 139372

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

Added:
  midori/repos/community-i686/PKGBUILD
(from rev 139371, midori/trunk/PKGBUILD)
  midori/repos/community-i686/midori.install
(from rev 139371, midori/trunk/midori.install)
  midori/repos/community-x86_64/PKGBUILD
(from rev 139371, midori/trunk/PKGBUILD)
  midori/repos/community-x86_64/midori.install
(from rev 139371, midori/trunk/midori.install)
Deleted:
  midori/repos/community-i686/PKGBUILD
  midori/repos/community-i686/midori.install
  midori/repos/community-x86_64/PKGBUILD
  midori/repos/community-x86_64/midori.install

-+
 /PKGBUILD   |   76 ++
 /midori.install |   28 ++
 community-i686/PKGBUILD |   37 --
 community-i686/midori.install   |   14 ---
 community-x86_64/PKGBUILD   |   37 --
 community-x86_64/midori.install |   14 ---
 6 files changed, 104 insertions(+), 102 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-06 21:13:29 UTC (rev 139371)
+++ community-i686/PKGBUILD 2015-09-06 21:13:44 UTC (rev 139372)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andrew Gregory 
-
-pkgname=midori
-pkgver=0.5.10
-pkgrel=1
-pkgdesc='Lightweight web browser (GTK2)'
-arch=('x86_64' 'i686')
-url='http://www.midori-browser.org/'
-license=('LGPL2.1')
-install='midori.install'
-depends=('libzeitgeist' 'webkitgtk2' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique' 'gcr')
-makedepends=('bzr' 'python2' 'intltool' 'vala' 'librsvg' 'cmake' 'ninja' 'gcr')
-optdepends=('aria2: download utility')
-options=('!emptydirs')
-source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
-sha256sums=('702344f68d7f034866a46398e35b3c16a5a5f3e431a5d916ea5efc3eaaa3e46f')
-
-build() {
-  #cd "$pkgname-$pkgver"
-  mkdir -p build
-  cd build
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib -G Ninja
-  ninja
-}
-
-package() {
-  #DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
-  DESTDIR="$pkgdir" ninja -C build install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/PKGBUILD (from rev 139371, 
midori/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-06 21:13:44 UTC (rev 139372)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Andreas Radke 
+# Contributor: rabyte 
+# Contributor: Johannes Krampf 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andrew Gregory 
+
+pkgname=midori
+pkgver=0.5.11
+pkgrel=1
+pkgdesc='Lightweight web browser (GTK2)'
+arch=('x86_64' 'i686')
+url='http://www.midori-browser.org/'
+license=('LGPL2.1')
+install='midori.install'
+depends=('webkitgtk2' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique' 'gcr' 'libzeitgeist' 'zeitgeist')
+makedepends=('bzr' 'python2' 'intltool' 'vala' 'librsvg' 'cmake' 'ninja' 'gcr' 
'libzeitgeist' 'zeitgeist')
+optdepends=('aria2: download utility')
+options=('!emptydirs')
+source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
+sha256sums=('96191a96be71144ae848a409fae5a1d6d52a00e583f33122081f47ead9c49c3d')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  mkdir -p build
+  cd build
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib -G Ninja
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
+}
+
+# getver: -u 2 midori-browser.org/download/source
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/midori.install
===
--- community-i686/midori.install   2015-09-06 21:13:29 UTC (rev 139371)
+++ community-i686/midori.install   2015-09-06 21:13:44 UTC (rev 139372)
@@ -1,14 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -f -q -t usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/midori.install (from rev 139371, 
midori/trunk/midori.install)
===
--- community-i686/midori.install   (rev 0)
+++ community-i686/midori.install   2015-09-06 21:13:44 UTC (rev 139372)
@@ -0,0 +1,14 @@
+post_install() {
+  update-desktop-database -q
+  gtk-update-icon-cache -f -q -t usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install

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

2015-04-22 Thread Alexander Rødseth
Date: Wednesday, April 22, 2015 @ 11:36:28
  Author: arodseth
Revision: 131925

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

Added:
  midori/repos/community-i686/PKGBUILD
(from rev 131924, midori/trunk/PKGBUILD)
  midori/repos/community-i686/midori.install
(from rev 131924, midori/trunk/midori.install)
  midori/repos/community-x86_64/PKGBUILD
(from rev 131924, midori/trunk/PKGBUILD)
  midori/repos/community-x86_64/midori.install
(from rev 131924, midori/trunk/midori.install)
Deleted:
  midori/repos/community-i686/PKGBUILD
  midori/repos/community-i686/midori.install
  midori/repos/community-x86_64/PKGBUILD
  midori/repos/community-x86_64/midori.install

-+
 /PKGBUILD   |   74 ++
 /midori.install |   28 ++
 community-i686/PKGBUILD |   36 --
 community-i686/midori.install   |   14 ---
 community-x86_64/PKGBUILD   |   36 --
 community-x86_64/midori.install |   14 ---
 6 files changed, 102 insertions(+), 100 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-04-22 09:36:13 UTC (rev 131924)
+++ community-i686/PKGBUILD 2015-04-22 09:36:28 UTC (rev 131925)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andrew Gregory 
-
-pkgname=midori
-pkgver=0.5.9
-pkgrel=1
-pkgdesc='Lightweight web browser (GTK2)'
-arch=('x86_64' 'i686')
-url='http://www.midori-browser.org/'
-license=('LGPL2.1')
-install='midori.install'
-depends=('libzeitgeist' 'webkitgtk2' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique')
-makedepends=('bzr' 'python2' 'intltool' 'vala' 'librsvg' 'cmake' 'ninja')
-optdepends=('aria2: download utility')
-options=('!emptydirs')
-source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
-sha256sums=('b1a5309d926ea4e394f4a39552023b0427cf23053793d325e3daefceed282ec0')
-
-build() {
-  cd "$pkgname-$pkgver"
-  mkdir -p build
-  cd build
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib -G Ninja
-  ninja
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/PKGBUILD (from rev 131924, 
midori/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-04-22 09:36:28 UTC (rev 131925)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Andreas Radke 
+# Contributor: rabyte 
+# Contributor: Johannes Krampf 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andrew Gregory 
+
+pkgname=midori
+pkgver=0.5.10
+pkgrel=1
+pkgdesc='Lightweight web browser (GTK2)'
+arch=('x86_64' 'i686')
+url='http://www.midori-browser.org/'
+license=('LGPL2.1')
+install='midori.install'
+depends=('libzeitgeist' 'webkitgtk2' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique' 'gcr')
+makedepends=('bzr' 'python2' 'intltool' 'vala' 'librsvg' 'cmake' 'ninja' 'gcr')
+optdepends=('aria2: download utility')
+options=('!emptydirs')
+source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
+sha256sums=('702344f68d7f034866a46398e35b3c16a5a5f3e431a5d916ea5efc3eaaa3e46f')
+
+build() {
+  #cd "$pkgname-$pkgver"
+  mkdir -p build
+  cd build
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib -G Ninja
+  ninja
+}
+
+package() {
+  #DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
+  DESTDIR="$pkgdir" ninja -C build install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/midori.install
===
--- community-i686/midori.install   2015-04-22 09:36:13 UTC (rev 131924)
+++ community-i686/midori.install   2015-04-22 09:36:28 UTC (rev 131925)
@@ -1,14 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -f -q -t usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/midori.install (from rev 131924, 
midori/trunk/midori.install)
===
--- community-i686/midori.install   (rev 0)
+++ community-i686/midori.install   2015-04-22 09:36:28 UTC (rev 131925)
@@ -0,0 +1,14 @@
+post_install() {
+  update-desktop-database -q
+  gtk-update-icon-cache -f -q -t usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGB

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

2014-11-13 Thread Alexander Rødseth
Date: Thursday, November 13, 2014 @ 10:57:13
  Author: arodseth
Revision: 122503

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

Added:
  midori/repos/community-i686/PKGBUILD
(from rev 122502, midori/trunk/PKGBUILD)
  midori/repos/community-i686/midori.install
(from rev 122502, midori/trunk/midori.install)
  midori/repos/community-x86_64/PKGBUILD
(from rev 122502, midori/trunk/PKGBUILD)
  midori/repos/community-x86_64/midori.install
(from rev 122502, midori/trunk/midori.install)
Deleted:
  midori/repos/community-i686/PKGBUILD
  midori/repos/community-i686/midori.install
  midori/repos/community-x86_64/PKGBUILD
  midori/repos/community-x86_64/midori.install

-+
 /PKGBUILD   |   72 ++
 /midori.install |   28 ++
 community-i686/PKGBUILD |   35 --
 community-i686/midori.install   |   14 ---
 community-x86_64/PKGBUILD   |   35 --
 community-x86_64/midori.install |   14 ---
 6 files changed, 100 insertions(+), 98 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-13 09:57:02 UTC (rev 122502)
+++ community-i686/PKGBUILD 2014-11-13 09:57:13 UTC (rev 122503)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andrew Gregory 
-
-pkgname=midori
-pkgver=0.5.8
-pkgrel=1
-pkgdesc='Lightweight web browser (GTK2)'
-arch=('x86_64' 'i686')
-url='http://www.midori-browser.org/'
-license=('LGPL2.1')
-install='midori.install'
-depends=('libzeitgeist' 'webkitgtk2' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique')
-makedepends=('bzr' 'python2' 'intltool' 'vala' 'librsvg' 'cmake')
-optdepends=('aria2: download utility')
-options=('!emptydirs')
-source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
-sha256sums=('af19135fd4c4b04345df4d3592e7939c20f9b40eaca24550e6cb619751aa9381')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib
-  make
-}
-
-package() {
-  make -C build DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/PKGBUILD (from rev 122502, 
midori/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-13 09:57:13 UTC (rev 122503)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Andreas Radke 
+# Contributor: rabyte 
+# Contributor: Johannes Krampf 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andrew Gregory 
+
+pkgname=midori
+pkgver=0.5.9
+pkgrel=1
+pkgdesc='Lightweight web browser (GTK2)'
+arch=('x86_64' 'i686')
+url='http://www.midori-browser.org/'
+license=('LGPL2.1')
+install='midori.install'
+depends=('libzeitgeist' 'webkitgtk2' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique')
+makedepends=('bzr' 'python2' 'intltool' 'vala' 'librsvg' 'cmake' 'ninja')
+optdepends=('aria2: download utility')
+options=('!emptydirs')
+source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
+sha256sums=('b1a5309d926ea4e394f4a39552023b0427cf23053793d325e3daefceed282ec0')
+
+build() {
+  cd "$pkgname-$pkgver"
+  mkdir -p build
+  cd build
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib -G Ninja
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C "$pkgname-$pkgver/build" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/midori.install
===
--- community-i686/midori.install   2014-11-13 09:57:02 UTC (rev 122502)
+++ community-i686/midori.install   2014-11-13 09:57:13 UTC (rev 122503)
@@ -1,14 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -f -q -t usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/midori.install (from rev 122502, 
midori/trunk/midori.install)
===
--- community-i686/midori.install   (rev 0)
+++ community-i686/midori.install   2014-11-13 09:57:13 UTC (rev 122503)
@@ -0,0 +1,14 @@
+post_install() {
+  update-desktop-database -q
+  gtk-update-icon-cache -f -q -t usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-11-13 09:57

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

2014-04-07 Thread Alexander Rødseth
Date: Monday, April 7, 2014 @ 23:17:30
  Author: arodseth
Revision: 108940

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

Added:
  midori/repos/community-i686/PKGBUILD
(from rev 108939, midori/trunk/PKGBUILD)
  midori/repos/community-i686/midori.install
(from rev 108939, midori/trunk/midori.install)
  midori/repos/community-x86_64/PKGBUILD
(from rev 108939, midori/trunk/PKGBUILD)
  midori/repos/community-x86_64/midori.install
(from rev 108939, midori/trunk/midori.install)
Deleted:
  midori/repos/community-i686/PKGBUILD
  midori/repos/community-i686/midori.install
  midori/repos/community-x86_64/PKGBUILD
  midori/repos/community-x86_64/midori.install

-+
 /PKGBUILD   |   70 ++
 /midori.install |   28 +++
 community-i686/PKGBUILD |   37 
 community-i686/midori.install   |   14 ---
 community-x86_64/PKGBUILD   |   37 
 community-x86_64/midori.install |   14 ---
 6 files changed, 98 insertions(+), 102 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-07 21:17:17 UTC (rev 108939)
+++ community-i686/PKGBUILD 2014-04-07 21:17:30 UTC (rev 108940)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andrew Gregory 
-
-pkgname=midori
-pkgver=0.5.7
-pkgrel=2
-pkgdesc='Lightweight web browser (GTK2)'
-arch=('x86_64' 'i686')
-url='http://www.midori-browser.org/'
-license=('LGPL2.1')
-install='midori.install'
-depends=('libzeitgeist' 'webkitgtk2' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique')
-makedepends=('bzr' 'python2' 'intltool' 'vala' 'librsvg' 'cmake')
-optdepends=('aria2: download utility')
-options=('!emptydirs')
-source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
-sha256sums=('2875bb2aa8a8a0cce342178f04700d4ebccd13bf1b2ad4cb3ba9fec7e2bd0b4d')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  mkdir -p build
-  cd build
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib
-  make
-}
-
-package() {
-  make -C "$pkgname-$pkgver/build" DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/PKGBUILD (from rev 108939, 
midori/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-07 21:17:30 UTC (rev 108940)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Andreas Radke 
+# Contributor: rabyte 
+# Contributor: Johannes Krampf 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andrew Gregory 
+
+pkgname=midori
+pkgver=0.5.8
+pkgrel=1
+pkgdesc='Lightweight web browser (GTK2)'
+arch=('x86_64' 'i686')
+url='http://www.midori-browser.org/'
+license=('LGPL2.1')
+install='midori.install'
+depends=('libzeitgeist' 'webkitgtk2' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique')
+makedepends=('bzr' 'python2' 'intltool' 'vala' 'librsvg' 'cmake')
+optdepends=('aria2: download utility')
+options=('!emptydirs')
+source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
+sha256sums=('af19135fd4c4b04345df4d3592e7939c20f9b40eaca24550e6cb619751aa9381')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  make -C build DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/midori.install
===
--- community-i686/midori.install   2014-04-07 21:17:17 UTC (rev 108939)
+++ community-i686/midori.install   2014-04-07 21:17:30 UTC (rev 108940)
@@ -1,14 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -f -q -t usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/midori.install (from rev 108939, 
midori/trunk/midori.install)
===
--- community-i686/midori.install   (rev 0)
+++ community-i686/midori.install   2014-04-07 21:17:30 UTC (rev 108940)
@@ -0,0 +1,14 @@
+post_install() {
+  update-desktop-database -q
+  gtk-update-icon-cache -f -q -t usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-07 21:17:17 UTC (rev 10893

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

2014-03-15 Thread Alexander Rødseth
Date: Saturday, March 15, 2014 @ 12:17:58
  Author: arodseth
Revision: 107241

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

Added:
  midori/repos/community-i686/PKGBUILD
(from rev 107240, midori/trunk/PKGBUILD)
  midori/repos/community-i686/midori.install
(from rev 107240, midori/trunk/midori.install)
  midori/repos/community-x86_64/PKGBUILD
(from rev 107240, midori/trunk/PKGBUILD)
  midori/repos/community-x86_64/midori.install
(from rev 107240, midori/trunk/midori.install)
Deleted:
  midori/repos/community-i686/PKGBUILD
  midori/repos/community-i686/midori.install
  midori/repos/community-x86_64/PKGBUILD
  midori/repos/community-x86_64/midori.install

-+
 /PKGBUILD   |   74 ++
 /midori.install |   28 ++
 community-i686/PKGBUILD |   41 -
 community-i686/midori.install   |   14 ---
 community-x86_64/PKGBUILD   |   41 -
 community-x86_64/midori.install |   14 ---
 6 files changed, 102 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-15 11:17:44 UTC (rev 107240)
+++ community-i686/PKGBUILD 2014-03-15 11:17:58 UTC (rev 107241)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Maintainer: Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andrew Gregory 
-
-pkgname=midori
-pkgver=0.5.7
-pkgrel=1
-pkgdesc='Lightweight web browser (GTK2)'
-arch=('x86_64' 'i686')
-url='http://www.midori-browser.org/'
-license=('LGPL2.1')
-install='midori.install'
-depends=('libzeitgeist' 'webkitgtk2' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique')
-makedepends=('bzr' 'python2' 'intltool' 'vala' 'librsvg' 'cmake')
-optdepends=('gstreamer0.10-base-plugins: HTML5 OGG videos support'
-'gstreamer0.10-bad-plugins: HTML5 WebM videos support'
-'gstreamer0.10-ffmpeg: HTML5 H264 videos support'
-'aria2: download utility')
-options=('!emptydirs')
-source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
-sha256sums=('2875bb2aa8a8a0cce342178f04700d4ebccd13bf1b2ad4cb3ba9fec7e2bd0b4d')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  mkdir -p build
-  cd build
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib
-  make
-}
-
-package() {
-  make -C "$pkgname-$pkgver/build" DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/PKGBUILD (from rev 107240, 
midori/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-15 11:17:58 UTC (rev 107241)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Andreas Radke 
+# Contributor: rabyte 
+# Contributor: Johannes Krampf 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andrew Gregory 
+
+pkgname=midori
+pkgver=0.5.7
+pkgrel=2
+pkgdesc='Lightweight web browser (GTK2)'
+arch=('x86_64' 'i686')
+url='http://www.midori-browser.org/'
+license=('LGPL2.1')
+install='midori.install'
+depends=('libzeitgeist' 'webkitgtk2' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique')
+makedepends=('bzr' 'python2' 'intltool' 'vala' 'librsvg' 'cmake')
+optdepends=('aria2: download utility')
+options=('!emptydirs')
+source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
+sha256sums=('2875bb2aa8a8a0cce342178f04700d4ebccd13bf1b2ad4cb3ba9fec7e2bd0b4d')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  mkdir -p build
+  cd build
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  make -C "$pkgname-$pkgver/build" DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/midori.install
===
--- community-i686/midori.install   2014-03-15 11:17:44 UTC (rev 107240)
+++ community-i686/midori.install   2014-03-15 11:17:58 UTC (rev 107241)
@@ -1,14 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -f -q -t usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/midori.install (from rev 107240, 
midori/trunk/midori.install)
===
--- community-i686/midori.install   (rev 0)
+++ community-i686/midori.install   2014-03-15 11:17:58 UTC (rev 107241)
@@ -0,0 +1,14 @@
+post_install() {
+  update-desktop-database -q
+  gtk-update-icon-cache -f -q -t usr/share/icons/hic

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

2014-01-16 Thread Alexander Rødseth
Date: Thursday, January 16, 2014 @ 14:43:17
  Author: arodseth
Revision: 104162

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

Added:
  midori/repos/community-i686/PKGBUILD
(from rev 104161, midori/trunk/PKGBUILD)
  midori/repos/community-i686/midori.install
(from rev 104161, midori/trunk/midori.install)
  midori/repos/community-x86_64/PKGBUILD
(from rev 104161, midori/trunk/PKGBUILD)
  midori/repos/community-x86_64/midori.install
(from rev 104161, midori/trunk/midori.install)
Deleted:
  midori/repos/community-i686/PKGBUILD
  midori/repos/community-i686/midori.install
  midori/repos/community-x86_64/PKGBUILD
  midori/repos/community-x86_64/midori.install

-+
 /PKGBUILD   |   82 ++
 /midori.install |   28 
 community-i686/PKGBUILD |   41 ---
 community-i686/midori.install   |   14 --
 community-x86_64/PKGBUILD   |   41 ---
 community-x86_64/midori.install |   14 --
 6 files changed, 110 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-01-16 13:39:38 UTC (rev 104161)
+++ community-i686/PKGBUILD 2014-01-16 13:43:17 UTC (rev 104162)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer:  Alexander Rødseth 
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andrew Gregory 
-
-pkgname=midori
-pkgver=0.5.6
-pkgrel=2
-pkgdesc='Lightweight web browser (GTK2)'
-arch=('x86_64' 'i686')
-url='http://www.midori-browser.org/'
-license=('LGPL2.1')
-install='midori.install'
-depends=('libzeitgeist' 'webkitgtk2' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique')
-makedepends=('bzr' 'python2' 'intltool' 'vala' 'librsvg' 'cmake')
-optdepends=('gstreamer0.10-base-plugins: HTML5 OGG videos support'
-'gstreamer0.10-bad-plugins: HTML5 WebM videos support'
-'gstreamer0.10-ffmpeg: HTML5 H264 videos support'
-'aria2: download utility')
-options=('!emptydirs')
-source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
-sha256sums=('c5be1b5d9933776f09c5cab7945a073a820d6e51fda9ff55fd063843f24a')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  mkdir -p build
-  cd build
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib
-  make
-}
-
-package() {
-  make -C "$pkgname-$pkgver/build" DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/PKGBUILD (from rev 104161, 
midori/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-01-16 13:43:17 UTC (rev 104162)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Maintainer: Bartłomiej Piotrowski 
+# Contributor: Andreas Radke 
+# Contributor: rabyte 
+# Contributor: Johannes Krampf 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andrew Gregory 
+
+pkgname=midori
+pkgver=0.5.7
+pkgrel=1
+pkgdesc='Lightweight web browser (GTK2)'
+arch=('x86_64' 'i686')
+url='http://www.midori-browser.org/'
+license=('LGPL2.1')
+install='midori.install'
+depends=('libzeitgeist' 'webkitgtk2' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique')
+makedepends=('bzr' 'python2' 'intltool' 'vala' 'librsvg' 'cmake')
+optdepends=('gstreamer0.10-base-plugins: HTML5 OGG videos support'
+'gstreamer0.10-bad-plugins: HTML5 WebM videos support'
+'gstreamer0.10-ffmpeg: HTML5 H264 videos support'
+'aria2: download utility')
+options=('!emptydirs')
+source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
+sha256sums=('2875bb2aa8a8a0cce342178f04700d4ebccd13bf1b2ad4cb3ba9fec7e2bd0b4d')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  mkdir -p build
+  cd build
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  make -C "$pkgname-$pkgver/build" DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/midori.install
===
--- community-i686/midori.install   2014-01-16 13:39:38 UTC (rev 104161)
+++ community-i686/midori.install   2014-01-16 13:43:17 UTC (rev 104162)
@@ -1,14 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -f -q -t usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/midori.install (from rev 104161, 
midori/trunk/midori.install)
===
--- community-i686/midori.install 

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

2013-11-28 Thread Alexander Rødseth
Date: Thursday, November 28, 2013 @ 21:54:48
  Author: arodseth
Revision: 101598

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

Added:
  midori/repos/community-i686/PKGBUILD
(from rev 101597, midori/trunk/PKGBUILD)
  midori/repos/community-i686/midori.install
(from rev 101597, midori/trunk/midori.install)
  midori/repos/community-x86_64/PKGBUILD
(from rev 101597, midori/trunk/PKGBUILD)
  midori/repos/community-x86_64/midori.install
(from rev 101597, midori/trunk/midori.install)
Deleted:
  midori/repos/community-i686/PKGBUILD
  midori/repos/community-i686/midori.install
  midori/repos/community-x86_64/PKGBUILD
  midori/repos/community-x86_64/midori.install

-+
 /PKGBUILD   |   82 ++
 /midori.install |   28 
 community-i686/PKGBUILD |   38 -
 community-i686/midori.install   |   14 --
 community-x86_64/PKGBUILD   |   38 -
 community-x86_64/midori.install |   14 --
 6 files changed, 110 insertions(+), 104 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-28 20:54:40 UTC (rev 101597)
+++ community-i686/PKGBUILD 2013-11-28 20:54:48 UTC (rev 101598)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer:  Alexander Rødseth 
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=midori
-pkgver=0.5.6
-pkgrel=1
-pkgdesc='Lightweight web browser (GTK2)'
-arch=('x86_64' 'i686')
-url='http://www.midori-browser.org/'
-license=('LGPL2.1')
-install='midori.install'
-depends=('libzeitgeist' 'webkitgtk2' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique')
-makedepends=('bzr' 'python2' 'intltool' 'vala' 'librsvg' 'cmake')
-optdepends=('gstreamer0.10-base-plugins: HTML5 OGG videos support'
-'gstreamer0.10-bad-plugins: HTML5 WebM videos support'
-'gstreamer0.10-ffmpeg: HTML5 H264 videos support'
-'aria2: download utility')
-options=('!emptydirs')
-source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
-sha256sums=('c5be1b5d9933776f09c5cab7945a073a820d6e51fda9ff55fd063843f24a')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure --prefix=/usr
-  cmake . && make
-}
-
-package() {
-  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/PKGBUILD (from rev 101597, 
midori/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-28 20:54:48 UTC (rev 101598)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer:  Alexander Rødseth 
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Andreas Radke 
+# Contributor: rabyte 
+# Contributor: Johannes Krampf 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andrew Gregory 
+
+pkgname=midori
+pkgver=0.5.6
+pkgrel=2
+pkgdesc='Lightweight web browser (GTK2)'
+arch=('x86_64' 'i686')
+url='http://www.midori-browser.org/'
+license=('LGPL2.1')
+install='midori.install'
+depends=('libzeitgeist' 'webkitgtk2' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique')
+makedepends=('bzr' 'python2' 'intltool' 'vala' 'librsvg' 'cmake')
+optdepends=('gstreamer0.10-base-plugins: HTML5 OGG videos support'
+'gstreamer0.10-bad-plugins: HTML5 WebM videos support'
+'gstreamer0.10-ffmpeg: HTML5 H264 videos support'
+'aria2: download utility')
+options=('!emptydirs')
+source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
+sha256sums=('c5be1b5d9933776f09c5cab7945a073a820d6e51fda9ff55fd063843f24a')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  mkdir -p build
+  cd build
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  make -C "$pkgname-$pkgver/build" DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/midori.install
===
--- community-i686/midori.install   2013-11-28 20:54:40 UTC (rev 101597)
+++ community-i686/midori.install   2013-11-28 20:54:48 UTC (rev 101598)
@@ -1,14 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -f -q -t usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/midori.install (from rev 101597, 
midori/trunk/midori.install)
===
--- community-i686/midori.install   (rev 0)
+++ community-i686/midori.install   2013-11-28 20:54:4

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

2013-11-20 Thread Alexander Rødseth
Date: Wednesday, November 20, 2013 @ 14:23:26
  Author: arodseth
Revision: 101245

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

Added:
  midori/repos/community-i686/PKGBUILD
(from rev 101244, midori/trunk/PKGBUILD)
  midori/repos/community-i686/midori.install
(from rev 101244, midori/trunk/midori.install)
  midori/repos/community-x86_64/PKGBUILD
(from rev 101244, midori/trunk/PKGBUILD)
  midori/repos/community-x86_64/midori.install
(from rev 101244, midori/trunk/midori.install)
Deleted:
  midori/repos/community-i686/PKGBUILD
  midori/repos/community-i686/midori.install
  midori/repos/community-x86_64/PKGBUILD
  midori/repos/community-x86_64/midori.install

-+
 /PKGBUILD   |   76 ++
 /midori.install |   28 ++
 community-i686/PKGBUILD |   40 
 community-i686/midori.install   |   14 ---
 community-x86_64/PKGBUILD   |   40 
 community-x86_64/midori.install |   14 ---
 6 files changed, 104 insertions(+), 108 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-11-20 13:23:16 UTC (rev 101244)
+++ community-i686/PKGBUILD 2013-11-20 13:23:26 UTC (rev 101245)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer:  Alexander Rødseth 
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=midori
-pkgver=0.5.5
-pkgrel=1
-pkgdesc='Lightweight web browser (GTK2)'
-arch=('x86_64' 'i686')
-url='http://www.midori-browser.org/'
-license=('LGPL2.1')
-install='midori.install'
-depends=('libzeitgeist' 'webkitgtk2' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique')
-makedepends=('bzr' 'python2' 'intltool' 'vala' 'librsvg')
-optdepends=('gstreamer0.10-base-plugins: HTML5 OGG videos support'
-'gstreamer0.10-bad-plugins: HTML5 WebM videos support'
-'gstreamer0.10-ffmpeg: HTML5 H264 videos support'
-'aria2: download utility')
-options=('!emptydirs')
-source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
-sha256sums=('ca69382a285222a86028abebd73fed1976735883027ff0adc094b627789bbd62')
-
-build() {
-  cd "$srcdir/$pkgname-${pkgver}"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-${pkgver}"
-
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/PKGBUILD (from rev 101244, 
midori/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-20 13:23:26 UTC (rev 101245)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer:  Alexander Rødseth 
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Andreas Radke 
+# Contributor: rabyte 
+# Contributor: Johannes Krampf 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=midori
+pkgver=0.5.6
+pkgrel=1
+pkgdesc='Lightweight web browser (GTK2)'
+arch=('x86_64' 'i686')
+url='http://www.midori-browser.org/'
+license=('LGPL2.1')
+install='midori.install'
+depends=('libzeitgeist' 'webkitgtk2' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique')
+makedepends=('bzr' 'python2' 'intltool' 'vala' 'librsvg' 'cmake')
+optdepends=('gstreamer0.10-base-plugins: HTML5 OGG videos support'
+'gstreamer0.10-bad-plugins: HTML5 WebM videos support'
+'gstreamer0.10-ffmpeg: HTML5 H264 videos support'
+'aria2: download utility')
+options=('!emptydirs')
+source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
+sha256sums=('c5be1b5d9933776f09c5cab7945a073a820d6e51fda9ff55fd063843f24a')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  cmake . && make
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/midori.install
===
--- community-i686/midori.install   2013-11-20 13:23:16 UTC (rev 101244)
+++ community-i686/midori.install   2013-11-20 13:23:26 UTC (rev 101245)
@@ -1,14 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -f -q -t usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/midori.install (from rev 101244, 
midori/trunk/midori.install)
===
--- community-i686/midori.install   (rev 0)
+++ community-i686/midori.install   2013-11-20 13:23:26 UTC (rev 101245)
@@ -0,0 +1,14 @@
+post_install() {
+  update-desktop-databa

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

2013-08-15 Thread Alexander Rødseth
Date: Thursday, August 15, 2013 @ 13:42:39
  Author: arodseth
Revision: 95662

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

Added:
  midori/repos/community-i686/PKGBUILD
(from rev 95661, midori/trunk/PKGBUILD)
  midori/repos/community-i686/midori.install
(from rev 95661, midori/trunk/midori.install)
  midori/repos/community-x86_64/PKGBUILD
(from rev 95661, midori/trunk/PKGBUILD)
  midori/repos/community-x86_64/midori.install
(from rev 95661, midori/trunk/midori.install)
Deleted:
  midori/repos/community-i686/PKGBUILD
  midori/repos/community-i686/midori.install
  midori/repos/community-x86_64/PKGBUILD
  midori/repos/community-x86_64/midori.install

-+
 /PKGBUILD   |   80 ++
 /midori.install |   28 +
 community-i686/PKGBUILD |   38 --
 community-i686/midori.install   |   14 --
 community-x86_64/PKGBUILD   |   38 --
 community-x86_64/midori.install |   14 --
 6 files changed, 108 insertions(+), 104 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-15 11:42:31 UTC (rev 95661)
+++ community-i686/PKGBUILD 2013-08-15 11:42:39 UTC (rev 95662)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer:  Alexander Rødseth 
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=midori
-pkgver=0.5.4
-pkgrel=4
-pkgdesc='Lightweight web browser (GTK2)'
-arch=('x86_64' 'i686')
-url='http://www.midori-browser.org/'
-license=('LGPL2.1')
-install='midori.install'
-depends=('libzeitgeist' 'webkitgtk2' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique' 'gcr')
-makedepends=('pkg-config' 'bzr' 'python2' 'libxml2' 'gtk2' 'intltool' 
'python2-docutils' 'libsoup' 'vala' 'librsvg')
-optdepends=('gstreamer0.10-ugly-plugins: HTML5 videos support'
-'aria2: download utility')
-options=('!emptydirs')
-source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
-sha256sums=('d4ee77f3dd9bf2c07cea7674d533e77960e9346bd8b5482582ccb3cdaf182022')
-
-build() {
-  cd "$srcdir/${pkgname}_${pkgver}_all_"
-
-  python2 ./waf configure --prefix=/usr
-  python2 ./waf build 
-}
-
-package() {
-  cd "$srcdir/${pkgname}_${pkgver}_all_"
-
-  DESTDIR="$pkgdir" python2 ./waf install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/PKGBUILD (from rev 95661, 
midori/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-15 11:42:39 UTC (rev 95662)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer:  Alexander Rødseth 
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Andreas Radke 
+# Contributor: rabyte 
+# Contributor: Johannes Krampf 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=midori
+pkgver=0.5.5
+pkgrel=1
+pkgdesc='Lightweight web browser (GTK2)'
+arch=('x86_64' 'i686')
+url='http://www.midori-browser.org/'
+license=('LGPL2.1')
+install='midori.install'
+depends=('libzeitgeist' 'webkitgtk2' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique')
+makedepends=('bzr' 'python2' 'intltool' 'vala' 'librsvg')
+optdepends=('gstreamer0.10-base-plugins: HTML5 OGG videos support'
+'gstreamer0.10-bad-plugins: HTML5 WebM videos support'
+'gstreamer0.10-ffmpeg: HTML5 H264 videos support'
+'aria2: download utility')
+options=('!emptydirs')
+source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
+sha256sums=('ca69382a285222a86028abebd73fed1976735883027ff0adc094b627789bbd62')
+
+build() {
+  cd "$srcdir/$pkgname-${pkgver}"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-${pkgver}"
+
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/midori.install
===
--- community-i686/midori.install   2013-08-15 11:42:31 UTC (rev 95661)
+++ community-i686/midori.install   2013-08-15 11:42:39 UTC (rev 95662)
@@ -1,14 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -f -q -t usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/midori.install (from rev 95661, 
midori/trunk/midori.install)
===
--- community-i686/midori.install   (rev 0)
+++ community-i686/midori.install   2013-08-15 11:42:39 UTC (rev 95662)
@@ -0,0 +1,14 @@
+post_install() {
+  update-desktop-database -q
+  gtk-update-icon-cache -f -

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

2013-08-02 Thread Alexander Rødseth
Date: Friday, August 2, 2013 @ 12:17:44
  Author: arodseth
Revision: 94981

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

Added:
  midori/repos/community-i686/PKGBUILD
(from rev 94980, midori/trunk/PKGBUILD)
  midori/repos/community-i686/midori.install
(from rev 94980, midori/trunk/midori.install)
  midori/repos/community-x86_64/PKGBUILD
(from rev 94980, midori/trunk/PKGBUILD)
  midori/repos/community-x86_64/midori.install
(from rev 94980, midori/trunk/midori.install)
Deleted:
  midori/repos/community-i686/PKGBUILD
  midori/repos/community-i686/midori.install
  midori/repos/community-x86_64/PKGBUILD
  midori/repos/community-x86_64/midori.install

-+
 /PKGBUILD   |   76 ++
 /midori.install |   28 ++
 community-i686/PKGBUILD |   46 ---
 community-i686/midori.install   |   14 ---
 community-x86_64/PKGBUILD   |   46 ---
 community-x86_64/midori.install |   14 ---
 6 files changed, 104 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-02 10:17:35 UTC (rev 94980)
+++ community-i686/PKGBUILD 2013-08-02 10:17:44 UTC (rev 94981)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer:  Alexander Rødseth 
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-
-#
-# Note:
-#
-# * Depending on and compiling with 'granite' didn't work last time I tried.
-# * To compile with gtk3 instead of gtk2, depend on 'webkitgtk' and 'gtk3' 
then --enable-gtk3.
-# * If steadyflow is moved to [community] or [extra], it can be added as an 
optdepends.
-#
-
-pkgname=midori
-pkgver=0.5.4
-pkgrel=3
-pkgdesc='Lightweight web browser (GTK2)'
-arch=('x86_64' 'i686')
-url='http://www.midori-browser.org/'
-license=('LGPL2.1')
-install='midori.install'
-depends=('libzeitgeist' 'webkitgtk2' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique3' 'gcr')
-makedepends=('pkg-config' 'bzr' 'python2' 'libxml2' 'gtk2' 'intltool' 
'python2-docutils' 'libsoup' 'vala' 'librsvg')
-optdepends=('gstreamer0.10-ugly-plugins: HTML5 videos support'
-'aria2: download utility')
-options=('!emptydirs')
-source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
-sha256sums=('d4ee77f3dd9bf2c07cea7674d533e77960e9346bd8b5482582ccb3cdaf182022')
-
-build() {
-  cd "$srcdir/${pkgname}_${pkgver}_all_"
-
-  python2 ./waf configure --prefix=/usr
-  python2 ./waf build 
-}
-
-package() {
-  cd "$srcdir/${pkgname}_${pkgver}_all_"
-
-  DESTDIR="$pkgdir" python2 ./waf install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/PKGBUILD (from rev 94980, 
midori/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-02 10:17:44 UTC (rev 94981)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer:  Alexander Rødseth 
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Andreas Radke 
+# Contributor: rabyte 
+# Contributor: Johannes Krampf 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=midori
+pkgver=0.5.4
+pkgrel=4
+pkgdesc='Lightweight web browser (GTK2)'
+arch=('x86_64' 'i686')
+url='http://www.midori-browser.org/'
+license=('LGPL2.1')
+install='midori.install'
+depends=('libzeitgeist' 'webkitgtk2' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique' 'gcr')
+makedepends=('pkg-config' 'bzr' 'python2' 'libxml2' 'gtk2' 'intltool' 
'python2-docutils' 'libsoup' 'vala' 'librsvg')
+optdepends=('gstreamer0.10-ugly-plugins: HTML5 videos support'
+'aria2: download utility')
+options=('!emptydirs')
+source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
+sha256sums=('d4ee77f3dd9bf2c07cea7674d533e77960e9346bd8b5482582ccb3cdaf182022')
+
+build() {
+  cd "$srcdir/${pkgname}_${pkgver}_all_"
+
+  python2 ./waf configure --prefix=/usr
+  python2 ./waf build 
+}
+
+package() {
+  cd "$srcdir/${pkgname}_${pkgver}_all_"
+
+  DESTDIR="$pkgdir" python2 ./waf install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/midori.install
===
--- community-i686/midori.install   2013-08-02 10:17:35 UTC (rev 94980)
+++ community-i686/midori.install   2013-08-02 10:17:44 UTC (rev 94981)
@@ -1,14 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -f -q -t usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/midori.install (from rev 94980, 
midori/trunk/midori.install)

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

2013-08-01 Thread Alexander Rødseth
Date: Thursday, August 1, 2013 @ 21:50:34
  Author: arodseth
Revision: 94963

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

Added:
  midori/repos/community-i686/PKGBUILD
(from rev 94962, midori/trunk/PKGBUILD)
  midori/repos/community-i686/midori.install
(from rev 94962, midori/trunk/midori.install)
  midori/repos/community-x86_64/PKGBUILD
(from rev 94962, midori/trunk/PKGBUILD)
  midori/repos/community-x86_64/midori.install
(from rev 94962, midori/trunk/midori.install)
Deleted:
  midori/repos/community-i686/PKGBUILD
  midori/repos/community-i686/midori.install
  midori/repos/community-x86_64/PKGBUILD
  midori/repos/community-x86_64/midori.install

-+
 /PKGBUILD   |   92 ++
 /midori.install |   28 +++
 community-i686/PKGBUILD |   43 -
 community-i686/midori.install   |   14 -
 community-x86_64/PKGBUILD   |   43 -
 community-x86_64/midori.install |   14 -
 6 files changed, 120 insertions(+), 114 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-01 19:50:20 UTC (rev 94962)
+++ community-i686/PKGBUILD 2013-08-01 19:50:34 UTC (rev 94963)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer:  Alexander Rødseth 
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=midori
-pkgver=0.5.4
-pkgrel=2
-pkgdesc='Lightweight web browser based on Gtk WebKit'
-arch=('x86_64' 'i686')
-url='http://www.midori-browser.org/'
-license=('LGPL2.1')
-install='midori.install'
-depends=('libzeitgeist' 'webkitgtk3' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique3' 'gcr') # 'granite'
-makedepends=('pkg-config' 'bzr' 'python2' 'libxml2' 'gtk3' 'intltool' 
'python2-docutils' 'libsoup' 'vala' 'librsvg')
-optdepends=('gstreamer0.10-ugly-plugins: HTML5 videos support'
-'aria2: download utility')
-#'steadyflow: download manager')
-options=('!emptydirs')
-source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
-sha256sums=('d4ee77f3dd9bf2c07cea7674d533e77960e9346bd8b5482582ccb3cdaf182022')
-
-build() {
-  cd "$srcdir/${pkgname}_${pkgver}_all_"
-
-  python2 ./waf configure \
---prefix=/usr \
---enable-gtk3 \
---disable-granite
-#--enable-webkit2
-  python2 ./waf build 
-}
-
-package() {
-  cd "$srcdir/${pkgname}_${pkgver}_all_"
-
-  DESTDIR="$pkgdir" python2 ./waf install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/PKGBUILD (from rev 94962, 
midori/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-01 19:50:34 UTC (rev 94963)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer:  Alexander Rødseth 
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Andreas Radke 
+# Contributor: rabyte 
+# Contributor: Johannes Krampf 
+# Contributor: Bartłomiej Piotrowski 
+
+#
+# Note:
+#
+# * Depending on and compiling with 'granite' didn't work last time I tried.
+# * To compile with gtk3 instead of gtk2, depend on 'webkitgtk' and 'gtk3' 
then --enable-gtk3.
+# * If steadyflow is moved to [community] or [extra], it can be added as an 
optdepends.
+#
+
+pkgname=midori
+pkgver=0.5.4
+pkgrel=3
+pkgdesc='Lightweight web browser (GTK2)'
+arch=('x86_64' 'i686')
+url='http://www.midori-browser.org/'
+license=('LGPL2.1')
+install='midori.install'
+depends=('libzeitgeist' 'webkitgtk2' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique3' 'gcr')
+makedepends=('pkg-config' 'bzr' 'python2' 'libxml2' 'gtk2' 'intltool' 
'python2-docutils' 'libsoup' 'vala' 'librsvg')
+optdepends=('gstreamer0.10-ugly-plugins: HTML5 videos support'
+'aria2: download utility')
+options=('!emptydirs')
+source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
+sha256sums=('d4ee77f3dd9bf2c07cea7674d533e77960e9346bd8b5482582ccb3cdaf182022')
+
+build() {
+  cd "$srcdir/${pkgname}_${pkgver}_all_"
+
+  python2 ./waf configure --prefix=/usr
+  python2 ./waf build 
+}
+
+package() {
+  cd "$srcdir/${pkgname}_${pkgver}_all_"
+
+  DESTDIR="$pkgdir" python2 ./waf install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/midori.install
===
--- community-i686/midori.install   2013-08-01 19:50:20 UTC (rev 94962)
+++ community-i686/midori.install   2013-08-01 19:50:34 UTC (rev 94963)
@@ -1,14 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -f -q -t usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}
-
-# vim:set ts=2 sw=2 et:

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

2013-08-01 Thread Alexander Rødseth
Date: Thursday, August 1, 2013 @ 11:32:26
  Author: arodseth
Revision: 94935

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

Added:
  midori/repos/community-i686/PKGBUILD
(from rev 94934, midori/trunk/PKGBUILD)
  midori/repos/community-i686/midori.install
(from rev 94934, midori/trunk/midori.install)
  midori/repos/community-x86_64/PKGBUILD
(from rev 94934, midori/trunk/PKGBUILD)
  midori/repos/community-x86_64/midori.install
(from rev 94934, midori/trunk/midori.install)
Deleted:
  midori/repos/community-i686/PKGBUILD
  midori/repos/community-i686/midori.install
  midori/repos/community-x86_64/PKGBUILD
  midori/repos/community-x86_64/midori.install

-+
 /PKGBUILD   |   86 ++
 /midori.install |   28 
 community-i686/PKGBUILD |   43 ---
 community-i686/midori.install   |   14 --
 community-x86_64/PKGBUILD   |   43 ---
 community-x86_64/midori.install |   14 --
 6 files changed, 114 insertions(+), 114 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-01 09:32:17 UTC (rev 94934)
+++ community-i686/PKGBUILD 2013-08-01 09:32:26 UTC (rev 94935)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer:  Alexander Rødseth 
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=midori
-pkgver=0.5.4
-pkgrel=1
-pkgdesc='Lightweight web browser based on Gtk WebKit'
-arch=('x86_64' 'i686')
-url='http://www.twotoasts.de/index.php?/pages/midori_summary.html'
-license=('LGPL2.1')
-install='midori.install'
-depends=('libzeitgeist' 'webkitgtk3' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique3' 'gcr') # 'granite'
-makedepends=('pkg-config' 'bzr' 'python2' 'libxml2' 'gtk3' 'intltool' 
'python2-docutils' 'libsoup' 'vala' 'librsvg')
-optdepends=('gstreamer0.10-ugly-plugins: HTML5 videos support'
-'aria2: download utility')
-#'steadyflow: download manager')
-options=('!emptydirs')
-source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
-sha256sums=('d4ee77f3dd9bf2c07cea7674d533e77960e9346bd8b5482582ccb3cdaf182022')
-
-build() {
-  cd "$srcdir/${pkgname}_${pkgver}_all_"
-
-  python2 ./waf configure \
---prefix=/usr \
---enable-gtk3 \
---disable-granite \
---enable-webkit2
-  python2 ./waf build 
-}
-
-package() {
-  cd "$srcdir/${pkgname}_${pkgver}_all_"
-
-  DESTDIR="$pkgdir" python2 ./waf install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/PKGBUILD (from rev 94934, 
midori/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-01 09:32:26 UTC (rev 94935)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer:  Alexander Rødseth 
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Andreas Radke 
+# Contributor: rabyte 
+# Contributor: Johannes Krampf 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=midori
+pkgver=0.5.4
+pkgrel=2
+pkgdesc='Lightweight web browser based on Gtk WebKit'
+arch=('x86_64' 'i686')
+url='http://www.midori-browser.org/'
+license=('LGPL2.1')
+install='midori.install'
+depends=('libzeitgeist' 'webkitgtk3' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique3' 'gcr') # 'granite'
+makedepends=('pkg-config' 'bzr' 'python2' 'libxml2' 'gtk3' 'intltool' 
'python2-docutils' 'libsoup' 'vala' 'librsvg')
+optdepends=('gstreamer0.10-ugly-plugins: HTML5 videos support'
+'aria2: download utility')
+#'steadyflow: download manager')
+options=('!emptydirs')
+source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
+sha256sums=('d4ee77f3dd9bf2c07cea7674d533e77960e9346bd8b5482582ccb3cdaf182022')
+
+build() {
+  cd "$srcdir/${pkgname}_${pkgver}_all_"
+
+  python2 ./waf configure \
+--prefix=/usr \
+--enable-gtk3 \
+--disable-granite
+#--enable-webkit2
+  python2 ./waf build 
+}
+
+package() {
+  cd "$srcdir/${pkgname}_${pkgver}_all_"
+
+  DESTDIR="$pkgdir" python2 ./waf install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/midori.install
===
--- community-i686/midori.install   2013-08-01 09:32:17 UTC (rev 94934)
+++ community-i686/midori.install   2013-08-01 09:32:26 UTC (rev 94935)
@@ -1,14 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -f -q -t usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/midori.install (from rev 94934, 
midori/trunk/midori.install)
=

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

2013-07-16 Thread Alexander Rødseth
Date: Tuesday, July 16, 2013 @ 22:10:35
  Author: arodseth
Revision: 94215

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

Added:
  midori/repos/community-i686/PKGBUILD
(from rev 94214, midori/trunk/PKGBUILD)
  midori/repos/community-i686/midori.install
(from rev 94214, midori/trunk/midori.install)
  midori/repos/community-x86_64/PKGBUILD
(from rev 94214, midori/trunk/PKGBUILD)
  midori/repos/community-x86_64/midori.install
(from rev 94214, midori/trunk/midori.install)
Deleted:
  midori/repos/community-i686/PKGBUILD
  midori/repos/community-i686/midori.install
  midori/repos/community-x86_64/PKGBUILD
  midori/repos/community-x86_64/midori.install

-+
 /PKGBUILD   |   86 ++
 /midori.install |   28 
 community-i686/PKGBUILD |   44 ---
 community-i686/midori.install   |   12 -
 community-x86_64/PKGBUILD   |   44 ---
 community-x86_64/midori.install |   12 -
 6 files changed, 114 insertions(+), 112 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-07-16 20:10:26 UTC (rev 94214)
+++ community-i686/PKGBUILD 2013-07-16 20:10:35 UTC (rev 94215)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer:  Alexander Rødseth 
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=midori
-pkgver=0.5.2
-pkgrel=1
-pkgdesc='Lightweight web browser based on Gtk WebKit'
-arch=('x86_64' 'i686')
-url='http://www.twotoasts.de/index.php?/pages/midori_summary.html'
-license=('LGPL2.1')
-install="$pkgname.install"
-depends=('libzeitgeist' 'webkitgtk2' 'libnotify' 'libxss' 'libunique' 
'hicolor-icon-theme' 'desktop-file-utils')
-makedepends=('libxml2' 'intltool' 'gtk-doc' 'librsvg' 'python2' 'vala' 'gcr')
-optdepends=('gstreamer0.10-ugly-plugins: HTML5 videos support'
-'aria2: download utility')
-options=('!emptydirs')
-source=("http://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2";)
-sha256sums=('a9c5cb4606e8e4967a2b980caa9ada25623c50d927a302b6bf73eeac5815c97c')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure --prefix=/usr \
-  --jobs=${MAKEFLAGS/-j/} \
-  --enable-addons \
-  --enable-unique \
-  --enable-nls \
-  --enable-docs \
-  --enable-apidocs
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/PKGBUILD (from rev 94214, 
midori/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-07-16 20:10:35 UTC (rev 94215)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer:  Alexander Rødseth 
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Andreas Radke 
+# Contributor: rabyte 
+# Contributor: Johannes Krampf 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=midori
+pkgver=0.5.4
+pkgrel=1
+pkgdesc='Lightweight web browser based on Gtk WebKit'
+arch=('x86_64' 'i686')
+url='http://www.twotoasts.de/index.php?/pages/midori_summary.html'
+license=('LGPL2.1')
+install='midori.install'
+depends=('libzeitgeist' 'webkitgtk3' 'libnotify' 'libxss' 'hicolor-icon-theme' 
'desktop-file-utils' 'libunique3' 'gcr') # 'granite'
+makedepends=('pkg-config' 'bzr' 'python2' 'libxml2' 'gtk3' 'intltool' 
'python2-docutils' 'libsoup' 'vala' 'librsvg')
+optdepends=('gstreamer0.10-ugly-plugins: HTML5 videos support'
+'aria2: download utility')
+#'steadyflow: download manager')
+options=('!emptydirs')
+source=("http://www.midori-browser.org/downloads/${pkgname}_${pkgver}_all_.tar.bz2";)
+sha256sums=('d4ee77f3dd9bf2c07cea7674d533e77960e9346bd8b5482582ccb3cdaf182022')
+
+build() {
+  cd "$srcdir/${pkgname}_${pkgver}_all_"
+
+  python2 ./waf configure \
+--prefix=/usr \
+--enable-gtk3 \
+--disable-granite \
+--enable-webkit2
+  python2 ./waf build 
+}
+
+package() {
+  cd "$srcdir/${pkgname}_${pkgver}_all_"
+
+  DESTDIR="$pkgdir" python2 ./waf install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/midori.install
===
--- community-i686/midori.install   2013-07-16 20:10:26 UTC (rev 94214)
+++ community-i686/midori.install   2013-07-16 20:10:35 UTC (rev 94215)
@@ -1,12 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -f -q -t usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: midori/repos/community-i686/midori.install (from rev 94214, 
midori/trunk/midori.install)
==

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

2013-05-19 Thread Alexander Rødseth
Date: Sunday, May 19, 2013 @ 12:48:50
  Author: arodseth
Revision: 91092

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

Added:
  midori/repos/community-i686/PKGBUILD
(from rev 91091, midori/trunk/PKGBUILD)
  midori/repos/community-i686/midori.install
(from rev 91091, midori/trunk/midori.install)
  midori/repos/community-x86_64/PKGBUILD
(from rev 91091, midori/trunk/PKGBUILD)
  midori/repos/community-x86_64/midori.install
(from rev 91091, midori/trunk/midori.install)
Deleted:
  midori/repos/community-i686/PKGBUILD
  midori/repos/community-i686/midori.install
  midori/repos/community-x86_64/PKGBUILD
  midori/repos/community-x86_64/midori.install

-+
 /PKGBUILD   |   88 ++
 /midori.install |   24 ++
 community-i686/PKGBUILD |   44 ---
 community-i686/midori.install   |   12 -
 community-x86_64/PKGBUILD   |   44 ---
 community-x86_64/midori.install |   12 -
 6 files changed, 112 insertions(+), 112 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-05-19 10:48:38 UTC (rev 91091)
+++ community-i686/PKGBUILD 2013-05-19 10:48:50 UTC (rev 91092)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer:  Alexander Rødseth 
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=midori
-pkgver=0.5.0
-pkgrel=2
-pkgdesc='Lightweight web browser based on Gtk WebKit'
-arch=('x86_64' 'i686')
-url='http://www.twotoasts.de/index.php?/pages/midori_summary.html'
-license=('LGPL2.1')
-install="$pkgname.install"
-depends=('libzeitgeist' 'webkitgtk2' 'libnotify' 'libxss' 'libunique' 
'hicolor-icon-theme' 'desktop-file-utils')
-makedepends=('libxml2' 'intltool' 'gtk-doc' 'librsvg' 'python2' 'vala' 'gcr')
-optdepends=('gstreamer0.10-ugly-plugins: HTML5 videos support'
-'aria2: download utility')
-options=('!emptydirs')
-source=("http://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2";)
-sha256sums=('d280c19bb135f2b644a67d9f34d1ec1c148ceb14b5de11ce6c23f64c15be5df0')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure --prefix=/usr \
-  --jobs=${MAKEFLAGS/-j/} \
-  --enable-addons \
-  --enable-unique \
-  --enable-nls \
-  --enable-docs \
-  --enable-apidocs
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/PKGBUILD (from rev 91091, 
midori/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-05-19 10:48:50 UTC (rev 91092)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer:  Alexander Rødseth 
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Andreas Radke 
+# Contributor: rabyte 
+# Contributor: Johannes Krampf 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=midori
+pkgver=0.5.2
+pkgrel=1
+pkgdesc='Lightweight web browser based on Gtk WebKit'
+arch=('x86_64' 'i686')
+url='http://www.twotoasts.de/index.php?/pages/midori_summary.html'
+license=('LGPL2.1')
+install="$pkgname.install"
+depends=('libzeitgeist' 'webkitgtk2' 'libnotify' 'libxss' 'libunique' 
'hicolor-icon-theme' 'desktop-file-utils')
+makedepends=('libxml2' 'intltool' 'gtk-doc' 'librsvg' 'python2' 'vala' 'gcr')
+optdepends=('gstreamer0.10-ugly-plugins: HTML5 videos support'
+'aria2: download utility')
+options=('!emptydirs')
+source=("http://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2";)
+sha256sums=('a9c5cb4606e8e4967a2b980caa9ada25623c50d927a302b6bf73eeac5815c97c')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr \
+  --jobs=${MAKEFLAGS/-j/} \
+  --enable-addons \
+  --enable-unique \
+  --enable-nls \
+  --enable-docs \
+  --enable-apidocs
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/midori.install
===
--- community-i686/midori.install   2013-05-19 10:48:38 UTC (rev 91091)
+++ community-i686/midori.install   2013-05-19 10:48:50 UTC (rev 91092)
@@ -1,12 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -f -q -t usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: midori/repos/community-i686/midori.install (from rev 91091, 
midori/trunk/midori.install)
===

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

2013-05-09 Thread Alexander Rødseth
Date: Friday, May 10, 2013 @ 01:40:12
  Author: arodseth
Revision: 90243

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

Added:
  midori/repos/community-i686/PKGBUILD
(from rev 90242, midori/trunk/PKGBUILD)
  midori/repos/community-i686/midori.install
(from rev 90242, midori/trunk/midori.install)
  midori/repos/community-x86_64/PKGBUILD
(from rev 90242, midori/trunk/PKGBUILD)
  midori/repos/community-x86_64/midori.install
(from rev 90242, midori/trunk/midori.install)
Deleted:
  midori/repos/community-i686/PKGBUILD
  midori/repos/community-i686/midori.install
  midori/repos/community-x86_64/PKGBUILD
  midori/repos/community-x86_64/midori.install

-+
 /PKGBUILD   |   88 ++
 /midori.install |   24 ++
 community-i686/PKGBUILD |   44 ---
 community-i686/midori.install   |   12 -
 community-x86_64/PKGBUILD   |   44 ---
 community-x86_64/midori.install |   12 -
 6 files changed, 112 insertions(+), 112 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-05-09 23:39:59 UTC (rev 90242)
+++ community-i686/PKGBUILD 2013-05-09 23:40:12 UTC (rev 90243)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer:  Alexander Rødseth 
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Andreas Radke 
-# Contributor: rabyte 
-# Contributor: Johannes Krampf 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=midori
-pkgver=0.5.0
-pkgrel=1
-pkgdesc='Lightweight web browser based on Gtk WebKit'
-arch=('x86_64' 'i686')
-url='http://www.twotoasts.de/index.php?/pages/midori_summary.html'
-license=('LGPL2.1')
-install=midori.install
-depends=('libzeitgeist' 'libwebkit' 'libnotify' 'libxss' 'libunique' 
'hicolor-icon-theme' 'desktop-file-utils')
-makedepends=('libxml2' 'intltool' 'gtk-doc' 'librsvg' 'python2' 'vala' 'gcr')
-optdepends=('gstreamer0.10-ugly-plugins: HTML5 videos support'
-'aria2: download utility')
-options=('!emptydirs')
-source=("http://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2";)
-sha256sums=('d280c19bb135f2b644a67d9f34d1ec1c148ceb14b5de11ce6c23f64c15be5df0')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure --prefix=/usr \
-  --jobs=${MAKEFLAGS/-j/} \
-  --enable-addons \
-  --enable-unique \
-  --enable-nls \
-  --enable-docs \
-  --enable-apidocs
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: midori/repos/community-i686/PKGBUILD (from rev 90242, 
midori/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-05-09 23:40:12 UTC (rev 90243)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer:  Alexander Rødseth 
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Andreas Radke 
+# Contributor: rabyte 
+# Contributor: Johannes Krampf 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=midori
+pkgver=0.5.0
+pkgrel=2
+pkgdesc='Lightweight web browser based on Gtk WebKit'
+arch=('x86_64' 'i686')
+url='http://www.twotoasts.de/index.php?/pages/midori_summary.html'
+license=('LGPL2.1')
+install="$pkgname.install"
+depends=('libzeitgeist' 'webkitgtk2' 'libnotify' 'libxss' 'libunique' 
'hicolor-icon-theme' 'desktop-file-utils')
+makedepends=('libxml2' 'intltool' 'gtk-doc' 'librsvg' 'python2' 'vala' 'gcr')
+optdepends=('gstreamer0.10-ugly-plugins: HTML5 videos support'
+'aria2: download utility')
+options=('!emptydirs')
+source=("http://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2";)
+sha256sums=('d280c19bb135f2b644a67d9f34d1ec1c148ceb14b5de11ce6c23f64c15be5df0')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr \
+  --jobs=${MAKEFLAGS/-j/} \
+  --enable-addons \
+  --enable-unique \
+  --enable-nls \
+  --enable-docs \
+  --enable-apidocs
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/midori.install
===
--- community-i686/midori.install   2013-05-09 23:39:59 UTC (rev 90242)
+++ community-i686/midori.install   2013-05-09 23:40:12 UTC (rev 90243)
@@ -1,12 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -f -q -t usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: midori/repos/community-i686/midori.install (from rev 90242, 
midori/trunk/midori.install)
===