public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-libs/c-client: ChangeLog c-client-2007f-r1.ebuild
@ 2012-02-20 12:38 Eray Aslan (eras)
  0 siblings, 0 replies; 9+ messages in thread
From: Eray Aslan (eras) @ 2012-02-20 12:38 UTC (permalink / raw
  To: gentoo-commits

eras        12/02/20 12:38:26

  Modified:             ChangeLog
  Added:                c-client-2007f-r1.ebuild
  Log:
  EAPI bump. Add static-libs USE flag. Fix header install.
  
  (Portage version: 2.1.10.47/cvs/Linux x86_64)

Revision  Changes    Path
1.80                 net-libs/c-client/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog	20 Nov 2011 20:20:10 -0000	1.79
+++ ChangeLog	20 Feb 2012 12:38:26 -0000	1.80
@@ -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.79 2011/11/20 20:20:10 eras Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.80 2012/02/20 12:38:26 eras Exp $
+
+*c-client-2007f-r1 (20 Feb 2012)
+
+  20 Feb 2012; Eray Aslan <eras@gentoo.org> +c-client-2007f-r1.ebuild:
+  EAPI bump. Add static-libs USE flag. Fix header install.
 
 *c-client-2007f (20 Nov 2011)
 



1.1                  net-libs/c-client/c-client-2007f-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?rev=1.1&content-type=text/plain

Index: c-client-2007f-r1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild,v 1.1 2012/02/20 12:38:26 eras Exp $

EAPI=4

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 static-libs"

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

	# 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 || die

	# Respect LDFLAGS
	epatch "${FILESDIR}"/${PN}-2007e-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}"
}

src_install() {
	if use static-libs; then
		# Library binary
		dolib.a c-client/c-client.a
		dosym c-client.a /usr/$(get_libdir)/libc-client.a
	fi

	# Now the shared library
	dolib.so c-client/libc-client.so.1.0.0

	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
	doins src/osdep/unix/*.h
	doins src/c-client/*.h
	doins c-client/linkage.h
	doins c-client/linkage.c
	doins c-client/osdep.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] 9+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-libs/c-client: ChangeLog c-client-2007f-r1.ebuild
@ 2012-04-26  9:09 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-04-26  9:09 UTC (permalink / raw
  To: gentoo-commits

ago         12/04/26 09:09:01

  Modified:             ChangeLog c-client-2007f-r1.ebuild
  Log:
  Stable for amd64, wrt bug #413601
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.81                 net-libs/c-client/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog	20 Feb 2012 12:38:26 -0000	1.80
+++ ChangeLog	26 Apr 2012 09:09:01 -0000	1.81
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/c-client
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.80 2012/02/20 12:38:26 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.81 2012/04/26 09:09:01 ago Exp $
+
+  26 Apr 2012; Agostino Sarubbo <ago@gentoo.org> c-client-2007f-r1.ebuild:
+  Stable for amd64, wrt bug #413601
 
 *c-client-2007f-r1 (20 Feb 2012)
 



1.2                  net-libs/c-client/c-client-2007f-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?r1=1.1&r2=1.2

Index: c-client-2007f-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- c-client-2007f-r1.ebuild	20 Feb 2012 12:38:26 -0000	1.1
+++ c-client-2007f-r1.ebuild	26 Apr 2012 09:09:01 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild,v 1.1 2012/02/20 12:38:26 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild,v 1.2 2012/04/26 09:09:01 ago Exp $
 
 EAPI=4
 
@@ -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 static-libs"
 
 RDEPEND="ssl? ( dev-libs/openssl )






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

* [gentoo-commits] gentoo-x86 commit in net-libs/c-client: ChangeLog c-client-2007f-r1.ebuild
@ 2012-04-29 16:45 Markus Meier (maekke)
  0 siblings, 0 replies; 9+ messages in thread
From: Markus Meier (maekke) @ 2012-04-29 16:45 UTC (permalink / raw
  To: gentoo-commits

maekke      12/04/29 16:45:54

  Modified:             ChangeLog c-client-2007f-r1.ebuild
  Log:
  arm stable, bug #413601
  
  (Portage version: 2.1.10.57/cvs/Linux x86_64)

Revision  Changes    Path
1.82                 net-libs/c-client/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog	26 Apr 2012 09:09:01 -0000	1.81
+++ ChangeLog	29 Apr 2012 16:45:54 -0000	1.82
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/c-client
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.81 2012/04/26 09:09:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.82 2012/04/29 16:45:54 maekke Exp $
+
+  29 Apr 2012; Markus Meier <maekke@gentoo.org> c-client-2007f-r1.ebuild:
+  arm stable, bug #413601
 
   26 Apr 2012; Agostino Sarubbo <ago@gentoo.org> c-client-2007f-r1.ebuild:
   Stable for amd64, wrt bug #413601



1.3                  net-libs/c-client/c-client-2007f-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?r1=1.2&r2=1.3

Index: c-client-2007f-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- c-client-2007f-r1.ebuild	26 Apr 2012 09:09:01 -0000	1.2
+++ c-client-2007f-r1.ebuild	29 Apr 2012 16:45:54 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild,v 1.2 2012/04/26 09:09:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild,v 1.3 2012/04/29 16:45:54 maekke Exp $
 
 EAPI=4
 
@@ -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 static-libs"
 
 RDEPEND="ssl? ( dev-libs/openssl )






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

* [gentoo-commits] gentoo-x86 commit in net-libs/c-client: ChangeLog c-client-2007f-r1.ebuild
@ 2012-05-08 15:55 Brent Baude (ranger)
  0 siblings, 0 replies; 9+ messages in thread
From: Brent Baude (ranger) @ 2012-05-08 15:55 UTC (permalink / raw
  To: gentoo-commits

ranger      12/05/08 15:55:32

  Modified:             ChangeLog c-client-2007f-r1.ebuild
  Log:
  Marking c-client-2007f-r1 ppc64 for bug 413601
  
  (Portage version: 2.1.10.49/cvs/Linux ppc64)

Revision  Changes    Path
1.83                 net-libs/c-client/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.83&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.83&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?r1=1.82&r2=1.83

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- ChangeLog	29 Apr 2012 16:45:54 -0000	1.82
+++ ChangeLog	8 May 2012 15:55:32 -0000	1.83
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/c-client
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.82 2012/04/29 16:45:54 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.83 2012/05/08 15:55:32 ranger Exp $
+
+  08 May 2012; Brent Baude <ranger@gentoo.org> c-client-2007f-r1.ebuild:
+  Marking c-client-2007f-r1 ppc64 for bug 413601
 
   29 Apr 2012; Markus Meier <maekke@gentoo.org> c-client-2007f-r1.ebuild:
   arm stable, bug #413601



1.4                  net-libs/c-client/c-client-2007f-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?r1=1.3&r2=1.4

Index: c-client-2007f-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- c-client-2007f-r1.ebuild	29 Apr 2012 16:45:54 -0000	1.3
+++ c-client-2007f-r1.ebuild	8 May 2012 15:55:32 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild,v 1.3 2012/04/29 16:45:54 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild,v 1.4 2012/05/08 15:55:32 ranger Exp $
 
 EAPI=4
 
@@ -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 static-libs"
 
 RDEPEND="ssl? ( dev-libs/openssl )






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

* [gentoo-commits] gentoo-x86 commit in net-libs/c-client: ChangeLog c-client-2007f-r1.ebuild
@ 2012-05-16 15:34 Jeroen Roovers (jer)
  0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2012-05-16 15:34 UTC (permalink / raw
  To: gentoo-commits

jer         12/05/16 15:34:54

  Modified:             ChangeLog c-client-2007f-r1.ebuild
  Log:
  Stable for HPPA (bug #413601).
  
  (Portage version: 2.2.0_alpha105/cvs/Linux x86_64)

Revision  Changes    Path
1.84                 net-libs/c-client/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog	8 May 2012 15:55:32 -0000	1.83
+++ ChangeLog	16 May 2012 15:34:54 -0000	1.84
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/c-client
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.83 2012/05/08 15:55:32 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.84 2012/05/16 15:34:54 jer Exp $
+
+  16 May 2012; Jeroen Roovers <jer@gentoo.org> c-client-2007f-r1.ebuild:
+  Stable for HPPA (bug #413601).
 
   08 May 2012; Brent Baude <ranger@gentoo.org> c-client-2007f-r1.ebuild:
   Marking c-client-2007f-r1 ppc64 for bug 413601



1.5                  net-libs/c-client/c-client-2007f-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?r1=1.4&r2=1.5

Index: c-client-2007f-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- c-client-2007f-r1.ebuild	8 May 2012 15:55:32 -0000	1.4
+++ c-client-2007f-r1.ebuild	16 May 2012 15:34:54 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild,v 1.4 2012/05/08 15:55:32 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild,v 1.5 2012/05/16 15:34:54 jer Exp $
 
 EAPI=4
 
@@ -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 static-libs"
 
 RDEPEND="ssl? ( dev-libs/openssl )






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

* [gentoo-commits] gentoo-x86 commit in net-libs/c-client: ChangeLog c-client-2007f-r1.ebuild
@ 2012-05-29 17:09 Alexis Ballier (aballier)
  0 siblings, 0 replies; 9+ messages in thread
From: Alexis Ballier (aballier) @ 2012-05-29 17:09 UTC (permalink / raw
  To: gentoo-commits

aballier    12/05/29 17:09:30

  Modified:             ChangeLog c-client-2007f-r1.ebuild
  Log:
  keyword ~amd64-fbsd
  
  (Portage version: 2.2.0_alpha108/cvs/Linux x86_64)

Revision  Changes    Path
1.85                 net-libs/c-client/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.85&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.85&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?r1=1.84&r2=1.85

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog	16 May 2012 15:34:54 -0000	1.84
+++ ChangeLog	29 May 2012 17:09:30 -0000	1.85
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/c-client
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.84 2012/05/16 15:34:54 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.85 2012/05/29 17:09:30 aballier Exp $
+
+  29 May 2012; Alexis Ballier <aballier@gentoo.org> c-client-2007f-r1.ebuild:
+  keyword ~amd64-fbsd
 
   16 May 2012; Jeroen Roovers <jer@gentoo.org> c-client-2007f-r1.ebuild:
   Stable for HPPA (bug #413601).



1.6                  net-libs/c-client/c-client-2007f-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?r1=1.5&r2=1.6

Index: c-client-2007f-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- c-client-2007f-r1.ebuild	16 May 2012 15:34:54 -0000	1.5
+++ c-client-2007f-r1.ebuild	29 May 2012 17:09:30 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild,v 1.5 2012/05/16 15:34:54 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild,v 1.6 2012/05/29 17:09:30 aballier Exp $
 
 EAPI=4
 
@@ -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 ~amd64-fbsd ~x86-fbsd"
 IUSE="doc kernel_linux kernel_FreeBSD pam ssl static-libs"
 
 RDEPEND="ssl? ( dev-libs/openssl )






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

* [gentoo-commits] gentoo-x86 commit in net-libs/c-client: ChangeLog c-client-2007f-r1.ebuild
@ 2012-05-29 19:41 Brent Baude (ranger)
  0 siblings, 0 replies; 9+ messages in thread
From: Brent Baude (ranger) @ 2012-05-29 19:41 UTC (permalink / raw
  To: gentoo-commits

ranger      12/05/29 19:41:34

  Modified:             ChangeLog c-client-2007f-r1.ebuild
  Log:
  Marking c-client-2007f-r1 ppc for bug 413601
  
  (Portage version: 2.1.10.49/cvs/Linux ppc64)

Revision  Changes    Path
1.86                 net-libs/c-client/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.86&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.86&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?r1=1.85&r2=1.86

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog	29 May 2012 17:09:30 -0000	1.85
+++ ChangeLog	29 May 2012 19:41:34 -0000	1.86
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/c-client
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.85 2012/05/29 17:09:30 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.86 2012/05/29 19:41:34 ranger Exp $
+
+  29 May 2012; Brent Baude <ranger@gentoo.org> c-client-2007f-r1.ebuild:
+  Marking c-client-2007f-r1 ppc for bug 413601
 
   29 May 2012; Alexis Ballier <aballier@gentoo.org> c-client-2007f-r1.ebuild:
   keyword ~amd64-fbsd



1.7                  net-libs/c-client/c-client-2007f-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?r1=1.6&r2=1.7

Index: c-client-2007f-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- c-client-2007f-r1.ebuild	29 May 2012 17:09:30 -0000	1.6
+++ c-client-2007f-r1.ebuild	29 May 2012 19:41:34 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild,v 1.6 2012/05/29 17:09:30 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild,v 1.7 2012/05/29 19:41:34 ranger Exp $
 
 EAPI=4
 
@@ -16,7 +16,7 @@
 
 LICENSE="as-is"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 IUSE="doc kernel_linux kernel_FreeBSD pam ssl static-libs"
 
 RDEPEND="ssl? ( dev-libs/openssl )






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

* [gentoo-commits] gentoo-x86 commit in net-libs/c-client: ChangeLog c-client-2007f-r1.ebuild
@ 2012-06-08 12:04 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 9+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2012-06-08 12:04 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    12/06/08 12:04:42

  Modified:             ChangeLog c-client-2007f-r1.ebuild
  Log:
  x86 stable wrt bug #413601
  
  (Portage version: 2.1.10.49/cvs/Linux i686)

Revision  Changes    Path
1.87                 net-libs/c-client/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.87&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.87&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?r1=1.86&r2=1.87

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog	29 May 2012 19:41:34 -0000	1.86
+++ ChangeLog	8 Jun 2012 12:04:42 -0000	1.87
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/c-client
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.86 2012/05/29 19:41:34 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.87 2012/06/08 12:04:42 phajdan.jr Exp $
+
+  08 Jun 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
+  c-client-2007f-r1.ebuild:
+  x86 stable wrt bug #413601
 
   29 May 2012; Brent Baude <ranger@gentoo.org> c-client-2007f-r1.ebuild:
   Marking c-client-2007f-r1 ppc for bug 413601



1.8                  net-libs/c-client/c-client-2007f-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?r1=1.7&r2=1.8

Index: c-client-2007f-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- c-client-2007f-r1.ebuild	29 May 2012 19:41:34 -0000	1.7
+++ c-client-2007f-r1.ebuild	8 Jun 2012 12:04:42 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild,v 1.7 2012/05/29 19:41:34 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild,v 1.8 2012/06/08 12:04:42 phajdan.jr Exp $
 
 EAPI=4
 
@@ -16,7 +16,7 @@
 
 LICENSE="as-is"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
 IUSE="doc kernel_linux kernel_FreeBSD pam ssl static-libs"
 
 RDEPEND="ssl? ( dev-libs/openssl )






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

* [gentoo-commits] gentoo-x86 commit in net-libs/c-client: ChangeLog c-client-2007f-r1.ebuild
@ 2012-07-08 15:27 Raul Porcel (armin76)
  0 siblings, 0 replies; 9+ messages in thread
From: Raul Porcel (armin76) @ 2012-07-08 15:27 UTC (permalink / raw
  To: gentoo-commits

armin76     12/07/08 15:27:56

  Modified:             ChangeLog c-client-2007f-r1.ebuild
  Log:
  alpha/ia64/s390/sh/sparc stable wrt #413601
  
  (Portage version: 2.1.11.5/cvs/Linux ia64)

Revision  Changes    Path
1.88                 net-libs/c-client/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.88&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?rev=1.88&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/ChangeLog?r1=1.87&r2=1.88

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ChangeLog	8 Jun 2012 12:04:42 -0000	1.87
+++ ChangeLog	8 Jul 2012 15:27:56 -0000	1.88
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/c-client
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.87 2012/06/08 12:04:42 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/ChangeLog,v 1.88 2012/07/08 15:27:56 armin76 Exp $
+
+  08 Jul 2012; Raúl Porcel <armin76@gentoo.org> c-client-2007f-r1.ebuild:
+  alpha/ia64/s390/sh/sparc stable wrt #413601
 
   08 Jun 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
   c-client-2007f-r1.ebuild:



1.9                  net-libs/c-client/c-client-2007f-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild?r1=1.8&r2=1.9

Index: c-client-2007f-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- c-client-2007f-r1.ebuild	8 Jun 2012 12:04:42 -0000	1.8
+++ c-client-2007f-r1.ebuild	8 Jul 2012 15:27:56 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild,v 1.8 2012/06/08 12:04:42 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2007f-r1.ebuild,v 1.9 2012/07/08 15:27:56 armin76 Exp $
 
 EAPI=4
 
@@ -16,7 +16,7 @@
 
 LICENSE="as-is"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd"
 IUSE="doc kernel_linux kernel_FreeBSD pam ssl static-libs"
 
 RDEPEND="ssl? ( dev-libs/openssl )






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

end of thread, other threads:[~2012-07-08 15:28 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-29 17:09 [gentoo-commits] gentoo-x86 commit in net-libs/c-client: ChangeLog c-client-2007f-r1.ebuild Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2012-07-08 15:27 Raul Porcel (armin76)
2012-06-08 12:04 PaweA Hajdan (phajdan.jr)
2012-05-29 19:41 Brent Baude (ranger)
2012-05-16 15:34 Jeroen Roovers (jer)
2012-05-08 15:55 Brent Baude (ranger)
2012-04-29 16:45 Markus Meier (maekke)
2012-04-26  9:09 Agostino Sarubbo (ago)
2012-02-20 12:38 Eray Aslan (eras)

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