diff options
author | Tim Orling <timothy.t.orling@linux.intel.com> | 2017-05-21 15:58:28 -0700 |
---|---|---|
committer | Maxin B. John <maxin.john@intel.com> | 2017-05-29 13:53:05 +0300 |
commit | cb982821d0ca481c9e6d02af51b353dd2a930c68 (patch) | |
tree | b21b26951e8c1ab42fd057751fcade866476dd05 /recipes-core | |
parent | c76327ddf272374efee61aa9019c6d556010bef1 (diff) | |
download | meta-java-cb982821d0ca481c9e6d02af51b353dd2a930c68.tar.gz |
inetlib: cleanup and fix RSS regression
- Add SUMMARY and expand DESCRIPTION
- Move SRC_URI checksums to recommended location in recipe
- Drop PR, no longer required
- Add virtual/javac-native and classpath-initial-native
to DEPENDS for RSS
Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Signed-off-by: Maxin B. John <maxin.john@intel.com>
Diffstat (limited to 'recipes-core')
-rw-r--r-- | recipes-core/classpathx/inetlib_1.1.1.bb | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/recipes-core/classpathx/inetlib_1.1.1.bb b/recipes-core/classpathx/inetlib_1.1.1.bb index e42a650..9146c9e 100644 --- a/recipes-core/classpathx/inetlib_1.1.1.bb +++ b/recipes-core/classpathx/inetlib_1.1.1.bb | |||
@@ -1,15 +1,24 @@ | |||
1 | DESCRIPTION = "A Java library of clients for common internet protocols" | 1 | SUMMARY = "A Java library of clients for common internet protocols" |
2 | DESCRIPTION = "GNU Classpath inetlib is an extension library to provide \ | ||
3 | extra network protocol support for GNU Classpath and ClasspathX project, \ | ||
4 | but it can also used standalone to add http, imap, pop3 and smtp client \ | ||
5 | support applications. \ | ||
6 | " | ||
2 | AUTHOR = "GNU Classpath" | 7 | AUTHOR = "GNU Classpath" |
3 | HOMEPAGE = "http://gnu.org/software/classpath/inetlib.html" | 8 | HOMEPAGE = "http://gnu.org/software/classpath/inetlib.html" |
4 | LICENSE = "GPL-2.0-with-GCC-exception" | 9 | LICENSE = "GPL-2.0-with-GCC-exception" |
5 | PR = "r1" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3" | 10 | LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3" |
7 | 11 | ||
8 | SRC_URI = "http://ftp.gnu.org/gnu/classpath/${BP}.tar.gz \ | 12 | SRC_URI = "http://ftp.gnu.org/gnu/classpath/${BP}.tar.gz \ |
9 | file://datadir_java.patch \ | 13 | file://datadir_java.patch \ |
10 | file://inetlib-missing-dependency-for-util_classes.patch \ | 14 | file://inetlib-missing-dependency-for-util_classes.patch \ |
11 | " | 15 | " |
16 | SRC_URI[md5sum] = "aaa24be4bc8d172ac675be8bdfa636ee" | ||
17 | SRC_URI[sha256sum] = "1b078a39e022f86e4e2c8189b4d2789a5da414e8f1cb285587b7800b950a44de" | ||
12 | 18 | ||
19 | DEPENDS = "classpath-initial-native \ | ||
20 | virtual/javac-native \ | ||
21 | " | ||
13 | inherit java-library autotools | 22 | inherit java-library autotools |
14 | 23 | ||
15 | JPN = "libgnuinet-java" | 24 | JPN = "libgnuinet-java" |
@@ -25,8 +34,4 @@ do_compile() { | |||
25 | oe_runmake JARDIR=${datadir_java} inetlib_jar=${JARFILENAME} | 34 | oe_runmake JARDIR=${datadir_java} inetlib_jar=${JARFILENAME} |
26 | } | 35 | } |
27 | 36 | ||
28 | SRC_URI[md5sum] = "aaa24be4bc8d172ac675be8bdfa636ee" | ||
29 | SRC_URI[sha256sum] = "1b078a39e022f86e4e2c8189b4d2789a5da414e8f1cb285587b7800b950a44de" | ||
30 | |||
31 | BBCLASSEXTEND = "native" | 37 | BBCLASSEXTEND = "native" |
32 | |||