[arch-commits] Commit in xarchiver/repos/extra-x86_64 (4 files)

Tobias Powalowski tpowa at archlinux.org
Fri Aug 26 07:05:13 UTC 2011


    Date: Friday, August 26, 2011 @ 03:05:13
  Author: tpowa
Revision: 136318

archrelease: copy trunk to extra-x86_64

Added:
  xarchiver/repos/extra-x86_64/PKGBUILD
    (from rev 136317, xarchiver/trunk/PKGBUILD)
  xarchiver/repos/extra-x86_64/xarchiver.install
    (from rev 136317, xarchiver/trunk/xarchiver.install)
Deleted:
  xarchiver/repos/extra-x86_64/PKGBUILD
  xarchiver/repos/extra-x86_64/xarchiver.install

-------------------+
 PKGBUILD          |  108 ++++++++++++++++++++++++++++++++--------------------
 xarchiver.install |   24 +++++------
 2 files changed, 80 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2011-08-26 07:04:46 UTC (rev 136317)
+++ PKGBUILD	2011-08-26 07:05:13 UTC (rev 136318)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Alexander Fehr <pizzapunk gmail com>
-# Contributor: Andrew Simmons <andrew.simmons at gmail.com>
-
-pkgname=xarchiver
-pkgver=0.5.2
-pkgrel=2
-pkgdesc="GTK+ frontend to various command line archivers"
-arch=('i686' 'x86_64')
-url="http://xarchiver.sourceforge.net"
-license=('GPL')
-groups=('xfce4-goodies')
-depends=('gtk2' 'desktop-file-utils' 'hicolor-icon-theme')
-makedepends=('intltool')
-optdepends=('tar: TAR support'
-            'gzip: GZIP support'
-            'bzip2: BZIP2 support'
-            'zip: ZIP support'
-            'unzip: ZIP support'
-            'unrar: RAR support'
-            'p7zip: 7z support'
-            'arj: ARJ support'
-            'lha: LHA support'
-            'lzma-utils: LZMA support'
-            'lzop: LZOP support')
-options=('!libtool')
-install=xarchiver.install
-source=(http://downloads.sourceforge.net/xarchiver/xarchiver-$pkgver.tar.bz2)
-md5sums=('2bc7f06403cc6582dd4a8029ec9d038d')
-
-build() {
-  cd "$srcdir/xarchiver-$pkgver"
-  ./configure --prefix=/usr --libexecdir=/usr/lib/xfce4
-  make
-}
-
-package() {
-  cd "$srcdir/xarchiver-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: xarchiver/repos/extra-x86_64/PKGBUILD (from rev 136317, xarchiver/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2011-08-26 07:05:13 UTC (rev 136318)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Alexander Fehr <pizzapunk gmail com>
+# Contributor: Andrew Simmons <andrew.simmons at gmail.com>
+
+pkgname=xarchiver
+pkgver=0.5.2
+pkgrel=3
+pkgdesc="GTK+ frontend to various command line archivers"
+arch=('i686' 'x86_64')
+url="http://xarchiver.sourceforge.net"
+license=('GPL')
+groups=('xfce4-goodies')
+depends=('gtk2' 'desktop-file-utils' 'hicolor-icon-theme')
+makedepends=('intltool')
+optdepends=('tar: TAR support'
+            'gzip: GZIP support'
+            'bzip2: BZIP2 support'
+            'zip: ZIP support'
+            'unzip: ZIP support'
+            'unrar: RAR support'
+            'p7zip: 7z support'
+            'arj: ARJ support'
+            'lha: LHA support'
+            'lzma-utils: LZMA support'
+            'lzop: LZOP support'
+            'xz: XZ support')
+options=('!libtool')
+install=xarchiver.install
+source=(http://downloads.sourceforge.net/xarchiver/xarchiver-$pkgver.tar.bz2
+        # add_xz_support.patch by Robby Workman taken from
+        # http://slackbuilds.org/slackbuilds/13.1/system/xarchiver/xarchiver-0.5.2-add_xz_support.patch
+        # sent upstream through
+        # https://sourceforge.net/tracker/?func=detail&aid=2847624&group_id=140153&atid=745600
+        xarchiver-0.5.2-add_xz_support.patch
+        # rpm2cpio.patch by Daniel Hokka Zakrisson
+        # taken from https://bugzilla.redhat.com/show_bug.cgi?id=577480
+        # sent upstream through
+        # https://sourceforge.net/tracker/?func=detail&aid=3310768&group_id=140153&atid=745602
+        xarchiver-0.5.2-rpm2cpio.patch
+        # segfault-open-with.patch by Bastiaan Jacques
+        # taken from https://bugzilla.redhat.com/show_bug.cgi?id=690012
+        # sent upstream through
+        # https://sourceforge.net/tracker/?func=detail&aid=3310778&group_id=140153&atid=745600
+        xarchiver-0.5.2-segfault-open-with.patch
+        # fix-7z-support.patch by taken from
+        # https://sourceforge.net/tracker/?func=detail&aid=3137589&group_id=140153&atid=745602
+        xarchiver-0.5.2-fix_7z_support.patch)
+md5sums=('2bc7f06403cc6582dd4a8029ec9d038d'
+         '3db8e4d1131c04b48363903a0376aba3'
+         'd4a1accdbba2b50e5707097dd3548d7a'
+         'f9036a44157b318cbc59ed012b04974b'
+         '782f55c1f1021dc02c7739bf8a47336e')
+
+build() {
+  cd "$srcdir/xarchiver-$pkgver"
+  #patches taken from: http://pkgs.fedoraproject.org/gitweb/?p=xarchiver.git
+  patch -Np1 -i ../xarchiver-0.5.2-add_xz_support.patch
+  patch -Np1 -i ../xarchiver-0.5.2-rpm2cpio.patch
+  patch -Np1 -i ../xarchiver-0.5.2-segfault-open-with.patch
+  patch -Np1 -i ../xarchiver-0.5.2-fix_7z_support.patch
+  ./configure --prefix=/usr --libexecdir=/usr/lib/xfce4
+  make
+}
+
+package() {
+  cd "$srcdir/xarchiver-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Deleted: xarchiver.install
===================================================================
--- xarchiver.install	2011-08-26 07:04:46 UTC (rev 136317)
+++ xarchiver.install	2011-08-26 07:05:13 UTC (rev 136318)
@@ -1,12 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: xarchiver/repos/extra-x86_64/xarchiver.install (from rev 136317, xarchiver/trunk/xarchiver.install)
===================================================================
--- xarchiver.install	                        (rev 0)
+++ xarchiver.install	2011-08-26 07:05:13 UTC (rev 136318)
@@ -0,0 +1,12 @@
+post_install() {
+  update-desktop-database -q
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}




More information about the arch-commits mailing list