pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/cdk
Module Name: pkgsrc
Committed By: wiz
Date: Wed Jun 26 16:23:34 UTC 2024
Modified Files:
pkgsrc/devel/cdk: Makefile PLIST distinfo
Log Message:
cdk: update to 5.0.20240619nb1.
Updated provided by Thomas E. Dickey, thanks!
2024/06/19
+ add configure option --enable-pc-files
+ modify configure script using dialog's changes for Debian #1071581
+ modify cdk-config, adding --cflags-only-I and --cflags-only-other
options.
+ modify cdk-config to add the -I options needed for compiling it, to
the output of --cflags
+ configure script fixes:
+ CF_ANSI_CC_CHECK reset CFLAGS/CPPFLAGS on each loop, to keep the
options from accumulating
+ CF_PIC_HACK make "readelf" tool configurable
2024/03/31
+ add CDKchdir(), CDKopenFile() to use wordexp() for expanding tilde
(suggested by Henry Qin).
2024/03/29
+ build-fix for Solaris xpg4 curses.
+ modify moveCursesWindow() to use mvwin() when it is not possible to
set the window's beginning x/y directly.
+ add compatibility symlink for cdk.h (Debian #1067771).
2024/03/28
+ fixes for manpage formatting
+ improve test-packages
+ corrected configure --enable-hdr-subdir option (Debian #1067771).
2024/03/12
+ build-fix for clang on Solaris.
+ improve compiler-warnings in configure-checks.
+ updated configure macros from xterm and ncurses development
+ update config.guess, config.sub
2023/02/01
+ improve compiler-warnings in configure-checks.
2022/10/25
+ change library dependencies in rpm spec-file.
+ update license in test-packages.
2022/10/18
+ relicense as MIT-X11
+ reduce shellcheck warnings in support-scripts
+ updated configure script to work around regression in GNU grep 3.8
+ updated configure macros from xterm and ncurses development
+ update config.guess, config.sub
2021/12/16
+ fix cppcheck style-warnings.
+ improve makefile header-dependencies by accounting for all generated
headers (report/patch by Sergei Trofimovich).
+ updated configure macros from xterm and ncurses development:
CF_ADD_INCDIR CF_APPEND_CFLAGS CF_DISABLE_ECHO CF_MAKEFLAGS
CF_NCURSES_CONFIG CF_NCURSES_LIBS CF_PKG_CONFIG CF_REMOVE_CFLAGS
CF_SHARED_OPTS CF_TRY_XOPEN_SOURCE CF_XOPEN_SOURCE
2021/08/25
+ build-fix for HP-UX curses, which provides only part of the ACS_xxx
definitions compatible with chtype's.
+ correct calls on SetViewSize in scroll.c, overlooked in 2005/04/24
(report by Brad Hines).
+ updated configure macros from xterm and ncurses development:
CF_C11_NORETURN CF_CHECK_LIBTOOL_VERSION CF_CONST_X_STRING
CF_DISABLE_LEAKS CF_FUNC_LSTAT CF_GETOPT_HEADER CF_NCURSES_CONFIG
CF_NO_LEAKS_OPTION CF_SHARED_OPTS CF_UTF8_LIB CF_XOPEN_CURSES
CF_XOPEN_SOURCE
+ update config.guess, config.sub
To generate a diff of this commit:
cvs rdiff -u -r1.48 -r1.49 pkgsrc/devel/cdk/Makefile
cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/cdk/PLIST
cvs rdiff -u -r1.15 -r1.16 pkgsrc/devel/cdk/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/cdk/Makefile
diff -u pkgsrc/devel/cdk/Makefile:1.48 pkgsrc/devel/cdk/Makefile:1.49
--- pkgsrc/devel/cdk/Makefile:1.48 Mon May 6 08:40:22 2024
+++ pkgsrc/devel/cdk/Makefile Wed Jun 26 16:23:34 2024
@@ -1,16 +1,17 @@
-# $NetBSD: Makefile,v 1.48 2024/05/06 08:40:22 jperkin Exp $
+# $NetBSD: Makefile,v 1.49 2024/06/26 16:23:34 wiz Exp $
-DISTNAME= cdk-5.0-20210324
+DISTNAME= cdk-5.0-20240619
PKGNAME= ${DISTNAME:S/5.0-/5.0./}
PKGREVISION= 1
CATEGORIES= devel
-MASTER_SITES= https://invisible-mirror.net/archives/cdk/
+MASTER_SITES= https://invisible-island.net/archives/cdk/ \
+ https://invisible-mirror.net/archives/cdk/
EXTRACT_SUFX= .tgz
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
HOMEPAGE= https://invisible-island.net/cdk/
COMMENT= Curses Development Kit
-LICENSE= original-bsd
+LICENSE= x11
WRKSRC= ${WRKDIR}/${DISTNAME}
GNU_CONFIGURE= yes
Index: pkgsrc/devel/cdk/PLIST
diff -u pkgsrc/devel/cdk/PLIST:1.5 pkgsrc/devel/cdk/PLIST:1.6
--- pkgsrc/devel/cdk/PLIST:1.5 Sun Aug 4 00:20:10 2019
+++ pkgsrc/devel/cdk/PLIST Wed Jun 26 16:23:34 2024
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.5 2019/08/04 00:20:10 nia Exp $
+@comment $NetBSD: PLIST,v 1.6 2024/06/26 16:23:34 wiz Exp $
bin/cdk5-config
include/cdk.h
include/cdk/alphalist.h
@@ -6,6 +6,7 @@ include/cdk/binding.h
include/cdk/button.h
include/cdk/buttonbox.h
include/cdk/calendar.h
+include/cdk/cdk.h
include/cdk/cdk_compat.h
include/cdk/cdk_config.h
include/cdk/cdk_objs.h
@@ -46,10 +47,12 @@ lib/libcdk.a
man/man1/cdk5-config.1
man/man3/Beep.3
man/man3/CDKallocStrings.3
+man/man3/CDKchdir.3
man/man3/CDKcountStrings.3
man/man3/CDKfreeChtypes.3
man/man3/CDKfreeStrings.3
man/man3/CDKgetDirectoryContents.3
+man/man3/CDKopenFile.3
man/man3/CDKparamNumber.3
man/man3/CDKparamNumber2.3
man/man3/CDKparamString.3
@@ -1015,11 +1018,7 @@ man/man3/viewFile.3
man/man3/viewInfo.3
man/man3/waitCDKLabel.3
share/doc/cdk/COPYING
-share/doc/cdk/EXPANDING
-share/doc/cdk/INSTALL
-share/doc/cdk/NOTES
share/doc/cdk/README
-share/doc/cdk/TODO
share/examples/cdk/Makefile
share/examples/cdk/alphalist_ex.c
share/examples/cdk/bind_ex.c
Index: pkgsrc/devel/cdk/distinfo
diff -u pkgsrc/devel/cdk/distinfo:1.15 pkgsrc/devel/cdk/distinfo:1.16
--- pkgsrc/devel/cdk/distinfo:1.15 Tue Oct 26 10:14:23 2021
+++ pkgsrc/devel/cdk/distinfo Wed Jun 26 16:23:34 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.15 2021/10/26 10:14:23 nia Exp $
+$NetBSD: distinfo,v 1.16 2024/06/26 16:23:34 wiz Exp $
-BLAKE2s (cdk-5.0-20210324.tgz) = 985b86f6f65434901c462c57d8ecc537501a40ed6d9b0449806e6929caceaa92
-SHA512 (cdk-5.0-20210324.tgz) = 72d62307824708858ca4fb3865d332cc81e987d7ef685011cf127c8f77cee3e19fe9dd6a35009d4416769cb00f04e937ebaec686c61ca0ba58655f522a175a59
-Size (cdk-5.0-20210324.tgz) = 548203 bytes
+BLAKE2s (cdk-5.0-20240619.tgz) = 0ea53249ff0ea1aa57b7324c88b70f18afc9112be1aaf91040f6a6fe803d74cf
+SHA512 (cdk-5.0-20240619.tgz) = 13f15a53142167352f9b4e6ebd7d49cc2b4c209c36b53422f04d640bd652d33928e55af47f8e02a54a668e89f5df94245008b2a3466fdeae683224582f9a8919
+Size (cdk-5.0-20240619.tgz) = 547275 bytes
Home |
Main Index |
Thread Index |
Old Index