diff options
author | V3n3RiX <venerix@koprulu.sector> | 2023-01-21 11:40:40 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2023-01-21 11:40:40 +0000 |
commit | bae478b64a6bc9eca66b65bcfa318fc21e7f34bb (patch) | |
tree | f713006fd9c119e5dbb3bdafe7d695d2644da94c /x11-libs/libast | |
parent | 374561aeaff53ce5a2836af934749923b4ea3763 (diff) |
gentoo auto-resync : 21:01:2023 - 11:40:40
Diffstat (limited to 'x11-libs/libast')
-rw-r--r-- | x11-libs/libast/Manifest | 4 | ||||
-rw-r--r-- | x11-libs/libast/files/libast-0.8-configure-clang16.patch | 65 | ||||
-rw-r--r-- | x11-libs/libast/libast-0.8-r1.ebuild | 53 | ||||
-rw-r--r-- | x11-libs/libast/metadata.xml | 18 |
4 files changed, 0 insertions, 140 deletions
diff --git a/x11-libs/libast/Manifest b/x11-libs/libast/Manifest deleted file mode 100644 index 99057d184817..000000000000 --- a/x11-libs/libast/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -AUX libast-0.8-configure-clang16.patch 1956 BLAKE2B cd1e42815f636409e55c30e9da5ae9daf3b3b6411d7ed77eef41c90d3c621914393622102d6b7bccdda7d9e8348f38991c077cb94cba2f8b28611b45c3f94427 SHA512 c83bcea1d891cc46a090e3fa809a64c02ca14cf6606f40a1dfd7143629bd6a3d53e5f3bea36e9cc0569244d0bfe34e9122753aa6ad0349f9a42e3b48b270a52d -DIST libast-0.8.tar.gz 254188 BLAKE2B 02fc2872218f11cb4083d451377fdc46369c2ef7d1f0e547831dfdf4ecec2cd6aaf3453e9e8ef8431fbd5e3cd75e828e3c5967a6311853e7e87f583ef2be72c8 SHA512 266a479fdbfc479e233675fa7623488135c633fed9cb236ec0cee578fc5be83b88a2dbda8a304ee3a27384c96e93a4bdf40f60597660e09841380e0930dd93d9 -EBUILD libast-0.8-r1.ebuild 1012 BLAKE2B 62a8e52ea044e63dbc441fe86cca96698167a841863bc35747cb6c3e533ada42df283e62f58b535aaa6087406751a014c153449eed21ee700e08f92a9cbb4f4d SHA512 7aa51817da23d24013b7f2f456783987e5ce96e4e6195e150943215fa62d4f849a78f02e0a247dc31e8b826cb79d39547b70c2d7d3d980e4a3bf137211132fe6 -MISC metadata.xml 823 BLAKE2B 2b89b024a4867ac7dacd136f1aa57523f7d74947c8d93ce92231c9b0f58e73f2dbdc67bc82c40a9dacdab4722f37bdf002f766ff194f94b8c2245cee1cdf61f4 SHA512 ce3a1ed303a48743b3f419415a7ed1b0947865127ca75fc23f3e2155c21d7d9e63a7df782f69655d144c86631bcb26af910d5cba079ae6d0a71135061940dee6 diff --git a/x11-libs/libast/files/libast-0.8-configure-clang16.patch b/x11-libs/libast/files/libast-0.8-configure-clang16.patch deleted file mode 100644 index 3d339a2aeb34..000000000000 --- a/x11-libs/libast/files/libast-0.8-configure-clang16.patch +++ /dev/null @@ -1,65 +0,0 @@ -https://github.com/mej/libast/pull/5 -https://bugs.gentoo.org/871705 - -From 6c50760566499ef34cfd34ee38945e2612f4f7bf Mon Sep 17 00:00:00 2001 -From: Ryan Schmidt <git@ryandesign.com> -Date: Mon, 7 Dec 2020 01:34:46 -0600 -Subject: [PATCH] Fix implicit declaration of library function exit - ---- a/libast.m4 -+++ b/libast.m4 -@@ -505,10 +505,10 @@ char ovbuf[7]; - int i; - for (i=0; i<7; i++) ovbuf[i]='x'; - snprintf(ovbuf, 4,"foo%s", "bar"); --if (ovbuf[5]!='x') exit(1); -+if (ovbuf[5]!='x') return 1; - snprintf(ovbuf, 4,"foo%d", 666); --if (ovbuf[5]!='x') exit(1); --exit(0); -+if (ovbuf[5]!='x') return 1; -+return 0; - } >> - changequote([, ]) - , dps_cv_snprintf_bug=0, dps_cv_snprintf_bug=1, dps_cv_snprintf_bug=2) -@@ -550,10 +550,10 @@ int main(void) - char ovbuf[8] = "xxxxxxx"; - int i; - prnt(ovbuf, "foo%s", "bar"); -- if (ovbuf[5]!='x') {fprintf(stderr, "buffer: %s\n", ovbuf); exit(1);} -+ if (ovbuf[5]!='x') {fprintf(stderr, "buffer: %s\n", ovbuf); return 1;} - prnt(ovbuf, "foo%d", 666); -- if (ovbuf[5]!='x') {fprintf(stderr, "buffer: %s\n", ovbuf); exit(1);} -- exit(0); -+ if (ovbuf[5]!='x') {fprintf(stderr, "buffer: %s\n", ovbuf); return 1;} -+ return 0; - } >> - changequote([, ]) - , dps_cv_vsnprintf_bug=0, dps_cv_vsnprintf_bug=1, dps_cv_vsnprintf_bug=2) -@@ -651,10 +651,10 @@ AC_DEFUN([dps_rlimit_nproc], [ - AC_TRY_RUN( - changequote(<<, >>)dnl - << --#ifndef HAVE_STDLIB_H -+#ifdef HAVE_STDLIB_H - #include <stdlib.h> - #endif /* HAVE_STDLIB_H */ --#ifndef HAVE_SIGNAL_H -+#ifdef HAVE_SIGNAL_H - #include <signal.h> - #endif /* HAVE_SIGNAL_H */ - #ifdef HAVE_UNISTD_H -@@ -699,10 +699,10 @@ AC_DEFUN([dps_rlimit_memlock], [ - AC_TRY_RUN( - changequote(<<, >>)dnl - << --#ifndef HAVE_STDLIB_H -+#ifdef HAVE_STDLIB_H - #include <stdlib.h> - #endif /* HAVE_STDLIB_H */ --#ifndef HAVE_SIGNAL_H -+#ifdef HAVE_SIGNAL_H - #include <signal.h> - #endif /* HAVE_SIGNAL_H */ - #ifdef HAVE_UNISTD_H - diff --git a/x11-libs/libast/libast-0.8-r1.ebuild b/x11-libs/libast/libast-0.8-r1.ebuild deleted file mode 100644 index fb627811026b..000000000000 --- a/x11-libs/libast/libast-0.8-r1.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools - -DESCRIPTION="LIBrary of Assorted Spiffy Things" -HOMEPAGE="http://www.eterm.org/download/" -SRC_URI="https://github.com/mej/libast/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="imlib cpu_flags_x86_mmx pcre" - -RDEPEND=" - !sci-astronomy/ast - media-libs/freetype - x11-base/xorg-proto - x11-libs/libXt - x11-libs/libICE - x11-libs/libSM - x11-libs/libX11 - imlib? ( media-libs/imlib2 ) - pcre? ( dev-libs/libpcre ) -" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}"/${PN}-0.8-configure-clang16.patch -) - -src_prepare() { - default - - eautoreconf -} - -src_configure() { - econf \ - $(use_with imlib) \ - $(use_enable cpu_flags_x86_mmx mmx) \ - --with-regexp=$(usex pcre pcre posix) -} - -src_install() { - default - - dodoc DESIGN - - find "${ED}" -name '*.la' -delete || die -} diff --git a/x11-libs/libast/metadata.xml b/x11-libs/libast/metadata.xml deleted file mode 100644 index 542463f59189..000000000000 --- a/x11-libs/libast/metadata.xml +++ /dev/null @@ -1,18 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> - <longdescription> - LibAST is the Library of Assorted Spiffy Things. It contains many - spiffy things, and it is a library. Thus, the ever-so-creative name. - LibAST has been previously known as libmej, the Eterm helper library - which nobody really understood and certainly never used. My current - plan is to gradually remove some of the neat stuff from Eterm that - could be made generic (things like the theme parsing engine, the - command-line options parser, perhaps the event engine, ...) and place - it here in the hopes that others will find them useful. - </longdescription> - <upstream> - <remote-id type="github">mej/libast</remote-id> - </upstream> -</pkgmetadata> |