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

Kyle Keen kkeen at archlinux.org
Fri Apr 29 11:51:56 UTC 2016


    Date: Friday, April 29, 2016 @ 13:51:55
  Author: kkeen
Revision: 172707

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

Added:
  xombrero/repos/community-i686/LICENSE
    (from rev 172706, xombrero/trunk/LICENSE)
  xombrero/repos/community-i686/PKGBUILD
    (from rev 172706, xombrero/trunk/PKGBUILD)
  xombrero/repos/community-x86_64/LICENSE
    (from rev 172706, xombrero/trunk/LICENSE)
  xombrero/repos/community-x86_64/PKGBUILD
    (from rev 172706, xombrero/trunk/PKGBUILD)
Deleted:
  xombrero/repos/community-i686/LICENSE
  xombrero/repos/community-i686/PKGBUILD
  xombrero/repos/community-i686/xombrero.install
  xombrero/repos/community-x86_64/LICENSE
  xombrero/repos/community-x86_64/PKGBUILD
  xombrero/repos/community-x86_64/xombrero.install

-----------------------------------+
 /LICENSE                          |   32 +++++++++++++
 /PKGBUILD                         |   86 ++++++++++++++++++++++++++++++++++++
 community-i686/LICENSE            |   16 ------
 community-i686/PKGBUILD           |   43 ------------------
 community-i686/xombrero.install   |   12 -----
 community-x86_64/LICENSE          |   16 ------
 community-x86_64/PKGBUILD         |   43 ------------------
 community-x86_64/xombrero.install |   12 -----
 8 files changed, 118 insertions(+), 142 deletions(-)

Deleted: community-i686/LICENSE
===================================================================
--- community-i686/LICENSE	2016-04-29 11:51:27 UTC (rev 172706)
+++ community-i686/LICENSE	2016-04-29 11:51:55 UTC (rev 172707)
@@ -1,16 +0,0 @@
-/*
- * Copyright (c) 2010 Marco Peereboom <marco at peereboom.us>
- *
- * Permission to use, copy, modify, and distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
-

Copied: xombrero/repos/community-i686/LICENSE (from rev 172706, xombrero/trunk/LICENSE)
===================================================================
--- community-i686/LICENSE	                        (rev 0)
+++ community-i686/LICENSE	2016-04-29 11:51:55 UTC (rev 172707)
@@ -0,0 +1,16 @@
+/*
+ * Copyright (c) 2010 Marco Peereboom <marco at peereboom.us>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2016-04-29 11:51:27 UTC (rev 172706)
+++ community-i686/PKGBUILD	2016-04-29 11:51:55 UTC (rev 172707)
@@ -1,43 +0,0 @@
-# Maintainer: Kyle Keen <keenerd at gmail.com>
-
-pkgname=xombrero
-pkgver=1.6.4
-pkgrel=3
-pkgdesc="A minimalists web browser, vi-like but with traditional web browser behavior."
-arch=('i686' 'x86_64')
-url="https://opensource.conformal.com/wiki/xombrero"
-_watch="https://opensource.conformal.com/snapshots/xombrero/"
-license=('custom:ISC')
-depends=('webkitgtk3' 'libbsd' 'desktop-file-utils')
-install=xombrero.install
-replaces=('xxxterm')
-conflicts=('xxxterm')
-options=('!emptydirs')
-source=(https://opensource.conformal.com/snapshots/$pkgname/$pkgname-$pkgver.tgz \
-        LICENSE)
-md5sums=('3c5458e448314494f48784c6303a695c'
-         'f3eeb6e8b70a3dcccb8ee57daf584c9e')
-
-build() {
-    cd "$srcdir/$pkgbase-$pkgver"
-    # no spam
-    sed -i 's|https://www.cyphertite.com|https://www.archlinux.org|' xombrero.{c,conf,h}
-    # relocations
-    sed -i 's|/etc/ssl/cert.pem|/etc/ssl/certs/ca-certificates.crt|' xombrero.conf
-    #sed -i 's|/usr/local/share/xombrero/style.css|/usr/share/xombrero/style.css|' xombrero.conf
-    sed -i 's|/usr/local/share/|/usr/share/|' {unix.c,xombrero.conf,xombrero.h}
-
-    make PREFIX="/usr" -C linux GTK_VERSION=gtk3
-}
-
-package() {
-    cd "$srcdir/$pkgbase-$pkgver"
-
-    mkdir -p "$pkgdir/usr/share/applications/"  # buggy makefile
-    make PREFIX="/usr" DESTDIR="$pkgdir" install -C linux GTK_VERSION=gtk3
-    install -Dm644 xombrero.conf     "$pkgdir/etc/skel/.xombrero.conf"
-    install -Dm644 xombrero.desktop  "$pkgdir/usr/share/applications/xombrero.desktop"
-    install -Dm755 config-checker.pl "$pkgdir/usr/bin/config-checker.pl"
-    install -Dm644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-

Copied: xombrero/repos/community-i686/PKGBUILD (from rev 172706, xombrero/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2016-04-29 11:51:55 UTC (rev 172707)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Kyle Keen <keenerd at gmail.com>
+
+pkgname=xombrero
+pkgver=1.6.4
+pkgrel=4
+pkgdesc="A minimalists web browser, vi-like but with traditional web browser behavior."
+arch=('i686' 'x86_64')
+url="https://opensource.conformal.com/wiki/xombrero"
+_watch="https://opensource.conformal.com/snapshots/xombrero/"
+license=('custom:ISC')
+depends=('webkitgtk' 'libbsd' 'desktop-file-utils')
+replaces=('xxxterm')
+conflicts=('xxxterm')
+options=('!emptydirs')
+source=(https://opensource.conformal.com/snapshots/$pkgname/$pkgname-$pkgver.tgz \
+        LICENSE)
+md5sums=('3c5458e448314494f48784c6303a695c'
+         'f3eeb6e8b70a3dcccb8ee57daf584c9e')
+
+build() {
+    cd "$srcdir/$pkgbase-$pkgver"
+    # no spam
+    sed -i 's|https://www.cyphertite.com|https://www.archlinux.org|' xombrero.{c,conf,h}
+    # relocations
+    sed -i 's|/etc/ssl/cert.pem|/etc/ssl/certs/ca-certificates.crt|' xombrero.conf
+    #sed -i 's|/usr/local/share/xombrero/style.css|/usr/share/xombrero/style.css|' xombrero.conf
+    sed -i 's|/usr/local/share/|/usr/share/|' {unix.c,xombrero.conf,xombrero.h}
+
+    make PREFIX="/usr" -C linux GTK_VERSION=gtk3
+}
+
+package() {
+    cd "$srcdir/$pkgbase-$pkgver"
+
+    mkdir -p "$pkgdir/usr/share/applications/"  # buggy makefile
+    make PREFIX="/usr" DESTDIR="$pkgdir" install -C linux GTK_VERSION=gtk3
+    install -Dm644 xombrero.conf     "$pkgdir/etc/skel/.xombrero.conf"
+    install -Dm644 xombrero.desktop  "$pkgdir/usr/share/applications/xombrero.desktop"
+    install -Dm755 config-checker.pl "$pkgdir/usr/bin/config-checker.pl"
+    install -Dm644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+

Deleted: community-i686/xombrero.install
===================================================================
--- community-i686/xombrero.install	2016-04-29 11:51:27 UTC (rev 172706)
+++ community-i686/xombrero.install	2016-04-29 11:51:55 UTC (rev 172707)
@@ -1,12 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-

Deleted: community-x86_64/LICENSE
===================================================================
--- community-x86_64/LICENSE	2016-04-29 11:51:27 UTC (rev 172706)
+++ community-x86_64/LICENSE	2016-04-29 11:51:55 UTC (rev 172707)
@@ -1,16 +0,0 @@
-/*
- * Copyright (c) 2010 Marco Peereboom <marco at peereboom.us>
- *
- * Permission to use, copy, modify, and distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
-

Copied: xombrero/repos/community-x86_64/LICENSE (from rev 172706, xombrero/trunk/LICENSE)
===================================================================
--- community-x86_64/LICENSE	                        (rev 0)
+++ community-x86_64/LICENSE	2016-04-29 11:51:55 UTC (rev 172707)
@@ -0,0 +1,16 @@
+/*
+ * Copyright (c) 2010 Marco Peereboom <marco at peereboom.us>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2016-04-29 11:51:27 UTC (rev 172706)
+++ community-x86_64/PKGBUILD	2016-04-29 11:51:55 UTC (rev 172707)
@@ -1,43 +0,0 @@
-# Maintainer: Kyle Keen <keenerd at gmail.com>
-
-pkgname=xombrero
-pkgver=1.6.4
-pkgrel=3
-pkgdesc="A minimalists web browser, vi-like but with traditional web browser behavior."
-arch=('i686' 'x86_64')
-url="https://opensource.conformal.com/wiki/xombrero"
-_watch="https://opensource.conformal.com/snapshots/xombrero/"
-license=('custom:ISC')
-depends=('webkitgtk3' 'libbsd' 'desktop-file-utils')
-install=xombrero.install
-replaces=('xxxterm')
-conflicts=('xxxterm')
-options=('!emptydirs')
-source=(https://opensource.conformal.com/snapshots/$pkgname/$pkgname-$pkgver.tgz \
-        LICENSE)
-md5sums=('3c5458e448314494f48784c6303a695c'
-         'f3eeb6e8b70a3dcccb8ee57daf584c9e')
-
-build() {
-    cd "$srcdir/$pkgbase-$pkgver"
-    # no spam
-    sed -i 's|https://www.cyphertite.com|https://www.archlinux.org|' xombrero.{c,conf,h}
-    # relocations
-    sed -i 's|/etc/ssl/cert.pem|/etc/ssl/certs/ca-certificates.crt|' xombrero.conf
-    #sed -i 's|/usr/local/share/xombrero/style.css|/usr/share/xombrero/style.css|' xombrero.conf
-    sed -i 's|/usr/local/share/|/usr/share/|' {unix.c,xombrero.conf,xombrero.h}
-
-    make PREFIX="/usr" -C linux GTK_VERSION=gtk3
-}
-
-package() {
-    cd "$srcdir/$pkgbase-$pkgver"
-
-    mkdir -p "$pkgdir/usr/share/applications/"  # buggy makefile
-    make PREFIX="/usr" DESTDIR="$pkgdir" install -C linux GTK_VERSION=gtk3
-    install -Dm644 xombrero.conf     "$pkgdir/etc/skel/.xombrero.conf"
-    install -Dm644 xombrero.desktop  "$pkgdir/usr/share/applications/xombrero.desktop"
-    install -Dm755 config-checker.pl "$pkgdir/usr/bin/config-checker.pl"
-    install -Dm644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-

Copied: xombrero/repos/community-x86_64/PKGBUILD (from rev 172706, xombrero/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2016-04-29 11:51:55 UTC (rev 172707)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Kyle Keen <keenerd at gmail.com>
+
+pkgname=xombrero
+pkgver=1.6.4
+pkgrel=4
+pkgdesc="A minimalists web browser, vi-like but with traditional web browser behavior."
+arch=('i686' 'x86_64')
+url="https://opensource.conformal.com/wiki/xombrero"
+_watch="https://opensource.conformal.com/snapshots/xombrero/"
+license=('custom:ISC')
+depends=('webkitgtk' 'libbsd' 'desktop-file-utils')
+replaces=('xxxterm')
+conflicts=('xxxterm')
+options=('!emptydirs')
+source=(https://opensource.conformal.com/snapshots/$pkgname/$pkgname-$pkgver.tgz \
+        LICENSE)
+md5sums=('3c5458e448314494f48784c6303a695c'
+         'f3eeb6e8b70a3dcccb8ee57daf584c9e')
+
+build() {
+    cd "$srcdir/$pkgbase-$pkgver"
+    # no spam
+    sed -i 's|https://www.cyphertite.com|https://www.archlinux.org|' xombrero.{c,conf,h}
+    # relocations
+    sed -i 's|/etc/ssl/cert.pem|/etc/ssl/certs/ca-certificates.crt|' xombrero.conf
+    #sed -i 's|/usr/local/share/xombrero/style.css|/usr/share/xombrero/style.css|' xombrero.conf
+    sed -i 's|/usr/local/share/|/usr/share/|' {unix.c,xombrero.conf,xombrero.h}
+
+    make PREFIX="/usr" -C linux GTK_VERSION=gtk3
+}
+
+package() {
+    cd "$srcdir/$pkgbase-$pkgver"
+
+    mkdir -p "$pkgdir/usr/share/applications/"  # buggy makefile
+    make PREFIX="/usr" DESTDIR="$pkgdir" install -C linux GTK_VERSION=gtk3
+    install -Dm644 xombrero.conf     "$pkgdir/etc/skel/.xombrero.conf"
+    install -Dm644 xombrero.desktop  "$pkgdir/usr/share/applications/xombrero.desktop"
+    install -Dm755 config-checker.pl "$pkgdir/usr/bin/config-checker.pl"
+    install -Dm644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+

Deleted: community-x86_64/xombrero.install
===================================================================
--- community-x86_64/xombrero.install	2016-04-29 11:51:27 UTC (rev 172706)
+++ community-x86_64/xombrero.install	2016-04-29 11:51:55 UTC (rev 172707)
@@ -1,12 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-



More information about the arch-commits mailing list