GNU bug report logs - #35922
[PATCH] gnu: add terminator

Previous Next

Package: guix-patches;

Reported by: atai <at> atai.org

Date: Mon, 27 May 2019 07:48:01 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 35922 in the body.
You can then email your comments to 35922 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#35922; Package guix-patches. (Mon, 27 May 2019 07:48:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to atai <at> atai.org:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Mon, 27 May 2019 07:48:02 GMT) Full text and rfc822 format available.

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

From: atai <at> atai.org
To: guix-patches <at> gnu.org
Cc: Andy Tai <atai <at> atai.org>
Subject: [PATCH] gnu: add terminator
Date: Mon, 27 May 2019 00:46:13 -0700
From: Andy Tai <atai <at> atai.org>

* gnu/packages/gnome.scm (terminator): Add at 1.91
---
 gnu/packages/gnome.scm | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 6a2a683f58..77269ba503 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -36,6 +36,7 @@
 ;;; Copyright © 2019 Danny Milosavljevic <dannym <at> scratchpost.org>
 ;;; Copyright © 2019 Marius Bakke <mbakke <at> fastmail.com>
 ;;; Copyright © 2019 Florian Pelz <pelzflorian <at> pelzflorian.de>
+;;; Copyright © 2019 Li-Cheng (Andy) Tai <atai <at> atai.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -162,6 +163,7 @@
   #:use-module (guix build-system glib-or-gtk)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system meson)
+  #:use-module (guix build-system python)
   #:use-module (guix build-system trivial)
   #:use-module (guix download)
   #:use-module (guix git-download)
@@ -7973,3 +7975,40 @@ functionality.")
     (license (list license:lgpl2.1 license:lgpl3 ; either one of these
                    license:openldap2.8 ; addressbook/gui/component/openldap-extract.h
                    license:lgpl2.1+))))  ; smime/lib/*
+
+(define-public terminator
+  (package
+    (name "terminator")
+    (version "1.91")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://launchpad.net/" name "/"
+                                  "gtk3/" version "/" "+download/"
+                                  name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0sdyqwydmdnh7j6mn74vrywz35m416kqsbxbrqcnv5ak08y6xxwm"))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("intltool" ,intltool)
+       ("glib" ,glib "bin")
+       ("gettext" ,gettext-minimal)
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("cairo" ,cairo)       
+       ("gtk+" ,gtk+)
+       ("gobject-introspection" ,gobject-introspection)
+       ("pango" ,pango)
+       ("python" ,python-2)
+       ("python2-pycairo" ,python2-pycairo)
+       ("python2-pygobject" ,python2-pygobject)
+       ("python2-psutil" ,python2-psutil)
+       ("vte" ,vte)))
+    (arguments
+     `(#:python ,python-2))
+    (home-page "https://gnometerminator.blogspot.com/")
+    (synopsis "Store and run multiple GNOME terminals in one window")
+    (description
+     "A tool to allow running multiple GNOME terminals in a grid and
+     tabs and support for drag and drop re-ordering of terminals")
+    (license license:gpl2)))
-- 
2.20.1





Information forwarded to guix-patches <at> gnu.org:
bug#35922; Package guix-patches. (Wed, 29 May 2019 21:11:01 GMT) Full text and rfc822 format available.

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

From: Ludovic Courtès <ludo <at> gnu.org>
To: atai <at> atai.org
Cc: 35922 <at> debbugs.gnu.org
Subject: Re: [bug#35922] [PATCH] gnu: add terminator
Date: Wed, 29 May 2019 23:10:01 +0200
Hello,

atai <at> atai.org skribis:

> From: Andy Tai <atai <at> atai.org>
>
> * gnu/packages/gnome.scm (terminator): Add at 1.91

[...]

> +    (arguments
> +     `(#:python ,python-2))

Python 2.x is reaching EOL real soon.  Can it run on Python 3?

> +    (description
> +     "A tool to allow running multiple GNOME terminals in a grid and
> +     tabs and support for drag and drop re-ordering of terminals")

Could you make a full sentence and remove the trailing spaces?  See
<https://www.gnu.org/software/guix/manual/en/html_node/Synopses-and-Descriptions.html>.

> +    (license license:gpl2)))

This means “version 2 only”.  Is there an explicit “version 2 only”
statement, for example in source file headers?  If not, it should be
‘gpl2+’.

Could you send an updated patch?

Thank you,
Ludo’.




Information forwarded to guix-patches <at> gnu.org:
bug#35922; Package guix-patches. (Thu, 30 May 2019 05:59:01 GMT) Full text and rfc822 format available.

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

From: Andy Tai <atai <at> atai.org>
To: Ludovic Courtès <ludo <at> gnu.org>
Cc: 35922 <at> debbugs.gnu.org
Subject: Re: [bug#35922] [PATCH] gnu: add terminator
Date: Wed, 29 May 2019 22:58:03 -0700
[Message part 1 (text/plain, inline)]
On Wed, May 29, 2019 at 2:10 PM Ludovic Courtès <ludo <at> gnu.org> wrote:

> Hello,
>
> atai <at> atai.org skribis:
>
> > From: Andy Tai <atai <at> atai.org>
> >
> > * gnu/packages/gnome.scm (terminator): Add at 1.91
>
> [...]
>
> > +    (arguments
> > +     `(#:python ,python-2))
>
> Python 2.x is reaching EOL real soon.  Can it run on Python 3?
>

hi, no, not the current upstream... I tried with python-3 and won't run

>
> > +    (description
> > +     "A tool to allow running multiple GNOME terminals in a grid and
> > +     tabs and support for drag and drop re-ordering of terminals")
>
> Could you make a full sentence and remove the trailing spaces?  See
> <
> https://www.gnu.org/software/guix/manual/en/html_node/Synopses-and-Descriptions.html
> >.
>
> will update


> > +    (license license:gpl2)))
>
> This means “version 2 only”.  Is there an explicit “version 2 only”
> statement, for example in source file headers?  If not, it should be
> ‘gpl2+’.
>
> source clearly labeled gpl "Version 2 Only"

> Could you send an updated patch?
>
> will do

> Thank you,
> Ludo’.
>


-- 
Andy Tai, atai <at> atai.org, Skype: licheng.tai, Line: andy_tai, WeChat:
andytai1010
Year 2019 民國108年
自動的精神力是信仰與覺悟
自動的行為力是勞動與技能
[Message part 2 (text/html, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#35922; Package guix-patches. (Thu, 30 May 2019 06:04:02 GMT) Full text and rfc822 format available.

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

From: atai <at> atai.org
To: 35922 <at> debbugs.gnu.org
Cc: Andy Tai <atai <at> atai.org>
Subject: [PATCH] gnu: add terminator
Date: Wed, 29 May 2019 23:02:41 -0700
From: Andy Tai <atai <at> atai.org>

* gnu/packages/gnome.scm (terminator): Add at 1.91
---
 gnu/packages/gnome.scm | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 14e63280ed..9775d1f82d 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -36,6 +36,7 @@
 ;;; Copyright © 2019 Danny Milosavljevic <dannym <at> scratchpost.org>
 ;;; Copyright © 2019 Marius Bakke <mbakke <at> fastmail.com>
 ;;; Copyright © 2019 Florian Pelz <pelzflorian <at> pelzflorian.de>
+;;; Copyright © 2019 Li-Cheng (Andy) Tai <atai <at> atai.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -162,6 +163,7 @@
   #:use-module (guix build-system glib-or-gtk)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system meson)
+  #:use-module (guix build-system python)
   #:use-module (guix build-system trivial)
   #:use-module (guix download)
   #:use-module (guix git-download)
@@ -7974,3 +7976,40 @@ functionality.")
     (license (list license:lgpl2.1 license:lgpl3 ; either one of these
                    license:openldap2.8 ; addressbook/gui/component/openldap-extract.h
                    license:lgpl2.1+))))  ; smime/lib/*
+
+(define-public terminator
+  (package
+    (name "terminator")
+    (version "1.91")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://launchpad.net/" name "/"
+                                  "gtk3/" version "/" "+download/"
+                                  name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0sdyqwydmdnh7j6mn74vrywz35m416kqsbxbrqcnv5ak08y6xxwm"))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("intltool" ,intltool)
+       ("glib" ,glib "bin")
+       ("gettext" ,gettext-minimal)
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("cairo" ,cairo) 
+       ("gtk+" ,gtk+)
+       ("gobject-introspection" ,gobject-introspection)
+       ("pango" ,pango)
+       ("python" ,python-2)
+       ("python2-pycairo" ,python2-pycairo)
+       ("python2-pygobject" ,python2-pygobject)
+       ("python2-psutil" ,python2-psutil)
+       ("vte" ,vte)))
+    (arguments
+     `(#:python ,python-2))
+    (home-page "https://gnometerminator.blogspot.com/")
+    (synopsis "Store and run multiple GNOME terminals in one window")
+    (description
+     "Terminator allows running multiple GNOME terminals in a grid and
+tabs and supports for drag and drop re-ordering of terminals")
+    (license license:gpl2)))
-- 
2.20.1





Information forwarded to guix-patches <at> gnu.org:
bug#35922; Package guix-patches. (Thu, 30 May 2019 09:57:01 GMT) Full text and rfc822 format available.

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

From: Ricardo Wurmus <rekado <at> elephly.net>
To: Ludovic Courtès <ludo <at> gnu.org>
Cc: 35922 <at> debbugs.gnu.org, atai <at> atai.org
Subject: Re: [bug#35922] [PATCH] gnu: add terminator
Date: Thu, 30 May 2019 11:54:58 +0200
Ludovic Courtès <ludo <at> gnu.org> writes:

> Hello,
>
> atai <at> atai.org skribis:
>
>> From: Andy Tai <atai <at> atai.org>
>>
>> * gnu/packages/gnome.scm (terminator): Add at 1.91
>
> [...]
>
>> +    (arguments
>> +     `(#:python ,python-2))
>
> Python 2.x is reaching EOL real soon.  Can it run on Python 3?

It looks like terminator is no longer maintained since 2017.

-- 
Ricardo





Information forwarded to guix-patches <at> gnu.org:
bug#35922; Package guix-patches. (Fri, 31 May 2019 04:59:01 GMT) Full text and rfc822 format available.

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

From: Andy Tai <atai <at> atai.org>
To: Ricardo Wurmus <rekado <at> elephly.net>
Cc: Ludovic Courtès <ludo <at> gnu.org>, 35922 <at> debbugs.gnu.org
Subject: Re: [bug#35922] [PATCH] gnu: add terminator
Date: Thu, 30 May 2019 21:58:10 -0700
[Message part 1 (text/plain, inline)]
Hi, this is a popular program used by many people and in repos of Fedora
and Ubuntu.  2017 was only 2 years ago, so "not maintained" for two years
seems not unusual in the Free Software world.   In any case, that would not
prevent other python2 programs from being in Guix or other GNU/Linux
distributions.   Migration to Python 3 would be issue for the upstream or
for anyone taking over maintenance, common for widely used programs if the
needs rises.

On Thu, May 30, 2019 at 2:55 AM Ricardo Wurmus <rekado <at> elephly.net> wrote:

>
> Ludovic Courtès <ludo <at> gnu.org> writes:
>
> > Hello,
> >
> > atai <at> atai.org skribis:
> >
> >> From: Andy Tai <atai <at> atai.org>
> >>
> >> * gnu/packages/gnome.scm (terminator): Add at 1.91
> >
> > [...]
> >
> >> +    (arguments
> >> +     `(#:python ,python-2))
> >
> > Python 2.x is reaching EOL real soon.  Can it run on Python 3?
>
> It looks like terminator is no longer maintained since 2017.
>
> --
> Ricardo
>
>

-- 
Andy Tai, atai <at> atai.org, Skype: licheng.tai, Line: andy_tai, WeChat:
andytai1010
Year 2019 民國108年
自動的精神力是信仰與覺悟
自動的行為力是勞動與技能
[Message part 2 (text/html, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#35922; Package guix-patches. (Fri, 31 May 2019 08:10:02 GMT) Full text and rfc822 format available.

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

From: Ricardo Wurmus <rekado <at> elephly.net>
To: Andy Tai <atai <at> atai.org>
Cc: Ludovic Courtès <ludo <at> gnu.org>, 35922 <at> debbugs.gnu.org
Subject: Re: [bug#35922] [PATCH] gnu: add terminator
Date: Fri, 31 May 2019 09:52:55 +0200
Hi Andy,

> Hi, this is a popular program used by many people and in repos of Fedora
> and Ubuntu.  2017 was only 2 years ago, so "not maintained" for two years
> seems not unusual in the Free Software world.

Sure.  What I meant is that it’s unlikely that upstream will migrate it
to Python 3 and by the time Python 2 hits EOL this will be our problem.

-- 
Ricardo





Information forwarded to guix-patches <at> gnu.org:
bug#35922; Package guix-patches. (Fri, 31 May 2019 15:45:02 GMT) Full text and rfc822 format available.

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

From: Andy Tai <atai <at> atai.org>
To: Ricardo Wurmus <rekado <at> elephly.net>
Cc: Ludovic Courtès <ludo <at> gnu.org>, 35922 <at> debbugs.gnu.org
Subject: Re: [bug#35922] [PATCH] gnu: add terminator
Date: Fri, 31 May 2019 08:44:14 -0700
[Message part 1 (text/plain, inline)]
Rewrite in guile?:)

On Fri, May 31, 2019, 12:53 AM Ricardo Wurmus <rekado <at> elephly.net> wrote:

>
> Hi Andy,
>
> > Hi, this is a popular program used by many people and in repos of Fedora
> > and Ubuntu.  2017 was only 2 years ago, so "not maintained" for two years
> > seems not unusual in the Free Software world.
>
> Sure.  What I meant is that it’s unlikely that upstream will migrate it
> to Python 3 and by the time Python 2 hits EOL this will be our problem.
>
> --
> Ricardo
>
>
[Message part 2 (text/html, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#35922; Package guix-patches. (Sat, 01 Jun 2019 12:49:01 GMT) Full text and rfc822 format available.

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

From: Ludovic Courtès <ludo <at> gnu.org>
To: atai <at> atai.org
Cc: 35922 <at> debbugs.gnu.org
Subject: Re: [bug#35922] [PATCH] gnu: add terminator
Date: Sat, 01 Jun 2019 14:48:08 +0200
[Message part 1 (text/plain, inline)]
Hi Andy,

atai <at> atai.org skribis:

> From: Andy Tai <atai <at> atai.org>
>
> * gnu/packages/gnome.scm (terminator): Add at 1.91

I propose the small changes below.

However, it fails to run in this context:

--8<---------------cut here---------------start------------->8---
$ ./pre-inst-env guix environment --ad-hoc terminator --pure -- terminator
Traceback (most recent call last):
  File "/gnu/store/frwq9qja9m8i8dvk0lgj9mg5rnmc5377-terminator-1.91/bin/.terminator-real", line 33, in <module>
    gi.require_version('Gtk','3.0')
  File "/gnu/store/q4b7cr9j6f3g7v4xpg0zm3kkhd6l4dmg-python2-pygobject-3.28.3/lib/python2.7/site-packages/gi/__init__.py", line 130, in require_version
    raise ValueError('Namespace %s not available' % namespace)
ValueError: Namespace Gtk not available
--8<---------------cut here---------------end--------------->8---

It seems we’re missing an environment variable or something to allow
pygobject to find the GIR file for GTK+.  I’m sure this has been
addressed in other packages before, but I don’t remember how.

Anyone here?

Thanks,
Ludo’.

[Message part 2 (text/x-patch, inline)]
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 9775d1f82d..e0142a7fb5 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -7996,20 +7996,19 @@ functionality.")
        ("gettext" ,gettext-minimal)
        ("pkg-config" ,pkg-config)))
     (inputs
-     `(("cairo" ,cairo) 
+     `(("cairo" ,cairo)
        ("gtk+" ,gtk+)
        ("gobject-introspection" ,gobject-introspection)
        ("pango" ,pango)
-       ("python" ,python-2)
        ("python2-pycairo" ,python2-pycairo)
        ("python2-pygobject" ,python2-pygobject)
        ("python2-psutil" ,python2-psutil)
        ("vte" ,vte)))
     (arguments
-     `(#:python ,python-2))
+     `(#:python ,python-2))                       ;Python 3 not supported
     (home-page "https://gnometerminator.blogspot.com/")
     (synopsis "Store and run multiple GNOME terminals in one window")
     (description
-     "Terminator allows running multiple GNOME terminals in a grid and
-tabs and supports for drag and drop re-ordering of terminals")
+     "Terminator allows you to runn multiple GNOME terminals in a grid and
+tabs, and it supports drag and drop re-ordering of terminals.")
     (license license:gpl2)))

Information forwarded to guix-patches <at> gnu.org:
bug#35922; Package guix-patches. (Sat, 01 Jun 2019 17:42:02 GMT) Full text and rfc822 format available.

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

From: atai <at> atai.org
To: 35922 <at> debbugs.gnu.org
Cc: Andy Tai <atai <at> atai.org>
Subject: [PATCH] gnu: add terminator
Date: Sat,  1 Jun 2019 10:41:16 -0700
From: Andy Tai <atai <at> atai.org>

* gnu/packages/gnome.scm (terminator): Add at 1.91
---
 gnu/packages/gnome.scm | 47 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 47 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 60141fce9b..962657b9d7 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -162,6 +162,7 @@
   #:use-module (guix build-system glib-or-gtk)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system meson)
+  #:use-module (guix build-system python)
   #:use-module (guix build-system trivial)
   #:use-module (guix download)
   #:use-module (guix git-download)
@@ -8021,3 +8022,49 @@ functionality.")
     (description "GThumb is an image viewer, browser, organizer, editor and
 advanced image management tool")
     (license license:gpl2+)))
+
+(define-public terminator
+  (package
+    (name "terminator")
+    (version "1.91")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://launchpad.net/" name "/"
+                                  "gtk3/" version "/" "+download/"
+                                  name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0sdyqwydmdnh7j6mn74vrywz35m416kqsbxbrqcnv5ak08y6xxwm"))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("intltool" ,intltool)
+       ("glib:bin" ,glib "bin")                   ; for glib-compile-resources
+       ("gettext" ,gettext-minimal)
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("cairo" ,cairo)
+       ("gobject-introspection" ,gobject-introspection)
+       ("python" ,python-2)
+       ("python2-pycairo" ,python2-pycairo)
+       ("python2-pygobject" ,python2-pygobject)
+       ("python2-psutil" ,python2-psutil)
+       ("vte" ,vte)))
+    (arguments
+     `(#:python ,python-2                          ;Python 3 not supported
+       #:phases
+       (modify-phases %standard-phases
+         (add-after
+          'install 'wrap-program
+          (lambda* (#:key outputs #:allow-other-keys)
+            (let ((prog (string-append (assoc-ref outputs "out")
+                                       "/bin/terminator")))
+              (wrap-program prog
+                `("PYTHONPATH" = (,(getenv "PYTHONPATH")))
+                `("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH"))))
+              #t))))))
+    (home-page "https://gnometerminator.blogspot.com/")
+    (synopsis "Store and run multiple GNOME terminals in one window")
+    (description
+     "Terminator allows you to runn multiple GNOME terminals in a grid and
++tabs, and it supports drag and drop re-ordering of terminals.")
+    (license license:gpl2)))
-- 
2.20.1





Information forwarded to guix-patches <at> gnu.org:
bug#35922; Package guix-patches. (Sat, 01 Jun 2019 17:43:03 GMT) Full text and rfc822 format available.

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

From: Andy Tai <atai <at> atai.org>
To: Ludovic Courtès <ludo <at> gnu.org>
Cc: 35922 <at> debbugs.gnu.org
Subject: Re: [bug#35922] [PATCH] gnu: add terminator
Date: Sat, 1 Jun 2019 10:42:33 -0700
[Message part 1 (text/plain, inline)]
Hi, I just sent a new patch that works with Ludo's command line

./pre-inst-env guix environment --ad-hoc terminator --pure -- terminator

Thanks

On Sat, Jun 1, 2019 at 5:48 AM Ludovic Courtès <ludo <at> gnu.org> wrote:

> Hi Andy,
>
> atai <at> atai.org skribis:
>
> > From: Andy Tai <atai <at> atai.org>
> >
> > * gnu/packages/gnome.scm (terminator): Add at 1.91
>
> I propose the small changes below.
>
> However, it fails to run in this context:
>
> --8<---------------cut here---------------start------------->8---
> $ ./pre-inst-env guix environment --ad-hoc terminator --pure -- terminator
> Traceback (most recent call last):
>   File
> "/gnu/store/frwq9qja9m8i8dvk0lgj9mg5rnmc5377-terminator-1.91/bin/.terminator-real",
> line 33, in <module>
>     gi.require_version('Gtk','3.0')
>   File
> "/gnu/store/q4b7cr9j6f3g7v4xpg0zm3kkhd6l4dmg-python2-pygobject-3.28.3/lib/python2.7/site-packages/gi/__init__.py",
> line 130, in require_version
>     raise ValueError('Namespace %s not available' % namespace)
> ValueError: Namespace Gtk not available
> --8<---------------cut here---------------end--------------->8---
>
> It seems we’re missing an environment variable or something to allow
> pygobject to find the GIR file for GTK+.  I’m sure this has been
> addressed in other packages before, but I don’t remember how.
>
> Anyone here?
>
> Thanks,
> Ludo’.
>
>

-- 
Andy Tai, atai <at> atai.org, Skype: licheng.tai, Line: andy_tai, WeChat:
andytai1010
Year 2019 民國108年
自動的精神力是信仰與覺悟
自動的行為力是勞動與技能
[Message part 2 (text/html, inline)]

Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Sat, 01 Jun 2019 21:58:02 GMT) Full text and rfc822 format available.

Notification sent to atai <at> atai.org:
bug acknowledged by developer. (Sat, 01 Jun 2019 21:58:03 GMT) Full text and rfc822 format available.

Message #40 received at 35922-done <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: atai <at> atai.org
Cc: 35922-done <at> debbugs.gnu.org
Subject: Re: [bug#35922] [PATCH] gnu: add terminator
Date: Sat, 01 Jun 2019 23:56:52 +0200
atai <at> atai.org skribis:

> From: Andy Tai <atai <at> atai.org>
>
> * gnu/packages/gnome.scm (terminator): Add at 1.91

Applied, thanks!




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sun, 30 Jun 2019 11:24:06 GMT) Full text and rfc822 format available.

This bug report was last modified 4 years and 313 days ago.

Previous Next


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