mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-13 09:28:07 -05:00
* Add zlib_ng Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix package file. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to git * Add built packages for linux/amd64 to git * Add built packages for linux/arm/v7 to git * git => 2.49 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * add zlib_ng dep to git Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to git * Add built packages for linux/amd64 to git * Add built packages for linux/arm/v7 to git * Add zlib_ng to appropriate metapackages and install.sh Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add zlib_ng to CREW_ESSENTIAL_PACKAGES to keep git from breaking. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
91 lines
3.5 KiB
Ruby
91 lines
3.5 KiB
Ruby
require 'buildsystems/meson'
|
|
|
|
class Git < Meson
|
|
description 'Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.'
|
|
homepage 'https://git-scm.com/'
|
|
version '2.49.0'
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url "https://mirrors.edge.kernel.org/pub/software/scm/git/git-#{version}.tar.xz"
|
|
source_sha256 '4803b809c42696b3b8cce6b0ba6de26febe1197f853daf930a484db93c1ad0d5'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '25939e618f9ccdabac23449a6045a76610dae3300da47fda66036e619e2a228f',
|
|
armv7l: '25939e618f9ccdabac23449a6045a76610dae3300da47fda66036e619e2a228f',
|
|
i686: '6856aa4444428879c7655bc529a88c4b72de6adb641526adf52e140166950658',
|
|
x86_64: '32df80fbff4021a99706b1cfd822ecd626cf91b1a7871ee531e5c3940c069b25'
|
|
})
|
|
|
|
depends_on 'ca_certificates' => :build
|
|
depends_on 'curl' # R
|
|
depends_on 'expat' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'openssl' # R
|
|
depends_on 'pcre2' # R
|
|
depends_on 'ruby_asciidoctor' => :build
|
|
depends_on 'xmlto' => :build
|
|
depends_on 'zlib_ng' # R
|
|
|
|
print_source_bashrc
|
|
run_tests
|
|
|
|
meson_options "-Ddefault_pager=most \
|
|
-Ddocs=man \
|
|
-Dgitattributes=#{CREW_PREFIX}/etc/gitattributes \
|
|
-Dgitconfig=#{CREW_PREFIX}/etc/gitconfig \
|
|
-Dgitweb=disabled \
|
|
-Dsane_tool_path=#{CREW_PREFIX}/bin \
|
|
-Dzlib_backend=zlib-ng"
|
|
|
|
meson_build_extras do
|
|
git_env = <<~EOF
|
|
|
|
GIT_PS1_SHOWDIRTYSTATE=yes
|
|
GIT_PS1_SHOWSTASHSTATE=yes
|
|
GIT_PS1_SHOWUNTRACKEDFILES=yes
|
|
GIT_PS1_SHOWUPSTREAM=auto
|
|
GIT_PS1_DESCRIBE_STYLE=default
|
|
GIT_PS1_SHOWCOLORHINTS=yes
|
|
|
|
# Add LIBC_VERSION and CHROMEOS_RELEASE_CHROME_MILESTONE set in
|
|
# crew_profile_base to prompt if in a container.
|
|
if [[ -e /.dockerenv ]] && [ -n "${LIBC_VERSION+1}" ] && [ -n "${CHROMEOS_RELEASE_CHROME_MILESTONE+1}" ]; then
|
|
PS1='\\[\\033[1;34m\\]\\u@\\H:$LIBC_VERSION M$CHROMEOS_RELEASE_CHROME_MILESTONE \\[\\033[1;33m\\]\\w \\[\\033[1;31m\\]$(__git_ps1 "(%s)")\\[\\033[0m\\]\\$ '
|
|
else
|
|
PS1='\\[\\033[1;34m\\]\\u@\\H \\[\\033[1;33m\\]\\w \\[\\033[1;31m\\]$(__git_ps1 "(%s)")\\[\\033[0m\\]\\$ '
|
|
fi
|
|
EOF
|
|
File.write('contrib/completion/git-prompt.sh', git_env, mode: 'a')
|
|
end
|
|
|
|
meson_install_extras do
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/share/git-completion"
|
|
FileUtils.cp_r Dir.glob('contrib/completion/.'), "#{CREW_DEST_PREFIX}/share/git-completion/"
|
|
|
|
File.write 'git_bashd_env', <<~GIT_BASHD_EOF
|
|
# git bash completion
|
|
source #{CREW_PREFIX}/share/git-completion/git-completion.bash
|
|
GIT_BASHD_EOF
|
|
FileUtils.install 'git_bashd_env', "#{CREW_DEST_PREFIX}/etc/bash.d/git", mode: 0o644
|
|
FileUtils.install 'contrib/completion/git-prompt.sh', "#{CREW_DEST_PREFIX}/etc/bash.d/git-prompt.sh", mode: 0o644
|
|
end
|
|
|
|
def self.check
|
|
# Check to see if linking libcurl worked, which means
|
|
# git-remote-https should exist
|
|
unless File.symlink?("#{CREW_DEST_PREFIX}/libexec/git-core/git-remote-https") ||
|
|
File.exist?("#{CREW_DEST_PREFIX}/libexec/git-core/git-remote-https")
|
|
abort 'git-remote-https is broken'.lightred
|
|
end
|
|
end
|
|
|
|
def self.postinstall
|
|
ExitMessage.add "\ncd /path/to/git/repo and you should see the branch displayed in the prompt.\n".lightblue
|
|
return unless File.directory?("#{CREW_PREFIX}/lib/crew/.git")
|
|
|
|
puts 'Running git garbage collection...'.lightblue
|
|
system 'git gc', chdir: CREW_LIB_PATH, exception: false
|
|
end
|
|
end
|