qpm 0.11.0

switch to upstream vendoring

Closes #28023.

Signed-off-by: ilovezfs <ilovezfs@icloud.com>
This commit is contained in:
ilovezfs 2018-05-18 16:05:27 -07:00
parent f0473fe82c
commit fcf69c8c95

View file

@ -1,10 +1,9 @@
require "language/go"
class Qpm < Formula
desc "Package manager for Qt applications"
homepage "https://www.qpm.io"
url "https://github.com/Cutehacks/qpm/archive/v0.10.0.tar.gz"
sha256 "2c56aa81e46fb144ff25b14a26476862462510e38cf1265b24c38e3ac4636ee5"
url "https://github.com/Cutehacks/qpm.git",
:tag => "v0.11.0",
:revision => "fc340f20ddcfe7e09f046fd22d2af582ff0cd4ef"
bottle do
cellar :any_skip_relocation
@ -16,34 +15,10 @@ class Qpm < Formula
depends_on "go" => :build
go_resource "github.com/golang/protobuf" do
url "https://github.com/golang/protobuf.git",
:revision => "d3d78384b82d449651d2435ed329d70f7c48aa56"
end
go_resource "github.com/howeyc/gopass" do
url "https://github.com/howeyc/gopass.git",
:revision => "10b54de414cc9693221d5ff2ae14fd2fbf1b0ac1"
end
go_resource "golang.org/x/crypto" do
url "https://go.googlesource.com/crypto.git",
:revision => "575fdbe86e5dd89229707ebec0575ce7d088a4a6"
end
go_resource "golang.org/x/net" do
url "https://go.googlesource.com/net.git",
:revision => "042ba42fa6633b34205efc66ba5719cd3afd8d38"
end
go_resource "google.golang.org/grpc" do
url "https://github.com/grpc/grpc-go.git",
:revision => "3490323066222fe765ef7903b53a48cbc876906d"
end
def install
ENV["GOPATH"] = buildpath
Language::Go.stage_deps resources, buildpath/"src"
(buildpath/"src").mkpath
ln_s buildpath, "src/qpm.io"
system "go", "build", "-o", "bin/qpm", "qpm.io/qpm"
bin.install "bin/qpm"
end