* [gentoo-commits] gentoo-x86 commit in net-analyzer/arping: ChangeLog arping-2.08-r1.ebuild
@ 2009-12-10 17:51 Jeroen Roovers (jer)
0 siblings, 0 replies; 4+ messages in thread
From: Jeroen Roovers (jer) @ 2009-12-10 17:51 UTC (permalink / raw
To: gentoo-commits
jer 09/12/10 17:51:34
Modified: ChangeLog
Added: arping-2.08-r1.ebuild
Log:
Fix executable name in man page and example script, and fix example script name (bug #257864). Use PN instead of hardcoding package name.
(Portage version: 2.2_rc57/cvs/Linux i686)
Revision Changes Path
1.39 net-analyzer/arping/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/arping/ChangeLog?rev=1.39&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/arping/ChangeLog?rev=1.39&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/arping/ChangeLog?r1=1.38&r2=1.39
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/arping/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog 28 Sep 2008 13:05:18 -0000 1.38
+++ ChangeLog 10 Dec 2009 17:51:34 -0000 1.39
@@ -1,6 +1,12 @@
# ChangeLog for net-analyzer/arping
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arping/ChangeLog,v 1.38 2008/09/28 13:05:18 cedk Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arping/ChangeLog,v 1.39 2009/12/10 17:51:34 jer Exp $
+
+*arping-2.08-r1 (10 Dec 2009)
+
+ 10 Dec 2009; Jeroen Roovers <jer@gentoo.org> +arping-2.08-r1.ebuild:
+ Fix executable name in man page and example script, and fix example script
+ name (bug #257864). Use PN instead of hardcoding package name.
*arping-2.08 (28 Sep 2008)
1.1 net-analyzer/arping/arping-2.08-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/arping/arping-2.08-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/arping/arping-2.08-r1.ebuild?rev=1.1&content-type=text/plain
Index: arping-2.08-r1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arping/arping-2.08-r1.ebuild,v 1.1 2009/12/10 17:51:34 jer Exp $
inherit toolchain-funcs
DESCRIPTION="A utility to see if a specific IP address is taken and what MAC address owns it"
HOMEPAGE="http://www.habets.pp.se/synscan/programs.php?prog=arping"
SRC_URI="ftp://ftp.habets.pp.se/pub/synscan/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="2"
KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE=""
DEPEND="net-libs/libpcap
>=net-libs/libnet-1.1.0-r3"
src_unpack() {
unpack ${A}
cd "${S}"
rm -f Makefile
# since we install as arping2, use arping2 in the man page
sed -i -e "s|\(${PN}\)|\12|g" ${PN}.8 || die "sed ${PN}.8 failed"
sed -i -e "s|\(${PN}\) |\12 |g" ${PN}-scan-net.sh || \
die "sed ${PN}-scan-net.sh failed"
}
src_compile() {
emake \
CC=$(tc-getCC) \
LDLIBS="-lpcap -lnet" \
arping-2/arping \
|| die
}
src_test() {
einfo "Selftest only works as root"
#make SUDO= HOST=`hostname` MAC=`ifconfig -a | fgrep HWaddr | sed 's/.*HWaddr //g'` test
}
src_install() {
newsbin ${PN}-2/${PN} ${PN}2 || die
newman ${PN}.8 ${PN}2.8
dodoc README
newdoc ${PN}{,2}-scan-net.sh
}
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-analyzer/arping: ChangeLog arping-2.08-r1.ebuild
@ 2009-12-10 18:00 Jeroen Roovers (jer)
0 siblings, 0 replies; 4+ messages in thread
From: Jeroen Roovers (jer) @ 2009-12-10 18:00 UTC (permalink / raw
To: gentoo-commits
jer 09/12/10 18:00:16
Modified: ChangeLog arping-2.08-r1.ebuild
Log:
Add yet more sed scripts (bug #257864).
(Portage version: 2.2_rc57/cvs/Linux i686)
Revision Changes Path
1.40 net-analyzer/arping/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/arping/ChangeLog?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/arping/ChangeLog?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/arping/ChangeLog?r1=1.39&r2=1.40
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/arping/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog 10 Dec 2009 17:51:34 -0000 1.39
+++ ChangeLog 10 Dec 2009 18:00:16 -0000 1.40
@@ -1,6 +1,9 @@
# ChangeLog for net-analyzer/arping
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arping/ChangeLog,v 1.39 2009/12/10 17:51:34 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arping/ChangeLog,v 1.40 2009/12/10 18:00:16 jer Exp $
+
+ 10 Dec 2009; Jeroen Roovers <jer@gentoo.org> arping-2.08-r1.ebuild:
+ Add yet more sed scripts (bug #257864).
*arping-2.08-r1 (10 Dec 2009)
1.2 net-analyzer/arping/arping-2.08-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/arping/arping-2.08-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/arping/arping-2.08-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/arping/arping-2.08-r1.ebuild?r1=1.1&r2=1.2
Index: arping-2.08-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/arping/arping-2.08-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- arping-2.08-r1.ebuild 10 Dec 2009 17:51:34 -0000 1.1
+++ arping-2.08-r1.ebuild 10 Dec 2009 18:00:16 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arping/arping-2.08-r1.ebuild,v 1.1 2009/12/10 17:51:34 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arping/arping-2.08-r1.ebuild,v 1.2 2009/12/10 18:00:16 jer Exp $
inherit toolchain-funcs
@@ -21,9 +21,15 @@
cd "${S}"
rm -f Makefile
# since we install as arping2, use arping2 in the man page
- sed -i -e "s|\(${PN}\)|\12|g" ${PN}.8 || die "sed ${PN}.8 failed"
- sed -i -e "s|\(${PN}\) |\12 |g" ${PN}-scan-net.sh || \
- die "sed ${PN}-scan-net.sh failed"
+ sed \
+ -e "s|\(${PN}\)|\12|g" \
+ -e "s|\(${PN}\)\(\W\)|\12\2|g" \
+ -e "s|${PN}2-|${PN}-|g" \
+ -e "s|(${PN}2 2.*\.x only)||g" \
+ -i ${PN}.8 || die "sed ${PN}.8 failed"
+ sed \
+ -e "s|\(${PN}\) |\12 |g" \
+ -i ${PN}-scan-net.sh || die "sed ${PN}-scan-net.sh failed"
}
src_compile() {
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-analyzer/arping: ChangeLog arping-2.08-r1.ebuild
@ 2010-01-01 17:35 Christian Faulhammer (fauli)
0 siblings, 0 replies; 4+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-01-01 17:35 UTC (permalink / raw
To: gentoo-commits
fauli 10/01/01 17:35:40
Modified: ChangeLog arping-2.08-r1.ebuild
Log:
Transfer Prefix keywords
(Portage version: 2.1.6.13/cvs/Linux i686)
Revision Changes Path
1.41 net-analyzer/arping/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/arping/ChangeLog?rev=1.41&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/arping/ChangeLog?rev=1.41&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/arping/ChangeLog?r1=1.40&r2=1.41
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/arping/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog 10 Dec 2009 18:00:16 -0000 1.40
+++ ChangeLog 1 Jan 2010 17:35:39 -0000 1.41
@@ -1,6 +1,10 @@
# ChangeLog for net-analyzer/arping
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arping/ChangeLog,v 1.40 2009/12/10 18:00:16 jer Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arping/ChangeLog,v 1.41 2010/01/01 17:35:39 fauli Exp $
+
+ 01 Jan 2010; Christian Faulhammer <fauli@gentoo.org>
+ arping-2.08-r1.ebuild:
+ Transfer Prefix keywords
10 Dec 2009; Jeroen Roovers <jer@gentoo.org> arping-2.08-r1.ebuild:
Add yet more sed scripts (bug #257864).
1.3 net-analyzer/arping/arping-2.08-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/arping/arping-2.08-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/arping/arping-2.08-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/arping/arping-2.08-r1.ebuild?r1=1.2&r2=1.3
Index: arping-2.08-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/arping/arping-2.08-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- arping-2.08-r1.ebuild 10 Dec 2009 18:00:16 -0000 1.2
+++ arping-2.08-r1.ebuild 1 Jan 2010 17:35:39 -0000 1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arping/arping-2.08-r1.ebuild,v 1.2 2009/12/10 18:00:16 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arping/arping-2.08-r1.ebuild,v 1.3 2010/01/01 17:35:39 fauli Exp $
inherit toolchain-funcs
@@ -10,7 +10,7 @@
LICENSE="GPL-2"
SLOT="2"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
IUSE=""
DEPEND="net-libs/libpcap
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-analyzer/arping: ChangeLog arping-2.08-r1.ebuild
@ 2010-04-12 12:52 Alexis Ballier (aballier)
0 siblings, 0 replies; 4+ messages in thread
From: Alexis Ballier (aballier) @ 2010-04-12 12:52 UTC (permalink / raw
To: gentoo-commits
aballier 10/04/12 12:52:31
Modified: ChangeLog arping-2.08-r1.ebuild
Log:
keyword ~x86-fbsd thanks to Johan Hattne <johan.hattne@utsouthwestern.edu>, bug #306673
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.42 net-analyzer/arping/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/arping/ChangeLog?rev=1.42&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/arping/ChangeLog?rev=1.42&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/arping/ChangeLog?r1=1.41&r2=1.42
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/arping/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog 1 Jan 2010 17:35:39 -0000 1.41
+++ ChangeLog 12 Apr 2010 12:52:31 -0000 1.42
@@ -1,6 +1,10 @@
# ChangeLog for net-analyzer/arping
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arping/ChangeLog,v 1.41 2010/01/01 17:35:39 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arping/ChangeLog,v 1.42 2010/04/12 12:52:31 aballier Exp $
+
+ 12 Apr 2010; Alexis Ballier <aballier@gentoo.org> arping-2.08-r1.ebuild:
+ keyword ~x86-fbsd thanks to Johan Hattne
+ <johan.hattne@utsouthwestern.edu>, bug #306673
01 Jan 2010; Christian Faulhammer <fauli@gentoo.org>
arping-2.08-r1.ebuild:
1.4 net-analyzer/arping/arping-2.08-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/arping/arping-2.08-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/arping/arping-2.08-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/arping/arping-2.08-r1.ebuild?r1=1.3&r2=1.4
Index: arping-2.08-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/arping/arping-2.08-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- arping-2.08-r1.ebuild 1 Jan 2010 17:35:39 -0000 1.3
+++ arping-2.08-r1.ebuild 12 Apr 2010 12:52:31 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arping/arping-2.08-r1.ebuild,v 1.3 2010/01/01 17:35:39 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arping/arping-2.08-r1.ebuild,v 1.4 2010/04/12 12:52:31 aballier Exp $
inherit toolchain-funcs
@@ -10,7 +10,7 @@
LICENSE="GPL-2"
SLOT="2"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
IUSE=""
DEPEND="net-libs/libpcap
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-04-12 12:52 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-10 18:00 [gentoo-commits] gentoo-x86 commit in net-analyzer/arping: ChangeLog arping-2.08-r1.ebuild Jeroen Roovers (jer)
-- strict thread matches above, loose matches on Subject: below --
2010-04-12 12:52 Alexis Ballier (aballier)
2010-01-01 17:35 Christian Faulhammer (fauli)
2009-12-10 17:51 Jeroen Roovers (jer)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox