unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#29733] Add virtaal (translation app)
@ 2017-12-16 10:09 Mark Meyer
  2017-12-16 11:49 ` Oleg Pykhalov
  0 siblings, 1 reply; 8+ messages in thread
From: Mark Meyer @ 2017-12-16 10:09 UTC (permalink / raw)
  To: 29733

[-- Attachment #1: Type: text/plain, Size: 432 bytes --]

Hi,
I just wanted to quickly have someone look over the following changes:

  - Add python2-pycurl adds pycurl (it's Py2 only)
  - Update python2-gobject-2 to 2.28.7 (the most recent, patch still
  seems to apply

    This update pulls in a lot of changes that were present in
    distrubutions for a long time

  - Add virtaal

    This just adds virtaal with proper dependencies.

Cheers, Mark

-- 
  Mark Meyer
  mark@ofosos.org

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-python2-pycurl.patch --]
[-- Type: text/x-patch; name="0001-gnu-Add-python2-pycurl.patch", Size: 2521 bytes --]

From 6b2b028d4500a535faa3442daa0c228f9c98b93f Mon Sep 17 00:00:00 2001
From: Mark Meyer <mark@ofosos.org>
Date: Fri, 15 Dec 2017 10:09:28 +0100
Subject: [PATCH] gnu: Add python2-pycurl.

* gnu/packages/python-web.scm (python2-pycurl): New public variable.
---
 gnu/packages/python-web.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 12e45b2ef..502834bdc 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -22,6 +22,7 @@
 ;;; Copyright © 2016 David Craven <david@craven.ch>
 ;;; Copyright © 2017 Oleg Pykhalov <go.wigust@gmail.com>
 ;;; Copyright © 2015, 2016 David Thompson <davet@gnu.org>
+;;; Copyright © 2017 Mark Meyer <mark@ofosos.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -45,11 +46,13 @@
   #:use-module (gnu packages)
   #:use-module (gnu packages check)
   #:use-module (gnu packages compression)
+  #:use-module (gnu packages curl)
   #:use-module (gnu packages databases)
   #:use-module (gnu packages django)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages python)
   #:use-module (gnu packages python-crypto)
+  #:use-module (gnu packages tls)
   #:use-module (gnu packages time)
   #:use-module (gnu packages xml)
   #:use-module ((guix licenses) #:prefix license:)
@@ -238,6 +241,30 @@ C, yielding parse times that can be a thirtieth of the html5lib parse times.")
 (define-public python2-html5-parser
   (package-with-python2 python-html5-parser))
 
+(define-public python2-pycurl
+  (package
+    (name "python2-pycurl")
+    (version "7.43.0.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://dl.bintray.com/pycurl/pycurl/pycurl-" version ".tar.gz"))
+       (sha256
+        (base32 "1ali1gjs9iliwjra7w0y5hwg79a2fd0f4ydvv6k27sgxpbr1n8s3"))))
+    (build-system python-build-system)
+    (arguments `(#:python ,python-2)) ; no Python 3 support
+    (native-inputs
+     `(("python-nose" ,python-nose)
+       ("python-bottle" ,python-bottle)))
+    (inputs
+     `(("curl" ,curl)
+       ("gnutls" ,gnutls)))
+    (home-page "http://pycurl.io/")
+    (synopsis "Lightweight Python wrapper around libcurl")
+    (description "Pycurl is a lightweight wrapper around libcurl. It provides
+high speed transfers via libcurl and frequently outperforms alternatives.")
+    (license license:lgpl2.0)))
+
 (define-public python-webencodings
   (package
     (name "python-webencodings")
-- 
2.15.1


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: 0001-gnu-python2-gobject-2-Update-to-2.28.7.patch --]
[-- Type: text/x-patch; name="0001-gnu-python2-gobject-2-Update-to-2.28.7.patch", Size: 1230 bytes --]

From 8a71cee704727f80e4146ee87a06c462bf59a9c5 Mon Sep 17 00:00:00 2001
From: Mark Meyer <mark@ofosos.org>
Date: Sat, 16 Dec 2017 10:57:21 +0100
Subject: [PATCH] gnu: python2-gobject-2: Update to 2.28.7

* gnu/packages/glib.scm (python2-gobject-2): Update to 2.28.7.
---
 gnu/packages/glib.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm
index de7427859..40d23e104 100644
--- a/gnu/packages/glib.scm
+++ b/gnu/packages/glib.scm
@@ -543,7 +543,7 @@ useful for C++.")
     (name "python2-pygobject")
     ;; This was the last version to declare the 2.0 platform number, i.e. its
     ;; pkg-config files were named pygobject-2.0.pc
-    (version "2.28.6")
+    (version "2.28.7")
     (source
      (origin
        (method url-fetch)
@@ -552,7 +552,7 @@ useful for C++.")
                            "/pygobject-" version ".tar.xz"))
        (sha256
         (base32
-         "1f5dfxjnil2glfwxnqr14d2cjfbkghsbsn8n04js2c2icr7iv2pv"))
+         "0nkam61rsn7y3wik3vw46wk5q2cjfh2iph57hl9m39rc8jijb7dv"))
        (patches (search-patches
                  "python2-pygobject-2-gi-info-type-error-domain.patch"))))
     (build-system gnu-build-system)
-- 
2.15.1


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #4: 0001-gnu-Add-virtaal.patch --]
[-- Type: text/x-patch; name="0001-gnu-Add-virtaal.patch", Size: 2663 bytes --]

From c36fde0cfda0d5f9830876abbff804504004451d Mon Sep 17 00:00:00 2001
From: Mark Meyer <mark@ofosos.org>
Date: Fri, 15 Dec 2017 12:35:38 +0100
Subject: [PATCH] gnu: Add virtaal.

* gnu/packages/text-editors.scm (virtaal): New public variable.
---
 gnu/packages/text-editors.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm
index 44b42ce9b..773000ff4 100644
--- a/gnu/packages/text-editors.scm
+++ b/gnu/packages/text-editors.scm
@@ -6,6 +6,7 @@
 ;;; Copyright © 2017 ng0 <ng0@infotropique.org>
 ;;; Copyright © 2014 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.org>
 ;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
+;;; Copyright © 2017 Mark Meyer <mark@ofosos.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -29,6 +30,7 @@
   #:use-module (guix utils)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system glib-or-gtk)
+  #:use-module (guix build-system python)
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (gnu packages)
   #:use-module (gnu packages assembly)
@@ -41,11 +43,42 @@
   #:use-module (gnu packages lua)
   #:use-module (gnu packages ncurses)
   #:use-module (gnu packages pkg-config)
+  #:use-module (gnu packages python)
+  #:use-module (gnu packages python-web)
   #:use-module (gnu packages regex)
   #:use-module (gnu packages ruby)
   #:use-module (gnu packages terminals)
   #:use-module (gnu packages xml))
 
+(define-public virtaal
+  (package
+    (name "virtaal")
+    (version "0.7.1")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://sourceforge/translate/Virtaal/"
+                                  version "/virtaal-" version ".tar.bz2"))
+              (sha256
+               (base32
+                "0cyimjp3191qlmw6n0ipqdr9xr0cq4f6dqvz4rl9q31h6l3kywf9"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:python ,python-2
+       #:use-setuptools? #f
+       #:tests? #f))
+    (propagated-inputs
+     `(("python2-pycurl" ,python2-pycurl)
+       ("python2-pygtk" ,python2-pygtk)
+       ("python2-lxml" ,python2-lxml)
+       ("python2-translate-toolkit" ,python2-translate-toolkit)
+       ("python2-simplejson" ,python2-simplejson)))
+    (synopsis "An editor for translation files")
+    (description
+     "Virtaal, a feature rich translation tool that allows you to focus on
+translation, without the tool getting in the way.")
+    (home-page "http://virtaal.translatehouse.org/")
+    (license license:gpl2)))
+
 (define-public vis
   (package
     (name "vis")
-- 
2.15.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [bug#29733] Add virtaal (translation app)
  2017-12-16 10:09 [bug#29733] Add virtaal (translation app) Mark Meyer
@ 2017-12-16 11:49 ` Oleg Pykhalov
  2018-03-07 13:59   ` Ludovic Courtès
  0 siblings, 1 reply; 8+ messages in thread
From: Oleg Pykhalov @ 2017-12-16 11:49 UTC (permalink / raw)
  To: Mark Meyer; +Cc: 29733

[-- Attachment #1: Type: text/plain, Size: 9120 bytes --]

Hello Mark,

This is an amazing program!  Thank you for packaging this!

But I see some issues which need to be solved before merging if you
could do it, please.  Ask questions if you need here or on on any Guix
provided resources <https://www.gnu.org/software/guix/help/>.

Mark Meyer <mark@ofosos.org> writes:

> I just wanted to quickly have someone look over the following changes:
>
>   - Add python2-pycurl adds pycurl (it's Py2 only)
>   - Update python2-gobject-2 to 2.28.7 (the most recent, patch still
>   seems to apply
>
>     This update pulls in a lot of changes that were present in
>     distrubutions for a long time
>
>   - Add virtaal
>
>     This just adds virtaal with proper dependencies.
>
> From 6b2b028d4500a535faa3442daa0c228f9c98b93f Mon Sep 17 00:00:00 2001
> From: Mark Meyer <mark@ofosos.org>
> Date: Fri, 15 Dec 2017 10:09:28 +0100
> Subject: [PATCH] gnu: Add python2-pycurl.
>
> * gnu/packages/python-web.scm (python2-pycurl): New public variable.
> ---
>  gnu/packages/python-web.scm | 27 +++++++++++++++++++++++++++
>  1 file changed, 27 insertions(+)
>
> diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
> index 12e45b2ef..502834bdc 100644
> --- a/gnu/packages/python-web.scm
> +++ b/gnu/packages/python-web.scm
> @@ -22,6 +22,7 @@
>  ;;; Copyright  2016 David Craven <david@craven.ch>
>  ;;; Copyright  2017 Oleg Pykhalov <go.wigust@gmail.com>
>  ;;; Copyright  2015, 2016 David Thompson <davet@gnu.org>
> +;;; Copyright  2017 Mark Meyer <mark@ofosos.org>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -45,11 +46,13 @@
>    #:use-module (gnu packages)
>    #:use-module (gnu packages check)
>    #:use-module (gnu packages compression)
> +  #:use-module (gnu packages curl)
>    #:use-module (gnu packages databases)
>    #:use-module (gnu packages django)
>    #:use-module (gnu packages pkg-config)
>    #:use-module (gnu packages python)
>    #:use-module (gnu packages python-crypto)
> +  #:use-module (gnu packages tls)
>    #:use-module (gnu packages time)
>    #:use-module (gnu packages xml)
>    #:use-module ((guix licenses) #:prefix license:)
> @@ -238,6 +241,30 @@ C, yielding parse times that can be a thirtieth of the html5lib parse times.")
>  (define-public python2-html5-parser
>    (package-with-python2 python-html5-parser))
>  
> +(define-public python2-pycurl
> +  (package
> +    (name "python2-pycurl")
> +    (version "7.43.0.1")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (string-append "https://dl.bintray.com/pycurl/pycurl/pycurl-" version ".tar.gz"))

Please, use guix lint before sending patches.

./pre-inst-env guix lint python2-pycurl

/home/natsu/src/guix/gnu/packages/python-web.scm:245:2: python2-pycurl@7.43.0.1: line 251 is way too long (93 characters)


There is etc/indent-code.el to make life easier if you not Emacs user,
but I didn't check it myself.

https://www.gnu.org/software/guix/manual/html_node/Formatting-Code.html

> +       (sha256
> +        (base32 "1ali1gjs9iliwjra7w0y5hwg79a2fd0f4ydvv6k27sgxpbr1n8s3"))))
> +    (build-system python-build-system)
> +    (arguments `(#:python ,python-2)) ; no Python 3 support

Does it actually not support?  Requirements in documentation
<http://pycurl.io/docs/latest/> include Python 3.

> +    (native-inputs
> +     `(("python-nose" ,python-nose)
> +       ("python-bottle" ,python-bottle)))
> +    (inputs
> +     `(("curl" ,curl)
> +       ("gnutls" ,gnutls)))
> +    (home-page "http://pycurl.io/")
> +    (synopsis "Lightweight Python wrapper around libcurl")
> +    (description "Pycurl is a lightweight wrapper around libcurl. It provides
> +high speed transfers via libcurl and frequently outperforms alternatives.")

Another linter warning.

gnu/packages/python-web.scm:264:17: python2-pycurl@7.43.0.1: sentences in description should be followed by two spaces; possible infraction at 46

> +    (license license:lgpl2.0)))

tar xf $(./pre-inst-env guix build -S python2-pycurl)

There are two files in licenses in source tarball COPYING-LGPL
COPYING-MIT.  The second (expat) license probably should be included in
the package recipe.

> +
>  (define-public python-webencodings
>    (package
>      (name "python-webencodings")
> -- 
> 2.15.1

Also there is a tests directory in source tarball.  Could you look on
them?  .travis.yml file in pycurl git repository could help
<https://github.com/pycurl/pycurl/blob/master/.travis.yml>

> From 8a71cee704727f80e4146ee87a06c462bf59a9c5 Mon Sep 17 00:00:00 2001
> From: Mark Meyer <mark@ofosos.org>
> Date: Sat, 16 Dec 2017 10:57:21 +0100
> Subject: [PATCH] gnu: python2-gobject-2: Update to 2.28.7
>
> * gnu/packages/glib.scm (python2-gobject-2): Update to 2.28.7.
> ---
>  gnu/packages/glib.scm | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm
> index de7427859..40d23e104 100644
> --- a/gnu/packages/glib.scm
> +++ b/gnu/packages/glib.scm
> @@ -543,7 +543,7 @@ useful for C++.")
>      (name "python2-pygobject")
>      ;; This was the last version to declare the 2.0 platform number, i.e. its
>      ;; pkg-config files were named pygobject-2.0.pc
> -    (version "2.28.6")
> +    (version "2.28.7")
>      (source
>       (origin
>         (method url-fetch)
> @@ -552,7 +552,7 @@ useful for C++.")
>                             "/pygobject-" version ".tar.xz"))
>         (sha256
>          (base32
> -         "1f5dfxjnil2glfwxnqr14d2cjfbkghsbsn8n04js2c2icr7iv2pv"))
> +         "0nkam61rsn7y3wik3vw46wk5q2cjfh2iph57hl9m39rc8jijb7dv"))
>         (patches (search-patches
>                   "python2-pygobject-2-gi-info-type-error-domain.patch"))))
>      (build-system gnu-build-system)
> -- 
> 2.15.1

LGTM

>
> From c36fde0cfda0d5f9830876abbff804504004451d Mon Sep 17 00:00:00 2001
> From: Mark Meyer <mark@ofosos.org>
> Date: Fri, 15 Dec 2017 12:35:38 +0100
> Subject: [PATCH] gnu: Add virtaal.
>
> * gnu/packages/text-editors.scm (virtaal): New public variable.
> ---
>  gnu/packages/text-editors.scm | 33 +++++++++++++++++++++++++++++++++
>  1 file changed, 33 insertions(+)
>
> diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm
> index 44b42ce9b..773000ff4 100644
> --- a/gnu/packages/text-editors.scm
> +++ b/gnu/packages/text-editors.scm
> @@ -6,6 +6,7 @@
>  ;;; Copyright  2017 ng0 <ng0@infotropique.org>
>  ;;; Copyright  2014 Taylan Ulrich Bayrl/Kammer <taylanbayirli@gmail.org>
>  ;;; Copyright  2017 Tobias Geerinckx-Rice <me@tobias.gr>
> +;;; Copyright  2017 Mark Meyer <mark@ofosos.org>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -29,6 +30,7 @@
>    #:use-module (guix utils)
>    #:use-module (guix build-system gnu)
>    #:use-module (guix build-system glib-or-gtk)
> +  #:use-module (guix build-system python)
>    #:use-module ((guix licenses) #:prefix license:)
>    #:use-module (gnu packages)
>    #:use-module (gnu packages assembly)
> @@ -41,11 +43,42 @@
>    #:use-module (gnu packages lua)
>    #:use-module (gnu packages ncurses)
>    #:use-module (gnu packages pkg-config)
> +  #:use-module (gnu packages python)
> +  #:use-module (gnu packages python-web)
>    #:use-module (gnu packages regex)
>    #:use-module (gnu packages ruby)
>    #:use-module (gnu packages terminals)
>    #:use-module (gnu packages xml))
>  
> +(define-public virtaal
> +  (package
> +    (name "virtaal")
> +    (version "0.7.1")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append "mirror://sourceforge/translate/Virtaal/"
> +                                  version "/virtaal-" version ".tar.bz2"))
> +              (sha256
> +               (base32
> +                "0cyimjp3191qlmw6n0ipqdr9xr0cq4f6dqvz4rl9q31h6l3kywf9"))))
> +    (build-system python-build-system)
> +    (arguments
> +     `(#:python ,python-2
> +       #:use-setuptools? #f
> +       #:tests? #f))

Could you check tests in virtaal-0.7.1/virtaal/test/ please?

> +    (propagated-inputs
> +     `(("python2-pycurl" ,python2-pycurl)
> +       ("python2-pygtk" ,python2-pygtk)
> +       ("python2-lxml" ,python2-lxml)
> +       ("python2-translate-toolkit" ,python2-translate-toolkit)
> +       ("python2-simplejson" ,python2-simplejson)))
> +    (synopsis "An editor for translation files")

gnu/packages/text-editors.scm:75:14: virtaal@0.7.1: no article allowed at the beginning of the synopsis

> +    (description
> +     "Virtaal, a feature rich translation tool that allows you to focus on
> +translation, without the tool getting in the way.")
> +    (home-page "http://virtaal.translatehouse.org/")
> +    (license license:gpl2)))
> +
>  (define-public vis
>    (package
>      (name "vis")

Could't be it builded With Python 3?  I see in
<https://github.com/translate/virtaal/blob/master/.travis.yml> that they
use only python 2.7 and 2.7, but still?

Thanks,
Oleg.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [bug#29733] Add virtaal (translation app)
  2017-12-16 11:49 ` Oleg Pykhalov
@ 2018-03-07 13:59   ` Ludovic Courtès
  2018-03-07 19:58     ` Mark Meyer
  0 siblings, 1 reply; 8+ messages in thread
From: Ludovic Courtès @ 2018-03-07 13:59 UTC (permalink / raw)
  To: Oleg Pykhalov; +Cc: Mark Meyer, 29733

Hello Mark & Oleg,

In an attempt to make progress (it’s been 3 months already :-)), I
pushed the first two patches, taking Oleg’s comments into account:

  30e43e816 * gnu: python2-gobject@2: Update to 2.28.7
  eaa8292e4 * gnu: Add python-pycurl.

Mark, can you take a look at Oleg’s suggestions below?  We’re almost
there!

Thanks in advance,
Ludo’.

Oleg Pykhalov <go.wigust@gmail.com> skribis:

>> From c36fde0cfda0d5f9830876abbff804504004451d Mon Sep 17 00:00:00 2001
>> From: Mark Meyer <mark@ofosos.org>
>> Date: Fri, 15 Dec 2017 12:35:38 +0100
>> Subject: [PATCH] gnu: Add virtaal.
>>
>> * gnu/packages/text-editors.scm (virtaal): New public variable.
>> ---
>>  gnu/packages/text-editors.scm | 33 +++++++++++++++++++++++++++++++++
>>  1 file changed, 33 insertions(+)
>>
>> diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm
>> index 44b42ce9b..773000ff4 100644
>> --- a/gnu/packages/text-editors.scm
>> +++ b/gnu/packages/text-editors.scm
>> @@ -6,6 +6,7 @@
>>  ;;; Copyright  2017 ng0 <ng0@infotropique.org>
>>  ;;; Copyright  2014 Taylan Ulrich Bayrl/Kammer <taylanbayirli@gmail.org>
>>  ;;; Copyright  2017 Tobias Geerinckx-Rice <me@tobias.gr>
>> +;;; Copyright  2017 Mark Meyer <mark@ofosos.org>
>>  ;;;
>>  ;;; This file is part of GNU Guix.
>>  ;;;
>> @@ -29,6 +30,7 @@
>>    #:use-module (guix utils)
>>    #:use-module (guix build-system gnu)
>>    #:use-module (guix build-system glib-or-gtk)
>> +  #:use-module (guix build-system python)
>>    #:use-module ((guix licenses) #:prefix license:)
>>    #:use-module (gnu packages)
>>    #:use-module (gnu packages assembly)
>> @@ -41,11 +43,42 @@
>>    #:use-module (gnu packages lua)
>>    #:use-module (gnu packages ncurses)
>>    #:use-module (gnu packages pkg-config)
>> +  #:use-module (gnu packages python)
>> +  #:use-module (gnu packages python-web)
>>    #:use-module (gnu packages regex)
>>    #:use-module (gnu packages ruby)
>>    #:use-module (gnu packages terminals)
>>    #:use-module (gnu packages xml))
>>  
>> +(define-public virtaal
>> +  (package
>> +    (name "virtaal")
>> +    (version "0.7.1")
>> +    (source (origin
>> +              (method url-fetch)
>> +              (uri (string-append "mirror://sourceforge/translate/Virtaal/"
>> +                                  version "/virtaal-" version ".tar.bz2"))
>> +              (sha256
>> +               (base32
>> +                "0cyimjp3191qlmw6n0ipqdr9xr0cq4f6dqvz4rl9q31h6l3kywf9"))))
>> +    (build-system python-build-system)
>> +    (arguments
>> +     `(#:python ,python-2
>> +       #:use-setuptools? #f
>> +       #:tests? #f))
>
> Could you check tests in virtaal-0.7.1/virtaal/test/ please?
>
>> +    (propagated-inputs
>> +     `(("python2-pycurl" ,python2-pycurl)
>> +       ("python2-pygtk" ,python2-pygtk)
>> +       ("python2-lxml" ,python2-lxml)
>> +       ("python2-translate-toolkit" ,python2-translate-toolkit)
>> +       ("python2-simplejson" ,python2-simplejson)))
>> +    (synopsis "An editor for translation files")
>
> gnu/packages/text-editors.scm:75:14: virtaal@0.7.1: no article allowed at the beginning of the synopsis
>
>> +    (description
>> +     "Virtaal, a feature rich translation tool that allows you to focus on
>> +translation, without the tool getting in the way.")
>> +    (home-page "http://virtaal.translatehouse.org/")
>> +    (license license:gpl2)))
>> +
>>  (define-public vis
>>    (package
>>      (name "vis")
>
> Could't be it builded With Python 3?  I see in
> <https://github.com/translate/virtaal/blob/master/.travis.yml> that they
> use only python 2.7 and 2.7, but still?
>
> Thanks,
> Oleg.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [bug#29733] Add virtaal (translation app)
  2018-03-07 13:59   ` Ludovic Courtès
@ 2018-03-07 19:58     ` Mark Meyer
  2018-03-07 21:00       ` Ludovic Courtès
  0 siblings, 1 reply; 8+ messages in thread
From: Mark Meyer @ 2018-03-07 19:58 UTC (permalink / raw)
  To: Ludovic Courtès, Oleg Pykhalov; +Cc: 29733

Hi Ludo, Hi Oleg,
IIRC the test required a pycurl package, which in turn depends on nghttp. But nghttp has been merged, maybe we can finish this now. I'll have a look tomorrow.

Best, Mark

On Wed, Mar 7, 2018, at 14:59, Ludovic Courtès wrote:
> Hello Mark & Oleg,
> 
> In an attempt to make progress (it’s been 3 months already :-)), I
> pushed the first two patches, taking Oleg’s comments into account:
> 
>   30e43e816 * gnu: python2-gobject@2: Update to 2.28.7
>   eaa8292e4 * gnu: Add python-pycurl.
> 
> Mark, can you take a look at Oleg’s suggestions below?  We’re almost
> there!
> 
> Thanks in advance,
> Ludo’.
> 
> Oleg Pykhalov <go.wigust@gmail.com> skribis:
> 
> >> From c36fde0cfda0d5f9830876abbff804504004451d Mon Sep 17 00:00:00 2001
> >> From: Mark Meyer <mark@ofosos.org>
> >> Date: Fri, 15 Dec 2017 12:35:38 +0100
> >> Subject: [PATCH] gnu: Add virtaal.
> >>
> >> * gnu/packages/text-editors.scm (virtaal): New public variable.
> >> ---
> >>  gnu/packages/text-editors.scm | 33 +++++++++++++++++++++++++++++++++
> >>  1 file changed, 33 insertions(+)
> >>
> >> diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm
> >> index 44b42ce9b..773000ff4 100644
> >> --- a/gnu/packages/text-editors.scm
> >> +++ b/gnu/packages/text-editors.scm
> >> @@ -6,6 +6,7 @@
> >>  ;;; Copyright  2017 ng0 <ng0@infotropique.org>
> >>  ;;; Copyright  2014 Taylan Ulrich Bayrl/Kammer <taylanbayirli@gmail.org>
> >>  ;;; Copyright  2017 Tobias Geerinckx-Rice <me@tobias.gr>
> >> +;;; Copyright  2017 Mark Meyer <mark@ofosos.org>
> >>  ;;;
> >>  ;;; This file is part of GNU Guix.
> >>  ;;;
> >> @@ -29,6 +30,7 @@
> >>    #:use-module (guix utils)
> >>    #:use-module (guix build-system gnu)
> >>    #:use-module (guix build-system glib-or-gtk)
> >> +  #:use-module (guix build-system python)
> >>    #:use-module ((guix licenses) #:prefix license:)
> >>    #:use-module (gnu packages)
> >>    #:use-module (gnu packages assembly)
> >> @@ -41,11 +43,42 @@
> >>    #:use-module (gnu packages lua)
> >>    #:use-module (gnu packages ncurses)
> >>    #:use-module (gnu packages pkg-config)
> >> +  #:use-module (gnu packages python)
> >> +  #:use-module (gnu packages python-web)
> >>    #:use-module (gnu packages regex)
> >>    #:use-module (gnu packages ruby)
> >>    #:use-module (gnu packages terminals)
> >>    #:use-module (gnu packages xml))
> >>  
> >> +(define-public virtaal
> >> +  (package
> >> +    (name "virtaal")
> >> +    (version "0.7.1")
> >> +    (source (origin
> >> +              (method url-fetch)
> >> +              (uri (string-append "mirror://sourceforge/translate/Virtaal/"
> >> +                                  version "/virtaal-" version ".tar.bz2"))
> >> +              (sha256
> >> +               (base32
> >> +                "0cyimjp3191qlmw6n0ipqdr9xr0cq4f6dqvz4rl9q31h6l3kywf9"))))
> >> +    (build-system python-build-system)
> >> +    (arguments
> >> +     `(#:python ,python-2
> >> +       #:use-setuptools? #f
> >> +       #:tests? #f))
> >
> > Could you check tests in virtaal-0.7.1/virtaal/test/ please?
> >
> >> +    (propagated-inputs
> >> +     `(("python2-pycurl" ,python2-pycurl)
> >> +       ("python2-pygtk" ,python2-pygtk)
> >> +       ("python2-lxml" ,python2-lxml)
> >> +       ("python2-translate-toolkit" ,python2-translate-toolkit)
> >> +       ("python2-simplejson" ,python2-simplejson)))
> >> +    (synopsis "An editor for translation files")
> >
> > gnu/packages/text-editors.scm:75:14: virtaal@0.7.1: no article allowed at the beginning of the synopsis
> >
> >> +    (description
> >> +     "Virtaal, a feature rich translation tool that allows you to focus on
> >> +translation, without the tool getting in the way.")
> >> +    (home-page "http://virtaal.translatehouse.org/")
> >> +    (license license:gpl2)))
> >> +
> >>  (define-public vis
> >>    (package
> >>      (name "vis")
> >
> > Could't be it builded With Python 3?  I see in
> > <https://github.com/translate/virtaal/blob/master/.travis.yml> that they
> > use only python 2.7 and 2.7, but still?
> >
> > Thanks,
> > Oleg.


-- 
  Mark Meyer
  mark@ofosos.org

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [bug#29733] Add virtaal (translation app)
  2018-03-07 19:58     ` Mark Meyer
@ 2018-03-07 21:00       ` Ludovic Courtès
  2018-03-10 18:41         ` Mark Meyer
  0 siblings, 1 reply; 8+ messages in thread
From: Ludovic Courtès @ 2018-03-07 21:00 UTC (permalink / raw)
  To: Mark Meyer; +Cc: 29733

Heya Mark,

Mark Meyer <mark@ofosos.org> skribis:

> IIRC the test required a pycurl package, which in turn depends on nghttp. But nghttp has been merged, maybe we can finish this now. I'll have a look tomorrow.

Awesome, let us know if anything goes wrong.

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [bug#29733] Add virtaal (translation app)
  2018-03-07 21:00       ` Ludovic Courtès
@ 2018-03-10 18:41         ` Mark Meyer
  2018-03-14 13:12           ` Oleg Pykhalov
  0 siblings, 1 reply; 8+ messages in thread
From: Mark Meyer @ 2018-03-10 18:41 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 29733

Moin Ludo,
apparently we still don't have HTTP2 in curl. guix-patches 29738 was opened for this. I think I will need to disable some test, will report back tomorrow.

Cheers, Mark

On Wed, Mar 7, 2018, at 22:00, Ludovic Courtès wrote:
> Heya Mark,
> 
> Mark Meyer <mark@ofosos.org> skribis:
> 
> > IIRC the test required a pycurl package, which in turn depends on nghttp. But nghttp has been merged, maybe we can finish this now. I'll have a look tomorrow.
> 
> Awesome, let us know if anything goes wrong.
> 
> Thanks,
> Ludo’.


-- 
  Mark Meyer
  mark@ofosos.org

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [bug#29733] Add virtaal (translation app)
  2018-03-10 18:41         ` Mark Meyer
@ 2018-03-14 13:12           ` Oleg Pykhalov
  2020-12-11  6:04             ` bug#29733: " Arun Isaac
  0 siblings, 1 reply; 8+ messages in thread
From: Oleg Pykhalov @ 2018-03-14 13:12 UTC (permalink / raw)
  To: Mark Meyer; +Cc: 29733

[-- Attachment #1: Type: text/plain, Size: 397 bytes --]

Hello Mark,

Mark Meyer <mark@ofosos.org> writes:

> Apparently we still don't have HTTP2 in curl. guix-patches 29738 was
> opened for this. I think I will need to disable some test, will report
> back tomorrow.

It seems that cURL with HTTP2 is ready and waits to push to
core-updates.  https://debbugs.gnu.org/cgi/bugreport.cgi?bug=29738#35

Maybe ping Tobias in 29738 to push his patch?

Oleg.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* bug#29733: Add virtaal (translation app)
  2018-03-14 13:12           ` Oleg Pykhalov
@ 2020-12-11  6:04             ` Arun Isaac
  0 siblings, 0 replies; 8+ messages in thread
From: Arun Isaac @ 2020-12-11  6:04 UTC (permalink / raw)
  To: Oleg Pykhalov, Mark Meyer; +Cc: 29733-done

[-- Attachment #1: Type: text/plain, Size: 107 bytes --]


Hi all,

I finished this patch and pushed to master as
e530fb41287f8d048643c74fb349bd602abbf3e5.

Cheers!

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 524 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2020-12-11  6:06 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-16 10:09 [bug#29733] Add virtaal (translation app) Mark Meyer
2017-12-16 11:49 ` Oleg Pykhalov
2018-03-07 13:59   ` Ludovic Courtès
2018-03-07 19:58     ` Mark Meyer
2018-03-07 21:00       ` Ludovic Courtès
2018-03-10 18:41         ` Mark Meyer
2018-03-14 13:12           ` Oleg Pykhalov
2020-12-11  6:04             ` bug#29733: " Arun Isaac

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).