GNU bug report logs - #71843
[PATCH 00/26] Update and unbundle vale - part I

Previous Next

Package: guix-patches;

Reported by: Sharlatan Hellseher <sharlatanus <at> gmail.com>

Date: Sat, 29 Jun 2024 22:33:03 UTC

Severity: normal

Tags: patch

Done: Sharlatan Hellseher <sharlatanus <at> gmail.com>

Bug is archived. No further changes may be made.

Full log


Message #68 received at 71843 <at> debbugs.gnu.org (full text, mbox):

From: Sharlatan Hellseher <sharlatanus <at> gmail.com>
To: 71843 <at> debbugs.gnu.org
Cc: Sharlatan Hellseher <sharlatanus <at> gmail.com>
Subject: [PATCH 18/26] gnu: Add go-github-com-jdkato-twine.
Date: Sun, 30 Jun 2024 10:05:58 +0100
* gnu/packages/golang-xyz.scm (go-github-com-jdkato-twine): New variable.

Change-Id: I13e55c204ab2072672a9556d7c0cac02f395116c
---
 gnu/packages/golang-xyz.scm | 50 +++++++++++++++++++++++++++++++++++++
 1 file changed, 50 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 6f6167972f..2d669ec829 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -2258,6 +2258,56 @@ (define-public go-github-com-jbenet-goprocess
 and stop units of work, which may receive @code{Close} signals from many clients.")
     (license license:expat)))
 
+(define-public go-github-com-jdkato-twine
+  (package
+    (name "go-github-com-jdkato-twine")
+    (version "0.10.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/jdkato/twine")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1hbpxcrcsbi975lklrhzyzk0fzn79pxicvfyf2sckmd2n6jb4ayy"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      ;; FIXME: Adjust tests sute or check with upstram:
+      ;; === Failed
+      ;; === FAIL: nlp/segment TestGoldenRules (0.00s)
+      ;;     segment_test.go:143: 25. Double quotations inside sentence
+      ;;     segment_test.go:144: Actual: [She turned to him, "This is great." she said.]
+      ;;     segment_test.go:145: Actual: 2, Expected: 1
+      ;;     segment_test.go:146: ===
+      #:tests? #f
+      #:go go-1.21
+      #:import-path "github.com/jdkato/twine"
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'unpack 'patch-module-import-path
+            (lambda* (#:key import-path #:allow-other-keys)
+              (with-directory-excursion (string-append "src/" import-path)
+                (substitute* (find-files "." "\\.go$")
+                  (("gopkg.in/neurosnap/sentences.v1")
+                   "github.com/neurosnap/sentences")))))
+          (replace 'build
+            (lambda* (#:key import-path #:allow-other-keys)
+              (with-directory-excursion (string-append "src/" import-path)
+                (invoke "go" "build" "-v" "-x" "-ldflags=-s -w" "-trimpath" "./...")))))))
+    (native-inputs
+     (list gotestsum))
+    (propagated-inputs
+     (list go-github-com-montanaflynn-stats
+           go-github-com-neurosnap-sentences
+           go-github-com-errata-ai-regexp2))
+    (home-page "https://github.com/jdkato/twine")
+    (synopsis "NLP-related string utilities")
+    (description
+     "NLP-related string utility functions for Golang.")
+    (license license:expat)))
+
 (define-public go-github-com-jinzhu-copier
   (package
     (name "go-github-com-jinzhu-copier")
-- 
2.41.0





This bug report was last modified 322 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.