public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-mail/uw-imap: ChangeLog uw-imap-2007b.ebuild
@ 2008-07-24 20:37 Christian Hoffmann (hoffie)
  0 siblings, 0 replies; 7+ messages in thread
From: Christian Hoffmann (hoffie) @ 2008-07-24 20:37 UTC (permalink / raw
  To: gentoo-commits

hoffie      08/07/24 20:37:01

  Modified:             ChangeLog
  Added:                uw-imap-2007b.ebuild
  Log:
  version bump (bug 153281), thanks to Target <target@targ.dyndns.org> for ebuild submission and testing; also fixing license; thanks to dertobi123 for approval for this commit
  (Portage version: 2.2_rc3/cvs/Linux 2.6.26-gentoo x86_64)

Revision  Changes    Path
1.99                 net-mail/uw-imap/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.99&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.99&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/ChangeLog?r1=1.98&r2=1.99

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -r1.98 -r1.99
--- ChangeLog	15 Mar 2008 23:17:20 -0000	1.98
+++ ChangeLog	24 Jul 2008 20:37:00 -0000	1.99
@@ -1,6 +1,13 @@
 # ChangeLog for net-mail/uw-imap
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.98 2008/03/15 23:17:20 halcy0n Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.99 2008/07/24 20:37:00 hoffie Exp $
+
+*uw-imap-2007b (24 Jul 2008)
+
+  24 Jul 2008; Christian Hoffmann <hoffie@gentoo.org> +uw-imap-2007b.ebuild:
+  version bump (bug 153281), thanks to Target <target@targ.dyndns.org> for
+  ebuild submission and testing; also fixing license; thanks to dertobi123
+  for approval for this commit
 
   15 Mar 2008; Mark Loeser <halcy0n@gentoo.org> uw-imap-2004g-r2.ebuild:
   Add a blocker in RDEPEND on virtual/imapd so we avoid manpage collisions;



1.1                  net-mail/uw-imap/uw-imap-2007b.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild?rev=1.1&content-type=text/plain

Index: uw-imap-2007b.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild,v 1.1 2008/07/24 20:37:00 hoffie Exp $

inherit eutils flag-o-matic

MY_P="imap-${PV}"
S="${WORKDIR}/${MY_P}"

DESCRIPTION="UW server daemons for IMAP and POP network mail protocols."
SRC_URI="ftp://ftp.cac.washington.edu/imap/${MY_P}.tar.Z"
HOMEPAGE="http://www.washington.edu/imap/"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE="ipv6 ssl kerberos clearpasswd"

PROVIDE="virtual/imapd"
PROVIDE="${PROVIDE} virtual/imap-c-client"
DEPEND="!net-mail/vimap
	!virtual/imap-c-client
	>=net-mail/uw-mailutils-${PV}
	virtual/libc
	>=sys-libs/pam-0.72
	>=net-mail/mailbase-0.00-r8
	ssl? ( dev-libs/openssl )
	kerberos? ( virtual/krb5 )"

RDEPEND="${DEPEND}
	sys-apps/xinetd
	!virtual/imapd"

pkg_setup() {
	echo
	if use clearpasswd; then
		ewarn "Building uw-imap with cleartext LOGIN allowed. Disable \"clearpasswd\" USE"
		ewarn "flag to restrict cleartext LOGIN to SSL/TLS sessions only."
	else
		if use ssl; then
			ewarn "Building uw-imap with cleartext LOGIN restricted to SSL/TLS sessions only."
			ewarn "Enable \"clearpasswd\" flag to allow unrestricted cleartext LOGIN."
		else
			ewarn "You have disabled SSL for uw-imap, but want cleartext passwords restricted to"
			ewarn "SSL/TLS sessions only. Either enable \"ssl\" USE flag, or \"clearpasswd\""
			ewarn "USE flag."
			die "Impossible USE flag combination, see above message"
		fi
	fi
	echo
	# ewarn people not using pam with this file
	if ! built_with_use net-mail/mailbase pam ; then
		echo
		ewarn "It is needed to have the net-mail/mailbase package"
		ewarn "  built with the pam use flag activated. Please rebuild"
		ewarn "  net-mail/mailbase with pam activated."
		echo
		die "mailbase has to be built with pam use flag"
	fi
}

src_unpack() {
	unpack ${A}
	# Tarball packed with bad file perms
	chmod -R ug+w "${S}"

	cd "${S}"

	if use amd64; then
		# Apply our patch to actually build the shared library for PHP5
		epatch "${FILESDIR}"/${PN}-2004c-amd64-so-fix.patch
	fi

	# Now we must make all the individual Makefiles use different CFLAGS,
	# otherwise they would all use -fPIC
	sed -i -e "s|\`cat \$C/CFLAGS\`|${CFLAGS}|g" src/dmail/Makefile \
		src/imapd/Makefile src/ipopd/Makefile src/mailutil/Makefile \
		src/mlock/Makefile src/mtest/Makefile src/tmail/Makefile \
		|| die "sed failed patching Makefile CFLAGS."
	# Now there is only c-client left, which should be built with -fPIC
	append-flags -fPIC

	cd "${S}"/src/osdep/unix/
	cp Makefile Makefile.orig
	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' \
		< Makefile.orig > Makefile

	# Uncomment this for MBX support
	#cp Makefile Makefile.orig2
	#sed \
	#	-e "s:CREATEPROTO=unixproto:CREATEPROTO=mbxproto:" \
	#	-e "s:EMPTYPROTO=unixproto:EMPTYPROTO=mbxproto:" \
	#	< Makefile.orig2 > Makefile
}

src_compile() {
	local mymake
	local ipver
	ipver="IP=4"

	use ipv6 && echo ipv6
	use kerberos && echo kerberos
	use ssl && echo ssl
	use ipv6 && ipver="IP=6"
	use kerberos \
	  && mymake="EXTRAAUTHENTICATORS=gss"
	if use ssl; then
		cd "${S}"
		echo ${mymake}
		if use clearpasswd; then
			yes | make lnp ${mymake} ${ipver} SSLTYPE=unix EXTRACFLAGS="${CFLAGS}" || die
		else
			yes | make lnp ${mymake} ${ipver} SSLTYPE=unix.nopwd EXTRACFLAGS="${CFLAGS}" || die
		fi

		local i
		for i in imapd ipop3d; do
			umask 077
			PEM1=`/bin/mktemp ${T}/openssl.XXXXXX`
			PEM2=`/bin/mktemp ${T}/openssl.XXXXXX`
			/usr/bin/openssl req -newkey rsa:1024 -keyout $$PEM1 \
				 -nodes -x509 -days 365 -out  $$PEM2 << EOF
--
SomeState
SomeCity
SomeOrganization
SomeOrganizationalUnit
localhost.localdomain
root@localhost.localdomain
EOF

			cat $$PEM1 >  ${i}.pem
			echo ""    >> ${i}.pem
			cat $$PEM2 >> ${i}.pem
			rm $$PEM1 $$PEM2
			umask 022
		done
	else
		yes | make lnp ${mymake} ${ipver} SSLTYPE=none EXTRACFLAGS="${CFLAGS}" || die
	fi
}

src_install() {
	into /usr
	dosbin imapd/imapd ipopd/ipop?d dmail/dmail tmail/tmail
	dobin mlock/mlock

	if use ssl; then
		dodir /etc/ssl/certs
		mv imapd.pem "${D}"/etc/ssl/certs
		mv ipop3d.pem "${D}"/etc/ssl/certs
	fi

	if use amd64; then
		dolib.so c-client/libc-client.so.1.0.0
		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
	fi

	cd "${S}"

	insinto /usr/include/imap
	doins c-client/{c-client,flstring,mail,imap4r1,rfc822,misc,smtp,nntp,utf8,utf8aux}.h
	doins c-client/linkage.{c,h}
	doins c-client/{osdep,env_unix,env,fs,ftl,nl,tcp}.h
	dolib.a c-client/c-client.a
	dosym /usr/$(get_libdir)/c-client.a /usr/$(get_libdir)/libc-client.a

	doman src/ipopd/ipopd.8 src/imapd/imapd.8
	doman src/dmail/dmail.1 src/tmail/tmail.1

	dodoc README docs/*.txt docs/CONFIG docs/RELNOTES

	docinto rfc
	dodoc docs/rfc/*.txt

	# gentoo config stuff
	insinto /etc/xinetd.d
	newins "${FILESDIR}"/uw-imap.xinetd  imap
	newins "${FILESDIR}"/uw-ipop2.xinetd ipop2
	newins "${FILESDIR}"/uw-ipop3.xinetd ipop3
	newins "${FILESDIR}"/uw-ipop3s.xinetd ipop3s
	newins "${FILESDIR}"/uw-imaps.xinetd imaps
}






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

* [gentoo-commits] gentoo-x86 commit in net-mail/uw-imap: ChangeLog uw-imap-2007b.ebuild
@ 2008-08-20 19:31 Markus Meier (maekke)
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2008-08-20 19:31 UTC (permalink / raw
  To: gentoo-commits

maekke      08/08/20 19:31:23

  Modified:             ChangeLog uw-imap-2007b.ebuild
  Log:
  amd64/x86 stable, bug #231258
  (Portage version: 2.2_rc8/cvs/Linux 2.6.27-rc2 i686)

Revision  Changes    Path
1.101                net-mail/uw-imap/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.101&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.101&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/ChangeLog?r1=1.100&r2=1.101

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- ChangeLog	19 Aug 2008 14:44:15 -0000	1.100
+++ ChangeLog	20 Aug 2008 19:31:22 -0000	1.101
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/uw-imap
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.100 2008/08/19 14:44:15 hoffie Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.101 2008/08/20 19:31:22 maekke Exp $
+
+  20 Aug 2008; Markus Meier <maekke@gentoo.org> uw-imap-2007b.ebuild:
+  amd64/x86 stable, bug #231258
 
   19 Aug 2008; Christian Hoffmann <hoffie@gentoo.org> metadata.xml,
   uw-imap-2007b.ebuild:



1.3                  net-mail/uw-imap/uw-imap-2007b.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild?r1=1.2&r2=1.3

Index: uw-imap-2007b.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- uw-imap-2007b.ebuild	19 Aug 2008 14:44:15 -0000	1.2
+++ uw-imap-2007b.ebuild	20 Aug 2008 19:31:22 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild,v 1.2 2008/08/19 14:44:15 hoffie Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild,v 1.3 2008/08/20 19:31:22 maekke Exp $
 
 inherit eutils flag-o-matic
 
@@ -13,7 +13,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc x86"
 IUSE="ipv6 ssl kerberos clearpasswd"
 
 PROVIDE="virtual/imapd"






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

* [gentoo-commits] gentoo-x86 commit in net-mail/uw-imap: ChangeLog uw-imap-2007b.ebuild
@ 2008-08-21 17:08 Friedrich Oslage (bluebird)
  0 siblings, 0 replies; 7+ messages in thread
From: Friedrich Oslage (bluebird) @ 2008-08-21 17:08 UTC (permalink / raw
  To: gentoo-commits

bluebird    08/08/21 17:08:47

  Modified:             ChangeLog uw-imap-2007b.ebuild
  Log:
  Stable on sparc, bug #231258
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.102                net-mail/uw-imap/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.102&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.102&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/ChangeLog?r1=1.101&r2=1.102

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -r1.101 -r1.102
--- ChangeLog	20 Aug 2008 19:31:22 -0000	1.101
+++ ChangeLog	21 Aug 2008 17:08:46 -0000	1.102
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/uw-imap
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.101 2008/08/20 19:31:22 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.102 2008/08/21 17:08:46 bluebird Exp $
+
+  21 Aug 2008; Friedrich Oslage <bluebird@gentoo.org> uw-imap-2007b.ebuild:
+  Stable on sparc, bug #231258
 
   20 Aug 2008; Markus Meier <maekke@gentoo.org> uw-imap-2007b.ebuild:
   amd64/x86 stable, bug #231258



1.4                  net-mail/uw-imap/uw-imap-2007b.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild?r1=1.3&r2=1.4

Index: uw-imap-2007b.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- uw-imap-2007b.ebuild	20 Aug 2008 19:31:22 -0000	1.3
+++ uw-imap-2007b.ebuild	21 Aug 2008 17:08:46 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild,v 1.3 2008/08/20 19:31:22 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild,v 1.4 2008/08/21 17:08:46 bluebird Exp $
 
 inherit eutils flag-o-matic
 
@@ -13,7 +13,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 sparc x86"
 IUSE="ipv6 ssl kerberos clearpasswd"
 
 PROVIDE="virtual/imapd"






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

* [gentoo-commits] gentoo-x86 commit in net-mail/uw-imap: ChangeLog uw-imap-2007b.ebuild
@ 2008-08-22 19:14 Jeroen Roovers (jer)
  0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2008-08-22 19:14 UTC (permalink / raw
  To: gentoo-commits

jer         08/08/22 19:14:09

  Modified:             ChangeLog uw-imap-2007b.ebuild
  Log:
  Stable for HPPA (bug #231258).
  (Portage version: 2.2_rc8/cvs/Linux 2.6.25-gentoo-r7-JeR i686)

Revision  Changes    Path
1.103                net-mail/uw-imap/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.103&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.103&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/ChangeLog?r1=1.102&r2=1.103

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -r1.102 -r1.103
--- ChangeLog	21 Aug 2008 17:08:46 -0000	1.102
+++ ChangeLog	22 Aug 2008 19:14:09 -0000	1.103
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/uw-imap
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.102 2008/08/21 17:08:46 bluebird Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.103 2008/08/22 19:14:09 jer Exp $
+
+  22 Aug 2008; Jeroen Roovers <jer@gentoo.org> uw-imap-2007b.ebuild:
+  Stable for HPPA (bug #231258).
 
   21 Aug 2008; Friedrich Oslage <bluebird@gentoo.org> uw-imap-2007b.ebuild:
   Stable on sparc, bug #231258



1.5                  net-mail/uw-imap/uw-imap-2007b.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild?r1=1.4&r2=1.5

Index: uw-imap-2007b.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- uw-imap-2007b.ebuild	21 Aug 2008 17:08:46 -0000	1.4
+++ uw-imap-2007b.ebuild	22 Aug 2008 19:14:09 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild,v 1.4 2008/08/21 17:08:46 bluebird Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild,v 1.5 2008/08/22 19:14:09 jer Exp $
 
 inherit eutils flag-o-matic
 
@@ -13,7 +13,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 sparc x86"
+KEYWORDS="~alpha amd64 hppa ~ppc ~ppc64 sparc x86"
 IUSE="ipv6 ssl kerberos clearpasswd"
 
 PROVIDE="virtual/imapd"






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

* [gentoo-commits] gentoo-x86 commit in net-mail/uw-imap: ChangeLog uw-imap-2007b.ebuild
@ 2008-08-24 11:09 Markus Rothe (corsair)
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Rothe (corsair) @ 2008-08-24 11:09 UTC (permalink / raw
  To: gentoo-commits

corsair     08/08/24 11:09:07

  Modified:             ChangeLog uw-imap-2007b.ebuild
  Log:
  Stable on ppc64; bug #231258
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.104                net-mail/uw-imap/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.104&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.104&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/ChangeLog?r1=1.103&r2=1.104

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- ChangeLog	22 Aug 2008 19:14:09 -0000	1.103
+++ ChangeLog	24 Aug 2008 11:09:06 -0000	1.104
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/uw-imap
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.103 2008/08/22 19:14:09 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.104 2008/08/24 11:09:06 corsair Exp $
+
+  24 Aug 2008; Markus Rothe <corsair@gentoo.org> uw-imap-2007b.ebuild:
+  Stable on ppc64; bug #231258
 
   22 Aug 2008; Jeroen Roovers <jer@gentoo.org> uw-imap-2007b.ebuild:
   Stable for HPPA (bug #231258).



1.6                  net-mail/uw-imap/uw-imap-2007b.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild?r1=1.5&r2=1.6

Index: uw-imap-2007b.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- uw-imap-2007b.ebuild	22 Aug 2008 19:14:09 -0000	1.5
+++ uw-imap-2007b.ebuild	24 Aug 2008 11:09:06 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild,v 1.5 2008/08/22 19:14:09 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild,v 1.6 2008/08/24 11:09:06 corsair Exp $
 
 inherit eutils flag-o-matic
 
@@ -13,7 +13,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 hppa ~ppc ~ppc64 sparc x86"
+KEYWORDS="~alpha amd64 hppa ~ppc ppc64 sparc x86"
 IUSE="ipv6 ssl kerberos clearpasswd"
 
 PROVIDE="virtual/imapd"






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

* [gentoo-commits] gentoo-x86 commit in net-mail/uw-imap: ChangeLog uw-imap-2007b.ebuild
@ 2008-08-25 19:22 Raul Porcel (armin76)
  0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2008-08-25 19:22 UTC (permalink / raw
  To: gentoo-commits

armin76     08/08/25 19:22:23

  Modified:             ChangeLog uw-imap-2007b.ebuild
  Log:
  alpha/ia64 stable wrt #231258
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.105                net-mail/uw-imap/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.105&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.105&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/ChangeLog?r1=1.104&r2=1.105

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- ChangeLog	24 Aug 2008 11:09:06 -0000	1.104
+++ ChangeLog	25 Aug 2008 19:22:22 -0000	1.105
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/uw-imap
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.104 2008/08/24 11:09:06 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.105 2008/08/25 19:22:22 armin76 Exp $
+
+  25 Aug 2008; Raúl Porcel <armin76@gentoo.org> uw-imap-2007b.ebuild:
+  alpha/ia64 stable wrt #231258
 
   24 Aug 2008; Markus Rothe <corsair@gentoo.org> uw-imap-2007b.ebuild:
   Stable on ppc64; bug #231258



1.7                  net-mail/uw-imap/uw-imap-2007b.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild?r1=1.6&r2=1.7

Index: uw-imap-2007b.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- uw-imap-2007b.ebuild	24 Aug 2008 11:09:06 -0000	1.6
+++ uw-imap-2007b.ebuild	25 Aug 2008 19:22:22 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild,v 1.6 2008/08/24 11:09:06 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild,v 1.7 2008/08/25 19:22:22 armin76 Exp $
 
 inherit eutils flag-o-matic
 
@@ -13,7 +13,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 hppa ~ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 hppa ia64 ~ppc ppc64 sparc x86"
 IUSE="ipv6 ssl kerberos clearpasswd"
 
 PROVIDE="virtual/imapd"






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

* [gentoo-commits] gentoo-x86 commit in net-mail/uw-imap: ChangeLog uw-imap-2007b.ebuild
@ 2008-09-20 10:04 Tobias Scherbaum (dertobi123)
  0 siblings, 0 replies; 7+ messages in thread
From: Tobias Scherbaum (dertobi123) @ 2008-09-20 10:04 UTC (permalink / raw
  To: gentoo-commits

dertobi123    08/09/20 10:04:50

  Modified:             ChangeLog uw-imap-2007b.ebuild
  Log:
  ppc stable, bug #231258
  (Portage version: 2.2_rc8/cvs/Linux 2.6.25-gentoo-r7 x86_64)

Revision  Changes    Path
1.106                net-mail/uw-imap/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.106&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.106&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/ChangeLog?r1=1.105&r2=1.106

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- ChangeLog	25 Aug 2008 19:22:22 -0000	1.105
+++ ChangeLog	20 Sep 2008 10:04:49 -0000	1.106
@@ -1,6 +1,10 @@
 # ChangeLog for net-mail/uw-imap
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.105 2008/08/25 19:22:22 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.106 2008/09/20 10:04:49 dertobi123 Exp $
+
+  20 Sep 2008; Tobias Scherbaum <dertobi123@gentoo.org>
+  uw-imap-2007b.ebuild:
+  ppc stable, bug #231258
 
   25 Aug 2008; Raúl Porcel <armin76@gentoo.org> uw-imap-2007b.ebuild:
   alpha/ia64 stable wrt #231258



1.8                  net-mail/uw-imap/uw-imap-2007b.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild?r1=1.7&r2=1.8

Index: uw-imap-2007b.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- uw-imap-2007b.ebuild	25 Aug 2008 19:22:22 -0000	1.7
+++ uw-imap-2007b.ebuild	20 Sep 2008 10:04:49 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild,v 1.7 2008/08/25 19:22:22 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007b.ebuild,v 1.8 2008/09/20 10:04:49 dertobi123 Exp $
 
 inherit eutils flag-o-matic
 
@@ -13,7 +13,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ~ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
 IUSE="ipv6 ssl kerberos clearpasswd"
 
 PROVIDE="virtual/imapd"






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

end of thread, other threads:[~2008-09-20 10:05 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-24 20:37 [gentoo-commits] gentoo-x86 commit in net-mail/uw-imap: ChangeLog uw-imap-2007b.ebuild Christian Hoffmann (hoffie)
  -- strict thread matches above, loose matches on Subject: below --
2008-08-20 19:31 Markus Meier (maekke)
2008-08-21 17:08 Friedrich Oslage (bluebird)
2008-08-22 19:14 Jeroen Roovers (jer)
2008-08-24 11:09 Markus Rothe (corsair)
2008-08-25 19:22 Raul Porcel (armin76)
2008-09-20 10:04 Tobias Scherbaum (dertobi123)

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