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 EEDBB139085 for ; Wed, 8 Feb 2017 22:15:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 49330E0CA6; Wed, 8 Feb 2017 22:15:47 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 29F1CE0CA6 for ; Wed, 8 Feb 2017 22:15:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 E298D3416AA for ; Wed, 8 Feb 2017 22:15:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 588657EA for ; Wed, 8 Feb 2017 22:15:44 +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: <1486592139.7183c93cdf89fb8751f654a528ab8a408a6e7ca7.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/linedit/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/linedit/linedit-9999.ebuild X-VCS-Directories: dev-lisp/linedit/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 7183c93cdf89fb8751f654a528ab8a408a6e7ca7 X-VCS-Branch: master Date: Wed, 8 Feb 2017 22:15:44 +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: 363625de-23b3-459e-a21a-3de70cb1e62a X-Archives-Hash: 829da261a830a94dee8f6c21c566002c commit: 7183c93cdf89fb8751f654a528ab8a408a6e7ca7 Author: Chema Alonso Josa gentoo org> AuthorDate: Wed Feb 8 22:15:39 2017 +0000 Commit: José María Alonso gentoo org> CommitDate: Wed Feb 8 22:15:39 2017 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=7183c93c dev-lisp/linedit: Updates live ebuild EAPI. Fixes spaces and tabs dev-lisp/linedit/linedit-9999.ebuild | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dev-lisp/linedit/linedit-9999.ebuild b/dev-lisp/linedit/linedit-9999.ebuild index 29d1576f..af1d7fec 100644 --- a/dev-lisp/linedit/linedit-9999.ebuild +++ b/dev-lisp/linedit/linedit-9999.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 -inherit common-lisp-3 eutils flag-o-matic git-2 multilib toolchain-funcs +inherit common-lisp-3 flag-o-matic git-r3 multilib toolchain-funcs DESCRIPTION="Linedit is a readline-style library written in Common Lisp." HOMEPAGE="http://www.common-lisp.net/project/linedit/" @@ -33,7 +33,7 @@ create_uffi_loader() { cat > uffi-loader.lisp <<-EOF ;;;; -*- mode: lisp; syntax: common-lisp; indent-tabs-mode: nil; base: 10; package: linedit -*- (in-package :linedit) - + (uffi:load-foreign-library #p"/usr/$(get_libdir)/linedit/terminal_glue.so") EOF } @@ -44,7 +44,7 @@ cleanup_terminfo_files() { } src_prepare() { - epatch "${FILESDIR}"/${PV}-${PN}.asd-uffi-glue-gentoo.patch + eapply "${FILESDIR}"/${PV}-${PN}.asd-uffi-glue-gentoo.patch create_uffi_loader } @@ -52,8 +52,8 @@ src_compile() { strip-flags for filename in "${CFILES}" ; do @cc "${filename}.c" ${CFLAGS} ${LDFLAGS} \ - -fPIC -DPIC -shared -Wl,-soname="${filename}" -o "${filename}.so" \ - || die "Cannot compile ${filename}.c" + -fPIC -DPIC -shared -Wl,-soname="${filename}" -o "${filename}.so" \ + || die "Cannot compile ${filename}.c" done }