Gentoo Archives: gentoo-commits

From: "José María Alonso" <nimiux@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/lisp:master commit in: x11-wm/stumpwm-contrib/
Date: Thu, 21 Sep 2017 15:09:44
Message-Id: 1506006575.9df1f4b5416a3558f211a608b438f63194d26db6.nimiux@gentoo
1 commit: 9df1f4b5416a3558f211a608b438f63194d26db6
2 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 21 15:09:35 2017 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 21 15:09:35 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=9df1f4b5
7
8 x11-wm/stumpwm-contrib: Updates ebuild snapshot
9
10 .../stumpwm-contrib-20170921.ebuild | 32 ++++++++++++++++++++++
11 1 file changed, 32 insertions(+)
12
13 diff --git a/x11-wm/stumpwm-contrib/stumpwm-contrib-20170921.ebuild b/x11-wm/stumpwm-contrib/stumpwm-contrib-20170921.ebuild
14 new file mode 100644
15 index 00000000..373f997b
16 --- /dev/null
17 +++ b/x11-wm/stumpwm-contrib/stumpwm-contrib-20170921.ebuild
18 @@ -0,0 +1,32 @@
19 +# Copyright 1999-2017 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +
22 +EAPI=6
23 +
24 +inherit common-lisp-3
25 +
26 +if [[ ${PV} == 9999* ]] ; then
27 + inherit git-r3
28 + EGIT_REPO_URI="https://github.com/stumpwm/${PN}"
29 +else
30 + SRC_URI="https://dev.gentoo.org/~nimiux/${CATEGORY}/${PN}/${P}.tar.bz2"
31 + KEYWORDS="~amd64 ~x86"
32 +fi
33 +
34 +DESCRIPTION="Extension Modules for StumpWM"
35 +HOMEPAGE="https://github.com/stumpwm/stumpwm-contrib/"
36 +
37 +LICENSE="GPL-2 GPL-3 BSD-2"
38 +SLOT="0"
39 +IUSE=""
40 +
41 +RDEPEND=">=x11-wm/stumpwm-0.9.9"
42 +
43 +CONTRIBCATEGORIES="media modeline minor-mode util"
44 +
45 +src_install() {
46 + common-lisp-install-sources -t all ${CONTRIBCATEGORIES}
47 + dobin util/stumpish/stumpish
48 + dobin util/pinentry/stumpwm-pinentry
49 + dodoc README.org
50 +}