1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
Source: golang-github-colinmarc-hdfs
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Drew Parsons <dparsons@debian.org>,
Matthew Vernon <matthew@debian.org>
Section: golang
Testsuite: autopkgtest-pkg-go
Priority: optional
Build-Depends: debhelper-compat (= 13),
dh-golang,
golang-any,
golang-github-jcmturner-gokrb5.v8-dev,
golang-github-pborman-getopt-dev,
golang-github-stretchr-testify-dev,
golang-google-protobuf-dev
Standards-Version: 4.6.1
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-colinmarc-hdfs
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-colinmarc-hdfs.git
Homepage: https://github.com/colinmarc/hdfs
Rules-Requires-Root: no
XS-Go-Import-Path: github.com/colinmarc/hdfs
Package: hdfs-cli
Architecture: any
Depends: ${misc:Depends},
${shlibs:Depends}
Built-Using: ${misc:Built-Using}
Description: CLI client for HDFS, written in go
This is a commandline client for HDFS, written in go.
Its primary aim is to be idiomatic, by enabling
your favorite unix verbs (mv, ls, etc.).
Package: golang-github-colinmarc-hdfs-dev
Architecture: all
Depends: ${misc:Depends},
golang-github-jcmturner-gokrb5.v8-dev,
golang-github-pborman-getopt-dev,
golang-github-stretchr-testify-dev,
golang-google-protobuf-dev
Built-Using: ${misc:Built-Using}
Description: Native go client library for HDFS
This is a native golang client for hdfs. It connects directly to the
namenode using the protocol buffers API.
.
It tries to be idiomatic by aping the stdlib os package, where possible,
and implements the interfaces from it, including os.FileInfo and
os.PathError.
|