Package init

This commit is contained in:
lyn1001 2020-08-12 20:02:04 +08:00
parent 5b016ffe20
commit e8e3ef3567
4 changed files with 74 additions and 0 deletions

View File

@ -0,0 +1,18 @@
diff -uNr json-simple-1.1.1.ORIG/src/test/java/org/json/simple/Test.java json-simple-1.1.1/src/test/java/org/json/simple/Test.java
--- json-simple-1.1.1.ORIG/src/test/java/org/json/simple/Test.java 2014-07-22 09:55:47.058000000 +0000
+++ json-simple-1.1.1/src/test/java/org/json/simple/Test.java 2014-07-22 14:17:16.942000000 +0000
@@ -294,7 +294,7 @@
pe.printStackTrace();
}
}
-
+ /*
public void testEncode() throws Exception{
System.out.println("=======encode=======");
@@ -388,4 +388,5 @@
System.out.println(jsonString);
assertEquals("[{\"k11\":\"v11\",\"k12\":\"v12\",\"k13\":\"v13\",\"k14\":{\"k31\":\"v3\",\"k32\":123.45,\"k33\":false,\"k34\":null,\"k35\":[\"vvv\",\"1.23456789123456789\",true,null]}},{\"k22\":\"v22\",\"k21\":\"v21\",\"k23\":\"v23\"}]",jsonString);
}
+ */
}

51
json_simple.spec Normal file
View File

@ -0,0 +1,51 @@
Name: json_simple
Version: 1.1.1
Release: 1
Summary: Simple Java toolkit for JSON
License: ASL 2.0
URL: http://code.google.com/p/json-simple/
BuildArch: noarch
Source0: https://github.com/fangyidong/json-simple/archive/tag_release_1_1_1.tar.gz
Patch0: json-simple-hash-java-1.8.patch
BuildRequires: maven-local mvn(junit:junit) mvn(org.apache.felix:maven-bundle-plugin)
%description
JSON.simple is a simple Java toolkit for JSON. You can use JSON.simple
to encode or decode JSON text.
* Full compliance with JSON specification (RFC4627) and reliable
* Provides multiple functionalities such as encode, decode/parse
and escape JSON text while keeping the library lightweight
* Flexible, simple and easy to use by reusing Map and List interfaces
* Supports streaming output of JSON text
* Stoppable SAX-like interface for streaming input of JSON text
* Heap based parser
* High performance (see performance testing)
* No dependency on external libraries
* Both of the source code and the binary are JDK1.2 compatible
%package javadoc
Summary: API documentation for %{name}
%description javadoc
This package contains %{summary}.
%prep
%setup -q -n json-simple-tag_release_1_1_1
find . -name '*.jar' -exec rm -f '{}' \;
find . -type f -exec %{__sed} -i 's/\r//' {} \;
%patch0 -p1
%mvn_file : %{name}
%build
%mvn_build
%install
%mvn_install
%files -f .mfiles
%doc AUTHORS.txt ChangeLog.txt LICENSE.txt README.txt
%files javadoc -f .mfiles-javadoc
%doc LICENSE.txt
%changelog
* Mon Aug 3 2020 yanan li <liyanan032@huawei.com> - 1.1.1-1
- Package init

5
json_simple.yaml Normal file
View File

@ -0,0 +1,5 @@
git_url: https://github.com/fangyidong/json-simple.git
version_control: github
src_repo: fangyidong/json-simple
tag_prefix: "tag_release_"
seperator: "_"

BIN
tag_release_1_1_1.tar.gz Normal file

Binary file not shown.