Accepting request 109359 from security

New file recovery tool for recovering deleted files from a ext4 volume.

OBS-URL: https://build.opensuse.org/request/show/109359
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ext4magic?expand=0&rev=1
This commit is contained in:
Stephan Kulow 2012-03-22 11:32:05 +00:00 committed by Git OBS Bridge
commit 70b8c5e8fb
5 changed files with 124 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
ext4magic-0.3.0.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:927b7b2c73f9b81a3cbf13a2643c60023b573b6ec24565d02a3bb08abea79985
size 410590

19
ext4magic.changes Normal file
View File

@ -0,0 +1,19 @@
-------------------------------------------------------------------
Sat Mar 3 21:04:23 UTC 2012 - Greg.Freemyer@gmail.com
- initial packaging - v0.30
ext4magic is file recovery tool for the ext4 filesystem.
per the author, discussing v0.3.0 in Feb, 2012
For me, the program and its functions completed tested and stable
up to 16TByte filesystem size. 64Bit file systems are not implemented.
Not tested at the moment:
- the new library releases form last 2 Weeks libmagic and libext2fs
- file systems written with new Kernel (only testet written with 2.6 Kernel)
- BigEndian CPUs not testet very extensively

78
ext4magic.spec Normal file
View File

@ -0,0 +1,78 @@
#
# spec file for package ext4magic
#
# Copyright (c) 2012 robi@users.berlios.de
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
#
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: ext4magic
Version: 0.3.0
Release: 0
License: GPL-2.0+
Summary: can help to recover deleted files on ext3/4 filesystems
Url: http://openfacts2.berlios.de/wikide/index.php/BerliosProject:Ext4magic
Group: System/Filesystems
Source: ext4magic-%{version}.tar.gz
%if 0%{?suse_version}
BuildRequires: libext2fs-devel
BuildRequires: libuuid-devel
BuildRequires: libblkid-devel
BuildRequires: file-devel
%endif
%if 0%{?fedora_version}
BuildRequires: e2fsprogs-devel
BuildRequires: libuuid-devel
BuildRequires: libblkid-devel
BuildRequires: file-devel
%endif
%if 0%{?rhel_version}
BuildRequires: e2fsprogs-devel
BuildRequires: libuuid-devel
BuildRequires: libblkid-devel
BuildRequires: file-devel
%endif
%if 0%{?centos_version}
BuildRequires: e2fsprogs-devel
BuildRequires: uuid-devel
BuildRequires: libblkid-devel
BuildRequires: file-devel
%endif
BuildRequires: libbz2-devel
BuildRequires: zlib-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
ext4magic is a small tool for Linux administration, it can help to recover accidentally deleted or overwritten files from an ext3 or ext4 file systems. Especially private computers often lack an adequate and reliable backup or the backup interval is too large lack of capacity. After some minor or major accidents console or script often arises the question, how can I just restore the deleted files back?
%prep
%setup -q
%build
%configure --enable-expert-mode
%{__make} %{?_smp_mflags}
%install
%{makeinstall}
%files
%defattr(-,root,root)
%{_sbindir}/ext4magic
%{_mandir}/man8/ext4magic.8.gz
%changelog