From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 14 13:24:10 2019 Received: (at submit) by debbugs.gnu.org; 14 Aug 2019 17:24:10 +0000 Received: from localhost ([127.0.0.1]:49627 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hxx0L-0002Tx-Pp for submit@debbugs.gnu.org; Wed, 14 Aug 2019 13:24:10 -0400 Received: from lists.gnu.org ([209.51.188.17]:45120) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hxx0J-0002Tp-Bn for submit@debbugs.gnu.org; Wed, 14 Aug 2019 13:24:07 -0400 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 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,URIBL_BLOCKED autolearn=disabled version=3.3.2 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 Received: from mx1.investici.org (localhost [127.0.0.1]) by latitanza.investici.org (Postfix) with ESMTP id 51237120595; Wed, 14 Aug 2019 17:23:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1565803434; bh=/CelDJG28obGXw1zLBc++pDyRWWCTJZTvz43F6CjJQY=; h=From:To:Cc:Subject:Date:From; b=WQMlxCHWWfzMg8BOmFg4H7c7LeSp2eE5/sRfahGk3RpPHZAXNh06hr8jYNfdADDCQ sxyJZNE4jdR7eebcWwRx4e3z/GOrLDO1hIX+s5yXJPzp7Q1vZjWvzV7OrY0BAQ/T9u 8xbfb/wApVwW3IrPYFHefwAlN6j/15CFUnadqkqI= Received: from [82.94.249.234] (mx1.investici.org [82.94.249.234]) (Authenticated sender: goodoldpaul@autistici.org) by localhost (Postfix) with ESMTPSA id E86F91204EA; Wed, 14 Aug 2019 17:23:52 +0000 (UTC) From: Giacomo Leidi To: guix-patches@gnu.org Subject: [PATCH] gnu: Add libgit2-glib. Date: Wed, 14 Aug 2019 19:23:02 +0200 Message-Id: <20190814172301.29737-1-goodoldpaul@autistici.org> X-Mailer: git-send-email 2.22.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 82.94.249.234 X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: Giacomo Leidi X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) * 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 From debbugs-submit-bounces@debbugs.gnu.org Fri Aug 16 17:00:02 2019 Received: (at 37030-done) by debbugs.gnu.org; 16 Aug 2019 21:00:02 +0000 Received: from localhost ([127.0.0.1]:55001 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hyjKL-0002d6-Un for submit@debbugs.gnu.org; Fri, 16 Aug 2019 17:00:02 -0400 Received: from eggs.gnu.org ([209.51.188.92]:45541) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hyjKK-0002cM-IP for 37030-done@debbugs.gnu.org; Fri, 16 Aug 2019 17:00:01 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:59132) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hyjKE-0001r9-0S; Fri, 16 Aug 2019 16:59:54 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=50846 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1hyjKD-0006Cu-KK; Fri, 16 Aug 2019 16:59:53 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Giacomo Leidi Subject: Re: [bug#37030] [PATCH] gnu: Add libgit2-glib. References: <20190814172301.29737-1-goodoldpaul@autistici.org> Date: Fri, 16 Aug 2019 22:59:51 +0200 In-Reply-To: <20190814172301.29737-1-goodoldpaul@autistici.org> (Giacomo Leidi's message of "Wed, 14 Aug 2019 19:23:02 +0200") Message-ID: <87mug8g720.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 37030-done Cc: 37030-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi, Giacomo Leidi skribis: > * gnu/packages/gnome.scm (libgit2-glib): New variable. Applied with the nitpicking below. :-) Thanks, Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 57842d4b5b..d5e46e09c1 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -8309,8 +8309,8 @@ intefaces for mobile devices using GTK+.") (inputs `(("glib" ,glib) ("libgit2" ,libgit2))) - (synopsis "A glib wrapper library around the libgit2 git access library") - (description "libgit2-glib is a glib wrapper library around the libgit2 git + (synopsis "GLib wrapper around the libgit2 Git access library") + (description "libgit2-glib is a GLib wrapper library around the libgit2 Git access library. It only implements the core plumbing functions, not really the higher level porcelain stuff.") (home-page "https://wiki.gnome.org/Projects/Libgit2-glib") --=-=-=-- From unknown Tue Jun 17 01:32:42 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 14 Sep 2019 11:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator