pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/net/bwm-ng net/bwm-ng: update to 0.6.3



details:   https://anonhg.NetBSD.org/pkgsrc/rev/32321b753d27
branches:  trunk
changeset: 381351:32321b753d27
user:      pin <pin%pkgsrc.org@localhost>
date:      Tue Jul 05 07:24:41 2022 +0000

description:
net/bwm-ng: update to 0.6.3

Updated in wip by Paolo Vincenzo Olivo.
Remove upstreamed patches.

2021-01-10 (0.6.3) Volker Gropp <bwmng(at)gropp.org>
* remove outdated copyright and email
* Merge pull request #25 from fweimer/patch-1 AC_QEF_C_NORETURN: Include
  <stdlib.h> for exit
* Merge pull request #27 from ofalk/master Fix potential write to unallocated
  memory.
* Merge pull request #28 from vgropp/#2-fix-csv-bits feat: #2 output bits in csv
* Merge pull request #29 from vgropp/#2-fix-csv-bits fix(doc): #2 output bits
  in csv
* Merge pull request #32 from vgropp/new-netstat-#5 feat: add support for newer
  (2016+) linux netstat #5

2019-01-01 14:50 (0.6.2) Volker Gropp <bwmng(at)gropp.org>
* Merge pull request #22 from vgropp/issue-#13 to fix windows build
* Merge pull request #20 from dreibh/master CSV file output: fix for timestamp
  inaccuracy and Y-2038 problem
* Merge pull request #21 from vgropp/travisci add travisci
* Merge pull request #17 from Himura2la/master Add the started time in "sum"
  mode
* Merge pull request #18 from Himura2la/fix-dynamic Fix DYNAMIC and ANSIOUT in
  config
* Merge pull request #10 from SoapGentoo/fixes Use `static inline` instead of
  `inline`
* Merge pull request #9 from adventureloop/master Always fflush the pipe
* Merge pull request #7 from samueloph/fsf_address_clean Update FSF address
* Merge pull request #6 from samueloph/master Fix typos
* fix nan and inf values on fast refresh (fixes debian bug #532331)

diffstat:

 net/bwm-ng/Makefile                   |  17 ++++++++++++-----
 net/bwm-ng/distinfo                   |  10 ++++------
 net/bwm-ng/patches/patch-src_bwm-ng.c |  15 ---------------
 net/bwm-ng/patches/patch-src_help.c   |  18 ------------------
 4 files changed, 16 insertions(+), 44 deletions(-)

diffs (88 lines):

diff -r 1efe205ae249 -r 32321b753d27 net/bwm-ng/Makefile
--- a/net/bwm-ng/Makefile       Tue Jul 05 07:01:43 2022 +0000
+++ b/net/bwm-ng/Makefile       Tue Jul 05 07:24:41 2022 +0000
@@ -1,16 +1,23 @@
-# $NetBSD: Makefile,v 1.2 2020/01/26 17:31:48 rillig Exp $
+# $NetBSD: Makefile,v 1.3 2022/07/05 07:24:41 pin Exp $
 
-DISTNAME=      bwm-ng-0.6.1
+DISTNAME=      bwm-ng-0.6.3
 CATEGORIES=    net
-MASTER_SITES=  http://www.gropp.org/bwm-ng/
+MASTER_SITES=  https://www.gropp.org/bwm-ng/
 
-MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE=      https://www.gropp.org/?id=projects&sub=bwm-ng
+MAINTAINER=    vms%retrobsd.ddns.net@localhost
+HOMEPAGE=      https://www.gropp.org/bwm-ng/
 COMMENT=       Console-based bandwidth monitor
 LICENSE=       gnu-gpl-v2
 
+USE_TOOLS+=            autoconf automake autoreconf
 USE_PKGLOCALEDIR=      yes
+
 GNU_CONFIGURE=         yes
+CONFIGURE_ARGS+=       --prefix=${PREFIX}
+FAKE_NCURSES=          yes
+
+pre-configure:
+       ${RUN} set -e; cd ${WRKSRC} && autoreconf -fiv
 
 .include "../../mk/curses.buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 1efe205ae249 -r 32321b753d27 net/bwm-ng/distinfo
--- a/net/bwm-ng/distinfo       Tue Jul 05 07:01:43 2022 +0000
+++ b/net/bwm-ng/distinfo       Tue Jul 05 07:24:41 2022 +0000
@@ -1,7 +1,5 @@
-$NetBSD: distinfo,v 1.5 2021/10/26 11:05:26 nia Exp $
+$NetBSD: distinfo,v 1.6 2022/07/05 07:24:41 pin Exp $
 
-BLAKE2s (bwm-ng-0.6.1.tar.gz) = 84283591cac23fdf63c5463936ded861fb05347f5e3f1d881c56399eb4a9e501
-SHA512 (bwm-ng-0.6.1.tar.gz) = 3f8d4a10f5cbf743d6aee9c6170f334c4274224a2f1886f04338c9a1bf0cf13af5be4aaea0445c9e5b5d361915cc3a93bbfe7c4abf69a0d24e42bc414d8056cd
-Size (bwm-ng-0.6.1.tar.gz) = 162620 bytes
-SHA1 (patch-src_bwm-ng.c) = a9fd7812bb2a9d40b28d244207ca6d4900ddf7d7
-SHA1 (patch-src_help.c) = 4886d8b608d65f8bdf1fa9ba6ab3cbebb53897cc
+BLAKE2s (bwm-ng-0.6.3.tar.gz) = 59a18b9f87a6f0ee426dd51785e4f25aa8b210cfd221aa4d0545def540f601b9
+SHA512 (bwm-ng-0.6.3.tar.gz) = 85ce29e6ffa9643b4e7c1d731f4e928ddca8cfdc71c86b65ec4e55058b951eb8da9ab80139145300518223589d5fece5bdc11ede91a1ea394d569993ccdb0ab8
+Size (bwm-ng-0.6.3.tar.gz) = 70094 bytes
diff -r 1efe205ae249 -r 32321b753d27 net/bwm-ng/patches/patch-src_bwm-ng.c
--- a/net/bwm-ng/patches/patch-src_bwm-ng.c     Tue Jul 05 07:01:43 2022 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,15 +0,0 @@
-$NetBSD: patch-src_bwm-ng.c,v 1.1 2019/02/12 14:43:17 wiz Exp $
-
-Make sure init() exists, even though inline.
-
---- src/bwm-ng.c.orig  2015-07-23 05:17:29.000000000 +0000
-+++ src/bwm-ng.c
-@@ -26,7 +26,7 @@
- 
- /* handle interrupt signal */
- void sigint(int sig) FUNCATTR_NORETURN;
--inline void init(void);
-+static inline void init(void);
- 
- /* clear stuff and exit */
- #ifdef __STDC__
diff -r 1efe205ae249 -r 32321b753d27 net/bwm-ng/patches/patch-src_help.c
--- a/net/bwm-ng/patches/patch-src_help.c       Tue Jul 05 07:01:43 2022 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +0,0 @@
-$NetBSD: patch-src_help.c,v 1.1 2019/01/15 09:28:25 wiz Exp $
-
-Remove inline to fix build with clang.
-
---- src/help.c.orig    2015-07-07 18:50:25.000000000 +0000
-+++ src/help.c
-@@ -24,9 +24,9 @@
- #include "global_vars.h"
- #include "help.h"
- 
--inline void print_help_line(const char *short_c,const char * long_c,const char *descr);
-+void print_help_line(const char *short_c,const char * long_c,const char *descr);
- 
--inline void print_help_line(const char *short_c,const char * long_c,const char *descr) {
-+void print_help_line(const char *short_c,const char * long_c,const char *descr) {
- #ifdef LONG_OPTIONS
-     printf("  %-23s",long_c);
- #else



Home | Main Index | Thread Index | Old Index