golang-starlark 0.0~git20230726.7dadff3-1 source package in Ubuntu

Changelog

golang-starlark (0.0~git20230726.7dadff3-1) unstable; urgency=medium

  * Team upload
  * New upstream snapshot
  * Add golang-google-protobuf-dev to dependencies
  * Update section to golang
  * Update debhelper-compat to 13
  * Update Standards-Version to 4.6.2 (no changes)

 -- Shengjing Zhu <email address hidden>  Fri, 28 Jul 2023 22:44:44 +0800

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
golang
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe misc

Builds

Mantic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-starlark_0.0~git20230726.7dadff3-1.dsc 1.7 KiB e415771af58d5f4fb6c77f18ce12183233e809436bd740eff0649ac9dceda0d0
golang-starlark_0.0~git20230726.7dadff3.orig.tar.xz 217.3 KiB 7bab2bb8c306cbb1c41c26d484de5ba22ffbb2a3eacd54cca339e75f66dd5fc6
golang-starlark_0.0~git20230726.7dadff3-1.debian.tar.xz 3.6 KiB 641c5ba2f7ede9cbc0e50b7900edf4fc403db4ceb3a98e265fde8816de39fab5

No changes file available.

Binary packages built by this source

golang-starlark-dev: 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