From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6C4F315817D for ; Sun, 9 Jun 2024 03:39:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A719CE2B1C; Sun, 9 Jun 2024 03:39:56 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7DC69E2B1C for ; Sun, 9 Jun 2024 03:39:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 90CB433E3A9 for ; Sun, 9 Jun 2024 03:39:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2DEDA1C83 for ; Sun, 9 Jun 2024 03:39:54 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1717904385.a06dfc8791fabd5050a6fc8d0c0a3ef023cad8cd.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/bar/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/bar/bar-1.11.1.ebuild X-VCS-Directories: sys-apps/bar/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: a06dfc8791fabd5050a6fc8d0c0a3ef023cad8cd X-VCS-Branch: master Date: Sun, 9 Jun 2024 03:39:54 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a8969ac2-c619-4e78-8075-104a2aef3937 X-Archives-Hash: fcd191ddccfb7b683e07699a4b2c24d1 commit: a06dfc8791fabd5050a6fc8d0c0a3ef023cad8cd Author: Arthur Zamarin gentoo org> AuthorDate: Sun Jun 9 03:39:15 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sun Jun 9 03:39:45 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a06dfc87 sys-apps/bar: drop 1.11.1 Signed-off-by: Arthur Zamarin gentoo.org> sys-apps/bar/bar-1.11.1.ebuild | 47 ------------------------------------------ 1 file changed, 47 deletions(-) diff --git a/sys-apps/bar/bar-1.11.1.ebuild b/sys-apps/bar/bar-1.11.1.ebuild deleted file mode 100644 index 1ed308f56c70..000000000000 --- a/sys-apps/bar/bar-1.11.1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools - -DESCRIPTION="Console Progress Bar" -HOMEPAGE="http://clpbar.sourceforge.net/" -SRC_URI="https://downloads.sourceforge.net/clpbar/${PN}_${PV}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm x86" -IUSE="doc" - -DEPEND="doc? ( >=app-text/doxygen-1.3.5 )" -RDEPEND="" - -src_prepare() { - default - sed '/cd $(WEB_DIR) && $(MAKE)/d' -i Makefile.am || die - eautomake -} - -src_configure() { - # Fix bug 113392 - econf $(use_enable !sparc use-memalign) -} - -src_compile() { - emake CFLAGS="${CFLAGS}" - - if use doc; then - mkdir -p ../www/doxygen/${PV} || die - emake update-www - HTML_DOCS=( ../www/doxygen/${PV}/html/. ) - - # remove doxygen working files - find ../www/doxygen/${PV}/html \( -iname '*.map' -o -iname '*.md5' \) -delete || die - fi -} - -src_install() { - default - dodoc TROUBLESHOOTING debian/changelog -}