[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
30/38: gnu: compton: Don't use unstable tarball.
From: |
guix-commits |
Subject: |
30/38: gnu: compton: Don't use unstable tarball. |
Date: |
Fri, 8 Feb 2019 18:02:34 -0500 (EST) |
nckx pushed a commit to branch master
in repository guix.
commit 9c2b56a3772ec8b06de16c6be04ae3454ac4593e
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Sun Dec 23 11:09:22 2018 +0100
gnu: compton: Don't use unstable tarball.
* gnu/packages/compton.scm (compton)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
---
gnu/packages/compton.scm | 22 ++++++++++++----------
1 file changed, 12 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/compton.scm b/gnu/packages/compton.scm
index dec9a94..c5b4c4e 100644
--- a/gnu/packages/compton.scm
+++ b/gnu/packages/compton.scm
@@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2017 José Miguel Sánchez García <address@hidden>
+;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -19,7 +20,7 @@
(define-module (gnu packages compton)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
- #:use-module (guix download)
+ #:use-module (guix git-download)
#:use-module (guix build-system gnu)
#:use-module (gnu packages docbook)
#:use-module (gnu packages documentation)
@@ -38,15 +39,16 @@
(name "compton")
(version (string-filter (char-set-complement (char-set #\_))
upstream-version))
- (source (origin
- (method url-fetch)
- (uri (string-append
- "https://github.com/chjj/" name "/archive/v"
- upstream-version ".tar.gz"))
- (sha256
- (base32
- "02dhlqqcwnmlf2dxg7rd4lapgqahgndzixdkbpxicq9jawmdb73v"))
- (file-name (string-append name "-" version "-checkout"))))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/chjj/compton.git")
+ (commit (string-append "v" upstream-version))))
+ (sha256
+ (base32
+ "0v65viilhnd2xgvmdpzc1srxszcg8kj1vhi5gy9292j48w0s2fx1"))
+ (file-name (git-file-name name version))))
(build-system gnu-build-system)
(inputs
`(("dbus" ,dbus)
- 08/38: gnu: avogadro: Don't use unstable tarball., (continued)
- 08/38: gnu: avogadro: Don't use unstable tarball., guix-commits, 2019/02/08
- 11/38: gnu: pam-krb5: Don't use NAME in source URI., guix-commits, 2019/02/08
- 12/38: gnu: masscan: Don't use unstable tarball., guix-commits, 2019/02/08
- 16/38: gnu: igt-gpu-tools: Don't use NAME in source URI., guix-commits, 2019/02/08
- 10/38: gnu: audit: Don't use NAME in source URI., guix-commits, 2019/02/08
- 21/38: gnu: fdupes: Don't use unstable tarball., guix-commits, 2019/02/08
- 19/38: gnu: progress: Don't use unstable tarball., guix-commits, 2019/02/08
- 32/38: gnu: abiword: Don't use NAME in source URI., guix-commits, 2019/02/08
- 37/38: gnu: perl-compress-raw-zlib: Update to 2.084., guix-commits, 2019/02/08
- 38/38: gnu: perl-io-compress: Update to 2.084., guix-commits, 2019/02/08
- 30/38: gnu: compton: Don't use unstable tarball.,
guix-commits <=
- 09/38: gnu: hungrycat: Don't use NAME in source URI., guix-commits, 2019/02/08
- 06/38: gnu: florence: Don't use NAME in source URI., guix-commits, 2019/02/08
- 18/38: gnu: dstat: Don't use unstable tarball., guix-commits, 2019/02/08
- 20/38: gnu: cpulimit: Don't use unstable tarball., guix-commits, 2019/02/08
- 15/38: gnu: daemontools: Don't assume sources match NAME., guix-commits, 2019/02/08
- 22/38: gnu: sedsed: Don't use unstable tarball., guix-commits, 2019/02/08
- 24/38: gnu: cbatticon: Don't use unstable tarball., guix-commits, 2019/02/08
- 23/38: gnu: interrobang: Use GIT-... helpers., guix-commits, 2019/02/08
- 34/38: gnu: gcab: Update to 1.2., guix-commits, 2019/02/08
- 28/38: gnu: microscheme: Don't use unstable tarball., guix-commits, 2019/02/08