* [gentoo-commits] gentoo-x86 commit in net-libs/c-client: ChangeLog c-client-2007e-r2.ebuild
@ 2011-05-11 10:47 Eray Aslan (eras)
0 siblings, 0 replies; 10+ messages in thread
From: Eray Aslan (eras) @ 2011-05-11 10:47 UTC (permalink / raw
To: gentoo-commits
eras 11/05/11 10:47:57
Modified: ChangeLog
Added: c-client-2007e-r2.ebuild
Log:
Symlink shared library - bug #255118. Drop kolab
USE flag. QA fixes.
(Portage version: 2.1.9.48/cvs/Linux x86_64)
Revision Changes Path
1.66 net-libs/c-client/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.66&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.66&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?r1=1.65&r2=1.66
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog 16 Mar 2011 13:48:15 -0000 1.65
+++ ChangeLog 11 May 2011 10:47:57 -0000 1.66
@@ -1,6 +1,11 @@
# ChangeLog for net-libs/c-client
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.65 2011/03/16 13:48:15 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.66 2011/05/11 10:47:57 eras Exp $
+
+*c-client-2007e-r2 (11 May 2011)
+
+ 11 May 2011; Eray Aslan <eras@gentoo.org> +c-client-2007e-r2.ebuild:
+ Symlink shared library - bug #255118. Drop kolab USE flag.
16 Mar 2011; Eray Aslan <eras@gentoo.org> c-client-2007e.ebuild,
c-client-2007e-r1.ebuild:
1.1 net-libs/c-client/c-client-2007e-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?rev=1.1&content-type=text/plain
Index: c-client-2007e-r2.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v 1.1 2011/05/11 10:47:57 eras Exp $
EAPI="2"
inherit flag-o-matic eutils libtool toolchain-funcs
MY_PN=imap
MY_P="${MY_PN}-${PV}"
S=${WORKDIR}/${MY_P}
DESCRIPTION="UW IMAP c-client library"
HOMEPAGE="http://www.washington.edu/imap/"
SRC_URI="ftp://ftp.cac.washington.edu/imap/${MY_P}.tar.Z"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="doc kernel_linux kernel_FreeBSD pam ssl"
RDEPEND="ssl? ( dev-libs/openssl )
!net-mail/uw-imap"
DEPEND="${RDEPEND}
kernel_linux? ( pam? ( >=sys-libs/pam-0.72 ) )"
src_prepare() {
# Tarball packed with bad file perms
chmod -R u+rwX,go-w .
# lots of things need -fPIC, including various platforms, and this library
# generally should be built with it anyway.
append-flags -fPIC
# Modifications so we can build it optimally and correctly
sed \
-e "s:BASECFLAGS=\".*\":BASECFLAGS=:g" \
-e 's:SSLDIR=/usr/local/ssl:SSLDIR=/usr:g' \
-e 's:SSLCERTS=$(SSLDIR)/certs:SSLCERTS=/etc/ssl/certs:g' \
-i src/osdep/unix/Makefile || die "Makefile sed fixing failed"
# Targets should use the Gentoo (ie linux) fs
sed -e '/^bsf:/,/^$/ s:ACTIVEFILE=.*:ACTIVEFILE=/var/lib/news/active:g' \
-i src/osdep/unix/Makefile || die "Makefile sex fixing failed for FreeBSD"
# Apply a patch to only build the stuff we need for c-client
epatch "${FILESDIR}"/${PN}-2006k_GENTOO_Makefile.patch || die "epatch failed"
# Apply patch to add the compilation of a .so for PHP
# This was previously conditional, but is more widely useful.
epatch "${FILESDIR}"/${PN}-2006k_GENTOO_amd64-so-fix.patch
# Remove the pesky checks about SSL stuff
sed -e '/read.*exit/d' -i Makefile
# Respect LDFLAGS
epatch "${FILESDIR}"/${P}-ldflags.patch
sed -e "s/CC=cc/CC=$(tc-getCC)/" \
-e "s/ARRC=ar/ARRC=$(tc-getAR)/" \
-e "s/RANLIB=ranlib/RANLIB=$(tc-getRANLIB)/" \
-i src/osdep/unix/Makefile || die "Respecting build flags"
elibtoolize
}
src_compile() {
local ssltype target
use ssl && ssltype="unix" || ssltype="none"
if use kernel_linux ; then
use pam && target=lnp || target=lnx
elif use kernel_FreeBSD ; then
target=bsf
fi
# no parallel builds supported!
emake -j1 SSLTYPE=${ssltype} $target EXTRACFLAGS="${CFLAGS}" EXTRALDFLAGS="${LDFLAGS}" || die "make failed"
}
src_install() {
# Library binary
dolib.a c-client/c-client.a || die
dosym c-client.a /usr/$(get_libdir)/libc-client.a
# Now the shared library
dolib.so c-client/libc-client.so.1.0.0 || die
cd "${D}"/usr/$(get_libdir)
ln -s libc-client.so.1.0.0 libc-client.so.1
ln -s libc-client.so.1.0.0 libc-client.so
cd "${S}"
# Headers
insinto /usr/include/imap
doins c-client/*.h
doins c-client/linkage.c
#exclude these dupes (can't do it before now due to symlink hell)
rm "${D}"/usr/include/imap/os_*.h
# Docs
dodoc README docs/*.txt docs/BUILD docs/CONFIG docs/RELNOTES docs/SSLBUILD
if use doc; then
docinto rfc
dodoc docs/rfc/*.txt
docinto draft
dodoc docs/draft/*
fi
}
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/c-client: ChangeLog c-client-2007e-r2.ebuild
@ 2011-05-27 10:53 Markos Chandras (hwoarang)
0 siblings, 0 replies; 10+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-05-27 10:53 UTC (permalink / raw
To: gentoo-commits
hwoarang 11/05/27 10:53:55
Modified: ChangeLog c-client-2007e-r2.ebuild
Log:
Stable on amd64 wrt bug #368585
(Portage version: 2.1.9.49/cvs/Linux x86_64)
Revision Changes Path
1.67 net-libs/c-client/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.67&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.67&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?r1=1.66&r2=1.67
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog 11 May 2011 10:47:57 -0000 1.66
+++ ChangeLog 27 May 2011 10:53:55 -0000 1.67
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/c-client
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.66 2011/05/11 10:47:57 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.67 2011/05/27 10:53:55 hwoarang Exp $
+
+ 27 May 2011; Markos Chandras <hwoarang@gentoo.org> c-client-2007e-r2.ebuild:
+ Stable on amd64 wrt bug #368585
*c-client-2007e-r2 (11 May 2011)
1.2 net-libs/c-client/c-client-2007e-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?r1=1.1&r2=1.2
Index: c-client-2007e-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- c-client-2007e-r2.ebuild 11 May 2011 10:47:57 -0000 1.1
+++ c-client-2007e-r2.ebuild 27 May 2011 10:53:55 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v 1.1 2011/05/11 10:47:57 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v 1.2 2011/05/27 10:53:55 hwoarang Exp $
EAPI="2"
@@ -16,7 +16,7 @@
LICENSE="as-is"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="doc kernel_linux kernel_FreeBSD pam ssl"
RDEPEND="ssl? ( dev-libs/openssl )
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/c-client: ChangeLog c-client-2007e-r2.ebuild
@ 2011-05-31 16:31 Eray Aslan (eras)
0 siblings, 0 replies; 10+ messages in thread
From: Eray Aslan (eras) @ 2011-05-31 16:31 UTC (permalink / raw
To: gentoo-commits
eras 11/05/31 16:31:50
Modified: ChangeLog c-client-2007e-r2.ebuild
Log:
Improve symlink code - bug #369351. Thanks to Nicola Rauseo.
(Portage version: 2.1.9.50/cvs/Linux x86_64)
Revision Changes Path
1.68 net-libs/c-client/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.68&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.68&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?r1=1.67&r2=1.68
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog 27 May 2011 10:53:55 -0000 1.67
+++ ChangeLog 31 May 2011 16:31:50 -0000 1.68
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/c-client
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.67 2011/05/27 10:53:55 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.68 2011/05/31 16:31:50 eras Exp $
+
+ 31 May 2011; Eray Aslan <eras@gentoo.org> c-client-2007e-r2.ebuild:
+ Improve symlink code - bug #369351. Thanks to Nicola Rauseo.
27 May 2011; Markos Chandras <hwoarang@gentoo.org> c-client-2007e-r2.ebuild:
Stable on amd64 wrt bug #368585
1.3 net-libs/c-client/c-client-2007e-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?r1=1.2&r2=1.3
Index: c-client-2007e-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- c-client-2007e-r2.ebuild 27 May 2011 10:53:55 -0000 1.2
+++ c-client-2007e-r2.ebuild 31 May 2011 16:31:50 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v 1.2 2011/05/27 10:53:55 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v 1.3 2011/05/31 16:31:50 eras Exp $
EAPI="2"
@@ -83,10 +83,8 @@
# Now the shared library
dolib.so c-client/libc-client.so.1.0.0 || die
- cd "${D}"/usr/$(get_libdir)
- ln -s libc-client.so.1.0.0 libc-client.so.1
- ln -s libc-client.so.1.0.0 libc-client.so
- cd "${S}"
+ dosym libc-client.so.1.0.0 /usr/$(get_libdir)/libc-client.so
+ dosym libc-client.so.1.0.0 /usr/$(get_libdir)/libc-client.so.1
# Headers
insinto /usr/include/imap
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/c-client: ChangeLog c-client-2007e-r2.ebuild
@ 2011-05-31 20:50 Markus Meier (maekke)
0 siblings, 0 replies; 10+ messages in thread
From: Markus Meier (maekke) @ 2011-05-31 20:50 UTC (permalink / raw
To: gentoo-commits
maekke 11/05/31 20:50:37
Modified: ChangeLog c-client-2007e-r2.ebuild
Log:
x86 stable, bug #368585
(Portage version: 2.1.9.50/cvs/Linux x86_64)
Revision Changes Path
1.69 net-libs/c-client/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.69&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.69&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?r1=1.68&r2=1.69
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog 31 May 2011 16:31:50 -0000 1.68
+++ ChangeLog 31 May 2011 20:50:37 -0000 1.69
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/c-client
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.68 2011/05/31 16:31:50 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.69 2011/05/31 20:50:37 maekke Exp $
+
+ 31 May 2011; Markus Meier <maekke@gentoo.org> c-client-2007e-r2.ebuild:
+ x86 stable, bug #368585
31 May 2011; Eray Aslan <eras@gentoo.org> c-client-2007e-r2.ebuild:
Improve symlink code - bug #369351. Thanks to Nicola Rauseo.
1.4 net-libs/c-client/c-client-2007e-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?r1=1.3&r2=1.4
Index: c-client-2007e-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- c-client-2007e-r2.ebuild 31 May 2011 16:31:50 -0000 1.3
+++ c-client-2007e-r2.ebuild 31 May 2011 20:50:37 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v 1.3 2011/05/31 16:31:50 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v 1.4 2011/05/31 20:50:37 maekke Exp $
EAPI="2"
@@ -16,7 +16,7 @@
LICENSE="as-is"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
IUSE="doc kernel_linux kernel_FreeBSD pam ssl"
RDEPEND="ssl? ( dev-libs/openssl )
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/c-client: ChangeLog c-client-2007e-r2.ebuild
@ 2011-06-05 20:09 Jeroen Roovers (jer)
0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers (jer) @ 2011-06-05 20:09 UTC (permalink / raw
To: gentoo-commits
jer 11/06/05 20:09:40
Modified: ChangeLog c-client-2007e-r2.ebuild
Log:
Stable for HPPA (bug #368585).
(Portage version: 2.2.0_alpha37/cvs/Linux x86_64)
Revision Changes Path
1.70 net-libs/c-client/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.70&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.70&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?r1=1.69&r2=1.70
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog 31 May 2011 20:50:37 -0000 1.69
+++ ChangeLog 5 Jun 2011 20:09:40 -0000 1.70
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/c-client
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.69 2011/05/31 20:50:37 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.70 2011/06/05 20:09:40 jer Exp $
+
+ 05 Jun 2011; Jeroen Roovers <jer@gentoo.org> c-client-2007e-r2.ebuild:
+ Stable for HPPA (bug #368585).
31 May 2011; Markus Meier <maekke@gentoo.org> c-client-2007e-r2.ebuild:
x86 stable, bug #368585
1.5 net-libs/c-client/c-client-2007e-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?r1=1.4&r2=1.5
Index: c-client-2007e-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- c-client-2007e-r2.ebuild 31 May 2011 20:50:37 -0000 1.4
+++ c-client-2007e-r2.ebuild 5 Jun 2011 20:09:40 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v 1.4 2011/05/31 20:50:37 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v 1.5 2011/06/05 20:09:40 jer Exp $
EAPI="2"
@@ -16,7 +16,7 @@
LICENSE="as-is"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
IUSE="doc kernel_linux kernel_FreeBSD pam ssl"
RDEPEND="ssl? ( dev-libs/openssl )
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/c-client: ChangeLog c-client-2007e-r2.ebuild
@ 2011-06-07 19:54 Eray Aslan (eras)
0 siblings, 0 replies; 10+ messages in thread
From: Eray Aslan (eras) @ 2011-06-07 19:54 UTC (permalink / raw
To: gentoo-commits
eras 11/06/07 19:54:18
Modified: ChangeLog c-client-2007e-r2.ebuild
Log:
Add back kolab patch - bug #370489
(Portage version: 2.1.10/cvs/Linux x86_64)
Revision Changes Path
1.73 net-libs/c-client/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.73&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.73&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?r1=1.72&r2=1.73
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog 7 Jun 2011 13:11:08 -0000 1.72
+++ ChangeLog 7 Jun 2011 19:54:18 -0000 1.73
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/c-client
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.72 2011/06/07 13:11:08 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.73 2011/06/07 19:54:18 eras Exp $
+
+ 07 Jun 2011; Eray Aslan <eras@gentoo.org> c-client-2007e-r2.ebuild:
+ Add back kolab patch - bug #370489
07 Jun 2011; Eray Aslan <eras@gentoo.org> files/c-client-2007e-ldflags.patch:
Fix as-needed properly - bug #370421
1.6 net-libs/c-client/c-client-2007e-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?r1=1.5&r2=1.6
Index: c-client-2007e-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- c-client-2007e-r2.ebuild 5 Jun 2011 20:09:40 -0000 1.5
+++ c-client-2007e-r2.ebuild 7 Jun 2011 19:54:18 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v 1.5 2011/06/05 20:09:40 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v 1.6 2011/06/07 19:54:18 eras Exp $
EAPI="2"
@@ -17,7 +17,7 @@
LICENSE="as-is"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
-IUSE="doc kernel_linux kernel_FreeBSD pam ssl"
+IUSE="doc kernel_linux kernel_FreeBSD kolab pam ssl"
RDEPEND="ssl? ( dev-libs/openssl )
!net-mail/uw-imap"
@@ -60,6 +60,12 @@
-e "s/RANLIB=ranlib/RANLIB=$(tc-getRANLIB)/" \
-i src/osdep/unix/Makefile || die "Respecting build flags"
+ # Add kolab support.
+ # http://kolab.org/cgi-bin/viewcvs-kolab.cgi/server/patches/imap/
+ if use kolab ; then
+ epatch "${FILESDIR}"/${PN}-2006k_KOLAB_Annotations.patch || die "epatch failed"
+ fi
+
elibtoolize
}
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/c-client: ChangeLog c-client-2007e-r2.ebuild
@ 2011-06-11 12:00 Markus Meier (maekke)
0 siblings, 0 replies; 10+ messages in thread
From: Markus Meier (maekke) @ 2011-06-11 12:00 UTC (permalink / raw
To: gentoo-commits
maekke 11/06/11 12:00:19
Modified: ChangeLog c-client-2007e-r2.ebuild
Log:
arm stable, bug #368585
(Portage version: 2.1.10/cvs/Linux i686)
Revision Changes Path
1.74 net-libs/c-client/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.74&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.74&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?r1=1.73&r2=1.74
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog 7 Jun 2011 19:54:18 -0000 1.73
+++ ChangeLog 11 Jun 2011 12:00:19 -0000 1.74
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/c-client
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.73 2011/06/07 19:54:18 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.74 2011/06/11 12:00:19 maekke Exp $
+
+ 11 Jun 2011; Markus Meier <maekke@gentoo.org> c-client-2007e-r2.ebuild:
+ arm stable, bug #368585
07 Jun 2011; Eray Aslan <eras@gentoo.org> c-client-2007e-r2.ebuild:
Add back kolab patch - bug #370489
1.7 net-libs/c-client/c-client-2007e-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?r1=1.6&r2=1.7
Index: c-client-2007e-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- c-client-2007e-r2.ebuild 7 Jun 2011 19:54:18 -0000 1.6
+++ c-client-2007e-r2.ebuild 11 Jun 2011 12:00:19 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v 1.6 2011/06/07 19:54:18 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v 1.7 2011/06/11 12:00:19 maekke Exp $
EAPI="2"
@@ -16,7 +16,7 @@
LICENSE="as-is"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
IUSE="doc kernel_linux kernel_FreeBSD kolab pam ssl"
RDEPEND="ssl? ( dev-libs/openssl )
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/c-client: ChangeLog c-client-2007e-r2.ebuild
@ 2011-06-12 15:56 Raul Porcel (armin76)
0 siblings, 0 replies; 10+ messages in thread
From: Raul Porcel (armin76) @ 2011-06-12 15:56 UTC (permalink / raw
To: gentoo-commits
armin76 11/06/12 15:56:35
Modified: ChangeLog c-client-2007e-r2.ebuild
Log:
alpha/ia64/s390/sh/sparc stable wrt #368585
(Portage version: 2.1.10/cvs/Linux ia64)
Revision Changes Path
1.75 net-libs/c-client/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.75&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.75&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?r1=1.74&r2=1.75
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog 11 Jun 2011 12:00:19 -0000 1.74
+++ ChangeLog 12 Jun 2011 15:56:35 -0000 1.75
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/c-client
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.74 2011/06/11 12:00:19 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.75 2011/06/12 15:56:35 armin76 Exp $
+
+ 12 Jun 2011; Raúl Porcel <armin76@gentoo.org> c-client-2007e-r2.ebuild:
+ alpha/ia64/s390/sh/sparc stable wrt #368585
11 Jun 2011; Markus Meier <maekke@gentoo.org> c-client-2007e-r2.ebuild:
arm stable, bug #368585
1.8 net-libs/c-client/c-client-2007e-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?r1=1.7&r2=1.8
Index: c-client-2007e-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- c-client-2007e-r2.ebuild 11 Jun 2011 12:00:19 -0000 1.7
+++ c-client-2007e-r2.ebuild 12 Jun 2011 15:56:35 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v 1.7 2011/06/11 12:00:19 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v 1.8 2011/06/12 15:56:35 armin76 Exp $
EAPI="2"
@@ -16,7 +16,7 @@
LICENSE="as-is"
SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 s390 sh sparc x86 ~x86-fbsd"
IUSE="doc kernel_linux kernel_FreeBSD kolab pam ssl"
RDEPEND="ssl? ( dev-libs/openssl )
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/c-client: ChangeLog c-client-2007e-r2.ebuild
@ 2011-06-22 21:31 Brent Baude (ranger)
0 siblings, 0 replies; 10+ messages in thread
From: Brent Baude (ranger) @ 2011-06-22 21:31 UTC (permalink / raw
To: gentoo-commits
ranger 11/06/22 21:31:19
Modified: ChangeLog c-client-2007e-r2.ebuild
Log:
Marking c-client-2007e-r2 ppc for bug 368585
(Portage version: 2.1.9.42/cvs/Linux ppc64)
Revision Changes Path
1.76 net-libs/c-client/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.76&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.76&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?r1=1.75&r2=1.76
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog 12 Jun 2011 15:56:35 -0000 1.75
+++ ChangeLog 22 Jun 2011 21:31:19 -0000 1.76
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/c-client
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.75 2011/06/12 15:56:35 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.76 2011/06/22 21:31:19 ranger Exp $
+
+ 22 Jun 2011; Brent Baude <ranger@gentoo.org> c-client-2007e-r2.ebuild:
+ Marking c-client-2007e-r2 ppc for bug 368585
12 Jun 2011; Raúl Porcel <armin76@gentoo.org> c-client-2007e-r2.ebuild:
alpha/ia64/s390/sh/sparc stable wrt #368585
1.9 net-libs/c-client/c-client-2007e-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?r1=1.8&r2=1.9
Index: c-client-2007e-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- c-client-2007e-r2.ebuild 12 Jun 2011 15:56:35 -0000 1.8
+++ c-client-2007e-r2.ebuild 22 Jun 2011 21:31:19 -0000 1.9
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v 1.8 2011/06/12 15:56:35 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v 1.9 2011/06/22 21:31:19 ranger Exp $
EAPI="2"
@@ -16,7 +16,7 @@
LICENSE="as-is"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 s390 sh sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 s390 sh sparc x86 ~x86-fbsd"
IUSE="doc kernel_linux kernel_FreeBSD kolab pam ssl"
RDEPEND="ssl? ( dev-libs/openssl )
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/c-client: ChangeLog c-client-2007e-r2.ebuild
@ 2011-07-17 21:31 Mark Loeser (halcy0n)
0 siblings, 0 replies; 10+ messages in thread
From: Mark Loeser (halcy0n) @ 2011-07-17 21:31 UTC (permalink / raw
To: gentoo-commits
halcy0n 11/07/17 21:31:12
Modified: ChangeLog c-client-2007e-r2.ebuild
Log:
Stable for ppc64; bug #368585
(Portage version: 2.1.10.3/cvs/Linux ppc64)
Revision Changes Path
1.77 net-libs/c-client/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.77&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.77&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?r1=1.76&r2=1.77
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- ChangeLog 22 Jun 2011 21:31:19 -0000 1.76
+++ ChangeLog 17 Jul 2011 21:31:11 -0000 1.77
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/c-client
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.76 2011/06/22 21:31:19 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.77 2011/07/17 21:31:11 halcy0n Exp $
+
+ 17 Jul 2011; Mark Loeser <halcy0n@gentoo.org> c-client-2007e-r2.ebuild:
+ Stable for ppc64; bug #368585
22 Jun 2011; Brent Baude <ranger@gentoo.org> c-client-2007e-r2.ebuild:
Marking c-client-2007e-r2 ppc for bug 368585
1.10 net-libs/c-client/c-client-2007e-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild?r1=1.9&r2=1.10
Index: c-client-2007e-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- c-client-2007e-r2.ebuild 22 Jun 2011 21:31:19 -0000 1.9
+++ c-client-2007e-r2.ebuild 17 Jul 2011 21:31:11 -0000 1.10
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v 1.9 2011/06/22 21:31:19 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007e-r2.ebuild,v 1.10 2011/07/17 21:31:11 halcy0n Exp $
EAPI="2"
@@ -16,7 +16,7 @@
LICENSE="as-is"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 s390 sh sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
IUSE="doc kernel_linux kernel_FreeBSD kolab pam ssl"
RDEPEND="ssl? ( dev-libs/openssl )
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2011-07-17 21:31 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-11 10:47 [gentoo-commits] gentoo-x86 commit in net-libs/c-client: ChangeLog c-client-2007e-r2.ebuild Eray Aslan (eras)
-- strict thread matches above, loose matches on Subject: below --
2011-05-27 10:53 Markos Chandras (hwoarang)
2011-05-31 16:31 Eray Aslan (eras)
2011-05-31 20:50 Markus Meier (maekke)
2011-06-05 20:09 Jeroen Roovers (jer)
2011-06-07 19:54 Eray Aslan (eras)
2011-06-11 12:00 Markus Meier (maekke)
2011-06-12 15:56 Raul Porcel (armin76)
2011-06-22 21:31 Brent Baude (ranger)
2011-07-17 21:31 Mark Loeser (halcy0n)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox