File: control

package info (click to toggle)
golang-github-jfbus-httprs 0.0~git20180614.7861a11-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 72 kB
  • sloc: makefile: 2
file content (31 lines) | stat: -rw-r--r-- 1,298 bytes parent folder | download | duplicates (2)
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
Source: golang-github-jfbus-httprs
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Utkarsh Gupta <guptautkarsh2102@gmail.com>
Build-Depends: debhelper (>= 11),
               dh-golang,
               golang-any,
               golang-github-mitchellh-copystructure-dev,
               golang-github-smartystreets-goconvey-dev
Standards-Version: 4.3.0
Homepage: https://github.com/jfbus/httprs
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-jfbus-httprs
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-jfbus-httprs.git
XS-Go-Import-Path: github.com/jfbus/httprs
Testsuite: autopkgtest-pkg-go

Package: golang-github-jfbus-httprs-dev
Architecture: all
Depends: ${misc:Depends},
         golang-github-mitchellh-copystructure-dev,
         golang-github-smartystreets-goconvey-dev
Description: ReadSeeker for http.Response.Body
 httprs is a ReadSeeker for http.Response.Body.
 .
 A HttpReadSeeker reads from a http.Response.Body. It can seek by doing range
 requests.
 .
 NewHttpReadSeeker function returns a HttpReadSeeker, using the http.Response
 and, optionally, the http.Client that needs to be used for future range
 requests. If no http.Client is given, http.DefaultClient will be used.