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
nexedi
chromebrew
Commits
3995b637
Commit
3995b637
authored
May 11, 2017
by
Damian Montero
Committed by
GitHub
May 11, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #640 from jam7/update/git
Update git to 2.13.0
parents
1db50c09
32714200
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
19 deletions
+28
-19
packages/git.rb
packages/git.rb
+28
-19
No files found.
packages/git.rb
View file @
3995b637
require
'package'
class
Git
<
Package
version
'1.8.4'
binary_url
({
aarch64:
'https://dl.dropboxusercontent.com/s/lnz5hmjv48d14f2/git-1.8.4-chromeos-armv7l.tar.xz'
,
armv7l:
'https://dl.dropboxusercontent.com/s/lnz5hmjv48d14f2/git-1.8.4-chromeos-armv7l.tar.xz'
,
i686:
'https://dl.dropboxusercontent.com/s/g3binxopw5nfky1/git-1.8.4-chromeos-i686.tar.gz?token_hash=AAEWnMNBfozSIzLD1unbYGJzT4FGkEfJmLFQ-3uzydfT_A&dl=1'
,
x86_64:
'https://dl.dropboxusercontent.com/s/i7vs9wfk94tsrzt/git-1.8.4-chromeos-x86_64.tar.gz?token_hash=AAHyvjayN7THoxlryZaxQ2Ejm9xyD6bZCqXZM81hYRC8iQ&dl=1'
,
})
binary_sha1
({
aarch64:
'084a3b9bb90c572e7c5b12aae485715f145053e5'
,
armv7l:
'084a3b9bb90c572e7c5b12aae485715f145053e5'
,
i686:
'8c1bf4bcffb0e9c17bf20dd05981e86ea34d5d65'
,
x86_64:
'067cb6c36616ac30999ab97e85f3dc0e9d1d57f4'
,
})
version
'2.13.0'
source_url
'https://github.com/git/git/archive/v2.13.0.tar.gz'
source_sha1
'd0078048574b824bc0d202deb3830717a955eb3e'
depends_on
'zlibpkg'
# use system zlibpkg, openssl, curl, expat
depends_on
'zlibpkg'
=>
:build
depends_on
'libssh2'
depends_on
'perl'
depends_on
'curl'
depends_on
'expat'
depends_on
'gettext'
depends_on
'python'
depends_on
'openssl'
=>
:build
depends_on
'curl'
=>
:build
depends_on
'expat'
=>
:build
depends_on
'gettext'
=>
:build
depends_on
'perl'
=>
:build
depends_on
'python27'
=>
:build
# requires python2
# need to build using single core
@make_cmd
=
"make -j1 prefix=/usr/local CC=gcc PERL_PATH=/usr/local/bin/perl PYTHON_PATH=/usr/local/bin/python2"
def
self
.
build
system
"
#{
@make_cmd
}
all"
system
"
#{
@make_cmd
}
strip"
end
def
self
.
install
system
"
#{
@make_cmd
}
DESTDIR=
#{
CREW_DEST_DIR
}
install"
end
def
self
.
check
# Skip several t9010-svn-fe and t9011-svn-da tests since they fail.
system
"GIT_SKIP_TESTS='t9010.16 t9010.20 t9011.1[49] t9011.2[0346] t9011.31 '
#{
@make_cmd
}
test"
end
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