From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: Re: [PATCH] gnu: Add stagit. Date: Fri, 12 Aug 2016 08:39:41 +0000 Message-ID: <877fbm754i.fsf@we.make.ritual.n0.is> References: <87wpjpork8.fsf@we.make.ritual.n0.is> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51542) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bYEfL-00055f-3M for guix-devel@gnu.org; Fri, 12 Aug 2016 11:46:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bYEfI-0002is-JX for guix-devel@gnu.org; Fri, 12 Aug 2016 11:46:34 -0400 Received: from mithlond.libertad.in-berlin.de ([2001:67c:1400:2490::1]:46320 helo=beleriand.n0.is) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bYEfI-0002iK-5O for guix-devel@gnu.org; Fri, 12 Aug 2016 11:46:32 -0400 Received: by beleriand.n0.is (OpenSMTPD) with ESMTPSA id 32e4318c TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO for ; Fri, 12 Aug 2016 08:39:43 +0000 (UTC) In-Reply-To: <87wpjpork8.fsf@we.make.ritual.n0.is> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org ng0 writes: > [ Unknown signature status ] > Same as sic, I am not sure if the description could be extended. This is > what I could come up with. > > If you have trouble testing it, consider this commit which is not in 0.4 > release: > http://git.2f30.org/stagit/commit/44a49f51db565cbfc31f31393d8dcdec1cdc8167.html Should this go into gnu/packages/suckless.scm then? Seems more appropriate after the last comments on suckless.scm. > From d2a2dd0b6f831f8a1ecc09794c44d6ea2b3992b5 Mon Sep 17 00:00:00 2001 > From: ng0 > Date: Wed, 10 Aug 2016 10:04:29 +0000 > Subject: [PATCH] gnu: Add stagit. > > * gnu/packages/version-control.scm (stagit): New variable. > --- > gnu/packages/version-control.scm | 30 +++++++++++++++++++++++++++++- > 1 file changed, 29 insertions(+), 1 deletion(-) > > diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm > index 767715d..b12c53a 100644 > --- a/gnu/packages/version-control.scm > +++ b/gnu/packages/version-control.scm > @@ -9,6 +9,7 @@ > ;;; Copyright © 2015, 2016 Efraim Flashner > ;;; Copyright © 2015 Kyle Meyer > ;;; Copyright © 2015 Ricardo Wurmus > +;;; Coypright © 2016 ng0 > ;;; > ;;; This file is part of GNU Guix. > ;;; > @@ -29,7 +30,7 @@ > #:use-module ((guix licenses) > #:select (asl2.0 bsd-2 bsd-3 > gpl1+ gpl2 gpl2+ gpl3+ lgpl2.1 > - public-domain x11-style)) > + public-domain x11-style expat)) > #:use-module (guix utils) > #:use-module (guix packages) > #:use-module (guix download) > @@ -1250,3 +1251,30 @@ access and administration over HTTP CGI or via a built-in HTTP server. It has > a built-in wiki, built-in file browsing, built-in tickets system, etc.") > (license (list public-domain ;src/miniz.c, src/shell.c > bsd-2)))) > + > +(define-public stagit > + (package > + (name "stagit") > + (version "0.4") > + (source (origin > + (method url-fetch) > + (uri (string-append "http://dl.2f30.org/releases/" > + name "-" version ".tar.gz")) > + (sha256 > + (base32 > + "0z5r06wqrfnsz24ci4hjqbd62svclvhkgzaq9npsyjcp6jnf7izc")))) > + (build-system gnu-build-system) > + (arguments > + `(#:tests? #f ; no tests > + #:make-flags (list "CC=gcc" > + (string-append "PREFIX=" %output)) > + #:phases > + (modify-phases %standard-phases > + (delete 'configure)))) ; no configure > + (inputs > + `(("libgit2" ,libgit2))) > + (home-page "http://2f30.org") > + (synopsis "Static git page generator") > + (description "Stagit creates static pages for git repositories, the results can > +be served with a HTTP file server.") > + (license expat))) > -- > 2.9.2 > > > -- > ♥Ⓐ ng0 > Current Keys: https://we.make.ritual.n0.is/ng0.txt > For non-prism friendly talk find me on http://www.psyced.org -- ♥Ⓐ ng0 For non-prism friendly talk find me on http://www.psyced.org