[arch-commits] Commit in midori/repos (8 files)
Alexander Rødseth
arodseth at nymeria.archlinux.org
Thu Aug 1 19:50:35 UTC 2013
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 <rodseth at gmail.com>
-# Maintainer: Bartłomiej Piotrowski <nospam at bpiotrowski.pl>
-# Contributor: Andreas Radke <andyrtr at archlinux.org>
-# Contributor: rabyte <rabyte.at.gmail.dot.com>
-# Contributor: Johannes Krampf <wuischke.at.amule.dot.org>
-# Contributor: Bartłomiej Piotrowski <barthalion at gmail.com>
-
-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 <rodseth at gmail.com>
+# Maintainer: Bartłomiej Piotrowski <nospam at bpiotrowski.pl>
+# Contributor: Andreas Radke <andyrtr at archlinux.org>
+# Contributor: rabyte <rabyte.at.gmail.dot.com>
+# Contributor: Johannes Krampf <wuischke.at.amule.dot.org>
+# Contributor: Bartłomiej Piotrowski <barthalion at gmail.com>
+
+#
+# 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:
Copied: midori/repos/community-i686/midori.install (from rev 94962, midori/trunk/midori.install)
===================================================================
--- community-i686/midori.install (rev 0)
+++ community-i686/midori.install 2013-08-01 19:50:34 UTC (rev 94963)
@@ -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 2013-08-01 19:50:20 UTC (rev 94962)
+++ community-x86_64/PKGBUILD 2013-08-01 19:50:34 UTC (rev 94963)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth <rodseth at gmail.com>
-# Maintainer: Bartłomiej Piotrowski <nospam at bpiotrowski.pl>
-# Contributor: Andreas Radke <andyrtr at archlinux.org>
-# Contributor: rabyte <rabyte.at.gmail.dot.com>
-# Contributor: Johannes Krampf <wuischke.at.amule.dot.org>
-# Contributor: Bartłomiej Piotrowski <barthalion at gmail.com>
-
-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-x86_64/PKGBUILD (from rev 94962, midori/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2013-08-01 19:50:34 UTC (rev 94963)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Alexander Rødseth <rodseth at gmail.com>
+# Maintainer: Bartłomiej Piotrowski <nospam at bpiotrowski.pl>
+# Contributor: Andreas Radke <andyrtr at archlinux.org>
+# Contributor: rabyte <rabyte.at.gmail.dot.com>
+# Contributor: Johannes Krampf <wuischke.at.amule.dot.org>
+# Contributor: Bartłomiej Piotrowski <barthalion at gmail.com>
+
+#
+# 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-x86_64/midori.install
===================================================================
--- community-x86_64/midori.install 2013-08-01 19:50:20 UTC (rev 94962)
+++ community-x86_64/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:
Copied: midori/repos/community-x86_64/midori.install (from rev 94962, midori/trunk/midori.install)
===================================================================
--- community-x86_64/midori.install (rev 0)
+++ community-x86_64/midori.install 2013-08-01 19:50:34 UTC (rev 94963)
@@ -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:
More information about the arch-commits
mailing list