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 9EBA91395E2 for ; Wed, 30 Nov 2016 12:47:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D88F9E0BB4; Wed, 30 Nov 2016 12:47:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9649AE0BB4 for ; Wed, 30 Nov 2016 12:47:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C3254340F27 for ; Wed, 30 Nov 2016 12:47:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6ABF34A5 for ; Wed, 30 Nov 2016 12:47:32 +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: <1480510047.4dbe9a2406f8d6cf14bdf1bf67ae187fc49ff12f.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/asdf-flv/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/asdf-flv/asdf-flv-2.1.ebuild X-VCS-Directories: dev-lisp/asdf-flv/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 4dbe9a2406f8d6cf14bdf1bf67ae187fc49ff12f X-VCS-Branch: master Date: Wed, 30 Nov 2016 12:47:32 +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: ba74eb28-ba1c-4f36-87b4-e47cbf749277 X-Archives-Hash: 537687baf9e0b14b54bc4658f5df3e71 commit: 4dbe9a2406f8d6cf14bdf1bf67ae187fc49ff12f Author: Chema Alonso Josa gentoo org> AuthorDate: Wed Nov 30 12:47:27 2016 +0000 Commit: José María Alonso gentoo org> CommitDate: Wed Nov 30 12:47:27 2016 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=4dbe9a24 dev-lisp/asdf-flv: Adds new package dev-lisp/asdf-flv/asdf-flv-2.1.ebuild | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/dev-lisp/asdf-flv/asdf-flv-2.1.ebuild b/dev-lisp/asdf-flv/asdf-flv-2.1.ebuild new file mode 100644 index 0000000..3f22dbf --- /dev/null +++ b/dev-lisp/asdf-flv/asdf-flv-2.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit common-lisp-3 + +MY_PV="version-${PV}" + +DESCRIPTION="ASDF extension to provide support for file-local variables" +HOMEPAGE="https://www.lrde.epita.fr/~didier/software/lisp/misc.php#asdf-flv + http://www.cliki.net/asdf-flv" +SRC_URI="https://github.com/didierverna/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" + +# LICENSE.invalid while looking for it +LICENSE="GNU_All_Permissive" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +S="${WORKDIR}/${PN}-${MY_PV}" + +src_prepare() { + mv "net.didierverna.${PN}.asd" "${PN}.asd" || die + sed -i -e 's/net\.didierverna\.//g' "${PN}.asd" "${PN}.lisp" "package.lisp" || die + default +}