public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-java/json-simple/files/
@ 2016-08-08 12:37 James Le Cuirot
  0 siblings, 0 replies; 2+ messages in thread
From: James Le Cuirot @ 2016-08-08 12:37 UTC (permalink / raw
  To: gentoo-commits

commit:     6c2017b332d278e2d47ee68beddba4d88f794d39
Author:     Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Wed Aug  3 19:01:49 2016 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Fri Aug  5 16:37:48 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c2017b3

dev-java/json-simple: remove unused file

 dev-java/json-simple/files/build.xml | 49 ------------------------------------
 1 file changed, 49 deletions(-)

diff --git a/dev-java/json-simple/files/build.xml b/dev-java/json-simple/files/build.xml
deleted file mode 100644
index 9157aa4..0000000
--- a/dev-java/json-simple/files/build.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<project name="TimingFramework" default="dist" basedir=".">
-    <description>
-        simple example build file
-    </description>
-  <!-- set global properties for this build -->
-  <property name="src" location="src"/>
-  <property name="build" location="build"/>
-  <property name="dist"  location="dist"/>
-  <property name="javadoc" location="javadoc"/>
-
-  <target name="init">
-    <!-- Create the time stamp -->
-    <tstamp/>
-    <!-- Create the build directory structure used by compile -->
-    <mkdir dir="${build}"/>
-  </target>
-
-  <target name="compile" depends="init"
-        description="compile the source " >
-    <!-- Compile the java code from ${src} into ${build} -->
-    <javac srcdir="${src}" destdir="${build}"/>
-  </target>
-
-  <target name="dist" depends="compile"
-        description="generate the distribution" >
-    <!-- Create the distribution directory -->
-    <mkdir dir="${dist}/lib"/>
-
-    <!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
-    <jar jarfile="${dist}/lib/json-simple.jar" basedir="${build}"/>
-  </target>
-
-  <target name="clean"
-        description="clean up" >
-    <!-- Delete the ${build} and ${dist} directory trees -->
-    <delete dir="${build}"/>
-    <delete dir="${dist}"/>
-    <delete dir="${javadoc}"/>
-  </target>
-  
-  <target name="javadoc" description="Produce package javadoc">
-	<javadoc destdir="${javadoc}" >
-		<fileset dir="src" defaultexcludes="yes">
-      			<include name="org/json/**"/>
-    		</fileset>
-	</javadoc>
-  </target>
-	  
-</project>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-java/json-simple/files/
@ 2018-05-13  9:39 James Le Cuirot
  0 siblings, 0 replies; 2+ messages in thread
From: James Le Cuirot @ 2018-05-13  9:39 UTC (permalink / raw
  To: gentoo-commits

commit:     55cfa83b79d42d2801480a3bbcacb7ce720adbfc
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sat May 12 15:45:10 2018 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sun May 13 09:38:15 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55cfa83b

dev-java/json-simple: remove unused patch(es)

Closes: https://github.com/gentoo/gentoo/pull/8377

 ...imple-1.1-extra-constructors-from-azureus.patch | 48 ----------------------
 1 file changed, 48 deletions(-)

diff --git a/dev-java/json-simple/files/json-simple-1.1-extra-constructors-from-azureus.patch b/dev-java/json-simple/files/json-simple-1.1-extra-constructors-from-azureus.patch
deleted file mode 100644
index 5b45a973e41..00000000000
--- a/dev-java/json-simple/files/json-simple-1.1-extra-constructors-from-azureus.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-diff -Nur json_simple-1.1-all/src/org/json/simple/JSONArray.java json_simple-1.1-all_patched//src/org/json/simple/JSONArray.java
---- json_simple-1.1-all/src/org/json/simple/JSONArray.java	2009-02-01 12:45:34.000000000 +0200
-+++ json_simple-1.1-all_patched//src/org/json/simple/JSONArray.java	2011-09-25 11:23:37.398818358 +0300
-@@ -19,6 +19,18 @@
- public class JSONArray extends ArrayList implements List, JSONAware, JSONStreamAware {
- 	private static final long serialVersionUID = 3957988303675231981L;
- 
-+	public JSONArray() {
-+		super();
-+	}
-+
-+	public JSONArray(java.util.Collection arg0) {
-+		super(arg0);
-+	}
-+
-+	public JSONArray(int initialCapacity) {
-+		super(initialCapacity);
-+	}
-+
-     /**
-      * Encode a list into JSON text and write it to out. 
-      * If this list is also a JSONStreamAware or a JSONAware, JSONStreamAware and JSONAware specific behaviours will be ignored at this top level.
-diff -Nur json_simple-1.1-all/src/org/json/simple/JSONObject.java json_simple-1.1-all_patched//src/org/json/simple/JSONObject.java
---- json_simple-1.1-all/src/org/json/simple/JSONObject.java	2009-02-01 12:45:34.000000000 +0200
-+++ json_simple-1.1-all_patched//src/org/json/simple/JSONObject.java	2011-09-25 11:24:34.815103065 +0300
-@@ -18,6 +18,22 @@
- public class JSONObject extends HashMap implements Map, JSONAware, JSONStreamAware{
- 	private static final long serialVersionUID = -503443796854799292L;
- 
-+	public JSONObject() {
-+		super();
-+	}
-+
-+	public JSONObject(int initialCapacity, float loadFactor) {
-+		super(initialCapacity, loadFactor);
-+	}
-+
-+	public JSONObject(int initialCapacity) {
-+		super(initialCapacity);
-+	}
-+
-+	public JSONObject(Map arg0) {
-+		super(arg0);
-+	}
-+
-     /**
-      * Encode a map into JSON text and write it to out.
-      * If this map is also a JSONAware or JSONStreamAware, JSONAware or JSONStreamAware specific behaviours will be ignored at this top level.


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

end of thread, other threads:[~2018-05-13  9:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-13  9:39 [gentoo-commits] repo/gentoo:master commit in: dev-java/json-simple/files/ James Le Cuirot
  -- strict thread matches above, loose matches on Subject: below --
2016-08-08 12:37 James Le Cuirot

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