Gentoo Archives: gentoo-commits

From: Cara Salter <cara@×××××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-wm/river/
Date: Thu, 01 Dec 2022 21:35:41
Message-Id: 1669930466.82110cad75e49a36f725ad8d56fad7844136c75c.cara@gentoo
1 commit: 82110cad75e49a36f725ad8d56fad7844136c75c
2 Author: Cara Salter <cara <AT> devcara <DOT> com>
3 AuthorDate: Thu Dec 1 21:33:26 2022 +0000
4 Commit: Cara Salter <cara <AT> devcara <DOT> com>
5 CommitDate: Thu Dec 1 21:34:26 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=82110cad
7
8 gui-wm/river: treeclean
9
10 Removing River due to a hard dependency on Zig 0.9.1, which was removed
11 due to relying on LLVM 13.
12
13 Bug: 876181
14 Signed-off-by: Cara Salter <cara <AT> devcara.com>
15
16 gui-wm/river/Manifest | 1 -
17 gui-wm/river/metadata.xml | 8 --------
18 gui-wm/river/river-0.1.3.ebuild | 38 --------------------------------------
19 3 files changed, 47 deletions(-)
20
21 diff --git a/gui-wm/river/Manifest b/gui-wm/river/Manifest
22 deleted file mode 100644
23 index 5ca331bb5..000000000
24 --- a/gui-wm/river/Manifest
25 +++ /dev/null
26 @@ -1 +0,0 @@
27 -DIST river-0.1.3.tar.gz 249131 BLAKE2B 9e018c85093be6b1c2e5a05f0a5858dceb820710178bd4fd556550f7573c7d982252264309bd2dfb1247f37e9cab625dce3b3c2fa5da2ad9c9b19bfac4c059ba SHA512 8dd8ad8b17fb1d9d65e413aaaa456fda89f8bedd580db247c3ffa8235a67712394182b3498a9c6eb3707cfc571c398bb5086cf09810e4a9438d26ea19f41f5a9
28
29 diff --git a/gui-wm/river/metadata.xml b/gui-wm/river/metadata.xml
30 deleted file mode 100644
31 index 54c19695f..000000000
32 --- a/gui-wm/river/metadata.xml
33 +++ /dev/null
34 @@ -1,8 +0,0 @@
35 -<?xml version="1.0" encoding="UTF-8"?>
36 -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
37 -<pkgmetadata>
38 - <maintainer type="person">
39 - <email>cara@×××××××.com</email>
40 - <name>Cara Salter</name>
41 - </maintainer>
42 -</pkgmetadata>
43
44 diff --git a/gui-wm/river/river-0.1.3.ebuild b/gui-wm/river/river-0.1.3.ebuild
45 deleted file mode 100644
46 index 9ed07725d..000000000
47 --- a/gui-wm/river/river-0.1.3.ebuild
48 +++ /dev/null
49 @@ -1,38 +0,0 @@
50 -# Copyright 2022 Gentoo Authors
51 -# Distributed under the terms of the GNU General Public License v2
52 -
53 -EAPI=8
54 -
55 -DESCRIPTION="A dynamic tiling Wayland compositor"
56 -HOMEPAGE="https://github.com/riverwm/river"
57 -if [[ ${PV} == *9999 ]]; then
58 - inherit git-r3
59 - EGIT_REPO_URI="https://github.com/riverwm/river"
60 -else
61 - SRC_URI="https://github.com/riverwm/river/releases/download/v${PV}/river-${PV}.tar.gz"
62 -fi
63 -
64 -PATCHES=()
65 -
66 -LICENSE="GPL-3"
67 -SLOT="0"
68 -KEYWORDS="~amd64"
69 -
70 -DEPEND="x11-libs/libxkbcommon
71 - dev-libs/libevdev
72 - x11-libs/pixman
73 - virtual/pkgconfig
74 - app-text/scdoc
75 - dev-libs/wayland
76 - dev-libs/wayland-protocols
77 - >gui-libs/wlroots-0.16"
78 -RDEPEND="${DEPEND}"
79 -BDEPEND="=dev-lang/zig-0.9.1-r3"
80 -
81 -src_install() {
82 - zig build -Drelease-safe --prefix "${D}/usr" install
83 -
84 - dodir /usr/share/examples/river
85 -
86 - cp "${S}/example/init" "${D}/usr/share/examples/river/init"
87 -}