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 C618315808B for ; Sat, 2 Apr 2022 07:39:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E6973E07C5; Sat, 2 Apr 2022 07:39:34 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 2FFE8E07D0 for ; Sat, 2 Apr 2022 07:39:34 +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 1950934130E for ; Sat, 2 Apr 2022 07:39:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AD0A335F for ; Sat, 2 Apr 2022 07:39:30 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1648884221.1079959d5d62b44d633aea5eed310c963ae777e9.ulm@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-darcs/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/cl-darcs/cl-darcs-0.2_p20080314-r1.ebuild X-VCS-Directories: dev-lisp/cl-darcs/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 1079959d5d62b44d633aea5eed310c963ae777e9 X-VCS-Branch: master Date: Sat, 2 Apr 2022 07:39:30 +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: a14faaaf-71e4-4139-a575-667308352420 X-Archives-Hash: 08d0f07aed1aa20d1bc7da5241275aa2 commit: 1079959d5d62b44d633aea5eed310c963ae777e9 Author: Ulrich Müller gentoo org> AuthorDate: Sat Apr 2 07:23:41 2022 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Apr 2 07:23:41 2022 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=1079959d dev-lisp/cl-darcs: Remove package SRC_URI is gone. Signed-off-by: Ulrich Müller gentoo.org> dev-lisp/cl-darcs/cl-darcs-0.2_p20080314-r1.ebuild | 45 ---------------------- 1 file changed, 45 deletions(-) diff --git a/dev-lisp/cl-darcs/cl-darcs-0.2_p20080314-r1.ebuild b/dev-lisp/cl-darcs/cl-darcs-0.2_p20080314-r1.ebuild deleted file mode 100644 index 321f4322..00000000 --- a/dev-lisp/cl-darcs/cl-darcs-0.2_p20080314-r1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit common-lisp-3 - -DESCRIPTION="A client for the darcs version control system written in Common Lisp." -HOMEPAGE="http://common-lisp.net/project/cl-darcs - http://www.cliki.net/CL-DARCS" -SRC_URI="http://common-lisp.net/~sionescu/files/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86" -IUSE="doc" - -DEPEND="sys-apps/texinfo - doc? ( virtual/texi2dvi )" -RDEPEND="dev-lisp/split-sequence - dev-lisp/drakma - dev-lisp/puri - dev-lisp/trivial-gray-streams - dev-lisp/ironclad - dev-lisp/flexi-streams - dev-lisp/cl-fad - dev-lisp/cl-ppcre - dev-lisp/cl-difflib" - -src_compile() { - cd doc || die - makeinfo ${PN}.texi -o ${PN}.info || die "Cannot build info docs" - if use doc ; then - VARTEXFONTS="${T}"/fonts \ - texi2pdf ${PN}.texi -o ${PN}.pdf || die "Cannot build PDF docs" - fi -} - -src_install() { - common-lisp-install-sources *.lisp - common-lisp-install-asdf - dodoc README - dodoc doc/${PN}.info - use doc && dodoc doc/${PN}.pdf -}