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
6dede430
Commit
6dede430
authored
Jun 01, 2017
by
lyxell
Committed by
GitHub
Jun 01, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #700 from jam7/modify-deps
Modify dependencies in several packages.
parents
144b3002
5a6344a2
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
22 additions
and
13 deletions
+22
-13
packages/bc.rb
packages/bc.rb
+2
-2
packages/ed.rb
packages/ed.rb
+1
-1
packages/emacs.rb
packages/emacs.rb
+5
-5
packages/libtasn1.rb
packages/libtasn1.rb
+6
-0
packages/libunwind.rb
packages/libunwind.rb
+3
-2
packages/p11kit.rb
packages/p11kit.rb
+1
-0
packages/vim.rb
packages/vim.rb
+4
-3
No files found.
packages/bc.rb
View file @
6dede430
...
...
@@ -8,8 +8,8 @@ class Bc < Package
source_sha1
'b4475c6d66590a5911d30f9747361db47231640a'
depends_on
'readline'
depends_on
'flex'
depends_on
'ed'
depends_on
'flex'
=>
:build
depends_on
'ed'
=>
:build
def
self
.
build
system
"./configure"
,
"--with-readline"
...
...
packages/ed.rb
View file @
6dede430
...
...
@@ -6,7 +6,7 @@ class Ed < Package
source_sha1
'3e8aa331ffbc929884107ff3f8fbd76d01252277'
# only lz archive is available for ed and it requires lzip.
depends_on
'lzip'
depends_on
'lzip'
=>
:build
def
self
.
build
system
"./configure"
...
...
packages/emacs.rb
View file @
6dede430
...
...
@@ -7,11 +7,11 @@ class Emacs < Package
source_url
'ftp://ftp.gnu.org/gnu/emacs/emacs-25.1.tar.xz'
source_sha1
'983e457971e3e3c8964d039c113033f98132b8a8'
depends_on
"zlibpkg"
depends_on
"diffutils"
depends_on
"m4"
depends_on
"autoconf"
depends_on
"automake"
depends_on
"zlibpkg"
=>
:build
depends_on
"diffutils"
=>
:build
depends_on
"m4"
=>
:build
depends_on
"autoconf"
=>
:build
depends_on
"automake"
=>
:build
def
self
.
build
system
"./configure --prefix=/usr/local --without-x --without-makeinfo --without-selinux"
...
...
packages/libtasn1.rb
View file @
6dede430
...
...
@@ -5,6 +5,12 @@ class Libtasn1 < Package
source_url
'http://ftpmirror.gnu.org/libtasn1/libtasn1-4.10.tar.gz'
source_sha1
'c7b36fa50866bbc889f7503c7fd1e9f9d7c52a64'
# bison, diff, cmp are required at compile-time
depends_on
'buildessential'
=>
:build
depends_on
'pkgconfig'
=>
:build
depends_on
'bison'
=>
:build
depends_on
'diffutils'
=>
:build
def
self
.
build
system
"./configure"
,
"--enable-shared"
,
"--disable-static"
,
"--with-pic"
,
"--prefix=/usr/local"
system
"make"
...
...
packages/libunwind.rb
View file @
6dede430
...
...
@@ -7,8 +7,9 @@ class Libunwind < Package
source_url
'http://download.savannah.gnu.org/releases/libunwind/libunwind-1.2.tar.gz'
source_sha1
'a33e52d7ecd18b9375508369b566eeb2cc6eec3b'
depends_on
'buildessential'
depends_on
'openssl'
depends_on
'buildessential'
=>
:build
depends_on
'openssl'
=>
:build
depends_on
'xzutils'
=>
:build
def
self
.
build
system
"CC='gcc' ./configure"
...
...
packages/p11kit.rb
View file @
6dede430
...
...
@@ -5,6 +5,7 @@ class P11kit < Package
source_url
'https://p11-glue.freedesktop.org/releases/p11-kit-0.23.2.tar.gz'
source_sha1
'4da0d7b47935b6cb0f321dd00358b063ae42df71'
depends_on
'diffutils'
=>
:build
depends_on
'libffi'
depends_on
'libtasn1'
...
...
packages/vim.rb
View file @
6dede430
...
...
@@ -8,9 +8,10 @@ class Vim < Package
source_sha1
'54bb7fe631ed8eaea5675ec934e88b0da1f1eca0'
depends_on
'ncurses'
depends_on
'perl'
=>
:build
depends_on
'python27'
=>
:build
depends_on
'ruby'
=>
:build
# vim uses shared library of following languages, so need them isntalled at run-time
depends_on
'perl'
depends_on
'python27'
depends_on
'ruby'
def
self
.
build
system
'./configure --prefix=/usr/local --enable-gui=no --with-features=huge --without-x --disable-nls --enable-multibyte --with-tlib=ncurses --enable-perlinterp --enable-pythoninterp --enable-rubyinterp --with-ruby-command=/usr/local/bin/ruby --disable-selinux'
...
...
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