dev-ada/gnatmem: rm gnat_2019 and old ebuilds

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
This commit is contained in:
Alfredo Tupone
2021-11-25 07:37:12 +01:00
parent 15ed1c6b67
commit 221e1b192f
5 changed files with 1 additions and 131 deletions

View File

@@ -1,3 +1 @@
DIST gnatmem-2019-20190429-19745-src.tar.gz 80136 BLAKE2B 8ae3b41827416f951abb0d0a1fe533946fad2ac8d67ae6aad2b14495a3c068718befbbbf11800c1864f3becaa0ca6dfb838aeec3b3d715b250d4436ccee93c69 SHA512 4354a30efcf95a013f481b3519a79a22f85348840f074c734013d6c73e00fd771118b84eec416260983c383484f7a404217a32c012ca0bd7c37253ba17f2eb85
DIST gnatmem-2020-20200429-19911-src.tar.gz 80400 BLAKE2B 0367e4b40a3d0cde1002b49a330db3b5c27a08074bf9687699d0fe6b3f046562c4758865fd30a3f99703d209e24b0b5b72902cc4bcd4fd1c54576a0aa082b0fa SHA512 9d5e2bfab73ff2f9b6864bd8b1f2844587a21352a782f1dd52a17eb911d4791d93806a423c702979636dd402e372ed7954ffd33d3882c8703d0f6e8fc056babc
DIST gnatmem-2021-20210518-19F7B-src.tar.gz 81001 BLAKE2B 618c5e0fc300e1ea53456b776372a06603ce6b71269ddbed8cbd0bceefd957f726ceac8a045f12f2a50e0f4ebdf47d4c60ef65716ba4bcc9eb6fc220a3670bff SHA512 ef938cb7c2b6cda12a68a874218d47acdee214530534114da6490475dd08e21dc4043c9a3f164074a8010e50d0a9c91b4fbabffdc8329700629407644fec46d4

View File

@@ -1,29 +0,0 @@
--- a/src/libaddr2line.c 2020-08-04 22:41:04.670046491 +0200
+++ b/src/libaddr2line.c 2020-08-04 22:44:55.560802332 +0200
@@ -55,14 +55,26 @@
if (found)
return;
+#if defined(bfd_get_section_flags)
if ((bfd_get_section_flags (abfd, section) & SEC_ALLOC) == 0)
+#else
+ if ((bfd_section_flags (section) & SEC_ALLOC) == 0)
+#endif
return;
+#if defined(bfd_get_section_vma)
vma = bfd_get_section_vma (abfd, section);
+#else
+ vma = bfd_section_vma (section);
+#endif
if (pc < vma)
return;
+#if defined(bfd_get_section_size)
size = bfd_get_section_size (section);
+#else
+ size = bfd_section_size (section);
+#endif
if (pc >= vma + size)
return;

View File

@@ -1,50 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
ADA_COMPAT=( gnat_2019 )
inherit ada multiprocessing autotools
MYP=${P}-20190429-19745-src
DESCRIPTION="Monitors dynamic allocation and deallocation activity in a program"
HOMEPAGE="http://libre.adacore.com/"
SRC_URI="http://mirrors.cdn.adacore.com/art/5cdf8e1431e87a8f1d425089
-> ${MYP}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="${ADA_DEPS}"
DEPEND="${RDEPEND}
dev-ada/gprbuild[${ADA_USEDEP}]
sys-libs/binutils-libs:="
REQUIRED_USE="${ADA_REQUIRED_USE}"
S="${WORKDIR}"/${MYP}
PATCHES=(
"${FILESDIR}"/${PN}-2018-gentoo.patch
"${FILESDIR}"/${P}-bfd.patch
)
src_prepare() {
default
mv configure.in configure.ac
eautoreconf
}
src_compile() {
gprbuild -v -Pgnatmem.gpr -j$(makeopts_jobs) \
-cargs:C ${CFLAGS} -cargs:Ada ${ADAFLAGS} \
-largs ${LDFLAGS} \
|| die
}
src_install() {
dobin obj/gnatmem
}

View File

@@ -1,49 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
ADA_COMPAT=( gnat_2019 gnat_202{0..1} )
inherit ada multiprocessing autotools
MYP=${P}-20200429-19911-src
DESCRIPTION="Monitors dynamic allocation and deallocation activity in a program"
HOMEPAGE="http://libre.adacore.com/"
SRC_URI="https://community.download.adacore.com/v1/77354fedca0441f882e17b6a73ac5631bff26237?filename=${MYP}.tar.gz
-> ${MYP}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="${ADA_DEPS}"
DEPEND="${RDEPEND}
dev-ada/gprbuild[${ADA_USEDEP}]
sys-libs/binutils-libs:="
REQUIRED_USE="${ADA_REQUIRED_USE}"
S="${WORKDIR}"/${MYP}
PATCHES=(
"${FILESDIR}"/${PN}-2018-gentoo.patch
)
src_prepare() {
default
mv configure.in configure.ac
eautoreconf
}
src_compile() {
gprbuild -v -Pgnatmem.gpr -j$(makeopts_jobs) \
-cargs:C ${CFLAGS} -cargs:Ada ${ADAFLAGS} \
-largs ${LDFLAGS} \
|| die
}
src_install() {
dobin obj/gnatmem
}

View File

@@ -3,7 +3,7 @@
EAPI=7
ADA_COMPAT=( gnat_2019 gnat_202{0..1} )
ADA_COMPAT=( gnat_202{0..1} )
inherit ada multiprocessing autotools
MYP=${P}-${PV}0518-19F7B-src