public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-analyzer/net-snmp: ChangeLog net-snmp-5.4.1.1.ebuild
@ 2008-06-16 13:48 Peter Volkov (pva)
  0 siblings, 0 replies; 9+ messages in thread
From: Peter Volkov (pva) @ 2008-06-16 13:48 UTC (permalink / raw
  To: gentoo-commits

pva         08/06/16 13:48:22

  Modified:             ChangeLog
  Added:                net-snmp-5.4.1.1.ebuild
  Log:
  Version bump to fix security issue, bug #225105, thank Matthias Geerdsen and Robert Buchholz for report.
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.170                net-analyzer/net-snmp/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?rev=1.170&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?rev=1.170&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?r1=1.169&r2=1.170

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v
retrieving revision 1.169
retrieving revision 1.170
diff -u -r1.169 -r1.170
--- ChangeLog	7 Jun 2008 14:54:11 -0000	1.169
+++ ChangeLog	16 Jun 2008 13:48:22 -0000	1.170
@@ -1,6 +1,12 @@
 # ChangeLog for net-analyzer/net-snmp
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.169 2008/06/07 14:54:11 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.170 2008/06/16 13:48:22 pva Exp $
+
+*net-snmp-5.4.1.1 (16 Jun 2008)
+
+  16 Jun 2008; Peter Volkov <pva@gentoo.org> +net-snmp-5.4.1.1.ebuild:
+  Version bump to fix security issue, bug #225105, thank Matthias Geerdsen
+  and Robert Buchholz for report.
 
   07 Jun 2008; Diego Pettenò <flameeyes@gentoo.org>
   +files/net-snmp-5.4.1-perl-asneeded.patch, net-snmp-5.4.1-r4.ebuild:



1.1                  net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?rev=1.1&content-type=text/plain

Index: net-snmp-5.4.1.1.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild,v 1.1 2008/06/16 13:48:22 pva Exp $

inherit fixheadtails flag-o-matic perl-module python autotools

DESCRIPTION="Software for generating and retrieving SNMP data"
HOMEPAGE="http://net-snmp.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

LICENSE="as-is BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="diskio doc elf ipv6 lm_sensors mfd-rewrites minimal perl python rpm selinux smux ssl tcpd X sendmail extensible"

DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d )
	tcpd? ( >=sys-apps/tcp-wrappers-7.6 )
	rpm? (
		app-arch/rpm
		dev-libs/popt
		app-arch/bzip2
		>=sys-libs/zlib-1.1.4
	)
	elf? ( dev-libs/elfutils )
	lm_sensors? ( sys-apps/lm_sensors )
	python? ( dev-python/setuptools )"

RDEPEND="${DEPEND}
	perl? (
		X? ( dev-perl/perl-tk )
		!minimal? ( dev-perl/TermReadKey )
	)
	selinux? ( sec-policy/selinux-snmpd )"

DEPEND="${DEPEND}
	>=sys-apps/sed-4
	doc? ( app-doc/doxygen )"

src_unpack() {
	unpack ${A}
	cd "${S}"

	# fix access violation in make check
	sed -i -e 's/\(snmpd.*\)-Lf/\1-l/' testing/eval_tools.sh || \
		die "sed eval_tools.sh failed"
	# fix path in fixproc
	sed -i -e 's|\(database_file =.*\)/local\(.*\)$|\1\2|' local/fixproc || \
		die "sed fixproc failed"

	if use python ; then
		python_version
		PYTHON_MODNAME="netsnmp"
		PYTHON_DIR=/usr/$(get_libdir)/python${PYVER}/site-packages
		sed -i -e "s:\(install --basedir=\$\$dir\):\1 --root='${D}':" Makefile.in || die "sed python failed"
	fi

	# snmpd crashes when snmpd.conf contains more than one "exec shelltest" line
	epatch "${FILESDIR}"/${PN}-5.4-exec-crash.patch
	# agent: suppress annoying "registration != duplicate" warning for root oids
	epatch "${FILESDIR}"/${PN}-5.4.1-suppresssuppress-annoying.patch
	# Crash when more then one interface have the same IP, bug 203127
	epatch "${FILESDIR}"/${PN}-5.4.1-ipAddressTable-crash-with-double-free.patch
	# snmpconf generates config files with proper selinux context
	use selinux && epatch "${FILESDIR}"/${PN}-5.1.2-snmpconf-selinux.patch
	epatch "${FILESDIR}"/${PN}-5.4.1-clientaddr-fix.patch #180266
	epatch "${FILESDIR}"/${PN}-5.4.1-CVE-2008-2292.patch #222265
	epatch "${FILESDIR}"/${PN}-5.4.1-process-count-race.patch #213415
	epatch "${FILESDIR}"/${PN}-5.4.1-incorrect-hrFSStorageIndex.patch #211660
	epatch "${FILESDIR}"/${PN}-5.4.1-perl-asneeded.patch #224251

	# Fix version number to report 5.4.1.1:
	sed -i -e 's:NetSnmpVersionInfo = "5.4.1":NetSnmpVersionInfo = "5.4.1.1":' snmplib/snmp_version.c

	eautoreconf

	ht_fix_all
}

src_compile() {
	local mibs

	strip-flags

	mibs="host ucd-snmp/dlmod"
	use smux && mibs="${mibs} smux"
	use sendmail && mibs="${mibs} mibII/mta_sendmail"
	use lm_sensors && mibs="${mibs} ucd-snmp/lmSensors"
	use diskio && mibs="${mibs} ucd-snmp/diskio"
	use extensible && mibs="${mibs} ucd-snmp/extensible"

	econf \
		--with-install-prefix="${D}" \
		--with-sys-location="Unknown" \
		--with-sys-contact="root@Unknown" \
		--with-default-snmp-version="3" \
		--with-mib-modules="${mibs}" \
		--with-logfile="/var/log/net-snmpd.log" \
		--with-persistent-directory="/var/lib/net-snmp" \
		--enable-ucd-snmp-compatibility \
		--enable-shared \
		--enable-as-needed \
		$(use_enable mfd-rewrites) \
		$(use_enable perl embedded-perl) \
		$(use_enable ipv6) \
		$(use_enable !ssl internal-md5) \
		$(use_with ssl openssl) \
		$(use_with tcpd libwrap) \
		$(use_with rpm) \
		$(use_with rpm bzip2) \
		$(use_with rpm zlib) \
		$(use_with elf) \
		$(use_with python python-modules) \
		|| die "econf failed"

	emake -j1 || die "emake failed"

	if use perl ; then
		emake perlmodules || die "compile perl modules problem"
	fi

	if use python ; then
		emake pythonmodules || die "compile python modules problem"
	fi

	if use doc ; then
		einfo "Building HTML Documentation"
		make docsdox || die "failed to build docs"
	fi
}

src_test() {
	cd testing
	if ! make test ; then
		echo
		einfo "Don't be alarmed if a few tests FAIL."
		einfo "This could happen for several reasons:"
		einfo "    - You don't already have a working configuration."
		einfo "    - Your ethernet interface isn't properly configured."
		echo
	fi
}

src_install () {
	make DESTDIR="${D}" install || die "make install failed"

	if use perl ; then
		make DESTDIR="${D}" perlinstall || die "make perlinstall failed"
		fixlocalpod

		use X || rm -f "${D}/usr/bin/tkmib"
	else
		rm -f "${D}/usr/bin/mib2c" "${D}/usr/bin/tkmib" "${D}/usr/bin/snmpcheck"
	fi

	if use python ; then
		mkdir -p "${D}/${PYTHON_DIR}" || die "Couldn't make $PYTHON_DIR"
		make pythoninstall || die "make pythoninstall failed"
	fi

	dodoc AGENT.txt ChangeLog FAQ INSTALL NEWS PORTING README* TODO
	newdoc EXAMPLE.conf.def EXAMPLE.conf

	use doc && dohtml docs/html/*

	keepdir /etc/snmp /var/lib/net-snmp

	newinitd "${FILESDIR}"/snmpd.rc7 snmpd
	newconfd "${FILESDIR}"/snmpd.conf snmpd

	newinitd "${FILESDIR}"/snmptrapd.rc7 snmptrapd
	newconfd "${FILESDIR}"/snmptrapd.conf snmptrapd

	# Remove everything, keeping only the snmpd, snmptrapd, MIBs, libs, and includes.
	if use minimal; then
		elog "USE=minimal is set. Cleaning up excess cruft for a embedded/minimal/server only install."
		rm -rf
		"${D}"/usr/bin/{encode_keychange,snmp{get,getnext,set,usm,walk,bulkwalk,table,trap,bulkget,translate,status,delta,test,df,vacm,netstat,inform,snmpcheck}}
		rm -rf "${D}"/usr/share/snmp/snmpconf-data "${D}"/usr/share/snmp/*.conf
		rm -rf "${D}"/usr/bin/{fixproc,traptoemail} "${D}"/usr/bin/snmpc{heck,onf}
		find "${D}" -name '*.pl' -exec rm -f '{}' \;
		use ipv6 || rm -rf "${D}"/usr/share/snmp/mibs/IPV6*
	fi

	# bug 113788, install example config
	insinto /etc/snmp
	newins "${S}"/EXAMPLE.conf snmpd.conf.example
}

pkg_postrm() {
	if use python ; then
		python_mod_cleanup
	fi
}

pkg_postinst() {
	elog "An example configuration file has been installed in"
	elog "/etc/snmp/snmpd.conf.example."
}



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 9+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-analyzer/net-snmp: ChangeLog net-snmp-5.4.1.1.ebuild
@ 2008-06-16 18:52 Peter Volkov (pva)
  0 siblings, 0 replies; 9+ messages in thread
From: Peter Volkov (pva) @ 2008-06-16 18:52 UTC (permalink / raw
  To: gentoo-commits

pva         08/06/16 18:52:11

  Modified:             ChangeLog net-snmp-5.4.1.1.ebuild
  Log:
  Added dependency on autoconf-2.62 as a temporary measure untill we update dependency in autotools.eclass, fixes bug #225893, thank Mark Haney for report.
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.172                net-analyzer/net-snmp/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?rev=1.172&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?rev=1.172&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?r1=1.171&r2=1.172

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v
retrieving revision 1.171
retrieving revision 1.172
diff -u -r1.171 -r1.172
--- ChangeLog	16 Jun 2008 17:16:27 -0000	1.171
+++ ChangeLog	16 Jun 2008 18:52:10 -0000	1.172
@@ -1,6 +1,11 @@
 # ChangeLog for net-analyzer/net-snmp
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.171 2008/06/16 17:16:27 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.172 2008/06/16 18:52:10 pva Exp $
+
+  16 Jun 2008; Peter Volkov <pva@gentoo.org> net-snmp-5.4.1.1.ebuild:
+  Added dependency on autoconf-2.62 as a temporary measure untill we update
+  dependency in autotools.eclass, fixes bug #225893, thank Mark Haney for
+  report.
 
   16 Jun 2008; Peter Volkov <pva@gentoo.org> -files/snmpd-5.1.conf,
   -files/snmpd-5.1.rc6, -files/net-snmp-5.2.1-conf-elf-rpm-bz2.patch,



1.2                  net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?r1=1.1&r2=1.2

Index: net-snmp-5.4.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- net-snmp-5.4.1.1.ebuild	16 Jun 2008 13:48:22 -0000	1.1
+++ net-snmp-5.4.1.1.ebuild	16 Jun 2008 18:52:10 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild,v 1.1 2008/06/16 13:48:22 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild,v 1.2 2008/06/16 18:52:10 pva Exp $
 
 inherit fixheadtails flag-o-matic perl-module python autotools
 
@@ -32,7 +32,9 @@
 	)
 	selinux? ( sec-policy/selinux-snmpd )"
 
+# Dependency on autoconf due to bug #225893
 DEPEND="${DEPEND}
+	>=sys-devel/autoconf-2.62
 	>=sys-apps/sed-4
 	doc? ( app-doc/doxygen )"
 



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 9+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-analyzer/net-snmp: ChangeLog net-snmp-5.4.1.1.ebuild
@ 2008-06-21  6:35 Peter Volkov (pva)
  0 siblings, 0 replies; 9+ messages in thread
From: Peter Volkov (pva) @ 2008-06-21  6:35 UTC (permalink / raw
  To: gentoo-commits

pva         08/06/21 06:35:10

  Modified:             ChangeLog net-snmp-5.4.1.1.ebuild
  Log:
  autoconf-2.62 is not ready to be stabilized. Updating dependency to a patched version...
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.173                net-analyzer/net-snmp/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?rev=1.173&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?rev=1.173&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?r1=1.172&r2=1.173

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v
retrieving revision 1.172
retrieving revision 1.173
diff -u -r1.172 -r1.173
--- ChangeLog	16 Jun 2008 18:52:10 -0000	1.172
+++ ChangeLog	21 Jun 2008 06:35:10 -0000	1.173
@@ -1,6 +1,10 @@
 # ChangeLog for net-analyzer/net-snmp
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.172 2008/06/16 18:52:10 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.173 2008/06/21 06:35:10 pva Exp $
+
+  21 Jun 2008; Peter Volkov <pva@gentoo.org> net-snmp-5.4.1.1.ebuild:
+  autoconf-2.62 is not ready to be stabilized. Updating dependency to a
+  patched version...
 
   16 Jun 2008; Peter Volkov <pva@gentoo.org> net-snmp-5.4.1.1.ebuild:
   Added dependency on autoconf-2.62 as a temporary measure untill we update



1.3                  net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?r1=1.2&r2=1.3

Index: net-snmp-5.4.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- net-snmp-5.4.1.1.ebuild	16 Jun 2008 18:52:10 -0000	1.2
+++ net-snmp-5.4.1.1.ebuild	21 Jun 2008 06:35:10 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild,v 1.2 2008/06/16 18:52:10 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild,v 1.3 2008/06/21 06:35:10 pva Exp $
 
 inherit fixheadtails flag-o-matic perl-module python autotools
 
@@ -34,7 +34,7 @@
 
 # Dependency on autoconf due to bug #225893
 DEPEND="${DEPEND}
-	>=sys-devel/autoconf-2.62
+	>=sys-devel/autoconf-2.61-r2
 	>=sys-apps/sed-4
 	doc? ( app-doc/doxygen )"
 



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 9+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-analyzer/net-snmp: ChangeLog net-snmp-5.4.1.1.ebuild
@ 2008-06-21  9:24 Christian Faulhammer (opfer)
  0 siblings, 0 replies; 9+ messages in thread
From: Christian Faulhammer (opfer) @ 2008-06-21  9:24 UTC (permalink / raw
  To: gentoo-commits

opfer       08/06/21 09:24:55

  Modified:             ChangeLog net-snmp-5.4.1.1.ebuild
  Log:
  stable x86, security bug 225105
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.174                net-analyzer/net-snmp/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?rev=1.174&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?rev=1.174&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?r1=1.173&r2=1.174

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v
retrieving revision 1.173
retrieving revision 1.174
diff -u -r1.173 -r1.174
--- ChangeLog	21 Jun 2008 06:35:10 -0000	1.173
+++ ChangeLog	21 Jun 2008 09:24:54 -0000	1.174
@@ -1,6 +1,10 @@
 # ChangeLog for net-analyzer/net-snmp
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.173 2008/06/21 06:35:10 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.174 2008/06/21 09:24:54 opfer Exp $
+
+  21 Jun 2008; Christian Faulhammer <opfer@gentoo.org>
+  net-snmp-5.4.1.1.ebuild:
+  stable x86, security bug 225105
 
   21 Jun 2008; Peter Volkov <pva@gentoo.org> net-snmp-5.4.1.1.ebuild:
   autoconf-2.62 is not ready to be stabilized. Updating dependency to a



1.4                  net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?r1=1.3&r2=1.4

Index: net-snmp-5.4.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- net-snmp-5.4.1.1.ebuild	21 Jun 2008 06:35:10 -0000	1.3
+++ net-snmp-5.4.1.1.ebuild	21 Jun 2008 09:24:54 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild,v 1.3 2008/06/21 06:35:10 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild,v 1.4 2008/06/21 09:24:54 opfer Exp $
 
 inherit fixheadtails flag-o-matic perl-module python autotools
 
@@ -10,7 +10,7 @@
 
 LICENSE="as-is BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
 IUSE="diskio doc elf ipv6 lm_sensors mfd-rewrites minimal perl python rpm selinux smux ssl tcpd X sendmail extensible"
 
 DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d )



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 9+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-analyzer/net-snmp: ChangeLog net-snmp-5.4.1.1.ebuild
@ 2008-06-21 19:41 Markus Rothe (corsair)
  0 siblings, 0 replies; 9+ messages in thread
From: Markus Rothe (corsair) @ 2008-06-21 19:41 UTC (permalink / raw
  To: gentoo-commits

corsair     08/06/21 19:41:36

  Modified:             ChangeLog net-snmp-5.4.1.1.ebuild
  Log:
  Stable on ppc64; bug #225105
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.175                net-analyzer/net-snmp/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?rev=1.175&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?rev=1.175&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?r1=1.174&r2=1.175

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v
retrieving revision 1.174
retrieving revision 1.175
diff -u -r1.174 -r1.175
--- ChangeLog	21 Jun 2008 09:24:54 -0000	1.174
+++ ChangeLog	21 Jun 2008 19:41:36 -0000	1.175
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/net-snmp
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.174 2008/06/21 09:24:54 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.175 2008/06/21 19:41:36 corsair Exp $
+
+  21 Jun 2008; Markus Rothe <corsair@gentoo.org> net-snmp-5.4.1.1.ebuild:
+  Stable on ppc64; bug #225105
 
   21 Jun 2008; Christian Faulhammer <opfer@gentoo.org>
   net-snmp-5.4.1.1.ebuild:



1.5                  net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?r1=1.4&r2=1.5

Index: net-snmp-5.4.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- net-snmp-5.4.1.1.ebuild	21 Jun 2008 09:24:54 -0000	1.4
+++ net-snmp-5.4.1.1.ebuild	21 Jun 2008 19:41:36 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild,v 1.4 2008/06/21 09:24:54 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild,v 1.5 2008/06/21 19:41:36 corsair Exp $
 
 inherit fixheadtails flag-o-matic perl-module python autotools
 
@@ -10,7 +10,7 @@
 
 LICENSE="as-is BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86"
 IUSE="diskio doc elf ipv6 lm_sensors mfd-rewrites minimal perl python rpm selinux smux ssl tcpd X sendmail extensible"
 
 DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d )



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 9+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-analyzer/net-snmp: ChangeLog net-snmp-5.4.1.1.ebuild
@ 2008-06-22 11:08 Markus Meier (maekke)
  0 siblings, 0 replies; 9+ messages in thread
From: Markus Meier (maekke) @ 2008-06-22 11:08 UTC (permalink / raw
  To: gentoo-commits

maekke      08/06/22 11:08:06

  Modified:             ChangeLog net-snmp-5.4.1.1.ebuild
  Log:
  amd64 stable, bug #225105
  (Portage version: 2.2_rc1/cvs/Linux 2.6.26-rc6 i686)

Revision  Changes    Path
1.176                net-analyzer/net-snmp/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?rev=1.176&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?rev=1.176&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?r1=1.175&r2=1.176

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -r1.175 -r1.176
--- ChangeLog	21 Jun 2008 19:41:36 -0000	1.175
+++ ChangeLog	22 Jun 2008 11:08:05 -0000	1.176
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/net-snmp
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.175 2008/06/21 19:41:36 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.176 2008/06/22 11:08:05 maekke Exp $
+
+  22 Jun 2008; Markus Meier <maekke@gentoo.org> net-snmp-5.4.1.1.ebuild:
+  amd64 stable, bug #225105
 
   21 Jun 2008; Markus Rothe <corsair@gentoo.org> net-snmp-5.4.1.1.ebuild:
   Stable on ppc64; bug #225105



1.6                  net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?r1=1.5&r2=1.6

Index: net-snmp-5.4.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- net-snmp-5.4.1.1.ebuild	21 Jun 2008 19:41:36 -0000	1.5
+++ net-snmp-5.4.1.1.ebuild	22 Jun 2008 11:08:05 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild,v 1.5 2008/06/21 19:41:36 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild,v 1.6 2008/06/22 11:08:05 maekke Exp $
 
 inherit fixheadtails flag-o-matic perl-module python autotools
 
@@ -10,7 +10,7 @@
 
 LICENSE="as-is BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86"
 IUSE="diskio doc elf ipv6 lm_sensors mfd-rewrites minimal perl python rpm selinux smux ssl tcpd X sendmail extensible"
 
 DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d )



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 9+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-analyzer/net-snmp: ChangeLog net-snmp-5.4.1.1.ebuild
@ 2008-06-22 18:11 Raul Porcel (armin76)
  0 siblings, 0 replies; 9+ messages in thread
From: Raul Porcel (armin76) @ 2008-06-22 18:11 UTC (permalink / raw
  To: gentoo-commits

armin76     08/06/22 18:11:59

  Modified:             ChangeLog net-snmp-5.4.1.1.ebuild
  Log:
  alpha/ia64/sparc stable wrt security #225105
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.177                net-analyzer/net-snmp/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?rev=1.177&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?rev=1.177&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?r1=1.176&r2=1.177

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v
retrieving revision 1.176
retrieving revision 1.177
diff -u -r1.176 -r1.177
--- ChangeLog	22 Jun 2008 11:08:05 -0000	1.176
+++ ChangeLog	22 Jun 2008 18:11:58 -0000	1.177
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/net-snmp
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.176 2008/06/22 11:08:05 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.177 2008/06/22 18:11:58 armin76 Exp $
+
+  22 Jun 2008; Raúl Porcel <armin76@gentoo.org> net-snmp-5.4.1.1.ebuild:
+  alpha/ia64/sparc stable wrt security #225105
 
   22 Jun 2008; Markus Meier <maekke@gentoo.org> net-snmp-5.4.1.1.ebuild:
   amd64 stable, bug #225105



1.7                  net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?r1=1.6&r2=1.7

Index: net-snmp-5.4.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- net-snmp-5.4.1.1.ebuild	22 Jun 2008 11:08:05 -0000	1.6
+++ net-snmp-5.4.1.1.ebuild	22 Jun 2008 18:11:58 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild,v 1.6 2008/06/22 11:08:05 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild,v 1.7 2008/06/22 18:11:58 armin76 Exp $
 
 inherit fixheadtails flag-o-matic perl-module python autotools
 
@@ -10,7 +10,7 @@
 
 LICENSE="as-is BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ~ppc ppc64 ~s390 ~sh sparc x86"
 IUSE="diskio doc elf ipv6 lm_sensors mfd-rewrites minimal perl python rpm selinux smux ssl tcpd X sendmail extensible"
 
 DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d )



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 9+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-analyzer/net-snmp: ChangeLog net-snmp-5.4.1.1.ebuild
@ 2008-06-23 17:14 Jeroen Roovers (jer)
  0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2008-06-23 17:14 UTC (permalink / raw
  To: gentoo-commits

jer         08/06/23 17:14:00

  Modified:             ChangeLog net-snmp-5.4.1.1.ebuild
  Log:
  Stable for HPPA (bug #225105).
  (Portage version: 2.2_rc1/cvs/Linux 2.6.24-gentoo-r2-JeR i686)

Revision  Changes    Path
1.178                net-analyzer/net-snmp/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?rev=1.178&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?rev=1.178&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?r1=1.177&r2=1.178

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v
retrieving revision 1.177
retrieving revision 1.178
diff -u -r1.177 -r1.178
--- ChangeLog	22 Jun 2008 18:11:58 -0000	1.177
+++ ChangeLog	23 Jun 2008 17:13:59 -0000	1.178
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/net-snmp
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.177 2008/06/22 18:11:58 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.178 2008/06/23 17:13:59 jer Exp $
+
+  23 Jun 2008; Jeroen Roovers <jer@gentoo.org> net-snmp-5.4.1.1.ebuild:
+  Stable for HPPA (bug #225105).
 
   22 Jun 2008; Raúl Porcel <armin76@gentoo.org> net-snmp-5.4.1.1.ebuild:
   alpha/ia64/sparc stable wrt security #225105



1.8                  net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?r1=1.7&r2=1.8

Index: net-snmp-5.4.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- net-snmp-5.4.1.1.ebuild	22 Jun 2008 18:11:58 -0000	1.7
+++ net-snmp-5.4.1.1.ebuild	23 Jun 2008 17:13:59 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild,v 1.7 2008/06/22 18:11:58 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild,v 1.8 2008/06/23 17:13:59 jer Exp $
 
 inherit fixheadtails flag-o-matic perl-module python autotools
 
@@ -10,7 +10,7 @@
 
 LICENSE="as-is BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ~ppc ppc64 ~s390 ~sh sparc x86"
+KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ~ppc ppc64 ~s390 ~sh sparc x86"
 IUSE="diskio doc elf ipv6 lm_sensors mfd-rewrites minimal perl python rpm selinux smux ssl tcpd X sendmail extensible"
 
 DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d )



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 9+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-analyzer/net-snmp: ChangeLog net-snmp-5.4.1.1.ebuild
@ 2008-06-23 18:59 Brent Baude (ranger)
  0 siblings, 0 replies; 9+ messages in thread
From: Brent Baude (ranger) @ 2008-06-23 18:59 UTC (permalink / raw
  To: gentoo-commits

ranger      08/06/23 18:59:59

  Modified:             ChangeLog net-snmp-5.4.1.1.ebuild
  Log:
  Marking net-snmp-5.4.1.1 ppc for bug 225105
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.179                net-analyzer/net-snmp/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?rev=1.179&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?rev=1.179&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/ChangeLog?r1=1.178&r2=1.179

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v
retrieving revision 1.178
retrieving revision 1.179
diff -u -r1.178 -r1.179
--- ChangeLog	23 Jun 2008 17:13:59 -0000	1.178
+++ ChangeLog	23 Jun 2008 18:59:58 -0000	1.179
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/net-snmp
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.178 2008/06/23 17:13:59 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.179 2008/06/23 18:59:58 ranger Exp $
+
+  23 Jun 2008; Brent Baude <ranger@gentoo.org> net-snmp-5.4.1.1.ebuild:
+  Marking net-snmp-5.4.1.1 ppc for bug 225105
 
   23 Jun 2008; Jeroen Roovers <jer@gentoo.org> net-snmp-5.4.1.1.ebuild:
   Stable for HPPA (bug #225105).



1.9                  net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild?r1=1.8&r2=1.9

Index: net-snmp-5.4.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- net-snmp-5.4.1.1.ebuild	23 Jun 2008 17:13:59 -0000	1.8
+++ net-snmp-5.4.1.1.ebuild	23 Jun 2008 18:59:58 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild,v 1.8 2008/06/23 17:13:59 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.4.1.1.ebuild,v 1.9 2008/06/23 18:59:58 ranger Exp $
 
 inherit fixheadtails flag-o-matic perl-module python autotools
 
@@ -10,7 +10,7 @@
 
 LICENSE="as-is BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ~ppc ppc64 ~s390 ~sh sparc x86"
+KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86"
 IUSE="diskio doc elf ipv6 lm_sensors mfd-rewrites minimal perl python rpm selinux smux ssl tcpd X sendmail extensible"
 
 DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d )



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2008-06-23 19:00 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-21  9:24 [gentoo-commits] gentoo-x86 commit in net-analyzer/net-snmp: ChangeLog net-snmp-5.4.1.1.ebuild Christian Faulhammer (opfer)
  -- strict thread matches above, loose matches on Subject: below --
2008-06-23 18:59 Brent Baude (ranger)
2008-06-23 17:14 Jeroen Roovers (jer)
2008-06-22 18:11 Raul Porcel (armin76)
2008-06-22 11:08 Markus Meier (maekke)
2008-06-21 19:41 Markus Rothe (corsair)
2008-06-21  6:35 Peter Volkov (pva)
2008-06-16 18:52 Peter Volkov (pva)
2008-06-16 13:48 Peter Volkov (pva)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox