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

Balló György bgyorgy at archlinux.org
Thu Feb 9 16:40:47 UTC 2017


    Date: Thursday, February 9, 2017 @ 16:40:47
  Author: bgyorgy
Revision: 211536

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

Added:
  uzbl/repos/community-testing-i686/
  uzbl/repos/community-testing-i686/PKGBUILD
    (from rev 211535, uzbl/trunk/PKGBUILD)
  uzbl/repos/community-testing-i686/uzbl.install
    (from rev 211535, uzbl/trunk/uzbl.install)
  uzbl/repos/community-testing-x86_64/
  uzbl/repos/community-testing-x86_64/PKGBUILD
    (from rev 211535, uzbl/trunk/PKGBUILD)
  uzbl/repos/community-testing-x86_64/uzbl.install
    (from rev 211535, uzbl/trunk/uzbl.install)

---------------------------------------+
 community-testing-i686/PKGBUILD       |   73 ++++++++++++++++++++++++++++++++
 community-testing-i686/uzbl.install   |   17 +++++++
 community-testing-x86_64/PKGBUILD     |   73 ++++++++++++++++++++++++++++++++
 community-testing-x86_64/uzbl.install |   17 +++++++
 4 files changed, 180 insertions(+)

Copied: uzbl/repos/community-testing-i686/PKGBUILD (from rev 211535, uzbl/trunk/PKGBUILD)
===================================================================
--- community-testing-i686/PKGBUILD	                        (rev 0)
+++ community-testing-i686/PKGBUILD	2017-02-09 16:40:47 UTC (rev 211536)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer : Laurent Carlier <lordheavym at gmail.com>
+# Contributor: Ionut Biru <ibiru at archlinux.org>
+# Contributor: Dieter Plaetinck <dieter at plaetinck.be>
+
+pkgbase=uzbl
+pkgname=('uzbl-core' 'uzbl-browser' 'uzbl-tabbed')
+epoch=1
+pkgver=0.9.1+95+g3a4c70ad
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://www.uzbl.org"
+license=('GPL3')
+makedepends=('git' 'python-setuptools' 'webkit2gtk')
+_commit=3a4c70ad114b763f50a02c72ee4332dd20af033d  # next
+source=("git+https://github.com/uzbl/uzbl.git#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+  cd $pkgbase
+
+  make PREFIX=/usr 
+
+  # fake installation
+  mkdir ${srcdir}/fakeinstall
+  make DESTDIR=${srcdir}/fakeinstall PREFIX=/usr install
+}
+
+package_uzbl-core() {
+  pkgdesc="Webpage interface component meant for integration with other tools and scripts"
+  depends=('webkit2gtk')
+
+  install -m755 -d ${pkgdir}/usr/{bin,share}
+  install -m755 -d ${pkgdir}/usr/share/{man/man1,uzbl}
+
+  mv -v ${srcdir}/fakeinstall/usr/bin/uzbl-core ${pkgdir}/usr/bin/
+
+  mv -v ${srcdir}/fakeinstall/usr/share/uzbl/docs ${pkgdir}/usr/share/uzbl/
+  mv -v ${srcdir}/fakeinstall/usr/share/man/man1/uzbl-core.1 ${pkgdir}/usr/share/man/man1
+}
+
+package_uzbl-browser() {
+  pkgdesc="A complete browser experience based on uzbl-core"
+  depends=('uzbl-core' 'socat' 'zenity' 'xclip' 'dmenu' 'python2' 'python-setuptools' 'python-six')
+
+  install -m755 -d ${pkgdir}/usr/{bin,lib,share}
+  install -m755 -d ${pkgdir}/usr/share/{applications,man/man1}
+
+  mv -v ${srcdir}/fakeinstall/usr/bin/uzbl-browser ${pkgdir}/usr/bin/
+  mv -v ${srcdir}/fakeinstall/usr/bin/uzbl-event-manager ${pkgdir}/usr/bin/
+   
+  mv -v ${srcdir}/fakeinstall/usr/lib/python3.6 ${pkgdir}/usr/lib
+  mv -v ${srcdir}/fakeinstall/usr/share/man/man1/uzbl-browser.1 ${pkgdir}/usr/share/man/man1
+  mv -v ${srcdir}/fakeinstall/usr/share/man/man1/uzbl-event-manager.1 ${pkgdir}/usr/share/man/man1
+  mv -v ${srcdir}/fakeinstall/usr/share/{appdata,icons,uzbl} ${pkgdir}/usr/share/
+  mv -v ${srcdir}/fakeinstall/usr/share/applications/uzbl-core.desktop ${pkgdir}/usr/share/applications
+}
+
+package_uzbl-tabbed() {
+  pkgdesc="Tabbing manager providing multiple uzbl-browser instances in 1 window"
+  depends=('uzbl-browser' 'pygtk')
+
+  install -m755 -d ${pkgdir}/usr/{bin,share}
+  install -m755 -d ${pkgdir}/usr/share/applications
+
+  mv -v ${srcdir}/fakeinstall/usr/bin/uzbl-tabbed ${pkgdir}/usr/bin/
+  mv -v ${srcdir}/fakeinstall/usr/share/applications/uzbl-tabbed.desktop ${pkgdir}/usr/share/applications
+}

Copied: uzbl/repos/community-testing-i686/uzbl.install (from rev 211535, uzbl/trunk/uzbl.install)
===================================================================
--- community-testing-i686/uzbl.install	                        (rev 0)
+++ community-testing-i686/uzbl.install	2017-02-09 16:40:47 UTC (rev 211536)
@@ -0,0 +1,17 @@
+post_install() {
+  /bin/true
+}
+
+post_upgrade() {
+  echo "If upgrading from pre-0.9, please refer to http://www.uzbl.org/news.php?id=42"
+}
+
+pre_remove() {
+  /bin/true
+}
+
+post_remove() {
+  /bin/true
+}
+
+# vim:set ts=2 sw=2 et:

Copied: uzbl/repos/community-testing-x86_64/PKGBUILD (from rev 211535, uzbl/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD	                        (rev 0)
+++ community-testing-x86_64/PKGBUILD	2017-02-09 16:40:47 UTC (rev 211536)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer : Laurent Carlier <lordheavym at gmail.com>
+# Contributor: Ionut Biru <ibiru at archlinux.org>
+# Contributor: Dieter Plaetinck <dieter at plaetinck.be>
+
+pkgbase=uzbl
+pkgname=('uzbl-core' 'uzbl-browser' 'uzbl-tabbed')
+epoch=1
+pkgver=0.9.1+95+g3a4c70ad
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://www.uzbl.org"
+license=('GPL3')
+makedepends=('git' 'python-setuptools' 'webkit2gtk')
+_commit=3a4c70ad114b763f50a02c72ee4332dd20af033d  # next
+source=("git+https://github.com/uzbl/uzbl.git#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+  cd $pkgbase
+
+  make PREFIX=/usr 
+
+  # fake installation
+  mkdir ${srcdir}/fakeinstall
+  make DESTDIR=${srcdir}/fakeinstall PREFIX=/usr install
+}
+
+package_uzbl-core() {
+  pkgdesc="Webpage interface component meant for integration with other tools and scripts"
+  depends=('webkit2gtk')
+
+  install -m755 -d ${pkgdir}/usr/{bin,share}
+  install -m755 -d ${pkgdir}/usr/share/{man/man1,uzbl}
+
+  mv -v ${srcdir}/fakeinstall/usr/bin/uzbl-core ${pkgdir}/usr/bin/
+
+  mv -v ${srcdir}/fakeinstall/usr/share/uzbl/docs ${pkgdir}/usr/share/uzbl/
+  mv -v ${srcdir}/fakeinstall/usr/share/man/man1/uzbl-core.1 ${pkgdir}/usr/share/man/man1
+}
+
+package_uzbl-browser() {
+  pkgdesc="A complete browser experience based on uzbl-core"
+  depends=('uzbl-core' 'socat' 'zenity' 'xclip' 'dmenu' 'python2' 'python-setuptools' 'python-six')
+
+  install -m755 -d ${pkgdir}/usr/{bin,lib,share}
+  install -m755 -d ${pkgdir}/usr/share/{applications,man/man1}
+
+  mv -v ${srcdir}/fakeinstall/usr/bin/uzbl-browser ${pkgdir}/usr/bin/
+  mv -v ${srcdir}/fakeinstall/usr/bin/uzbl-event-manager ${pkgdir}/usr/bin/
+   
+  mv -v ${srcdir}/fakeinstall/usr/lib/python3.6 ${pkgdir}/usr/lib
+  mv -v ${srcdir}/fakeinstall/usr/share/man/man1/uzbl-browser.1 ${pkgdir}/usr/share/man/man1
+  mv -v ${srcdir}/fakeinstall/usr/share/man/man1/uzbl-event-manager.1 ${pkgdir}/usr/share/man/man1
+  mv -v ${srcdir}/fakeinstall/usr/share/{appdata,icons,uzbl} ${pkgdir}/usr/share/
+  mv -v ${srcdir}/fakeinstall/usr/share/applications/uzbl-core.desktop ${pkgdir}/usr/share/applications
+}
+
+package_uzbl-tabbed() {
+  pkgdesc="Tabbing manager providing multiple uzbl-browser instances in 1 window"
+  depends=('uzbl-browser' 'pygtk')
+
+  install -m755 -d ${pkgdir}/usr/{bin,share}
+  install -m755 -d ${pkgdir}/usr/share/applications
+
+  mv -v ${srcdir}/fakeinstall/usr/bin/uzbl-tabbed ${pkgdir}/usr/bin/
+  mv -v ${srcdir}/fakeinstall/usr/share/applications/uzbl-tabbed.desktop ${pkgdir}/usr/share/applications
+}

Copied: uzbl/repos/community-testing-x86_64/uzbl.install (from rev 211535, uzbl/trunk/uzbl.install)
===================================================================
--- community-testing-x86_64/uzbl.install	                        (rev 0)
+++ community-testing-x86_64/uzbl.install	2017-02-09 16:40:47 UTC (rev 211536)
@@ -0,0 +1,17 @@
+post_install() {
+  /bin/true
+}
+
+post_upgrade() {
+  echo "If upgrading from pre-0.9, please refer to http://www.uzbl.org/news.php?id=42"
+}
+
+pre_remove() {
+  /bin/true
+}
+
+post_remove() {
+  /bin/true
+}
+
+# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list