2016-12-29 09:58:22 -02:00
|
|
|
package brew
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2017-01-16 14:52:27 -02:00
|
|
|
"errors"
|
2017-12-02 19:53:19 -02:00
|
|
|
"fmt"
|
2018-01-09 21:31:18 -02:00
|
|
|
"io/ioutil"
|
2017-01-14 11:18:48 -02:00
|
|
|
"path/filepath"
|
2016-12-29 09:58:22 -02:00
|
|
|
"strings"
|
2016-12-29 13:14:52 -02:00
|
|
|
"text/template"
|
2016-12-29 09:58:22 -02:00
|
|
|
|
2017-06-22 00:09:14 -03:00
|
|
|
"github.com/apex/log"
|
2017-12-17 16:31:06 -02:00
|
|
|
|
2017-12-17 20:14:41 -02:00
|
|
|
"github.com/goreleaser/goreleaser/internal/artifact"
|
2017-05-13 18:06:15 -03:00
|
|
|
"github.com/goreleaser/goreleaser/internal/client"
|
2018-08-14 23:50:20 -03:00
|
|
|
"github.com/goreleaser/goreleaser/internal/pipeline"
|
2018-07-26 16:03:28 +03:00
|
|
|
"github.com/goreleaser/goreleaser/internal/tmpl"
|
2018-08-14 23:50:20 -03:00
|
|
|
"github.com/goreleaser/goreleaser/pkg/config"
|
|
|
|
"github.com/goreleaser/goreleaser/pkg/context"
|
2016-12-29 09:58:22 -02:00
|
|
|
)
|
|
|
|
|
2017-12-17 16:31:06 -02:00
|
|
|
// ErrNoDarwin64Build when there is no build for darwin_amd64
|
|
|
|
var ErrNoDarwin64Build = errors.New("brew tap requires one darwin amd64 build")
|
|
|
|
|
|
|
|
// ErrTooManyDarwin64Builds when there are too many builds for darwin_amd64
|
|
|
|
var ErrTooManyDarwin64Builds = errors.New("brew tap requires at most one darwin amd64 build")
|
2017-01-16 14:52:27 -02:00
|
|
|
|
2016-12-30 12:41:59 -02:00
|
|
|
// Pipe for brew deployment
|
2016-12-30 09:27:35 -02:00
|
|
|
type Pipe struct{}
|
|
|
|
|
2017-12-02 19:53:19 -02:00
|
|
|
func (Pipe) String() string {
|
|
|
|
return "creating homebrew formula"
|
2016-12-30 09:27:35 -02:00
|
|
|
}
|
|
|
|
|
2016-12-30 12:41:59 -02:00
|
|
|
// Run the pipe
|
2017-01-14 14:06:57 -02:00
|
|
|
func (Pipe) Run(ctx *context.Context) error {
|
2017-09-26 18:52:37 -03:00
|
|
|
client, err := client.NewGitHub(ctx)
|
2017-09-22 09:42:36 -03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return doRun(ctx, client)
|
2017-03-26 15:30:21 -03:00
|
|
|
}
|
|
|
|
|
2017-12-02 19:53:19 -02:00
|
|
|
// Default sets the pipe defaults
|
|
|
|
func (Pipe) Default(ctx *context.Context) error {
|
|
|
|
if ctx.Config.Brew.Install == "" {
|
|
|
|
var installs []string
|
|
|
|
for _, build := range ctx.Config.Builds {
|
|
|
|
if !isBrewBuild(build) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
installs = append(
|
|
|
|
installs,
|
|
|
|
fmt.Sprintf(`bin.install "%s"`, build.Binary),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
ctx.Config.Brew.Install = strings.Join(installs, "\n")
|
|
|
|
}
|
|
|
|
|
|
|
|
if ctx.Config.Brew.CommitAuthor.Name == "" {
|
|
|
|
ctx.Config.Brew.CommitAuthor.Name = "goreleaserbot"
|
|
|
|
}
|
|
|
|
if ctx.Config.Brew.CommitAuthor.Email == "" {
|
|
|
|
ctx.Config.Brew.CommitAuthor.Email = "goreleaser@carlosbecker.com"
|
|
|
|
}
|
2018-03-07 19:21:01 -03:00
|
|
|
if ctx.Config.Brew.Name == "" {
|
|
|
|
ctx.Config.Brew.Name = ctx.Config.ProjectName
|
|
|
|
}
|
2017-12-02 19:53:19 -02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func isBrewBuild(build config.Build) bool {
|
|
|
|
for _, ignore := range build.Ignore {
|
|
|
|
if ignore.Goos == "darwin" && ignore.Goarch == "amd64" {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return contains(build.Goos, "darwin") && contains(build.Goarch, "amd64")
|
|
|
|
}
|
|
|
|
|
|
|
|
func contains(ss []string, s string) bool {
|
|
|
|
for _, zs := range ss {
|
|
|
|
if zs == s {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2017-04-14 16:07:27 -03:00
|
|
|
func doRun(ctx *context.Context, client client.Client) error {
|
2017-04-21 11:48:00 -03:00
|
|
|
if ctx.Config.Brew.GitHub.Name == "" {
|
2017-08-20 16:35:46 -03:00
|
|
|
return pipeline.Skip("brew section is not configured")
|
2016-12-30 09:27:35 -02:00
|
|
|
}
|
2018-07-11 00:43:26 -07:00
|
|
|
if getFormat(ctx) == "binary" {
|
2017-08-20 16:35:46 -03:00
|
|
|
return pipeline.Skip("archive format is binary")
|
2017-06-05 16:38:59 +02:00
|
|
|
}
|
2017-07-16 15:23:29 -03:00
|
|
|
|
2017-12-17 16:31:06 -02:00
|
|
|
var archives = ctx.Artifacts.Filter(
|
2017-12-17 16:59:54 -02:00
|
|
|
artifact.And(
|
|
|
|
artifact.ByGoos("darwin"),
|
|
|
|
artifact.ByGoarch("amd64"),
|
2017-12-17 20:14:41 -02:00
|
|
|
artifact.ByGoarm(""),
|
2017-12-17 16:59:54 -02:00
|
|
|
artifact.ByType(artifact.UploadableArchive),
|
|
|
|
),
|
2017-12-17 16:31:06 -02:00
|
|
|
).List()
|
|
|
|
if len(archives) == 0 {
|
2017-07-13 20:22:10 -03:00
|
|
|
return ErrNoDarwin64Build
|
|
|
|
}
|
2017-12-17 20:14:41 -02:00
|
|
|
if len(archives) > 1 {
|
2017-12-17 16:31:06 -02:00
|
|
|
return ErrTooManyDarwin64Builds
|
2017-07-13 20:22:10 -03:00
|
|
|
}
|
2018-01-09 21:31:18 -02:00
|
|
|
|
2018-07-04 00:42:24 -07:00
|
|
|
content, err := buildFormula(ctx, archives[0])
|
2016-12-29 09:58:22 -02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-01-09 21:31:18 -02:00
|
|
|
|
2018-03-07 19:21:01 -03:00
|
|
|
var filename = ctx.Config.Brew.Name + ".rb"
|
2018-01-09 21:31:18 -02:00
|
|
|
var path = filepath.Join(ctx.Config.Dist, filename)
|
|
|
|
log.WithField("formula", path).Info("writing")
|
|
|
|
if err := ioutil.WriteFile(path, content.Bytes(), 0644); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-01-10 19:22:37 -02:00
|
|
|
if ctx.Config.Brew.SkipUpload {
|
|
|
|
return pipeline.Skip("brew.skip_upload is set")
|
|
|
|
}
|
2018-03-01 01:12:58 -03:00
|
|
|
if ctx.SkipPublish {
|
|
|
|
return pipeline.ErrSkipPublishEnabled
|
2018-01-10 19:22:37 -02:00
|
|
|
}
|
|
|
|
if ctx.Config.Release.Draft {
|
|
|
|
return pipeline.Skip("release is marked as draft")
|
|
|
|
}
|
|
|
|
|
2018-01-09 21:31:18 -02:00
|
|
|
path = filepath.Join(ctx.Config.Brew.Folder, filename)
|
|
|
|
log.WithField("formula", path).
|
|
|
|
WithField("repo", ctx.Config.Brew.GitHub.String()).
|
|
|
|
Info("pushing")
|
2018-03-10 14:13:00 -03:00
|
|
|
|
|
|
|
var msg = fmt.Sprintf("Brew formula update for %s version %s", ctx.Config.ProjectName, ctx.Git.CurrentTag)
|
|
|
|
return client.CreateFile(ctx, ctx.Config.Brew.CommitAuthor, ctx.Config.Brew.GitHub, content, path, msg)
|
2016-12-30 09:48:06 -02:00
|
|
|
}
|
2016-12-29 09:58:22 -02:00
|
|
|
|
2018-07-11 00:43:26 -07:00
|
|
|
func getFormat(ctx *context.Context) string {
|
|
|
|
for _, override := range ctx.Config.Archive.FormatOverrides {
|
|
|
|
if strings.HasPrefix("darwin", override.Goos) {
|
|
|
|
return override.Format
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ctx.Config.Archive.Format
|
|
|
|
}
|
|
|
|
|
2018-07-04 00:42:24 -07:00
|
|
|
func buildFormula(ctx *context.Context, artifact artifact.Artifact) (bytes.Buffer, error) {
|
|
|
|
data, err := dataFor(ctx, artifact)
|
2016-12-30 09:48:06 -02:00
|
|
|
if err != nil {
|
2016-12-30 09:53:05 -02:00
|
|
|
return bytes.Buffer{}, err
|
2016-12-30 09:48:06 -02:00
|
|
|
}
|
2017-01-19 10:04:41 +01:00
|
|
|
return doBuildFormula(data)
|
2016-12-30 09:53:05 -02:00
|
|
|
}
|
|
|
|
|
2017-07-16 15:06:32 -03:00
|
|
|
func doBuildFormula(data templateData) (out bytes.Buffer, err error) {
|
2018-07-26 16:03:28 +03:00
|
|
|
t, err := template.New(data.Name).Parse(formulaTemplate)
|
2016-12-29 13:14:52 -02:00
|
|
|
if err != nil {
|
|
|
|
return out, err
|
|
|
|
}
|
2018-07-26 16:03:28 +03:00
|
|
|
err = t.Execute(&out, data)
|
2017-07-16 15:06:32 -03:00
|
|
|
return
|
2016-12-29 13:14:52 -02:00
|
|
|
}
|
|
|
|
|
2018-07-04 00:42:24 -07:00
|
|
|
func dataFor(ctx *context.Context, artifact artifact.Artifact) (result templateData, err error) {
|
2018-08-21 15:55:35 -03:00
|
|
|
sum, err := artifact.Checksum()
|
2017-07-13 20:22:10 -03:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2018-01-17 18:57:41 -02:00
|
|
|
var cfg = ctx.Config.Brew
|
2018-07-26 16:03:28 +03:00
|
|
|
|
|
|
|
if ctx.Config.Brew.URLTemplate == "" {
|
|
|
|
ctx.Config.Brew.URLTemplate = fmt.Sprintf("%s/%s/%s/releases/download/{{ .Tag }}/{{ .ArtifactName }}",
|
|
|
|
ctx.Config.GitHubURLs.Download,
|
|
|
|
ctx.Config.Release.GitHub.Owner,
|
|
|
|
ctx.Config.Release.GitHub.Name)
|
|
|
|
}
|
|
|
|
url, err := tmpl.New(ctx).WithArtifact(artifact, map[string]string{}).Apply(ctx.Config.Brew.URLTemplate)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-07-13 20:22:10 -03:00
|
|
|
return templateData{
|
2018-06-20 09:46:42 -03:00
|
|
|
Name: formulaNameFor(ctx.Config.Brew.Name),
|
2018-07-26 16:03:28 +03:00
|
|
|
DownloadURL: url,
|
2018-06-20 09:46:42 -03:00
|
|
|
Desc: cfg.Description,
|
|
|
|
Homepage: cfg.Homepage,
|
|
|
|
Version: ctx.Version,
|
|
|
|
Caveats: split(cfg.Caveats),
|
|
|
|
SHA256: sum,
|
|
|
|
Dependencies: cfg.Dependencies,
|
|
|
|
Conflicts: cfg.Conflicts,
|
|
|
|
Plist: cfg.Plist,
|
|
|
|
Install: split(cfg.Install),
|
|
|
|
Tests: split(cfg.Test),
|
|
|
|
DownloadStrategy: cfg.DownloadStrategy,
|
2017-07-16 15:06:32 -03:00
|
|
|
}, nil
|
2016-12-29 09:58:22 -02:00
|
|
|
}
|
2016-12-29 10:55:35 -02:00
|
|
|
|
2017-07-16 16:01:20 -03:00
|
|
|
func split(s string) []string {
|
2018-04-05 14:11:31 -07:00
|
|
|
strings := strings.Split(strings.TrimSpace(s), "\n")
|
|
|
|
if len(strings) == 1 && strings[0] == "" {
|
|
|
|
return []string{}
|
|
|
|
}
|
|
|
|
return strings
|
2017-07-16 16:01:20 -03:00
|
|
|
}
|
|
|
|
|
2016-12-29 10:55:35 -02:00
|
|
|
func formulaNameFor(name string) string {
|
|
|
|
name = strings.Replace(name, "-", " ", -1)
|
|
|
|
name = strings.Replace(name, "_", " ", -1)
|
|
|
|
return strings.Replace(strings.Title(name), " ", "", -1)
|
2016-12-29 13:14:52 -02:00
|
|
|
}
|