From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marius Bakke Subject: Re: [PATCH 7/7] gnu: Add kross. Date: Mon, 21 Nov 2016 18:50:59 +0100 Message-ID: <8737ik90xo.fsf@kirby.i-did-not-set--mail-host-address--so-tickle-me> References: <1479744699-27226-1-git-send-email-h.goebel@crazy-compilers.com> <1479744699-27226-8-git-send-email-h.goebel@crazy-compilers.com> Mime-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39389) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c8skF-0008VT-1u for guix-devel@gnu.org; Mon, 21 Nov 2016 12:51:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c8skA-0000Ys-A9 for guix-devel@gnu.org; Mon, 21 Nov 2016 12:51:07 -0500 Received: from out5-smtp.messagingengine.com ([66.111.4.29]:49632) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1c8skA-0000Yb-6X for guix-devel@gnu.org; Mon, 21 Nov 2016 12:51:02 -0500 In-Reply-To: <1479744699-27226-8-git-send-email-h.goebel@crazy-compilers.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Hartmut Goebel , guix-devel@gnu.org --=-=-= Content-Type: text/plain Hartmut Goebel writes: > * gnu/packages/kde-frameworks.scm (kross): New variable. > --- > gnu/packages/kde-frameworks.scm | 43 +++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 43 insertions(+) > > diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm > index c86d82c..88824e2 100644 > --- a/gnu/packages/kde-frameworks.scm > +++ b/gnu/packages/kde-frameworks.scm > @@ -3101,3 +3101,46 @@ This framework is a porting aid. It is not recommended for new projects, and > existing projects that use it are advised to port away from it, and use plain > KParts instead.") > (license license:expat))) > + > +(define-public kross > + (package > + (name "kross") > + (version "5.27.0") > + (source > + (origin > + (method url-fetch) > + (uri (string-append > + "mirror://kde/stable/frameworks/" > + (version-major+minor version) "/portingAids/" > + name "-" version ".tar.xz")) > + (sha256 > + (base32 "13karf890afk3dplxgsjx48vjz1ka12pgsi8qw369xbff5nqy2vj")))) > + (build-system cmake-build-system) > + (native-inputs > + `(("extra-cmake-modules" ,extra-cmake-modules) > + ("kdoctools" ,kdoctools))) > + (inputs > + `(("kcompletion" ,kcompletion) > + ("kcoreaddons" ,kcoreaddons) > + ("ki18n" ,ki18n) > + ("kiconthemes" ,kiconthemes) > + ("kparts" ,kparts) > + ("kwidgetsaddons" ,kwidgetsaddons) > + ("kxmlgui" ,kxmlgui) > + ("qtbase" ,qtbase) > + ("qtscript" ,qtscript) > + ("qttools" ,qttools))) > + (home-page "https://community.kde.org/Frameworks") > + (synopsis "KDE Frameworks 5 solution for application scripting") > + (description "Kross is a scripting bridge for the KDE Development Platform > +used to embed scripting functionality into an application. It supports > +QtScript as a scripting interpreter backend. > + > +Kross provides an abstract API to provide scripting functionality in a > +interpreter-independent way. The application that uses Kross should not need > +to know anything about the scripting language being used. The core of Kross > +provides the framework to deal transparently with interpreter-backends and > +offers abstract functionality to deal with scripts.") > + ;; a variety of licenses > + (license (list license:lgpl2.0 license:lgpl2.0+ license:lgpl2.1+ > + license:gpl3)))) Are you sure it's GPL3, and not GPL3+? If the file headers says GPL3 only it's fine, otherwise I think we default to GPL+. Otherwise LGTM, assuming you've checked whether qttools is referenced :) Great to see good KDE support in Guix! --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEcBAEBCgAGBQJYMzQDAAoJEKKgbfKjOlT6vbIH/Awh//WOMdhLHyG6ME2nfb6y DVTdv4FpV0Rft0imQCDFqvGCPjX82PSYdydFtrFkFQJTMZDmeKpXvmw6BUup8RC7 jQRk8fS2PBRWv17J9c2RKv6YYeagJ/8x6NUJviesjaDLPGmcngsRPT4kjoapI8SG 89RjROnQdOzG6tn+Iu7c7XPqZMBI8A+GlQ/qE9lQqNCyo9RHuLRW03NjxtSj43hx sOZaP6oDBAMNuPWqDpqKDuSzOOZagaF8URG3VpUD08ozR16Gk23dS9huqxcTpvLu 3uPizci+M+pgWxSaWvWSL4u2biKi8vbv0Er1R/nqARMLim+Tg/Xi+bgtdqOY7lM= =ogqG -----END PGP SIGNATURE----- --=-=-=--