File: control

package info (click to toggle)
golang-github-alessio-shellescape 1.4.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 108 kB
  • sloc: makefile: 3
file content (28 lines) | stat: -rw-r--r-- 1,258 bytes parent folder | download
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
Source: golang-github-alessio-shellescape
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Jack Henschel <jackdev@mailbox.org>,
           Arthur Diniz <arthurbdiniz@gmail.com>
Build-Depends: debhelper-compat (= 13),
               dh-golang,
               golang-any
Standards-Version: 4.5.1
Homepage: https://github.com/alessio/shellescape
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-alessio-shellescape
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-alessio-shellescape.git
XS-Go-Import-Path: github.com/alessio/shellescape
Testsuite: autopkgtest-pkg-go
Rules-Requires-Root: no

Package: golang-github-alessio-shellescape-dev
Architecture: all
Depends: ${misc:Depends}
Description: Escape arbitrary strings for use as command line arguments
 This package provides the shellescape.Quote() function that returns a
 shell-escaped copy of a string. This functionality could be helpful in
 those cases where it is known that the output of a Go program will be
 appended to/used in the context of shell programs command line arguments.
 .
 This work was inspired by the Python original package shellescape
 (https://pypi.python.org/pypi/shellescape).