You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Go to file
Vladimir Shapranov e5dcc90b7d
dev-python/pybind11-stubgen: add py3.11
Signed-off-by: Vladimir Shapranov <equidamoid@gmail.com>
Closes: https://github.com/gentoo/sci/pull/1195
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
1 week ago
.github/workflows .github/workflows: only run on push/PR 1 year ago
app-arch/libdeflate app-arch/libdeflate: drop 1.2 7 months ago
app-office/visidata app-office/visidata: updated test restriction comment 1 week ago
app-text/noweb app-text/noweb: drop UnusedInherits 1 year ago
app-vim/vim-gromacs app-vim/vim-gromacs: remove RedundantLongDescription 2 years ago
dev-cpp dev-cpp/xsimd: remove duplicate 1 month ago
dev-java/fits dev-java/jeuclid-core: treeclean 11 months ago
dev-lang dev-lang/conceptual: treeclean 1 month ago
dev-libs dev-libs/apache-arrow: remove duplicate 1 month ago
dev-ml/lacaml add github remote-id when possible 7 months ago
dev-perl dev-perl/Bio-EnsEMBL: remove fundamentally broken package 1 year ago
dev-python dev-python/pybind11-stubgen: add py3.11 1 week ago
dev-util dev-util/waf: treeclean 1 month ago
dev-vcs dev-vcs/dandi-cli: drop 0.50.0-r1 1 week ago
licenses licenses: cleanup old licenses 1 month ago
media-gfx/brlcad media-gfx/netgen: moved to ::gentoo 4 months ago
media-libs add github remote-id when possible 7 months ago
metadata metadata: ignoring x32 profiles for testing, because: 5 months ago
net-misc/cernbox-client net-misc/cernbox-client: gnome-keyring -> keyring 2 weeks ago
profiles profiles: cleanup old entries 1 month ago
sci-astronomy/libthesky sci-astronomy/libthesky: relax dependency 1 year ago
sci-biology sci-biology/bidsschematools: add 0.7.1 2 weeks ago
sci-chemistry sci-chemistry/chimera: update HOMEPAGE 1 month ago
sci-electronics sci-electronics/mpremote: new package, add 0.4.0 1 month ago
sci-libs sci-libs/pydicom: updated bug reference 1 week ago
sci-mathematics sci-mathematics/pulp: disable py3.9 1 month ago
sci-misc sci-misc/jwnl: drop duplicate inherit 4 months ago
sci-physics sci-physics/rivet: disable py3.9 1 month ago
sci-visualization sci-visualization/mricrogl: revbumps for deps and icon cache 4 months ago
scripts Drop repoman CI in favour of pkgcheck 1 year ago
sys-cluster sys-cluster/easybuild-framework: update SRC_URI 2 weeks ago
sys-devel sys-devel/DPC++: myst-parser dependency name change 3 months ago
x11-libs/xview-bin x11-libs/xview-bin: drop UnusedInherits 1 year ago
x11-misc/envytools x11-misc/envytools: remove duplicate inherit of git-r3 2 years ago
.gitignore profiles: remove use.local.desc permanently 6 years ago
CONTRIBUTING.md *.md: update documentation: repoman --> pkgcheck and friends 1 year ago
README.md README.md: Added link for eselect install 9 months ago

README.md

The Gentoo Science Project Repository

pkgcheck contributions welcome chat on libera

This is an official mirror of the Gentoo Science ebuild repository, containing numerous scientific software packages.

See Project:Science for more information on the project.

Contents

  1. Installation
  1. Usage
  2. Contributing

Installation

As per the current Portage specification, ebuild repositories (a.k.a. overlays) can be managed via file collections under /etc/portage/repos.conf/, via the new plug-in sync system.

Eselect-repository Install

The overlay can be enabled via the repository extension of the Gentoo eselect utility.

emerge --ask --noreplace --verbose eselect-repository
eselect repository enable science

Eselect-repository Uninstall

To disable and remove the overlay, run:

eselect repository disable science
eselect repository remove science

Manual Install

To enable the overlay without the need for dedicated repository software, you need to have git installed:

emerge --ask --noreplace --verbose dev-vcs/git

Then you can simply download the science repository configuration file, science.conf:

wget https://gitweb.gentoo.org/proj/sci.git/plain/metadata/science.conf \
	-O /etc/portage/repos.conf/science

Manual Uninstall

To disable and remove the overlay, run:

rm /etc/portage/repos.conf/science
rm /var/db/repos/science -rf

Layman Install

You can also install the overlay via the layman overlay manager.

emerge --ask --noreplace --verbose app-portage/layman
layman --add science

Layman Uninstall

To delete the overlay, run:

layman --delete science

Using Packages from ::science

To start using the overlay you now only need to get the newest files, via:

emerge --sync science

To be able to install ::science packages you need to make sure that you are accepting the ~${ARCH} keyword for your respective architecture. This may already be the case globally on your system, and you can check whether this is the case by running:

grep "~$(portageq envvar ARCH)" /etc/portage/make.conf

If the above returns empty, you will need to instruct Portage to accept ~${ARCH} packages.

This can be done for ::science specifically:

mkdir -p /etc/portage/package.accept_keywords
printf '*/*::science ~%s' "$(portageq envvar ARCH)" >> /etc/portage/package.accept_keywords/science

If the above fails with mkdir: cannot create directory /etc/portage/package.accept_keywords: File exists this means you are using a file and not a directory, and you can instead run:

printf '*/*::science ~%s' "$(portageq envvar ARCH)" >> /etc/portage/package.accept_keywords

Alternatively, and only if you know what you are doing, you can accept ~${ARCH} packages globally:

printf 'ACCEPT_KEYWORDS="~%s"' "$(portageq envvar ARCH)" >> /etc/portage/make.conf

The downside of this approach is potentially higher instability, the advantage is that often ::science packages require ~${ARCH} packages from ::gentoo as well.

Contributing

If you fork, we will merge!
We welcome new contributors and are happy to include new packages.

Areas to contribute

Resources

For a brief introduction please see our contributing guide. Further helpful resources are:

Additionally, please make sure to add the Science Project as an additional maintainer to any new packages you submit. For an example, take a look at the metadata for the Numba package - dev-python/numba/metadata.xml

Support

You can ask for help on Libera IRC in #gentoo-science. Alternatively you can report bugs on the Gentoo Bugzilla.