public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-power/apcupsd: apcupsd-3.14.7.ebuild ChangeLog
@ 2009-08-04 11:36 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 7+ messages in thread
From: Diego Petteno (flameeyes) @ 2009-08-04 11:36 UTC (permalink / raw
  To: gentoo-commits

flameeyes    09/08/04 11:36:02

  Modified:             ChangeLog
  Added:                apcupsd-3.14.7.ebuild
  Log:
  Version bump, add warnings for USB support on Linux (bug #278532).
  (Portage version: 2.2_rc35/cvs/Linux x86_64)

Revision  Changes    Path
1.50                 sys-power/apcupsd/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/ChangeLog?rev=1.50&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/ChangeLog?rev=1.50&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/ChangeLog?r1=1.49&r2=1.50

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/apcupsd/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog	16 Jun 2009 14:05:36 -0000	1.49
+++ ChangeLog	4 Aug 2009 11:36:02 -0000	1.50
@@ -1,6 +1,12 @@
 # ChangeLog for sys-power/apcupsd
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/ChangeLog,v 1.49 2009/06/16 14:05:36 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/ChangeLog,v 1.50 2009/08/04 11:36:02 flameeyes Exp $
+
+*apcupsd-3.14.7 (04 Aug 2009)
+
+  04 Aug 2009; Diego E. Pettenò <flameeyes@gentoo.org>
+  +apcupsd-3.14.7.ebuild:
+  Version bump, add warnings for USB support on Linux (bug #278532).
 
   16 Jun 2009; Diego E. Pettenò <flameeyes@gentoo.org>
   apcupsd-3.14.6.ebuild:



1.1                  sys-power/apcupsd/apcupsd-3.14.7.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild?rev=1.1&content-type=text/plain

Index: apcupsd-3.14.7.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild,v 1.1 2009/08/04 11:36:02 flameeyes Exp $

WEBAPP_MANUAL_SLOT="yes"
WEBAPP_OPTIONAL="yes"
inherit eutils webapp linux-info

DESCRIPTION="APC UPS daemon with integrated tcp/ip remote shutdown"
HOMEPAGE="http://www.apcupsd.org/"
SRC_URI="mirror://sourceforge/apcupsd/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
IUSE="snmp usb cgi nls gnome kernel_linux"

DEPEND="
	cgi? ( >=media-libs/gd-1.8.4
		${WEBAPP_DEPEND} )
	nls? ( sys-devel/gettext )
	snmp? ( net-analyzer/net-snmp )
	gnome? ( >=x11-libs/gtk+-2.4.0
		>=dev-libs/glib-2.0
		>=gnome-base/gconf-2.0 )"
RDEPEND="${DEPEND}
	virtual/mailx"

pkg_setup() {
	use cgi && webapp_pkg_setup

	if use kernel_linux &&
		use usb &&
		linux_config_exists &&
		!linux_chkconfig_present USB_HIDDEV; then
		ewarn "Note: to be able to use the USB support for ${PN} you're going to need"
		ewarn "the CONFIG_USB_HIDDEV option enabled in your kernel."
		ewarn "The option hasn't been found enabled, do so before trying to use"
		ewarn "${PN} with USB UPSes."
	fi
}

src_compile() {
	local myconf
	use cgi && myconf="${myconf} --enable-cgi --with-cgi-bin=${MY_CGIBINDIR}"
	if use usb; then
		myconf="${myconf} --with-upstype=usb --with-upscable=usb --enable-usb --with-dev= "
	else
		myconf="${myconf} --with-upstype=apcsmart --with-upscable=smart --disable-usb"
	fi

	# We force the DISTNAME to gentoo so it will use gentoo's layout also
	# when installed on non-linux systems.
	econf \
		--sbindir=/sbin \
		--sysconfdir=/etc/apcupsd \
		--with-pwrfail-dir=/etc/apcupsd \
		--with-lock-dir=/var/lock \
		--with-pid-dir=/var/run \
		--with-log-dir=/var/log \
		--with-nis-port=3551 \
		--enable-net --enable-pcnet \
		--with-distname=gentoo \
		$(use_enable snmp net-snmp) \
		$(use_enable gnome gapcmon) \
		${myconf} \
		APCUPSD_MAIL=/bin/mail \
		|| die "econf failed"
	emake || die "emake failed"
}

src_install() {
	use cgi && webapp_src_preinst

	emake DESTDIR="${D}" install || die "installed failed"
	rm -f "${D}"/etc/init.d/halt

	insinto /etc/apcupsd
	newins examples/safe.apccontrol safe.apccontrol

	dodoc ChangeLog* ReleaseNotes
	doman doc/*.8 doc/*.5 || die "doman failed"

	dohtml -r doc/manual/* || die "dodoc failed"

	use cgi && webapp_src_install

	rm "${D}"/etc/init.d/apcupsd
	newinitd "${FILESDIR}/${PN}.init.2" "${PN}" || die "newinitd failed"

	if has_version sys-apps/openrc; then
		newinitd "${FILESDIR}/${PN}.powerfail.init" "${PN}".powerfail || die "newinitd failed"
	fi
}

pkg_postinst() {
	if use cgi; then
		elog "If you are upgrading from a previous version, please note"
		elog "that the CGI interface is now installed using webapp-config."
		elog "/var/www/apcupsd is no longer present."
		webapp_pkg_postinst
	fi

	elog ""
	elog "Since version 3.14.0 you can use multiple apcupsd instances to"
	elog "control more than one UPS in a single box."
	elog "To do this, create a link between /etc/init.d/apcupsd to a new"
	elog "/etc/init.d/apcupsd.something, and it will then load the"
	elog "configuration file at /etc/apcupsd/something.conf."
	elog ""

	if [ -d "${ROOT}"/etc/runlevels/shutdown -a \
			! -e "${ROOT}"/etc/runlevels/shutdown/"${PN}".powerfail ] ; then
		elog 'If you want apcupsd to power off your UPS when it'
		elog 'shuts down your system in a power failure, you must'
		elog 'add apcupsd.powerfail to your shutdown runlevel:'
		elog ''
		elog ' \e[01m rc-update add apcupsd.powerfail shutdown \e[0m'
		elog ''
	fi
}

pkg_prerm() {
	use cgi && webapp_pkg_prerm
}






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

* [gentoo-commits] gentoo-x86 commit in sys-power/apcupsd: apcupsd-3.14.7.ebuild ChangeLog
@ 2009-08-08 14:11 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 7+ messages in thread
From: Diego Petteno (flameeyes) @ 2009-08-08 14:11 UTC (permalink / raw
  To: gentoo-commits

flameeyes    09/08/08 14:11:30

  Modified:             apcupsd-3.14.7.ebuild ChangeLog
  Log:
  Make sure that MANPAGER values won't break the build, bug #280674 by Semen Maryasin.
  (Portage version: 2.2_rc36/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  sys-power/apcupsd/apcupsd-3.14.7.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild?r1=1.1&r2=1.2

Index: apcupsd-3.14.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- apcupsd-3.14.7.ebuild	4 Aug 2009 11:36:02 -0000	1.1
+++ apcupsd-3.14.7.ebuild	8 Aug 2009 14:11:29 -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/sys-power/apcupsd/apcupsd-3.14.7.ebuild,v 1.1 2009/08/04 11:36:02 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild,v 1.2 2009/08/08 14:11:29 flameeyes Exp $
 
 WEBAPP_MANUAL_SLOT="yes"
 WEBAPP_OPTIONAL="yes"
@@ -66,7 +66,12 @@
 		${myconf} \
 		APCUPSD_MAIL=/bin/mail \
 		|| die "econf failed"
-	emake || die "emake failed"
+
+	# Workaround for bug #280674; upstream should really just provide
+	# the text files in the distribution, but I wouldn't count on them
+	# doing that anytime soon.
+	MANPAGER=$(type -p cat) \
+		emake || die "emake failed"
 }
 
 src_install() {



1.53                 sys-power/apcupsd/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/ChangeLog?rev=1.53&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/ChangeLog?rev=1.53&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/ChangeLog?r1=1.52&r2=1.53

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/apcupsd/ChangeLog,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- ChangeLog	5 Aug 2009 16:24:32 -0000	1.52
+++ ChangeLog	8 Aug 2009 14:11:29 -0000	1.53
@@ -1,6 +1,11 @@
 # ChangeLog for sys-power/apcupsd
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/ChangeLog,v 1.52 2009/08/05 16:24:32 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/ChangeLog,v 1.53 2009/08/08 14:11:29 flameeyes Exp $
+
+  08 Aug 2009; Diego E. Pettenò <flameeyes@gentoo.org>
+  apcupsd-3.14.7.ebuild:
+  Make sure that MANPAGER values won't break the build, bug #280674 by Semen
+  Maryasin.
 
   05 Aug 2009; <chainsaw@gentoo.org> apcupsd-3.14.6.ebuild:
   Marked stable on AMD64 as requested by Diego E. "Flameeyes" Pettenò






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

* [gentoo-commits] gentoo-x86 commit in sys-power/apcupsd: apcupsd-3.14.7.ebuild ChangeLog
@ 2009-09-24 22:38 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 7+ messages in thread
From: Diego Petteno (flameeyes) @ 2009-09-24 22:38 UTC (permalink / raw
  To: gentoo-commits

flameeyes    09/09/24 22:38:38

  Modified:             apcupsd-3.14.7.ebuild ChangeLog
  Log:
  Create /var/lock if it's not present already.
  (Portage version: 2.2_rc41/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  sys-power/apcupsd/apcupsd-3.14.7.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild?r1=1.2&r2=1.3

Index: apcupsd-3.14.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- apcupsd-3.14.7.ebuild	8 Aug 2009 14:11:29 -0000	1.2
+++ apcupsd-3.14.7.ebuild	24 Sep 2009 22:38:38 -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/sys-power/apcupsd/apcupsd-3.14.7.ebuild,v 1.2 2009/08/08 14:11:29 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild,v 1.3 2009/09/24 22:38:38 flameeyes Exp $
 
 WEBAPP_MANUAL_SLOT="yes"
 WEBAPP_OPTIONAL="yes"
@@ -96,6 +96,12 @@
 	if has_version sys-apps/openrc; then
 		newinitd "${FILESDIR}/${PN}.powerfail.init" "${PN}".powerfail || die "newinitd failed"
 	fi
+
+	# Without this it'll crash at startup. When merging in ROOT= this
+	# won't be created by default, so we want to make sure we got it!
+	keepdir /var/lock
+	fowners root:uucp /var/lock
+	fperms 0775 /var/lock
 }
 
 pkg_postinst() {



1.56                 sys-power/apcupsd/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/ChangeLog?rev=1.56&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/ChangeLog?rev=1.56&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/ChangeLog?r1=1.55&r2=1.56

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/apcupsd/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog	31 Aug 2009 14:16:28 -0000	1.55
+++ ChangeLog	24 Sep 2009 22:38:38 -0000	1.56
@@ -1,6 +1,10 @@
 # ChangeLog for sys-power/apcupsd
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/ChangeLog,v 1.55 2009/08/31 14:16:28 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/ChangeLog,v 1.56 2009/09/24 22:38:38 flameeyes Exp $
+
+  24 Sep 2009; Diego E. Pettenò <flameeyes@gentoo.org>
+  apcupsd-3.14.7.ebuild:
+  Create /var/lock if it's not present already.
 
   31 Aug 2009; Christian Faulhammer <fauli@gentoo.org>
   apcupsd-3.14.6.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in sys-power/apcupsd: apcupsd-3.14.7.ebuild ChangeLog
@ 2009-12-08 19:41 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 7+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2009-12-08 19:41 UTC (permalink / raw
  To: gentoo-commits

nixnut      09/12/08 19:41:02

  Modified:             apcupsd-3.14.7.ebuild ChangeLog
  Log:
  ppc stable #295424
  (Portage version: 2.1.6.13/cvs/Linux ppc)

Revision  Changes    Path
1.4                  sys-power/apcupsd/apcupsd-3.14.7.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild?r1=1.3&r2=1.4

Index: apcupsd-3.14.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- apcupsd-3.14.7.ebuild	24 Sep 2009 22:38:38 -0000	1.3
+++ apcupsd-3.14.7.ebuild	8 Dec 2009 19:41:02 -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/sys-power/apcupsd/apcupsd-3.14.7.ebuild,v 1.3 2009/09/24 22:38:38 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild,v 1.4 2009/12/08 19:41:02 nixnut Exp $
 
 WEBAPP_MANUAL_SLOT="yes"
 WEBAPP_OPTIONAL="yes"
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ppc ~sparc ~x86 ~x86-fbsd"
 IUSE="snmp usb cgi nls gnome kernel_linux"
 
 DEPEND="



1.59                 sys-power/apcupsd/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/ChangeLog?rev=1.59&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/ChangeLog?rev=1.59&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/ChangeLog?r1=1.58&r2=1.59

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/apcupsd/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ChangeLog	3 Dec 2009 19:32:48 -0000	1.58
+++ ChangeLog	8 Dec 2009 19:41:02 -0000	1.59
@@ -1,6 +1,9 @@
 # ChangeLog for sys-power/apcupsd
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/ChangeLog,v 1.58 2009/12/03 19:32:48 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/ChangeLog,v 1.59 2009/12/08 19:41:02 nixnut Exp $
+
+  08 Dec 2009; nixnut <nixnut@gentoo.org> apcupsd-3.14.7.ebuild:
+  ppc stable #295424
 
   03 Dec 2009; Diego E. Pettenò <flameeyes@gentoo.org>
   -files/3.10.18/apache.conf, -apcupsd-3.10.18-r1.ebuild,






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

* [gentoo-commits] gentoo-x86 commit in sys-power/apcupsd: apcupsd-3.14.7.ebuild ChangeLog
@ 2009-12-16 12:55 Markus Meier (maekke)
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2009-12-16 12:55 UTC (permalink / raw
  To: gentoo-commits

maekke      09/12/16 12:55:41

  Modified:             apcupsd-3.14.7.ebuild ChangeLog
  Log:
  amd64/x86 stable, bug #295424
  (Portage version: 2.2_rc59/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  sys-power/apcupsd/apcupsd-3.14.7.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild?r1=1.4&r2=1.5

Index: apcupsd-3.14.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- apcupsd-3.14.7.ebuild	8 Dec 2009 19:41:02 -0000	1.4
+++ apcupsd-3.14.7.ebuild	16 Dec 2009 12:55:41 -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/sys-power/apcupsd/apcupsd-3.14.7.ebuild,v 1.4 2009/12/08 19:41:02 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild,v 1.5 2009/12/16 12:55:41 maekke Exp $
 
 WEBAPP_MANUAL_SLOT="yes"
 WEBAPP_OPTIONAL="yes"
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ppc ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ppc ~sparc x86 ~x86-fbsd"
 IUSE="snmp usb cgi nls gnome kernel_linux"
 
 DEPEND="



1.60                 sys-power/apcupsd/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/ChangeLog?rev=1.60&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/ChangeLog?rev=1.60&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/ChangeLog?r1=1.59&r2=1.60

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/apcupsd/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog	8 Dec 2009 19:41:02 -0000	1.59
+++ ChangeLog	16 Dec 2009 12:55:41 -0000	1.60
@@ -1,6 +1,9 @@
 # ChangeLog for sys-power/apcupsd
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/ChangeLog,v 1.59 2009/12/08 19:41:02 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/ChangeLog,v 1.60 2009/12/16 12:55:41 maekke Exp $
+
+  16 Dec 2009; Markus Meier <maekke@gentoo.org> apcupsd-3.14.7.ebuild:
+  amd64/x86 stable, bug #295424
 
   08 Dec 2009; nixnut <nixnut@gentoo.org> apcupsd-3.14.7.ebuild:
   ppc stable #295424






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

* [gentoo-commits] gentoo-x86 commit in sys-power/apcupsd: apcupsd-3.14.7.ebuild ChangeLog
@ 2009-12-29 18:45 Raul Porcel (armin76)
  0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2009-12-29 18:45 UTC (permalink / raw
  To: gentoo-commits

armin76     09/12/29 18:45:29

  Modified:             apcupsd-3.14.7.ebuild ChangeLog
  Log:
  sparc stable wrt #295424
  (Portage version: 2.1.6.13/cvs/Linux ia64)

Revision  Changes    Path
1.6                  sys-power/apcupsd/apcupsd-3.14.7.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild?r1=1.5&r2=1.6

Index: apcupsd-3.14.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- apcupsd-3.14.7.ebuild	16 Dec 2009 12:55:41 -0000	1.5
+++ apcupsd-3.14.7.ebuild	29 Dec 2009 18:45:28 -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/sys-power/apcupsd/apcupsd-3.14.7.ebuild,v 1.5 2009/12/16 12:55:41 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild,v 1.6 2009/12/29 18:45:28 armin76 Exp $
 
 WEBAPP_MANUAL_SLOT="yes"
 WEBAPP_OPTIONAL="yes"
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ppc ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ppc sparc x86 ~x86-fbsd"
 IUSE="snmp usb cgi nls gnome kernel_linux"
 
 DEPEND="



1.61                 sys-power/apcupsd/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/ChangeLog?rev=1.61&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/ChangeLog?rev=1.61&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/ChangeLog?r1=1.60&r2=1.61

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/apcupsd/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ChangeLog	16 Dec 2009 12:55:41 -0000	1.60
+++ ChangeLog	29 Dec 2009 18:45:28 -0000	1.61
@@ -1,6 +1,9 @@
 # ChangeLog for sys-power/apcupsd
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/ChangeLog,v 1.60 2009/12/16 12:55:41 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/ChangeLog,v 1.61 2009/12/29 18:45:28 armin76 Exp $
+
+  29 Dec 2009; Raúl Porcel <armin76@gentoo.org> apcupsd-3.14.7.ebuild:
+  sparc stable wrt #295424
 
   16 Dec 2009; Markus Meier <maekke@gentoo.org> apcupsd-3.14.7.ebuild:
   amd64/x86 stable, bug #295424






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

* [gentoo-commits] gentoo-x86 commit in sys-power/apcupsd: apcupsd-3.14.7.ebuild ChangeLog
@ 2010-03-06 19:59 Raul Porcel (armin76)
  0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2010-03-06 19:59 UTC (permalink / raw
  To: gentoo-commits

armin76     10/03/06 19:59:55

  Modified:             apcupsd-3.14.7.ebuild ChangeLog
  Log:
  alpha stable
  (Portage version: 2.1.7.17/cvs/Linux ia64)

Revision  Changes    Path
1.7                  sys-power/apcupsd/apcupsd-3.14.7.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild?r1=1.6&r2=1.7

Index: apcupsd-3.14.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- apcupsd-3.14.7.ebuild	29 Dec 2009 18:45:28 -0000	1.6
+++ apcupsd-3.14.7.ebuild	6 Mar 2010 19:59:54 -0000	1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild,v 1.6 2009/12/29 18:45:28 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.7.ebuild,v 1.7 2010/03/06 19:59:54 armin76 Exp $
 
 WEBAPP_MANUAL_SLOT="yes"
 WEBAPP_OPTIONAL="yes"
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ppc sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ppc sparc x86 ~x86-fbsd"
 IUSE="snmp usb cgi nls gnome kernel_linux"
 
 DEPEND="



1.64                 sys-power/apcupsd/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/ChangeLog?rev=1.64&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/ChangeLog?rev=1.64&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-power/apcupsd/ChangeLog?r1=1.63&r2=1.64

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/apcupsd/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog	17 Jan 2010 23:35:10 -0000	1.63
+++ ChangeLog	6 Mar 2010 19:59:54 -0000	1.64
@@ -1,6 +1,9 @@
 # ChangeLog for sys-power/apcupsd
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/ChangeLog,v 1.63 2010/01/17 23:35:10 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/ChangeLog,v 1.64 2010/03/06 19:59:54 armin76 Exp $
+
+  06 Mar 2010; Raúl Porcel <armin76@gentoo.org> apcupsd-3.14.7.ebuild:
+  alpha stable
 
 *apcupsd-3.14.8 (17 Jan 2010)
 






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

end of thread, other threads:[~2010-03-06 19:59 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-04 11:36 [gentoo-commits] gentoo-x86 commit in sys-power/apcupsd: apcupsd-3.14.7.ebuild ChangeLog Diego Petteno (flameeyes)
  -- strict thread matches above, loose matches on Subject: below --
2009-08-08 14:11 Diego Petteno (flameeyes)
2009-09-24 22:38 Diego Petteno (flameeyes)
2009-12-08 19:41 Gysbert Wassenaar (nixnut)
2009-12-16 12:55 Markus Meier (maekke)
2009-12-29 18:45 Raul Porcel (armin76)
2010-03-06 19:59 Raul Porcel (armin76)

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