emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#65084: closed ([PATCH 11/13] gnu: Add go-github-com-modern-go-reflec


From: GNU bug Tracking System
Subject: bug#65084: closed ([PATCH 11/13] gnu: Add go-github-com-modern-go-reflect2)
Date: Sat, 06 Apr 2024 15:51:12 +0000

Your message dated Sat, 06 Apr 2024 16:50:14 +0100
with message-id <87wmpamqx5.fsf@gmail.com>
and subject line [PATCH 00/13] Add scc
has caused the debbugs.gnu.org bug report #65074,
regarding [PATCH 11/13] gnu: Add go-github-com-modern-go-reflect2
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
65074: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=65074
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH 11/13] gnu: Add go-github-com-modern-go-reflect2 Date: Sat, 05 Aug 2023 07:00:57 +0000
* gnu/packages/golang.scm (go-github-com-modern-go-reflect2): Add variable.
---
 gnu/packages/golang.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 72dfc51507..9b38ed4daf 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -6773,6 +6773,29 @@ (define-public go-github-com-mitchellh-reflectwalk
 unknown structures such as those decoded from JSON.")
     (license license:expat)))
 
+(define-public go-github-com-modern-go-reflect2
+  (package
+    (name "go-github-com-modern-go-reflect2")
+    (version "1.0.2")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/modern-go/reflect2";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "05a89f9j4nj8v1bchfkv2sy8piz746ikj831ilbp54g8dqhl8vzr"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "github.com/modern-go/reflect2"))
+    (home-page "https://github.com/modern-go/reflect2";)
+    (synopsis "Cheaper reflect API")
+    (description
+     "This library provides a reflect api for Go programs
+without the runtime cost of the standard library reflect.Value.")
+    (license license:asl2.0)))
+
 (define-public go-github-com-modern-go-concurrent
   (package
     (name "go-github-com-modern-go-concurrent")
-- 
2.41.0





--- End Message ---
--- Begin Message --- Subject: [PATCH 00/13] Add scc Date: Sat, 06 Apr 2024 16:50:14 +0100
Hi,

Thank you for the patches.

I've shift them into dedicated local golang-* modules and apply some
modifications.


- accepted-patches [13/13]
  - [X] [PATCH v2 01/13] gnu: Add go-github-com-chzyer-logex
    - Place to golang-xyz
    - Tests disabled, upstream informed
      - https://github.com/chzyer/logex/pull/7
      - https://github.com/chzyer/logex/issues/4
    - referred-in
      - [PATCH 00/29] Add miller. https://issues.guix.gnu.org/66603
  - [X] [PATCH v2 02/13] gnu: Add go-github-com-chzyer-test
    - Place to golang-check
    - Add links to issues
    - referred-in
      - [PATCH 00/29] Add miller. https://issues.guix.gnu.org/66603
  - [X] [PATCH v2 03/13] gnu: Add go-github-com-chzyer-readline
    - Place to golang-xyz
    - referred-in
      - [PATCH 00/29] Add miller. https://issues.guix.gnu.org/66603
  - [X] [PATCH v2 04/13] gnu: Add go-github-com-ianlancetaylor-demangle
    - Place to golang-xyz
    - Add issue on version tag or release
      https://github.com/ianlancetaylor/demangle/issues/21
    - referred-in
      - [PATCH 04/13] gnu: Add go-github-com-ianlancetaylor-demangle
        https://issues.guix.gnu.org/65073
      - [PATCH 00/29] Add miller. https://issues.guix.gnu.org/66603
  - [X] [PATCH v2 05/13] gnu: Add go-github-com-google-pprof
    - Place to golang-check, Add go-pprof build, as end-user program
    - Add all license, some code in third party may be unbundled when we have 
more Node packages
    - Extend description
    - Update to the latest commit
    - referred-in
      - [PATCH 00/29] Add miller. https://issues.guix.gnu.org/66603
  - [X] [PATCH v2 06/13] gnu: Add go-github-com-felixge-fgprof
    - Place to golang-check
    - Update to 0.9.4
    - Enable tests
    - referred-in
      - [PATCH 06/13] gnu: Add go-github-com-felixge-fgprof 
https://issues.guix.gnu.org/65077
      - [PATCH 00/29] Add miller. https://issues.guix.gnu.org/66603
  - [X] [PATCH v2 07/13] gnu: Add go-github-com-pkg-profile
    - Place to golang-check
    - Disable tests, issue is open https://github.com/pkg/profile/issues/68
    - referred-in
      - [PATCH 07/13] gnu: Add go-github-com-pkg-profile 
https://issues.guix.gnu.org/65079
      - [PATCH 00/29] Add miller. https://issues.guix.gnu.org/66603
  - [X] [PATCH v2 08/13] gnu: Add go-github-com-karrick-godirwalk
    - Place to golang-xyz
    - referred-in
      - [PATCH 08/13] gnu: Add go-github-com-karrick-godirwalk 
https://issues.guix.gnu.org/65082
  - [X] [PATCH v2 09/13] gnu: Add go-github-com-dbaggerman-cuba
    - Place to golang-xyz
    - Remove github.com/pkg/profile as it's indirect dependence
    - referred-in
      - [PATCH 09/13] gnu: Add go-github-com-dbaggerman-cuba 
https://issues.guix.gnu.org/65080
  - [X] [PATCH v2 10/13] gnu: Add go-github-com-modern-go-concurrent
    - Place to golang-xyz
    - Use available version tag 1.0.3
    - referred-in
      - [PATCH 00/47] gnu: Add go-github-com-prometheus-prometheus. 
https://issues.guix.gnu.org/54560
  - [X] [PATCH v2 11/13] gnu: Add go-github-com-modern-go-reflect2
    - Place to golang-xyz
    - referred-in
      - [PATCH 00/47] gnu: Add go-github-com-prometheus-prometheus.
        https://issues.guix.gnu.org/54560
      - [PATCH 11/13] gnu: Add go-github-com-modern-go-reflect2 
https://issues.guix.gnu.org/65084
  - [X] [PATCH v2 12/13] gnu: Add go-github-com-json-iterator-go
    - referred-in
      - [PATCH 12/13] gnu: Add go-github-com-json-iterator-go 
https://issues.guix.gnu.org/65085
      - [PATCH 00/47] gnu: Add go-github-com-prometheus-prometheus. 
https://issues.guix.gnu.org/54560
  - [X] [PATCH v2 13/13] gnu: Add scc

Pushed as c28b319640..cf4f87986a to master.

--
Oleg

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]