summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2024-04-25 22:35:34 +0100
committerJames Le Cuirot <chewi@gentoo.org>2024-04-25 22:36:26 +0100
commit90b54bdfc3627dfc67d71412457ac3ef251d62f9 (patch)
treecb584224dc31f2e82e80c00263105d22cc2f8af5
parentnet-misc/netevent: Bump to 2.2.2, fix building with newer docutils (diff)
downloadgentoo-90b54bdfc3627dfc67d71412457ac3ef251d62f9.tar.gz
gentoo-90b54bdfc3627dfc67d71412457ac3ef251d62f9.tar.bz2
gentoo-90b54bdfc3627dfc67d71412457ac3ef251d62f9.zip
net-misc/netevent: Drop old 2.0_p20200217 and 2.2.1
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
-rw-r--r--net-misc/netevent/Manifest2
-rw-r--r--net-misc/netevent/files/netevent-2.2.1-gcc13.patch24
-rw-r--r--net-misc/netevent/netevent-2.0_p20200217.ebuild36
-rw-r--r--net-misc/netevent/netevent-2.2.1.ebuild37
4 files changed, 0 insertions, 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"
-}