You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by cu...@apache.org on 2010/08/31 01:45:38 UTC

svn commit: r991031 - in /avro/trunk: CHANGES.txt lang/java/build.xml lang/php/README.txt

Author: cutting
Date: Mon Aug 30 23:45:37 2010
New Revision: 991031

URL: http://svn.apache.org/viewvc?rev=991031&view=rev
Log:
AVRO-644. PHP: Add requirements to README.  Contributed by Michael Glaesemann.

Modified:
    avro/trunk/CHANGES.txt
    avro/trunk/lang/java/build.xml
    avro/trunk/lang/php/README.txt

Modified: avro/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/avro/trunk/CHANGES.txt?rev=991031&r1=991030&r2=991031&view=diff
==============================================================================
--- avro/trunk/CHANGES.txt (original)
+++ avro/trunk/CHANGES.txt Mon Aug 30 23:45:37 2010
@@ -36,7 +36,7 @@ Avro 1.4.0 (31 August 2010)
 
   NEW FEATURES
 
-    AVRO-627. Add PHP implementation. (Michael Glaesemann)
+    AVRO-627. Add PHP implementation. (Michael Glaesemann via cutting)
 
     AVRO-613. Create basic frontend to view trace results.
     (Patrick Wendell via philz)
@@ -172,6 +172,8 @@ Avro 1.4.0 (31 August 2010)
     AVRO-639. Python: Use namespace-unqualified names for references
     to schemas in the same namespace. (cutting)
 
+    AVRO-644: PHP: Add requirements to README. (Michael Glaesemann via cutting)
+
   BUG FIXES
 
     AVRO-622. python avro.ipc doesn't work with python2.4 (philz)

Modified: avro/trunk/lang/java/build.xml
URL: http://svn.apache.org/viewvc/avro/trunk/lang/java/build.xml?rev=991031&r1=991030&r2=991031&view=diff
==============================================================================
--- avro/trunk/lang/java/build.xml (original)
+++ avro/trunk/lang/java/build.xml Mon Aug 30 23:45:37 2010
@@ -64,6 +64,7 @@
   <property name="test.java.classes" value="${test.java.build.dir}/classes"/>
   <property name="test.java.generated.classes" value="${test.java.generated.build.dir}/classes"/>
   <property name="test.java.include" value="Test*"/>
+  <property name="test.java.exclude" value="ipc/trace/*"/>
 
   <property name="javadoc.link.java"
 	    value="http://java.sun.com/javase/6/docs/api/"/>

Modified: avro/trunk/lang/php/README.txt
URL: http://svn.apache.org/viewvc/avro/trunk/lang/php/README.txt?rev=991031&r1=991030&r2=991031&view=diff
==============================================================================
--- avro/trunk/lang/php/README.txt (original)
+++ avro/trunk/lang/php/README.txt Mon Aug 30 23:45:37 2010
@@ -3,6 +3,15 @@ What the Avro PHP library is
 
 A library for using [Avro](http://avro.apache.org/) with PHP.
 
+Requirements
+============
+ * PHP 5
+ * On 32-bit platforms, the [GMP PHP extension](http://php.net/gmp)
+ * For testing, [PHPUnit](http://www.phpunit.de/)
+
+Both GMP and PHPUnit are often available via package management
+systems as `php5-gmp` and `phpunit`, respectively.
+
 Getting started
 ===============