Gentoo Archives: gentoo-commits

From: Florian Schmaus <flow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/herbstluftwm/
Date: Wed, 07 Jul 2021 11:59:49
Message-Id: 1625659007.6f55d16dfe1aa0c4182cd9003ee2d5bf258a9dae.flow@gentoo
1 commit: 6f55d16dfe1aa0c4182cd9003ee2d5bf258a9dae
2 Author: Florian Schmaus <flow <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 7 11:56:47 2021 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 7 11:56:47 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f55d16d
7
8 x11-wm/herbstluftwm: drop 0.7.2-r1
9
10 Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
11
12 x11-wm/herbstluftwm/Manifest | 1 -
13 x11-wm/herbstluftwm/herbstluftwm-0.7.2-r1.ebuild | 72 ------------------------
14 2 files changed, 73 deletions(-)
15
16 diff --git a/x11-wm/herbstluftwm/Manifest b/x11-wm/herbstluftwm/Manifest
17 index 5001a621c3b..1241dd364d0 100644
18 --- a/x11-wm/herbstluftwm/Manifest
19 +++ b/x11-wm/herbstluftwm/Manifest
20 @@ -1,2 +1 @@
21 -DIST herbstluftwm-0.7.2.tar.gz 245506 BLAKE2B 72d0bb2a77e519161d193ac7b2b9f1f878ccb6cfe4914b6c75d060e2daa0bec4203ee4ebf203b9fa1dfb844d71d50aa7c03257c78aa22e906bf42519d1e592af SHA512 abb49bbc3de9a0ef619ce7063c1cea0d0d25ab2195c53dc0d33e061ad24060da4bbe9b99b9b9126028cdf68b462d4fcc8d1534431e4892d571ff897a68d2113c
22 DIST herbstluftwm-0.9.3.tar.gz 497523 BLAKE2B 1936924f86201b6ad6ec33426d366912fd72e2a5e5a4964cafcb40d76624c2a1398c9330cde472343b436d16c9299aba495e1a224c6ea8bb173bbf76b7209cb3 SHA512 73e4193a2d79c452c08b4ac1c8fea1e93b88b07baa0c9006b74a76ed84de578d3234789e3666a9299ef3942695225c9a7f85eb3698a44edb1234f6042dbea47c
23
24 diff --git a/x11-wm/herbstluftwm/herbstluftwm-0.7.2-r1.ebuild b/x11-wm/herbstluftwm/herbstluftwm-0.7.2-r1.ebuild
25 deleted file mode 100644
26 index 74f4e1a1a6d..00000000000
27 --- a/x11-wm/herbstluftwm/herbstluftwm-0.7.2-r1.ebuild
28 +++ /dev/null
29 @@ -1,72 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -inherit toolchain-funcs bash-completion-r1
35 -
36 -if [[ ${PV} == 9999* ]] ; then
37 - inherit git-r3
38 - EGIT_REPO_URI="https://github.com/herbstluftwm/herbstluftwm"
39 - BDEPEND="app-text/asciidoc"
40 -else
41 - SRC_URI="https://herbstluftwm.org/tarballs/${P}.tar.gz"
42 - KEYWORDS="amd64 x86"
43 - BDEPEND=""
44 -fi
45 -
46 -DESCRIPTION="A manual tiling window manager for X"
47 -HOMEPAGE="https://herbstluftwm.org/"
48 -
49 -LICENSE="BSD-2"
50 -SLOT="0"
51 -IUSE="examples xinerama zsh-completion"
52 -
53 -DEPEND="
54 - >=dev-libs/glib-2.24:2
55 - x11-libs/libX11
56 - x11-libs/libXext
57 - xinerama? ( x11-libs/libXinerama )
58 -"
59 -RDEPEND="
60 - ${DEPEND}
61 - app-shells/bash
62 - zsh-completion? ( app-shells/zsh )
63 -"
64 -BDEPEND+="
65 - virtual/pkgconfig
66 -"
67 -
68 -src_compile() {
69 - tc-export CC CXX LD PKG_CONFIG
70 -
71 - emake LDXX="$(tc-getCXX)" COLOR=0 VERBOSE= \
72 - $(use xinerama || echo XINERAMAFLAGS= XINERAMALIBS= )
73 -}
74 -
75 -src_install() {
76 - dobin herbstluftwm herbstclient
77 - dodoc BUGS MIGRATION NEWS README.md
78 -
79 - doman doc/{herbstluftwm,herbstclient}.1
80 -
81 - exeinto /etc/xdg/herbstluftwm
82 - doexe share/{autostart,panel.sh,restartpanels.sh}
83 -
84 - insinto /usr/share/xsessions
85 - doins share/herbstluftwm.desktop
86 -
87 - newbashcomp share/herbstclient-completion herbstclient
88 -
89 - if use zsh-completion ; then
90 - insinto /usr/share/zsh/site-functions
91 - doins share/_herbstclient
92 - fi
93 -
94 - if use examples ; then
95 - exeinto /usr/share/doc/${PF}/examples
96 - doexe scripts/*.sh
97 - docinto examples
98 - dodoc scripts/README
99 - docompress -x /usr/share/doc/${PF}/examples
100 - fi
101 -}