python/pefile: Updated for version 2017.11.5.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
parent
dc85f0e95c
commit
dd9ffcac76
|
@ -1,10 +1,10 @@
|
|||
pefile is a Python Portable Executable (PE) reader module.
|
||||
|
||||
pefile is a multi-platform Python module to read and work with Portable
|
||||
Executable (aka PE) files. Most of the information in the PE Header is
|
||||
accessible, as well as all the sections, section's information and data.
|
||||
pefile requires some basic understanding of the layout of a PE file. Armed
|
||||
with it it's possible to explore nearly every single feature of the file.
|
||||
pefile is a multi-platform Python module to read and work with Portable
|
||||
Executable (aka PE) files. Most of the information in the PE Header is
|
||||
accessible, as well as all the sections, section's information and data.
|
||||
pefile requires some basic understanding of the layout of a PE file. Armed
|
||||
with it it's possible to explore nearly every single feature of the file.
|
||||
Some of the tasks that pefile makes possible are:
|
||||
|
||||
Modifying and writing back to the PE image
|
||||
|
@ -13,6 +13,6 @@ Some of the tasks that pefile makes possible are:
|
|||
Retrieving data
|
||||
Warnings for suspicious and malformed values
|
||||
Packer detection with PEiD's signatures
|
||||
PEiD signature generation
|
||||
PEiD signature generation
|
||||
|
||||
python-future is a run time dependency.
|
||||
|
|
|
@ -21,10 +21,10 @@
|
|||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
#
|
||||
# New submission August 2016, Barry J. Grundy.
|
||||
# Updated for 2017.11.5, December 2017, Barry J. Grundy.
|
||||
|
||||
PRGNAM=pefile
|
||||
VERSION=${VERSION:-2016.3.28}
|
||||
VERSION=${VERSION:-2017.11.5}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="pefile"
|
||||
VERSION="2016.3.28"
|
||||
VERSION="2017.11.5"
|
||||
HOMEPAGE="https://pypi.python.org/pypi/pefile/"
|
||||
DOWNLOAD="https://pypi.python.org/packages/92/c0/8589ce9734ffdba258bd3e5acd4afb2e3586c121fe73402f686288b684b0/pefile-2016.3.28.tar.gz"
|
||||
MD5SUM="2f3259fa2b5cf48a3fdc5422a58f854f"
|
||||
DOWNLOAD="https://pypi.python.org/packages/7e/9b/f99171190f04cd23768547dd34533b4016bd582842f53cd9fe9585a74c74/pefile-2017.11.5.tar.gz"
|
||||
MD5SUM="99453cda7a34d93d71cda60280eb062a"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="python-future"
|
||||
|
|
Loading…
Reference in New Issue