public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in mail-client/squirrelmail: squirrelmail-1.4.20.ebuild ChangeLog
@ 2010-05-04 14:58 Tobias Heinlein (keytoaster)
  0 siblings, 0 replies; 6+ messages in thread
From: Tobias Heinlein (keytoaster) @ 2010-05-04 14:58 UTC (permalink / raw
  To: gentoo-commits

keytoaster    10/05/04 14:58:24

  Modified:             ChangeLog
  Added:                squirrelmail-1.4.20.ebuild
  Log:
  Version bump, patch by Eray Aslan <eray.aslan@caf.com.tr>, security bug 281580
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.147                mail-client/squirrelmail/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-client/squirrelmail/ChangeLog?rev=1.147&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-client/squirrelmail/ChangeLog?rev=1.147&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-client/squirrelmail/ChangeLog?r1=1.146&r2=1.147

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/ChangeLog,v
retrieving revision 1.146
retrieving revision 1.147
diff -u -r1.146 -r1.147
--- ChangeLog	13 Jul 2009 19:08:07 -0000	1.146
+++ ChangeLog	4 May 2010 14:58:24 -0000	1.147
@@ -1,6 +1,13 @@
 # ChangeLog for mail-client/squirrelmail
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/ChangeLog,v 1.146 2009/07/13 19:08:07 dertobi123 Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/ChangeLog,v 1.147 2010/05/04 14:58:24 keytoaster Exp $
+
+*squirrelmail-1.4.20 (04 May 2010)
+
+  04 May 2010; Tobias Heinlein <keytoaster@gentoo.org>
+  +squirrelmail-1.4.20.ebuild:
+  Version bump, patch by Eray Aslan <eray.aslan@caf.com.tr>, security bug
+  281580
 
   13 Jul 2009; Tobias Scherbaum <dertobi123@gentoo.org>
   -squirrelmail-1.4.18.ebuild:



1.1                  mail-client/squirrelmail/squirrelmail-1.4.20.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-client/squirrelmail/squirrelmail-1.4.20.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-client/squirrelmail/squirrelmail-1.4.20.ebuild?rev=1.1&content-type=text/plain

Index: squirrelmail-1.4.20.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/squirrelmail-1.4.20.ebuild,v 1.1 2010/05/04 14:58:24 keytoaster Exp $

EAPI=2

IUSE="ldap spell ssl filter mysql postgres nls"

inherit webapp eutils

DESCRIPTION="Webmail for nuts!"

# Plugin Versions
COMPATIBILITY_VER=2.0.16-1.0
USERDATA_VER=0.9-1.4.0
ADMINADD_VER=0.1-1.4.0
AMAVIS_VER=0.8.0-1.4
LDAP_USERDATA_VER=0.4
SECURELOGIN_VER=1.4-1.2.8
SHOWSSL_VER=2.2-1.2.8
LOCALES_VER=1.4.18-20090526
DECODING_VER=1.2

MY_P=${P/_rc/-RC}
S="${WORKDIR}/${MY_P}"

PLUGINS_LOC="http://www.squirrelmail.org/plugins"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2
	mirror://sourceforge/${PN}/squirrelmail-decode-${DECODING_VER}.tar.bz2
	mirror://sourceforge/retruserdata/retrieveuserdata.${USERDATA_VER}.tar.gz
	${PLUGINS_LOC}/compatibility-${COMPATIBILITY_VER}.tar.gz
	ssl? ( ${PLUGINS_LOC}/secure_login-${SECURELOGIN_VER}.tar.gz )
	ssl? ( ${PLUGINS_LOC}/show_ssl_link-${SHOWSSL_VER}.tar.gz )
	${PLUGINS_LOC}/admin_add.${ADMINADD_VER}.tar.gz
	filter? ( ${PLUGINS_LOC}/amavisnewsql-0.8.0-1.4.tar.gz )
	ldap? ( ${PLUGINS_LOC}/ldapuserdata-${LDAP_USERDATA_VER}.tar.gz )
	nls? ( mirror://sourceforge/${PN}/all_locales-${LOCALES_VER}.tar.bz2 )"

HOMEPAGE="http://www.squirrelmail.org/"

LICENSE="GPL-2"
KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"

DEPEND=""

RDEPEND="dev-lang/php[session]
	virtual/perl-DB_File
	ldap? ( net-nds/openldap )
	spell? ( || ( app-text/aspell app-text/ispell ) )
	filter? ( mail-filter/amavisd-new dev-php/PEAR-Log dev-php/PEAR-DB dev-php/PEAR-Net_SMTP )
	postgres? ( dev-php/PEAR-DB )
	mysql? ( dev-php/PEAR-DB )"

src_unpack() {
	unpack ${MY_P}.tar.bz2
	unpack squirrelmail-decode-${DECODING_VER}.tar.bz2

	cd "${S}"

	mv config/config_default.php config/config.php

	sed -i "s:'/var/local/squirrelmail/data/':SM_PATH . 'data/':" config/config.php

	# Now do the plugins
	cd "${S}/plugins"

	sed -i 's:/usr/games/fortune:/usr/bin/fortune:g' fortune/setup.php || die "Unable to fix fortunes plugin."

	unpack compatibility-${COMPATIBILITY_VER}.tar.gz

	unpack admin_add.${ADMINADD_VER}.tar.gz

	unpack retrieveuserdata.${USERDATA_VER}.tar.gz

	use filter &&
		unpack amavisnewsql-${AMAVIS_VER}.tar.gz &&
		mv amavisnewsql/config.php.dist amavisnewsql/config.php

	use ldap &&
		unpack ldapuserdata-${LDAP_USERDATA_VER}.tar.gz &&
		epatch "${FILESDIR}"/ldapuserdata-${LDAP_USERDATA_VER}-gentoo.patch &&
		mv ldapuserdata/config_sample.php ldapuserdata/config.php

	use ssl &&
		unpack secure_login-${SECURELOGIN_VER}.tar.gz &&
		mv secure_login/config.sample.php secure_login/config.php &&
		unpack show_ssl_link-${SHOWSSL_VER}.tar.gz &&
		mv show_ssl_link/config.php.sample show_ssl_link/config.php

	use nls &&
		cd "${S}" &&
		unpack all_locales-${LOCALES_VER}.tar.bz2
}

src_configure() {
	#we need to have this empty function ...
	echo "Nothing to configure"
}

src_compile() {
	#we need to have this empty function ... default compile hangs
	echo "Nothing to compile"
}

src_install() {
	webapp_src_preinst

	# handle documentation files
	#
	# NOTE that doc files go into /usr/share/doc as normal; they do NOT
	# get installed per vhost!

	dodoc README

	docinto compatibility
	for doc in plugins/compatibility/docs/INSTALL plugins/compatibility/docs/README; do
		dodoc ${doc}
		rm -f ${doc}
	done

	docinto admin_add
	for doc in plugins/admin_add/README; do
		dodoc ${doc}
		rm -f ${doc}
	done

	docinto retrieveuserdata
	for doc in plugins/retrieveuserdata/INSTALL plugins/retrieveuserdata/changelog plugins/retrieveuserdata/users_example.txt; do
		dodoc ${doc}
		rm -f ${doc}
	done

	if use filter; then
		docinto amavisnewsql
		for doc in plugins/amavisnewsql/{CHANGELOG,README,UPGRADE}; do
			dodoc ${doc}
			rm -f ${doc}
		done
	fi

	if use ldap; then
		rm plugins/ldapuserdata/README
		docinto ldapuserdata
		for doc in plugins/ldapuserdata/doc/README; do
			dodoc ${doc}
			rm -f ${doc}
		done
	fi

	if use ssl; then
		docinto secure_login
		for doc in plugins/secure_login/INSTALL plugins/secure_login/README; do
			dodoc ${doc}
			rm -f ${doc}
		done

		docinto show_ssl_link
		for doc in plugins/show_ssl_link/INSTALL plugins/show_ssl_link/README; do
			dodoc ${doc}
			rm -f ${doc}
		done
	fi

	# Copy the app's main files
	einfo "Installing squirrelmail files."
	cp -r . "${D}${MY_HTDOCSDIR}"

	cp "${WORKDIR}"/squirrelmail-decode-${DECODING_VER}/*/*.php "${D}${MY_HTDOCSDIR}/functions/decode"

	# Identify the configuration files that this app uses
	local configs="config/config.php config/config_local.php plugins/retrieveuserdata/config.php"
	use filter && configs="${configs} plugins/amavisnewsql/config.php"
	use ldap && configs="${configs} plugins/ldapuserdata/config.php"
	use ssl && configs="${configs} plugins/show_ssl_link/config.php plugins/secure_login/config.php"

	for file in ${configs}; do
		webapp_configfile ${MY_HTDOCSDIR}/${file}
	done

	# Identify any script files that need #! headers adding to run under
	# a CGI script (such as PHP/CGI)
	#
	# for phpmyadmin, we *assume* that all .php files that don't end in
	# .inc.php need to have CGI/BIN support added

	#for x in `find . -name '*.php' -print | grep -v 'inc.php'` ; do
	#	webapp_runbycgibin php ${MY_HTDOCSDIR}/$x
	#done

	local server_owned="data index.php"
	for file in ${server_owned}; do
		webapp_serverowned ${MY_HTDOCSDIR}/${file}
	done

	# add the post-installation instructions
	webapp_postinst_txt en "${FILESDIR}/postinstall-en.txt"

	# all done
	#
	# now we let the eclass strut its stuff ;-)

	webapp_src_install
}






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

* [gentoo-commits] gentoo-x86 commit in mail-client/squirrelmail: squirrelmail-1.4.20.ebuild ChangeLog
@ 2010-05-09 13:34 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 6+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2010-05-09 13:34 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    10/05/09 13:34:15

  Modified:             squirrelmail-1.4.20.ebuild ChangeLog
  Log:
  x86 stable wrt security bug #281580
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.2                  mail-client/squirrelmail/squirrelmail-1.4.20.ebuild

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

Index: squirrelmail-1.4.20.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/squirrelmail-1.4.20.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- squirrelmail-1.4.20.ebuild	4 May 2010 14:58:24 -0000	1.1
+++ squirrelmail-1.4.20.ebuild	9 May 2010 13:34:15 -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/mail-client/squirrelmail/squirrelmail-1.4.20.ebuild,v 1.1 2010/05/04 14:58:24 keytoaster Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/squirrelmail-1.4.20.ebuild,v 1.2 2010/05/09 13:34:15 phajdan.jr Exp $
 
 EAPI=2
 
@@ -39,7 +39,7 @@
 HOMEPAGE="http://www.squirrelmail.org/"
 
 LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc x86"
 
 DEPEND=""
 



1.148                mail-client/squirrelmail/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/squirrelmail/ChangeLog?rev=1.148&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/squirrelmail/ChangeLog?rev=1.148&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/squirrelmail/ChangeLog?r1=1.147&r2=1.148

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/ChangeLog,v
retrieving revision 1.147
retrieving revision 1.148
diff -u -r1.147 -r1.148
--- ChangeLog	4 May 2010 14:58:24 -0000	1.147
+++ ChangeLog	9 May 2010 13:34:15 -0000	1.148
@@ -1,6 +1,10 @@
 # ChangeLog for mail-client/squirrelmail
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/ChangeLog,v 1.147 2010/05/04 14:58:24 keytoaster Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/ChangeLog,v 1.148 2010/05/09 13:34:15 phajdan.jr Exp $
+
+  09 May 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
+  squirrelmail-1.4.20.ebuild:
+  x86 stable wrt security bug #281580
 
 *squirrelmail-1.4.20 (04 May 2010)
 






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

* [gentoo-commits] gentoo-x86 commit in mail-client/squirrelmail: squirrelmail-1.4.20.ebuild ChangeLog
@ 2010-05-09 18:30 Raul Porcel (armin76)
  0 siblings, 0 replies; 6+ messages in thread
From: Raul Porcel (armin76) @ 2010-05-09 18:30 UTC (permalink / raw
  To: gentoo-commits

armin76     10/05/09 18:30:39

  Modified:             squirrelmail-1.4.20.ebuild ChangeLog
  Log:
  alpha/sparc stable wrt #281580
  (Portage version: 2.1.8.3/cvs/Linux ia64)

Revision  Changes    Path
1.3                  mail-client/squirrelmail/squirrelmail-1.4.20.ebuild

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

Index: squirrelmail-1.4.20.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/squirrelmail-1.4.20.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- squirrelmail-1.4.20.ebuild	9 May 2010 13:34:15 -0000	1.2
+++ squirrelmail-1.4.20.ebuild	9 May 2010 18:30:39 -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/mail-client/squirrelmail/squirrelmail-1.4.20.ebuild,v 1.2 2010/05/09 13:34:15 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/squirrelmail-1.4.20.ebuild,v 1.3 2010/05/09 18:30:39 armin76 Exp $
 
 EAPI=2
 
@@ -39,7 +39,7 @@
 HOMEPAGE="http://www.squirrelmail.org/"
 
 LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="alpha ~amd64 ~ppc ~ppc64 sparc x86"
 
 DEPEND=""
 



1.149                mail-client/squirrelmail/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/squirrelmail/ChangeLog?rev=1.149&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/squirrelmail/ChangeLog?rev=1.149&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/squirrelmail/ChangeLog?r1=1.148&r2=1.149

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/ChangeLog,v
retrieving revision 1.148
retrieving revision 1.149
diff -u -r1.148 -r1.149
--- ChangeLog	9 May 2010 13:34:15 -0000	1.148
+++ ChangeLog	9 May 2010 18:30:39 -0000	1.149
@@ -1,6 +1,9 @@
 # ChangeLog for mail-client/squirrelmail
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/ChangeLog,v 1.148 2010/05/09 13:34:15 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/ChangeLog,v 1.149 2010/05/09 18:30:39 armin76 Exp $
+
+  09 May 2010; Raúl Porcel <armin76@gentoo.org> squirrelmail-1.4.20.ebuild:
+  alpha/sparc stable wrt #281580
 
   09 May 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
   squirrelmail-1.4.20.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in mail-client/squirrelmail: squirrelmail-1.4.20.ebuild ChangeLog
@ 2010-05-10 15:40 Brent Baude (ranger)
  0 siblings, 0 replies; 6+ messages in thread
From: Brent Baude (ranger) @ 2010-05-10 15:40 UTC (permalink / raw
  To: gentoo-commits

ranger      10/05/10 15:40:58

  Modified:             squirrelmail-1.4.20.ebuild ChangeLog
  Log:
  Marking squirrelmail-1.4.20 ppc64 for bug 281580
  (Portage version: 2.1.7.17/cvs/Linux ppc64)

Revision  Changes    Path
1.4                  mail-client/squirrelmail/squirrelmail-1.4.20.ebuild

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

Index: squirrelmail-1.4.20.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/squirrelmail-1.4.20.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- squirrelmail-1.4.20.ebuild	9 May 2010 18:30:39 -0000	1.3
+++ squirrelmail-1.4.20.ebuild	10 May 2010 15:40:58 -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/mail-client/squirrelmail/squirrelmail-1.4.20.ebuild,v 1.3 2010/05/09 18:30:39 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/squirrelmail-1.4.20.ebuild,v 1.4 2010/05/10 15:40:58 ranger Exp $
 
 EAPI=2
 
@@ -39,7 +39,7 @@
 HOMEPAGE="http://www.squirrelmail.org/"
 
 LICENSE="GPL-2"
-KEYWORDS="alpha ~amd64 ~ppc ~ppc64 sparc x86"
+KEYWORDS="alpha ~amd64 ~ppc ppc64 sparc x86"
 
 DEPEND=""
 



1.150                mail-client/squirrelmail/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/squirrelmail/ChangeLog?rev=1.150&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/squirrelmail/ChangeLog?rev=1.150&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/squirrelmail/ChangeLog?r1=1.149&r2=1.150

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/ChangeLog,v
retrieving revision 1.149
retrieving revision 1.150
diff -u -r1.149 -r1.150
--- ChangeLog	9 May 2010 18:30:39 -0000	1.149
+++ ChangeLog	10 May 2010 15:40:58 -0000	1.150
@@ -1,6 +1,9 @@
 # ChangeLog for mail-client/squirrelmail
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/ChangeLog,v 1.149 2010/05/09 18:30:39 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/ChangeLog,v 1.150 2010/05/10 15:40:58 ranger Exp $
+
+  10 May 2010; Brent Baude <ranger@gentoo.org> squirrelmail-1.4.20.ebuild:
+  Marking squirrelmail-1.4.20 ppc64 for bug 281580
 
   09 May 2010; Raúl Porcel <armin76@gentoo.org> squirrelmail-1.4.20.ebuild:
   alpha/sparc stable wrt #281580






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

* [gentoo-commits] gentoo-x86 commit in mail-client/squirrelmail: squirrelmail-1.4.20.ebuild ChangeLog
@ 2010-05-11 13:55 Joseph Jezak (josejx)
  0 siblings, 0 replies; 6+ messages in thread
From: Joseph Jezak (josejx) @ 2010-05-11 13:55 UTC (permalink / raw
  To: gentoo-commits

josejx      10/05/11 13:55:38

  Modified:             squirrelmail-1.4.20.ebuild ChangeLog
  Log:
  Marked ppc stable for bug #281580.
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  mail-client/squirrelmail/squirrelmail-1.4.20.ebuild

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

Index: squirrelmail-1.4.20.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/squirrelmail-1.4.20.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- squirrelmail-1.4.20.ebuild	10 May 2010 15:40:58 -0000	1.4
+++ squirrelmail-1.4.20.ebuild	11 May 2010 13:55:38 -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/mail-client/squirrelmail/squirrelmail-1.4.20.ebuild,v 1.4 2010/05/10 15:40:58 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/squirrelmail-1.4.20.ebuild,v 1.5 2010/05/11 13:55:38 josejx Exp $
 
 EAPI=2
 
@@ -39,7 +39,7 @@
 HOMEPAGE="http://www.squirrelmail.org/"
 
 LICENSE="GPL-2"
-KEYWORDS="alpha ~amd64 ~ppc ppc64 sparc x86"
+KEYWORDS="alpha ~amd64 ppc ppc64 sparc x86"
 
 DEPEND=""
 



1.151                mail-client/squirrelmail/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/squirrelmail/ChangeLog?rev=1.151&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/squirrelmail/ChangeLog?rev=1.151&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/squirrelmail/ChangeLog?r1=1.150&r2=1.151

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/ChangeLog,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -r1.150 -r1.151
--- ChangeLog	10 May 2010 15:40:58 -0000	1.150
+++ ChangeLog	11 May 2010 13:55:38 -0000	1.151
@@ -1,6 +1,9 @@
 # ChangeLog for mail-client/squirrelmail
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/ChangeLog,v 1.150 2010/05/10 15:40:58 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/ChangeLog,v 1.151 2010/05/11 13:55:38 josejx Exp $
+
+  11 May 2010; Joseph Jezak <josejx@gentoo.org> squirrelmail-1.4.20.ebuild:
+  Marked ppc stable for bug #281580.
 
   10 May 2010; Brent Baude <ranger@gentoo.org> squirrelmail-1.4.20.ebuild:
   Marking squirrelmail-1.4.20 ppc64 for bug 281580






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

* [gentoo-commits] gentoo-x86 commit in mail-client/squirrelmail: squirrelmail-1.4.20.ebuild ChangeLog
@ 2010-05-15 13:21 Markus Meier (maekke)
  0 siblings, 0 replies; 6+ messages in thread
From: Markus Meier (maekke) @ 2010-05-15 13:21 UTC (permalink / raw
  To: gentoo-commits

maekke      10/05/15 13:21:01

  Modified:             squirrelmail-1.4.20.ebuild ChangeLog
  Log:
  amd64 stable, bug #281580
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.6                  mail-client/squirrelmail/squirrelmail-1.4.20.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/squirrelmail/squirrelmail-1.4.20.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/squirrelmail/squirrelmail-1.4.20.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/squirrelmail/squirrelmail-1.4.20.ebuild?r1=1.5&r2=1.6

Index: squirrelmail-1.4.20.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/squirrelmail-1.4.20.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- squirrelmail-1.4.20.ebuild	11 May 2010 13:55:38 -0000	1.5
+++ squirrelmail-1.4.20.ebuild	15 May 2010 13:21:01 -0000	1.6
@@ -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/mail-client/squirrelmail/squirrelmail-1.4.20.ebuild,v 1.5 2010/05/11 13:55:38 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/squirrelmail-1.4.20.ebuild,v 1.6 2010/05/15 13:21:01 maekke Exp $
 
 EAPI=2
 
@@ -39,7 +39,7 @@
 HOMEPAGE="http://www.squirrelmail.org/"
 
 LICENSE="GPL-2"
-KEYWORDS="alpha ~amd64 ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 ppc ppc64 sparc x86"
 
 DEPEND=""
 



1.152                mail-client/squirrelmail/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/squirrelmail/ChangeLog?rev=1.152&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/squirrelmail/ChangeLog?rev=1.152&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-client/squirrelmail/ChangeLog?r1=1.151&r2=1.152

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/ChangeLog,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -r1.151 -r1.152
--- ChangeLog	11 May 2010 13:55:38 -0000	1.151
+++ ChangeLog	15 May 2010 13:21:01 -0000	1.152
@@ -1,6 +1,9 @@
 # ChangeLog for mail-client/squirrelmail
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/ChangeLog,v 1.151 2010/05/11 13:55:38 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/ChangeLog,v 1.152 2010/05/15 13:21:01 maekke Exp $
+
+  15 May 2010; Markus Meier <maekke@gentoo.org> squirrelmail-1.4.20.ebuild:
+  amd64 stable, bug #281580
 
   11 May 2010; Joseph Jezak <josejx@gentoo.org> squirrelmail-1.4.20.ebuild:
   Marked ppc stable for bug #281580.






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

end of thread, other threads:[~2010-05-15 13:21 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-15 13:21 [gentoo-commits] gentoo-x86 commit in mail-client/squirrelmail: squirrelmail-1.4.20.ebuild ChangeLog Markus Meier (maekke)
  -- strict thread matches above, loose matches on Subject: below --
2010-05-11 13:55 Joseph Jezak (josejx)
2010-05-10 15:40 Brent Baude (ranger)
2010-05-09 18:30 Raul Porcel (armin76)
2010-05-09 13:34 PaweA Hajdan (phajdan.jr)
2010-05-04 14:58 Tobias Heinlein (keytoaster)

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