[arch-commits] Commit in ext3grep/repos (8 files)

Evangelos Foutras foutrelis at archlinux.org
Sat Dec 5 15:14:45 UTC 2015


    Date: Saturday, December 5, 2015 @ 16:14:45
  Author: foutrelis
Revision: 148448

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

Added:
  ext3grep/repos/community-staging-i686/
  ext3grep/repos/community-staging-i686/PKGBUILD
    (from rev 148447, ext3grep/trunk/PKGBUILD)
  ext3grep/repos/community-staging-i686/ext3grep-build.patch
    (from rev 148447, ext3grep/trunk/ext3grep-build.patch)
  ext3grep/repos/community-staging-i686/ext3grep.changelog
    (from rev 148447, ext3grep/trunk/ext3grep.changelog)
  ext3grep/repos/community-staging-x86_64/
  ext3grep/repos/community-staging-x86_64/PKGBUILD
    (from rev 148447, ext3grep/trunk/PKGBUILD)
  ext3grep/repos/community-staging-x86_64/ext3grep-build.patch
    (from rev 148447, ext3grep/trunk/ext3grep-build.patch)
  ext3grep/repos/community-staging-x86_64/ext3grep.changelog
    (from rev 148447, ext3grep/trunk/ext3grep.changelog)

-----------------------------------------------+
 community-staging-i686/PKGBUILD               |   33 ++++++++++++++++++++++++
 community-staging-i686/ext3grep-build.patch   |   26 ++++++++++++++++++
 community-staging-i686/ext3grep.changelog     |    6 ++++
 community-staging-x86_64/PKGBUILD             |   33 ++++++++++++++++++++++++
 community-staging-x86_64/ext3grep-build.patch |   26 ++++++++++++++++++
 community-staging-x86_64/ext3grep.changelog   |    6 ++++
 6 files changed, 130 insertions(+)

Copied: ext3grep/repos/community-staging-i686/PKGBUILD (from rev 148447, ext3grep/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2015-12-05 15:14:45 UTC (rev 148448)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+# Contributor: ivh
+
+pkgname=ext3grep
+pkgver=0.10.2
+pkgrel=4
+pkgdesc="A tool to investigate an ext3 file system for deleted content and possibly recover it"
+arch=('i686' 'x86_64')
+url="http://code.google.com/p/ext3grep/"
+license=('GPL')
+makedepends=('e2fsprogs' 'patch')
+changelog=$pkgname.changelog
+source=(http://ext3grep.googlecode.com/files/$pkgname-$pkgver.tar.gz \
+        $pkgname-build.patch)
+sha256sums=('586f3e939d2ffd782f6f006b81a3df2dc477c6da03f21edb8860c5c4f7198f3e'
+            '6f57d5012fcfb063012ade80b25c356defc2d22411bbb9086ea89c0de10f3117')
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+#http://code.google.com/p/ext3grep/issues/detail?id=34
+  patch -Np1 -i ${srcdir}/$pkgname-build.patch
+  
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  make DESTDIR=${pkgdir} install
+}

Copied: ext3grep/repos/community-staging-i686/ext3grep-build.patch (from rev 148447, ext3grep/trunk/ext3grep-build.patch)
===================================================================
--- community-staging-i686/ext3grep-build.patch	                        (rev 0)
+++ community-staging-i686/ext3grep-build.patch	2015-12-05 15:14:45 UTC (rev 148448)
@@ -0,0 +1,26 @@
+diff -ruN1 ext3grep-0.10.2-orig/src/ext3.h ext3grep-0.10.2/src/ext3.h
+--- ext3grep-0.10.2-orig/src/ext3.h	2008-04-09 13:20:31.000000000 +0200
++++ ext3grep-0.10.2/src/ext3.h	2012-02-26 17:05:42.000000000 +0100
+@@ -26,2 +26,13 @@
+ 
++// this trickery needs to happen before ext2_fs is included so
++// bail out if it has already been included by another path
++#ifdef _LINUX_EXT2_FS_H
++  #error please include this file before any other includes of ext2fs/ext2_fs.h
++#endif
++
++// some versions of the ext2 headers call this s_frags_per_group and some
++// call it s_clusters_per_group, define one to the other so our code works 
++// with both
++#define s_clusters_per_group s_frags_per_group
++
+ // Use the header files from e2progs (http://e2fsprogs.sourceforge.net)
+@@ -112,2 +123,8 @@
+     __u16 gid_high(void) const { return i_gid_high; }
++#ifndef i_reseved2
++    //i_reseved2 has been split into two fields in recent 
++    //versions of the headers, luckilly we can still access
++    //it in one peice through the hurd side of the union
++    #define i_reserved2 osd2.hurd2.h_i_author
++#endif
+     __u32 reserved2(void) const { return i_reserved2; }

Copied: ext3grep/repos/community-staging-i686/ext3grep.changelog (from rev 148447, ext3grep/trunk/ext3grep.changelog)
===================================================================
--- community-staging-i686/ext3grep.changelog	                        (rev 0)
+++ community-staging-i686/ext3grep.changelog	2015-12-05 15:14:45 UTC (rev 148448)
@@ -0,0 +1,6 @@
+2012-02-26 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* ext3grep 0.10.2-2 package signed
+
+2010-07-04 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* Package moved to [community] from AUR - 65 votes
+	* Version 0.10.2-1

Copied: ext3grep/repos/community-staging-x86_64/PKGBUILD (from rev 148447, ext3grep/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2015-12-05 15:14:45 UTC (rev 148448)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+# Contributor: ivh
+
+pkgname=ext3grep
+pkgver=0.10.2
+pkgrel=4
+pkgdesc="A tool to investigate an ext3 file system for deleted content and possibly recover it"
+arch=('i686' 'x86_64')
+url="http://code.google.com/p/ext3grep/"
+license=('GPL')
+makedepends=('e2fsprogs' 'patch')
+changelog=$pkgname.changelog
+source=(http://ext3grep.googlecode.com/files/$pkgname-$pkgver.tar.gz \
+        $pkgname-build.patch)
+sha256sums=('586f3e939d2ffd782f6f006b81a3df2dc477c6da03f21edb8860c5c4f7198f3e'
+            '6f57d5012fcfb063012ade80b25c356defc2d22411bbb9086ea89c0de10f3117')
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+#http://code.google.com/p/ext3grep/issues/detail?id=34
+  patch -Np1 -i ${srcdir}/$pkgname-build.patch
+  
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  make DESTDIR=${pkgdir} install
+}

Copied: ext3grep/repos/community-staging-x86_64/ext3grep-build.patch (from rev 148447, ext3grep/trunk/ext3grep-build.patch)
===================================================================
--- community-staging-x86_64/ext3grep-build.patch	                        (rev 0)
+++ community-staging-x86_64/ext3grep-build.patch	2015-12-05 15:14:45 UTC (rev 148448)
@@ -0,0 +1,26 @@
+diff -ruN1 ext3grep-0.10.2-orig/src/ext3.h ext3grep-0.10.2/src/ext3.h
+--- ext3grep-0.10.2-orig/src/ext3.h	2008-04-09 13:20:31.000000000 +0200
++++ ext3grep-0.10.2/src/ext3.h	2012-02-26 17:05:42.000000000 +0100
+@@ -26,2 +26,13 @@
+ 
++// this trickery needs to happen before ext2_fs is included so
++// bail out if it has already been included by another path
++#ifdef _LINUX_EXT2_FS_H
++  #error please include this file before any other includes of ext2fs/ext2_fs.h
++#endif
++
++// some versions of the ext2 headers call this s_frags_per_group and some
++// call it s_clusters_per_group, define one to the other so our code works 
++// with both
++#define s_clusters_per_group s_frags_per_group
++
+ // Use the header files from e2progs (http://e2fsprogs.sourceforge.net)
+@@ -112,2 +123,8 @@
+     __u16 gid_high(void) const { return i_gid_high; }
++#ifndef i_reseved2
++    //i_reseved2 has been split into two fields in recent 
++    //versions of the headers, luckilly we can still access
++    //it in one peice through the hurd side of the union
++    #define i_reserved2 osd2.hurd2.h_i_author
++#endif
+     __u32 reserved2(void) const { return i_reserved2; }

Copied: ext3grep/repos/community-staging-x86_64/ext3grep.changelog (from rev 148447, ext3grep/trunk/ext3grep.changelog)
===================================================================
--- community-staging-x86_64/ext3grep.changelog	                        (rev 0)
+++ community-staging-x86_64/ext3grep.changelog	2015-12-05 15:14:45 UTC (rev 148448)
@@ -0,0 +1,6 @@
+2012-02-26 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* ext3grep 0.10.2-2 package signed
+
+2010-07-04 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* Package moved to [community] from AUR - 65 votes
+	* Version 0.10.2-1



More information about the arch-commits mailing list