From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: Re: [PATCH 11/11] gnu: Add pagure. Date: Sun, 11 Dec 2016 18:48:59 +0000 Message-ID: <87poky7144.fsf@wasp.i-did-not-set--mail-host-address--so-tickle-me> References: <20161211181237.24485-1-ng0@libertad.pw> <20161211181237.24485-12-ng0@libertad.pw> 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]:38814) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cG9BT-0005y1-Mk for guix-devel@gnu.org; Sun, 11 Dec 2016 13:49:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cG9BQ-0000n6-Jc for guix-devel@gnu.org; Sun, 11 Dec 2016 13:49:15 -0500 Received: from aibo.runbox.com ([91.220.196.211]:56319) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cG9BQ-0000k7-9w for guix-devel@gnu.org; Sun, 11 Dec 2016 13:49:12 -0500 Received: from [10.9.9.212] (helo=mailfront12.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1cG9BK-0007zK-6n for guix-devel@gnu.org; Sun, 11 Dec 2016 19:49:06 +0100 Received: from exit1.ipredator.se ([197.231.221.211] helo=localhost) by mailfront12.runbox.com with esmtpsa (uid:892961 ) (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) id 1cG9BG-0004Vv-8I for guix-devel@gnu.org; Sun, 11 Dec 2016 19:49:02 +0100 In-Reply-To: <20161211181237.24485-12-ng0@libertad.pw> 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: > * gnu/packages/version-control.scm (pagure): New variable. > --- > gnu/packages/version-control.scm | 81 +++++++++++++++++++++++++++++++++++++++- > 1 file changed, 80 insertions(+), 1 deletion(-) > > diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm > index f6845fab0..1eee6ad87 100644 > --- a/gnu/packages/version-control.scm > +++ b/gnu/packages/version-control.scm > @@ -10,7 +10,7 @@ > ;;; Copyright © 2015 Kyle Meyer > ;;; Copyright © 2015 Ricardo Wurmus > ;;; Copyright © 2016 Leo Famulari > -;;; Copyright © 2016 ng0 > +;;; Copyright © 2016 ng0 > ;;; > ;;; This file is part of GNU Guix. > ;;; > @@ -1265,3 +1265,82 @@ a built-in wiki, built-in file browsing, built-in tickets system, etc.") > (description "Stagit creates static pages for git repositories, the results can > be served with a HTTP file server of your choice.") > (license license:expat))) > + > +(define-public pagure > + (package > + (name "pagure") > + (version "2.10.1") > + (source > + (origin > + (method url-fetch) > + (uri (list > + ;; XXX: upstream serves an invalid certificate. > + (string-append "https://web.archive.org/web/20161211142731/" > + "https://releases.pagure.org/pagure/pagure-" > + version ".tar.gz") > + (string-append "https://releases.pagure.org/pagure/" > + name "-" version ".tar.gz"))) Please add this when commiting: XXX: The certificate issue upstream https://pagure.io/fedora-infrastructure/issue/5600 Thanks! > + (sha256 > + (base32 > + "1h629hd8wfvdnmlrd1g3hpxcgkqzrxdpnxnmqhd2wi04g86pn7pg")))) > + (build-system python-build-system) > + (arguments > + `(#:python ,python-2 > + #:phases > + (modify-phases %standard-phases > + (add-after 'install 'install-additional-files > + ;; We need to copy files. > + (lambda* (#:key outputs #:allow-other-keys) > + (install-file "files/pagure.cfg.sample" > + (string-append (assoc-ref outputs "out") "/etc/pagure/")) > + (install-file "files/alembic.ini" > + (string-append (assoc-ref outputs "out") "/etc/pagure/")) > + (install-file "files/pagure.conf" > + (string-append (assoc-ref outputs "out") "/etc/httpd/conf.d/")) > + (install-file "files/pagure.wsgi" > + (string-append (assoc-ref outputs "out") "/share/pagure/")) > + (install-file "createdb.py" > + (string-append (assoc-ref outputs "out") "/share/pagure/")) > + #t))))) > + (propagated-inputs > + `(("python2-alembic" ,python2-alembic) > + ("python2-arrow" ,python2-arrow) > + ("python2-binaryornot" ,python2-binaryornot) > + ("python2-bleach" ,python2-bleach) > + ("python2-blinker" ,python2-blinker) > + ("python2-chardet" ,python2-chardet) > + ("python2-docutils" ,python2-docutils) > + ("python2-enum34" ,python2-enum34) > + ("python2-flask" ,python2-flask) > + ("python2-flask-wtf" ,python2-flask-wtf) > + ("python2-flask-multistatic" ,python2-flask-multistatic) > + ("python2-kitchen" ,python2-kitchen) > + ("python2-markdown" ,python2-markdown) > + ("python2-munch" ,python2-munch) > + ("python2-pillow" ,python2-pillow) > + ("python2-psutil" ,python2-psutil) > + ;; pyclamd ; only for VIRUS_SCAN_ATTACHMENTS > + ("python2-pygit2" ,python2-pygit2) > + ("python2-pygments" ,python2-pygments) > + ("python2-openid" ,python2-openid) > + ("python2-openid-cla" ,python2-openid-cla) > + ("python2-openid-teams" ,python2-openid-teams) > + ("python2-redis" ,python2-redis) > + ("python2-six" ,python2-six) > + ("python2-sqlalchemy" ,python2-sqlalchemy) > + ("python2-straight.plugin" ,python2-straight.plugin) > + ("python2-trollius-redis" ,python2-trollius-redis) > + ("python2-wtforms" ,python2-wtforms) > + ("python2-cryptography" ,python2-cryptography) > + ;; TODO: python2-fedora ;for fas and openid auth backends > + ("python2-py-bcrypt" ,python2-py-bcrypt))) > + (home-page "https://pagure.io/pagure/") > + (synopsis "Git-centered forge based on pygit2") > + (description > + "Pagure is a git-centered forge, python based using pygit2. > +With pagure you can host your project with its documentation, > +let your users report issues or request enhancements using the > +ticketing system and build your community of contributors by > +allowing them to fork your projects and contribute to it via > +the now-popular pull-request mechanism.") > + (license license:gpl2+))) > -- > 2.11.0 > > -- ♥Ⓐ ng0 | ng0.chaosnet.org