Add pwntools
This is basicaly the same spec file as used in the official Fedora with just a version bump to the lastest.
This commit is contained in:
parent
f72b9631d6
commit
f34e2f6440
5 changed files with 142 additions and 0 deletions
BIN
pwntools/SOURCES/4.5.0.tar.gz
Normal file
BIN
pwntools/SOURCES/4.5.0.tar.gz
Normal file
Binary file not shown.
12
pwntools/SOURCES/pwntools-4.5.0-fix-unicorn-dependency.patch
Normal file
12
pwntools/SOURCES/pwntools-4.5.0-fix-unicorn-dependency.patch
Normal file
|
@ -0,0 +1,12 @@
|
|||
diff -u a/setup.py b/setup.py
|
||||
--- a/setup.py 2021-04-30 17:09:40.000000000 +0100
|
||||
+++ b/setup.py 2021-05-21 14:51:11.900159197 +0100
|
||||
@@ -60,7 +60,7 @@
|
||||
'psutil>=3.3.0',
|
||||
'intervaltree>=3.0',
|
||||
'sortedcontainers',
|
||||
- 'unicorn>=1.0.2rc1,<1.0.2rc4', # see unicorn-engine/unicorn#1100, unicorn-engine/unicorn#1170, Gallopsled/pwntools#1538
|
||||
+ 'unicorn>=1.0.2rc1',
|
||||
'six>=1.12.0',
|
||||
'rpyc',
|
||||
'colored_traceback',
|
5
pwntools/create_srpm.sh
Executable file
5
pwntools/create_srpm.sh
Executable file
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
rpmbuild --define "_topdir `pwd`" -bs python-pwntools.spec
|
||||
mv SRPMS/* .
|
||||
rmdir BUILDROOT RPMS SRPMS BUILD
|
BIN
pwntools/python-pwntools-4.5.0-1.fc34.src.rpm
Normal file
BIN
pwntools/python-pwntools-4.5.0-1.fc34.src.rpm
Normal file
Binary file not shown.
125
pwntools/python-pwntools.spec
Normal file
125
pwntools/python-pwntools.spec
Normal file
|
@ -0,0 +1,125 @@
|
|||
%global srcname pwntools
|
||||
|
||||
Name: python-%{srcname}
|
||||
Version: 4.5.0
|
||||
Release: 1%{?dist}
|
||||
Summary: A CTF framework and exploit development library
|
||||
|
||||
# Source contains four LICENSE*.txt files which explain the licenses which cover
|
||||
# pwntools.
|
||||
License: MIT and BSD and GPLv2
|
||||
URL: https://github.com/Gallopsled/%{srcname}/
|
||||
Source0: https://github.com/Gallopsled/%{srcname}/archive/%{version}.tar.gz
|
||||
Patch0: pwntools-4.5.0-fix-unicorn-dependency.patch
|
||||
|
||||
BuildArch: noarch
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-setuptools
|
||||
# Waiting on pwntools to support newer sphinx shipped by Fedora.
|
||||
# BuildRequires: python3-sphinx
|
||||
|
||||
%description
|
||||
Pwntools is a CTF framework and exploit development library. Written
|
||||
in Python, it is designed for rapid prototyping and development, and
|
||||
intended to make exploit writing as simple as possible.
|
||||
|
||||
%package -n python3-%{srcname}
|
||||
Summary: %{summary}
|
||||
%{?python_provide:%python_provide python3-%{srcname}}
|
||||
Requires: binutils
|
||||
|
||||
%description -n python3-%{srcname}
|
||||
Pwntools is a CTF framework and exploit development library. Written
|
||||
in Python, it is designed for rapid prototyping and development, and
|
||||
intended to make exploit writing as simple as possible.
|
||||
|
||||
# Waiting on pwntools to support newer sphinx shipped by Fedora.
|
||||
# %%package doc
|
||||
# Summary: pwntools documentation
|
||||
#
|
||||
# %%description doc
|
||||
# Documentation for pwntools.
|
||||
|
||||
%prep
|
||||
%autosetup -n %{srcname}-%{version} -p1
|
||||
|
||||
%build
|
||||
%py3_build
|
||||
# Waiting on pwntools to support newer sphinx shipped by Fedora.
|
||||
# # Generate html documentation.
|
||||
# PYTHONPATH=${PWD} sphinx-build-2 docs/source html
|
||||
# # Remove the sphinx-build leftovers.
|
||||
# rm -rf html/.{doctrees,buildinfo}
|
||||
|
||||
%install
|
||||
%py3_install
|
||||
|
||||
rm -rf %{buildroot}%{python3_sitelib}/%{srcname}-doc/CHANGELOG.md
|
||||
rm -rf %{buildroot}%{python3_sitelib}/%{srcname}-doc/CONTRIBUTING.md
|
||||
rm -rf %{buildroot}%{python3_sitelib}/%{srcname}-doc/DOCKER.md
|
||||
rm -rf %{buildroot}%{python3_sitelib}/%{srcname}-doc/LICENSE-pwntools.txt
|
||||
rm -rf %{buildroot}%{python3_sitelib}/%{srcname}-doc/README.md
|
||||
rm -rf %{buildroot}%{python3_sitelib}/%{srcname}-doc/TESTING.md
|
||||
rm -rf %{buildroot}%{python3_sitelib}/%{srcname}-doc/requirements.txt
|
||||
|
||||
%files -n python3-%{srcname}
|
||||
%doc CHANGELOG.md CONTRIBUTING.md README.md TESTING.md requirements.txt
|
||||
%license LICENSE-pwntools.txt
|
||||
%{python3_sitelib}/%{srcname}-%{version}-py%{python3_version}.egg-info/
|
||||
%{python3_sitelib}/pwn/
|
||||
%{python3_sitelib}/pwnlib/
|
||||
%{_bindir}/*
|
||||
|
||||
# Waiting on pwntools to support newer sphinx shipped by Fedora.
|
||||
# %%files doc
|
||||
# %%doc html
|
||||
# %%license LICENSE-pwntools.txt
|
||||
|
||||
%changelog
|
||||
* Fri May 21 2021 Carlos Mogas da Silva <r3pek@r3pek.org> - 4.5.0-1
|
||||
- Track upstream version
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Fri Nov 06 2020 W. Michael Petullo <mike@flyn.org> - 4.3.0-2
|
||||
- Fix BZ #1892888; something did not like setup.py's 'unicorn>=1.0.2rc1,<1.0.2rc4'
|
||||
|
||||
* Fri Nov 06 2020 W. Michael Petullo <mike@flyn.org> - 4.3.0-1
|
||||
- New upstream version
|
||||
|
||||
* Thu Oct 08 2020 W. Michael Petullo <mike@flyn.org> - 4.2.1-1
|
||||
- New upstream version
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 4.1.0-2
|
||||
- Rebuilt for Python 3.9
|
||||
|
||||
* Fri May 08 2020 W. Michael Petullo <mike@flyn.org> - 4.1.0-1
|
||||
- New upstream version
|
||||
|
||||
* Thu Dec 19 2019 W. Michael Petullo <mike@flyn.org> - 4.0.0-0.1.b0
|
||||
- New upstream version
|
||||
- Migrate to Python 3
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.12.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sat Mar 16 2019 W. Michael Petullo <mike@flyn.org> - 3.12.2-1
|
||||
- New upstream version
|
||||
- Adjust requires.txt
|
||||
|
||||
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.12.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Mon Oct 22 2018 W. Michael Petullo <mike@flyn.org> - 3.12.1-1
|
||||
- New upstream version
|
||||
- Drop python2-pypandoc requirement
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.12.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Sat Jun 16 2018 W. Michael Petullo <mike@flyn.org> - 3.12.0-1
|
||||
- Initial package
|
Loading…
Reference in a new issue