From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:34031) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1hxx1D-0005uB-NO for guix-patches@gnu.org; Wed, 14 Aug 2019 13:25:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hxx1C-0003Wa-KC for guix-patches@gnu.org; Wed, 14 Aug 2019 13:25:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:40806) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hxx1C-0003WT-Go for guix-patches@gnu.org; Wed, 14 Aug 2019 13:25:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hxx1C-0002VG-Bn for guix-patches@gnu.org; Wed, 14 Aug 2019 13:25:02 -0400 Subject: [bug#37030] [PATCH] gnu: Add libgit2-glib. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:33857) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1hxx0H-00059h-V8 for guix-patches@gnu.org; Wed, 14 Aug 2019 13:24:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hxx0D-0002lk-7a for guix-patches@gnu.org; Wed, 14 Aug 2019 13:24:03 -0400 Received: from latitanza.investici.org ([82.94.249.234]:48915) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hxx09-0002iA-Ju for guix-patches@gnu.org; Wed, 14 Aug 2019 13:23:59 -0400 From: Giacomo Leidi Date: Wed, 14 Aug 2019 19:23:02 +0200 Message-Id: <20190814172301.29737-1-goodoldpaul@autistici.org> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 37030@debbugs.gnu.org * gnu/packages/gnome.scm (libgit2-glib): New variable. --- gnu/packages/gnome.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index da6cbf2a05..57842d4b5b 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -8283,3 +8283,35 @@ advanced image management tool") (description "The aim of the handy library is to help with developin= g user intefaces for mobile devices using GTK+.") (license license:lgpl2.1+))) + +(define-public libgit2-glib + (package + (name "libgit2-glib") + (version "0.28.0.1") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/" name "/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "0a0g7aw66rfgnqr4z7fgbk5zzcjq66m4rp8v4val3a212941h0g7"))= )) + (build-system meson-build-system) + (native-inputs + `(("glib:bin" ,glib "bin") ;; For glib-mkenums + ("gobject-introspection" ,gobject-introspection) + ("intltool" ,intltool) + ("libssh2" ,libssh2) + ("pkg-config" ,pkg-config) + ("python-pygobject" ,python-pygobject) + ("python-wrapper" ,python-wrapper) + ("vala" ,vala))) + (inputs + `(("glib" ,glib) + ("libgit2" ,libgit2))) + (synopsis "A glib wrapper library around the libgit2 git access libr= ary") + (description "libgit2-glib is a glib wrapper library around the libg= it2 git +access library. It only implements the core plumbing functions, not rea= lly the +higher level porcelain stuff.") + (home-page "https://wiki.gnome.org/Projects/Libgit2-glib") + (license license:gpl2+))) --=20 2.22.1