commit:     e57a7d7fc1aaafe186146b9ac6d12ac095776124
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 18 16:40:51 2024 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Thu Jan 18 16:46:13 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e57a7d7f

dev-python/pypy3-exe: treeclean

Closes: https://bugs.gentoo.org/907606
Closes: https://bugs.gentoo.org/920036
Closes: https://bugs.gentoo.org/895366
Closes: https://bugs.gentoo.org/865933
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-python/pypy3-exe/Manifest                |   2 -
 dev-python/pypy3-exe/metadata.xml            |  13 ---
 dev-python/pypy3-exe/pypy3-exe-7.3.11.ebuild | 126 ---------------------------
 3 files changed, 141 deletions(-)

diff --git a/dev-python/pypy3-exe/Manifest b/dev-python/pypy3-exe/Manifest
deleted file mode 100644
index de5d9083b178..000000000000
--- a/dev-python/pypy3-exe/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST pypy3.9-gentoo-patches-7.3.11.tar.xz 6444 BLAKE2B 
adcc1ae4c3ae2c5317a05d6de51785945625d8bcc7cb35bd6608fa80f09b37c483c95663eacb0353013a5abec308d25b12666699c65512f5f3a6d7345f2b5b18
 SHA512 
f2064ecffa09ba23f5f8c281ca4c8c0740cb6b57185d66c02eec2bcb77cfb566b1a2db4f52c472bcaf0d5fb759ee8003b27761af37785d12465c2010fd73c49d
-DIST pypy3.9-v7.3.11-src.tar.bz2 23460769 BLAKE2B 
fa8a827c28813243926c8689addb008c0a43acdc3f81a18749a8f2c1926b6294f2c0c95a4c315e3b77ce84b4f337af7a0bce5daf8dcb60ead965532d4af183cb
 SHA512 
33c978ffbeeb39453028d1d1646ccfdace062ce48a5d939245bea41643038dd3687e80e34f88fa0622bcb175d7dd78f75cbe36b24229c8052f09d2d17dcdfd8c

diff --git a/dev-python/pypy3-exe/metadata.xml 
b/dev-python/pypy3-exe/metadata.xml
deleted file mode 100644
index 9f1f42740089..000000000000
--- a/dev-python/pypy3-exe/metadata.xml
+++ /dev/null
@@ -1,13 +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>
-       <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-exe/pypy3-exe-7.3.11.ebuild 
b/dev-python/pypy3-exe/pypy3-exe-7.3.11.ebuild
deleted file mode 100644
index 754c1f25a859..000000000000
--- a/dev-python/pypy3-exe/pypy3-exe-7.3.11.ebuild
+++ /dev/null
@@ -1,126 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit check-reqs pax-utils toolchain-funcs
-
-PYPY_PV=${PV%_p*}
-MY_P=pypy3.9-v${PYPY_PV/_}
-PATCHSET="pypy3.9-gentoo-patches-${PV/_}"
-
-DESCRIPTION="PyPy3 executable (build from source)"
-HOMEPAGE="https://www.pypy.org/";
-SRC_URI="
-       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="3.9-${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-exe-bin:${SLOT}
-"
-DEPEND="
-       ${RDEPEND}
-"
-BDEPEND="
-       dev-python/pypy
-"
-
-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
-
-       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/pypy3.9-c pypy3.9-c-${PYPY_PV}
-       insinto /usr/include/pypy3.9/${PYPY_PV}
-       doins *.h
-       pax-mark m "${ED}/usr/bin/pypy3.9-c-${PYPY_PV}"
-}

Reply via email to