2013-09-29 14:55:47 -04:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2015-02-15 05:41:58 -05:00
|
|
|
|
;;; Copyright © 2013, 2015 Andreas Enge <andreas@enge.fr>
|
2013-09-29 14:55:47 -04:00
|
|
|
|
;;; Copyright © 2013 Aljosha Papsch <misc@rpapsch.de>
|
2015-01-07 03:44:10 -05:00
|
|
|
|
;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
2015-02-27 11:53:06 -05:00
|
|
|
|
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
|
2015-01-30 04:47:23 -05:00
|
|
|
|
;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
|
2015-01-31 18:03:19 -05:00
|
|
|
|
;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org>
|
2013-09-29 14:55:47 -04:00
|
|
|
|
;;;
|
|
|
|
|
;;; 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/>.
|
|
|
|
|
|
|
|
|
|
(define-module (gnu packages web)
|
2014-12-10 17:39:48 -05:00
|
|
|
|
#:use-module (ice-9 match)
|
Use #:prefix instead of #:renamer with 'symbol-prefix-proc'.
* gnu/packages/abiword.scm, gnu/packages/admin.scm, gnu/packages/aidc.scm,
gnu/packages/backup.scm, gnu/packages/bittorrent.scm,
gnu/packages/boost.scm, gnu/packages/compression.scm,
gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/dc.scm, gnu/packages/emacs.scm,
gnu/packages/fonts.scm, gnu/packages/fontutils.scm, gnu/packages/geeqie.scm,
gnu/packages/ghostscript.scm, gnu/packages/gimp.scm,
gnu/packages/gkrellm.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gnutls.scm, gnu/packages/gnuzilla.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/gv.scm, gnu/packages/image.scm,
gnu/packages/indent.scm, gnu/packages/inkscape.scm,
gnu/packages/lesstif.scm, gnu/packages/links.scm, gnu/packages/lisp.scm,
gnu/packages/lsh.scm, gnu/packages/lsof.scm, gnu/packages/maths.scm,
gnu/packages/mp3.scm, gnu/packages/openssl.scm, gnu/packages/ots.scm,
gnu/packages/pciutils.scm, gnu/packages/pcre.scm, gnu/packages/pdf.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python.scm, gnu/packages/slim.scm,
gnu/packages/ssh.scm, gnu/packages/texlive.scm, gnu/packages/vim.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wv.scm,
gnu/packages/xiph.scm, gnu/packages/xml.scm, gnu/packages/xorg.scm,
gnu/packages/yasm.scm, gnu/packages/zip.scm,
guix/build/cmake-build-system.scm, guix/build/perl-build-system.scm,
guix/build/python-build-system.scm, guix/download.scm: Replaces uses of
#:renamer and 'symbol-prefix-proc' with #:prefix.
2014-09-23 16:44:22 -04:00
|
|
|
|
#:use-module ((guix licenses) #:prefix l:)
|
2013-09-29 14:55:47 -04:00
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix download)
|
2014-02-27 13:49:12 -05:00
|
|
|
|
#:use-module (guix git-download)
|
2015-02-06 21:14:11 -05:00
|
|
|
|
#:use-module (guix cvs-download)
|
2013-09-29 14:55:47 -04:00
|
|
|
|
#:use-module (guix build-system gnu)
|
2014-08-28 05:38:12 -04:00
|
|
|
|
#:use-module (guix build-system perl)
|
|
|
|
|
#:use-module (guix build-system cmake)
|
2013-09-29 14:55:47 -04:00
|
|
|
|
#:use-module (gnu packages apr)
|
2014-06-12 07:03:53 -04:00
|
|
|
|
#:use-module (gnu packages asciidoc)
|
|
|
|
|
#:use-module (gnu packages docbook)
|
2014-02-27 13:49:12 -05:00
|
|
|
|
#:use-module (gnu packages autotools)
|
gnu: Move 'which' to (gnu packages base).
* gnu/packages/which.scm: Remove.
* gnu-system.am (GNU_SYSTEM_MODULES): Remove it.
* gnu/packages/base.scm (which): New variable.
* gnu/packages/aspell.scm, gnu/packages/audio.scm,
gnu/packages/autogen.scm, gnu/packages/cdrom.scm,
gnu/packages/compression.scm, gnu/packages/datamash.scm,
gnu/packages/games.scm, gnu/packages/glib.scm,
gnu/packages/gnu-pw-mgr.scm, gnu/packages/gnutls.scm,
gnu/packages/gps.scm, gnu/packages/guile.scm,
gnu/packages/java.scm, gnu/packages/libevent.scm,
gnu/packages/linux.scm, gnu/packages/lisp.scm,
gnu/packages/node.scm, gnu/packages/ntp.scm,
gnu/packages/orpheus.scm, gnu/packages/pciutils.scm,
gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/sawfish.scm,
gnu/packages/scheme.scm, gnu/packages/ssh.scm,
gnu/packages/statistics.scm, gnu/packages/texlive.scm,
gnu/packages/wdiff.scm: Adjust accordingly.
2015-03-04 11:21:21 -05:00
|
|
|
|
#:use-module (gnu packages compression)
|
2015-03-07 06:18:32 -05:00
|
|
|
|
#:use-module (gnu packages cyrus-sasl)
|
2013-09-29 14:55:47 -04:00
|
|
|
|
#:use-module (gnu packages openssl)
|
2014-10-30 17:15:13 -04:00
|
|
|
|
#:use-module (gnu packages gettext)
|
|
|
|
|
#:use-module (gnu packages icu4c)
|
2015-03-07 06:18:32 -05:00
|
|
|
|
#:use-module (gnu packages lua)
|
gnu: Move 'which' to (gnu packages base).
* gnu/packages/which.scm: Remove.
* gnu-system.am (GNU_SYSTEM_MODULES): Remove it.
* gnu/packages/base.scm (which): New variable.
* gnu/packages/aspell.scm, gnu/packages/audio.scm,
gnu/packages/autogen.scm, gnu/packages/cdrom.scm,
gnu/packages/compression.scm, gnu/packages/datamash.scm,
gnu/packages/games.scm, gnu/packages/glib.scm,
gnu/packages/gnu-pw-mgr.scm, gnu/packages/gnutls.scm,
gnu/packages/gps.scm, gnu/packages/guile.scm,
gnu/packages/java.scm, gnu/packages/libevent.scm,
gnu/packages/linux.scm, gnu/packages/lisp.scm,
gnu/packages/node.scm, gnu/packages/ntp.scm,
gnu/packages/orpheus.scm, gnu/packages/pciutils.scm,
gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/sawfish.scm,
gnu/packages/scheme.scm, gnu/packages/ssh.scm,
gnu/packages/statistics.scm, gnu/packages/texlive.scm,
gnu/packages/wdiff.scm: Adjust accordingly.
2015-03-04 11:21:21 -05:00
|
|
|
|
#:use-module (gnu packages base)
|
2013-12-07 15:56:01 -05:00
|
|
|
|
#:use-module (gnu packages pcre)
|
2015-03-07 06:18:32 -05:00
|
|
|
|
#:use-module (gnu packages pkg-config)
|
2014-06-12 07:03:53 -04:00
|
|
|
|
#:use-module (gnu packages xml)
|
2014-09-27 18:52:05 -04:00
|
|
|
|
#:use-module (gnu packages curl)
|
2015-01-31 18:03:19 -05:00
|
|
|
|
#:use-module (gnu packages perl)
|
|
|
|
|
#:use-module (gnu packages texinfo))
|
2013-09-29 14:55:47 -04:00
|
|
|
|
|
|
|
|
|
(define-public httpd
|
|
|
|
|
(package
|
|
|
|
|
(name "httpd")
|
2015-02-15 05:41:58 -05:00
|
|
|
|
(version "2.4.12")
|
2013-09-29 14:55:47 -04:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://apache/httpd/httpd-"
|
|
|
|
|
version ".tar.bz2"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2015-02-15 05:41:58 -05:00
|
|
|
|
"1r7a63ka41vlswrqbb21vall6sc7svwgd497kb6dh8a6zvnkjvdd"))))
|
2013-09-29 14:55:47 -04:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs `(("apr" ,apr)
|
|
|
|
|
("apr-util" ,apr-util)
|
|
|
|
|
("openssl" ,openssl)
|
2015-01-29 16:34:04 -05:00
|
|
|
|
("pcre" ,pcre)
|
|
|
|
|
("perl" ,perl))) ; needed to run bin/apxs
|
2013-09-29 14:55:47 -04:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:test-target "test"
|
|
|
|
|
#:configure-flags (list "--enable-rewrite"
|
|
|
|
|
"--enable-userdir"
|
|
|
|
|
"--enable-vhost-alias"
|
|
|
|
|
"--enable-ssl"
|
|
|
|
|
"--enable-mime-magic"
|
|
|
|
|
(string-append "--sysconfdir="
|
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
|
"/etc/httpd"))))
|
|
|
|
|
(synopsis "Featureful HTTP server")
|
|
|
|
|
(description
|
|
|
|
|
"The Apache HTTP Server Project is a collaborative software development
|
|
|
|
|
effort aimed at creating a robust, commercial-grade, featureful, and
|
gnu: Some cleanup based on lint checkers.
* gnu/packages/admin.scm, gnu/packages/aidc.scm, gnu/packages/algebra.scm,
gnu/packages/apr.scm, gnu/packages/avahi.scm, gnu/packages/backup.scm,
gnu/packages/base.scm, gnu/packages/calcurse.scm, gnu/packages/cdrom.scm,
gnu/packages/check.scm, gnu/packages/compression.scm, gnu/packages/cook.scm,
gnu/packages/crypto.scm, gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/databases.scm,
gnu/packages/doxygen.scm, gnu/packages/dwm.scm, gnu/packages/elf.scm,
gnu/packages/emacs.scm, gnu/packages/feh.scm, gnu/packages/file.scm,
gnu/packages/fish.scm, gnu/packages/flex.scm, gnu/packages/fltk.scm,
gnu/packages/fontutils.scm, gnu/packages/games.scm, gnu/packages/gcal.scm,
gnu/packages/gcc.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gperf.scm, gnu/packages/grub.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/guile-wm.scm, gnu/packages/guile.scm,
gnu/packages/hurd.scm, gnu/packages/icu4c.scm, gnu/packages/image.scm,
gnu/packages/imagemagick.scm, gnu/packages/irssi.scm, gnu/packages/kde.scm,
gnu/packages/libdaemon.scm, gnu/packages/libevent.scm,
gnu/packages/libidn.scm, gnu/packages/libusb.scm, gnu/packages/linux.scm,
gnu/packages/lout.scm, gnu/packages/lsh.scm, gnu/packages/lsof.scm,
gnu/packages/lua.scm, gnu/packages/maths.scm, gnu/packages/mcrypt.scm,
gnu/packages/mp3.scm, gnu/packages/netpbm.scm, gnu/packages/noweb.scm,
gnu/packages/ocaml.scm, gnu/packages/openssl.scm, gnu/packages/pcre.scm,
gnu/packages/pdf.scm, gnu/packages/pkg-config.scm,
gnu/packages/pretty-print.scm, gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/scheme.scm, gnu/packages/scrot.scm,
gnu/packages/sdl.scm, gnu/packages/skribilo.scm, gnu/packages/ssh.scm,
gnu/packages/stalonetray.scm, gnu/packages/tcl.scm, gnu/packages/tcsh.scm,
gnu/packages/telephony.scm, gnu/packages/texlive.scm, gnu/packages/tor.scm,
gnu/packages/valgrind.scm, gnu/packages/version-control.scm,
gnu/packages/vim.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/web.scm, gnu/packages/wordnet.scm, gnu/packages/xiph.scm,
gnu/packages/xml.scm, gnu/packages/xorg.scm, gnu/packages/zile.scm,
gnu/packages/zip.scm, gnu/packages/zsh.scm [synopsis, description]: Adjust
according to lint checkers.
* gnu/packages/fltk.scm (fltk)[source]: Wrap long line in uri.
* /gnu/packages/xiph.scm (libogg, libtheora, vorbis-tools)[source]: Same.
2014-10-24 00:46:59 -04:00
|
|
|
|
freely-available source code implementation of an HTTP (Web) server. The
|
|
|
|
|
project is jointly managed by a group of volunteers located around the world,
|
|
|
|
|
using the Internet and the Web to communicate, plan, and develop the server
|
|
|
|
|
and its related documentation.")
|
2013-09-29 14:55:47 -04:00
|
|
|
|
(license l:asl2.0)
|
|
|
|
|
(home-page "https://httpd.apache.org/")))
|
2013-12-07 15:56:01 -05:00
|
|
|
|
|
2014-12-10 17:39:48 -05:00
|
|
|
|
(define-public nginx
|
|
|
|
|
(package
|
|
|
|
|
(name "nginx")
|
|
|
|
|
(version "1.6.2")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://nginx.org/download/nginx-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"060s77qxhkn02fjkcndsr0xppj2bppjzkj0gn84svrykb4lqqq5m"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs `(("pcre" ,pcre)
|
|
|
|
|
("openssl" ,openssl)
|
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f ; no test target
|
|
|
|
|
#:phases
|
|
|
|
|
(alist-cons-before
|
|
|
|
|
'configure 'patch-/bin/sh
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "auto/feature"
|
|
|
|
|
(("/bin/sh") (which "bash"))))
|
|
|
|
|
(alist-replace
|
|
|
|
|
'configure
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let ((flags
|
|
|
|
|
(list (string-append "--prefix=" (assoc-ref outputs "out"))
|
|
|
|
|
"--with-http_ssl_module"
|
|
|
|
|
"--with-pcre-jit"
|
|
|
|
|
"--with-ipv6"
|
|
|
|
|
"--with-debug"
|
|
|
|
|
;; Even when not cross-building, we pass the
|
|
|
|
|
;; --crossbuild option to avoid customizing for the
|
|
|
|
|
;; kernel version on the build machine.
|
|
|
|
|
,(let ((system "Linux") ; uname -s
|
|
|
|
|
(release "2.6.32") ; uname -r
|
|
|
|
|
;; uname -m
|
|
|
|
|
(machine (match (or (%current-target-system)
|
|
|
|
|
(%current-system))
|
|
|
|
|
("x86_64-linux" "x86_64")
|
|
|
|
|
("i686-linux" "i686")
|
|
|
|
|
("mips64el-linux" "mips64"))))
|
|
|
|
|
(string-append "--crossbuild="
|
|
|
|
|
system ":" release ":" machine)))))
|
|
|
|
|
(setenv "CC" "gcc")
|
|
|
|
|
(format #t "environment variable `CC' set to `gcc'~%")
|
|
|
|
|
(format #t "configure flags: ~s~%" flags)
|
|
|
|
|
(zero? (apply system* "./configure" flags))))
|
|
|
|
|
%standard-phases))))
|
|
|
|
|
(home-page "http://nginx.org")
|
|
|
|
|
(synopsis "HTTP and reverse proxy server")
|
|
|
|
|
(description
|
|
|
|
|
"Nginx (\"engine X\") is a high-performance web and reverse proxy server
|
|
|
|
|
created by Igor Sysoev. It can be used both as a standalone web server
|
|
|
|
|
and as a proxy to reduce the load on back-end HTTP or mail servers.")
|
|
|
|
|
;; Almost all of nginx is distributed under the bsd-2 license.
|
|
|
|
|
;; The exceptions are:
|
|
|
|
|
;; * The 'nginx-http-push' module is covered by the expat license.
|
|
|
|
|
;; * The 'nginx-development-kit' module is mostly covered by bsd-3,
|
|
|
|
|
;; except for two source files which are bsd-4 licensed.
|
|
|
|
|
(license (list l:bsd-2 l:expat l:bsd-3 l:bsd-4))))
|
|
|
|
|
|
2015-01-30 04:47:23 -05:00
|
|
|
|
(define-public jansson
|
|
|
|
|
(package
|
|
|
|
|
(name "jansson")
|
|
|
|
|
(version "2.7")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri
|
|
|
|
|
(string-append "http://www.digip.org/jansson/releases/jansson-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1mvq9p85khsl818i4vbszyfab0fd45mdrwrxjkzw05mk1xcyc1br"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(home-page "http://www.digip.org/jansson/")
|
|
|
|
|
(synopsis "JSON C library")
|
|
|
|
|
(description
|
|
|
|
|
"Jansson is a C library for encoding, decoding and manipulating JSON
|
|
|
|
|
data.")
|
|
|
|
|
(license l:expat)))
|
|
|
|
|
|
2014-06-24 08:53:51 -04:00
|
|
|
|
(define-public json-c
|
|
|
|
|
(package
|
|
|
|
|
(name "json-c")
|
|
|
|
|
(version "0.12")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://s3.amazonaws.com/json-c_releases/releases/json-c-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0gwzic3ifg2d0w32ya3agpxh8i083cgvf7kmc51cnbgqnfr02300"))
|
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
|
(snippet
|
|
|
|
|
'(begin
|
|
|
|
|
;; Somehow 'config.h.in' is older than
|
|
|
|
|
;; 'aclocal.m4', which would trigger a rule to
|
|
|
|
|
;; run 'autoheader'.
|
|
|
|
|
(set-file-time "config.h.in"
|
|
|
|
|
(stat "aclocal.m4"))
|
|
|
|
|
|
|
|
|
|
;; Don't try to build with -Werror.
|
|
|
|
|
(substitute* (find-files "." "Makefile\\.in")
|
|
|
|
|
(("-Werror") ""))))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments '(#:parallel-build? #f
|
|
|
|
|
#:parallel-tests? #f))
|
|
|
|
|
(home-page "https://github.com/json-c/json-c/wiki")
|
|
|
|
|
(synopsis "JSON implementation in C")
|
|
|
|
|
(description
|
|
|
|
|
"JSON-C implements a reference counting object model that allows you to
|
|
|
|
|
easily construct JSON objects in C, output them as JSON formatted strings and
|
|
|
|
|
parse JSON formatted strings back into the C representation of JSON objects.")
|
|
|
|
|
(license l:x11)))
|
|
|
|
|
|
2014-02-27 13:49:12 -05:00
|
|
|
|
(define-public libwebsockets
|
|
|
|
|
(package
|
|
|
|
|
(name "libwebsockets")
|
2014-08-28 05:38:12 -04:00
|
|
|
|
(version "1.3")
|
2014-02-27 13:49:12 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
;; The project does not publish tarballs, so we have to take
|
|
|
|
|
;; things from Git.
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "git://git.libwebsockets.org/libwebsockets")
|
|
|
|
|
(commit (string-append "v" version
|
2014-08-28 05:38:12 -04:00
|
|
|
|
"-chrome37-firefox30"))))
|
2014-02-27 13:49:12 -05:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2014-08-28 05:38:12 -04:00
|
|
|
|
"12fqh2d2098mgf0ls19p9lzibpsqhv7mc5rn1yvrbfnazmcr40g4"))
|
2014-02-27 13:49:12 -05:00
|
|
|
|
(file-name (string-append name "-" version))))
|
|
|
|
|
|
2014-08-28 05:38:12 -04:00
|
|
|
|
(build-system cmake-build-system)
|
2014-02-27 13:49:12 -05:00
|
|
|
|
(arguments
|
2014-08-28 05:38:12 -04:00
|
|
|
|
;; XXX: The thing lacks a 'make test' target, because CMakeLists.txt
|
|
|
|
|
;; doesn't use 'add_test', and it's unclear how to run the test suite.
|
|
|
|
|
'(#:tests? #f))
|
2014-02-27 13:49:12 -05:00
|
|
|
|
|
2014-08-28 05:38:12 -04:00
|
|
|
|
(native-inputs `(("perl" ,perl))) ; to build the HTML doc
|
2014-02-27 13:49:12 -05:00
|
|
|
|
(inputs `(("zlib" ,zlib)
|
|
|
|
|
("openssl" ,openssl)))
|
|
|
|
|
(synopsis "WebSockets library written in C")
|
|
|
|
|
(description
|
gnu: Some cleanup based on lint checkers.
* gnu/packages/admin.scm, gnu/packages/aidc.scm, gnu/packages/algebra.scm,
gnu/packages/apr.scm, gnu/packages/avahi.scm, gnu/packages/backup.scm,
gnu/packages/base.scm, gnu/packages/calcurse.scm, gnu/packages/cdrom.scm,
gnu/packages/check.scm, gnu/packages/compression.scm, gnu/packages/cook.scm,
gnu/packages/crypto.scm, gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/databases.scm,
gnu/packages/doxygen.scm, gnu/packages/dwm.scm, gnu/packages/elf.scm,
gnu/packages/emacs.scm, gnu/packages/feh.scm, gnu/packages/file.scm,
gnu/packages/fish.scm, gnu/packages/flex.scm, gnu/packages/fltk.scm,
gnu/packages/fontutils.scm, gnu/packages/games.scm, gnu/packages/gcal.scm,
gnu/packages/gcc.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gperf.scm, gnu/packages/grub.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/guile-wm.scm, gnu/packages/guile.scm,
gnu/packages/hurd.scm, gnu/packages/icu4c.scm, gnu/packages/image.scm,
gnu/packages/imagemagick.scm, gnu/packages/irssi.scm, gnu/packages/kde.scm,
gnu/packages/libdaemon.scm, gnu/packages/libevent.scm,
gnu/packages/libidn.scm, gnu/packages/libusb.scm, gnu/packages/linux.scm,
gnu/packages/lout.scm, gnu/packages/lsh.scm, gnu/packages/lsof.scm,
gnu/packages/lua.scm, gnu/packages/maths.scm, gnu/packages/mcrypt.scm,
gnu/packages/mp3.scm, gnu/packages/netpbm.scm, gnu/packages/noweb.scm,
gnu/packages/ocaml.scm, gnu/packages/openssl.scm, gnu/packages/pcre.scm,
gnu/packages/pdf.scm, gnu/packages/pkg-config.scm,
gnu/packages/pretty-print.scm, gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/scheme.scm, gnu/packages/scrot.scm,
gnu/packages/sdl.scm, gnu/packages/skribilo.scm, gnu/packages/ssh.scm,
gnu/packages/stalonetray.scm, gnu/packages/tcl.scm, gnu/packages/tcsh.scm,
gnu/packages/telephony.scm, gnu/packages/texlive.scm, gnu/packages/tor.scm,
gnu/packages/valgrind.scm, gnu/packages/version-control.scm,
gnu/packages/vim.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/web.scm, gnu/packages/wordnet.scm, gnu/packages/xiph.scm,
gnu/packages/xml.scm, gnu/packages/xorg.scm, gnu/packages/zile.scm,
gnu/packages/zip.scm, gnu/packages/zsh.scm [synopsis, description]: Adjust
according to lint checkers.
* gnu/packages/fltk.scm (fltk)[source]: Wrap long line in uri.
* /gnu/packages/xiph.scm (libogg, libtheora, vorbis-tools)[source]: Same.
2014-10-24 00:46:59 -04:00
|
|
|
|
"Libwebsockets is a library that allows C programs to establish client
|
2014-02-27 13:49:12 -05:00
|
|
|
|
and server WebSockets connections---a protocol layered above HTTP that allows
|
|
|
|
|
for efficient socket-like bidirectional reliable communication channels.")
|
|
|
|
|
(home-page "http://libwebsockets.org/")
|
|
|
|
|
|
|
|
|
|
;; This is LGPLv2.1-only with extra exceptions specified in 'LICENSE'.
|
|
|
|
|
(license l:lgpl2.1)))
|
|
|
|
|
|
2014-10-30 17:15:13 -04:00
|
|
|
|
(define-public libpsl
|
|
|
|
|
(package
|
|
|
|
|
(name "libpsl")
|
|
|
|
|
(version "0.6.0")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://github.com/rockdaboot/libpsl/"
|
|
|
|
|
"archive/" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2014-11-10 23:49:02 -05:00
|
|
|
|
"10s7xxxx6pp4ydp3san69sa6q379ih3pv92fyi565ggmlw8igv7a"))
|
2015-03-01 16:21:53 -05:00
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
|
(snippet
|
|
|
|
|
;; Believe it or not, the .pc is invalid. Fix it.
|
|
|
|
|
'(substitute* "libpsl.pc.in"
|
|
|
|
|
(("-llibpsl") "-lpsl")))))
|
2014-10-30 17:15:13 -04:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs `(("icu4c" ,icu4c)))
|
|
|
|
|
;; The release tarball lacks the generated files.
|
|
|
|
|
(native-inputs `(("autoconf" ,autoconf)
|
|
|
|
|
("automake" ,automake)
|
|
|
|
|
("gettext" ,gnu-gettext)
|
|
|
|
|
("which" ,which)
|
2015-01-07 03:44:10 -05:00
|
|
|
|
("libtool" ,libtool)))
|
2014-10-30 17:15:13 -04:00
|
|
|
|
(arguments
|
2015-02-27 11:53:06 -05:00
|
|
|
|
`(#:phases (alist-cons-after
|
|
|
|
|
'unpack 'bootstrap
|
2014-10-30 17:15:13 -04:00
|
|
|
|
(lambda _
|
2015-02-27 11:53:06 -05:00
|
|
|
|
(zero? (system* "sh" "autogen.sh")))
|
|
|
|
|
%standard-phases)))
|
2014-10-30 17:15:13 -04:00
|
|
|
|
(home-page "https://github.com/rockdaboot/libpsl")
|
|
|
|
|
(synopsis "C library for the Publix Suffix List")
|
|
|
|
|
(description
|
|
|
|
|
"A \"public suffix\" is a domain name under which Internet users can
|
|
|
|
|
directly register own names.
|
|
|
|
|
|
|
|
|
|
Browsers and other web clients can use it to avoid privacy-leaking
|
|
|
|
|
\"supercookies\", avoid privacy-leaking \"super domain\" certificates, domain
|
|
|
|
|
highlighting parts of the domain in a user interface, and sorting domain lists
|
|
|
|
|
by site.
|
|
|
|
|
|
|
|
|
|
Libpsl has built-in PSL data for fast access, allows to load PSL data from
|
|
|
|
|
files, checks if a given domain is a public suffix, provides immediate cookie
|
|
|
|
|
domain verification, finds the longest public part of a given domain, finds
|
|
|
|
|
the shortest private part of a given domain, works with international
|
|
|
|
|
domains (UTF-8 and IDNA2008 Punycode), is thread-safe, and handles IDNA2008
|
|
|
|
|
UTS#46")
|
|
|
|
|
(license l:x11)))
|
|
|
|
|
|
2015-02-06 21:14:11 -05:00
|
|
|
|
(define-public tidy
|
|
|
|
|
(package
|
|
|
|
|
(name "tidy")
|
|
|
|
|
(version "20091223")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method cvs-fetch)
|
|
|
|
|
(uri (cvs-reference
|
|
|
|
|
(root-directory
|
|
|
|
|
":pserver:anonymous@tidy.cvs.sourceforge.net:/cvsroot/tidy")
|
|
|
|
|
(module "tidy")
|
|
|
|
|
(revision "2009-12-23")))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"14dsnmirjcrvwsffqp3as70qr6bbfaig2fv3zvs5g7005jrsbvpb"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
2015-02-07 21:09:48 -05:00
|
|
|
|
'(#:phases (alist-cons-after
|
|
|
|
|
'unpack 'bootstrap
|
2015-02-06 21:14:11 -05:00
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
;; configure.in and Makefile.am aren't in the root of the
|
|
|
|
|
;; source tree.
|
|
|
|
|
(copy-recursively "build/gnuauto" ".")
|
|
|
|
|
(setenv "AUTOMAKE" "automake --foreign")
|
|
|
|
|
(zero? (system* "autoreconf" "-vfi")))
|
|
|
|
|
%standard-phases)))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("automake" ,automake)
|
|
|
|
|
("autoconf" ,autoconf)
|
|
|
|
|
("libtool" ,libtool)))
|
|
|
|
|
(synopsis "HTML validator and tidier")
|
|
|
|
|
(description "HTML Tidy is a command-line tool and C library that can be
|
|
|
|
|
used to validate and fix HTML data.")
|
|
|
|
|
(home-page "http://tidy.sourceforge.net/")
|
|
|
|
|
(license (l:x11-style "file:///include/tidy.h"))))
|
|
|
|
|
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(define-public tinyproxy
|
2013-12-07 15:56:01 -05:00
|
|
|
|
(package
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(name "tinyproxy")
|
|
|
|
|
(version "1.8.3")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
|
|
|
|
"http://www.samba.org/~obnox/" name "/download/"
|
|
|
|
|
name "-" version ".tar.bz2"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0vl9igw7vm924rs6d6bkib7zfclxnlf9s8rmml1sfwj7xda9nmdy"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:configure-flags
|
|
|
|
|
(list
|
|
|
|
|
;; For the log file, etc.
|
|
|
|
|
"--localstatedir=/var")
|
|
|
|
|
#:phases
|
|
|
|
|
(alist-cons-before
|
|
|
|
|
'build 'pre-build
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys #:rest args)
|
|
|
|
|
;; Uncommenting the next two lines may assist in debugging
|
|
|
|
|
;; (substitute* "docs/man5/Makefile" (("a2x") "a2x -v"))
|
|
|
|
|
;; (setenv "XML_DEBUG_CATALOG" "1")
|
|
|
|
|
#t)
|
|
|
|
|
%standard-phases)))
|
|
|
|
|
;; All of the below are used to generate the documentation
|
|
|
|
|
;; (Should they be propagated inputs of asciidoc ??)
|
|
|
|
|
(native-inputs `(("asciidoc" ,asciidoc)
|
|
|
|
|
("libxml2" ,libxml2)
|
|
|
|
|
("docbook-xml" ,docbook-xml)
|
|
|
|
|
("docbook-xsl" ,docbook-xsl)
|
|
|
|
|
("libxslt" ,libxslt)))
|
|
|
|
|
(home-page "https://banu.com/tinyproxy/")
|
|
|
|
|
(synopsis "Light-weight HTTP/HTTPS proxy daemon")
|
|
|
|
|
(description "Tinyproxy is a light-weight HTTP/HTTPS proxy
|
|
|
|
|
daemon. Designed from the ground up to be fast and yet small, it is an ideal
|
|
|
|
|
solution for use cases such as embedded deployments where a full featured HTTP
|
|
|
|
|
proxy is required, but the system resources for a larger proxy are
|
|
|
|
|
unavailable.")
|
|
|
|
|
(license l:gpl2+)))
|
|
|
|
|
|
|
|
|
|
(define-public polipo
|
|
|
|
|
(package
|
|
|
|
|
(name "polipo")
|
|
|
|
|
(version "1.1.1")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
|
|
|
|
"http://www.pps.univ-paris-diderot.fr/~jch/software/files/polipo/polipo-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"05g09sg9qkkhnc2mxldm1w1xkxzs2ylybkjzs28w8ydbjc3pand2"))))
|
|
|
|
|
(native-inputs `(("texinfo" ,texinfo)))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(alist-delete 'configure %standard-phases)
|
|
|
|
|
#:make-flags (let ((out (assoc-ref %outputs "out")))
|
|
|
|
|
(list (string-append "PREFIX=" out)
|
|
|
|
|
(string-append "LOCAL_ROOT="
|
|
|
|
|
out "/share/polipo/www")
|
|
|
|
|
"CC=gcc"))
|
|
|
|
|
;; No 'check' target.
|
|
|
|
|
#:tests? #f))
|
|
|
|
|
(home-page "http://www.pps.univ-paris-diderot.fr/~jch/software/polipo/")
|
|
|
|
|
(synopsis "Small caching web proxy")
|
|
|
|
|
(description
|
|
|
|
|
"Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy
|
|
|
|
|
server). It was primarily designed to be used by one person or a small group
|
|
|
|
|
of people.")
|
|
|
|
|
(license l:expat)))
|
|
|
|
|
|
|
|
|
|
(define-public libyaml
|
|
|
|
|
(package
|
|
|
|
|
(name "libyaml")
|
|
|
|
|
(version "0.1.5")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
|
|
|
|
"http://pyyaml.org/download/libyaml/yaml-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1vrv5ly58bkmcyc049ad180f2m8iav6l9h3v8l2fqdmrny7yx1zs"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(home-page "http://pyyaml.org/wiki/LibYAML")
|
|
|
|
|
(synopsis "YAML 1.1 parser and emitter written in C")
|
|
|
|
|
(description
|
|
|
|
|
"LibYAML is a YAML 1.1 parser and emitter written in C.")
|
|
|
|
|
(license l:expat)))
|
|
|
|
|
|
|
|
|
|
(define-public libquvi-scripts
|
|
|
|
|
(package
|
|
|
|
|
(name "libquvi-scripts")
|
|
|
|
|
(version "0.4.21")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
|
|
|
|
"mirror://sourceforge/quvi/libquvi-scripts-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "0d0giry6bb57pnidymvdl7i5x9bq3ljk3g4bs294hcr5mj3cq0kw"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(home-page "http://quvi.sourceforge.net/")
|
|
|
|
|
(synopsis "Media stream URL parser")
|
|
|
|
|
(description "This package contains support scripts called by libquvi to
|
|
|
|
|
parse media stream properties.")
|
|
|
|
|
(license l:lgpl2.1+)))
|
|
|
|
|
|
|
|
|
|
(define-public libquvi
|
|
|
|
|
(package
|
|
|
|
|
(name "libquvi")
|
|
|
|
|
(version "0.4.1")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
|
|
|
|
"mirror://sourceforge/quvi/libquvi-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "00x9gbmzc5cns0gnfag0hsphcr3cb33vbbb9s7ppvvd6bxz2z1mm"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("curl" ,curl)
|
|
|
|
|
("cyrus-sasl" ,cyrus-sasl)
|
|
|
|
|
("libquvi-scripts" ,libquvi-scripts)
|
|
|
|
|
("lua" ,lua-5.1)
|
|
|
|
|
("openssl" ,openssl)
|
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
|
(arguments
|
|
|
|
|
;; Lua provides no .pc file, so add CFLAGS/LIBS manually.
|
|
|
|
|
'(#:configure-flags
|
|
|
|
|
(let ((lua (assoc-ref %build-inputs "lua")))
|
|
|
|
|
(list
|
|
|
|
|
(string-append "liblua_CFLAGS=-I" lua "/include")
|
|
|
|
|
(string-append "liblua_LIBS=-L" lua "/libs -llua")))))
|
|
|
|
|
(home-page "http://quvi.sourceforge.net/")
|
|
|
|
|
(synopsis "Media stream URL parser")
|
|
|
|
|
(description "libquvi is a library with a C API for parsing media stream
|
|
|
|
|
URLs and extracting their actual media files.")
|
|
|
|
|
(license l:lgpl2.1+)))
|
|
|
|
|
|
|
|
|
|
(define-public quvi
|
|
|
|
|
(package
|
|
|
|
|
(name "quvi")
|
|
|
|
|
(version "0.4.2")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
|
|
|
|
"mirror://sourceforge/quvi/quvi-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "09lhl6dv5zpryasx7yjslfrcdcqlsbwapvd5lg7w6sm5x5n3k8ci"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("curl" ,curl)
|
|
|
|
|
("libquvi" ,libquvi)))
|
|
|
|
|
(home-page "http://quvi.sourceforge.net/")
|
|
|
|
|
(synopsis "Media stream URL parser")
|
|
|
|
|
(description "quvi is a command-line-tool suite to extract media files
|
|
|
|
|
from streaming URLs. It is a command-line wrapper for the libquvi library.")
|
|
|
|
|
(license l:lgpl2.1+)))
|
|
|
|
|
|
|
|
|
|
|
2015-03-10 16:21:30 -04:00
|
|
|
|
(define-public perl-apache-logformat-compiler
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-apache-logformat-compiler")
|
|
|
|
|
(version "0.32")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
|
|
|
|
|
"Apache-LogFormat-Compiler-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0zyx4r2bxc6d48m70fhcq80nw0q9wnfz6qgn1g0r6bigqgdjq4dw"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("perl-http-message" ,perl-http-message)
|
|
|
|
|
("perl-test-mocktime" ,perl-test-mocktime)
|
|
|
|
|
("perl-try-tiny" ,perl-try-tiny)
|
|
|
|
|
("perl-uri" ,perl-uri)))
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("perl-posix-strftime-compiler" ,perl-posix-strftime-compiler)))
|
|
|
|
|
(arguments `(#:tests? #f)) ;TODO: Timezone test failures
|
|
|
|
|
(home-page "http://search.cpan.org/dist/Apache-LogFormat-Compiler")
|
|
|
|
|
(synopsis "Compile a log format string to perl-code")
|
|
|
|
|
(description "This module provides methods to compile a log format string
|
|
|
|
|
to perl-code, for faster generation of access_log lines.")
|
|
|
|
|
(license (package-license perl))))
|
|
|
|
|
|
2015-03-11 17:25:58 -04:00
|
|
|
|
(define-public perl-cgi-simple
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-cgi-simple")
|
|
|
|
|
(version "1.115")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
|
|
|
|
|
"CGI-Simple-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1nkyb1m1g5r47xykflf68dplanih5p15njv82frbgbsms34kp1sg"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("perl-io-stringy" ,perl-io-stringy))) ;for IO::Scalar
|
|
|
|
|
(home-page "http://search.cpan.org/dist/CGI-Simple")
|
|
|
|
|
(synopsis "CGI interface that is CGI.pm compliant")
|
|
|
|
|
(description "CGI::Simple provides a relatively lightweight drop in
|
|
|
|
|
replacement for CGI.pm. It shares an identical OO interface to CGI.pm for
|
|
|
|
|
parameter parsing, file upload, cookie handling and header generation.")
|
|
|
|
|
(license (package-license perl))))
|
|
|
|
|
|
2015-03-11 17:28:29 -04:00
|
|
|
|
(define-public perl-cgi-struct
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-cgi-struct")
|
|
|
|
|
(version "1.21")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://cpan/authors/id/F/FU/FULLERMD/"
|
|
|
|
|
"CGI-Struct-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0v4xq2qpryr7i6jngw1wpn8yr2kiib10yxp4aih90vfdznkqsgfi"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("perl-test-deep" ,perl-test-deep)))
|
|
|
|
|
(home-page "http://search.cpan.org/dist/CGI-Struct")
|
|
|
|
|
(synopsis "Build structures from CGI data")
|
|
|
|
|
(description "This is a module for building structured data from CGI
|
|
|
|
|
inputs, in a manner reminiscent of how PHP does.")
|
|
|
|
|
(license l:bsd-2)))
|
|
|
|
|
|
2015-03-12 12:14:19 -04:00
|
|
|
|
(define-public perl-cpanel-json-xs
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-cpanel-json-xs")
|
|
|
|
|
(version "3.0114")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
|
|
|
|
|
"Cpanel-JSON-XS-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0jhi1v0631x4d14a7cpfnpjqhs34zkygxjn1nwvvr927awx5jx71"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("perl-common-sense" ,perl-common-sense)))
|
|
|
|
|
(home-page "http://search.cpan.org/dist/Cpanel-JSON-XS")
|
|
|
|
|
(synopsis "JSON::XS for Cpanel")
|
|
|
|
|
(description "This module converts Perl data structures to JSON and vice
|
|
|
|
|
versa.")
|
|
|
|
|
(license (package-license perl))))
|
|
|
|
|
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(define-public perl-encode-locale
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-encode-locale")
|
|
|
|
|
(version "1.03")
|
2013-12-07 15:56:01 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"mirror://cpan/authors/id/G/GA/GAAS/Encode-Locale-"
|
2013-12-07 15:56:01 -05:00
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"0m9d1vdphlyzybgmdanipwd9ndfvyjgk3hzw250r299jjgh3fqzp"))))
|
2013-12-07 15:56:01 -05:00
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(license (package-license perl))
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(synopsis "Perl locale encoding determination")
|
2013-12-07 15:56:01 -05:00
|
|
|
|
(description
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"The POSIX locale system is used to specify both the language
|
|
|
|
|
conventions requested by the user and the preferred character set to consume
|
|
|
|
|
and output. The Encode::Locale module looks up the charset and encoding
|
|
|
|
|
(called a CODESET in the locale jargon) and arranges for the Encode module
|
|
|
|
|
to know this encoding under the name \"locale\". It means bytes obtained
|
|
|
|
|
from the environment can be converted to Unicode strings by calling
|
|
|
|
|
Encode::encode(locale => $bytes) and converted back again with
|
|
|
|
|
Encode::decode(locale => $string).")
|
|
|
|
|
(home-page "http://search.cpan.org/~gaas/Encode-Locale/")))
|
|
|
|
|
|
|
|
|
|
(define-public perl-file-listing
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-file-listing")
|
|
|
|
|
(version "6.04")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
|
|
|
|
"mirror://cpan/authors/id/G/GA/GAAS/File-Listing-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1xcwjlnxaiwwpn41a5yi6nz95ywh3szq5chdxiwj36kqsvy5000y"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("perl-http-date" ,perl-http-date)))
|
|
|
|
|
(license (package-license perl))
|
|
|
|
|
(synopsis "Perl directory listing parser")
|
|
|
|
|
(description
|
|
|
|
|
"The File::Listing module exports a single function called parse_dir(),
|
|
|
|
|
which can be used to parse directory listings.")
|
|
|
|
|
(home-page "http://search.cpan.org/~gaas/File-Listing/")))
|
2013-12-07 15:56:01 -05:00
|
|
|
|
|
2013-12-07 16:05:59 -05:00
|
|
|
|
(define-public perl-html-parser
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-html-parser")
|
|
|
|
|
(version "3.71")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
|
|
|
|
"mirror://cpan/authors/id/G/GA/GAAS/HTML-Parser-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"00nqzdgl7c3jilx7mil19k5jwcw3as14pvkjgxi97zyk94vqp4dy"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(inputs
|
|
|
|
|
`(("perl-html-tagset" ,perl-html-tagset)))
|
|
|
|
|
(license (package-license perl))
|
|
|
|
|
(synopsis "Perl HTML parser class")
|
|
|
|
|
(description
|
|
|
|
|
"Objects of the HTML::Parser class will recognize markup and separate
|
|
|
|
|
it from plain text (alias data content) in HTML documents. As different
|
|
|
|
|
kinds of markup and text are recognized, the corresponding event handlers
|
|
|
|
|
are invoked.")
|
|
|
|
|
(home-page "http://search.cpan.org/~gaas/HTML-Parser/")))
|
2013-12-07 16:24:53 -05:00
|
|
|
|
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(define-public perl-html-tagset
|
2013-12-07 16:24:53 -05:00
|
|
|
|
(package
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(name "perl-html-tagset")
|
|
|
|
|
(version "3.20")
|
2013-12-07 16:24:53 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"mirror://cpan/authors/id/P/PE/PETDANCE/HTML-Tagset-"
|
2013-12-07 16:24:53 -05:00
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"1qh8249wgr4v9vgghq77zh1d2zs176bir223a8gh3k9nksn7vcdd"))))
|
2013-12-07 16:24:53 -05:00
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(license (package-license perl))
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(synopsis "Perl data tables useful in parsing HTML")
|
2013-12-07 16:24:53 -05:00
|
|
|
|
(description
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"The HTML::Tagset module contains several data tables useful in various
|
|
|
|
|
kinds of HTML parsing operations.")
|
|
|
|
|
(home-page "http://search.cpan.org/dist/HTML-Tagset/")))
|
2013-12-07 16:36:02 -05:00
|
|
|
|
|
2015-03-10 18:26:17 -04:00
|
|
|
|
(define-public perl-http-body
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-http-body")
|
|
|
|
|
(version "1.19")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://cpan/authors/id/G/GE/GETTY/"
|
|
|
|
|
"HTTP-Body-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0ahhksj0zg6wq6glpjkxdr3byd5riwvq2f5aw21n1jcsl71nll01"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("perl-test-deep" ,perl-test-deep)))
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("perl-file-temp" ,perl-file-temp)
|
|
|
|
|
("perl-http-message" ,perl-http-message))) ;For HTTP::Headers
|
|
|
|
|
(home-page "http://search.cpan.org/dist/HTTP-Body")
|
|
|
|
|
(synopsis "HTTP Body Parser")
|
|
|
|
|
(description "HTTP::Body parses chunks of HTTP POST data and supports
|
|
|
|
|
application/octet-stream, application/json, application/x-www-form-urlencoded,
|
|
|
|
|
and multipart/form-data.")
|
|
|
|
|
(license (package-license perl))))
|
|
|
|
|
|
2015-03-10 16:34:49 -04:00
|
|
|
|
(define-public perl-http-cookiejar
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-http-cookiejar")
|
|
|
|
|
(version "0.006")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
|
|
|
|
|
"HTTP-CookieJar-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0c7l29ak6ba2j006ca00vnkxpyc1fvpikydjvsb24s50zf1mv7b2"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("perl-test-deep" ,perl-test-deep)
|
|
|
|
|
("perl-test-requires" ,perl-test-requires)
|
|
|
|
|
("perl-time-mock" ,perl-time-mock)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("perl-time-local" ,perl-time-local)
|
|
|
|
|
("perl-http-date" ,perl-http-date)))
|
|
|
|
|
(home-page "http://search.cpan.org/dist/HTTP-CookieJar")
|
|
|
|
|
(synopsis "Minimalist HTTP user agent cookie jar")
|
|
|
|
|
(description "This module implements a minimalist HTTP user agent cookie
|
|
|
|
|
jar in conformance with RFC 6265 <http://tools.ietf.org/html/rfc6265>.")
|
|
|
|
|
(license l:asl2.0)))
|
|
|
|
|
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(define-public perl-http-cookies
|
2013-12-07 16:36:02 -05:00
|
|
|
|
(package
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(name "perl-http-cookies")
|
|
|
|
|
(version "6.01")
|
2013-12-07 16:36:02 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"mirror://cpan/authors/id/G/GA/GAAS/HTTP-Cookies-"
|
2013-12-07 16:36:02 -05:00
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"087bqmg22dg3vj7gssh3pcsh9y1scimkbl5h1kc8jqyfhgisvlzm"))))
|
2013-12-07 16:36:02 -05:00
|
|
|
|
(build-system perl-build-system)
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("perl-http-message" ,perl-http-message)))
|
2013-12-07 16:36:02 -05:00
|
|
|
|
(license (package-license perl))
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(synopsis "Perl HTTP cookie jars")
|
2013-12-07 16:36:02 -05:00
|
|
|
|
(description
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"The HTTP::Cookies class is for objects that represent a cookie jar,
|
|
|
|
|
that is, a database of all the HTTP cookies that a given LWP::UserAgent
|
|
|
|
|
object knows about.")
|
|
|
|
|
(home-page "http://search.cpan.org/~gaas/HTTP-Cookies/")))
|
2013-12-07 16:42:18 -05:00
|
|
|
|
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(define-public perl-http-daemon
|
2013-12-07 16:42:18 -05:00
|
|
|
|
(package
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(name "perl-http-daemon")
|
|
|
|
|
(version "6.01")
|
2013-12-07 16:42:18 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"mirror://cpan/authors/id/G/GA/GAAS/HTTP-Daemon-"
|
2013-12-07 16:42:18 -05:00
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"1hmd2isrkilf0q0nkxms1q64kikjmcw9imbvrjgky6kh89vqdza3"))))
|
2013-12-07 16:42:18 -05:00
|
|
|
|
(build-system perl-build-system)
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("perl-http-message" ,perl-http-message)
|
|
|
|
|
("perl-lwp-mediatypes" ,perl-lwp-mediatypes)))
|
2013-12-07 16:42:18 -05:00
|
|
|
|
(license (package-license perl))
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(synopsis "Perl simple http server class")
|
2013-12-07 16:42:18 -05:00
|
|
|
|
(description
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen
|
|
|
|
|
on a socket for incoming requests. The HTTP::Daemon is a subclass of
|
|
|
|
|
IO::Socket::INET, so you can perform socket operations directly on it too.")
|
|
|
|
|
(home-page "http://search.cpan.org/~gaas/HTTP-Daemon/")))
|
2013-12-07 16:47:40 -05:00
|
|
|
|
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(define-public perl-http-date
|
2013-12-07 16:47:40 -05:00
|
|
|
|
(package
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(name "perl-http-date")
|
|
|
|
|
(version "6.02")
|
2013-12-07 16:47:40 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"mirror://cpan/authors/id/G/GA/GAAS/HTTP-Date-"
|
2013-12-07 16:47:40 -05:00
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"0cz357kafhhzw7w59iyi0wvhw7rlh5g1lh38230ckw7rl0fr9fg8"))))
|
2013-12-07 16:47:40 -05:00
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(license (package-license perl))
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(synopsis "Perl date conversion routines")
|
2013-12-07 16:47:40 -05:00
|
|
|
|
(description
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"The HTTP::Date module provides functions that deal with date formats
|
|
|
|
|
used by the HTTP protocol (and then some more).")
|
|
|
|
|
(home-page "http://search.cpan.org/~gaas/HTTP-Date/")))
|
2013-12-07 16:49:07 -05:00
|
|
|
|
|
|
|
|
|
(define-public perl-http-message
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-http-message")
|
|
|
|
|
(version "6.06")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
|
|
|
|
"mirror://cpan/authors/id/G/GA/GAAS/HTTP-Message-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0qxdrcak97azjvqyx1anpb2ky6vp6vc37x0wcfjdqfajkh09fzh8"))))
|
|
|
|
|
(build-system perl-build-system)
|
2013-12-09 17:34:18 -05:00
|
|
|
|
(propagated-inputs
|
2013-12-07 16:49:07 -05:00
|
|
|
|
`(("perl-http-date" ,perl-http-date)
|
2015-03-12 14:41:06 -04:00
|
|
|
|
("perl-io-html" ,perl-io-html)
|
|
|
|
|
("perl-lwp-mediatypes" ,perl-lwp-mediatypes)
|
2013-12-09 18:03:38 -05:00
|
|
|
|
("perl-uri" ,perl-uri)))
|
2013-12-07 16:49:07 -05:00
|
|
|
|
(license (package-license perl))
|
|
|
|
|
(synopsis "Perl HTTP style message")
|
|
|
|
|
(description
|
|
|
|
|
"An HTTP::Message object contains some headers and a content body.")
|
|
|
|
|
(home-page "http://search.cpan.org/~gaas/HTTP-Message/")))
|
2013-12-07 16:52:29 -05:00
|
|
|
|
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(define-public perl-http-negotiate
|
2013-12-07 16:52:29 -05:00
|
|
|
|
(package
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(name "perl-http-negotiate")
|
2013-12-07 16:52:29 -05:00
|
|
|
|
(version "6.01")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"mirror://cpan/authors/id/G/GA/GAAS/HTTP-Negotiate-"
|
2013-12-07 16:52:29 -05:00
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"05p053vjs5g91v5cmjnny7a3xzddz5k7vnjw81wfh01ilqg9qwhw"))))
|
2013-12-07 16:52:29 -05:00
|
|
|
|
(build-system perl-build-system)
|
2013-12-09 17:38:10 -05:00
|
|
|
|
(propagated-inputs
|
2013-12-09 18:03:38 -05:00
|
|
|
|
`(("perl-http-message" ,perl-http-message)))
|
2013-12-07 16:52:29 -05:00
|
|
|
|
(license (package-license perl))
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(synopsis "Perl http content negotiation")
|
2013-12-07 16:52:29 -05:00
|
|
|
|
(description
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"The HTTP::Negotiate module provides a complete implementation of the
|
|
|
|
|
HTTP content negotiation algorithm specified in
|
|
|
|
|
draft-ietf-http-v11-spec-00.ps chapter 12. Content negotiation allows for
|
|
|
|
|
the selection of a preferred content representation based upon attributes
|
|
|
|
|
of the negotiable variants and the value of the various Accept* header
|
|
|
|
|
fields in the request.")
|
|
|
|
|
(home-page "http://search.cpan.org/~gaas/HTTP-Negotiate/")))
|
2013-12-08 15:53:12 -05:00
|
|
|
|
|
2015-03-11 18:19:46 -04:00
|
|
|
|
(define-public perl-http-request-ascgi
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-http-request-ascgi")
|
|
|
|
|
(version "1.2")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
|
|
|
|
|
"HTTP-Request-AsCGI-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1smwmiarwcgq7vjdblnb6ldi2x1s5sk5p15p7xvm5byiqq3znnwl"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("perl-class-accessor" ,perl-class-accessor)
|
|
|
|
|
("perl-http-message" ,perl-http-message)))
|
|
|
|
|
(home-page "http://search.cpan.org/dist/HTTP-Request-AsCGI")
|
|
|
|
|
(synopsis "Set up a CGI environment from an HTTP::Request")
|
|
|
|
|
(description "This module provides a convenient way to set up a CGI
|
|
|
|
|
environment from an HTTP::Request.")
|
|
|
|
|
(license (package-license perl))))
|
|
|
|
|
|
2015-03-10 18:14:26 -04:00
|
|
|
|
(define-public perl-http-tiny
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-http-tiny")
|
|
|
|
|
(version "0.053")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
|
|
|
|
|
"HTTP-Tiny-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1bwy31xrcz5zfx1n3vc50vj1aqvzn5ccr7lgacl8wmi03a6w2af2"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(inputs
|
|
|
|
|
`(("perl-http-cookiejar" ,perl-http-cookiejar)
|
|
|
|
|
("perl-io-socket-ip" ,perl-io-socket-ip)
|
|
|
|
|
("perl-io-socket-ssl" ,perl-io-socket-ssl)
|
|
|
|
|
("perl-net-ssleay" ,perl-net-ssleay)))
|
|
|
|
|
(home-page "http://search.cpan.org/dist/HTTP-Tiny")
|
|
|
|
|
(synopsis "HTTP/1.1 client")
|
|
|
|
|
(description "This is a very simple HTTP/1.1 client, designed for doing
|
|
|
|
|
simple requests without the overhead of a large framework like LWP::UserAgent.
|
|
|
|
|
It supports proxies and redirection. It also correctly resumes after EINTR.")
|
|
|
|
|
(license (package-license perl))))
|
|
|
|
|
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(define-public perl-io-html
|
2013-12-08 15:53:12 -05:00
|
|
|
|
(package
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(name "perl-io-html")
|
|
|
|
|
(version "1.00")
|
2013-12-08 15:53:12 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"mirror://cpan/authors/id/C/CJ/CJM/IO-HTML-"
|
2013-12-08 15:53:12 -05:00
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"06nj3a0xgp5jxwxx6ayglfk2v7npf5a7gwkqsjlkapjkybarzqh4"))))
|
2013-12-08 15:53:12 -05:00
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(license (package-license perl))
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(synopsis "Perl module to open an HTML file with automatic charset detection")
|
2013-12-08 15:53:12 -05:00
|
|
|
|
(description
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"IO::HTML provides an easy way to open a file containing HTML while
|
|
|
|
|
automatically determining its encoding. It uses the HTML5 encoding sniffing
|
|
|
|
|
algorithm specified in section 8.2.2.1 of the draft standard.")
|
|
|
|
|
(home-page "http://search.cpan.org/~cjm/IO-HTML/")))
|
2013-12-08 16:02:48 -05:00
|
|
|
|
|
2015-03-10 16:46:50 -04:00
|
|
|
|
(define-public perl-io-socket-ip
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-io-socket-ip")
|
|
|
|
|
(version "0.36")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://cpan/authors/id/P/PE/PEVANS/"
|
|
|
|
|
"IO-Socket-IP-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0ky20hmln6waipzqikizyw04vpszf70fgpshz7ib8zv8480ri456"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(home-page "http://search.cpan.org/dist/IO-Socket-IP")
|
|
|
|
|
(synopsis "Family-neutral IP socket supporting both IPv4 and IPv6")
|
|
|
|
|
(description "This module provides a protocol-independent way to use IPv4
|
|
|
|
|
and IPv6 sockets, intended as a replacement for IO::Socket::INET.")
|
|
|
|
|
(license (package-license perl))))
|
|
|
|
|
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(define-public perl-io-socket-ssl
|
2013-12-08 16:02:48 -05:00
|
|
|
|
(package
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(name "perl-io-socket-ssl")
|
|
|
|
|
(version "2.002")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://cpan/authors/id/S/SU/SULLR/"
|
|
|
|
|
"IO-Socket-SSL-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1mph52lw6x5v44wf8mw00llzi8pp6k5c4jnrnrvlacrlfv260jb8"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(propagated-inputs `(("perl-net-ssleay" ,perl-net-ssleay)))
|
|
|
|
|
(synopsis "Nearly transparent SSL encapsulation for IO::Socket::INET")
|
|
|
|
|
(description
|
|
|
|
|
"IO::Socket::SSL makes using SSL/TLS much easier by wrapping the
|
|
|
|
|
necessary functionality into the familiar IO::Socket interface and providing
|
|
|
|
|
secure defaults whenever possible. This way existing applications can be made
|
|
|
|
|
SSL-aware without much effort, at least if you do blocking I/O and don't use
|
|
|
|
|
select or poll.")
|
|
|
|
|
(license (package-license perl))
|
|
|
|
|
(home-page "https://github.com/noxxi/p5-io-socket-ssl")))
|
|
|
|
|
|
|
|
|
|
(define-public perl-libwww
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-libwww")
|
|
|
|
|
(version "6.05")
|
2013-12-08 16:02:48 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"mirror://cpan/authors/id/G/GA/GAAS/libwww-perl-"
|
2013-12-08 16:02:48 -05:00
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"08wgwyz7748pv5cyngxia0xl6nragfnhrp4p9s78xhgfyygpj9bv"))))
|
2013-12-08 16:02:48 -05:00
|
|
|
|
(build-system perl-build-system)
|
2013-12-09 17:45:02 -05:00
|
|
|
|
(propagated-inputs
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
`(("perl-encode-locale" ,perl-encode-locale)
|
|
|
|
|
("perl-file-listing" ,perl-file-listing)
|
|
|
|
|
("perl-html-parser" ,perl-html-parser)
|
|
|
|
|
("perl-http-cookies" ,perl-http-cookies)
|
|
|
|
|
("perl-http-daemon" ,perl-http-daemon)
|
|
|
|
|
("perl-http-negotiate" ,perl-http-negotiate)
|
|
|
|
|
("perl-net-http" ,perl-net-http)
|
|
|
|
|
("perl-www-robotrules" ,perl-www-robotrules)))
|
2013-12-08 16:02:48 -05:00
|
|
|
|
(license (package-license perl))
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(synopsis "Perl modules for the WWW")
|
2013-12-08 16:02:48 -05:00
|
|
|
|
(description
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"The libwww-perl collection is a set of Perl modules which provides a
|
|
|
|
|
simple and consistent application programming interface to the
|
|
|
|
|
World-Wide Web. The main focus of the library is to provide classes
|
|
|
|
|
and functions that allow you to write WWW clients. The library also
|
|
|
|
|
contains modules that are of more general use and even classes that
|
|
|
|
|
help you implement simple HTTP servers.")
|
|
|
|
|
(home-page "http://search.cpan.org/~gaas/libwww-perl/")))
|
2013-12-08 16:18:58 -05:00
|
|
|
|
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(define-public perl-lwp-mediatypes
|
2013-12-08 16:18:58 -05:00
|
|
|
|
(package
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(name "perl-lwp-mediatypes")
|
2013-12-08 16:18:58 -05:00
|
|
|
|
(version "6.02")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"mirror://cpan/authors/id/G/GA/GAAS/LWP-MediaTypes-"
|
2013-12-08 16:18:58 -05:00
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"0xmnblp962qy02akah30sji8bxrqcyqlff2w95l199ghql60ny8q"))))
|
2013-12-08 16:18:58 -05:00
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(license (package-license perl))
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(synopsis "Perl module to guess the media type for a file or a URL")
|
2013-12-08 16:18:58 -05:00
|
|
|
|
(description
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"The LWP::MediaTypes module provides functions for handling media (also
|
|
|
|
|
known as MIME) types and encodings. The mapping from file extensions to
|
|
|
|
|
media types is defined by the media.types file. If the ~/.media.types file
|
|
|
|
|
exists it is used instead.")
|
|
|
|
|
(home-page "http://search.cpan.org/~gaas/LWP-MediaTypes/")))
|
2013-12-08 16:24:21 -05:00
|
|
|
|
|
|
|
|
|
(define-public perl-net-http
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-net-http")
|
|
|
|
|
(version "6.06")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
|
|
|
|
"mirror://cpan/authors/id/G/GA/GAAS/Net-HTTP-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1m1rvniffadq99gsy25298ia3lixwymr6kan64jd3ylyi7nkqkhx"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(license (package-license perl))
|
|
|
|
|
(synopsis "Perl low-level HTTP connection (client)")
|
|
|
|
|
(description
|
|
|
|
|
"The Net::HTTP class is a low-level HTTP client. An instance of the
|
|
|
|
|
Net::HTTP class represents a connection to an HTTP server. The HTTP protocol
|
|
|
|
|
is described in RFC 2616. The Net::HTTP class supports HTTP/1.0 and
|
|
|
|
|
HTTP/1.1.")
|
|
|
|
|
(home-page "http://search.cpan.org/~gaas/Net-HTTP/")))
|
2013-12-09 16:16:30 -05:00
|
|
|
|
|
2015-03-11 14:58:50 -04:00
|
|
|
|
(define-public perl-plack
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-plack")
|
|
|
|
|
(version "1.0033")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
|
|
|
|
|
"Plack-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"081jg0xddzpg2anmqi9i6d7vs6c8z7k557bf8xl6vgb3h95pin5w"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("perl-test-requires" ,perl-test-requires)
|
|
|
|
|
("perl-file-sharedir-install" ,perl-file-sharedir-install)))
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("perl-apache-logformat-compiler" ,perl-apache-logformat-compiler)
|
|
|
|
|
("perl-devel-stacktrace" ,perl-devel-stacktrace)
|
|
|
|
|
("perl-devel-stacktrace-ashtml" ,perl-devel-stacktrace-ashtml)
|
|
|
|
|
("perl-file-sharedir" ,perl-file-sharedir)
|
|
|
|
|
("perl-hash-multivalue" ,perl-hash-multivalue)
|
|
|
|
|
("perl-http-body" ,perl-http-body)
|
|
|
|
|
("perl-http-message" ,perl-http-message)
|
|
|
|
|
("perl-http-tiny" ,perl-http-tiny)
|
|
|
|
|
("perl-libwww" ,perl-libwww)
|
|
|
|
|
("perl-stream-buffered" ,perl-stream-buffered)
|
|
|
|
|
("perl-test-tcp" ,perl-test-tcp)
|
|
|
|
|
("perl-try-tiny" ,perl-try-tiny)
|
|
|
|
|
("perl-uri" ,perl-uri)))
|
|
|
|
|
(home-page "http://search.cpan.org/dist/Plack")
|
|
|
|
|
(synopsis "Perl Superglue for Web frameworks and servers (PSGI toolkit)")
|
|
|
|
|
(description "Plack is a set of tools for using the PSGI stack. It
|
|
|
|
|
contains middleware components, a reference server, and utilities for Web
|
|
|
|
|
application frameworks. Plack is like Ruby's Rack or Python's Paste for
|
|
|
|
|
WSGI.")
|
|
|
|
|
(license (package-license perl))))
|
|
|
|
|
|
2015-03-11 14:39:00 -04:00
|
|
|
|
(define-public perl-test-tcp
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-test-tcp")
|
|
|
|
|
(version "2.06")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
|
|
|
|
|
"Test-TCP-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0acjwm21y2an4f3fasci9qa0isakh9cgp74fk0bzcdi506xmcjbi"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("perl-test-sharedfork" ,perl-test-sharedfork)))
|
|
|
|
|
(arguments `(#:tests? #f)) ;related to signaling in t/05_sigint.t
|
|
|
|
|
(home-page "http://search.cpan.org/dist/Test-TCP")
|
|
|
|
|
(synopsis "Testing TCP programs")
|
|
|
|
|
(description "Test::TCP is test utilities for TCP/IP programs.")
|
|
|
|
|
(license (package-license perl))))
|
|
|
|
|
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(define-public perl-uri
|
2013-12-09 16:23:47 -05:00
|
|
|
|
(package
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(name "perl-uri")
|
2015-03-12 14:42:39 -04:00
|
|
|
|
(version "1.67")
|
2013-12-09 16:23:47 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
2015-03-12 14:42:39 -04:00
|
|
|
|
(uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
|
|
|
|
|
"URI-" version ".tar.gz"))
|
2013-12-09 16:23:47 -05:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2015-03-12 14:42:39 -04:00
|
|
|
|
"0ki7i830gs0cwwwjsyv3s6yy1l76ym8pfqp0lp7vw0j9bwyx923h"))))
|
2013-12-09 16:23:47 -05:00
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(license (package-license perl))
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(synopsis "Perl Uniform Resource Identifiers (absolute and relative)")
|
2013-12-09 16:23:47 -05:00
|
|
|
|
(description
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"The URI module implements the URI class. Objects of this class
|
|
|
|
|
represent \"Uniform Resource Identifier references\" as specified in RFC 2396
|
|
|
|
|
and updated by RFC 2732.")
|
2015-03-12 14:42:39 -04:00
|
|
|
|
(home-page "http://search.cpan.org/dist/URI/")))
|
2014-09-27 18:52:05 -04:00
|
|
|
|
|
|
|
|
|
(define-public perl-www-curl
|
|
|
|
|
(package
|
|
|
|
|
(name "perl-www-curl")
|
|
|
|
|
(version "4.17")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
|
|
|
|
"mirror://cpan/authors/id/S/SZ/SZBALINT/WWW-Curl-"
|
|
|
|
|
version".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1fmp9aib1kaps9vhs4dwxn7b15kgnlz9f714bxvqsd1j1q8spzsj"))))
|
|
|
|
|
(build-system perl-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:tests? #f)) ;XXX: tests require network access
|
|
|
|
|
(inputs `(("curl" ,curl)))
|
|
|
|
|
(synopsis "Perl extension interface for libcurl")
|
|
|
|
|
(description
|
|
|
|
|
"This is a Perl extension interface for the libcurl file downloading
|
|
|
|
|
library.")
|
|
|
|
|
(license (package-license perl))
|
|
|
|
|
(home-page "http://search.cpan.org/~szbalint/WWW-Curl-4.17/lib/WWW/Curl.pm")))
|
2014-10-29 13:52:38 -04:00
|
|
|
|
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(define-public perl-www-robotrules
|
2014-10-29 13:52:38 -04:00
|
|
|
|
(package
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(name "perl-www-robotrules")
|
|
|
|
|
(version "6.02")
|
2014-10-29 13:52:38 -04:00
|
|
|
|
(source (origin
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
|
|
|
|
"mirror://cpan/authors/id/G/GA/GAAS/WWW-RobotRules-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"07m50dp5n5jxv3m93i55qvnd67a6g7cvbvlik115kmc8lbkh5da6"))))
|
2014-10-29 13:52:38 -04:00
|
|
|
|
(build-system perl-build-system)
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("perl-uri" ,perl-uri)))
|
2014-10-29 13:52:38 -04:00
|
|
|
|
(license (package-license perl))
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
(synopsis "Perl database of robots.txt-derived permissions")
|
2015-02-20 11:35:09 -05:00
|
|
|
|
(description
|
gnu: Group and alphabetize perl module packages.
* gnu/packages/web.scm (perl-encode-locale, perl-file-listing,
perl-html-parser, perl-html-tagset, perl-http-cookies, perl-http-daemon,
perl-http-date, perl-http-message, perl-http-negotiate, perl-io-html,
perl-io-socket-ssl, perl-libwww, perl-lwp-mediatypes, perl-net-http,
perl-uri, perl-www-curl, perl-www-robotrules): Group and alphabetize.
2015-03-09 14:48:43 -04:00
|
|
|
|
"The WWW::RobotRules module parses /robots.txt files as specified in
|
|
|
|
|
\"A Standard for Robot Exclusion\", at
|
|
|
|
|
<http://www.robotstxt.org/wc/norobots.html>. Webmasters can use the
|
|
|
|
|
/robots.txt file to forbid conforming robots from accessing parts of
|
|
|
|
|
their web site.")
|
|
|
|
|
(home-page "http://search.cpan.org/~gaas/WWW-RobotRules/")))
|