public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-mail/mailman: ChangeLog mailman-2.1.14.ebuild
@ 2010-10-04 19:16 Hanno Boeck (hanno)
  0 siblings, 0 replies; 5+ messages in thread
From: Hanno Boeck (hanno) @ 2010-10-04 19:16 UTC (permalink / raw
  To: gentoo-commits

hanno       10/10/04 19:16:40

  Modified:             ChangeLog
  Added:                mailman-2.1.14.ebuild
  Log:
  mailman version bump
  
  (Portage version: 2.1.9.13/cvs/Linux x86_64)

Revision  Changes    Path
1.123                net-mail/mailman/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/ChangeLog?rev=1.123&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/ChangeLog?rev=1.123&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/ChangeLog?r1=1.122&r2=1.123

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/mailman/ChangeLog,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -r1.122 -r1.123
--- ChangeLog	13 Sep 2010 23:12:08 -0000	1.122
+++ ChangeLog	4 Oct 2010 19:16:40 -0000	1.123
@@ -1,6 +1,11 @@
 # ChangeLog for net-mail/mailman
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/ChangeLog,v 1.122 2010/09/13 23:12:08 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/ChangeLog,v 1.123 2010/10/04 19:16:40 hanno Exp $
+
+*mailman-2.1.14 (04 Oct 2010)
+
+  04 Oct 2010; Hanno Boeck <hanno@gentoo.org> +mailman-2.1.14.ebuild:
+  Version bump.
 
 *mailman-2.1.14_rc1 (13 Sep 2010)
 



1.1                  net-mail/mailman/mailman-2.1.14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild?rev=1.1&content-type=text/plain

Index: mailman-2.1.14.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild,v 1.1 2010/10/04 19:16:40 hanno Exp $

inherit eutils python multilib

DESCRIPTION="A python-based mailing list server with an extensive web interface"
SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
HOMEPAGE="http://www.list.org/"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""

DEPEND=">=dev-lang/python-2.3
	virtual/mta
	virtual/cron
	virtual/httpd-cgi"
RDEPEND="${DEPEND}"

pkg_setup() {
	INSTALLDIR=${MAILMAN_PREFIX:-"/usr/$(get_libdir)/mailman"}
	VAR_PREFIX=${MAILMAN_VAR_PREFIX:-"/var/lib/mailman"}
	CGIUID=${MAILMAN_CGIUID:-apache}
	CGIGID=${MAILMAN_CGIGID:-apache}
	MAILUSR=${MAILMAN_MAILUSR:-mailman}
	MAILUID=${MAILMAN_MAILUID:-280}
	MAILGRP=${MAILMAN_MAILGRP:-mailman}
	MAILGID=${MAILMAN_MAILGID:-280}

	# Bug #58526: switch to enew{group,user}.
	# need to add mailman here for compile process.
	# Duplicated at pkg_postinst() for binary install.
	enewgroup ${MAILGRP} ${MAILGID}
	enewuser  ${MAILUSR} ${MAILUID} /bin/bash ${INSTALLDIR} mailman -G cron -c "mailman"
}

src_unpack() {
	unpack ${A}
	cd "${S}"
	epatch "${FILESDIR}/${PN}-2.1.14_rc1-directory-check.patch" || die "patch failed."
	epatch "${FILESDIR}/${PN}-2.1.9-icons.patch" || die "patch failed."
	epatch "${FILESDIR}/${PN}-2.1.13-ldflags.patch"
}

src_compile() {
	econf --without-permcheck \
		--prefix="${INSTALLDIR}" \
		--with-mail-gid=${MAILGID} \
		--with-cgi-gid=${CGIGID} \
		--with-cgi-ext="${MAILMAN_CGIEXT}" \
		--with-var-prefix="${VAR_PREFIX}" \
		--with-username=${MAILUSR} \
		--with-groupname=${MAILGRP} \
	|| die "configure failed"

	emake || die "make failed"
}

src_install () {
	emake "DESTDIR=${D}" doinstall || die

	insinto /etc/apache2/modules.d
	newins "${FILESDIR}/50_mailman.conf-r1" 50_mailman.conf
	dosed "s:/usr/local/mailman/cgi-bin:${INSTALLDIR}/cgi-bin:g" /etc/apache2/modules.d/50_mailman.conf
	dosed "s:/usr/local/mailman/icons:${INSTALLDIR}/icons:g" /etc/apache2/modules.d/50_mailman.conf
	dosed "s:/usr/local/mailman/archives:${VAR_PREFIX}/archives:g" /etc/apache2/modules.d/50_mailman.conf

	newdoc "${FILESDIR}/README.gentoo-r3" README.gentoo || die "newdoc failed"

	dodoc ACK* BUGS FAQ NEWS README* TODO UPGRADING INSTALL contrib/mailman.mc \
		contrib/README.check_perms_grsecurity contrib/virtusertable || die "dodoc failed"

	exeinto ${INSTALLDIR}/bin
	doexe build/contrib/*.py contrib/majordomo2mailman.pl contrib/auto \
		contrib/mm-handler* || die

	dodir /etc/mailman
	mv "${D}/${INSTALLDIR}/Mailman/mm_cfg.py" "${D}/etc/mailman"
	dosym /etc/mailman/mm_cfg.py ${INSTALLDIR}/Mailman/mm_cfg.py

	# Save the old config for updates from pre-2.1.9-r2
	# To be removed some distant day
	for i in /var/mailman /home/mailman /usr/local/mailman ${INSTALLDIR}
	do
		if [ -f ${i}/Mailman/mm_cfg.py ] && ! [ -L ${i}/Mailman/mm_cfg.py ]; then
			cp ${i}/Mailman/mm_cfg.py "${D}/etc/mailman/mm_cfg.py"
		fi
	done

	newinitd "${FILESDIR}/mailman.rc" mailman

	keepdir ${VAR_PREFIX}/logs
	keepdir ${VAR_PREFIX}/locks
	keepdir ${VAR_PREFIX}/spam
	keepdir ${VAR_PREFIX}/archives/public
	keepdir ${VAR_PREFIX}/archives/private
	keepdir ${VAR_PREFIX}/lists
	keepdir ${VAR_PREFIX}/qfiles

	chown -R ${MAILUSR}:${MAILGRP} "${D}/${VAR_PREFIX}" "${D}/${INSTALLDIR}" "${D}"/etc/mailman/*
	chown ${CGIUID}:${MAILGRP} "${D}/${VAR_PREFIX}/archives/private"
	chmod 2775 "${D}/${INSTALLDIR}" "${D}/${INSTALLDIR}"/templates/* \
		"${D}/${INSTALLDIR}"/messages/* "${D}/${VAR_PREFIX}" "${D}/${VAR_PREFIX}"/{logs,lists,spam,locks,archives/public}
	chmod 2770 "${D}/${VAR_PREFIX}/archives/private"
	chmod 2770 "${D}/${VAR_PREFIX}/qfiles"
	chmod 2755 "${D}/${INSTALLDIR}"/cgi-bin/* "${D}/${INSTALLDIR}/mail/mailman"

}

pkg_postinst() {
	python_mod_optimize ${INSTALLDIR}/bin/ ${INSTALLDIR}/Mailman \
		${INSTALLDIR}/Mailman/*/

	enewgroup ${MAILGRP} ${MAILGID}
	enewuser  ${MAILUSR} ${MAILUID} -1 ${INSTALLDIR} mailman -G cron -c "mailman"
	elog
	elog "Please read /usr/share/doc/${PF}/README.gentoo.bz2 for additional"
	elog "Setup information, mailman will NOT run unless you follow"
	elog "those instructions!"
	elog

	elog "An example Mailman configuration file for Apache has been installed into:"
	elog "  ${APACHE2_MODULES_CONFDIR}/50_mailman.conf"
	elog
	elog "To enable, you will need to add \"-D MAILMAN\" to"
	elog "/etc/conf.d/apache2."
	elog

	ewarn "Default-Configuration has changed deeply in 2.1.9-r2. You can configure"
	ewarn "mailman with the following variables:"
	ewarn "MAILMAN_PREFIX (default: /usr/$(get_libdir)/mailman)"
	ewarn "MAILMAN_VAR_PREFIX (default: /var/lib/mailman)"
	ewarn "MAILMAN_CGIUID (default: apache)"
	ewarn "MAILMAN_CGIGID (default: apache)"
	ewarn "MAILMAN_CGIEXT (default: empty)"
	ewarn "MAILMAN_MAILUSR (default: mailman)"
	ewarn "MAILMAN_MAILUID (default: 280)"
	ewarn "MAILMAN_MAILGRP (default: mailman)"
	ewarn "MAILMAN_MAILGID (default: 280)"
	ewarn
	ewarn "Config file is now symlinked in /etc/mailman, so etc-update works."
	ewarn
	ewarn "If you're upgrading from below 2.1.9-r2 or changed MAILMAN_PREFIX, you"
	ewarn "NEED to make a few manual updates to your system:"
	ewarn
	ewarn "1.  Update your mailman users's home directory: usermod -d ${INSTALLDIR} mailman"
	ewarn "2.  Re-import the crontab: su - mailman -c 'crontab cron/crontab.in'"
	ewarn "3.  Copy your old mm_cfg.py file to /etc/mailman/mm_cfg.py"
	ewarn
	ewarn "Additionally if you've modified MAILMAN_VAR_PREFIX (or upgraded from"
	ewarn "a pre 2.1.9-r2 installation), you should move your old lists/ and"
	ewarn "archives/ directory to the new location, ensuring that the"
	ewarn "permissions is correct.  See bug #208789 for a discussion."
	ebeep
}

pkg_postrm() {
	INSTALLDIR=${MAILMAN_PREFIX:-"/usr/$(get_libdir)/mailman"}
	python_mod_cleanup ${INSTALLDIR}/bin ${INSTALLDIR}/Mailman \
		${INSTALLDIR}/Mailman/*/
}






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

* [gentoo-commits] gentoo-x86 commit in net-mail/mailman: ChangeLog mailman-2.1.14.ebuild
@ 2010-10-06  8:05 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 5+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-10-06  8:05 UTC (permalink / raw
  To: gentoo-commits

hwoarang    10/10/06 08:05:38

  Modified:             ChangeLog mailman-2.1.14.ebuild
  Log:
  Stable on amd64 wrt bug #337095
  
  (Portage version: 2.2_rc89/cvs/Linux x86_64)

Revision  Changes    Path
1.124                net-mail/mailman/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/ChangeLog?rev=1.124&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/ChangeLog?rev=1.124&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/ChangeLog?r1=1.123&r2=1.124

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/mailman/ChangeLog,v
retrieving revision 1.123
retrieving revision 1.124
diff -u -r1.123 -r1.124
--- ChangeLog	4 Oct 2010 19:16:40 -0000	1.123
+++ ChangeLog	6 Oct 2010 08:05:38 -0000	1.124
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/mailman
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/ChangeLog,v 1.123 2010/10/04 19:16:40 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/ChangeLog,v 1.124 2010/10/06 08:05:38 hwoarang Exp $
+
+  06 Oct 2010; Markos Chandras <hwoarang@gentoo.org> mailman-2.1.14.ebuild:
+  Stable on amd64 wrt bug #337095
 
 *mailman-2.1.14 (04 Oct 2010)
 



1.2                  net-mail/mailman/mailman-2.1.14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild?r1=1.1&r2=1.2

Index: mailman-2.1.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mailman-2.1.14.ebuild	4 Oct 2010 19:16:40 -0000	1.1
+++ mailman-2.1.14.ebuild	6 Oct 2010 08:05:38 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild,v 1.1 2010/10/04 19:16:40 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild,v 1.2 2010/10/06 08:05:38 hwoarang Exp $
 
 inherit eutils python multilib
 
@@ -10,7 +10,7 @@
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~sparc ~x86"
 IUSE=""
 
 DEPEND=">=dev-lang/python-2.3






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

* [gentoo-commits] gentoo-x86 commit in net-mail/mailman: ChangeLog mailman-2.1.14.ebuild
@ 2010-10-06 14:50 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 5+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2010-10-06 14:50 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    10/10/06 14:50:25

  Modified:             ChangeLog mailman-2.1.14.ebuild
  Log:
  x86 stable wrt security bug #337095
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.125                net-mail/mailman/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/ChangeLog?rev=1.125&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/ChangeLog?rev=1.125&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/ChangeLog?r1=1.124&r2=1.125

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/mailman/ChangeLog,v
retrieving revision 1.124
retrieving revision 1.125
diff -u -r1.124 -r1.125
--- ChangeLog	6 Oct 2010 08:05:38 -0000	1.124
+++ ChangeLog	6 Oct 2010 14:50:25 -0000	1.125
@@ -1,6 +1,10 @@
 # ChangeLog for net-mail/mailman
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/ChangeLog,v 1.124 2010/10/06 08:05:38 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/ChangeLog,v 1.125 2010/10/06 14:50:25 phajdan.jr Exp $
+
+  06 Oct 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
+  mailman-2.1.14.ebuild:
+  x86 stable wrt security bug #337095
 
   06 Oct 2010; Markos Chandras <hwoarang@gentoo.org> mailman-2.1.14.ebuild:
   Stable on amd64 wrt bug #337095



1.3                  net-mail/mailman/mailman-2.1.14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild?r1=1.2&r2=1.3

Index: mailman-2.1.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mailman-2.1.14.ebuild	6 Oct 2010 08:05:38 -0000	1.2
+++ mailman-2.1.14.ebuild	6 Oct 2010 14:50:25 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild,v 1.2 2010/10/06 08:05:38 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild,v 1.3 2010/10/06 14:50:25 phajdan.jr Exp $
 
 inherit eutils python multilib
 
@@ -10,7 +10,7 @@
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="amd64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~sparc x86"
 IUSE=""
 
 DEPEND=">=dev-lang/python-2.3






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

* [gentoo-commits] gentoo-x86 commit in net-mail/mailman: ChangeLog mailman-2.1.14.ebuild
@ 2010-10-10 17:08 Raul Porcel (armin76)
  0 siblings, 0 replies; 5+ messages in thread
From: Raul Porcel (armin76) @ 2010-10-10 17:08 UTC (permalink / raw
  To: gentoo-commits

armin76     10/10/10 17:08:50

  Modified:             ChangeLog mailman-2.1.14.ebuild
  Log:
  sparc stable wrt #337095
  (Portage version: 2.1.8.3/cvs/Linux ia64)

Revision  Changes    Path
1.126                net-mail/mailman/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/ChangeLog?rev=1.126&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/ChangeLog?rev=1.126&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/ChangeLog?r1=1.125&r2=1.126

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/mailman/ChangeLog,v
retrieving revision 1.125
retrieving revision 1.126
diff -u -r1.125 -r1.126
--- ChangeLog	6 Oct 2010 14:50:25 -0000	1.125
+++ ChangeLog	10 Oct 2010 17:08:50 -0000	1.126
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/mailman
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/ChangeLog,v 1.125 2010/10/06 14:50:25 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/ChangeLog,v 1.126 2010/10/10 17:08:50 armin76 Exp $
+
+  10 Oct 2010; Raúl Porcel <armin76@gentoo.org> mailman-2.1.14.ebuild:
+  sparc stable wrt #337095
 
   06 Oct 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
   mailman-2.1.14.ebuild:



1.4                  net-mail/mailman/mailman-2.1.14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild?r1=1.3&r2=1.4

Index: mailman-2.1.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mailman-2.1.14.ebuild	6 Oct 2010 14:50:25 -0000	1.3
+++ mailman-2.1.14.ebuild	10 Oct 2010 17:08:50 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild,v 1.3 2010/10/06 14:50:25 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild,v 1.4 2010/10/10 17:08:50 armin76 Exp $
 
 inherit eutils python multilib
 
@@ -10,7 +10,7 @@
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="amd64 ~ppc ~sparc x86"
+KEYWORDS="amd64 ~ppc sparc x86"
 IUSE=""
 
 DEPEND=">=dev-lang/python-2.3






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

* [gentoo-commits] gentoo-x86 commit in net-mail/mailman: ChangeLog mailman-2.1.14.ebuild
@ 2010-10-15 12:49 Brent Baude (ranger)
  0 siblings, 0 replies; 5+ messages in thread
From: Brent Baude (ranger) @ 2010-10-15 12:49 UTC (permalink / raw
  To: gentoo-commits

ranger      10/10/15 12:49:32

  Modified:             ChangeLog mailman-2.1.14.ebuild
  Log:
  Marking mailman-2.1.14 ppc for bug 337095
  (Portage version: 2.1.8.3/cvs/Linux ppc64)

Revision  Changes    Path
1.127                net-mail/mailman/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/ChangeLog?rev=1.127&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/ChangeLog?rev=1.127&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/ChangeLog?r1=1.126&r2=1.127

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/mailman/ChangeLog,v
retrieving revision 1.126
retrieving revision 1.127
diff -u -r1.126 -r1.127
--- ChangeLog	10 Oct 2010 17:08:50 -0000	1.126
+++ ChangeLog	15 Oct 2010 12:49:32 -0000	1.127
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/mailman
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/ChangeLog,v 1.126 2010/10/10 17:08:50 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/ChangeLog,v 1.127 2010/10/15 12:49:32 ranger Exp $
+
+  15 Oct 2010; Brent Baude <ranger@gentoo.org> mailman-2.1.14.ebuild:
+  Marking mailman-2.1.14 ppc for bug 337095
 
   10 Oct 2010; Raúl Porcel <armin76@gentoo.org> mailman-2.1.14.ebuild:
   sparc stable wrt #337095



1.5                  net-mail/mailman/mailman-2.1.14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild?r1=1.4&r2=1.5

Index: mailman-2.1.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- mailman-2.1.14.ebuild	10 Oct 2010 17:08:50 -0000	1.4
+++ mailman-2.1.14.ebuild	15 Oct 2010 12:49:32 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild,v 1.4 2010/10/10 17:08:50 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/mailman-2.1.14.ebuild,v 1.5 2010/10/15 12:49:32 ranger Exp $
 
 inherit eutils python multilib
 
@@ -10,7 +10,7 @@
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="amd64 ~ppc sparc x86"
+KEYWORDS="amd64 ppc sparc x86"
 IUSE=""
 
 DEPEND=">=dev-lang/python-2.3






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

end of thread, other threads:[~2010-10-15 12:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-15 12:49 [gentoo-commits] gentoo-x86 commit in net-mail/mailman: ChangeLog mailman-2.1.14.ebuild Brent Baude (ranger)
  -- strict thread matches above, loose matches on Subject: below --
2010-10-10 17:08 Raul Porcel (armin76)
2010-10-06 14:50 PaweA Hajdan (phajdan.jr)
2010-10-06  8:05 Markos Chandras (hwoarang)
2010-10-04 19:16 Hanno Boeck (hanno)

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