#!/bin/sh # This hook script prevents the user from pushing to Savannah if any of the new # commits' OpenPGP signatures cannot be verified, or if a commit is signed # with an unauthorized key. # Called by "git push" after it has checked the remote status, but before # anything has been pushed. If this script exits with a non-zero status nothing # will be pushed. # # This hook is called with the following parameters: # # $1 -- Name of the remote to which the push is being done # $2 -- URL to which the push is being done # # If pushing without using a named remote those arguments will be equal. # # Information about the commits which are being pushed is supplied as lines to # the standard input in the form: # # # This is the "empty hash" used by Git when pushing a branch deletion. z40=0000000000000000000000000000000000000000 while read local_ref local_hash remote_ref remote_hash do # When deleting a remote branch, no commits are pushed to the remote, and # thus there are no signatures to be verified. if [ "$local_hash" != $z40 ] then # Only use the hook when pushing to Savannah. case "$2" in *.gnu.org*) set -e make check-channel-news exec guix git authenticate exit 127 ;; *) exit 0 ;; esac fi done exit 0 u/packages/python-science.scm?id=2dfb16150e11f273fd6f991bb563bf02a8a69402'>treecommitdiff
AgeCommit message (Expand)Author
2020-11-24gnu: Add python-baycomp....* gnu/packages/python-science.scm (python-baycomp): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> Vinicius Monego
2020-08-16gnu: Add python-sgp4....* gnu/packages/python-science.scm (python-sgp4): New variable. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Vinicius Monego
2020-08-10gnu: Add python-bottleneck....* gnu/packages/python-science.scm (python-bottleneck): New variable. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Vinicius Monego
2020-07-08gnu: python-scikit-image: Add dependencies....* gnu/packages/python-science.scm (python-scikit-image)[propagated-inputs]: Add python-imageio and python-tifffile. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> Vinicius Monego
2020-07-08gnu: Add python-scikit-fuzzy....* gnu/packages/python-science.scm (python-scikit-fuzzy): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> Vinicius Monego
2020-06-23gnu: Add python-msgpack-numpy....* gnu/packages/python-science.scm (python-msgpack-numpy): New variable. Ricardo Wurmus
2020-06-23gnu: python-scikit-image: Update to 0.17.2....* gnu/packages/python-science.scm (python-scikit-image): Update to 0.17.2. Ricardo Wurmus
2020-06-22gnu: Add python-xarray....From 27ec21904f769c1e8114f767972d9037e1e9f68a Mon Sep 17 00:00:00 2001 From: Pierre Langlois <pierre.langlois@gmx.com> Date: Thu, 18 Jun 2020 00:58:02 +0200 Subject: [PATCH 4/5] gnu: Add python-xarray. * gnu/package/python-science.scm (python-xarray): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Pierre Langlois
2020-06-22gnu: python-pandas: Update to 1.0.5....But also keep version 0.25.3 around for packages requiring an earlier versions, as well as version 0.24.2 for a version with python2. * gnu/packages/python-science.scm (python-pandas): Update to 1.0.5. [arguments]: Adapt 'patch-which phase. Add new 'prepare-x phase. Do not delete tests that depend on "moto", they are skipped automatically. [propagated-inputs]: Add python-jinja2. [inputs]: Add xsel and xclip. [native-inputs]: Add xorg-server-for-tests so we can test clipboard support. (python-pandas-0.24): New variable. (python2-pandas): Inherit from python-pandas-0.25. * gnu/packages/bioinformatics.scm (python-biom-format)[propagated-inputs]: Switch to python-pandas-0.25. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Pierre Langlois