pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/libstroke
Module Name: pkgsrc
Committed By: adam
Date: Thu Jun 25 05:00:41 UTC 2026
Modified Files:
pkgsrc/devel/libstroke: Makefile distinfo
Added Files:
pkgsrc/devel/libstroke/patches: patch-configure
Log Message:
libstroke: updated to 0.5.7
0.5.7
Added string.h as include to stroke.c
0.5.6
Update FSF Address
0.5.5
Make Environment Cleanup
To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 pkgsrc/devel/libstroke/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/libstroke/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/libstroke/patches/patch-configure
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/libstroke/Makefile
diff -u pkgsrc/devel/libstroke/Makefile:1.30 pkgsrc/devel/libstroke/Makefile:1.31
--- pkgsrc/devel/libstroke/Makefile:1.30 Mon Jan 5 09:23:11 2026
+++ pkgsrc/devel/libstroke/Makefile Thu Jun 25 05:00:41 2026
@@ -1,42 +1,18 @@
-# $NetBSD: Makefile,v 1.30 2026/01/05 09:23:11 wiz Exp $
+# $NetBSD: Makefile,v 1.31 2026/06/25 05:00:41 adam Exp $
-DISTNAME= libstroke-0.5.1
-PKGREVISION= 5
-CATEGORIES= devel
-#MASTER_SITES= http://etla.net/libstroke/
+DISTNAME= libstroke-0.5.7
+CATEGORIES= devel
+MASTER_SITES= ${MASTER_SITE_GITHUB:=s-kro/}
+
+MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+#HOMEPAGE= http://etla.net/libstroke/
+HOMEPAGE= https://github.com/s-kro/libstroke
+COMMENT= Stroke translation library
+LICENSE= gnu-gpl-v2
-MAINTAINER= pkgsrc-users%NetBSD.org@localhost
-#HOMEPAGE= http://etla.net/libstroke/
-COMMENT= Stroke translation library
-
-GNU_CONFIGURE= YES
-USE_LIBTOOL= YES
+USE_LIBTOOL= yes
USE_TOOLS+= gmake
-# 1.
-# -----------------
-# with gcc-14.3.0
-# configure:1092:1: error: return type defaults to 'int' [-Wimplicit-int]
-# 1092 | main(){return(0);}
-# | ^~~~
-# -----------------
-# 2.
-# -----------------
-# ltconfig change does not make it
-# +++ ltconfig 2025-10-14 07:16:53.170304613 +0900
-# @@ -854,7 +854,7 @@ fi
-#
-# echo $ac_n "checking if $compiler static flag $link_static_flag works... $ac_c" 1>&6
-# $rm conftest*
-# -echo 'main(){return(0);}' > conftest.c
-# +echo 'int main(){return(0);}' > conftest.c
-# -----------------
-#3.
-# -----------------
-# with c90
-# stroke_test.c:72:1: error: C++ style comments are not allowed in ISO C90
-# -----------------
-FORCE_C_STD= gnu90
-
+GNU_CONFIGURE= yes
CONFIGURE_ENV+= ac_cv_path_GTK_CONFIG=no
BUILDLINK_DEPMETHOD.libX11?= build
Index: pkgsrc/devel/libstroke/distinfo
diff -u pkgsrc/devel/libstroke/distinfo:1.7 pkgsrc/devel/libstroke/distinfo:1.8
--- pkgsrc/devel/libstroke/distinfo:1.7 Tue Oct 26 10:15:28 2021
+++ pkgsrc/devel/libstroke/distinfo Thu Jun 25 05:00:41 2026
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.7 2021/10/26 10:15:28 nia Exp $
+$NetBSD: distinfo,v 1.8 2026/06/25 05:00:41 adam Exp $
-BLAKE2s (libstroke-0.5.1.tar.gz) = 168ce052217b1c0b0b3c89eb218d0c3a207d5647a184e1e42afcb1c360be1253
-SHA512 (libstroke-0.5.1.tar.gz) = 03431d4cd39174aadb6cfd00a1c487d34ae9cf4b1db9e9d01d563f2a661f01979f474b87099fd2bfb0e54653416a1b9dea988367674a3cc6134e16b62810a0c7
-Size (libstroke-0.5.1.tar.gz) = 174270 bytes
+BLAKE2s (libstroke-0.5.7.tar.gz) = 3a77b97612bd5f22ec23fd10fd78cf69c66b5dba0c9887ace4c1d315a5b852d1
+SHA512 (libstroke-0.5.7.tar.gz) = f7d259081f3077448dd149106a192a040aa6ef1fd3ce28772ca0dabaac11cdc56e82138b94f88ead54779f8b9b3c06b148db5f81636737694cc688f1ca186bb7
+Size (libstroke-0.5.7.tar.gz) = 180272 bytes
+SHA1 (patch-configure) = 6dc76d5a5c81b224ec2a71d0bb74a8c4d1f5b57d
Added files:
Index: pkgsrc/devel/libstroke/patches/patch-configure
diff -u /dev/null pkgsrc/devel/libstroke/patches/patch-configure:1.1
--- /dev/null Thu Jun 25 05:00:41 2026
+++ pkgsrc/devel/libstroke/patches/patch-configure Thu Jun 25 05:00:41 2026
@@ -0,0 +1,24 @@
+$NetBSD: patch-configure,v 1.1 2026/06/25 05:00:41 adam Exp $
+
+Fix error: return type defaults to 'int' [-Wimplicit-int]
+
+--- configure.orig 2026-06-25 04:55:39.781319940 +0000
++++ configure
+@@ -1089,7 +1089,7 @@ cat > conftest.$ac_ext << EOF
+ #line 1090 "configure"
+ #include "confdefs.h"
+
+-main(){return(0);}
++int main(){return(0);}
+ EOF
+ if { (eval echo configure:1095: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ ac_cv_prog_cc_works=yes
+@@ -1968,7 +1968,7 @@ cat > conftest.$ac_ext << EOF
+ #line 1969 "configure"
+ #include "confdefs.h"
+
+-main(){return(0);}
++int main(){return(0);}
+ EOF
+ if { (eval echo configure:1974: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ ac_cv_prog_cc_works=yes
Home |
Main Index |
Thread Index |
Old Index