Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: heroic-games-launcher-1.8.1
@ 2021-07-02 22:43 Ruthenic
  2021-07-06 15:05 ` [PR PATCH] [Updated] " Ruthenic
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Ruthenic @ 2021-07-02 22:43 UTC (permalink / raw)
  To: ml

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

There is a new pull request by Ruthenic against master on the void-packages repository

https://github.com/Ruthenic/void-packages heroic
https://github.com/void-linux/void-packages/pull/31770

New package: heroic-games-launcher-1.8.1
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.-->
#### Does it build and run successfully?
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-glibc)

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

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

From dc2843d2346a371b5104304e465ab61e57d172c4 Mon Sep 17 00:00:00 2001
From: Ruthenic <mdrakea3@tutanota.com>
Date: Fri, 2 Jul 2021 18:34:32 -0400
Subject: [PATCH] New package: heroic-games-launcher-1.8.1

---
 srcpkgs/heroic-games-launcher/template | 47 ++++++++++++++++++++++++++
 1 file changed, 47 insertions(+)
 create mode 100644 srcpkgs/heroic-games-launcher/template

diff --git a/srcpkgs/heroic-games-launcher/template b/srcpkgs/heroic-games-launcher/template
new file mode 100644
index 000000000000..1dab17ccfe99
--- /dev/null
+++ b/srcpkgs/heroic-games-launcher/template
@@ -0,0 +1,47 @@
+# Template file for 'heroic-games-launcher'
+pkgname=heroic-games-launcher
+version=1.8.1
+revision=1
+archs="x86_64"
+wrksrc=${pkgname}-${version}
+create_wrksrc=yes
+#configure_args=""
+#make_build_args=""
+#make_install_args=""
+#conf_files=""
+#make_dirs="/var/log/dir 0755 root root"
+hostmakedepends="nodejs yarn python3 python3-setuptools python3-wheel fuse git gawk tar"
+#makedepends=""
+depends="fuse"
+short_desc="Native Epic Games launcher for Linux"
+maintainer="Ruthenic <mdrakea3@tutanota.com>"
+license="GPL-3.0-only"
+homepage="https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher"
+#distfiles=""
+#checksum="7c479dea0e87ef8cffb9712ff8258d7a16aa4c3913e604589f5d714be5bf2f71"
+
+do_fetch() {
+	mkdir -p ${pkgname}-${version}
+	cd ${pkgname}-${version}
+	git clone ${homepage} -b v${version} heroic
+	shopt -s dotglob nullglob
+	mv heroic/* .
+	rm -rf heroic
+}
+
+do_build() {
+	yarn
+	yarn dist
+}
+
+do_install() {
+	#Install application files
+	vmkdir usr/lib/heroic-games-launcher
+	vcopy dist/linux-unpacked/* usr/lib/heroic-games-launcher
+	#Symlink binary to /usr/bin
+	vmkdir usr/bin
+	ln -sf /usr/lib/heroic-games-launcher/heroic ${DESTDIR}/usr/bin
+	#Install icons
+	vmkdir usr/share/icons/hicolor
+	vinstall build/icon.png 644 usr/share/icons/hicolor/512x512/apps/ heroic.png
+}

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PR PATCH] [Updated] New package: heroic-games-launcher-1.8.1
  2021-07-02 22:43 [PR PATCH] New package: heroic-games-launcher-1.8.1 Ruthenic
@ 2021-07-06 15:05 ` Ruthenic
  2021-07-06 15:10 ` Ruthenic
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Ruthenic @ 2021-07-06 15:05 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Ruthenic/void-packages heroic
https://github.com/void-linux/void-packages/pull/31770

New package: heroic-games-launcher-1.8.1
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.-->
#### Does it build and run successfully?
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-glibc)

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

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

From dc2843d2346a371b5104304e465ab61e57d172c4 Mon Sep 17 00:00:00 2001
From: Ruthenic <mdrakea3@tutanota.com>
Date: Fri, 2 Jul 2021 18:34:32 -0400
Subject: [PATCH] New package: heroic-games-launcher-1.8.1

---
 srcpkgs/heroic-games-launcher/template | 47 ++++++++++++++++++++++++++
 1 file changed, 47 insertions(+)
 create mode 100644 srcpkgs/heroic-games-launcher/template

diff --git a/srcpkgs/heroic-games-launcher/template b/srcpkgs/heroic-games-launcher/template
new file mode 100644
index 000000000000..1dab17ccfe99
--- /dev/null
+++ b/srcpkgs/heroic-games-launcher/template
@@ -0,0 +1,47 @@
+# Template file for 'heroic-games-launcher'
+pkgname=heroic-games-launcher
+version=1.8.1
+revision=1
+archs="x86_64"
+wrksrc=${pkgname}-${version}
+create_wrksrc=yes
+#configure_args=""
+#make_build_args=""
+#make_install_args=""
+#conf_files=""
+#make_dirs="/var/log/dir 0755 root root"
+hostmakedepends="nodejs yarn python3 python3-setuptools python3-wheel fuse git gawk tar"
+#makedepends=""
+depends="fuse"
+short_desc="Native Epic Games launcher for Linux"
+maintainer="Ruthenic <mdrakea3@tutanota.com>"
+license="GPL-3.0-only"
+homepage="https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher"
+#distfiles=""
+#checksum="7c479dea0e87ef8cffb9712ff8258d7a16aa4c3913e604589f5d714be5bf2f71"
+
+do_fetch() {
+	mkdir -p ${pkgname}-${version}
+	cd ${pkgname}-${version}
+	git clone ${homepage} -b v${version} heroic
+	shopt -s dotglob nullglob
+	mv heroic/* .
+	rm -rf heroic
+}
+
+do_build() {
+	yarn
+	yarn dist
+}
+
+do_install() {
+	#Install application files
+	vmkdir usr/lib/heroic-games-launcher
+	vcopy dist/linux-unpacked/* usr/lib/heroic-games-launcher
+	#Symlink binary to /usr/bin
+	vmkdir usr/bin
+	ln -sf /usr/lib/heroic-games-launcher/heroic ${DESTDIR}/usr/bin
+	#Install icons
+	vmkdir usr/share/icons/hicolor
+	vinstall build/icon.png 644 usr/share/icons/hicolor/512x512/apps/ heroic.png
+}

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PR PATCH] [Updated] New package: heroic-games-launcher-1.8.1
  2021-07-02 22:43 [PR PATCH] New package: heroic-games-launcher-1.8.1 Ruthenic
  2021-07-06 15:05 ` [PR PATCH] [Updated] " Ruthenic
@ 2021-07-06 15:10 ` Ruthenic
  2022-02-14  0:24 ` New package: heroic-games-launcher-1.8.2 tibequadorian
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Ruthenic @ 2021-07-06 15:10 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Ruthenic/void-packages heroic
https://github.com/void-linux/void-packages/pull/31770

New package: heroic-games-launcher-1.8.1
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.-->
#### Does it build and run successfully?
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-glibc)

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

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

From dc2843d2346a371b5104304e465ab61e57d172c4 Mon Sep 17 00:00:00 2001
From: Ruthenic <mdrakea3@tutanota.com>
Date: Fri, 2 Jul 2021 18:34:32 -0400
Subject: [PATCH 1/2] New package: heroic-games-launcher-1.8.1

---
 srcpkgs/heroic-games-launcher/template | 47 ++++++++++++++++++++++++++
 1 file changed, 47 insertions(+)
 create mode 100644 srcpkgs/heroic-games-launcher/template

diff --git a/srcpkgs/heroic-games-launcher/template b/srcpkgs/heroic-games-launcher/template
new file mode 100644
index 000000000000..1dab17ccfe99
--- /dev/null
+++ b/srcpkgs/heroic-games-launcher/template
@@ -0,0 +1,47 @@
+# Template file for 'heroic-games-launcher'
+pkgname=heroic-games-launcher
+version=1.8.1
+revision=1
+archs="x86_64"
+wrksrc=${pkgname}-${version}
+create_wrksrc=yes
+#configure_args=""
+#make_build_args=""
+#make_install_args=""
+#conf_files=""
+#make_dirs="/var/log/dir 0755 root root"
+hostmakedepends="nodejs yarn python3 python3-setuptools python3-wheel fuse git gawk tar"
+#makedepends=""
+depends="fuse"
+short_desc="Native Epic Games launcher for Linux"
+maintainer="Ruthenic <mdrakea3@tutanota.com>"
+license="GPL-3.0-only"
+homepage="https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher"
+#distfiles=""
+#checksum="7c479dea0e87ef8cffb9712ff8258d7a16aa4c3913e604589f5d714be5bf2f71"
+
+do_fetch() {
+	mkdir -p ${pkgname}-${version}
+	cd ${pkgname}-${version}
+	git clone ${homepage} -b v${version} heroic
+	shopt -s dotglob nullglob
+	mv heroic/* .
+	rm -rf heroic
+}
+
+do_build() {
+	yarn
+	yarn dist
+}
+
+do_install() {
+	#Install application files
+	vmkdir usr/lib/heroic-games-launcher
+	vcopy dist/linux-unpacked/* usr/lib/heroic-games-launcher
+	#Symlink binary to /usr/bin
+	vmkdir usr/bin
+	ln -sf /usr/lib/heroic-games-launcher/heroic ${DESTDIR}/usr/bin
+	#Install icons
+	vmkdir usr/share/icons/hicolor
+	vinstall build/icon.png 644 usr/share/icons/hicolor/512x512/apps/ heroic.png
+}

From 43bb3ca91530b589eaf2559637b9938d9041b40c Mon Sep 17 00:00:00 2001
From: Drake <53356436+Ruthenic@users.noreply.github.com>
Date: Tue, 6 Jul 2021 11:10:17 -0400
Subject: [PATCH 2/2] heroic-games-launcher: update to 1.8.2.

---
 srcpkgs/heroic-games-launcher/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/heroic-games-launcher/template b/srcpkgs/heroic-games-launcher/template
index 1dab17ccfe99..73d9fb51185c 100644
--- a/srcpkgs/heroic-games-launcher/template
+++ b/srcpkgs/heroic-games-launcher/template
@@ -1,6 +1,6 @@
 # Template file for 'heroic-games-launcher'
 pkgname=heroic-games-launcher
-version=1.8.1
+version=1.8.2
 revision=1
 archs="x86_64"
 wrksrc=${pkgname}-${version}

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: New package: heroic-games-launcher-1.8.2
  2021-07-02 22:43 [PR PATCH] New package: heroic-games-launcher-1.8.1 Ruthenic
  2021-07-06 15:05 ` [PR PATCH] [Updated] " Ruthenic
  2021-07-06 15:10 ` Ruthenic
@ 2022-02-14  0:24 ` tibequadorian
  2022-02-14  0:25 ` tibequadorian
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: tibequadorian @ 2022-02-14  0:24 UTC (permalink / raw)
  To: ml

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

New comment by tibequadorian on void-packages repository

https://github.com/void-linux/void-packages/pull/31770#issuecomment-1038493567

Comment:
Update the branch using rebase not merge.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: New package: heroic-games-launcher-1.8.2
  2021-07-02 22:43 [PR PATCH] New package: heroic-games-launcher-1.8.1 Ruthenic
                   ` (2 preceding siblings ...)
  2022-02-14  0:24 ` New package: heroic-games-launcher-1.8.2 tibequadorian
@ 2022-02-14  0:25 ` tibequadorian
  2022-02-14  0:27 ` tibequadorian
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: tibequadorian @ 2022-02-14  0:25 UTC (permalink / raw)
  To: ml

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

New comment by tibequadorian on void-packages repository

https://github.com/void-linux/void-packages/pull/31770#issuecomment-1038493567

Comment:
Update the branch using rebase not merge. This PR should contain only one commit.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: New package: heroic-games-launcher-1.8.2
  2021-07-02 22:43 [PR PATCH] New package: heroic-games-launcher-1.8.1 Ruthenic
                   ` (3 preceding siblings ...)
  2022-02-14  0:25 ` tibequadorian
@ 2022-02-14  0:27 ` tibequadorian
  2022-02-14  0:27 ` tibequadorian
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: tibequadorian @ 2022-02-14  0:27 UTC (permalink / raw)
  To: ml

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

New comment by tibequadorian on void-packages repository

https://github.com/void-linux/void-packages/pull/31770#issuecomment-1038493567

Comment:
This PR should contain only one commit. Update the branch using rebase not merge, then force push https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#Review

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: New package: heroic-games-launcher-1.8.2
  2021-07-02 22:43 [PR PATCH] New package: heroic-games-launcher-1.8.1 Ruthenic
                   ` (4 preceding siblings ...)
  2022-02-14  0:27 ` tibequadorian
@ 2022-02-14  0:27 ` tibequadorian
  2022-02-14 22:00 ` [PR PATCH] [Closed]: " Ruthenic
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: tibequadorian @ 2022-02-14  0:27 UTC (permalink / raw)
  To: ml

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

New comment by tibequadorian on void-packages repository

https://github.com/void-linux/void-packages/pull/31770#issuecomment-1038493567

Comment:
This PR should contain only one commit. Update the branch using rebase not merge, then force push (https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#Review)

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: New package: heroic-games-launcher-1.8.2
  2021-07-02 22:43 [PR PATCH] New package: heroic-games-launcher-1.8.1 Ruthenic
                   ` (6 preceding siblings ...)
  2022-02-14 22:00 ` [PR PATCH] [Closed]: " Ruthenic
@ 2022-02-14 22:00 ` Ruthenic
  2022-02-14 22:02 ` Ruthenic
  8 siblings, 0 replies; 10+ messages in thread
From: Ruthenic @ 2022-02-14 22:00 UTC (permalink / raw)
  To: ml

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

New comment by Ruthenic on void-packages repository

https://github.com/void-linux/void-packages/pull/31770#issuecomment-1039611733

Comment:
This PR is incredibly out of date, ~~and I don't use Void anymore anyways~~, so I think I'll just close it for now. Thanks for the notice, though!

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PR PATCH] [Closed]: New package: heroic-games-launcher-1.8.2
  2021-07-02 22:43 [PR PATCH] New package: heroic-games-launcher-1.8.1 Ruthenic
                   ` (5 preceding siblings ...)
  2022-02-14  0:27 ` tibequadorian
@ 2022-02-14 22:00 ` Ruthenic
  2022-02-14 22:00 ` Ruthenic
  2022-02-14 22:02 ` Ruthenic
  8 siblings, 0 replies; 10+ messages in thread
From: Ruthenic @ 2022-02-14 22:00 UTC (permalink / raw)
  To: ml

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

There's a closed pull request on the void-packages repository

New package: heroic-games-launcher-1.8.2
https://github.com/void-linux/void-packages/pull/31770

Description:
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.-->
#### Does it build and run successfully?
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-glibc)

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: New package: heroic-games-launcher-1.8.2
  2021-07-02 22:43 [PR PATCH] New package: heroic-games-launcher-1.8.1 Ruthenic
                   ` (7 preceding siblings ...)
  2022-02-14 22:00 ` Ruthenic
@ 2022-02-14 22:02 ` Ruthenic
  8 siblings, 0 replies; 10+ messages in thread
From: Ruthenic @ 2022-02-14 22:02 UTC (permalink / raw)
  To: ml

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

New comment by Ruthenic on void-packages repository

https://github.com/void-linux/void-packages/pull/31770#issuecomment-1039611733

Comment:
This PR is incredibly out of date, ~~and I don't even use Void anymore~~ (on a daily basis), so I think I'll just close it for now. Thanks for the notice, though!

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2022-02-14 22:02 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-02 22:43 [PR PATCH] New package: heroic-games-launcher-1.8.1 Ruthenic
2021-07-06 15:05 ` [PR PATCH] [Updated] " Ruthenic
2021-07-06 15:10 ` Ruthenic
2022-02-14  0:24 ` New package: heroic-games-launcher-1.8.2 tibequadorian
2022-02-14  0:25 ` tibequadorian
2022-02-14  0:27 ` tibequadorian
2022-02-14  0:27 ` tibequadorian
2022-02-14 22:00 ` [PR PATCH] [Closed]: " Ruthenic
2022-02-14 22:00 ` Ruthenic
2022-02-14 22:02 ` Ruthenic

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).