diff --git a/debian/changelog b/debian/changelog index 20fa033..559224f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +hdf5 (1.10.4+repack-ok4) yangtze; urgency=medium + + * Fix HTML5 tags. + + -- zhouganqing Mon, 29 Jan 2024 11:10:24 +0800 + hdf5 (1.10.4+repack-ok3) yangtze; urgency=medium * Update symbols files for rv64g. diff --git a/debian/patches/0009-2-Fix-HTML5-tags.patch b/debian/patches/0009-2-Fix-HTML5-tags.patch new file mode 100644 index 0000000..3c91a5b --- /dev/null +++ b/debian/patches/0009-2-Fix-HTML5-tags.patch @@ -0,0 +1,75 @@ +From: =?utf-8?b?5ZGo5rem5riF?= +Date: Mon, 29 Jan 2024 06:19:16 +0000 +Subject: =?utf-8?q?!2_Fix_HTML5_tags_Merge_pull_request_!2_from_=E5=91=A8?= + =?utf-8?q?=E6=B7=A6=E6=B8=85/openkylin/yangtze?= + +--- + java/src/hdf/hdf5lib/H5.java | 12 +++++------- + java/src/hdf/overview.html | 3 +-- + 2 files changed, 6 insertions(+), 9 deletions(-) + +diff --git a/java/src/hdf/hdf5lib/H5.java b/java/src/hdf/hdf5lib/H5.java +index d8df814..02c92a4 100644 +--- a/java/src/hdf/hdf5lib/H5.java ++++ b/java/src/hdf/hdf5lib/H5.java +@@ -70,8 +70,7 @@ import hdf.hdf5lib.structs.H5O_info_t; + * In general, arguments to the HDF Java API are straightforward translations from the 'C' API described in the HDF + * Reference Manual. + * +- *
+- * ++ *
+ * + * + * +@@ -107,8 +106,7 @@ import hdf.hdf5lib.structs.H5O_info_t; + * + * + *
HDF-5 C types to Java types
HDF-5Special -- see HDFArray
+- *
+- *
General Rules for Passing Arguments and Results
++ * General Rules for Passing Arguments and Results + *

+ * In general, arguments passed IN to Java are the analogous basic types, as above. The exception is for arrays, + * which are discussed below. +@@ -143,7 +141,7 @@ import hdf.hdf5lib.structs.H5O_info_t; + *

+ * All the routines where this convention is used will have specific documentation of the details, given below. + *

+- * Arrays ++ * Arrays + *

+ * HDF5 needs to read and write multi-dimensional arrays of any number type (and records). The HDF5 API describes the + * layout of the source and destination, and the data for the array passed as a block of bytes, for instance, +@@ -176,7 +174,7 @@ import hdf.hdf5lib.structs.H5O_info_t; + * and the parameter data can be any multi-dimensional array of numbers, such as float[][], or int[][][], or + * Double[][]. + *

+- * HDF-5 Constants ++ * HDF-5 Constants + *

+ * The HDF-5 API defines a set of constants and enumerated values. Most of these values are available to Java programs + * via the class HDF5Constants. For example, the parameters for +@@ -196,7 +194,7 @@ import hdf.hdf5lib.structs.H5O_info_t; + * The Java application uses both types of constants the same way, the only difference is that the + * HDF5CDataTypes may have different values on different platforms. + *

+- * Error handling and Exceptions ++ * Error handling and Exceptions + *

+ * The HDF5 error API (H5E) manages the behavior of the error stack in the HDF-5 library. This API is omitted from the + * JHI5. Errors are converted into Java exceptions. This is totally different from the C interface, but is very natural +diff --git a/java/src/hdf/overview.html b/java/src/hdf/overview.html +index edb1b76..e3a032b 100644 +--- a/java/src/hdf/overview.html ++++ b/java/src/hdf/overview.html +@@ -90,8 +90,7 @@ like this: + The H5 class automatically loads the native method implementations + and the HDF5 library. + +-

+-To Obtain

++

To Obtain

+ The JHI5 is included with the HDF5 library. + + diff --git a/debian/patches/series b/debian/patches/series index faa6493..4d651ee 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -6,3 +6,4 @@ fix-unaligned-accesses.patch reproducibility.patch fix-junit-script.patch drop-deprecated-mpi-1-api.patch +0009-2-Fix-HTML5-tags.patch