pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/libxtend



Module Name:    pkgsrc
Committed By:   bacon
Date:           Tue Dec 14 18:55:11 UTC 2021

Modified Files:
        pkgsrc/devel/libxtend: Makefile PLIST buildlink3.mk distinfo

Log Message:
devel/libxtend: Update to 0.1.4

Several new functions
Eliminate mutator macros mirroring mutator functions
Numerous minor bug fixes and enhancements

Changes: https://github.com/outpaddling/libxtend/releases/tag/0.1.4


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/libxtend/Makefile \
    pkgsrc/devel/libxtend/PLIST pkgsrc/devel/libxtend/buildlink3.mk
cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/libxtend/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/libxtend/Makefile
diff -u pkgsrc/devel/libxtend/Makefile:1.5 pkgsrc/devel/libxtend/Makefile:1.6
--- pkgsrc/devel/libxtend/Makefile:1.5  Sat Sep 18 00:33:35 2021
+++ pkgsrc/devel/libxtend/Makefile      Tue Dec 14 18:55:11 2021
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.5 2021/09/18 00:33:35 bacon Exp $
+# $NetBSD: Makefile,v 1.6 2021/12/14 18:55:11 bacon Exp $
 
-DISTNAME=      libxtend-0.1.3.5
+DISTNAME=      libxtend-0.1.4
 CATEGORIES=    devel
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=outpaddling/}
-GITHUB_TAG=    e78bd27e4582376d3c548dccf4e4ad5b8b8feb81
 
 MAINTAINER=    bacon%NetBSD.org@localhost
 HOMEPAGE=      https://github.com/outpaddling/libxtendc
Index: pkgsrc/devel/libxtend/PLIST
diff -u pkgsrc/devel/libxtend/PLIST:1.5 pkgsrc/devel/libxtend/PLIST:1.6
--- pkgsrc/devel/libxtend/PLIST:1.5     Sat Sep 18 00:33:35 2021
+++ pkgsrc/devel/libxtend/PLIST Tue Dec 14 18:55:11 2021
@@ -1,10 +1,11 @@
-@comment $NetBSD: PLIST,v 1.5 2021/09/18 00:33:35 bacon Exp $
+@comment $NetBSD: PLIST,v 1.6 2021/12/14 18:55:11 bacon Exp $
+include/xtend/common.h
 include/xtend/ctype.h
 include/xtend/dsv.h
 include/xtend/file.h
-include/xtend/limits.h
 include/xtend/math.h
 include/xtend/mem.h
+include/xtend/net.h
 include/xtend/proc.h
 include/xtend/string.h
 include/xtend/time.h
@@ -18,20 +19,13 @@ man/man3/DSV_LINE_DELIMS_AE.3
 man/man3/DSV_LINE_FIELDS.3
 man/man3/DSV_LINE_FIELDS_AE.3
 man/man3/DSV_LINE_NUM_FIELDS.3
-man/man3/DSV_LINE_SET_ARRAY_SIZE.3
-man/man3/DSV_LINE_SET_DELIMS.3
-man/man3/DSV_LINE_SET_DELIMS_AE.3
-man/man3/DSV_LINE_SET_DELIMS_CPY.3
-man/man3/DSV_LINE_SET_FIELDS.3
-man/man3/DSV_LINE_SET_FIELDS_AE.3
-man/man3/DSV_LINE_SET_FIELDS_CPY.3
-man/man3/DSV_LINE_SET_NUM_FIELDS.3
 man/man3/csv_read_field.3
 man/man3/csv_read_field_malloc.3
 man/man3/csv_skip_field.3
 man/man3/csv_skip_rest_of_line.3
 man/man3/difftimeofday.3
 man/man3/digits.3
+man/man3/double_cmp.3
 man/man3/dsv_copy_line.3
 man/man3/dsv_free_line.3
 man/man3/dsv_line_set_array_size.3
@@ -52,14 +46,21 @@ man/man3/fast_cp.3
 man/man3/fd_purge.3
 man/man3/fgetline.3
 man/man3/file_mod_cmp.3
+man/man3/float_cmp.3
 man/man3/gcd.3
 man/man3/get_home_dir.3
+man/man3/int_cmp.3
 man/man3/lcm.3
+man/man3/long_cmp.3
+man/man3/long_long_cmp.3
 man/man3/ltostrn.3
 man/man3/parse_cmd.3
+man/man3/resolve_hostname.3
 man/man3/rmkdir.3
+man/man3/short_cmp.3
 man/man3/spawnlp.3
 man/man3/spawnvp.3
+man/man3/str_argv_cat.3
 man/man3/strblank.3
 man/man3/strisint.3
 man/man3/strisreal.3
@@ -68,6 +69,7 @@ man/man3/strptrcmp.3
 man/man3/strshellcpy.3
 man/man3/strsqueeze.3
 man/man3/strtr.3
+man/man3/strtrim.3
 man/man3/strviscpy.3
 man/man3/tsv_read_field.3
 man/man3/tsv_read_field_malloc.3
@@ -75,9 +77,11 @@ man/man3/tsv_skip_field.3
 man/man3/tsv_skip_rest_of_line.3
 man/man3/va_usage.3
 man/man3/valid_extension.3
+man/man3/xt_factorial.3
 man/man3/xt_fclose.3
 man/man3/xt_fopen.3
 man/man3/xt_malloc.3
+man/man3/xt_n_choose_k.3
 man/man3/xt_realloc.3
 man/man3/xt_tic.3
 man/man3/xt_toc.3
Index: pkgsrc/devel/libxtend/buildlink3.mk
diff -u pkgsrc/devel/libxtend/buildlink3.mk:1.5 pkgsrc/devel/libxtend/buildlink3.mk:1.6
--- pkgsrc/devel/libxtend/buildlink3.mk:1.5     Sat Sep 18 00:33:35 2021
+++ pkgsrc/devel/libxtend/buildlink3.mk Tue Dec 14 18:55:11 2021
@@ -1,11 +1,11 @@
-# $NetBSD: buildlink3.mk,v 1.5 2021/09/18 00:33:35 bacon Exp $
+# $NetBSD: buildlink3.mk,v 1.6 2021/12/14 18:55:11 bacon Exp $
 
 BUILDLINK_TREE+=               libxtend
 
 .if !defined(LIBXTEND_BUILDLINK3_MK)
 LIBXTEND_BUILDLINK3_MK:=
 
-BUILDLINK_API_DEPENDS.libxtend+=       libxtend>=0.1.3.5
+BUILDLINK_API_DEPENDS.libxtend+=       libxtend>=0.1.4
 BUILDLINK_PKGSRCDIR.libxtend?=         ../../devel/libxtend
 .endif # LIBXTEND_BUILDLINK3_MK
 

Index: pkgsrc/devel/libxtend/distinfo
diff -u pkgsrc/devel/libxtend/distinfo:1.7 pkgsrc/devel/libxtend/distinfo:1.8
--- pkgsrc/devel/libxtend/distinfo:1.7  Tue Oct 26 10:15:31 2021
+++ pkgsrc/devel/libxtend/distinfo      Tue Dec 14 18:55:11 2021
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.7 2021/10/26 10:15:31 nia Exp $
+$NetBSD: distinfo,v 1.8 2021/12/14 18:55:11 bacon Exp $
 
-BLAKE2s (libxtend-0.1.3.5-e78bd27e4582376d3c548dccf4e4ad5b8b8feb81.tar.gz) = 89d10b44411d2a48186be999cebd6bb5cad827a373cc949c2331df308373386e
-SHA512 (libxtend-0.1.3.5-e78bd27e4582376d3c548dccf4e4ad5b8b8feb81.tar.gz) = 
ee0fb9b93c7c83f42db4220ccc2d5db01ab272271c2824aa52fc4d2e2759ff2f5d1463f001770dfbd4b8a3b0e3c8f098d8c3d1ac06b88bec313418310254770a
-Size (libxtend-0.1.3.5-e78bd27e4582376d3c548dccf4e4ad5b8b8feb81.tar.gz) = 37908 bytes
+BLAKE2s (libxtend-0.1.4.tar.gz) = f3e154eb906100c9bed5ad40d82e6822d78452dc12bfd8ac5923785151872794
+SHA512 (libxtend-0.1.4.tar.gz) = 4cbcaea033914ff67ae3d150371ef794085c2ce2e41b9329eb2ab6514b3ce78f4190d4c6eaa066976201d7ff7b21cf5694d590246d1bdc3872b0e243d2c2d3fb
+Size (libxtend-0.1.4.tar.gz) = 43767 bytes



Home | Main Index | Thread Index | Old Index