extundelete: update to 0.2.4.

This commit is contained in:
Juan RP 2013-01-06 09:43:49 +01:00
parent e8479c627e
commit 88236076cd
2 changed files with 4 additions and 30 deletions

View file

@ -1,20 +0,0 @@
--- src/extundelete.cc 2010-05-16 03:51:15.000000000 +0200
+++ src/extundelete.cc 2012-02-26 16:49:20.000000000 +0100
@@ -943,3 +943,3 @@
{
- group_descriptor_table[n] = fs->group_desc[n];
+ group_descriptor_table[n] = *ext2fs_group_desc(fs, fs->group_desc, n);
}
@@ -2613,3 +2613,4 @@
inode->osd2.linux2.l_i_gid_high = le16_to_cpu( (uint16_t *) &inodebuf[item*60] );
- inode->osd2.linux2.l_i_reserved2 = le32_to_cpu( (uint32_t *) &inodebuf[item*62] );
+ inode->osd2.linux2.l_i_checksum_lo = le16_to_cpu( (uint16_t *) &inodebuf[item*62] );
+ inode->osd2.linux2.l_i_reserved = le16_to_cpu( (uint16_t *) &inodebuf[item*63] );
}
--- src/insertionops.cc 2010-03-21 07:05:15.000000000 +0100
+++ src/insertionops.cc 2012-02-26 16:49:27.000000000 +0100
@@ -65,3 +65,3 @@
os << "# Blocks per group: " << s_block->s_blocks_per_group << std::endl;
- os << "# Fragments per group: " << s_block->s_frags_per_group << std::endl;
+ os << "# Fragments per group: " << s_block->s_clusters_per_group << std::endl;
os << "# Inodes per group: " << s_block->s_inodes_per_group << std::endl;

View file

@ -1,18 +1,12 @@
# Template file for 'extundelete' # Template file for 'extundelete'
pkgname=extundelete pkgname=extundelete
version=0.2.0 version=0.2.4
revision=2 revision=1
build_style=gnu-configure build_style=gnu-configure
makedepends="e2fsprogs-devel" makedepends="e2fsprogs-devel"
short_desc="ext3/ext4 file recover utility" short_desc="ext3/ext4 file recover utility"
maintainer="Juan RP <xtraeme@gmail.com>" maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://extundelete.sourceforge.net" homepage="http://extundelete.sourceforge.net"
license="GPL-2" license="GPL-2"
distfiles="${SOURCEFORGE_SITE}/$pkgname/$pkgname-$version.tar.bz2" distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}.tar.bz2"
checksum=0f6a3004d8ddcafe63059a104c174f753c7fc95455081f3ff5aaf3b8c100f97b checksum=a1f9dd61247056d36401ce5d6785e74d08a184340eebd3865c345ddaa93f19f4
long_desc="
extundelete is a utility that can recover deleted files from an ext3 or ext4
partition. The ext3 file system is the most common file system when using
Linux, and ext4 is its successor. extundelete uses the information stored
in the partition's journal to attempt to recover a file that has been
deleted from the partition."