Skip to content

Commit

Permalink
Merge pull request #224 from guillemj/pu/update-fields
Browse files Browse the repository at this point in the history
Update fields emitted
  • Loading branch information
creekorful authored Aug 30, 2024
2 parents 300c63b + 7aa69ad commit d70d43c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions check_depends_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Build-Depends:
golang-github-jroimartin-gocui-dev,
golang-github-mattn-go-sqlite3-dev,
golang-github-mmcdole-gofeed-dev,
Standards-Version: 4.5.1
Standards-Version: 4.7.0
Vcs-Browser: https://salsa.debian.org/go-team/packages/terminews
Vcs-Git: https://salsa.debian.org/go-team/packages/terminews.git
Homepage: https://github.com/antavelos/terminews
Expand All @@ -36,8 +36,8 @@ Architecture: any
Depends:
${misc:Depends},
${shlibs:Depends},
Built-Using:
${misc:Built-Using},
Static-Built-Using:
${misc:Static-Built-Using},
Description: read your RSS feeds from your terminal
Terminews is a terminal based application (TUI)
that allows you to manage RSS resources and display their news feeds.
Expand Down
4 changes: 2 additions & 2 deletions template.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ func addProgramPackage(f *os.File, gopkg, debProg string) {
fmt.Fprintf(f, "Architecture: any\n")
deps := []string{"${misc:Depends}", "${shlibs:Depends}"}
fprintfControlField(f, "Depends", deps)
fmt.Fprintf(f, "Built-Using: ${misc:Built-Using}\n")
fmt.Fprintf(f, "Static-Built-Using: ${misc:Static-Built-Using}\n")
addDescription(f, gopkg, "(program)")
}

Expand Down Expand Up @@ -206,7 +206,7 @@ func writeDebianControl(dir, gopkg, debsrc, debLib, debProg string, pkgType pack
fprintfControlField(f, "Build-Depends", builddeps)

fmt.Fprintf(f, "Testsuite: autopkgtest-pkg-go\n")
fmt.Fprintf(f, "Standards-Version: 4.6.2\n")
fmt.Fprintf(f, "Standards-Version: 4.7.0\n")
fmt.Fprintf(f, "Vcs-Browser: https://salsa.debian.org/go-team/packages/%s\n", debsrc)
fmt.Fprintf(f, "Vcs-Git: https://salsa.debian.org/go-team/packages/%s.git\n", debsrc)
fmt.Fprintf(f, "Homepage: %s\n", getHomepageForGopkg(gopkg))
Expand Down

0 comments on commit d70d43c

Please sign in to comment.