diff options
author | Christopher Baines <mail@cbaines.net> | 2022-09-02 19:59:04 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2022-09-02 19:59:04 +0100 |
commit | 6c9bc0e9a062e7df5dd4277b06086541306ee8f5 (patch) | |
tree | 6d3ea21d26d51b0ad2ef429500b9a4b6865bb989 | |
parent | 34766a6631c97af0f13af6c16e1c9d26780e5cb5 (diff) | |
download | guix-add-comments-to-bottom-of-files.tar guix-add-comments-to-bottom-of-files.tar.gz |
gnu: Add comments to the bottom of a few package modules.add-comments-to-bottom-of-files
This will hopefully discourage patches which add new packages to the bottom of
files, as this increases the likelyhood of conflicts when applying patches.
-rw-r--r-- | gnu/packages/python-science.scm | 5 | ||||
-rw-r--r-- | gnu/packages/python-xyz.scm | 5 | ||||
-rw-r--r-- | gnu/packages/ruby.scm | 5 | ||||
-rw-r--r-- | gnu/packages/tex.scm | 5 |
4 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 95f60aae7b..1c165aa1de 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -1478,3 +1478,8 @@ Dask, PyTorch, Tensorflow, CuPy, Sparse, Theano, JAX, and Autograd arrays as well as potentially any library which conforms to a standard API. See the documentation for more information.") (license license:expat))) + +;;; +;;; Avoid adding new packages to the end of this file. Place them above by +;;; existing packages with similar functionality or similar names. +;;; diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index b058704172..e0e144de29 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -30738,3 +30738,8 @@ platform using the ActivityPub protocol.") "@code{python-lief} is a cross platform library which can parse, modify and abstract ELF, PE and MachO formats.") (license license:asl2.0))) + +;;; +;;; Avoid adding new packages to the end of this file. Place them above by +;;; existing packages with similar functionality or similar names. +;;; diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 94c3bfeb6f..a0c3990b98 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -13766,3 +13766,8 @@ can also be used as a Ruby library or as a web application, though the later has not yet been packaged for Guix.") (license license:bsd-2) (properties `((upstream-name . "anystyle-cli"))))) + +;;; +;;; Avoid adding new packages to the end of this file. Place them above by +;;; existing packages with similar functionality or similar names. +;;; diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 212c7eb4a9..c09bae4303 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -11572,3 +11572,8 @@ use of the fonts in LaTeX (Type 1) and XeLaTeX/LuaLaTeX (OTF).") Adobe in both Adobe Type 1 and OpenType formats, plus macros supporting the use of the fonts in LaTeX (Type 1) and XeLaTeX/LuaLaTeX (OTF).") (license (list license:lppl1.3+ license:silofl1.1)))) + +;;; +;;; Avoid adding new packages to the end of this file. Place them above by +;;; existing packages with similar functionality or similar names. +;;; |