[arch-commits] Commit in libmypaint/repos (3 files)

2020-04-25 Thread Evangelos Foutras via arch-commits
Date: Saturday, April 25, 2020 @ 14:22:59
  Author: foutrelis
Revision: 381561

archrelease: copy trunk to staging-x86_64

Added:
  libmypaint/repos/staging-x86_64/
  libmypaint/repos/staging-x86_64/PKGBUILD
(from rev 381560, libmypaint/trunk/PKGBUILD)
  libmypaint/repos/staging-x86_64/gegl-0.4.patch
(from rev 381560, libmypaint/trunk/gegl-0.4.patch)

+
 PKGBUILD   |   43 +
 gegl-0.4.patch |   80 +++
 2 files changed, 123 insertions(+)

Copied: libmypaint/repos/staging-x86_64/PKGBUILD (from rev 381560, 
libmypaint/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-04-25 14:22:59 UTC (rev 381561)
@@ -0,0 +1,43 @@
+# Maintainer: Levente Polyak 
+# Contributor: twa022 
+
+pkgname=libmypaint
+pkgver=1.5.1
+pkgrel=2
+pkgdesc='Library for making brushstrokes which is used by MyPaint and other 
projects'
+url='http://mypaint.org/'
+arch=('x86_64')
+license=('ISC')
+depends=('glibc' 'json-c' 'gegl' 'glib2' 'json-glib' 'babl')
+makedepends=('intltool' 'python' 'python-sphinx' 'python-breathe' 
'gobject-introspection' 'doxygen')
+source=(https://github.com/mypaint/libmypaint/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('3cebce0adb1f029f19dfcc19b4d8c5c1102c0cd966930fe76eda60ff4e18ced9a4c8ecae8f31f12d931172c82bd5dabd7ca7a47b9c06305472192af242b3e1b6')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  ./autogen.sh
+  autoreconf -fiv
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+--prefix=/usr \
+--enable-gegl \
+--enable-docs
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Copied: libmypaint/repos/staging-x86_64/gegl-0.4.patch (from rev 381560, 
libmypaint/trunk/gegl-0.4.patch)
===
--- staging-x86_64/gegl-0.4.patch   (rev 0)
+++ staging-x86_64/gegl-0.4.patch   2020-04-25 14:22:59 UTC (rev 381561)
@@ -0,0 +1,80 @@
+diff -u -r libmypaint-1.3.0/configure.ac libmypaint-1.3.0-gegl/configure.ac
+--- libmypaint-1.3.0/configure.ac  2018-05-13 16:49:44.997077642 +0200
 libmypaint-1.3.0-gegl/configure.ac 2018-05-13 16:49:36.223744476 +0200
+@@ -45,7 +45,7 @@
+   
[libmypaint_api_major().libmypaint_api_minor().libmypaint_api_micro()m4_bpatsubst(libmypaint_api_prerelease(),
 [^\(.\)], [-\1])])
+ 
+ # Dependencies.
+-m4_define([gegl_required_version], [0.3])
++m4_define([gegl_required_version], [0.4])
+ m4_define([introspection_required_version], [1.32.0])
+ 
+ AC_INIT([libmypaint],
+@@ -336,7 +336,7 @@
+ )
+ 
+ if eval "test x$enable_gegl = xyes"; then
+-  PKG_CHECK_MODULES(GEGL, gegl-0.3 >= gegl_required_version)
++  PKG_CHECK_MODULES(GEGL, gegl-0.4 >= gegl_required_version)
+ fi
+ AM_CONDITIONAL(ENABLE_GEGL, test "x$enable_gegl" = "xyes")
+ 
+diff -u -r libmypaint-1.3.0/gegl/libmypaint-gegl.pc.in 
libmypaint-1.3.0-gegl/gegl/libmypaint-gegl.pc.in
+--- libmypaint-1.3.0/gegl/libmypaint-gegl.pc.in2016-12-01 
23:47:14.0 +0100
 libmypaint-1.3.0-gegl/gegl/libmypaint-gegl.pc.in   2018-05-13 
16:50:16.620410376 +0200
+@@ -6,6 +6,6 @@
+ Name: libmypaint
+ Description: MyPaint brush engine library, with GEGL integration.
+ Version: @LIBMYPAINT_VERSION@
+-Requires: gegl-0.3 libmypaint
++Requires: gegl-0.4 libmypaint
+ Cflags: -I${includedir}/libmypaint-gegl
+ Libs: -L${libdir} -lmypaint-gegl
+diff -u -r libmypaint-1.3.0/gegl/Makefile.am 
libmypaint-1.3.0-gegl/gegl/Makefile.am
+--- libmypaint-1.3.0/gegl/Makefile.am  2018-05-13 16:48:53.437078622 +0200
 libmypaint-1.3.0-gegl/gegl/Makefile.am 2018-05-13 16:49:58.523744053 
+0200
+@@ -11,7 +11,7 @@
+ INTROSPECTION_GIRS =
+ INTROSPECTION_SCANNER_ARGS = \
+ --warn-all \
+---pkg="gegl-0.3" \
++--pkg="gegl-0.4" \
+ --pkg="glib-2.0" \
+ --namespace="MyPaintGegl" \
+ --nsversion="$(LIBMYPAINT_MAJOR_VERSION).$(LIBMYPAINT_MINOR_VERSION)" \
+@@ -38,7 +38,7 @@
+   mypaint-gegl-surface.c
+ 
+ MyPaintGegl-@LIBMYPAINT_MAJOR_VERSION@.@LIBMYPAINT_MINOR_VERSION@.gir: 
libmypaint-gegl.la Makefile
+-MyPaintGegl_@LIBMYPAINT_MAJOR_VERSION@_@LIBMYPAINT_MINOR_VERSION@_gir_INCLUDES
 = GObject-2.0 MyPaint-$(LIBMYPAINT_MAJOR_VERSION).$(LIBMYPAINT_MINOR_VERSION) 
Gegl-0.3
++MyPaintGegl_@LIBMYPAINT_MAJOR_VERSION@_@LIBMYPAINT_MINOR_VERSION@_gir_INCLUDES
 = GObject-2.0 MyPaint-$(LIBMYPAINT_MAJOR_VERSION).$(LIBMYPAINT_MINOR_VERSION) 
Gegl-0.4
+ MyPaintGegl_@LIBMYPAINT_MAJOR_VERSION@_@LIBMYPAINT_MINOR_VERSION@_gir_CFLAGS 
= $(AM_CFLAGS) $(AM_CPPFLAGS) -I. -I..
+ 

[arch-commits] Commit in libmypaint/repos (3 files)

2020-03-22 Thread Levente Polyak via arch-commits
Date: Monday, March 23, 2020 @ 00:30:44
  Author: anthraxx
Revision: 378379

archrelease: copy trunk to staging-x86_64

Added:
  libmypaint/repos/staging-x86_64/
  libmypaint/repos/staging-x86_64/PKGBUILD
(from rev 378378, libmypaint/trunk/PKGBUILD)
  libmypaint/repos/staging-x86_64/gegl-0.4.patch
(from rev 378378, libmypaint/trunk/gegl-0.4.patch)

+
 PKGBUILD   |   43 +
 gegl-0.4.patch |   80 +++
 2 files changed, 123 insertions(+)

Copied: libmypaint/repos/staging-x86_64/PKGBUILD (from rev 378378, 
libmypaint/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-03-23 00:30:44 UTC (rev 378379)
@@ -0,0 +1,43 @@
+# Maintainer: Levente Polyak 
+# Contributor: twa022 
+
+pkgname=libmypaint
+pkgver=1.5.1
+pkgrel=1
+pkgdesc='Library for making brushstrokes which is used by MyPaint and other 
projects'
+url='http://mypaint.org/'
+arch=('x86_64')
+license=('ISC')
+depends=('glibc' 'json-c' 'gegl' 'glib2' 'json-glib' 'babl')
+makedepends=('intltool' 'python' 'python-sphinx' 'python-breathe' 
'gobject-introspection' 'doxygen')
+source=(https://github.com/mypaint/libmypaint/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('3cebce0adb1f029f19dfcc19b4d8c5c1102c0cd966930fe76eda60ff4e18ced9a4c8ecae8f31f12d931172c82bd5dabd7ca7a47b9c06305472192af242b3e1b6')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  ./autogen.sh
+  autoreconf -fiv
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+--prefix=/usr \
+--enable-gegl \
+--enable-docs
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Copied: libmypaint/repos/staging-x86_64/gegl-0.4.patch (from rev 378378, 
libmypaint/trunk/gegl-0.4.patch)
===
--- staging-x86_64/gegl-0.4.patch   (rev 0)
+++ staging-x86_64/gegl-0.4.patch   2020-03-23 00:30:44 UTC (rev 378379)
@@ -0,0 +1,80 @@
+diff -u -r libmypaint-1.3.0/configure.ac libmypaint-1.3.0-gegl/configure.ac
+--- libmypaint-1.3.0/configure.ac  2018-05-13 16:49:44.997077642 +0200
 libmypaint-1.3.0-gegl/configure.ac 2018-05-13 16:49:36.223744476 +0200
+@@ -45,7 +45,7 @@
+   
[libmypaint_api_major().libmypaint_api_minor().libmypaint_api_micro()m4_bpatsubst(libmypaint_api_prerelease(),
 [^\(.\)], [-\1])])
+ 
+ # Dependencies.
+-m4_define([gegl_required_version], [0.3])
++m4_define([gegl_required_version], [0.4])
+ m4_define([introspection_required_version], [1.32.0])
+ 
+ AC_INIT([libmypaint],
+@@ -336,7 +336,7 @@
+ )
+ 
+ if eval "test x$enable_gegl = xyes"; then
+-  PKG_CHECK_MODULES(GEGL, gegl-0.3 >= gegl_required_version)
++  PKG_CHECK_MODULES(GEGL, gegl-0.4 >= gegl_required_version)
+ fi
+ AM_CONDITIONAL(ENABLE_GEGL, test "x$enable_gegl" = "xyes")
+ 
+diff -u -r libmypaint-1.3.0/gegl/libmypaint-gegl.pc.in 
libmypaint-1.3.0-gegl/gegl/libmypaint-gegl.pc.in
+--- libmypaint-1.3.0/gegl/libmypaint-gegl.pc.in2016-12-01 
23:47:14.0 +0100
 libmypaint-1.3.0-gegl/gegl/libmypaint-gegl.pc.in   2018-05-13 
16:50:16.620410376 +0200
+@@ -6,6 +6,6 @@
+ Name: libmypaint
+ Description: MyPaint brush engine library, with GEGL integration.
+ Version: @LIBMYPAINT_VERSION@
+-Requires: gegl-0.3 libmypaint
++Requires: gegl-0.4 libmypaint
+ Cflags: -I${includedir}/libmypaint-gegl
+ Libs: -L${libdir} -lmypaint-gegl
+diff -u -r libmypaint-1.3.0/gegl/Makefile.am 
libmypaint-1.3.0-gegl/gegl/Makefile.am
+--- libmypaint-1.3.0/gegl/Makefile.am  2018-05-13 16:48:53.437078622 +0200
 libmypaint-1.3.0-gegl/gegl/Makefile.am 2018-05-13 16:49:58.523744053 
+0200
+@@ -11,7 +11,7 @@
+ INTROSPECTION_GIRS =
+ INTROSPECTION_SCANNER_ARGS = \
+ --warn-all \
+---pkg="gegl-0.3" \
++--pkg="gegl-0.4" \
+ --pkg="glib-2.0" \
+ --namespace="MyPaintGegl" \
+ --nsversion="$(LIBMYPAINT_MAJOR_VERSION).$(LIBMYPAINT_MINOR_VERSION)" \
+@@ -38,7 +38,7 @@
+   mypaint-gegl-surface.c
+ 
+ MyPaintGegl-@LIBMYPAINT_MAJOR_VERSION@.@LIBMYPAINT_MINOR_VERSION@.gir: 
libmypaint-gegl.la Makefile
+-MyPaintGegl_@LIBMYPAINT_MAJOR_VERSION@_@LIBMYPAINT_MINOR_VERSION@_gir_INCLUDES
 = GObject-2.0 MyPaint-$(LIBMYPAINT_MAJOR_VERSION).$(LIBMYPAINT_MINOR_VERSION) 
Gegl-0.3
++MyPaintGegl_@LIBMYPAINT_MAJOR_VERSION@_@LIBMYPAINT_MINOR_VERSION@_gir_INCLUDES
 = GObject-2.0 MyPaint-$(LIBMYPAINT_MAJOR_VERSION).$(LIBMYPAINT_MINOR_VERSION) 
Gegl-0.4
+ MyPaintGegl_@LIBMYPAINT_MAJOR_VERSION@_@LIBMYPAINT_MINOR_VERSION@_gir_CFLAGS 
= $(AM_CFLAGS) $(AM_CPPFLAGS) -I. -I..
+ 

[arch-commits] Commit in libmypaint/repos (3 files)

2019-09-04 Thread Levente Polyak via arch-commits
Date: Wednesday, September 4, 2019 @ 21:08:31
  Author: anthraxx
Revision: 361623

archrelease: copy trunk to testing-x86_64

Added:
  libmypaint/repos/testing-x86_64/
  libmypaint/repos/testing-x86_64/PKGBUILD
(from rev 361622, libmypaint/trunk/PKGBUILD)
  libmypaint/repos/testing-x86_64/gegl-0.4.patch
(from rev 361622, libmypaint/trunk/gegl-0.4.patch)

+
 PKGBUILD   |   49 +
 gegl-0.4.patch |   80 +++
 2 files changed, 129 insertions(+)

Copied: libmypaint/repos/testing-x86_64/PKGBUILD (from rev 361622, 
libmypaint/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-09-04 21:08:31 UTC (rev 361623)
@@ -0,0 +1,49 @@
+# Maintainer: Levente Polyak 
+# Contributor: twa022 
+
+pkgname=libmypaint
+pkgver=1.4.0
+pkgrel=1
+pkgdesc='Library for making brushstrokes which is used by MyPaint and other 
projects'
+url='http://mypaint.org/'
+arch=('x86_64')
+license=('ISC')
+depends=('glibc' 'json-c' 'gegl' 'glib2' 'json-glib' 'babl')
+makedepends=('intltool' 'python' 'gobject-introspection' 'python')
+source=(https://github.com/mypaint/libmypaint/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
+
libmypaint-1.4-gegl-version-revert.patch::https://github.com/anthraxx/libmypaint/commit/5e0290c5fb8a175a9f0dd4c6897ff234361c321f.patch
+gegl-0.4.patch)
+sha512sums=('d6c17381dbfc8ee346762f9b4d337ccc691e48b9004f0890c682be0911a2a8c9d35592461d54d55063298c16e81353b1f004f7a0c34bb96d7e511bf9b39cd7a7'
+
'dd1b4cb146c52865f02857ce9eefff9fc2341cd722e754536dc65613be6d437e63f367208200ab7b2811c0a1cf0f9e782d761667bc6df48c9cdb5cfbc7649019'
+
'0df26f4c8f6f6c31a4d5718d97b3338455fbdb9168167bcae36942f5dc1d5c61db1db2448cfa62cb4551356c7454a7ef91885042cb4529a410d6fc59597fa4b9')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Rp1 < ../libmypaint-1.4-gegl-version-revert.patch
+  patch -Np1 < ../gegl-0.4.patch
+  sed 's|python2|python|' -i autogen.sh
+  ./autogen.sh
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+--prefix=/usr \
+--enable-gegl
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Copied: libmypaint/repos/testing-x86_64/gegl-0.4.patch (from rev 361622, 
libmypaint/trunk/gegl-0.4.patch)
===
--- testing-x86_64/gegl-0.4.patch   (rev 0)
+++ testing-x86_64/gegl-0.4.patch   2019-09-04 21:08:31 UTC (rev 361623)
@@ -0,0 +1,80 @@
+diff -u -r libmypaint-1.3.0/configure.ac libmypaint-1.3.0-gegl/configure.ac
+--- libmypaint-1.3.0/configure.ac  2018-05-13 16:49:44.997077642 +0200
 libmypaint-1.3.0-gegl/configure.ac 2018-05-13 16:49:36.223744476 +0200
+@@ -45,7 +45,7 @@
+   
[libmypaint_api_major().libmypaint_api_minor().libmypaint_api_micro()m4_bpatsubst(libmypaint_api_prerelease(),
 [^\(.\)], [-\1])])
+ 
+ # Dependencies.
+-m4_define([gegl_required_version], [0.3])
++m4_define([gegl_required_version], [0.4])
+ m4_define([introspection_required_version], [1.32.0])
+ 
+ AC_INIT([libmypaint],
+@@ -336,7 +336,7 @@
+ )
+ 
+ if eval "test x$enable_gegl = xyes"; then
+-  PKG_CHECK_MODULES(GEGL, gegl-0.3 >= gegl_required_version)
++  PKG_CHECK_MODULES(GEGL, gegl-0.4 >= gegl_required_version)
+ fi
+ AM_CONDITIONAL(ENABLE_GEGL, test "x$enable_gegl" = "xyes")
+ 
+diff -u -r libmypaint-1.3.0/gegl/libmypaint-gegl.pc.in 
libmypaint-1.3.0-gegl/gegl/libmypaint-gegl.pc.in
+--- libmypaint-1.3.0/gegl/libmypaint-gegl.pc.in2016-12-01 
23:47:14.0 +0100
 libmypaint-1.3.0-gegl/gegl/libmypaint-gegl.pc.in   2018-05-13 
16:50:16.620410376 +0200
+@@ -6,6 +6,6 @@
+ Name: libmypaint
+ Description: MyPaint brush engine library, with GEGL integration.
+ Version: @LIBMYPAINT_VERSION@
+-Requires: gegl-0.3 libmypaint
++Requires: gegl-0.4 libmypaint
+ Cflags: -I${includedir}/libmypaint-gegl
+ Libs: -L${libdir} -lmypaint-gegl
+diff -u -r libmypaint-1.3.0/gegl/Makefile.am 
libmypaint-1.3.0-gegl/gegl/Makefile.am
+--- libmypaint-1.3.0/gegl/Makefile.am  2018-05-13 16:48:53.437078622 +0200
 libmypaint-1.3.0-gegl/gegl/Makefile.am 2018-05-13 16:49:58.523744053 
+0200
+@@ -11,7 +11,7 @@
+ INTROSPECTION_GIRS =
+ INTROSPECTION_SCANNER_ARGS = \
+ --warn-all \
+---pkg="gegl-0.3" \
++--pkg="gegl-0.4" \
+ --pkg="glib-2.0" \
+ --namespace="MyPaintGegl" \
+ --nsversion="$(LIBMYPAINT_MAJOR_VERSION).$(LIBMYPAINT_MINOR_VERSION)" \
+@@ -38,7 +38,7 @@
+   mypaint-gegl-surface.c
+ 
+ 

[arch-commits] Commit in libmypaint/repos (3 files)

2018-05-09 Thread Levente Polyak via arch-commits
Date: Wednesday, May 9, 2018 @ 20:31:33
  Author: anthraxx
Revision: 323648

archrelease: copy trunk to extra-x86_64

Added:
  libmypaint/repos/extra-x86_64/
  libmypaint/repos/extra-x86_64/PKGBUILD
(from rev 323647, libmypaint/trunk/PKGBUILD)
  libmypaint/repos/extra-x86_64/versioning.patch
(from rev 323647, libmypaint/trunk/versioning.patch)

--+
 PKGBUILD |   44 +++
 versioning.patch |  611 +
 2 files changed, 655 insertions(+)

Copied: libmypaint/repos/extra-x86_64/PKGBUILD (from rev 323647, 
libmypaint/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2018-05-09 20:31:33 UTC (rev 323648)
@@ -0,0 +1,44 @@
+# Maintainer: Levente Polyak 
+# Contributor: twa022 
+
+pkgname=libmypaint
+pkgver=1.3.0
+pkgrel=4
+pkgdesc='Library for making brushstrokes which is used by MyPaint and other 
projects, with GEGL support'
+url='http://mypaint.org/'
+arch=('x86_64')
+license=('ISC')
+depends=('glibc' 'json-c' 'gegl' 'glib2' 'json-glib' 'babl')
+makedepends=('intltool' 'python' 'gobject-introspection')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/mypaint/libmypaint/archive/v${pkgver}.tar.gz
+versioning.patch)
+sha256sums=('8fbdce62f66a027d8b43fa8b061f0e6ff2a3da63cbe55a82d1642e5e39da0654'
+'d850f9b64bc037bd7ed6bbcec0a39115dd43ff896aef59daea79d8786fbb28c0')
+sha512sums=('98ba7a48a611014e683d8d534c73af1ed0754e1d9974d62db7efb588abdb9c01d090daaaba3847ece7ca7e5a4e83b334f2a3473a2c9b7e4a9c0680231f650202'
+
'20bba36076e90fcc2fbe85ae08f60b9c80ba84c4f1e24a1ca55b0f494d95a561cd899061bdee48bcdd493fe70f84dc07ada7343128849247ce6c2635b1f97fee')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -uNp2 < ../versioning.patch
+  ./autogen.sh
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --enable-gegl
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check || warning "Failed to execute tests (make problem)"
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Copied: libmypaint/repos/extra-x86_64/versioning.patch (from rev 323647, 
libmypaint/trunk/versioning.patch)
===
--- extra-x86_64/versioning.patch   (rev 0)
+++ extra-x86_64/versioning.patch   2018-05-09 20:31:33 UTC (rev 323648)
@@ -0,0 +1,611 @@
+Combines the following two patches adjusted to work with libmypaint 1.3
+https://github.com/mypaint/libmypaint/commit/0b31421ffbfb5f4a1c68ceeafa292c6ff08e949c
+https://github.com/mypaint/libmypaint/commit/08c4236d4c0e871bf6c29f2e42cafd55d1f361ce
+This will allow side-by-side installations of different libmypaint builds
+at the level of the minor version number.
+diff -Naur ./libmypaint-1.3.0.orig/configure.ac ./libmypaint-1.3.0/configure.ac
+--- ./libmypaint-1.3.0.orig/configure.ac   2016-12-01 17:47:14.0 
-0500
 ./libmypaint-1.3.0/configure.ac2017-07-24 10:54:57.297918118 -0400
+@@ -1,27 +1,50 @@
+ # AC_OPENMP requires autoconf >= 2.62.
+ AC_PREREQ(2.62)
+ 
++
++## Canonical version number components ##
++
+ # API version: see https://github.com/mypaint/libmypaint/wiki/Versioning
++# See http://semver.org/ for what this means.
++
+ m4_define([libmypaint_api_major], [1])
+ m4_define([libmypaint_api_minor], [3])
+ m4_define([libmypaint_api_micro], [0])
+ m4_define([libmypaint_api_prerelease], [])  # may be blank
+-# The platform version is "major.minor" only.
+-# The full version is "major.minor.micro[-prerelease]".
+ 
+-# ABI version see: https://autotools.io/libtool/version.html
++# ABI version. Changes independently of API version.
++# See: https://autotools.io/libtool/version.html
+ # 
https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
++# The rules are fiddly, and are summarized here.
++
+ m4_define([libmypaint_abi_revision], [0])  # increment on every release
+ m4_define([libmypaint_abi_current], [0])  # inc when add/remove/change 
interfaces
+ m4_define([libmypaint_abi_age], [0])  # inc only if changes backward compat
+ 
+-# Derivative version macros
++
++## Derivative version macros ##
++
++# The full version is "major.minor.micro[-prerelease]".
++
+ m4_define([libmypaint_version],
+   [libmypaint_api_major.libmypaint_api_minor.libmypaint_api_micro])
+ m4_define([libmypaint_version_full],
+   
[libmypaint_api_major().libmypaint_api_minor().libmypaint_api_micro()m4_bpatsubst(libmypaint_api_prerelease(),
 [^\(.\)], [-\1])])
+ 
+-# Dependencies.
++# The API "platform" or "intercompatibility" version.
++#
++# This one is used for library name prefixes, for