rpms/php-pear-HTTP-OAuth/devel .cvsignore, 1.7, 1.8 php-pear-HTTP-OAuth.spec, 1.6, 1.7 sources, 1.7, 1.8 xml2changelog, 1.1, 1.2

Remi Collet remi at fedoraproject.org
Thu Jun 24 16:57:49 UTC 2010


Author: remi

Update of /cvs/pkgs/rpms/php-pear-HTTP-OAuth/devel
In directory cvs01.phx2.fedoraproject.org:/tmp/cvs-serv27111

Modified Files:
	.cvsignore php-pear-HTTP-OAuth.spec sources xml2changelog 
Log Message:
update to 0.1.15 (bugfix)


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/php-pear-HTTP-OAuth/devel/.cvsignore,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -p -r1.7 -r1.8
--- .cvsignore	27 May 2010 13:06:12 -0000	1.7
+++ .cvsignore	24 Jun 2010 16:57:48 -0000	1.8
@@ -1 +1 @@
-HTTP_OAuth-0.1.14.tgz
+HTTP_OAuth-0.1.15.tgz


Index: php-pear-HTTP-OAuth.spec
===================================================================
RCS file: /cvs/pkgs/rpms/php-pear-HTTP-OAuth/devel/php-pear-HTTP-OAuth.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -p -r1.6 -r1.7
--- php-pear-HTTP-OAuth.spec	27 May 2010 13:06:13 -0000	1.6
+++ php-pear-HTTP-OAuth.spec	24 Jun 2010 16:57:48 -0000	1.7
@@ -2,7 +2,7 @@
 %global pear_name HTTP_OAuth
 
 Name:           php-pear-HTTP-OAuth
-Version:        0.1.14
+Version:        0.1.15
 Release:        1%{?dist}
 Summary:        Implementation of the OAuth spec
 
@@ -70,8 +70,8 @@ rm -rf $RPM_BUILD_ROOT
 # For documentation only - to run after installation
 # cd /usr/share/pear/test/HTTP_OAuth/tests
 # phpunit AllTests.php
-# With PHPUnit 3.4.13 + HTTP_OAuth 0.1.14
-# OK (69 tests, 174 assertions)
+# With PHPUnit 3.4.14 + HTTP_OAuth 0.1.15
+# OK (69 tests, 176 assertions)
 
 
 %post
@@ -101,6 +101,9 @@ fi
 
 
 %changelog
+* Thu Jun 24 2010 Remi Collet <Fedora at FamilleCollet.com> 0.1.15-1
+- Version 0.1.15 (alpha) - API 0.1.1 (alpha)
+
 * Thu May 27 2010 Remi Collet <Fedora at FamilleCollet.com> 0.1.14-1
 - Version 0.1.14 (alpha) - API 0.1.1 (alpha)
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/php-pear-HTTP-OAuth/devel/sources,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -p -r1.7 -r1.8
--- sources	27 May 2010 13:06:13 -0000	1.7
+++ sources	24 Jun 2010 16:57:49 -0000	1.8
@@ -1 +1 @@
-9732afe293f06b01f44f6f44789702ad  HTTP_OAuth-0.1.14.tgz
+ae4853b9bad19ae7c0abf66c4190a942  HTTP_OAuth-0.1.15.tgz


Index: xml2changelog
===================================================================
RCS file: /cvs/pkgs/rpms/php-pear-HTTP-OAuth/devel/xml2changelog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- xml2changelog	29 Apr 2010 14:42:57 -0000	1.1
+++ xml2changelog	24 Jun 2010 16:57:49 -0000	1.2
@@ -13,16 +13,22 @@ if ($xml['version'] >= "2"){ // Package.
 		$xml->date, $xml->notes);
 	$new=$xml->version->release;
 
-	if (isset($xml->changelog->release) && count($xml->changelog->release)) 
-	    foreach($xml->changelog->release as $rel) {
-		$old=$rel->version->release;
-		if ("$old" != "$new") {
-		    printf("*** Version %s (%s) - API %s (%s) - %s\n\n%s\n\n",
-			$rel->version->release, $rel->stability->release, 
-			$rel->version->api, $rel->stability->api, 
-			$rel->date, $rel->notes);
-		}
-	    }
+	if (isset($xml->changelog->release) && count($xml->changelog->release)) {
+		$tab = array();
+		foreach($xml->changelog->release as $rel) {
+			$old=$rel->version->release;
+			if ("$old" != "$new") {
+				$tab[''.$rel->date] = $rel;
+			}
+		}	
+		krsort($tab);
+		foreach($tab as $rel) {
+			printf("*** Version %s (%s) - API %s (%s) - %s\n\n%s\n\n",
+				$rel->version->release, $rel->stability->release, 
+				$rel->version->api, $rel->stability->api, 
+				$rel->date, $rel->notes);
+	    	}
+	}
 } else { // Package.xml V 1.0
 	printf("* Version %s (%s) - %s\n\n%s\n\n",
 		$xml->release->version, $xml->release->state, $xml->release->date, $xml->release->notes);



More information about the scm-commits mailing list