diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2021-11-26 20:09:37 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-11-27 12:07:52 +0100 |
commit | b1f984702877e6575ec9b63e01fbe448913c1d91 (patch) | |
tree | a7e4873c4e5573c66c515233b7a8c8045a41e48c /app-emulation/hercules | |
parent | dev-games/freecell-solver: 6.6.0 version bump (diff) | |
download | gentoo-b1f984702877e6575ec9b63e01fbe448913c1d91.tar.gz gentoo-b1f984702877e6575ec9b63e01fbe448913c1d91.tar.bz2 gentoo-b1f984702877e6575ec9b63e01fbe448913c1d91.zip |
app-emulation/hercules: Drop 3.10 and 3.12
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-emulation/hercules')
-rw-r--r-- | app-emulation/hercules/Manifest | 2 | ||||
-rw-r--r-- | app-emulation/hercules/files/hercules-3.09-aliasing.patch | 41 | ||||
-rw-r--r-- | app-emulation/hercules/hercules-3.10.ebuild | 53 | ||||
-rw-r--r-- | app-emulation/hercules/hercules-3.12.ebuild | 53 |
4 files changed, 0 insertions, 149 deletions
diff --git a/app-emulation/hercules/Manifest b/app-emulation/hercules/Manifest index a21a461a5411..9d2aef8825b5 100644 --- a/app-emulation/hercules/Manifest +++ b/app-emulation/hercules/Manifest @@ -1,3 +1 @@ -DIST hercules-3.10.tar.gz 2608321 BLAKE2B df6dd9c93531ee3d68efbfad5b0152ef984e1804e211861e86ea5f7b271081abbd29664d4e97d0e887af10315549bdd7e890ec741baa7b69336f1f08be63c6cf SHA512 de8b3e2e90fdb745dea9c8ce4dbe506de2aba3bf08b3e937605798e6a8020576a949d6ea3496b7c42bd23d617fc96648d2d8ec05a66e8ed174ce46a3bc31c5d1 -DIST hercules-3.12.tar.gz 2569617 BLAKE2B e6b6dc2406bc198e25ddcbdc5dbf141e52cd15ddd690711fdd4ed69ca5baaddd582c437e28aa7793ac667c03f7617adb3bdf3a00cc7c3a28e3f28984f665eb9a SHA512 81d6e151c1c8534753f2db532a0a7bd36fb3806c1ffbab5d6e4a9af3eecea46b95105c37574910714dcfc0fe9b74a72140d573099c24fd44021159ce697414ef DIST hercules-3.13.tar.gz 2640742 BLAKE2B 1a84ceab346a591c494fb133d1654ffa73e44f73183564167a74f68eb3e5f3f187cc2f66cef444b951645fa85c111da261b9dd8907594ccb770f5b743f891649 SHA512 76f75ef3f1eb10c0fac0d6fa1ab9809b8d1dfe3deccbcd69366b05ee58f1ecb8ea0f387f7201ab4722b121478676f00e707ad27b6ecf1980fb09e900de63d718 diff --git a/app-emulation/hercules/files/hercules-3.09-aliasing.patch b/app-emulation/hercules/files/hercules-3.09-aliasing.patch deleted file mode 100644 index 3d03e9b6dc1b..000000000000 --- a/app-emulation/hercules/files/hercules-3.09-aliasing.patch +++ /dev/null @@ -1,41 +0,0 @@ -From 7d3255a18ad845953cc8083371e8623e771ad4f5 Mon Sep 17 00:00:00 2001 -From: Mike Frysinger <vapier@gentoo.org> -Date: Tue, 27 Aug 2013 12:25:49 -0400 -Subject: [PATCH] sha: fix strict aliasing warnings - -sha256.c:492:3: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] -sha256.c:784:2: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] -sha256.c:785:2: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] - -Signed-off-by: Mike Frysinger <vapier@gentoo.org> ---- - crypto/sha256.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -diff --git a/crypto/sha256.c b/crypto/sha256.c -index 1a6a243..b1e90b4 100644 ---- a/crypto/sha256.c -+++ b/crypto/sha256.c -@@ -489,7 +489,7 @@ SHA256_Final(u_int8_t digest[], SHA256_CTX *context) - *context->buffer = 0x80; - } - /* Set the bit count: */ -- *(u_int64_t *)&context->buffer[SHA256_SHORT_BLOCK_LENGTH] = context->bitcount; -+ memcpy (&context->buffer[SHA256_SHORT_BLOCK_LENGTH], &context->bitcount, 8); - - /* Final transform: */ - SHA256_Transform(context, context->buffer); -@@ -781,8 +781,8 @@ SHA512_Last(SHA512_CTX *context) - *context->buffer = 0x80; - } - /* Store the length of input data (in bits): */ -- *(u_int64_t *)&context->buffer[SHA512_SHORT_BLOCK_LENGTH] = context->bitcount[1]; -- *(u_int64_t *)&context->buffer[SHA512_SHORT_BLOCK_LENGTH+8] = context->bitcount[0]; -+ memcpy (&context->buffer[SHA512_SHORT_BLOCK_LENGTH], &context->bitcount[1], 8); -+ memcpy (&context->buffer[SHA512_SHORT_BLOCK_LENGTH+8], &context->bitcount[0], 8); - - /* Final transform: */ - SHA512_Transform(context, context->buffer); --- -1.8.3.2 - diff --git a/app-emulation/hercules/hercules-3.10.ebuild b/app-emulation/hercules/hercules-3.10.ebuild deleted file mode 100644 index 2759a92bd42b..000000000000 --- a/app-emulation/hercules/hercules-3.10.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit flag-o-matic - -DESCRIPTION="Hercules System/370, ESA/390 and zArchitecture Mainframe Emulator" -HOMEPAGE="http://www.hercules-390.eu/" -SRC_URI="http://downloads.hercules-390.eu/${P}.tar.gz" - -LICENSE="QPL-1.0" -SLOT="0" -KEYWORDS="~alpha amd64 ppc sparc x86 ~x64-macos" -IUSE="bzip2 custom-cflags +suid" - -RDEPEND="bzip2? ( app-arch/bzip2 ) - net-libs/libnsl:0= - sys-libs/zlib" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}"/${PN}-3.09-aliasing.patch -) - -src_prepare() { - default - - # The local modules need local libs, so when doing a parallel install - # of the modules and libs breaks during relinking. Force the libs to - # install first, and then the modules that use those libs. #488126 - echo "install-modexecLTLIBRARIES: install-libLTLIBRARIES" >> Makefile.in || die -} - -src_configure() { - use custom-cflags || strip-flags - ac_cv_lib_bz2_BZ2_bzBuffToBuffDecompress=$(usex bzip2) \ - econf \ - $(use_enable bzip2 cckd-bzip2) \ - $(use_enable bzip2 het-bzip2) \ - $(use_enable suid setuid-hercifc) \ - --enable-custom="Gentoo ${PF}.ebuild" \ - --disable-optimization -} - -src_install() { - default - insinto /usr/share/hercules - doins hercules.cnf - dodoc README.* RELEASE.NOTES - docinto html - dodoc -r html -} diff --git a/app-emulation/hercules/hercules-3.12.ebuild b/app-emulation/hercules/hercules-3.12.ebuild deleted file mode 100644 index ea0d3fecd24e..000000000000 --- a/app-emulation/hercules/hercules-3.12.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit flag-o-matic - -DESCRIPTION="Hercules System/370, ESA/390 and zArchitecture Mainframe Emulator" -HOMEPAGE="http://www.hercules-390.eu/" -SRC_URI="http://downloads.hercules-390.eu/${P}.tar.gz" - -LICENSE="QPL-1.0" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~x64-macos" -IUSE="bzip2 custom-cflags +suid" - -RDEPEND="bzip2? ( app-arch/bzip2 ) - net-libs/libnsl:0= - sys-libs/zlib" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}"/${PN}-3.09-aliasing.patch -) - -src_prepare() { - default - - # The local modules need local libs, so when doing a parallel install - # of the modules and libs breaks during relinking. Force the libs to - # install first, and then the modules that use those libs. #488126 - echo "install-modexecLTLIBRARIES: install-libLTLIBRARIES" >> Makefile.in || die -} - -src_configure() { - use custom-cflags || strip-flags - ac_cv_lib_bz2_BZ2_bzBuffToBuffDecompress=$(usex bzip2) \ - econf \ - $(use_enable bzip2 cckd-bzip2) \ - $(use_enable bzip2 het-bzip2) \ - $(use_enable suid setuid-hercifc) \ - --enable-custom="Gentoo ${PF}.ebuild" \ - --disable-optimization -} - -src_install() { - default - insinto /usr/share/hercules - doins hercules.cnf - dodoc README.* RELEASE.NOTES - docinto html - dodoc -r html -} |