Gentoo Archives: gentoo-commits

From: Johannes Huber <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/i3-gaps/
Date: Wed, 01 May 2019 08:08:30
Message-Id: 1556698098.57723bd1dce00129c31f8bdbd3b1da3b6c07d270.johu@gentoo
1 commit: 57723bd1dce00129c31f8bdbd3b1da3b6c07d270
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 1 08:07:57 2019 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Wed May 1 08:08:18 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57723bd1
7
8 x11-wm/i3-gaps: Remove 4.16
9
10 Package-Manager: Portage-2.3.66, Repoman-2.3.12
11 Signed-off-by: Johannes Huber <johu <AT> gentoo.org>
12
13 x11-wm/i3-gaps/Manifest | 1 -
14 x11-wm/i3-gaps/i3-gaps-4.16.ebuild | 87 --------------------------------------
15 2 files changed, 88 deletions(-)
16
17 diff --git a/x11-wm/i3-gaps/Manifest b/x11-wm/i3-gaps/Manifest
18 index 80f416b1cd9..b401a04fccb 100644
19 --- a/x11-wm/i3-gaps/Manifest
20 +++ b/x11-wm/i3-gaps/Manifest
21 @@ -1,3 +1,2 @@
22 DIST i3-gaps-4.15.0.1.tar.gz 3965631 BLAKE2B ea65886c40f377125bafbd80e2d56c1d66a4c5c06d942d645b2cb226323a0903e98aa58b67da9c31c60240b5d99d10ecc20864aeede95a5039ea0ffdff8dcb8b SHA512 76ff860e4ca0edd0e22bdff9ae9b1bc150df2b5bc15b0d7ea7a63d373e8d156a43bd91f8a40c48b4c771603f7de7c18c6d16c53fef582e53f51c53a197fa7a0a
23 DIST i3-gaps-4.16.1.tar.gz 3983420 BLAKE2B f0d5a85b06ce33e1cc177af6da29f9cdf42ed754bb767aa9eaa5ab52f3b9f4f688d251f2a16fb222fc8cf5052e79859891c4185b1325b2ef6c1a813aa220468c SHA512 904c2f63c6a35573f13fd216625c1349ac71de70ae8f0440667c9d76048cdaf30a398ab358f2366d5f46502d87e801713b625cb509a05f39dbca1371d2b8d0e9
24 -DIST i3-gaps-4.16.tar.gz 3985226 BLAKE2B da61ab6b476a30a4acab24590cd5ca51f0f51318988890e66530fdd76d99236378d9c678e1e37da99e22e70b0e5e0e5895b8146bd5a93b23957cb1e0178e08b1 SHA512 64a392d2b4175e063f0740ee04885156dbd2571262c22df6276e8eaac36765cd03822723208118a1998ff6cbbcd973fb7f6305df9744c477262d5d33b792ee23
25
26 diff --git a/x11-wm/i3-gaps/i3-gaps-4.16.ebuild b/x11-wm/i3-gaps/i3-gaps-4.16.ebuild
27 deleted file mode 100644
28 index d3e62d0fb17..00000000000
29 --- a/x11-wm/i3-gaps/i3-gaps-4.16.ebuild
30 +++ /dev/null
31 @@ -1,87 +0,0 @@
32 -# Copyright 1999-2018 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -inherit autotools
38 -
39 -DESCRIPTION="i3 fork with gaps and some more features"
40 -HOMEPAGE="https://github.com/Airblader/i3"
41 -SRC_URI="https://github.com/Airblader/i3/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="BSD"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~x86"
46 -IUSE=""
47 -
48 -DEPEND="
49 - dev-libs/glib:2
50 - dev-libs/libev
51 - dev-libs/libpcre
52 - dev-libs/yajl
53 - x11-libs/cairo[X,xcb]
54 - x11-libs/libxcb[xkb]
55 - x11-libs/libxkbcommon[X]
56 - x11-libs/pango[X]
57 - x11-libs/startup-notification
58 - x11-libs/xcb-util
59 - x11-libs/xcb-util-cursor
60 - x11-libs/xcb-util-keysyms
61 - x11-libs/xcb-util-wm
62 - x11-libs/xcb-util-xrm
63 -"
64 -BDEPEND="
65 - virtual/pkgconfig
66 -"
67 -RDEPEND="${DEPEND}
68 - dev-lang/perl
69 - dev-perl/AnyEvent-I3
70 - dev-perl/JSON-XS
71 - !x11-wm/i3
72 -"
73 -
74 -S=${WORKDIR}/i3-${PV}
75 -
76 -DOCS=( RELEASE-NOTES-$(ver_cut 1-2) )
77 -
78 -PATCHES=( "${FILESDIR}/${PN}-$(ver_cut 1-2)-musl.patch" )
79 -
80 -src_prepare() {
81 - default
82 - sed -e '/AC_PATH_PROG(\[PATH_ASCIIDOC/d' -i configure.ac || die
83 - eautoreconf
84 - cat <<- EOF > "${T}"/i3wm
85 - #!/bin/sh
86 - exec /usr/bin/i3
87 - EOF
88 -}
89 -
90 -src_configure() {
91 - # disable sanitizer: otherwise injects -O0 -g
92 - local myeconfargs=(
93 - --enable-debug=no
94 - --disable-sanitizers
95 - )
96 - econf "${myeconfargs[@]}"
97 -}
98 -
99 -src_compile() {
100 - emake -C "${CBUILD}"
101 -}
102 -
103 -src_install() {
104 - emake -C "${CBUILD}" DESTDIR="${D}" install
105 - einstalldocs
106 -
107 - exeinto /etc/X11/Sessions
108 - doexe "${T}"/i3wm
109 -}
110 -
111 -pkg_postinst() {
112 - einfo "There are several packages that you may find useful with ${PN} and"
113 - einfo "their usage is suggested by the upstream maintainers, namely:"
114 - einfo " x11-misc/dmenu"
115 - einfo " x11-misc/i3lock"
116 - einfo " x11-misc/i3status"
117 - einfo "Please refer to their description for additional info."
118 -}