commit:     d5772ce2e9d33990920bd489c6db115a4e3013e5
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 28 15:26:50 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Dec 28 15:26:50 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5772ce2

sys-devel/gcc-config: drop 2.4, 2.5-r1, 2.6

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-devel/gcc-config/Manifest                 |  3 --
 sys-devel/gcc-config/gcc-config-2.4.ebuild    | 52 -----------------------
 sys-devel/gcc-config/gcc-config-2.5-r1.ebuild | 60 ---------------------------
 sys-devel/gcc-config/gcc-config-2.6.ebuild    | 60 ---------------------------
 4 files changed, 175 deletions(-)

diff --git a/sys-devel/gcc-config/Manifest b/sys-devel/gcc-config/Manifest
index fd30a7bcc1cf..7a6b9f24f235 100644
--- a/sys-devel/gcc-config/Manifest
+++ b/sys-devel/gcc-config/Manifest
@@ -1,4 +1 @@
-DIST gcc-config-2.4.tar.xz 17552 BLAKE2B 
631645a5cc9f3e7ab0ff089960ee3d0b2ecea29aa96f839a03a86985db512bf0d182b67a7b1bb73b95808c04523f32d6b8c122cdfbe8dbf94e7d319a1e49a23c
 SHA512 
852b4aefaccfae1d91c551e226ac28110fa23f9668075c190a5fb9129c86d2f3e4994e96b7a5e8a2801883c5a5b16d9fbf3e9066e6b6a423055fdefa490793c7
-DIST gcc-config-2.5.tar.xz 17664 BLAKE2B 
fa7133a54d3b49df20d3ae6036a65602c8a0d9e8668e2874a87d080add241a31322a3f4694bff8a5fe61957740603862539c0d9750e446d36beb2fb42ff0ba27
 SHA512 
20a8d62192faf54101352cfb6ca00503c9b2ab83aefecd94c4c887302a000d78334545a3424603a66a50e5f3ff07b67b16828813407893df5d94051776252b83
-DIST gcc-config-2.6.tar.xz 17772 BLAKE2B 
5f06ac46c64fd241be9e7b95e277395623f015016c5abbe5e3275dce3fbf326d998a897a915b87387c878a1b57cdc847a6f95fa0b7ca00aa954c13d00a6e7d09
 SHA512 
27de726b266b2f58f28a4eab0a77141a8c0cfc9e939f4f0ee8dd382578a1cdececd30a4ae15bab858fec01a533c41248c9858f25d5d7314c36e8f2fcd57df429
 DIST gcc-config-2.8.tar.xz 17968 BLAKE2B 
aa34e681ef0c86bb846d89b816b46276f5c7c32974c785a9611a903a4fe165c997a34664abe17aa4d8720a96f194054e5d8c371a6c9270b1c235d7539094436c
 SHA512 
5e91df44fb7782b9ad41ed06fbd53f74868c059f892c6c2b8195ebaa899905dd9f502562887f1a3765dd6b61698e956d01c6fa6f97a535cf16e26e70fcd902ba

diff --git a/sys-devel/gcc-config/gcc-config-2.4.ebuild 
b/sys-devel/gcc-config/gcc-config-2.4.ebuild
deleted file mode 100644
index 1d9d5647b2f3..000000000000
--- a/sys-devel/gcc-config/gcc-config-2.4.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-if [[ ${PV} == 9999 ]]; then
-       EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/gcc-config.git";
-       inherit git-r3
-else
-       SRC_URI="https://dev.gentoo.org/~sam/distfiles/${P}.tar.xz";
-       KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
-fi
-
-DESCRIPTION="Utility to manage compilers"
-HOMEPAGE="https://gitweb.gentoo.org/proj/gcc-config.git/";
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="+cc-wrappers +native-symlinks"
-
-RDEPEND=">=sys-apps/gentoo-functions-0.10"
-
-_emake() {
-       emake \
-               PV="${PVR}" \
-               SUBLIBDIR="$(get_libdir)" \
-               USE_CC_WRAPPERS="$(usex cc-wrappers)" \
-               USE_NATIVE_LINKS="$(usex native-symlinks)" \
-               TOOLCHAIN_PREFIX="${CHOST}-" \
-               "$@"
-}
-
-src_compile() {
-       _emake
-}
-
-src_install() {
-       _emake DESTDIR="${D}" install
-}
-
-pkg_postinst() {
-       # Do we have a valid multi ver setup ?
-       local x
-       for x in $(gcc-config -C -l 2>/dev/null | awk '$NF == "*" { print $2 
}') ; do
-               gcc-config ${x}
-       done
-
-       # USE flag change can add or delete files in /usr/bin worth recaching
-       if [[ ! ${ROOT} && -f 
${EPREFIX}/usr/share/eselect/modules/compiler-shadow.eselect ]] ; then
-               eselect compiler-shadow update all
-       fi
-}

diff --git a/sys-devel/gcc-config/gcc-config-2.5-r1.ebuild 
b/sys-devel/gcc-config/gcc-config-2.5-r1.ebuild
deleted file mode 100644
index d59534f90b07..000000000000
--- a/sys-devel/gcc-config/gcc-config-2.5-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-if [[ ${PV} == 9999 ]]; then
-       EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/gcc-config.git";
-       inherit git-r3
-else
-       
SRC_URI="https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}.tar.xz";
-       KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc x86"
-fi
-
-DESCRIPTION="Utility to manage compilers"
-HOMEPAGE="https://gitweb.gentoo.org/proj/gcc-config.git/";
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="+cc-wrappers +native-symlinks"
-
-RDEPEND=">=sys-apps/gentoo-functions-0.10"
-
-_emake() {
-       emake \
-               PV="${PVR}" \
-               SUBLIBDIR="$(get_libdir)" \
-               USE_CC_WRAPPERS="$(usex cc-wrappers)" \
-               USE_NATIVE_LINKS="$(usex native-symlinks)" \
-               TOOLCHAIN_PREFIX="${CHOST}-" \
-               "$@"
-}
-
-src_compile() {
-       _emake
-}
-
-src_install() {
-       _emake DESTDIR="${D}" install
-}
-
-pkg_postinst() {
-       # Do we have a valid multi ver setup ?
-       local x
-       for x in $(gcc-config -C -l 2>/dev/null | awk '$NF == "*" { print $2 
}') ; do
-               gcc-config ${x}
-       done
-
-       # USE flag change can add or delete files in /usr/bin worth recaching
-       if [[ ! ${ROOT} && -f 
${EPREFIX}/usr/share/eselect/modules/compiler-shadow.eselect ]] ; then
-               eselect compiler-shadow update all
-       fi
-
-       if ! has_version "sys-devel/gcc[gcj(-)]" && [[ -x 
"${EROOT}"/usr/bin/gcj ]] ; then
-               # Warn about obsolete /usr/bin/gcj for bug #804178
-               ewarn "Obsolete GCJ wrapper found: ${EROOT}/usr/bin/gcj!"
-               ewarn "Please delete this file unless you know it is needed 
(e.g. custom gcj install)."
-               ewarn "If you have no idea what this means, please delete the 
file:"
-               ewarn " rm ${EROOT}/usr/bin/gcj"
-       fi
-}

diff --git a/sys-devel/gcc-config/gcc-config-2.6.ebuild 
b/sys-devel/gcc-config/gcc-config-2.6.ebuild
deleted file mode 100644
index 7ff12f007e38..000000000000
--- a/sys-devel/gcc-config/gcc-config-2.6.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-if [[ ${PV} == 9999 ]]; then
-       EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/gcc-config.git";
-       inherit git-r3
-else
-       
SRC_URI="https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}.tar.xz";
-       KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
-fi
-
-DESCRIPTION="Utility to manage compilers"
-HOMEPAGE="https://gitweb.gentoo.org/proj/gcc-config.git/";
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="+cc-wrappers +native-symlinks"
-
-RDEPEND=">=sys-apps/gentoo-functions-0.10"
-
-_emake() {
-       emake \
-               PV="${PVR}" \
-               SUBLIBDIR="$(get_libdir)" \
-               USE_CC_WRAPPERS="$(usex cc-wrappers)" \
-               USE_NATIVE_LINKS="$(usex native-symlinks)" \
-               TOOLCHAIN_PREFIX="${CHOST}-" \
-               "$@"
-}
-
-src_compile() {
-       _emake
-}
-
-src_install() {
-       _emake DESTDIR="${D}" install
-}
-
-pkg_postinst() {
-       # Do we have a valid multi ver setup ?
-       local x
-       for x in $(gcc-config -C -l 2>/dev/null | awk '$NF == "*" { print $2 
}') ; do
-               gcc-config ${x}
-       done
-
-       # USE flag change can add or delete files in /usr/bin worth recaching
-       if [[ ! ${ROOT} && -f 
${EPREFIX}/usr/share/eselect/modules/compiler-shadow.eselect ]] ; then
-               eselect compiler-shadow update all
-       fi
-
-       if ! has_version "sys-devel/gcc[gcj(-)]" && [[ -x 
"${EROOT}"/usr/bin/gcj ]] ; then
-               # Warn about obsolete /usr/bin/gcj for bug #804178
-               ewarn "Obsolete GCJ wrapper found: ${EROOT}/usr/bin/gcj!"
-               ewarn "Please delete this file unless you know it is needed 
(e.g. custom gcj install)."
-               ewarn "If you have no idea what this means, please delete the 
file:"
-               ewarn " rm ${EROOT}/usr/bin/gcj"
-       fi
-}

Reply via email to