Package Details: ndppd 0.2.5-1

Git Clone URL: https://aur.archlinux.org/ndppd.git (read-only, click to copy)
Package Base: ndppd
Description: IPv6 NDP proxy daemon
Upstream URL: https://github.com/DanielAdolfsson/ndppd
Licenses: GPL3
Submitter: Thermi
Maintainer: Thermi
Last Packager: Thermi
Votes: 5
Popularity: 0.018477
First Submitted: 2015-10-11 16:55 (UTC)
Last Updated: 2016-06-22 11:47 (UTC)

Latest Comments

Red54 commented on 2024-10-26 07:50 (UTC)

This is what SUSE has done for SLE (SUSE Linux Enterprise), and this version has been tested for many years, so stability should not be a problem.

https://github.com/DanielAdolfsson/ndppd/compare/0.2.5...eb81b8f

https://packagehub.suse.com/packages/ndppd/

Red54 commented on 2024-10-26 05:05 (UTC)

@Thermi

Hello, maybe you should bump it to 0.2.5.43 (Commit eb81b8f, 43 commits after 0.2.5). https://api.opensuse.org/public/source/network/ndppd/ndppd-0.2.5.43.tar.xz

Reference: https://build.opensuse.org/package/show/network/ndppd https://src.opensuse.org/pool/ndppd https://github.com/DanielAdolfsson/ndppd/commit/eb81b8f

Thermi commented on 2016-10-30 19:26 (UTC)

@jowi24 No. I will not do that. The guidelines on the archlinux wiki state the following about the "arch" field: --- If instead a package can be compiled for any architecture, but is architecture-specific once compiled, specify all architectures officially supported by Arch, i.e. arch=('i686' 'x86_64'). ---

jowi24 commented on 2016-10-30 19:01 (UTC)

Please add armv7h, this package works on raspberry pi, too.

cmsigler commented on 2015-12-02 21:50 (UTC) (edited on 2015-12-02 21:51 (UTC) by cmsigler)

Hi, I made a simple change to PKGBUILD to get rid of a warning where etc/ndppd.conf was not included in the pkg file created. I just installed ndppd.conf-dist for that one. I also updated the version to 0.2.4. This builds OK for me on x86_64 without a warning, etc. Here's the (short) patch: ======== --- PKGBUILD.old 2015-10-11 12:55:14.000000000 -0400 +++ PKGBUILD 2015-12-02 16:38:10.406164945 -0500 @@ -1,7 +1,7 @@ # Maintainer: Thermi <noel [at] familie-kuntze dot de> pkgname=ndppd -pkgver=0.2.3 +pkgver=0.2.4 pkgrel=1 pkgdesc="IPv6 NDP proxy daemon" url='https://github.com/DanielAdolfsson/ndppd' @@ -12,7 +12,7 @@ source=("https://github.com/DanielAdolfsson/ndppd/archive/${pkgver}.tar.gz" "ndppd.service") -sha256sums=('e92292f326cbd5f96f277c753ee4b149b1d30d3f3e3fc4eb370b3704793771a7' +sha256sums=('dd6ca5b27a7aed4f23633888a1ff9c15b402911b4dc1b514854f54d12907ddd8' 'b8c1e3ab37cebc2aeb83873cba719fdc919fd5d2832170011ff8da471972e061') build() { @@ -25,5 +25,6 @@ cd "${srcdir}/${pkgname}-${pkgver}" make PREFIX=/usr SBINDIR=/${pkgdir}/usr/bin DESTDIR=${pkgdir} install install -D -m 644 "${srcdir}/ndppd.service" "${pkgdir}/usr/lib/systemd/system/ndppd.service" + install -D -m 644 ndppd.conf-dist "${pkgdir}/etc/ndppd.conf" } ======== HTH. Clemmitt