commit:     6bf04776cbeae2a9dc597b89a38055923e34ed47
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Jun  6 12:59:59 2025 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Jun  6 21:17:22 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bf04776

net-im/dino: drop 0.4.5-r1

Bug: https://bugs.gentoo.org/953635
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 net-im/dino/Manifest                      |   1 -
 net-im/dino/dino-0.4.5-r1.ebuild          | 101 ------------------------------
 net-im/dino/files/dino-0.4.5-cmake4.patch |   8 ---
 3 files changed, 110 deletions(-)

diff --git a/net-im/dino/Manifest b/net-im/dino/Manifest
index 48293fc51a9f..851381058fff 100644
--- a/net-im/dino/Manifest
+++ b/net-im/dino/Manifest
@@ -1,2 +1 @@
-DIST dino-0.4.5.tar.gz 886933 BLAKE2B 
19afec6cedf770017ef459ab87dac38f24a4e9c7ca956145e6bd4bc99f35928ae2cc461f98de262beb6e06cd6cbbcd56197835adc8ead57c3f1f29b2c4446771
 SHA512 
877e218105b4c9b643145d557ebf0e19d9ad989146dcffde047aba46290389babf8814a8bd819788f91e34c11df0c8609c68f9de8fa418c0801c83642ad861c6
 DIST dino-0.5.0.tar.gz 1002577 BLAKE2B 
3f1cd3f8d16549dbb0af3a4827fc4657b7881a0a327942ff8fde415475c7821c5cd9426486c4ed9b37cfe4fd0019e079c960d071caa7f186b83df44854f7779c
 SHA512 
9cb6db27e6afd42204990c836019bc84a2a61af839d59cf8378520308d3016e6ac674ea4abd3044dfdf18e21e8431ef3cc85ad70d02c89d95c4dc702b32e05d2

diff --git a/net-im/dino/dino-0.4.5-r1.ebuild b/net-im/dino/dino-0.4.5-r1.ebuild
deleted file mode 100644
index 50f9c472a29d..000000000000
--- a/net-im/dino/dino-0.4.5-r1.ebuild
+++ /dev/null
@@ -1,101 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake vala xdg readme.gentoo-r1
-
-DESCRIPTION="Modern Jabber/XMPP Client using GTK+/Vala"
-HOMEPAGE="https://dino.im";
-
-MY_REPO_URI="https://github.com/dino/dino";
-if [[ ${PV} == *9999* ]]; then
-       EGIT_REPO_URI="${MY_REPO_URI}.git"
-       inherit git-r3
-else
-       SRC_URI="${MY_REPO_URI}/releases/download/v${PV}/${P}.tar.gz"
-       KEYWORDS="amd64 ~arm64"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="+gpg +http +notification-sound +omemo +rtp test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-       dev-db/sqlite:3
-       dev-libs/glib:2
-       dev-libs/icu:=
-       dev-libs/libgee:0.8=
-       gui-libs/gtk:4
-       >=gui-libs/libadwaita-1.2.0:1[vala]
-       media-libs/graphene
-       net-libs/glib-networking
-       net-libs/gnutls:=
-       >=net-libs/libnice-0.1.22-r1
-       net-libs/libsignal-protocol-c
-       net-libs/libsrtp:2=
-       x11-libs/cairo
-       x11-libs/gdk-pixbuf:2
-       x11-libs/pango
-       gpg? ( app-crypt/gpgme:= )
-       http? ( net-libs/libsoup:3.0 )
-       notification-sound? ( media-libs/libcanberra:0[sound(+)] )
-       omemo? (
-               dev-libs/libgcrypt:=
-               media-gfx/qrencode:=
-       )
-       rtp? (
-               media-libs/gst-plugins-base:1.0
-               media-libs/gstreamer:1.0
-               media-libs/webrtc-audio-processing:1
-       )
-"
-DEPEND="${RDEPEND}
-       media-libs/gst-plugins-base
-       media-libs/gstreamer
-"
-BDEPEND="
-       sys-devel/gettext
-       $(vala_depend)
-"
-
-# upstream switched to meson, so no need to try send it there
-PATCHES=( "${FILESDIR}/${P}-cmake4.patch" )
-
-src_configure() {
-       vala_setup
-
-       local disabled_plugins=(
-               $(usex gpg "" "openpgp")
-               $(usex omemo "" "omemo")
-               $(usex http  "" "http-files")
-               $(usex rtp "" rtp)
-       )
-       local enabled_plugins=(
-               $(usex notification-sound "notification-sound" "")
-       )
-       local mycmakeargs=(
-               "-DENABLED_PLUGINS=$(local IFS=";"; echo 
"${enabled_plugins[*]}")"
-               "-DDISABLED_PLUGINS=$(local IFS=";"; echo 
"${disabled_plugins[*]}")"
-               "-DVALA_EXECUTABLE=${VALAC}"
-               "-DSOUP_VERSION=3" # fixed bug #948374
-               "-DBUILD_TESTS=$(usex test)"
-       )
-
-       cmake_src_configure
-}
-
-src_test() {
-       "${BUILD_DIR}"/xmpp-vala-test || die
-}
-
-src_install() {
-       cmake_src_install
-       readme.gentoo_create_doc
-}
-
-pkg_postinst() {
-       xdg_pkg_postinst
-       readme.gentoo_print_elog
-}

diff --git a/net-im/dino/files/dino-0.4.5-cmake4.patch 
b/net-im/dino/files/dino-0.4.5-cmake4.patch
deleted file mode 100644
index 15ecb0e9467a..000000000000
--- a/net-im/dino/files/dino-0.4.5-cmake4.patch
+++ /dev/null
@@ -1,8 +0,0 @@
---- a/CMakeLists.txt   2025-02-24 20:00:00.000000000 +0100
-+++ b/CMakeLists.txt   2025-04-13 20:22:18.772585202 +0200
-@@ -1,4 +1,4 @@
--cmake_minimum_required(VERSION 3.3)
-+cmake_minimum_required(VERSION 3.5)
- list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake)
- include(ComputeVersion)
- if (NOT VERSION_FOUND)

Reply via email to