* [gentoo-commits] gentoo-x86 commit in net-mail/uw-imap: uw-imap-2007f.ebuild ChangeLog
@ 2011-09-12 20:52 Eray Aslan (eras)
0 siblings, 0 replies; 8+ messages in thread
From: Eray Aslan (eras) @ 2011-09-12 20:52 UTC (permalink / raw
To: gentoo-commits
eras 11/09/12 20:52:05
Modified: ChangeLog
Added: uw-imap-2007f.ebuild
Log:
version bump
(Portage version: 2.1.10.15/cvs/Linux x86_64)
Revision Changes Path
1.127 net-mail/uw-imap/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.127&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.127&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/ChangeLog?r1=1.126&r2=1.127
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v
retrieving revision 1.126
retrieving revision 1.127
diff -u -r1.126 -r1.127
--- ChangeLog 17 Jul 2011 07:43:28 -0000 1.126
+++ ChangeLog 12 Sep 2011 20:52:05 -0000 1.127
@@ -1,6 +1,11 @@
# ChangeLog for net-mail/uw-imap
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.126 2011/07/17 07:43:28 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.127 2011/09/12 20:52:05 eras Exp $
+
+*uw-imap-2007f (12 Sep 2011)
+
+ 12 Sep 2011; Eray Aslan <eras@gentoo.org> +uw-imap-2007f.ebuild:
+ version bump
*uw-imap-2007e-r2 (17 Jul 2011)
1.1 net-mail/uw-imap/uw-imap-2007f.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild?rev=1.1&content-type=text/plain
Index: uw-imap-2007f.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild,v 1.1 2011/09/12 20:52:05 eras Exp $
EAPI=4
inherit eutils flag-o-matic ssl-cert
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 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="ipv6 +ssl kerberos clearpasswd"
DEPEND="!net-libs/c-client
>=sys-libs/pam-0.72
>=net-mail/mailbase-0.00-r8[pam]
ssl? ( dev-libs/openssl )
kerberos? ( app-crypt/mit-krb5 )"
RDEPEND="${DEPEND}
>=net-mail/uw-mailutils-${PV}
sys-apps/xinetd"
# get rid of old style virtual - bug 350792
# all blockers really needed?
RDEPEND="${RDEPEND}
!net-mail/dovecot
!mail-mta/courier
!net-mail/courier-imap
!net-mail/cyrus-imapd"
REQUIRED_USE="!clearpasswd? ( ssl )"
src_unpack() {
unpack ${A}
# Tarball packed with bad file perms
chmod -R ug+w "${S}"
}
src_prepare() {
epatch "${FILESDIR}"/${PN}-2004c-amd64-so-fix.patch
epatch "${FILESDIR}/${PN}-ldflags.patch"
# 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 FLAGS."
# Now there is only c-client left, which should be built with -fPIC
append-flags -fPIC
sed -i \
-e "s:BASECFLAGS=\".*\":BASECFLAGS=:g" \
-e 's,SSLDIR=/usr/local/ssl,SSLDIR=/usr,g' \
-e 's,SSLCERTS=$(SSLDIR)/certs,SSLCERTS=/etc/ssl/certs,g' \
src/osdep/unix/Makefile
sed -i \
-e "s/CC=cc/CC=$(tc-getCC)/" \
-e "s/ARRC=ar/ARRC=$(tc-getAR)/" \
-e "s/RANLIB=ranlib/RANLIB=$(tc-getRANLIB)/" \
src/osdep/unix/Makefile
sed -i -e "s,GSSDIR=/usr/local,GSSDIR=/usr,g" \
src/osdep/unix/Makefile.gss
# no interactive build
sed -i -e "/make noip6/s/.*/\t@echo/" Makefile
}
src_compile() {
local mymake ipver ssltype target
ipver="IP=4"
target=lnp
use ipv6 && ipver="IP=6"
use kerberos && mymake="EXTRAAUTHENTICATORS=gss"
use kernel_FreeBSD && target=bsf
if use ssl ; then
if use clearpasswd ; then
ssltype=unix
else
ssltype=unix.nopwd
fi
else
ssltype=none
fi
emake -j1 SSLTYPE=${ssltype} ${target} ${mymake} ${ipver} EXTRACFLAGS="${CFLAGS}" EXTRALDFLAGS="${LDFLAGS}"
}
src_install() {
dosbin imapd/imapd ipopd/ipop?d dmail/dmail tmail/tmail
dobin mlock/mlock
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
insinto /usr/include/imap
doins src/c-client/{c-client,flstring,mail,imap4r1,rfc822,misc,smtp,nntp,utf8,utf8aux}.h
doins src/c-client/{env,fs,ftl,nl,tcp}.h
doins src/osdep/unix/env_unix.h
doins c-client/linkage.{c,h}
dolib.a c-client/c-client.a
dosym 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
# install headers - bug #375393
cp c-client/*.h "${D}"/usr/include/imap/ || die
cp c-client/linkage.c "${D}"/usr/include/imap/ || die
#exclude these dupes (can't do it before now due to symlink hell)
rm "${D}"/usr/include/imap/os_*.h
# 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
}
pkg_postinst() {
if use ssl; then
# Let's not make a new certificate if we already have one
if ! [[ -e "${ROOT}"/etc/ssl/certs/imapd.pem && \
-e "${ROOT}"/etc/ssl/certs/imapd.key ]]; then
einfo "Creating SSL certificate for IMAP"
SSL_ORGANIZATION="${SSL_ORGANIZATION:-UW-IMAP Server}"
install_cert /etc/ssl/certs/imapd
fi
if ! [[ -e "${ROOT}"/etc/ssl/certs/ipop3d.pem && \
-e "${ROOT}"/etc/ssl/certs/ipop3d.key ]]; then
einfo "Creating SSL certificate for POP3"
SSL_ORGANIZATION="${SSL_ORGANIZATION:-UW-POP3 Server}"
install_cert /etc/ssl/certs/ipop3d
fi
fi
}
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-mail/uw-imap: uw-imap-2007f.ebuild ChangeLog
@ 2011-11-22 19:49 Jeroen Roovers (jer)
0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2011-11-22 19:49 UTC (permalink / raw
To: gentoo-commits
jer 11/11/22 19:49:50
Modified: uw-imap-2007f.ebuild ChangeLog
Log:
Stable for HPPA (bug #391349).
(Portage version: 2.2.0_alpha77/cvs/Linux x86_64)
Revision Changes Path
1.2 net-mail/uw-imap/uw-imap-2007f.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild?r1=1.1&r2=1.2
Index: uw-imap-2007f.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- uw-imap-2007f.ebuild 12 Sep 2011 20:52:05 -0000 1.1
+++ uw-imap-2007f.ebuild 22 Nov 2011 19:49:50 -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-mail/uw-imap/uw-imap-2007f.ebuild,v 1.1 2011/09/12 20:52:05 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild,v 1.2 2011/11/22 19:49:50 jer Exp $
EAPI=4
@@ -15,7 +15,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"
DEPEND="!net-libs/c-client
1.128 net-mail/uw-imap/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.128&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.128&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/ChangeLog?r1=1.127&r2=1.128
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v
retrieving revision 1.127
retrieving revision 1.128
diff -u -r1.127 -r1.128
--- ChangeLog 12 Sep 2011 20:52:05 -0000 1.127
+++ ChangeLog 22 Nov 2011 19:49:50 -0000 1.128
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/uw-imap
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.127 2011/09/12 20:52:05 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.128 2011/11/22 19:49:50 jer Exp $
+
+ 22 Nov 2011; Jeroen Roovers <jer@gentoo.org> uw-imap-2007f.ebuild:
+ Stable for HPPA (bug #391349).
*uw-imap-2007f (12 Sep 2011)
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-mail/uw-imap: uw-imap-2007f.ebuild ChangeLog
@ 2011-11-26 10:26 Markos Chandras (hwoarang)
0 siblings, 0 replies; 8+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-11-26 10:26 UTC (permalink / raw
To: gentoo-commits
hwoarang 11/11/26 10:26:37
Modified: uw-imap-2007f.ebuild ChangeLog
Log:
Stable on amd64 wrt bug #391349
(Portage version: 2.2.0_alpha71/cvs/Linux x86_64)
Revision Changes Path
1.3 net-mail/uw-imap/uw-imap-2007f.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild?r1=1.2&r2=1.3
Index: uw-imap-2007f.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- uw-imap-2007f.ebuild 22 Nov 2011 19:49:50 -0000 1.2
+++ uw-imap-2007f.ebuild 26 Nov 2011 10:26:37 -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-mail/uw-imap/uw-imap-2007f.ebuild,v 1.2 2011/11/22 19:49:50 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild,v 1.3 2011/11/26 10:26:37 hwoarang Exp $
EAPI=4
@@ -15,7 +15,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"
DEPEND="!net-libs/c-client
1.129 net-mail/uw-imap/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.129&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.129&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/ChangeLog?r1=1.128&r2=1.129
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -r1.128 -r1.129
--- ChangeLog 22 Nov 2011 19:49:50 -0000 1.128
+++ ChangeLog 26 Nov 2011 10:26:37 -0000 1.129
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/uw-imap
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.128 2011/11/22 19:49:50 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.129 2011/11/26 10:26:37 hwoarang Exp $
+
+ 26 Nov 2011; Markos Chandras <hwoarang@gentoo.org> uw-imap-2007f.ebuild:
+ Stable on amd64 wrt bug #391349
22 Nov 2011; Jeroen Roovers <jer@gentoo.org> uw-imap-2007f.ebuild:
Stable for HPPA (bug #391349).
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-mail/uw-imap: uw-imap-2007f.ebuild ChangeLog
@ 2011-12-22 22:00 Markus Meier (maekke)
0 siblings, 0 replies; 8+ messages in thread
From: Markus Meier (maekke) @ 2011-12-22 22:00 UTC (permalink / raw
To: gentoo-commits
maekke 11/12/22 22:00:26
Modified: uw-imap-2007f.ebuild ChangeLog
Log:
x86 stable, bug #391349
(Portage version: 2.1.10.41/cvs/Linux x86_64)
Revision Changes Path
1.4 net-mail/uw-imap/uw-imap-2007f.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild?r1=1.3&r2=1.4
Index: uw-imap-2007f.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- uw-imap-2007f.ebuild 26 Nov 2011 10:26:37 -0000 1.3
+++ uw-imap-2007f.ebuild 22 Dec 2011 22:00:26 -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-mail/uw-imap/uw-imap-2007f.ebuild,v 1.3 2011/11/26 10:26:37 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild,v 1.4 2011/12/22 22:00:26 maekke Exp $
EAPI=4
@@ -15,7 +15,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"
DEPEND="!net-libs/c-client
1.130 net-mail/uw-imap/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.130&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.130&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/ChangeLog?r1=1.129&r2=1.130
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v
retrieving revision 1.129
retrieving revision 1.130
diff -u -r1.129 -r1.130
--- ChangeLog 26 Nov 2011 10:26:37 -0000 1.129
+++ ChangeLog 22 Dec 2011 22:00:26 -0000 1.130
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/uw-imap
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.129 2011/11/26 10:26:37 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.130 2011/12/22 22:00:26 maekke Exp $
+
+ 22 Dec 2011; Markus Meier <maekke@gentoo.org> uw-imap-2007f.ebuild:
+ x86 stable, bug #391349
26 Nov 2011; Markos Chandras <hwoarang@gentoo.org> uw-imap-2007f.ebuild:
Stable on amd64 wrt bug #391349
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-mail/uw-imap: uw-imap-2007f.ebuild ChangeLog
@ 2011-12-24 10:27 Eray Aslan (eras)
0 siblings, 0 replies; 8+ messages in thread
From: Eray Aslan (eras) @ 2011-12-24 10:27 UTC (permalink / raw
To: gentoo-commits
eras 11/12/24 10:27:03
Modified: uw-imap-2007f.ebuild ChangeLog
Log:
Fix building with -ssl USE flag - bug #395855
(Portage version: 2.1.10.42/cvs/Linux x86_64)
Revision Changes Path
1.5 net-mail/uw-imap/uw-imap-2007f.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild?r1=1.4&r2=1.5
Index: uw-imap-2007f.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- uw-imap-2007f.ebuild 22 Dec 2011 22:00:26 -0000 1.4
+++ uw-imap-2007f.ebuild 24 Dec 2011 10:27:02 -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-mail/uw-imap/uw-imap-2007f.ebuild,v 1.4 2011/12/22 22:00:26 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild,v 1.5 2011/12/24 10:27:02 eras Exp $
EAPI=4
@@ -48,6 +48,9 @@
epatch "${FILESDIR}"/${PN}-2004c-amd64-so-fix.patch
epatch "${FILESDIR}/${PN}-ldflags.patch"
+ # no interactive build
+ sed -i -e "/read x; case/s/^/#/" Makefile || die
+
# 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 \
1.131 net-mail/uw-imap/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.131&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.131&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/ChangeLog?r1=1.130&r2=1.131
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -r1.130 -r1.131
--- ChangeLog 22 Dec 2011 22:00:26 -0000 1.130
+++ ChangeLog 24 Dec 2011 10:27:02 -0000 1.131
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/uw-imap
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.130 2011/12/22 22:00:26 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.131 2011/12/24 10:27:02 eras Exp $
+
+ 24 Dec 2011; Eray Aslan <eras@gentoo.org> uw-imap-2007f.ebuild:
+ Fix building with -ssl USE flag - bug #395855
22 Dec 2011; Markus Meier <maekke@gentoo.org> uw-imap-2007f.ebuild:
x86 stable, bug #391349
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-mail/uw-imap: uw-imap-2007f.ebuild ChangeLog
@ 2012-01-01 17:43 Raul Porcel (armin76)
0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2012-01-01 17:43 UTC (permalink / raw
To: gentoo-commits
armin76 12/01/01 17:43:50
Modified: uw-imap-2007f.ebuild ChangeLog
Log:
alpha/ia64/sparc stable wrt #391349
(Portage version: 2.1.10.43/cvs/Linux ia64)
Revision Changes Path
1.6 net-mail/uw-imap/uw-imap-2007f.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild?r1=1.5&r2=1.6
Index: uw-imap-2007f.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- uw-imap-2007f.ebuild 24 Dec 2011 10:27:02 -0000 1.5
+++ uw-imap-2007f.ebuild 1 Jan 2012 17:43:50 -0000 1.6
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild,v 1.5 2011/12/24 10:27:02 eras Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild,v 1.6 2012/01/01 17:43:50 armin76 Exp $
EAPI=4
@@ -15,7 +15,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"
DEPEND="!net-libs/c-client
1.132 net-mail/uw-imap/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.132&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.132&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/ChangeLog?r1=1.131&r2=1.132
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v
retrieving revision 1.131
retrieving revision 1.132
diff -u -r1.131 -r1.132
--- ChangeLog 24 Dec 2011 10:27:02 -0000 1.131
+++ ChangeLog 1 Jan 2012 17:43:50 -0000 1.132
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/uw-imap
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.131 2011/12/24 10:27:02 eras Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.132 2012/01/01 17:43:50 armin76 Exp $
+
+ 01 Jan 2012; Raúl Porcel <armin76@gentoo.org> uw-imap-2007f.ebuild:
+ alpha/ia64/sparc stable wrt #391349
24 Dec 2011; Eray Aslan <eras@gentoo.org> uw-imap-2007f.ebuild:
Fix building with -ssl USE flag - bug #395855
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-mail/uw-imap: uw-imap-2007f.ebuild ChangeLog
@ 2012-01-04 22:07 Brent Baude (ranger)
0 siblings, 0 replies; 8+ messages in thread
From: Brent Baude (ranger) @ 2012-01-04 22:07 UTC (permalink / raw
To: gentoo-commits
ranger 12/01/04 22:07:32
Modified: uw-imap-2007f.ebuild ChangeLog
Log:
Marking uw-imap-2007f ppc for bug 391349
(Portage version: 2.1.10.11/cvs/Linux ppc64)
Revision Changes Path
1.7 net-mail/uw-imap/uw-imap-2007f.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild?r1=1.6&r2=1.7
Index: uw-imap-2007f.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- uw-imap-2007f.ebuild 1 Jan 2012 17:43:50 -0000 1.6
+++ uw-imap-2007f.ebuild 4 Jan 2012 22:07:32 -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-mail/uw-imap/uw-imap-2007f.ebuild,v 1.6 2012/01/01 17:43:50 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild,v 1.7 2012/01/04 22:07:32 ranger Exp $
EAPI=4
@@ -15,7 +15,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"
DEPEND="!net-libs/c-client
1.133 net-mail/uw-imap/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.133&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.133&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/ChangeLog?r1=1.132&r2=1.133
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v
retrieving revision 1.132
retrieving revision 1.133
diff -u -r1.132 -r1.133
--- ChangeLog 1 Jan 2012 17:43:50 -0000 1.132
+++ ChangeLog 4 Jan 2012 22:07:32 -0000 1.133
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/uw-imap
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.132 2012/01/01 17:43:50 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.133 2012/01/04 22:07:32 ranger Exp $
+
+ 04 Jan 2012; Brent Baude <ranger@gentoo.org> uw-imap-2007f.ebuild:
+ Marking uw-imap-2007f ppc for bug 391349
01 Jan 2012; Raúl Porcel <armin76@gentoo.org> uw-imap-2007f.ebuild:
alpha/ia64/sparc stable wrt #391349
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-mail/uw-imap: uw-imap-2007f.ebuild ChangeLog
@ 2012-03-08 15:00 Brent Baude (ranger)
0 siblings, 0 replies; 8+ messages in thread
From: Brent Baude (ranger) @ 2012-03-08 15:00 UTC (permalink / raw
To: gentoo-commits
ranger 12/03/08 15:00:54
Modified: uw-imap-2007f.ebuild ChangeLog
Log:
Marking uw-imap-2007f ppc64 for bug 391349
(Portage version: 2.1.10.11/cvs/Linux ppc64)
Revision Changes Path
1.8 net-mail/uw-imap/uw-imap-2007f.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild?r1=1.7&r2=1.8
Index: uw-imap-2007f.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- uw-imap-2007f.ebuild 4 Jan 2012 22:07:32 -0000 1.7
+++ uw-imap-2007f.ebuild 8 Mar 2012 15:00:53 -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-mail/uw-imap/uw-imap-2007f.ebuild,v 1.7 2012/01/04 22:07:32 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2007f.ebuild,v 1.8 2012/03/08 15:00:53 ranger Exp $
EAPI=4
@@ -15,7 +15,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"
DEPEND="!net-libs/c-client
1.134 net-mail/uw-imap/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.134&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/ChangeLog?rev=1.134&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/uw-imap/ChangeLog?r1=1.133&r2=1.134
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v
retrieving revision 1.133
retrieving revision 1.134
diff -u -r1.133 -r1.134
--- ChangeLog 4 Jan 2012 22:07:32 -0000 1.133
+++ ChangeLog 8 Mar 2012 15:00:53 -0000 1.134
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/uw-imap
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.133 2012/01/04 22:07:32 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.134 2012/03/08 15:00:53 ranger Exp $
+
+ 08 Mar 2012; Brent Baude <ranger@gentoo.org> uw-imap-2007f.ebuild:
+ Marking uw-imap-2007f ppc64 for bug 391349
04 Jan 2012; Brent Baude <ranger@gentoo.org> uw-imap-2007f.ebuild:
Marking uw-imap-2007f ppc for bug 391349
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2012-03-08 15:01 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-26 10:26 [gentoo-commits] gentoo-x86 commit in net-mail/uw-imap: uw-imap-2007f.ebuild ChangeLog Markos Chandras (hwoarang)
-- strict thread matches above, loose matches on Subject: below --
2012-03-08 15:00 Brent Baude (ranger)
2012-01-04 22:07 Brent Baude (ranger)
2012-01-01 17:43 Raul Porcel (armin76)
2011-12-24 10:27 Eray Aslan (eras)
2011-12-22 22:00 Markus Meier (maekke)
2011-11-22 19:49 Jeroen Roovers (jer)
2011-09-12 20:52 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