public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-power/nut: ChangeLog nut-2.4.3-r2.ebuild
@ 2010-06-17 19:38 Robin H. Johnson (robbat2)
  0 siblings, 0 replies; 7+ messages in thread
From: Robin H. Johnson (robbat2) @ 2010-06-17 19:38 UTC (permalink / raw
  To: gentoo-commits

robbat2     10/06/17 19:38:18

  Modified:             ChangeLog
  Added:                nut-2.4.3-r2.ebuild
  Log:
  Bug #322083: avoid baselayout1 parse errors in powerfail script. Bug #322425: Avoid /usr and /var during shutdown as they may be gone already.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.75                 sys-power/nut/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/ChangeLog?rev=1.75&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/ChangeLog?rev=1.75&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/ChangeLog?r1=1.74&r2=1.75

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/nut/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -p -w -b -B -u -u -r1.74 -r1.75
--- ChangeLog	26 May 2010 10:29:58 -0000	1.74
+++ ChangeLog	17 Jun 2010 19:38:18 -0000	1.75
@@ -1,6 +1,13 @@
 # ChangeLog for sys-power/nut
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/nut/ChangeLog,v 1.74 2010/05/26 10:29:58 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/nut/ChangeLog,v 1.75 2010/06/17 19:38:18 robbat2 Exp $
+
+*nut-2.4.3-r2 (17 Jun 2010)
+
+  17 Jun 2010; Robin H. Johnson <robbat2@gentoo.org> +nut-2.4.3-r2.ebuild,
+  files/nut.powerfail.initd:
+  Bug #322083: avoid baselayout1 parse errors in powerfail script. Bug
+  #322425: Avoid /usr and /var during shutdown as they may be gone already.
 
   26 May 2010; Robin H. Johnson <robbat2@gentoo.org>
   files/nut-2.4.3-lowspeed-buffer-size.patch:



1.1                  sys-power/nut/nut-2.4.3-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild?rev=1.1&content-type=text/plain

Index: nut-2.4.3-r2.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild,v 1.1 2010/06/17 19:38:18 robbat2 Exp $

EAPI="2"

inherit eutils fixheadtails autotools bash-completion

MY_P="${P/_/-}"

DESCRIPTION="Network-UPS Tools"
HOMEPAGE="http://www.networkupstools.org/"
# Nut mirrors are presently broken
SRC_URI="http://random.networkupstools.org/source/${PV%.*}/${MY_P}.tar.gz
         http://www.networkupstools.org/source/${PV%.*}/${MY_P}.tar.gz"

S="${WORKDIR}/${MY_P}"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
IUSE="cgi snmp usb ssl hal xml"

RDEPEND="cgi? ( >=media-libs/gd-2[png] )
		snmp? ( net-analyzer/net-snmp )
		usb? ( =virtual/libusb-0* )
		hal? ( >=sys-apps/hal-0.5.11 )
		ssl? ( dev-libs/openssl )
		xml? ( >=net-misc/neon-0.25.0 )
		>=sys-fs/udev-114"
DEPEND="$RDEPEND
		>=sys-apps/sed-4
		>=sys-devel/autoconf-2.58
		dev-util/pkgconfig"

# public files should be 644 root:root
NUT_PUBLIC_FILES="/etc/nut/{ups,upssched}.conf"
# private files should be 640 root:nut - readable by nut, writeable by root,
NUT_PRIVATE_FILES="/etc/nut/{upsd.conf,upsd.users,upsmon.conf}"
# public files should be 644 root:root, only installed if USE=cgi
NUT_CGI_FILES="/etc/nut/{{hosts,upsset}.conf,upsstats{,-single}.html}"

pkg_setup() {
	enewgroup nut 84
	enewuser nut 84 -1 /var/lib/nut nut,uucp
	# As of udev-104, NUT must be in uucp and NOT in tty.
	gpasswd -d nut tty 2>/dev/null
	gpasswd -a nut uucp 2>/dev/null
	use hal && gpasswd -a haldaemon nut 2>/dev/null
	# in some cases on old systems it wasn't in the nut group either!
	gpasswd -a nut nut 2>/dev/null
	warningmsg ewarn
}

src_prepare() {
	ht_fix_file configure.in

	epatch "${FILESDIR}"/${PN}-2.4.1-no-libdummy.patch
	epatch "${FILESDIR}"/${PN}-2.4.3-lowspeed-buffer-size.patch

	sed -e "s:GD_LIBS.*=.*-L/usr/X11R6/lib \(.*\) -lXpm -lX11:GD_LIBS=\"\1:" \
		-i configure.in || die "sed failed"

	sed -e "s:52.nut-usbups.rules:70-nut-usbups.rules:" \
		-i scripts/udev/Makefile.am || die "sed failed"

	rm -f ltmain.sh m4/lt* m4/libtool.m4

	WANT_AUTOCONF=2.5 eautoreconf || die "autoconf failed"
}

src_configure() {
	local myconf

	if [ -n "${NUT_DRIVERS}" ]; then
		myconf="${myconf} --with-drivers=${NUT_DRIVERS// /,}"
	fi

	econf \
		--with-user=nut \
		--with-group=nut \
		--with-drvpath=/lib/nut \
		--sysconfdir=/etc/nut \
		--with-logfacility=LOG_DAEMON \
		--with-statepath=/var/lib/nut \
		--with-htmlpath=/usr/share/nut/html \
		--datarootdir=/usr/share/nut \
		--datadir=/usr/share/nut \
		--with-dev \
		$(use_with xml neon) \
		$(use_with hal) \
		$(use_with ssl) \
		$(use_with usb) \
		$(use_with snmp) \
		$(use_with cgi) \
		$(use_with cgi cgipath /usr/share/nut/cgi) \
		${myconf} || die "econf failed"

}

src_install() {

	emake DESTDIR="${D}" install || die "make install failed"

	dodir /sbin
	dosym /lib/nut/upsdrvctl /sbin/upsdrvctl
	# This needs to exist for the scripts
	dosym /lib/nut/upsdrvctl /usr/sbin/upsdrvctl

	if use cgi; then
		elog "CGI monitoring scripts are installed in /usr/share/nut/cgi."
		elog "copy them to your web server's ScriptPath to activate (this is a"
		elog "change from the old location)."
		elog "If you use lighttpd, see lighttpd_nut.conf in the documentation."
	fi

	# this must be done after all of the install phases
	for i in "${D}"/etc/nut/*.sample ; do
		mv "${i}" "${i/.sample/}"
	done

	dodoc ChangeLog INSTALL MAINTAINERS NEWS README UPGRADING \
			docs/{FAQ,*.txt} || die

	newdoc lib/README README.lib || die

	newdoc "${FILESDIR}"/lighttpd_nut.conf-2.2.0 lighttpd_nut.conf || die

	docinto cables
	dodoc docs/cables/* || die

	newinitd "${FILESDIR}"/nut-2.2.2-init.d-upsd upsd \
		|| die "newinitd failed"
	newinitd "${FILESDIR}"/nut-2.2.2-init.d-upsdrv upsdrv \
		|| die "newinitd failed"
	newinitd "${FILESDIR}"/nut-2.2.2-init.d-upsmon upsmon \
		|| die "newinitd failed"
	newinitd "${FILESDIR}"/nut.powerfail.initd nut.powerfail \
		|| die "newinitd failed"

	# This sets up permissions for nut to access a UPS
	insinto /etc/udev/rules.d/
	newins scripts/udev/nut-usbups.rules 70-nut-usbups.rules

	keepdir /var/lib/nut

	einfo "Setting up permissions on files and directories"
	fperms 0700 /var/lib/nut
	fowners nut:nut /var/lib/nut

	# Do not remove eval here, because the variables contain shell expansions.
	eval fperms 0640 ${NUT_PRIVATE_FILES}
	eval fowners root:nut ${NUT_PRIVATE_FILES}

	# Do not remove eval here, because the variables contain shell expansions.
	eval fperms 0644 ${NUT_PUBLIC_FILES}
	eval fowners root:root ${NUT_PUBLIC_FILES}

	# Do not remove eval here, because the variables contain shell expansions.
	if use cgi; then
		eval fperms 0644 ${NUT_CGI_FILES}
		eval fowners root:root ${NUT_CGI_FILES}
	fi

	# this is installed for 2.4 and fbsd guys
	if ! has_version sys-fs/udev; then
		einfo "Installing non-udev hotplug support"
		insinto /etc/hotplug/usb
		insopts -m 755
		doins scripts/hotplug/nut-usbups.hotplug
	fi

	if use hal; then
		einfo "Installing HAL support"
		insinto /usr/share/hal/fdi/information/20thirdparty/
		doins scripts/hal/20-ups-nut-device.fdi
		insinto /usr/libexec
		insopts -m 755
		doins drivers/hald-addon-*
		rm "${D}"/lib/nut/hald-addon-*
	fi

	dobashcompletion "${S}"/scripts/misc/nut.bash_completion
}

pkg_postinst() {
	# this is to ensure that everybody that installed old versions still has
	# correct permissions

	chown nut:nut "${ROOT}"/var/lib/nut 2>/dev/null
	chmod 0700 "${ROOT}"/var/lib/nut 2>/dev/null

	# Do not remove eval here, because the variables contain shell expansions.
	eval chown root:nut "${ROOT}"${NUT_PRIVATE_FILES} 2>/dev/null
	eval chmod 0640 "${ROOT}"${NUT_PRIVATE_FILES} 2>/dev/null

	# Do not remove eval here, because the variables contain shell expansions.
	eval chown root:root "${ROOT}"${NUT_PUBLIC_FILES} 2>/dev/null
	eval chmod 0644 "${ROOT}"${NUT_PUBLIC_FILES} 2>/dev/null

	# Do not remove eval here, because the variables contain shell expansions.
	if use cgi; then
		eval chown root:root "${ROOT}"${NUT_CGI_FILES} 2>/dev/null
		eval chmod 0644 "${ROOT}"${NUT_CGI_FILES} 2>/dev/null
	fi

	warningmsg elog
}

warningmsg() {
	msgfunc="$1"
	[ -z "$msgfunc" ] && die "msgfunc not specified in call to warningmsg!"
	${msgfunc} "Please note that NUT now runs under the 'nut' user."
	${msgfunc} "NUT is in the uucp group for access to RS-232 UPS."
	${msgfunc} "However if you use a USB UPS you may need to look at the udev or"
	${msgfunc} "hotplug rules that are installed, and alter them suitably."
	${msgfunc} ''
	${msgfunc} "If you use hald, you may be able to skip the normal init scripts."
	${msgfunc} ''
	${msgfunc} "You are strongly advised to read the UPGRADING file provided by upstream."
	${msgfunc} ''
	${msgfunc} "Please note that upsdrv is NOT automatically started by upsd anymore."
	${msgfunc} "If you have multiple UPS units, you can use their NUT names to"
	${msgfunc} "have a service per UPS:"
	${msgfunc} "ln -s /etc/init.d/upsdrv /etc/init.d/upsdrv.\$UPSNAME"
	${msgfunc} ''
	${msgfunc} 'If you want apcupsd to power off your UPS when it'
	${msgfunc} 'shuts down your system in a power failure, you must'
	${msgfunc} 'add nut.powerfail to your shutdown runlevel:'
	${msgfunc} ''
	${msgfunc} 'rc-update add nut.powerfail shutdown'
	${msgfunc} ''

}






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

* [gentoo-commits] gentoo-x86 commit in sys-power/nut: ChangeLog nut-2.4.3-r2.ebuild
@ 2010-07-01 19:19 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 7+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-07-01 19:19 UTC (permalink / raw
  To: gentoo-commits

ssuominen    10/07/01 19:19:30

  Modified:             ChangeLog nut-2.4.3-r2.ebuild
  Log:
  Fix building with -Wl,--as-needed wrt #318481 by Diego E. Pettenò.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.78                 sys-power/nut/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/ChangeLog?rev=1.78&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/ChangeLog?rev=1.78&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/ChangeLog?r1=1.77&r2=1.78

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/nut/ChangeLog,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- ChangeLog	25 Jun 2010 17:21:03 -0000	1.77
+++ ChangeLog	1 Jul 2010 19:19:30 -0000	1.78
@@ -1,6 +1,10 @@
 # ChangeLog for sys-power/nut
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/nut/ChangeLog,v 1.77 2010/06/25 17:21:03 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/nut/ChangeLog,v 1.78 2010/07/01 19:19:30 ssuominen Exp $
+
+  01 Jul 2010; Samuli Suominen <ssuominen@gentoo.org> nut-2.4.3-r2.ebuild,
+  +files/nut-2.4.3-asneeded.patch:
+  Fix building with -Wl,--as-needed wrt #318481 by Diego E. Pettenò.
 
   25 Jun 2010; Robin H. Johnson <robbat2@gentoo.org>
   files/nut.powerfail.initd:



1.4                  sys-power/nut/nut-2.4.3-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild?r1=1.3&r2=1.4

Index: nut-2.4.3-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- nut-2.4.3-r2.ebuild	22 Jun 2010 20:07:21 -0000	1.3
+++ nut-2.4.3-r2.ebuild	1 Jul 2010 19:19:30 -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/sys-power/nut/nut-2.4.3-r2.ebuild,v 1.3 2010/06/22 20:07:21 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild,v 1.4 2010/07/01 19:19:30 ssuominen Exp $
 
 EAPI="2"
 
@@ -57,6 +57,7 @@
 
 	epatch "${FILESDIR}"/${PN}-2.4.1-no-libdummy.patch
 	epatch "${FILESDIR}"/${PN}-2.4.3-lowspeed-buffer-size.patch
+	epatch "${FILESDIR}"/${PN}-2.4.3-asneeded.patch
 
 	sed -e "s:GD_LIBS.*=.*-L/usr/X11R6/lib \(.*\) -lXpm -lX11:GD_LIBS=\"\1:" \
 		-i configure.in || die "sed failed"






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

* [gentoo-commits] gentoo-x86 commit in sys-power/nut: ChangeLog nut-2.4.3-r2.ebuild
@ 2010-07-10 17:07 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 7+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-07-10 17:07 UTC (permalink / raw
  To: gentoo-commits

hwoarang    10/07/10 17:07:05

  Modified:             ChangeLog nut-2.4.3-r2.ebuild
  Log:
  Stable on amd64 wrt bug #321493
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.79                 sys-power/nut/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/ChangeLog?rev=1.79&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/ChangeLog?rev=1.79&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/ChangeLog?r1=1.78&r2=1.79

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/nut/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog	1 Jul 2010 19:19:30 -0000	1.78
+++ ChangeLog	10 Jul 2010 17:07:05 -0000	1.79
@@ -1,6 +1,9 @@
 # ChangeLog for sys-power/nut
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/nut/ChangeLog,v 1.78 2010/07/01 19:19:30 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/nut/ChangeLog,v 1.79 2010/07/10 17:07:05 hwoarang Exp $
+
+  10 Jul 2010; Markos Chandras <hwoarang@gentoo.org> nut-2.4.3-r2.ebuild:
+  Stable on amd64 wrt bug #321493
 
   01 Jul 2010; Samuli Suominen <ssuominen@gentoo.org> nut-2.4.3-r2.ebuild,
   +files/nut-2.4.3-asneeded.patch:



1.5                  sys-power/nut/nut-2.4.3-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild?r1=1.4&r2=1.5

Index: nut-2.4.3-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- nut-2.4.3-r2.ebuild	1 Jul 2010 19:19:30 -0000	1.4
+++ nut-2.4.3-r2.ebuild	10 Jul 2010 17:07:05 -0000	1.5
@@ -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/sys-power/nut/nut-2.4.3-r2.ebuild,v 1.4 2010/07/01 19:19:30 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild,v 1.5 2010/07/10 17:07:05 hwoarang Exp $
 
 EAPI="2"
 
@@ -18,7 +18,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
 IUSE="cgi snmp usb ssl hal xml"
 
 RDEPEND="cgi? ( >=media-libs/gd-2[png] )






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

* [gentoo-commits] gentoo-x86 commit in sys-power/nut: ChangeLog nut-2.4.3-r2.ebuild
@ 2010-07-14 13:11 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 7+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-07-14 13:11 UTC (permalink / raw
  To: gentoo-commits

fauli       10/07/14 13:11:28

  Modified:             ChangeLog nut-2.4.3-r2.ebuild
  Log:
  stable x86, bug 321493
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.80                 sys-power/nut/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/ChangeLog?rev=1.80&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/ChangeLog?rev=1.80&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/ChangeLog?r1=1.79&r2=1.80

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/nut/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog	10 Jul 2010 17:07:05 -0000	1.79
+++ ChangeLog	14 Jul 2010 13:11:28 -0000	1.80
@@ -1,6 +1,9 @@
 # ChangeLog for sys-power/nut
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/nut/ChangeLog,v 1.79 2010/07/10 17:07:05 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/nut/ChangeLog,v 1.80 2010/07/14 13:11:28 fauli Exp $
+
+  14 Jul 2010; Christian Faulhammer <fauli@gentoo.org> nut-2.4.3-r2.ebuild:
+  stable x86, bug 321493
 
   10 Jul 2010; Markos Chandras <hwoarang@gentoo.org> nut-2.4.3-r2.ebuild:
   Stable on amd64 wrt bug #321493



1.6                  sys-power/nut/nut-2.4.3-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild?r1=1.5&r2=1.6

Index: nut-2.4.3-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- nut-2.4.3-r2.ebuild	10 Jul 2010 17:07:05 -0000	1.5
+++ nut-2.4.3-r2.ebuild	14 Jul 2010 13:11:28 -0000	1.6
@@ -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/sys-power/nut/nut-2.4.3-r2.ebuild,v 1.5 2010/07/10 17:07:05 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild,v 1.6 2010/07/14 13:11:28 fauli Exp $
 
 EAPI="2"
 
@@ -18,7 +18,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~ppc ~sparc x86 ~x86-fbsd"
 IUSE="cgi snmp usb ssl hal xml"
 
 RDEPEND="cgi? ( >=media-libs/gd-2[png] )






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

* [gentoo-commits] gentoo-x86 commit in sys-power/nut: ChangeLog nut-2.4.3-r2.ebuild
@ 2010-07-25 12:55 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 7+ messages in thread
From: Tobias Klausmann (klausman) @ 2010-07-25 12:55 UTC (permalink / raw
  To: gentoo-commits

klausman    10/07/25 12:55:29

  Modified:             ChangeLog nut-2.4.3-r2.ebuild
  Log:
  Stable on alpha, bug #321493
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.81                 sys-power/nut/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/ChangeLog?rev=1.81&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/ChangeLog?rev=1.81&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/ChangeLog?r1=1.80&r2=1.81

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/nut/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog	14 Jul 2010 13:11:28 -0000	1.80
+++ ChangeLog	25 Jul 2010 12:55:28 -0000	1.81
@@ -1,6 +1,9 @@
 # ChangeLog for sys-power/nut
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/nut/ChangeLog,v 1.80 2010/07/14 13:11:28 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/nut/ChangeLog,v 1.81 2010/07/25 12:55:28 klausman Exp $
+
+  25 Jul 2010; Tobias Klausmann <klausman@gentoo.org> nut-2.4.3-r2.ebuild:
+  Stable on alpha, bug #321493
 
   14 Jul 2010; Christian Faulhammer <fauli@gentoo.org> nut-2.4.3-r2.ebuild:
   stable x86, bug 321493



1.7                  sys-power/nut/nut-2.4.3-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild?r1=1.6&r2=1.7

Index: nut-2.4.3-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- nut-2.4.3-r2.ebuild	14 Jul 2010 13:11:28 -0000	1.6
+++ nut-2.4.3-r2.ebuild	25 Jul 2010 12:55:28 -0000	1.7
@@ -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/sys-power/nut/nut-2.4.3-r2.ebuild,v 1.6 2010/07/14 13:11:28 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild,v 1.7 2010/07/25 12:55:28 klausman Exp $
 
 EAPI="2"
 
@@ -18,7 +18,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ppc ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~ppc ~sparc x86 ~x86-fbsd"
 IUSE="cgi snmp usb ssl hal xml"
 
 RDEPEND="cgi? ( >=media-libs/gd-2[png] )






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

* [gentoo-commits] gentoo-x86 commit in sys-power/nut: ChangeLog nut-2.4.3-r2.ebuild
@ 2010-09-18 16:44 Raul Porcel (armin76)
  0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2010-09-18 16:44 UTC (permalink / raw
  To: gentoo-commits

armin76     10/09/18 16:44:52

  Modified:             ChangeLog nut-2.4.3-r2.ebuild
  Log:
  sparc stable wrt #321493
  (Portage version: 2.1.8.3/cvs/Linux ia64)

Revision  Changes    Path
1.82                 sys-power/nut/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/ChangeLog?rev=1.82&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/ChangeLog?rev=1.82&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/ChangeLog?r1=1.81&r2=1.82

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/nut/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog	25 Jul 2010 12:55:28 -0000	1.81
+++ ChangeLog	18 Sep 2010 16:44:52 -0000	1.82
@@ -1,6 +1,9 @@
 # ChangeLog for sys-power/nut
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/nut/ChangeLog,v 1.81 2010/07/25 12:55:28 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/nut/ChangeLog,v 1.82 2010/09/18 16:44:52 armin76 Exp $
+
+  18 Sep 2010; Raúl Porcel <armin76@gentoo.org> nut-2.4.3-r2.ebuild:
+  sparc stable wrt #321493
 
   25 Jul 2010; Tobias Klausmann <klausman@gentoo.org> nut-2.4.3-r2.ebuild:
   Stable on alpha, bug #321493



1.8                  sys-power/nut/nut-2.4.3-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild?r1=1.7&r2=1.8

Index: nut-2.4.3-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- nut-2.4.3-r2.ebuild	25 Jul 2010 12:55:28 -0000	1.7
+++ nut-2.4.3-r2.ebuild	18 Sep 2010 16:44:52 -0000	1.8
@@ -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/sys-power/nut/nut-2.4.3-r2.ebuild,v 1.7 2010/07/25 12:55:28 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild,v 1.8 2010/09/18 16:44:52 armin76 Exp $
 
 EAPI="2"
 
@@ -18,7 +18,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~ppc ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~ppc sparc x86 ~x86-fbsd"
 IUSE="cgi snmp usb ssl hal xml"
 
 RDEPEND="cgi? ( >=media-libs/gd-2[png] )






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

* [gentoo-commits] gentoo-x86 commit in sys-power/nut: ChangeLog nut-2.4.3-r2.ebuild
@ 2011-02-25  8:44 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 7+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-02-25  8:44 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/02/25 08:44:44

  Modified:             ChangeLog nut-2.4.3-r2.ebuild
  Log:
  ppc/ppc64 stable wrt #321493
  
  (Portage version: 2.2.0_alpha23/cvs/Linux ppc64)

Revision  Changes    Path
1.84                 sys-power/nut/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/ChangeLog?rev=1.84&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/ChangeLog?rev=1.84&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/ChangeLog?r1=1.83&r2=1.84

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/nut/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog	16 Jan 2011 10:36:55 -0000	1.83
+++ ChangeLog	25 Feb 2011 08:44:44 -0000	1.84
@@ -1,6 +1,9 @@
 # ChangeLog for sys-power/nut
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/nut/ChangeLog,v 1.83 2011/01/16 10:36:55 robbat2 Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-power/nut/ChangeLog,v 1.84 2011/02/25 08:44:44 xarthisius Exp $
+
+  25 Feb 2011; Kacper Kowalik <xarthisius@gentoo.org> nut-2.4.3-r2.ebuild:
+  ppc/ppc64 stable wrt #321493
 
   18 Sep 2010; Raúl Porcel <armin76@gentoo.org> nut-2.4.3-r2.ebuild:
   sparc stable wrt #321493



1.9                  sys-power/nut/nut-2.4.3-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild?r1=1.8&r2=1.9

Index: nut-2.4.3-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- nut-2.4.3-r2.ebuild	18 Sep 2010 16:44:52 -0000	1.8
+++ nut-2.4.3-r2.ebuild	25 Feb 2011 08:44:44 -0000	1.9
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild,v 1.8 2010/09/18 16:44:52 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/nut/nut-2.4.3-r2.ebuild,v 1.9 2011/02/25 08:44:44 xarthisius Exp $
 
 EAPI="2"
 
@@ -18,7 +18,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~ppc sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="cgi snmp usb ssl hal xml"
 
 RDEPEND="cgi? ( >=media-libs/gd-2[png] )






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

end of thread, other threads:[~2011-02-25  8:44 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-25  8:44 [gentoo-commits] gentoo-x86 commit in sys-power/nut: ChangeLog nut-2.4.3-r2.ebuild Kacper Kowalik (xarthisius)
  -- strict thread matches above, loose matches on Subject: below --
2010-09-18 16:44 Raul Porcel (armin76)
2010-07-25 12:55 Tobias Klausmann (klausman)
2010-07-14 13:11 Christian Faulhammer (fauli)
2010-07-10 17:07 Markos Chandras (hwoarang)
2010-07-01 19:19 Samuli Suominen (ssuominen)
2010-06-17 19:38 Robin H. Johnson (robbat2)

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