[arch-commits] Commit in extundelete/repos/community-x86_64 (5 files)

Antonio Rojas arojas at archlinux.org
Mon Jun 4 22:22:12 UTC 2018


    Date: Monday, June 4, 2018 @ 22:22:12
  Author: arojas
Revision: 340472

archrelease: copy trunk to community-x86_64

Added:
  extundelete/repos/community-x86_64/PKGBUILD
    (from rev 340471, extundelete/trunk/PKGBUILD)
  extundelete/repos/community-x86_64/extundelete-e2fsprogs-1.44.1.patch
    (from rev 340471, extundelete/trunk/extundelete-e2fsprogs-1.44.1.patch)
  extundelete/repos/community-x86_64/extundelete.changelog
    (from rev 340471, extundelete/trunk/extundelete.changelog)
Deleted:
  extundelete/repos/community-x86_64/PKGBUILD
  extundelete/repos/community-x86_64/extundelete.changelog

------------------------------------+
 PKGBUILD                           |   63 +++++++++++++++++++----------------
 extundelete-e2fsprogs-1.44.1.patch |   12 ++++++
 extundelete.changelog              |   24 ++++++-------
 3 files changed, 59 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2018-06-04 22:21:48 UTC (rev 340471)
+++ PKGBUILD	2018-06-04 22:22:12 UTC (rev 340472)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
-# Contributor: snuo
-
-pkgname=extundelete
-pkgver=0.2.4
-pkgrel=3
-pkgdesc="Utility for recovering deleted files from ext2, ext3 or ext4 partitions by parsing the journal"
-arch=('i686' 'x86_64')
-url="http://extundelete.sourceforge.net"
-license=('GPL')
-makedepends=('e2fsprogs')
-changelog=$pkgname.changelog
-source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2)
-sha256sums=('a1f9dd61247056d36401ce5d6785e74d08a184340eebd3865c345ddaa93f19f4')
-
-build() {
-  cd ${srcdir}/$pkgname-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/$pkgname-$pkgver
-
-  make DESTDIR=${pkgdir} install
-}

Copied: extundelete/repos/community-x86_64/PKGBUILD (from rev 340471, extundelete/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2018-06-04 22:22:12 UTC (rev 340472)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+# Contributor: snuo
+
+pkgname=extundelete
+pkgver=0.2.4
+pkgrel=4
+pkgdesc="Utility for recovering deleted files from ext2, ext3 or ext4 partitions by parsing the journal"
+arch=('x86_64')
+url="http://extundelete.sourceforge.net"
+license=('GPL')
+depends=('e2fsprogs')
+changelog=$pkgname.changelog
+source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2
+        extundelete-e2fsprogs-1.44.1.patch)
+sha256sums=('a1f9dd61247056d36401ce5d6785e74d08a184340eebd3865c345ddaa93f19f4'
+            '944a1dc5a0697334fa27eabc198a6b230740199a01d3a942c01570edb996426f')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i ../extundelete-e2fsprogs-1.44.1.patch # Fix build with e2fsprogs 1.44.1
+}
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  make DESTDIR=${pkgdir} install
+}

Copied: extundelete/repos/community-x86_64/extundelete-e2fsprogs-1.44.1.patch (from rev 340471, extundelete/trunk/extundelete-e2fsprogs-1.44.1.patch)
===================================================================
--- extundelete-e2fsprogs-1.44.1.patch	                        (rev 0)
+++ extundelete-e2fsprogs-1.44.1.patch	2018-06-04 22:22:12 UTC (rev 340472)
@@ -0,0 +1,12 @@
+diff -ru extundelete-0.2.4.orig/src/insertionops.cc extundelete-0.2.4/src/insertionops.cc
+--- extundelete-0.2.4.orig/src/insertionops.cc	2018-06-04 22:19:22.460051515 +0000
++++ extundelete-0.2.4/src/insertionops.cc	2018-06-04 22:19:49.256717673 +0000
+@@ -33,7 +33,7 @@
+   os << "File flags: " << inode.i_flags << std::endl;
+   os << "File version (for NFS): " << inode.i_generation << std::endl;
+   os << "File ACL: " << inode.i_file_acl << std::endl;
+-  os << "Directory ACL: " << inode.i_dir_acl << std::endl;
++  os << "Directory ACL: " << inode.i_size_high << std::endl;
+   os << "Fragment address: " << inode.i_faddr << std::endl;
+   os << "Direct blocks: ";
+   for (int n = 0; n < EXT2_NDIR_BLOCKS; n++)

Deleted: extundelete.changelog
===================================================================
--- extundelete.changelog	2018-06-04 22:21:48 UTC (rev 340471)
+++ extundelete.changelog	2018-06-04 22:22:12 UTC (rev 340472)
@@ -1,12 +0,0 @@
-2013-01-05 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
-	* extundelete 0.2.4-1
-
-2013-01-05 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
-	* extundelete 0.2.1-1
-
-2012-02-26 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
-	* extundelete 0.2.0-2 package signed
-
-2010-07-04 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
-	* Package moved to [community] from AUR - 83 votes
-	* Version 0.2.0-1

Copied: extundelete/repos/community-x86_64/extundelete.changelog (from rev 340471, extundelete/trunk/extundelete.changelog)
===================================================================
--- extundelete.changelog	                        (rev 0)
+++ extundelete.changelog	2018-06-04 22:22:12 UTC (rev 340472)
@@ -0,0 +1,12 @@
+2013-01-05 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* extundelete 0.2.4-1
+
+2013-01-05 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* extundelete 0.2.1-1
+
+2012-02-26 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* extundelete 0.2.0-2 package signed
+
+2010-07-04 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* Package moved to [community] from AUR - 83 votes
+	* Version 0.2.0-1



More information about the arch-commits mailing list