Github messages for voidlinux
 help / color / mirror / Atom feed
From: kawaiiamber <kawaiiamber@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] New package: pinta-1.7
Date: Thu, 18 Mar 2021 19:45:14 +0100	[thread overview]
Message-ID: <20210318184514.gWlVqMhtiOGbqLL3xVOZvq7TCmD4rnS0BVaxjG3tcnI@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-27787@inbox.vuxu.org>

[-- Attachment #1: Type: text/plain, Size: 450 bytes --]

There is an updated pull request by kawaiiamber against master on the void-packages repository

https://github.com/kawaiiamber/void-packages pinta
https://github.com/void-linux/void-packages/pull/27787

New package: pinta-1.7
# Current issues
It seems as though mono is failing? I tried following [these](https://github.com/PintaProject/Pinta) instructions.

A patch file from https://github.com/void-linux/void-packages/pull/27787.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-pinta-27787.patch --]
[-- Type: text/x-diff, Size: 3931 bytes --]

From 2c0934319a2f634c3b3744ddc58cc9130b83bdeb Mon Sep 17 00:00:00 2001
From: KawaiiAmber <japaneselearning101@gmail.com>
Date: Tue, 19 Jan 2021 01:58:37 -0700
Subject: [PATCH 1/2] New package: mono-addins-1.3.3

---
 .../mono-addins/patches/fix-delay-sign.patch  | 21 +++++++++++++++
 srcpkgs/mono-addins/template                  | 27 +++++++++++++++++++
 2 files changed, 48 insertions(+)
 create mode 100644 srcpkgs/mono-addins/patches/fix-delay-sign.patch
 create mode 100644 srcpkgs/mono-addins/template

diff --git a/srcpkgs/mono-addins/patches/fix-delay-sign.patch b/srcpkgs/mono-addins/patches/fix-delay-sign.patch
new file mode 100644
index 000000000000..04bea6aa3ee8
--- /dev/null
+++ b/srcpkgs/mono-addins/patches/fix-delay-sign.patch
@@ -0,0 +1,21 @@
+Source: https://build.opensuse.org/package/view_file/openSUSE:Factory/mono-addins/fix-delay-sign.patch
+Upstream: No
+Reason: mono 5.0+ doesn't allow to install delay-signed dlls into GAC, so sign delay-signed dlls
+before adding it to GAC.
+--- Makefile.include	2016-07-27 01:26:26.000000000 +0300
++++ Makefile.include	2017-05-03 02:49:41.690295653 +0300
+@@ -14,8 +14,14 @@ $(POLICY_ASSEMBLIES) : policy.%.$(ASSEMB
+ 	$(AL) -link:policy.$*.config -out:$@ -keyfile:$(top_srcdir)/mono-addins.snk
+
+ gac-install: $(POLICY_ASSEMBLIES)
++	sn -v '$(ASSEMBLY)' || if [[ $$? = 1 ]]; then \
++		sn -R '$(ASSEMBLY)' ../mono-addins.snk; \
++	fi
+ 	$(GACUTIL) /i $(ASSEMBLY) /f $(GACUTIL_FLAGS) || exit 1;
+ 	@for p in $(POLICY_ASSEMBLIES); do \
++		sn -v "$$p" || if [[ $$? = 1 ]]; then \
++			sn -R "$$p" ../mono-addins.snk; \
++		fi; \
+ 		echo $(GACUTIL) /i $$p /f $(GACUTIL_POLICY_FLAGS) || exit 1; \
+ 		$(GACUTIL) /i $$p /f $(GACUTIL_POLICY_FLAGS) || exit 1; \
+ 	done
diff --git a/srcpkgs/mono-addins/template b/srcpkgs/mono-addins/template
new file mode 100644
index 000000000000..215ab168149d
--- /dev/null
+++ b/srcpkgs/mono-addins/template
@@ -0,0 +1,27 @@
+# Template file for 'mono-addins'
+pkgname=mono-addins
+version=1.3.3
+revision=1
+wrksrc=${pkgname}-${pkgname}-${version}
+build_style=gnu-configure
+hostmakedepends="autoconf automake pkg-config"
+makedepends="mono-devel gtk-sharp2"
+depends="mono gtk-sharp2"
+short_desc="Generic framework for creating extensible applications"
+maintainer="KawaiiAmber <japaneselearning101@gmail.com>"
+license="MIT"
+homepage="https://www.mono-project.com/archived/monoaddins"
+distfiles="https://github.com/mono/${pkgname}/archive/${pkgname}-${version}.tar.gz"
+checksum=254539d14e71789814a4fd37ed444dd33fc8ddb5fc082b1bf8e93f3d5d840b14
+
+if [ "${CROSS_BUILD}" ]; then
+	hostmakedepends+=" mono gtk-sharp2"
+fi
+
+pre_configure() {
+	./autogen.sh
+}
+
+post_install() {
+	vlicense COPYING
+}

From b51d3e86395966fcc9ba57a54155fc400cf708c9 Mon Sep 17 00:00:00 2001
From: KawaiiAmber <japaneselearning101@gmail.com>
Date: Tue, 19 Jan 2021 01:59:09 -0700
Subject: [PATCH 2/2] New package: pinta-1.7

---
 srcpkgs/pinta/template | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 srcpkgs/pinta/template

diff --git a/srcpkgs/pinta/template b/srcpkgs/pinta/template
new file mode 100644
index 000000000000..48b326a2bb94
--- /dev/null
+++ b/srcpkgs/pinta/template
@@ -0,0 +1,22 @@
+# Template file for 'pinta'
+pkgname=pinta
+version=1.7
+revision=1
+build_style=gnu-configure
+hostmakedepends="autoconf automake pkg-config"
+makedepends="mono-devel gtk-sharp intltool mono-addins"
+depends="mono-addins"
+short_desc="Simple GTK# Paint Program"
+maintainer="KawaiiAmber <japaneselearning101@gmail.com>"
+license="MIT"
+homepage="https://www.pinta-project.com/"
+distfiles="https://github.com/PintaProject/Pinta/releases/download/${version}/${pkgname}-${version}.tar.gz"
+checksum=678c0d5c6e41da77696180efc71476ccfda3238a3d68d7331198c8a431dbf96c
+
+if [ "${CROSS_BUILD}" ]; then
+	hostmakedepends+=" mono intltool gtk-sharp2 mono-addins"
+fi
+
+post_install() {
+	vlicense license-mit.txt
+}

  parent reply	other threads:[~2021-03-18 18:45 UTC|newest]

Thread overview: 60+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-09 18:52 [PR PATCH] [WIP] " kawaiiamber
2021-01-15 21:35 ` [PR PATCH] [Updated] " kawaiiamber
2021-01-18 15:35 ` not-chicken
2021-01-18 21:02 ` kawaiiamber
2021-01-18 21:35 ` not-chicken
2021-01-19  0:31 ` [PR PATCH] [Updated] " kawaiiamber
2021-01-19  0:32 ` kawaiiamber
2021-01-19  7:22 ` not-chicken
2021-01-19  7:27 ` [PR REVIEW] " not-chicken
2021-01-19  7:27 ` not-chicken
2021-01-19  7:27 ` not-chicken
2021-01-19  7:30 ` [PR PATCH] [Updated] " kawaiiamber
2021-01-19  7:31 ` [PR REVIEW] " kawaiiamber
2021-01-19  7:31 ` kawaiiamber
2021-01-19  7:33 ` kawaiiamber
2021-01-19  7:35 ` [PR PATCH] [Updated] " kawaiiamber
2021-01-19  7:36 ` [PR REVIEW] " kawaiiamber
2021-01-19  7:37 ` not-chicken
2021-01-19  7:37 ` kawaiiamber
2021-01-19  7:40 ` [PR REVIEW] " kawaiiamber
2021-01-19  7:49 ` [PR PATCH] [Updated] " kawaiiamber
2021-01-19  7:50 ` [PR REVIEW] " kawaiiamber
2021-01-19  7:51 ` kawaiiamber
2021-01-19  7:53 ` [PR REVIEW] " kawaiiamber
2021-01-19  7:56 ` kawaiiamber
2021-01-19  7:58 ` [PR PATCH] [Updated] " kawaiiamber
2021-01-19  7:59 ` kawaiiamber
2021-01-19  8:05 ` kawaiiamber
2021-01-19  8:07 ` [PR PATCH] [Updated] " kawaiiamber
2021-01-19  8:08 ` kawaiiamber
2021-01-19  8:09 ` not-chicken
2021-01-19  8:16 ` kawaiiamber
2021-01-19  8:17 ` kawaiiamber
2021-01-19  8:20 ` not-chicken
2021-01-19  8:22 ` [PR PATCH] [Updated] " kawaiiamber
2021-01-19  8:23 ` kawaiiamber
2021-01-19  8:28 ` not-chicken
2021-01-19  8:30 ` kawaiiamber
2021-01-19  8:33 ` [PR PATCH] [Updated] " kawaiiamber
2021-01-19  8:33 ` kawaiiamber
2021-01-19  8:55 ` not-chicken
2021-01-19  8:58 ` not-chicken
2021-01-19  8:59 ` not-chicken
2021-01-19  8:59 ` [PR PATCH] [Updated] " kawaiiamber
2021-01-19  9:02 ` kawaiiamber
2021-01-19  9:12 ` not-chicken
2021-01-19  9:24 ` kawaiiamber
2021-01-19  9:35 ` not-chicken
2021-03-18 18:45 ` kawaiiamber [this message]
2021-03-18 18:46 ` [PR REVIEW] " kawaiiamber
2021-08-09 18:28 ` ericonr
2022-02-04 10:32 ` [PR REVIEW] " meator
2022-05-06  2:08 ` github-actions
2022-05-20  2:11 ` [PR PATCH] [Closed]: " github-actions
2022-05-20  2:54 ` kawaiiamber
2022-05-20 13:18 ` kawaiiamber
2022-08-19  2:16 ` github-actions
2022-09-03  2:14 ` [PR PATCH] [Closed]: " github-actions
2022-09-27 23:37 ` mjeveritt
2022-09-27 23:45 ` mjeveritt

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

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210318184514.gWlVqMhtiOGbqLL3xVOZvq7TCmD4rnS0BVaxjG3tcnI@z \
    --to=kawaiiamber@users.noreply.github.com \
    --cc=ml@inbox.vuxu.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.
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 NNTP newsgroup(s).