Accepting request 135525 from home:gregfreemyer:Tools-for-forensic-boot-cd

new module: python-pefile can be used to analyze PE files.  Often used in malware analysis.

OBS-URL: https://build.opensuse.org/request/show/135525
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pefile?expand=0&rev=1
This commit is contained in:
Sascha Peilicke 2012-10-01 08:26:48 +00:00 committed by Git OBS Bridge
commit 7dacdb6b30
6 changed files with 7417 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

7331
UserDB.TXT Normal file

File diff suppressed because it is too large Load Diff

3
pefile-1.2.10-121.tar.gz Normal file
View File

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

6
python-pefile.changes Normal file
View File

@ -0,0 +1,6 @@
-------------------------------------------------------------------
Fri Sep 21 20:49:38 UTC 2012 - Greg.Freemyer@gmail.com
- initial package
- v1.2.10

53
python-pefile.spec Normal file
View File

@ -0,0 +1,53 @@
#
# spec file for package python-pefile
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# 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: python-pefile
Version: 1.2.10+121
Release: 0
License: GPL-2.0+
Summary: A python module to work with PE (pertable executable) files
Url: http://code.google.com/p/pefile
Group: Development/Libraries/Python
Source0: pefile-1.2.10-121.tar.gz
Source1: http://reverse-engineering-scripts.googlecode.com/files/UserDB.TXT
BuildRequires: python-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
%{!?python_sitearch: %global python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
%endif
%description
PEFILE is a python module that is often used in malware analysis. (Replace this with text from website.)
%prep
%setup -q -n pefile-1.2.10-121
cp %{SOURCE1} .
%build
CFLAGS="%{optflags}" python setup.py build
%install
python setup.py install --root=%{buildroot} --prefix=%{_prefix} --record-rpm=INSTALLED_FILES
%files -f INSTALLED_FILES
%defattr(-,root,root)
%doc UserDB.TXT
%changelog