aboutsummaryrefslogtreecommitdiff
# GNU Guix --- Functional package management for GNU
# Copyright © 2018, 2022 Ludovic Courtès <ludo@gnu.org>
#
# This file is part of GNU Guix.
#
# GNU Guix is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or (at
# your option) any later version.
#
# GNU Guix is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

#
# Test 'guix describe'.
#

guix describe --version

tmpfile="t-guix-describe-$$"
trap "rm -f $tmpfile" EXIT
rm -f "$tmpfile"

if [ -d "$abs_top_srcdir/.git" ]
then
    # Since we're in a Git checkout, we can at least check that these things
    # work.
    guix describe | grep -i "checkout"
    if git --version > /dev/null 2>&1
    then
	result="`guix describe | grep commit: | cut -d : -f 2-`"
	commit="`git log | head -1 | cut -c 7-`"
	test "x$result" = "x$commit"
    fi
    guix describe -f channels
    case "`guix describe -f channels | grep url`" in
	*"(url \"$abs_top_srcdir/\")") true;;
	*) false;;
    esac
else
    exit 77
fi
atan Hellseher <sharlatanus@gmail.com>2024-12-13 20:18:34 +0000 commit7eebe7bbfae781ff02ff69cbb6b11cdd5fbd26a5 (patch) treea25295117ce7784e096c8ef9fdad383d98e91633 /gnu/packages parenta2114bd514a66e911f17fd227f29c312f3e68892 (diff)downloadguix-7eebe7bbfae781ff02ff69cbb6b11cdd5fbd26a5.tar.gz
guix-7eebe7bbfae781ff02ff69cbb6b11cdd5fbd26a5.zip
gnu: python-vine: Add missing inputs.
* gnu/packages/python-xyz.scm (python-vine)[native-inputs]: Add python-setuptools and python-wheel. Change-Id: Idf7fbcb9d44681b4394ce3e2d3e403371169ff7a
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python-xyz.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 03fdf2d6e4..bd0064a34b 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -6324,7 +6324,7 @@ provides Python-specific tags that represent an arbitrary Python object.")
(base32 "1q31krwxdvwawdn1kfqmpplix31d4jhs0qng26908hawsf0yjqlb"))))
(build-system pyproject-build-system)
(native-inputs
- (list python-pytest python-case))
+ (list python-pytest python-case python-setuptools python-wheel))
(home-page "https://github.com/celery/vine")
(synopsis "Promises for Python")
(description