[arch-commits] Commit in mypaint/repos (4 files)

2018-06-06 Thread Jelle van der Waa via arch-commits
Date: Wednesday, June 6, 2018 @ 07:08:52
  Author: jelle
Revision: 340867

db-move: moved mypaint from [community-staging] to [community-testing] (x86_64)

Added:
  mypaint/repos/community-testing-x86_64/
  mypaint/repos/community-testing-x86_64/PKGBUILD
(from rev 340866, mypaint/repos/community-staging-x86_64/PKGBUILD)
  mypaint/repos/community-testing-x86_64/fix-wayland.patch
(from rev 340866, mypaint/repos/community-staging-x86_64/fix-wayland.patch)
Deleted:
  mypaint/repos/community-staging-x86_64/

---+
 PKGBUILD  |   37 +++
 fix-wayland.patch |   70 
 2 files changed, 107 insertions(+)

Copied: mypaint/repos/community-testing-x86_64/PKGBUILD (from rev 340866, 
mypaint/repos/community-staging-x86_64/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-06-06 07:08:52 UTC (rev 340867)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Sergej Pupykin 
+# Contributor: Jon Nordby 
+
+pkgname=mypaint
+pkgver=1.2.1
+pkgrel=6
+pkgdesc="Fast and easy painting application for digital painters, with brush 
dynamics"
+arch=('x86_64')
+url="http://mypaint.org/;
+license=('GPL')
+depends=('gtk3' 'python2-cairo' 'python2-gobject' 'python2-numpy')
+makedepends=('scons' 'swig')
+source=(https://github.com/mypaint/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz{,.asc}
+fix-wayland.patch)
+validpgpkeys=('C02391F4BBA4F0E2B27C6BFF6E3037E12878B299') # Andrew Chadwick
+sha512sums=('1783765e495b9535669a83a29d27ba684e6201fdfe0875bdd2c167b1dab8af05993b19025767fe0b2770ed9e578e4709f75d8a4820ac945812cba85609f9eb9b'
+'SKIP'
+
'8aa0b865c577400039eeba5f7b54d8db4e4baa6e395691db080d43ca803a793e549cb7f5396a2f6a58fa60de8614f9d84cd1b0f55dc71699b685daf2beb2ef9c')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # Fix run under wayland
+  # https://github.com/mypaint/mypaint/issues/791
+  patch -Np1 -i ../fix-wayland.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  scons
+}
+
+package() {
+  cd $pkgname-$pkgver
+  scons prefix="$pkgdir"/usr install
+}

Copied: mypaint/repos/community-testing-x86_64/fix-wayland.patch (from rev 
340866, mypaint/repos/community-staging-x86_64/fix-wayland.patch)
===
--- community-testing-x86_64/fix-wayland.patch  (rev 0)
+++ community-testing-x86_64/fix-wayland.patch  2018-06-06 07:08:52 UTC (rev 
340867)
@@ -0,0 +1,70 @@
+From 037c2e791cfca4114dc75d3077d1266c2506d71c Mon Sep 17 00:00:00 2001
+From: Simon McVittie 
+Date: Sun, 2 Apr 2017 18:24:33 +0100
+Subject: [PATCH] hcywheel: Avoid deprecated gdk.Cursor constructor
+
+Use Gdk.Cursor.new_for_display on realize instead.
+
+Backported from a larger patch by Daniel Plachotich.
+
+Fixes #791
+
+Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=859064
+---
+ gui/colors/hcywheel.py | 23 +++
+ 1 file changed, 19 insertions(+), 4 deletions(-)
+
+diff --git a/gui/colors/hcywheel.py b/gui/colors/hcywheel.py
+index ed2d1130f..7d5235882 100644
+--- a/gui/colors/hcywheel.py
 b/gui/colors/hcywheel.py
+@@ -20,6 +20,7 @@
+ import gui.gtk2compat as gtk2compat
+ import gtk
+ from gtk import gdk
++from gi.repository import Gdk
+ import cairo
+ 
+ from bases import CachedBgDrawingArea
+@@ -391,10 +392,10 @@ class HCYMaskEditorWheel (HCYHueChromaWheel):
+ 
+ ## Class-level constants and variables
+ # Specialized cursors for different actions
+-__add_cursor = gdk.Cursor(gdk.PLUS)
+-__move_cursor = gdk.Cursor(gdk.FLEUR)
+-__move_point_cursor = gdk.Cursor(gdk.CROSSHAIR)
+-__rotate_cursor = gdk.Cursor(gdk.EXCHANGE)
++__add_cursor = None
++__move_cursor = None
++__move_point_cursor = None
++__rotate_cursor = None
+ # Constrain the range of allowable lumas
+ __MAX_LUMA = 0.75
+ __MIN_LUMA = 0.25
+@@ -417,12 +418,26 @@ def __init__(self):
+ """Instantiate, and connect the editor events.
+ """
+ HCYHueChromaWheel.__init__(self)
++
++self.connect("realize", self._realize_cb)
+ self.connect("button-press-event", self.__button_press_cb)
+ self.connect("button-release-event", self.__button_release_cb)
+ self.connect("motion-notify-event", self.__motion_cb)
+ self.connect("leave-notify-event", self.__leave_cb)
+ self.add_events(gdk.POINTER_MOTION_MASK | gdk.LEAVE_NOTIFY_MASK)
+ 
++def _realize_cb(self, widget):
++display = self.get_window().get_display()
++
++self.__add_cursor = Gdk.Cursor.new_for_display(
++display, Gdk.CursorType.PLUS)
++self.__move_cursor = Gdk.Cursor.new_for_display(
++display, Gdk.CursorType.FLEUR)
++self.__move_point_cursor = Gdk.Cursor.new_for_display(
++

[arch-commits] Commit in mypaint/repos (4 files)

2017-07-10 Thread Sergej Pupykin
Date: Monday, July 10, 2017 @ 14:36:16
  Author: spupykin
Revision: 243666

archrelease: copy trunk to community-i686, community-x86_64

Added:
  mypaint/repos/community-i686/PKGBUILD
(from rev 243665, mypaint/trunk/PKGBUILD)
  mypaint/repos/community-x86_64/PKGBUILD
(from rev 243665, mypaint/trunk/PKGBUILD)
Deleted:
  mypaint/repos/community-i686/PKGBUILD
  mypaint/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   50 
 community-i686/PKGBUILD   |   25 --
 community-x86_64/PKGBUILD |   25 --
 3 files changed, 50 insertions(+), 50 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-10 14:35:56 UTC (rev 243665)
+++ community-i686/PKGBUILD 2017-07-10 14:36:16 UTC (rev 243666)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Jon Nordby 
-
-pkgname=mypaint
-pkgver=1.2.1
-pkgrel=2
-pkgdesc="A fast and easy painting application for digital painters, with brush 
dynamics"
-arch=('i686' 'x86_64')
-url="http://mypaint.org/;
-license=('GPL' 'LGPL')
-depends=('gtk3' 'json-c' 'lcms2' 'python2-cairo' 'python2-gobject' 
'python2-numpy')
-makedepends=('scons>=0.97' 'swig>=1.3.39')
-source=(https://github.com/mypaint/mypaint/releases/download/v$pkgver/mypaint-$pkgver.tar.xz)
-sha256sums=('ed2349382f6a0c583d7defae06427e97ac7d14acb77b9e2c0fc7171ddd96d3c7')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  scons
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  scons prefix="$pkgdir"/usr install
-}

Copied: mypaint/repos/community-i686/PKGBUILD (from rev 243665, 
mypaint/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-10 14:36:16 UTC (rev 243666)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Jon Nordby 
+
+pkgname=mypaint
+pkgver=1.2.1
+pkgrel=3
+pkgdesc="A fast and easy painting application for digital painters, with brush 
dynamics"
+arch=('i686' 'x86_64')
+url="http://mypaint.org/;
+license=('GPL' 'LGPL')
+depends=('gtk3' 'json-c' 'lcms2' 'python2-cairo' 'python2-gobject' 
'python2-numpy')
+makedepends=('scons>=0.97' 'swig>=1.3.39')
+source=(https://github.com/mypaint/mypaint/releases/download/v$pkgver/mypaint-$pkgver.tar.xz)
+sha256sums=('ed2349382f6a0c583d7defae06427e97ac7d14acb77b9e2c0fc7171ddd96d3c7')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  scons
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  scons prefix="$pkgdir"/usr install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-07-10 14:35:56 UTC (rev 243665)
+++ community-x86_64/PKGBUILD   2017-07-10 14:36:16 UTC (rev 243666)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Jon Nordby 
-
-pkgname=mypaint
-pkgver=1.2.1
-pkgrel=2
-pkgdesc="A fast and easy painting application for digital painters, with brush 
dynamics"
-arch=('i686' 'x86_64')
-url="http://mypaint.org/;
-license=('GPL' 'LGPL')
-depends=('gtk3' 'json-c' 'lcms2' 'python2-cairo' 'python2-gobject' 
'python2-numpy')
-makedepends=('scons>=0.97' 'swig>=1.3.39')
-source=(https://github.com/mypaint/mypaint/releases/download/v$pkgver/mypaint-$pkgver.tar.xz)
-sha256sums=('ed2349382f6a0c583d7defae06427e97ac7d14acb77b9e2c0fc7171ddd96d3c7')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  scons
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  scons prefix="$pkgdir"/usr install
-}

Copied: mypaint/repos/community-x86_64/PKGBUILD (from rev 243665, 
mypaint/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-07-10 14:36:16 UTC (rev 243666)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Jon Nordby 
+
+pkgname=mypaint
+pkgver=1.2.1
+pkgrel=3
+pkgdesc="A fast and easy painting application for digital painters, with brush 
dynamics"
+arch=('i686' 'x86_64')
+url="http://mypaint.org/;
+license=('GPL' 'LGPL')
+depends=('gtk3' 'json-c' 'lcms2' 'python2-cairo' 'python2-gobject' 
'python2-numpy')
+makedepends=('scons>=0.97' 'swig>=1.3.39')
+source=(https://github.com/mypaint/mypaint/releases/download/v$pkgver/mypaint-$pkgver.tar.xz)
+sha256sums=('ed2349382f6a0c583d7defae06427e97ac7d14acb77b9e2c0fc7171ddd96d3c7')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  scons
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  scons prefix="$pkgdir"/usr install
+}


[arch-commits] Commit in mypaint/repos (4 files)

2017-02-17 Thread Balló György
Date: Saturday, February 18, 2017 @ 00:25:47
  Author: bgyorgy
Revision: 212992

archrelease: copy trunk to community-i686, community-x86_64

Added:
  mypaint/repos/community-i686/PKGBUILD
(from rev 212991, mypaint/trunk/PKGBUILD)
  mypaint/repos/community-x86_64/PKGBUILD
(from rev 212991, mypaint/trunk/PKGBUILD)
Deleted:
  mypaint/repos/community-i686/PKGBUILD
  mypaint/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   50 
 community-i686/PKGBUILD   |   26 --
 community-x86_64/PKGBUILD |   26 --
 3 files changed, 50 insertions(+), 52 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-02-18 00:25:40 UTC (rev 212991)
+++ community-i686/PKGBUILD 2017-02-18 00:25:47 UTC (rev 212992)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Jon Nordby 
-
-pkgname=mypaint
-pkgver=1.2.1
-pkgrel=1
-pkgdesc="A fast and easy painting application for digital painters, with brush 
dynamics"
-arch=('i686' 'x86_64')
-url="http://mypaint.org/;
-license=('GPL' 'LGPL')
-depends=('pygtk' 'python2-numpy' 'python2-protobuf' 'python2' 'json-c'
-'lcms2' 'python2-gobject' 'gtk3' 'hicolor-icon-theme')
-makedepends=('scons>=0.97' 'swig>=1.3.39')
-source=(https://github.com/mypaint/mypaint/releases/download/v$pkgver/mypaint-$pkgver.tar.xz)
-sha256sums=('ed2349382f6a0c583d7defae06427e97ac7d14acb77b9e2c0fc7171ddd96d3c7')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  scons
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  scons prefix="$pkgdir"/usr install
-}

Copied: mypaint/repos/community-i686/PKGBUILD (from rev 212991, 
mypaint/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-02-18 00:25:47 UTC (rev 212992)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Jon Nordby 
+
+pkgname=mypaint
+pkgver=1.2.1
+pkgrel=2
+pkgdesc="A fast and easy painting application for digital painters, with brush 
dynamics"
+arch=('i686' 'x86_64')
+url="http://mypaint.org/;
+license=('GPL' 'LGPL')
+depends=('gtk3' 'json-c' 'lcms2' 'python2-cairo' 'python2-gobject' 
'python2-numpy')
+makedepends=('scons>=0.97' 'swig>=1.3.39')
+source=(https://github.com/mypaint/mypaint/releases/download/v$pkgver/mypaint-$pkgver.tar.xz)
+sha256sums=('ed2349382f6a0c583d7defae06427e97ac7d14acb77b9e2c0fc7171ddd96d3c7')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  scons
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  scons prefix="$pkgdir"/usr install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-02-18 00:25:40 UTC (rev 212991)
+++ community-x86_64/PKGBUILD   2017-02-18 00:25:47 UTC (rev 212992)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Jon Nordby 
-
-pkgname=mypaint
-pkgver=1.2.1
-pkgrel=1
-pkgdesc="A fast and easy painting application for digital painters, with brush 
dynamics"
-arch=('i686' 'x86_64')
-url="http://mypaint.org/;
-license=('GPL' 'LGPL')
-depends=('pygtk' 'python2-numpy' 'python2-protobuf' 'python2' 'json-c'
-'lcms2' 'python2-gobject' 'gtk3' 'hicolor-icon-theme')
-makedepends=('scons>=0.97' 'swig>=1.3.39')
-source=(https://github.com/mypaint/mypaint/releases/download/v$pkgver/mypaint-$pkgver.tar.xz)
-sha256sums=('ed2349382f6a0c583d7defae06427e97ac7d14acb77b9e2c0fc7171ddd96d3c7')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  scons
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  scons prefix="$pkgdir"/usr install
-}

Copied: mypaint/repos/community-x86_64/PKGBUILD (from rev 212991, 
mypaint/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-02-18 00:25:47 UTC (rev 212992)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Jon Nordby 
+
+pkgname=mypaint
+pkgver=1.2.1
+pkgrel=2
+pkgdesc="A fast and easy painting application for digital painters, with brush 
dynamics"
+arch=('i686' 'x86_64')
+url="http://mypaint.org/;
+license=('GPL' 'LGPL')
+depends=('gtk3' 'json-c' 'lcms2' 'python2-cairo' 'python2-gobject' 
'python2-numpy')
+makedepends=('scons>=0.97' 'swig>=1.3.39')
+source=(https://github.com/mypaint/mypaint/releases/download/v$pkgver/mypaint-$pkgver.tar.xz)
+sha256sums=('ed2349382f6a0c583d7defae06427e97ac7d14acb77b9e2c0fc7171ddd96d3c7')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  scons
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  scons 

[arch-commits] Commit in mypaint/repos (4 files)

2017-02-06 Thread Sergej Pupykin
Date: Monday, February 6, 2017 @ 12:25:17
  Author: spupykin
Revision: 210396

archrelease: copy trunk to community-i686, community-x86_64

Added:
  mypaint/repos/community-i686/PKGBUILD
(from rev 210395, mypaint/trunk/PKGBUILD)
  mypaint/repos/community-x86_64/PKGBUILD
(from rev 210395, mypaint/trunk/PKGBUILD)
Deleted:
  mypaint/repos/community-i686/PKGBUILD
  mypaint/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   52 
 community-i686/PKGBUILD   |   33 ---
 community-x86_64/PKGBUILD |   33 ---
 3 files changed, 52 insertions(+), 66 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-02-06 12:24:59 UTC (rev 210395)
+++ community-i686/PKGBUILD 2017-02-06 12:25:17 UTC (rev 210396)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Jon Nordby 
-
-pkgname=mypaint
-pkgver=1.2.0
-pkgrel=5
-pkgdesc="A fast and easy painting application for digital painters, with brush 
dynamics"
-arch=('i686' 'x86_64')
-url="http://mypaint.org/;
-license=('GPL' 'LGPL')
-depends=('pygtk' 'python2-numpy' 'python2-protobuf' 'python2' 'json-c'
-'lcms2' 'python2-gobject' 'gtk3' 'hicolor-icon-theme')
-makedepends=('scons>=0.97' 'swig>=1.3.39')
-source=(https://github.com/mypaint/mypaint/releases/download/v$pkgver/mypaint-$pkgver.tar.xz
-   
https://github.com/mypaint/mypaint/commit/c03602f3d5456d59fccfc8ad7d41c8c6f1a6d593.patch)
-md5sums=('c7c2cfac8e1eec5549e58567ec68daac'
- 'e196d8ea9eb9e939118a17c04678a69a')
-
-prepare() {
-  cd "$srcdir"/$pkgname-$pkgver
-  patch -p1 <"$srcdir"/c03602f3d5456d59fccfc8ad7d41c8c6f1a6d593.patch
-}
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  scons
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  scons prefix="$pkgdir"/usr install
-}

Copied: mypaint/repos/community-i686/PKGBUILD (from rev 210395, 
mypaint/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-02-06 12:25:17 UTC (rev 210396)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Jon Nordby 
+
+pkgname=mypaint
+pkgver=1.2.1
+pkgrel=1
+pkgdesc="A fast and easy painting application for digital painters, with brush 
dynamics"
+arch=('i686' 'x86_64')
+url="http://mypaint.org/;
+license=('GPL' 'LGPL')
+depends=('pygtk' 'python2-numpy' 'python2-protobuf' 'python2' 'json-c'
+'lcms2' 'python2-gobject' 'gtk3' 'hicolor-icon-theme')
+makedepends=('scons>=0.97' 'swig>=1.3.39')
+source=(https://github.com/mypaint/mypaint/releases/download/v$pkgver/mypaint-$pkgver.tar.xz)
+sha256sums=('ed2349382f6a0c583d7defae06427e97ac7d14acb77b9e2c0fc7171ddd96d3c7')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  scons
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  scons prefix="$pkgdir"/usr install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-02-06 12:24:59 UTC (rev 210395)
+++ community-x86_64/PKGBUILD   2017-02-06 12:25:17 UTC (rev 210396)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Jon Nordby 
-
-pkgname=mypaint
-pkgver=1.2.0
-pkgrel=5
-pkgdesc="A fast and easy painting application for digital painters, with brush 
dynamics"
-arch=('i686' 'x86_64')
-url="http://mypaint.org/;
-license=('GPL' 'LGPL')
-depends=('pygtk' 'python2-numpy' 'python2-protobuf' 'python2' 'json-c'
-'lcms2' 'python2-gobject' 'gtk3' 'hicolor-icon-theme')
-makedepends=('scons>=0.97' 'swig>=1.3.39')
-source=(https://github.com/mypaint/mypaint/releases/download/v$pkgver/mypaint-$pkgver.tar.xz
-   
https://github.com/mypaint/mypaint/commit/c03602f3d5456d59fccfc8ad7d41c8c6f1a6d593.patch)
-md5sums=('c7c2cfac8e1eec5549e58567ec68daac'
- 'e196d8ea9eb9e939118a17c04678a69a')
-
-prepare() {
-  cd "$srcdir"/$pkgname-$pkgver
-  patch -p1 <"$srcdir"/c03602f3d5456d59fccfc8ad7d41c8c6f1a6d593.patch
-}
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  scons
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  scons prefix="$pkgdir"/usr install
-}

Copied: mypaint/repos/community-x86_64/PKGBUILD (from rev 210395, 
mypaint/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-02-06 12:25:17 UTC (rev 210396)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Jon Nordby 
+
+pkgname=mypaint
+pkgver=1.2.1
+pkgrel=1
+pkgdesc="A fast and easy painting application for digital painters, with 

[arch-commits] Commit in mypaint/repos (4 files)

2016-12-23 Thread Sergej Pupykin
Date: Friday, December 23, 2016 @ 10:41:39
  Author: spupykin
Revision: 201243

archrelease: copy trunk to community-i686, community-x86_64

Added:
  mypaint/repos/community-i686/PKGBUILD
(from rev 201242, mypaint/trunk/PKGBUILD)
  mypaint/repos/community-x86_64/PKGBUILD
(from rev 201242, mypaint/trunk/PKGBUILD)
Deleted:
  mypaint/repos/community-i686/PKGBUILD
  mypaint/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   66 
 community-i686/PKGBUILD   |   33 --
 community-x86_64/PKGBUILD |   33 --
 3 files changed, 66 insertions(+), 66 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-23 10:41:19 UTC (rev 201242)
+++ community-i686/PKGBUILD 2016-12-23 10:41:39 UTC (rev 201243)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Jon Nordby 
-
-pkgname=mypaint
-pkgver=1.2.0
-pkgrel=4
-pkgdesc="A fast and easy painting application for digital painters, with brush 
dynamics"
-arch=('i686' 'x86_64')
-url="http://mypaint.org/;
-license=('GPL' 'LGPL')
-depends=('pygtk' 'python2-numpy' 'python2-protobuf' 'python2' 'json-c'
-'lcms2' 'python2-gobject' 'gtk3')
-makedepends=('scons>=0.97' 'swig>=1.3.39')
-source=(https://github.com/mypaint/mypaint/releases/download/v$pkgver/mypaint-$pkgver.tar.xz
-   
https://github.com/mypaint/mypaint/commit/c03602f3d5456d59fccfc8ad7d41c8c6f1a6d593.patch)
-md5sums=('c7c2cfac8e1eec5549e58567ec68daac'
- 'e196d8ea9eb9e939118a17c04678a69a')
-
-prepare() {
-  cd "$srcdir"/$pkgname-$pkgver
-  patch -p1 <"$srcdir"/c03602f3d5456d59fccfc8ad7d41c8c6f1a6d593.patch
-}
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  scons
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  scons prefix="$pkgdir"/usr install
-}

Copied: mypaint/repos/community-i686/PKGBUILD (from rev 201242, 
mypaint/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-23 10:41:39 UTC (rev 201243)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Jon Nordby 
+
+pkgname=mypaint
+pkgver=1.2.0
+pkgrel=5
+pkgdesc="A fast and easy painting application for digital painters, with brush 
dynamics"
+arch=('i686' 'x86_64')
+url="http://mypaint.org/;
+license=('GPL' 'LGPL')
+depends=('pygtk' 'python2-numpy' 'python2-protobuf' 'python2' 'json-c'
+'lcms2' 'python2-gobject' 'gtk3' 'hicolor-icon-theme')
+makedepends=('scons>=0.97' 'swig>=1.3.39')
+source=(https://github.com/mypaint/mypaint/releases/download/v$pkgver/mypaint-$pkgver.tar.xz
+   
https://github.com/mypaint/mypaint/commit/c03602f3d5456d59fccfc8ad7d41c8c6f1a6d593.patch)
+md5sums=('c7c2cfac8e1eec5549e58567ec68daac'
+ 'e196d8ea9eb9e939118a17c04678a69a')
+
+prepare() {
+  cd "$srcdir"/$pkgname-$pkgver
+  patch -p1 <"$srcdir"/c03602f3d5456d59fccfc8ad7d41c8c6f1a6d593.patch
+}
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  scons
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  scons prefix="$pkgdir"/usr install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-12-23 10:41:19 UTC (rev 201242)
+++ community-x86_64/PKGBUILD   2016-12-23 10:41:39 UTC (rev 201243)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Jon Nordby 
-
-pkgname=mypaint
-pkgver=1.2.0
-pkgrel=4
-pkgdesc="A fast and easy painting application for digital painters, with brush 
dynamics"
-arch=('i686' 'x86_64')
-url="http://mypaint.org/;
-license=('GPL' 'LGPL')
-depends=('pygtk' 'python2-numpy' 'python2-protobuf' 'python2' 'json-c'
-'lcms2' 'python2-gobject' 'gtk3')
-makedepends=('scons>=0.97' 'swig>=1.3.39')
-source=(https://github.com/mypaint/mypaint/releases/download/v$pkgver/mypaint-$pkgver.tar.xz
-   
https://github.com/mypaint/mypaint/commit/c03602f3d5456d59fccfc8ad7d41c8c6f1a6d593.patch)
-md5sums=('c7c2cfac8e1eec5549e58567ec68daac'
- 'e196d8ea9eb9e939118a17c04678a69a')
-
-prepare() {
-  cd "$srcdir"/$pkgname-$pkgver
-  patch -p1 <"$srcdir"/c03602f3d5456d59fccfc8ad7d41c8c6f1a6d593.patch
-}
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  scons
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  scons prefix="$pkgdir"/usr install
-}

Copied: mypaint/repos/community-x86_64/PKGBUILD (from rev 201242, 
mypaint/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-12-23 10:41:39 UTC (rev 201243)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 

[arch-commits] Commit in mypaint/repos (4 files)

2016-11-18 Thread Sergej Pupykin
Date: Friday, November 18, 2016 @ 10:50:43
  Author: spupykin
Revision: 196299

archrelease: copy trunk to community-i686, community-x86_64

Added:
  mypaint/repos/community-i686/PKGBUILD
(from rev 196298, mypaint/trunk/PKGBUILD)
  mypaint/repos/community-x86_64/PKGBUILD
(from rev 196298, mypaint/trunk/PKGBUILD)
Deleted:
  mypaint/repos/community-i686/PKGBUILD
  mypaint/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   66 
 community-i686/PKGBUILD   |   33 --
 community-x86_64/PKGBUILD |   33 --
 3 files changed, 66 insertions(+), 66 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-11-18 10:50:26 UTC (rev 196298)
+++ community-i686/PKGBUILD 2016-11-18 10:50:43 UTC (rev 196299)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Jon Nordby 
-
-pkgname=mypaint
-pkgver=1.2.0
-pkgrel=3
-pkgdesc="A fast and easy painting application for digital painters, with brush 
dynamics"
-arch=('i686' 'x86_64')
-url="http://mypaint.org/;
-license=('GPL' 'LGPL')
-depends=('pygtk' 'python2-numpy' 'protobuf-python' 'python2' 'json-c'
-'lcms2' 'python2-gobject' 'gtk3')
-makedepends=('scons>=0.97' 'swig>=1.3.39')
-source=(https://github.com/mypaint/mypaint/releases/download/v$pkgver/mypaint-$pkgver.tar.xz
-   
https://github.com/mypaint/mypaint/commit/c03602f3d5456d59fccfc8ad7d41c8c6f1a6d593.patch)
-md5sums=('c7c2cfac8e1eec5549e58567ec68daac'
- 'e196d8ea9eb9e939118a17c04678a69a')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-  patch -p1 <$srcdir/c03602f3d5456d59fccfc8ad7d41c8c6f1a6d593.patch
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  scons
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  scons prefix="$pkgdir"/usr install
-}

Copied: mypaint/repos/community-i686/PKGBUILD (from rev 196298, 
mypaint/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-11-18 10:50:43 UTC (rev 196299)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Jon Nordby 
+
+pkgname=mypaint
+pkgver=1.2.0
+pkgrel=4
+pkgdesc="A fast and easy painting application for digital painters, with brush 
dynamics"
+arch=('i686' 'x86_64')
+url="http://mypaint.org/;
+license=('GPL' 'LGPL')
+depends=('pygtk' 'python2-numpy' 'python2-protobuf' 'python2' 'json-c'
+'lcms2' 'python2-gobject' 'gtk3')
+makedepends=('scons>=0.97' 'swig>=1.3.39')
+source=(https://github.com/mypaint/mypaint/releases/download/v$pkgver/mypaint-$pkgver.tar.xz
+   
https://github.com/mypaint/mypaint/commit/c03602f3d5456d59fccfc8ad7d41c8c6f1a6d593.patch)
+md5sums=('c7c2cfac8e1eec5549e58567ec68daac'
+ 'e196d8ea9eb9e939118a17c04678a69a')
+
+prepare() {
+  cd "$srcdir"/$pkgname-$pkgver
+  patch -p1 <"$srcdir"/c03602f3d5456d59fccfc8ad7d41c8c6f1a6d593.patch
+}
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  scons
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  scons prefix="$pkgdir"/usr install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-11-18 10:50:26 UTC (rev 196298)
+++ community-x86_64/PKGBUILD   2016-11-18 10:50:43 UTC (rev 196299)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Jon Nordby 
-
-pkgname=mypaint
-pkgver=1.2.0
-pkgrel=3
-pkgdesc="A fast and easy painting application for digital painters, with brush 
dynamics"
-arch=('i686' 'x86_64')
-url="http://mypaint.org/;
-license=('GPL' 'LGPL')
-depends=('pygtk' 'python2-numpy' 'protobuf-python' 'python2' 'json-c'
-'lcms2' 'python2-gobject' 'gtk3')
-makedepends=('scons>=0.97' 'swig>=1.3.39')
-source=(https://github.com/mypaint/mypaint/releases/download/v$pkgver/mypaint-$pkgver.tar.xz
-   
https://github.com/mypaint/mypaint/commit/c03602f3d5456d59fccfc8ad7d41c8c6f1a6d593.patch)
-md5sums=('c7c2cfac8e1eec5549e58567ec68daac'
- 'e196d8ea9eb9e939118a17c04678a69a')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-  patch -p1 <$srcdir/c03602f3d5456d59fccfc8ad7d41c8c6f1a6d593.patch
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  scons
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  scons prefix="$pkgdir"/usr install
-}

Copied: mypaint/repos/community-x86_64/PKGBUILD (from rev 196298, 
mypaint/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-11-18 10:50:43 UTC (rev 196299)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Jon Nordby