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
58279643
Commit
58279643
authored
Jul 29, 2016
by
system_user
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New branch wit just node updates
parent
2404635f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
46 deletions
+13
-46
packages/libtool.rb
packages/libtool.rb
+0
-18
packages/python27.rb
packages/python27.rb
+3
-4
packages/readline.rb
packages/readline.rb
+10
-5
packages/unzip.rb
packages/unzip.rb
+0
-19
No files found.
packages/libtool.rb
deleted
100644 → 0
View file @
2404635f
require
'package'
class
Libtool
<
Package
version
'2.4.6'
source_url
'http://ftpmirror.gnu.org/libtool/libtool-2.4.6.tar.gz'
source_sha1
'25b6931265230a06f0fc2146df64c04e5ae6ec33'
depends_on
'buildessential'
def
self
.
build
system
"./configure"
#--libdir=/usr/local/lib#{SHORTARCH}/ CC=\"gcc -m#{SHORTARCH}\" CFLAGS=\" -fPIC\""
system
"make"
end
def
self
.
install
system
"make"
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"install"
end
end
packages/python27.rb
View file @
58279643
require
'package'
require
'package'
class
Python27
<
Package
class
Python27
<
Package
version
'2.7.1
2
'
version
'2.7.1
0
'
source_url
'https://www.python.org/ftp/python/2.7.1
2/Python-2.7.12.tar.x
z'
# software source tarball url
source_url
'https://www.python.org/ftp/python/2.7.1
0/Python-2.7.10.tg
z'
# software source tarball url
source_sha1
'
05360b8ade117b35e266b2004a7f1f11250c6dcd'
# source tarball sha1 sum
source_sha1
'
49089f1f6ab445dc8ace97beeb276095c4c8039b'
# source tarball sha1 sum
depends_on
'bz2'
depends_on
'bz2'
depends_on
'ncurses'
depends_on
'ncurses'
depends_on
'openssl_devel'
def
self
.
build
# self.build contains commands needed to build the software from source
def
self
.
build
# self.build contains commands needed to build the software from source
system
"./configure --prefix=/usr/local CPPFLAGS=
\"
-I/usr/local/include -I/usr/local/include/ncurses
\"
LDFLAGS=
\"
-L/usr/local/lib
\"
CFLAGS=
\"
-fPIC
\"
"
system
"./configure --prefix=/usr/local CPPFLAGS=
\"
-I/usr/local/include -I/usr/local/include/ncurses
\"
LDFLAGS=
\"
-L/usr/local/lib
\"
CFLAGS=
\"
-fPIC
\"
"
...
...
packages/readline.rb
View file @
58279643
require
'package'
require
'package'
class
Readline
<
Package
class
Readline
<
Package
version
'6.3'
version
'6.2'
source_url
'http://ftp.gnu.org/gnu/readline/readline-6.3.tar.gz'
source_sha1
'017b92dc7fd4e636a2b5c9265a77ccc05798c9e1'
depends_on
'buildessential'
binary_url
({
x86_64:
"https://dl.dropboxusercontent.com/s/v8xva6e4u3tvkaw/readline-6.2-chromeos-x86_64.tar.gz?token_hash=AAHOv1kLiv7xzDkYEZCSB_3ShK0n_7B4m2dNGHPnn2fZIg&dl=1"
})
binary_sha1
({
x86_64:
'621c2538b452be33cca507110ccfd4144c61edd2'
})
depends_on
'buildessential'
#until binary for i686 provided
def
self
.
build
def
self
.
build
system
"
CC='gcc'
./configure"
system
"./configure"
system
"make"
system
"make"
end
end
...
...
packages/unzip.rb
deleted
100644 → 0
View file @
2404635f
require
'package'
class
Unzip
<
Package
version
'6.0'
source_url
'http://pkgs.fedoraproject.org/repo/pkgs/unzip/unzip60.tar.gz/62b490407489521db863b523a7f86375/unzip60.tar.gz'
source_sha1
'abf7de8a4018a983590ed6f5cbd990d4740f8a22'
depends_on
'buildessential'
def
self
.
build
system
"make -f unix/Makefile generic"
end
def
self
.
install
system
"make prefix=/usr/local MANDIR=/usr/local/tmp/unzip-man -f unix/Makefile install"
#remove the man pages we couldn't install
system
"rm -r -f /usr/local/tmp/unzipman"
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