pkgsrc-WIP-changes archive

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

gh: Add several GO_DEPS and update TODO with missing ones



Module Name:	pkgsrc-wip
Committed By:	Leonardo Taccari <leot%NetBSD.org@localhost>
Pushed By:	leot
Date:		Tue Feb 18 16:47:37 2020 +0100
Changeset:	b2c7bc89e562559b001a81fff65dbef30a79474e

Modified Files:
	gh/Makefile
	gh/TODO
	gh/distinfo

Log Message:
gh: Add several GO_DEPS and update TODO with missing ones

Package still doesn't build, more GO_DEPS needed.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=b2c7bc89e562559b001a81fff65dbef30a79474e

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 gh/Makefile |  28 ++++++++--------
 gh/TODO     | 106 +++++++++++++++++++++---------------------------------------
 gh/distinfo |  56 +++++++++++++++++++++++++++++---
 3 files changed, 101 insertions(+), 89 deletions(-)

diffs:
diff --git a/gh/Makefile b/gh/Makefile
index 800740b987..9ff85c2be1 100644
--- a/gh/Makefile
+++ b/gh/Makefile
@@ -16,21 +16,18 @@ GO_SRCPATH=	github.com/cli/cli
 
 DEPENDS+=		git-base-[0-9]*:../../devel/git-base
 
-# TODO: fill the :sha part
-#GO_DEPS+=	github.com/AlecAivazis/survey/v2
-#GO_DEPS+=	github.com/google/shlex
-#GO_DEPS+=	github.com/hashicorp/go-version
-#GO_DEPS+=	github.com/kballard/go-shellquote
-#GO_DEPS+=	github.com/mattn/go-colorable
-#GO_DEPS+=	github.com/mattn/go-isatty
-#GO_DEPS+=	github.com/mgutz/ansi
-#GO_DEPS+=	github.com/mitchellh/go-homedir
-#GO_DEPS+=	github.com/spf13/cobra
-#GO_DEPS+=	github.com/spf13/pflag
-#GO_DEPS+=	github.com/vilmibm/go-termd
-# TODO: ...and also use GODEP_REDIRECTS for these ones!
-#GO_DEPS+=	golang.org/x/crypto/ssh/terminal
-#GO_DEPS+=	gopkg.in/yaml.v3
+GO_DEPS+=	github.com/AlecAivazis/survey:eb3a4d3114c3ec1cc6fd0b0d28afac0208a37fac
+GO_DEPS+=	github.com/go-yaml/yaml:a6ecf24a6d716d933bcbc255a2f5d492285b54f5:gopkg.in/yaml.v3
+GO_DEPS+=	github.com/google/shlex:e7afc7fbc51079733e9468cdfd1efcd7d196cd1d
+GO_DEPS+=	github.com/hashicorp/go-version:2b13044f5cdd3833370d41ce57d8bf3cec5e62b8
+GO_DEPS+=	github.com/kballard/go-shellquote:95032a82bc518f77982ea72343cc1ade730072f0
+GO_DEPS+=	github.com/mattn/go-colorable:c742d6fb21c22a5bb6f768a683e6782e52fe0311
+GO_DEPS+=	github.com/mattn/go-isatty:cb30d6282491c185f77d9bec5d25de1bb61a06bc
+GO_DEPS+=	github.com/mgutz/ansi:9520e82c474b0a04dd04f8a40959027271bab992
+GO_DEPS+=	github.com/mitchellh/go-homedir:af06845cf3004701891bf4fdb884bfe4920b3727
+GO_DEPS+=	github.com/spf13/cobra:89c7ffb5129bebd58cd68878c13af2144a5791f3
+GO_DEPS+=	github.com/spf13/pflag:2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab
+GO_DEPS+=	github.com/vilmibm/go-termd:ceed4642a3749eee623ccd07457f8d2b82b8fdd2
 
 CHECK_RELRO_SKIP+=	bin/gh
 
@@ -40,4 +37,5 @@ do-install:
 	${INSTALL_PROGRAM} ${WRKDIR}/bin/gh ${DESTDIR}${PREFIX}/bin
 
 .include "../../lang/go/go-package.mk"
+.include "../../security/go-crypto/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
diff --git a/gh/TODO b/gh/TODO
index 578a2209ec..f2e7ebdcd9 100644
--- a/gh/TODO
+++ b/gh/TODO
@@ -1,74 +1,40 @@
 The build fails because dependencies are not provided:
 
  | ===> Building for gh-0.5.4
- | /tmp/pkgsrc/wip/gh/work/src/github.com/cli/cli/pkg/browser/browser.go:9:2: cannot find package "github.com/google/shlex" in any of:
- |         /usr/pkg/go113/src/github.com/google/shlex (from $GOROOT)
- |         /tmp/pkgsrc/wip/gh/work/src/github.com/google/shlex (from $GOPATH)
- |         /tmp/pkgsrc/wip/gh/work/.buildlink/gopkg/src/github.com/google/shlex
- | /tmp/pkgsrc/wip/gh/work/src/github.com/cli/cli/command/title_body_survey.go:6:2: cannot find package "github.com/AlecAivazis/survey/v2" in any of:
- |         /usr/pkg/go113/src/github.com/AlecAivazis/survey/v2 (from $GOROOT)
- |         /tmp/pkgsrc/wip/gh/work/src/github.com/AlecAivazis/survey/v2 (from $GOPATH)
- |         /tmp/pkgsrc/wip/gh/work/.buildlink/gopkg/src/github.com/AlecAivazis/survey/v2
- | /tmp/pkgsrc/wip/gh/work/src/github.com/cli/cli/pkg/surveyext/editor.go:16:2: cannot find package "github.com/AlecAivazis/survey/v2/terminal" in any of:
- |         /usr/pkg/go113/src/github.com/AlecAivazis/survey/v2/terminal (from $GOROOT)
- |         /tmp/pkgsrc/wip/gh/work/src/github.com/AlecAivazis/survey/v2/terminal (from $GOPATH)
- |         /tmp/pkgsrc/wip/gh/work/.buildlink/gopkg/src/github.com/AlecAivazis/survey/v2/terminal
- | /tmp/pkgsrc/wip/gh/work/src/github.com/cli/cli/pkg/surveyext/editor.go:17:2: cannot find package "github.com/kballard/go-shellquote" in any of:
- |         /usr/pkg/go113/src/github.com/kballard/go-shellquote (from $GOROOT)
- |         /tmp/pkgsrc/wip/gh/work/src/github.com/kballard/go-shellquote (from $GOPATH)
- |         /tmp/pkgsrc/wip/gh/work/.buildlink/gopkg/src/github.com/kballard/go-shellquote
- | /tmp/pkgsrc/wip/gh/work/src/github.com/cli/cli/utils/color.go:7:2: cannot find package "github.com/mattn/go-colorable" in any of:
- |         /usr/pkg/go113/src/github.com/mattn/go-colorable (from $GOROOT)
- |         /tmp/pkgsrc/wip/gh/work/src/github.com/mattn/go-colorable (from $GOPATH)
- |         /tmp/pkgsrc/wip/gh/work/.buildlink/gopkg/src/github.com/mattn/go-colorable
- | /tmp/pkgsrc/wip/gh/work/src/github.com/cli/cli/utils/color.go:8:2: cannot find package "github.com/mattn/go-isatty" in any of:
- |         /usr/pkg/go113/src/github.com/mattn/go-isatty (from $GOROOT)
- |         /tmp/pkgsrc/wip/gh/work/src/github.com/mattn/go-isatty (from $GOPATH)
- |         /tmp/pkgsrc/wip/gh/work/.buildlink/gopkg/src/github.com/mattn/go-isatty
- | /tmp/pkgsrc/wip/gh/work/src/github.com/cli/cli/utils/color.go:9:2: cannot find package "github.com/mgutz/ansi" in any of:
- |         /usr/pkg/go113/src/github.com/mgutz/ansi (from $GOROOT)
- |         /tmp/pkgsrc/wip/gh/work/src/github.com/mgutz/ansi (from $GOPATH)
- |         /tmp/pkgsrc/wip/gh/work/.buildlink/gopkg/src/github.com/mgutz/ansi
- | /tmp/pkgsrc/wip/gh/work/src/github.com/cli/cli/git/ssh_config.go:12:2: cannot find package "github.com/mitchellh/go-homedir" in any of:
- |         /usr/pkg/go113/src/github.com/mitchellh/go-homedir (from $GOROOT)
- |         /tmp/pkgsrc/wip/gh/work/src/github.com/mitchellh/go-homedir (from $GOPATH)
- |         /tmp/pkgsrc/wip/gh/work/.buildlink/gopkg/src/github.com/mitchellh/go-homedir
- | /tmp/pkgsrc/wip/gh/work/src/github.com/cli/cli/internal/cobrafish/completion.go:12:2: cannot find package "github.com/spf13/cobra" in any of:
- |         /usr/pkg/go113/src/github.com/spf13/cobra (from $GOROOT)
- |         /tmp/pkgsrc/wip/gh/work/src/github.com/spf13/cobra (from $GOPATH)
- |         /tmp/pkgsrc/wip/gh/work/.buildlink/gopkg/src/github.com/spf13/cobra
- | /tmp/pkgsrc/wip/gh/work/src/github.com/cli/cli/cmd/gen-docs/main.go:8:2: cannot find package "github.com/spf13/cobra/doc" in any of:
- |         /usr/pkg/go113/src/github.com/spf13/cobra/doc (from $GOROOT)
- |         /tmp/pkgsrc/wip/gh/work/src/github.com/spf13/cobra/doc (from $GOPATH)
- |         /tmp/pkgsrc/wip/gh/work/.buildlink/gopkg/src/github.com/spf13/cobra/doc
- | /tmp/pkgsrc/wip/gh/work/src/github.com/cli/cli/internal/cobrafish/completion.go:13:2: cannot find package "github.com/spf13/pflag" in any of:
- |         /usr/pkg/go113/src/github.com/spf13/pflag (from $GOROOT)
- |         /tmp/pkgsrc/wip/gh/work/src/github.com/spf13/pflag (from $GOPATH)
- |         /tmp/pkgsrc/wip/gh/work/.buildlink/gopkg/src/github.com/spf13/pflag
- | /tmp/pkgsrc/wip/gh/work/src/github.com/cli/cli/utils/utils.go:9:2: cannot find package "github.com/vilmibm/go-termd" in any of:
- |         /usr/pkg/go113/src/github.com/vilmibm/go-termd (from $GOROOT)
- |         /tmp/pkgsrc/wip/gh/work/src/github.com/vilmibm/go-termd (from $GOPATH)
- |         /tmp/pkgsrc/wip/gh/work/.buildlink/gopkg/src/github.com/vilmibm/go-termd
- | /tmp/pkgsrc/wip/gh/work/src/github.com/cli/cli/utils/table_printer.go:12:2: cannot find package "golang.org/x/crypto/ssh/terminal" in any of:
- |         /usr/pkg/go113/src/golang.org/x/crypto/ssh/terminal (from $GOROOT)
- |         /tmp/pkgsrc/wip/gh/work/src/golang.org/x/crypto/ssh/terminal (from $GOPATH)
- |         /tmp/pkgsrc/wip/gh/work/.buildlink/gopkg/src/golang.org/x/crypto/ssh/terminal
- | /tmp/pkgsrc/wip/gh/work/src/github.com/cli/cli/context/config_file.go:10:2: cannot find package "gopkg.in/yaml.v3" in any of:
- |         /usr/pkg/go113/src/gopkg.in/yaml.v3 (from $GOROOT)
- |         /tmp/pkgsrc/wip/gh/work/src/gopkg.in/yaml.v3 (from $GOPATH)
- |         /tmp/pkgsrc/wip/gh/work/.buildlink/gopkg/src/gopkg.in/yaml.v3
- | /tmp/pkgsrc/wip/gh/work/src/github.com/cli/cli/update/update.go:9:2: cannot find package "github.com/hashicorp/go-version" in any of:
- |         /usr/pkg/go113/src/github.com/hashicorp/go-version (from $GOROOT)
- |         /tmp/pkgsrc/wip/gh/work/src/github.com/hashicorp/go-version (from $GOPATH)
- |         /tmp/pkgsrc/wip/gh/work/.buildlink/gopkg/src/github.com/hashicorp/go-version
+ | /tmp/pkgsrc/wip/gh/work/src/github.com/vilmibm/go-termd/highlight.go:6:2: cannot find package "github.com/alecthomas/chroma" in any of:
+ |         /usr/pkg/go113/src/github.com/alecthomas/chroma (from $GOROOT)
+ |         /tmp/pkgsrc/wip/gh/work/src/github.com/alecthomas/chroma (from $GOPATH)
+ |         /tmp/pkgsrc/wip/gh/work/.buildlink/gopkg/src/github.com/alecthomas/chroma
+ | /tmp/pkgsrc/wip/gh/work/src/github.com/vilmibm/go-termd/highlight.go:7:2: cannot find package "github.com/alecthomas/chroma/lexers" in any of:
+ |         /usr/pkg/go113/src/github.com/alecthomas/chroma/lexers (from $GOROOT)
+ |         /tmp/pkgsrc/wip/gh/work/src/github.com/alecthomas/chroma/lexers (from $GOPATH)
+ |         /tmp/pkgsrc/wip/gh/work/.buildlink/gopkg/src/github.com/alecthomas/chroma/lexers
+ | /tmp/pkgsrc/wip/gh/work/src/github.com/vilmibm/go-termd/theme.go:7:2: cannot find package "github.com/aybabtme/rgbterm" in any of:
+ |         /usr/pkg/go113/src/github.com/aybabtme/rgbterm (from $GOROOT)
+ |         /tmp/pkgsrc/wip/gh/work/src/github.com/aybabtme/rgbterm (from $GOPATH)
+ |         /tmp/pkgsrc/wip/gh/work/.buildlink/gopkg/src/github.com/aybabtme/rgbterm
+ | /tmp/pkgsrc/wip/gh/work/src/github.com/spf13/cobra/doc/man_docs.go:27:2: cannot find package "github.com/cpuguy83/go-md2man/v2/md2man" in any of:
+ |         /usr/pkg/go113/src/github.com/cpuguy83/go-md2man/v2/md2man (from $GOROOT)
+ |         /tmp/pkgsrc/wip/gh/work/src/github.com/cpuguy83/go-md2man/v2/md2man (from $GOPATH)
+ |         /tmp/pkgsrc/wip/gh/work/.buildlink/gopkg/src/github.com/cpuguy83/go-md2man/v2/md2man
+ | /tmp/pkgsrc/wip/gh/work/src/github.com/vilmibm/go-termd/termd.go:9:2: cannot find package "github.com/kr/text" in any of:
+ |         /usr/pkg/go113/src/github.com/kr/text (from $GOROOT)
+ |         /tmp/pkgsrc/wip/gh/work/src/github.com/kr/text (from $GOPATH)
+ |         /tmp/pkgsrc/wip/gh/work/.buildlink/gopkg/src/github.com/kr/text
+ | /tmp/pkgsrc/wip/gh/work/src/github.com/vilmibm/go-termd/termd.go:10:2: cannot find package "github.com/mitchellh/go-wordwrap" in any of:
+ |         /usr/pkg/go113/src/github.com/mitchellh/go-wordwrap (from $GOROOT)
+ |         /tmp/pkgsrc/wip/gh/work/src/github.com/mitchellh/go-wordwrap (from $GOPATH)
+ |         /tmp/pkgsrc/wip/gh/work/.buildlink/gopkg/src/github.com/mitchellh/go-wordwrap
+ | /tmp/pkgsrc/wip/gh/work/src/github.com/vilmibm/go-termd/termd.go:11:2: cannot find package "github.com/russross/blackfriday/v2" in any of:
+ |         /usr/pkg/go113/src/github.com/russross/blackfriday/v2 (from $GOROOT)
+ |         /tmp/pkgsrc/wip/gh/work/src/github.com/russross/blackfriday/v2 (from $GOPATH)
+ |         /tmp/pkgsrc/wip/gh/work/.buildlink/gopkg/src/github.com/russross/blackfriday/v2
+ | /tmp/pkgsrc/wip/gh/work/src/github.com/vilmibm/go-termd/theme.go:8:2: cannot find package "github.com/tj/go-css/csshex" in any of:
+ |         /usr/pkg/go113/src/github.com/tj/go-css/csshex (from $GOROOT)
+ |         /tmp/pkgsrc/wip/gh/work/src/github.com/tj/go-css/csshex (from $GOPATH)
+ |         /tmp/pkgsrc/wip/gh/work/.buildlink/gopkg/src/github.com/tj/go-css/csshex
+ | /tmp/pkgsrc/wip/gh/work/src/github.com/spf13/cobra/doc/yaml_docs.go:26:2: cannot find package "gopkg.in/yaml.v2" in any of:
+ |         /usr/pkg/go113/src/gopkg.in/yaml.v2 (from $GOROOT)
+ |         /tmp/pkgsrc/wip/gh/work/src/gopkg.in/yaml.v2 (from $GOPATH)
+ |         /tmp/pkgsrc/wip/gh/work/.buildlink/gopkg/src/gopkg.in/yaml.v2
  | *** Error code 1
-
-Should we package all these dependencies?
-
-Please also note that by including lang/go/go-dep.mk and running `print-go-deps'
-it fails due:
-
- | % make print-go-deps
- | /usr/bin/awk: can't open file /tmp/pkgsrc/wip/gh/work/src/github.com/cli/cli/Gopkg.lock
- |  source line number 1
- | *** Error code 2
diff --git a/gh/distinfo b/gh/distinfo
index 087d19f3d2..cf8302e0fb 100644
--- a/gh/distinfo
+++ b/gh/distinfo
@@ -1,6 +1,54 @@
 $NetBSD$
 
-SHA1 (gh-0.5.5.tar.gz) = 53c1959214302c105024870bc1fd12f5c2863709
-RMD160 (gh-0.5.5.tar.gz) = 248f448515b143fec830cc79e50ce4648f52f5e8
-SHA512 (gh-0.5.5.tar.gz) = c72c4a0db05fe08c7f132081bbb568b4653553cc65e90f3b686079623857b9307ec8f293e82860bae7a706bd496049543ab181a244618954f4435285b42bbaa9
-Size (gh-0.5.5.tar.gz) = 176434 bytes
+SHA1 (gh-0.5.5/2b13044f5cdd3833370d41ce57d8bf3cec5e62b8.tar.gz) = ea706d8ed98f625443f037442b87275b01ba5571
+RMD160 (gh-0.5.5/2b13044f5cdd3833370d41ce57d8bf3cec5e62b8.tar.gz) = ea46b118ca1f1ffb791d1ba029c0af723b03fed9
+SHA512 (gh-0.5.5/2b13044f5cdd3833370d41ce57d8bf3cec5e62b8.tar.gz) = 9074d2f3f08ee5c9a93e6904dc72ac96e046226869265f5717a2b34af2b3c888e4ba36f687cca7d0e91f7bb89f0c6445096f80388af7965bc554527e338fcc75
+Size (gh-0.5.5/2b13044f5cdd3833370d41ce57d8bf3cec5e62b8.tar.gz) = 13769 bytes
+SHA1 (gh-0.5.5/2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab.tar.gz) = dfa02b2327f13dcc167f3917bc0762e68e169a41
+RMD160 (gh-0.5.5/2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab.tar.gz) = 29296d1d7a3424156332fe9931363008d6cf82fa
+SHA512 (gh-0.5.5/2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab.tar.gz) = c579ad91387f90e6fe630d9711904d63dc8b4fa71d49aac83d5e6489e5150f9d6c8aa5444bf5f2357f67eedab82bd7f32ad00975da5267290c8957fc416a904d
+Size (gh-0.5.5/2e9d26c8c37aae03e3f9d4e90b7116f5accb7cab.tar.gz) = 50880 bytes
+SHA1 (gh-0.5.5/89c7ffb5129bebd58cd68878c13af2144a5791f3.tar.gz) = da8b072f0ccc3968b00cf5e7c1720b9973ece0de
+RMD160 (gh-0.5.5/89c7ffb5129bebd58cd68878c13af2144a5791f3.tar.gz) = 8a1798fd9a8dacfca3c859778fdd4e5cf84441c6
+SHA512 (gh-0.5.5/89c7ffb5129bebd58cd68878c13af2144a5791f3.tar.gz) = ce37e9e97f0c98138b6a0a7f7fdfcd804386267b272cb7a0fceab71ac8a9a2dbad136c19f0f3bf41ae404cbf701956575758ec90dcf8917c0863bd8819fed987
+Size (gh-0.5.5/89c7ffb5129bebd58cd68878c13af2144a5791f3.tar.gz) = 116902 bytes
+SHA1 (gh-0.5.5/95032a82bc518f77982ea72343cc1ade730072f0.tar.gz) = 3f10669cbb7fbed3f92dcdf2814927ed755f2ea3
+RMD160 (gh-0.5.5/95032a82bc518f77982ea72343cc1ade730072f0.tar.gz) = ad1b313d6b9d1fb3c32f19385cb6803826bc89a4
+SHA512 (gh-0.5.5/95032a82bc518f77982ea72343cc1ade730072f0.tar.gz) = 6fc381005c055aff7e451145bd2dd5a20591481b416d2d94c1c05ddcfac84c76e3915046d86073f3ace97ddb38eeb6e8a925825ca4629f1687b7f274809d9c83
+Size (gh-0.5.5/95032a82bc518f77982ea72343cc1ade730072f0.tar.gz) = 4327 bytes
+SHA1 (gh-0.5.5/9520e82c474b0a04dd04f8a40959027271bab992.tar.gz) = 9ff12b6caf53921fb80ca4e0c75bec49126638a2
+RMD160 (gh-0.5.5/9520e82c474b0a04dd04f8a40959027271bab992.tar.gz) = bdd00518d081e8cced5150cfbb2663cbbc455e86
+SHA512 (gh-0.5.5/9520e82c474b0a04dd04f8a40959027271bab992.tar.gz) = 893f9823f06edaeb35dbb1a19d908bd08a7d8df6527addf3d7197efeb0c2a83d85405043efd910027d472ed25cf869f4999ece4241cb546e9f648843bdd006cd
+Size (gh-0.5.5/9520e82c474b0a04dd04f8a40959027271bab992.tar.gz) = 4874 bytes
+SHA1 (gh-0.5.5/a6ecf24a6d716d933bcbc255a2f5d492285b54f5.tar.gz) = 0bbd3d97c78af9b1b486af83fdb44cb31bbc998c
+RMD160 (gh-0.5.5/a6ecf24a6d716d933bcbc255a2f5d492285b54f5.tar.gz) = 78bbe5256fe329b737a58a6a6463178bd9d6ce2a
+SHA512 (gh-0.5.5/a6ecf24a6d716d933bcbc255a2f5d492285b54f5.tar.gz) = e1274971c41cd622e94770005670fee15e1c5096b13d3596afdc644fce93f00f4fe65f72bd183df2eb45282b327b9bfe4add14d9a3d5563945c4d3df794d81d4
+Size (gh-0.5.5/a6ecf24a6d716d933bcbc255a2f5d492285b54f5.tar.gz) = 86785 bytes
+SHA1 (gh-0.5.5/af06845cf3004701891bf4fdb884bfe4920b3727.tar.gz) = b89c5b32f97b3c36eae6363c08e3aaaa603c2f08
+RMD160 (gh-0.5.5/af06845cf3004701891bf4fdb884bfe4920b3727.tar.gz) = e34ffe5b6e65f78a6a086840222c3df0bf64ea3b
+SHA512 (gh-0.5.5/af06845cf3004701891bf4fdb884bfe4920b3727.tar.gz) = 049d31e1ebe03ad0f7312819414aefac9958cce3ef14704af32104af6140f31a62a23579a12bed80e8514147ec4a93bec8eaf0f8cba8cceaeecd05d577273b3a
+Size (gh-0.5.5/af06845cf3004701891bf4fdb884bfe4920b3727.tar.gz) = 3362 bytes
+SHA1 (gh-0.5.5/c742d6fb21c22a5bb6f768a683e6782e52fe0311.tar.gz) = 8cf7bdc3bc9136ca40c93c0498ac5632e487eded
+RMD160 (gh-0.5.5/c742d6fb21c22a5bb6f768a683e6782e52fe0311.tar.gz) = 65d2aa212c717225e338042d0d04a9f7de1ce3f9
+SHA512 (gh-0.5.5/c742d6fb21c22a5bb6f768a683e6782e52fe0311.tar.gz) = 85bcfaebeb4dd98ad828db0902da411afc652a9cda9abc5f90f525c31765bb55c8e00b368a193a0e68ae839332b14e8a9001cdb92ba71a51335cadcf1d6cab16
+Size (gh-0.5.5/c742d6fb21c22a5bb6f768a683e6782e52fe0311.tar.gz) = 9511 bytes
+SHA1 (gh-0.5.5/cb30d6282491c185f77d9bec5d25de1bb61a06bc.tar.gz) = c9ea4702ef2365972417e67661b2a8a332b24ac4
+RMD160 (gh-0.5.5/cb30d6282491c185f77d9bec5d25de1bb61a06bc.tar.gz) = 2af6fce1fc405deb9d205b2f757e1560e8e55933
+SHA512 (gh-0.5.5/cb30d6282491c185f77d9bec5d25de1bb61a06bc.tar.gz) = ecdd66517409717a175677679f7ac9599f1d26a3bfe5a7a1f49d1d2a757b7da46ac9ebae1cdaf7089bbe12a1ab37bf0e94cde16816ba072cb6c039343334a168
+Size (gh-0.5.5/cb30d6282491c185f77d9bec5d25de1bb61a06bc.tar.gz) = 4475 bytes
+SHA1 (gh-0.5.5/ceed4642a3749eee623ccd07457f8d2b82b8fdd2.tar.gz) = d84e890462cd5ea0daecd222bd14da0669b57429
+RMD160 (gh-0.5.5/ceed4642a3749eee623ccd07457f8d2b82b8fdd2.tar.gz) = d02efb76115eac533d76af5d3c24d384ce3cdec5
+SHA512 (gh-0.5.5/ceed4642a3749eee623ccd07457f8d2b82b8fdd2.tar.gz) = 2127420a88af7342995bfe8ee322da26778c1e853205efa20a4350accc0ee37b199699bc05fc1224717e8cd00cba62c4ca0327ce93673389af812ba6a39626f1
+Size (gh-0.5.5/ceed4642a3749eee623ccd07457f8d2b82b8fdd2.tar.gz) = 9094 bytes
+SHA1 (gh-0.5.5/e7afc7fbc51079733e9468cdfd1efcd7d196cd1d.tar.gz) = 45ade3815bded48003f8ded50d868921c73a6aad
+RMD160 (gh-0.5.5/e7afc7fbc51079733e9468cdfd1efcd7d196cd1d.tar.gz) = 7f26f9c6bc0093fc8d9a0b4b50a3be857d69ff5e
+SHA512 (gh-0.5.5/e7afc7fbc51079733e9468cdfd1efcd7d196cd1d.tar.gz) = 2b565209689b8791a70658aa9e016acf5d8db1322cf0f2c0c9ce8b6da34adf40aa7a1b0432d471bc147f6935dbeb8f06fa390a1c7b149cca3682d54038caeed8
+Size (gh-0.5.5/e7afc7fbc51079733e9468cdfd1efcd7d196cd1d.tar.gz) = 7342 bytes
+SHA1 (gh-0.5.5/eb3a4d3114c3ec1cc6fd0b0d28afac0208a37fac.tar.gz) = 77d91f12ecbbe4d72036b43b0dcb341845d0546e
+RMD160 (gh-0.5.5/eb3a4d3114c3ec1cc6fd0b0d28afac0208a37fac.tar.gz) = 76b9fd2662a3522409af114b397a0926daa61758
+SHA512 (gh-0.5.5/eb3a4d3114c3ec1cc6fd0b0d28afac0208a37fac.tar.gz) = 154e98b81d5ca5d0188c2af4eb4dccfeab9203a206c7c76da9be665d35c9ee3afab8b8ec6dc6bad2ef70f96015dae81d42f59e5c42985dc0d29ac0569cf342d4
+Size (gh-0.5.5/eb3a4d3114c3ec1cc6fd0b0d28afac0208a37fac.tar.gz) = 1326657 bytes
+SHA1 (gh-0.5.5/gh-0.5.5.tar.gz) = 53c1959214302c105024870bc1fd12f5c2863709
+RMD160 (gh-0.5.5/gh-0.5.5.tar.gz) = 248f448515b143fec830cc79e50ce4648f52f5e8
+SHA512 (gh-0.5.5/gh-0.5.5.tar.gz) = c72c4a0db05fe08c7f132081bbb568b4653553cc65e90f3b686079623857b9307ec8f293e82860bae7a706bd496049543ab181a244618954f4435285b42bbaa9
+Size (gh-0.5.5/gh-0.5.5.tar.gz) = 176434 bytes


Home | Main Index | Thread Index | Old Index