Github messages for voidlinux
 help / color / mirror / Atom feed
From: bugcrazy <bugcrazy@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] New package: Itch 
Date: Thu, 24 Dec 2020 22:22:53 +0100	[thread overview]
Message-ID: <20201224212253.bpJ6VfpcIsyKIZalDEmzw3bTbJBLWJ8sHiNhIBTxlOY@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-22863@inbox.vuxu.org>

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

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

https://github.com/bugcrazy/void-packages patch-4
https://github.com/void-linux/void-packages/pull/22863

New package: Itch 
Indie games client for Linux, the client is under MIT license, every game is DRM free and is delivered via direct download rather than codes you would have to enter into Steam or another launcher.

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

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

From 018de2afc860e66740b6831948311be138f85c98 Mon Sep 17 00:00:00 2001
From: bugcrazy <39757967+bugcrazy@users.noreply.github.com>
Date: Sat, 13 Jun 2020 04:41:08 -0300
Subject: [PATCH 1/6]  New package: Itch

Indie games client for Linux, the client is under MIT license, every game is DRM free and is delivered via direct download rather than codes you would have to enter into Steam or another launcher.
---
 srcpkgs/itch/template | 61 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 61 insertions(+)
 create mode 100644 srcpkgs/itch/template

diff --git a/srcpkgs/itch/template b/srcpkgs/itch/template
new file mode 100644
index 00000000000..3418772e435
--- /dev/null
+++ b/srcpkgs/itch/template
@@ -0,0 +1,61 @@
+# Template file for 'itch'
+pkgname=itch
+version=1.18.0
+revision=1
+archs="i686 x86_64"
+build_style=go
+hostmakedepends="wget"
+makedepends="curl"
+short_desc="Itch.io indie games client for Linux"
+maintainer="MarcoAPC <marcoaureliopc@gmail.com>"
+license="MIT"
+homepage="https://github.com/itchio/itch"
+
+case "$XBPS_TARGET_MACHINE" in
+	x86_64)
+		_dist_arch="amd64"
+		_filename=itch-setup
+		checksum="
+ e86c70044c7d02754c6e52fb428d1278678d729c77b8359b5d82198595da1351
+ 874a17d72a3bce1dda9b43ea6450a2f4454bf2b01207ae259a981b0f915bbedb"
+
+		;;
+	i686)
+		_dist_arch="386"
+		_filename=itch-setup
+		checksum="
+ e86c70044c7d02754c6e52fb428d1278678d729c77b8359b5d82198595da1351
+ 447940ea9cd7051e43f98b5dd5fdb0de94e30e2e479d2812314820030f876db2"
+
+;;
+esac
+
+_itchUrl="https://broth.itch.ovh/itch-setup/linux-${_dist_arch}/${version}/unpacked/default"
+
+distfiles="
+ https://github.com/itchio/itch/archive/v25.4.0.tar.gz"
+ wrksrc="itch-25.4.0"
+
+do_fetch() {
+	mkdir -p $wrksrc
+	cd $wrksrc
+	wget \
+		--progress=bar:force \
+		-c -O $_filename \
+		$_itchUrl
+	echo "$checksum  $_filename" | sha256sum -c || { sha256sum "$_filename"; return 1; }
+}
+
+do_install() {
+	vbin itch-setup
+	vbin ${FILESDIR}/itch
+	vmkdir usr/share/applications
+	vmkdir usr/share/icons/hicolor/16x16/apps
+	vmkdir usr/share/icons/hicolor/32x32/apps
+	vmkdir usr/share/icons/hicolor/48x48/apps
+	vinstall ${FILESDIR}/io.itch.itch.desktop 0644 usr/share/applications
+	cp release/images/itch-icons/icon16.png ${DESTDIR}/usr/share/icons/hicolor/16x16/apps/itch.png
+	cp release/images/itch-icons/icon32.png ${DESTDIR}/usr/share/icons/hicolor/32x32/apps/itch.png
+	cp release/images/itch-icons/icon48.png ${DESTDIR}/usr/share/icons/hicolor/48x48/apps/itch.png
+	vlicense LICENSE
+}

From 36c0e9ef56cda191830f74bb55869b62d9fe5e4c Mon Sep 17 00:00:00 2001
From: bugcrazy <39757967+bugcrazy@users.noreply.github.com>
Date: Sat, 13 Jun 2020 05:08:53 -0300
Subject: [PATCH 2/6] Add file

---
 srcpkgs/itch/files/io.itch.itch.desktop | 11 +++++++++++
 1 file changed, 11 insertions(+)
 create mode 100644 srcpkgs/itch/files/io.itch.itch.desktop

diff --git a/srcpkgs/itch/files/io.itch.itch.desktop b/srcpkgs/itch/files/io.itch.itch.desktop
new file mode 100644
index 00000000000..b760f9c5177
--- /dev/null
+++ b/srcpkgs/itch/files/io.itch.itch.desktop
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Type=Application
+Name=itch
+TryExec=itch
+Exec=itch %U
+Icon=itch
+Terminal=false
+Categories=Game;
+MimeType=x-scheme-handler/itchio;x-scheme-handler/itch;
+X-GNOME-Autostart-enabled=true
+Comment=Install and play itch.io games easily

From d7eada11c562ff443b29e9130d56e83c753bcdf3 Mon Sep 17 00:00:00 2001
From: bugcrazy <39757967+bugcrazy@users.noreply.github.com>
Date: Sat, 13 Jun 2020 05:12:39 -0300
Subject: [PATCH 3/6] Add shell script file

---
 srcpkgs/itch/files/itch | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 srcpkgs/itch/files/itch

diff --git a/srcpkgs/itch/files/itch b/srcpkgs/itch/files/itch
new file mode 100644
index 00000000000..b3601fa8405
--- /dev/null
+++ b/srcpkgs/itch/files/itch
@@ -0,0 +1,2 @@
+#!/bin/sh
+itch-setup --prefer-launch -- "@$"

From a12e76cbbdefcc50af50d978af05b7cf7465db5f Mon Sep 17 00:00:00 2001
From: bugcrazy <39757967+bugcrazy@users.noreply.github.com>
Date: Mon, 15 Jun 2020 04:55:59 -0300
Subject: [PATCH 4/6] Applied suggested changes to the template

---
 srcpkgs/itch/template | 61 ++++++++++++++++---------------------------
 1 file changed, 22 insertions(+), 39 deletions(-)

diff --git a/srcpkgs/itch/template b/srcpkgs/itch/template
index 3418772e435..89cb86df2a8 100644
--- a/srcpkgs/itch/template
+++ b/srcpkgs/itch/template
@@ -3,59 +3,42 @@ pkgname=itch
 version=1.18.0
 revision=1
 archs="i686 x86_64"
+wrksrc="${pkgname}-setup-${version}"
 build_style=go
-hostmakedepends="wget"
-makedepends="curl"
+go_import_path="github.com/itchio/itch-setup"
+hostmakedepends="git pkg-config"
+makedepends="gtk+3-devel"
 short_desc="Itch.io indie games client for Linux"
 maintainer="MarcoAPC <marcoaureliopc@gmail.com>"
 license="MIT"
-homepage="https://github.com/itchio/itch"
-
-case "$XBPS_TARGET_MACHINE" in
-	x86_64)
-		_dist_arch="amd64"
-		_filename=itch-setup
-		checksum="
- e86c70044c7d02754c6e52fb428d1278678d729c77b8359b5d82198595da1351
- 874a17d72a3bce1dda9b43ea6450a2f4454bf2b01207ae259a981b0f915bbedb"
-
-		;;
-	i686)
-		_dist_arch="386"
-		_filename=itch-setup
-		checksum="
- e86c70044c7d02754c6e52fb428d1278678d729c77b8359b5d82198595da1351
- 447940ea9cd7051e43f98b5dd5fdb0de94e30e2e479d2812314820030f876db2"
-
-;;
-esac
-
-_itchUrl="https://broth.itch.ovh/itch-setup/linux-${_dist_arch}/${version}/unpacked/default"
-
+homepage="https://itch.io/"
 distfiles="
- https://github.com/itchio/itch/archive/v25.4.0.tar.gz"
- wrksrc="itch-25.4.0"
+ https://github.com/itchio/itch-setup/archive/v${version}.tar.gz
+ https://raw.githubusercontent.com/itchio/itch/master/release/images/itch-icons/icon16.png
+ https://raw.githubusercontent.com/itchio/itch/master/release/images/itch-icons/icon32.png
+ https://raw.githubusercontent.com/itchio/itch/master/release/images/itch-icons/icon48.png"
+checksum="
+ 96d3bff9b200dc5c03af8e46d0805a6f4dc504d6281b2956dcedda931849c0dc
+ c1e7154020c847cd5cd75d544a7e5dbe8bd495fe87a664afd24c4a952a7e8a78
+ e38c4a04b2ced31d2a13b72f310e069beff73a7cf887a4cbde57fa7b19c67fab
+ 5f38d0b884053b10d856151931b7699723c4a28cf14622c95bc6022bec391c3f"
+skip_extraction="icon16.png icon32.png icon48.png"
 
-do_fetch() {
-	mkdir -p $wrksrc
-	cd $wrksrc
-	wget \
-		--progress=bar:force \
-		-c -O $_filename \
-		$_itchUrl
-	echo "$checksum  $_filename" | sha256sum -c || { sha256sum "$_filename"; return 1; }
+do_build() {
+	cd "$GOSRCPATH"
+	go get -p "$XBPS_MAKEJOBS" -x -tags "${go_build_tags}" -ldflags "${go_ldflags}" ${go_package}
 }
 
 do_install() {
-	vbin itch-setup
+	vbin ${GOPATH}/bin/itch-setup
 	vbin ${FILESDIR}/itch
 	vmkdir usr/share/applications
 	vmkdir usr/share/icons/hicolor/16x16/apps
 	vmkdir usr/share/icons/hicolor/32x32/apps
 	vmkdir usr/share/icons/hicolor/48x48/apps
 	vinstall ${FILESDIR}/io.itch.itch.desktop 0644 usr/share/applications
-	cp release/images/itch-icons/icon16.png ${DESTDIR}/usr/share/icons/hicolor/16x16/apps/itch.png
-	cp release/images/itch-icons/icon32.png ${DESTDIR}/usr/share/icons/hicolor/32x32/apps/itch.png
-	cp release/images/itch-icons/icon48.png ${DESTDIR}/usr/share/icons/hicolor/48x48/apps/itch.png
+	cp ${XBPS_SRCDISTDIR}/itch-${version}/icon16.png ${DESTDIR}/usr/share/icons/hicolor/16x16/apps/itch.png
+	cp ${XBPS_SRCDISTDIR}/itch-${version}/icon32.png ${DESTDIR}/usr/share/icons/hicolor/32x32/apps/itch.png
+	cp ${XBPS_SRCDISTDIR}/itch-${version}/icon48.png ${DESTDIR}/usr/share/icons/hicolor/48x48/apps/itch.png
 	vlicense LICENSE
 }

From 59401d60124c5a4031f7d653dd580fbc1025fb9d Mon Sep 17 00:00:00 2001
From: bugcrazy <39757967+bugcrazy@users.noreply.github.com>
Date: Thu, 24 Dec 2020 18:02:37 -0300
Subject: [PATCH 5/6] Update version

---
 srcpkgs/itch/template | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/srcpkgs/itch/template b/srcpkgs/itch/template
index 89cb86df2a8..b616c2f6521 100644
--- a/srcpkgs/itch/template
+++ b/srcpkgs/itch/template
@@ -1,12 +1,12 @@
 # Template file for 'itch'
 pkgname=itch
-version=1.18.0
+version=1.24.0
 revision=1
 archs="i686 x86_64"
 wrksrc="${pkgname}-setup-${version}"
 build_style=go
 go_import_path="github.com/itchio/itch-setup"
-hostmakedepends="git pkg-config"
+hostmakedepends="git pkg-config nodejs-lts"
 makedepends="gtk+3-devel"
 short_desc="Itch.io indie games client for Linux"
 maintainer="MarcoAPC <marcoaureliopc@gmail.com>"
@@ -18,15 +18,15 @@ distfiles="
  https://raw.githubusercontent.com/itchio/itch/master/release/images/itch-icons/icon32.png
  https://raw.githubusercontent.com/itchio/itch/master/release/images/itch-icons/icon48.png"
 checksum="
- 96d3bff9b200dc5c03af8e46d0805a6f4dc504d6281b2956dcedda931849c0dc
+ 316c9d3077c427f2bbc001ee51243413cd800b987ea9ceb89519381f797992bb
  c1e7154020c847cd5cd75d544a7e5dbe8bd495fe87a664afd24c4a952a7e8a78
  e38c4a04b2ced31d2a13b72f310e069beff73a7cf887a4cbde57fa7b19c67fab
  5f38d0b884053b10d856151931b7699723c4a28cf14622c95bc6022bec391c3f"
 skip_extraction="icon16.png icon32.png icon48.png"
 
-do_build() {
-	cd "$GOSRCPATH"
-	go get -p "$XBPS_MAKEJOBS" -x -tags "${go_build_tags}" -ldflags "${go_ldflags}" ${go_package}
+pre_build() {
+	npm install
+	export PATH="$PATH:${wrksrc}/node_modules/.bin/"
 }
 
 do_install() {

From 77b3357dd0320d783652b3e2104022a82aed18a2 Mon Sep 17 00:00:00 2001
From: bugcrazy <39757967+bugcrazy@users.noreply.github.com>
Date: Thu, 24 Dec 2020 18:22:49 -0300
Subject: [PATCH 6/6] Remove i686 architecture

There is no linux-i686.zip package to download from the project's github, making it impossible to compile on i686.
---
 srcpkgs/itch/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/itch/template b/srcpkgs/itch/template
index b616c2f6521..1d5567961f5 100644
--- a/srcpkgs/itch/template
+++ b/srcpkgs/itch/template
@@ -2,7 +2,7 @@
 pkgname=itch
 version=1.24.0
 revision=1
-archs="i686 x86_64"
+archs="x86_64"
 wrksrc="${pkgname}-setup-${version}"
 build_style=go
 go_import_path="github.com/itchio/itch-setup"

  parent reply	other threads:[~2020-12-24 21:22 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-22863@inbox.vuxu.org>
2020-12-18  6:11 ` [PR REVIEW] " ericonr
2020-12-18  6:11 ` ericonr
2020-12-18  6:11 ` ericonr
2020-12-18  6:11 ` ericonr
2020-12-18  6:11 ` ericonr
2020-12-24 20:15 ` bugcrazy
2020-12-24 20:26 ` bugcrazy
2020-12-24 20:43 ` bugcrazy
2020-12-24 20:47 ` bugcrazy
2020-12-24 20:52 ` bugcrazy
2020-12-24 21:02 ` [PR PATCH] [Updated] " bugcrazy
2020-12-24 21:22 ` bugcrazy [this message]
2021-04-18  5:25 ` [PR REVIEW] " ericonr
2021-04-21  1:46 ` bugcrazy
2021-04-21  2:02 ` ericonr
2021-04-21  2:27 ` [PR PATCH] [Updated] " bugcrazy
2021-04-21  2:31 ` [PR REVIEW] " bugcrazy
2021-06-18  0:54 ` [PR PATCH] [Updated] " bugcrazy
2021-06-18  1:09 ` bugcrazy
2021-06-18  1:20 ` bugcrazy
2021-06-18  2:16 ` bugcrazy
2021-07-17  2:07 ` [PR REVIEW] " ericonr
2021-07-17  2:09 ` ericonr
2021-07-20  9:17 ` bugcrazy
2021-07-20  9:28 ` bugcrazy
2021-07-20 12:37 ` ericonr
2021-07-20 12:38 ` ericonr
2021-07-21 20:47 ` bugcrazy
2021-07-21 20:58 ` bugcrazy
2022-04-17  2:06 ` github-actions
2022-04-18  9:47 ` [PR PATCH] [Updated] " bugcrazy
2022-05-03  2:13 ` [PR PATCH] [Closed]: " github-actions

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=20201224212253.bpJ6VfpcIsyKIZalDEmzw3bTbJBLWJ8sHiNhIBTxlOY@z \
    --to=bugcrazy@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).