Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/dino/
Date: Sun, 01 Jan 2023 16:20:10
Message-Id: 1672589895.aac794e8bf19a982d62b9f8bc53bfa47892e0553.soap@gentoo
1 commit: aac794e8bf19a982d62b9f8bc53bfa47892e0553
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 1 16:18:15 2023 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 1 16:18:15 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aac794e8
7
8 net-im/dino: drop 0.2.1-r1
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 net-im/dino/Manifest | 1 -
13 net-im/dino/dino-0.2.1-r1.ebuild | 78 ----------------------------------------
14 2 files changed, 79 deletions(-)
15
16 diff --git a/net-im/dino/Manifest b/net-im/dino/Manifest
17 index 0c5caf3183b0..20cbe5460593 100644
18 --- a/net-im/dino/Manifest
19 +++ b/net-im/dino/Manifest
20 @@ -1,2 +1 @@
21 -DIST dino-0.2.1.tar.gz 514504 BLAKE2B 42fae18bb7cda276c1eadeefdea130069f9929dfde62855f00ab6b88912fe9db3374315f40ff8f53350cf38e45fe61b0fd6256ef390cdbed6a65a3f2d79ac80a SHA512 b71497ec115945eadf7d33bb973f68465a20284aa75f37f1ae25fc30c1c423ce28cb10f7e9123c47f82e77e97170b8fa72c75389dacc3a2aa3d487a9c9610d49
22 DIST dino-0.3.0.tar.gz 804810 BLAKE2B cb6365f6fad051d0308909c6d5d2c59d7f57cb94f9f691516e27b7bb3aba214fdffa95066d8203d8ac5bd770bec1580e81baad313beef7fe5c058e1e94a37556 SHA512 e3d885208451b00b0416a1401780a94a169fb1179b2f609f7965e3445873d6b72ded84cb471d534616892ec89b5edcd6701fc97c36f19d690f4b894399000515
23
24 diff --git a/net-im/dino/dino-0.2.1-r1.ebuild b/net-im/dino/dino-0.2.1-r1.ebuild
25 deleted file mode 100644
26 index cf654bee3386..000000000000
27 --- a/net-im/dino/dino-0.2.1-r1.ebuild
28 +++ /dev/null
29 @@ -1,78 +0,0 @@
30 -# Copyright 1999-2023 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -CMAKE_MAKEFILE_GENERATOR="ninja"
36 -inherit cmake vala xdg
37 -
38 -DESCRIPTION="Modern Jabber/XMPP Client using GTK+/Vala"
39 -HOMEPAGE="https://dino.im"
40 -
41 -LICENSE="GPL-3"
42 -SLOT="0"
43 -IUSE="+gpg +http +omemo +notification-sound test"
44 -RESTRICT="!test? ( test )"
45 -
46 -MY_REPO_URI="https://github.com/dino/dino"
47 -if [[ ${PV} == "9999" ]]; then
48 - EGIT_REPO_URI="${MY_REPO_URI}.git"
49 - inherit git-r3
50 -else
51 - KEYWORDS="amd64 arm64"
52 - SRC_URI="${MY_REPO_URI}/releases/download/v${PV}/${P}.tar.gz"
53 -fi
54 -
55 -RDEPEND="
56 - app-text/gspell[vala]
57 - dev-db/sqlite:3
58 - dev-libs/glib:2
59 - dev-libs/icu
60 - dev-libs/libgee:0.8
61 - net-libs/glib-networking
62 - net-libs/libsignal-protocol-c
63 - x11-libs/cairo
64 - x11-libs/gdk-pixbuf:2
65 - x11-libs/gtk+:3
66 - x11-libs/pango
67 - gpg? ( app-crypt/gpgme:= )
68 - http? ( net-libs/libsoup:2.4 )
69 - omemo? (
70 - dev-libs/libgcrypt:0
71 - media-gfx/qrencode
72 - )
73 - notification-sound? ( media-libs/libcanberra:0[sound] )
74 -"
75 -DEPEND="
76 - $(vala_depend)
77 - ${RDEPEND}
78 - sys-devel/gettext
79 -"
80 -
81 -src_prepare() {
82 - cmake_src_prepare
83 - vala_src_prepare
84 -}
85 -
86 -src_configure() {
87 - local disabled_plugins=(
88 - $(usex gpg "" "openpgp")
89 - $(usex omemo "" "omemo")
90 - $(usex http "" "http-files")
91 - )
92 - local enabled_plugins=(
93 - $(usex notification-sound "notification-sound" "")
94 - )
95 - local mycmakeargs+=(
96 - "-DENABLED_PLUGINS=$(local IFS=";"; echo "${enabled_plugins[*]}")"
97 - "-DDISABLED_PLUGINS=$(local IFS=";"; echo "${disabled_plugins[*]}")"
98 - "-DVALA_EXECUTABLE=${VALAC}"
99 - "-DBUILD_TESTS=$(usex test)"
100 - )
101 -
102 - cmake_src_configure
103 -}
104 -
105 -src_test() {
106 - "${BUILD_DIR}"/xmpp-vala-test || die
107 -}