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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3F68B1381F1 for ; Sun, 18 Mar 2018 20:59:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7204DE086F; Sun, 18 Mar 2018 20:59:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 48CAAE086F for ; Sun, 18 Mar 2018 20:59:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 511F6335D22 for ; Sun, 18 Mar 2018 20:59:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D67C0232 for ; Sun, 18 Mar 2018 20:59:02 +0000 (UTC) From: "José María Alonso" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "José María Alonso" Message-ID: <1521406757.11e9d5441c3affcf04d69f5d0eaabf3763c20e00.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/common-idioms/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/common-idioms/common-idioms-3.ebuild X-VCS-Directories: dev-lisp/common-idioms/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 11e9d5441c3affcf04d69f5d0eaabf3763c20e00 X-VCS-Branch: master Date: Sun, 18 Mar 2018 20:59:02 +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-Archives-Salt: 4b72b0d8-9a31-4768-ac60-f06e90bda4c1 X-Archives-Hash: c0dbdbd19352bda9482af792009e3300 commit: 11e9d5441c3affcf04d69f5d0eaabf3763c20e00 Author: Chema Alonso Josa gentoo org> AuthorDate: Sun Mar 18 20:59:17 2018 +0000 Commit: José María Alonso gentoo org> CommitDate: Sun Mar 18 20:59:17 2018 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=11e9d544 dev-lisp/common-idioms: Drops package dev-lisp/common-idioms/common-idioms-3.ebuild | 33 --------------------------- 1 file changed, 33 deletions(-) diff --git a/dev-lisp/common-idioms/common-idioms-3.ebuild b/dev-lisp/common-idioms/common-idioms-3.ebuild deleted file mode 100644 index 0c6383fa..00000000 --- a/dev-lisp/common-idioms/common-idioms-3.ebuild +++ /dev/null @@ -1,33 +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 small Common Lisp library implementing various Common Lisp idioms." -HOMEPAGE="http://www.unmutual.info/software/old/common-idioms/" -SRC_URI="mirror://gentoo/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86" -IUSE="" - -RDEPEND="!dev-lisp/cl-${PN}" - -src_unpack() { - unpack ${A} -} - -src_prepare() { - rm -f "${S}"/Makefile -} - -src_install() { - common-lisp-install-sources *.lisp - common-lisp-install-asdf - dodoc README - dohtml docs/*.{html,css} - dohtml -r docs/icons -}