-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Provide base skeleton for gentoo to pass test_cli tests
- Loading branch information
1 parent
a5df85f
commit 39b79fc
Showing
10 changed files
with
71 additions
and
6 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
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
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 |
---|---|---|
|
@@ -11,10 +11,12 @@ | |
"type": "string", | ||
"enum": [ | ||
"apt", | ||
"portage", | ||
"yum" | ||
], | ||
"examples": [ | ||
"apt", | ||
"portage", | ||
"yum" | ||
] | ||
}, | ||
|
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
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,21 @@ | ||
### This file contains system-wide build variables, including Gentoo variables such as USE, which enable/disable optional package features. | ||
|
||
COMMON_FLAGS="-O2 -pipe -march=native" | ||
# Comment the following out on systems with less than 8 threads | ||
MAKEOPTS="--jobs 8 --load-average 9" | ||
CFLAGS="${COMMON_FLAGS}" | ||
CXXFLAGS="${COMMON_FLAGS}" | ||
FCFLAGS="${COMMON_FLAGS}" | ||
FFLAGS="${COMMON_FLAGS}" | ||
|
||
# NOTE: This stage was built with the bindist Use flag enabled | ||
|
||
# This sets the language of build output to English. | ||
# Please keep this setting intact when reporting bugs. | ||
LC_MESSAGES=C | ||
|
||
USE="${USE} science" | ||
ACCEPT_LICENSE="*" | ||
|
||
# Needed in the container environment | ||
#FEATURES="-ipc-sandbox -network-sandbox -pid-sandbox" |
2 changes: 2 additions & 0 deletions
2
neurodocker/templates/gentoo-portage/package.accept_keywords/gen
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,2 @@ | ||
### This is needed because ::science packages are generally not marked as stable | ||
*/* ~amd64 |
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,2 @@ | ||
### This is empty, thankfully. | ||
### If we find bugs in some version of some package we can blacklist the package, version, or feature that causes it here. |
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,6 @@ | ||
[gentoo] | ||
location = /var/db/repos/gentoo | ||
# We sync manually, but we need sync-uri to be written down somewhere to do so | ||
sync-type = git | ||
sync-uri = https://anongit.gentoo.org/git/repo/gentoo.git | ||
sync-git-verify-commit-signature = yes |
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,6 @@ | ||
[science] | ||
location = /var/db/repos/science | ||
# We sync manually, but we need sync-uri to be written down somewhere to do so | ||
sync-type = git | ||
sync-uri = https://anongit.gentoo.org/git/proj/sci.git | ||
priority = 7777 |
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