public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "James Le Cuirot" <chewi@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/netevent/files/, net-misc/netevent/
Date: Thu, 25 Apr 2024 21:36:57 +0000 (UTC)	[thread overview]
Message-ID: <1714080986.90b54bdfc3627dfc67d71412457ac3ef251d62f9.chewi@gentoo> (raw)

commit:     90b54bdfc3627dfc67d71412457ac3ef251d62f9
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 25 21:35:34 2024 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Thu Apr 25 21:36:26 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90b54bdf

net-misc/netevent: Drop old 2.0_p20200217 and 2.2.1

Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

 net-misc/netevent/Manifest                         |  2 --
 net-misc/netevent/files/netevent-2.2.1-gcc13.patch | 24 --------------
 net-misc/netevent/netevent-2.0_p20200217.ebuild    | 36 ---------------------
 net-misc/netevent/netevent-2.2.1.ebuild            | 37 ----------------------
 4 files changed, 99 deletions(-)

diff --git a/net-misc/netevent/Manifest b/net-misc/netevent/Manifest
index 078422d988c5..b0334a79634a 100644
--- a/net-misc/netevent/Manifest
+++ b/net-misc/netevent/Manifest
@@ -1,3 +1 @@
-DIST netevent-2.0_p20200217.tar.gz 39237 BLAKE2B 543456de89c6c57c7fe086d6697ca687ce0a04fce67efda7162e516eb1dca3f31b6ce31e1f5d7481fe538364f9f597103e3b77f3864c41456c6fe9080bfb424a SHA512 921982c8d9153e627c7931059e6163213ba2ac907f4ae98bcde62645e774cc41077ee728b698f3fad6a639fda19f99f9e43103006abe645f1a4ac4d68cf393c7
-DIST netevent-2.2.1.tar.gz 40826 BLAKE2B 7620ecaead747f0684bd9f9ce0c8c3126cc67b9eafa747f43986f9e0f162f771604b4ec0e9aa070f773d4bd535a98d3164dbc9a868e1dc72ddd8063f0cd45559 SHA512 f597b82f7343b9f22c9c8533d9821763e82aeb0afddcfa109499555a6ed1e32f00f3cc9f36fe3eb5d524ad594e861382e33168ea4033a68abd15385b8edaeab9
 DIST netevent-2.2.2.tar.gz 40889 BLAKE2B a52a6b352d8f842aeb85f7c4d82ed1c5008966893ec7bc3236d212b988470a051d0c5d6dca1f36029b3a83c4c908cd7d64e5cd0203b0677857dd66613a0f2c5a SHA512 bd993529d69b18a1774042f61fe891fedba96d2d630dbe066c9d9b88d18268eaad49062c76f688712a927e495f29e7b176da64676c6ef6109b2e92117ef00e1b

diff --git a/net-misc/netevent/files/netevent-2.2.1-gcc13.patch b/net-misc/netevent/files/netevent-2.2.1-gcc13.patch
deleted file mode 100644
index 89a7ba359b38..000000000000
--- a/net-misc/netevent/files/netevent-2.2.1-gcc13.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-https://github.com/Blub/netevent/pull/29
-
-From 85f5db586dac20b69de1345c197e24be6123439d Mon Sep 17 00:00:00 2001
-From: Sam James <sam@gentoo.org>
-Date: Tue, 18 Apr 2023 07:40:05 +0100
-Subject: [PATCH] Fix build with GCC 13
-
-GCC 13 (as usual for new compiler releases) shuffles around some internal includes so some
-are no longer transitively included.
-
-See https://gnu.org/software/gcc/gcc-13/porting_to.html.
-
-Bug: https://bugs.gentoo.org/895142
---- a/src/socket.cpp
-+++ b/src/socket.cpp
-@@ -6,6 +6,7 @@
-  * SPDX-License-Identifier: GPL-2.0-or-later
-  */
- #include "socket.h"
-+#include <cstdint>
- #include <sys/socket.h>
- #include <sys/un.h>
- 
-

diff --git a/net-misc/netevent/netevent-2.0_p20200217.ebuild b/net-misc/netevent/netevent-2.0_p20200217.ebuild
deleted file mode 100644
index 2b5d47a93e73..000000000000
--- a/net-misc/netevent/netevent-2.0_p20200217.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-COMMIT="c2066fa55db6f51090e00a240889d2f0cbd0ab4d"
-DESCRIPTION="Tool to share Linux event devices with other machines"
-HOMEPAGE="https://github.com/Blub/netevent"
-SRC_URI="https://github.com/Blub/netevent/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64"
-IUSE="doc"
-
-BDEPEND="
-	doc? ( dev-python/docutils )
-"
-
-S="${WORKDIR}/${PN}-${COMMIT}"
-
-src_configure() {
-	tc-export CXX
-
-	# Not Autoconf.
-	RST2MAN=rst2man.py \
-	./configure \
-		--prefix="${EPREFIX}"/usr \
-		$(use_enable doc) \
-		|| die
-}
-
-src_compile() {
-	emake CPPFLAGS="-Wall -Wno-unknown-pragmas"
-}

diff --git a/net-misc/netevent/netevent-2.2.1.ebuild b/net-misc/netevent/netevent-2.2.1.ebuild
deleted file mode 100644
index 01deb12b4c43..000000000000
--- a/net-misc/netevent/netevent-2.2.1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs
-
-DESCRIPTION="Tool to share Linux event devices with other machines"
-HOMEPAGE="https://github.com/Blub/netevent"
-SRC_URI="https://github.com/Blub/netevent/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64"
-IUSE="doc"
-
-BDEPEND="
-	doc? ( dev-python/docutils )
-"
-
-PATCHES=(
-	"${FILESDIR}"/${PN}-2.2.1-gcc13.patch
-)
-
-src_configure() {
-	tc-export CXX
-
-	# Not Autoconf.
-	RST2MAN=rst2man.py \
-	./configure \
-		--prefix="${EPREFIX}"/usr \
-		$(use_enable doc) \
-		|| die
-}
-
-src_compile() {
-	emake CPPFLAGS="-Wall -Wno-unknown-pragmas"
-}


                 reply	other threads:[~2024-04-25 21:37 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=1714080986.90b54bdfc3627dfc67d71412457ac3ef251d62f9.chewi@gentoo \
    --to=chewi@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