public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cgdb/
Date: Mon, 12 Oct 2020 09:06:13 +0000 (UTC)	[thread overview]
Message-ID: <1602493558.852bdf7ab4eabf97a35dde461942623d7d2b226f.juippis@gentoo> (raw)

commit:     852bdf7ab4eabf97a35dde461942623d7d2b226f
Author:     Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Wed Oct  7 07:26:40 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Oct 12 09:05:58 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=852bdf7a

dev-util/cgdb: drop old

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Closes: https://github.com/gentoo/gentoo/pull/17856
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-util/cgdb/Manifest             |  1 -
 dev-util/cgdb/cgdb-0.7.0-r2.ebuild | 72 --------------------------------------
 2 files changed, 73 deletions(-)

diff --git a/dev-util/cgdb/Manifest b/dev-util/cgdb/Manifest
index 3d1b9838c3f..2c1a19f7bea 100644
--- a/dev-util/cgdb/Manifest
+++ b/dev-util/cgdb/Manifest
@@ -1,2 +1 @@
-DIST cgdb-0.7.0.tar.gz 319980 BLAKE2B bfc62f9214f6726e5df081119e85ccdeaea9a2310a9bb7a1746525ab998ea94ec1181efd3a1986ec0d33103c2f2b888e4d93c4ddaa4a996db4e47b0173c3b67c SHA512 83aeb919e96cd0981d8fe5cdd257df3e8d8bfbceea720ea66c1773b28c9f0ecb0e303e0585206c55242bc4438d505e328d43b4991c6ddc4e4202e048558c30d9
 DIST cgdb-0.7.1.tar.gz 314768 BLAKE2B 767a57d071fa4e3c75d231a1ec879d871669fcda9c733d157d380fa525dd321f1deb68d7ef7f424b3f36a115043a0a0faae271f24746f934e288ba7d9a4e7fa1 SHA512 050c7bad963d51c1a2cb309530319ca77e9d236f419fb0abac4ab5030ff1068d799fa626959a8b3036321711de98bddf40d264bf9367ff5697075e30ca8168c6

diff --git a/dev-util/cgdb/cgdb-0.7.0-r2.ebuild b/dev-util/cgdb/cgdb-0.7.0-r2.ebuild
deleted file mode 100644
index 8ff75bb5efd..00000000000
--- a/dev-util/cgdb/cgdb-0.7.0-r2.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-if [[ ${PV} = *9999* ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="
-		https://github.com/cgdb/cgdb.git
-		git@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 ~amd64-linux ~x86-linux"
-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"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-	sys-libs/ncurses:0=
-	sys-libs/readline:0="
-
-BDEPEND="
-	test? (
-		dev-util/dejagnu
-		app-misc/dtach
-	)"
-
-RDEPEND="
-	${DEPEND}
-	sys-devel/gdb"
-
-DOCS=( AUTHORS ChangeLog FAQ INSTALL NEWS README.md )
-
-PATCHES=(
-	# Bugs: #730138, #678006, #630512, #682386
-	"${FILESDIR}/${PN}-test.patch"
-	# Bug: #724256
-	"${FILESDIR}/${PN}-0.7.1-respect-AR.patch"
-)
-
-src_prepare() {
-	default
-	cp configure.{init,ac} || die "cp failed"
-	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
-}


             reply	other threads:[~2020-10-12  9:06 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-12  9:06 Joonas Niilola [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-03-17 17:00 [gentoo-commits] repo/gentoo:master commit in: dev-util/cgdb/ Sam James
2023-03-17 17:00 Sam James
2023-03-17 16:36 Arthur Zamarin
2023-03-17 16:15 Arthur Zamarin
2023-03-17 16:13 Arthur Zamarin
2022-01-24 22:30 Jakov Smolić
2020-10-07  6:53 Agostino Sarubbo
2020-10-07  6:50 Agostino Sarubbo
2020-10-06 21:08 Sam James
2020-10-02 13:57 Joonas Niilola
2020-09-18  8:26 Agostino Sarubbo
2020-09-18  7:54 Agostino Sarubbo
2020-09-18  7:45 Agostino Sarubbo
2020-09-18  7:29 Agostino Sarubbo
2020-09-17  6:06 Sam James
2020-09-16  1:52 Sam James
2020-09-05  9:21 Joonas Niilola
2020-09-05  7:54 Joonas Niilola
2020-09-05  7:54 Joonas Niilola
2020-09-05  7:54 Joonas Niilola
2020-08-14 21:27 Jonas Stein
2019-04-03  6:50 Michał Górny
2019-04-03  6:50 Michał Górny
2017-08-11  3:54 Patrice Clement
2017-05-25 18:27 Patrice Clement
2017-01-03 10:38 Agostino Sarubbo
2016-12-07  0:27 Göktürk Yüksek
2016-12-07  0:27 Göktürk Yüksek
2016-12-06 18:21 Göktürk Yüksek
2016-12-06 18:19 Göktürk Yüksek
2016-12-06 15:17 Göktürk Yüksek
2016-12-06 15:06 Göktürk Yüksek
2016-12-06  6:12 Göktürk Yüksek
2016-12-06  6:12 Göktürk Yüksek
2016-12-06  6:12 Göktürk Yüksek
2016-06-04 19:51 Patrice Clement

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1602493558.852bdf7ab4eabf97a35dde461942623d7d2b226f.juippis@gentoo \
    --to=juippis@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox