Mon Apr 27 16:54:25 2020 UTC ()
devel/go-pflag: Update to version 1.0.5

Changelog picked from https://github.com/spf13/pflag/releases:

1.0.5
	Merge pull request #219 from cfromknecht/fix-mod
	Remove require pflag v1.0.3

v1.0.5-rc1
	This hopefully fixes #218, and will be promoted
	when the fix has been verified.

1.0.4
	Fix typo in go.mod

1.0.3
	Fix panic when parsing unknown flag followed by
	empty argument (#173)

1.0.2
	Add base64 encoded flag type


(nikita)
diff -r1.24 -r1.25 pkgsrc/devel/go-pflag/Makefile
diff -r1.2 -r1.3 pkgsrc/devel/go-pflag/PLIST
diff -r1.2 -r1.3 pkgsrc/devel/go-pflag/distinfo

cvs diff -r1.24 -r1.25 pkgsrc/devel/go-pflag/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/go-pflag/Attic/Makefile 2020/04/12 11:01:34 1.24
+++ pkgsrc/devel/go-pflag/Attic/Makefile 2020/04/27 16:54:25 1.25
@@ -1,18 +1,17 @@ @@ -1,18 +1,17 @@
1# $NetBSD: Makefile,v 1.24 2020/04/12 11:01:34 bsiegert Exp $ 1# $NetBSD: Makefile,v 1.25 2020/04/27 16:54:25 nikita Exp $
2 2
3DISTNAME= pflag-1.0.1 3DISTNAME= pflag-1.0.5
4PKGNAME= go-${DISTNAME} 4PKGNAME= go-${DISTNAME}
5PKGREVISION= 15 
6MASTER_SITES= ${MASTER_SITE_GITHUB:=spf13/} 5MASTER_SITES= ${MASTER_SITE_GITHUB:=spf13/}
7CATEGORIES= devel 6CATEGORIES= devel
8GITHUB_TAG= v${PKGVERSION_NOREV} 7GITHUB_TAG= v${PKGVERSION_NOREV}
9GITHUB_PROJECT= ${PKGBASE:S/^go-//} 8GITHUB_PROJECT= ${PKGBASE:S/^go-//}
10 9
11MAINTAINER= pkgsrc-users@NetBSD.org 10MAINTAINER= pkgsrc-users@NetBSD.org
12HOMEPAGE= https://github.com/spf13/pflag 11HOMEPAGE= https://github.com/spf13/pflag
13COMMENT= Replacement for flag package implementing POSIX --flags 12COMMENT= Replacement for flag package implementing POSIX --flags
14LICENSE= modified-bsd 13LICENSE= modified-bsd
15 14
16GO_DIST_BASE= ${DISTNAME} 15GO_DIST_BASE= ${DISTNAME}
17GO_SRCPATH= github.com/spf13/pflag 16GO_SRCPATH= github.com/spf13/pflag
18 17

cvs diff -r1.2 -r1.3 pkgsrc/devel/go-pflag/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/devel/go-pflag/Attic/PLIST 2018/07/21 22:04:22 1.2
+++ pkgsrc/devel/go-pflag/Attic/PLIST 2020/04/27 16:54:25 1.3
@@ -1,54 +1,69 @@ @@ -1,54 +1,69 @@
1@comment $NetBSD: PLIST,v 1.2 2018/07/21 22:04:22 minskim Exp $ 1@comment $NetBSD: PLIST,v 1.3 2020/04/27 16:54:25 nikita Exp $
2gopkg/pkg/${GO_PLATFORM}/github.com/spf13/pflag.a 2gopkg/pkg/${GO_PLATFORM}/github.com/spf13/pflag.a
3gopkg/src/github.com/spf13/pflag/LICENSE 3gopkg/src/github.com/spf13/pflag/LICENSE
4gopkg/src/github.com/spf13/pflag/README.md 4gopkg/src/github.com/spf13/pflag/README.md
5gopkg/src/github.com/spf13/pflag/bool.go 5gopkg/src/github.com/spf13/pflag/bool.go
6gopkg/src/github.com/spf13/pflag/bool_slice.go 6gopkg/src/github.com/spf13/pflag/bool_slice.go
7gopkg/src/github.com/spf13/pflag/bool_slice_test.go 7gopkg/src/github.com/spf13/pflag/bool_slice_test.go
8gopkg/src/github.com/spf13/pflag/bool_test.go 8gopkg/src/github.com/spf13/pflag/bool_test.go
9gopkg/src/github.com/spf13/pflag/bytes.go 9gopkg/src/github.com/spf13/pflag/bytes.go
10gopkg/src/github.com/spf13/pflag/bytes_test.go 10gopkg/src/github.com/spf13/pflag/bytes_test.go
11gopkg/src/github.com/spf13/pflag/count.go 11gopkg/src/github.com/spf13/pflag/count.go
12gopkg/src/github.com/spf13/pflag/count_test.go 12gopkg/src/github.com/spf13/pflag/count_test.go
13gopkg/src/github.com/spf13/pflag/duration.go 13gopkg/src/github.com/spf13/pflag/duration.go
14gopkg/src/github.com/spf13/pflag/duration_slice.go 14gopkg/src/github.com/spf13/pflag/duration_slice.go
15gopkg/src/github.com/spf13/pflag/duration_slice_test.go 15gopkg/src/github.com/spf13/pflag/duration_slice_test.go
16gopkg/src/github.com/spf13/pflag/example_test.go 16gopkg/src/github.com/spf13/pflag/example_test.go
17gopkg/src/github.com/spf13/pflag/export_test.go 17gopkg/src/github.com/spf13/pflag/export_test.go
18gopkg/src/github.com/spf13/pflag/flag.go 18gopkg/src/github.com/spf13/pflag/flag.go
19gopkg/src/github.com/spf13/pflag/flag_test.go 19gopkg/src/github.com/spf13/pflag/flag_test.go
20gopkg/src/github.com/spf13/pflag/float32.go 20gopkg/src/github.com/spf13/pflag/float32.go
 21gopkg/src/github.com/spf13/pflag/float32_slice.go
 22gopkg/src/github.com/spf13/pflag/float32_slice_test.go
21gopkg/src/github.com/spf13/pflag/float64.go 23gopkg/src/github.com/spf13/pflag/float64.go
 24gopkg/src/github.com/spf13/pflag/float64_slice.go
 25gopkg/src/github.com/spf13/pflag/float64_slice_test.go
 26gopkg/src/github.com/spf13/pflag/go.mod
 27gopkg/src/github.com/spf13/pflag/go.sum
22gopkg/src/github.com/spf13/pflag/golangflag.go 28gopkg/src/github.com/spf13/pflag/golangflag.go
23gopkg/src/github.com/spf13/pflag/golangflag_test.go 29gopkg/src/github.com/spf13/pflag/golangflag_test.go
24gopkg/src/github.com/spf13/pflag/int.go 30gopkg/src/github.com/spf13/pflag/int.go
25gopkg/src/github.com/spf13/pflag/int16.go 31gopkg/src/github.com/spf13/pflag/int16.go
26gopkg/src/github.com/spf13/pflag/int32.go 32gopkg/src/github.com/spf13/pflag/int32.go
 33gopkg/src/github.com/spf13/pflag/int32_slice.go
 34gopkg/src/github.com/spf13/pflag/int32_slice_test.go
27gopkg/src/github.com/spf13/pflag/int64.go 35gopkg/src/github.com/spf13/pflag/int64.go
 36gopkg/src/github.com/spf13/pflag/int64_slice.go
 37gopkg/src/github.com/spf13/pflag/int64_slice_test.go
28gopkg/src/github.com/spf13/pflag/int8.go 38gopkg/src/github.com/spf13/pflag/int8.go
29gopkg/src/github.com/spf13/pflag/int_slice.go 39gopkg/src/github.com/spf13/pflag/int_slice.go
30gopkg/src/github.com/spf13/pflag/int_slice_test.go 40gopkg/src/github.com/spf13/pflag/int_slice_test.go
31gopkg/src/github.com/spf13/pflag/ip.go 41gopkg/src/github.com/spf13/pflag/ip.go
32gopkg/src/github.com/spf13/pflag/ip_slice.go 42gopkg/src/github.com/spf13/pflag/ip_slice.go
33gopkg/src/github.com/spf13/pflag/ip_slice_test.go 43gopkg/src/github.com/spf13/pflag/ip_slice_test.go
34gopkg/src/github.com/spf13/pflag/ip_test.go 44gopkg/src/github.com/spf13/pflag/ip_test.go
35gopkg/src/github.com/spf13/pflag/ipmask.go 45gopkg/src/github.com/spf13/pflag/ipmask.go
36gopkg/src/github.com/spf13/pflag/ipnet.go 46gopkg/src/github.com/spf13/pflag/ipnet.go
37gopkg/src/github.com/spf13/pflag/ipnet_test.go 47gopkg/src/github.com/spf13/pflag/ipnet_test.go
38gopkg/src/github.com/spf13/pflag/printusage_test.go 48gopkg/src/github.com/spf13/pflag/printusage_test.go
39gopkg/src/github.com/spf13/pflag/string.go 49gopkg/src/github.com/spf13/pflag/string.go
40gopkg/src/github.com/spf13/pflag/string_array.go 50gopkg/src/github.com/spf13/pflag/string_array.go
41gopkg/src/github.com/spf13/pflag/string_array_test.go 51gopkg/src/github.com/spf13/pflag/string_array_test.go
42gopkg/src/github.com/spf13/pflag/string_slice.go 52gopkg/src/github.com/spf13/pflag/string_slice.go
43gopkg/src/github.com/spf13/pflag/string_slice_test.go 53gopkg/src/github.com/spf13/pflag/string_slice_test.go
 54gopkg/src/github.com/spf13/pflag/string_to_int.go
 55gopkg/src/github.com/spf13/pflag/string_to_int64.go
 56gopkg/src/github.com/spf13/pflag/string_to_int64_test.go
 57gopkg/src/github.com/spf13/pflag/string_to_int_test.go
 58gopkg/src/github.com/spf13/pflag/string_to_string.go
 59gopkg/src/github.com/spf13/pflag/string_to_string_test.go
44gopkg/src/github.com/spf13/pflag/uint.go 60gopkg/src/github.com/spf13/pflag/uint.go
45gopkg/src/github.com/spf13/pflag/uint16.go 61gopkg/src/github.com/spf13/pflag/uint16.go
46gopkg/src/github.com/spf13/pflag/uint32.go 62gopkg/src/github.com/spf13/pflag/uint32.go
47gopkg/src/github.com/spf13/pflag/uint64.go 63gopkg/src/github.com/spf13/pflag/uint64.go
48gopkg/src/github.com/spf13/pflag/uint8.go 64gopkg/src/github.com/spf13/pflag/uint8.go
49gopkg/src/github.com/spf13/pflag/uint_slice.go 65gopkg/src/github.com/spf13/pflag/uint_slice.go
50gopkg/src/github.com/spf13/pflag/uint_slice_test.go 66gopkg/src/github.com/spf13/pflag/uint_slice_test.go
51gopkg/src/github.com/spf13/pflag/verify/all.sh 67gopkg/src/github.com/spf13/pflag/verify/all.sh
52gopkg/src/github.com/spf13/pflag/verify/gofmt.sh 68gopkg/src/github.com/spf13/pflag/verify/gofmt.sh
53gopkg/src/github.com/spf13/pflag/verify/golint.sh 69gopkg/src/github.com/spf13/pflag/verify/golint.sh
54@pkgdir bin 

cvs diff -r1.2 -r1.3 pkgsrc/devel/go-pflag/Attic/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/go-pflag/Attic/distinfo 2018/07/21 22:04:22 1.2
+++ pkgsrc/devel/go-pflag/Attic/distinfo 2020/04/27 16:54:25 1.3
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.2 2018/07/21 22:04:22 minskim Exp $ 1$NetBSD: distinfo,v 1.3 2020/04/27 16:54:25 nikita Exp $
2 2
3SHA1 (pflag-1.0.1.tar.gz) = 4bf700660caef358b41cabcf51993f18636b766a 3SHA1 (pflag-1.0.5.tar.gz) = 4d2a18cbeb28d0c0d5e5ffbd6740a8539e5d8679
4RMD160 (pflag-1.0.1.tar.gz) = 0272a92181dc7e99f3073dc7ead85497ff90aa61 4RMD160 (pflag-1.0.5.tar.gz) = f677e1a71a3943f4397c6a73561f1c3aa6fcb3f6
5SHA512 (pflag-1.0.1.tar.gz) = e09066442bd7c98b3a3c2de815d89ce27d97ccec242e1e47ff38e4f8ece442657573bddab5bd560f644f62304ca6bdca3b4e002ebc330b78e69a96eccd8e778b 5SHA512 (pflag-1.0.5.tar.gz) = ffdfaa3b2431cbb0934cb996af158aa56132005f978a7e3a954e43f24efed36805213d5aa03bd04792119e909a0d54a8b76b0c891f83cb4f6a813a73a704e13b
6Size (pflag-1.0.1.tar.gz) = 43244 bytes 6Size (pflag-1.0.5.tar.gz) = 50796 bytes