From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-961409-garchives=archives.gentoo.org@lists.gentoo.org> 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 EEEEC139694 for <garchives@archives.gentoo.org>; Thu, 13 Jul 2017 15:26:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3FDC6E0E40; Thu, 13 Jul 2017 15:26:14 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 1F39BE0E40 for <gentoo-commits@lists.gentoo.org>; Thu, 13 Jul 2017 15:26:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 38DCD3418A4 for <gentoo-commits@lists.gentoo.org>; Thu, 13 Jul 2017 15:26:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0CB8E748A for <gentoo-commits@lists.gentoo.org>; Thu, 13 Jul 2017 15:26:08 +0000 (UTC) From: "José María Alonso" <nimiux@gentoo.org> 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" <nimiux@gentoo.org> Message-ID: <1499959566.59fac8c6151942dc90b53bcdb59e618073b9cc60.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: x11-wm/stumpwm/ X-VCS-Repository: proj/lisp X-VCS-Files: x11-wm/stumpwm/stumpwm-1.0.0.ebuild X-VCS-Directories: x11-wm/stumpwm/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 59fac8c6151942dc90b53bcdb59e618073b9cc60 X-VCS-Branch: master Date: Thu, 13 Jul 2017 15:26:08 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ec76bf44-4b08-4bec-a246-843b92e5ce7a X-Archives-Hash: 18872c21b12f58ca6acd362b794dcc14 commit: 59fac8c6151942dc90b53bcdb59e618073b9cc60 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org> AuthorDate: Thu Jul 13 15:26:06 2017 +0000 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org> CommitDate: Thu Jul 13 15:26:06 2017 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=59fac8c6 x11-wm/stumpwm: Removes uneeded lines x11-wm/stumpwm/stumpwm-1.0.0.ebuild | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/x11-wm/stumpwm/stumpwm-1.0.0.ebuild b/x11-wm/stumpwm/stumpwm-1.0.0.ebuild index 3231eff7..7638a3b5 100644 --- a/x11-wm/stumpwm/stumpwm-1.0.0.ebuild +++ b/x11-wm/stumpwm/stumpwm-1.0.0.ebuild @@ -40,7 +40,7 @@ get_lisp() { done } -do_doc() { +install_docs() { local pdffile="${PN}.pdf" texi2pdf -o "${pdffile}" "${PN}.texi" && dodoc "${pdffile}" || die @@ -52,10 +52,8 @@ do_doc() { src_prepare() { default - # Upstream didn't change the version before packaging - sed -i -e 's/:version "0.9.8"/:version "0.9.9"/' "${PN}.asd" || die - # Bug 534592. Does not build with asdf:oos, using require to load the package - sed -i "load-${PN}.lisp.in" -e "s/asdf:oos 'asdf:load-op/require/" || die + ## Bug 534592. Does not build with asdf:oos, using require to load the package + #sed -i "load-${PN}.lisp.in" -e "s/asdf:oos 'asdf:load-op/require/" || die eautoreconf } @@ -74,11 +72,11 @@ src_install() { make_session_desktop StumpWM /usr/bin/stumpwm common-lisp-install-sources *.lisp - common-lisp-install-asdf ${PN}.asd + common-lisp-install-asdf # Fix ASDF dir sed -i -e "/(:directory/c\ (:directory \"${CLPKGDIR}\")" \ "${D}${CLPKGDIR}/load-stumpwm.lisp" || die - use doc && do_doc + use doc && install_docs } pkg_postinst() {