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] [WIP] New package: pinta-1.7
Date: Tue, 19 Jan 2021 08:58:30 +0100	[thread overview]
Message-ID: <20210119075830.VbDhEXmYfRXLh1ro7i9EBCczXnSrFSC0yZY44KPfxXw@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: 456 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

[WIP] 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: 3314 bytes --]

From 787bd60b9e167ce2d2f71def5fe5ff39f53b06da Mon Sep 17 00:00:00 2001
From: KawaiiAmber <japaneselearning101@gmail.com>
Date: Sat, 9 Jan 2021 11:50:49 -0700
Subject: [PATCH] New package: pinta-1.7

---
 .../mono-addins/patches/fix-delay-sign.patch  | 17 +++++++++++++
 srcpkgs/mono-addins/template                  | 24 +++++++++++++++++++
 srcpkgs/pinta/template                        | 18 ++++++++++++++
 3 files changed, 59 insertions(+)
 create mode 100644 srcpkgs/mono-addins/patches/fix-delay-sign.patch
 create mode 100644 srcpkgs/mono-addins/template
 create mode 100644 srcpkgs/pinta/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 00000000000..d96a899440e
--- /dev/null
+++ b/srcpkgs/mono-addins/patches/fix-delay-sign.patch
@@ -0,0 +1,17 @@
+--- 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 00000000000..e9594818e38
--- /dev/null
+++ b/srcpkgs/mono-addins/template
@@ -0,0 +1,24 @@
+# Template file for 'mono-addins'
+pkgname=mono-addins
+version=1.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=e2c4db9fd12087b795dd03a035c6ab8daffe157694d98dcfe227067913db5580
+nocross="mcs not available on cross platform"
+
+pre_configure() {
+	./autogen.sh
+}
+
+post_install() {
+	vlicense COPYING
+}
diff --git a/srcpkgs/pinta/template b/srcpkgs/pinta/template
new file mode 100644
index 00000000000..550aa2c984d
--- /dev/null
+++ b/srcpkgs/pinta/template
@@ -0,0 +1,18 @@
+# Template file for 'pinta'
+pkgname=pinta
+version=1.7
+revision=1
+build_style=gnu-configure
+hostmakedepends="autoconf automake pkg-config"
+makedepends="mono-devel gtk-sharp2 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
+
+post_install() {
+	vlicense license-mit.txt
+}

  parent reply	other threads:[~2021-01-19  7:58 UTC|newest]

Thread overview: 60+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-09 18:52 [PR PATCH] " 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 ` kawaiiamber [this message]
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 ` [PR PATCH] [Updated] " kawaiiamber
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=20210119075830.VbDhEXmYfRXLh1ro7i9EBCczXnSrFSC0yZY44KPfxXw@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).