all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: rennes <rennes@openmailbox.org>
To: guix-devel@gnu.org
Subject: [WIP PATCH] gnu: Add evolution.
Date: Thu, 15 Sep 2016 20:13:24 -0500	[thread overview]
Message-ID: <1473988404.14915.11.camel@openmailbox.org> (raw)
In-Reply-To: 1473987769.14915.5.camel@openmailbox.org

[-- Attachment #1: Type: text/plain, Size: 1821 bytes --]

Hello,

this patch is evolution, a mail client for the GNOME desktop.

To run evolution is necessary to install evolution-data-server in user
profile; then I think that is required to start evolution-data-server
as a service to run successfully evolution without install evolution-
data-server in user profile.

Can some one help me, to clarify?.

any of these services requires evolution (evolution-source-registry):

* /gnu/store/0kgy9c98dlfz6ys3vv8n9s1bsry7ndgh-evolution-data-server-
3.20.1/libexec/evolution-source-registry
* /gnu/store/0kgy9c98dlfz6ys3vv8n9s1bsry7ndgh-evolution-data-server-
3.20.1/libexec/evolution-calendar-factory
* /gnu/store/qs0rsa4xacq6k9138321b2qpmfa79m09-evolution-
3.20.1/libexec/evolution/evolution-alarm-notify
* /gnu/store/0kgy9c98dlfz6ys3vv8n9s1bsry7ndgh-evolution-data-server-
3.20.1/libexec/evolution-calendar-factory-subprocess --factory contacts
--bus-name
org.gnome.evolution.dataserver.Subprocess.Backend.Calendarx13711x2 --
own-path
/org/gnome/evolution/dataserver/Subprocess/Backend/Calendar/13711/2
* /gnu/store/0kgy9c98dlfz6ys3vv8n9s1bsry7ndgh-evolution-data-server-
3.20.1/libexec/evolution-addressbook-factory
* /gnu/store/0kgy9c98dlfz6ys3vv8n9s1bsry7ndgh-evolution-data-server-
3.20.1/libexec/evolution-calendar-factory-subprocess --factory local --
bus-name
org.gnome.evolution.dataserver.Subprocess.Backend.Calendarx13711x3 --
own-path
/org/gnome/evolution/dataserver/Subprocess/Backend/Calendar/13711/3
* /gnu/store/0kgy9c98dlfz6ys3vv8n9s1bsry7ndgh-evolution-data-server-
3.20.1/libexec/evolution-addressbook-factory-subprocess --factory local
--bus-name
org.gnome.evolution.dataserver.Subprocess.Backend.AddressBookx13743x2
--own-path
/org/gnome/evolution/dataserver/Subprocess/Backend/AddressBook/13743/2


Thank you

[-- Attachment #2: 0001-gnu-Add-evolution.patch --]
[-- Type: text/x-patch, Size: 4490 bytes --]

From c3d83fcc79da21c8181a10e44568bbe0227fc99e Mon Sep 17 00:00:00 2001
From: Rene Saavedra <rennes@openmailbox.org>
Date: Thu, 15 Sep 2016 19:40:39 -0500
Subject: [PATCH] gnu: Add evolution.

* gnu/packages/evolution.scm (evolution): New file.

---
 gnu/packages/evolution.scm | 93 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 93 insertions(+)
 create mode 100644 gnu/packages/evolution.scm

diff --git a/gnu/packages/evolution.scm b/gnu/packages/evolution.scm
new file mode 100644
index 0000000..305893f
--- /dev/null
+++ b/gnu/packages/evolution.scm
@@ -0,0 +1,93 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2016 Rene Saavedra <rennes@openmailbox.org>
+;;;
+;;; 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 evolution)
+  #:use-module ((guix licenses) #:prefix license:)
+  #:use-module (guix build-system glib-or-gtk)
+  #:use-module (guix download)
+  #:use-module (guix packages)
+  #:use-module (guix utils)
+  #:use-module (gnu packages databases)
+  #:use-module (gnu packages enchant)
+  #:use-module (gnu packages glib)
+  #:use-module (gnu packages gnome)
+  #:use-module (gnu packages gtk)
+  #:use-module (gnu packages libcanberra)
+  #:use-module (gnu packages mail)
+  #:use-module (gnu packages pkg-config)
+  #:use-module (gnu packages webkit))
+
+(define-public evolution
+  (package
+    (name "evolution")
+    (version "3.20.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://gnome/sources/" name "/"
+                           (version-major+minor version) "/"
+                           name "-" version ".tar.xz"))
+       (sha256
+        (base32
+         "1lr700xvwflsp6jkd7fg8yv68qzrvyhg7ryjzk2n68m61zi6g582"))))
+    (build-system glib-or-gtk-build-system)
+    (arguments
+     ;; Optional modules, not packaged yet.
+     `(#:configure-flags (list
+                          ;; gnome-autoar not packaged yet.
+                          "--enable-autoar=no"
+                          ;; libcryptui not packaged yet.
+                          "--disable-libcryptui"
+                          ;; text-highlight not packaged yet.
+                          "--disable-text-highlight"
+                          ;; pst-import not packaged yet.
+                          "--disable-pst-import"
+                          ;; spamassassin not packaged yet.
+                          "--with-spamassassin=no")))
+    (native-inputs
+     `(("intltool" ,intltool)
+       ("itstool" ,itstool)
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("bdb" ,bdb)
+       ("enchant" ,enchant)
+       ("evolution-data-server" ,evolution-data-server)
+       ("gcr" ,gcr)
+       ("glib" ,glib)
+       ("gnome-desktop" ,gnome-desktop)
+       ("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
+       ("gtk+" ,gtk+)
+       ("gtkspell3" ,gtkspell3)
+       ("libcanberra-gtk" ,libcanberra)
+       ("libgweather" ,libgweather)
+       ("libnotify" ,libnotify)
+       ("webkitgtk" ,webkitgtk-2.4)))
+    (propagated-inputs
+     `(("bogofilter" ,bogofilter)
+       ("libgnome-keyring" ,libgnome-keyring)))
+    (home-page "https://wiki.gnome.org/Apps/Evolution")
+    (synopsis "Manage your email, contacts and schedule")
+    (description
+     "Evolution is a personal information management application
+that provides integrated mail, calendaring and address book functionality.")
+    (license (list license:openldap2.8 ; openldap-extract.h
+                   license:lgpl2.0+    ; e-text.[ch], e-cell-tree.[ch]
+                                       ; e-dateedit.[ch]
+                   license:mpl1.1))))  ; e-asn1-object.c, e-cert.c
+                                       ; e-cert-db.c, e-cert-trust.c
+                                       ; e-pkcs12.c
-- 
2.6.3


       reply	other threads:[~2016-09-16  1:13 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <1473987769.14915.5.camel@openmailbox.org>
2016-09-16  1:13 ` rennes [this message]
2016-09-24  2:05   ` [WIP PATCH] gnu: Add evolution Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1473988404.14915.11.camel@openmailbox.org \
    --to=rennes@openmailbox.org \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.