2017-04-14 20:39:32 +02:00
|
|
|
// Package brew implements the Pipe, providing formula generation and
|
|
|
|
// uploading it to a configured repo.
|
2016-12-29 13:58:22 +02:00
|
|
|
package brew
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2017-01-16 18:52:27 +02:00
|
|
|
"errors"
|
2017-12-02 23:53:19 +02:00
|
|
|
"fmt"
|
2017-01-14 15:18:48 +02:00
|
|
|
"path/filepath"
|
2016-12-29 13:58:22 +02:00
|
|
|
"strings"
|
2016-12-29 17:14:52 +02:00
|
|
|
"text/template"
|
2016-12-29 13:58:22 +02:00
|
|
|
|
2017-06-22 05:09:14 +02:00
|
|
|
"github.com/apex/log"
|
2017-07-14 01:22:10 +02:00
|
|
|
"github.com/goreleaser/goreleaser/checksum"
|
2017-12-02 23:53:19 +02:00
|
|
|
"github.com/goreleaser/goreleaser/config"
|
2017-01-15 00:01:32 +02:00
|
|
|
"github.com/goreleaser/goreleaser/context"
|
2017-07-14 01:22:10 +02:00
|
|
|
"github.com/goreleaser/goreleaser/internal/archiveformat"
|
2017-05-13 23:06:15 +02:00
|
|
|
"github.com/goreleaser/goreleaser/internal/client"
|
2017-08-20 21:35:46 +02:00
|
|
|
"github.com/goreleaser/goreleaser/pipeline"
|
2016-12-29 13:58:22 +02:00
|
|
|
)
|
|
|
|
|
2017-01-16 18:52:27 +02:00
|
|
|
// ErrNoDarwin64Build when there is no build for darwin_amd64 (goos doesn't
|
|
|
|
// contain darwin and/or goarch doesn't contain amd64)
|
|
|
|
var ErrNoDarwin64Build = errors.New("brew tap requires a darwin amd64 build")
|
|
|
|
|
2017-07-02 03:11:50 +02:00
|
|
|
const platform = "darwinamd64"
|
|
|
|
|
2016-12-30 16:41:59 +02:00
|
|
|
// Pipe for brew deployment
|
2016-12-30 13:27:35 +02:00
|
|
|
type Pipe struct{}
|
|
|
|
|
2017-12-02 23:53:19 +02:00
|
|
|
func (Pipe) String() string {
|
|
|
|
return "creating homebrew formula"
|
2016-12-30 13:27:35 +02:00
|
|
|
}
|
|
|
|
|
2016-12-30 16:41:59 +02:00
|
|
|
// Run the pipe
|
2017-01-14 18:06:57 +02:00
|
|
|
func (Pipe) Run(ctx *context.Context) error {
|
2017-09-26 23:52:37 +02:00
|
|
|
client, err := client.NewGitHub(ctx)
|
2017-09-22 14:42:36 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return doRun(ctx, client)
|
2017-03-26 20:30:21 +02:00
|
|
|
}
|
|
|
|
|
2017-12-02 23: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"
|
|
|
|
}
|
|
|
|
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 21:07:27 +02:00
|
|
|
func doRun(ctx *context.Context, client client.Client) error {
|
2017-04-21 16:48:00 +02:00
|
|
|
if !ctx.Publish {
|
2017-08-20 21:35:46 +02:00
|
|
|
return pipeline.Skip("--skip-publish is set")
|
2017-04-21 16:48:00 +02:00
|
|
|
}
|
|
|
|
if ctx.Config.Brew.GitHub.Name == "" {
|
2017-08-20 21:35:46 +02:00
|
|
|
return pipeline.Skip("brew section is not configured")
|
2016-12-30 13:27:35 +02:00
|
|
|
}
|
2017-04-22 00:50:09 +02:00
|
|
|
if ctx.Config.Release.Draft {
|
2017-08-20 21:35:46 +02:00
|
|
|
return pipeline.Skip("release is marked as draft")
|
2017-04-22 00:50:09 +02:00
|
|
|
}
|
2017-07-16 20:23:29 +02:00
|
|
|
if ctx.Config.Archive.Format == "binary" {
|
2017-08-20 21:35:46 +02:00
|
|
|
return pipeline.Skip("archive format is binary")
|
2017-06-05 16:38:59 +02:00
|
|
|
}
|
2017-07-16 20:23:29 +02:00
|
|
|
|
2017-07-14 01:22:10 +02:00
|
|
|
var group = ctx.Binaries["darwinamd64"]
|
|
|
|
if group == nil {
|
|
|
|
return ErrNoDarwin64Build
|
|
|
|
}
|
|
|
|
var folder string
|
|
|
|
for f := range group {
|
|
|
|
folder = f
|
|
|
|
break
|
|
|
|
}
|
2017-07-02 03:42:10 +02:00
|
|
|
var path = filepath.Join(ctx.Config.Brew.Folder, ctx.Config.ProjectName+".rb")
|
2017-06-22 15:47:34 +02:00
|
|
|
log.WithField("formula", path).
|
|
|
|
WithField("repo", ctx.Config.Brew.GitHub.String()).
|
|
|
|
Info("pushing")
|
2017-07-14 01:22:10 +02:00
|
|
|
content, err := buildFormula(ctx, client, folder)
|
2016-12-29 13:58:22 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-07-16 20:13:30 +02:00
|
|
|
return client.CreateFile(ctx, content, path)
|
2016-12-30 13:48:06 +02:00
|
|
|
}
|
2016-12-29 13:58:22 +02:00
|
|
|
|
2017-07-14 01:22:10 +02:00
|
|
|
func buildFormula(ctx *context.Context, client client.Client, folder string) (bytes.Buffer, error) {
|
|
|
|
data, err := dataFor(ctx, client, folder)
|
2016-12-30 13:48:06 +02:00
|
|
|
if err != nil {
|
2016-12-30 13:53:05 +02:00
|
|
|
return bytes.Buffer{}, err
|
2016-12-30 13:48:06 +02:00
|
|
|
}
|
2017-01-19 11:04:41 +02:00
|
|
|
return doBuildFormula(data)
|
2016-12-30 13:53:05 +02:00
|
|
|
}
|
|
|
|
|
2017-07-16 20:06:32 +02:00
|
|
|
func doBuildFormula(data templateData) (out bytes.Buffer, err error) {
|
|
|
|
tmpl, err := template.New(data.Name).Parse(formulaTemplate)
|
2016-12-29 17:14:52 +02:00
|
|
|
if err != nil {
|
|
|
|
return out, err
|
|
|
|
}
|
|
|
|
err = tmpl.Execute(&out, data)
|
2017-07-16 20:06:32 +02:00
|
|
|
return
|
2016-12-29 17:14:52 +02:00
|
|
|
}
|
|
|
|
|
2017-07-14 01:22:10 +02:00
|
|
|
func dataFor(ctx *context.Context, client client.Client, folder string) (result templateData, err error) {
|
|
|
|
var file = folder + "." + archiveformat.For(ctx, platform)
|
|
|
|
sum, err := checksum.SHA256(filepath.Join(ctx.Config.Dist, file))
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2017-09-26 23:33:22 +02:00
|
|
|
var url = "https://github.com"
|
|
|
|
if ctx.Config.GitHubURLs.Download != "" {
|
|
|
|
url = ctx.Config.GitHubURLs.Download
|
|
|
|
}
|
2017-07-14 01:22:10 +02:00
|
|
|
return templateData{
|
|
|
|
Name: formulaNameFor(ctx.Config.ProjectName),
|
2017-09-26 23:33:22 +02:00
|
|
|
DownloadURL: url,
|
2017-07-14 01:22:10 +02:00
|
|
|
Desc: ctx.Config.Brew.Description,
|
|
|
|
Homepage: ctx.Config.Brew.Homepage,
|
|
|
|
Repo: ctx.Config.Release.GitHub,
|
|
|
|
Tag: ctx.Git.CurrentTag,
|
|
|
|
Version: ctx.Version,
|
|
|
|
Caveats: ctx.Config.Brew.Caveats,
|
|
|
|
File: file,
|
|
|
|
SHA256: sum,
|
|
|
|
Dependencies: ctx.Config.Brew.Dependencies,
|
|
|
|
Conflicts: ctx.Config.Brew.Conflicts,
|
|
|
|
Plist: ctx.Config.Brew.Plist,
|
2017-07-16 21:01:20 +02:00
|
|
|
Install: split(ctx.Config.Brew.Install),
|
|
|
|
Tests: split(ctx.Config.Brew.Test),
|
2017-07-16 20:06:32 +02:00
|
|
|
}, nil
|
2016-12-29 13:58:22 +02:00
|
|
|
}
|
2016-12-29 14:55:35 +02:00
|
|
|
|
2017-07-16 21:01:20 +02:00
|
|
|
func split(s string) []string {
|
|
|
|
return strings.Split(strings.TrimSpace(s), "\n")
|
|
|
|
}
|
|
|
|
|
2016-12-29 14: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 17:14:52 +02:00
|
|
|
}
|