From a713b3b87f7ec7523eb2add71d51e02165a1d728 Mon Sep 17 00:00:00 2001 From: Michael Haubenwallner Date: Wed, 23 Oct 2019 09:25:44 +0200 Subject: sys-devel/parity: drop v1, was Interix only And parity-2 for Cygwin is around the corner. Bug: https://bugs.gentoo.org/695104 Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Michael Haubenwallner --- sys-devel/parity/Manifest | 3 -- .../parity/files/parity-1.2.6-debugging.patch | 17 ------ sys-devel/parity/parity-1.2.4.ebuild | 57 -------------------- sys-devel/parity/parity-1.2.5.ebuild | 57 -------------------- sys-devel/parity/parity-1.2.6.ebuild | 62 ---------------------- 5 files changed, 196 deletions(-) delete mode 100644 sys-devel/parity/Manifest delete mode 100644 sys-devel/parity/files/parity-1.2.6-debugging.patch delete mode 100644 sys-devel/parity/parity-1.2.4.ebuild delete mode 100644 sys-devel/parity/parity-1.2.5.ebuild delete mode 100644 sys-devel/parity/parity-1.2.6.ebuild (limited to 'sys-devel') diff --git a/sys-devel/parity/Manifest b/sys-devel/parity/Manifest deleted file mode 100644 index 785b5c83e57a..000000000000 --- a/sys-devel/parity/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST parity-1.2.4.tar.gz 456408 BLAKE2B 6d7bd4ad1f890d391779f2412bf8586fee16ef760ee02d07a802ded6783c76cec2bc51314a26fea18dadce62fea5d66c826194c974aa4de21924fd7704347ac2 SHA512 236476c8fbf29e84363062722cb5092d07c86798584d0a17ea0406b2416e044fd2952f81e31b5a49b3f117592a7fbf496379ad065320d44fee8d33ebb86ec590 -DIST parity-1.2.5.tar.gz 559411 BLAKE2B 62392ea202c408ed4d6bd91e865ced73ab014c46768e899a30006df5fe204fb1d08d18ed07589878118548e799b2ad2bf10b5353a4d8b998722677efaafbecf8 SHA512 daadf80582b7fa8914f7899e4055185885164210f9a970ff178c3846da83058e3bd70c1db10406e3bcaef05148e87226846cb39e30cbbd1e0821176a8f65c32b -DIST parity-1.2.6.tar.gz 559357 BLAKE2B 733721306e02e50d5fc65859b77d562c4fd5a7df6ab3ae3c5bbe3a8c4c12d27b87f1889a44cc4ab402cc81c9910ad89c2e54aef054e235dd3686841bbe8458a6 SHA512 fe043feef71db20cf759fd1b5eb8e855f5f78b278f48e9d4afdd2c06fc6c6ae861439cde3829728d3548e072cb065aea5d4048da7ad8bc49f5bc7fcebf7ad430 diff --git a/sys-devel/parity/files/parity-1.2.6-debugging.patch b/sys-devel/parity/files/parity-1.2.6-debugging.patch deleted file mode 100644 index 709f46ee9734..000000000000 --- a/sys-devel/parity/files/parity-1.2.6-debugging.patch +++ /dev/null @@ -1,17 +0,0 @@ ---- parity.runtime/diagnose.c.orig 2012-09-28 17:12:54 +0200 -+++ parity.runtime/diagnose.c 2012-09-28 17:11:14 +0200 -@@ -745,9 +745,11 @@ - CloseHandle(hCore); - } - -- // abort on fatal exceptions -- TerminateProcess(GetCurrentProcess(), 1); -- ExitProcess(1); -+ if (!IsDebuggerPresent()) { -+ // abort on fatal exceptions -+ TerminateProcess(GetCurrentProcess(), 1); -+ ExitProcess(1); -+ } - return EXCEPTION_CONTINUE_SEARCH; - } - diff --git a/sys-devel/parity/parity-1.2.4.ebuild b/sys-devel/parity/parity-1.2.4.ebuild deleted file mode 100644 index a52cea9e6344..000000000000 --- a/sys-devel/parity/parity-1.2.4.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -DESCRIPTION="An Interix to native Win32 Cross-Compiler Tool (requires Visual Studio)" -HOMEPAGE="http://www.sourceforge.net/projects/parity/" - -if [[ ${PV} == 9999 ]]; then - inherit subversion - ESVN_REPO_URI="https://svn.code.sf.net/p/parity/code/trunk" - ESVN_BOOTSTRAP="confix --bootstrap" - ESVN_PROJECT="${PN}" - KEYWORDS="" - - DEPEND="dev-util/confix" -else - SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - KEYWORDS="~x86-winnt" -fi - -LICENSE="LGPL-3" -SLOT="0" -IUSE="" - -pkg_setup() { - if [ -z "${MSSDK}" ]; then - einfo "NOTE: When using Visual Studio 2008, the Platform SDK is no longer" - einfo "installed alongside with the other components, but has it's own" - einfo "root directory, most likely something like this:" - einfo "" - einfo " C:\\Program Files\\Microsoft SDKs\\Windows\\v6.0A" - einfo "" - einfo "To make parity find it's paths correctly, please set MSSDK to the" - einfo "value correspoding to the above example for your system." - fi -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - - # create i586-pc-winnt*-g[++|cc|..] links.. - local exeext= - - [[ -f ${ED}/usr/bin/parity.gnu.gcc.exe ]] && exeext=.exe - - # create cross compiler syms - dosym /usr/bin/parity.gnu.gcc${exeext} /usr/bin/i586-pc-winnt$(uname -r)-gcc - dosym /usr/bin/parity.gnu.gcc${exeext} /usr/bin/i586-pc-winnt$(uname -r)-c++ - dosym /usr/bin/parity.gnu.gcc${exeext} /usr/bin/i586-pc-winnt$(uname -r)-g++ - dosym /usr/bin/parity.gnu.ld${exeext} /usr/bin/i586-pc-winnt$(uname -r)-ld - - # we don't need the header files installed by parity... private - # header files are supported with a patch from 2.1.0-r1 onwards, - # so they won't be there anymore, but -f does the job in any case. - rm -f "${ED}"/usr/include/*.h -} diff --git a/sys-devel/parity/parity-1.2.5.ebuild b/sys-devel/parity/parity-1.2.5.ebuild deleted file mode 100644 index a52cea9e6344..000000000000 --- a/sys-devel/parity/parity-1.2.5.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -DESCRIPTION="An Interix to native Win32 Cross-Compiler Tool (requires Visual Studio)" -HOMEPAGE="http://www.sourceforge.net/projects/parity/" - -if [[ ${PV} == 9999 ]]; then - inherit subversion - ESVN_REPO_URI="https://svn.code.sf.net/p/parity/code/trunk" - ESVN_BOOTSTRAP="confix --bootstrap" - ESVN_PROJECT="${PN}" - KEYWORDS="" - - DEPEND="dev-util/confix" -else - SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - KEYWORDS="~x86-winnt" -fi - -LICENSE="LGPL-3" -SLOT="0" -IUSE="" - -pkg_setup() { - if [ -z "${MSSDK}" ]; then - einfo "NOTE: When using Visual Studio 2008, the Platform SDK is no longer" - einfo "installed alongside with the other components, but has it's own" - einfo "root directory, most likely something like this:" - einfo "" - einfo " C:\\Program Files\\Microsoft SDKs\\Windows\\v6.0A" - einfo "" - einfo "To make parity find it's paths correctly, please set MSSDK to the" - einfo "value correspoding to the above example for your system." - fi -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - - # create i586-pc-winnt*-g[++|cc|..] links.. - local exeext= - - [[ -f ${ED}/usr/bin/parity.gnu.gcc.exe ]] && exeext=.exe - - # create cross compiler syms - dosym /usr/bin/parity.gnu.gcc${exeext} /usr/bin/i586-pc-winnt$(uname -r)-gcc - dosym /usr/bin/parity.gnu.gcc${exeext} /usr/bin/i586-pc-winnt$(uname -r)-c++ - dosym /usr/bin/parity.gnu.gcc${exeext} /usr/bin/i586-pc-winnt$(uname -r)-g++ - dosym /usr/bin/parity.gnu.ld${exeext} /usr/bin/i586-pc-winnt$(uname -r)-ld - - # we don't need the header files installed by parity... private - # header files are supported with a patch from 2.1.0-r1 onwards, - # so they won't be there anymore, but -f does the job in any case. - rm -f "${ED}"/usr/include/*.h -} diff --git a/sys-devel/parity/parity-1.2.6.ebuild b/sys-devel/parity/parity-1.2.6.ebuild deleted file mode 100644 index f91ef988e4dc..000000000000 --- a/sys-devel/parity/parity-1.2.6.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils - -if [[ ${PV} == 9999 ]]; then - inherit subversion - ESVN_REPO_URI="https://svn.code.sf.net/p/parity/code/trunk" - ESVN_BOOTSTRAP="confix --bootstrap" - ESVN_PROJECT="${PN}" - : ${KEYWORDS=""} - - DEPEND="dev-util/confix" -else - SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - KEYWORDS="" -fi -DESCRIPTION="An Interix to native Win32 Cross-Compiler Tool (requires Visual Studio)" -HOMEPAGE="http://www.sourceforge.net/projects/parity/" - -LICENSE="LGPL-3" -SLOT="0" -IUSE="" - -pkg_setup() { - if [ -z "${MSSDK}" ]; then - einfo "NOTE: When using Visual Studio 2008, the Platform SDK is no longer" - einfo "installed alongside with the other components, but has it's own" - einfo "root directory, most likely something like this:" - einfo "" - einfo " C:\\Program Files\\Microsoft SDKs\\Windows\\v6.0A" - einfo "" - einfo "To make parity find it's paths correctly, please set MSSDK to the" - einfo "value correspoding to the above example for your system." - fi -} - -src_prepare() { - epatch "${FILESDIR}"/${P}-debugging.patch -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - - # create i586-pc-winnt*-g[++|cc|..] links.. - local exeext= - - [[ -f ${ED}/usr/bin/parity.gnu.gcc.exe ]] && exeext=.exe - - # create cross compiler syms - dosym /usr/bin/parity.gnu.gcc${exeext} /usr/bin/i586-pc-winnt$(uname -r)-gcc - dosym /usr/bin/parity.gnu.gcc${exeext} /usr/bin/i586-pc-winnt$(uname -r)-c++ - dosym /usr/bin/parity.gnu.gcc${exeext} /usr/bin/i586-pc-winnt$(uname -r)-g++ - dosym /usr/bin/parity.gnu.ld${exeext} /usr/bin/i586-pc-winnt$(uname -r)-ld - - # we don't need the header files installed by parity... private - # header files are supported with a patch from 2.1.0-r1 onwards, - # so they won't be there anymore, but -f does the job in any case. - rm -f "${ED}"/usr/include/*.h -} -- cgit v1.2.3-18-g5258