* [gentoo-commits] gentoo-x86 commit in net-libs/wvstreams: ChangeLog wvstreams-4.6.1.ebuild
@ 2010-01-04 16:07 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 6+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-01-04 16:07 UTC (permalink / raw
To: gentoo-commits
ssuominen 10/01/04 16:07:39
Modified: ChangeLog
Added: wvstreams-4.6.1.ebuild
Log:
Version bump wrt #274620, thanks to Fabian Fingerle for reporting.
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Revision Changes Path
1.129 net-libs/wvstreams/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/wvstreams/ChangeLog?rev=1.129&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/wvstreams/ChangeLog?rev=1.129&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/wvstreams/ChangeLog?r1=1.128&r2=1.129
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/wvstreams/ChangeLog,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -r1.128 -r1.129
--- ChangeLog 28 Jun 2009 08:58:12 -0000 1.128
+++ ChangeLog 4 Jan 2010 16:07:38 -0000 1.129
@@ -1,6 +1,12 @@
# ChangeLog for net-libs/wvstreams
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/ChangeLog,v 1.128 2009/06/28 08:58:12 patrick Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/ChangeLog,v 1.129 2010/01/04 16:07:38 ssuominen Exp $
+
+*wvstreams-4.6.1 (04 Jan 2010)
+
+ 04 Jan 2010; Samuli Suominen <ssuominen@gentoo.org>
+ +wvstreams-4.6.1.ebuild, +files/wvstreams-4.6.1-parallel-make.patch:
+ Version bump wrt #274620, thanks to Fabian Fingerle for reporting.
28 Jun 2009; Patrick Lauer <patrick@gentoo.org> wvstreams-4.5.ebuild,
+files/wvstreams-4.5-glibc.patch:
1.1 net-libs/wvstreams/wvstreams-4.6.1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild?rev=1.1&content-type=text/plain
Index: wvstreams-4.6.1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild,v 1.1 2010/01/04 16:07:38 ssuominen Exp $
EAPI=2
inherit autotools toolchain-funcs versionator
DESCRIPTION="A network programming library in C++"
HOMEPAGE="http://alumnit.ca/wiki/?WvStreams"
SRC_URI="http://wvstreams.googlecode.com/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
IUSE="pam doc +ssl +dbus debug"
#Tests fail if openssl is not compiled with -DPURIFY. Gentoo's isn't. FAIL!
RESTRICT="test"
#QA Fail: xplc is compiled as a part of wvstreams.
#It'll take a larger patching effort to get it extracted, since upstream integrated it
#more tightly this time. Probably for the better since upstream xplc seems dead.
RDEPEND="sys-libs/readline
sys-libs/zlib
dbus? ( sys-apps/dbus )
dev-libs/openssl
pam? ( sys-libs/pam )
virtual/c++-tr1-functional"
DEPEND="${RDEPEND}
dev-util/pkgconfig
doc? ( app-doc/doxygen )"
pkg_setup() {
if has_version '>=sys-devel/gcc-4.1' && ! has_version '>=dev-libs/boost-1.34.1'
then
if ! version_is_at_least 4.1 "$(gcc-fullversion)"
then
eerror "This package requires the active gcc to be at least version 4.1"
eerror "or >=dev-libs/boost-1.34.1 must be installed."
die "Please activate >=sys-devel/gcc-4.1 with gcc-config."
fi
fi
}
src_prepare() {
epatch "${FILESDIR}"/${P}-parallel-make.patch
eautoreconf
cd argp
eautoreconf
}
src_configure() {
export CXX="$(tc-getCXX)"
econf \
$(use_enable debug) \
--disable-optimization \
$(use_with dbus) \
--with-openssl \
$(use_with pam) \
--without-tcl \
--without-qt \
--with-zlib \
--without-valgrind
}
src_compile() {
emake || die
if use doc; then
doxygen || die
fi
}
src_test() {
emake test || die
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc ChangeLog README*
if use doc; then
#the list of files is too big for dohtml -r Docs/doxy-html/*
cd Docs/doxy-html
dohtml -r *
fi
}
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/wvstreams: ChangeLog wvstreams-4.6.1.ebuild
@ 2010-05-27 12:56 Peter Volkov (pva)
0 siblings, 0 replies; 6+ messages in thread
From: Peter Volkov (pva) @ 2010-05-27 12:56 UTC (permalink / raw
To: gentoo-commits
pva 10/05/27 12:56:02
Modified: ChangeLog wvstreams-4.6.1.ebuild
Log:
amd64 stable, bug #321637
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Revision Changes Path
1.131 net-libs/wvstreams/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/ChangeLog?rev=1.131&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/ChangeLog?rev=1.131&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/ChangeLog?r1=1.130&r2=1.131
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/wvstreams/ChangeLog,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -r1.130 -r1.131
--- ChangeLog 4 Jan 2010 16:10:51 -0000 1.130
+++ ChangeLog 27 May 2010 12:56:02 -0000 1.131
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/wvstreams
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/ChangeLog,v 1.130 2010/01/04 16:10:51 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/ChangeLog,v 1.131 2010/05/27 12:56:02 pva Exp $
+
+ 27 May 2010; Peter Volkov <pva@gentoo.org> wvstreams-4.6.1.ebuild:
+ amd64 stable, bug #321637
04 Jan 2010; Samuli Suominen <ssuominen@gentoo.org> wvstreams-4.4.ebuild,
wvstreams-4.5.ebuild:
1.2 net-libs/wvstreams/wvstreams-4.6.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild?r1=1.1&r2=1.2
Index: wvstreams-4.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- wvstreams-4.6.1.ebuild 4 Jan 2010 16:07:38 -0000 1.1
+++ wvstreams-4.6.1.ebuild 27 May 2010 12:56:02 -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-libs/wvstreams/wvstreams-4.6.1.ebuild,v 1.1 2010/01/04 16:07:38 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild,v 1.2 2010/05/27 12:56:02 pva Exp $
EAPI=2
inherit autotools toolchain-funcs versionator
@@ -11,7 +11,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~ppc ~sparc ~x86"
IUSE="pam doc +ssl +dbus debug"
#Tests fail if openssl is not compiled with -DPURIFY. Gentoo's isn't. FAIL!
@@ -23,7 +23,7 @@
RDEPEND="sys-libs/readline
sys-libs/zlib
- dbus? ( sys-apps/dbus )
+ dbus? ( >=sys-apps/dbus-1.2.14 )
dev-libs/openssl
pam? ( sys-libs/pam )
virtual/c++-tr1-functional"
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/wvstreams: ChangeLog wvstreams-4.6.1.ebuild
@ 2010-05-31 19:34 Markus Meier (maekke)
0 siblings, 0 replies; 6+ messages in thread
From: Markus Meier (maekke) @ 2010-05-31 19:34 UTC (permalink / raw
To: gentoo-commits
maekke 10/05/31 19:34:46
Modified: ChangeLog wvstreams-4.6.1.ebuild
Log:
x86 stable, bug #321637
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.132 net-libs/wvstreams/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/ChangeLog?rev=1.132&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/ChangeLog?rev=1.132&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/ChangeLog?r1=1.131&r2=1.132
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/wvstreams/ChangeLog,v
retrieving revision 1.131
retrieving revision 1.132
diff -u -r1.131 -r1.132
--- ChangeLog 27 May 2010 12:56:02 -0000 1.131
+++ ChangeLog 31 May 2010 19:34:46 -0000 1.132
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/wvstreams
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/ChangeLog,v 1.131 2010/05/27 12:56:02 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/ChangeLog,v 1.132 2010/05/31 19:34:46 maekke Exp $
+
+ 31 May 2010; Markus Meier <maekke@gentoo.org> wvstreams-4.6.1.ebuild:
+ x86 stable, bug #321637
27 May 2010; Peter Volkov <pva@gentoo.org> wvstreams-4.6.1.ebuild:
amd64 stable, bug #321637
1.3 net-libs/wvstreams/wvstreams-4.6.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild?r1=1.2&r2=1.3
Index: wvstreams-4.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- wvstreams-4.6.1.ebuild 27 May 2010 12:56:02 -0000 1.2
+++ wvstreams-4.6.1.ebuild 31 May 2010 19:34:46 -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-libs/wvstreams/wvstreams-4.6.1.ebuild,v 1.2 2010/05/27 12:56:02 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild,v 1.3 2010/05/31 19:34:46 maekke Exp $
EAPI=2
inherit autotools toolchain-funcs versionator
@@ -11,7 +11,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~ppc ~sparc x86"
IUSE="pam doc +ssl +dbus debug"
#Tests fail if openssl is not compiled with -DPURIFY. Gentoo's isn't. FAIL!
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/wvstreams: ChangeLog wvstreams-4.6.1.ebuild
@ 2010-06-06 14:20 Raul Porcel (armin76)
0 siblings, 0 replies; 6+ messages in thread
From: Raul Porcel (armin76) @ 2010-06-06 14:20 UTC (permalink / raw
To: gentoo-commits
armin76 10/06/06 14:20:47
Modified: ChangeLog wvstreams-4.6.1.ebuild
Log:
alpha/sparc stable wrt #321637
(Portage version: 2.1.8.3/cvs/Linux ia64)
Revision Changes Path
1.134 net-libs/wvstreams/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/ChangeLog?rev=1.134&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/ChangeLog?rev=1.134&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/ChangeLog?r1=1.133&r2=1.134
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/wvstreams/ChangeLog,v
retrieving revision 1.133
retrieving revision 1.134
diff -u -r1.133 -r1.134
--- ChangeLog 4 Jun 2010 12:54:18 -0000 1.133
+++ ChangeLog 6 Jun 2010 14:20:47 -0000 1.134
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/wvstreams
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/ChangeLog,v 1.133 2010/06/04 12:54:18 spatz Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/ChangeLog,v 1.134 2010/06/06 14:20:47 armin76 Exp $
+
+ 06 Jun 2010; Raúl Porcel <armin76@gentoo.org> wvstreams-4.6.1.ebuild:
+ alpha/sparc stable wrt #321637
*wvstreams-4.6.1-r1 (04 Jun 2010)
1.4 net-libs/wvstreams/wvstreams-4.6.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild?r1=1.3&r2=1.4
Index: wvstreams-4.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- wvstreams-4.6.1.ebuild 31 May 2010 19:34:46 -0000 1.3
+++ wvstreams-4.6.1.ebuild 6 Jun 2010 14:20:47 -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-libs/wvstreams/wvstreams-4.6.1.ebuild,v 1.3 2010/05/31 19:34:46 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild,v 1.4 2010/06/06 14:20:47 armin76 Exp $
EAPI=2
inherit autotools toolchain-funcs versionator
@@ -11,7 +11,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ppc ~sparc x86"
+KEYWORDS="alpha amd64 ~hppa ~ppc sparc x86"
IUSE="pam doc +ssl +dbus debug"
#Tests fail if openssl is not compiled with -DPURIFY. Gentoo's isn't. FAIL!
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/wvstreams: ChangeLog wvstreams-4.6.1.ebuild
@ 2010-06-26 13:07 Gysbert Wassenaar (nixnut)
0 siblings, 0 replies; 6+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2010-06-26 13:07 UTC (permalink / raw
To: gentoo-commits
nixnut 10/06/26 13:07:04
Modified: ChangeLog wvstreams-4.6.1.ebuild
Log:
ppc stable #321637
(Portage version: 2.1.8.3/cvs/Linux ppc)
Revision Changes Path
1.135 net-libs/wvstreams/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/ChangeLog?rev=1.135&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/ChangeLog?rev=1.135&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/ChangeLog?r1=1.134&r2=1.135
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/wvstreams/ChangeLog,v
retrieving revision 1.134
retrieving revision 1.135
diff -u -r1.134 -r1.135
--- ChangeLog 6 Jun 2010 14:20:47 -0000 1.134
+++ ChangeLog 26 Jun 2010 13:07:04 -0000 1.135
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/wvstreams
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/ChangeLog,v 1.134 2010/06/06 14:20:47 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/ChangeLog,v 1.135 2010/06/26 13:07:04 nixnut Exp $
+
+ 26 Jun 2010; <nixnut@gentoo.org> wvstreams-4.6.1.ebuild:
+ ppc stable #321637
06 Jun 2010; Raúl Porcel <armin76@gentoo.org> wvstreams-4.6.1.ebuild:
alpha/sparc stable wrt #321637
1.5 net-libs/wvstreams/wvstreams-4.6.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild?r1=1.4&r2=1.5
Index: wvstreams-4.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- wvstreams-4.6.1.ebuild 6 Jun 2010 14:20:47 -0000 1.4
+++ wvstreams-4.6.1.ebuild 26 Jun 2010 13:07:04 -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/net-libs/wvstreams/wvstreams-4.6.1.ebuild,v 1.4 2010/06/06 14:20:47 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild,v 1.5 2010/06/26 13:07:04 nixnut Exp $
EAPI=2
inherit autotools toolchain-funcs versionator
@@ -11,7 +11,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ~ppc sparc x86"
+KEYWORDS="alpha amd64 ~hppa ppc sparc x86"
IUSE="pam doc +ssl +dbus debug"
#Tests fail if openssl is not compiled with -DPURIFY. Gentoo's isn't. FAIL!
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/wvstreams: ChangeLog wvstreams-4.6.1.ebuild
@ 2010-07-10 15:54 Jeroen Roovers (jer)
0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers (jer) @ 2010-07-10 15:54 UTC (permalink / raw
To: gentoo-commits
jer 10/07/10 15:54:54
Modified: ChangeLog wvstreams-4.6.1.ebuild
Log:
Stable for HPPA (bug #321637).
(Portage version: 2.2_rc67/cvs/Linux i686)
Revision Changes Path
1.136 net-libs/wvstreams/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/ChangeLog?rev=1.136&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/ChangeLog?rev=1.136&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/ChangeLog?r1=1.135&r2=1.136
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/wvstreams/ChangeLog,v
retrieving revision 1.135
retrieving revision 1.136
diff -u -r1.135 -r1.136
--- ChangeLog 26 Jun 2010 13:07:04 -0000 1.135
+++ ChangeLog 10 Jul 2010 15:54:54 -0000 1.136
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/wvstreams
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/ChangeLog,v 1.135 2010/06/26 13:07:04 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/ChangeLog,v 1.136 2010/07/10 15:54:54 jer Exp $
+
+ 10 Jul 2010; Jeroen Roovers <jer@gentoo.org> wvstreams-4.6.1.ebuild:
+ Stable for HPPA (bug #321637).
26 Jun 2010; <nixnut@gentoo.org> wvstreams-4.6.1.ebuild:
ppc stable #321637
1.6 net-libs/wvstreams/wvstreams-4.6.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild?r1=1.5&r2=1.6
Index: wvstreams-4.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- wvstreams-4.6.1.ebuild 26 Jun 2010 13:07:04 -0000 1.5
+++ wvstreams-4.6.1.ebuild 10 Jul 2010 15:54:54 -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/net-libs/wvstreams/wvstreams-4.6.1.ebuild,v 1.5 2010/06/26 13:07:04 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/wvstreams-4.6.1.ebuild,v 1.6 2010/07/10 15:54:54 jer Exp $
EAPI=2
inherit autotools toolchain-funcs versionator
@@ -11,7 +11,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ppc sparc x86"
+KEYWORDS="alpha amd64 hppa ppc sparc x86"
IUSE="pam doc +ssl +dbus debug"
#Tests fail if openssl is not compiled with -DPURIFY. Gentoo's isn't. FAIL!
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2010-07-10 15:54 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-06 14:20 [gentoo-commits] gentoo-x86 commit in net-libs/wvstreams: ChangeLog wvstreams-4.6.1.ebuild Raul Porcel (armin76)
-- strict thread matches above, loose matches on Subject: below --
2010-07-10 15:54 Jeroen Roovers (jer)
2010-06-26 13:07 Gysbert Wassenaar (nixnut)
2010-05-31 19:34 Markus Meier (maekke)
2010-05-27 12:56 Peter Volkov (pva)
2010-01-04 16:07 Samuli Suominen (ssuominen)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox