-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
env: | ||
- JOBS={{ ( index .Values.labels "jobs" ) | default "3" }} | ||
- LUET_PORTAGE_CACHE_PACKAGES="/var/cache/portage/packages" | ||
- LUET_PORTAGE_IGNORE_TAR_WARNING=1 | ||
- LUET_PORTAGE_PKGMETA=1 | ||
- LUET_PORTAGE_PKGFILES=1 | ||
- FEATURES="-sandbox -usersandbox -ipc-sandbox -pid-sandbox -network-sandbox" | ||
prelude: | ||
- eval 'rm -rf /pkgdir/ || true' && mkdir -p /pkgdir/{{ .Values.name }} && luet-portage | ||
--dir /pkgdir/{{ .Values.name }} {{ ( index .Values.labels "emerge.packages" ) }} | ||
- rm -v /var/cache/distfiles/* ${LUET_PORTAGE_CACHE_PACKAGES}/* || true | ||
package_dir: /pkgdir/{{ .Values.name }} | ||
excludes: | ||
- ^/var/cache/portage/ | ||
- ^/var/git/ | ||
requires: | ||
- name: funtoo-base | ||
version: '>=0' | ||
category: seed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: libgcrypt | ||
version: 1.10.1 | ||
category: dev-libs | ||
use_flags: | ||
- -doc | ||
requires: | ||
- name: libgpg-error | ||
version: '>=0' | ||
category: dev-libs | ||
annotations: | ||
subsets: | ||
rules: | ||
devel: | ||
- ^/usr/include/ | ||
portage: | ||
- ^/var/db/pkg/ | ||
description: General purpose crypto library based on the code used in GnuPG | ||
uri: | ||
- https://www.gnupg.org/ | ||
license: LGPL-2.1 MIT | ||
labels: | ||
BDEPEND: doc? ( virtual/texi2dvi ) >=app-portage/elt-patches-20170815 !<sys-devel/gettext-0.18.1.1-r3 | ||
|| ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 | ||
>=sys-devel/libtool-2.4 | ||
DEPEND: '>=dev-libs/libgpg-error-1.25' | ||
IUSE: +asm cpu_flags_arm_neon cpu_flags_arm_aes cpu_flags_arm_sha1 cpu_flags_arm_sha2 | ||
cpu_flags_ppc_altivec cpu_flags_ppc_vsx2 cpu_flags_ppc_vsx3 cpu_flags_x86_aes | ||
cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_padlock cpu_flags_x86_sha cpu_flags_x86_sse4_1 | ||
doc static-libs | ||
RDEPEND: '>=dev-libs/libgpg-error-1.25' | ||
emerge.packages: dev-libs/libgcrypt | ||
kit: core-kit | ||
original.package.name: dev-libs/libgcrypt | ||
original.package.slot: "0" | ||
original.package.version: 1.10.1 |