public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Arthur Zamarin" <arthurzam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/pwntools/
Date: Fri, 22 Mar 2024 11:58:29 +0000 (UTC)	[thread overview]
Message-ID: <1711108048.a15fde2da5a92fa8eca66a883c1d5d1f7e180608.arthurzam@gentoo> (raw)

commit:     a15fde2da5a92fa8eca66a883c1d5d1f7e180608
Author:     Mario Haustein <mario.haustein <AT> hrz <DOT> tu-chemnitz <DOT> de>
AuthorDate: Thu Feb 22 23:25:49 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 22 11:47:28 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a15fde2d

dev-util/pwntools: drop 4.11.0

Signed-off-by: Mario Haustein <mario.haustein <AT> hrz.tu-chemnitz.de>
Closes: https://github.com/gentoo/gentoo/pull/35492
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-util/pwntools/Manifest               |  1 -
 dev-util/pwntools/pwntools-4.11.0.ebuild | 61 --------------------------------
 2 files changed, 62 deletions(-)

diff --git a/dev-util/pwntools/Manifest b/dev-util/pwntools/Manifest
index c52a33f7f5d0..e3bf9d0c78b6 100644
--- a/dev-util/pwntools/Manifest
+++ b/dev-util/pwntools/Manifest
@@ -1,4 +1,3 @@
-DIST pwntools-4.11.0.gh.tar.gz 4237576 BLAKE2B 11b1b6a923c44ee1b5027b4a71f9f3b6b9bcd36a2a38915ee46ffc855b0749528a204581dcb5071d50031701924b3cc08edf95b363d1d1b6e76d029a91011293 SHA512 a5be69a19cea933680f1946e389fad4edbbdb0d6106cd1f78778f901a6ddaaef734389678c5b4f16718a788d53bff6025817d83c06ab3dc1a200a5ff3c696aaa
 DIST pwntools-4.11.1.gh.tar.gz 4237695 BLAKE2B 10a0b363d7255e856a33ce972a9eab2ec51d1d5f6ee953ac37796f87cf42b46b1207dc31f64902af704b7f36125c765e0c9328d44c6b0dda34a133238b42cf7f SHA512 f3c9d35ea62215a05a97ca00d908f3aea2188b9b2cbb8baac6b4203ac699e82f3d13b1332007e3b5d46973d609271fdd5e2dbd3aa70f7735f5578a449ca90fe6
 DIST pwntools-4.12.0.gh.tar.gz 4245062 BLAKE2B f4739b659f30b8f8522881cacaceed96e12a8c4c9591c738a3b1b98cbd8ec7ce49d2adbffb099deb470a72d9880c0c2aea2702ec8ea48dfe9894c780d549fa5e SHA512 3034546d32ab81384241d94bfeaec4f54ac134b80a4c466dd3275d72a92d0fc83dd559c210857496cdc97ec86cdf1ad88c7c454ad6257980c58bafa5281a33da
 DIST pwntools-4.12.0_beta1.gh.tar.gz 4245839 BLAKE2B c69c0ff021764451718fb1146e54c0fde3024251a4d20cca97da607e780fa1b956bee9774623e8294a92c832c2ba6dcbdec3cc8848520b7d62a83bb918b46e31 SHA512 3badc20ab858c0b5bec6d76a41691684c566f8dce0576a11929b74e811a3173c8600ffd8ab289a94bf10478bf7a59594373438f63f48e27e1d87e7c04716ad2e

diff --git a/dev-util/pwntools/pwntools-4.11.0.ebuild b/dev-util/pwntools/pwntools-4.11.0.ebuild
deleted file mode 100644
index 70911999f38c..000000000000
--- a/dev-util/pwntools/pwntools-4.11.0.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..11} )
-DISTUTILS_USE_PEP517=setuptools
-inherit distutils-r1
-
-DESCRIPTION="CTF framework and exploit development library"
-HOMEPAGE="https://github.com/Gallopsled/pwntools"
-
-if [[ ${PV} == "9999" ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/Gallopsled/pwntools.git"
-else
-	SRC_URI="https://github.com/Gallopsled/pwntools/archive/${PV/_beta/beta}.tar.gz -> ${P}.gh.tar.gz"
-	KEYWORDS="amd64 ~arm64 ~riscv x86"
-	S="${WORKDIR}/${PN}-${PV/_beta/beta}"
-fi
-
-LICENSE="MIT GPL-2+ BSD-2"
-SLOT="0"
-
-RDEPEND="
-	${PYTHON_DEPS}
-	>=dev-libs/capstone-3.0.5[python,${PYTHON_USEDEP}]
-	>=dev-util/ROPgadget-5.3[${PYTHON_USEDEP}]
-	>=dev-util/unicorn-1.0.2[python,${PYTHON_USEDEP}]
-	dev-python/colored-traceback[${PYTHON_USEDEP}]
-	>=dev-python/intervaltree-3.0[${PYTHON_USEDEP}]
-	>=dev-python/mako-1.0.0[${PYTHON_USEDEP}]
-	dev-python/packaging[${PYTHON_USEDEP}]
-	>=dev-python/paramiko-1.15.2[${PYTHON_USEDEP}]
-	>=dev-python/psutil-3.3.0[${PYTHON_USEDEP}]
-	>=dev-python/pyelftools-0.24[${PYTHON_USEDEP}]
-	>=dev-python/pygments-2.0[${PYTHON_USEDEP}]
-	>=dev-python/pyserial-2.7[${PYTHON_USEDEP}]
-	dev-python/PySocks[${PYTHON_USEDEP}]
-	dev-python/python-dateutil[${PYTHON_USEDEP}]
-	>=dev-python/requests-2.0[${PYTHON_USEDEP}]
-	dev-python/rpyc[${PYTHON_USEDEP}]
-	>=dev-python/six-1.12.0[${PYTHON_USEDEP}]
-	dev-python/sortedcontainers[${PYTHON_USEDEP}]
-"
-
-PATCHES=(
-	"${FILESDIR}/${PN}-4.11.0_update_deps.patch"
-)
-
-python_configure_all() {
-	DISTUTILS_ARGS=(
-		--only-use-pwn-command
-	)
-}
-
-src_install() {
-	distutils-r1_src_install
-
-	rm -r "${ED}/usr/pwntools-doc" || die
-}


             reply	other threads:[~2024-03-22 11:58 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-22 11:58 Arthur Zamarin [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-03  9:50 [gentoo-commits] repo/gentoo:master commit in: dev-util/pwntools/ Sam James
2024-10-03  9:50 Sam James
2024-10-03  9:50 Sam James
2024-10-03  9:50 Sam James
2024-09-27 23:23 Jakov Smolić
2024-09-27 12:41 Arthur Zamarin
2024-08-27  7:02 Joonas Niilola
2024-08-27  7:02 Joonas Niilola
2024-08-27  7:02 Joonas Niilola
2024-04-23 14:35 Sam James
2024-04-23 13:57 Sam James
2024-03-22 11:58 Arthur Zamarin
2024-03-22 11:58 Arthur Zamarin
2024-02-15  7:07 Joonas Niilola
2024-02-14 23:12 Jakov Smolić
2024-01-12  7:52 Joonas Niilola
2024-01-12  7:52 Joonas Niilola
2024-01-12  7:52 Joonas Niilola
2024-01-12  7:52 Joonas Niilola
2023-10-27  3:22 Sam James
2023-10-19  6:16 Joonas Niilola
2023-10-19  6:16 Joonas Niilola
2023-10-09 14:17 Yixun Lan
2023-10-01  7:34 Sam James
2023-09-18  7:40 Sam James
2023-09-18  7:40 Sam James
2023-09-18  0:17 Sam James
2023-09-17 23:58 Sam James
2023-05-27  7:49 Joonas Niilola
2023-05-27  7:49 Joonas Niilola
2023-03-05  7:25 Joonas Niilola
2023-03-04 11:24 Arthur Zamarin
2023-02-10  8:45 Yixun Lan
2023-02-01  7:27 Sam James
2023-01-31  4:04 Sam James

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1711108048.a15fde2da5a92fa8eca66a883c1d5d1f7e180608.arthurzam@gentoo \
    --to=arthurzam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox