From e8d14f9abcd8b0bef1e8db662513e0f66067c8eb Mon Sep 17 00:00:00 2001 From: biopsin <60029989+biopsin@users.noreply.github.com> Date: Sat, 3 Apr 2021 08:47:48 +0200 Subject: [PATCH 1/4] libmypaint: update to 1.6.1 --- common/shlibs | 2 +- srcpkgs/libmypaint/template | 18 ++++++++---------- 2 files changed, 9 insertions(+), 11 deletions(-) diff --git a/common/shlibs b/common/shlibs index c33da050a02c..3b819863e555 100644 --- a/common/shlibs +++ b/common/shlibs @@ -556,7 +556,7 @@ libecpg_compat.so.3 postgresql-libs-13.2_2 libecpg.so.6 postgresql-libs-13.2_2 libpgtypes.so.3 postgresql-libs-13.2_2 libpq.so.5 postgresql-libs-13.2_2 -libmypaint-1.5.so.1 libmypaint-1.5.1_1 +libmypaint.so.0 libmypaint-1.6.1_1 libmysqlclient_r.so.18 libmariadbclient-10.1.48_2 libmysqlclient.so.18 libmariadbclient-10.1.48_2 libgssapi_krb5.so.2 mit-krb5-libs-1.8_1 diff --git a/srcpkgs/libmypaint/template b/srcpkgs/libmypaint/template index e8e68dc8590f..765ed8ff9bcd 100644 --- a/srcpkgs/libmypaint/template +++ b/srcpkgs/libmypaint/template @@ -1,20 +1,21 @@ # Template file for 'libmypaint' pkgname=libmypaint -version=1.5.1 -revision=2 +version=1.6.1 +revision=1 build_style=gnu-configure configure_args="--disable-gegl" -hostmakedepends="intltool pkg-config $(vopt_if gir gobject-introspection)" +hostmakedepends="intltool pkg-config gobject-introspection" makedepends="json-c-devel glib-devel json-glib-devel" short_desc="MyPaint brush engine library" maintainer="Stefan Mühlinghaus " license="ISC" homepage="https://github.com/mypaint/libmypaint" distfiles="https://github.com/mypaint/libmypaint/releases/download/v${version}/libmypaint-${version}.tar.xz" -checksum=aef8150a0c84ce2ff6fb24de8d5ffc564845d006f8bad7ed84ee32ed1dd90c2b +checksum=741754f293f6b7668f941506da07cd7725629a793108bb31633fb6c3eae5315f -build_options="gir" -build_options_default="gir" +post_install() { + vlicense COPYING +} libmypaint-devel_package() { depends="${makedepends} ${sourcepkg}>=${version}_${revision}" @@ -23,9 +24,6 @@ libmypaint-devel_package() { vmove usr/include vmove usr/lib/pkgconfig vmove "usr/lib/*.so" + vmove "usr/share/gir-*" } } - -post_install() { - vlicense COPYING -} From a69805fb28ee7f55b52e3ae1640353503c7f05b6 Mon Sep 17 00:00:00 2001 From: biopsin Date: Sat, 3 Apr 2021 08:51:39 +0000 Subject: [PATCH 2/4] mypaint: update to 2.0.1 --- srcpkgs/mypaint/patches/releaseinfo.patch | 11 ----------- srcpkgs/mypaint/template | 12 ++++++------ 2 files changed, 6 insertions(+), 17 deletions(-) delete mode 100644 srcpkgs/mypaint/patches/releaseinfo.patch diff --git a/srcpkgs/mypaint/patches/releaseinfo.patch b/srcpkgs/mypaint/patches/releaseinfo.patch deleted file mode 100644 index 9454203a4930..000000000000 --- a/srcpkgs/mypaint/patches/releaseinfo.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- lib/meta.py 2020-02-15 16:05:22.000000000 +0100 -+++ lib/meta.py 2020-03-29 11:40:40.275375283 +0200 -@@ -264,7 +264,7 @@ - # If release information from release.sh exists, use that - relinfo = {} - with open("release_info", "rb") as relinfo_fp: -- exec(relinfo_fp, relinfo) -+ exec(relinfo_fp.read(), relinfo) - base_version = relinfo.get( - "MYPAINT_VERSION_BASE", - base_version, diff --git a/srcpkgs/mypaint/template b/srcpkgs/mypaint/template index f3d5266c14bb..efb295af98d5 100644 --- a/srcpkgs/mypaint/template +++ b/srcpkgs/mypaint/template @@ -1,23 +1,23 @@ # Template file for 'mypaint' pkgname=mypaint -version=2.0.0 -revision=2 +version=2.0.1 +revision=1 build_style=python3-module pycompile_dirs="/usr/share/mypaint" hostmakedepends="swig pkg-config gettext python3-setuptools python3-numpy python3" -makedepends="python3-setuptools python3-numpy python3-cairo python3-gobject-devel gtk+3-devel libgomp-devel libmypaint-devel mypaint-brushes" +makedepends="python3-setuptools python3-numpy python3-cairo python3-gobject-devel gtk+3-devel + libgomp-devel libmypaint-devel mypaint-brushes" depends="librsvg python3-numpy python3-gobject gtk+3 hicolor-icon-theme mypaint-brushes" short_desc="Graphics application for digital painters" maintainer="Stefan Mühlinghaus " license="GPL-2.0-or-later" homepage="http://mypaint.org" +changelog="https://github.com/mypaint/mypaint/raw/master/Changelog.md" distfiles="https://github.com/mypaint/mypaint/releases/download/v${version}/mypaint-${version}.tar.xz" -checksum=d1d67866e342938c1e84b42da10bbed5f613f7e216f800fcc7c0e20200074a5e +checksum=f3e437d7cdd5fd28ef6532e8ab6b4b05d842bcdd644f16a0162dad3d8e57bb16 python_version=3 post_install() { - # Fix SVG icons - vsed -i 's/xmlns:ns7/xmlns:xlink/g' ${DESTDIR}/usr/share/icons/hicolor/{24x24,scalable}/actions/mypaint-*.svg mv $DESTDIR/usr/lib/mypaint/lib/_mypaintlib.cpython*.so \ $DESTDIR/usr/lib/mypaint/lib/_mypaintlib.so } From 4140fd45a6d9ddfde5e8fb3ff40ec14678a179f3 Mon Sep 17 00:00:00 2001 From: biopsin Date: Sat, 3 Apr 2021 09:12:39 +0000 Subject: [PATCH 3/4] opentoonz: revision bumb to 2 --- srcpkgs/opentoonz/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/opentoonz/template b/srcpkgs/opentoonz/template index 503ebf2d789a..3d697cefb54a 100644 --- a/srcpkgs/opentoonz/template +++ b/srcpkgs/opentoonz/template @@ -1,7 +1,7 @@ # Template file for 'opentoonz' pkgname=opentoonz version=1.4.0 -revision=1 +revision=2 build_wrksrc="toonz/sources" build_style=cmake make_cmd=make From 3b9698a54a170ad1d1013ef0d057e0221020d43d Mon Sep 17 00:00:00 2001 From: biopsin Date: Sat, 3 Apr 2021 09:29:45 +0000 Subject: [PATCH 4/4] gimp: revision bump to 3 --- srcpkgs/gimp/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/gimp/template b/srcpkgs/gimp/template index 0378ad139c6e..4dfed7463871 100644 --- a/srcpkgs/gimp/template +++ b/srcpkgs/gimp/template @@ -1,7 +1,7 @@ # Template file for 'gimp' pkgname=gimp version=2.10.22 -revision=2 +revision=3 build_style=gnu-configure configure_args="--disable-check-update --datadir=/usr/share" hostmakedepends="automake gegl gettext-devel glib-devel gtk+-devel intltool @@ -37,7 +37,7 @@ pre_configure() { libgimp_package() { short_desc+=" - runtime libraries" pkg_install() { - vmove usr/lib/*.so.* + vmove "usr/lib/*.so.*" } }