Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

new pkg: git-crypt #32022

Merged
merged 2 commits into from
Oct 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions git-crypt.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
package:
name: git-crypt
version: 0.7.0
epoch: 0
description: Transparent file encryption in git
copyright:
- license: GPL-3.0-or-later

environment:
contents:
packages:
- build-base
- busybox
- ca-certificates-bundle
- docbook-xml
- git
- openssl-dev

pipeline:
- uses: fetch
with:
expected-sha256: 2210a89588169ae9a54988c7fdd9717333f0c6053ff704d335631a387bd3bcff
uri: https://github.com/AGWA/git-crypt/archive/${{package.version}}.tar.gz

- runs: |
export CXXFLAGS="$CXXFLAGS -DOPENSSL_API_COMPAT=0x30000000L"
make -C . -j$(nproc) V=1

- uses: autoconf/make-install

- uses: strip

subpackages:
- name: git-crypt-doc
pipeline:
- uses: split/manpages
description: git-crypt manpages

test:
pipeline:
- name: Test keygen subcommand
runs: git-crypt keygen test.key

update:
enabled: true
github:
identifier: AGWA/git-crypt
Loading