File: control

package info (click to toggle)
golang-starlark 0.0~git20240725.42030a7-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,296 kB
  • sloc: makefile: 8; sh: 8
file content (46 lines) | stat: -rw-r--r-- 1,794 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Source: golang-starlark
Section: golang
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders:
 Emanuel Krivoy <ekrivoy@gmail.com>,
 Roger Shimizu <rosh@debian.org>,
Build-Depends:
 debhelper-compat (= 13),
 dh-golang,
 golang-any,
 golang-github-chzyer-readline-dev,
 golang-github-google-go-cmp-dev,
 golang-golang-x-sys-dev,
 golang-google-protobuf-dev,
 tzdata-legacy,
Standards-Version: 4.6.2
Homepage: https://github.com/google/starlark-go
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-starlark
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-starlark.git
Rules-Requires-Root: no
XS-Go-Import-Path: go.starlark.net
Testsuite: autopkgtest-pkg-go

Package: golang-starlark-dev
Architecture: all
Multi-Arch: foreign
Depends:
 golang-github-chzyer-readline-dev,
 golang-golang-x-sys-dev,
 golang-google-protobuf-dev,
 ${misc:Depends},
Description: Interpreter for the Starlark configuration language
 Starlark is a dialect of Python intended for use as a configuration language.
 Like Python, it is an untyped dynamic language with high-level data types,
 first-class functions with lexical scope, and garbage collection. Unlike
 CPython, independent Starlark threads execute in parallel, so Starlark
 workloads scale well on parallel machines. Starlark is a small and simple
 language with a familiar and highly readable syntax. You can use it as an
 expressive notation for structured data, defining functions to eliminate
 repetition, or you can use it to add scripting capabilities to an existing
 application.
 .
 A Starlark interpreter is typically embedded within a larger application, and
 the application may define additional domain-specific functions and data types
 beyond those provided by the core language