public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/stumpwm/
Date: Thu, 22 Dec 2022 19:29:33 +0000 (UTC)	[thread overview]
Message-ID: <1671737352.2e46386e77b0385296d54124b15a07bcd0dd5959.asturm@gentoo> (raw)

commit:     2e46386e77b0385296d54124b15a07bcd0dd5959
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 22 19:23:57 2022 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Dec 22 19:29:12 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e46386e

x11-wm/stumpwm: drop 18.05

Closes: https://bugs.gentoo.org/728322
Closes: https://bugs.gentoo.org/794454
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 x11-wm/stumpwm/Manifest             |  1 -
 x11-wm/stumpwm/metadata.xml         |  1 -
 x11-wm/stumpwm/stumpwm-18.05.ebuild | 76 -------------------------------------
 3 files changed, 78 deletions(-)

diff --git a/x11-wm/stumpwm/Manifest b/x11-wm/stumpwm/Manifest
index b126401aa65c..1db2551b1ee8 100644
--- a/x11-wm/stumpwm/Manifest
+++ b/x11-wm/stumpwm/Manifest
@@ -1,2 +1 @@
-DIST stumpwm-18.05.tar.gz 199467 BLAKE2B d532a531b7ceec7a80be66563dc2f36a6f1957d1e0f014ccf61cac1edf23073370dbe7cf3d7004f6dab144a88a4b54360e82ce7b13bdbc40cba59adfcb8e8af1 SHA512 a28c0af3a82670c0f31a5839227301672cc0706c47fb353355f90f791944556fb6125f3fa4d8547e6fbcf4817cdac5b0fe47de2dbae3a304d631a895af6ddb35
 DIST stumpwm-740e945d742d85aef36e0ed9467de9bbbf5eafd2.tar.gz 273172 BLAKE2B 00756081aed915af18af4534414659e29856bc1a98df2cd35b48bb5bf4f06fe2dc76c4016cbc39e296ff19d51b3e959ef84dbc57972da0a634bc6cb3ca0b881e SHA512 313f430da8ecb7919940b37f2353969c8bf3a3be6a1d380e1655a7a6aebb83a3890cbd99a292a414f71f934adcae1350c24650fe5d5d35cf30788ff392feaac0

diff --git a/x11-wm/stumpwm/metadata.xml b/x11-wm/stumpwm/metadata.xml
index c365f50656a9..dc14e4b896ea 100644
--- a/x11-wm/stumpwm/metadata.xml
+++ b/x11-wm/stumpwm/metadata.xml
@@ -45,7 +45,6 @@
     reevalúe y CONTINÚE!
   </longdescription>
   <use>
-    <flag name="contrib">Install contrib modules</flag>
     <flag name="doc">Include documentation</flag>
   </use>
   <upstream>

diff --git a/x11-wm/stumpwm/stumpwm-18.05.ebuild b/x11-wm/stumpwm/stumpwm-18.05.ebuild
deleted file mode 100644
index d4d35a31bf30..000000000000
--- a/x11-wm/stumpwm/stumpwm-18.05.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit common-lisp-3 autotools desktop elisp-common xdg-utils
-
-DESCRIPTION="Stumpwm is a Window Manager written entirely in Common Lisp"
-HOMEPAGE="https://stumpwm.github.io/"
-SRC_URI="https://github.com/stumpwm/stumpwm/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="contrib doc emacs"
-
-RESTRICT="strip mirror"
-
-RDEPEND="dev-lisp/alexandria
-		dev-lisp/cl-ppcre
-		dev-lisp/clx
-		>=dev-lisp/sbcl-1.3.0
-		emacs? ( >=app-editors/emacs-23.1:* app-emacs/slime )"
-DEPEND="${RDEPEND}
-		sys-apps/texinfo
-		doc? ( virtual/texi2dvi )"
-
-PDEPEND="contrib? ( x11-wm/stumpwm-contrib )"
-
-SITEFILE=70${PN}-gentoo.el
-CLPKGDIR="${CLSOURCEROOT}/${CLPACKAGE}"
-
-install_docs() {
-	local pdffile="${PN}.pdf"
-
-	texi2pdf -o "${pdffile}" "${PN}.texi.in" && dodoc "${pdffile}" || die
-	cp "${FILESDIR}/README.Gentoo" . && sed -i "s:@VERSION@:${PV}:" README.Gentoo || die
-	dodoc AUTHORS NEWS README.md README.Gentoo
-	doinfo "${PN}.info"
-	docinto examples
-	dodoc sample-stumpwmrc.lisp
-}
-
-src_prepare() {
-	default
-	eautoreconf
-}
-
-src_configure() {
-	xdg_environment_reset
-	econf --with-lisp=sbcl
-}
-
-src_compile() {
-	emake
-}
-
-src_install() {
-	dobin stumpwm
-	make_session_desktop StumpWM /usr/bin/stumpwm
-
-	common-lisp-install-sources *.lisp
-	common-lisp-install-asdf
-	# Fix ASDF dir
-	sed -i -e "/(:directory/c\   (:directory \"${CLPKGDIR}\")" \
-		"${D}${CLPKGDIR}/load-stumpwm.lisp" || die
-	use doc && install_docs
-}
-
-pkg_postinst() {
-	use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-	use emacs && elisp-site-regen
-}


             reply	other threads:[~2022-12-22 19:29 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-22 19:29 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-05-24 17:46 [gentoo-commits] repo/gentoo:master commit in: x11-wm/stumpwm/ Ulrich Müller
2024-05-24 17:46 Ulrich Müller
2022-11-25 12:37 Joonas Niilola
2022-11-25 12:37 Joonas Niilola
2021-12-26  0:20 Sam James
2021-04-16 11:23 Sam James
2021-04-02 14:04 Sam James
2019-12-20 22:49 Ulrich Müller
2019-09-11 16:21 Michał Górny
2019-08-11  8:45 Michał Górny
2018-05-31 16:47 José María Alonso
2018-03-05 19:23 José María Alonso
2017-10-29 18:52 José María Alonso
2017-10-28 14:53 José María Alonso
2017-08-24 20:49 José María Alonso
2017-07-30  9:23 Michał Górny
2017-07-17  8:58 José María Alonso
2017-07-13 16:05 José María Alonso
2017-04-28  9:00 José María Alonso
2017-02-03  8:57 José María Alonso
2017-02-03  8:55 José María Alonso
2017-01-22 16:21 José María Alonso
2017-01-15 16:48 José María Alonso
2016-10-09 12:09 José María Alonso
2016-06-16 10:50 José María Alonso
2016-03-17 11:03 José María Alonso
2016-03-02 12:56 José María Alonso
2016-03-01 18:39 José María Alonso
2016-02-28 21:58 José María Alonso
2016-02-27 20:50 José María Alonso
2016-02-27 17:43 José María Alonso
2016-02-27 16:43 José María Alonso

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1671737352.2e46386e77b0385296d54124b15a07bcd0dd5959.asturm@gentoo \
    --to=asturm@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox