Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
chromebrew
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Guillaume Hervier
chromebrew
Commits
33540a44
Commit
33540a44
authored
Jul 31, 2018
by
Ed Reel
Committed by
Chris Thurber
Jul 31, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add recursive build from source option to crew (#2499)
parent
b56bf2b9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
7 deletions
+12
-7
crew
crew
+11
-6
lib/const.rb
lib/const.rb
+1
-1
No files found.
crew
View file @
33540a44
...
@@ -21,11 +21,11 @@ Chromebrew - Package manager for Chrome OS http://skycocker.github.io/chromebrew
...
@@ -21,11 +21,11 @@ Chromebrew - Package manager for Chrome OS http://skycocker.github.io/chromebrew
Usage
:
Usage
:
crew
build
[-
k
|--
keep
]
[-
v
|--
verbose
]
<
name
>
...
crew
build
[-
k
|--
keep
]
[-
v
|--
verbose
]
<
name
>
...
crew
download
[-
v
|--
verbose
]
<
name
>
...
crew
const
[<
name
>
...]
crew
const
[<
name
>
...]
crew
download
[-
v
|--
verbose
]
<
name
>
...
crew
files
<
name
>
...
crew
files
<
name
>
...
crew
help
[<
command
>]
crew
help
[<
command
>]
crew
install
[-
k
|--
keep
]
[-
s
|--
build
-
from
-
source
]
[-
v
|--
verbose
]
<
name
>
...
crew
install
[-
k
|--
keep
]
[-
s
|--
build
-
from
-
source
]
[-
S
|--
recursive
-
build
]
[-
v
|--
verbose
]
<
name
>
...
crew
list
(
available
|
installed
)
crew
list
(
available
|
installed
)
crew
remove
[-
v
|--
verbose
]
<
name
>
...
crew
remove
[-
v
|--
verbose
]
<
name
>
...
crew
search
[-
v
|--
verbose
]
[<
name
>
...]
crew
search
[-
v
|--
verbose
]
[<
name
>
...]
...
@@ -35,6 +35,7 @@ Usage:
...
@@ -35,6 +35,7 @@ Usage:
-
k
--
keep
Keep
the
`
CREW_BREW_DIR
`
(#{
CREW_BREW_DIR
})
directory
.
-
k
--
keep
Keep
the
`
CREW_BREW_DIR
`
(#{
CREW_BREW_DIR
})
directory
.
-
s
--
build
-
from
-
source
Build
from
source
even
if
pre
-
compiled
binary
exists
.
-
s
--
build
-
from
-
source
Build
from
source
even
if
pre
-
compiled
binary
exists
.
-
S
--
recursive
-
build
Build
from
source
,
including
all
dependencies
,
even
if
pre
-
compiled
binaries
exist
.
-
V
--
version
Display
the
crew
version
.
-
V
--
version
Display
the
crew
version
.
-
v
--
verbose
Show
extra
information
.
-
v
--
verbose
Show
extra
information
.
-
h
--
help
Show
this
screen
.
-
h
--
help
Show
this
screen
.
...
@@ -80,6 +81,7 @@ end
...
@@ -80,6 +81,7 @@ end
@
opt_keep
=
args
[
"--keep"
]
@
opt_keep
=
args
[
"--keep"
]
@
opt_verbose
=
args
[
"--verbose"
]
@
opt_verbose
=
args
[
"--verbose"
]
@
opt_src
=
args
[
"--build-from-source"
]
@
opt_src
=
args
[
"--build-from-source"
]
@
opt_recursive
=
args
[
"--recursive-build"
]
@
device
=
JSON
.
parse
(
File
.
read
(
CREW_CONFIG_PATH
+
'device.json'
),
symbolize_names
:
true
)
@
device
=
JSON
.
parse
(
File
.
read
(
CREW_CONFIG_PATH
+
'device.json'
),
symbolize_names
:
true
)
#
symbolize
also
values
#
symbolize
also
values
...
@@ -105,6 +107,7 @@ end
...
@@ -105,6 +107,7 @@ end
def
set_package
(
pkgName
,
silent
=
false
)
def
set_package
(
pkgName
,
silent
=
false
)
require
CREW_LIB_PATH
+
'packages/'
+
pkgName
require
CREW_LIB_PATH
+
'packages/'
+
pkgName
@
pkg
=
Object
.
const_get
(
pkgName
.
capitalize
)
@
pkg
=
Object
.
const_get
(
pkgName
.
capitalize
)
@
pkg
.
build_from_source
=
true
if
@
opt_recursive
@
pkg
.
name
=
pkgName
@
pkg
.
name
=
pkgName
print_package
(
pkgName
,
true
)
unless
silent
print_package
(
pkgName
,
true
)
unless
silent
end
end
...
@@ -189,10 +192,11 @@ def help (pkgName)
...
@@ -189,10 +192,11 @@ def help (pkgName)
puts
"The package(s) must be currently installed."
puts
"The package(s) must be currently installed."
when
"install"
when
"install"
puts
"Install package(s)."
puts
"Install package(s)."
puts
"Usage: crew install [-k|--keep] [-s|--build-from-source] [-v|--verbose] <package1> [<package2> ...]"
puts
"Usage: crew install [-k|--keep] [-s|--build-from-source] [-
S|--recursive-build] [-
v|--verbose] <package1> [<package2> ...]"
puts
"The package(s) must have a valid name. Use `crew search <pattern>` to search for packages to install."
puts
"The package(s) must have a valid name. Use `crew search <pattern>` to search for packages to install."
puts
"If `-k` or `--keep` is present, the `CREW_BREW_DIR` (#{CREW_BREW_DIR}) directory will remain."
puts
"If `-k` or `--keep` is present, the `CREW_BREW_DIR` (#{CREW_BREW_DIR}) directory will remain."
puts
"If `-s` or `--build-from-source` is present, the package(s) will be compiled instead of installed via binary."
puts
"If `-s` or `--build-from-source` is present, the package(s) will be compiled instead of installed via binary."
puts
"If `-S` or `--recursive-build` is present, the package(s), including all dependencies, will be compiled instead of installed via binary."
puts
"If `-v` or `--verbose` is present, extra information will be displayed."
puts
"If `-v` or `--verbose` is present, extra information will be displayed."
when
"list"
when
"list"
puts
"List available or installed packages"
puts
"List available or installed packages"
...
@@ -221,16 +225,17 @@ def help (pkgName)
...
@@ -221,16 +225,17 @@ def help (pkgName)
puts
"This only updates crew itself. Use `crew upgrade` to update packages."
puts
"This only updates crew itself. Use `crew upgrade` to update packages."
when
"upgrade"
when
"upgrade"
puts
"Update package(s)."
puts
"Update package(s)."
puts
"Usage: crew upgrade [-v|--verbose] <package1> [<package2> ...]"
puts
"Usage: crew upgrade [-v|--verbose]
[-s|--build-from-source]
<package1> [<package2> ...]"
puts
"If package(s) are omitted, all packages will be updated. Otherwise, specific package(s) will be updated."
puts
"If package(s) are omitted, all packages will be updated. Otherwise, specific package(s) will be updated."
puts
"Use `crew update` to update crew itself."
puts
"Use `crew update` to update crew itself."
puts
"If `-s` or `--build-from-source` is present, the package(s) will be compiled instead of upgraded via binary."
puts
"If `-v` or `--verbose` is present, extra information will be displayed."
puts
"If `-v` or `--verbose` is present, extra information will be displayed."
when
"whatprovides"
when
"whatprovides"
puts
"Determine which package(s) contains file(s)."
puts
"Determine which package(s) contains file(s)."
puts
"Usage: crew whatprovides <pattern> ..."
puts
"Usage: crew whatprovides <pattern> ..."
puts
"The <pattern> is a search string which can contain regular expressions."
puts
"The <pattern> is a search string which can contain regular expressions."
else
else
puts
"Available commands: build, download, files, install, list ,remove, search, update, upgrade, whatprovides"
puts
"Available commands: build,
const,
download, files, install, list ,remove, search, update, upgrade, whatprovides"
end
end
end
end
...
@@ -898,7 +903,7 @@ def install_command (args)
...
@@ -898,7 +903,7 @@ def install_command (args)
args
[
"<name>"
].
each
do
|
name
|
args
[
"<name>"
].
each
do
|
name
|
@
pkgName
=
name
@
pkgName
=
name
search
@
pkgName
search
@
pkgName
@
pkg
.
build_from_source
=
true
if
@
opt_src
@
pkg
.
build_from_source
=
true
if
@
opt_src
or
@
opt_recursive
resolve_dependencies_and_install
resolve_dependencies_and_install
end
end
end
end
...
...
lib/const.rb
View file @
33540a44
# Defines common constants used in different parts of crew
# Defines common constants used in different parts of crew
CREW_VERSION
=
'
0.4.3
'
CREW_VERSION
=
'
1.0.1
'
ARCH
=
`uname -m`
.
strip
ARCH
=
`uname -m`
.
strip
ARCH_LIB
=
if
ARCH
==
'x86_64'
then
'lib64'
else
'lib'
end
ARCH_LIB
=
if
ARCH
==
'x86_64'
then
'lib64'
else
'lib'
end
...
...
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