From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libdnet/files/, dev-libs/libdnet/
Date: Fri, 21 Mar 2025 11:05:54 +0000 (UTC) [thread overview]
Message-ID: <1742555134.e9b545ca3f8003b8d51c0844e9862158a88adc41.sam@gentoo> (raw)
commit: e9b545ca3f8003b8d51c0844e9862158a88adc41
Author: Z. Liu <zhixu.liu <AT> gmail <DOT> com>
AuthorDate: Fri Mar 21 10:43:05 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 21 11:05:34 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9b545ca
dev-libs/libdnet: fix error on incompatible-function-pointer-types
no repsonse from upstream for the PR after 30 days
Closes: https://bugs.gentoo.org/933360
Signed-off-by: Z. Liu <zhixu.liu <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/41209
Signed-off-by: Sam James <sam <AT> gentoo.org>
...-1.18.0-fix-incompatible-function-pointer.patch | 110 +++++++++++++++++++++
dev-libs/libdnet/libdnet-1.18.0-r2.ebuild | 102 +++++++++++++++++++
2 files changed, 212 insertions(+)
diff --git a/dev-libs/libdnet/files/libdnet-1.18.0-fix-incompatible-function-pointer.patch b/dev-libs/libdnet/files/libdnet-1.18.0-fix-incompatible-function-pointer.patch
new file mode 100644
index 000000000000..054bb9853ce9
--- /dev/null
+++ b/dev-libs/libdnet/files/libdnet-1.18.0-fix-incompatible-function-pointer.patch
@@ -0,0 +1,110 @@
+https://github.com/ofalk/libdnet/pull/104
+
+From de57a2349172148496386e284db91abe6406b02a Mon Sep 17 00:00:00 2001
+From: "Z. Liu" <zhixu.liu@gmail.com>
+Date: Wed, 19 Feb 2025 11:37:37 +0800
+Subject: [PATCH] python/dnet.pyx: fix incompatible-function-pointer-types for
+ modern compiler
+
+which is error now, see https://bugs.gentoo.org/933360,
+clang 19 (maybe earlier) has the same problem too
+
+Signed-off-by: Z. Liu <zhixu.liu@gmail.com>
+
+diff --git a/python/dnet.pyx b/python/dnet.pyx
+index 4e3604f..04db2c6 100644
+--- a/python/dnet.pyx
++++ b/python/dnet.pyx
+@@ -661,7 +661,7 @@ cdef extern from *:
+ addr_t arp_ha
+ ctypedef struct arp_t:
+ int __xxx
+- ctypedef int (*arp_handler)(arp_entry *entry, void *arg) except -1
++ ctypedef int (*arp_handler)(const arp_entry *entry, void *arg) except -1
+
+ arp_t *arp_open()
+ int arp_add(arp_t *arp, arp_entry *entry)
+@@ -687,7 +687,7 @@ ARP_OP_REPLY = 2 # /* response giving hardware address */
+ ARP_OP_REVREQUEST = 3 # /* request to resolve pa given ha */
+ ARP_OP_REVREPLY = 4 # /* response giving protocol address */
+
+-cdef int __arp_callback(arp_entry *entry, void *arg) except -1:
++cdef int __arp_callback(const arp_entry *entry, void *arg) except -1:
+ f, a = <object>arg
+ pa, ha = addr(), addr()
+ (<addr>pa)._addr = entry.arp_pa
+@@ -911,7 +911,7 @@ cdef extern from *:
+ addr_t intf_alias_addrs[8] # XXX
+ ctypedef struct intf_t:
+ int __xxx
+- ctypedef int (*intf_handler)(intf_entry *entry, void *arg) except -1
++ ctypedef int (*intf_handler)(const intf_entry *entry, void *arg) except -1
+
+ intf_t *intf_open()
+ int intf_get(intf_t *intf, intf_entry *entry)
+@@ -933,7 +933,7 @@ INTF_FLAG_NOARP = 0x08 # /* disable ARP */
+ INTF_FLAG_BROADCAST = 0x10 # /* supports broadcast (r/o) */
+ INTF_FLAG_MULTICAST = 0x20 # /* supports multicast (r/o) */
+
+-cdef object ifent_to_dict(intf_entry *entry):
++cdef object ifent_to_dict(const intf_entry *entry):
+ d = {}
+ d['name'] = entry.intf_name
+ d['type'] = entry.intf_type
+@@ -970,7 +970,7 @@ cdef dict_to_ifent(object d, intf_entry *entry):
+ for i from 0 <= i < entry.intf_alias_num:
+ entry.intf_alias_addrs[i] = (<addr>d['alias_addrs'][i])._addr
+
+-cdef int __intf_callback(intf_entry *entry, void *arg) except -1:
++cdef int __intf_callback(const intf_entry *entry, void *arg) except -1:
+ f, a = <object>arg
+ ret = f(ifent_to_dict(entry), a)
+ if not ret:
+@@ -1077,7 +1077,7 @@ cdef extern from *:
+ addr_t route_gw
+ ctypedef struct route_t:
+ int __xxx
+- ctypedef int (*route_handler)(route_entry *entry, void *arg) except -1
++ ctypedef int (*route_handler)(const route_entry *entry, void *arg) except -1
+
+ route_t *route_open()
+ int route_add(route_t *route, route_entry *entry)
+@@ -1086,7 +1086,7 @@ cdef extern from *:
+ int route_loop(route_t *route, route_handler callback, void *arg)
+ route_t *route_close(route_t *route)
+
+-cdef int __route_callback(route_entry *entry, void *arg) except -1:
++cdef int __route_callback(const route_entry *entry, void *arg) except -1:
+ f, a = <object>arg
+ dst, gw = addr(), addr()
+ (<addr>dst)._addr = entry.route_dst
+@@ -1183,7 +1183,7 @@ cdef extern from *:
+
+ ctypedef struct fw_t:
+ int __xxx
+- ctypedef int (*fw_handler)(fw_rule *rule, void *arg) except -1
++ ctypedef int (*fw_handler)(const fw_rule *rule, void *arg) except -1
+
+ fw_t *fw_open()
+ int fw_add(fw_t *f, fw_rule *rule)
+@@ -1197,7 +1197,7 @@ FW_OP_BLOCK = 2
+ FW_DIR_IN = 1
+ FW_DIR_OUT = 2
+
+-cdef object rule_to_dict(fw_rule *rule):
++cdef object rule_to_dict(const fw_rule *rule):
+ d = {}
+ d['device'] = rule.fw_device
+ d['op'] = rule.fw_op
+@@ -1235,7 +1235,7 @@ cdef dict_to_rule(object d, fw_rule *rule):
+ rule.fw_dport[0] = d['dport'][0]
+ rule.fw_dport[1] = d['dport'][1]
+
+-cdef int __fw_callback(fw_rule *rule, void *arg) except -1:
++cdef int __fw_callback(const fw_rule *rule, void *arg) except -1:
+ f, a = <object>arg
+ ret = f(rule_to_dict(rule), a)
+ if not ret:
+--
+2.45.2
+
diff --git a/dev-libs/libdnet/libdnet-1.18.0-r2.ebuild b/dev-libs/libdnet/libdnet-1.18.0-r2.ebuild
new file mode 100644
index 000000000000..d85041804c8a
--- /dev/null
+++ b/dev-libs/libdnet/libdnet-1.18.0-r2.ebuild
@@ -0,0 +1,102 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+DISTUTILS_EXT=1
+DISTUTILS_OPTIONAL=1
+DISTUTILS_USE_PEP517=setuptools
+
+inherit autotools distutils-r1
+
+DESCRIPTION="Simplified, portable interface to several low-level networking routines"
+HOMEPAGE="https://github.com/ofalk/libdnet"
+SRC_URI="https://github.com/ofalk/${PN}/archive/${P}.tar.gz"
+S="${WORKDIR}/${PN}-${P}"
+
+LICENSE="LGPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
+IUSE="python test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+DEPEND="
+ dev-libs/libbsd
+ python? ( ${PYTHON_DEPS} )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+ python? (
+ ${DISTUTILS_DEPS}
+ dev-python/cython[${PYTHON_USEDEP}]
+ )
+ test? ( dev-libs/check )
+"
+
+PATCHES=(
+ "${FILESDIR}/${PN}-1.18.0-fix-incompatible-function-pointer.patch"
+)
+
+DOCS=( README.md THANKS )
+
+src_prepare() {
+ default
+
+ sed -i \
+ -e 's/libcheck.a/libcheck.so/g' \
+ configure.ac || die
+ sed -i \
+ -e "s/lib\/libcheck/$(get_libdir)\/libcheck/g" \
+ configure.ac || die
+ sed -i \
+ -e 's|-L$libdir ||g' \
+ dnet-config.in || die
+ sed -i \
+ -e '/^SUBDIRS/s|python||g' \
+ Makefile.am || die
+
+ # Stale e.g. pkg-config macros w/ bashisms
+ rm aclocal.m4 {config,m4}/libtool.m4 || die
+
+ AT_M4DIR="config" eautoreconf
+
+ if use python; then
+ cd python || die
+ distutils-r1_src_prepare
+ fi
+}
+
+src_configure() {
+ econf \
+ $(use_with python) \
+ $(use_enable test check)
+}
+
+src_compile() {
+ default
+
+ if use python; then
+ cd python || die
+ distutils-r1_src_compile
+ fi
+}
+
+src_test() {
+ # https://bugs.gentoo.org/778797#c4
+ # check_ip needs privileges and check_fw can't work on Linux
+ emake check XFAIL_TESTS="check_fw check_ip"
+}
+
+src_install() {
+ default
+
+ if use python; then
+ cd python || die
+ unset DOCS
+ distutils-r1_src_install
+ fi
+
+ find "${ED}" -name '*.la' -delete || die
+}
next reply other threads:[~2025-03-21 11:05 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-21 11:05 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-01-17 5:50 [gentoo-commits] repo/gentoo:master commit in: dev-libs/libdnet/files/, dev-libs/libdnet/ Sam James
2020-09-27 10:06 Jeroen Roovers
2020-09-26 9:12 Jeroen Roovers
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=1742555134.e9b545ca3f8003b8d51c0844e9862158a88adc41.sam@gentoo \
--to=sam@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