From afec15a3eb3e729d3e9e18c0074e2b133f0f2a83 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sat, 29 Apr 2017 23:22:02 +0200 Subject: libre: staging: Remove fcgi and fcgiwrap. These packages are available in Guix upstream. --- libre/custom/packages/staging.scm | 65 ++------------------------------------- 1 file changed, 2 insertions(+), 63 deletions(-) (limited to 'libre/custom/packages') diff --git a/libre/custom/packages/staging.scm b/libre/custom/packages/staging.scm index 39ea7d4..0fbc9b3 100644 --- a/libre/custom/packages/staging.scm +++ b/libre/custom/packages/staging.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2016 Ricardo Wurmus +;;; Copyright © 2016, 2017 Ricardo Wurmus ;;; ;;; This file is part of GNU Guix. ;;; @@ -20,69 +20,8 @@ #:use-module (guix utils) #:use-module (guix packages) #:use-module (guix download) - #:use-module (guix git-download) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix build-system gnu) - #:use-module (gnu packages) - #:use-module (gnu packages autotools) - #:use-module (gnu packages pkg-config)) + #:use-module (gnu packages)) -(define-public fcgi - (package - (name "fcgi") - (version "2.4.0") - (source - (origin - (method url-fetch) - ;; Upstream has disappeared - (uri (string-append "https://sources.archlinux.org/other/packages/fcgi/" - "fcgi-" version ".tar.gz")) - (sha256 - (base32 - "1f857wnl1d6jfrgfgfpz3zdaj8fch3vr13mnpcpvy8bang34bz36")) - (patches (search-patches "fcgi-2.4.0-poll.patch" - "fcgi-2.4.0-gcc44-fixes.patch")))) - (build-system gnu-build-system) - (home-page "http://www.fastcgi.com") - (synopsis "Language-independent, high-performant extension to CGI") - (description "FastCGI is a language independent, scalable extension to CGI -that provides high performance without the limitations of server specific -APIs.") - ;; This package is released under the Open Market License, a variant of - ;; the Expat license, incompatible with the GPL. - (license (license:non-copyleft "file://LICENSE.TERMS")))) -(define-public fcgiwrap - (package - (name "fcgiwrap") - (version "1.1.0") - (source - (origin - (method url-fetch) - (uri (string-append "https://github.com/gnosek/fcgiwrap/" - "archive/" version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "07y6s4mm86cv7p1ljz94sxnqa89y9amn3vzwsnbq5hrl4vdy0zac")))) - (build-system gnu-build-system) - (arguments - `(#:tests? #f ; no tests included - #:make-flags (list "CC=gcc") - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'bootstrap - (lambda _ - (zero? (system* "autoreconf" "-vif"))))))) - (native-inputs - `(("autoconf" ,autoconf) - ("automake" ,automake) - ("pkg-config" ,pkg-config))) - (inputs - `(("fcgi" ,fcgi))) - (home-page "https://nginx.localdomain.pl/wiki/FcgiWrap") - (synopsis "Simple server for running CGI applications over FastCGI") - (description "Fcgiwrap is a simple server for running CGI applications -over FastCGI. It hopes to provide clean CGI support to Nginx (and other web -servers that may need it).") - (license license:expat))) -- cgit v1.2.3