pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/net/telescope
Module Name: pkgsrc
Committed By: vins
Date: Tue Sep 9 15:22:06 UTC 2025
Modified Files:
pkgsrc/net/telescope: Makefile distinfo
pkgsrc/net/telescope/patches: patch-ui.c
Log Message:
net/telescope: fix erroneously formatted patch.
Remove duplicated code, introduced while testing.
Make sure _XPG7 is defined on illumos before anything else is included.
(which may recursively pull stdio.h before UNIX v7 compliance is enabled).
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/net/telescope/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/net/telescope/distinfo
cvs rdiff -u -r1.1 -r1.2 pkgsrc/net/telescope/patches/patch-ui.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/net/telescope/Makefile
diff -u pkgsrc/net/telescope/Makefile:1.4 pkgsrc/net/telescope/Makefile:1.5
--- pkgsrc/net/telescope/Makefile:1.4 Mon Sep 8 09:52:02 2025
+++ pkgsrc/net/telescope/Makefile Tue Sep 9 15:22:06 2025
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.4 2025/09/08 09:52:02 vins Exp $
+# $NetBSD: Makefile,v 1.5 2025/09/09 15:22:06 vins Exp $
DISTNAME= telescope-0.11
-PKGREVISION= 2
+PKGREVISION= 3
CATEGORIES= net
MASTER_SITES= https://ftp.telescope-browser.org/
Index: pkgsrc/net/telescope/distinfo
diff -u pkgsrc/net/telescope/distinfo:1.3 pkgsrc/net/telescope/distinfo:1.4
--- pkgsrc/net/telescope/distinfo:1.3 Mon Sep 8 09:52:02 2025
+++ pkgsrc/net/telescope/distinfo Tue Sep 9 15:22:06 2025
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.3 2025/09/08 09:52:02 vins Exp $
+$NetBSD: distinfo,v 1.4 2025/09/09 15:22:06 vins Exp $
BLAKE2s (telescope-0.11.tar.gz) = a94ae8dae9f95ba47d17d6a5a081cb55dce9167ada16cba46b110cfd00bbae95
SHA512 (telescope-0.11.tar.gz) = d00b94b3f31e05d0ad2223e79c1259786fc722adab38978ce4dbd0c4e99d3a3e5ef605037a0104cebb438779c0accaebfcc52c5e27c77b87a8095e26486d5d93
@@ -8,4 +8,4 @@ SHA1 (patch-control.c) = d90efd407d5e5b7
SHA1 (patch-dprintf.h) = e94f6b8916b8b052939d4d239065e9cad75e6acb
SHA1 (patch-fs.c) = 80ed55e5632839bfd4ccd06f6b3503ee47b20459
SHA1 (patch-telescope.c) = 9a3f75c9414eab042cb41dc4ad6537d867551d34
-SHA1 (patch-ui.c) = a210541f64991025c9216a680432ee547915f98a
+SHA1 (patch-ui.c) = ef8d7b4dcb940bfcba1d43eefa85dbf1bd071670
Index: pkgsrc/net/telescope/patches/patch-ui.c
diff -u pkgsrc/net/telescope/patches/patch-ui.c:1.1 pkgsrc/net/telescope/patches/patch-ui.c:1.2
--- pkgsrc/net/telescope/patches/patch-ui.c:1.1 Mon Sep 8 09:52:02 2025
+++ pkgsrc/net/telescope/patches/patch-ui.c Tue Sep 9 15:22:06 2025
@@ -1,18 +1,13 @@
-$NetBSD: patch-ui.c,v 1.1 2025/09/08 09:52:02 vins Exp $
+$NetBSD: patch-ui.c,v 1.2 2025/09/09 15:22:06 vins Exp $
Support dprintf() on SunOS.
+Note that illumos supports dprintf() in UNIX V7 compliance.
--- ui.c.orig 2024-12-30 09:09:40.000000000 +0000
+++ ui.c
-@@ -1,4 +1,4 @@
--/*
-+#define _XPG7 1/*
- * Copyright (c) 2021, 2024 Omar Polo <op%omarpolo.com@localhost>
+@@ -30,6 +30,12 @@
*
- * Permission to use, copy, modify, and distribute this software for any
-@@ -32,6 +32,12 @@
-
- #include "compat.h"
+ */
+#if defined(__illumos__)
+#define _XPG7 1
@@ -20,9 +15,9 @@ Support dprintf() on SunOS.
+#include "dprintf.h"
+#endif
+
- #include <sys/time.h>
- #include <sys/wait.h>
+ #include "compat.h"
+ #include <sys/time.h>
@@ -122,6 +128,23 @@ static struct timeval loading_tv = { 0,
static char keybuf[64];
Home |
Main Index |
Thread Index |
Old Index