diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-12 11:50:53 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-12 11:50:53 -0500 |
| commit | 290aebdea65a02557706eaeda477fef0437b6a48 (patch) | |
| tree | f87a939169a508a2e943570501b64cc16b411cda /dev-debug/cgdb | |
| parent | 6783ddcd4b73d9ce586a71770caed352bec93b16 (diff) | |
| download | baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip | |
Adding metadata
Diffstat (limited to 'dev-debug/cgdb')
| -rw-r--r-- | dev-debug/cgdb/Manifest | 1 | ||||
| -rw-r--r-- | dev-debug/cgdb/cgdb-0.8.0.ebuild | 73 | ||||
| -rw-r--r-- | dev-debug/cgdb/cgdb-9999.ebuild | 69 | ||||
| -rw-r--r-- | dev-debug/cgdb/files/cgdb-0.8.0-ar.patch | 18 | ||||
| -rw-r--r-- | dev-debug/cgdb/files/cgdb-0.8.0-configure-c99.patch | 23 | ||||
| -rw-r--r-- | dev-debug/cgdb/files/cgdb-9999-ar.patch | 16 | ||||
| -rw-r--r-- | dev-debug/cgdb/metadata.xml | 5 |
7 files changed, 0 insertions, 205 deletions
diff --git a/dev-debug/cgdb/Manifest b/dev-debug/cgdb/Manifest deleted file mode 100644 index 772ad27a5505..000000000000 --- a/dev-debug/cgdb/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST cgdb-0.8.0.tar.gz 328281 BLAKE2B 60e577dd5f8363b91da33136a9ffd911581e9cea4cdc1d0fcd338e0a761a26921e6edf6298c619b8d0eb1486449843457b2c5370a395a8c49fed5382a60e63a2 SHA512 e2b653db472de2014402dae6d13953ab811526a47ad5d7a05e34cfba09f44d6fea6b19304b9205ff0e2ac9549ffa5818f4282d7c03293b6c0ca9d563f9ae89e1 diff --git a/dev-debug/cgdb/cgdb-0.8.0.ebuild b/dev-debug/cgdb/cgdb-0.8.0.ebuild deleted file mode 100644 index f7e94fa4e4d3..000000000000 --- a/dev-debug/cgdb/cgdb-0.8.0.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -if [[ ${PV} = *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/cgdb/cgdb.git" -else - SRC_URI="https://github.com/cgdb/cgdb/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 arm ppc ppc64 x86" -fi - -inherit autotools multilib-minimal - -DESCRIPTION="A curses front-end for GDB, the GNU debugger" -HOMEPAGE="https://cgdb.github.io/" - -LICENSE="GPL-2" -SLOT="0" -IUSE="test" -# Tests are broken, need additional research to figure out the cause -# Bug: https://bugs.gentoo.org/831899 -RESTRICT="test" - -DEPEND=" - sys-libs/ncurses:= - sys-libs/readline:= -" -BDEPEND=" - sys-devel/flex - test? ( - dev-util/dejagnu - app-misc/dtach - ) -" -RDEPEND=" - ${DEPEND} - dev-debug/gdb -" - -DOCS=( AUTHORS ChangeLog FAQ INSTALL NEWS README.md ) - -PATCHES=( - "${FILESDIR}"/${P}-ar.patch - "${FILESDIR}"/${PN}-0.8.0-configure-c99.patch -) - -src_prepare() { - default - AT_M4DIR="config" eautoreconf -} - -multilib_src_configure() { - unset LEX - ECONF_SOURCE="${S}" econf -} - -multilib_src_test() { - # Tests need an interactive shell, #654986 - - # real-time output of the log ;-) - touch "${T}/dtach-test.log" || die - tail -f "${T}/dtach-test.log" & - local tail_pid=${!} - - nonfatal dtach -N "${T}/dtach.sock" \ - bash -c 'emake check &> "${T}"/dtach-test.log; echo ${?} > "${T}"/dtach-test.out' - - kill "${tail_pid}" - [[ -f ${T}/dtach-test.out ]] || die "Unable to run tests" - [[ $(<"${T}"/dtach-test.out) == 0 ]] || die "Tests failed" -} diff --git a/dev-debug/cgdb/cgdb-9999.ebuild b/dev-debug/cgdb/cgdb-9999.ebuild deleted file mode 100644 index 0567e31f4ac4..000000000000 --- a/dev-debug/cgdb/cgdb-9999.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -if [[ ${PV} = *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/cgdb/cgdb.git" -else - SRC_URI="https://github.com/cgdb/cgdb/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" -fi - -inherit autotools multilib-minimal - -DESCRIPTION="A curses front-end for GDB, the GNU debugger" -HOMEPAGE="https://cgdb.github.io/" - -LICENSE="GPL-2" -SLOT="0" -IUSE="test" -# Tests are broken, need additional research to figure out the cause -# Bug: https://bugs.gentoo.org/831899 -RESTRICT="test" - -DEPEND=" - sys-libs/ncurses:0= - sys-libs/readline:0=" - -BDEPEND=" - test? ( - dev-util/dejagnu - app-misc/dtach - )" - -RDEPEND=" - ${DEPEND} - dev-debug/gdb" - -DOCS=( AUTHORS ChangeLog FAQ INSTALL NEWS README.md ) - -PATCHES=( - "${FILESDIR}"/${P}-ar.patch -) - -src_prepare() { - default - AT_M4DIR="config" eautoreconf -} - -multilib_src_test() { - # Tests need an interactive shell, #654986 - - # real-time output of the log ;-) - touch "${T}/dtach-test.log" || die - tail -f "${T}/dtach-test.log" & - local tail_pid=${!} - - nonfatal dtach -N "${T}/dtach.sock" \ - bash -c 'emake check &> "${T}"/dtach-test.log; echo ${?} > "${T}"/dtach-test.out' - - kill "${tail_pid}" - [[ -f ${T}/dtach-test.out ]] || die "Unable to run tests" - [[ $(<"${T}"/dtach-test.out) == 0 ]] || die "Tests failed" -} - -multilib_src_configure() { - ECONF_SOURCE="${S}" econf -} diff --git a/dev-debug/cgdb/files/cgdb-0.8.0-ar.patch b/dev-debug/cgdb/files/cgdb-0.8.0-ar.patch deleted file mode 100644 index 128c32ec238c..000000000000 --- a/dev-debug/cgdb/files/cgdb-0.8.0-ar.patch +++ /dev/null @@ -1,18 +0,0 @@ -Bug: https://bugs.gentoo.org/724256 -Patch taken from https://github.com/cgdb/cgdb/pull/142 ---- a/configure.ac -+++ b/configure.ac -@@ -13,6 +13,13 @@ AC_PROG_INSTALL - AC_PROG_RANLIB - AM_PROG_LEX - AC_PROG_YACC -+m4_ifndef([AC_PROG_AR],[dnl -+ AN_MAKEVAR([AR], [AC_PROG_AR]) -+ AN_PROGRAM([ar], [AC_PROG_AR]) -+ AC_DEFUN([AC_PROG_AR], -+ [AC_CHECK_TOOL(AR, ar, :)]) -+]) -+AC_PROG_AR - - dnl determine if we are running in linux, cygwin, solaris, or freebsd - AC_CANONICAL_HOST diff --git a/dev-debug/cgdb/files/cgdb-0.8.0-configure-c99.patch b/dev-debug/cgdb/files/cgdb-0.8.0-configure-c99.patch deleted file mode 100644 index bd021476bf53..000000000000 --- a/dev-debug/cgdb/files/cgdb-0.8.0-configure-c99.patch +++ /dev/null @@ -1,23 +0,0 @@ -https://bugs.gentoo.org/830222 -https://github.com/cgdb/cgdb/pull/338 - -From 039dba0ec3ae2c4b2636418652a5c63f9ff86049 Mon Sep 17 00:00:00 2001 -From: Florian Weimer <fweimer@redhat.com> -Date: Wed, 8 Mar 2023 11:29:06 +0100 -Subject: [PATCH] configure: Avoid implicit int in readline check - -Future compilers will not accept implicit ints by default, altering -the outcome of the check without this change. - -Signed-off-by: Florian Weimer <fweimer@redhat.com> ---- a/config/readline_check_version.m4 -+++ b/config/readline_check_version.m4 -@@ -86,7 +86,7 @@ AC_CACHE_VAL(ac_cv_rl_version, - #include <stdlib.h> - #include <readline/readline.h> - --main() -+int main(void) - { - FILE *fp; - fp = fopen("conftest.rlv", "w"); diff --git a/dev-debug/cgdb/files/cgdb-9999-ar.patch b/dev-debug/cgdb/files/cgdb-9999-ar.patch deleted file mode 100644 index ed5f200b3260..000000000000 --- a/dev-debug/cgdb/files/cgdb-9999-ar.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- a/configure.ac -+++ b/configure.ac -@@ -13,6 +13,13 @@ AC_PROG_INSTALL - AC_PROG_RANLIB - AM_PROG_LEX - AC_PROG_YACC -+m4_ifndef([AC_PROG_AR],[dnl -+ AN_MAKEVAR([AR], [AC_PROG_AR]) -+ AN_PROGRAM([ar], [AC_PROG_AR]) -+ AC_DEFUN([AC_PROG_AR], -+ [AC_CHECK_TOOL(AR, ar, :)]) -+]) -+AC_PROG_AR - - dnl determine if we are running in linux, cygwin, solaris, or freebsd - AC_CANONICAL_HOST diff --git a/dev-debug/cgdb/metadata.xml b/dev-debug/cgdb/metadata.xml deleted file mode 100644 index 5f33304011d5..000000000000 --- a/dev-debug/cgdb/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd"> -<pkgmetadata> - <origin>baldeagleos-repo</origin> -</pkgmetadata> |
