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

Eric Bélanger eric at archlinux.org
Sat Sep 8 02:48:18 UTC 2012


    Date: Friday, September 7, 2012 @ 22:48:18
  Author: eric
Revision: 166454

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

Added:
  avfs/repos/extra-i686/PKGBUILD
    (from rev 166453, avfs/trunk/PKGBUILD)
  avfs/repos/extra-x86_64/PKGBUILD
    (from rev 166453, avfs/trunk/PKGBUILD)
Deleted:
  avfs/repos/extra-i686/PKGBUILD
  avfs/repos/extra-i686/avfs-1.0.0-fix_open_missing_mode.patch
  avfs/repos/extra-x86_64/PKGBUILD
  avfs/repos/extra-x86_64/avfs-1.0.0-fix_open_missing_mode.patch

-----------------------------------------------------+
 extra-i686/PKGBUILD                                 |   66 ++++++++----------
 extra-i686/avfs-1.0.0-fix_open_missing_mode.patch   |   11 ---
 extra-x86_64/PKGBUILD                               |   66 ++++++++----------
 extra-x86_64/avfs-1.0.0-fix_open_missing_mode.patch |   11 ---
 4 files changed, 62 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2012-09-08 02:47:58 UTC (rev 166453)
+++ extra-i686/PKGBUILD	2012-09-08 02:48:18 UTC (rev 166454)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Kevin Piche <kevin at archlinux.org>
-# Contributor: K. Piche <kpiche at rogers.com>
-
-pkgname=avfs
-pkgver=1.0.0
-pkgrel=1
-pkgdesc="A virtual filesystem that allows browsing of compressed files"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://avf.sourceforge.net/"
-source=("http://downloads.sourceforge.net/sourceforge/avf/${pkgname}-${pkgver}.tar.bz2"
-        'avfs-1.0.0-fix_open_missing_mode.patch')
-options=(!emptydirs !libtool)
-depends=('fuse' 'xz' 'perl')
-md5sums=('c58421e4f294125895f2c6653a7366a7'
-         'bdd84b179a869bc6d64529a64a640fc6')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  patch -Np1 -i "${srcdir}/avfs-1.0.0-fix_open_missing_mode.patch"
-
-  ./configure --prefix=/usr \
-              --enable-library \
-              --enable-fuse \
-              --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: avfs/repos/extra-i686/PKGBUILD (from rev 166453, avfs/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2012-09-08 02:48:18 UTC (rev 166454)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Kevin Piche <kevin at archlinux.org>
+# Contributor: K. Piche <kpiche at rogers.com>
+
+pkgname=avfs
+pkgver=1.0.1
+pkgrel=1
+pkgdesc="A virtual filesystem that allows browsing of compressed files"
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL')
+url="http://avf.sourceforge.net/"
+depends=('fuse' 'xz' 'perl')
+options=('!emptydirs' '!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/avf/${pkgname}-${pkgver}.tar.bz2{,.asc})
+md5sums=('f0f254d092e54da14bbf3ea22b76da99'
+         'd71607de21819f3d67246473f0bc21f3')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr \
+              --enable-library \
+              --enable-fuse \
+              --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/avfs-1.0.0-fix_open_missing_mode.patch
===================================================================
--- extra-i686/avfs-1.0.0-fix_open_missing_mode.patch	2012-09-08 02:47:58 UTC (rev 166453)
+++ extra-i686/avfs-1.0.0-fix_open_missing_mode.patch	2012-09-08 02:48:18 UTC (rev 166454)
@@ -1,11 +0,0 @@
---- a/modules/urar.c	2007-05-14 20:21:23.000000000 +0200
-+++ b/modules/urar.c	2009-02-09 13:48:56.780225932 +0100
-@@ -587,7 +587,7 @@
-     if(res < 0)
-         return res;
- 
--    fd = open(tmpfile, O_RDWR | O_CREAT | O_TRUNC);
-+    fd = open(tmpfile, O_RDWR | O_CREAT | O_TRUNC, 0644);
-     if(fd == -1) {
-         res = -errno; 
-         av_log(AVLOG_ERROR, "RAR: Could not open %s: %s", tmpfile,

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2012-09-08 02:47:58 UTC (rev 166453)
+++ extra-x86_64/PKGBUILD	2012-09-08 02:48:18 UTC (rev 166454)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Kevin Piche <kevin at archlinux.org>
-# Contributor: K. Piche <kpiche at rogers.com>
-
-pkgname=avfs
-pkgver=1.0.0
-pkgrel=1
-pkgdesc="A virtual filesystem that allows browsing of compressed files"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://avf.sourceforge.net/"
-source=("http://downloads.sourceforge.net/sourceforge/avf/${pkgname}-${pkgver}.tar.bz2"
-        'avfs-1.0.0-fix_open_missing_mode.patch')
-options=(!emptydirs !libtool)
-depends=('fuse' 'xz' 'perl')
-md5sums=('c58421e4f294125895f2c6653a7366a7'
-         'bdd84b179a869bc6d64529a64a640fc6')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  patch -Np1 -i "${srcdir}/avfs-1.0.0-fix_open_missing_mode.patch"
-
-  ./configure --prefix=/usr \
-              --enable-library \
-              --enable-fuse \
-              --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: avfs/repos/extra-x86_64/PKGBUILD (from rev 166453, avfs/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2012-09-08 02:48:18 UTC (rev 166454)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Kevin Piche <kevin at archlinux.org>
+# Contributor: K. Piche <kpiche at rogers.com>
+
+pkgname=avfs
+pkgver=1.0.1
+pkgrel=1
+pkgdesc="A virtual filesystem that allows browsing of compressed files"
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL')
+url="http://avf.sourceforge.net/"
+depends=('fuse' 'xz' 'perl')
+options=('!emptydirs' '!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/avf/${pkgname}-${pkgver}.tar.bz2{,.asc})
+md5sums=('f0f254d092e54da14bbf3ea22b76da99'
+         'd71607de21819f3d67246473f0bc21f3')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr \
+              --enable-library \
+              --enable-fuse \
+              --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/avfs-1.0.0-fix_open_missing_mode.patch
===================================================================
--- extra-x86_64/avfs-1.0.0-fix_open_missing_mode.patch	2012-09-08 02:47:58 UTC (rev 166453)
+++ extra-x86_64/avfs-1.0.0-fix_open_missing_mode.patch	2012-09-08 02:48:18 UTC (rev 166454)
@@ -1,11 +0,0 @@
---- a/modules/urar.c	2007-05-14 20:21:23.000000000 +0200
-+++ b/modules/urar.c	2009-02-09 13:48:56.780225932 +0100
-@@ -587,7 +587,7 @@
-     if(res < 0)
-         return res;
- 
--    fd = open(tmpfile, O_RDWR | O_CREAT | O_TRUNC);
-+    fd = open(tmpfile, O_RDWR | O_CREAT | O_TRUNC, 0644);
-     if(fd == -1) {
-         res = -errno; 
-         av_log(AVLOG_ERROR, "RAR: Could not open %s: %s", tmpfile,




More information about the arch-commits mailing list