diff options
author | Raúl Porcel <armin76@gentoo.org> | 2007-12-24 12:49:46 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2007-12-24 12:49:46 +0000 |
commit | dbf7e0c96c2df9edce0db9bc169cb16a87d443fc (patch) | |
tree | 34c4f76326652dd3ad5163cd5a601d0228273c7a /dev-php | |
parent | Version bump #195239. (diff) | |
download | historical-dbf7e0c96c2df9edce0db9bc169cb16a87d443fc.tar.gz historical-dbf7e0c96c2df9edce0db9bc169cb16a87d443fc.tar.bz2 historical-dbf7e0c96c2df9edce0db9bc169cb16a87d443fc.zip |
Version bump from the php-overlay
Package-Manager: portage-2.1.3.19
Diffstat (limited to 'dev-php')
26 files changed, 246 insertions, 8 deletions
diff --git a/dev-php/PEAR-HTTP/ChangeLog b/dev-php/PEAR-HTTP/ChangeLog index 445d965d5a11..9f6b6c1eee03 100644 --- a/dev-php/PEAR-HTTP/ChangeLog +++ b/dev-php/PEAR-HTTP/ChangeLog @@ -1,6 +1,19 @@ # ChangeLog for dev-php/PEAR-HTTP # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-HTTP/ChangeLog,v 1.27 2007/12/06 00:19:50 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-HTTP/ChangeLog,v 1.28 2007/12/24 12:38:32 armin76 Exp $ + +*PEAR-HTTP-1.4.0-r1 (24 Dec 2007) + + 24 Dec 2007; Raúl Porcel <armin76@gentoo.org> + +files/PEAR-HTTP-1.4.0-trailingslash-redirect-bug12672.patch, + +PEAR-HTTP-1.4.0-r1.ebuild: + Version bump from the php-overlay + + 22 Dec 2007; Jakub Moc <jakub@gentoo.org> + +files/PEAR-HTTP-1.4.0-trailingslash-redirect-bug12672.patch, + +PEAR-HTTP-1.4.0-r1.ebuild: + Add a patch for PECL Bug #12672 (PHP_SELF ending on / causes incorrect + redirects) and fix nasty DOS linebreaks 06 Dec 2007; Markus Ullmann <jokey@gentoo.org> PEAR-HTTP-1.4.0.ebuild: LICENSE fix from project overlay diff --git a/dev-php/PEAR-HTTP/PEAR-HTTP-1.4.0-r1.ebuild b/dev-php/PEAR-HTTP/PEAR-HTTP-1.4.0-r1.ebuild new file mode 100644 index 000000000000..b31f5cf417e5 --- /dev/null +++ b/dev-php/PEAR-HTTP/PEAR-HTTP-1.4.0-r1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-HTTP/PEAR-HTTP-1.4.0-r1.ebuild,v 1.1 2007/12/24 12:38:33 armin76 Exp $ + +inherit php-pear-r1 depend.php eutils + +DESCRIPTION="Miscellaneous HTTP utilities." +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +pkg_setup() { + require_php_with_use pcre +} + +src_unpack() { + unpack ${A} + cd "${S}" + # fix nasty DOS linebreaks and http://pear.php.net/bugs/bug.php?id=12672 + edos2unix HTTP.php + epatch "${FILESDIR}"/${P}-trailingslash-redirect-bug12672.patch +} diff --git a/dev-php/PEAR-HTTP/files/PEAR-HTTP-1.4.0-trailingslash-redirect-bug12672.patch b/dev-php/PEAR-HTTP/files/PEAR-HTTP-1.4.0-trailingslash-redirect-bug12672.patch new file mode 100644 index 000000000000..fc986be13d89 --- /dev/null +++ b/dev-php/PEAR-HTTP/files/PEAR-HTTP-1.4.0-trailingslash-redirect-bug12672.patch @@ -0,0 +1,12 @@ +diff -Nau HTTP.php.orig HTTP.php +--- HTTP.php.orig 23 Apr 2006 14:20:52 -0000 ++++ HTTP.php 12 Dec 2007 14:16:25 -0000 +@@ -332,6 +332,8 @@ + if (isset($_SERVER['PATH_INFO']) && strlen($_SERVER['PATH_INFO']) && + $_SERVER['PHP_SELF'] != $_SERVER['PATH_INFO']) { + $path = dirname(substr($_SERVER['PHP_SELF'], 0, -strlen($_SERVER['PATH_INFO']))); ++ } else if (substr($_SERVER['PHP_SELF'], -1) == "/") { ++ $path = $_SERVER['PHP_SELF']; + } else { + $path = dirname($_SERVER['PHP_SELF']); + } diff --git a/dev-php/PEAR-HTTP/files/digest-PEAR-HTTP-1.4.0-r1 b/dev-php/PEAR-HTTP/files/digest-PEAR-HTTP-1.4.0-r1 new file mode 100644 index 000000000000..01033253a6d4 --- /dev/null +++ b/dev-php/PEAR-HTTP/files/digest-PEAR-HTTP-1.4.0-r1 @@ -0,0 +1,3 @@ +MD5 62f3ef8c163e2ac11b8ea0163f2a5d3e HTTP-1.4.0.tgz 4593 +RMD160 172b08b653d6a5e878c872fc74872daa335742b3 HTTP-1.4.0.tgz 4593 +SHA256 c5b005fc460e56ae2e0f6f27fe7fa6d2bdb8a332284f221605bf8406e79d3a3b HTTP-1.4.0.tgz 4593 diff --git a/dev-php/PEAR-Net_FTP/ChangeLog b/dev-php/PEAR-Net_FTP/ChangeLog index 65a6897bdb13..53ae624c50a9 100644 --- a/dev-php/PEAR-Net_FTP/ChangeLog +++ b/dev-php/PEAR-Net_FTP/ChangeLog @@ -1,6 +1,15 @@ # ChangeLog for dev-php/PEAR-Net_FTP # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Net_FTP/ChangeLog,v 1.14 2007/12/15 11:56:43 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Net_FTP/ChangeLog,v 1.15 2007/12/24 12:42:53 armin76 Exp $ + +*PEAR-Net_FTP-1.4.0_alpha1 (24 Dec 2007) + + 24 Dec 2007; Raúl Porcel <armin76@gentoo.org> + +PEAR-Net_FTP-1.4.0_alpha1.ebuild: + Version bump from the php-overlay + + 22 Dec 2007; Jakub Moc <jakub@gentoo.org> +PEAR-Net_FTP-1.4.0_alpha1.ebuild: + Version bump *PEAR-Net_FTP-1.3.4 (15 Dec 2007) diff --git a/dev-php/PEAR-Net_FTP/PEAR-Net_FTP-1.4.0_alpha1.ebuild b/dev-php/PEAR-Net_FTP/PEAR-Net_FTP-1.4.0_alpha1.ebuild new file mode 100644 index 000000000000..9c55c3e6edef --- /dev/null +++ b/dev-php/PEAR-Net_FTP/PEAR-Net_FTP-1.4.0_alpha1.ebuild @@ -0,0 +1,16 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Net_FTP/PEAR-Net_FTP-1.4.0_alpha1.ebuild,v 1.1 2007/12/24 12:42:53 armin76 Exp $ + +inherit php-pear-r1 depend.php + +DESCRIPTION="Provides an OO interface to the PHP FTP functions" + +LICENSE="PHP-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="" + +pkg_setup() { + require_php_with_use ftp +} diff --git a/dev-php/PEAR-Net_FTP/files/digest-PEAR-Net_FTP-1.4.0_alpha1 b/dev-php/PEAR-Net_FTP/files/digest-PEAR-Net_FTP-1.4.0_alpha1 new file mode 100644 index 000000000000..9557b5333229 --- /dev/null +++ b/dev-php/PEAR-Net_FTP/files/digest-PEAR-Net_FTP-1.4.0_alpha1 @@ -0,0 +1,3 @@ +MD5 ba8c4e481b4eb282599371fd3a80f060 Net_FTP-1.4.0a1.tgz 32347 +RMD160 875646bda1aa068f927a50f2a5edd6a9413bd857 Net_FTP-1.4.0a1.tgz 32347 +SHA256 efff9b85388afe5bdb33c16124f18fccb804fb41cab7f9551c73f380499e28b4 Net_FTP-1.4.0a1.tgz 32347 diff --git a/dev-php/PEAR-Net_LDAP/ChangeLog b/dev-php/PEAR-Net_LDAP/ChangeLog index a4943c6a2a9c..898df96f8e49 100644 --- a/dev-php/PEAR-Net_LDAP/ChangeLog +++ b/dev-php/PEAR-Net_LDAP/ChangeLog @@ -1,6 +1,16 @@ # ChangeLog for dev-php/PEAR-Net_LDAP # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Net_LDAP/ChangeLog,v 1.2 2007/10/15 20:07:59 anant Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Net_LDAP/ChangeLog,v 1.3 2007/12/24 12:43:56 armin76 Exp $ + +*PEAR-Net_LDAP-1.0.0 (24 Dec 2007) + + 24 Dec 2007; Raúl Porcel <armin76@gentoo.org> + +PEAR-Net_LDAP-1.0.0.ebuild: + Version bump from the php-overlay + + 21 Dec 2007; Jakub Moc <jakub@gentoo.org> + +PEAR-Net_LDAP-1.0.0.ebuild: + Version bump *PEAR-Net_LDAP-1.0.0_rc4 (14 Oct 2007) diff --git a/dev-php/PEAR-Net_LDAP/PEAR-Net_LDAP-1.0.0.ebuild b/dev-php/PEAR-Net_LDAP/PEAR-Net_LDAP-1.0.0.ebuild new file mode 100644 index 000000000000..4760d1bf40ed --- /dev/null +++ b/dev-php/PEAR-Net_LDAP/PEAR-Net_LDAP-1.0.0.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Net_LDAP/PEAR-Net_LDAP-1.0.0.ebuild,v 1.1 2007/12/24 12:43:56 armin76 Exp $ + +inherit php-pear-r1 depend.php + +KEYWORDS="~amd64 ~x86" + +DESCRIPTION="OO interface for searching and manipulating LDAP-entries" +LICENSE="LGPL-2.1" +SLOT="0" +IUSE="" + +DEPEND="" +RDEPEND="" + +pkg_setup() { + require_php_with_use ldap +} diff --git a/dev-php/PEAR-Net_LDAP/files/digest-PEAR-Net_LDAP-1.0.0 b/dev-php/PEAR-Net_LDAP/files/digest-PEAR-Net_LDAP-1.0.0 new file mode 100644 index 000000000000..fda8f22f4e26 --- /dev/null +++ b/dev-php/PEAR-Net_LDAP/files/digest-PEAR-Net_LDAP-1.0.0 @@ -0,0 +1,3 @@ +MD5 3e30e9a0256e325924a7c3917e337009 Net_LDAP-1.0.0.tgz 52986 +RMD160 fcf1ecfc93cc0b315f8161cfb28f1006a0272c7b Net_LDAP-1.0.0.tgz 52986 +SHA256 c7ded6e08fa7fe5d83b79bd896d90e5fc4d7396e16d5ed1b50c05aca4f869f69 Net_LDAP-1.0.0.tgz 52986 diff --git a/dev-php/PEAR-OLE/ChangeLog b/dev-php/PEAR-OLE/ChangeLog index e4aebce62669..64dcbcdae39f 100644 --- a/dev-php/PEAR-OLE/ChangeLog +++ b/dev-php/PEAR-OLE/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for dev-php/PEAR-OLE # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-OLE/ChangeLog,v 1.28 2007/12/15 11:57:50 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-OLE/ChangeLog,v 1.29 2007/12/24 12:45:00 armin76 Exp $ + +*PEAR-OLE-0.6.1 (24 Dec 2007) + + 24 Dec 2007; Raúl Porcel <armin76@gentoo.org> +PEAR-OLE-0.6.1.ebuild: + Version bump from the php-overlay + + 18 Dec 2007; Jakub Moc <jakub@gentoo.org> +PEAR-OLE-0.6.1.ebuild: + Version bump *PEAR-OLE-0.6.0 (15 Dec 2007) diff --git a/dev-php/PEAR-OLE/PEAR-OLE-0.6.1.ebuild b/dev-php/PEAR-OLE/PEAR-OLE-0.6.1.ebuild new file mode 100644 index 000000000000..39d7f04c3ca0 --- /dev/null +++ b/dev-php/PEAR-OLE/PEAR-OLE-0.6.1.ebuild @@ -0,0 +1,11 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-OLE/PEAR-OLE-0.6.1.ebuild,v 1.1 2007/12/24 12:45:01 armin76 Exp $ + +inherit php-pear-r1 + +DESCRIPTION="Package for reading and writing OLE containers" +LICENSE="PHP-2.02 PHP-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" +IUSE="" diff --git a/dev-php/PEAR-OLE/files/digest-PEAR-OLE-0.6.1 b/dev-php/PEAR-OLE/files/digest-PEAR-OLE-0.6.1 new file mode 100644 index 000000000000..d857788d2d9c --- /dev/null +++ b/dev-php/PEAR-OLE/files/digest-PEAR-OLE-0.6.1 @@ -0,0 +1,3 @@ +MD5 6e85cd3911270ad9cb8a77228d73fe8a OLE-0.6.1.tgz 12111 +RMD160 529d659a9d9721ddc63c538af87c1eb845148a3c OLE-0.6.1.tgz 12111 +SHA256 9fd4ed5eaa07f831324df5c910584418803a7f73f0c818e85ea92fa78714587f OLE-0.6.1.tgz 12111 diff --git a/dev-php/PEAR-PHP_CodeSniffer/ChangeLog b/dev-php/PEAR-PHP_CodeSniffer/ChangeLog index ec95111f7bc0..9803e0b83d6b 100644 --- a/dev-php/PEAR-PHP_CodeSniffer/ChangeLog +++ b/dev-php/PEAR-PHP_CodeSniffer/ChangeLog @@ -1,6 +1,16 @@ # ChangeLog for dev-php/PEAR-PHP_CodeSniffer # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-PHP_CodeSniffer/ChangeLog,v 1.1 2007/11/15 18:55:55 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-PHP_CodeSniffer/ChangeLog,v 1.2 2007/12/24 12:46:32 armin76 Exp $ + +*PEAR-PHP_CodeSniffer-1.0.0 (24 Dec 2007) + + 24 Dec 2007; Raúl Porcel <armin76@gentoo.org> + +PEAR-PHP_CodeSniffer-1.0.0.ebuild: + Version bump from the php-overlay + + 21 Dec 2007; Jakub Moc <jakub@gentoo.org> + +PEAR-PHP_CodeSniffer-1.0.0.ebuild: + Version bump *PEAR-PHP_CodeSniffer-1.0.0_rc2 (15 Nov 2007) diff --git a/dev-php/PEAR-PHP_CodeSniffer/PEAR-PHP_CodeSniffer-1.0.0.ebuild b/dev-php/PEAR-PHP_CodeSniffer/PEAR-PHP_CodeSniffer-1.0.0.ebuild new file mode 100644 index 000000000000..2d37796be4cb --- /dev/null +++ b/dev-php/PEAR-PHP_CodeSniffer/PEAR-PHP_CodeSniffer-1.0.0.ebuild @@ -0,0 +1,12 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-PHP_CodeSniffer/PEAR-PHP_CodeSniffer-1.0.0.ebuild,v 1.1 2007/12/24 12:46:32 armin76 Exp $ + +inherit php-pear-r1 + +DESCRIPTION="Tokenises PHP code and detects violations of a defined set of coding standards." + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" diff --git a/dev-php/PEAR-PHP_CodeSniffer/files/digest-PEAR-PHP_CodeSniffer-1.0.0 b/dev-php/PEAR-PHP_CodeSniffer/files/digest-PEAR-PHP_CodeSniffer-1.0.0 new file mode 100644 index 000000000000..1453a2ac7614 --- /dev/null +++ b/dev-php/PEAR-PHP_CodeSniffer/files/digest-PEAR-PHP_CodeSniffer-1.0.0 @@ -0,0 +1,3 @@ +MD5 38c4b9e522a9588fcddcae9ff70c84f7 PHP_CodeSniffer-1.0.0.tgz 203616 +RMD160 899ad6eea1697f93102b468a76c43efdbe902325 PHP_CodeSniffer-1.0.0.tgz 203616 +SHA256 6f94c647e78d58efff0439d566288ffad7da90239ad439b4cee73e59d2001275 PHP_CodeSniffer-1.0.0.tgz 203616 diff --git a/dev-php/PEAR-PHP_CodeSniffer/files/digest-PEAR-PHP_CodeSniffer-1.0.0_rc2 b/dev-php/PEAR-PHP_CodeSniffer/files/digest-PEAR-PHP_CodeSniffer-1.0.0_rc2 index f6fee967972a..a09c6ef7e149 100644 --- a/dev-php/PEAR-PHP_CodeSniffer/files/digest-PEAR-PHP_CodeSniffer-1.0.0_rc2 +++ b/dev-php/PEAR-PHP_CodeSniffer/files/digest-PEAR-PHP_CodeSniffer-1.0.0_rc2 @@ -1,2 +1,3 @@ +MD5 3cee1dfdcae55d3231f8c6289654d2b2 PHP_CodeSniffer-1.0.0RC2.tgz 199086 RMD160 19789bd163764ecfcbb38b6f323a471f161bd4f4 PHP_CodeSniffer-1.0.0RC2.tgz 199086 SHA256 5915f691aa24e51bf13c4ed97f2cc00a8d975b833e28dbd6d18620290547caf9 PHP_CodeSniffer-1.0.0RC2.tgz 199086 diff --git a/dev-php/PEAR-Services_Amazon/ChangeLog b/dev-php/PEAR-Services_Amazon/ChangeLog index 18857e9a0887..5a9c24ba7f75 100644 --- a/dev-php/PEAR-Services_Amazon/ChangeLog +++ b/dev-php/PEAR-Services_Amazon/ChangeLog @@ -1,6 +1,16 @@ # ChangeLog for dev-php/PEAR-Services_Amazon # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Services_Amazon/ChangeLog,v 1.12 2007/12/06 00:50:19 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Services_Amazon/ChangeLog,v 1.13 2007/12/24 12:47:31 armin76 Exp $ + +*PEAR-Services_Amazon-0.7.1 (24 Dec 2007) + + 24 Dec 2007; Raúl Porcel <armin76@gentoo.org> + +PEAR-Services_Amazon-0.7.1.ebuild: + Version bump from the php-overlay + + 18 Dec 2007; Jakub Moc <jakub@gentoo.org> + +PEAR-Services_Amazon-0.7.1.ebuild: + Version bump. 06 Dec 2007; Markus Ullmann <jokey@gentoo.org> PEAR-Services_Amazon-0.7.0.ebuild: diff --git a/dev-php/PEAR-Services_Amazon/PEAR-Services_Amazon-0.7.1.ebuild b/dev-php/PEAR-Services_Amazon/PEAR-Services_Amazon-0.7.1.ebuild new file mode 100644 index 000000000000..7266b551d002 --- /dev/null +++ b/dev-php/PEAR-Services_Amazon/PEAR-Services_Amazon-0.7.1.ebuild @@ -0,0 +1,15 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Services_Amazon/PEAR-Services_Amazon-0.7.1.ebuild,v 1.1 2007/12/24 12:47:31 armin76 Exp $ + +inherit php-pear-r1 + +DESCRIPTION="Provides access to Amazon's retail and associate web services." + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="minimal" +RDEPEND=">=dev-php/PEAR-HTTP_Request-1.2.4-r1 + >=dev-php/PEAR-XML_Serializer-0.17.0 + !minimal? ( dev-php/PEAR-Cache )" diff --git a/dev-php/PEAR-Services_Amazon/files/digest-PEAR-Services_Amazon-0.7.1 b/dev-php/PEAR-Services_Amazon/files/digest-PEAR-Services_Amazon-0.7.1 new file mode 100644 index 000000000000..0d7d0006060f --- /dev/null +++ b/dev-php/PEAR-Services_Amazon/files/digest-PEAR-Services_Amazon-0.7.1 @@ -0,0 +1,3 @@ +MD5 25b079360c8726b1038be22e3e284aa6 Services_Amazon-0.7.1.tgz 18046 +RMD160 340ff7f92a6de2c60ab0407ca03ba5bea16da284 Services_Amazon-0.7.1.tgz 18046 +SHA256 d8a15d5021018b0daf3bbe76ec07de73998d6703e140e9a151f35ee366ba7009 Services_Amazon-0.7.1.tgz 18046 diff --git a/dev-php/PEAR-Structures_DataGrid/ChangeLog b/dev-php/PEAR-Structures_DataGrid/ChangeLog index 38a703a97813..5c326c905301 100644 --- a/dev-php/PEAR-Structures_DataGrid/ChangeLog +++ b/dev-php/PEAR-Structures_DataGrid/ChangeLog @@ -1,6 +1,16 @@ # ChangeLog for dev-php/PEAR-Structures_DataGrid # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Structures_DataGrid/ChangeLog,v 1.28 2007/12/06 00:53:00 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Structures_DataGrid/ChangeLog,v 1.29 2007/12/24 12:48:38 armin76 Exp $ + +*PEAR-Structures_DataGrid-0.9.0 (24 Dec 2007) + + 24 Dec 2007; Raúl Porcel <armin76@gentoo.org> + +PEAR-Structures_DataGrid-0.9.0.ebuild: + Version bump from the php-overlay + + 22 Dec 2007; Jakub Moc <jakub@gentoo.org> + +PEAR-Structures_DataGrid-0.9.0.ebuild: + Version bump 06 Dec 2007; Markus Ullmann <jokey@gentoo.org> -PEAR-Structures_DataGrid-0.6.3.ebuild, diff --git a/dev-php/PEAR-Structures_DataGrid/PEAR-Structures_DataGrid-0.9.0.ebuild b/dev-php/PEAR-Structures_DataGrid/PEAR-Structures_DataGrid-0.9.0.ebuild new file mode 100644 index 000000000000..93c184af8957 --- /dev/null +++ b/dev-php/PEAR-Structures_DataGrid/PEAR-Structures_DataGrid-0.9.0.ebuild @@ -0,0 +1,13 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Structures_DataGrid/PEAR-Structures_DataGrid-0.9.0.ebuild,v 1.1 2007/12/24 12:48:39 armin76 Exp $ + +inherit php-pear-r1 + +DESCRIPTION="A tabular structure that contains a record set of data for paging +and sorting purposes." + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" diff --git a/dev-php/PEAR-Structures_DataGrid/files/digest-PEAR-Structures_DataGrid-0.9.0 b/dev-php/PEAR-Structures_DataGrid/files/digest-PEAR-Structures_DataGrid-0.9.0 new file mode 100644 index 000000000000..2234d5fb5e80 --- /dev/null +++ b/dev-php/PEAR-Structures_DataGrid/files/digest-PEAR-Structures_DataGrid-0.9.0 @@ -0,0 +1,3 @@ +MD5 9aa37e190d2c0856bfc4bb556409285c Structures_DataGrid-0.9.0.tgz 45464 +RMD160 d8ff824af7ab655e26888ea87a1339195bffb1f3 Structures_DataGrid-0.9.0.tgz 45464 +SHA256 f69e48938db74f3e3aa08105c5b179a54ab2b6dfbdaee435708277c7336c8fb9 Structures_DataGrid-0.9.0.tgz 45464 diff --git a/dev-php/PEAR-Testing_Selenium/ChangeLog b/dev-php/PEAR-Testing_Selenium/ChangeLog index 03531c8dc1ec..984c8d6bae03 100644 --- a/dev-php/PEAR-Testing_Selenium/ChangeLog +++ b/dev-php/PEAR-Testing_Selenium/ChangeLog @@ -1,6 +1,16 @@ # ChangeLog for dev-php/PEAR-Testing_Selenium # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Testing_Selenium/ChangeLog,v 1.5 2007/12/15 12:00:06 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Testing_Selenium/ChangeLog,v 1.6 2007/12/24 12:49:45 armin76 Exp $ + +*PEAR-Testing_Selenium-0.4.2 (24 Dec 2007) + + 24 Dec 2007; Raúl Porcel <armin76@gentoo.org> + +PEAR-Testing_Selenium-0.4.2.ebuild: + Version bump from the php-overlay + + 18 Dec 2007; Jakub Moc <jakub@gentoo.org> + +PEAR-Testing_Selenium-0.4.2.ebuild: + Version bump *PEAR-Testing_Selenium-0.4.1 (15 Dec 2007) diff --git a/dev-php/PEAR-Testing_Selenium/PEAR-Testing_Selenium-0.4.2.ebuild b/dev-php/PEAR-Testing_Selenium/PEAR-Testing_Selenium-0.4.2.ebuild new file mode 100644 index 000000000000..07f66e56a9c3 --- /dev/null +++ b/dev-php/PEAR-Testing_Selenium/PEAR-Testing_Selenium-0.4.2.ebuild @@ -0,0 +1,12 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Testing_Selenium/PEAR-Testing_Selenium-0.4.2.ebuild,v 1.1 2007/12/24 12:49:45 armin76 Exp $ + +inherit php-pear-r1 + +DESCRIPTION="PHP Client for Selenium Remote Control." +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +DEPEND=">=dev-lang/php-5.1.0" diff --git a/dev-php/PEAR-Testing_Selenium/files/digest-PEAR-Testing_Selenium-0.4.2 b/dev-php/PEAR-Testing_Selenium/files/digest-PEAR-Testing_Selenium-0.4.2 new file mode 100644 index 000000000000..67a7d37c7020 --- /dev/null +++ b/dev-php/PEAR-Testing_Selenium/files/digest-PEAR-Testing_Selenium-0.4.2 @@ -0,0 +1,3 @@ +MD5 4bbb5e2a2e3d3ac486f79c1dec60a0ba Testing_Selenium-0.4.2.tgz 27129 +RMD160 2babe78791ddce170fe7952886a18b289626c8cd Testing_Selenium-0.4.2.tgz 27129 +SHA256 529e0b316f52d6d90198c30cfa24b3163304199eeaee201b972b431641acf5d2 Testing_Selenium-0.4.2.tgz 27129 |