all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Rémi Teissier" <rteissier.code@chillpc.fr>
To: 67592@debbugs.gnu.org
Cc: "Rémi Teissier" <rteissier.code@chillpc.fr>,
	"Efraim Flashner" <efraim@flashner.co.il>
Subject: [bug#67592] [PATCH 14/14] gnu: rust-git2: Update to 0.18.1.
Date: Sat,  2 Dec 2023 22:33:15 +0100	[thread overview]
Message-ID: <df3df3786ef29bbe5ddb8b5466c6e3fda809fd83.1701551503.git.rteissier.code@chillpc.fr> (raw)
In-Reply-To: <cover.1701551502.git.rteissier.code@chillpc.fr>

Change-Id: Id22471f11ee0f59322771e8ca73611d330ffb783
---
 gnu/packages/crates-io.scm | 84 ++++++++++++++++++++++++++++++++++----
 1 file changed, 75 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 5c8c72342a..eabc49728e 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -29253,10 +29253,10 @@ (define-public rust-git-version-macro-0.3
      "This is an internal macro crate for git-version.")
     (license license:bsd-2)))
 
-(define-public rust-git2-0.16
+(define-public rust-git2-0.18
   (package
     (name "rust-git2")
-    (version "0.16.1")
+    (version "0.18.1")
     (source
      (origin
        (method url-fetch)
@@ -29264,22 +29264,21 @@ (define-public rust-git2-0.16
        (file-name
         (string-append name "-" version ".tar.gz"))
        (sha256
-        (base32 "1k1aavsfhk0i9jycc9gb61w2jwy8w9dgkd7zkz295wwm566gdxyc"))))
+        (base32 "1kf0kvg3i7p1223zs2h9fz99ndm0l9kdx3hcw63g73dh5nlppygv"))))
     (build-system cargo-build-system)
     (arguments
      `(#:cargo-inputs
        (("rust-bitflags" ,rust-bitflags-1)
         ("rust-libc" ,rust-libc-0.2)
-        ("rust-libgit2-sys" ,rust-libgit2-sys-0.14)
+        ("rust-libgit2-sys" ,rust-libgit2-sys-0.16)
         ("rust-log" ,rust-log-0.4)
         ("rust-openssl-probe" ,rust-openssl-probe-0.1)
         ("rust-openssl-sys" ,rust-openssl-sys-0.9)
         ("rust-url" ,rust-url-2))
        #:cargo-development-inputs
-       (("rust-paste" ,rust-paste-1)
-        ("rust-structopt" ,rust-structopt-0.3)
-        ("rust-tempfile" ,rust-tempfile-3)
-        ("rust-time" ,rust-time-0.1))))
+       (("rust-structopt" ,rust-structopt-0.3)
+         ("rust-tempfile" ,rust-tempfile-3)
+         ("rust-time" ,rust-time-0.1))))
     (native-inputs
      `(("pkg-config" ,pkg-config)
        ("git" ,git-minimal)))           ;for a single test
@@ -29293,6 +29292,73 @@ (define-public rust-git2-0.16
 reading and writing git repositories.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-git2-0.17
+  (package
+    (inherit rust-git2-0.18)
+    (name "rust-git2")
+    (version "0.17.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "git2" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0i00kg3yizh7mn6hnj3yz3hpniisidlavifgy8n3cnm9gim9v63v"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs
+       (("rust-bitflags" ,rust-bitflags-1)
+        ("rust-libc" ,rust-libc-0.2)
+        ("rust-libgit2-sys" ,rust-libgit2-sys-0.15)
+        ("rust-log" ,rust-log-0.4)
+        ("rust-openssl-probe" ,rust-openssl-probe-0.1)
+        ("rust-openssl-sys" ,rust-openssl-sys-0.9)
+        ("rust-url" ,rust-url-2))
+       #:cargo-development-inputs
+       (("rust-structopt" ,rust-structopt-0.3)
+        ("rust-tempfile" ,rust-tempfile-3)
+        ("rust-time" ,rust-time-0.1))))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)
+       ("git" ,git-minimal)))           ;for a single test
+    (inputs
+     (list libgit2-1.6 libssh2 openssl zlib))))
+
+(define-public rust-git2-0.16
+  (package
+    (inherit rust-git2-0.17)
+    (name "rust-git2")
+    (version "0.16.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "git2" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1k1aavsfhk0i9jycc9gb61w2jwy8w9dgkd7zkz295wwm566gdxyc"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs
+       (("rust-bitflags" ,rust-bitflags-1)
+        ("rust-libc" ,rust-libc-0.2)
+        ("rust-libgit2-sys" ,rust-libgit2-sys-0.14)
+        ("rust-log" ,rust-log-0.4)
+        ("rust-openssl-probe" ,rust-openssl-probe-0.1)
+        ("rust-openssl-sys" ,rust-openssl-sys-0.9)
+        ("rust-url" ,rust-url-2))
+       #:cargo-development-inputs
+       (("rust-paste" ,rust-paste-1)
+        ("rust-structopt" ,rust-structopt-0.3)
+        ("rust-tempfile" ,rust-tempfile-3)
+        ("rust-time" ,rust-time-0.1))))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)
+       ("git" ,git-minimal)))           ;for a single test
+    (inputs
+     (list libgit2-1.5 libssh2 openssl zlib))))
+
 (define-public rust-git2-0.15
   (package
     (inherit rust-git2-0.16)
@@ -29325,7 +29391,7 @@ (define-public rust-git2-0.15
      `(("pkg-config" ,pkg-config)
        ("git" ,git-minimal)))           ;for a single test
     (inputs
-     (list libgit2 libssh2 openssl zlib))))
+     (list libgit2-1.5 libssh2 openssl zlib))))
 
 (define-public rust-git2-0.14
   (package
-- 
2.41.0





  parent reply	other threads:[~2023-12-02 21:35 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-12-02 21:25 [bug#67592] [PATCH 00/14] gnu: rust-git2: Update to 0.18.1 Rémi Teissier
2023-12-02 21:33 ` [bug#67592] [PATCH 01/14] gnu: libgit2: Update to 1.7.1 Rémi Teissier
2023-12-02 21:33 ` [bug#67592] [PATCH 02/14] gnu: rust-time-core: Update to 0.1.2 Rémi Teissier
2023-12-02 21:33 ` [bug#67592] [PATCH 03/14] gnu: rust-quick-xml: Update to 0.31.0 Rémi Teissier
2023-12-02 21:33 ` [bug#67592] [PATCH 04/14] gnu: Add rust-bugreport Rémi Teissier
2023-12-02 21:33 ` [bug#67592] [PATCH 05/14] gnu: Add rust-deranged Rémi Teissier
2023-12-02 21:33 ` [bug#67592] [PATCH 06/14] gnu: rust-fancy-regex: Update to 0.11.0 Rémi Teissier
2023-12-02 21:33 ` [bug#67592] [PATCH 07/14] gnu: rust-indexmap: Update to 2.1.0 Rémi Teissier
2023-12-02 21:33 ` [bug#67592] [PATCH 08/14] gnu: Add rust-syntect Rémi Teissier
2023-12-02 21:33 ` [bug#67592] [PATCH 09/14] gnu: rust-plist: Update to 1.6.0 Rémi Teissier
2023-12-02 21:33 ` [bug#67592] [PATCH 10/14] gnu: Add rust-powerfmt-macros Rémi Teissier
2023-12-02 21:33 ` [bug#67592] [PATCH 11/14] gnu: Add rust-powerfmt Rémi Teissier
2023-12-02 21:33 ` [bug#67592] [PATCH 12/14] gnu: rust-libssh2-sys: Update 0.3.0 Rémi Teissier
2023-12-02 21:33 ` [bug#67592] [PATCH 13/14] gnu: rust-libgit2-sys: Update to 0.16.1+1.7.1 Rémi Teissier
2023-12-02 21:33 ` Rémi Teissier [this message]
2023-12-12 21:03 ` [bug#67592] gnu: rust-git2: Update to 0.18.1 Rémi Teissier
2023-12-12 21:16 ` [bug#67592] [PATCH 00/20] " Rémi Teissier
2023-12-12 21:16   ` [bug#67592] [PATCH 01/20] gnu: rust-time-core: Update to 0.1.2 Rémi Teissier
2023-12-12 21:16   ` [bug#67592] [PATCH 02/20] gnu: rust-rstest-macros: Update to 0.18.2 Rémi Teissier
2023-12-12 21:16   ` [bug#67592] [PATCH 03/20] gnu: rust-rstest: " Rémi Teissier
2023-12-12 21:16   ` [bug#67592] [PATCH 04/20] gnu: rust-time: Update to 0.3.30 Rémi Teissier
2023-12-12 21:16   ` [bug#67592] [PATCH 05/20] gnu: rust-quick-xml: Update to 0.31.0 Rémi Teissier
2023-12-12 21:16   ` [bug#67592] [PATCH 06/20] gnu: Add rust-bugreport Rémi Teissier
2023-12-12 21:16   ` [bug#67592] [PATCH 07/20] gnu: Add rust-deranged Rémi Teissier
2023-12-12 21:16   ` [bug#67592] [PATCH 08/20] gnu: rust-fancy-regex: Update to 0.11.0 Rémi Teissier
2023-12-12 21:16   ` [bug#67592] [PATCH 09/20] gnu: rust-zerocopy-derive: Update to 0.7.29 Rémi Teissier
2023-12-12 21:16   ` [bug#67592] [PATCH 10/20] gnu: rust-zerocopy: " Rémi Teissier
2023-12-12 21:16   ` [bug#67592] [PATCH 11/20] gnu: rust-ahash: Update to 0.8.6 Rémi Teissier
2023-12-12 21:16   ` [bug#67592] [PATCH 12/20] gnu: rust-hashbrown: Update to 0.14.3 Rémi Teissier
2023-12-12 21:16   ` [bug#67592] [PATCH 13/20] gnu: rust-indexmap: Update to 2.1.0 Rémi Teissier
2023-12-12 21:16   ` [bug#67592] [PATCH 14/20] gnu: Add rust-syntect Rémi Teissier
2023-12-12 21:16   ` [bug#67592] [PATCH 15/20] gnu: rust-plist: Update to 1.6.0 Rémi Teissier
2023-12-12 21:16   ` [bug#67592] [PATCH 16/20] gnu: Add rust-powerfmt-macros Rémi Teissier
2023-12-12 21:16   ` [bug#67592] [PATCH 17/20] gnu: Add rust-powerfmt Rémi Teissier
2023-12-12 21:16   ` [bug#67592] [PATCH 18/20] gnu: rust-libssh2-sys: Update 0.3.0 Rémi Teissier
2023-12-12 21:16   ` [bug#67592] [PATCH 19/20] gnu: rust-libgit2-sys: Update to 0.16.1+1.7.1 Rémi Teissier
2023-12-12 21:16   ` [bug#67592] [PATCH 20/20] gnu: rust-git2: Update to 0.18.1 Rémi Teissier
2023-12-21  9:28   ` bug#67592: [PATCH 00/20] " Efraim Flashner

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

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

  git send-email \
    --in-reply-to=df3df3786ef29bbe5ddb8b5466c6e3fda809fd83.1701551503.git.rteissier.code@chillpc.fr \
    --to=rteissier.code@chillpc.fr \
    --cc=67592@debbugs.gnu.org \
    --cc=efraim@flashner.co.il \
    /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 external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.