unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Efraim Flashner <efraim@flashner.co.il>
To: Hartmut Goebel <h.goebel@crazy-compilers.com>
Cc: guix-devel@gnu.org
Subject: Re: [WIP v0.1 6/8] gnu: Add kde karchive
Date: Wed, 15 Jun 2016 15:19:52 +0300	[thread overview]
Message-ID: <20160615121952.GA11291@debian-netbook> (raw)
In-Reply-To: <1465938910-15739-7-git-send-email-h.goebel@crazy-compilers.com>

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

On Tue, Jun 14, 2016 at 11:15:08PM +0200, Hartmut Goebel wrote:
> * gnu/packages/kde-frameworks.scm (karchive): New variable.
> ---
>  gnu/packages/kde-frameworks.scm | 35 +++++++++++++++++++++++++++++++++++
>  1 file changed, 35 insertions(+)
> 
> diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
> index b1e7038..ab90112 100644
> --- a/gnu/packages/kde-frameworks.scm
> +++ b/gnu/packages/kde-frameworks.scm
> @@ -24,6 +24,7 @@
>    #:use-module ((guix licenses) #:prefix license:)
>    #:use-module (guix packages)
>    #:use-module (guix utils)
> +  #:use-module (gnu packages compression)
>    #:use-module (gnu packages pkg-config)
>    #:use-module (gnu packages python)
>    #:use-module (gnu packages qt)
> @@ -199,6 +200,40 @@ documentation.")
>      ;; This list is taken from http://packaging.neon.kde.org/cgit/
>      (license (list license:bsd-2 license:expat))))
>  
> +(define-public karchive
> +  (package
> +    (name "karchive")
> +    (version kde-frameworks-version)
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (string-append "http://download.kde.org/stable/frameworks/"
> +                            (version-major+minor version) "/"
> +                            name "-" version ".tar.xz"))
> +        (sha256
> +         (base32
> +          "042ww21wmm3sf87zqgr2qiyg2j5mjf1mmqpqhpcax4gnjpck5nvc"))))
> +    (build-system cmake-build-system)
> +    (native-inputs
> +     `(("extra-cmake-modules" ,extra-cmake-modules)))
> +    (inputs
> +     `(("zlib" ,zlib)
> +       ("bzip2" ,bzip2)
> +       ("xz" ,xz)
> +       ("qt" ,qt)))
> +    (home-page "https://community.kde.org/Frameworks")
> +    (synopsis "Qt 5 addon providing access to numerous types of archives")
> +    (description "KArchive provides classes for easy reading, creation and
> +manipulation of 'archive' formats like ZIP and TAR.
> +
> +It also provides transparent compression and decompression of data, like the
> +GZip format, via a subclass of QIODevice.")
> +    ;; The included licenses is are gpl2 and lgpl2.1, but the sources are
> +    ;; under a variety of licenses.
> +    ;; This list is taken from http://packaging.neon.kde.org/cgit/
> +    (license (list license:lgpl2.1 license:lgpl2.1+
> +                   license:lgpl3+ license:bsd-2))))
> +
>  (define-public kwindowsystem
>    (package
>      (name "kwindowsystem")
> -- 
> 2.7.4
> 
> 

Can you check the references `guix gc --references $(guix build karchive)'
to see if the inputs are supposed to be native-inputs?

-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

  reply	other threads:[~2016-06-15 12:20 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-14 21:15 [WIP v0.1 0/8] KDE framework 5, tier 1 Hartmut Goebel
2016-06-14 21:15 ` [WIP v0.1 1/8] extra-cmake: Update comments Hartmut Goebel
2016-06-14 21:15 ` [WIP v0.1 2/8] gnu: Add kde attica Hartmut Goebel
2016-06-16 18:41   ` Efraim Flashner
2016-06-17  9:26     ` Hartmut Goebel
2016-06-14 21:15 ` [WIP v0.1 3/8] gnu: Add kde bluez-qt Hartmut Goebel
2016-06-14 21:15 ` [WIP v0.1 4/8] gnu: Add kde breeze-icons Hartmut Goebel
2016-06-14 21:15 ` [WIP v0.1 5/8] gnu: Add kde kapidox Hartmut Goebel
2016-06-14 21:15 ` [WIP v0.1 6/8] gnu: Add kde karchive Hartmut Goebel
2016-06-15 12:19   ` Efraim Flashner [this message]
2016-06-17  9:21     ` Hartmut Goebel
2016-06-14 21:15 ` [WIP v0.1 7/8] gnu: Add kde kcodecs Hartmut Goebel
2016-06-14 21:15 ` [WIP v0.1 8/8] gnu: Add kde kconfig Hartmut Goebel
2016-06-15 12:22 ` [WIP v0.1 0/8] KDE framework 5, tier 1 Efraim Flashner
2016-06-17  9:23   ` Hartmut Goebel

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

  List information: https://guix.gnu.org/

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

  git send-email \
    --in-reply-to=20160615121952.GA11291@debian-netbook \
    --to=efraim@flashner.co.il \
    --cc=guix-devel@gnu.org \
    --cc=h.goebel@crazy-compilers.com \
    /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 public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).