diff options
author | hubertf <hubertf@pkgsrc.org> | 2011-11-02 01:13:04 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2011-11-02 01:13:04 +0000 |
commit | 45b5a672bdfb0e234a7209f59366caba987cd232 (patch) | |
tree | ef3c569bbabe5f9d0eb8f697773f6df2794b9d14 /net/ucarp | |
parent | 29d35ae361beba3110614f4c0fb3a3d6bad7cc22 (diff) | |
download | pkgsrc-45b5a672bdfb0e234a7209f59366caba987cd232.tar.gz |
Update ucarp to 1.5.2. Changes:
* Version 1.5.2:
- Avoid adverts that might be twice what they should be on some Linux
systems (Steve Kehlet).
* Version 1.5.1:
- A new option has been added to try using broadcast advertisements instead
of multicast ones.
* Version 1.5:
- Breakage introducted with version 1.4 should finally be fixed, thanks to
Petr Kohts, Greg Walton and Steve Kehlet.
- A new option has been added to ignore unplugged network cable detection,
useful when nodes are connected with a crossover cable, not with a switch.
* Version 1.4:
- This version should finally fix every issue people had with gratuitous
ARP announcements.
- Nodes configured with the same intervals shouln't flip-flop any more.
* Version 1.3:
- Gratuitous ARP packets should now properly be sent, regardless of the
architecture.
- New option: -m (-xparam=...) in order to add arbitrary arguments to
up/down scripts.
- New option: -o (--passfile=...) in order to read the secret key from a
file.
- A delayed ARP request is sent after the first one when switching to
MASTER, in order to deal with some layer-3 switches.
- Bug fixes.
* Version 1.2:
- Neutral mode (--neutral).
- NetBSD compatibility.
- Minor bug fixes.
Diffstat (limited to 'net/ucarp')
-rw-r--r-- | net/ucarp/Makefile | 5 | ||||
-rw-r--r-- | net/ucarp/distinfo | 9 | ||||
-rw-r--r-- | net/ucarp/patches/patch-aa | 15 |
3 files changed, 22 insertions, 7 deletions
diff --git a/net/ucarp/Makefile b/net/ucarp/Makefile index 0d79e5d329f..bf9f9285ce9 100644 --- a/net/ucarp/Makefile +++ b/net/ucarp/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.12 2011/04/22 13:44:28 obache Exp $ +# $NetBSD: Makefile,v 1.13 2011/11/02 01:13:04 hubertf Exp $ # -DISTNAME= ucarp-1.1 -PKGREVISION= 2 +DISTNAME= ucarp-1.5.2 CATEGORIES= net MASTER_SITES= ftp://ftp.ucarp.org/pub/ucarp/ EXTRACT_SUFX= .tar.bz2 diff --git a/net/ucarp/distinfo b/net/ucarp/distinfo index 136cd218578..1ef4e133b08 100644 --- a/net/ucarp/distinfo +++ b/net/ucarp/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.3 2006/01/13 18:42:48 wiz Exp $ +$NetBSD: distinfo,v 1.4 2011/11/02 01:13:04 hubertf Exp $ -SHA1 (ucarp-1.1.tar.bz2) = 7f9409e3e42a77b9931ae738a5821af8f9b92ca4 -RMD160 (ucarp-1.1.tar.bz2) = a730330cf0d6c25c6f4f60459b61fcf96b904345 -Size (ucarp-1.1.tar.bz2) = 153690 bytes +SHA1 (ucarp-1.5.2.tar.bz2) = 0326fa7460eacd23b59216878524487265051cba +RMD160 (ucarp-1.5.2.tar.bz2) = 83f54644abddf4b27f1b829c2a3a0fc98861027b +Size (ucarp-1.5.2.tar.bz2) = 315414 bytes +SHA1 (patch-aa) = ef0d7b65f6a964607a695c7a33891d45fd116569 diff --git a/net/ucarp/patches/patch-aa b/net/ucarp/patches/patch-aa new file mode 100644 index 00000000000..a8bd5eaf134 --- /dev/null +++ b/net/ucarp/patches/patch-aa @@ -0,0 +1,15 @@ +$NetBSD: patch-aa,v 1.1 2011/11/02 01:13:04 hubertf Exp $ + +--- po/Makefile.in.in.orig 2011-10-27 14:16:54.000000000 +0000 ++++ po/Makefile.in.in +@@ -39,8 +39,8 @@ INSTALL_DATA = @INSTALL_DATA@ + # In automake >= 1.10, @mkdir_p@ is derived from ${MKDIR_P}, which is defined + # either as "/path/to/mkdir -p" or ".../install-sh -c -d". For these automake + # versions, $(mkinstalldirs) and $(install_sh) are unused. +-mkinstalldirs = $(SHELL) @install_sh@ -d +-install_sh = $(SHELL) @install_sh@ ++mkinstalldirs = @install_sh@ -d ++install_sh = @install_sh@ + MKDIR_P = @MKDIR_P@ + mkdir_p = @mkdir_p@ + |