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
3953148f
Commit
3953148f
authored
Jun 02, 2016
by
Fred Clift
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix dependencies for packages to use the system openssl
parent
a092feab
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
3 deletions
+6
-3
packages/libevent.rb
packages/libevent.rb
+2
-0
packages/python27.rb
packages/python27.rb
+1
-1
packages/python34.rb
packages/python34.rb
+1
-1
packages/tmux.rb
packages/tmux.rb
+2
-1
No files found.
packages/libevent.rb
View file @
3953148f
...
...
@@ -4,6 +4,8 @@ class Libevent < Package # name the
version
'2.0.21'
# software version
source_url
'https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz'
# software source tarball url
source_sha1
'3e6674772eb77de24908c6267c698146420ab699'
# source tarball sha1 sum
depends_on
'openssl_devel'
def
self
.
build
# self.build contains commands needed to build the software from source
system
"./configure"
...
...
packages/python27.rb
View file @
3953148f
...
...
@@ -7,7 +7,7 @@ class Python27 < Package
depends_on
'bz2'
depends_on
'ncurses'
depends_on
'openssl
-
devel'
depends_on
'openssl
_
devel'
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
\"
"
...
...
packages/python34.rb
View file @
3953148f
...
...
@@ -5,7 +5,7 @@ class Python34 < Package
source_url
'https://www.python.org/ftp/python/3.4.1/Python-3.4.1.tgz'
# software source tarball url
source_sha1
'e8c1bd575a6ccc2a75f79d9d094a6a29d3802f5d'
# source tarball sha1 sum
depends_on
'openssl
-
devel'
depends_on
'openssl
_
devel'
def
self
.
build
# self.build contains commands needed to build the software from source
system
"./configure"
...
...
packages/tmux.rb
View file @
3953148f
...
...
@@ -7,7 +7,8 @@ class Tmux < Package # name the pack
depends_on
'readline'
# software dependencies
depends_on
'libevent'
depends_on
'openssl'
# does this really depend on openssl? or just on libevent that depends on openssl
depends_on
'openssl_devel'
depends_on
'ncurses'
def
self
.
build
# self.build contains commands needed to build the software from source
...
...
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