From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:52552) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hONVI-0002ao-3d for guix-patches@gnu.org; Wed, 08 May 2019 10:25:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hONVG-00011Z-VW for guix-patches@gnu.org; Wed, 08 May 2019 10:25:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:48381) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hONVG-00011Q-S4 for guix-patches@gnu.org; Wed, 08 May 2019 10:25:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hONVG-0006H2-I1 for guix-patches@gnu.org; Wed, 08 May 2019 10:25:02 -0400 Subject: [bug#35634] [PATCH] gnu: Add wordpress. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:52340) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hONUQ-0002Rg-LJ for guix-patches@gnu.org; Wed, 08 May 2019 10:24:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hONUP-0000a6-Im for guix-patches@gnu.org; Wed, 08 May 2019 10:24:10 -0400 Received: from mx1.riseup.net ([198.252.153.129]:40806) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hONUO-0000ZN-Pp for guix-patches@gnu.org; Wed, 08 May 2019 10:24:09 -0400 Received: from capuchin.riseup.net (capuchin-pn.riseup.net [10.0.1.176]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.riseup.net (Postfix) with ESMTPS id 48AD31B93DC for ; Wed, 8 May 2019 07:24:07 -0700 (PDT) Received: from [127.0.0.1] (localhost [127.0.0.1]) by capuchin.riseup.net (Postfix) with ESMTPSA id 7344212040D for ; Wed, 8 May 2019 07:24:06 -0700 (PDT) From: swedebugia Message-ID: Date: Wed, 8 May 2019 16:24:02 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 35634@debbugs.gnu.org From af9e41939c2f7354b6c40b4f06ef4595c10b876f Mon Sep 17 00:00:00 2001 From: swedebugia Date: Wed, 8 May 2019 16:19:51 +0200 Subject: [PATCH] gnu: Add wordpress. * gnu/packages/web.scm (wordpress): Add public variable. --- gnu/packages/web.scm | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 756b00237e..8f8e669c3d 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -32,6 +32,7 @@ ;;; Copyright =C2=A9 2018 Alex Vong ;;; Copyright =C2=A9 2019 Nicolas Goaziou ;;; Copyright =C2=A9 2019 Brendan Tildesley +;;; Copyright =C2=A9 2019 swedebugia ;;; ;;; This file is part of GNU Guix. ;;; @@ -6618,3 +6619,39 @@ Features enabled by modules: @item LDAP connectivity @end itemize") (license license:gpl3+))) + +(define-public wordpress + (package + (name "wordpress") + (version "5.2") + (source (origin + (method url-fetch) + (uri (string-append "https://wordpress.org/" name "-"=20 version ".tar.gz")) + (sha256 + (base32 + "1bc6sg269bllq5w6p9dkqlbmqhmijgg61jcnq8vnkri10yj8jc31"))= )) + (build-system gnu-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + ;; No configure, build or tests + (delete 'configure) + (delete 'build) + (delete 'check) + (replace 'install + ;; There's no =E2=80=98install=E2=80=99 target. Install file= s manually. + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (lib (string-append out "/lib/" ,name))) + (copy-recursively "." lib) + #t)))))) + (inputs + `(("php" ,php) + ("mariadb" ,mariadb))) + (home-page "https://wordpress.org/") + (synopsis "Content management system with a web interface") + (description "It features include a plugin architecture and a templa= te +system. It is most associated with blogging but supports other types=20 of web +content including more traditional mailing lists and forums, media=20 galleries, +and online stores. Many plugins are available.") + (license license:gpl2+))) --=20 2.19.2