| 12
 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
 47
 48
 49
 50
 51
 52
 53
 54
 
 | Source: golang-github-google-blueprint
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders:
 Andrej Shadura <andrewsh@debian.org>,
 Android Tools Maintainers <android-tools-devel@lists.alioth.debian.org>
Section: devel
Testsuite: autopkgtest-pkg-go
Priority: optional
Build-Depends: debhelper-compat (= 13),
               dh-exec,
               dh-golang,
               golang-any
Standards-Version: 4.5.0
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-google-blueprint
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-google-blueprint.git
Homepage: https://github.com/google/blueprint
Rules-Requires-Root: no
XS-Go-Import-Path: github.com/google/blueprint
Package: golang-github-google-blueprint-dev
Architecture: all
Depends: ${misc:Depends}
Description: Blueprint meta build system (library)
 Blueprint is a meta-build system that reads in Blueprints files that
 describe modules that need to be built, and produces a Ninja manifest
 describing the commands that need to be run and their dependencies.
 Where most build systems use built-in rules or a domain-specific language
 to describe the logic for converting module descriptions to build rules,
 Blueprint delegates this to per-project build logic written in Go.
 For large, heterogenous projects this allows the inherent complexity
 of the build logic to be maintained in a high-level language, while
 still allowing simple changes to individual modules by modifying easy
 to understand Blueprints files.
 .
 This package contains the Go library for Blueprint.
Package: blueprint-tools
Architecture: any
Depends: ${misc:Depends},
         ${shlibs:Depends}
Built-Using: ${misc:Built-Using}
Description: Blueprint meta build system (command-line tools)
 Blueprint is a meta-build system that reads in Blueprints files that
 describe modules that need to be built, and produces a Ninja manifest
 describing the commands that need to be run and their dependencies.
 Where most build systems use built-in rules or a domain-specific language
 to describe the logic for converting module descriptions to build rules,
 Blueprint delegates this to per-project build logic written in Go.
 For large, heterogenous projects this allows the inherent complexity
 of the build logic to be maintained in a high-level language, while
 still allowing simple changes to individual modules by modifying easy
 to understand Blueprints files.
 .
 This package contains command-line tools for Blueprint.
 |