File: control

package info (click to toggle)
c2go 0.26.11-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 2,068 kB
  • sloc: ansic: 6,037; sh: 82; makefile: 4
file content (37 lines) | stat: -rw-r--r-- 1,439 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
32
33
34
35
36
37
Source: c2go
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Thorsten Alteholz <debian@alteholz.de>
Section: golang
Testsuite: autopkgtest-pkg-go
Priority: optional
Build-Depends: debhelper-compat (= 13),
               dh-golang,
               golang-any,
               golang-github-bradleyjkemp-cupaloy-dev,
               golang-golang-x-tools-dev,
               clang
Standards-Version: 4.7.0
Vcs-Browser: https://salsa.debian.org/go-team/packages/c2go
Vcs-Git: https://salsa.debian.org/go-team/packages/c2go.git
Homepage: https://github.com/elliotchance/c2go
Rules-Requires-Root: no
XS-Go-Import-Path: github.com/elliotchance/c2go

Package: c2go
Architecture: any
Depends: ${misc:Depends},
         ${shlibs:Depends},
         clang
Built-Using: ${misc:Built-Using}
Description: tool for transpiling C to Go
 This package contains a tool for converting C to Go.
 .
 The goals of this project are:
  - To create a generic tool that can convert C to Go.
  - To be cross platform (Linux and Mac) and work against as many clang
    versions as possible (the clang AST API is not stable).
  - To be a repeatable and predictable tool (rather than doing most of the
    work and you have to clean up the output to get it working.)
  - To deliver quick and small version increments.
  - The ultimate milestone is to be able to compile the SQLite3 source
    code and have it working without modification.