Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/stumpwm/
Date: Wed, 11 Sep 2019 16:21:48
Message-Id: 1568218877.e04ed5cbcec4c0d5e207661c6147512b84b983e1.mgorny@gentoo
1 commit: e04ed5cbcec4c0d5e207661c6147512b84b983e1
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 11 11:27:42 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 11 16:21:17 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e04ed5cb
7
8 x11-wm/stumpwm: Drop old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 x11-wm/stumpwm/Manifest | 1 -
13 x11-wm/stumpwm/stumpwm-1.0.1_rc.ebuild | 79 ----------------------------------
14 2 files changed, 80 deletions(-)
15
16 diff --git a/x11-wm/stumpwm/Manifest b/x11-wm/stumpwm/Manifest
17 index 1f6eb268fc1..2daac8ab8df 100644
18 --- a/x11-wm/stumpwm/Manifest
19 +++ b/x11-wm/stumpwm/Manifest
20 @@ -1,2 +1 @@
21 -DIST stumpwm-1.0.1_rc.tar.gz 197530 BLAKE2B 2883ee8a0f75d3c673f6b6f65675c98e9fad8ef181b3ed9cf8bbd5eed7c0d63f3f48d021d056265d4e6c14dd0594bfe3a36492cd9bcdf2b3379d2aa62eba1f67 SHA512 3ba68987e61bdb46fde9c6bbed82b630be1db3272bdfb844a9d7abf3f810e94e560a28d4951308cab5af1f93b35710b10bb1a1a35450a8445a1b959888266df2
22 DIST stumpwm-18.05.tar.gz 199467 BLAKE2B d532a531b7ceec7a80be66563dc2f36a6f1957d1e0f014ccf61cac1edf23073370dbe7cf3d7004f6dab144a88a4b54360e82ce7b13bdbc40cba59adfcb8e8af1 SHA512 a28c0af3a82670c0f31a5839227301672cc0706c47fb353355f90f791944556fb6125f3fa4d8547e6fbcf4817cdac5b0fe47de2dbae3a304d631a895af6ddb35
23
24 diff --git a/x11-wm/stumpwm/stumpwm-1.0.1_rc.ebuild b/x11-wm/stumpwm/stumpwm-1.0.1_rc.ebuild
25 deleted file mode 100644
26 index 9b097e9195f..00000000000
27 --- a/x11-wm/stumpwm/stumpwm-1.0.1_rc.ebuild
28 +++ /dev/null
29 @@ -1,79 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit common-lisp-3 autotools elisp-common xdg-utils versionator
36 -
37 -MY_PV="$(replace_version_separator '_' '-')"
38 -
39 -DESCRIPTION="Stumpwm is a Window Manager written entirely in Common Lisp."
40 -HOMEPAGE="https://stumpwm.github.io/"
41 -SRC_URI="https://github.com/stumpwm/stumpwm/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="GPL-2"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~x86"
46 -IUSE="contrib doc emacs"
47 -
48 -RESTRICT="strip mirror"
49 -
50 -RDEPEND="dev-lisp/alexandria
51 - dev-lisp/cl-ppcre
52 - dev-lisp/clx
53 - >=dev-lisp/sbcl-1.3.0
54 - emacs? ( virtual/emacs app-emacs/slime )"
55 -DEPEND="${RDEPEND}
56 - sys-apps/texinfo
57 - doc? ( virtual/texi2dvi )"
58 -
59 -PDEPEND="contrib? ( x11-wm/stumpwm-contrib )"
60 -
61 -S="${WORKDIR}/${PN}-${MY_PV}"
62 -SITEFILE=70${PN}-gentoo.el
63 -CLPKGDIR="${CLSOURCEROOT}/${CLPACKAGE}"
64 -
65 -install_docs() {
66 - local pdffile="${PN}.pdf"
67 -
68 - texi2pdf -o "${pdffile}" "${PN}.texi.in" && dodoc "${pdffile}" || die
69 - cp "${FILESDIR}/README.Gentoo" . && sed -i "s:@VERSION@:${PV}:" README.Gentoo || die
70 - dodoc AUTHORS NEWS README.md README.Gentoo
71 - doinfo "${PN}.info"
72 - docinto examples
73 - dodoc sample-stumpwmrc.lisp
74 -}
75 -
76 -src_prepare() {
77 - default
78 - eautoreconf
79 -}
80 -
81 -src_configure() {
82 - xdg_environment_reset
83 - econf --with-lisp=sbcl
84 -}
85 -
86 -src_compile() {
87 - emake -j1
88 -}
89 -
90 -src_install() {
91 - dobin stumpwm
92 - make_session_desktop StumpWM /usr/bin/stumpwm
93 -
94 - common-lisp-install-sources *.lisp
95 - common-lisp-install-asdf
96 - # Fix ASDF dir
97 - sed -i -e "/(:directory/c\ (:directory \"${CLPKGDIR}\")" \
98 - "${D}${CLPKGDIR}/load-stumpwm.lisp" || die
99 - use doc && install_docs
100 -}
101 -
102 -pkg_postinst() {
103 - use emacs && elisp-site-regen
104 -}
105 -
106 -pkg_postrm() {
107 - use emacs && elisp-site-regen
108 -}