public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-irc/znc: ChangeLog znc-0.094.ebuild
@ 2010-08-20 14:40 Alex Alexander (wired)
  0 siblings, 0 replies; 4+ messages in thread
From: Alex Alexander (wired) @ 2010-08-20 14:40 UTC (permalink / raw
  To: gentoo-commits

wired       10/08/20 14:40:56

  Modified:             ChangeLog
  Added:                znc-0.094.ebuild
  Log:
  version bump
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.41                 net-irc/znc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/ChangeLog?rev=1.41&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/ChangeLog?rev=1.41&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/ChangeLog?r1=1.40&r2=1.41

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog	14 Aug 2010 22:41:52 -0000	1.40
+++ ChangeLog	20 Aug 2010 14:40:56 -0000	1.41
@@ -1,6 +1,11 @@
 # ChangeLog for net-irc/znc
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v 1.40 2010/08/14 22:41:52 wired Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v 1.41 2010/08/20 14:40:56 wired Exp $
+
+*znc-0.094 (20 Aug 2010)
+
+  20 Aug 2010; Alex Alexander <wired@gentoo.org> +znc-0.094.ebuild:
+  version bump
 
 *znc-0.092-r1 (14 Aug 2010)
 



1.1                  net-irc/znc/znc-0.094.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/znc-0.094.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/znc-0.094.ebuild?rev=1.1&content-type=text/plain

Index: znc-0.094.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/znc-0.094.ebuild,v 1.1 2010/08/20 14:40:56 wired Exp $

EAPI=2

inherit base

DESCRIPTION="An advanced IRC Bouncer"
HOMEPAGE="http://znc.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="ares debug extras ipv6 perl ssl sasl tcl"

RDEPEND="
	ares? ( >=net-dns/c-ares-1.5 )
	perl? ( dev-lang/perl )
	sasl? ( >=dev-libs/cyrus-sasl-2 )
	ssl? ( >=dev-libs/openssl-0.9.7d )
	tcl? ( dev-lang/tcl )
"
DEPEND="
	dev-util/pkgconfig
	${DEPEND}
"

src_configure() {
	econf \
		$(use_enable ares c-ares) \
		$(use_enable debug) \
		$(use_enable extras extra) \
		$(use_enable ipv6) \
		$(use_enable perl) \
		$(use_enable sasl) \
		$(use_enable ssl openssl) \
		$(use_enable tcl tcl) \
		|| die "econf failed"
}

src_install() {
	emake install DESTDIR="${D}" || die "make install failed."
	dodoc AUTHORS README || die "dodoc failed"
}

pkg_postinst() {
	elog
	elog "Run 'znc --makeconf' as the user you want to run ZNC as"
	elog "to make a configuration file"
	elog "If you are using SSL you should also run 'znc --makepem'"
	elog
}






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

* [gentoo-commits] gentoo-x86 commit in net-irc/znc: ChangeLog znc-0.094.ebuild
@ 2010-08-20 14:42 Alex Alexander (wired)
  0 siblings, 0 replies; 4+ messages in thread
From: Alex Alexander (wired) @ 2010-08-20 14:42 UTC (permalink / raw
  To: gentoo-commits

wired       10/08/20 14:42:51

  Modified:             ChangeLog znc-0.094.ebuild
  Log:
  fix typo in deps
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.42                 net-irc/znc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/ChangeLog?rev=1.42&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/ChangeLog?rev=1.42&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/ChangeLog?r1=1.41&r2=1.42

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog	20 Aug 2010 14:40:56 -0000	1.41
+++ ChangeLog	20 Aug 2010 14:42:51 -0000	1.42
@@ -1,6 +1,9 @@
 # ChangeLog for net-irc/znc
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v 1.41 2010/08/20 14:40:56 wired Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v 1.42 2010/08/20 14:42:51 wired Exp $
+
+  20 Aug 2010; Alex Alexander <wired@gentoo.org> znc-0.094.ebuild:
+  fix typo in deps
 
 *znc-0.094 (20 Aug 2010)
 



1.2                  net-irc/znc/znc-0.094.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/znc-0.094.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/znc-0.094.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/znc-0.094.ebuild?r1=1.1&r2=1.2

Index: znc-0.094.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/znc/znc-0.094.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- znc-0.094.ebuild	20 Aug 2010 14:40:56 -0000	1.1
+++ znc-0.094.ebuild	20 Aug 2010 14:42:51 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/znc-0.094.ebuild,v 1.1 2010/08/20 14:40:56 wired Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/znc-0.094.ebuild,v 1.2 2010/08/20 14:42:51 wired Exp $
 
 EAPI=2
 
@@ -24,7 +24,7 @@
 "
 DEPEND="
 	dev-util/pkgconfig
-	${DEPEND}
+	${RDEPEND}
 "
 
 src_configure() {






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

* [gentoo-commits] gentoo-x86 commit in net-irc/znc: ChangeLog znc-0.094.ebuild
@ 2010-08-28 22:41 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 4+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-08-28 22:41 UTC (permalink / raw
  To: gentoo-commits

hwoarang    10/08/28 22:41:50

  Modified:             ChangeLog znc-0.094.ebuild
  Log:
  Stable on amd64 wrt bug #332535
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.43                 net-irc/znc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/ChangeLog?rev=1.43&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/ChangeLog?rev=1.43&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/ChangeLog?r1=1.42&r2=1.43

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog	20 Aug 2010 14:42:51 -0000	1.42
+++ ChangeLog	28 Aug 2010 22:41:50 -0000	1.43
@@ -1,6 +1,9 @@
 # ChangeLog for net-irc/znc
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v 1.42 2010/08/20 14:42:51 wired Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v 1.43 2010/08/28 22:41:50 hwoarang Exp $
+
+  28 Aug 2010; Markos Chandras <hwoarang@gentoo.org> znc-0.094.ebuild:
+  Stable on amd64 wrt bug #332535
 
   20 Aug 2010; Alex Alexander <wired@gentoo.org> znc-0.094.ebuild:
   fix typo in deps



1.3                  net-irc/znc/znc-0.094.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/znc-0.094.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/znc-0.094.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/znc-0.094.ebuild?r1=1.2&r2=1.3

Index: znc-0.094.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/znc/znc-0.094.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- znc-0.094.ebuild	20 Aug 2010 14:42:51 -0000	1.2
+++ znc-0.094.ebuild	28 Aug 2010 22:41:50 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/znc-0.094.ebuild,v 1.2 2010/08/20 14:42:51 wired Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/znc-0.094.ebuild,v 1.3 2010/08/28 22:41:50 hwoarang Exp $
 
 EAPI=2
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
 IUSE="ares debug extras ipv6 perl ssl sasl tcl"
 
 RDEPEND="






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

* [gentoo-commits] gentoo-x86 commit in net-irc/znc: ChangeLog znc-0.094.ebuild
@ 2010-08-28 23:31 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 4+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2010-08-28 23:31 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    10/08/28 23:31:54

  Modified:             ChangeLog znc-0.094.ebuild
  Log:
  x86 stable wrt security bug #332535
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.44                 net-irc/znc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/ChangeLog?rev=1.44&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/ChangeLog?rev=1.44&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/ChangeLog?r1=1.43&r2=1.44

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog	28 Aug 2010 22:41:50 -0000	1.43
+++ ChangeLog	28 Aug 2010 23:31:54 -0000	1.44
@@ -1,6 +1,9 @@
 # ChangeLog for net-irc/znc
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v 1.43 2010/08/28 22:41:50 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/ChangeLog,v 1.44 2010/08/28 23:31:54 phajdan.jr Exp $
+
+  28 Aug 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> znc-0.094.ebuild:
+  x86 stable wrt security bug #332535
 
   28 Aug 2010; Markos Chandras <hwoarang@gentoo.org> znc-0.094.ebuild:
   Stable on amd64 wrt bug #332535



1.4                  net-irc/znc/znc-0.094.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/znc-0.094.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/znc-0.094.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/znc/znc-0.094.ebuild?r1=1.3&r2=1.4

Index: znc-0.094.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/znc/znc-0.094.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- znc-0.094.ebuild	28 Aug 2010 22:41:50 -0000	1.3
+++ znc-0.094.ebuild	28 Aug 2010 23:31:54 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/znc-0.094.ebuild,v 1.3 2010/08/28 22:41:50 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/znc/znc-0.094.ebuild,v 1.4 2010/08/28 23:31:54 phajdan.jr Exp $
 
 EAPI=2
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="ares debug extras ipv6 perl ssl sasl tcl"
 
 RDEPEND="






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

end of thread, other threads:[~2010-08-28 23:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-28 22:41 [gentoo-commits] gentoo-x86 commit in net-irc/znc: ChangeLog znc-0.094.ebuild Markos Chandras (hwoarang)
  -- strict thread matches above, loose matches on Subject: below --
2010-08-28 23:31 PaweA Hajdan (phajdan.jr)
2010-08-20 14:42 Alex Alexander (wired)
2010-08-20 14:40 Alex Alexander (wired)

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