All Projects β†’ gentoo β†’ Sci

gentoo / Sci

[MIRROR] Gentoo Science Overlay

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to Sci

Kde
[MIRROR] KDE team's testing overlay
Stars: ✭ 80 (-37.01%)
Mutual labels:  hacktoberfest, gentoo, overlay
Poliastro
poliastro - πŸš€ Astrodynamics in Python
Stars: ✭ 462 (+263.78%)
Mutual labels:  hacktoberfest, science
Gentoolto
A Gentoo Portage configuration for building with -O3, Graphite, and LTO optimizations
Stars: ✭ 399 (+214.17%)
Mutual labels:  gentoo, overlay
Galaxy
Data intensive science for everyone.
Stars: ✭ 812 (+539.37%)
Mutual labels:  hacktoberfest, science
esm-overlay
ESM's portage overlay. It's useful for especially Ruby/Rails application development.
Stars: ✭ 19 (-85.04%)
Mutual labels:  overlay, gentoo
brother-overlay
Portage overlay for Brother printer and scanner software
Stars: ✭ 27 (-78.74%)
Mutual labels:  overlay, gentoo
Obspy
ObsPy: A Python Toolbox for seismology/seismological observatories.
Stars: ✭ 756 (+495.28%)
Mutual labels:  hacktoberfest, science
games-overlay
gentoo overlay containing games ebuilds only
Stars: ✭ 15 (-88.19%)
Mutual labels:  overlay, gentoo
Sympy
A computer algebra system written in pure Python
Stars: ✭ 8,688 (+6740.94%)
Mutual labels:  hacktoberfest, science
Blish Hud
A Guild Wars 2 overlay with extreme extensibility through compiled modules.
Stars: ✭ 52 (-59.06%)
Mutual labels:  hacktoberfest, overlay
audio-overlay
Gentoo overlay for music production
Stars: ✭ 33 (-74.02%)
Mutual labels:  overlay, gentoo
Tardis
TARDIS - Temperature And Radiative Diffusion In Supernovae
Stars: ✭ 112 (-11.81%)
Mutual labels:  hacktoberfest, science
clx
clx overlay
Stars: ✭ 12 (-90.55%)
Mutual labels:  overlay, gentoo
Portage
[MIRROR] Package management system
Stars: ✭ 336 (+164.57%)
Mutual labels:  hacktoberfest, gentoo
deadbeef-overlay
DeaDBeeF player overlay for Gentoo Linux
Stars: ✭ 13 (-89.76%)
Mutual labels:  overlay, gentoo
Openml
Open Machine Learning
Stars: ✭ 489 (+285.04%)
Mutual labels:  hacktoberfest, science
os-xtoo
The Java and Enlightenment ebuild repository
Stars: ✭ 17 (-86.61%)
Mutual labels:  overlay, gentoo
java-overlay
[MIRROR] Java overlay
Stars: ✭ 14 (-88.98%)
Mutual labels:  overlay, gentoo
Julia
The Julia Programming Language
Stars: ✭ 37,497 (+29425.2%)
Mutual labels:  hacktoberfest, science
Gentoo
[MIRROR] Official Gentoo ebuild repository
Stars: ✭ 1,364 (+974.02%)
Mutual labels:  hacktoberfest, gentoo

The Gentoo Science Project Repository

pkgcheck repoman contributions welcome chat on freenode

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

Eselect-repository install

The easiest way to enable the overlay is to:

emerge --noreplace eselect-repository && eselect repository enable science && emerge --sync

and emerge the package as usual.

Manual Install

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

To enable the overlay without the need for additional software, you first need to have git installed:

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

Then you need to add the science repository configuration by downloading the science.conf file:

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

Manual Uninstall

To uninstall the overlay, simply 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 --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

find . -type f -name "*.ebuild" ! \( -wholename "*.git*" -o -wholename "*profile*" -o -wholename "*metadata*" \) | while read ff; do grep -lRE "EAPI.*6" /dev/null $ff; done

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 Freenode IRC in #gentoo-science. Alternatively you can report bugs on the GitHub issues page.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].