unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Antlers <autumnalantlers@gmail.com>
To: 56057@debbugs.gnu.org
Subject: [bug#56057] [bug #56057] [PATCH v2 14/21] gnu: Add rust-open-3.
Date: Sun, 19 Jun 2022 18:09:03 +0000 (UTC)	[thread overview]
Message-ID: <6920256f-0d2a-4005-9018-52deabb092b7@gmail.com> (raw)
In-Reply-To: <20220618195656.10108-1-antlers@luris.net>

[Forwarding to make sure this note makes it into the thread because I didn't see it; still handling the mailing list workflow, um, un-steadily.]

----------------------------------------

Jun 19, 2022 10:49:39 AM EHarding830 <eharding830@gmail.com>:

Note to Self (Whoopsies #2 & 3): Thought I dropped this patch (otherwise looks like I sent the right patchset..? Bad smell.), and should still double check that I didn't remove any #:skip-build flags.

----------------------------------------

Jun 19, 2022 10:27:57 AM antlers <autumnalantlers@gmail.com>:

> * gnu/packages/crates-io.scm (rust-open-3): New variable.
> (rust-open-2): Inherit from rust-open-3.
> ---
> :100644 100644 9a44c3a846 83be540cf7 M  gnu/packages/crates-io.scm
> gnu/packages/crates-io.scm | 34 ++++++++++++++++++++++++++--------
> 1 file changed, 26 insertions(+), 8 deletions(-)
> 
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index 9a44c3a846..83be540cf7 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -39686,29 +39686,47 @@ (define-public rust-opaque-debug-0.2
>          (base32
>           "02942l2gc7w5r4js7i9063x99szic5mzzk1055j83v4diqpbpxck"))))))
> 
> +(define-public rust-open-3
> +  (package
> +    (name "rust-open")
> +    (version "3.0.1")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (crate-uri "open" version))
> +              (file-name (string-append name "-" version ".tar.gz"))
> +              (sha256
> +               (base32
> +                "1zhhz4a9ag0418cmj0ky11xidpcavv2crhsl76m66qxz2s1wq2rn"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +     `(#:skip-build? #t
> +       #:cargo-inputs
> +       (("rust-pathdiff" ,rust-pathdiff-0.2))))
> +    (home-page "https://github.com/Byron/open-rs")
> +    (synopsis "Open a path or URL using the program configured on the system")
> +    (description
> +     "Use this library to open a path or URL using the program configured on
> +the system.")
> +    (license license:expat)))
> +
> (define-public rust-open-2
>    (package
> +    (inherit rust-open-3)
>      (name "rust-open")
>      (version "2.0.2")
>      (source
>       (origin
> +       (inherit (package-source rust-open-3))
>         (method url-fetch)
>         (uri (crate-uri "open" version))
>         (file-name (string-append name "-" version ".tar.gz"))
>         (sha256
>          (base32 "1dq9c6dgq7iv5kvqfk8gvkfq34j5pdinfcs1hbdd4x6i62vf8vhp"))))
> -    (build-system cargo-build-system)
>      (arguments
>       `(#:skip-build? #t
>         #:cargo-inputs
>         (("rust-pathdiff" ,rust-pathdiff-0.2)
> -        ("rust-winapi" ,rust-winapi-0.3))))
> -    (home-page "https://github.com/Byron/open-rs")
> -    (synopsis "Open a path or URL using the program configured on the system")
> -    (description
> -     "Use this library to open a path or URL using the program configured on
> -the system.")
> -    (license license:expat)))
> +        ("rust-winapi" ,rust-winapi-0.3))))))
> 
> (define-public rust-open-1
>    (package
> -- 
> 2.36.0




      parent reply	other threads:[~2022-06-19 18:10 UTC|newest]

Thread overview: 64+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-18 19:56 [bug#56057] [PATCH 00/27] gnu: Add dua-cli antlers
2022-06-18 19:56 ` [bug#56056] [gnu: Add dua-cli. 01/27] gnu: Add rust-addr2line-0.17 antlers
2022-06-18 19:56 ` [bug#56061] [gnu: Add dua-cli. 02/27] gnu: Add rust-adler-1 antlers
2022-06-18 19:56 ` [bug#56059] [gnu: Add dua-cli. 03/27] gnu: Add rust-crossterm-0.22 antlers
2022-06-18 19:56 ` [bug#56062] [gnu: Add dua-cli. 04/27] gnu: rust-clap-3: Update to 3.2.4 antlers
2022-06-18 19:56 ` [bug#56058] [gnu: Add dua-cli. 05/27] gnu: Add rust-autocfg-1.1 antlers
2022-06-18 19:56 ` [bug#56060] [gnu: Add dua-cli. 06/27] gnu: Add rust-parking-lot-0.12 antlers
2022-06-18 19:56 ` [bug#56063] [gnu: Add dua-cli. 07/27] gnu: rust-lock-api-0.4: Update to 0.4.7 antlers
2022-06-18 19:56 ` [bug#56064] [gnu: Add dua-cli. 08/27] gnu: Add rust-crossterm-winapi-0.8 antlers
2022-06-18 19:56 ` [bug#56065] [gnu: Add dua-cli. 09/27] gnu: Add rust-crosstemion-0.9 antlers
2022-06-18 19:56 ` [bug#56066] [gnu: Add dua-cli. 10/27] gnu: Add rust-gimli-0.26 antlers
2022-06-18 19:56 ` [bug#56069] [gnu: Add dua-cli. 11/27] gnu: Add rust-jwalk-0.6 antlers
2022-06-18 19:56 ` [bug#56067] [gnu: Add dua-cli. 12/27] gnu: Add rust-miniz-oxide-0.5 antlers
2022-06-18 19:56 ` [bug#56074] [gnu: Add dua-cli. 13/27] gnu: Add rust-object-0.28 antlers
2022-06-18 19:56 ` [bug#56068] [gnu: Add dua-cli. 14/27] gnu: rust-once-cell-1: Update to 1.12.0 antlers
2022-06-18 19:56 ` [bug#56073] [gnu: Add dua-cli. 15/27] gnu: Add rust-open-3 antlers
2022-06-18 19:56 ` [bug#56072] [gnu: Add dua-cli. 16/27] gnu: Add rust-parking-lot-core-0.9 antlers
2022-06-18 19:56 ` [bug#56070] [gnu: Add dua-cli. 17/27] gnu: Add rust-pretty-assertions-1.2 antlers
2022-06-18 19:56 ` [bug#56071] [gnu: Add dua-cli. 18/27] gnu: Add rust-simd-adler32-0.3 antlers
2022-06-18 19:56 ` [bug#56057] [gnu: Add dua-cli. 19/27] gnu: rust-sysctl-0.23: Update to 0.23.15 antlers
2022-06-18 19:56 ` [bug#56057] [gnu: Add dua-cli. 20/27] gnu: Add rust-textwrap-0.15 antlers
2022-07-24 21:59   ` [bug#56074] " Aleksandr Vityazev
2022-06-18 19:56 ` [bug#56057] [gnu: Add dua-cli. 21/27] gnu: Add rust-tui-0.17 antlers
2022-06-18 19:56 ` [bug#56057] [gnu: Add dua-cli. 22/27] gnu: Add rust-tui-react-0.18 antlers
2022-06-18 19:56 ` [bug#56057] [gnu: Add dua-cli. 23/27] gnu: Add rust-clap-derive-3 antlers
2022-06-18 20:17   ` Maxime Devos
2022-06-18 19:56 ` [bug#56057] [gnu: Add dua-cli. 24/27] gnu: Add rust-clap-lex-3 antlers
2022-06-18 19:56 ` [bug#56057] [gnu: Add dua-cli. 25/27] gnu: Add rust-windows-sys-0.36 & per-target varitations antlers
2022-06-20 11:15   ` Maxime Devos
2022-06-20 11:15   ` Maxime Devos
2022-06-20 11:17   ` Maxime Devos
2022-06-21 16:56     ` antlers
2022-06-18 19:56 ` [bug#56057] [gnu: Add dua-cli. 26/27] gnu: rust-backtrace-0.3: Update to 0.3.65 antlers
2022-06-18 19:56 ` [bug#56057] [gnu: Add dua-cli. 27/27] gnu: Add dua-cli antlers
2022-06-18 20:01 ` [bug#56057] " antlers
2022-06-19  8:10 ` [bug#56057] [PATCH 00/27] " ( via Guix-patches via
2022-06-19  8:51 ` Maxime Devos
2022-06-19  9:04 ` Maxime Devos
2022-06-19 17:26   ` [bug#56057] [bug #56057] " antlers
2022-06-19 17:26     ` [bug#56057] [bug #56057] [PATCH v2 01/21] gnu: Add rust-addr2line-0.17 antlers
2022-06-19 17:26     ` [bug#56057] [bug #56057] [PATCH v2 02/21] gnu: Add rust-adler-1 antlers
2022-06-19 17:26     ` [bug#56057] [bug #56057] [PATCH v2 03/21] gnu: Add rust-crossterm-0.22 antlers
2022-06-19 17:26     ` [bug#56057] [bug #56057] [PATCH v2 04/21] gnu: rust-autocfg-1: Update to 1.1 antlers
2022-06-19 17:26     ` [bug#56057] [bug #56057] [PATCH v2 05/21] gnu: Add rust-parking-lot-0.12 antlers
2022-06-19 17:26     ` [bug#56057] [bug #56057] [PATCH v2 06/21] gnu: rust-lock-api-0.4: Update to 0.4.7 antlers
2022-06-19 17:26     ` [bug#56057] [bug #56057] [PATCH v2 07/21] gnu: Add rust-crossterm-winapi-0.8 antlers
2022-06-19 17:26     ` [bug#56057] [bug #56057] [PATCH v2 08/21] gnu: Add rust-crosstemion-0.9 antlers
2022-06-19 17:26     ` [bug#56057] [bug #56057] [PATCH v2 09/21] gnu: Add rust-gimli-0.26 antlers
2022-06-19 17:27     ` [bug#56057] [bug #56057] [PATCH v2 10/21] gnu: Add rust-jwalk-0.6 antlers
2022-06-19 17:27     ` [bug#56057] [bug #56057] [PATCH v2 11/21] gnu: Add rust-miniz-oxide-0.5 antlers
2022-06-19 17:27     ` [bug#56057] [bug #56057] [PATCH v2 12/21] gnu: Add rust-object-0.28 antlers
2022-06-19 17:27     ` [bug#56057] [bug #56057] [PATCH v2 13/21] gnu: rust-once-cell-1: Update to 1.12.0 antlers
2022-06-19 17:27     ` [bug#56057] [bug #56057] [PATCH v2 14/21] gnu: Add rust-open-3 antlers
2022-06-19 17:49       ` EHarding830
2022-06-20  5:22         ` antlers
2022-06-19 17:27     ` [bug#56057] [bug #56057] [PATCH v2 15/21] gnu: Add rust-parking-lot-core-0.9 antlers
2022-06-19 17:27     ` [bug#56057] [bug #56057] [PATCH v2 16/21] gnu: Add rust-pretty-assertions-1.2 antlers
2022-06-19 17:27     ` [bug#56057] [bug #56057] [PATCH v2 17/21] gnu: Add rust-simd-adler32-0.3 antlers
2022-06-19 17:27     ` [bug#56057] [bug #56057] [PATCH v2 18/21] gnu: rust-sysctl-0.23: Update to 0.23.15 antlers
2022-06-19 17:56       ` Antlers
2022-06-19 17:27     ` [bug#56057] [bug #56057] [PATCH v2 19/21] gnu: Add rust-tui-0.17 antlers
2022-06-19 17:27     ` [bug#56057] [bug #56057] [PATCH v2 20/21] gnu: Add rust-tui-react-0.18 antlers
2022-06-19 17:27     ` [bug#56057] [bug #56057] [PATCH v2 21/21] gnu: rust-backtrace-0.3: Update to 0.3.65 antlers
2022-06-19 18:09 ` Antlers [this message]

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=6920256f-0d2a-4005-9018-52deabb092b7@gmail.com \
    --to=autumnalantlers@gmail.com \
    --cc=56057@debbugs.gnu.org \
    /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).