commit:     10f696e2f1eea58e052d15fefc809e1e79789478
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 21 05:09:03 2025 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Aug 21 05:46:17 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10f696e2

dev-python/pypy3_10-exe: Remove last-rited pkg

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/pypy3_10-exe/Manifest                   |   2 -
 dev-python/pypy3_10-exe/metadata.xml               |  16 ---
 dev-python/pypy3_10-exe/pypy3_10-exe-7.3.19.ebuild | 139 ---------------------
 profiles/package.mask                              |   6 -
 4 files changed, 163 deletions(-)

diff --git a/dev-python/pypy3_10-exe/Manifest b/dev-python/pypy3_10-exe/Manifest
deleted file mode 100644
index 423b7481225a..000000000000
--- a/dev-python/pypy3_10-exe/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST pypy3.10-gentoo-patches-7.3.19.tar.xz 4764 BLAKE2B 
3b82fd2d4c9c9e5f8058cd8c312bb370aba792731b39d62bcbc41fb8a2dc55b04f79580936270f1143dec7f7f28e56526cd4f43f6f489f9d2b9b05df538df1e9
 SHA512 
1dca980c404254ecf09bf3faf1ec36faacf5d095613748999f183dd53c2d9b1ca78297f7ddb1355e34b1cea13608af6419c9be500e722897a6c3c5bfc5a72290
-DIST pypy3.10-v7.3.19-src.tar.bz2 24547353 BLAKE2B 
975de34c7e01117c74e184693b6659ba0e3d8d488d724c03737dbd64533452c954e045e45058e1e77b9bee68e01060e74e30d7898d29f1adce417ce4b46579b8
 SHA512 
8fa24d3556bcf9cd0e2facd697827a5001fcfae9bf7874957843e4751b259f85a8b36166921282d71f39bb468d1706bb669373aebbc52486b683fcc824fb30ad

diff --git a/dev-python/pypy3_10-exe/metadata.xml 
b/dev-python/pypy3_10-exe/metadata.xml
deleted file mode 100644
index 3f2aeb55aa5e..000000000000
--- a/dev-python/pypy3_10-exe/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-       <maintainer type="project">
-               <email>[email protected]</email>
-               <name>Python</name>
-       </maintainer>
-       <upstream>
-               <remote-id type="github">pypy/pypy</remote-id>
-       </upstream>
-       <use>
-               <flag name="low-memory">Build using PyPy with the engine 
configured towards low memory footprint.
-                       This makes it possible to build PyPy using ~3.5G of RAM 
on amd64 and ~half of that on x86,
-                       at the cost of lengthened build time.</flag>
-       </use>
-</pkgmetadata>

diff --git a/dev-python/pypy3_10-exe/pypy3_10-exe-7.3.19.ebuild 
b/dev-python/pypy3_10-exe/pypy3_10-exe-7.3.19.ebuild
deleted file mode 100644
index 9801bfb7061d..000000000000
--- a/dev-python/pypy3_10-exe/pypy3_10-exe-7.3.19.ebuild
+++ /dev/null
@@ -1,139 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit check-reqs flag-o-matic pax-utils toolchain-funcs
-
-PYPY_PV=${PV%_p*}
-PYVER=3.10
-MY_P="pypy${PYVER}-v${PYPY_PV/_}"
-PATCHSET="pypy${PYVER}-gentoo-patches-${PV}"
-
-DESCRIPTION="PyPy3.10 executable (build from source)"
-HOMEPAGE="
-       https://pypy.org/
-       https://github.com/pypy/pypy/
-"
-SRC_URI="
-       https://downloads.python.org/pypy/${MY_P}-src.tar.bz2
-       https://buildbot.pypy.org/pypy/${MY_P}-src.tar.bz2
-       https://dev.gentoo.org/~mgorny/dist/python/${PATCHSET}.tar.xz
-"
-S="${WORKDIR}/${MY_P}-src"
-
-LICENSE="MIT"
-SLOT="${PYPY_PV}"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux"
-IUSE="+jit low-memory ncurses cpu_flags_x86_sse2"
-
-RDEPEND="
-       app-arch/bzip2:0=
-       dev-libs/expat:0=
-       dev-libs/libffi:0=
-       >=sys-libs/zlib-1.1.3:0=
-       virtual/libintl:0=
-       ncurses? ( sys-libs/ncurses:0= )
-       !dev-python/pypy3_10-exe-bin:${SLOT}
-"
-DEPEND="
-       ${RDEPEND}
-"
-BDEPEND="
-       || (
-               dev-lang/pypy:2.7
-               dev-python/pypy
-       )
-       virtual/pkgconfig
-"
-
-check_env() {
-       if use low-memory; then
-               CHECKREQS_MEMORY="1750M"
-               use amd64 && CHECKREQS_MEMORY="3500M"
-       else
-               CHECKREQS_MEMORY="3G"
-               use amd64 && CHECKREQS_MEMORY="6G"
-       fi
-
-       check-reqs_pkg_pretend
-}
-
-pkg_pretend() {
-       [[ ${MERGE_TYPE} != binary ]] && check_env
-}
-
-pkg_setup() {
-       [[ ${MERGE_TYPE} != binary ]] && check_env
-}
-
-src_prepare() {
-       local PATCHES=(
-               "${WORKDIR}/${PATCHSET}"
-       )
-       default
-}
-
-src_configure() {
-       tc-export CC
-
-       # Yes, yuck, but it's being worked on upstream (bug #918971).
-       # https://foss.heptapod.net/pypy/pypy/-/issues/4042
-       append-flags $(test-flags-CC -Wno-error=incompatible-pointer-types)
-
-       local jit_backend
-       if use jit; then
-               jit_backend='--jit-backend='
-
-               # We only need the explicit sse2 switch for x86.
-               # On other arches we can rely on autodetection which uses
-               # compiler macros. Plus, --jit-backend= doesn't accept all
-               # the modern values...
-
-               if use x86; then
-                       if use cpu_flags_x86_sse2; then
-                               jit_backend+=x86
-                       else
-                               jit_backend+=x86-without-sse2
-                       fi
-               else
-                       jit_backend+=auto
-               fi
-       fi
-
-       local args=(
-               --no-shared
-               $(usex jit -Ojit -O2)
-
-               ${jit_backend}
-
-               pypy/goal/targetpypystandalone
-               --withmod-bz2
-               $(usex ncurses --with{,out}mod-_minimal_curses)
-       )
-
-       local interp=( pypy )
-       if use low-memory; then
-               local -x PYPY_GC_MAX_DELTA=200MB
-               interp+=( --jit loop_longevity=300 )
-       fi
-
-       # translate into the C sources
-       # we're going to build them ourselves since otherwise pypy does not
-       # free up the unneeded memory before spawning the compiler
-       set -- "${interp[@]}" rpython/bin/rpython --batch --source "${args[@]}"
-       echo -e "\033[1m${@}\033[0m"
-       "${@}" || die "translation failed"
-}
-
-src_compile() {
-       emake -C "${T}"/usession*-0/testing_1
-}
-
-src_install() {
-       cd "${T}"/usession*-0 || die
-       newbin "testing_1/pypy${PYVER}-c" "pypy${PYVER}-c-${PYPY_PV}"
-       insinto "/usr/include/pypy${PYVER}/${PYPY_PV}"
-       doins *.h
-       pax-mark m "${ED}/usr/bin/pypy${PYVER}-c-${PYPY_PV}"
-}

diff --git a/profiles/package.mask b/profiles/package.mask
index f74bbdb15ae9..eac7dec8ab46 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -227,12 +227,6 @@ net-analyzer/wapiti
 # Removal on 2025-08-25.  Bug #960760.
 dev-python/noseofyeti
 
-# Michał Górny <[email protected]> (2025-07-22)
-# Provider for PyPy3.10 executable.  This branch is no longer maintained
-# upstream, and it is vulnerable.  Removal on 2025-08-05.
-dev-lang/pypy:3.10
-dev-python/pypy3_10-exe
-
 # Matt Turner <[email protected]> (2025-07-20)
 # No reverse dependencies remaining.
 # Removal on 2025-08-19.

Reply via email to