public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: gui-libs/neatvnc/
Date: Sun, 27 Oct 2024 07:23:56 +0000 (UTC)	[thread overview]
Message-ID: <1730013805.6a0e71a40d11953fa32e72c0064c6af08ec7bf98.graaff@gentoo> (raw)

commit:     6a0e71a40d11953fa32e72c0064c6af08ec7bf98
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 27 07:23:11 2024 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Oct 27 07:23:25 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a0e71a4

gui-libs/neatvnc: drop 0.8.0

Bug: https://bugs.gentoo.org/937140
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>

 gui-libs/neatvnc/Manifest             |  1 -
 gui-libs/neatvnc/neatvnc-0.8.0.ebuild | 86 -----------------------------------
 2 files changed, 87 deletions(-)

diff --git a/gui-libs/neatvnc/Manifest b/gui-libs/neatvnc/Manifest
index 0eb808121e06..dd41671c15c4 100644
--- a/gui-libs/neatvnc/Manifest
+++ b/gui-libs/neatvnc/Manifest
@@ -1,2 +1 @@
-DIST neatvnc-0.8.0.tar.gz 661726 BLAKE2B 075831ad8f2a4e209b316b848ac2f5b2dbcd0ecf36e2ecc2b264be255ca0250d9a61ae5df1c522c310459cc2a536958cb01567ee640fca52db3966329d89cd09 SHA512 bd5bfbcec88711a64eb45c12cad208d594f24e3812d98ccb9eb3a3f8a933df3040fcb21e4bdf0df3ea44332096b6f0bca6dcb8f4be15d42541ab98b2295d4091
 DIST neatvnc-0.8.1.tar.gz 661911 BLAKE2B 7d17e14cef3af1de509387581ea632ef967a9a669f26b85adb7e0f3e725fbe15125faf85bf71e75f926cf3b1508eafe600fc4d2b937e34c738dae9427459fb05 SHA512 4c5701765ba78e8fbfff71054988760b5a705946798e709d6905e63ac457f4c2da72aa0866e3cb3832b9aff0722199c1fb52869373677310ba22620413ed6b03

diff --git a/gui-libs/neatvnc/neatvnc-0.8.0.ebuild b/gui-libs/neatvnc/neatvnc-0.8.0.ebuild
deleted file mode 100644
index 7852326ccbc2..000000000000
--- a/gui-libs/neatvnc/neatvnc-0.8.0.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 2020-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson
-
-DESCRIPTION="Liberally licensed VNC server library with a clean interface"
-HOMEPAGE="https://github.com/any1/neatvnc/"
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/any1/neatvnc.git"
-else
-	SRC_URI="https://github.com/any1/neatvnc/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
-fi
-
-LICENSE="ISC"
-SLOT="0"
-IUSE="examples gbm h264 jpeg ssl test tracing websockets"
-REQUIRED_USE="h264? ( gbm )"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	=dev-libs/aml-0.3*
-	sys-libs/zlib
-	x11-libs/pixman
-	examples? (
-		media-libs/libpng:=
-	)
-	gbm? ( media-libs/mesa )
-	h264? (
-		media-video/ffmpeg:=
-		x11-libs/libdrm
-	)
-	jpeg? ( media-libs/libjpeg-turbo:= )
-	ssl? ( net-libs/gnutls:= )
-	tracing? ( dev-debug/systemtap )
-	websockets? (
-		dev-libs/gmp:=
-		dev-libs/nettle:=[gmp]
-	)
-"
-DEPEND="
-	${RDEPEND}
-	x11-libs/libdrm
-"
-BDEPEND="
-	virtual/pkgconfig
-"
-
-PATCHES=(
-	"${FILESDIR}/neatvnc-0.8.0-fix-tracing-undeclared-variable.patch"
-)
-
-src_prepare() {
-	default
-
-	# useful soname
-	sed -i -e "s/'0.0.0'/meson.project_version()/" meson.build || die
-}
-
-src_configure() {
-	local emesonargs=(
-		$(meson_use examples)
-		$(meson_use test tests)
-		$(meson_feature jpeg)
-		$(meson_feature ssl tls)
-		$(meson_feature websockets nettle)
-		$(meson_use tracing systemtap)
-		$(meson_feature gbm)
-		$(meson_feature h264)
-	)
-	meson_src_configure
-}
-
-src_install() {
-	meson_src_install
-	einstalldocs
-
-	if use examples; then
-		newbin "${BUILD_DIR}"/examples/draw neatvnc-example-draw
-		newbin "${BUILD_DIR}"/examples/png-server neatvnc-example-png-server
-	fi
-}


             reply	other threads:[~2024-10-27  7:23 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-27  7:23 Hans de Graaff [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-07-13 20:44 [gentoo-commits] repo/gentoo:master commit in: gui-libs/neatvnc/ Michael Mair-Keimberger
2025-07-13 20:15 Michael Mair-Keimberger
2025-07-13 20:15 Michael Mair-Keimberger
2025-07-13  4:16 Sam James
2025-04-26  2:24 Sam James
2025-04-26  1:59 Sam James
2025-04-26  1:24 Sam James
2025-04-26  1:06 Sam James
2025-04-26  0:46 Sam James
2024-12-13 10:15 Arthur Zamarin
2024-10-18 19:05 Arthur Zamarin
2024-10-18 15:40 Arthur Zamarin
2024-10-18  0:18 Sam James
2024-10-18  0:18 Sam James
2024-10-17 21:41 Sam James
2024-10-17 16:13 Arthur Zamarin
2024-05-28 22:28 Ionen Wolkens
2024-04-26 21:37 James Le Cuirot
2024-04-26  0:14 Sam James
2024-04-26  0:14 Sam James
2024-04-25 22:18 Sam James
2024-04-25 22:18 Sam James
2024-03-16 19:32 Arthur Zamarin
2023-11-29 21:51 James Le Cuirot
2023-11-29  4:23 Sam James
2023-10-17 21:34 James Le Cuirot
2023-03-19 10:46 James Le Cuirot
2023-01-13 12:37 Arthur Zamarin
2022-12-31 13:02 Arthur Zamarin
2022-12-26  1:49 WANG Xuerui
2022-12-26  1:49 WANG Xuerui
2022-12-24 17:12 James Le Cuirot
2021-07-21  2:22 Yixun Lan
2021-01-25 14:55 Aaron Bauman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1730013805.6a0e71a40d11953fa32e72c0064c6af08ec7bf98.graaff@gentoo \
    --to=graaff@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox