Bug#1081359: ITP: golang-github-junegunn-go-shellwords -- Parse line as shell words

2024-09-10 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-github-junegunn-go-shellwords
  Version : 0.0~git20240813.a62c48c-1
  Upstream Author : Junegunn Choi
* URL : https://github.com/junegunn/go-shellwords
* License : Expat
  Programming Lang: Go
  Description : Parse line as shell words

 This is a fork of golang-github-mattn-go-shellwords to add missing
 functionality. Parses line as shell words.


This is a dependency of the latest version of fzf.



Bug#1020398: ITP: jqp -- A TUI playground to experiment with jq

2022-09-20 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: jqp
  Version : 0.1.0-1
  Upstream Author : Noah Gorstein
* URL : https://github.com/noahgorstein/jqp
* License : Expat
  Programming Lang: Go
  Description : A TUI playground to experiment with jq

 A TUI tool that allows for experimentation with jq with fast iteration. This
 application utilizes itchny's (https://github.com/itchyny) implementation of
 jq written in Go, gojq (https://github.com/itchyny/gojq).

This package will be team maintained by the go team.



Bug#1020272: ITP: wormhole-william -- End-to-end encrypted file transfer. A magic wormhole CLI and API in Go (golang).

2022-09-18 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: wormhole-william
  Version : 1.0.6-1
  Upstream Author : Peter Sanford
* URL : https://github.com/psanford/wormhole-william
* License : Expat
  Programming Lang: Go
  Description : End-to-end encrypted file transfer. A magic wormhole CLI 
and API in Go (golang).

 wormhole-william

 wormhole-william is a Go (golang) implementation of magic wormhole
 (https://magic-wormhole.readthedocs.io/en/latest/). It provides secure
 end-to-end encrypted file transfers between computers. The endpoints are
 connected using the same "wormhole code".

 wormhole-william is compatible with the official python magic wormhole
 cli tool (https://github.com/warner/magic-wormhole).

 Currently, wormhole-william supports:

  * sending and receiving text over the wormhole protocol
  * sending and receiving files over the transit protocol
  * sending and receiving directories over the transit protocol

This is a dependency of termshark 2.4.0. It will be team maintained by the go
team.



Bug#1020271: ITP: golang-nhooyr-websocket -- Minimal and idiomatic WebSocket library for Go

2022-09-18 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-nhooyr-websocket
  Version : 1.8.7-1
  Upstream Author : Anmol Sethi
* URL : https://github.com/nhooyr/websocket
* License : Expat
  Programming Lang: Go
  Description : Minimal and idiomatic WebSocket library for Go

 websocket is a minimal and idiomatic WebSocket library for Go.

 Highlights

  * Minimal and idiomatic API
  * First class context.Context (https://blog.golang.org/context) support
  * Fully passes the WebSocket autobahn-testsuite
(https://github.com/crossbario/autobahn-testsuite)
  * Single dependency
(https://pkg.go.dev/nhooyr.io/websocket?tab=imports)
  * JSON and protobuf helpers in the wsjson
(https://pkg.go.dev/nhooyr.io/websocket/wsjson) and wspb
(https://pkg.go.dev/nhooyr.io/websocket/wspb) subpackages
  * Zero alloc reads and writes
  * Concurrent writes
  * Close handshake (https://pkg.go.dev/nhooyr.io/websocket#Conn.Close)
  * net.Conn (https://pkg.go.dev/nhooyr.io/websocket#NetConn) wrapper
  * Ping pong (https://pkg.go.dev/nhooyr.io/websocket#Conn.Ping) API
  * RFC 7692 (https://tools.ietf.org/html/rfc7692) permessage-deflate
compression
  * Compile to Wasm (https://pkg.go.dev/nhooyr.io/websocket#hdr-Wasm)

This is a dependency for wormhole-william, which is in turn a dependency for
the new release of termshark. This package will be team maintaned by the go
team.



Bug#1020270: ITP: golang-debian-vasudev-gospake2 -- Go SPAKE2 Implementation

2022-09-18 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-debian-vasudev-gospake2
  Version : 0.2.1+git20210510.d916299-1
  Upstream Author : Vasudev Kamath 
* URL : https://salsa.debian.org/vasudev/gospake2
* License : Expat or GPL-3
  Programming Lang: Go
  Description : Go SPAKE2 Implementation (library)

 Implementation of SPAKE2 key exchange protocol which interoperates with Rust
 Haskell and Python versions.

 This package defines the behavior of group and its element as package groups.
 It also implements 2 groups ed25519 and multiplicative group over integer as
 2 packages. SPAKE2 calculation uses ed25519 as default group and
 allows user to switch to group of his choice.

This is a dependency for wormhole-william, which is in turn a dependency for
the new release of termshark. This package will be team maintaned by the go
team.



Bug#1019867: ITP: qrterminal -- Display QR Codes in terminal

2022-09-14 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: qrterminal
  Version : 3.0.0-1
  Upstream Author : Mark Percival
* URL : https://github.com/mdp/qrterminal
* License : Expat
  Programming Lang: Go
  Description : Display QR Codes in terminal

 A golang library for generating QR codes in the terminal.
 
 Originally this was a port of the NodeJS version. Recently it's been updated
 to allow for smaller code generation using ASCII 'half blocks'

This package will be team maintained by the go team. This is a dependency of
wormhole-william, which is in turn a dependency of termshark 4.2.0



Bug#1019859: ITP: golang-gitlab-jonas.jasas-condchan -- TODO

2022-09-14 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-gitlab-jonas.jasas-condchan
  Version : 0.0~git20190210.36637ad-1
  Upstream Author : Jonas Jasas
* URL : https://gitlab.com/jonas.jasas/condchan
* License : Expat
  Programming Lang: Go
  Description : Cancellable sync.Cond

 CondChan is a sync.Cond with the ability to wait in select statement.

 - Adds waiting in select statement feature
 - Implements all sync.Cond interface
 - Passes all sync.Cond tests
 - Implemented using channels
 - Just ~37% slower comparing to sync.Cond

This package will be team-maintaned. This is a dependency of termshark



Bug#1019856: ITP: golang-github-flytam-filenamify -- Convert a string to a valid safe filename on Golang

2022-09-14 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-github-flytam-filenamify
  Version : 1.1.1-1
  Upstream Author : tanjiahui
* URL : https://github.com/flytam/filenamify
* License : Expat
  Programming Lang: Go
  Description : Convert a string to a valid safe filename

 Converts a string to a valid safe filename.

Package will be team maintained by the go team. A new dependency of termshark
2.4.0



Bug#1009715: ITP: golang-github-leonelquinteros-gotext -- Go (Golang) GNU gettext utilities package

2022-04-14 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-github-leonelquinteros-gotext
  Version : 1.5.0-1
  Upstream Author : Leonel Quinteros
* URL : https://github.com/leonelquinteros/gotext
* License : Expat
  Programming Lang: Go
  Description : Go (Golang) GNU gettext utilities package

 GNU gettext utilities (https://www.gnu.org/software/gettext) for Go.
 .
 Features
 .
  * Implements GNU gettext support in native Go.
  * Complete support for PO files 
(https://www.gnu.org/software/gettext/manual/html_node/PO-Files.html) including:
* Support for multiline strings and headers.
* Support for variables inside translation strings using Go's fmt 
syntax (https://golang.org/pkg/fmt/).
* Support for pluralization rules

(https://www.gnu.org/software/gettext/manual/html_node/Translating-plural-forms.html).
* Support for message contexts 
(https://www.gnu.org/software/gettext/manual/html_node/Contexts.html).
  * Support for MO files.
  * Thread-safe: This package is safe for concurrent use across multiple 
goroutines.
  * It works with UTF-8 encoding as it's the default for Go language.
  * Unit tests available.
  * Language codes are automatically simplified from the form en_UK to en if 
the first isn't available.
  * Ready to use inside Go templates.
  * Objects are serializable to []byte to store them in cache.
  * Support for Go Modules.

This is a dependency of git-lfs and will be maintained by the go packaging
team.



Bug#1001673: ITP: golang-github-icza-gox -- Minimalistic extension to Go. It means to be a complement to the standard library.

2021-12-13 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-github-icza-gox
  Version : 0.0~git20210726.cd40a3f-1
  Upstream Author : AndrĂ¡s Belicza
* URL : https://github.com/icza/gox
* License : Apache-2.0
  Programming Lang: Go
  Description : Minimalistic extension to Go. It means to be a complement 
to the standard library.

 The gox module is a minimalistic, lightweigt extension to Go. It
 contains constants, helpers and utilities which could have been part of
 Go itself.

This package will be maintained by the go team



Bug#1001672: ITP: certinfo -- print x509 certificate info

2021-12-13 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: certinfo
  Version : 1.0.6-1
  Upstream Author : Peter Reisinger
* URL : https://github.com/pete911/certinfo
* License : Expat
  Programming Lang: Go
  Description : Print x509 certificate info

 Print x509 certificate info
 .
 Similar to openssl x509 -in  -text command, but handles chains,
 multiple files and TCP addresses. TLS/SSL version prints as well when
 using TCP address argument.

This package will be maintained by the go packaging team



Bug#996548: ITP: golang-github-git-lfs-pktline -- Toolkit for the Git pkt-line format

2021-10-15 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-github-git-lfs-pktline
  Version : 0.0~git20210330.06e9096-1
  Upstream Author : Git LFS
* URL : https://github.com/git-lfs/pktline
* License : Expat
  Programming Lang: Go
  Description : Toolkit for the Git pkt-line format

 Git pkt-line Toolkit is a Go language toolkit for reading
 and writing files using the Git pkt-line format used in various Git
 operations.

This is a new dependency of git-lfs and will be maintained under the Debian
Golang team



Bug#991671: ITP: dd-opentracing-cpp -- Datadog OpenTracing C++ Client

2021-07-29 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 
X-Debbugs-Cc: debian-devel@lists.debian.org, ssg...@debian.org

* Package name: dd-opentracing-cpp
  Version : 1.3.0
  Upstream Author : Datadog
* URL : https://github.com/DataDog/dd-opentracing-cpp
* License : Apache-2.0
  Programming Lang: C++
  Description : Datadog OpenTracing C++ Client

An OpenTracing client to collect OpenTracing data in a format that can be
parsed locally by Datadog's agent. This is used as a plugin in conjunction
with lib-opentracing1 in applications that support OpenTracing.

I plan on maintaining this myself.



Bug#991194: ITP: opentracing-c-wrapper -- C wrapper for the C++ impl of the OpenTracing API

2021-07-16 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 
X-Debbugs-Cc: debian-devel@lists.debian.org, ssg...@debian.org

* Package name: opentracing-c-wrapper
  Version : 1.1.0
  Upstream Author : HAProxy Technologies
* URL : https://github.com/haproxytech/opentracing-c-wrapper/
* License : Apache-2.0
  Programming Lang: C/C++
  Description : C wrapper for the C++ impl of the OpenTracing API

OpenTracing C Wrapper library was created due to the need to use distributed
tracing within C programs.

The OpenTracing project (https://opentracing.io/) has published a
C-language implementation on https://github.com/opentracing/opentracing-c
but that implementation is incomplete, with the last update on Jun
27th 2018

This library takes inspiration from the header files in that project but
implements the proposed functionality fully by wrapping the functional
C++ library.

This is a dependency of building haproxy with opentracing support.



Bug#991193: ITP: opentracing-cpp -- OpenTracing API for C++

2021-07-16 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 
X-Debbugs-Cc: debian-devel@lists.debian.org, ssg...@debian.org

* Package name: opentracing-cpp
  Version : 1.6.0
  Upstream Author : The OpenTracing Authors
* URL : https://github.com/opentracing/opentracing-cpp/
* License : Apache-2.0
  Programming Lang: C++
  Description : OpenTracing API for C++

C++ implementation of the OpenTracing API. See http://opentracing.io for 
additional information.

This is being packaged as part of an effort to add opentracing support
to haproxy.



Bug#980179: ITP: kubecolor -- colorizes kubectl output

2021-01-15 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: kubecolor
  Version : 0.0.9-1
  Upstream Author : Hidetatsu Yaginuma
* URL : https://github.com/dty1er/kubecolor
* License : Expat
  Programming Lang: Go
  Description : colorizes kubectl output

 kubecolor is a wrapper for the kubernetes kubectl command that colorizes its
 output

This package will be group maintained by the golang team



Bug#974547: ITP: golang-github-adam-hanna-arrayoperations -- Small library for performing union, intersect, difference and distinct operations on slices in golang

2020-11-11 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-github-adam-hanna-arrayoperations
  Version : 0.2.6-1
  Upstream Author : Adam Hanna
* URL : https://github.com/adam-hanna/arrayOperations
* License : Expat
  Programming Lang: Go
  Description : Small library for performing union, intersect, difference 
and distinct operations on slices in goLang

 A small library for performing union, intersect, difference and distinct
 operations on slices in goLang

This is a dependency for the latest version of termshark



Bug#951816: ITP: golang-github-jcmturner-gofork -- forked and modified go standard libary packages to work around issues

2020-02-21 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-github-jcmturner-gofork
  Version : 1.0.0-1
  Upstream Author : Jonathan Turner
* URL : https://github.com/jcmturner/gofork
* License : BSD-3-clause
  Programming Lang: Go
  Description : forked and modified go standard libary packages to work 
around issues

 This repository contains modified Go standard library packages
 for use as work arounds until issues are addressed in the official
 distribution.

Dependency of new version of git-lfs



Bug#951817: ITP: golang-gopkg-jcmturner-aescts.v1 -- AES CBC Ciphertext Stealing mode for Go

2020-02-21 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-gopkg-jcmturner-aescts.v1
  Version : 1.0.1-1
  Upstream Author : Jonathan Turner
* URL : https://github.com/jcmturner/aescts
* License : Apache-2.0
  Programming Lang: Go
  Description : AES CBC Ciphertext Stealing mode for Go

 Golang library to encrypt and decrypt data using AES CBC Ciphertext stealing 
mode.

Dependency of new version of git-lfs



Bug#951815: ITP: golang-github-dpotapov-go-spnego -- Wraps gokrb5 and sspi libraries to provide cross-platform way to make HTTP calls with Kerberos authentication

2020-02-21 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-github-dpotapov-go-spnego
  Version : 0.0~git20190506.c2c6091-1
  Upstream Author : Daniel Potapov
* URL : https://github.com/dpotapov/go-spnego
* License : Expat
  Programming Lang: Go
  Description : Wraps gokrb5 and sspi libraries to provide cross-platform 
way to make HTTP calls with Kerberos authentication

 go-spnego The package extends Go's HTTP Transport allowing
 Kerberos authentication through Negotiate mechanism (see RFC4559
 (https://tools.ietf.org/html/rfc4559)).
 .
 Internally it is implemented by wrapping 2 libraries: gokrb5
 (https://github.com/jcmturner/gokrb5) on Linux and sspi
 (https://github.com/alexbrainman/sspi) on Windows.
 .
 There is no pre-authenticaion yet, so the library assumes you have
 Kerberos ticket obtained.
 .
 Linux implementation requires MIT or Heimdal Kerberos to be
 present. Windows implementation utilizes credentials of currently logged
 in user.
 .
 Currently it allows only to make HTTP calls, no server side support yet.

Dependency of new version of git-lfs



Bug#951813: ITP: golang-gopkg-jcmturner-gokrb5.v5 -- Pure Go Kerberos library for clients and services

2020-02-21 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-gopkg-jcmturner-gokrb5.v5
  Version : 5.3.0-1
  Upstream Author : Jonathan Turner
* URL : https://github.com/jcmturner/gokrb5
* License : Apache-2.0
  Programming Lang: Go
  Description : Pure Go Kerberos library for clients and services

 Features
   - Pure Go - no dependency on external libraries
   - No platform specific code
   - Server Side
   - HTTP handler wrapper implements SPNEGO Kerberos authentication
   - HTTP handler wrapper decodes Microsoft AD PAC authorization data
   - Client Side
   - Client that can authenticate to an SPNEGO Kerberos authenticated web 
service
   - Ability to change client's password
   - General
   - Kerberos libraries for custom integration
   - Parsing Keytab files
   - Parsing krb5.conf files
   - Parsing client credentials cache files such as /tmp/krb5cc_$(id -u 
$(whoami))

Dependency of new version of git-lfs



Bug#951811: ITP: golang-gopkg-jcmturner-dnsutils.v1 -- Golang library of DNS utilities

2020-02-21 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-gopkg-jcmturner-dnsutils.v1
  Version : 1.0.1-1
  Upstream Author : Jonathan Turner
* URL : https://github.com/jcmturner/dnsutils
* License : Apache-2.0
  Programming Lang: Go
  Description : Golang library of DNS utilities

 A golang library of DNS utilities, mostly for the purposes of reading SRV
 records

Dependency of new version of git-lfs



Bug#951814: ITP: golang-gopkg-jcmturner-goidentity.v2 -- A golang library for managing identities

2020-02-21 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-gopkg-jcmturner-goidentity.v2
  Version : 2.0.0-1
  Upstream Author : Jonathan Turner
* URL : https://github.com/jcmturner/goidentity
* License : Apache-2.0
  Programming Lang: Go
  Description : A golang library for managing identities

 Standard interface for holding authenticated identities and
 their attributes.

Dependency of new version of git-lfs



Bug#951812: ITP: golang-gopkg-jcmturner-rpc.v0 -- Remote Procedure Call libraries

2020-02-21 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-gopkg-jcmturner-rpc.v0
  Version : 0.0.2-1
  Upstream Author : Jonathan Turner
* URL : https://github.com/jcmturner/rpc
* License : Apache-2.0
  Programming Lang: Go
  Description : Remote Procedure Call libraries

 A partial implementation that mainly focuses on unmarshaling NDR
 encoded byte streams into Go structures.

Dependency of new version of git-lfs



Bug#943726: ITP: golang-github-ssgelm-cookiejarparser -- A Go library that parses a curl (netscape) cookiejar file into a Go http.CookieJar

2019-10-28 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-github-ssgelm-cookiejarparser
  Version : 1.0.0-1
  Upstream Author : Stephen Gelman 
* URL : https://github.com/ssgelm/cookiejarparser
* License : Expat
  Programming Lang: Go
  Description : A Go library that parses a curl (netscape) cookiejar file 
into a Go http.CookieJar

 cookiejarparser cookiejarparser is a Go library that parses a curl
 (netscape) cookiejar file into a Go http.CookieJar.

This is a new dependency for git-lfs



Bug#920785: ITP: golang-github-openzipkin-zipkin-go -- Zipkin tracer library for go

2019-01-28 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-github-openzipkin-zipkin-go
  Version : 0.1.5+git20190103.2fd7f4a-1
  Upstream Author : The OpenZipkin Authors
* URL : https://github.com/openzipkin/zipkin-go
* License : Apache-2.0
  Programming Lang: Go
  Description : Zipkin tracer library for go

 Zipkin Go is the official Go Tracer implementation for Zipkin, supported
 by the OpenZipkin community.  package organization zipkin-go is built
 with interoperability in mind within the OpenZipkin community and even
 3rd parties, the library consists of several packages.

This package is a dependency of golang-go.opencensus which is in turn a
dependency of a new version of golang-google-cloud.



Bug#920784: ITP: golang-github-google-martian -- Martian is a library for building custom HTTP/S proxies

2019-01-28 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-github-google-martian
  Version : 2.1.0+git20181219.d0b5ad3-1
  Upstream Author : Google
* URL : https://github.com/google/martian
* License : Apache-2.0
  Programming Lang: Go
  Description : Martian is a library for building custom HTTP/S proxies

 Martian Proxy is a programmable HTTP proxy designed to be used for testing.

This package is a dependency of a new release of golang-google-cloud



Bug#920783: ITP: golang-go.opencensus -- A stats collection and distributed tracing framework

2019-01-28 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-go.opencensus
  Version : 0.18.0+git20190117.2f39cd4-1
  Upstream Author : OpenCensus Authors
* URL : https://github.com/census-instrumentation/opencensus-go
* License : Apache-2.0
  Programming Lang: Go
  Description : A stats collection and distributed tracing framework

 OpenCensus Go is a Go implementation of OpenCensus, a toolkit for collecting
 application performance and behavior monitoring data. Currently it consists
 of three major components: tags, stats and tracing.

This is a dependency of an updated version of golang-google-cloud



Bug#920782: ITP: golang-github-google-pprof -- pprof is a tool for visualization and analysis of profiling data

2019-01-28 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-github-google-pprof
  Version : 0.0~git20190109.e84dfd6-1
  Upstream Author : Google
* URL : https://github.com/google/pprof
* License : Apache-2.0
  Programming Lang: Go
  Description : pprof is a tool for visualization and analysis of profiling 
data

 pprof is a tool for visualization and analysis of profiling data.
 .
 pprof reads a collection of profiling samples in profile.proto format
 and generates reports to visualize and help analyze the data. It can
 generate both text and graphical reports (through the use of the dot
 visualization package).
 .
 profile.proto is a protocol buffer that describes a set of callstacks
 and symbolization information. A common usage is to represent a set of
 sampled callstacks from statistical profiling. The format is described
 on the proto/profile.proto (./proto/profile.proto) file. For details on
 protocol buffers, see https://developers.google.com/protocol-buffers
 .
 Profiles can be read from a local file, or over http. Multiple profiles
 of the same type can be aggregated or compared.
 .
 If the profile samples contain machine addresses, pprof can symbolize
 them through the use of the native binutils tools (addr2line and nm).

This is a dependency of a newer version of golang-google-cloud.



Bug#920781: ITP: golang-github-ianlancetaylor-demangle -- C++ symbol name demangler written in Go

2019-01-28 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-github-ianlancetaylor-demangle
  Version : 0.0~git20181102.5e5cf60-1
  Upstream Author : Ian Lance Taylor
* URL : https://github.com/ianlancetaylor/demangle
* License : BSD-3-clause
  Programming Lang: Go
  Description : C++ symbol name demangler written in Go

 A Go package that can be used to demangle C++ symbol names.

This is a dependency of golang-github-google-pprof (which is in turn a
dependency of a newer release of golang-google-cloud)



Bug#904788: ITP: golang-github-git-lfs-gitobj -- gitobj reads and writes Git objects.

2018-07-27 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-github-git-lfs-gitobj
  Version : 0.0~git20180705.5aa0c18-1
  Upstream Author : Git LFS
* URL : https://github.com/git-lfs/gitobj
* License : Expat
  Programming Lang: Go
  Description : gitobj reads and writes Git objects.

 Package gitobj reads and writes loose and packed Git objects.

This is a dependency of git-lfs.  It will be maintained by the debian go
packaging team.



Bug#900327: ITP: golang-github-git-lfs-go-netrc -- netrc file parser for Go programming language.

2018-05-28 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-github-git-lfs-go-netrc
  Version : 0.0~git20180525.e0e9ca4-1
  Upstream Author : Git LFS
* URL : https://github.com/git-lfs/go-netrc
* License : Expat
  Programming Lang: Go
  Description : netrc file parser for Go programming language.

 go-netrc A Golang package for reading and writing netrc files. This
 package can parse netrc files, make changes to them, and then serialize
 them back to netrc format, while preserving any whitespace that was
 present in the source file.
 .
 GoDoc (https://godoc.org/github.com/bgentry/go-netrc)

This is a patched version of golang-github-bgentry-go-netrc that is used by
git-lfs.



Bug#892011: ITP: golang-github-git-lfs-wildmatch -- Wildmatch is a pattern matching language for filepaths compatible with Git.

2018-03-03 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-github-git-lfs-wildmatch
  Version : 0.0~git20180219.8a05186-1
  Upstream Author : GitHub
* URL : https://github.com/git-lfs/wildmatch
* License : Expat
  Programming Lang: Go
  Description : Wildmatch is a pattern matching language for filepaths 
compatible with Git.

 wildmatch package wildmatch is a reimplementation of Git's
 wildmatch.c-style filepath pattern matching.
 .
 For more information, see the godoc
 (https://godoc.org/github.com/git-lfs/wildmatch).

This is a dependency for git-lfs and will be maintained in the go packaging
team.



Bug#869526: ITP: golang-github-olekukonko-ts -- Simple go Application to get Terminal Size

2017-07-23 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-github-olekukonko-ts
  Version : 0.0~git20140412.0.ecf753e-1
  Upstream Author : Oleku Konko 
* URL : https://github.com/olekukonko/ts
* License : Expat
  Programming Lang: Go
  Description : Simple go Application to get Terminal Size

 Simple go Application to get Terminal Size. So Many Implementations
 do not support windows but ts has full windows support. See
 Documentation (http://godoc.org/github.com/olekukonko/ts)

This library is a dependency of git-lfs (ITP #792075).  Ideally this
seems like a package that the pkg-go-maintainers could maintain but I am
willing to maintain it as well if necessary.



Bug#869522: ITP: golang-github-thomsonreuterseikon-go-ntlm -- NTLM Implementation for Go

2017-07-23 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-github-thomsonreuterseikon-go-ntlm
  Version : 0.0~git20151030.0.b00ec39-1
  Upstream Author : Thomson Reuters Global Resources
* URL : https://github.com/ThomsonReutersEikon/go-ntlm
* License : BSD
  Programming Lang: Go
  Description : NTLM Implementation for Go

 This is a native implementation of NTLM for Go that was implemented
 using the Microsoft MS-NLMP documentation available at
 http://msdn.microsoft.com/en-us/library/cc236621.aspx. The library is
 currently in use and has been tested with connectionless NTLMv1 and v2
 with and without extended session security.

This library is a dependency of git-lfs (ITP #792075).  Ideally this
seems like a package that the pkg-go-maintainers could maintain but I am
willing to maintain it as well if necessary.



Bug#869518: ITP: golang-github-rubyist-tracerx -- Output tracing information in your Go app based on environment variables

2017-07-23 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-github-rubyist-tracerx
  Version : 0.0~git20150602.0.d7bcc0b-1
  Upstream Author : Scott Barron 
* URL : https://github.com/rubyist/tracerx
* License : Expat
  Programming Lang: Go
  Description : Output tracing information in your Go app based on 
environment variables

 tracerx Tracerx is a simple tracing package that logs messages
 depending on environment variables.  It is very much inspired
 by git's GIT_TRACE mechanism.

This library is a dependency of git-lfs (ITP #792075).  Ideally this
seems like a package that the pkg-go-maintainers could maintain but I am
willing to maintain it as well if necessary.



Bug#869517: ITP: golang-github-bgentry-go-netrc -- A Golang package for reading and writing netrc files

2017-07-23 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: golang-github-bgentry-go-netrc
  Version : 0.0~git20140422.0.9fd32a8-1
  Upstream Author : Blake Gentry 
* URL : https://github.com/bgentry/go-netrc
* License : Expat
  Programming Lang: Go
  Description : A Golang package for reading and writing netrc files

This package can parse netrc files, make changes to them, and then
serialize them back to netrc format, while preserving any whitespace
that was present in the source file.

This library is a dependency of git-lfs (ITP #792075).  Ideally this
seems like a package that the pkg-go-maintainers could maintain but I am
willing to maintain it as well if necessary.



Bug#792075: ITP: git-lfs -- Git Large File Support. An open source Git extension for versioning large files

2015-07-10 Thread Stephen Gelman
Package: wnpp
Severity: wishlist
Owner: Stephen Gelman 

* Package name: git-lfs
  Version : 0.5.2
  Upstream Author : Github
* URL : http://git-lfs.github.com/
* License : Expat
  Programming Lang: Golang
  Description : Git Large File Support.

An open source Git extension for versioning large files

I am looking to maintain this myself with a sponsor.


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/20150710222944.8811.15602.report...@debian8.vagrantup.com