~dricottone/debs

ref: e48e17746b05871141145561752da0b4c9b32924 debs/README.md -rw-r--r-- 993 bytes
e48e1774Dominic Ricottone Initial commit; does not work 11 months ago
                                                                                
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
# debs

This was an attempt to build deb packages for Go programs.

References:

 + [Debian Go Packaging](https://go-team.pages.debian.net/packaging.html)
 + [golang-sourcehut-sircmpwn-getopt package](https://salsa.debian.org/go-team/packages/golang-sourcehut-sircmpwn-getopt) as a demo
 + [golang-github-mattn-go-runewidth package](https://salsa.debian.org/go-team/packages/golang-github-mattn-go-runewidth) as another demo
 + [Pragmatic Debian Packaging](golang-github-mattn-go-runewidth), a blog post by Vincent Bernat
 + ...and the examples accompanying that blog post [here](https://github.com/vincentbernat/pragmatic-debian-packages)

I had hoped that it would be as simple as:

```
docker run --rm \
    --mount type=bind,src=$(pwd)/src,dst=/build/src \
    --mount type=bind,src=$(pwd)/pkg,dst=/build/pkg \
    registry.intra.dominic-ricottone.com/debbuilder:latest \
    golang-github-slymarbo-rss
```

It made an equivs folder but froze after that.
Not really sure what went wrong.