unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: swedebugia <swedebugia@riseup.net>
To: 34283@debbugs.gnu.org
Subject: [bug#34283] [PATCH-1/4]Add: mypaint@1.2.1
Date: Fri, 28 Jun 2019 07:34:22 +0200	[thread overview]
Message-ID: <864f444f-f87e-595a-49c0-a5cd1b2ad415@riseup.net> (raw)
In-Reply-To: <20190208072240.sbx6xmzheyxyinkw@WaraToNora>

On 2019-02-08 08:22, Yoshinori Arai wrote:
>  From 9fe8e0b3cb260da2bae0de7c2c5d0963c4f543a6 Mon Sep 17 00:00:00 2001
> From: Yoshinori Arai <kumagusu08@gmail.com>
> Date: Fri, 8 Feb 2019 12:41:11 +0900
> Subject: [PATCH 1/4] Add: mypaint@1.2.1
> 
> ---
>   gnu/packages/graphics.scm | 55 +++++++++++++++++++++++++++++++++++++++
>   1 file changed, 55 insertions(+)
> 
> diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm
> index bf4cc89b0..6663ff7dc 100644
> --- a/gnu/packages/graphics.scm
> +++ b/gnu/packages/graphics.scm
> @@ -41,7 +41,9 @@
>     #:use-module (gnu packages flex)
>     #:use-module (gnu packages fonts)
>     #:use-module (gnu packages fontutils)
> +  #:use-module (gnu packages gettext)
>     #:use-module (gnu packages ghostscript)
> +  #:use-module (gnu packages gimp)
>     #:use-module (gnu packages gl)
>     #:use-module (gnu packages glib)
>     #:use-module (gnu packages gnome)
> @@ -70,6 +72,7 @@
>     #:use-module (guix build-system cmake)
>     #:use-module (guix build-system gnu)
>     #:use-module (guix build-system python)
> +  #:use-module (guix build-system scons)
>     #:use-module (guix download)
>     #:use-module (guix git-download)
>     #:use-module ((guix licenses) #:prefix license:)
> @@ -856,3 +859,55 @@ your terminal.  It comes bundled with predefined styles:
>   look.  The result can be uploaded on any web server without additional
>   requirements.")
>       (license license:gpl2+)))
> +
> +(define-public mypaint
> +  (package
> +    (name "mypaint")
> +    (version "1.2.1")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append "https://github.com/" name "/" name
> +                                  "/releases/download/v" version
> +                                  "/" name "-" version ".tar.xz"))
> +              (sha256
> +               (base32
> +                "1iykjvfis5y71wn9wyxpmha7vb4pgr10dbpgglymh33a5ww4j8zd"))))
> +    (build-system scons-build-system)
> +    (arguments
> +     `(#:tests? #f  ;; need graphical environment
> +       #:scons ,scons-python2
> +       #:scons-flags
> +       (list (string-append "numpy_include="
> +                            (assoc-ref %build-inputs "python2-numpy")
> +                            "/lib/python2.7/site-packages/numpy/core/include")
> +             (string-append "prefix=" (assoc-ref %outputs "out")))))
> +       ;; README_LINUX.md
> +       ;;-If testing outside a graphical environment (anywhere Gdk refuses
> +       ;; to initialize), limit the doctests to just `lib/` and `brushlib/`.
> +       ;;-There are several interactive GUI tests in the `tests/` folder
> +       ;; which `nosetests` does not run - quite intentionally -
> +       ;; because their executable bit is set.
> +       ;;#:phases
> +       ;;(modify-phases %standard-phases
> +       ;;  (replace 'check
> +       ;;    (lambda _
> +       ;;      (invoke "nosetests" "--with-doctest"))))))
> +    (native-inputs
> +     `(("pkg-config" ,pkg-config)
> +       ("python" ,python-2)
> +       ("lcms" ,lcms)
> +       ("swig" ,swig)))
> +       ;;("python-nose" ,python2-nose)))   ;; for test
> +    (inputs
> +     `(("gettext" ,gettext-minimal)
> +       ("libmypaint" ,libmypaint)
> +       ("mypaint-brushes" ,mypaint-brushes)))
> +    (propagated-inputs
> +     `(("gtk+" ,gtk+)
> +       ("python2-pygobject" ,python2-pygobject)
> +       ("python2-numpy" ,python2-numpy)
> +       ("python2-pycairo" ,python2-pycairo)))
> +    (home-page "http://mypaint.org/")
> +    (synopsis "Simple drawing and painting program")
> +    (description "MyPaint is a fast and easy graphics app for digital painters.")
> +    (license license:gpl2+)))
> 

This has slipped through the cracks. Can someone with gtk-knowledge 
please review?

-- 
Cheers Swedebugia

  reply	other threads:[~2019-06-28  5:35 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-02-02  4:44 [bug#34283] [PATCH]Add: mypaint Yoshinori Arai
2019-02-05  5:43 ` swedebugia
2019-02-05  5:52 ` [bug#34283] [PATCH] Add: mypaint Maxim Cournoyer
2019-02-05  9:23   ` Yoshinori Arai
2019-02-05 11:42 ` [bug#34283] [PATCH]Add: mypaint Björn Höfling
2019-02-06 11:03   ` Yoshinori Arai
2019-02-07 11:13   ` Yoshinori Arai
2019-02-10 19:57     ` Danny Milosavljevic
2019-02-10 22:15       ` Yoshinori Arai
2019-02-08  4:26   ` Yoshinori Arai
2019-02-08  4:30     ` Brett Gilio
2019-02-09 22:54       ` Yoshinori Arai
2019-02-10  1:24         ` Brett Gilio
2019-02-10  2:36           ` Yoshinori Arai
2019-02-08  7:22 ` [bug#34283] [PATCH-1/4]Add: mypaint@1.2.1 Yoshinori Arai
2019-06-28  5:34   ` swedebugia [this message]
2019-02-08  7:24 ` [bug#34283] [PATCH-2/4]Add: libmypaint@2.0.0-alpha Yoshinori Arai
2019-02-08  7:25 ` [bug#34283] [PATCH-3/4]Add: mypaint-blushes@2.0.1 Yoshinori Arai
2019-02-08  7:27 ` [bug#34283] [PATCH-4/4]Add: mypaint@2.0.0-alpha.2 Yoshinori Arai
2021-01-15 19:50 ` bug#34283: [PATCH]Add: mypaint Julien Lepiller

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=864f444f-f87e-595a-49c0-a5cd1b2ad415@riseup.net \
    --to=swedebugia@riseup.net \
    --cc=34283@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).