emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#27247: closed ([PATCH] gnu: freedesktop: Add packa


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#27247: closed ([PATCH] gnu: freedesktop: Add packagekit.)
Date: Wed, 07 Jun 2017 12:57:02 +0000

Your message dated Wed, 07 Jun 2017 14:56:45 +0200
with message-id <address@hidden>
and subject line Re: bug#27247: [PATCH] gnu: freedesktop: Add packagekit.
has caused the debbugs.gnu.org bug report #27247,
regarding [PATCH] gnu: freedesktop: Add packagekit.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
27247: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=27247
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: freedesktop: Add packagekit. Date: Mon, 5 Jun 2017 07:29:31 +0100
* gnu/packages/freedesktop.scm (packagekit): New variable.
---
 gnu/packages/freedesktop.scm | 41 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index 85a6c8b26..ef07f2d64 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -35,6 +35,7 @@
   #:use-module (gnu packages acl)
   #:use-module (gnu packages admin)
   #:use-module (gnu packages autotools)
+  #:use-module (gnu packages bash)
   #:use-module (gnu packages boost)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages databases)
@@ -267,6 +268,46 @@ the org.freedesktop.login1 interface over the system bus, 
allowing other parts
 of a the system to know what users are logged in, and where.")
     (license license:lgpl2.1+)))
 
+(define-public packagekit
+  (package
+    (name "packagekit")
+    (version "1.1.5")
+    (source (origin
+             (method url-fetch)
+             (uri (string-append
+                   "https://www.freedesktop.org/software/";
+                   "PackageKit/releases/"
+                   "PackageKit-" version ".tar.xz"))
+             (sha256
+              (base32
+               "035pqxgkyki813hyw2frrbpfllq113zfk5qcp9wvsq5lsp74ix2h"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f
+       #:make-flags (list (string-append "BASH_COMPLETIONS_DIR="
+                                         %output "/etc/bash_completion.d"))
+       #:configure-flags
+       '("--disable-systemd")))
+    (native-inputs
+     `(("intltool" ,intltool)
+       ("pkg-config" ,pkg-config)
+       ("python" ,python-wrapper)
+       ("glib:bin" ,glib "bin")))
+    (inputs
+     `(("glib" ,glib)
+       ("bash-completion", bash-completion)
+       ("polkit" ,polkit)))
+    (propagated-inputs
+     `(("sqlite" ,sqlite)))
+    (home-page "https://www.freedesktop.org/software/PackageKit/";)
+    (synopsis "API for package management, through D-Bus")
+    (description
+     "PackageKit provides a way of performing package management tasks,
+e.g. updating, removing and installing software.  Through supporting many
+backends, PackageKit can perform these tasks using the appropriate package
+manager for the current system.")
+    (license license:gpl2+)))
+
 (define-public python-pyxdg
   (package
     (name "python-pyxdg")
-- 
2.13.0




--- End Message ---
--- Begin Message --- Subject: Re: bug#27247: [PATCH] gnu: freedesktop: Add packagekit. Date: Wed, 07 Jun 2017 14:56:45 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux)
Christopher Baines <address@hidden> skribis:

> * gnu/packages/freedesktop.scm (packagekit): New variable.

Applied, thanks!

> +       #:configure-flags
> +       '("--disable-systemd")))

Could it be that it only uses the logind part of systemd?  If that’s the
case, we could adapt it to use elogind.

Oh, and now PackageKit needs a Guix back-end.  :-)

Thanks,
Ludo’.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]