* [gentoo-commits] gentoo-x86 commit in net-analyzer/wireshark: ChangeLog wireshark-1.0.6.ebuild
@ 2009-02-07 12:24 Peter Volkov (pva)
0 siblings, 0 replies; 7+ messages in thread
From: Peter Volkov (pva) @ 2009-02-07 12:24 UTC (permalink / raw
To: gentoo-commits
pva 09/02/07 12:24:22
Modified: ChangeLog
Added: wireshark-1.0.6.ebuild
Log:
Version bump.
(Portage version: 2.1.6.7/cvs/Linux x86_64)
Revision Changes Path
1.146 net-analyzer/wireshark/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/ChangeLog?rev=1.146&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/ChangeLog?rev=1.146&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/ChangeLog?r1=1.145&r2=1.146
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v
retrieving revision 1.145
retrieving revision 1.146
diff -u -r1.145 -r1.146
--- ChangeLog 19 Jan 2009 09:40:18 -0000 1.145
+++ ChangeLog 7 Feb 2009 12:24:22 -0000 1.146
@@ -1,6 +1,11 @@
# ChangeLog for net-analyzer/wireshark
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v 1.145 2009/01/19 09:40:18 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v 1.146 2009/02/07 12:24:22 pva Exp $
+
+*wireshark-1.0.6 (07 Feb 2009)
+
+ 07 Feb 2009; Peter Volkov <pva@gentoo.org> +wireshark-1.0.6.ebuild:
+ Version bump.
*wireshark-1.1.2 (19 Jan 2009)
1.1 net-analyzer/wireshark/wireshark-1.0.6.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild?rev=1.1&content-type=text/plain
Index: wireshark-1.0.6.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild,v 1.1 2009/02/07 12:24:22 pva Exp $
EAPI=1
WANT_AUTOMAKE="1.9"
inherit autotools libtool flag-o-matic eutils toolchain-funcs
DESCRIPTION="A network protocol analyzer formerly known as ethereal"
HOMEPAGE="http://www.wireshark.org/"
# _rc versions has different download location.
[[ -n ${PV#*_rc} && ${PV#*_rc} != ${PV} ]] && {
SRC_URI="http://www.wireshark.org/download/prerelease/${PN}-${PV/_rc/pre}.tar.gz";
S=${WORKDIR}/${PN}-${PV/_rc/pre} ; } || \
SRC_URI="http://www.wireshark.org/download/src/all-versions/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="adns gtk ipv6 lua portaudio gnutls gcrypt zlib kerberos threads profile smi +pcap pcre +caps selinux"
RDEPEND="zlib? ( sys-libs/zlib )
smi? ( net-libs/libsmi )
gtk? ( >=dev-libs/glib-2.0.4
=x11-libs/gtk+-2*
x11-libs/pango
dev-libs/atk )
!gtk? ( =dev-libs/glib-1.2* )
gnutls? ( net-libs/gnutls )
gcrypt? ( dev-libs/libgcrypt )
pcap? ( net-libs/libpcap )
pcre? ( dev-libs/libpcre )
caps? ( sys-libs/libcap )
adns? ( net-libs/adns )
kerberos? ( virtual/krb5 )
portaudio? ( media-libs/portaudio )
lua? ( >=dev-lang/lua-5.1 )
selinux? ( sec-policy/selinux-wireshark )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.15.0
dev-lang/perl
sys-devel/bison
sys-devel/flex"
pkg_setup() {
if ! use gtk; then
ewarn "USE=-gtk will mean no gui called wireshark will be created and"
ewarn "only command line utils are available"
fi
# Add group for users allowed to sniff.
enewgroup wireshark || die "Failed to create wireshark group"
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PN}-0.99.7-asneeded.patch"
epatch "${FILESDIR}/${PN}-0.99.8-as-needed.patch"
epatch "${FILESDIR}/${PN}-1.0.5-text2pcap-protos.patch"
cd "${S}/epan"
epatch "${FILESDIR}/wireshark-except-double-free.diff"
cd "${S}"
eautoreconf
}
src_compile() {
# optimization bug, see bug #165340, bug #40660
if [[ $(gcc-version) == 3.4 ]] ; then
elog "Found gcc 3.4, forcing -O3 into CFLAGS"
replace-flags -O? -O3
elif [[ $(gcc-version) == 3.3 || $(gcc-version) == 3.2 ]] ; then
elog "Found <=gcc-3.3, forcing -O into CFLAGS"
replace-flags -O? -O
fi
# see bug #133092; bugs.wireshark.org/bugzilla/show_bug.cgi?id=1001
# our hardened toolchain bug
filter-flags -fstack-protector
# profile and -fomit-frame-pointer are incompatible, bug #215806
use profile && filter-flags -fomit-frame-pointer
local myconf
if use gtk; then
einfo "Building with gtk support"
else
einfo "Building without gtk support"
myconf="${myconf} --disable-wireshark"
fi
# Workaround bug #213705. If krb5-config --libs has -lcrypto then pass
# --with-ssl to ./configure. (Mimics code from acinclude.m4).
if use kerberos; then
case `krb5-config --libs` in
*-lcrypto*) myconf="${myconf} --with-ssl" ;;
esac
fi
# dumpcap requires libcap, setuid-install requires dumpcap
econf $(use_enable gtk gtk2) \
$(use_enable profile profile-build) \
$(use_with gnutls) \
$(use_with gcrypt) \
$(use_enable gtk wireshark) \
$(use_enable ipv6) \
$(use_enable threads) \
$(use_with lua) \
$(use_with adns) \
$(use_with kerberos krb5) \
$(use_with smi libsmi) \
$(use_with pcap) \
$(use_with zlib) \
$(use_with pcre) \
$(use_with portaudio) \
$(use_with caps libcap) \
$(use_enable pcap setuid-install) \
--sysconfdir=/etc/wireshark \
${myconf}
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
fowners 0:wireshark /usr/bin/tshark
fperms 6550 /usr/bin/tshark
use pcap && fowners 0:wireshark /usr/bin/dumpcap
use pcap && fperms 6550 /usr/bin/dumpcap
insinto /usr/include/wiretap
doins wiretap/wtap.h
# FAQ is not required as is installed from help/faq.txt
dodoc AUTHORS ChangeLog NEWS README{,.bsd,.linux,.macos,.vmware} doc/randpkt.txt
if use gtk ; then
insinto /usr/share/icons/hicolor/16x16/apps
newins image/hi16-app-wireshark.png wireshark.png
insinto /usr/share/icons/hicolor/32x32/apps
newins image/hi32-app-wireshark.png wireshark.png
insinto /usr/share/icons/hicolor/48x48/apps
newins image/hi48-app-wireshark.png wireshark.png
insinto /usr/share/applications
doins wireshark.desktop
fi
}
pkg_postinst() {
echo
ewarn "With version 0.99.7, all function calls that require elevated privileges"
ewarn "have been moved out of the GUI to dumpcap. WIRESHARK CONTAINS OVER ONE"
ewarn "POINT FIVE MILLION LINES OF SOURCE CODE. DO NOT RUN THEM AS ROOT."
ewarn
ewarn "NOTE: To run wireshark as normal user you have to add yourself into"
ewarn "wireshark group. This security measure ensures that only trusted"
ewarn "users allowed to sniff your traffic."
echo
}
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-analyzer/wireshark: ChangeLog wireshark-1.0.6.ebuild
@ 2009-02-07 15:47 Tobias Klausmann (klausman)
0 siblings, 0 replies; 7+ messages in thread
From: Tobias Klausmann (klausman) @ 2009-02-07 15:47 UTC (permalink / raw
To: gentoo-commits
klausman 09/02/07 15:47:48
Modified: ChangeLog wireshark-1.0.6.ebuild
Log:
Stable on alpha, bug #258013
(Portage version: 2.1.6.7/cvs/Linux x86_64)
Revision Changes Path
1.147 net-analyzer/wireshark/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/ChangeLog?rev=1.147&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/ChangeLog?rev=1.147&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/ChangeLog?r1=1.146&r2=1.147
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v
retrieving revision 1.146
retrieving revision 1.147
diff -u -r1.146 -r1.147
--- ChangeLog 7 Feb 2009 12:24:22 -0000 1.146
+++ ChangeLog 7 Feb 2009 15:47:47 -0000 1.147
@@ -1,6 +1,10 @@
# ChangeLog for net-analyzer/wireshark
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v 1.146 2009/02/07 12:24:22 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v 1.147 2009/02/07 15:47:47 klausman Exp $
+
+ 07 Feb 2009; Tobias Klausmann <klausman@gentoo.org>
+ wireshark-1.0.6.ebuild:
+ Stable on alpha, bug #258013
*wireshark-1.0.6 (07 Feb 2009)
1.2 net-analyzer/wireshark/wireshark-1.0.6.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild?r1=1.1&r2=1.2
Index: wireshark-1.0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- wireshark-1.0.6.ebuild 7 Feb 2009 12:24:22 -0000 1.1
+++ wireshark-1.0.6.ebuild 7 Feb 2009 15:47:47 -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/wireshark/wireshark-1.0.6.ebuild,v 1.1 2009/02/07 12:24:22 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild,v 1.2 2009/02/07 15:47:47 klausman Exp $
EAPI=1
WANT_AUTOMAKE="1.9"
@@ -17,7 +17,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="adns gtk ipv6 lua portaudio gnutls gcrypt zlib kerberos threads profile smi +pcap pcre +caps selinux"
RDEPEND="zlib? ( sys-libs/zlib )
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-analyzer/wireshark: ChangeLog wireshark-1.0.6.ebuild
@ 2009-02-07 18:16 Jeroen Roovers (jer)
0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2009-02-07 18:16 UTC (permalink / raw
To: gentoo-commits
jer 09/02/07 18:16:31
Modified: ChangeLog wireshark-1.0.6.ebuild
Log:
Stable for HPPA (bug #258013).
(Portage version: 2.2_rc23/cvs/Linux i686)
Revision Changes Path
1.148 net-analyzer/wireshark/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/ChangeLog?rev=1.148&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/ChangeLog?rev=1.148&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/ChangeLog?r1=1.147&r2=1.148
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v
retrieving revision 1.147
retrieving revision 1.148
diff -u -r1.147 -r1.148
--- ChangeLog 7 Feb 2009 15:47:47 -0000 1.147
+++ ChangeLog 7 Feb 2009 18:16:31 -0000 1.148
@@ -1,6 +1,9 @@
# ChangeLog for net-analyzer/wireshark
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v 1.147 2009/02/07 15:47:47 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v 1.148 2009/02/07 18:16:31 jer Exp $
+
+ 07 Feb 2009; Jeroen Roovers <jer@gentoo.org> wireshark-1.0.6.ebuild:
+ Stable for HPPA (bug #258013).
07 Feb 2009; Tobias Klausmann <klausman@gentoo.org>
wireshark-1.0.6.ebuild:
1.3 net-analyzer/wireshark/wireshark-1.0.6.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild?r1=1.2&r2=1.3
Index: wireshark-1.0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- wireshark-1.0.6.ebuild 7 Feb 2009 15:47:47 -0000 1.2
+++ wireshark-1.0.6.ebuild 7 Feb 2009 18:16:31 -0000 1.3
@@ -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/wireshark/wireshark-1.0.6.ebuild,v 1.2 2009/02/07 15:47:47 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild,v 1.3 2009/02/07 18:16:31 jer Exp $
EAPI=1
WANT_AUTOMAKE="1.9"
@@ -17,7 +17,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="alpha ~amd64 hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="adns gtk ipv6 lua portaudio gnutls gcrypt zlib kerberos threads profile smi +pcap pcre +caps selinux"
RDEPEND="zlib? ( sys-libs/zlib )
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-analyzer/wireshark: ChangeLog wireshark-1.0.6.ebuild
@ 2009-02-08 14:08 Markus Meier (maekke)
0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2009-02-08 14:08 UTC (permalink / raw
To: gentoo-commits
maekke 09/02/08 14:08:28
Modified: ChangeLog wireshark-1.0.6.ebuild
Log:
amd64/x86 stable, bug #258013
(Portage version: 2.1.6.7/cvs/Linux x86_64)
Revision Changes Path
1.149 net-analyzer/wireshark/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/ChangeLog?rev=1.149&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/ChangeLog?rev=1.149&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/ChangeLog?r1=1.148&r2=1.149
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v
retrieving revision 1.148
retrieving revision 1.149
diff -u -r1.148 -r1.149
--- ChangeLog 7 Feb 2009 18:16:31 -0000 1.148
+++ ChangeLog 8 Feb 2009 14:08:28 -0000 1.149
@@ -1,6 +1,9 @@
# ChangeLog for net-analyzer/wireshark
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v 1.148 2009/02/07 18:16:31 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v 1.149 2009/02/08 14:08:28 maekke Exp $
+
+ 08 Feb 2009; Markus Meier <maekke@gentoo.org> wireshark-1.0.6.ebuild:
+ amd64/x86 stable, bug #258013
07 Feb 2009; Jeroen Roovers <jer@gentoo.org> wireshark-1.0.6.ebuild:
Stable for HPPA (bug #258013).
1.4 net-analyzer/wireshark/wireshark-1.0.6.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild?r1=1.3&r2=1.4
Index: wireshark-1.0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- wireshark-1.0.6.ebuild 7 Feb 2009 18:16:31 -0000 1.3
+++ wireshark-1.0.6.ebuild 8 Feb 2009 14:08:28 -0000 1.4
@@ -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/wireshark/wireshark-1.0.6.ebuild,v 1.3 2009/02/07 18:16:31 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild,v 1.4 2009/02/08 14:08:28 maekke Exp $
EAPI=1
WANT_AUTOMAKE="1.9"
@@ -17,7 +17,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha ~amd64 hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
IUSE="adns gtk ipv6 lua portaudio gnutls gcrypt zlib kerberos threads profile smi +pcap pcre +caps selinux"
RDEPEND="zlib? ( sys-libs/zlib )
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-analyzer/wireshark: ChangeLog wireshark-1.0.6.ebuild
@ 2009-02-09 19:11 Raul Porcel (armin76)
0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2009-02-09 19:11 UTC (permalink / raw
To: gentoo-commits
armin76 09/02/09 19:11:25
Modified: ChangeLog wireshark-1.0.6.ebuild
Log:
ia64/sparc stable wrt #258013
(Portage version: 2.1.6.4/cvs/Linux 2.6.26-gentoo-r2 ia64)
Revision Changes Path
1.150 net-analyzer/wireshark/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/ChangeLog?rev=1.150&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/ChangeLog?rev=1.150&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/ChangeLog?r1=1.149&r2=1.150
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v
retrieving revision 1.149
retrieving revision 1.150
diff -u -r1.149 -r1.150
--- ChangeLog 8 Feb 2009 14:08:28 -0000 1.149
+++ ChangeLog 9 Feb 2009 19:11:25 -0000 1.150
@@ -1,6 +1,9 @@
# ChangeLog for net-analyzer/wireshark
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v 1.149 2009/02/08 14:08:28 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v 1.150 2009/02/09 19:11:25 armin76 Exp $
+
+ 09 Feb 2009; Raúl Porcel <armin76@gentoo.org> wireshark-1.0.6.ebuild:
+ ia64/sparc stable wrt #258013
08 Feb 2009; Markus Meier <maekke@gentoo.org> wireshark-1.0.6.ebuild:
amd64/x86 stable, bug #258013
1.5 net-analyzer/wireshark/wireshark-1.0.6.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild?r1=1.4&r2=1.5
Index: wireshark-1.0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- wireshark-1.0.6.ebuild 8 Feb 2009 14:08:28 -0000 1.4
+++ wireshark-1.0.6.ebuild 9 Feb 2009 19:11:25 -0000 1.5
@@ -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/wireshark/wireshark-1.0.6.ebuild,v 1.4 2009/02/08 14:08:28 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild,v 1.5 2009/02/09 19:11:25 armin76 Exp $
EAPI=1
WANT_AUTOMAKE="1.9"
@@ -17,7 +17,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 hppa ia64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
IUSE="adns gtk ipv6 lua portaudio gnutls gcrypt zlib kerberos threads profile smi +pcap pcre +caps selinux"
RDEPEND="zlib? ( sys-libs/zlib )
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-analyzer/wireshark: ChangeLog wireshark-1.0.6.ebuild
@ 2009-02-10 16:03 Brent Baude (ranger)
0 siblings, 0 replies; 7+ messages in thread
From: Brent Baude (ranger) @ 2009-02-10 16:03 UTC (permalink / raw
To: gentoo-commits
ranger 09/02/10 16:03:50
Modified: ChangeLog wireshark-1.0.6.ebuild
Log:
Marking wireshark-1.0.6 ppc64 for bug 258013
(Portage version: 2.1.6.6/cvs/Linux 2.6.24-gentoo-r3-g5-64 ppc64)
Revision Changes Path
1.151 net-analyzer/wireshark/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/ChangeLog?rev=1.151&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/ChangeLog?rev=1.151&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/ChangeLog?r1=1.150&r2=1.151
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -r1.150 -r1.151
--- ChangeLog 9 Feb 2009 19:11:25 -0000 1.150
+++ ChangeLog 10 Feb 2009 16:03:50 -0000 1.151
@@ -1,6 +1,9 @@
# ChangeLog for net-analyzer/wireshark
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v 1.150 2009/02/09 19:11:25 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v 1.151 2009/02/10 16:03:50 ranger Exp $
+
+ 10 Feb 2009; Brent Baude <ranger@gentoo.org> wireshark-1.0.6.ebuild:
+ Marking wireshark-1.0.6 ppc64 for bug 258013
09 Feb 2009; Raúl Porcel <armin76@gentoo.org> wireshark-1.0.6.ebuild:
ia64/sparc stable wrt #258013
1.6 net-analyzer/wireshark/wireshark-1.0.6.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild?r1=1.5&r2=1.6
Index: wireshark-1.0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- wireshark-1.0.6.ebuild 9 Feb 2009 19:11:25 -0000 1.5
+++ wireshark-1.0.6.ebuild 10 Feb 2009 16:03:50 -0000 1.6
@@ -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/wireshark/wireshark-1.0.6.ebuild,v 1.5 2009/02/09 19:11:25 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild,v 1.6 2009/02/10 16:03:50 ranger Exp $
EAPI=1
WANT_AUTOMAKE="1.9"
@@ -17,7 +17,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 hppa ia64 ~ppc ppc64 sparc x86 ~x86-fbsd"
IUSE="adns gtk ipv6 lua portaudio gnutls gcrypt zlib kerberos threads profile smi +pcap pcre +caps selinux"
RDEPEND="zlib? ( sys-libs/zlib )
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-analyzer/wireshark: ChangeLog wireshark-1.0.6.ebuild
@ 2009-02-11 17:14 Tobias Scherbaum (dertobi123)
0 siblings, 0 replies; 7+ messages in thread
From: Tobias Scherbaum (dertobi123) @ 2009-02-11 17:14 UTC (permalink / raw
To: gentoo-commits
dertobi123 09/02/11 17:14:37
Modified: ChangeLog wireshark-1.0.6.ebuild
Log:
ppc stable, bug #258013
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Revision Changes Path
1.152 net-analyzer/wireshark/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/ChangeLog?rev=1.152&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/ChangeLog?rev=1.152&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/ChangeLog?r1=1.151&r2=1.152
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -r1.151 -r1.152
--- ChangeLog 10 Feb 2009 16:03:50 -0000 1.151
+++ ChangeLog 11 Feb 2009 17:14:37 -0000 1.152
@@ -1,6 +1,10 @@
# ChangeLog for net-analyzer/wireshark
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v 1.151 2009/02/10 16:03:50 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v 1.152 2009/02/11 17:14:37 dertobi123 Exp $
+
+ 11 Feb 2009; Tobias Scherbaum <dertobi123@gentoo.org>
+ wireshark-1.0.6.ebuild:
+ ppc stable, bug #258013
10 Feb 2009; Brent Baude <ranger@gentoo.org> wireshark-1.0.6.ebuild:
Marking wireshark-1.0.6 ppc64 for bug 258013
1.7 net-analyzer/wireshark/wireshark-1.0.6.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild?r1=1.6&r2=1.7
Index: wireshark-1.0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- wireshark-1.0.6.ebuild 10 Feb 2009 16:03:50 -0000 1.6
+++ wireshark-1.0.6.ebuild 11 Feb 2009 17:14:37 -0000 1.7
@@ -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/wireshark/wireshark-1.0.6.ebuild,v 1.6 2009/02/10 16:03:50 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-1.0.6.ebuild,v 1.7 2009/02/11 17:14:37 dertobi123 Exp $
EAPI=1
WANT_AUTOMAKE="1.9"
@@ -17,7 +17,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ~ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
IUSE="adns gtk ipv6 lua portaudio gnutls gcrypt zlib kerberos threads profile smi +pcap pcre +caps selinux"
RDEPEND="zlib? ( sys-libs/zlib )
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2009-02-11 17:14 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-07 12:24 [gentoo-commits] gentoo-x86 commit in net-analyzer/wireshark: ChangeLog wireshark-1.0.6.ebuild Peter Volkov (pva)
-- strict thread matches above, loose matches on Subject: below --
2009-02-07 15:47 Tobias Klausmann (klausman)
2009-02-07 18:16 Jeroen Roovers (jer)
2009-02-08 14:08 Markus Meier (maekke)
2009-02-09 19:11 Raul Porcel (armin76)
2009-02-10 16:03 Brent Baude (ranger)
2009-02-11 17:14 Tobias Scherbaum (dertobi123)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox