aboutsummaryrefslogtreecommitdiff
path: root/converters
diff options
context:
space:
mode:
Diffstat (limited to 'converters')
-rw-r--r--converters/libiconv/Makefile7
-rw-r--r--converters/libiconv/distinfo6
-rw-r--r--converters/libiconv/files/patch-include-iconv.h.in60
-rw-r--r--converters/libiconv/files/patch-libcharset_lib_localcharset.c6
-rw-r--r--converters/libiconv/files/patch-src__Makefile.in8
-rw-r--r--converters/libiconv/pkg-plist2
-rw-r--r--converters/osm2pgrouting/Makefile3
-rw-r--r--converters/osm2pgrouting/distinfo6
-rw-r--r--converters/py-gotenberg-client/Makefile2
-rw-r--r--converters/py-gotenberg-client/distinfo6
-rw-r--r--converters/py-svglib/Makefile12
-rw-r--r--converters/py-svglib/distinfo6
-rw-r--r--converters/simdutf/Makefile2
-rw-r--r--converters/simdutf/distinfo6
-rw-r--r--converters/simdutf/pkg-plist4
-rw-r--r--converters/yj-bruceadams/Makefile2
-rw-r--r--converters/yj/Makefile2
17 files changed, 77 insertions, 63 deletions
diff --git a/converters/libiconv/Makefile b/converters/libiconv/Makefile
index f3941134eafc..0623fd95391f 100644
--- a/converters/libiconv/Makefile
+++ b/converters/libiconv/Makefile
@@ -1,5 +1,5 @@
PORTNAME= libiconv
-PORTVERSION= 1.17
+PORTVERSION= 1.18
PORTREVISION= 1
CATEGORIES= converters devel
MASTER_SITES= GNU
@@ -12,11 +12,9 @@ LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/COPYING
USES= libtool
-USE_CSTD= gnu89
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
-GNU_CONFIGURE_MANPREFIX=${PREFIX}/share
CONFIGURE_ARGS= --enable-static \
--disable-nls \
--docdir=${DOCSDIR} \
@@ -35,4 +33,7 @@ post-patch:
@${REINPLACE_CMD} -e 's:gawk:awk:g' ${WRKSRC}/configure \
${WRKSRC}/libcharset/configure
+post-install:
+ ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lib*.so
+
.include <bsd.port.mk>
diff --git a/converters/libiconv/distinfo b/converters/libiconv/distinfo
index bfe16318e834..751c1f5e0b78 100644
--- a/converters/libiconv/distinfo
+++ b/converters/libiconv/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1655671090
-SHA256 (libiconv-1.17.tar.gz) = 8f74213b56238c85a50a5329f77e06198771e70dd9a739779f4c02f65d971313
-SIZE (libiconv-1.17.tar.gz) = 5413283
+TIMESTAMP = 1762019880
+SHA256 (libiconv-1.18.tar.gz) = 3b08f5f4f9b4eb82f151a7040bfd6fe6c6fb922efe4b1659c66ea933276965e8
+SIZE (libiconv-1.18.tar.gz) = 5822590
diff --git a/converters/libiconv/files/patch-include-iconv.h.in b/converters/libiconv/files/patch-include-iconv.h.in
index cd0e7e17567c..6fd627554add 100644
--- a/converters/libiconv/files/patch-include-iconv.h.in
+++ b/converters/libiconv/files/patch-include-iconv.h.in
@@ -1,25 +1,43 @@
---- include/iconv.h.in.orig 2019-04-26 18:48:39 UTC
+--- include/iconv.h.in.orig 2024-12-15 12:23:08 UTC
+++ include/iconv.h.in
-@@ -20,8 +20,10 @@
- #ifndef _LIBICONV_H
- #define _LIBICONV_H
+@@ -24,8 +24,10 @@ extern "C" {
+ extern "C" {
+ #endif
+#ifndef LIBICONV_PLUG
- #define _LIBICONV_VERSION 0x0111 /* version number: (major<<8) + minor */
+ #define _LIBICONV_VERSION 0x0112 /* version number: (major<<8) + minor */
extern @DLL_VARIABLE@ int _libiconv_version; /* Likewise */
+#endif
- /* We would like to #include any system header file which could define
- iconv_t, 1. in order to eliminate the risk that the user gets compilation
-@@ -93,7 +95,6 @@ extern int iconv_close (iconv_t cd);
- #endif
+ #ifdef __cplusplus
+ }
+@@ -69,7 +71,9 @@ extern "C" {
+
+ /* Allocates descriptor for code conversion from encoding ‘fromcode’ to
+ encoding ‘tocode’. */
++#ifndef LIBICONV_PLUG
+ #define iconv_open libiconv_open
++#endif
+ extern iconv_t iconv_open (const char* tocode, const char* fromcode);
+ /* Converts, using conversion descriptor ‘cd’, at most ‘*inbytesleft’ bytes
+@@ -77,11 +81,15 @@ extern iconv_t iconv_open (const char* tocode, const c
+ ‘*outbuf’.
+ Decrements ‘*inbytesleft’ and increments ‘*inbuf’ by the same amount.
+ Decrements ‘*outbytesleft’ and increments ‘*outbuf’ by the same amount. */
++#ifndef LIBICONV_PLUG
+ #define iconv libiconv
++#endif
+ extern size_t iconv (iconv_t cd, @ICONV_CONST@ char* * inbuf, size_t *inbytesleft, char* * outbuf, size_t *outbytesleft);
--#ifndef LIBICONV_PLUG
+ /* Frees resources allocated for conversion descriptor ‘cd’. */
++#ifndef LIBICONV_PLUG
+ #define iconv_close libiconv_close
++#endif
+ extern int iconv_close (iconv_t cd);
- /* Nonstandard extensions. */
-@@ -126,12 +127,16 @@ typedef struct {
+@@ -121,12 +129,16 @@ typedef struct {
/* Allocates descriptor for code conversion from encoding ‘fromcode’ to
encoding ‘tocode’ into preallocated memory. Returns an error indicator
(0 or -1 with errno set). */
@@ -36,10 +54,10 @@
extern int iconvctl (iconv_t cd, int request, void* argument);
/* Hook performed after every successful conversion of a Unicode character. */
-@@ -209,9 +214,15 @@ struct iconv_fallbacks {
- #define ICONV_SET_DISCARD_ILSEQ 4 /* const int *argument */
- #define ICONV_SET_HOOKS 5 /* const struct iconv_hooks *argument */
- #define ICONV_SET_FALLBACKS 6 /* const struct iconv_fallbacks *argument */
+@@ -213,9 +225,15 @@ struct iconv_fallbacks {
+ #define ICONV_SET_DISCARD_INVALID 12 /* const int *argument */
+ #define ICONV_GET_DISCARD_NON_IDENTICAL 13 /* int *argument */
+ #define ICONV_SET_DISCARD_NON_IDENTICAL 14 /* const int *argument */
+#ifdef LIBICONV_PLUG
+#define ICONV_GET_ILSEQ_INVALID 128
+#define ICONV_SET_ILSEQ_INVALID 129
@@ -52,7 +70,7 @@
extern void iconvlist (int (*do_one) (unsigned int namescount,
const char * const * names,
void* data),
-@@ -223,6 +234,7 @@ extern const char * iconv_canonicalize (
+@@ -227,6 +245,7 @@ extern const char * iconv_canonicalize (const char * n
/* Support for relocatable packages. */
@@ -60,7 +78,7 @@
/* Sets the original and the current installation prefix of the package.
Relocation simply replaces a pathname starting with the original prefix
by the corresponding pathname with the current prefix instead. Both
-@@ -230,12 +242,12 @@ extern const char * iconv_canonicalize (
+@@ -234,6 +253,7 @@ extern void libiconv_set_relocation_prefix (const char
instead of "/"). */
extern void libiconv_set_relocation_prefix (const char *orig_prefix,
const char *curr_prefix);
@@ -68,9 +86,3 @@
#ifdef __cplusplus
}
- #endif
-
--#endif
-
-
- #endif /* _LIBICONV_H */
diff --git a/converters/libiconv/files/patch-libcharset_lib_localcharset.c b/converters/libiconv/files/patch-libcharset_lib_localcharset.c
index c344c51026f7..1588d2f3b031 100644
--- a/converters/libiconv/files/patch-libcharset_lib_localcharset.c
+++ b/converters/libiconv/files/patch-libcharset_lib_localcharset.c
@@ -1,6 +1,6 @@
---- libcharset/lib/localcharset.c.orig 2020-05-09 08:59:22 UTC
+--- libcharset/lib/localcharset.c.orig 2020-04-04 12:50:22 UTC
+++ libcharset/lib/localcharset.c
-@@ -92,6 +92,7 @@ static const struct table_entry alias_table[] =
+@@ -95,6 +95,7 @@ static const struct table_entry alias_table[] =
# if defined __FreeBSD__ /* FreeBSD */
/*{ "ARMSCII-8", "ARMSCII-8" },*/
{ "Big5", "BIG5" },
@@ -8,7 +8,7 @@
{ "C", "ASCII" },
/*{ "CP1131", "CP1131" },*/
/*{ "CP1251", "CP1251" },*/
-@@ -104,6 +105,7 @@ static const struct table_entry alias_table[] =
+@@ -107,6 +108,7 @@ static const struct table_entry alias_table[] =
{ "ISO8859-13", "ISO-8859-13" },
{ "ISO8859-15", "ISO-8859-15" },
{ "ISO8859-2", "ISO-8859-2" },
diff --git a/converters/libiconv/files/patch-src__Makefile.in b/converters/libiconv/files/patch-src__Makefile.in
index 18c7b5113cbf..95a5f2d7c38e 100644
--- a/converters/libiconv/files/patch-src__Makefile.in
+++ b/converters/libiconv/files/patch-src__Makefile.in
@@ -1,6 +1,6 @@
---- src/Makefile.in.orig 2019-01-27 22:07:13 UTC
+--- src/Makefile.in.orig 2023-05-12 20:45:58 UTC
+++ src/Makefile.in
-@@ -71,7 +71,6 @@ OBJECTS_RES_no =
+@@ -71,7 +71,6 @@ all : iconv_no_i18n$(EXEEXT) iconv.@OBJEXT@ $(OBJECTS_
# without internationalization and not linked with libintl.
all : iconv_no_i18n$(EXEEXT) iconv.@OBJEXT@ $(OBJECTS_RES_@WOE32@)
@@ -12,8 +12,8 @@
if [ ! -d $(DESTDIR)$(bindir) ] ; then $(mkinstalldirs) $(DESTDIR)$(bindir) ; fi
case "@host_os@" in \
hpux*) $(CC) $(LDFLAGS) $(CFLAGS) $(iconv_LDFLAGS) iconv.@OBJEXT@ ../srclib/libicrt.a -L$(DESTDIR)$(libdir) -liconv @LIBINTL@ $(OBJECTS_RES_@WOE32@) `if test -n '$(DESTDIR)'; then echo " -Wl,+b -Wl,$(libdir)"; fi` -o iconv$(EXEEXT);; \
-- *) $(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) $(iconv_LDFLAGS) iconv.@OBJEXT@ ../srclib/libicrt.a $(DESTDIR)$(libdir)/libiconv.la @LTLIBINTL@ $(OBJECTS_RES_@WOE32@) -o iconv$(EXEEXT);; \
-+ *) $(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) $(iconv_LDFLAGS) iconv.@OBJEXT@ ../srclib/libicrt.a ../lib/libiconv.la @LTLIBINTL@ $(OBJECTS_RES_@WOE32@) -o iconv$(EXEEXT);; \
+- *) $(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) $(iconv_LDFLAGS) iconv.@OBJEXT@ ../srclib/libicrt.a @LTLIBINTL@ $(DESTDIR)$(libdir)/libiconv.la $(OBJECTS_RES_@WOE32@) -o iconv$(EXEEXT);; \
++ *) $(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) $(iconv_LDFLAGS) iconv.@OBJEXT@ ../srclib/libicrt.a @LTLIBINTL@ $(top_srcdir)/lib/libiconv.la $(OBJECTS_RES_@WOE32@) -o iconv$(EXEEXT);; \
esac
$(INSTALL_PROGRAM_ENV) $(LIBTOOL_INSTALL) $(INSTALL_PROGRAM) iconv$(EXEEXT) $(DESTDIR)$(bindir)/iconv$(EXEEXT)
diff --git a/converters/libiconv/pkg-plist b/converters/libiconv/pkg-plist
index 5ba582d734c4..2bdb363e18d7 100644
--- a/converters/libiconv/pkg-plist
+++ b/converters/libiconv/pkg-plist
@@ -9,7 +9,7 @@ lib/libcharset.so.1.0.0
lib/libiconv.a
lib/libiconv.so
lib/libiconv.so.2
-lib/libiconv.so.2.6.1
+lib/libiconv.so.2.7.0
share/man/man1/iconv.1.gz
share/man/man3/iconv.3.gz
share/man/man3/iconv_open.3.gz
diff --git a/converters/osm2pgrouting/Makefile b/converters/osm2pgrouting/Makefile
index 1879f7c4bf59..fd4d5a1df5c7 100644
--- a/converters/osm2pgrouting/Makefile
+++ b/converters/osm2pgrouting/Makefile
@@ -1,7 +1,6 @@
PORTNAME= osm2pgrouting
DISTVERSIONPREFIX= v
-DISTVERSION= 2.3.8
-PORTREVISION= 11
+DISTVERSION= 3.0.0
CATEGORIES= converters databases geography
MAINTAINER= lbartoletti@FreeBSD.org
diff --git a/converters/osm2pgrouting/distinfo b/converters/osm2pgrouting/distinfo
index a2c802ccd55e..6de287852212 100644
--- a/converters/osm2pgrouting/distinfo
+++ b/converters/osm2pgrouting/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1622957337
-SHA256 (pgRouting-osm2pgrouting-v2.3.8_GH0.tar.gz) = e3a58bcacf0c8811e0dcf3cf3791a4a7cc5ea2a901276133eacf227b30fd8355
-SIZE (pgRouting-osm2pgrouting-v2.3.8_GH0.tar.gz) = 187051
+TIMESTAMP = 1762492886
+SHA256 (pgRouting-osm2pgrouting-v3.0.0_GH0.tar.gz) = 3d3042aa0dd30930d27801c9833ebfbe16eba0ab0e5d6277636ce17b157f2a0f
+SIZE (pgRouting-osm2pgrouting-v3.0.0_GH0.tar.gz) = 186420
diff --git a/converters/py-gotenberg-client/Makefile b/converters/py-gotenberg-client/Makefile
index 9102f164b3df..698d816f886c 100644
--- a/converters/py-gotenberg-client/Makefile
+++ b/converters/py-gotenberg-client/Makefile
@@ -1,5 +1,5 @@
PORTNAME= gotenberg-client
-PORTVERSION= 0.11.0
+PORTVERSION= 0.13.0
CATEGORIES= converters python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
diff --git a/converters/py-gotenberg-client/distinfo b/converters/py-gotenberg-client/distinfo
index 91b2e413d068..8e7a2c1021d3 100644
--- a/converters/py-gotenberg-client/distinfo
+++ b/converters/py-gotenberg-client/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1757006395
-SHA256 (gotenberg_client-0.11.0.tar.gz) = 44479d996fb4103fc324d84395cc4a762863a033833ac1fc63490e96109f50d7
-SIZE (gotenberg_client-0.11.0.tar.gz) = 1210349
+TIMESTAMP = 1763568406
+SHA256 (gotenberg_client-0.13.0.tar.gz) = 0fb2425d0e1e4f143285ecde90f7687f4d234d2b23316f5d42015337d336a4ab
+SIZE (gotenberg_client-0.13.0.tar.gz) = 1211055
diff --git a/converters/py-svglib/Makefile b/converters/py-svglib/Makefile
index 2dc75470ed1e..c188051f73c6 100644
--- a/converters/py-svglib/Makefile
+++ b/converters/py-svglib/Makefile
@@ -1,6 +1,5 @@
PORTNAME= svglib
-DISTVERSION= 1.5.1
-PORTREVISION= 4
+DISTVERSION= 1.6.0
CATEGORIES= converters python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@@ -12,14 +11,17 @@ WWW= https://github.com/deeplook/svglib
LICENSE= LGPL3
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
+BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hatchling>=0:devel/py-hatchling@${PY_FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cssselect2>=0.2.0:textproc/py-cssselect2@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}lxml>0:devel/py-lxml@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}reportlab>0:print/py-reportlab@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}lxml>=6.0.0:devel/py-lxml@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}reportlab>=4.4.3:print/py-reportlab@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}rlpycairo>=0.4.0:graphics/py-rlpycairo@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}tinycss2>=0.6.0:textproc/py-tinycss2@${PY_FLAVOR}
USES= cpe python
-USE_PYTHON= autoplist concurrent distutils pytest
+USE_PYTHON= autoplist concurrent pep517 pytest
CPE_VENDOR= svglib_project
+# test_font_family leads to assertion errors
PYTEST_IGNORED_TESTS= test_font_family
TEST_ENV= PYTHONPATH=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}
diff --git a/converters/py-svglib/distinfo b/converters/py-svglib/distinfo
index 14f62031267f..d1ad4daa0af7 100644
--- a/converters/py-svglib/distinfo
+++ b/converters/py-svglib/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1677150655
-SHA256 (svglib-1.5.1.tar.gz) = 3ae765d3a9409ee60c0fb4d24c2deb6a80617aa927054f5bcd7fc98f0695e587
-SIZE (svglib-1.5.1.tar.gz) = 913900
+TIMESTAMP = 1762691695
+SHA256 (svglib-1.6.0.tar.gz) = 4c38a274a744ef0d1677f55d5d62fc0fb798819f813e52872a796e615741733d
+SIZE (svglib-1.6.0.tar.gz) = 1318276
diff --git a/converters/simdutf/Makefile b/converters/simdutf/Makefile
index d30cdb9bfa15..f2ae151f1995 100644
--- a/converters/simdutf/Makefile
+++ b/converters/simdutf/Makefile
@@ -1,6 +1,6 @@
PORTNAME= simdutf
DISTVERSIONPREFIX= v
-DISTVERSION= 7.5.0
+DISTVERSION= 7.6.0
CATEGORIES= converters textproc
MAINTAINER= fuz@FreeBSD.org
diff --git a/converters/simdutf/distinfo b/converters/simdutf/distinfo
index ed9e5ac7b283..add9a2586846 100644
--- a/converters/simdutf/distinfo
+++ b/converters/simdutf/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1760644680
-SHA256 (simdutf-simdutf-v7.5.0_GH0.tar.gz) = 3cad2f554912ecd77222272e5d1a7c1e5e33b4011bee823269cdc9095d2fdce2
-SIZE (simdutf-simdutf-v7.5.0_GH0.tar.gz) = 2220975
+TIMESTAMP = 1763494564
+SHA256 (simdutf-simdutf-v7.6.0_GH0.tar.gz) = ce8c57ea0c417f721e5f0b4ba5e295de38bbd0086bc16dc9c9b1c099926576c7
+SIZE (simdutf-simdutf-v7.6.0_GH0.tar.gz) = 2230418
diff --git a/converters/simdutf/pkg-plist b/converters/simdutf/pkg-plist
index 917a3854a7b7..1a780c9b1fd8 100644
--- a/converters/simdutf/pkg-plist
+++ b/converters/simdutf/pkg-plist
@@ -14,7 +14,7 @@ lib/cmake/simdutf/simdutf-config-version.cmake
lib/cmake/simdutf/simdutf-config.cmake
lib/cmake/simdutf/simdutfTargets-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/simdutf/simdutfTargets.cmake
-lib/libsimdutf.so.27.0.0
-lib/libsimdutf.so.27
+lib/libsimdutf.so.28.0.0
+lib/libsimdutf.so.28
lib/libsimdutf.so
libdata/pkgconfig/simdutf.pc
diff --git a/converters/yj-bruceadams/Makefile b/converters/yj-bruceadams/Makefile
index 19c2ee486786..b353cf2147fe 100644
--- a/converters/yj-bruceadams/Makefile
+++ b/converters/yj-bruceadams/Makefile
@@ -1,6 +1,6 @@
PORTNAME= yj
DISTVERSION= 1.2.0
-PORTREVISION= 34
+PORTREVISION= 35
CATEGORIES= converters textproc
PKGNAMESUFFIX= -${GH_ACCOUNT}
diff --git a/converters/yj/Makefile b/converters/yj/Makefile
index 299952a02ffe..b8140e812998 100644
--- a/converters/yj/Makefile
+++ b/converters/yj/Makefile
@@ -1,7 +1,7 @@
PORTNAME= yj
PORTVERSION= 5.1.0
DISTVERSIONPREFIX= v
-PORTREVISION= 30
+PORTREVISION= 31
CATEGORIES= converters
DIST_SUBDIR= yj