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
e60a334a
Commit
e60a334a
authored
Mar 09, 2021
by
Satadru Pramanik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vim rebuild sans nls
parent
e90e75a4
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
121 additions
and
81 deletions
+121
-81
packages/libcroco.rb
packages/libcroco.rb
+22
-17
packages/vim.rb
packages/vim.rb
+51
-33
packages/vim_runtime.rb
packages/vim_runtime.rb
+48
-31
No files found.
packages/libcroco.rb
View file @
e60a334a
...
@@ -3,34 +3,39 @@ require 'package'
...
@@ -3,34 +3,39 @@ require 'package'
class
Libcroco
<
Package
class
Libcroco
<
Package
description
'Generic Cascading Style Sheet (CSS) parsing and manipulation toolkit.'
description
'Generic Cascading Style Sheet (CSS) parsing and manipulation toolkit.'
homepage
'https://git.gnome.org/browse/libcroco/'
homepage
'https://git.gnome.org/browse/libcroco/'
version
'0.6.12'
@_ver
=
'0.6.13'
@_ver_prelastdot
=
@_ver
.
rpartition
(
'.'
)[
0
]
version
@_ver
compatibility
'all'
compatibility
'all'
source_url
'http://ftp.gnome.org/pub/gnome/sources/libcroco/0.6/libcroco-0.6.12.tar.xz'
source_url
"http://ftp.gnome.org/pub/gnome/sources/libcroco/
#{
@_ver_prelastdot
}
/libcroco-
#{
@_ver
}
.tar.xz"
source_sha256
'
ddc4b5546c9fb4280a5017e2707fbd4839034ed1aba5b7d4372212f34f84f860
'
source_sha256
'
767ec234ae7aa684695b3a735548224888132e063f92db585759b422570621d4
'
binary_url
({
binary_url
({
aarch64:
'https://dl.bintray.com/chromebrew/chromebrew/libcroco-0.6.1
2
-chromeos-armv7l.tar.xz'
,
aarch64:
'https://dl.bintray.com/chromebrew/chromebrew/libcroco-0.6.1
3
-chromeos-armv7l.tar.xz'
,
armv7l:
'https://dl.bintray.com/chromebrew/chromebrew/libcroco-0.6.1
2
-chromeos-armv7l.tar.xz'
,
armv7l:
'https://dl.bintray.com/chromebrew/chromebrew/libcroco-0.6.1
3
-chromeos-armv7l.tar.xz'
,
i686:
'https://dl.bintray.com/chromebrew/chromebrew/libcroco-0.6.1
2
-chromeos-i686.tar.xz'
,
i686:
'https://dl.bintray.com/chromebrew/chromebrew/libcroco-0.6.1
3
-chromeos-i686.tar.xz'
,
x86_64:
'https://dl.bintray.com/chromebrew/chromebrew/libcroco-0.6.1
2-chromeos-x86_64.tar.xz'
,
x86_64:
'https://dl.bintray.com/chromebrew/chromebrew/libcroco-0.6.1
3-chromeos-x86_64.tar.xz'
})
})
binary_sha256
({
binary_sha256
({
aarch64:
'
1997e3255d0cc8495c869a6f1de7dc9e6b7e83c066bf9fda0c07d8d808b59a2a
'
,
aarch64:
'
60fc1383b5e017354c7c2125a8357d5856c13eea76a765b92bf64e3f92df5341
'
,
armv7l:
'
1997e3255d0cc8495c869a6f1de7dc9e6b7e83c066bf9fda0c07d8d808b59a2a
'
,
armv7l:
'
60fc1383b5e017354c7c2125a8357d5856c13eea76a765b92bf64e3f92df5341
'
,
i686:
'
913d41daf21e307c5c06d04d82b0f55e3a14fa31baf552475380217748ba3455
'
,
i686:
'
68afcab6e597a792079edfd6090a51ac49daac65cc45b20aca79c678e77328b7
'
,
x86_64:
'2
1b8c0b44777da7c607c08b85732f1a91a805f248a1937351f4c92ec50444975'
,
x86_64:
'2
d3dd17c43cb509d6c4ed2f5b5e1b29e7f54d63f673c2cc2beac549efcd5e748'
})
})
depends_on
'gtk_doc'
depends_on
'gtk_doc'
depends_on
'six'
=>
:build
depends_on
'six'
=>
:build
def
self
.
build
def
self
.
build
system
"sh autogen.sh"
system
'sh autogen.sh'
system
"./configure --prefix=
#{
CREW_PREFIX
}
--libdir=
#{
CREW_LIB_PREFIX
}
"
system
"env CFLAGS='-pipe -fno-stack-protector -U_FORTIFY_SOURCE -flto=auto' \
system
"make"
CXXFLAGS='-pipe -fno-stack-protector -U_FORTIFY_SOURCE -flto=auto' \
LDFLAGS='-fno-stack-protector -U_FORTIFY_SOURCE -flto=auto' \
./configure
#{
CREW_OPTIONS
}
"
system
'make'
end
end
def
self
.
install
def
self
.
install
system
"make"
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"install"
system
'make'
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
'install'
end
end
end
end
packages/vim.rb
View file @
e60a334a
...
@@ -3,61 +3,79 @@ require 'package'
...
@@ -3,61 +3,79 @@ require 'package'
class
Vim
<
Package
class
Vim
<
Package
description
'Vim is a highly configurable text editor built to make creating and changing any kind of text very efficient.'
description
'Vim is a highly configurable text editor built to make creating and changing any kind of text very efficient.'
homepage
'http://www.vim.org/'
homepage
'http://www.vim.org/'
version
'8.2.1976'
@_ver
=
'8.2.2580'
version
@_ver
compatibility
'all'
compatibility
'all'
source_url
'https://github.com/vim/vim/archive/v8.2.
1976
.tar.gz'
source_url
'https://github.com/vim/vim/archive/v8.2.
2580
.tar.gz'
source_sha256
'd
2d8bc28e28e9c5a63be570cdb44be39470621bb57dcbace5abbd86e15690678
'
source_sha256
'd
0a508ca9726c8ff69bc5f5ab1ebe251c256e01e730f7b36afd03a66c89fcf79
'
binary_url
({
binary_url
({
aarch64:
'https://dl.bintray.com/chromebrew/chromebrew/vim-8.2.
1976
-chromeos-armv7l.tar.xz'
,
aarch64:
'https://dl.bintray.com/chromebrew/chromebrew/vim-8.2.
2580
-chromeos-armv7l.tar.xz'
,
armv7l:
'https://dl.bintray.com/chromebrew/chromebrew/vim-8.2.
1976
-chromeos-armv7l.tar.xz'
,
armv7l:
'https://dl.bintray.com/chromebrew/chromebrew/vim-8.2.
2580
-chromeos-armv7l.tar.xz'
,
i686:
'https://dl.bintray.com/chromebrew/chromebrew/vim-8.2.
1976
-chromeos-i686.tar.xz'
,
i686:
'https://dl.bintray.com/chromebrew/chromebrew/vim-8.2.
2580
-chromeos-i686.tar.xz'
,
x86_64:
'https://dl.bintray.com/chromebrew/chromebrew/vim-8.2.
1976-chromeos-x86_64.tar.xz'
,
x86_64:
'https://dl.bintray.com/chromebrew/chromebrew/vim-8.2.
2580-chromeos-x86_64.tar.xz'
})
})
binary_sha256
({
binary_sha256
({
aarch64:
'
d7f92124ba6fc6d6188ab872205fe8e9a866475b6dec9e4a7e88933620284068
'
,
aarch64:
'
fc753eff299bb106dde43f55f7b52d40852f3f2b0651eb869afad92eb1c5132c
'
,
armv7l:
'
d7f92124ba6fc6d6188ab872205fe8e9a866475b6dec9e4a7e88933620284068
'
,
armv7l:
'
fc753eff299bb106dde43f55f7b52d40852f3f2b0651eb869afad92eb1c5132c
'
,
i686:
'
4439db5c399b4ed5a82128c2a97ca16125be842f0bad4a234566083c239ccd96
'
,
i686:
'
a830cb5b36fe8752b90829f5b97dc382868d7dfda4462ed7cb3e37eebd27939a
'
,
x86_64:
'
7e5660fa1d751e53a6012727fed17e3b4dea23ec3adc1750a1189d9b5908e579'
,
x86_64:
'
27f86977743855f0f77f9797a80674eda93977a4309a02bff399364237984104'
})
})
depends_on
'vim_runtime'
depends_on
'vim_runtime'
def
self
.
preflight
raise
StandardError
,
'Please remove libiconv before building.'
if
File
.
exist?
(
"
#{
CREW_LIB_PREFIX
}
/libcharset.so"
)
end
def
self
.
preinstall
def
self
.
preinstall
gvim
=
`which gvim 2> /dev/null`
.
chomp
gvim
=
`which gvim 2> /dev/null`
.
chomp
abort
"gvim version
#{
version
}
already installed."
.
lightgreen
unless
"
#{
gvim
}
"
==
""
abort
"gvim version
#{
version
}
already installed."
.
lightgreen
unless
gvim
.
to_s
==
''
end
end
def
self
.
patch
def
self
.
patch
# set the system-wide vimrc path
# set the system-wide vimrc path
FileUtils
.
cd
(
'src'
)
do
FileUtils
.
cd
(
'src'
)
do
system
"sed"
,
"-i"
,
"s|^.*#define SYS_VIMRC_FILE.*$|#define SYS_VIMRC_FILE
\"
#{
CREW_PREFIX
}
/etc/vimrc
\"
|"
,
"feature.h"
system
'sed'
,
'-i'
,
"s|^.*#define SYS_VIMRC_FILE.*$|#define SYS_VIMRC_FILE
\"
#{
CREW_PREFIX
}
/etc/vimrc
\"
|"
,
system
"sed"
,
"-i"
,
"s|^.*#define SYS_GVIMRC_FILE.*$|#define SYS_GVIMRC_FILE
\"
#{
CREW_PREFIX
}
/etc/gvimrc
\"
|"
,
"feature.h"
'feature.h'
system
'sed'
,
'-i'
,
"s|^.*#define SYS_GVIMRC_FILE.*$|#define SYS_GVIMRC_FILE
\"
#{
CREW_PREFIX
}
/etc/gvimrc
\"
|"
,
'feature.h'
system
'autoconf'
system
'autoconf'
end
end
end
end
def
self
.
build
def
self
.
build
system
'./configure'
,
system
'./configure --help'
"--prefix=
#{
CREW_PREFIX
}
"
,
system
"env CFLAGS='-pipe -fno-stack-protector -U_FORTIFY_SOURCE -flto=auto' \
"--localstatedir=
#{
CREW_PREFIX
}
/var/lib/vim"
,
CXXFLAGS='-pipe -fno-stack-protector -U_FORTIFY_SOURCE -flto=auto' \
'--with-features=huge'
,
LDFLAGS='-fno-stack-protector -U_FORTIFY_SOURCE -flto=auto' \
"--with-compiledby='Chromebrew'"
,
./configure \
'--with-x=no'
,
#{
CREW_OPTIONS
}
\
'--disable-gui'
,
--localstatedir=
#{
CREW_PREFIX
}
/var/lib/vim \
'--enable-multibyte'
,
--with-features=huge \
'--enable-cscope'
,
--with-compiledby='Chromebrew' \
'--enable-fontset'
,
--enable-gpm \
'--enable-perlinterp=dynamic'
,
--enable-acl \
'--enable-pythoninterp=dynamic'
,
--with-x=no \
'--enable-python3interp=dynamic'
,
--disable-gui \
'--enable-rubyinterp=dynamic'
,
--enable-multibyte \
'--disable-selinux'
--enable-cscope \
--enable-netbeans \
--enable-perlinterp=dynamic \
--enable-pythoninterp=dynamic \
--enable-python3interp=dynamic \
--enable-rubyinterp=dynamic \
--enable-luainterp=dynamic \
--enable-tclinterp=dynamic \
--disable-canberra \
--disable-selinux \
--disable-nls"
system
'make'
system
'make'
end
end
def
self
.
install
def
self
.
install
system
'make'
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"VIMRCLOC=
#{
CREW_PREFIX
}
/etc"
,
'install'
system
'make'
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"VIMRCLOC=
#{
CREW_PREFIX
}
/etc"
,
'install'
FileUtils
.
ln_s
"
#{
CREW_PREFIX
}
/bin/vim"
,
"
#{
CREW_DEST_PREFIX
}
/bin/vi"
# these are provided by 'vim_runtime'
# these are provided by 'vim_runtime'
FileUtils
.
rm_r
"
#{
CREW_DEST_PREFIX
}
/share/vim"
FileUtils
.
rm_r
"
#{
CREW_DEST_PREFIX
}
/share/vim"
...
@@ -70,9 +88,9 @@ class Vim < Package
...
@@ -70,9 +88,9 @@ class Vim < Package
def
self
.
postinstall
def
self
.
postinstall
puts
puts
puts
"The config files are located in
#{
CREW_PREFIX
}
/etc."
.
lightblue
puts
"The config files are located in
#{
CREW_PREFIX
}
/etc."
.
lightblue
puts
"User-specific configuration should go in ~/.vimrc."
.
lightblue
puts
'User-specific configuration should go in ~/.vimrc.'
.
lightblue
puts
puts
puts
"If you are upgrading from an earlier version, edit ~/.bashrc"
.
orange
puts
'If you are upgrading from an earlier version, edit ~/.bashrc'
.
orange
puts
"and remove the 'export VIMRUNTIME' and 'export LC_ALL=C' lines."
.
orange
puts
"and remove the 'export VIMRUNTIME' and 'export LC_ALL=C' lines."
.
orange
puts
puts
end
end
...
...
packages/vim_runtime.rb
View file @
e60a334a
...
@@ -3,49 +3,66 @@ require 'package'
...
@@ -3,49 +3,66 @@ require 'package'
class
Vim_runtime
<
Package
class
Vim_runtime
<
Package
description
'Vim is a highly configurable text editor built to make creating and changing any kind of text very efficient. (shared runtime)'
description
'Vim is a highly configurable text editor built to make creating and changing any kind of text very efficient. (shared runtime)'
homepage
'http://www.vim.org/'
homepage
'http://www.vim.org/'
version
'8.2.1976'
@_ver
=
'8.2.2580'
version
@_ver
compatibility
'all'
compatibility
'all'
source_url
'https://github.com/vim/vim/archive/v8.2.
1976
.tar.gz'
source_url
'https://github.com/vim/vim/archive/v8.2.
2580
.tar.gz'
source_sha256
'd
2d8bc28e28e9c5a63be570cdb44be39470621bb57dcbace5abbd86e15690678
'
source_sha256
'd
0a508ca9726c8ff69bc5f5ab1ebe251c256e01e730f7b36afd03a66c89fcf79
'
binary_url
({
binary_url
({
aarch64:
'https://dl.bintray.com/chromebrew/chromebrew/vim_runtime-8.2.
1976
-chromeos-armv7l.tar.xz'
,
aarch64:
'https://dl.bintray.com/chromebrew/chromebrew/vim_runtime-8.2.
2580
-chromeos-armv7l.tar.xz'
,
armv7l:
'https://dl.bintray.com/chromebrew/chromebrew/vim_runtime-8.2.
1976
-chromeos-armv7l.tar.xz'
,
armv7l:
'https://dl.bintray.com/chromebrew/chromebrew/vim_runtime-8.2.
2580
-chromeos-armv7l.tar.xz'
,
i686:
'https://dl.bintray.com/chromebrew/chromebrew/vim_runtime-8.2.
1976
-chromeos-i686.tar.xz'
,
i686:
'https://dl.bintray.com/chromebrew/chromebrew/vim_runtime-8.2.
2580
-chromeos-i686.tar.xz'
,
x86_64:
'https://dl.bintray.com/chromebrew/chromebrew/vim_runtime-8.2.
1976-chromeos-x86_64.tar.xz'
,
x86_64:
'https://dl.bintray.com/chromebrew/chromebrew/vim_runtime-8.2.
2580-chromeos-x86_64.tar.xz'
})
})
binary_sha256
({
binary_sha256
({
aarch64:
'
681fbb6f06cfb300a1a1ba529bc9596ae3fc183e5ccc5e77a8bfb5869da4c281
'
,
aarch64:
'
89f2375c66810417550d4ab2d2fbf90a6953e3c585b8e0baaa1240b7e0187c99
'
,
armv7l:
'
681fbb6f06cfb300a1a1ba529bc9596ae3fc183e5ccc5e77a8bfb5869da4c281
'
,
armv7l:
'
89f2375c66810417550d4ab2d2fbf90a6953e3c585b8e0baaa1240b7e0187c99
'
,
i686:
'
d6c5b6b3518c4a7856df53fac5f18af5bf6d48094bf1dc11d46018ba92cb2298
'
,
i686:
'
0b7505d98e974e45d621f33fcaa19f14d907422d3b04f41bfdb0d9143776d61d
'
,
x86_64:
'
588ce10bf392d363ce9de709f763ab79ef35a5e8e5eb67e278eec894b6fa04ed'
,
x86_64:
'
a2ee9fcb92bc566200d21a176ea7bfec6ef7d5b3fbe3fc3c0244ed31e6168d14'
})
})
def
self
.
preflight
raise
StandardError
,
'Please remove libiconv before building.'
if
File
.
exist?
(
"
#{
CREW_LIB_PREFIX
}
/libcharset.so"
)
end
def
self
.
patch
def
self
.
patch
# set the system-wide vimrc path
# set the system-wide vimrc path
FileUtils
.
cd
(
'src'
)
do
FileUtils
.
cd
(
'src'
)
do
system
"sed"
,
"-i"
,
"s|^.*#define SYS_VIMRC_FILE.*$|#define SYS_VIMRC_FILE
\"
#{
CREW_PREFIX
}
/etc/vimrc
\"
|"
,
"feature.h"
system
'sed'
,
'-i'
,
"s|^.*#define SYS_VIMRC_FILE.*$|#define SYS_VIMRC_FILE
\"
#{
CREW_PREFIX
}
/etc/vimrc
\"
|"
,
system
"sed"
,
"-i"
,
"s|^.*#define SYS_GVIMRC_FILE.*$|#define SYS_GVIMRC_FILE
\"
#{
CREW_PREFIX
}
/etc/gvimrc
\"
|"
,
"feature.h"
'feature.h'
system
'sed'
,
'-i'
,
"s|^.*#define SYS_GVIMRC_FILE.*$|#define SYS_GVIMRC_FILE
\"
#{
CREW_PREFIX
}
/etc/gvimrc
\"
|"
,
'feature.h'
system
'autoconf'
system
'autoconf'
end
end
end
end
def
self
.
build
def
self
.
build
system
"./configure"
,
system
'./configure --help'
"--prefix=
#{
CREW_PREFIX
}
"
,
system
"env CFLAGS='-pipe -fno-stack-protector -U_FORTIFY_SOURCE -flto=auto' \
"--localstatedir=
#{
CREW_PREFIX
}
/var/lib/vim"
,
CXXFLAGS='-pipe -fno-stack-protector -U_FORTIFY_SOURCE -flto=auto' \
'--with-features=huge'
,
LDFLAGS='-fno-stack-protector -U_FORTIFY_SOURCE -flto=auto' \
"--with-compiledby='Chromebrew'"
,
./configure \
'--with-x=no'
,
#{
CREW_OPTIONS
}
\
'--disable-gui'
,
--localstatedir=
#{
CREW_PREFIX
}
/var/lib/vim \
'--enable-multibyte'
,
--with-features=huge \
'--enable-cscope'
,
--with-compiledby='Chromebrew' \
'--enable-fontset'
,
--enable-gpm \
'--enable-perlinterp=dynamic'
,
--enable-acl \
'--enable-pythoninterp=dynamic'
,
--with-x=no \
'--enable-python3interp=dynamic'
,
--disable-gui \
'--enable-rubyinterp=dynamic'
,
--enable-multibyte \
'--disable-selinux'
--enable-cscope \
--enable-netbeans \
--enable-perlinterp=dynamic \
--enable-pythoninterp=dynamic \
--enable-python3interp=dynamic \
--enable-rubyinterp=dynamic \
--enable-luainterp=dynamic \
--enable-tclinterp=dynamic \
--disable-canberra \
--disable-selinux \
--disable-nls"
system
'make'
system
'make'
end
end
...
@@ -107,7 +124,7 @@ class Vim_runtime < Package
...
@@ -107,7 +124,7 @@ class Vim_runtime < Package
def
self
.
postinstall
def
self
.
postinstall
vimrc
=
"
#{
CREW_PREFIX
}
/etc/vimrc"
vimrc
=
"
#{
CREW_PREFIX
}
/etc/vimrc"
# keep user changes by writing to a new file
# keep user changes by writing to a new file
vimrc
+=
".new"
if
File
.
exists
?
(
vimrc
)
vimrc
+=
'.new'
if
File
.
exist
?
(
vimrc
)
# by default we will load the global config
# by default we will load the global config
File
.
write
(
vimrc
,
<<~
EOF
)
File
.
write
(
vimrc
,
<<~
EOF
)
" System-wide defaults are in
#{
CREW_PREFIX
}
/share/vim/vimfiles/chromebrew.vim
" System-wide defaults are in
#{
CREW_PREFIX
}
/share/vim/vimfiles/chromebrew.vim
...
...
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