Gentoo Archives: gentoo-commits

From: "Petteri Raty (betelgeuse)" <betelgeuse@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-java/json-simple/files: extra-constructors-from-azureus.patch
Date: Sun, 20 Apr 2008 21:21:18
Message-Id: E1JngyJ-00018l-EU@stork.gentoo.org
1 betelgeuse 08/04/20 21:21:15
2
3 Modified: extra-constructors-from-azureus.patch
4 Log:
5 Remove CVS keywords from the patch.
6 (Portage version: 2.1.5_rc3)
7
8 Revision Changes Path
9 1.2 dev-java/json-simple/files/extra-constructors-from-azureus.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/json-simple/files/extra-constructors-from-azureus.patch?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/json-simple/files/extra-constructors-from-azureus.patch?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/json-simple/files/extra-constructors-from-azureus.patch?r1=1.1&r2=1.2
14
15 Index: extra-constructors-from-azureus.patch
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-java/json-simple/files/extra-constructors-from-azureus.patch,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- extra-constructors-from-azureus.patch 20 Apr 2008 14:33:15 -0000 1.1
22 +++ extra-constructors-from-azureus.patch 20 Apr 2008 21:21:14 -0000 1.2
23 @@ -1,30 +1,6 @@
24 -Only in work/org/json/simple: AUTHORS.txt
25 -diff -ur /var/tmp/portage/dev-java/json-simple-20080420/work/json_simple/src/org/json/simple/ItemList.java work/org/json/simple/ItemList.java
26 ---- /var/tmp/portage/dev-java/json-simple-20080420/work/json_simple/src/org/json/simple/ItemList.java 2006-04-16 04:04:26.000000000 +0300
27 -+++ work/org/json/simple/ItemList.java 2007-06-04 17:43:56.000000000 +0300
28 -@@ -1,5 +1,5 @@
29 - /*
30 -- * $Id: extra-constructors-from-azureus.patch,v 1.1 2008/04/20 14:33:15 betelgeuse Exp $
31 -+ * $Id: extra-constructors-from-azureus.patch,v 1.1 2008/04/20 14:33:15 betelgeuse Exp $
32 - * Created on 2006-3-24
33 - */
34 - package org.json.simple;
35 diff -ur /var/tmp/portage/dev-java/json-simple-20080420/work/json_simple/src/org/json/simple/JSONArray.java work/org/json/simple/JSONArray.java
36 --- /var/tmp/portage/dev-java/json-simple-20080420/work/json_simple/src/org/json/simple/JSONArray.java 2006-04-16 04:04:24.000000000 +0300
37 +++ work/org/json/simple/JSONArray.java 2007-06-04 17:43:56.000000000 +0300
38 -@@ -1,10 +1,11 @@
39 - /*
40 -- * $Id: extra-constructors-from-azureus.patch,v 1.1 2008/04/20 14:33:15 betelgeuse Exp $
41 -+ * $Id: extra-constructors-from-azureus.patch,v 1.1 2008/04/20 14:33:15 betelgeuse Exp $
42 - * Created on 2006-4-10
43 - */
44 - package org.json.simple;
45 -
46 - import java.util.ArrayList;
47 -+import java.util.Collection;
48 - import java.util.Iterator;
49 -
50 -
51 @@ -12,6 +13,18 @@
52 * @author FangYidong<fangyidong@×××××××××.cn>
53 */
54 @@ -33,7 +9,7 @@
55 + super();
56 + }
57 +
58 -+ public JSONArray(Collection arg0) {
59 ++ public JSONArray(java.util.Collection arg0) {
60 + super(arg0);
61 + }
62 +
63 @@ -47,13 +23,6 @@
64 diff -ur /var/tmp/portage/dev-java/json-simple-20080420/work/json_simple/src/org/json/simple/JSONObject.java work/org/json/simple/JSONObject.java
65 --- /var/tmp/portage/dev-java/json-simple-20080420/work/json_simple/src/org/json/simple/JSONObject.java 2006-04-16 11:26:38.000000000 +0300
66 +++ work/org/json/simple/JSONObject.java 2007-06-04 17:43:56.000000000 +0300
67 -@@ -1,5 +1,5 @@
68 - /*
69 -- * $Id: extra-constructors-from-azureus.patch,v 1.1 2008/04/20 14:33:15 betelgeuse Exp $
70 -+ * $Id: extra-constructors-from-azureus.patch,v 1.1 2008/04/20 14:33:15 betelgeuse Exp $
71 - * Created on 2006-4-10
72 - */
73 - package org.json.simple;
74 @@ -13,6 +13,22 @@
75 */
76 public class JSONObject extends HashMap{
77 @@ -77,45 +46,3 @@
78 public String toString(){
79 ItemList list=new ItemList();
80 Iterator iter=entrySet().iterator();
81 -diff -ur /var/tmp/portage/dev-java/json-simple-20080420/work/json_simple/src/org/json/simple/JSONValue.java work/org/json/simple/JSONValue.java
82 ---- /var/tmp/portage/dev-java/json-simple-20080420/work/json_simple/src/org/json/simple/JSONValue.java 2006-04-16 04:04:42.000000000 +0300
83 -+++ work/org/json/simple/JSONValue.java 2007-06-04 17:43:56.000000000 +0300
84 -@@ -1,5 +1,5 @@
85 - /*
86 -- * $Id: extra-constructors-from-azureus.patch,v 1.1 2008/04/20 14:33:15 betelgeuse Exp $
87 -+ * $Id: extra-constructors-from-azureus.patch,v 1.1 2008/04/20 14:33:15 betelgeuse Exp $
88 - * Created on 2006-4-15
89 - */
90 - package org.json.simple;
91 -Only in work/org/json/simple: LICENSE.txt
92 -diff -ur /var/tmp/portage/dev-java/json-simple-20080420/work/json_simple/src/org/json/simple/parser/JSONParser.java work/org/json/simple/parser/JSONParser.java
93 ---- /var/tmp/portage/dev-java/json-simple-20080420/work/json_simple/src/org/json/simple/parser/JSONParser.java 2006-04-16 04:04:44.000000000 +0300
94 -+++ work/org/json/simple/parser/JSONParser.java 2007-06-04 17:43:56.000000000 +0300
95 -@@ -1,5 +1,5 @@
96 - /*
97 -- * $Id: extra-constructors-from-azureus.patch,v 1.1 2008/04/20 14:33:15 betelgeuse Exp $
98 -+ * $Id: extra-constructors-from-azureus.patch,v 1.1 2008/04/20 14:33:15 betelgeuse Exp $
99 - * Created on 2006-4-15
100 - */
101 - package org.json.simple.parser;
102 -diff -ur /var/tmp/portage/dev-java/json-simple-20080420/work/json_simple/src/org/json/simple/parser/Yytoken.java work/org/json/simple/parser/Yytoken.java
103 ---- /var/tmp/portage/dev-java/json-simple-20080420/work/json_simple/src/org/json/simple/parser/Yytoken.java 2006-04-16 04:04:44.000000000 +0300
104 -+++ work/org/json/simple/parser/Yytoken.java 2007-06-04 17:43:56.000000000 +0300
105 -@@ -1,5 +1,5 @@
106 - /*
107 -- * $Id: extra-constructors-from-azureus.patch,v 1.1 2008/04/20 14:33:15 betelgeuse Exp $
108 -+ * $Id: extra-constructors-from-azureus.patch,v 1.1 2008/04/20 14:33:15 betelgeuse Exp $
109 - * Created on 2006-4-15
110 - */
111 - package org.json.simple.parser;
112 -Only in work/org/json/simple: README.txt
113 -diff -ur /var/tmp/portage/dev-java/json-simple-20080420/work/json_simple/src/org/json/simple/Test.java work/org/json/simple/Test.java
114 ---- /var/tmp/portage/dev-java/json-simple-20080420/work/json_simple/src/org/json/simple/Test.java 2006-04-16 13:56:20.000000000 +0300
115 -+++ work/org/json/simple/Test.java 2007-06-04 17:43:56.000000000 +0300
116 -@@ -1,5 +1,5 @@
117 - /*
118 -- * $Id: extra-constructors-from-azureus.patch,v 1.1 2008/04/20 14:33:15 betelgeuse Exp $
119 -+ * $Id: extra-constructors-from-azureus.patch,v 1.1 2008/04/20 14:33:15 betelgeuse Exp $
120 - * Created on 2006-4-15
121 - */
122 - package org.json.simple;
123
124
125
126 --
127 gentoo-commits@l.g.o mailing list