pantry/projects/git-scm.org/package.yml

80 lines
1.7 KiB
YAML
Raw Normal View History

2022-08-02 14:43:12 +03:00
distributable:
url: https://mirrors.edge.kernel.org/pub/software/scm/git/git-{{version}}.tar.xz
2022-08-02 14:43:12 +03:00
strip-components: 1
versions:
github: git/git/tags
dependencies:
zlib.net: 1
gnu.org/gettext: ^0.21
curl.se: '>=5'
curl.se/ca-certs: '*'
2022-09-13 16:18:47 +03:00
perl.org: '*'
2023-01-19 02:29:34 +03:00
libexpat.github.io: ~2
2022-08-02 14:43:12 +03:00
runtime:
env:
GIT_TEMPLATE_DIR: '{{prefix}}/share/git-core/templates'
# FIXME: this should work once
# https://github.com/teaxyz/cli/issues/497
# is resolved
# GIT_SSL_CAINFO: ${{deps.curl.se/ca-certs.prefix}}/ssl/cert.pem
2022-08-02 14:43:12 +03:00
build:
dependencies:
tea.xyz/gx/cc: c99
tea.xyz/gx/make: '*'
script: |
mv props/config.mak .
2022-09-13 16:18:47 +03:00
./configure $CONF
make install $BAKE
cd "{{prefix}}"
DEBUG=1 fix-shebangs.ts bin/* libexec/*
2022-10-29 15:18:52 +03:00
mkdir -p etc
2022-10-29 15:18:52 +03:00
cp "$SRCROOT"/props/git* etc
2022-09-02 18:00:33 +03:00
env:
V: 1
2022-09-13 16:18:47 +03:00
BAKE:
- --jobs {{ hw.concurrency }}
2022-09-02 18:00:33 +03:00
- NO_TCLTK=1
2022-09-13 16:18:47 +03:00
CONF:
- --prefix={{ prefix }}
- --with-perl={{ deps.perl.org.prefix }}
2022-10-29 15:18:52 +03:00
- --with-gitconfig=etc/gitconfig
2022-09-17 15:32:50 +03:00
INSTALL_STRIP: -s
2022-08-02 14:43:12 +03:00
2022-09-17 15:32:50 +03:00
test: |
git clone https://github.com/teaxyz/white-paper 2>&1 | tee clone-output.txt
# check that the templates can be found
if grep -q 'warning: templates not found in' clone-output.txt; then
false
fi
2022-10-29 15:18:52 +03:00
mkdir foo
cd foo
touch .DS_Store testfile
git init
git add .
test "$(git diff --name-only --cached)" = "testfile"
2022-11-18 21:43:48 +03:00
# necessary so `git commit` will work
git config user.email "you@example.com"
git config user.name "Your Name"
# necessary to check the libexec binaries work
git commit --message "test"
2022-11-18 21:43:48 +03:00
provides:
- bin/git
- bin/git-cvsserver
- bin/git-receive-pack
- bin/git-shell
- bin/git-upload-archive
- bin/git-upload-pack
- bin/scalar