@img/sharp-libvips-dev 1.1.0-rc5 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/include/glib-2.0/gio/gdbusnameowning.h +12 -10
- package/include/glib-2.0/gio/gsettings.h +35 -31
- package/include/glib-2.0/gobject/gsignal.h +33 -8
- package/include/libxml2/libxml/HTMLparser.h +33 -30
- package/include/libxml2/libxml/HTMLtree.h +1 -0
- package/include/libxml2/libxml/SAX.h +2 -186
- package/include/libxml2/libxml/SAX2.h +2 -3
- package/include/libxml2/libxml/catalog.h +1 -0
- package/include/libxml2/libxml/debugXML.h +0 -138
- package/include/libxml2/libxml/encoding.h +124 -61
- package/include/libxml2/libxml/entities.h +0 -19
- package/include/libxml2/libxml/globals.h +0 -16
- package/include/libxml2/libxml/nanoftp.h +3 -173
- package/include/libxml2/libxml/parser.h +472 -231
- package/include/libxml2/libxml/parserInternals.h +21 -101
- package/include/libxml2/libxml/relaxng.h +7 -2
- package/include/libxml2/libxml/threads.h +0 -6
- package/include/libxml2/libxml/tree.h +29 -85
- package/include/libxml2/libxml/valid.h +20 -12
- package/include/libxml2/libxml/xinclude.h +5 -0
- package/include/libxml2/libxml/xlink.h +4 -0
- package/include/libxml2/libxml/xmlIO.h +13 -32
- package/include/libxml2/libxml/xmlautomata.h +19 -2
- package/include/libxml2/libxml/xmlerror.h +17 -18
- package/include/libxml2/libxml/xmlexports.h +6 -56
- package/include/libxml2/libxml/xmlmemory.h +19 -19
- package/include/libxml2/libxml/xmlmodule.h +4 -0
- package/include/libxml2/libxml/xmlreader.h +11 -3
- package/include/libxml2/libxml/xmlregexp.h +7 -106
- package/include/libxml2/libxml/xmlsave.h +11 -2
- package/include/libxml2/libxml/xmlschemas.h +10 -5
- package/include/libxml2/libxml/xmlunicode.h +3 -354
- package/include/libxml2/libxml/xmlversion.h +18 -33
- package/include/libxml2/libxml/xpath.h +5 -15
- package/include/libxml2/libxml/xpathInternals.h +9 -3
- package/include/libxml2/libxml/xpointer.h +1 -91
- package/package.json +1 -1
- package/versions.json +2 -2
|
@@ -15,21 +15,21 @@
|
|
|
15
15
|
*
|
|
16
16
|
* the version string like "1.2.3"
|
|
17
17
|
*/
|
|
18
|
-
#define LIBXML_DOTTED_VERSION "2.
|
|
18
|
+
#define LIBXML_DOTTED_VERSION "2.14.1"
|
|
19
19
|
|
|
20
20
|
/**
|
|
21
21
|
* LIBXML_VERSION:
|
|
22
22
|
*
|
|
23
23
|
* the version number: 1.2.3 value is 10203
|
|
24
24
|
*/
|
|
25
|
-
#define LIBXML_VERSION
|
|
25
|
+
#define LIBXML_VERSION 21401
|
|
26
26
|
|
|
27
27
|
/**
|
|
28
28
|
* LIBXML_VERSION_STRING:
|
|
29
29
|
*
|
|
30
30
|
* the version number string, 1.2.3 value is "10203"
|
|
31
31
|
*/
|
|
32
|
-
#define LIBXML_VERSION_STRING "
|
|
32
|
+
#define LIBXML_VERSION_STRING "21401"
|
|
33
33
|
|
|
34
34
|
/**
|
|
35
35
|
* LIBXML_VERSION_EXTRA:
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
* Macro to check that the libxml version in use is compatible with
|
|
45
45
|
* the version the software has been compiled against
|
|
46
46
|
*/
|
|
47
|
-
#define LIBXML_TEST_VERSION xmlCheckVersion(
|
|
47
|
+
#define LIBXML_TEST_VERSION xmlCheckVersion(21401);
|
|
48
48
|
|
|
49
49
|
/**
|
|
50
50
|
* LIBXML_THREAD_ENABLED:
|
|
@@ -67,11 +67,9 @@
|
|
|
67
67
|
/**
|
|
68
68
|
* LIBXML_TREE_ENABLED:
|
|
69
69
|
*
|
|
70
|
-
*
|
|
70
|
+
* Always enabled since 2.14.0
|
|
71
71
|
*/
|
|
72
|
-
#if 0
|
|
73
72
|
#define LIBXML_TREE_ENABLED
|
|
74
|
-
#endif
|
|
75
73
|
|
|
76
74
|
/**
|
|
77
75
|
* LIBXML_OUTPUT_ENABLED:
|
|
@@ -127,15 +125,6 @@
|
|
|
127
125
|
#define LIBXML_SAX1_ENABLED
|
|
128
126
|
#endif
|
|
129
127
|
|
|
130
|
-
/**
|
|
131
|
-
* LIBXML_FTP_ENABLED:
|
|
132
|
-
*
|
|
133
|
-
* Whether the FTP support is configured in
|
|
134
|
-
*/
|
|
135
|
-
#if 0
|
|
136
|
-
#define LIBXML_FTP_ENABLED
|
|
137
|
-
#endif
|
|
138
|
-
|
|
139
128
|
/**
|
|
140
129
|
* LIBXML_HTTP_ENABLED:
|
|
141
130
|
*
|
|
@@ -166,11 +155,9 @@
|
|
|
166
155
|
/**
|
|
167
156
|
* LIBXML_LEGACY_ENABLED:
|
|
168
157
|
*
|
|
169
|
-
*
|
|
158
|
+
* Removed in 2.14
|
|
170
159
|
*/
|
|
171
|
-
#
|
|
172
|
-
#define LIBXML_LEGACY_ENABLED
|
|
173
|
-
#endif
|
|
160
|
+
#undef LIBXML_LEGACY_ENABLED
|
|
174
161
|
|
|
175
162
|
/**
|
|
176
163
|
* LIBXML_C14N_ENABLED:
|
|
@@ -208,15 +195,6 @@
|
|
|
208
195
|
#define LIBXML_XPTR_ENABLED
|
|
209
196
|
#endif
|
|
210
197
|
|
|
211
|
-
/**
|
|
212
|
-
* LIBXML_XPTR_LOCS_ENABLED:
|
|
213
|
-
*
|
|
214
|
-
* Whether support for XPointer locations is configured in
|
|
215
|
-
*/
|
|
216
|
-
#if 0
|
|
217
|
-
#define LIBXML_XPTR_LOCS_ENABLED
|
|
218
|
-
#endif
|
|
219
|
-
|
|
220
198
|
/**
|
|
221
199
|
* LIBXML_XINCLUDE_ENABLED:
|
|
222
200
|
*
|
|
@@ -265,11 +243,9 @@
|
|
|
265
243
|
/**
|
|
266
244
|
* LIBXML_UNICODE_ENABLED:
|
|
267
245
|
*
|
|
268
|
-
*
|
|
246
|
+
* Removed in 2.14
|
|
269
247
|
*/
|
|
270
|
-
#
|
|
271
|
-
#define LIBXML_UNICODE_ENABLED
|
|
272
|
-
#endif
|
|
248
|
+
#undef LIBXML_UNICODE_ENABLED
|
|
273
249
|
|
|
274
250
|
/**
|
|
275
251
|
* LIBXML_REGEXP_ENABLED:
|
|
@@ -289,6 +265,15 @@
|
|
|
289
265
|
#define LIBXML_AUTOMATA_ENABLED
|
|
290
266
|
#endif
|
|
291
267
|
|
|
268
|
+
/**
|
|
269
|
+
* LIBXML_RELAXNG_ENABLED:
|
|
270
|
+
*
|
|
271
|
+
* Whether the RelaxNG validation interfaces are compiled in
|
|
272
|
+
*/
|
|
273
|
+
#if 0
|
|
274
|
+
#define LIBXML_RELAXNG_ENABLED
|
|
275
|
+
#endif
|
|
276
|
+
|
|
292
277
|
/**
|
|
293
278
|
* LIBXML_SCHEMAS_ENABLED:
|
|
294
279
|
*
|
|
@@ -26,15 +26,10 @@
|
|
|
26
26
|
#include <libxml/xmlerror.h>
|
|
27
27
|
#include <libxml/tree.h>
|
|
28
28
|
#include <libxml/hash.h>
|
|
29
|
-
#endif /* LIBXML_XPATH_ENABLED */
|
|
30
29
|
|
|
31
|
-
#if defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
|
|
32
30
|
#ifdef __cplusplus
|
|
33
31
|
extern "C" {
|
|
34
32
|
#endif
|
|
35
|
-
#endif /* LIBXML_XPATH_ENABLED or LIBXML_SCHEMAS_ENABLED */
|
|
36
|
-
|
|
37
|
-
#ifdef LIBXML_XPATH_ENABLED
|
|
38
33
|
|
|
39
34
|
typedef struct _xmlXPathContext xmlXPathContext;
|
|
40
35
|
typedef xmlXPathContext *xmlXPathContextPtr;
|
|
@@ -104,22 +99,15 @@ typedef enum {
|
|
|
104
99
|
XPATH_BOOLEAN = 2,
|
|
105
100
|
XPATH_NUMBER = 3,
|
|
106
101
|
XPATH_STRING = 4,
|
|
107
|
-
#ifdef LIBXML_XPTR_LOCS_ENABLED
|
|
108
|
-
XPATH_POINT = 5,
|
|
109
|
-
XPATH_RANGE = 6,
|
|
110
|
-
XPATH_LOCATIONSET = 7,
|
|
111
|
-
#endif
|
|
112
102
|
XPATH_USERS = 8,
|
|
113
103
|
XPATH_XSLT_TREE = 9 /* An XSLT value tree, non modifiable */
|
|
114
104
|
} xmlXPathObjectType;
|
|
115
105
|
|
|
116
|
-
#ifndef LIBXML_XPTR_LOCS_ENABLED
|
|
117
106
|
/** DOC_DISABLE */
|
|
118
107
|
#define XPATH_POINT 5
|
|
119
108
|
#define XPATH_RANGE 6
|
|
120
109
|
#define XPATH_LOCATIONSET 7
|
|
121
110
|
/** DOC_ENABLE */
|
|
122
|
-
#endif
|
|
123
111
|
|
|
124
112
|
typedef struct _xmlXPathObject xmlXPathObject;
|
|
125
113
|
typedef xmlXPathObject *xmlXPathObjectPtr;
|
|
@@ -413,8 +401,11 @@ struct _xmlXPathParserContext {
|
|
|
413
401
|
* Objects and Nodesets handling
|
|
414
402
|
*/
|
|
415
403
|
|
|
404
|
+
XML_DEPRECATED
|
|
416
405
|
XMLPUBVAR double xmlXPathNAN;
|
|
406
|
+
XML_DEPRECATED
|
|
417
407
|
XMLPUBVAR double xmlXPathPINF;
|
|
408
|
+
XML_DEPRECATED
|
|
418
409
|
XMLPUBVAR double xmlXPathNINF;
|
|
419
410
|
|
|
420
411
|
/* These macros may later turn into functions */
|
|
@@ -561,8 +552,7 @@ XMLPUBFUN int
|
|
|
561
552
|
xmlXPathContextPtr ctxt);
|
|
562
553
|
XMLPUBFUN void
|
|
563
554
|
xmlXPathFreeCompExpr (xmlXPathCompExprPtr comp);
|
|
564
|
-
|
|
565
|
-
#if defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
|
|
555
|
+
|
|
566
556
|
XML_DEPRECATED
|
|
567
557
|
XMLPUBFUN void
|
|
568
558
|
xmlXPathInit (void);
|
|
@@ -575,5 +565,5 @@ XMLPUBFUN int
|
|
|
575
565
|
}
|
|
576
566
|
#endif
|
|
577
567
|
|
|
578
|
-
#endif /* LIBXML_XPATH_ENABLED
|
|
568
|
+
#endif /* LIBXML_XPATH_ENABLED */
|
|
579
569
|
#endif /* ! __XML_XPATH_H__ */
|
|
@@ -22,6 +22,12 @@
|
|
|
22
22
|
extern "C" {
|
|
23
23
|
#endif
|
|
24
24
|
|
|
25
|
+
/*
|
|
26
|
+
* Backward compatibility
|
|
27
|
+
*/
|
|
28
|
+
#define valuePush xmlXPathValuePush
|
|
29
|
+
#define valuePop xmlXPathValuePop
|
|
30
|
+
|
|
25
31
|
/************************************************************************
|
|
26
32
|
* *
|
|
27
33
|
* Helpers *
|
|
@@ -478,11 +484,10 @@ XMLPUBFUN xmlXPathParserContextPtr
|
|
|
478
484
|
XMLPUBFUN void
|
|
479
485
|
xmlXPathFreeParserContext (xmlXPathParserContextPtr ctxt);
|
|
480
486
|
|
|
481
|
-
/* TODO: remap to xmlXPathValuePop and Push. */
|
|
482
487
|
XMLPUBFUN xmlXPathObjectPtr
|
|
483
|
-
|
|
488
|
+
xmlXPathValuePop (xmlXPathParserContextPtr ctxt);
|
|
484
489
|
XMLPUBFUN int
|
|
485
|
-
|
|
490
|
+
xmlXPathValuePush (xmlXPathParserContextPtr ctxt,
|
|
486
491
|
xmlXPathObjectPtr value);
|
|
487
492
|
|
|
488
493
|
XMLPUBFUN xmlXPathObjectPtr
|
|
@@ -516,6 +521,7 @@ XMLPUBFUN void
|
|
|
516
521
|
|
|
517
522
|
XMLPUBFUN void
|
|
518
523
|
xmlXPathRoot (xmlXPathParserContextPtr ctxt);
|
|
524
|
+
XML_DEPRECATED
|
|
519
525
|
XMLPUBFUN void
|
|
520
526
|
xmlXPathEvalExpr (xmlXPathParserContextPtr ctxt);
|
|
521
527
|
XMLPUBFUN xmlChar *
|
|
@@ -28,88 +28,10 @@
|
|
|
28
28
|
extern "C" {
|
|
29
29
|
#endif
|
|
30
30
|
|
|
31
|
-
#if defined(LIBXML_XPTR_LOCS_ENABLED)
|
|
32
|
-
/*
|
|
33
|
-
* A Location Set
|
|
34
|
-
*/
|
|
35
|
-
typedef struct _xmlLocationSet xmlLocationSet;
|
|
36
|
-
typedef xmlLocationSet *xmlLocationSetPtr;
|
|
37
|
-
struct _xmlLocationSet {
|
|
38
|
-
int locNr; /* number of locations in the set */
|
|
39
|
-
int locMax; /* size of the array as allocated */
|
|
40
|
-
xmlXPathObjectPtr *locTab;/* array of locations */
|
|
41
|
-
};
|
|
42
|
-
|
|
43
|
-
/*
|
|
44
|
-
* Handling of location sets.
|
|
45
|
-
*/
|
|
46
|
-
|
|
47
|
-
XML_DEPRECATED
|
|
48
|
-
XMLPUBFUN xmlLocationSetPtr
|
|
49
|
-
xmlXPtrLocationSetCreate (xmlXPathObjectPtr val);
|
|
50
|
-
XML_DEPRECATED
|
|
51
|
-
XMLPUBFUN void
|
|
52
|
-
xmlXPtrFreeLocationSet (xmlLocationSetPtr obj);
|
|
53
|
-
XML_DEPRECATED
|
|
54
|
-
XMLPUBFUN xmlLocationSetPtr
|
|
55
|
-
xmlXPtrLocationSetMerge (xmlLocationSetPtr val1,
|
|
56
|
-
xmlLocationSetPtr val2);
|
|
57
|
-
XML_DEPRECATED
|
|
58
|
-
XMLPUBFUN xmlXPathObjectPtr
|
|
59
|
-
xmlXPtrNewRange (xmlNodePtr start,
|
|
60
|
-
int startindex,
|
|
61
|
-
xmlNodePtr end,
|
|
62
|
-
int endindex);
|
|
63
|
-
XML_DEPRECATED
|
|
64
|
-
XMLPUBFUN xmlXPathObjectPtr
|
|
65
|
-
xmlXPtrNewRangePoints (xmlXPathObjectPtr start,
|
|
66
|
-
xmlXPathObjectPtr end);
|
|
67
|
-
XML_DEPRECATED
|
|
68
|
-
XMLPUBFUN xmlXPathObjectPtr
|
|
69
|
-
xmlXPtrNewRangeNodePoint (xmlNodePtr start,
|
|
70
|
-
xmlXPathObjectPtr end);
|
|
71
|
-
XML_DEPRECATED
|
|
72
|
-
XMLPUBFUN xmlXPathObjectPtr
|
|
73
|
-
xmlXPtrNewRangePointNode (xmlXPathObjectPtr start,
|
|
74
|
-
xmlNodePtr end);
|
|
75
|
-
XML_DEPRECATED
|
|
76
|
-
XMLPUBFUN xmlXPathObjectPtr
|
|
77
|
-
xmlXPtrNewRangeNodes (xmlNodePtr start,
|
|
78
|
-
xmlNodePtr end);
|
|
79
|
-
XML_DEPRECATED
|
|
80
|
-
XMLPUBFUN xmlXPathObjectPtr
|
|
81
|
-
xmlXPtrNewLocationSetNodes (xmlNodePtr start,
|
|
82
|
-
xmlNodePtr end);
|
|
83
|
-
XML_DEPRECATED
|
|
84
|
-
XMLPUBFUN xmlXPathObjectPtr
|
|
85
|
-
xmlXPtrNewLocationSetNodeSet(xmlNodeSetPtr set);
|
|
86
|
-
XML_DEPRECATED
|
|
87
|
-
XMLPUBFUN xmlXPathObjectPtr
|
|
88
|
-
xmlXPtrNewRangeNodeObject (xmlNodePtr start,
|
|
89
|
-
xmlXPathObjectPtr end);
|
|
90
|
-
XML_DEPRECATED
|
|
91
|
-
XMLPUBFUN xmlXPathObjectPtr
|
|
92
|
-
xmlXPtrNewCollapsedRange (xmlNodePtr start);
|
|
93
|
-
XML_DEPRECATED
|
|
94
|
-
XMLPUBFUN void
|
|
95
|
-
xmlXPtrLocationSetAdd (xmlLocationSetPtr cur,
|
|
96
|
-
xmlXPathObjectPtr val);
|
|
97
|
-
XML_DEPRECATED
|
|
98
|
-
XMLPUBFUN xmlXPathObjectPtr
|
|
99
|
-
xmlXPtrWrapLocationSet (xmlLocationSetPtr val);
|
|
100
|
-
XML_DEPRECATED
|
|
101
|
-
XMLPUBFUN void
|
|
102
|
-
xmlXPtrLocationSetDel (xmlLocationSetPtr cur,
|
|
103
|
-
xmlXPathObjectPtr val);
|
|
104
|
-
XML_DEPRECATED
|
|
105
|
-
XMLPUBFUN void
|
|
106
|
-
xmlXPtrLocationSetRemove (xmlLocationSetPtr cur,
|
|
107
|
-
int val);
|
|
108
|
-
#endif /* defined(LIBXML_XPTR_LOCS_ENABLED) */
|
|
109
|
-
|
|
110
31
|
/*
|
|
111
32
|
* Functions.
|
|
112
33
|
*/
|
|
34
|
+
XML_DEPRECATED
|
|
113
35
|
XMLPUBFUN xmlXPathContextPtr
|
|
114
36
|
xmlXPtrNewContext (xmlDocPtr doc,
|
|
115
37
|
xmlNodePtr here,
|
|
@@ -118,18 +40,6 @@ XMLPUBFUN xmlXPathObjectPtr
|
|
|
118
40
|
xmlXPtrEval (const xmlChar *str,
|
|
119
41
|
xmlXPathContextPtr ctx);
|
|
120
42
|
|
|
121
|
-
#if defined(LIBXML_XPTR_LOCS_ENABLED)
|
|
122
|
-
XML_DEPRECATED
|
|
123
|
-
XMLPUBFUN void
|
|
124
|
-
xmlXPtrRangeToFunction (xmlXPathParserContextPtr ctxt,
|
|
125
|
-
int nargs);
|
|
126
|
-
XML_DEPRECATED
|
|
127
|
-
XMLPUBFUN xmlNodePtr
|
|
128
|
-
xmlXPtrBuildNodeList (xmlXPathObjectPtr obj);
|
|
129
|
-
XML_DEPRECATED
|
|
130
|
-
XMLPUBFUN void
|
|
131
|
-
xmlXPtrEvalRangePredicate (xmlXPathParserContextPtr ctxt);
|
|
132
|
-
#endif /* defined(LIBXML_XPTR_LOCS_ENABLED) */
|
|
133
43
|
#ifdef __cplusplus
|
|
134
44
|
}
|
|
135
45
|
#endif
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@img/sharp-libvips-dev",
|
|
3
|
-
"version": "1.1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Header files and C++ sources for libvips and dependencies required when compiling sharp from source",
|
|
5
5
|
"author": "Lovell Fuller <npm@lovell.info>",
|
|
6
6
|
"homepage": "https://sharp.pixelplumbing.com",
|
package/versions.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"fontconfig": "2.16.1",
|
|
10
10
|
"freetype": "2.13.3",
|
|
11
11
|
"fribidi": "1.0.16",
|
|
12
|
-
"glib": "2.84.
|
|
12
|
+
"glib": "2.84.1",
|
|
13
13
|
"harfbuzz": "11.0.0",
|
|
14
14
|
"heif": "1.19.7",
|
|
15
15
|
"highway": "1.2.0",
|
|
@@ -25,6 +25,6 @@
|
|
|
25
25
|
"tiff": "4.7.0",
|
|
26
26
|
"vips": "8.16.1",
|
|
27
27
|
"webp": "1.5.0",
|
|
28
|
-
"xml": "2.
|
|
28
|
+
"xml": "2.14.1",
|
|
29
29
|
"zlib-ng": "2.2.4"
|
|
30
30
|
}
|