From: Marius Bakke <mbakke@fastmail.com>
To: Hartmut Goebel <h.goebel@crazy-compilers.com>, guix-devel@gnu.org
Subject: Re: [PATCH 1/7] gnu: Add KDE frameworkintegration.
Date: Mon, 21 Nov 2016 18:25:57 +0100 [thread overview]
Message-ID: <87k2bw923e.fsf@kirby.i-did-not-set--mail-host-address--so-tickle-me> (raw)
In-Reply-To: <1479744699-27226-2-git-send-email-h.goebel@crazy-compilers.com>
[-- Attachment #1: Type: text/plain, Size: 2859 bytes --]
Hartmut Goebel <h.goebel@crazy-compilers.com> writes:
> * gnu/packages/kde-frameworks.scm (frameworkintegration): New variable.
> ---
> gnu/packages/kde-frameworks.scm | 51 +++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 51 insertions(+)
>
> diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
> index 9df37ac..0e6b8fb 100644
> --- a/gnu/packages/kde-frameworks.scm
> +++ b/gnu/packages/kde-frameworks.scm
> @@ -2798,3 +2798,54 @@ setUrl, setUserAgent and call.")
> script engines.")
> ;; dual licensed
> (license (list license:gpl2+ license:lgpl2.1+))))
> +
> +;; Tier 4
> +;;
> +;; Tier 4 frameworks can be mostly ignored by application programmers; this
> +;; tier consists of plugins acting behind the scenes to provide additional
> +;; functionality or platform integration to existing frameworks (including
> +;; Qt).
> +
> +(define-public frameworkintegration
> + (package
> + (name "frameworkintegration")
> + (version "5.27.0")
> + (source (origin
> + (method url-fetch)
> + (uri (string-append
> + "mirror://kde/stable/frameworks/"
> + (version-major+minor version) "/"
> + name "-" version ".tar.xz"))
> + (sha256
> + (base32
> + "0zpv7wj2006f039wr1gp5bc4md8yq9ig5g3v5mx46sdjip5423p1"))))
> + (build-system cmake-build-system)
> + (native-inputs
> + `(("extra-cmake-modules" ,extra-cmake-modules)
> + ("pkg-config" ,pkg-config)))
> + (inputs
> + `(("kconfig" ,kconfig)
> + ("kconfigwidgets" ,kconfigwidgets)
> + ("kcoreaddons" ,kcoreaddons)
> + ("kiconthemes" ,kiconthemes)
> + ("kitemviews" ,kitemviews)
> + ("knotificantions" ,knotifications)
> + ("kwidgetsaddons" ,kwidgetsaddons)
> + ("qtbase" ,qtbase)
> + ("qtx11extras" ,qtx11extras)))
> + (arguments
> + `(#:phases
> + (modify-phases %standard-phases
> + (add-before 'check 'check-setup
> + (lambda _
> + (setenv "HOME" (getcwd))
> + (setenv "CTEST_OUTPUT_ON_FAILURE" "1") ; Enable debug output
> + (setenv "QT_QPA_PLATFORM" "offscreen")
Could you add a comment explaining what this variable does?
> + #t)))))
> + (home-page "https://community.kde.org/Frameworks")
> + (synopsis "KDE Frameworks 5 workspace and cross-framework integration plugins")
> + (description "Framework Integration is a set of plugins responsible for
> +better integration of Qt applications when running on a KDE Plasma
> +workspace.")
> + ;; triple licensed
> + (license (list license:gpl2+ license:lgpl2.0 license:lgpl2.0+))))
Please clarify. Is it all of them, or either? Or is it mostly gpl2+, but
some files are covered by the other two?
Otherwise LGTM!
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 454 bytes --]
next prev parent reply other threads:[~2016-11-21 17:26 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-11-21 16:11 [PATCH 0/7] KDE Framework: Tier 4 and porting aids Hartmut Goebel
2016-11-21 16:11 ` [PATCH 1/7] gnu: Add KDE frameworkintegration Hartmut Goebel
2016-11-21 17:25 ` Marius Bakke [this message]
2016-11-21 18:01 ` Hartmut Goebel
2016-11-21 18:20 ` Marius Bakke
2016-11-21 18:30 ` Marius Bakke
2016-11-21 16:11 ` [PATCH 2/7] gnu: Add kdelibs4support Hartmut Goebel
2016-11-21 17:40 ` Marius Bakke
2016-11-21 16:11 ` [PATCH 3/7] gnu: Add khtml Hartmut Goebel
2016-11-21 17:42 ` Marius Bakke
2016-11-21 16:11 ` [PATCH 4/7] gnu: Add kjs Hartmut Goebel
2016-11-21 17:44 ` Marius Bakke
2016-11-21 16:11 ` [PATCH 5/7] gnu: Add kjsembed Hartmut Goebel
2016-11-21 17:46 ` Marius Bakke
2016-11-21 16:11 ` [PATCH 6/7] gnu: Add kmediaplayer Hartmut Goebel
2016-11-21 17:47 ` Marius Bakke
2016-11-21 16:11 ` [PATCH 7/7] gnu: Add kross Hartmut Goebel
2016-11-21 17:50 ` Marius Bakke
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=87k2bw923e.fsf@kirby.i-did-not-set--mail-host-address--so-tickle-me \
--to=mbakke@fastmail.com \
--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).