diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2021-03-27 06:06:27 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2021-03-27 06:06:27 +0000 |
commit | 8d5dbd847cbc704a6a06405856e94b461011afe3 (patch) | |
tree | 4d26462d027b14926335894749d2e01d982234d0 /sys-libs/suacomp | |
parent | 5bb9ff1ee56d2b5e75e01a7f066d8b0cec84ec02 (diff) |
gentoo resync : 27.03.2021
Diffstat (limited to 'sys-libs/suacomp')
-rw-r--r-- | sys-libs/suacomp/Manifest | 5 | ||||
-rw-r--r-- | sys-libs/suacomp/files/suacomp-0.6.14-strtoll.patch | 44 | ||||
-rw-r--r-- | sys-libs/suacomp/metadata.xml | 16 | ||||
-rw-r--r-- | sys-libs/suacomp/suacomp-0.6.14.ebuild | 66 | ||||
-rw-r--r-- | sys-libs/suacomp/suacomp-9999.ebuild | 60 |
5 files changed, 0 insertions, 191 deletions
diff --git a/sys-libs/suacomp/Manifest b/sys-libs/suacomp/Manifest deleted file mode 100644 index 5cd36a48cabd..000000000000 --- a/sys-libs/suacomp/Manifest +++ /dev/null @@ -1,5 +0,0 @@ -AUX suacomp-0.6.14-strtoll.patch 1456 BLAKE2B 745f4f8277498244d04aa979e1ec4d415854e4f9be3e66c856ad80884e48dc94ec9526ad8b72840cfaf1db46a60bca8704d35c30619832f4f34942f19396803f SHA512 603c49683d7cce6f6edc0b12a1aefddfffd0e9d3c57b34ae176fa94139d3b427bee5993f7d2cd35a575113a8c42becce8b49c4c334dc8cc8fe4902b49bf9cda3 -DIST suacomp-0.6.14.tar.gz 36712 BLAKE2B 09df68729de50753e987a958a7184125308b652dcd4483acfa89bdf454a74341398ef4e5db616b1b2d8e51025040e7e3807df9221402b17e63fb3fd862272f68 SHA512 6e559059c18c1412611d837bf2f5fad08deaf9145464347f712fdb0cd4e0dfae1b7b46253ef086bd4c98cc1555111872b6b5af5272b77a88c767e9008143b7f1 -EBUILD suacomp-0.6.14.ebuild 1273 BLAKE2B 579888178129a52e45a84baf215395c905da3b7073e15a1de938835b8537c3357cf28658c61e7cc2ac220823bc41d0ee06eda3203568b9f9998fa1bd1f786886 SHA512 64071d9dbd1cdea7afbde0bb79459bad3a11707d213774d667844e1435dca28e7d6329ddfa6acab78c7f9b9741e540f02dd21ecc78f6fc91e77aa8ef2de9f129 -EBUILD suacomp-9999.ebuild 1167 BLAKE2B 9af7ab58e3d0862dd74cad9d7977d9dc4f70d7cdda7f59b149dd9638b5c806970eeacb8e06f456ffb7a586c84e149100f193806c34d1668988cf6d297659e10d SHA512 b6eb9a765b6c0d69b3962c8eb2aef2b6eab0d822d83f7a5f5b10a1e578c6a9ad8587742c36ba117319d5ebe9ec4d9f613f118dd149f811b5965b11c8d976a1be -MISC metadata.xml 548 BLAKE2B 78c65be8454a70ede5311102ca21ef76c697c7222fb053536d9cf165f252ba0891e810675e8e12930640a52038679904ff11f4ad0c8a992405f3a0be2a0433af SHA512 a7a233b0f745af85c510fa021dded0cf5d6c57845c1517451d6e939c2784453fda9413c450cb9e8160ac2cdfbb7a898f45733f6505b19102bcfe7c1d28b81b99 diff --git a/sys-libs/suacomp/files/suacomp-0.6.14-strtoll.patch b/sys-libs/suacomp/files/suacomp-0.6.14-strtoll.patch deleted file mode 100644 index 16ee7f4e5c41..000000000000 --- a/sys-libs/suacomp/files/suacomp-0.6.14-strtoll.patch +++ /dev/null @@ -1,44 +0,0 @@ -From a498772e5fe942eafe06ed62a00a21c4b99164b5 Mon Sep 17 00:00:00 2001 -From: David Holm <dholmster@gmail.com> -Date: Fri, 14 Sep 2012 20:57:30 +0200 -Subject: [PATCH] Fixes build issues on SUA 6.0 - -The prototypes for strto[u]ll.c in SUA 6.0 use C99 and are defined using (u_)quad_t. This will cause compilation to fail since there is a mismatch between stdlib.h and the implementation in suacomp. This change switches to the C99 definition and undefines strto[u]ll in case stdlib.h wants to map them to existing implementations. - -https://sourceforge.net/p/suacomp/tickets/1/ ---- - strtoll.c | 3 ++- - strtoull.c | 3 ++- - 2 files changed, 4 insertions(+), 2 deletions(-) - -diff --git a/strtoll.c b/strtoll.c -index 12f9886..c9e34b8 100644 ---- a/strtoll.c -+++ b/strtoll.c -@@ -9,7 +9,8 @@ - #include <unistd.h> - #include <stdlib.h> - --long long int strtoll(const char* nptr, char** endptr, int base) { -+#undef strtoll -+quad_t strtoll(const char* nptr, char** endptr, int base) { - long long int ret; - DT("enter: %p, %p, %d\n", nptr, endptr, base); - -diff --git a/strtoull.c b/strtoull.c -index d0e0e67..622ee9b 100644 ---- a/strtoull.c -+++ b/strtoull.c -@@ -9,7 +9,8 @@ - #include <unistd.h> - #include <stdlib.h> - --long long int strtoull(const char* nptr, char** endptr, int base) { -+#undef strtoull -+u_quad_t strtoull(const char* nptr, char** endptr, int base) { - long long int ret; - DT("enter: %p, %p, %d\n", nptr, endptr, base); - --- -1.7.6.1 - diff --git a/sys-libs/suacomp/metadata.xml b/sys-libs/suacomp/metadata.xml deleted file mode 100644 index 0d95d5d4e805..000000000000 --- a/sys-libs/suacomp/metadata.xml +++ /dev/null @@ -1,16 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>haubi@gentoo.org</email> - <name>Michael Haubenwallner</name> - </maintainer> - <longdescription lang="en"> - A small library, trying to overcome the problems occuring when building - (and using) gentoo-prefix on an interix based system. This has no use - on non-interix systems. - </longdescription> - <upstream> - <remote-id type="sourceforge">suacomp</remote-id> - </upstream> -</pkgmetadata> diff --git a/sys-libs/suacomp/suacomp-0.6.14.ebuild b/sys-libs/suacomp/suacomp-0.6.14.ebuild deleted file mode 100644 index be3e9886e4e5..000000000000 --- a/sys-libs/suacomp/suacomp-0.6.14.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit flag-o-matic toolchain-funcs - -DESCRIPTION="library wrapping the interix lib-c to make it less buggy" -HOMEPAGE="http://suacomp.sf.net" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="BEER-WARE" -SLOT="0" -KEYWORDS="" -IUSE="debug" - -DEPEND="" -RDEPEND="" - -get_opts() { - local shlibc= - local stlibc= - - local dir - for dir in /usr/lib /usr/lib/x86; do - [[ -f ${dir}/libc.a ]] && stlibc=${dir}/libc.a - - local name - for name in libc.so.5.2 libc.so.3.5; do - [[ -f ${dir}/${name} ]] && { shlibc=${dir}/${name}; break; } - done - - [[ -f ${shlibc} && -f ${stlibc} ]] && break - done - - echo "SHARED_LIBC=${shlibc} STATIC_LIBC=${stlibc}" -} - -src_prepare() { - [[ ${CHOST} == *-interix6* ]] && eapply "${FILESDIR}"/${P}-strtoll.patch - eapply_user -} - -src_configure() { - if use debug; then - append-flags -D_DEBUG -D_DEBUG_TRACE - fi -} - -src_compile() { - emake all CC=$(tc-getCC) $(get_opts) CFLAGS="${CFLAGS}" -} - -src_test() { - local v= - - use debug && v="TEST_VERBOSE=1" - use debug && export SUACOMP_DEBUG_OUT=stderr - - emake check $(get_opts) ${v} -} - -src_install() { - emake install PREFIX="${EPREFIX}/usr" DESTDIR="${D}" $(get_opts) \ - CFLAGS="${CFLAGS}" -} diff --git a/sys-libs/suacomp/suacomp-9999.ebuild b/sys-libs/suacomp/suacomp-9999.ebuild deleted file mode 100644 index b356312ab407..000000000000 --- a/sys-libs/suacomp/suacomp-9999.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit flag-o-matic toolchain-funcs git-r3 - -DESCRIPTION="library wrapping the interix lib-c to make it less buggy" -HOMEPAGE="http://suacomp.sf.net" -EGIT_REPO_URI="https://git.code.sf.net/p/suacomp/git" - -LICENSE="BEER-WARE" -SLOT="0" -IUSE="debug" - -DEPEND="" -RDEPEND="" - -get_opts() { - local shlibc= - local stlibc= - - local dir - for dir in /usr/lib /usr/lib/x86; do - [[ -f ${dir}/libc.a ]] && stlibc=${dir}/libc.a - - local name - for name in libc.so.5.2 libc.so.3.5; do - [[ -f ${dir}/${name} ]] && { shlibc=${dir}/${name}; break; } - done - - [[ -f ${shlibc} && -f ${stlibc} ]] && break - done - - echo "SHARED_LIBC=${shlibc} STATIC_LIBC=${stlibc}" -} - -src_configure() { - if use debug; then - append-flags -D_DEBUG -D_DEBUG_TRACE - fi -} - -src_compile() { - emake all CC=$(tc-getCC) $(get_opts) CFLAGS="${CFLAGS}" -} - -src_test() { - local v= - - use debug && v="TEST_VERBOSE=1" - use debug && export SUACOMP_DEBUG_OUT=stderr - - emake check $(get_opts) ${v} -} - -src_install() { - emake install PREFIX="${EPREFIX}/usr" DESTDIR="${D}" $(get_opts) \ - CFLAGS="${CFLAGS}" -} |