Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
79de0d00
Commit
79de0d00
authored
Sep 17, 2012
by
Andrew Gerrand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
misc/dist: generate tarballs for Mac OS X
R=golang-dev, r CC=golang-dev
https://golang.org/cl/6503118
parent
55ca5ab0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
10 deletions
+22
-10
bindist.go
misc/dist/bindist.go
+22
-10
No files found.
misc/dist/bindist.go
View file @
79de0d00
...
...
@@ -228,6 +228,12 @@ func (b *Build) Do() error {
err
=
makeTar
(
targ
,
work
)
targs
=
append
(
targs
,
targ
)
case
"darwin"
:
// build tarball
targ
:=
base
+
".tar.gz"
err
=
makeTar
(
targ
,
work
)
targs
=
append
(
targs
,
targ
)
// build pkg
// arrange work so it's laid out as the dest filesystem
etc
:=
filepath
.
Join
(
b
.
root
,
"misc/dist/darwin/etc"
)
_
,
err
=
b
.
run
(
work
,
"cp"
,
"-r"
,
etc
,
"."
)
...
...
@@ -259,7 +265,7 @@ func (b *Build) Do() error {
if
err
!=
nil
{
return
err
}
targ
:
=
base
+
".pkg"
targ
=
base
+
".pkg"
_
,
err
=
b
.
run
(
""
,
"productbuild"
,
"--distribution"
,
filepath
.
Join
(
dist
,
"darwin/Distribution"
),
"--resources"
,
filepath
.
Join
(
dist
,
"darwin/Resources"
),
...
...
@@ -408,35 +414,41 @@ func (b *Build) Upload(version string, filename string) error {
if
arch
!=
""
{
labels
=
append
(
labels
,
"Arch-"
+
b
.
Arch
)
}
var
opsys
,
ftype
string
// labels
switch
b
.
OS
{
case
"linux"
:
os_
=
"Linux"
labels
=
append
(
labels
,
"Type-Archive"
,
"OpSys-Linux"
)
opsys
=
"Linux"
case
"freebsd"
:
os_
=
"FreeBSD"
labels
=
append
(
labels
,
"Type-Archive"
,
"OpSys-FreeBSD"
)
opsys
=
"FreeBSD"
case
"darwin"
:
os_
=
"Mac OS X"
labels
=
append
(
labels
,
"Type-Installer"
,
"OpSys-OSX"
)
opsys
=
"OSX"
case
"windows"
:
os_
=
"Windows"
labels
=
append
(
labels
,
"OpSys-Windows"
)
opsys
=
"Windows"
}
summary
:=
fmt
.
Sprintf
(
"%s %s (%s)"
,
version
,
os_
,
arch
)
if
b
.
OS
==
"windows"
{
switch
{
case
strings
.
HasSuffix
(
filename
,
".msi"
)
:
labels
=
append
(
labels
,
"Type-Installer"
)
ftype
=
"Installer"
summary
+=
" MSI installer"
case
strings
.
HasSuffix
(
filename
,
".pkg"
)
:
ftype
=
"Installer"
summary
+=
" PKG installer"
case
strings
.
HasSuffix
(
filename
,
".zip"
)
:
labels
=
append
(
labels
,
"Type-Archive"
)
ftype
=
"Archive"
summary
+=
" ZIP archive"
}
case
strings
.
HasSuffix
(
filename
,
".tar.gz"
)
:
ftype
=
"Archive"
summary
+=
" tarball"
}
if
b
.
Source
{
labels
=
append
(
labels
,
"Type-Source"
)
ftype
=
"Source"
summary
=
fmt
.
Sprintf
(
"%s (source only)"
,
version
)
}
labels
=
append
(
labels
,
"OpSys-"
+
opsys
,
"Type-"
+
ftype
)
if
*
addLabel
!=
""
{
labels
=
append
(
labels
,
*
addLabel
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment