ZeroPointEnergy / guru

[MIRROR] GURU: repository of new packages maintained collaboratively by users

Home Page:https://gitweb.gentoo.org/repo/proj/guru.git

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

logo

The GURU Project Repository

The official repository for new Gentoo packages, maintained collaboratively by Gentoo users.

This README contains some additional useful information for GURU contributors, such as common mistakes, frequently asked questions and other tips and tricks.

The GURU regulations, and the Gentoo developer manual take precedence over any information here.

See wiki.gentoo.org/wiki/Project:GURU for more information on the project.

Contents

  1. Frequently Asked Questions
  2. Common Mistakes
  3. Other Tips and Tricks
  4. Useful Links
  5. Email Addresses

Frequently Asked Questions

  • How do I contribute?

See wiki.gentoo.org/wiki/Project:GURU/Information_for_Contributors

  • What are the rules and regulations?

See wiki.gentoo.org/wiki/Project:GURU#The_regulations

  • What does GURU stand for?

This is very secret, but you might find a clue here.

  • GLEP 63 says I should use a @gentoo.org email address for signing off, do I need an @gentoo.org email address to contribute to GURU?

No, you do not need an @gentoo.org email address to contribute to GURU, these email addresses are for Gentoo developers only. Instead use whichever email address you want to receive bug mail and other communications on. If you're also a proxy-maintainer please use the same email address.

  • Can I use RESTRICT="mirror"?

Sure, since GURU packages are not mirrored on the Gentoo mirrors anyway, it makes no difference. You can use RESTRICT="mirror" to avoid unnecessary fetch attempts. This is not required by GURU nor is it prohibited, just be sure to remove it if you want to move your package to the main Gentoo repository.

  • I need help, where do I go?

You can reach other GURU contributors on IRC #gentoo-guru, or by emailing guru-committers@gentoo.org.

  • I found a bug, what do I do?

You can either contact the GURU contributors using one of the options in the previous point, or you can open a bug on our bug tracker: bugs.gentoo.org/enter_bug.cgi?product=GURU

  • I found a bug in a package that I do not maintain, and I know how to fix it, can I fix it myself?

As per the regulations, yes, you can! Just be sure to maintain respectful and professional behaviour.

  • Can I commit a package without listing myself as explicit maintainer?

As per the regulations, yes, you can.

  • I want to make changes to this document, can I?

Please discuss any changes and additions to this document on our bug tracker prior to committing them.

Common Mistakes

  • Gentoo projects shouldn't be in the metadata files

Please don't put Gentoo projects (e.g. the proxy-maint project) in the metadata.xml files. Gentoo projects and developers are not responsible for the packages in GURU, as such they should not be listed in the metadata files.

When moving a package from a Pull Request in the main Gentoo Repository to GURU it is easy to forget to remove the proxy-maint project from the metadata.xml file. The same is true for moving from GURU to a ::gentoo Pull Request, if you forget to add proxy-maint to the metadata file the gentoo-repo-qa-bot will complain.

  • Use repoman for committing

repoman ci is strongly preferred over git commit -S for committing, because repoman does additional checks and regenerates the manifest before committing. Sometimes committing with repoman is not possible (e.g. when committing eclasses or removing packages), in these cases there is no other possibility but to revert to git commit -S. In all other cases it is good practice to use repoman.

In GURU we use 'thin manifests'. Because this is not the default, manifest files should be regenerated when moving a package from another overlay that does not use thin manifests (including your local overlay unless it is also configured to use thin manifests).

  • Quote your variables

String variables should be quoted (e.g. not $P or ${P} but "${P}"). repoman -dx full will warn you about any unquoted variables you might have forgotten about.

  • Undesirable/Deprecated dependencies

Sometimes a upstream lists dependencies which are considered deprecated. If possible, packages should not depend on these deprecated dependencies. Reasons a dependency might be deprecated is that it is too old, unmaintained, or the features it adds are not useful to Gentoo. You can find an overview of the currently deprecated dependencies and the reason they are deprecated in $(portageq get_repo_path / gentoo)/profiles/package.deprecated. repoman -dx full will warn you if your package depends on a deprecated dependency.

For Python packages there are some additional (test) dependencies that are considered undesirable or not useful, but are not considered deprecated. You can find an overview of those here.

  • Licenses of bundled libraries

Some packages include files that are licensed under a different license then the rest of the package. In this case all the licenses should be specified in the LICENSE variable. This is very often the case for packages written in Rust or Go.

Rust and Go packages automagically collect all dependencies. The licenses of the things that are statically linked in these packages should be checked manually.

Other Tips and Tricks

  • Use the cmake eclass instead of the cmake-utils eclass

The cmake-utils eclass will be deprecated in favour of the cmake eclass. To make your ebuilds more future proof, you might want to use the cmake eclass instead. These eclasses are functionally equivalent, so replacing references to cmake-utils_.... with cmake_.... should just work.

  • Use the xdg eclass instead of the xdg-utils eclass

The xdg eclass will automatically export the correct functions to the src_prepare, pkg_preinst, pkg_postinst and pkg_postrm phases. This means that often (but not always) you can save a few lines by using the xdg eclass instead of the xdg-utils eclass. Please note that if you are using another eclass that exports to the src_prepare phase, the xdg eclass will overwrite it if it is inherited after that eclass. To fix this, you can inherit the xdg eclass before the other eclass.

  • Use the latest EAPI whenever possible

Since the packages in GURU are all 'new packages' (not in ::gentoo). It is good practice to use the latest EAPI (7 at the moment), this makes your ebuilds more future proof.

  • repoman -dx full and pkgcheck scan

Running repoman -dx full in the directory your ebuild is in will preform some basic checks on your ebuild. Please try to make repoman -dx full as happy as possible before committing.

Pkgcheck does even more checks than repoman. While it is good practice to make repoman as happy as possible, it is not necessary to fix every issue that pkgcheck reports. Because pkgcheck is very strict. That being said, pkgcheck is a very useful tool to perfect your ebuilds.

  • Tests and documentation for Python packages.

Many Python packages have tests and documentation. Unlike some other eclasses the distutils-r1 eclass does not enable support for these tests automatically. This is because there are multiple test runners available for Python. To enable tests for your Python ebuilds, use the distutils_enable_tests <test-runner> function. Similarly, support for documentation building with Sphinx can be added with the distutils_enable_sphinx <subdir> [--no-autodoc | <plugin-pkgs>...] function. Please note that these functions already append to IUSE and RESTRICT, so there is no need to specify this manually.

See the dev manual and the Gentoo Python Guide for more information.

  • Avoid introducing USE flags for small files and optional runtime dependencies.

Installation of small files, like documentation, completions, man pages, etc, does not have to be toggle-able with an USE flag. Instead, just install these files unconditionally. This avoids unnecessary recompilations when an user forgot to enable a flag that installs a small file.

The same holds for optional runtime dependencies. It is not necessary to introduce a USE flag, that does not alter the compiled binary and just pulls in an extra optional runtime dependency. Instead, you can notify the user of these optional runtime dependencies with the optfeature function from the eutils eclass. If, for whatever reason, it is still desired to introduce an USE flag for optional runtime dependencies, one can still use the optfeature function as well to allow the user to choose to avoid recompiling a package.

Useful Links

Email Addresses

About

[MIRROR] GURU: repository of new packages maintained collaboratively by users

https://gitweb.gentoo.org/repo/proj/guru.git


Languages

Language:Shell 97.6%Language:Roff 2.3%Language:Makefile 0.1%Language:Emacs Lisp 0.0%