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 6C84D1382C5 for ; Sun, 28 Jan 2018 09:07:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B8FBE0C4D; Sun, 28 Jan 2018 09:07:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 4D34FE0C4D for ; Sun, 28 Jan 2018 09:07:56 +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 55F1B335C0C for ; Sun, 28 Jan 2018 09:07:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CADC81BB for ; Sun, 28 Jan 2018 09:07:53 +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: <1517130468.5d1f480feee1c116d481c7d2fbd290e2ea5681d8.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: x11-wm/stumpwm-contrib/ X-VCS-Repository: proj/lisp X-VCS-Files: x11-wm/stumpwm-contrib/stumpwm-contrib-20180128.ebuild X-VCS-Directories: x11-wm/stumpwm-contrib/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 5d1f480feee1c116d481c7d2fbd290e2ea5681d8 X-VCS-Branch: master Date: Sun, 28 Jan 2018 09:07:53 +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: 2f7eeabb-ecc6-46cd-afb9-5c3d9b7c2143 X-Archives-Hash: 0d292871023febcd3ae5a0681a1e818a commit: 5d1f480feee1c116d481c7d2fbd290e2ea5681d8 Author: Chema Alonso Josa gentoo org> AuthorDate: Sun Jan 28 09:07:48 2018 +0000 Commit: José María Alonso gentoo org> CommitDate: Sun Jan 28 09:07:48 2018 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=5d1f480f x11-wm/stumpwm-contrib: Bumps snapshot to 20180128 .../stumpwm-contrib-20180128.ebuild | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/x11-wm/stumpwm-contrib/stumpwm-contrib-20180128.ebuild b/x11-wm/stumpwm-contrib/stumpwm-contrib-20180128.ebuild new file mode 100644 index 00000000..fbd35c2d --- /dev/null +++ b/x11-wm/stumpwm-contrib/stumpwm-contrib-20180128.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit common-lisp-3 + +DESCRIPTION="Extension Modules for StumpWM" +HOMEPAGE="https://github.com/stumpwm/stumpwm-contrib/" + +if [[ ${PV} == 9999* ]] ; then + inherit git-r3 + EGIT_REPO_URI="${HOMEPAGE}" +else + SRC_URI="mirror://gentoo/${P}.tar.bz2" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-2 GPL-3 BSD-2" +SLOT="0" +IUSE="" + +RDEPEND=">=x11-wm/stumpwm-1.0.0" + +CONTRIBCATEGORIES="media minor-mode modeline util" + +src_install() { + common-lisp-install-sources -t all ${CONTRIBCATEGORIES} + dobin util/stumpish/stumpish + dobin util/pinentry/stumpwm-pinentry + dodoc README.org +}